From f43a3ff733e19dab2a6af6b4934a4a2604221fe4 Mon Sep 17 00:00:00 2001
From: Eric Oulashin <nightfox@synchro.net>
Date: Sun, 15 Jan 2023 01:29:38 +0000
Subject: [PATCH] Good Time Trivia 1.03: Fixes to score reading & parsing. Q&A
 files can have more flexible metadata. Added more questions.

---
 xtrn/gttrivia/gttrivia.ini                    |      1 +
 xtrn/gttrivia/gttrivia.js                     |    338 +-
 xtrn/gttrivia/qa/dirty_minds.qa               |      7 +
 xtrn/gttrivia/qa/general.qa                   | 246545 ++++++++++++++-
 .../qa/music_movies_and_entertainment.qa      | 127443 +++++++-
 xtrn/gttrivia/qa/names_of_people.qa           |  19992 ++
 xtrn/gttrivia/qa/star_trek_general.qa         |    652 +
 xtrn/gttrivia/qa/the_office_us.qa             |   1029 +
 xtrn/gttrivia/qa/word_unscramble_english.qa   |  23606 ++
 xtrn/gttrivia/readme.txt                      |     69 +-
 xtrn/gttrivia/revision_history.txt            |     11 +
 11 files changed, 419359 insertions(+), 334 deletions(-)
 create mode 100644 xtrn/gttrivia/qa/names_of_people.qa
 create mode 100644 xtrn/gttrivia/qa/star_trek_general.qa
 create mode 100644 xtrn/gttrivia/qa/the_office_us.qa
 create mode 100644 xtrn/gttrivia/qa/word_unscramble_english.qa

diff --git a/xtrn/gttrivia/gttrivia.ini b/xtrn/gttrivia/gttrivia.ini
index f4f514718e..f5e5565439 100644
--- a/xtrn/gttrivia/gttrivia.ini
+++ b/xtrn/gttrivia/gttrivia.ini
@@ -27,6 +27,7 @@ scoreSoFarText=C
 clueHdr=RH
 clue=GH
 answerAfterIncorrect=G
+answerFact=G
 
 [CATEGORY_ARS]
 dirty_minds=AGE 18
diff --git a/xtrn/gttrivia/gttrivia.js b/xtrn/gttrivia/gttrivia.js
index a206a25405..6e8678856b 100644
--- a/xtrn/gttrivia/gttrivia.js
+++ b/xtrn/gttrivia/gttrivia.js
@@ -14,10 +14,25 @@ Date       Author            Description
 2022-12-08 Eric Oulashin     Version 1.02
                              The game can now post scores in (networked) message sub-boards as
                              a backup to using a JSON DB server in case the server can't be
-                             contacted.							 
+                             contacted.
+2023-01-03 Eric Oulashin     Version 1.03 beta
+                             Started working on allowing Q&A files to have a section of JSON
+                             metadata, and also for its answers to possibly be a section of
+                             JSON containing multiple possible answers. JSON metadata in
+                             a QA file may have the following properties (all optional):
+                             category_name: The name of the category
+                             ARS: An ARS string that can restrict usage of the category
+                             "-- Answer metadata begin"/"-- Answer metadata end" sections
+                             need to have an "answers" property, which is an array of
+                             acceptable answers (as strings).  It can also optionally have an
+                             "answerFact" property, to specify an interesting fact about
+                             the answer.
+                             Fixed a bug in reading local scores and parsing them, which
+                             affected saving local scores and showing local scores.
+2023-01-14 Eric Oulashin     Version 1.03
+                             Releasing this version
 */
 
-
 "use strict";
 
 
@@ -41,8 +56,8 @@ if (system.version_num < 31500)
 }
 
 // Version information
-var GAME_VERSION = "1.02";
-var GAME_VER_DATE = "2022-12-08";
+var GAME_VERSION = "1.03";
+var GAME_VER_DATE = "2023-01-14";
 
 // Determine the location of this script (its startup directory).
 // The code for figuring this out is a trick that was created by Deuce,
@@ -259,7 +274,7 @@ while (continueOn)
 
 
 console.print("\x01n\x01cReturning to \x01y\x01h" + system.name + "\x01n\x01c...\x01n");
-mswait(1000);
+mswait(500);
 // End of script execution.
 
 
@@ -320,15 +335,15 @@ function playTrivia()
 	console.crlf();
 
 	// Load and parse the section filename into questions, answers, and points
-	var QAArray = parseQAFilename(qaFilenameInfo[chosenSectionIdx].filename);
+	var QAArray = parseQAFile(qaFilenameInfo[chosenSectionIdx].filename);
 	shuffle(QAArray);
-	console.print("There are " + QAArray.length + " questions in total.");
+	console.print("There are " + add_commas(QAArray.length, 0) + " questions in total.");
 	console.crlf();
 	// Each element in QAArray is an object with the following properties:
 	// question
 	// answer
 	// numPoints
-	console.print("\x01n\x01gWill ask \x01h" + gSettings.behavior.numQuestionsPerPlay + "\x01n\x01g questions.\x01n");
+	console.print("\x01n\x01gWill ask up to \x01h" + gSettings.behavior.numQuestionsPerPlay + "\x01n\x01g questions.\x01n");
 	console.crlf();
 	console.print("\x01n\x01gYou can answer \x01hQ\x01n\x01g at any time to quit.\x01n");
 	console.crlf();
@@ -368,7 +383,12 @@ function playTrivia()
 				console.print("Clue:");
 				console.crlf();
 				console.attributes = "N" + gSettings.colors.clue;
-				console.print(partiallyHiddenStr(QAArray[i].answer, tryI-1) + "\x01n");
+				var clueAnswer = "";
+				if (typeof(QAArray[i].answer) === "string")
+					clueAnswer = QAArray[i].answer;
+				else if (Array.isArray(QAArray[i].answer))
+					clueAnswer = QAArray[i].answer[0];
+				console.print(partiallyHiddenStr(clueAnswer, tryI-1) + "\x01n");
 				console.crlf();
 			}
 			// Prompt for an answer
@@ -410,9 +430,23 @@ function playTrivia()
 			console.print("The answer was:");
 			console.crlf();
 			console.attributes = "N";
-			printWithWordWrap(answerWhenIncorrectColor, QAArray[i].answer);
+			var theCorrectAnswer = "";
+			if (typeof(QAArray[i].answer) === "string")
+				theCorrectAnswer = QAArray[i].answer;
+			else if (Array.isArray(QAArray[i].answer))
+				theCorrectAnswer = QAArray[i].answer[0];
+			printWithWordWrap(answerWhenIncorrectColor, theCorrectAnswer);
 			console.attributes = "N";
 		}
+		if (QAArray[i].hasOwnProperty("answerFact") && typeof(QAArray[i].answerFact) === "string" && QAArray[i].answerFact.length > 0)
+		{
+			console.crlf();
+			console.attributes = "N" + gSettings.colors.questionHdr;
+			console.print("Fact:");
+			console.crlf();
+			printWithWordWrap(attrCodeStr("N" + gSettings.colors.answerFact), QAArray[i].answerFact, true);
+			console.crlf();
+		}
 
 		// Print the user's score so far
 		console.crlf();
@@ -733,15 +767,75 @@ function getQACategoriesAndFilenames()
 	{
 		// Get the section name - Start by removing the .qa filename extension
 		var filenameExtension = file_getext(QAFilenames[i]);
+		// sectionName is the filename without the extension, but the section name can also be specified by
+		// JSON metadata in the Q&A file
 		var sectionName = file_getname(QAFilenames[i]);
 		var charIdx = sectionName.lastIndexOf(".");
 		if (charIdx > -1)
 			sectionName = sectionName.substring(0, charIdx);
-		// Currently, sectionName is the filename without the extension.
+
+		// Open the file to see if it has a JSON metadata section specifying a section name, etc.
+		// Note: If its metadata has an "ars" setting, then we'll use that instead of
+		// any ARS setting that may be in gttrivia.ini for this section.
+		var sectionARS = null;
+		var QAFile = new File(QAFilenames[i]);
+		if (QAFile.open("r"))
+		{
+			var fileMetadataStr = "";
+			var readingFileMetadata = false;
+			var haveSeenAllFileMetadata = false;
+			while (!QAFile.eof && !haveSeenAllFileMetadata)
+			{
+				var fileLine = QAFile.readln(2048);
+				// I've seen some cases where readln() doesn't return a string
+				if (typeof(fileLine) !== "string")
+					continue;
+				fileLine = fileLine.trim();
+				if (fileLine.length == 0)
+					continue;
+
+				//-- QA metadata begin" and "-- QA metadata end"
+				if (fileLine === "-- QA metadata begin")
+				{
+					fileMetadataStr = "";
+					readingFileMetadata = true;
+					continue;
+				}
+				else if (fileLine === "-- QA metadata end")
+				{
+					readingFileMetadata = false;
+					haveSeenAllFileMetadata = true;
+					continue;
+				}
+				else if (readingFileMetadata)
+					fileMetadataStr += fileLine + " ";
+			}
+			QAFile.close();
+
+			// If we've read all the file metadata lines, then parse it & use the metadata.
+			if (haveSeenAllFileMetadata && fileMetadataStr.length > 0)
+			{
+				try
+				{
+					var fileMetadataObj = JSON.parse(fileMetadataStr);
+					if (typeof(fileMetadataObj) === "object")
+					{
+						if (fileMetadataObj.hasOwnProperty("category_name") && typeof(fileMetadataObj.category_name) === "string")
+							sectionName = fileMetadataObj.category_name;
+						if (fileMetadataObj.hasOwnProperty("ARS") && typeof(fileMetadataObj.ARS) === "string")
+							sectionARS = fileMetadataObj.ARS;
+					}
+				}
+				catch (error) {}
+			}
+		}
+
 		// See if there is an ARS string for this in the configuration, and if so,
 		// only add it if the ARS string passes for the user.
 		var addThisSection = true;
-		if (gSettings.category_ars.hasOwnProperty(sectionName))
+		if (typeof(sectionARS) === "string")
+			addThisSection = bbs.compare_ars(sectionARS);
+		else if (gSettings.category_ars.hasOwnProperty(sectionName))
 			addThisSection = bbs.compare_ars(gSettings.category_ars[sectionName]);
 		// Add this section/category, if allowed
 		if (addThisSection)
@@ -760,13 +854,16 @@ function getQACategoriesAndFilenames()
 	return sectionsAndFilenames;
 }
 
-// Parses a Q&A filename
+// Parses a Q&A file with questions and answers
+//
+// Parameters:
+//  pQAFilenameFullPath: The full path & filename of the trivia Q&A file to read
 //
 // Return value: An array of objects containing the following properties:
 //               question: The trivia question
 //               answer: The answer to the trivia question
 //               numPoints: The number of points to award for the correct answer
-function parseQAFilename(pQAFilenameFullPath)
+function parseQAFile(pQAFilenameFullPath)
 {
 	if (!file_exists(pQAFilenameFullPath))
 		return [];
@@ -777,9 +874,14 @@ function parseQAFilename(pQAFilenameFullPath)
 	var QAFile = new File(pQAFilenameFullPath);
 	if (QAFile.open("r"))
 	{
+		var inFileMetadata = false; // Whether or not we're in the file metadata question (we'll skip all of this for the questions & answers)
 		var theQuestion = "";
 		var theAnswer = "";
 		var theNumPoints = -1;
+		var readingAnswerMetadata = false;
+		var doneReadintAnswerMetadata = false; // For immediately after done reading answer JSON
+		var answerIsJSON = false;
+		var component = "Q"; // Q/A/P for question, answer, points
 		while (!QAFile.eof)
 		{
 			var fileLine = QAFile.readln(2048);
@@ -790,23 +892,69 @@ function parseQAFilename(pQAFilenameFullPath)
 			if (fileLine.length == 0)
 				continue;
 
+			// Skip any file metadata lines (those are read in getQACategoriesAndFilenames())
+			if (fileLine === "-- QA metadata begin")
+			{
+				inFileMetadata = true;
+				continue;
+			}
+			else if (fileLine === "-- QA metadata end")
+			{
+				inFileMetadata = false;
+				continue;
+			}
+			if (inFileMetadata)
+				continue;
+
 			if (theQuestion.length > 0 && theAnswer.length > 0 && theNumPoints > -1)
 			{
-				QA_Array.push(new QA(theQuestion, theAnswer, +theNumPoints));
+				addQAToArray(QA_Array, theQuestion, theAnswer, theNumPoints, answerIsJSON);
 				theQuestion = "";
 				theAnswer = "";
 				theNumPoints = -1;
+				readingAnswerMetadata = false;
+				doneReadintAnswerMetadata = false;
+				answerIsJSON = false;
+				component = "Q";
 			}
 
-			if (theQuestion.length == 0)
+			if (component === "Q")
+			{
 				theQuestion = fileLine;
-			else if (theAnswer.length == 0)
-				theAnswer = fileLine;
-			else if (theNumPoints < 1)
+				component = "A"; // Next, set answer
+			}
+			else if (component === "A")
+			{
+				// Possible JSON for multiple answers
+				if (fileLine === "-- Answer metadata begin")
+				{
+					readingAnswerMetadata = true;
+					answerIsJSON = true;
+					theAnswer = "";
+					continue;
+				}
+				else if (fileLine === "-- Answer metadata end")
+				{
+					readingAnswerMetadata = false;
+					doneReadintAnswerMetadata = true;
+				}
+				if (readingAnswerMetadata)
+					theAnswer += fileLine + " ";
+				else
+				{
+					if (doneReadintAnswerMetadata)
+						doneReadintAnswerMetadata = false;
+					else
+						theAnswer = fileLine;
+					component = "P"; // Next, set points
+				}
+			}
+			else if (component === "P")
 			{
 				theNumPoints = +(fileLine);
 				if (theNumPoints < 1)
 					theNumPoints = 10;
+				component = "Q"; // Next, set question
 			}
 
 			// Older: Each line in the format question,answer,numPoints
@@ -829,18 +977,71 @@ function parseQAFilename(pQAFilenameFullPath)
 		QAFile.close();
 		// Ensure we've added the last question & answer, if there is one
 		if (theQuestion.length > 0 && theAnswer.length > 0 && theNumPoints > -1)
-			QA_Array.push(new QA(theQuestion, theAnswer, +theNumPoints));
+			addQAToArray(QA_Array, theQuestion, theAnswer, theNumPoints, answerIsJSON);
 	}
 	return QA_Array;
 }
 // QA object constructor
-function QA(pQuestion, pAnswer, pNumPoints)
+function QA(pQuestion, pAnswer, pNumPoints, pAnswerFact)
 {
 	this.question = pQuestion;
 	this.answer = pAnswer;
 	this.numPoints = pNumPoints;
 	if (this.numPoints < 1)
 		this.numPoints = 10;
+	if (typeof(pAnswerFact) === "string" && pAnswerFact.length > 0)
+		this.answerFact = pAnswerFact;
+}
+// Helper for parseQAFile(): Adds a question, answer, and # points to the Q&A array
+//
+// Parameters:
+//  QA_Array (INOUT): The array to add the Q/A/Point sets to
+//  theQuestion: The question (string)
+//  theAnswer: The answer (string)
+//  theNumPoints: The number of points to award (number)
+//  answerIsJSON: Boolean - Whether or not theAnswer is in JSON format or not (if JSON, it contains
+//                multiple possible answers)
+function addQAToArray(QA_Array, theQuestion, theAnswer, theNumPoints, answerIsJSON)
+{
+	// If the answer is a JSON object, then there may be multiple acceptable answers specified
+	var addAnswer = true;
+	var answerFact = null;
+	if (answerIsJSON)
+	{
+		try
+		{
+			var answerObj = JSON.parse(theAnswer);
+			if (typeof(answerObj) === "object")
+			{
+				if (answerObj.hasOwnProperty("answers") && Array.isArray(answerObj.answers) && answerObj.answers.length > 0)
+				{
+					// Make sure all answers in the array are non-zero length
+					theAnswer = [];
+					for (var i = 0; i < answerObj.answers.length; ++i)
+					{
+						if (answerObj.answers[i].length > 0)
+							theAnswer.push(answerObj.answers[i]);
+					}
+					// theAnswer is an array
+					addAnswer = (theAnswer.length > 0);
+				}
+				else if (answerObj.hasOwnProperty("answer") && typeof(answerObj.answer) === "string" && answerObj.answer.length > 0)
+					theAnswer = answerObj.answer;
+				else
+					addAnswer = false;
+				if (answerObj.hasOwnProperty("answerFact") && answerObj.answerFact.length > 0)
+					answerFact = answerObj.answerFact;
+			}
+			else
+				addAnswer = false;
+		}
+		catch (error)
+		{
+			addAnswer = false;
+		}
+	}
+	if (addAnswer) // Note: theAnswer is converted to an object if it's JSON
+		QA_Array.push(new QA(theQuestion, theAnswer, +theNumPoints, answerFact));
 }
 
 // Shuffles an array
@@ -871,6 +1072,11 @@ function shuffle(pArray)
 // Match is case-insensitive.  If it's a 1-word answer, then it should match exactly.  Otherwise,
 // a Levenshtein distance is used.
 //
+// Properties:
+//  pAnswer: The answer to the question. This can either be a string (for a single answer) or an array of
+//           strings (if multiple answers are acceptable)
+//  pUserInput: The user's response to the question (string)
+//
 // Return value: An object with the following properties:
 //               userChoseQuit: Boolean: Whether or not the user chose to quit
 //               userInputMatchedAnswer: Boolean: Whether or not the user's answer matches the given answer to the question
@@ -881,14 +1087,13 @@ function checkUserResponse(pAnswer, pUserInput)
 		userInputMatchedAnswer: false
 	};
 
-	if (typeof(pAnswer) !== "string" || typeof(pUserInput) !== "string")
+	// pAnswer should be a string or an array, and pUserInput should be a string
+	if (!(typeof(pAnswer) === "string" || Array.isArray(pAnswer))|| typeof(pUserInput) !== "string")
 		return retObj;
 	if (pUserInput.length == 0)
 		return retObj;
 
-	// Convert both to uppercase for case-insensitive matching
-	var answerUpper = pAnswer.toUpperCase();
-	var userInputUpper = pUserInput.toUpperCase();
+	var userInputUpper = pUserInput.toUpperCase(); // For case-insensitive matching
 	
 	if (userInputUpper == "Q")
 	{
@@ -896,24 +1101,42 @@ function checkUserResponse(pAnswer, pUserInput)
 		return retObj;
 	}
 
-	// If there are spaces in the answer, then do a Levenshtein comparison.  Otherwise,
-	// do an exact match.
-	if (answerUpper.indexOf(" ") > -1)
+	// In case there are multiple acceptable answers, make an array (or copy it) so
+	// we can check the user's response against all acceptable answers
+	var acceptableAnswers = null;
+	if (typeof(pAnswer) === "string")
+		acceptableAnswers = [ pAnswer.toUpperCase() ];
+	else if (Array.isArray(pAnswer))
 	{
-		var levDist = levenshteinDistance(answerUpper, userInputUpper);
-		retObj.userInputMatchedAnswer = (levDist <= MAX_LEVENSHTEIN_DISTANCE);
+		acceptableAnswers = [];
+		for (var i = 0; i < pAnswer.length; ++i)
+			acceptableAnswers.push(pAnswer[i].toUpperCase());
 	}
 	else
+		return retObj; // pAnswer isn't valid here, so just return with a 'false' response
+	// Check the user's response against the acceptable answers
+	for (var i = 0; i < acceptableAnswers.length && !retObj.userInputMatchedAnswer; ++i)
 	{
-		// There are no spaces in the answer.  If the answer is 12 or shorter, use an exact match;
-		// otherwise, use a Levenshtein distance.
-		if (answerUpper.length <= 12)
-			retObj.userInputMatchedAnswer = (userInputUpper == answerUpper);
-		else
+		var answerUpper = acceptableAnswers[i].toUpperCase();
+		// If there are spaces in the answer, then do a Levenshtein comparison.  Otherwise,
+		// do an exact match.
+		if (answerUpper.indexOf(" ") > -1)
 		{
 			var levDist = levenshteinDistance(answerUpper, userInputUpper);
 			retObj.userInputMatchedAnswer = (levDist <= MAX_LEVENSHTEIN_DISTANCE);
 		}
+		else
+		{
+			// There are no spaces in the answer.  If the answer is 12 or shorter, use an exact match;
+			// otherwise, use a Levenshtein distance.
+			if (answerUpper.length <= 12)
+				retObj.userInputMatchedAnswer = (userInputUpper == answerUpper);
+			else
+			{
+				var levDist = levenshteinDistance(answerUpper, userInputUpper);
+				retObj.userInputMatchedAnswer = (levDist <= MAX_LEVENSHTEIN_DISTANCE);
+			}
+		}
 	}
 
 	return retObj;
@@ -998,11 +1221,8 @@ function updateScoresFile(pUserCurrentGameScore, pLastSectionName)
 	{
 		if (scoresFile.open("r"))
 		{
-			var scoreFileArray = scoresFile.readAll();
+			var scoreFileContents = scoresFile.read(scoresFile.length);
 			scoresFile.close();
-			var scoreFileContents = "";
-			for (var i = 0; i < scoreFileArray.length; ++i)
-				scoreFileContents += (scoreFileArray[i] + "\n");
 			try
 			{
 				scoresObj = JSON.parse(scoreFileContents);
@@ -1207,16 +1427,24 @@ function showLocalScores()
 		var scoresFile = new File(SCORES_FILENAME);
 		if (scoresFile.open("r"))
 		{
-			var scoreFileArray = scoresFile.readAll();
+			var scoreFileContents = scoresFile.read(scoresFile.length);
 			scoresFile.close();
-			var scoreFileContents = "";
-			for (var i = 0; i < scoreFileArray.length; ++i)
-				scoreFileContents += (scoreFileArray[i] + "\n");
-			var scoresObj = JSON.parse(scoreFileContents);
-			for (var prop in scoresObj)
+			try
 			{
-				sortedScores.push(new UserScoreObj(prop, scoresObj[prop].total_score, scoresObj[prop].last_score,
-				                              scoresObj[prop].last_trivia_category, scoresObj[prop].last_time));
+				var scoresObj = JSON.parse(scoreFileContents);
+				for (var prop in scoresObj)
+				{
+					sortedScores.push(new UserScoreObj(prop, scoresObj[prop].total_score, scoresObj[prop].last_score,
+												  scoresObj[prop].last_trivia_category, scoresObj[prop].last_time));
+				}
+			}
+			catch (error)
+			{
+				log(LOG_ERR, GAME_NAME + " - Parsing local scores: Line " + error.lineNumber + ": " + error);
+				bbs.log_str(GAME_NAME + " - Parsing local scores scores: Line " + error.lineNumber + ": " + error);
+				console.attributes = "N" + gSettings.colors.error;
+				console.print("* Line: " + error.lineNumber + ": " + error);
+				console.crlf();
 			}
 		}
 		// Sort the array: High total score first
@@ -1774,11 +2002,8 @@ function postGTTriviaScoresToSubBoard(pSubCode)
 	{
 		if (scoresFile.open("r"))
 		{
-			var scoreFileArray = scoresFile.readAll();
+			var scoreFileContents = scoresFile.read(scoresFile.length);
 			scoresFile.close();
-			var scoreFileContents = "";
-			for (var i = 0; i < scoreFileArray.length; ++i)
-				scoreFileContents += (scoreFileArray[i] + "\n");
 			try
 			{
 				scoresForThisBBS[BBS_ID].user_scores = JSON.parse(scoreFileContents);
@@ -1990,6 +2215,17 @@ function readGTTriviaScoresFromSubBoard(pSubCode)
 	return scoreUpdateSucceeded;
 }
 
+function add_commas(val, pad)
+{
+	var s = val.toString();
+	s = s.replace(/([0-9]+)([0-9]{3})$/,"$1,$2");
+	while (s.search(/[0-9]{4}/)!=-1)
+		s = s.replace(/([0-9]+)([0-9]{3}),/g,"$1,$2,");
+	while (s.length < pad)
+		s = " " + s;
+	return(s);
+}
+
 // Parses command-line arguments.  Returns an object with settings/actions specified.
 //
 // Parameters:
diff --git a/xtrn/gttrivia/qa/dirty_minds.qa b/xtrn/gttrivia/qa/dirty_minds.qa
index 52a5481f3d..491f5538a1 100644
--- a/xtrn/gttrivia/qa/dirty_minds.qa
+++ b/xtrn/gttrivia/qa/dirty_minds.qa
@@ -1,3 +1,10 @@
+-- QA metadata begin
+{
+    "category_name": "Dirty Minds",
+	"ARS": "AGE 18"
+}
+-- QA metadata end
+
 I can be used for stroking. You hold me by my hard end. If I'm too stiff, I can make you raw.
 Hair brush
 10
diff --git a/xtrn/gttrivia/qa/general.qa b/xtrn/gttrivia/qa/general.qa
index db0eb50f0b..7a6376480c 100644
--- a/xtrn/gttrivia/qa/general.qa
+++ b/xtrn/gttrivia/qa/general.qa
@@ -11,23 +11,27 @@ In what year were the first Air Jordan sneakers released?
 10
 
 In a game of bingo, which number is represented by the phrase "two little ducks"?
-22
+-- Answer metadata begin
+{
+    "answers": ["Twenty-two", "22"]
+}
+-- Answer metadata end
 10
 
 According to Greek mythology who was the first woman on earth?
 Pandora
 10
 
-Samuel Tilden, Grover Cleveland, Al Gore and Hillary Clinton share what distinction among U.S. presidential candidates?
-Won the popular vote but lost the electoral college vote
-20
-
 Which African country was formerly known as Abyssinia?
 Ethiopia
 10
 
 Tennis star Serena Williams won which major tournament while pregnant with her first child?
-The Australian Open
+-- Answer metadata begin
+{
+    "answers": ["Australian Open", "The Australian Open"]
+}
+-- Answer metadata end
 10
 
 In which European city would you find Orly airport?
@@ -47,7 +51,11 @@ Volcano
 10
 
 Which author wrote the 'Winnie-the-Pooh' books?
-A. A. Milne
+-- Answer metadata begin
+{
+    "answers": ["A. A. Milne", "AA Milne"]
+}
+-- Answer metadata end
 10
 
 Which Dutch artist painted "Girl with a Pearl Earring"?
@@ -63,7 +71,11 @@ Switzerland
 10
 
 Which two U.S. states don't observe Daylight Saving Time?
-Arizona, Hawaii
+-- Answer metadata begin
+{
+    "answers": ["Arizona, Hawaii", "Hawaii, Arizona", "Arizona and Hawaii", "Hawaii and Arizona"]
+}
+-- Answer metadata end
 10
 
 What is the loudest animal on Earth?
@@ -91,7 +103,11 @@ Dakota Building
 10
 
 How many of Snow White's seven dwarfs have names ending in the letter Y?
-Five
+-- Answer metadata begin
+{
+    "answers": ["Five", "5"]
+}
+-- Answer metadata end
 10
 
 "I Know Why the Caged Bird Sings" is the autobiography about the early years of what inspirational African-American writer and poet?
@@ -99,7 +115,7 @@ Maya Angelou
 10
 
 What is the tallest breed of dog in the world?
-The Great Dane
+Great Dane
 10
 
 What is the softest mineral in the world?
@@ -115,7 +131,11 @@ Margaret Thatcher
 10
 
 How many ribs are in a human body?
-24
+-- Answer metadata begin
+{
+    "answers": ["24", "Twenty-four"]
+}
+-- Answer metadata end
 10
 
 What is the world's biggest island?
@@ -127,7 +147,11 @@ Thailand
 10
 
 What is the smallest ocean in the world?
-The Arctic
+-- Answer metadata begin
+{
+    "answers": ["Arctic", "The Arctic"]
+}
+-- Answer metadata end
 10
 
 What color eyes do most humans have?
@@ -139,7 +163,11 @@ Amsterdam
 10
 
 What is the largest type of deer?
-The moose
+-- Answer metadata begin
+{
+    "answers": ["Moose", "The Moose"]
+}
+-- Answer metadata end
 10
 
 Which Disney film features the song "When You Wish Upon a Star"?
@@ -159,7 +187,11 @@ Pacific Ocean
 10
 
 When Michael Jordan played for the Chicago Bulls, how many NBA Championships did he win?
-Six
+-- Answer metadata begin
+{
+    "answers": ["Six", "6"]
+}
+-- Answer metadata end
 10
 
 What country won the very first FIFA World Cup in 1930?
@@ -171,7 +203,11 @@ In what year was the first ever Wimbledon Championship held?
 10
 
 What is often seen as the smallest unit of memory?
-Kilobyte
+-- Answer metadata begin
+{
+    "answers": ["Kilobyte", "KB"]
+}
+-- Answer metadata end
 10
 
 Which planet is the hottest in Earth's solar system?
@@ -183,7 +219,11 @@ Brazil
 10
 
 What is the common name for dried plums?
-Prunes
+-- Answer metadata begin
+{
+    "answers": ["Prunes", "Prune"]
+}
+-- Answer metadata end
 10
 
 What does BMW stand for (in English)?
@@ -191,7 +231,11 @@ Bavarian Motor Works
 10
 
 Which two countries share the longest international border?
-Canada, USA
+-- Answer metadata begin
+{
+    "answers": ["Canada, USA", "USA, Canada", "Canada and USA", "USA and Canada", "Canada & USA", "USA & Canada"]
+}
+-- Answer metadata end
 10
 
 What is the smallest country in the world?
@@ -199,7 +243,11 @@ Vatican City
 10
 
 Which bone are babies born without?
-Knee cap
+-- Answer metadata begin
+{
+    "answers": ["Kneecap", "Knee Cap"]
+}
+-- Answer metadata end
 10
 
 Which name is rapper Sean Combs better known by?
@@ -211,11 +259,19 @@ Spice Girls
 10
 
 How many hearts does an octopus have?
-Three
+-- Answer metadata begin
+{
+    "answers": ["Three", "3"]
+}
+-- Answer metadata end
 10
 
 How many eyes does a bee have?
-Five
+-- Answer metadata begin
+{
+    "answers": ["Five", "5"]
+}
+-- Answer metadata end
 10
 
 What was the name of the rock band formed by Jimmy Page?
@@ -250,8 +306,12 @@ Ludwig Van Beethoven was born in 1770 in which city?
 Berlin
 10
 
-Water as a pH level of around?
-7
+Water as a pH level of approximately what?
+-- Answer metadata begin
+{
+    "answers": ["Seven", "7"]
+}
+-- Answer metadata end
 10
 
 What's the most expensive home in the world?
@@ -263,7 +323,7 @@ An alarm clock
 10
 
 What's the hardest rock?
-A diamond
+Diamond
 10
 
 What is the national dish of Spain?
@@ -291,11 +351,19 @@ Keratin
 10
 
 How many children does Oprah Winfrey have?
-Zero
+-- Answer metadata begin
+{
+    "answers": ["Zero", "0"]
+}
+-- Answer metadata end
 10
 
 Where is the Sea of Tranquility located?
-The moon
+-- Answer metadata begin
+{
+    "answers": ["Moon", "The Moon"]
+}
+-- Answer metadata end
 10
 
 What country has the world's most ancient forest?
@@ -311,10 +379,10 @@ Yellow
 10
 
 Which chess piece can only move diagonally?
-A bishop
+Bishop
 10
 
-When did the Cold War end?
+In what year did the Cold War end?
 1989
 10
 
@@ -395,7 +463,7 @@ Larry
 10
 
 What is a community of ants called?
-A colony
+Colony
 10
 
 Who was said to "float like a butterfly and sting like a bee"?
@@ -403,7 +471,11 @@ Muhammed Ali
 10
 
 Where did Heineken beer originate?
-The Netherlands
+-- Answer metadata begin
+{
+    "answers": ["Netherlands", "The Netherlands"]
+}
+-- Answer metadata end
 10
 
 Cirque du Soleil started in what country?
@@ -411,7 +483,11 @@ Canada
 10
 
 How many signs are there in the Zodiac?
-12
+-- Answer metadata begin
+{
+    "answers": ["Twelve", "12"]
+}
+-- Answer metadata end
 10
 
 What are the two fruit juices in a cosmopolitan?
@@ -419,7 +495,7 @@ Cranberry and lime
 10
 
 What object is said to bring bad luck if it is broken?
-A mirror
+Mirror
 10
 
 Which country did bagels originate from?
@@ -438,7 +514,7 @@ The Candlestick, Lead Pipe, Knife, Revolver, Rope, and what else are the six wea
 Wrench
 10
 
-What city did Starbucks open its first store in 1971?
+In what city did Starbucks open its first store in 1971?
 Seattle
 10
 
@@ -479,7 +555,11 @@ Black
 10
 
 How many red stripes are there on the American flag?
-Seven
+-- Answer metadata begin
+{
+    "answers": ["Seven", "7"]
+}
+-- Answer metadata end
 10
 
 What 3 word phrase is written on Martin Luther King's gravestone?
@@ -510,10 +590,6 @@ Which country is the largest producer of vanilla?
 Madagascar
 10
 
-Who performs the character of Mark Zuckerberg in the movie "The Social Network"?
-Jesse Eisenberg
-10
-
 What is the only fruit that has its seeds on the outside?
 Strawberry
 10
@@ -587,11 +663,19 @@ Kentucky
 10
 
 What blood type qualifies as a universal donor?
-O negative
+-- Answer metadata begin
+{
+    "answers": ["O negative", "O-", "Type O-", "Type O negative"]
+}
+-- Answer metadata end
 10
 
 What is the most abundant metal in the Earth's crust?
-Aluminium
+-- Answer metadata begin
+{
+    "answers": ["Aluminum", "Aluminium"]
+}
+-- Answer metadata end
 10
 
 What is the most abundant element in the universe?
@@ -642,8 +726,12 @@ Canberra is the capital city of which country?
 Australia
 10
 
-New York City comprises how many boroughs?
-5
+How many boroughs is New York City comprised of?
+-- Answer metadata begin
+{
+    "answers": ["Five", "5"]
+}
+-- Answer metadata end
 10
 
 Which nuts are used to make marzipan?
@@ -707,7 +795,11 @@ Allies and Axis
 10
 
 What number did Derek Jeter wear on his New York Yankees jersey?
-2
+-- Answer metadata begin
+{
+    "answers": ["Two", "2"]
+}
+-- Answer metadata end
 10
 
 What vitamin does the sun's ultraviolet rays help the skin produce?
@@ -763,7 +855,7 @@ Amman
 10
 
 What is Harry Potter's Patronus?
-A stag
+Stag
 10
 
 What candy was used to lure E.T. in the 1982 movie "E.T.: The Extra-Terrestrial"?
@@ -858,10 +950,6 @@ Port-au-Prince is the capital of which country?
 Haiti
 10
 
-What major movie actor's first role was in "A Nightmare On Elm Street"?
-Johnny Depp
-10
-
 What was Toyota's first popular hybrid car called?
 Prius
 5
@@ -882,10 +970,6 @@ Which President of South Africa ordered Nelson Mandela's release from prison?
 De Klerk
 10
 
-Which 2008 comedy had the tagline "Put this in your pipe and smoke it"?
-Pineapple Express
-10
-
 Islamabad is the capital of which country?
 Pakistan
 10
@@ -911,7 +995,11 @@ Fulgencio Batista
 10
 
 How many sides does the home plate in baseball have?
-5
+-- Answer metadata begin
+{
+    "answers": ["Five", "5"]
+}
+-- Answer metadata end
 10
 
 What color dresses do Chinese women traditionally wear on their wedding day?
@@ -983,7 +1071,11 @@ Spaghetto
 10
 
 By U.S. law, exit signs must be one of what two colors?
-Green or red
+-- Answer metadata begin
+{
+    "answers": ["Green or red", "Red or green", "Green, red", "Red, green", "Green red", "Red green"]
+}
+-- Answer metadata end
 10
 
 Where did the 2000 Summer Olympics take place?
@@ -991,7 +1083,11 @@ Sydney, Australia
 10
 
 Where do U.S. vice presidents live?
-on the grounds of the U.S. Naval Observatory
+-- Answer metadata begin
+{
+    "answers": ["US Naval Observatory", "U.S. Naval Observatory", "Grounds of U.S. Naval Observatory", "Grounds of US Naval Observatory", "US Naval Observatory grounds"]
+}
+-- Answer metadata end
 10
 
 Who was the first American woman in space?
@@ -1003,7 +1099,11 @@ Rydell High
 10
 
 How many pounds are in a ton?
-2000
+-- Answer metadata begin
+{
+    "answers": ["2000", "Two thousand"]
+}
+-- Answer metadata end
 10
 
 What is an eight-sided shape called?
@@ -1011,19 +1111,19 @@ Octagon
 5
 
 Which number does every Major League Baseball player wear on April 15?
-42
+-- Answer metadata begin
+{
+    "answers": ["Forty-two", "42"]
+}
+-- Answer metadata end
 10
 
 What is the maximum number of points someone can achieve on Pac-Man?
-3333360 points
-10
-
-What species of fish is Nemo?
-Clown Fish
-10
-
-In "Harry Potter and the Sorcerer's Stone," what keeps the three-headed dog asleep?
-Enchanted harp
+-- Answer metadata begin
+{
+    "answers": ["3333360", "3333360 points"]
+}
+-- Answer metadata end
 10
 
 What state is known as the "Badger State"?
@@ -1031,7 +1131,11 @@ Wisconsin
 10
 
 How Did Leica, the German camera company, get its name?
-Founder Ernest Leitz used the first three letters of his last name combined with the first two letters from "camera."
+-- Answer metadata begin
+{
+    "answers": ["Ernest Leitz and camera", "Ernest Leitz camera", "Ernest Leitz, camera", "Founder Ernest Leitz and camera", "The founder's name Ernest Leitz and camera"]
+}
+-- Answer metadata end
 10
 
 When was Earth Day first celebrated?
@@ -1039,7 +1143,11 @@ When was Earth Day first celebrated?
 10
 
 How many legs does a lobster have?
-10
+-- Answer metadata begin
+{
+    "answers": ["Ten", "10"]
+}
+-- Answer metadata end
 10
 
 What year did Dunkin' Donuts become Dunkin'?
@@ -1047,27 +1155,27 @@ What year did Dunkin' Donuts become Dunkin'?
 10
 
 What is Florida's state bird?
-The Northern Mockingbird
+-- Answer metadata begin
+{
+    "answers": ["Northern Mockingbird", "The Northern Mockingbird"]
+}
+-- Answer metadata end
 10
 
 What was Sabrina's cat's name in "Sabrina the Teenage Witch"?
 Salem
 10
 
-What year was the original "Jurassic Park" movie released?
-1993
-10
-
 Which player from the Dallas Mavericks is an investor in Big Blanket Co., the maker of 10-by-10 foot blankets?
 Boban Marjanovic
 10
 
 Where were Doritos invented?
-Casa de Fritos at Disneyland
-10
-
-What's the name of Ginny's Pygmy Puff?
-Arnold
+-- Answer metadata begin
+{
+    "answers": ["Casa de Fritos at Disneyland", "Casa de Fritos, Disneyland", "Casa de Fritos Disneyland", "Casa de Fritos"]
+}
+-- Answer metadata end
 10
 
 What president was a licensed bartender?
@@ -1078,16 +1186,20 @@ What type of race is the Tour de France?
 Bicycle
 10
 
-What is the name of Hagrid's half-brother?
-Grawp
-10
-
 How many pounds of curly fries does Arby's sell in a year?
-100 million
+-- Answer metadata begin
+{
+    "answers": ["100 million", "100,000,000", "100000000"]
+}
+-- Answer metadata end
 10
 
 How many points does the Star of David have?
-Six
+-- Answer metadata begin
+{
+    "answers": ["Six", "6"]
+}
+-- Answer metadata end
 10
 
 Who won first season of "America's Next Top Model"?
@@ -1122,20 +1234,24 @@ What is the Grinch's dog's name?
 Max
 10
 
-What is the name of Boba Fett's ship in "Star Wars"?
-Slave 1
-10
-
 What year was Kodak founded?
 1892
 10
 
 What is Taylor Swift's lucky number?
-13
+-- Answer metadata begin
+{
+    "answers": ["Thirteen", "13"]
+}
+-- Answer metadata end
 10
 
 How many Oscars does Jane Fonda have?
-Two
+-- Answer metadata begin
+{
+    "answers": ["Two", "2"]
+}
+-- Answer metadata end
 10
 
 What animal's nickname is "sea cow"?
@@ -1143,7 +1259,11 @@ Manatee
 10
 
 How many Academy Awards did "Titanic" win?
-11
+-- Answer metadata begin
+{
+    "answers": ["Eleven", "11"]
+}
+-- Answer metadata end
 10
 
 Where was the first Olympics held?
@@ -1151,7 +1271,11 @@ Panathenaic Stadium, Greece
 10
 
 What percentage of the Earth's wildlife is found in the ocean?
-94%
+-- Answer metadata begin
+{
+    "answers": ["94%", "94", "Ninety-four"]
+}
+-- Answer metadata end
 10
 
 What U.S. state grows coffee beans?
@@ -1163,7 +1287,11 @@ Starcourt Mall
 10
 
 How often are the Summer Games held?
-Every four years
+-- Answer metadata begin
+{
+    "answers": ["Every four years", "Every 4 years", "4 years", "Four years"]
+}
+-- Answer metadata end
 10
 
 Which Disney princess has a Scottish accent?
@@ -1182,10 +1310,6 @@ What animal has the biggest eyes?
 Giant Squid
 10
 
-What comic series is the CW's "Riverdale" based on?
-Archie
-10
-
 How many reindeer does Santa have?
 Eight
 10
@@ -1194,7 +1318,7 @@ What are the Cleveland Browns' team colors?
 Brown and orange
 10
 
-In what movie does Robert De Niro say, "You talkin' to me?"
+In what movie does Robert De Niro say, "You talkin' to me?"?
 Taxi Driver
 10
 
@@ -1203,15 +1327,27 @@ Point Barrow, Alaska
 10
 
 How many people tuned into the last episode of "Friends"?
-52.5 million
+-- Answer metadata begin
+{
+    "answers": ["52.5 million", "52,500,000", "52500000"]
+}
+-- Answer metadata end
 10
 
 What is Texas' state flower?
-The Bluebonnet
+-- Answer metadata begin
+{
+    "answers": ["Bluebonnet", "The Bluebonnet"]
+}
+-- Answer metadata end
 10
 
 How many floors does the Eiffel Tower have?
-Three
+-- Answer metadata begin
+{
+    "answers": ["Three", "3"]
+}
+-- Answer metadata end
 10
 
 What is the name of the world's hottest chili pepper?
@@ -1219,7 +1355,11 @@ Carolina Reaper
 10
 
 What is Starbucks' logo?
-A Siren
+-- Answer metadata begin
+{
+    "answers": ["Siren", "The Siren"]
+}
+-- Answer metadata end
 10
 
 What is the largest bone in the human body?
@@ -1238,16 +1378,12 @@ What are baby rabbits called?
 Kits
 10
 
-What year was "Jaws" released?
-1975
-10
-
 In football, how many points does a touchdown have?
-Six
-10
-
-In "Star Wars," who built C-3P0?
-Anakin Skywalker
+-- Answer metadata begin
+{
+    "answers": ["Six", "6"]
+}
+-- Answer metadata end
 10
 
 Who painted "Girl with a Pearl Earring"?
@@ -1259,7 +1395,11 @@ Turtle
 10
 
 How many seasons did "The Oprah Winfrey Show" run?
-25
+-- Answer metadata begin
+{
+    "answers": ["Twenty-five", "25"]
+}
+-- Answer metadata end
 10
 
 What year was the first Barbie doll released?
@@ -1267,23 +1407,27 @@ What year was the first Barbie doll released?
 10
 
 How long was the first Thanksgiving?
-Three days
+-- Answer metadata begin
+{
+    "answers": ["Three days", "3 days"]
+}
+-- Answer metadata end
 10
 
 How many planets make up the solar system?
-Eight
+-- Answer metadata begin
+{
+    "answers": ["Eight", "8"]
+}
+-- Answer metadata end
 10
 
 How many colors are in a rainbow?
-Seven
-10
-
-"The Princess and the Frog" is set in which American city?
-New Orleans
-10
-
-What is Hermione's Patronus?
-Otter
+-- Answer metadata begin
+{
+    "answers": ["Seven", "7"]
+}
+-- Answer metadata end
 10
 
 Who wrote "A Little Princess"?
@@ -1298,10 +1442,6 @@ Who was the first couple to win "The Amazing Race"?
 Rob Frisbee and Brennan Swain
 10
 
-Who was the first woman ever inducted into the Rock and Roll Hall of Fame?
-Aretha Franklin
-10
-
 Who voiced Ms. Frizzle on the children's television series "Magic School Bus"?
 Lily Tomlin
 10
@@ -1311,14 +1451,18 @@ Boxing Day
 10
 
 Which three zodiac signs are summer signs?
-Cancer, Leo and Virgo
+-- Answer metadata begin
+{
+    "answers": ["Cancer, Leo, and Virgo", "Cancer, Virgo, and Leo", "Leo, Cancer, and Virgo", "Leo, Virgo, and Cancer", "Virgo, Cancer, and Leo", "Virgo, Leo, and Cancer"]
+}
+-- Answer metadata end
 10
 
 Which month of the year is National Ice Cream Month?
 July
 10
 
-Which astronomer is called out in "Bohemian Rhapsody"?
+Which astronomer is called out in the Queen song "Bohemian Rhapsody"?
 Galileo
 10
 
@@ -1343,17 +1487,17 @@ China
 10
 
 How many ghosts show up in "A Christmas Carol"?
-Four
+-- Answer metadata begin
+{
+    "answers": ["Four", "4"]
+}
+-- Answer metadata end
 10
 
 In what city is the world's largest Starbucks?
 Chicago
 10
 
-Who is the villain in "Peter Pan"?
-Captain Hook
-10
-
 Who was the youngest U.S. president?
 Theodore Roosevelt
 10
@@ -1370,24 +1514,24 @@ Which country gives students the longest summer holiday?
 Italy
 10
 
-What is the school's mascot in "High School Musical"?
-Wild Cats
-10
-
 Where are cricket's ears located?
 On their legs
 10
 
-What country does "The Jungle Book" take place in?
-India
-10
-
 How many folds are in a chef's hat?
-100
+-- Answer metadata begin
+{
+    "answers": ["One hundred", "100"]
+}
+-- Answer metadata end
 10
 
 What are California's state colors?
-Blue and Gold
+-- Answer metadata begin
+{
+    "answers": ["Blue and gold", "Gold and blue", "Blue gold", "Gold blue", "Blue, gold", "Gold, blue"]
+}
+-- Answer metadata end
 10
 
 What is United Kingdom's national Anthem?
@@ -1403,10 +1547,14 @@ Liberia
 10
 
 Who's picture is on the US $50 bill?
-Ulysses Grant
+-- Answer metadata begin
+{
+    "answers": ["Ulysses Grant", "Ulysses S. Grant", "Ulysses S Grant"]
+}
+-- Answer metadata end
 5
 
-Name the tallest nonextinct mammal at birth
+Name the tallest nonextinct mammal at birth?
 Giraffe
 15
 
@@ -1423,11 +1571,20 @@ What year did the Berlin wall fall?
 10
 
 What is the more popular name for the portrait officially titled "La Gioconda," painted in 1503?
-The Mona Lisa
+-- Answer metadata begin
+{
+    "answers": ["Mona Lisa", "The Mona Lisa"]
+}
+-- Answer metadata end
 10
 
 What element does the chemical symbol Au stand for?
-Gold
+-- Answer metadata begin
+{
+    "answers": ["Gold"],
+    "answerFact": "The symbol Au comes from the Latin word for gold, 'aurum'"
+}
+-- Answer metadata end
 10
 
 What is the sign directly opposite Scorpio in the zodiac?
@@ -1435,11 +1592,20 @@ Taurus
 10
 
 Who is considered the first female self-made millionaire in the U.S.?
-Madam C.J. Walker
+-- Answer metadata begin
+{
+    "answers": ["Madam C.J. Walker", "Madam CJ Walker"]
+}
+-- Answer metadata end
 10
 
 How many colors were on the original Pride flag, flown at the San Francisco Gay Freedom Day Parade in 1978?
-Eight (the pink and turquoise stripes were dropped by 1979 for production reasons)
+-- Answer metadata begin
+{
+    "answers": ["Eight", "8"],
+    "answerFact": "The pink and turquoise stripes were dropped by 1979 for production reasons"
+}
+-- Answer metadata end
 10
 
 What is the first name of the main female protagonist in Zora Neale Hurston's classic novel Their Eyes Were Watching God?
@@ -1447,7 +1613,11 @@ Janie
 10
 
 The shooting of whom, in 1914, started World War I?
-Archduke Franz Ferdinand
+-- Answer metadata begin
+{
+    "answers": ["Franz Ferdinand", "Archduke Franz Ferdinand"]
+}
+-- Answer metadata end
 10
 
 What is the smallest planet in our solar system?
@@ -1455,15 +1625,27 @@ Mercury
 10
 
 Who is commonly credited with throwing the first brick at Stonewall in 1969, beginning an uprising that became a major turning point for LGBTQ+ rights in the U.S.?
-Marsha P. Johnson
+-- Answer metadata begin
+{
+    "answers": ["Marsha P. Johnson", "Marsha P Johnson"]
+}
+-- Answer metadata end
 10
 
 What are the first 22 cards in a tarot deck called?
-The Major Arcana
+-- Answer metadata begin
+{
+    "answers": ["Major Arcana", "The Major Arcana"]
+}
+-- Answer metadata end
 10
 
 What was the name of the possessed hotel in Steven King's novel (and movie) The Shining, based on the real-life Stanley Hotel in Colorado?
-The Overlook Hotel
+-- Answer metadata begin
+{
+    "answers": ["Overlook Hotel", "The Overlook Hotel", "The Overlook", "Overlook"]
+}
+-- Answer metadata end
 10
 
 What is the capital of India?
@@ -1471,7 +1653,11 @@ New Delhi
 10
 
 Which two states in the U.S. share the most borders with other states?
-Tennessee and Missouri
+-- Answer metadata begin
+{
+    "answers": ["Tennessee and Missouri", "Missouri and Tennessee", "Tennessee, Missouri", "Missouri, Tennessee", "Tennessee Missouri", "Missouri Tennessee"]
+}
+-- Answer metadata end
 10
 
 At a restaurant, you'll see deer meat on the menu under what name?
@@ -1479,7 +1665,12 @@ Venison
 10
 
 What country has the national language with the longest alphabet?
-Cambodia (their national language, Khmer, has 74 characters!)
+-- Answer metadata begin
+{
+    "answers": ["Cambodia"],
+    "answerFact": "Their national language, Khmer, has 74 characters"
+}
+-- Answer metadata end
 10
 
 What is the pseudonym for the author of the best-selling, four-part book series known as the Neapolitan Novels, now an HBO series?
@@ -1487,7 +1678,11 @@ Elana Ferante
 10
 
 What is the name of the ship that rescued Titanic passengers hours after the ship went down?
-The Carpathia
+-- Answer metadata begin
+{
+    "answers": ["Carpathia", "The Carpathia"]
+}
+-- Answer metadata end
 10
 
 Where is recognized as the location of the hottest temperature ever recorded on Earth, per the World Meteorological Organization?
@@ -1499,7 +1694,11 @@ Sense and Sensibility
 10
 
 Which two countries have the longest shared international border?
-Canada and the US
+-- Answer metadata begin
+{
+    "answers": ["Canada and the US", "US and Canada", "The US and Canada", "Canada, US", "US, Canada", "Canada US", "US Canada", "Canada and the United States", "The United States and Canada", "United States and Canada", "Canada and United States"]
+}
+-- Answer metadata end
 10
 
 What city hosted the 2014 Winter Olympics?
@@ -1510,7 +1709,7 @@ What is the human body's largest organ?
 Skin
 10
 
-What year was the first iPhone released?
+In what year was the first iPhone released?
 2007
 10
 
@@ -1519,15 +1718,27 @@ A murder
 10
 
 How many feet are in a yard?
-Three
+-- Answer metadata begin
+{
+    "answers": ["Three", "3"]
+}
+-- Answer metadata end
 10
 
 How many bones do sharks have?
-0
+-- Answer metadata begin
+{
+    "answers": ["Zero", "0"]
+}
+-- Answer metadata end
 10
 
 What is the deadliest mammal?
-Hippo
+-- Answer metadata begin
+{
+    "answers": ["Hippo", "Hippopotamus"]
+}
+-- Answer metadata end
 10
 
 What is the deadliest insect?
@@ -1539,11 +1750,16 @@ Argentina
 10
 
 What is the capital of Singapore?
-Singapore (it's an island city-state)
+-- Answer metadata begin
+{
+    "answers": ["Singapore"],
+	"answerFact": "Singapore is an island city-state"
+}
+-- Answer metadata end
 10
 
 What is the word for the weather event also called a winter hurricane?
-A bomb cyclone
+Bomb cyclone
 10
 
 What was the first country to give women the right to vote?
@@ -1579,11 +1795,19 @@ Dolly Parton
 10
 
 What is the name for the equinox that occurs on March 20th or 21st of each year?
-The Vernal Equinox
+-- Answer metadata begin
+{
+    "answers": ["Vernal Equinox", "The Vernal Equinox"]
+}
+-- Answer metadata end
 10
 
 What's the shortcut for the paste function on most computers?
-Ctrl-V
+-- Answer metadata begin
+{
+    "answers": ["Ctrl-V", "Ctrl+V", "Ctrl V"]
+}
+-- Answer metadata end
 10
 
 What river runs through Paris?
@@ -1607,7 +1831,11 @@ Iceland
 10
 
 How many colors will you find in a regular bag of M&Ms?
-Six
+-- Answer metadata begin
+{
+    "answers": ["Six", "6"]
+}
+-- Answer metadata end
 10
 
 The Statue of Liberty was a gift to the U.S. from what country?
@@ -1615,11 +1843,19 @@ France
 10
 
 How many wives did Henry VIII have?
-Six
+-- Answer metadata begin
+{
+    "answers": ["Six", "6"]
+}
+-- Answer metadata end
 10
 
 What is the rarest blood type?
-AB negative
+-- Answer metadata begin
+{
+    "answers": ["AB negative", "AB-", "Type AB negative", "Type AB-"]
+}
+-- Answer metadata end
 10
 
 Which famous art movement did Pablo Picasso co-create?
@@ -1631,15 +1867,23 @@ Thomas Jefferson
 10
 
 For up to how long do cicadas live underground before emerging above ground for just a few weeks?
-17 years
+-- Answer metadata begin
+{
+    "answers": ["17 years", "Seventeen years"]
+}
+-- Answer metadata end
 10
 
 What phase does a moon enter into after it's full?
-Waxing Gibbous (if you guessed just the first bit, that works!)
+Waxing Gibbous
 10
 
 Where on the food pyramid do eggplants belong?
-In the fruit section
+-- Answer metadata begin
+{
+    "answers": ["The fruit section", "Fruit section"]
+}
+-- Answer metadata end
 10
 
 What alcoholic beverage is made from juniper berries?
@@ -1655,11 +1899,19 @@ Six Flags New Jersey
 10
 
 What is the national animal of Scotland?
-The unicorn
+-- Answer metadata begin
+{
+    "answers": ["Unicorn", "The Unicorn"]
+}
+-- Answer metadata end
 10
 
 For how many nights is Hanukkah celebrated?
-Eight
+-- Answer metadata begin
+{
+    "answers": ["Eight", "8"]
+}
+-- Answer metadata end
 10
 
 What religious and political organization did Malcolm X join in 1952, helping it to grow exponentially before cutting ties with it in 1964?
@@ -1671,7 +1923,11 @@ Japan
 10
 
 How many keys are on a modern, standard-sized piano?
-88
+-- Answer metadata begin
+{
+    "answers": ["Eighty-Eight", "88"]
+}
+-- Answer metadata end
 10
 
 Area 51 is located in which U.S. state?
@@ -1679,19 +1935,35 @@ Nevada
 10
 
 What U.S. fast food chain is credited with introducing the first drive-through window to the masses?
-In-N-Out Burger
+-- Answer metadata begin
+{
+    "answers": ["In-N-Out Burger", "In-N-Out"]
+}
+-- Answer metadata end
 10
 
 What temperature (in Fahrenheit degrees) does water boil at?
-212
+-- Answer metadata begin
+{
+    "answers": ["212", "Two hundred twelve"]
+}
+-- Answer metadata end
 10
 
 What temperature (in Celsius/Centigrade degrees) does water boil at?
-100
+-- Answer metadata begin
+{
+    "answers": ["100", "One hundred"]
+}
+-- Answer metadata end
 10
 
 Where is Harvard University located?
-Cambridge, Massachusetts
+-- Answer metadata begin
+{
+    "answers": ["Cambridge, Massachusetts", "Cambridge, MA"]
+}
+-- Answer metadata end
 10
 
 Which marine animal species hold hands in their sleep to prevent drifting apart?
@@ -1711,11 +1983,19 @@ Roulette
 20
 
 Who said: "I'm the president of the United States and I'm not going to eat any more broccoli"?
-George Bush
+-- Answer metadata begin
+{
+    "answers": ["George HW Bush", "George H.W. Bush", "George Herbert Walker Bush", "George Bush Sr", "George Bush Sr.", "George Bush Senior"]
+}
+-- Answer metadata end
 10
 
 What so-called "war" spawned the dueling slogans "Better Dead Than RED" and "Better Red Than Dead" in the 1950s?
-Cold War
+-- Answer metadata begin
+{
+    "answers": ["Cold War", "The Cold War"]
+}
+-- Answer metadata end
 10
 
 What president was shot while walking to California Governor Jerry Brown's office?
@@ -1723,7 +2003,11 @@ Gerald Ford
 10
 
 Who earned infamy for noting: "A billion dollars isn't worth what it used to be"?
-J Paul Getty
+-- Answer metadata begin
+{
+    "answers": ["J Paul Getty", "J. Paul Getty"]
+}
+-- Answer metadata end
 20
 
 What ethnic group was largely responsible for building most of the early railways in the U.S. West?
@@ -1743,11 +2027,11 @@ What election year saw bumper stickers reading "Wallace, Wallace, Uber Alles"?
 10
 
 In 1983, what Cowboy's 99-yard run from scrimmage put him in the NFL football record book?
-Tony Dorsett's
+Tony Dorsett
 10
 
 What 20th-century conflict was dubbed the "forgotten war" despite 54,246 U.S. deaths?
-The Korean War
+Korean War
 10
 
 What single name is more commonly applied to Holy Roman Emperor Charles the Great?
@@ -1795,7 +2079,11 @@ Martin Luther King Jr
 10
 
 What did Republicans call the platform they hyped in the 1994 Congressional elections?
-The Contract With America
+-- Answer metadata begin
+{
+    "answers": ["Contract With America", "The Contract With America"]
+}
+-- Answer metadata end
 10
 
 What brave-hearted Scottish patriot led soldiers to a defeat of the English at the Battle of Cambuskenneth in 1297?
@@ -1803,7 +2091,11 @@ William Wallace
 10
 
 What nation issued the five-dollar bill found in Abraham Lincoln's pocket when he was shot?
-The Confederate States of America
+-- Answer metadata begin
+{
+    "answers": ["Confederate States of America", "The Confederate States of America"]
+}
+-- Answer metadata end
 10
 
 What political system was gradually dismantled in South Africa, starting in 1989?
@@ -1815,7 +2107,11 @@ El Cid
 10
 
 What field and city name did Amelia Earhart have her first flying lesson at?
-Kinner Field, Long Beach
+-- Answer metadata begin
+{
+    "answers": ["Kinner Field, Long Beach", "Kinner Field"]
+}
+-- Answer metadata end
 20
 
 For safety, bacon can be treated to prevent what disease?
@@ -1899,7 +2195,11 @@ Amazon
 10
 
 How many faces does a Dodecahedron have?
-12
+-- Answer metadata begin
+{
+    "answers": ["Twelve", "12"]
+}
+-- Answer metadata end
 10
 
 Queen guitarist Brian May is also an expert in what scientific field?
@@ -1911,7 +2211,11 @@ Yellow
 10
 
 How many ghosts chase Pac-Man at the start of each game?
-4
+-- Answer metadata begin
+{
+    "answers": ["Four", "4"]
+}
+-- Answer metadata end
 10
 
 What Renaissance artist is buried in Rome's Pantheon?
@@ -1987,14 +2291,18 @@ Lithuania
 10
 
 How many bones do we have in an ear?
-3
+-- Answer metadata begin
+{
+    "answers": ["Three", "3"]
+}
+-- Answer metadata end
 10
 
 Who famously crossed the Alps with elephants on the way to war with the Romans?
 Hannibal
 10
 
-True or False: Halloween originated as an ancient Irish festival.
+True or False: Halloween originated as an ancient Irish festival.?
 True
 5
 
@@ -2021,3 +2329,245860 @@ Ukraine
 The Parthenon Marbles are controversially located in what museum?
 British Museum
 10
+
+A ____ atom in an atomic clock beats 9,192,631,770 times a second
+Cesium
+10
+
+A ____ generates temperatures five times hotter than those found on the sun's surface
+Lightning bolt
+10
+
+A ____ is a pact between a secular authority & the church
+Concordat
+10
+
+A ____ is the blue field behind the stars
+Canton
+10
+
+A ____ occurs when all the planets of the our Solar System line up
+Sysygy
+10
+
+A ____ razor removed from King Tut's Tomb was still sharp enough to be used
+Golden
+10
+
+A ____ takes 33 hours to crawl one mile
+Snail
+10
+
+A ____ women can get a divorce if her husband doesn't give her coffee
+Saudi arabian
+10
+
+A ____ written to celebrate a wedding is called a epithalamium
+Poem
+10
+
+A 'dybbuk' is an evil spirit in which folklore?
+Jewish
+10
+
+A 'pigskin' is another name for a(n) ____
+Football
+10
+
+A 'sirocco' refers to a type of ____
+Wind
+10
+
+A 300,000 pound wedding dress made of platinum was once exhibited, and in the instructions from the designer was a warning. What was it?
+Do not iron
+10
+
+A 41-gun salute is the traditional salute to announce a royal birth in ____
+Great britain
+10
+
+A bird in the hand is worth ____
+Two in the bush
+10
+
+What is a block of compressed coal dust used as fuel called?
+Briquette
+10
+
+A blockage in a pipe caused by a trapped bubble of air?
+Airlock
+10
+
+A blunt thick needle for sewing with thick thread or tape?
+Bodkin
+10
+
+What is the name of a type of boat or raft with two parallel hulls?
+Catamaran
+10
+
+A Boeing 707 uses ____ gallons of petrol in its take-off climb
+4000
+10
+
+A bolt of lighting can strike the earth with a force as great as ____ volts
+-- Answer metadata begin
+{
+    "answers": ["100 million", "100,000,000", "100000000"]
+}
+-- Answer metadata end
+10
+
+A booklet containing descriptive information?
+Brochure
+10
+
+A branched hanging support for lights?
+Chandelier
+10
+
+A brand name of morphine once marketed by bayer?
+Heroin
+10
+
+A British lawyer who does not appear before judges, but organizes the case for trial is called a ____
+Solicitor
+10
+
+A broken clock is right at least ______
+Twice a day
+10
+
+What is a calm ocean region near the equator?
+Doldrums
+10
+
+A canton is the ____ field behind the stars
+Blue
+10
+
+A canton is the blue field behind the ____
+Stars
+10
+
+A carbohydrate consists of carbon, hydrogen, and which other element?
+Oxygen
+10
+
+A carrier pigeon who served in wwi, who stopped an American bombardment of American troops, cher ami, is now on permanant display where?
+Smithsonian institution
+10
+
+A cesium atom in an ______ clock beats 9,192,631,770 times a second
+Atomic
+10
+
+A cesium atom in an atomic clock beats ____ times a second
+-- Answer metadata begin
+{
+    "answers": ["9,192,631,770", "9192631770"]
+}
+-- Answer metadata end
+10
+
+A change in frequency observed when light is scattered in a transparent material?
+Raman effect
+10
+
+A Chapter 12 bankruptcy provides debt relief for whom?
+Family farmer
+10
+
+A charge of DWAI is for what?
+Driving while ability impaired
+10
+
+A chest X-ray is comprised of 90,000 to 130,000 ____ volts
+Electron
+10
+
+A chinese method of divination?
+Ching
+10
+
+A cholecyst is more commonly known as a(n) ____
+Gallbladder
+10
+
+A chromosome is large than a?
+Gene
+10
+
+A chronic disease of the liver?
+Cirrhosis
+10
+
+A Cicada passes eggs through its?
+Ovipositor
+10
+
+A cigarette brand that fits these blanks;?
+Benson & hedges
+10
+
+A coffee pot with a plunger that pushes the grounds to the bottom?
+Cafetiere
+10
+
+A collision between a bird and an aircraft?
+Bird-strike
+10
+
+A common name for the pancreas is?
+Sweetbread
+10
+
+A company in ____ makes dinnerware out of wheat, so you can eat your plate
+Taiwan
+10
+
+A company in Taiwan makes ____ out of wheat, so you can eat your plate
+Dinnerware
+10
+
+A company in taiwan makes dinnerware out of wheat, so you can eat your ____
+Plate
+10
+
+A company in Taiwan makes dinnerware out of____ , so you can eat your plate
+Wheat
+10
+
+A complex alcohol constituent of all animal fats and oils?
+Cholesterol
+10
+
+A condition causing breathing difficulties?
+Asthma
+10
+
+A condition characterized by self-absorption and withdrawal?
+Autism
+10
+
+A container for carrying a corpse from the scene of an accident etc?
+Body bag
+10
+
+A cough releases an explosive charge of air that moves at speeds up to how many miles an hour?
+60
+10
+
+A cowboy's hat is also known as a(n)?
+Stetson
+10
+
+A cross-head screwdriver is also known as?
+Phillips screwdriver
+10
+
+A cuban dance in slow duple time or a piece of music composed for this dance?
+Habanera
+10
+
+A cyclonic (rotating) tropical storm with winds at the center in excess of 74 miles per hour is called?
+Hurricane
+10
+
+A day on ____ is about 9 hours, 50 minutes, 30 seconds at the equator
+Jupiter
+10
+
+A day on Jupiter is about ____ hours, 50 minutes, 30 seconds at the equator
+-- Answer metadata begin
+{
+    "answers": ["Nine", "9"]
+}
+-- Answer metadata end
+10
+
+A dealer in dress accessories and sewing goods?
+Haberdasher
+10
+
+A decoction of dandelion roots and leaves is an old remedy for dissolving urinary ____
+Stones
+10
+
+A Dermatherm is an instrument which measures?
+Skin Temperature
+10
+
+A devastating ____ epidemic in 1822 left New York City with 16,000 corpses and no readily available space for burial
+Yellow fever
+10
+
+A device invented as a primitive steam engine by the Greek engineer Hero, about the time of the birth of Christ, is used today as a?
+Rotating lawn sprinkler
+10
+
+A device used to change the voltage of alternating currents is a ____
+Transformer
+10
+
+A dime has how many ridges around the edge?
+118
+10
+
+A dime is equal to how many cents?
+-- Answer metadata begin
+{
+    "answers": ["Ten", "10"]
+}
+-- Answer metadata end
+5
+
+A famous RAH novel, as well as a number believed to be cursed?
+The number of the beast
+10
+
+A favourite spot for vampires to bite (that's one hell of a hickey!)?
+Neck
+10
+
+A fetus acquires fingerprints at the age of ____ months
+Three
+10
+
+A figure having an elongated rectangular shape?
+Oblong
+10
+
+A fine cotton fabric, often stiffened?
+Organdie
+10
+
+A fingernail or toenail takes about how many months to grow from base to tip?
+Six
+10
+
+A firm in Britain sold fall-out shelters for?
+Pets
+10
+
+A five line humorous verse?
+Limerick
+10
+
+A flag flown upside-down is a signal of a(n) ____
+Emergency
+10
+
+A flat bottomed boat on canal or river?
+Barge
+10
+
+A flat V shaped missile that returns?
+Boomerang
+10
+
+A flat-bottomed conical laboratory flask with a narrow neck is called a(n) ____
+Erlenmeyer flask
+10
+
+A fleet of small ships?
+Flotilla
+10
+
+A flush toilet exists today that dates back to ____ B.C
+2000
+10
+
+A foot-long ruler is ____ inches long
+-- Answer metadata begin
+{
+    "answers": ["Twelve", "12"]
+}
+-- Answer metadata end
+10
+
+A Football ball has ____ panels
+32
+10
+
+A full loaded supertanker travelling at normal speed takes a least ____ minutes to stop
+-- Answer metadata begin
+{
+    "answers": ["Twenty", "20"]
+}
+-- Answer metadata end
+10
+
+A full moon always rises at____
+Sunset
+10
+
+A full moon is ____ times brighter than a half moon
+Nine
+10
+
+A gas produced by the incomplete combustion of coal in a mine fire is very poisonous, what is its chemical name?
+Carbon monoxide
+10
+
+A globe is the symbol for which muse?
+Urania
+10
+
+A golden ____ removed from King Tut's Tomb was still sharp enough to be used
+Razor
+10
+
+A Greek or Roman two handled jar?
+Amphora
+10
+
+A Habanero is a native of which city?
+Havana
+10
+
+A hard working adult sweats up to ____ gallons per day
+Four
+10
+
+A hard-boiled egg will____ . An uncooked or soft-boiled egg will not
+Spin
+10
+
+A Harvard study of college drinking showed that more than ____ percent of students indulge in binge drinking, which is defined as consuming five drinks at one sitting by men or four drinks by women. Of college students who drink, one-third drink to get drunk
+40
+10
+
+A health profession concerned with the prevention, diagnosis, & treatment of disorders of the teeth & adjacent tissues of the head, neck, & mouth?
+Dentistry
+10
+
+A heavy winter fog containing ice crystals is a ____
+Pogonip
+10
+
+A herb or drug described as 'diaphoretic', causes what condition?
+Perspiration
+10
+
+A herb or drug described as 'haemostatic' performs which effect?
+Stops bleeding
+10
+
+A hoop worn under skirts is called a what?
+Farthingale
+10
+
+A horse named nita beat the first locomotive ever built in America in a famous race in 1830, what was the name of the train?
+Tom thumb
+10
+
+A hummingbird weighs less than a?
+Penny
+10
+
+A is the international vehicle registration letter for which country?
+Austria
+10
+
+A jiffy is an actual unit of time for ____ of a second. Thus the saying, I will be there in a jiffy!
+1/100th
+10
+
+A journey of a thousand miles begins with ____
+A single step
+10
+
+A jumbo jet uses ____ gallons of fuel to take off
+4,000
+10
+
+A kind of expanded polystyrene?
+Styrofoam
+10
+
+A kind of small domestic fowl?
+Bantam
+10
+
+A kind of tortoise in the galapagos islands has an upturned shell at its neck so it can reach its head up to eat what?
+Cactus branches
+10
+
+A kingfisher is also known to the ancient greeks as a?
+Halcyon
+10
+
+A kipper is what type of smoked fish?
+Herring
+10
+
+A LaForte fracture is a fracture of all ____ bones
+Facial
+10
+
+A landowner in Scotland?
+Laird
+10
+
+A large box for valuables?
+Coffer
+10
+
+A large cage or building for keeping birds?
+Aviary
+10
+
+A large fortified residential building?
+Castle
+10
+
+A large French country house?
+Chateau
+10
+
+A large oven in which pottery is fired is a ____
+Kiln
+10
+
+A large patterned handkerchief?
+Bandanna
+10
+
+A large S.American vulture?
+Condor
+10
+
+A large sea birdor greedy person?
+Gannet
+10
+
+A large swarm of ____ can eat 80,000 tons of corn in a day
+Locusts
+10
+
+A large swarm of locusts can eat ____ tons of corn in a day
+80,000
+10
+
+A large swarm of locusts can eat 80,000 tons of ____ in a day
+Corn
+10
+
+A large whale needs more than ____ tonnes of food a day
+Two
+10
+
+A latin American dance usually performed in single file?
+Conga
+10
+
+A legendary or moral tale?
+Fable
+10
+
+A letter might end with SWAK, which is an acronym for?
+Sealed with a kiss
+10
+
+A lifetime supply of all the vitamins you need weighs only about ____ ounces
+Eight
+10
+
+A light aircraft without an engine?
+Glider
+10
+
+A light canvas shoe with a plaited sole?
+Espadrille
+10
+
+A light clear red colour?
+Cerise
+10
+
+A light four wheeled carriage, named after a greek mythological character?
+Phaeton
+10
+
+A light iron-tipped S.African spear?
+Assegal
+10
+
+A light umbrella used to give shade?
+Parasol
+10
+
+A lightning bolt generates temperatures ____ times hotter than those found on the sun's surface
+Five
+10
+
+A little over one hundred years ago, ____ arrived in the United States for the first time. It was transmitted by an infection carried aboard the Hamburg-American Line's Moravia on August 30, 1892
+Cholera
+10
+
+A long broad tree lined street?
+Boulevard
+10
+
+A long cylindrical pillow?
+Bolster
+10
+
+A long or indefinite period?
+Aeon
+10
+
+A long thin French type of bread?
+Baguette
+10
+
+A long tunic worn by men in the Near East?
+Caftan
+10
+
+A long wined sea bird related to the petrel?
+Albatross
+10
+
+A loofah is a type of what?
+Plant
+10
+
+A low wet area generally with a depth of organic matter is called?
+Muskeg
+10
+
+A lump of pure gold the size of a matchbox can be flattened into a sheet the size of what?
+Tennis court
+10
+
+A lump of pure____ the size of a matchbox can be flattened into a sheet the size of a tennis court
+Gold
+10
+
+A magnum of champagne is how many litres?
+1.5
+10
+
+A male ____ is 5 times hornier than the average human male
+Chimpanzee
+10
+
+A male cat is called a what?
+Tom
+10
+
+A male chimpanzee is ____ times hornier than the average human male
+Five
+10
+
+A male chimpanzee is 5 times ____ than the average human male
+Hornier
+10
+
+A male deer is called a ____ ____
+Stag
+10
+
+A male DONKEY is called a ____
+Jackass
+10
+
+A male goose?
+Gander
+10
+
+A male horse is called a...?
+Stallion
+10
+
+A male OX is called a ____
+Steer
+10
+
+A male rabbit is called a...?
+Buck
+10
+
+A male singer whose sexual organs have been modified is known as a what?
+Castrato
+10
+
+A male zebra is called a ____
+Stallion
+10
+
+A man named ____ Osborne had the hiccups for 69 years
+Charles
+10
+
+A man named ____ Peterson is the inventor of the Egg McMuffin
+Ed
+10
+
+A man named Charles ____ had the hiccups for 69 years
+Osborne
+10
+
+A man named Charles Osborne had the hiccups for ____ years
+69
+10
+
+A man named Ed ____ is the inventor of the Egg McMuffin
+Peterson
+10
+
+A man's ____ contains between 7000 and 15,000 hairs
+Beard
+10
+
+A man's beard grows fastest when he ____
+Anticipates sex
+10
+
+A Mancunian is a native of which city?
+Manchester
+10
+
+A manned rocket reaches the moon in less time than it took a ____ to travel the length of England
+Stagecoach
+10
+
+A marigraph is an instrument which records what?
+Tide level
+10
+
+A maryland t-shirt slogan that parodied 'Virginia is for lovers' read what?
+Maryland is for crabs
+10
+
+A mashie, niblick and wedge are types of what?
+Golf clubs
+10
+
+A mass of flowers on a tree?
+Blossom
+10
+
+A massive ensemble of hundreds of millions of stars, all gravitationally interacting, and orbiting about a common center?
+Galaxy
+10
+
+A McDonald's straw will hold ____ ml, or just over one-and-a-half teaspoons of whatever you are drinking. This means that it would take 17,000 strawfuls of water to fill up a 34 gallon bathtub
+7.7
+10
+
+A medication that aids in expelling gas from the intestines is called a ____
+Carminative
+10
+
+A member of an ancient Greek school of philosophy founded by Zeno?
+Stoic
+10
+
+A member of the Commonwealth, which is the most southerly African country through which the Greenwich meridian passes?
+Ghana
+10
+
+A member of the largest group of algae in the golden algae phylum?
+Diatom
+10
+
+A method of resolving questions of conscience by applying moral principles or laws to concrete cases?
+Casuistry
+10
+
+A military attack on what country did the bamler plan of the second world war involve?
+Sweden
+10
+
+A million raised to fifth power?
+Quintillion
+10
+
+A millipede has ____ legs on each segment of its body
+Four
+10
+
+A minute to learn...a lifetime to master is the advertising slogan for which boardgame?
+Othello
+10
+
+A mistress among polygamous people?
+Concubine
+10
+
+A mixture of wine and soda water is known as a what?
+Spritzer
+10
+
+A modern day version of roman festival of hilaria still occurs in britain today what is it?
+April fool's day
+10
+
+A modern version of the ancient roman festival of hilaria still occurs in britain today, what is it?
+April fool's day
+10
+
+A moist fertile spot in a desert is called a(n)?
+Oasis
+10
+
+A mole can dig a tunnel ____ feet long in just one night
+300
+10
+
+A mole can dig over ____ feet of tunnel in a single night
+250
+10
+
+A monetary inflation at a very high rate?
+Hyperinflation
+10
+
+A monkey was once tried and convicted for doing what in south bend, indiana?
+Smoking a cigarette
+10
+
+A more common name for an anthrophagist is?
+Cannibal
+10
+
+A more common name for an anthrophphagist is?
+Cannibal
+10
+
+A more common name for an anthropophagist is?
+Cannibal
+10
+
+A mosquito has ____ teeth
+47
+10
+
+A moth has no?
+Stomach
+10
+
+A motorist who enjoys driving fast?
+Speed merchant
+10
+
+A movie featuring Robin Wright, Carey Elwes, and Andre the Giant?
+The Princess Bride
+10
+
+A mule is sired on a mare by an ass. What is the offspring of a stallion and a female ass?
+Hinny
+10
+
+A mustelidae family member is a(n) ____
+Weasel
+10
+
+A myrmecologist studies?
+Ants
+10
+
+A name for energy fuelled in ways that do not harm the enviroment?
+Alternative
+10
+
+A narrow concrete foundation for a wall?
+Footing
+10
+
+A narrow crack or split?
+Fissure
+10
+
+A narrow strip of wood?
+Batten
+10
+
+A native of the east end of London?
+Cockney
+10
+
+A necropsy is an autopsy on ____
+Animals
+10
+
+A new born baby breathes ____ times faster than an adult man
+Five
+10
+
+A new Merseyside estate is the setting for which soap opera?
+Brookside
+10
+
+A normal raindrop falls at about ____ miles per hour
+Seven
+10
+
+A novel by Keith Waterhouse?
+Billy liar
+10
+
+A nuclear reactor was built beneath a Chicago football stadium in which year?
+1942
+10
+
+A NUKE InterNETWORK poll found that ____ percent of Internet users have cut back on watching TV in order to spend more time online; 12 percent have cut back on seeing friends
+52
+10
+
+A one humped camel is called a ____
+Dromedary
+10
+
+A pack-day smoker will approx. lose 2 ____ every ten years
+Teeth
+10
+
+A painting of the Madonna and Child was saved for the nation with a ?10.25million donation from the lottery, who painted it?
+Botticelli
+10
+
+A painting of which famous Old Testament ruling, completed in 1495, is one of the earliest works by the artist Giorgione?
+Judgment of solomon
+10
+
+A pair of small drums played with the fingers?
+Bongo
+10
+
+A Pan Am flight, which left London Heathrow bound for New York in December 1998, was blown up by a bomb over a small Scotish town Name the town?
+Lockerbie
+10
+
+A pantry was originally used for the storage of which foodstuff?
+Bread
+10
+
+A parsec is a unit of what?
+Distance
+10
+
+A parthenophobic has a fear of?
+Virgins
+10
+
+A penny whistle has ____ finger holes
+Six
+10
+
+A period of five years?
+Quinquennium
+10
+
+A person 100 or more years old?
+Centenarian
+10
+
+A person at his wit's end is said to be losing his what?
+Marbles
+10
+
+A person at rest generates as much heat as a ____ -watt light bulb
+10
+10
+
+A person breathes ____ quarts of air every minute
+Seven
+10
+
+A person employed to drive a car?
+Chauffeur
+10
+
+A person in his eighties is called a(n) ____
+Octogenarian
+10
+
+A person learning a trade by working for an agreed period?
+Apprentice
+10
+
+A person living in solitude?
+Hermit
+10
+
+A person or animal lacking pigment in skin hair and eyes?
+Albino
+10
+
+A person putting a lot of effort into a task is said to be using?
+Elbow grease
+10
+
+A person refusing to join a strike?
+Blackleg
+10
+
+A person suffering from polythelia has 3 ____
+Nipples
+10
+
+A person walking before a person of rank?
+Usher
+10
+
+A person who believes that the existence of God is not provable?
+Agnostic
+10
+
+A person who deliberately sets fire to property?
+Arsonist
+10
+
+A person who eats only fruit?
+Fruitarian
+10
+
+A person who sells fruit etc. from a barrow?
+Costermonger
+10
+
+a person who speaks faroese most likely lives in this country?
+Denmark
+10
+
+A person who translates orally from one language to another?
+Interpreter
+10
+
+A person who works with iron?
+Blacksmith
+10
+
+A person will die in approximately 10 days without what?
+Sleep
+10
+
+A person with a strong desire to steal is a?
+Kleptomaniac
+10
+
+A person with refined taste in food and drink?
+Epicure
+10
+
+A persuasive or flattering person is said to have the gift of what?
+The gab
+10
+
+A pharmacological cure all is called a ____
+Panacea
+10
+
+A phon is a unit of what?
+Loudness
+10
+
+A photic sneeze is caused by ____
+Sunlight
+10
+
+A piece of soft leather from sheep or goats?
+Chamois
+10
+
+A pig always sleeps on its ____ side
+Right
+10
+
+A pig's ____ last for 30 minutes
+Orgasms
+10
+
+A pig's penis is shaped like a?
+Corkscrew
+10
+
+A pigs penis is shaped like what?
+Corkscrew
+10
+
+A pigs snout is called a?
+Gruntle
+10
+
+A pin-up photo of ____ adorned the first test bomb dropped on Bikini atoll in the Marshall Islands in July 1946
+Rita Hayworth
+10
+
+A pit filled with rubble or gravel into which water is drained?
+Soakaway
+10
+
+A pita is a type of what?
+Bread
+10
+
+A plant allied to the thistle with a partly edible flower?
+Artichoke
+10
+
+A plant produced by crossing different species is know as what?
+A hybrid
+10
+
+A plant that completes its entire life cycle in just one year is generally referred to as a(n):?
+Annual
+10
+
+A play by Lillian Hellman about hatred and greed in a southern family?
+Little foxes
+10
+
+A poem of fourteen lines is called a ____
+Sonnet
+10
+
+A poem written to celebrate a ____ is called a epithalamium
+Wedding
+10
+
+A poem written to celebrate a wedding is called a(n) ____
+Epithalamium
+10
+
+A polar bear's skin is black. Its fur is not white, but actually?
+Clear
+10
+
+A poll taken shows that between 74 and 94 percent of workers in the United States and Canada take 5 to 15 minutes daily for a ____
+Morning coffee break
+10
+
+A poltroon is a(n) ____
+Coward
+10
+
+A pommel is part of a what?
+Saddle
+10
+
+A popular climbing plant with sweet smelling flowers?
+Sweet pea
+10
+
+A pork product that's often served for breakfast?
+Bacon
+10
+
+A poster depicting lord kitchener pointing outwards stated what message?
+Your country needs you
+10
+
+A potent alcoholic drink from aniseed?
+Ouzo
+10
+
+A pound of armadillo meat contains how many calories?
+780 calories
+10
+
+A powerful tractor with a curved blade at the front used for clearing ground?
+Bulldozer
+10
+
+A pregnant goldfish is called a?
+Twit
+10
+
+A prostitute with wealthy or upper class connections?
+Courtesan
+10
+
+A pudding of stewed fruit under bread?
+Charlotte
+10
+
+A punishment by caning on the soles of the feet?
+Bastinado
+10
+
+A quarter of Russia is covered by ____
+Forest
+10
+
+A racing sledge steered and braked mechanically?
+Bobsleigh
+10
+
+A radian is a unit used to measure what?
+Angle
+10
+
+A rainbow can only occur when the sun is ____ degrees or less above the horizon
+Forty
+10
+
+A rare or unusual object?
+Curio
+10
+
+A rat can last longer without ____ than a camel
+Water
+10
+
+A rat can last longer without water than a ____
+Camel
+10
+
+A recent Gallup poll shows that ____ percent of Americans believe they will go somewhere after death
+69
+10
+
+A recent Gallup Poll Social Audit on gambling showed that ____ percent of Americans have bought a lottery ticket in the last 12 months, making lotteries by far the favorite choice of gamblers
+57
+10
+
+A recent Gallup survey showed that in the United States, 8 percent of kissers kept their eyes open, but more than ____ percent confessed to an occasional peek. Forty-one percent said they experienced their first serious smooch when they were 13, 14, or 15 years old; 36 percent between the ages of 16 and 21
+Twenty
+10
+
+A recent study conducted by the Shyness Clinic in Menlo Park, California, revealed that almost 90 percent of Americans label themselves as ____
+Shy
+10
+
+A red-haired man is more likely to go ____ than anyone else
+Bald
+10
+
+A research scientist is sometimes called this?
+Boffin
+10
+
+A Rhinologist specialises in the human?
+Nose
+10
+
+A rich deep red colour?
+Crimson
+10
+
+A riddle or a hard question?
+Conundrum
+10
+
+A river that runs through the Himalayas,Tibet and NE India joining the Ganges at its delta in Bangladesh?
+Brahmaputra
+10
+
+A robin's egg is blue, but if you put it in vinegar for thirty days, what color does it turn?
+Yellow
+10
+
+A roman city buried by a volcano in AD79 was rediscovered in the 1700s, what was its name?
+Pompeii
+10
+
+A rubiks cube has how many colored squares?
+54
+10
+
+A rune is a letter of what ancient alphabet?
+Germanic
+10
+
+A Russian person famous as a horseman?
+Cossack
+10
+
+A sadhu is a holy man in which country?
+India
+10
+
+A sailor who has not yet crossed the equator is referred to by what name?
+Pollywog
+10
+
+A salad containing diced apple, celery, walnuts and mayonnaise is known as what?
+Waldorf salad
+10
+
+A salt enema used to be given to children to rid them of ____
+Threadworms
+10
+
+A Saudi Arabian woman can get a divorce if her husband doesnt give her what?
+Coffee
+10
+
+A Saudi Arabian women can get a divorce if her ____ doesn't give her coffee
+Husband
+10
+
+A scholar who studies the ____ de Sade is called a Sadian not a Sadist
+Marquis
+10
+
+A scholar who studies the Marquis de Sade is called a ____ not a Sadist
+Sadian
+10
+
+A scholar who studies the Marquis de Sade is called a Sadian not a ____
+Sadist
+10
+
+A scholar who studies the Marquis de Sade is called a what?
+Sadian
+10
+
+A scroll is the symbol for which muse?
+Clio
+10
+
+A sea wasp can kill a human in less than a minute, what kind of creature is it?
+Jellyfish
+10
+
+A sea with many islands?
+Archipelago
+10
+
+A series of 15 radioactive elements in the periodic table (periodic law) with atomic numbers 89 through 103?
+Actinide series
+10
+
+A severe skin abscess or a bright red jewel?
+Carbuncle
+10
+
+A shadow of a four-dimensional object would have ____ dimensions
+Three
+10
+
+A shallow dish with a cover, used for science specimens is a(n) ____
+Petri dish
+10
+
+A shark must keep ____ ____ to stay alive
+Moving forward
+10
+
+A ship due to leave port flies a 'Blue Peter'. What does the flag look like?
+Blue rectangle with a white rectangular centre
+10
+
+A ships officer in charge of equipment and crew?
+Boatswain
+10
+
+A short legged hunting dog?
+Basset
+10
+
+A short thick post used for securing ropes on a quay?
+Bollard
+10
+
+A short womens jacket without fastenings?
+Bolero
+10
+
+A short, traditionally sacred choral composition?
+Motet
+10
+
+A shy retiring person is known as a shrinking what?
+Violet
+10
+
+A silicate mineral, heat resistant and insulating?
+Asbestos
+10
+
+A similar earlier event is known as a?
+Precedent
+10
+
+A simple form of slide projector?
+Image lantern
+10
+
+A single sheeps ____ might well contain as many as 26 million fibres
+Fleece
+10
+
+A single sheeps fleece might well contain as many as ____ million fibres
+26
+10
+
+A sizable ____ tree, during the typical growing season, gives off 28,000 gallons of moisture
+Oak
+10
+
+A sizable oak tree, during the typical growing season, gives off ____ gallons of moisture
+28,000
+10
+
+A sloth can move ____ as fast in water as it can on land
+Twice
+10
+
+A small atmospheric vortex that comes from surface heating is known as what?
+Dust devil
+10
+
+A small computer introduced in 1975 by micro instrumentation telemetry systems of new Mexico?
+Altair 8800
+10
+
+A small crown?
+Coronet
+10
+
+A small herring or sprat?
+Brisling
+10
+
+A small hound used for hunting hares?
+Beagle
+10
+
+A small informal restaurant?
+Bistro
+10
+
+A small narrow headband?
+Bandeau
+10
+
+A small naval escort vessel?
+Corvette
+10
+
+A small pickled cucumber?
+Gherkin
+10
+
+A small shop selling fashionable clothes?
+Boutique
+10
+
+A small village without a church?
+Hamlet
+10
+
+A small working boat rigged with a four sided sail, bent and hoisted on a yard?
+Lugger
+10
+
+A smurf is this tall?
+3 apples
+10
+
+A snail can sleep for ____ years
+Three
+10
+
+A snail takes ____ hours to crawl one mile
+33
+10
+
+A snail takes 33 hours to crawl ____ mile
+One
+10
+
+A sneeze can travel as fast as ____ miles per hour
+100
+10
+
+A sneeze travels out your mouth at over ____ m.p.h
+100
+10
+
+A snooker game needs how many balls?
+22
+10
+
+A soft smooth cheese similar to yoghurt is known as?
+Fromage frais
+10
+
+A soft toffee like sweet?
+Fudge
+10
+
+A solvent used to dilute paint or varnish?
+Thinners
+10
+
+A South African monkey was once awarded a medal and promoted to the rank of ____ during World War I
+Corporal
+10
+
+A Spanish bullfighter is also known as?
+Toreador
+10
+
+A Spanish country estate is known as a ____
+Hacienda
+10
+
+A Spanish-American farm worker is called a what?
+Peon
+10
+
+A species of ____ in Australia grows up to 10 feet in length
+Earthworm
+10
+
+A species of earthworm in Australia grows up to ____ feet in length
+-- Answer metadata begin
+{
+    "answers": ["Ten", "10"]
+}
+-- Answer metadata end
+10
+
+A spice from which root is used to give food a yellow colour?
+Turmeric
+10
+
+A spider is a member of the phylum Arthropoda. What class does it belong to?
+Arachnida
+10
+
+A spool or reel for thread?
+Bobbin
+10
+
+A square mile of fertile ____ has 32,000,000 earthworms in it
+Earth
+10
+
+A square mile of fertile earth has ____ earthworms in it
+32,000,000
+10
+
+A squirrel cannot contract or carry the ____ virus
+Rabies
+10
+
+A standard ____ is 7'8 x 3'2 x 6
+Grave
+10
+
+A standard 747 Jumbo Jet has ____ seats
+420
+10
+
+A standard coat hanger is forty-four inches long if____
+Straightened
+10
+
+A stanza or verse of a poem?
+Stave
+10
+
+A starfish can turn its ____ inside out
+Stomach
+10
+
+A statement made by placing your hand on a bible?
+Oath
+10
+
+A steep rugged rock?
+Crag
+10
+
+A stitch in time saves ____
+Nine
+10
+
+A stock with a par value of per share is known as what?
+Quarter stock
+10
+
+A story by Edgar Allan Poe...Fall of the...?
+House of Usher
+10
+
+A story of ones own life?
+Autobiography
+10
+
+A stream may disappear down a sink-hole, by what other name is this known?
+Swallow hole
+10
+
+A strong twilled cloth often used for raincoats?
+Gaberdine
+10
+
+A study by researcher Frank Hu and the Harvard School of Public Health found that women who snore are at an increased risk of high blood pressure and ____
+Cardiovascular disease
+10
+
+A Study in Scarlet was the first novel to feature which literary character?
+Sherlock holmes
+10
+
+The study of physics and chemistry of celestial bodies is known as what?
+Astrophysics
+10
+
+A stupa is a shrine to the memory of whom?
+Buddha
+10
+
+A sufferer of leukemia has too many ____
+Leukocytes
+10
+
+A sugar with the formula C12H22O11, belonging to the group of carbohydrates known as disaccharides (sugar)?
+Sucrose
+10
+
+A summary of the plot of a play,film etc with details of characters scenes etc?
+Scenario
+10
+
+A summer house giving a view is known as what?
+Gazebo
+10
+
+A sumptuous formal dinner is known as what?
+Banquet
+10
+
+A supernova star is known to astronomers as a what?
+Pulsar
+10
+
+A suspended bed of canvas or netting is known as what?
+Hammock
+10
+
+A synthetic material first developed in the thirties?
+Nylon
+10
+
+A tagged bird of this species flew the greatest known distance for a bird. (22,500 km)?
+Arctic tern
+10
+
+A technique by which patients monitor their own bodily functions in an attempt to alter those functions?
+Bio feedback
+10
+
+A Ten pound note depicts a scene from which Dickens novel?
+Pickwick papers
+10
+
+A ten-gallon hat holds 3/4 gallon or ____ quarts
+Three
+10
+
+A terrapin is a type of ____
+Turtle
+10
+
+A theory emerged in 2011 that was famous painting was actually inspired by the artist's male apprentice?
+Mona Lisa
+10
+
+A thick revolving cylinder for winding cables?
+Capstan
+10
+
+A thoroughgoing & complete republican might be called a dyed-in-the... republican?
+Wool
+10
+
+A tincture of opium, was a common sedative in Victorian times?
+Laudanum
+10
+
+A tool with screw point for boring holes in wood?
+Auger
+10
+
+A toothpick is the object most often ____ on by Americans
+Choked
+10
+
+A tornado at sea is called a ____
+Waterspout
+10
+
+A total of 1,670 people died in a theatre fire in china in what year?
+1845
+10
+
+A town is not a city until it has a ____
+Cathedral
+10
+
+A trained fighter in ancient Rome?
+Gladiator
+10
+
+A tropical house lizzard?
+Gecko
+10
+
+A tufty, velvet cord or yarn used for embroidery and trimmings?
+Chenille
+10
+
+A turkey's furcula better known as a?
+Wishbone
+10
+
+A two-bit moon is in its ____ quarter
+First
+10
+
+A type of musical instrument turned by hand?
+Hurdy-gurdy
+10
+
+A type of windsurfing board that is less stable but faster than the standard one?
+Funboard
+10
+
+A typhoon struck which island in Japan in 1934, killing 4,000 people?
+Honshu
+10
+
+A typical American eats ____ pigs in his/her lifetime
+28
+10
+
+A typical American eats how many pigs in his/her lifetime?
+28
+10
+
+A typical bed usually houses over how many dust mites?
+6 billion
+10
+
+A typical double mattress contains as many as ____ house dust mites
+2 million
+10
+
+A u-shaped bend in a river is called a(n)...?
+Oxbow
+10
+
+A U.S. dime is worth ____ cents
+Ten
+10
+
+A uk no 1 record?
+Louis armstrong
+10
+
+A Varsovian lives in which city?
+Warsaw
+10
+
+A vehicle carrying a toxic substance is required to display a sign showing what symbol?
+Skull and crossbones
+10
+
+A very tall center and a real ladies man?
+Wilt the stilt
+10
+
+A vest in America is which garment?
+Waistcoat
+10
+
+A vicious one of these is a series of reactions that compound an initial problem?
+Circle
+10
+
+A Victoria Cross is struck from gun metal of Russian cannons captured at which battle?
+Sebastopol
+10
+
+A Virginia law requires all ____ to be kept out in the yards, not inside the house
+Bathtubs
+10
+
+A volunteer cavalry force merged into the Territorial army in 1907?
+Yeomanry
+10
+
+A wading bird with long upturned bill?
+Avocet
+10
+
+A walk in the park name the group?
+Nick straker band
+10
+
+A waste of time in frivolous action?
+Dalliance
+10
+
+A waterproof over shoe?
+Galosh
+10
+
+A well in which water rises through natural pressure?
+Artesian
+10
+
+A welt, a vamp, a tongue and a quarter can all be found on which object?
+A shoe
+10
+
+A wheel turns or spins on an ____
+Axle
+10
+
+A white mtallic element?
+Barium
+10
+
+A wide annual ring in a tree indicates?
+Good health
+10
+
+A wild ox?
+Bison
+10
+
+A wind with a speed of ____ miles or more is designated a hurricane
+74
+10
+
+A wind with a speed of 74 miles or more is designated as a what?
+Hurricane
+10
+
+A woman described as a Magdalene in the 17th Century was a repentant what?
+Prostitute
+10
+
+A woman from Worcestershire, England did this every day for 977 consecutive days?
+Sneezed
+10
+
+A woman never forgets the man who remembers, was the 1950's advertising slogan for what brand of chocolates?
+Whitman's Chocolates
+10
+
+A woman with dark hair?
+Brunette
+10
+
+A woman's heart beats ____ than a man's
+Faster
+10
+
+A woodchuck breathes only ____ times during hibernation
+Ten
+10
+
+A woodchuck breathes only ____ times in hibernation
+10
+10
+
+A woodchuck breathes only ____ times in hibernation
+Ten
+10
+
+A woven fabric with raised pattern?
+Brocade
+10
+
+A writer of dictionaries is known as a?
+Lexicographer
+10
+
+A written acknowledgement of the payment of money for goods, work done etc?
+Receipt
+10
+
+A yarmulka is a skullcap worn by followers of which religion?
+Judaism
+10
+
+A young horse or related animal?
+Foal
+10
+
+A young Spanish lady is called a what?
+Senorita
+10
+
+A young unmarried woman?
+Damsel
+10
+
+A____ measures blood pressure
+Sphygmomanometer
+10
+
+A-1 Steak Sauce contains both orange ____ and raisins
+Peels
+10
+
+A-1 Steak Sauce contains both orange peels and ____
+Raisins
+10
+
+A(n) ____ is a person bound for a number of years to a master who undertakes to instruct him
+Apprentice
+10
+
+Aarchie moore, was world champion in what sport from 1952 1962?
+Boxing
+10
+
+Aaron died on mount ____
+Hor
+10
+
+Abba Hits?
+Dancing Queen
+10
+
+Abdul-jabbar what does 'alma mater' mean?
+Bountiful mother
+10
+
+Ability to move objects with mind power?
+Telekinesis
+10
+
+Able to be decomposed by bacteria or other living organisms?
+Biodegradable
+10
+
+About ____ babies are born worldwide every minute
+200
+10
+
+About ____ cars are junked each year in the U.S
+7 million
+10
+
+About ____ of Americans who go to college do it just to make more money
+70%
+10
+
+About ____ percent of American households buy yellow mustard every year
+70
+10
+
+About ____ years ago, most Egyptians died by the time they were 30
+300
+10
+
+About 10% of the worlds population is what?
+Left handed
+10
+
+About 24 percent of alcoholics die in accidents, falls, fires, and ____
+Suicides
+10
+
+About 24 percent of American adults say they have participated, at some time or another, in illegal ____
+Gambling
+10
+
+About 60 miles n.w of what mountain is the geographic center of Alaska?
+Mount mckinley
+10
+
+About 60 percent of all American babies are named after ____
+Close relatives
+10
+
+About 70% of all living organisms in the world are?
+Bacteria
+10
+
+About 70% of Americans who go to ____ do it just to make more money
+College
+10
+
+About a third of all americans flush the toilet while they're?
+Still sitting on it
+10
+
+About a third of Americans ____ while they are still sitting on the toilet
+Flush
+10
+
+About half of all Americans are on a ____ on any given day
+Diet
+10
+
+About how many hairs does an average healthy scalp shed in 24 hours?
+Sixty five
+10
+
+About how many miles separate the U S & Cuba?
+90
+10
+
+About one third of American adults are at least ____ percent above their recommended weight
+20
+10
+
+About one-tenth of the earth's surface is permanently covered with ____
+Ice
+10
+
+About what was michael jackson's song 'ben'?
+Rodent
+10
+
+About what year was the first steam ship built?
+1787
+10
+
+About which family are the 'godfather' films?
+Corleone
+10
+
+About which London politician was it said in March 200 - The ego has landed?
+Ken livingstone
+10
+
+Abraham Lincoln was shot with a?
+Derringer
+10
+
+Absolutely pure ____ is so soft that it can be molded with the hands
+Gold
+10
+
+Acadia was the original name of what?
+Nova scotia
+10
+
+According to ____ 1:20-22, the chicken came before the egg
+Genesis
+10
+
+According to a 1990 survey, what are there three of to every person in Wales?
+Sheep
+10
+
+According to a 1995 poll, 1 out of 10 people admitted that they will buy an outfit intending to wear it once and ____
+Return it
+10
+
+According to a Gallup poll, 11 percent of the U.S. population believes in ____ and other supernatural entities
+Ghosts
+10
+
+According to a poll, ____ percent of those responding admitted that they had falsely called in sick to get a day off from work
+58
+10
+
+According to a poll, only 29 percent of married couples agree on most ____
+Political issues
+10
+
+According to a recent poll, 39 percent of the people interviewed admitted that they snoop in their host's ____
+Medicine cabinets
+10
+
+According to a recent study, there are more than ____ art galleries in Scottsdale, Arizona, which, surprisingly, exceeds the number in either Los Angeles or San Francisco
+100
+10
+
+According to a recent survey among women, what is the least favorite part of the male body?
+Feet
+10
+
+According to a recent survey, ____ percent of people who play the car radio while driving also sing along with it
+75
+10
+
+According to advertising data, nearly 80 percent of Japanese ads use celebrities, the majority being local stars. Of foreign celebrities, the most popular in 1996 were noodle pitchman Arnold Schwarzenegger and whiskey endorser ____
+Steven spielberg
+10
+
+According to arthurian legend, what did king arthur receive as a dowry?
+The round table
+10
+
+According to Bayer Aspirin(r), over ____ aspirin tablets are taken worldwide each year
+Fifty billion
+10
+
+According to Benjamin Disraeli, what is the third, & worst kind of lie?
+Statistics
+10
+
+According to bing crosby, 'whenever it rains, it rains ____'
+Pennies from heaven
+10
+
+According to bonnie tyler, what hits you when it's too late?
+Heartache
+10
+
+According to Dr. Johnson, what should be well sliced, dressed with pepper and vinegar, and then thrown out as good for nothing?
+Cucumber
+10
+
+According to elton john, what were we hoppin' and boppin' to?
+Crocodile rock
+10
+
+According to Espen Lind when ____ cries, she cries a rain storm, she cries a river she cries a hole in the ground
+Susannah
+10
+
+According to experts, 30 percent of all marriages occur because of ____
+Friendship
+10
+
+According to folklore a windy christmas means ____
+Good fortune
+10
+
+According to folklore, how does santa get into houses on christmas eve?
+Down the chimney
+10
+
+According to folklore, what does the Sandman help children to do?
+Sleep
+10
+
+According to Genesis 1:20-22, the ____ came before the egg
+Chicken
+10
+
+According to Genesis 1:20-22, the chicken came before the ____
+Egg
+10
+
+According to German researchers, the risk of heart attack is highest on what day of the week?
+Monday
+10
+
+According to Hallmark(r), the average person receives ____ birthday cards annually
+Eight
+10
+
+According to Hindu mythology which legendary mountain in the centre of the world was the abode of Indra the god of the sky?
+Mount meru
+10
+
+According to his biography, when was humphrey bogart born?
+-- Answer metadata begin
+{
+    "answers": ["December 25, 1899", "25th december 1899,25/12/1899"]
+}
+-- Answer metadata end
+10
+
+According to his nazi dossier, what color are Rick's eyes in Casablanca?
+Brown
+10
+
+According to Homer, what is a feline?
+-- Answer metadata begin
+{
+    "answers": ["An Elephant", "Elephant"]
+}
+-- Answer metadata end
+10
+
+According to hospital figures, dogs bite an average of ____ Americans a year
+One million
+10
+
+According to John Aubrey's Brief Lives , what card game did the English poet, Sir John Suckling, invent in 1630?
+Cribbage
+10
+
+According to legend, the Great Chicago Fire of 1871 was started by what?
+A cow
+10
+
+According to legend, what was the name of Paul Bunyan's blue ox?
+Babe
+10
+
+According to Lenny and Homer, what is the bear driving around in the little car called?
+Ballet 
+10
+
+According to Louis Macneice in his poem Sunday Morning, what part of a man expands to tinker with his car?
+His heart
+10
+
+According to mens health magazine, what does the average man do 12 to 20 times a day?
+Break wind
+10
+
+According to Mindy Simmons, what is Capitol City's nickname?
+The Windy Apple
+10
+
+According to Moe, where is Herman's counterfeit jean operation being held?
+Homer's Car hole 
+10
+
+According to noel coward, who 'go out in the mid-day sun'?
+Mad dogs and englishmen
+10
+
+According to one poll, 60 percent of the men surveyed admitted that they ____ in public
+Spit
+10
+
+According to one source, about 66 percent of magazines found tossed along U.S. roadsides are ____
+Pornographic
+10
+
+According to one study, ____ of lawns have some sort of lawn ornament
+24%
+10
+
+According to randy newman - who has no reason to live?
+Short people
+10
+
+According to rod stewart he knows secrets about someone in high society. who is it?
+Baby jane
+10
+
+According to roy orbison you have to pick up your feet, you've got a deadline to meet, because you're ____
+Working for the man
+10
+
+According to roy orbison, 'you know one could look as good as ____'
+Pretty woman
+10
+
+According to roy orbison, he's 'saving nickels and dimes and looking forward to happier times on ____'
+Blue bayou
+10
+
+According to Says Law of Markets what does a rise in the supply of goods produce?
+An increase in demand
+10
+
+According to suicide statistics, ____ is the favored day for self-destruction
+Monday
+10
+
+According to superstition, what are you supposed to do when you see a lone magpie?
+Salute it
+10
+
+According to superstition, what do you do when you stub the toes on your right foot?
+Make a wish
+10
+
+According to superstition, what do you make when you stub the toes on your right foot?
+A wish
+10
+
+According to suppliers, ____ is by far the favorite ink color in dabbers used by bingo players
+Purple
+10
+
+According to the Acts of the Apostles, from where did Christ's Ascension into Heaven take place?
+-- Answer metadata begin
+{
+    "answers": ["The mount of olives", "mount of olives"]
+}
+-- Answer metadata end
+10
+
+According to the ancient Chinese, swinging your arms cures ____ pain
+Headache
+10
+
+According to the Duff Brewery Tour guide, what had a batch of Duff beer been contaminated with? (Duffless)?
+Strychnine 
+10
+
+According to the Gemological Institute of America, up until 1896, India was the only source for ____ to the world
+Diamonds
+10
+
+According to the Goofball, who is a mascot's best friend?
+Henry Mancini
+10
+
+According to the Journal of American Medical Association, as of 1998, more than 100,000 Americans die annually from adverse reactions to ____
+Prescription drugs
+10
+
+According to the New York Times, what is currently the most popular aphrodisiac?
+Asparagus
+10
+
+according to the nursery rhyme what does a sneeze on Wednesday signify?
+A letter
+10
+
+According to the nursery rhyme which bush do we go round on a cold and frosty morning?
+Mulberry
+10
+
+According to the nursery rhyme, how many miles is it to Babylon?
+Three score and ten
+10
+
+According to the nursery rhyme, who killed Cock Robin?
+The sparrow
+10
+
+According to the proverb you should strike what while it?s hot?
+The iron
+10
+
+According to the proverb, what should not be washed in public?
+Dirty linen
+10
+
+According to the results of the 2010 census, what is the approximate population of the United States?
+309 million
+10
+
+According to the rhyme, which day's child has far to go?
+Thursday
+10
+
+According to the rhyme, which day's child is full of grace?
+Tuesday
+10
+
+According to the saying , what causes shepherd's delight?
+Red sky at night
+10
+
+According to the saying where does charity begin?
+At home
+10
+
+According to the saying, if silence is golden, what is silver?
+Speech
+10
+
+According to the saying, what does a stitch in time save?
+Nine
+10
+
+According to the saying, what speak louder than words?
+Actions
+10
+
+According to the song, in which city was 'The House of the Rising Sun'?
+New orleans
+10
+
+According to the song, where does it never rain?
+Southern California
+10
+
+According to the title of a famous novel, there are how many 'Years of Solitude?
+One hundred
+10
+
+According to the U.S. Food and Drug Administration, two out of five women in America ____
+Dye their hair
+10
+
+According to the U.S. government, people have tried more than 28,000 different ways to lose ____
+Weight
+10
+
+According to the world of astronomy, what was the 'big bang' responsible for creating?
+Universe
+10
+
+According to tradition, which animals desert a sinking ship?
+Rats
+10
+
+According to u.s. law, what may not be granted on a useless invention, on a method of doing business, on mere printed matter, or on a device or machine that will not operate?
+Patent
+10
+
+According to Willy, who created colored chalk?
+Lucifer
+10
+
+Accumulation of dust and gas into larger bodies such as stars, planets and moons?
+Accretion 
+10
+
+Acetylsalicylic acid is the active ingredient in which well known drug?
+Aspirin
+10
+
+Acknowledged to be the greek god of medicine?
+Asclepius
+10
+
+Ackroyed How many Jews were saved on Schindler's List?
+1,100
+10
+
+Acronyms: A/S/L?
+Age/sex/location?
+10
+
+Acronyms: AA?
+Alcholics anonymous
+10
+
+Acronyms: ABM?
+Anti-ballistic missile
+10
+
+Acronyms: ACK?
+Acknowledgement
+10
+
+Acronyms: ACRONYM?
+Abbreviated coded rendition of name yielding meaning
+10
+
+Acronyms: AFAIK?
+As far as i know
+10
+
+Acronyms: AFK?
+Away from the keyboard
+10
+
+Acronyms: AI?
+Artificial intelligence
+10
+
+Acronyms: AKA?
+Also known as
+10
+
+Acronyms: AOL?
+America on line
+10
+
+Acronyms: API?
+Application program interface
+10
+
+Acronyms: ASAP?
+As soon as possible
+10
+
+Acronyms: ASCII?
+American standard code for information interchange
+10
+
+Acronyms: ATM?
+At the moment
+10
+
+Acronyms: ATTN?
+Attention
+10
+
+Acronyms: AU?
+Australia
+10
+
+Acronyms: AVG?
+Average
+10
+
+Acronyms: B/C?
+Because
+10
+
+Acronyms: B4?
+Before
+10
+
+Acronyms: BAFTA?
+British Academy of Film & Televison
+10
+
+Acronyms: BBIAB?
+Be back in a bit
+10
+
+Acronyms: BBL?
+Be back later
+10
+
+Acronyms: better known as MSG, it is often used to flavor frozen foods?
+Monosodium glutamate
+10
+
+Acronyms: BF?
+Boy friend
+10
+
+Acronyms: BRO?
+Brother
+10
+
+Acronyms: BSOD?
+Blue screen of death
+10
+
+Acronyms: BST?
+British summer time
+10
+
+Acronyms: BYOB?
+Bring your own booze
+10
+
+Acronyms: C/O?
+Care of
+10
+
+Acronyms: C&P?
+Copy & paste
+10
+
+Acronyms: commonly called DNA, what is its full name?
+Deoxyribonucleic acid
+10
+
+Acronyms: commonly called RNA, what is its full name?
+Ribonucleic Acid
+10
+
+Acronyms: cricket's lbw:?
+Leg before wicket
+10
+
+Acronyms: DNS?
+Domain name system
+10
+
+Acronyms: DOA?
+Dead on arrival
+10
+
+Acronyms: DOB?
+Date of birth
+10
+
+Acronyms: DOS?
+Disk operating system
+10
+
+Acronyms: Dr?
+Doctor
+10
+
+Acronyms: EEG stands for ____
+Electroencephalogram
+10
+
+Acronyms: energy-carrying molecule, usually abbreviated ATP?
+Adenosine Triphosphate
+10
+
+Acronyms: ETA?
+Estimated time of arrival
+10
+
+Acronyms: FAQ?
+Frequently asked question
+10
+
+Acronyms: FLOTUS?
+First lady of the united states
+10
+
+Acronyms: FTL?
+Faster than light
+10
+
+Acronyms: FTP?
+File transfer protocol
+10
+
+Acronyms: G2G?
+Got to go
+10
+
+Acronyms: GA?
+Go ahead
+10
+
+Acronyms: GF?
+Girlfriend
+10
+
+Acronyms: GIF?
+Graphical interchange format
+10
+
+Acronyms: GIGO?
+Garbage in garbage out
+10
+
+Acronyms: GJ?
+Good job
+10
+
+Acronyms: GL?
+Good luck
+10
+
+Acronyms: GTG?
+Got to go
+10
+
+Acronyms: H8?
+Hate
+10
+
+Acronyms: HHGTTG?
+Hitch hiker's guide to the galaxy
+10
+
+Acronyms: ID?
+Identification
+10
+
+Acronyms: IMHO?
+In my humble opinion
+10
+
+Acronyms: In the computing acronym BASIC what does the B stand for?
+Beginners
+10
+
+Acronyms: In the military world, EGADS is an acronym for?
+Electronic ground automatic destruct system
+10
+
+Acronyms: Inc?
+Incorporated
+10
+
+Acronyms: IOU?
+I owe you
+10
+
+Acronyms: IOW?
+In other words
+10
+
+Acronyms: IP?
+Internet protocol
+10
+
+Acronyms: IRC?
+Internet relay chat
+10
+
+Acronyms: IRL?
+In real life
+10
+
+Acronyms: ISDN?
+Integrated services digital network
+10
+
+Acronyms: ISP?
+Internet service provider
+10
+
+Acronyms: ISTR?
+I seem to remember
+10
+
+Acronyms: IT?
+Information technology
+10
+
+Acronyms: JPEG?
+Joint photographic experts group
+10
+
+Acronyms: Jr?
+Junior
+10
+
+Acronyms: JVC?
+Japan victor company
+10
+
+Acronyms: KISS?
+Keep it simple stupid
+10
+
+Acronyms: LAN?
+Local area network
+10
+
+Acronyms: LoTR?
+Lord of the rings
+10
+
+Acronyms: M8?
+Mate
+10
+
+Acronyms: MBR?
+Master boot record
+10
+
+Acronyms: Microwave amplification by stimulated emission of radiation, a device that amplifies or generates microwaves or radio waves?
+Maser
+10
+
+Acronyms: MICV?
+Mechanized infantry combat vehicle
+10
+
+Acronyms: MIME?
+Multi-purpose internet mail extensions
+10
+
+Acronyms: MMX?
+Multi-media extensions
+10
+
+Acronyms: MOTD?
+Message of the day
+10
+
+Acronyms: MPH?
+Miles per hour
+10
+
+Acronyms: MUD?
+Multi-user dungeon/domain
+10
+
+Acronyms: NE1?
+Anyone
+10
+
+Acronyms: OD?
+Overdose
+10
+
+Acronyms: OMG?
+Oh my god
+10
+
+Acronyms: On irc, what does a/s/l mean?
+Age/sex/location
+10
+
+Acronyms: PDA?
+Public display of affection
+10
+
+Acronyms: PDN?
+Public data network
+10
+
+Acronyms: PLS?
+Please
+10
+
+Acronyms: PLZ?
+Please
+10
+
+Acronyms: POTUS?
+President of the united states
+10
+
+Acronyms: POV?
+Point of view
+10
+
+Acronyms: PPL?
+People
+10
+
+Acronyms: PPP?
+Point-to-point protocol
+10
+
+Acronyms: PS?
+Post script
+10
+
+Acronyms: QUANTAS, what does it stand for?
+Queensland and northern territory aerial services
+10
+
+Acronyms: Quasi-stellar radio source, any of the blue, starlike objects that are strong radio emitters and the spectra of what exhibit a strong red shift?
+Quasar
+10
+
+Acronyms: ROFL?
+Rolling on floor laughing
+10
+
+Acronyms: ROFLMHO?
+Rolling on floor laughing my head off
+10
+
+Acronyms: ROFLOL?
+Rolling on floor laughing out loud
+10
+
+Acronyms: ROFLUTS?
+Rolling on floor laughing unable to speak
+10
+
+Acronyms: ROFLWPIMP?
+Rolling on floor laughing whilst peeing in my pants
+10
+
+Acronyms: ROM?
+Read only memory
+10
+
+Acronyms: ROTBA?
+Reality on the blink again
+10
+
+Acronyms: ROTF?
+Rolling on the floor
+10
+
+Acronyms: ROTFL?
+Rolling on the floor laughing
+10
+
+Acronyms: ROTFLAS?
+Rolling on the floor laughing and snorting
+10
+
+Acronyms: ROTFLBTC?
+Rolling on the floor laughing biting the carpet
+10
+
+Acronyms: RPG?
+Role playing game
+10
+
+Acronyms: SLIP?
+Serial line interface protocol
+10
+
+Acronyms: SMTP?
+Simple mail transfer protocol
+10
+
+Acronyms: SOP?
+Standard operating procedure
+10
+
+Acronyms: SRY?
+Sorry
+10
+
+Acronyms: ST-DS9?
+Star trek deep space 9
+10
+
+Acronyms: ST-TNG?
+Star trek the next generation
+10
+
+Acronyms: ST-TOS?
+Star trek the original series
+10
+
+Acronyms: ST-VOY?
+Star trek voyager
+10
+
+Acronyms: SYSOP?
+System operator
+10
+
+Acronyms: TBC?
+To be continued
+10
+
+Acronyms: TGIF?
+Thank god it's friday
+10
+
+Acronyms: TN?
+Telnet
+10
+
+Acronyms: TNX?
+Thanks
+10
+
+Acronyms: TPTB?
+The powers that be
+10
+
+Acronyms: TTYL?
+Talk to you later
+10
+
+Acronyms: unicef:?
+United nations international children's emergency fund
+10
+
+Acronyms: URL?
+Uniform resource locator
+10
+
+Acronyms: used for direct data transfers between disk & ram?
+Dma
+10
+
+Acronyms: Vsop stands for?
+Very special old pale
+10
+
+Acronyms: W/?
+With
+10
+
+Acronyms: W/O?
+With out
+10
+
+Acronyms: W8?
+Wait
+10
+
+Acronyms: W8ING?
+Waiting
+10
+
+Acronyms: WAN?
+Wide area network
+10
+
+Acronyms: WB?
+Welcome back
+10
+
+Acronyms: What degree do the intials 'DDS' stand for?
+Doctor of Dental Surgery
+10
+
+Acronyms: What do the initials 'VCP' stand for?
+Video Cassette Player
+10
+
+Acronyms: What do the initials 'VCR' stand for?
+Video Cassette Recorder
+10
+
+Acronyms: What does 'A&W' (of root beer fame) stand for?
+Allen & Wright
+10
+
+Acronyms: What does 'AOL' stand for?
+America Online
+10
+
+Acronyms: What does GNP stand for?
+Gross National Product
+10
+
+Acronyms: What does N.A.S.A stand for?
+National Aeronautics and Space Administration
+10
+
+Acronyms: What does S H A P E stand for?
+Supreme headquarters,allied powers,europe
+10
+
+Acronyms: What does S.O.S. stand for?
+Save Our Souls
+10
+
+Acronyms: What does the abbreviation LAPD stand for?
+Los angeles police department
+10
+
+Acronyms: What does the acronym 'scuba' mean?
+Self Contained Underwater Breathing Apparatus
+10
+
+Acronyms: what does the acronym BAR stand for?
+Browning automatic rifle
+10
+
+Acronyms: What is the AALS?
+Association of American law schools
+10
+
+Acronyms: What's the oed?
+Oxford English dictionary
+10
+
+Acronyms: WTH?
+What the hell
+10
+
+Acronyms: WWW?
+World wide web
+10
+
+Acronyms: Y2K?
+Year 2000
+10
+
+Acronyms: You've heard Of NATO, But What Does SEATO stand for?
+South East Asia Treaty Organisation
+10
+
+Acting was once considered____ , and actors in the first English play to be performed in America were arrested
+Evil
+10
+
+Action verbs or acronyms that we use in IRCs?
+Hugs
+10
+
+Action verbs or acronyms we use in the IRC?
+Niters
+10
+
+Active volcano in the philippines, in the central part of luzon?
+Mount pinatubo
+10
+
+Actor, formerly the Saint and james Bond?
+Roger moore
+10
+
+Actress and singer whose theme tune is Sally?
+Gracie fields
+10
+
+Actress mother of Liza Minnelli?
+Judy garland
+10
+
+Actually caused by layers of hot air refracting sunlight?
+Mirage
+10
+
+Acute hasopharyngitis is more commonly known as a ____
+Cold
+10
+
+Acute infectious disease of the upper respiratory tract, caused by more than 100 kinds of viruses?
+Common cold
+10
+
+Acute, highly contagious viral disease, often fatal, that appears to have been completely eradicated?
+Smallpox
+10
+
+Acute, infectious, contagious disease of the respiratory tract, especially the trachea?
+Influenza
+10
+
+AD after a date signifies a number of years after the birth of whom?
+Jesus christ
+10
+
+Ada Unsworth,Frank and Peggy Spencer and Ted Burroughs have all led winning tams in which televised competition?
+Formation dancing
+10
+
+Addictive drug prepared from morphine?
+Heroin
+10
+
+Addis ababa is the capital of which country?
+Ethiopia
+10
+
+Address of the White House?
+1600 pennsylvania avenue
+10
+
+Adi dassler founded what major corporation?
+Adidas
+10
+
+Adjustable fabric roof of a car?
+Drophead
+10
+
+Administrative division of the kingdom of great britain, occupying the northern third of the island of great britain?
+Scotland
+10
+
+Admiral donitz succeeded hitler in which year?
+1945
+10
+
+Admired or revered greatly?
+Idolised
+10
+
+Admit a person into a society or club through a secret ceremony?
+Initiate
+10
+
+Adobe announces Acrobat to ship in June what year?
+1993
+10
+
+Adolf hitler become chancellor of Germany in 1928, 1930 or 1933?
+1933
+10
+
+Adolf Hitler was fascinated by ____
+Hands
+10
+
+Adult Magazines?
+Playboy
+10
+
+Advertising: 99.44% pure?
+Ivory
+10
+
+Advertising: A peach looks cute / with all its fuzz. / A man's no peach / and never was?
+Burma shave
+10
+
+Advertising: According to Nintendo, the capital of Ohio is this?
+Mario
+10
+
+Advertising: Ask any mermaid you happen to see, what's the best tuna?
+Chicken of the sea
+10
+
+advertising: bing crosby advertised this product?
+Minute maid
+10
+
+advertising: distinctive quality about mr. clean's head?
+Bald
+10
+
+Advertising: Does she or doesn't she Only her hairdresser knows for sure?
+Clairol
+10
+
+Advertising: don't leave home without it (name the company)?
+American express
+10
+
+Advertising: Film which is informative and purportedly objective?
+Infomercial
+10
+
+Advertising: get a piece of the rock?
+Prudential
+10
+
+Advertising: He hit the big time after commercials for McDonalds and State Farm?
+Barry manilow
+10
+
+Advertising: IBM stands for this?
+International business machines
+10
+
+Advertising: If you were this type of weiner, everyone would be in love with you?
+Oscar mayer
+10
+
+advertising: in the 1930's he promised to make you a new man using 'dynamic tension.'?
+Atlas
+10
+
+advertising: it is not 100% pure soap, but 99 44/100% pure?
+Ivory
+10
+
+advertising: jhirmack hair products were advertised by this beauty?
+Victoria principal
+10
+
+Advertising: Look for this label when you're buying a coat, dress, or blouse?
+Union
+10
+
+Advertising: My bologna has a first name?
+Oscar mayer
+10
+
+Advertising: nobody does it like ____ ____
+Sara lee
+10
+
+Advertising: patricia neal recommends this to people who want to fight pain and win?
+Anacin
+10
+
+Advertising: Thank you for your support?
+Bartles and james
+10
+
+Advertising: There's something about a man who wears this after shave?
+Aqua velva
+10
+
+Advertising: They make the very best chocolate?
+Nestle
+10
+
+Advertising: This company paid millions to the Jacksons for representation?
+Pepsi
+10
+
+Advertising: this is dr. scholl's first name?
+William
+10
+
+Advertising: This product is named for its chief component, muriate of berberine?
+Murine
+10
+
+Advertising: This toilet tissue claims to be as soft as cotton?
+Cottonelle
+10
+
+Advertising: We earn our wings every day?
+Eastern airlines
+10
+
+Advertising: We love to fly, and it shows?
+Delta
+10
+
+Advertising: What company's mascot is Elsie the Cow?
+Borden
+10
+
+Advertising: What does L.S./M.F.T. stand for?
+Lucky strike means fine tobacco
+10
+
+Advertising: What was the Cream Oil Hair Tonic?
+Wildroot
+10
+
+Advertising: whatever it is i think i see / becomes a ____ ____ to me
+Tootsie roll
+10
+
+Advertising: Who is the dog on the crackerjack box?
+Bingo
+10
+
+Advertising: Why ask why?
+Bud dry
+10
+
+Advertising: You are advised never to leave home without this?
+American express
+10
+
+Advertising: You deserve a break today?
+Mcdonalds
+10
+
+Advertising: You're not fully clean until you're ____fully clean
+Zest
+10
+
+Advocating or practising total abstinence from alcohol?
+Teetotal
+10
+
+After 27 years, ____ made her debut as a Flinstone Vitamin in 1996
+Betty rubble
+10
+
+After Athens which is the largest Greek speaking city in the world?
+Melbourne
+10
+
+After Caesar, who did Cleopatra woo?
+Mark antony
+10
+
+After crayola products' senior crayon maker, emerson moser, retired after thirty seven years what secret did he reveal?
+He was colorblind
+10
+
+After eating, a ____ regurgitates its food and then eats it again
+Housefly
+10
+
+After eating, the ____ regurgitates its food and eats it again
+Housefly
+10
+
+After freeing it from france, toussaint l'ouverture became the first ruler of this island nation?
+Haiti
+10
+
+After greenland, which is the second largest island?
+New guinea
+10
+
+After his death in 1937, Guglielmo Marconi, inventor of the ____ was honored by broadcasters worldwide as they let the airwaves fall silent for two minutes in his memory
+Wireless telegraph
+10
+
+After his vision, who was saul known as?
+Paul
+10
+
+After how many points do players change service in table tennis?
+Five
+10
+
+After how many years marriage do you celebrate your Emerald wedding anniversary?
+55
+10
+
+After how many years of marriage is an emerald wedding anniversary celebrated?
+Fifty five
+10
+
+After leaving '10000 maniacs', who released her first solo album 'tiger lily' in 1995?
+Natalie merchant
+10
+
+After leaving 'the belmonts', which was dion's first hit on the laurie label in october 1960?
+Lonely teenager
+10
+
+after mt mckinley, the second-highest mountain in the united states?
+Mt st elias
+10
+
+After oxygen what is the second most plentiful element in our planet?
+Silicon
+10
+
+After Paris which is the largest French speaking city in the world?
+Montreal
+10
+
+After putting his solo career on hold, who joined 'damn yankees' in 1990?
+Ted nugent
+10
+
+After recording 'the nitty gritty', who released the rhyming 'name game'?
+Shirley ellis
+10
+
+After Russia and kazakhstan, what is the third largest of the former soviet republics?
+Ukraine
+10
+
+After Solomon's death, the Kingdom of Israel split into two; Israel with its capital at Shechem, and Judah. Which city was the capital of Judah?
+Jerusalem
+10
+
+After spending hours working at a computer display, what colour will a blank piece of white paper probably appear to be?
+Pink
+10
+
+After the end of the vietnam war, to what was saigon's name changed?
+Ho chi min city
+10
+
+After the passing of his father in 2011, Kim Jong-Un became the de facto leader of what nation?
+North Korea
+10
+
+After the Second World War, in what year did clothes rationing end?
+1949
+10
+
+After the U.S. Civil War, Iowa was the first state to give the vote to ____
+African americans
+10
+
+After what are the b52 bombers named?
+Fifties hairdo
+10
+
+After what is the Exchequer named?
+Chequered cloth
+10
+
+After what swimmer broke 50 records and then became a famous actor?
+Johnny
+10
+
+After which battle of the English Civil War did Charles II hide in an oak tree at Boscobel, to avoid capture by the Roundheads?
+Worcester
+10
+
+After which battle, in which he emerged triumphant, did lord nelson die?
+Trafalgar
+10
+
+After which creature is the Californian island of Alcatraz named?
+Pelican
+10
+
+After which famous engineer is the university situated at uxbridge named?
+Brunel
+10
+
+After which film star did RAF airman name a life jacket?
+Mae west
+10
+
+After which George was Georgia named?
+George ii
+10
+
+After which Italian is America named?
+Amerigo vespucci
+10
+
+After which saint was san francisco named?
+Francis of assisi
+10
+
+After which type of establishment was LLoyd of London named?
+Coffee house
+10
+
+After which war did cigarette smoking become fashionable?
+Crimean war
+10
+
+After who was 'decibel' named?
+Alexander graham bell
+10
+
+After who was august named?
+Caesar augustus
+10
+
+After who was july named?
+Julius caesar
+10
+
+After who was the month of august named?
+Augustus caesar
+10
+
+After who was the month of july named?
+Julius caesar
+10
+
+After who were the teenage mutant ninja turtles named?
+Artists and/or sculptors
+10
+
+After whom is the month of January named?
+Janus
+10
+
+After whom is the month of July named?
+Julius caesar
+10
+
+After whom is the orbital space telescope named?
+Edwin hubble
+10
+
+After whom was Halley's Comet named?
+Edmund halley
+10
+
+After Windsor which is the largest castle in Britain?
+Caerphilly
+10
+
+Agana is the capital of which country?
+Guam
+10
+
+Agatha Christie disappeared for 10 days in which year?
+1926
+10
+
+Age the letter c on a water tap in france refers to what?
+Hot water
+10
+
+Agency of the Executive Office of the President of the United States, created in 1947, together with the National Security Council?
+Central intelligence agency
+10
+
+Agency of the United States government, generally responsible for administering federal policy for Native Americans and Inuits (Eskimos)?
+Bureau of Indian affairs
+10
+
+Agent Blue is a herbicide that was used agaainst the Vietnamese, what type of poisonous compound does it contain?
+Arsenic
+10
+
+Agriculture: Agricultural and industrial region in the state of New South Wales, Australia, about 160 km (about 100 mi) north of Sydney?
+Hunter valley
+10
+
+Agriculture: Agricultural science concerning methods of soil management & crop production?
+Agronomy
+10
+
+Agriculture: Farm Animals (singular)?
+Pig
+10
+
+Agriculture: incorporating the cultivation and conservation of trees?
+Agroforestry
+10
+
+Agriculture: What is ground being 'rested' for a season called?
+Fallow
+10
+
+Agriculture: what's the term for arable land left unseeded for one season?
+Fallow
+10
+
+Aimed at worn-out parents, the title of a best-selling 2011 kids' book parody profanely urges kids to do what?
+Go to sleep
+10
+
+Air is 21% oxygen, 78% ____, and 1% other gases
+Nitrogen
+10
+
+Air under pressure greater than that of the atmosphere?
+Compressed air
+10
+
+Aircrafts: After what were the B52 bombers named?
+A fifties hairdo
+10
+
+Aircrafts: Aircraft propelled by rotating blades?
+Helicopter
+10
+
+Aircrafts: How many engines are on a B52 bomber?
+Eight
+10
+
+Aircrafts: How many gallons of fuel does a jumbo jet use during take off?
+Four thousand
+10
+
+Aircrafts: What does a pilot drop to slow an airplane?
+Flaps
+10
+
+Aircrafts: What is the world's fastest passenger aircraft?
+Concorde
+10
+
+Aircrafts: What type of craft is the US's Airforce One?
+Boeing 747
+10
+
+Aircrafts: Whic country developed the first jet fighter?
+Germany
+10
+
+Aircrafts: Which two nations built the concorde?
+Britain and France
+10
+
+Aircrafts: Who built the 'Cherokee' and 'Comanche' aircraft?
+Piper
+10
+
+Aircrafts: Who built the hurricane aircraft?
+Hawker
+10
+
+Airport security personnel find about ____ weapons a day searching passengers
+Six
+10
+
+AKA Rainer Wolfcastle?
+McBain
+10
+
+Al Capone's business card identified him as a what?
+Furniture dealer
+10
+
+Alain boublil and claude-michel schonberg wrote which hit musical?
+Les miserables
+10
+
+ALAISES: Mrs Heelis, by which name is she better known?
+Beatrix Potter
+10
+
+ALAISES:Mary O'Brien, is better known as...?
+Dusty Springfield
+10
+
+Alamein how many ringling brothers were there?
+Five
+10
+
+Alanis Morrisette appeared on what 80's cable children's show?
+You Can't Do that On Television
+10
+
+Albert einstein couldn't talk properly until he was nine, and was thought to be suffering from ____
+Dyslexia
+10
+
+Albert Einstein was offered the presidency of ____ in 1952
+Israel
+10
+
+Albert Einstein was once offered the Presidency of ____. He declined saying he had no head for problems
+Israel
+10
+
+Albert Einstein was thought to be suffering from dyslexia, as he couldn't speak properly until he was ____ years old
+Nine
+10
+
+Albert Einstein worked at which American university?
+Princeton
+10
+
+Alberta's shield on the coat of arms, bears the cross of?
+Saint george
+10
+
+Alberto VO5 Hair Spray was the world?s first crystal ____ hair spray
+Clear
+10
+
+Alberto Vo5 is made with five organic emollients. What does the V.O. stand for in the name Alberto Vo5?
+Vital Organic
+10
+
+Albertville and Lillehammer were two 90s venues for which event?
+Winter Olympics
+10
+
+Albums 2002, Red Hot Chilli Peppers album which reached top 10 charts in August?
+By the way
+10
+
+Albums 2002, Shakiras album reached the top 10 uk chart?
+Laundry service
+10
+
+Albums 2002, Vanessa Carltons UK top 10 album?
+Be not nobody
+10
+
+Alcohol is added to soap to make it?
+Clear
+10
+
+Alex and his 'droogs' are thugs in what anthony burgess novel?
+A clockwork orange
+10
+
+Alexander ____ was shot by Aaron Burr in the groin
+Hamilton
+10
+
+Alexander Graham Bell, the inventor of the telephone, never phones his wife or his mother, they were both?
+Deaf
+10
+
+Alexander Hamilton was shot by ____ Burr in the groin
+Aaron
+10
+
+Alexander Hamilton was shot by Aaron ____ in the groin
+Burr
+10
+
+Alexander Hamilton was shot by Aaron Burr in the ____
+Groin
+10
+
+Alexander the Great suffered from what malady?
+Epilepsy
+10
+
+Alfred Gerald Caplin is better known as this (first+last name)?
+Al capp
+10
+
+Alfred Hitchcock never won an Academy Award for ____
+Directing
+10
+
+Alfred parker was the only man in the usa to be covicted of this crime?
+Cannibalism
+10
+
+Alfred Wegener claimed all the continents were once part of a single land mass,what did he call it?
+Pangaea
+10
+
+Algiers is the capital of ____
+Algeria
+10
+
+Aliases, by what name is Patrick Fyffe better known?
+Dame hilda bracket
+10
+
+Aliases, how are the duo George Logan and Patrick Fyffe better known?
+Hinge and bracket
+10
+
+Alice Springs is a place in which country?
+Australia
+10
+
+Alister Allan and Malcolm Cooper won Olympic medals in which sport?
+Shooting
+10
+
+Alkaloid derived from morphine and used as a pain killer?
+Codeine
+10
+
+All ____ children of Queen Anne died before she did
+17
+10
+
+All ____ float in water
+Porcupines
+10
+
+All ____ in Venice, Italy must be painted black, unless they belong to a high official
+Gondolas
+10
+
+All ____ originating names that end with the letters el have something to do with God
+Hebrew
+10
+
+All 50 ____ are listed across the top of the Lincoln Memorial on the back of the $5 bill
+States
+10
+
+All creatures great and small: what creatures live in a formicary?
+Ants
+10
+
+All gondolas in Venice, Italy must be painted ____, unless they belong to a high official
+Black
+10
+
+All gondolas in Venice, Italy must be painted black, unless they belong to a ____
+High official
+10
+
+All gondolas in____ , Italy must be painted black, unless they belong to a high official
+Venice
+10
+
+All hospitals in Singapore use ____ diapers
+Pampers
+10
+
+All members of which religion bear the surname singh?
+Sikhism
+10
+
+All of the officers in the confederate army were given copies of what book?
+Les miserables
+10
+
+All of the us could be placed inside what land mass?
+Sahara desert
+10
+
+All snow crystals are ____
+Hexagonal
+10
+
+All summer long teens dance slow to dreamy vocals like the five satins'?
+In the still of the nite
+10
+
+All the ____ in England are property of the Queen
+Swans
+10
+
+All the dirt from the foundation to build the ____ in NYC was dumped into the Hudson River to form the community now known as Battery City Park
+World trade center
+10
+
+All the dirt from the foundation to build the World Trade Center in NYC was dumped into the ____ River to form the community now known as Battery City Park
+Hudson
+10
+
+All the dirt from the foundation to build the World Trade Center in NYC was dumped into the Hudson River to form the community now known as ____ Park
+Battery city
+10
+
+All the gold produced in the past ____ years, if melted, could be compressed into a 50-foot cube
+500
+10
+
+All the gold produced in the past five hundred years, if melted, could be compressed into a ____ -foot cube
+Fifty
+10
+
+All the original Football League Division One teams are still in existence except one, which one?
+Accrington stanley
+10
+
+All times hamlet was the prince of ____
+Denmark
+10
+
+All totalled, the sunlight that strikes Earth at any given moment weighs as much as an ocean ____
+Liner
+10
+
+Allan clarke was lead vocalist with which great Manchester group during the 1960s and 1970s?
+The hollies
+10
+
+Allied bombers were issued with Biro pens as pens leaked at high altitude?
+Fountain
+10
+
+Allium cepa is the latin name for which vegetable?
+Onion
+10
+
+Alloy of iron and carbon?
+Steel
+10
+
+Alma Mater means what?
+Bountiful mother
+10
+
+Almonds are members of what family?
+Peach
+10
+
+Almost ____ hotdogs and buns, 160,000 hamburgers and cheeseburgers were served at Woodstock '99
+425,000
+10
+
+Almost ____ million pounds of medical trash is generated each day in the U.S
+18
+10
+
+Almost 425,000 hotdogs and buns, ____ hamburgers and cheeseburgers were served at Woodstock '99
+160,000
+10
+
+Almost 425,000 hotdogs and buns, 160,000 hamburgers and cheeseburgers were served at ____ '99
+Woodstock
+10
+
+Almost half the bones in your body are in what two body parts?
+Hands & feet
+10
+
+Alphabetically speaking, which is the last of the 26 Irish counties. Most people say Wexford, but they're wrong?
+.wicklow
+10
+
+Alphabetically, what were the two cities in 'A Tale of Two Cities'?
+London & paris
+10
+
+Alphonso D'Abruzzo is the original name of which MASH actor?
+Alan Alda
+10
+
+Alpine plant with white bracts?
+Edelweiss
+10
+
+Also called bettas, the males of what fish species are bred in thailand for the purpose of competitive combat, with people gambling on the matches?
+Siamese fighting fish
+10
+
+Also known as the Chile Pine, what is the common name of the tree Araucaria araucana?
+Monkey puzzle
+10
+
+Alternative After Jane's Addiction broke up the lead singer formed this band?
+Porno for pyros
+10
+
+Alternative Angry young man who leads Nine Inch Nails:?
+Trent reznor
+10
+
+alternative art: playing cards in which the pips are part of an art design are called this?
+Transformation cards
+10
+
+Although Cleopatra was meant to have died after a bite from an ____, the species does not exist in Egypt
+Asp
+10
+
+Although it doesn't sound like a dog, ____dust is ornamental wood chips often placed in flowerbeds
+Bark
+10
+
+Although you can't tell from the title, bobby hebb actually was singing this one to his brother in 1966?
+Sunny
+10
+
+Aluminum is strong enough to support ____ pounds per square inch
+90,000
+10
+
+Alvin & Simon had a brother called ____
+Theo
+10
+
+Always ____
+Coca cola
+10
+
+Ambrosia, darkling and death watch are all kinds of what?
+Beetles
+10
+
+America built the first nuclear submarine. What was it called?
+Nautilus
+10
+
+America media mogul Ted Turner owns ____ of New Mexico
+5%
+10
+
+America media mogul ted turner owns 5% of____
+New Mexico
+10
+
+America: As what is California also known?
+Golden State
+10
+
+America: As what is Minnesota also known?
+Gopher State
+10
+
+America: What city is also known as Beantown?
+Boston
+10
+
+America: What state is 'The Golden State'?
+California
+10
+
+America: What state is also called the 'Garden State'?
+New Jersey
+10
+
+America: What state is the 'Hoosier State'?
+Indiana
+10
+
+America: Where are the headquarters of the CIA?
+Langley, Virginia
+10
+
+America: Which date is inscribed on the book held by the Statue Of Liberty?
+July 4 1776
+10
+
+America's country's first commercial oil well was located in what state?
+Pennsylvania
+10
+
+America's first catholic church was established in 1732 in this city?
+Philadelphia
+10
+
+America's first minimum wage was ____ cents an hour back in 1938
+25
+10
+
+American Airlines saved $40,000 in 1987 by eliminating one ____ from each salad served in first-class
+Olive
+10
+
+American applied mathematician & electrical engineer, noted for his development of the theory of communication now known as information theory?
+Shannon
+10
+
+American artist, Grant Wood, depicts his dentist, B.H. McKeeby, and his sister Nan as a farmer-preacher and daughter in which 1930 painting?
+American gothic
+10
+
+American astronauts must be under ____ feet
+6
+10
+
+American burrowing animal with plated body?
+Armadillo
+10
+
+American inventor and teacher of the deaf, most famous for his invention of the telephone?
+Alexander graham bell
+10
+
+American inventor, engineer, & steamboat builder?
+John stevens
+10
+
+American inventor, whose development of a practical electric light bulb, electric generating system, sound-recording device, & motion picture projector had profound effects on the shaping of modern society?
+Thomas edison
+10
+
+American magician known for his bizarre stunts?
+David blaine
+10
+
+American mathematician & founder of cybernetics, the study of control & communication in machines, animals, & organizations?
+Wiener
+10
+
+American motion-picture actor, writer, director, and producer, a performer of great versatility and range, known for his enigmatic, faintly menacing grin and his skill in portraying nonconformist loners?
+Jack nicholson
+10
+
+American oceanographers found the wreckage of the Titanic in what year?
+1985
+10
+
+American physicist & government adviser, who directed the development of the first atomic bombs?
+J robert oppenheimer
+10
+
+American pioneer, who was killed while defending the alamo?
+James bowie
+10
+
+American Red Indians used to name their children after the first thing they saw as they left their ____ subsequent to the birth. Hence such strange names as Sitting Bull and Running Water
+Tepees
+10
+
+American rocket engineer, born in Worcester, Massachusetts, & educated at Worcester Polytechnic Institute & Clark University?
+Goddard
+10
+
+Americanisms: Britains say 'tarmac'; Americans say ____
+Runway
+10
+
+Americans call it a faucet What do the British call it?
+A tap
+10
+
+Americans consume about 138 billion ____ a year
+Cups of coffee
+10
+
+Americans consume how many tons of aspirin per day?
+42
+10
+
+Americans eat ____ bananas a year
+12 billion
+10
+
+Americans eat 12 billion ____ a year
+Bananas
+10
+
+Americans make up the biggest number of foreign visitors to London - which group make up the second largest?
+French
+10
+
+Americans on the average eat 18 acres of ____ every day
+Pizza
+10
+
+Americans say runway, britons say ____
+Tarmac
+10
+
+Americans spend approximately how much each year on beer?
+$25 billion
+10
+
+Americans spend more money on ____ every year than they spend on baby food
+Dog food
+10
+
+Americans spend more than ____ million a year on golf balls
+$630
+10
+
+Americans spend more than how much a year on cosmetics, toiletries, beauty parlors & barber shops?
+52 million
+10
+
+Americans spent over how much in 1982 to avoid having bad breath?
+$360 million
+10
+
+Americans spent roughly how much dining out in 1993?
+$267 billion
+10
+
+Americans use over ____ tons of aspirin a year
+16,000
+10
+
+Americas volunteer state?
+Tennessee
+10
+
+Amino acids are essential for the formation of what in the body?
+Proteins
+10
+
+Amman is the capital of ____
+Jordan
+10
+
+Ammonia is the active ingredient in?
+Smelling salts
+10
+
+Amount of time the average man spends ____ 3350 hours
+Shaving
+10
+
+Amount of time the average man spends shaving ____ hours
+3350
+10
+
+Amsterdam is the capital of ____
+Holland
+10
+
+Amtigome Costanda achieved fame in 1951 with her 40-26-38 inch figure, what did she do?
+First miss world
+10
+
+Amundsen reached the South Pole in which year?
+1911
+10
+
+An ____ can stay under water for twenty-eight minutes
+Iguana
+10
+
+An ____ is solid with nine faces
+Enneahedron
+10
+
+An 'ortanique' is a cross between which two fruits?
+Orange and tangerine
+10
+
+An 18th century elegant style of furniture?
+Chippendale
+10
+
+An acrophobic fears what?
+Heights
+10
+
+An actors' strike delays the start of the tv season from ____ to november
+September
+10
+
+An addition modifying a will?
+Codicil
+10
+
+An addition to a will is called a?
+Codicil
+10
+
+An adjustable type of spanner?
+Wrench
+10
+
+An Admiral is a high ranking officer in which force?
+Navy
+10
+
+An adult eats about 60,0000 pounds of food in a lifetime, which equals ____
+Six elephants
+10
+
+An adverb can modify a verb, an adjective, or ____
+Another adverb
+10
+
+An ahuehuete is a?
+Tree
+10
+
+An alien creature in a funny hat has opposed both Bugs Bunny and Daffy Duck Where is he from?
+Mars
+10
+
+An alphabetical list of terms or words, relating to a specific subject or text?
+Glossary
+10
+
+An altimeter measures what?
+Altitude
+10
+
+An America reindeer?
+Caribou
+10
+
+An American aircraft in Vietnam shot ____ down with one of its missiles
+Itself
+10
+
+An American Animal Hospital Association survey revealed that ____ percent of dog owners sign letters or cards from themselves and their dogs
+62
+10
+
+An anaesthetic injected close to the spinal cord?
+Epidural
+10
+
+An analgesic and anti-inflammatory drug?
+Ibuprofen
+10
+
+An ancient attempt to transmute base metals into gold was called ____
+Alchemy
+10
+
+An ancient war machine for launching missiles?
+Ballista
+10
+
+An Andy Panda cartoon gave birth to a famous, cantankerous bird Name him?
+Woody Woodpecker
+10
+
+An Andy Panda cartoon gave birth to a famous, cantankerous bird?
+Woody Woodpecker
+10
+
+An anemometer measures ____ ____
+Wind velocity
+10
+
+An anencephalous creature has no?
+Brain
+10
+
+An aneroid is a kind of...?
+Barometer
+10
+
+An angle greater than 90 degrees and less than 180 degrees is said to be ____
+Obtuse
+10
+
+An animal ____ is called an epizootic
+Epidemic
+10
+
+An animal described as ecaudate lacks which physical feature?
+Tail
+10
+
+An animal described as ecostate lacks which physical feature?
+Ribs
+10
+
+An animal epidemic is called an____
+Epizootic
+10
+
+An animal is a fish if it has ____
+Gills
+10
+
+An animal stuffer is a(n) ____
+Taxidermist
+10
+
+An animal that eats both plants and animals is known as an?
+Omnivore
+10
+
+An apparatus for mixing or shaking?
+Agitator
+10
+
+An area of low pressure is called a what?
+Cyclone
+10
+
+An area seperating potential belligerents?
+Buffer zone
+10
+
+An aromatic herb often used with tomatoes?
+Basil
+10
+
+An arrangement of long hair in a roll or knot at the back of the head?
+Chignon
+10
+
+An articulated puppet, worked by strings?
+Marionette
+10
+
+An assisted reproductive technology (art) in what one or more eggs are fertilized outside a female's body?
+Invitro fertilization
+10
+
+An astronomer named Percival Lowell founded this observatory in 1894?
+Lowell Observatory
+10
+
+An astronomical unit is the standard measurement taken from the earth to where?
+The sun
+10
+
+An atom is comprized of these 3 subatomic particles- electron, neutron, & ____
+Proton
+10
+
+An attack or assault or a beginning or a start?
+Onset
+10
+
+An average human drinks about how many gallons of water in a lifetime?
+16,000
+10
+
+An average of ____ million credit cards are used every day in the United States
+200
+10
+
+An average of 51 cars a year overshoot and drive into the canals of ____
+Amsterdam
+10
+
+An average person laughs about how many times a day?
+-- Answer metadata begin
+{
+    "answers": ["15", "fifteen"]
+}
+-- Answer metadata end
+10
+
+An average person uses the bathroom how many times per day?
+Six
+10
+
+An average, in America, three sex change operations are performed ____
+Every day
+10
+
+An eighteenth century woman used only lard to 'wash' her face and hands and lived to the age of?
+116
+10
+
+An electric eel produces an average of ____ volts
+400
+10
+
+An electrical device for removing suspended impurities such as dust, fumes, or mist, from air or other gases?
+Electrostatic precipitator
+10
+
+An electroencephalogram measures what?
+Brain waves
+10
+
+An elephant can be pregnant for up to how many years?
+Two
+10
+
+An Elephant has the world's largest penis, weighing about ____ kg
+27
+10
+
+An Elephant's trunk can hold over ____ litres of water
+Five
+10
+
+An emmet is which type of a creature in old language?
+Ant
+10
+
+An enneahedron is ____ with nine faces
+Solid
+10
+
+An enneahedron is solid with ____ faces
+Nine
+10
+
+An enneahedron is solid with ho many faces?
+Nine
+10
+
+An enormous beast described in the Old Testament,Job 40?
+Behemoth
+10
+
+An entertainment with an educational aspect?
+Edutainment
+10
+
+An erg is a unit of what?
+Energy
+10
+
+An Eskimo would be ingesting toxic doses of Vitamin A if he ate a polar bears ____
+Liver
+10
+
+An estimated ____ lab mistakes are made in the 100,000 laboratories in the U.S. every day
+Two million
+10
+
+An estimated ____ of animals on Earth have six legs
+80%
+10
+
+An estimated 80% of animals on Earth have ____ legs
+Six
+10
+
+An exaggerated statement for emphasis is a ____
+Hyperbole
+10
+
+An example of a metamorphic rock is ____
+Marble
+10
+
+An example of a metamorphic rock is ____
+Slate
+10
+
+An example of an igneous rock is____
+Granite
+10
+
+An example of an igneous rock is____
+Quartz
+10
+
+An exclusive group of people?
+Clique
+10
+
+An external agent that alters foetal development is called a?
+Teratogen
+10
+
+An iguana can stay under water for ____ minutes
+28
+10
+
+An important aspect in personal communication and public speaking is what?
+Making eye contact
+10
+
+An inch of snow falling evenly on one acre of ground is equivalent to about ____ gallons of water
+2715
+10
+
+An infant whale is called a what?
+Calf
+10
+
+An inhabitant of quebec is called?
+Quebecois
+10
+
+An integer that is greater than 1 & is divisible only by itself & 1 is known as a(n) ____
+Prime number
+10
+
+An internal timber framed dividing wall?
+Stud partition
+10
+
+An interuption of breathing?
+Apnea
+10
+
+An Italian vinegar matured in wooden barrels?
+Balsamic
+10
+
+An oak tree grows what kind of nut?
+An acorn
+10
+
+An oath describing the responsibilities of a physician is known as the____ ____
+Hippocratic Oath
+10
+
+An object hard to find because it is hidden by many other similar objects?
+Needle in a haystack
+10
+
+An octopus has how many hearts?
+Three
+10
+
+An old sweet scented rose?
+Damask
+10
+
+An old, short, large bored gun?
+Blunderbuss
+10
+
+An omniscient person has unlimited ____
+Knowledge
+10
+
+An opera by Vincenzo Bellini, libretto by Romani, in which the heroine is a druid priestess?
+Norma
+10
+
+An organ built in the 10th century was so powerful that it needed 70 men to pump it, where was it?
+Winchester Cathedral
+10
+
+An organisation of business and professional men was founded in Chicago in 1905 out of a weekly luncheon club. What is it called?
+Rotary
+10
+
+An ostritch's eye is bigger than its?
+Brain
+10
+
+An ounce of gold can be stretched into a wire how many miles long?
+Fifty
+10
+
+An overdose of MSG is also known as what?
+Kwok's Disease
+10
+
+An oxlike antelope?
+Gnu
+10
+
+An underground layer of water filled rock is called an?
+Aquifer
+10
+
+Anagrams: Which two fruits are an anagram of each other?
+Lemon and melon
+10
+
+Analogies: 'Ancient' is to 'old' as 'recent' is to ____
+Current
+10
+
+Analogies: ancient-old, recent- ____
+Current
+10
+
+Analogies: Anson MacDonald: Stranger in a Strange Land :: Edith Van Dyne: <blank>?
+The wizard of oz
+10
+
+Analogies: Bull - cow as fox?
+Vixen
+10
+
+Analogies: enter: immigrate :: leave: <blank>?
+Emigrate
+10
+
+Analogies: Gaul: France :: Aragon: <blank>?
+Spain
+10
+
+Analogies: Goose - geese as passerby?
+Passersby
+10
+
+Analogies: Park Place: Park Lane :: Boardwalk: <blank>?
+Mayfair
+10
+
+Analogies: penniless: Baroque :: supplemental teacher: <blank>?
+Tudor
+10
+
+Analogies: Wrist is to arm as nose is to ____
+Face
+10
+
+Analysis and manipulation of an image?
+Processing
+10
+
+Ancient ____ slept on pillows made of stone
+Egyptians
+10
+
+Ancient art practiced especially in the middle ages, devoted chiefly to discovering a substance that would transmute the more common metals into gold or silver & to finding a means of indefinitely prolonging human life?
+Alchemy
+10
+
+Ancient British ruler of the Catuvellauni tribe, subject of a play by Shakespeare?
+Cymbeline
+10
+
+Ancient drinkers warded off the devil by ____ their cups
+Clinking
+10
+
+Ancient Egyptians shaved their eyebrows to mourn the deaths of what?
+Their cats
+10
+
+Ancient Egyptians slept on ____ made of stone
+Pillows
+10
+
+Ancient egyptians slept on pillows made of____
+Stone
+10
+
+Ancient mariner who flew too near the sun waering wings attached with wax?
+Icarus
+10
+
+Ancient mariner who flew too near the sun wearing wings attached with wax?
+Icarus
+10
+
+Ancient mayan ruins are located on which peninsula?
+Yucatan peninsula
+10
+
+Ancient name for France?
+Gaul
+10
+
+Ancient Peruvians substitute for writing by variously knotting threads of various colours?
+Quipu
+10
+
+Ancient Roman hall with colonnades?
+Basilica
+10
+
+Andrew marvell's poem, little t.c. in a prospect of flowers, was named after whom?
+Theophila cornewall
+10
+
+Andy mccluskey &Paul humphreys made up which 80's band?
+Omd
+10
+
+Anger towards other road users experienced by a person when driving?
+Road rage
+10
+
+Angus Drummie Zeb Gaye is a member of which group?
+Aswad
+10
+
+Animals:  cockroach can live several weeks with its ____ cut off - it dies from starvation
+Head
+10
+
+Animals: ____ always turn left when exiting a cave
+Bats
+10
+
+Animals: ____ and short-tailed shrews get by on only two hours of sleep a day
+Elephants
+10
+
+Animals: ____ are freeze-tolerant and spend winters frozen on land, only to thaw in the spring and begin their breeding process in vernal ponds
+Wood frogs
+10
+
+Animals: ____ are in the same family as horses, and are thought to have inspired the myth of the unicorn
+Rhinos
+10
+
+Animals: ____ are powerful jumpers. A 20-inch adult can leap 20 feet in a single bound
+Jackrabbits
+10
+
+Animals: ____ are social birds that congregate in huge flocks. While the flock grazes in a field, lookouts will be posted to watch for approaching danger. They'll raise the alarm if humans approach
+Crows
+10
+
+Animals: ____ are the largest of the minnows - it's a big family, including over 300 American species, mainly small freshwater fishes. True minnows (family Cyprinidae) are soft-rayed fishes with teeth in their throats only
+Carp
+10
+
+Animals: ____ are the only animals born with horns. Both males and females are born with bony knobs on the forehead
+Giraffes
+10
+
+Animals: ____ are the only mammals that are retro-mingent (they pee backwards)
+Cattle
+10
+
+Animals: ____ are the smallest breed of dog used for hunting. They are low to the ground, which allows them to enter and maneuver through tunnels easily
+Dachshunds
+10
+
+Animals: ____ are voluntary breathers. For this reason, they sleep with only half of their brain at one time. The other half remains alert to regulate breathing. Resident whales typically remain near the surface, breathing and swimming in a pattern. When traveling together, resident pods have been observed to breathe in unison. Although it is not known why this occurs, it could be a way of helping the pod keep tabs on one another
+Orca whales
+10
+
+Animals: ____ bats do not suck blood. They bite, then lick up the flow
+Vampire
+10
+
+Animals: ____ can climb trees faster than they can run on the ground
+Squirrels
+10
+
+Animals: ____ can clock an amazing 31 mph at full speed and cover about 3 times their body length per leap
+Kittens
+10
+
+Animals: ____ can live in captivity for up to 46 years
+Eagles
+10
+
+Animals: ____ can swim for a 1/2 mile without resting, and they can tread water for 3 days straight
+Rats
+10
+
+Animals: ____ can travel up to 40 miles per hour
+Sharks
+10
+
+Animals: ____ can withstand water pressure of up to 850 pounds per square inch
+Seals
+10
+
+Animals: ____ cannot move backwards
+Alligators
+10
+
+Animals: ____ chinchillas were brought from the Andes Mountains in South America in the 1930's. All chinchillas presently in North America are descended from these ____ chinchillas
+Eleven
+10
+
+Animals: ____ communicate in sound waves below the frequency that humans can hear
+Elephants
+10
+
+Animals: ____ crumble leaves in their mouths to make a type of sponge to sop up water from the hollows in trees when they can't reach the water with their lips
+Chimpanzees
+10
+
+Animals: ____ do not breath automatically, as humans do, and so they do not sleep as humans do. If they become unconscious, they would sink to the bottom of the sea. Without the oxygen they need to take in periodically, they would die
+Dolphins
+10
+
+Animals: ____ don't fly by flapping their wings up and down. The motion is more forward and backward, like a figure eight on its side
+Birds
+10
+
+Animals: ____ eagles hunt over a range of 100 square miles to feed their young
+Golden
+10
+
+Animals: ____ eat only moving prey
+Toads
+10
+
+Animals: ____ eels are not really eels but a kind of fish. Although they look like eels, their internal organs are arranged differently
+Electric
+10
+
+Animals: ____ eggs which are incubated below 85? F (29.5? C) hatch into females, while those incubated above 95? F (35? C) hatch into males
+Crocodile
+10
+
+Animals: ____ feel safest when they are crowded together, hundreds in a group
+Flamingoes
+10
+
+Animals: ____ for most snakes is accomplished with one lung only. The left lung is either greatly reduced in size or missing completely
+Breathing
+10
+
+Animals: ____ gather in groups to sleep through the winter. Sometimes up to 1,000 of them will coil up together to keep warm
+Rattlesnakes
+10
+
+Animals: ____ had a heart the size of a pickup truck
+Brachiosaurus
+10
+
+Animals: ____ has more homeless cats per square mile than any other city in the world
+Rome
+10
+
+Animals: ____ have 5 hearts
+Earthworms
+10
+
+Animals: ____ have been trained to have recognition vocabularies of 100 to 200 words. They can distinguish among different grammatical patterns
+Chimpanzees
+10
+
+Animals: ____ have killed more people than have all the world's wars combined
+Mosquitoes
+10
+
+Animals: ____ have no ability to taste sweet things
+Cats
+10
+
+Animals: ____ have one more pair of chromosomes than dogs or wolves
+Jackals
+10
+
+Animals: ____ have scent glands between their hind toes. The glands help them leave scent trails for the herd. Researchers say the odor smells cheesy
+Reindeer
+10
+
+Animals: ____ have the best eyesight of any breed of dog
+Greyhounds
+10
+
+Animals: ____ have three eyelids to protect themselves from blowing sand
+Camels
+10
+
+Animals: ____ herds post their own sentries. When danger threatens, the sentry raises its trunk and though it may be as far as a half-mile away, the rest of the herd is instantly alerted. how this communication takes place is not understood
+Elephant
+10
+
+Animals: ____ instinctively know their own endurance and will refuse to move beyond it. If their masters try to drive them farther, they will lie down and refuse to budge
+Camels
+10
+
+Animals: ____ is one American breed of hardy hogs having drooping ears - it was allegedly named after the horse owned by the hog's breeder
+Duroc
+10
+
+Animals: ____ may travel great distances on their migrations. The Arctic tern travels from the top of the world, the Arctic - to the bottom, the Antarctic. Round trip in a single year: 25,000 miles in all
+Birds
+10
+
+Animals: ____ need about 2 tablespoonfuls of blood each day. The creature is able to extract its dinner in approximately 20 minutes
+Vampire bats
+10
+
+Animals: ____ never walk or trot, but always hop or leap
+Rabbits
+10
+
+Animals: ____ of South and Central America and the Caribbean lay their eggs in February and March
+Iguanas
+10
+
+Animals: ____ often sleep for up to fourteen hours a day
+Gorillas
+10
+
+Animals: ____ played a role in aerial warfare during World War I. Because of their acute hearing, parrots were kept on the Eiffel Tower to warn of approaching aircraft long before the planes were heard or seen by human spotters
+Birds
+10
+
+Animals: ____ prefer termites to ants
+Anteaters
+10
+
+Animals: ____ sea otters spend almost all of their time in the water. Alaska sea otters often sleep, groom, and nurse on land
+California
+10
+
+Animals: ____ silk is an extremely strong material and its on-weight basis has been proven to be stronger than steel. Experts suggest that a pencil-thick strand of silk could stop a Boeing 747 in flight
+Spider
+10
+
+Animals: ____ swim in circles while they sleep with the eye on the outside of the circle open to keep watch for predators. After a certain amount of time, they reverse and swim in the opposite direction with the opposite eye open
+Dolphins
+10
+
+Animals: ____ taste with their hind feet
+Butterflies
+10
+
+Animals: ____ that are seen wandering around in the wild do not make good pets. These are sexually mature males at the end of their life cycle - they will die within a few weeks or months
+Tarantulas
+10
+
+Animals: ____ turtles may breed for the first time when they are between 25 to 50 years old. This figure varies, depending upon the creature's range and the diet of the maturing turtle
+Green
+10
+
+Animals: ____ were domesticated around 4,000 years ago
+Camels
+10
+
+Animals: ____, an essential ingredient of many expensive cosmetics, is, in its native form, a foul-smelling, waxy, tarlike substance extracted from the fleece of sheep
+Lanolin
+10
+
+Animals: ____, like grasshoppers - feel no pain. They have a decentralized nervous system with no cerebral cortex, which in humans is where a reaction to painful stimuli proceeds
+Lobsters
+10
+
+Animals: ____, like other equids, have three gaits: the walk, the trot, and the gallop
+Zebras
+10
+
+Animals: 1990s: In 1992, what type of flies flew on the space shuttle endeavour?
+Fruit flies
+10
+
+Animals: 1990s: In 1999 was The Year of the ____
+Rabbit
+10
+
+Animals: 2002, Crufts - which breed of dog was chosen as Best in Show?
+Poodle
+10
+
+Animals: A ____ always sleeps on its right side
+Pig
+10
+
+Animals: A ____ breathes only 10 times in hibernation
+Woodchuck
+10
+
+Animals: A ____ can advance 7 to 8 meters in a single stride, and the animal completes four strides per second. A stride is measured as the distance between successive imprints of the same paw
+Cheetah
+10
+
+Animals: A ____ can dig over 250 feet of tunnel in a single night
+Mole
+10
+
+Animals: A ____ can eat only when its head is upside down
+Flamingo
+10
+
+Animals: A ____ can fall from a 5-story building without injury
+Rat
+10
+
+Animals: A ____ can go without water longer than a camel can
+Giraffe
+10
+
+Animals: A ____ can go without water longer than a camel can
+Rat
+10
+
+Animals: A ____ can last longer without water than a camel can
+Rat
+10
+
+Animals: A ____ can learn to recognize itself in a mirror
+Chimpanzee
+10
+
+Animals: A ____ can lose up to 30 percent of its body weight in perspiration and continue to cross the desert. A human would die of heat shock after sweating away only 12 percent of body weight
+Camel
+10
+
+Animals: A ____ can open its mouth wide enough to accommodate a 4-foot-tall child
+Hippopotamus
+10
+
+Animals: A ____ can remember a specific tone far better than can a human
+Dolphin
+10
+
+Animals: A ____ can squeeze through an opening no larger than a dime
+Rat
+10
+
+Animals: A ____ can swallow a rabbit whole and may eat as many as 150 mice in a 6-month period
+Python
+10
+
+Animals: A ____ cannot contract or carry the rabies virus
+Squirrel
+10
+
+Animals: A ____ cannot eat hay
+Deer
+10
+
+Animals: A ____ cannot jump if its tail is lifted off the ground. It needs its tail for pushing off
+Kangaroo
+10
+
+Animals: A ____ cannot move its jaw side to side
+Cat
+10
+
+Animals: A ____ consumes about 33 percent of its body weight in a single meal
+Pelican
+10
+
+Animals: A ____ fish can swim 100 miles in a single day
+Tuna
+10
+
+Animals: A ____ focuses its eye by changing the angle of its head, not by changing the shape of the lens of the eye, as humans do
+Horse
+10
+
+Animals: A ____ gives nearly 200,000 glasses of milk in her lifetime
+Cow
+10
+
+Animals: A ____ has a lifespan of 24 hours
+Dragonfly
+10
+
+Animals: A ____ has about 400 to 700 vibrissae, or whiskers, in 13 to 15 rows on its snout. Vibrissae are attached to muscles and are supplied with blood and nerves. A ____ moves its snout through bottom sediment to find food. Abrasion patterns created by their tusks show that they are dragged through the sediment, but are not used to dig up prey
+Walrus
+10
+
+Animals: A ____ has no color vision, it sees only in black and white. Every part of its field of vision, however, is in perfect focus, not just straight ahead, as with humans
+Squirrel
+10
+
+Animals: A ____ has the largest penis of any other animal in relation to its size
+Barnacle
+10
+
+Animals: A ____ has three eyelids
+Duck
+10
+
+Animals: A ____ in the wild usually makes no more than 20 kills a year
+Lion
+10
+
+Animals: A ____ is capable of devouring a pig whole
+Python
+10
+
+Animals: A ____ keeps purring, no matter if it is inhaling or exhaling, a baffling accomplishment
+Cat
+10
+
+Animals: A ____ male reindeer is called a bull
+Castrated
+10
+
+Animals: A ____ never actually sees the food as it eats, since its eyes are on top of its head and its mouth and nostrils are on the bottom
+Stingray
+10
+
+Animals: A ____ s heart beats 300 times a minute on average
+Hedgehog
+10
+
+Animals: A ____ weighing 120 pounds exerts a force of about 1,540 pounds between its jaws. A human being's jaws exert a force of only 40 to 80 pounds
+Crocodile
+10
+
+Animals: A ____ weighs about 1,400 pounds and eats about 55 pounds of food per day
+Cow
+10
+
+Animals: A ____ will lay bigger and stronger eggs if you change the lighting in such a way as to make them think a day is 28 hours long
+Chicken
+10
+
+Animals: A ____ will sink in quicksand but a mule won't
+Donkey
+10
+
+Animals: A 'gam' is a collection of which creatures?
+Whales
+10
+
+Animals: A 'geep' is the resulting offspring of a sheep and a?
+Goat
+10
+
+Animals: A 'schipperke' is a breed of which animal?
+Dog
+10
+
+Animals: A 2 year old horse has ____incisors
+Six
+10
+
+Animals: A 4-inch-long ____ can grip a rock with a force of 400 pounds. Two grown men are incapable of prying it up
+Abalone
+10
+
+Animals: A 4-inch-long abalone can grip a rock with a force of ____ pounds
+400
+10
+
+Animals: a 42-foot sperm whale has about ____ tons of oil in it
+7
+10
+
+Animals: A 42-foot sperm whale has about ____ tons of oil in it
+Seven
+10
+
+Animals: A 42-foot sperm whale has about 7 tons of ____ in it
+Oil
+10
+
+Animals: A 6 pound sea-hare can lay ____ eggs in a single minute
+40,000
+10
+
+Animals: A babirusa is a type of ____
+Pig
+10
+
+Animals: A baby ____ is about six feet tall at birth
+Giraffe
+10
+
+Animals: A baby DEER is called a ____
+Fawn
+10
+
+Animals: A baby DONKEY is called a ____
+Colt
+10
+
+Animals: A baby eel is called an?
+Elver
+10
+
+Animals: A baby FOX is called a ____
+Cub
+10
+
+Animals: A baby giraffe is about ____ feet tall at birth
+6
+10
+
+Animals: A baby gray ____ drinks enough milk to fill more than 2,000 bottles a day
+Whale
+10
+
+Animals: A baby gray whale drinks enough milk to fill more than ____ bottles a day
+2,000
+10
+
+Animals: A baby oyster is called a(n) ____
+Spat
+10
+
+Animals: A barnacle has the largest ____ of any other animal in relation to its size
+Penis
+10
+
+Animals: A bear in hibernation loses up to ____ percent of its body weight
+25
+10
+
+Animals: A bear in hibernation loses up to 25 percent of its ____
+Body weight
+10
+
+Animals: A bird sees everything at once in total focus. Whereas the human eye is globular and must adjust to varying distances, the bird's eye is flat and can take in everything at once in a ____
+Single glance
+10
+
+Animals: A bison can jump ____ feet
+6
+10
+
+Animals: A bison can jump ____
+6 feet
+10
+
+Animals: A breed of black and white dairy cattle?
+Friesian
+10
+
+Animals: A camel can shut its nostrils during a ____
+Desert sandstorm
+10
+
+Animals: a camel with one hump is a dromedary, while a camel with two humps is a ____
+Bactrian
+10
+
+Animals: A carnivore is a meat-eating animal. A ____ is a fruit-eating animal
+Frugivore
+10
+
+Animals: A castrated bull?
+Bullock
+10
+
+Animals: A castrated horse?
+Gelding
+10
+
+Animals: A castrated male ____ is called a bull
+Reindeer
+10
+
+Animals: A castrated male reindeer is called a____
+Bull
+10
+
+Animals: A cat has 32 muscles in ____
+Each ear
+10
+
+Animals: A cat has how many muscles in each ear?
+-- Answer metadata begin
+{
+    "answers": ["32", "thirty two"]
+}
+-- Answer metadata end
+10
+
+Animals: A cat uses its whiskers to determine if a space is too small to squeeze through. The whiskers act as feelers or ____, helping the animal to judge the precise width of any passage
+Antennae
+10
+
+Animals: A cat's ____ can't move sideways
+Jaw
+10
+
+Animals: A cat's arching back is part of a complex body language system, usually associated with feeling threatened. The arch is able to get so high because the cat's spine contains nearly 60 vertebrae which fit loosely together. Humans have only ____
+34 vertebrae
+10
+
+Animals: A cat's whiskers are called?
+Vibrissae
+10
+
+Animals: A chameleon's ____ is twice the length of its body
+Tongue
+10
+
+Animals: A cheetah can accelerate from 0 to ____ in 2 seconds
+70 km/h
+10
+
+Animals: A cockroach will live nine days without its ____, before it starves to death
+Head
+10
+
+Animals: A cow can't ____ until she's given birth to a calf
+Give milk
+10
+
+Animals: A cow gives nearly how many glasses of milk in her lifetime?
+200,000
+10
+
+Animals: A cow normally has how many teats?
+Four
+10
+
+Animals: A cow sweats from which part of its body?
+Nose
+10
+
+Animals: A cow's stomach has how many chambers?
+4
+10
+
+Animals: A cows stomach has how many compartments?
+Four
+10
+
+Animals: A cricket an inch long has a chirp that is audible for nearly?
+A mile
+10
+
+Animals: A crocodile always grows new ____ to replace the old ones
+Teeth
+10
+
+Animals: A crocodile can't stick out its ____
+Tongue
+10
+
+Animals: A crocodile is a member of the phylum vertebrata. What class does it belong to?
+Reptilia
+10
+
+Animals: A crocodiles ____ is attached to the roof of its mouth
+Tongue
+10
+
+Animals: A Curry Comb is used on what type of creature?
+Horse
+10
+
+Animals: A dark brown infesting insect?
+Cockroach
+10
+
+Animals: A deep sea shark, feeds on plankton?
+Megamouth
+10
+
+Animals: A deer cannot eat____
+Hay
+10
+
+Animals: A dog's ____ has over 200 scent receiving cells
+Nose
+10
+
+Animals: A dolphin can remember a specific ____ better than a human
+Tone
+10
+
+Animals: A donkey will sink in ____ but a mule won't
+Quicksand
+10
+
+Animals: A donkey will sink in quicksand but a ____ won't
+Mule
+10
+
+Animals: A dragonfly has a lifespan of ____ hours
+24
+10
+
+Animals: A duck has ____ eyelids
+Three
+10
+
+Animals: A famous stallion will, on retirement, command an impressive stud fee for servicing approved mares. Specialist stud-farms house one or more stallions, each of which is allowed to service about ____ per season
+40 mares
+10
+
+Animals: A female donkey is called a what?
+Jenny
+10
+
+Animals: A female mouse may spawn as many as ten litters of eight to ten young during her lifetime - which is generally less than a year. The gestation period is three weeks, and the young mice reach maturity in only ____
+Ten weeks
+10
+
+Animals: A female swine, or a sow, will always have a even number of teats or nipples, usually____
+Twelve
+10
+
+Animals: A female swine, or a sow, will always have a even number of____ , usually twelve
+Nipples
+10
+
+Animals: A female____ , will always have a even number of teats or nipples, usually twelve
+Swine
+10
+
+Animals: A fennec is what type of animal?
+A Desert Fox
+10
+
+Animals: A flamingo can eat only when its head is?
+Upside down
+10
+
+Animals: A flea can jump how many times its own length?
+100
+10
+
+Animals: A fluke is what kind of animal?
+Worm
+10
+
+Animals: A fox litter is typically 10 to 15 ____
+Pups
+10
+
+Animals: A full-grown ____ may be 8 feet high at the shoulder and weigh almost a ton
+Moose
+10
+
+Animals: A garter snake can give birth to ____
+85 babies
+10
+
+Animals: A giant Pacific ____ can fit its entire body through an opening no bigger than the size of its beak
+Octopus
+10
+
+Animals: A Gila monster is a type of what?
+Lizard
+10
+
+Animals: A giraffe can clean its ears with its ____-inch tongue
+21
+10
+
+Animals: A giraffe's neck contains the same number of ____ as a human
+Vertebrae
+10
+
+Animals: A giraffe's sticky, black tongue can be more than 18 inches long and is used to gather food into the mouth. Males typically feed with their head and neck at full vertical stretch, often with their tongues extended to reach the shoots on the underside of the mature tree canopy. Females feed at the body or knee height, with their necks ____
+Curled over
+10
+
+Animals: A glow worm isn't a worm, its a?
+Beetle
+10
+
+Animals: A good milking cow will give nearly 6,000 quarts of ____ every year
+Milk
+10
+
+Animals: A group of bees can be called either a hive, a swarm, or a ____
+Grist
+10
+
+Animals: A group of foxes is called a ____
+Skulk
+10
+
+Animals: A group of gorillas is known as a ____
+Band
+10
+
+Animals: A group of kangaroos is known as a ____
+Troop
+10
+
+Animals: A group of owls is called a ____
+Parliament
+10
+
+Animals: A Harlequin is what type of bird?
+Duck
+10
+
+Animals: A hedgehog's heart beats ____ times a minute on average
+300
+10
+
+Animals: A herd of sixty cows is capable of producing a ton of milk in less than a ____
+Day
+10
+
+Animals: A hibernating woodchuck breathes only ten times per hour. An ____ woodchuck breathes 2,100 times an hour
+Active
+10
+
+Animals: A hippopotamus can run faster than a ____
+Man
+10
+
+Animals: A hippopotamus has a stomach 10 feet long, capable of holding 6 bushels of ____
+Grass
+10
+
+Animals: A Holstein cow's spots are like a ____ or a snowflake; no two cows have exactly the same pattern of spots
+Fingerprint
+10
+
+Animals: A horse can sleep ____
+Standing up
+10
+
+Animals: A horse named Black Bess was ridden by who?
+Dick Trupin
+10
+
+Animals: A horse's hoof is also known by what grim term?
+Coffin
+10
+
+Animals: A horseshoe for a full-grown Clydesdale measures more that ____ inches from end to end and weighs about five pounds. It is more than two times as long and four times as heavy as a shoe worn by a riding horse
+22
+10
+
+Animals: A jellyfish is 95 percent?
+Water
+10
+
+Animals: A jynx is a ____, also know as the wryneck because of its peculiar habit of twisting its neck
+Woodpecker
+10
+
+Animals: A kangaroo is a member of the phylum vertebrata. What class does it belong to?
+Mammalia
+10
+
+Animals: A King Cobra is the biggest of all poisonous snakes and can grow to over 13 feet long. A bite from a King Cobra can kill an elephant in ____
+4 hours
+10
+
+Animals: A large Caribbean ____ excretes a ton of sand a year. Using two oversized front teeth, it nibbles on seagrass and scrapes algae. Another set of teeth in its throat grinds up the coral it ingests
+Parrot fish
+10
+
+Animals: A lepidopterist collects?
+Butterflies & moths
+10
+
+Animals: A male ____ becomes fully feathered when he is three years old, but can mate earlier
+Peacock
+10
+
+Animals: A male baboon can kill a ____
+Leopard
+10
+
+Animals: A male kangaroo is called a boomer, and a female is called a ____
+Flyer
+10
+
+Animals: A male pig is a boar. A female pig is a sow. A baby pig is a ____
+Piglet
+10
+
+Animals: A mandrill is what type of creature?
+Monkey
+10
+
+Animals: A marine catfish can taste with any part of its body. The female marine catfish hatches her eggs in her ____
+Mouth
+10
+
+Animals: A markhor is what type of animal?
+Wild goat
+10
+
+Animals: A mated pair of ____ can produce up to 15,000 babies in one year
+Rats
+10
+
+Animals: A mole can dig a tunnel ____ feet long in one night
+300
+10
+
+Animals: A mother ____ often gives birth while standing, so the newborn's first experience outside the womb is a 1.8-meter (6-foot) drop. Ouch!
+Giraffe
+10
+
+Animals: A newborn Chinese water ____ is so small it can almost be held in the palm of the hand
+Deer
+10
+
+Animals: A newborn gray whale calf is an average 16 feet long. For reasons unknown, all gray whale calves are born in the warm, shallow lagoons of Baja, ____
+California
+10
+
+Animals: A newborn turkey chick has to be taught to eat, or it will starve. Breeders spread feed underfoot, hoping the little ones will peck at it and get the idea. Turkeys tend to look up with their mouths open during rainstorms. As a result, many ____
+Drown
+10
+
+Animals: A normal cow's stomach has ____ compartments: the rumen, the recticulum (storage area), the omasum (where water is absorbed), and the abomasum ( the only compartment with digestive juices)
+Four
+10
+
+Animals: A one-humped camel is called a ____
+Dromedary
+10
+
+Animals: A plaice, a large European flounder, can lie on a checkerboard and reproduce on its upper surface the same pattern of squares, for ____
+Camouflage
+10
+
+Animals: A Quagga is an extinct animal that was a distant cousin to which animal that exists today?
+Zebra
+10
+
+Animals: A quarter horse gets its name from its speed in running the ____
+Quarter-mile
+10
+
+Animals: A racehorse averages a weight loss of between 15 and 25 pounds during a ____
+Race
+10
+
+Animals: A rarity in birds, geese are among the very few in which the family stays together at the end of the ____ season. Parents and the young raised during the summer establish strong family bonds and do not break up for about a year. In the fall, geese migrate in flocks that contain other family units, and each family stays together on the wintering grounds
+Breeding
+10
+
+Animals: A rhinoceros has ____ toes on each foot
+Three
+10
+
+Animals: A robin has nearly 3,000 ____
+Feathers
+10
+
+Animals: A rodent's teeth never stop growing. They are worn down by the animal's constant gnawing on bark, leaves, and other ____
+Vegetable matter
+10
+
+Animals: A Saki is what type of animal?
+A Monkey
+10
+
+Animals: A shrimp has ____ pairs of legs
+Five
+10
+
+Animals: A shrimp has more than a hundred pairs of chromosomes in each cell nucleus. Man has only ____
+23
+10
+
+Animals: A sidewinder is what type of creature?
+A snake
+10
+
+Animals: A silvery freshwater fish with a long dorsal fin?
+Grayling
+10
+
+Animals: A single ____, with its razor-sharp teeth, is still dangerous enough when out of water to rip off the flesh, or a finger or toe, from an unwary fisherman
+Piranha
+10
+
+Animals: A single WHAT may catch and eat as many as 10,000 insects in the course of a summer?
+Toad
+10
+
+Animals: A skunk will not ____ and throw its scent at the same time
+Bite
+10
+
+Animals: A snail speeding along at three inches per minute would need 15 days to travel ____
+One mile
+10
+
+Animals: A snake is capable of eating an animal four times larger than the width of its own ____
+Head
+10
+
+Animals: A snake's ____ is located in the front one-fifth portion of its body
+Stomach
+10
+
+Animals: A South African ____ can grow to be 35 inches (90 cm) in length - longer than your arm
+Bullfrog
+10
+
+Animals: A species of ____ known as the Linckia columbiae can reproduce its entire body - that is, grow back completely - from a single severed pieces less than a half-inch long
+Starfish
+10
+
+Animals: A species of sponge, called the red sponge, can be pushed through a piece of fabric so that it is broken into thousands of tiny pieces. The animal does not die. Rather, all the pieces reassemble until the sponge returns to its ____
+Original form
+10
+
+Animals: A stoat produces fur called what?
+Ermine
+10
+
+Animals: A terrapin is a type of ____
+Turtle
+10
+
+Animals: A tiger's paw prints are called ____. A tiger's forefeet have five toes and the hind feet have four toes. All toes have claws. The claws are 80 to 100 mm in length
+Pug marks
+10
+
+Animals: A type of lizard, the ____, escapes pursuers by crawling into a crack in a rock and inflating its body with air so that it is wedged tightly into the crack and can't be pulled out
+Chuckwalla
+10
+
+Animals: A typical mayfly lives for how many days?
+One
+10
+
+Animals: A whales breathing organs are called what?
+Lungs
+10
+
+Animals: A wolf's odor detecting ability is ____ times greater than man's
+100
+10
+
+Animals: A woodchuck breathes only ten times per hour while ____, while an active woodchuck breathes 2,100 times an hour
+Hibernating
+10
+
+Animals: A young male fur ____ that is kept from the breeding grounds by the older males is called a bachelor
+Seal
+10
+
+Animals: A young pigeon that has not yet flown is a ____
+Squab
+10
+
+Animals: About 24 newborn opossums can fit in a teaspoon. They are about .07 ounce at ____
+Birth
+10
+
+Animals: According to experts, ____ don't like to head straight for anything. For safety, they may run past and sweep around from the side
+Squirrels
+10
+
+Animals: According to several studies, less than 3 percent of the ____ population become man-eaters
+Tiger
+10
+
+Animals: According to the National Wild Turkey Federation, the number of wild turkeys in the U.S. has increased from an all time low of 30,000 to more than 4 million today. One state park in Iowa now boasts more than ____ turkeys per square mile
+100
+10
+
+Animals: According to zoology experts, there is no real difference between doves and ____. The choice of name rests almost altogether on custom and geography, although the smaller of the species is, more often than not, called a dove
+Pigeons
+10
+
+Animals: Ad?lie ____ employ yawning as part of their courtship ritual
+Penguins
+10
+
+Animals: Adult electric eels 5ft to 7ft long produce enough electricity ____ 600 volts ____ to stun a ____
+Horse
+10
+
+Animals: Adult polar bears usually eat just the skin and blubber of a seal. They leave the meat for cubs and scavengers. One seal will sustain an adult bear for ____
+11 days
+10
+
+Animals: After mating which aptly named spider devours its partner?
+The Black Widow
+10
+
+Animals: After which marine animal is L'Anse aux Meadows in Newfoundland named?
+Jellyfish
+10
+
+Animals: All cows are females; the males are called ____
+Bulls
+10
+
+Animals: All mammals have ____
+Tongues
+10
+
+Animals: All porcupines float in ____
+Water
+10
+
+Animals: Alligators and ____ have something in common, at least auditorily. They can hear notes only up to 4,000 vibrations a second
+Old people
+10
+
+Animals: Almost half the pigs in the world are kept by farmers in ____
+China
+10
+
+Animals: Alphabetically, which animal comes first in the Chinese horoscope?
+Boar
+10
+
+Animals: Alphabetically, which animal comes last in the Chinese horoscope?
+Tiger
+10
+
+Animals: Although beavers live near rivers, streams, and lakes - they do not eat fish. Beavers eat only plants. They eat poplar trees, carrots, cattail, mushrooms, potatoes, berries, water plants, swamp wood, and fruit. Soft ____ is the main food for a beaver
+Bark
+10
+
+Animals: Although manatees are excellent ____, the deepest that one has been observed diving is 33 feet. Typically, the large, gentle creatures feed no deeper than about ten feet below the surface of the water
+Swimmers
+10
+
+Animals: Americans consume more than 353 million pounds of turkey during National Turkey Lovers' Month (June). By comparison, more than 675 million pounds of turkey will be consumed at ____
+Thanksgiving
+10
+
+Animals: An ____ can go through 2,000 to 3,000 teeth in a lifetime
+Alligator
+10
+
+Animals: An ____ egg can make eleven-and-a-half omelets
+Ostrich
+10
+
+Animals: An ____ is nearly 6 feet long, yet its mouth is only an inch wide
+Anteater
+10
+
+Animals: An ____ may weigh as much as 300 pounds. Its intestinal tract is 45 feet long
+Ostrich
+10
+
+Animals: An ____, despite its ponderous appearance, can reach speeds up to 25 miles per hours on an open stretch
+Elephant
+10
+
+Animals: An abalone is what kind of animal?
+Marine snail
+10
+
+Animals: An adult lion's roar can be heard up to five miles away, and warns off intruders or reunites scattered members of the ____
+Pride
+10
+
+Animals: An adult walrus typically eats about 3,000 ____ per day
+Clams
+10
+
+Animals: An alpaca is sheared only once every two years and yields only about 5 or 6 pounds of wool at each shearing. Because the yield is so small and the material so desirable, alpaca wool is ____
+Very expensive
+10
+
+Animals: An animal is a fish if it has ____
+Gill
+10
+
+Animals: An aquatic beaver like rodent native to south America but which has become naturalised in parts of europe?
+Coypu
+10
+
+Animals: An average-size ____ weighs about 150 pounds
+Aardvark
+10
+
+Animals: An eagle can attack, kill, and carry away an animal as large as a young deer. The Harpy eagle of South America feed on ____
+Monkeys
+10
+
+Animals: An earthworm has how many hearts?
+5
+10
+
+Animals: An elephant may consume 500 pounds of hay and 60 gallons of water in a ____
+Single day
+10
+
+Animals: An extinct species of ____ had a head the size of a Shetland pony's and reached a height of more than ten feet
+Kangaroo
+10
+
+Animals: An octopus has how many hearts?
+3
+10
+
+Animals: An ostrich's eye is bigger than its ____
+Brain
+10
+
+Animals: An ox is a castrated bull. A mule is a sterile cross between a male ass and a ____
+Female horse
+10
+
+Animals living in what type of habitat are arboreal animals?
+In or amongst trees
+10
+
+Animals that once existed and exist no more, are called ____
+Extinct
+10
+
+Animals without backbones are called what?
+Invertebrates
+10
+
+Animals: What do you call a group of this animal- larks called?
+Exaltation
+10
+
+Animals: What do you call a group of this animal- peacocks called?
+Muster
+10
+
+Animals: What do you call a group of this animal- whales called?
+A pod
+10
+
+Animals: Another name for a German Shepherd?
+Alsatian
+10
+
+Animals: Another name for an Alsatian dog?
+German shepherd
+10
+
+Animals: Antlers and horns are not the same. Horns grow throughout an animal's life and are found on both the male and female of a species. Antlers, composed of a different chemical substance, are shed ____
+Every year
+10
+
+Animals: Any of as many as 50,000 marine, freshwater, & terrestrial species of mollusk?
+Snail
+10
+
+Animals: Arabian horses have one less vertebra in their backbones than other ____
+Horses
+10
+
+Animals: Arctic terns found in North America and the Arctic migrate each year as far south as Antarctica and back, a round trip of over 18,000 miles. Theirs is probably the longest ____
+Migratory flight
+10
+
+Animals: are the only truly social cat species, and usually every female in a pride, ranging from 5 to 30 individuals, is closely related?
+Lions
+10
+
+Animals: As a rule, many birds generally lay fewer eggs in a clutch in the ____, where the amount of daylight is shorter than in northern latitudes. It is in the northern reaches of the world that more summer food for birds is available as a result of the longer days
+Tropics
+10
+
+Animals: As what is a camelopard also known?
+Giraffe
+10
+
+Animals: As what is a giraffe also known?
+Camelopard
+10
+
+Animals: As what is a moose also known?
+Algonquin
+10
+
+Animals: As what is an algonquin more commonaly known?
+Moose
+10
+
+Animals: At a length of 150cm (59 inches), this bird is the Largest Bird of Prey?
+Himalayan Griffon Vulture
+10
+
+Animals: At birth, a ____ is smaller than a mouse and weighs about four ounces
+Panda
+10
+
+Animals: At birth, baby ____ are only about an inch long - no bigger than a large waterbug or a queen bee
+Kangaroos
+10
+
+Animals: At birth, the white whale is ____
+Black
+10
+
+Animals: At seven inches long, the Wilson's storm petrel is the smallest bird to breed on the ____
+Antarctic continent
+10
+
+Animals: At what age does a filly become a mare?
+Five
+10
+
+Animals: Atlantic ____ are able to leap 15 feet high
+Salmon
+10
+
+Animals: Australia has almost how many species of spiders?
+2,000
+10
+
+Animals: Australia's ____ is the world's most dangerous jellyfish. Its toxin is more potent than cobra venom and can kill a person in minutes
+Box jelly
+10
+
+Animals: Australian egg laying mammal with webbed feet?
+Duck-billed platypus
+10
+
+Animals: Australian termites have been known to build mounds ____ feet high
+Twenty
+10
+
+Animals: Australian termites have been known to build mounds at least ____ feet wide
+100
+10
+
+Animals: Baby beavers are called kits or ____
+Kittens
+10
+
+Animals: Baby eels are?
+Elvers
+10
+
+Animals: Baby mink are born blind and remain sightless for a ____
+Month
+10
+
+Animals: Baby opossums - upon birth when they move to the mother's pouch - are smaller than honeybees. An entire litter can fit in a ____
+Teaspoon
+10
+
+Animals: Baby rattlesnakes are born in August and ____
+September
+10
+
+Animals: Baby rattlesnakes are born without ____
+Rattles
+10
+
+Animals: Baby robins eat ____ feet of earthworms every day
+Fourteen
+10
+
+Animals: Back of horse's leg where hair grows above hoof?
+Fetlock
+10
+
+Animals: Bactrian camels have survived in a land with no water in an area used for nuclear testing. Their numbers, however, are falling dramatically as humans encroach farther and farther into China's ____ Desert
+Gobi
+10
+
+Animals: Bactrian or dromedary?
+Camel
+10
+
+Animals: Bald eagles are not bald. The top of their head is covered with slicked-down white feathers; from a distance, they appear ____
+Hairless
+10
+
+Animals: Basking, nurse and whale are all types of which animal?
+Shark
+10
+
+Animals: Bats always turn ____ when exiting a cave
+Left
+10
+
+Animals: Bats are second largest order of mammals, with about ____ species
+950
+10
+
+Animals: Because birds carrying messages were often killed in flight by hawks, medieval Arabs made a habit of sending important messages ____
+Twice
+10
+
+Animals: Because it is continually losing body heat, the ____ must keep moving to stay warm. If inactive for more than a few hours, the animal will lose enough body heat to freeze to death
+Shrew
+10
+
+Animals: Because its eyeball is fixed, the ____ must move its huge body to shift its line of sight
+Whale
+10
+
+Animals: Because its tongue is too short for its beak, the ____ must juggle its food before swallowing it
+Toucan
+10
+
+Animals: Because of the giant panda's large size and the small size of their offspring, it is difficult to tell when a panda is ____
+Pregnant
+10
+
+Animals: Because of their acute sense of smell, dogs are trained to sniff out everything from drugs to bombs to iron ore. In Ontario, Canada, instruments couldn't locate where natural gas was escaping from a pipeline buried 18 feet underground. Trained ____ were brought in. The dogs worked in sub-zero temperatures and covered nearly 100 miles of frozen ground, ultimately finding more than 150 gas leaks
+German shepherds
+10
+
+Animals: Because the natural habitat of ____ is of little use to man - the alkaline African lake waters support few fish and cannot be used for human consumption or irrigation - and also because their resting areas are typically inaccessible, the birds are rarely disturbed, unlike other African wild birds
+Flamingos
+10
+
+Animals: Bees have ____ eyes
+Five
+10
+
+Animals: Between the mid-1860's and 1883, the ____ population in North America was reduced from an estimated 13 million to a few hundred
+Bison
+10
+
+Animals: Biology: Spiders' webs are a traditional natural ____, when applied to a cut they quickly stop the flow of blood
+Clotting agent
+10
+
+Animals: Bird droppings are a chief export of Nauru, an island nation in the ____
+Western pacific
+10
+
+Animals: Bird with characteristic cry and the habit of laying eggs in other birds nests?
+Cuckoo
+10
+
+Animals: Birds do not sing because they are happy. It is a ____
+Territorial behavior
+10
+
+Animals: Birds with the Largest Wingspan, 1st place goes to?
+Great White Pelican
+10
+
+Animals: Birds with the Largest Wingspan, 2nd place goes to?
+Wandering Albatross
+10
+
+Animals: Birds with the Largest Wingspan, 3rd place goes to?
+Andean Condor
+10
+
+Animals: Birds?
+Bluejay
+10
+
+Animals: Black and white seabird with small wings?
+Auk
+10
+
+Animals: Blondie's dog?
+Daisy
+10
+
+Animals: Boston butt, jowl and picnic ham are all parts of which animal?
+Pig
+10
+
+Animals: Bovine refers to what kind of animal?
+Cattle
+10
+
+Animals: Brachiosaurus had a ____ the size of a pickup truck
+Heart
+10
+
+Animals: Breed of dog that Lassie is?
+Collie
+10
+
+Animals: Budgerigar is another name for what kind of bird?
+Parakeet
+10
+
+Animals: Bull giraffes forage higher in trees than cow giraffes which reduces food competition between the sexes. Long-legged giraffes walk with the limbs on one side of the body lifted at the same time. This gait is called a pace and allows a longer stride which saves ____
+Steps and energy
+10
+
+Animals: Butterflies taste with their ____ feet
+Hind
+10
+
+Animals: Butterflies taste with their?
+Feet
+10
+
+Animals: By age 6 months, the voracious ____ will have increased its 3-pound birth weight by 7,000 percent
+Pig
+10
+
+Animals: By what name is the bird Pica Pica better known?
+Magpie
+10
+
+Animals: By what name is the Tibetan Lion Dog better known?
+Shih Tzu
+10
+
+Animals: Camel milk is the only milk that doesn't curdle when ____
+Boiled
+10
+
+Animals: Camel's milk does not ____
+Curdle
+10
+
+Animals: Camels are born without?
+Humps
+10
+
+Animals: Camels have three ____ to protect themselves from blowing sand
+Eyelids
+10
+
+Animals: Camels were used as pack animals in ____ and Arizona as late as 1870
+Nevada
+10
+
+Animals: Can a bat stand up?
+No
+10
+
+Animals: Can a platypus see under water?
+No
+10
+
+Animals: Can gorillas swim?
+No
+10
+
+Animals: Can iguanas blink?
+No
+10
+
+Animals: Canned herring were dubbed ____ because the canning process was first developed in Sardinia, Italy
+Sardines
+10
+
+Animals: Carnivorous animals will not eat another animal that has been hit by a ____ strike
+Lightning
+10
+
+Animals: Carnivorous mammal, native to the northern regions of North America, Europe, & Asia, whose habits are much like those of the badger?
+Wolverine
+10
+
+Animals: Cashmere is sourced from which animal?
+Goat
+10
+
+Animals: Cat's ____ glows under a black-light
+Urine
+10
+
+Animals: Cat's can't taste ____
+Sweets
+10
+
+Animals: Cat's urine glows under a ____ light
+Black
+10
+
+Animals: Catfish have how many taste buds?
+100,000
+10
+
+Animals: Catnip can affect lions and tigers as well as house cats. It excites them because it contains a chemical that resembles an excretion of the dominant female's ____
+Urine
+10
+
+Animals: Cats have amazing hearing ability. A cat's ear has ____ muscles that control the outer ear (by comparison, human ears only have six muscles). These muscles rotate 180 degrees, so the cat can hear in all directions without moving its head
+Thirty
+10
+
+Animals: Cats have more than one hundred vocal sounds, while dogs only have about ____
+Ten
+10
+
+Animals: Cats have over ____ vocal sounds, while dogs only have about ten
+100
+10
+
+Animals: Cats have over one hundred vocal sounds, dogs only have about?
+-- Answer metadata begin
+{
+    "answers": ["Ten", "10"]
+}
+-- Answer metadata end
+10
+
+Animals: Cattle branding in the United States did not originate in the West. It began in ____ in the mid-19th century, when farmers were required by law to mark all their pigs
+Connecticut
+10
+
+Animals: Cattle branding was practiced 4,000 years ago. Old tomb paintings show ____ branding their fat, spotted cattle
+Egyptians
+10
+
+Animals: Celeste was the wife of which fictional animal?
+Babar the Elephant
+10
+
+Animals: Certain ____ can be frozen solid then thawed, & continue living
+Frogs
+10
+
+Animals: Certain ____ can be frozen solid then thawed, and continue living
+Frogs
+10
+
+Animals: Certain ____ emit a light so penetrating that it can pass through flesh and wood
+Fireflies
+10
+
+Animals: Certain birds of prey (the African serpent eagle and the American kestrel, for example) have ____ acuity 2.4 to 2.6 times greater than humans. They can see a 1 mm long insect from a treetop 18 meters above ground
+Visual
+10
+
+Animals: Certain fireflies emit a light so penetrating that it can pass through ____ and wood
+Flesh
+10
+
+Animals: Certain fireflies emit a light so penetrating that it can pass through flesh and____
+Wood
+10
+
+Animals: Certain species of male butterflies produce scents that serve in attracting females during____
+Courtship
+10
+
+Animals: City ____ will eat just about anything, and often, it's the junk food that people offer them that they prefer, like Cracker Jack peanuts. Many naturalists have concluded that a peanut diet is harmful to squirrels: it seems to result in a weakening of eyesight and a thinning of the animal's pelt
+Squirrels
+10
+
+Animals: Clams have a row of ____ around their shells
+Eyes
+10
+
+Animals: Collective term for slender, threadlike outgrowths of the epidermis of mammals, forming the characteristic covering of those mammals?
+Hair
+10
+
+Animals: Colobus, vervet and mangabey are types of which animal?
+Monkey
+10
+
+Animals: Common name applied generally to certain members of a family of relatively small salamanders, most of which spend at least part of their lives in water?
+Newt
+10
+
+Animals: Common name applied to birds of about 14 genera of the pheasant family?
+Partridge
+10
+
+Animals: Common name applied to certain large African monkeys & sometimes to the closely related gelada?
+Baboon
+10
+
+Animals: Common name applied to most species of hymenopteran insects (hymenoptera), except bees & ants?
+Wasp
+10
+
+Animals: Common name for a carnivore now widespread in North America & closely related to the wolf (dog family)?
+Coyote
+10
+
+Animals: Communication within the prairie dog community is crucial to the creatures' survival. An appointed sentry, spotting a predator, will give a distinctive warning cry, which instantly sends all others grabbing up babies and scurrying to the safety of their burrows. An all-clear call later announces that danger is passed. Experts are fascinated by the prairie dogs' ____
+Cooperative system
+10
+
+Animals: Contrary to popular belief, dogs do not sweat by salivating. They sweat through the____
+Pads of their feet
+10
+
+Animals: Coral and algae have what kind of relationship?
+Symbiotic
+10
+
+Animals: Cougars can kill animals ____ times their size
+Eight
+10
+
+Animals: Cows clean their noses with their ____
+Tongue
+10
+
+Animals: Cows have four stomachs. Often, when a calf is born, the farmer will make it swallow a magnet. This is to attract the various nails, staples, bits of wire, and so on, that the cow may ingest while grazing. This odd hunger is known as ____
+Hardware disease
+10
+
+Animals: Cows provide 90 percent of the world's ____
+Milk
+10
+
+Animals: Coyotes are extremely loyal to their mates. If one is caught in a trap, the other will bring small game for it to eat; it will soak itself in a river to allow its thirsty mate to chew on its damp fur for water. It has been documented that the free coyote will stay with its captive partner until ____
+Death
+10
+
+Animals: Crabs and other crustaceans can escape danger by simply discarding an injured or trapped ____
+Limb
+10
+
+Animals: Creature of which the echida is an example?
+Anteater
+10
+
+Animals: Crocodiles are ____ blind
+Colour
+10
+
+Animals: Crocodiles carry their ____ in their mouths
+Young
+10
+
+Animals: Crocodiles swallow ____ to help them dive deeper
+Stones
+10
+
+Animals: Cross between a collie and a greyhound?
+Lurcher
+10
+
+Animals: Daddy Long Legs is the common name for which fly?
+Crane Fly
+10
+
+Animals: Dan dan is the only panda in captivity with these two fur colorings?
+Brown and white
+10
+
+Animals: Dead sponges can resist bacterial decay for more than five years when submerged in ____
+Fresh water
+10
+
+Animals: Deer have no ____
+Gall bladders
+10
+
+Animals: Depending on the geographic region, about 30 to 60 percent of all animals brought in to animal shelters in the United States are ____
+Euthanized
+10
+
+Animals: Desert antelope that originally ranged from the western sahara and mauritania to egypt and the sudan?
+Addax
+10
+
+Animals: Despite man's fear and hatred of the wolf, it has not ever been proved that a non-rabid wolf ever attacked a ____
+Human
+10
+
+Animals: Despite the hump, a camels spine is?
+Straight
+10
+
+Animals: Despite their finickiness, an average cat consumes about 127,750 calories a year, nearly 28 times their own weight in food and the same amount again in liquids. In case you were wondering, cats cannot survive on a ____
+Vegetarian diet
+10
+
+Animals: Destructive insect related to the grasshopper?
+Locust
+10
+
+Animals: Developed in Egypt about 5,000 years ago, the greyhound breed was known before the ninth century in England, where it was bred by aristocrats to hunt such small game as hares. Today the dog is widely used in ____
+Racing
+10
+
+Animals: dima this type of animal, was found perfectly preserved in siberia in 1977?
+Woolly mammoth
+10
+
+Animals: Dinosaurs lived during this era, the age of reptiles?
+Mesozoic era
+10
+
+Animals: Dinosaurs lived in the Mesozoic Era, which is divided into three periods Two of these are Jurassic and Cretaceous What is the third?
+Triassic
+10
+
+Animals: Dinosaurs went extinct about 65 million years ago, after living on Earth for about ____ million years
+165
+10
+
+Animals: Do bumblebees have tongues?
+Yes
+10
+
+Animals: Do chimpanzees have tails?
+No
+10
+
+Animals: Do crocodiles 'cry' salty tears?
+Yes
+10
+
+Animals: Do fish have ears?
+Yes
+10
+
+Animals: Do frogs or toads move faster?
+Frogs
+10
+
+Animals: Do mosquitoes have teeth?
+Yes
+10
+
+Animals: Do sea gulls drink sea water?
+Yes
+10
+
+Animals: Do snails have teeth?
+Yes
+10
+
+Animals: Do the bones of a pigeon weigh more or less than its feathers?
+Less
+10
+
+Animals: Does a wild rabbit live 10, 15 or 20 years?
+10
+10
+
+Animals: Dogs bark. What do donkeys do?
+Bray
+10
+
+Animals: Dogs that do not tolerate small children well are the St. Bernard, the Old English sheep dog, the Alaskan malamute, the bull terrier, and the toy ____
+Poodle
+10
+
+Animals: Domesticated ____ (farm-raised) cannot fly. Wild ____ can fly for short distances at up to 55 miles per hour. Wild ____ are also fast on the ground, running at speeds of up to 30 miles per hour
+Turkeys
+10
+
+Animals: Ducks will lay eggs only in the ____
+Early morning
+10
+
+Animals: Due to a retinal adaptation that reflects light back to the retina, the night vision of tigers is six times better than that of ____
+Humans
+10
+
+Animals: During it's lifetime an ____ changes its sex from male to female and back several times
+Oyster
+10
+
+Animals: During the mating season, male ____ bristle their quills at each other and chatter their teeth in rage before attacking. All ____ at this time become very vocal: grunting, whining, chattering, even barking and mewing at each other
+Porcupines
+10
+
+Animals: Each day, 100 or more whales are killed by ____
+Fishermen
+10
+
+Animals: Earthworms have ____ hearts
+Five
+10
+
+Animals: Elephant tusks grow throughout an elephant's life and can weigh more than 200 pounds. Among Asian elephants, only the males have tusks. Both sexes of ____ elephants have tusks
+African
+10
+
+Animals: Elephants are covered with ____. Although it is not apparent from a distance, at close range, one can discern a thin coat of light ____s covering practically every part of an elephant's body
+Hair
+10
+
+Animals: Elephants perform greeting ceremonies when a member of the group returns after a long time away. The welcoming animals spin around, flap their ears, and ____
+Trumpet
+10
+
+Animals: Elephants, lions, and camels roamed ____ 12,000 years ago
+Alaska
+10
+
+Animals: Ergonomic waterbeds are the latest must-have on the bovine circuit. The beds, listed at $175 each, are said to enhance cattle health by reducing ____
+Joint damage
+10
+
+Animals: Eskimos call what kind of creature a nanook?
+Polar Bear
+10
+
+Animals: Every ____, there is a peak in Canada wildlife population, especially among the muskrats, red fox, skunks, mink, lynx, and rabbits. The population of grasshoppers of the world tends to rise and fall rhythmically in 9.2-year cycles
+9.6 years
+10
+
+Animals: Every bird must eat at least half its own weight in food each day to survive. Young birds need even more. A young robin, for example, eats as much as 14 feet of ____ a day
+Earthworms
+10
+
+Animals: Every hour, nearly 12,500 puppies are born in the ____
+United states
+10
+
+Animals: Everyone knows you can call a group of fish a school, but what else can you call it?
+Drought
+10
+
+Animals: Excluding man, what is the longest-lived land mammal?
+Elephant
+10
+
+Animals: Extinct bird of Mauritius?
+Dodo
+10
+
+Animals: Fandible, lateral line, and dorsal fin are parts of a(n) ____
+Fish
+10
+
+Animals: Fastest bird (self flight)?
+Swift
+10
+
+Animals: February 18, 1930 marks the first flight by a ____ in an airplane
+Cow
+10
+
+Animals: February is the mating month for ____
+Gray whales
+10
+
+Animals: Fish are the only vertebrates that outnumber?
+Birds
+10
+
+Animals: Fish get oxygen through which organ?
+Gills
+10
+
+Animals: Fish travel in schools, whales travel in pods or ____
+Gams
+10
+
+Animals: Fish with long snakelike bodies, smooth slimey skin and reduced fins?
+Eels
+10
+
+Animals: Fish: how many eggs can a bluegill lay?
+40,000
+10
+
+Animals: Fish: what is lepomis humilis?
+Orange spotted sunfish
+10
+
+Animals: Fish: what is morone mississippiensis?
+Yellow bass
+10
+
+Animals: Fish: what is pomoxis nigromacultus?
+Black crappie
+10
+
+Animals: Fishes which, as adults, lie on one side of the body with both eyes on the opposite, upward-facing side of the head?
+Flatfish
+10
+
+Animals: Flamingoes live remarkably long lives - up to ____
+80 years
+10
+
+Animals: Flamingos are not naturally pink. They get their color from their food, tiny green algae that turn pink during ____
+Digestion
+10
+
+Animals: Flatfishes form a unique and widespread group that includes about 130 American species, common in both the Atlantic and ____
+Pacific ocean
+10
+
+Animals: Fleas can accelerate ____ times faster than the space shuttle
+Fifty
+10
+
+Animals: Fly that bites cattle?
+Gadfly
+10
+
+Animals: Food for horses or cattle particularly straw or hay?
+Forage
+10
+
+Animals: For approximately how long is an ass pregnant?
+A year
+10
+
+Animals: For how long is an elephant pregnant?
+Two years
+10
+
+Animals: fourth stomach of a ruminant?
+Abomasum
+10
+
+Animals: Frogs never drink. They absorb water from their surroundings by ____
+Osmosis
+10
+
+Animals: From crocodile farms, Australia exports about 5,000 crocodile skins a year. Most go to Paris, where a crocodile purse can sell for more than ____
+$10,000
+10
+
+Animals: From which category of animal does the dik-dik come?
+Antelope
+10
+
+Animals: From which category of animal does the eland come?
+Antelope
+10
+
+Animals: From which category of animal does the impala come?
+Antelope
+10
+
+Animals: From which species is the London pigeon descended?
+Rock dove
+10
+
+Animals: from which species of goat is mohair obtained?
+Angora
+10
+
+Animals: Fur ____ get miserably sick when they're carried aboard ships
+Seals
+10
+
+Animals: Furry, omnivorous American mammals each with a ringed bushy tail and dark stripe across the face?
+Raccoons
+10
+
+Animals: Garter snakes, though reptiles, do not ____. They bear young, just as mammals do
+Lay eggs
+10
+
+Animals: Genuine ivory does not only come from elephants. It can come from the tusks of a boar or a ____
+Walrus
+10
+
+Animals: German shepherd dog?
+Alsatian
+10
+
+Animals: Gibbons live in family groups and communicate to others through high-pitched songs which can be heard for several miles. Songs are specific to each family and convey information such as location, temper, and social ____
+Position
+10
+
+Animals: Goats generally need their ____ trimmed once a month
+Hoofs
+10
+
+Animals: Goldfish have four color recepectors in their ____ compared to our three - the mantis shrimp has ten color receptors
+Eyes
+10
+
+Animals: Goldfish lose their color if they are kept in a dim light or they are placed in a body of running water, such as a stream. They remain gold when kept in a pond or in a bowl with adequate ____
+Illumination
+10
+
+Animals: Gophers are ____
+Hermits
+10
+
+Animals: Gorillas and ____ sleep about fourteen hours a day
+Cats
+10
+
+Animals: Gorillas do not know how to ____
+Swim
+10
+
+Animals: Gray ____ migrate 12,000 miles each year, farther than any other mammal
+Whales
+10
+
+Animals: Groups: A group of unicorns is called a ____. A group of kangaroos is called a mob. A group of whales is called a pod. A group of geese is called a gaggle. A group of owls is called a parliament. A group of ravens is an unkindness. A group of crows is a murder. A group of bears is called a sleuth. Twelve or more cows is called a flink
+Blessing
+10
+
+Animals: Guinea pigs were first domesticated by the ____, who used them for food, in sacrifices, and as household pets
+Incas
+10
+
+Animals: Hamadryas ____, in ancient Egypt, were believed to be companions and oracles of the god Thoth. They were given the honor of being mummified when they died
+Baboons
+10
+
+Animals: Hedgehog quills are not barbed or poisonous. Hedgehogs do apply a foamy, foul-tasting saliva to their quills, which protects the animals from ____
+Predators
+10
+
+Animals: Hens do not have to be impregnated to lay eggs. The ____ is necessary only to fertilize the egg
+Rooster
+10
+
+Animals: Hippopotamuses have killed more people in Africa than all the lions, elephants, and water buffalo combined, usually by ____
+Trampling
+10
+
+Animals: Honeybees have a type of ____ on their eyes
+Hair
+10
+
+Animals: Horned ____ eat ants. They wait in areas where ants are working and when one passes by, they flick out their tongue, catch their prey, and swallow without chewing. Apparently their digestive tract is immune to bites and stings
+Lizards
+10
+
+Animals: Horses shorter than 141/2 hands (58 inches) at the withers (top of the shoulders) are technically ponies. The ____, around 43 inches tall, is called a pony, not a miniature. Miniatures start 9 inches shorter, and prices go up as size goes down
+Shetland
+10
+
+Animals: How can you tell when a gorilla is angry? it ____
+Sticks its tongue out
+10
+
+Animals: How do bees communicate with each other?
+Dancing
+10
+
+Animals: How fast (mph) can a kangaroo hop?
+Forty
+10
+
+Animals: How long is a baby kangaroo at birth?
+One inch
+10
+
+Animals: How many hearts do earthworms have?
+Five
+10
+
+Animals: How many hours a day does a ferret sleep?
+Twenty
+10
+
+Animals: How many hours does an antelope sleep at night?
+One
+10
+
+Animals: How many humps does an African camel have?
+One
+10
+
+Animals: How many legs does a crab have?
+-- Answer metadata begin
+{
+    "answers": ["Ten", "10"]
+}
+-- Answer metadata end
+10
+
+Animals: How many teeth does a walrus have?
+Eighteen
+10
+
+Animals: How many tentacles does a squid have?
+-- Answer metadata begin
+{
+    "answers": ["Ten", "10"]
+}
+-- Answer metadata end
+10
+
+Animals: How many times can a bee sting?
+Once
+10
+
+Animals: How many times its own length can the average flea jump?
+150
+10
+
+Animals: How many types of panda are there?
+Two
+10
+
+Animals: Hummingbirds are the smallest birds - so tiny that one of their enemies is an insect, the ____
+Praying mantis
+10
+
+Animals: Hummingbirds cannot glide or soar as other bird do. They are the only bird that can ____
+Hover continuously
+10
+
+Animals: Humped ox of India, East asia and africa?
+Zebu
+10
+
+Animals: I will fend off anyone bad, I am mans best friend?
+Dog
+10
+
+Animals: If a robin's egg is put in vinegar for thirty days, what colour does it become?
+Yellow
+10
+
+Animals: If an animal is an operculate what characteristics does it have?
+Gills
+10
+
+Animals: If frightened or threatened, a mother rabbit may abandon, ignore, or ____
+Eat her young
+10
+
+Animals: If they are well treated, camels in captivity can live to the age of ____
+Fifty
+10
+
+Animals: Iguanas, ____ and Komodo dragons all have two penises
+Koalas
+10
+
+Animals: Iguanas, koalas and ____ dragons all have two penises
+Komodo
+10
+
+Animals: Iguanas, koalas and komodo dragons all have two ____
+Penises
+10
+
+Animals: Imperial, Buck, and Luna are types of ____
+Moth
+10
+
+Animals: In 1880, there were approximately 2 billion passenger pigeons in the United States. By 1914, the species was ____
+Extinct
+10
+
+Animals: In Alaska, it is legal to shoot ____. However, waking a sleeping bear for the purpose of taking a photograph is prohibited
+Bears
+10
+
+Animals: In ancient Rome, auburn-haired puppies were sacrificed to ensure a plentiful ____
+Corn crop
+10
+
+Animals: In England, the most commonly used guide dog for the blind is the Yellow ____
+Labrador retriever
+10
+
+Animals: In Korea, the deer is a symbol of long life, and is often portrayed in the company of ____
+Immortals
+10
+
+Animals: In Milwaukee during the 1900s, 12,500 horses in the city left an estimated 133 tons of ____ and urine on the streets per year
+Manure
+10
+
+Animals: In one year, hens in America lay enough eggs to encircle the globe a ____
+100 times
+10
+
+Animals: In Pakistan, goats are often sacrificed to improve the performance of the ____
+Stock market
+10
+
+Animals: In Peru, what animal provides 50% of all the protein eatin?
+The Guinea Pig
+10
+
+Animals: In Russia, dogs have been trained to sniff out ore deposits that contain ____
+Iron sulfides
+10
+
+Animals: In Thailand, what is the sacred animal?
+The white elephant
+10
+
+Animals: In the 19th Century what creatures were frequently used to bleed patients?
+Leeches
+10
+
+Animals: In the air, puffins are powerful flyers, beating their ____ 300 to 400 times a minute to achieve speeds up to 40 miles per hour (64 kph)
+Wings
+10
+
+Animals: In the air, puffins are powerful flyers, beating their wings 300 to 400 times a minute to achieve speeds up to ____ miles per hour
+-- Answer metadata begin
+{
+    "answers": ["Forty", "40"]
+}
+-- Answer metadata end
+10
+
+Animals: In the animal kingdom, the tiger is native to only one continent?
+Asia
+10
+
+Animals: In the Jungle Book, what kind of creature was Baloo?
+A bear
+10
+
+Animals: In the Lone Range, what was Tonto's horse's name?
+Scout
+10
+
+Animals: In Winnie the Pooh, what kind of animal is Eeyore?
+Donkey
+10
+
+Animals: Invertebrate with tufted gills living in burrows in muddy sand, often used as bait by fishermen?
+Lugworm
+10
+
+Animals: Is a jellyfish a polyp?
+Yes
+10
+
+Animals: Is a spider an insect?
+No
+10
+
+Animals: Is a whale a mammal or a fish?
+Mammal
+10
+
+Animals: It is estimated that a single toad may catch and eat as many as 10,000 insects in the course of a ____
+Summer
+10
+
+Animals: It is estimated that manatees live a maximum of 50 to 60 ____
+Years
+10
+
+Animals: It is the female ____ who does more than 90 percent of the hunting, while the male is afraid to risk his life, or simply prefers to rest
+Lion
+10
+
+Animals: It may take longer than two days for a chick to break out of its ____
+Shell
+10
+
+Animals: It seems to biologists that, unlike their humpback whale relatives whose underwater song evolves from year to year, killer whales retain individual ____ unchanged over long periods, possibly even for life
+Dialects
+10
+
+Animals: It takes a ____ approximately seven years to grow to be one pound
+Lobster
+10
+
+Animals: It takes about 50 hours for a snake to digest one ____
+Frog
+10
+
+Animals: It takes an average of 345 squirts to yield a gallon of milk from a cow's ____
+Udder
+10
+
+Animals: It takes approximately 69,000 venom extractions from the ____ to fill a 1-pint container
+Coral snake
+10
+
+Animals: It would require an average of 18 ____ to weigh in at 1 ounce
+Hummingbirds
+10
+
+Animals: Javelinas are free-ranging, yet territorial animals that travel in small herds. One of the reasons they travel in numbers is so they can huddle to stay warm - they don't handle cold well and can ____ to death quickly
+Freeze
+10
+
+Animals: Javelinas are very noisy animals among each other and squeal, snort, woof, and click their teeth to ____
+Communicate
+10
+
+Animals: Joint on a horses hind leg?
+Hock
+10
+
+Animals: Just like people, mother ____ often develop lifelong relationships with their offspring
+Chimpanzees
+10
+
+Animals: Kangaroo rats never drink ____. Like their relatives the pocket mice, they carry their own water source within them, producing fluids from the food they eat and the air they breathe
+Water
+10
+
+Animals: Kangaroos usually give birth to one young annually. The young kangaroo, or joey, is born alive at a very immature stage, when it is only about 2 cm long and weighs less than a ____
+Gram
+10
+
+Animals: Kittens are born both blind and deaf, but the vibration of their mother's purring is a physical signal that the kittens can feel - it acts like a ____, signaling them to nurse
+Homing device
+10
+
+Animals: Knife, Clown, and Pencil are types of ____
+Fish
+10
+
+Animals: Koalas and humans are the only animals with unique prints. Koala prints cannot be distinguished from human ____
+Fingerprints
+10
+
+Animals: Komodo dragons eat deer and wild ____
+Boar
+10
+
+Animals: Large Iguana - like reptiles peculiar to New Zealand?
+Tuatara
+10
+
+Animals: Large marine diving ducks with long narrow hooked bills with serrated edges?
+Mergansers
+10
+
+Animals: Large pachydermatous african and s asian animal, quadruped with horn or two horns on nose?
+Rhinoceros
+10
+
+Animals: Large wasp, Vespa crabro, capable of inflicting a severe sting?
+Hornet
+10
+
+Animals: Lemon sharks grow a new set of teeth every two weeks. They grow more than 24,000 new ____ every year
+Teeth
+10
+
+Animals: Llamas are reported to be inquisitive, friendly animals. A llama greeting is marked by softly blowing on each other. According to animal experts, a soft blow to a person is the llama's way of saying ____
+Hello
+10
+
+Animals: Long necked long legged wading bird?
+Heron
+10
+
+Animals: Lupine animal?
+Wolf
+10
+
+Animals: Lupus is the Latin name for what animal?
+Wolf
+10
+
+Animals: Macaws are the largest and most colorful species of the ____
+Parrot family
+10
+
+Animals: Mainly which creatures belong to the order arachnida?
+Spider
+10
+
+Animals: Male ____ have antlers 7 feet across. The antlers often weigh 60 pounds
+Moose
+10
+
+Animals: Male ____ lose the hair on their heads in the same manner men do
+Monkeys
+10
+
+Animals: Male ____ may have more than 100 wives and sometimes go three months without eating
+Sea lion
+10
+
+Animals: Male ____ will try to attract sex partners with orchid fragrance
+Bees
+10
+
+Animals: Male bees will try to attract sex partners with ____ fragrance
+Orchid
+10
+
+Animals: Male cats have ____ on their genitals, which cause the females to cry out in pain on withdrawal
+Barbs
+10
+
+Animals: Male cockatoos can be taught to speak, but females can only chirp and ____
+Sing
+10
+
+Animals: Male honey bee?
+Drone
+10
+
+Animals: Mallard ____ are sometimes built at a height of 40 feet above ground. Surprisingly, when leaving their nests for the first time, chicks are very rarely hurt due to falling to the ground
+Nests
+10
+
+Animals: manhar is the world's first gaur born to this type of animal?
+Cow
+10
+
+Animals: Many corals receive nourishment from algae which grow inside their ____
+Tissue
+10
+
+Animals: Many hamsters only ____ one eye at a time
+Blink
+10
+
+Animals: Many male fish blow bubbles when they want to?
+Copulate
+10
+
+Animals: Many seabirds that swallow fishes too large for immediate digestion go about with the esophagus filled. Apparently without discomfort, the tail of the fish sticks out of the ____
+Bird's mouth
+10
+
+Animals: Many sharks lay soft-shelled eggs but hammerheads give birth to live young that look like miniature versions of their parents. Young hammerheads are often born ____, with the tip of their hammerhead folded backward to make them more streamlined for birth
+Headfirst
+10
+
+Animals: Marie Antoinette's dog was a spaniel named ____
+Thisbe
+10
+
+Animals: Marine iguanas, saltwater crocodiles, sea snakes, and sea turtles are the only surviving seawater-adapted ____
+Reptiles
+10
+
+Animals: Maxillary palps, abdomen, and metathorax are parts of a(n) ____
+Insect
+10
+
+Animals: Merrythought is one of the popular names for which bony structure on a bird?
+Wishbone
+10
+
+Animals: Mice, whales, elephants, giraffes, and humans all have seven neck ____
+Vertebra
+10
+
+Animals: Michael Bond created what famous bear?
+Paddington Bear
+10
+
+Animals: Midges beat their wings about ____ time every second
+1,000
+10
+
+Animals: Migrating geese fly in a V-formation to save energy. A goose's wings churn the air and leave an air current behind. In the flying wedge, each bird is in position to get a lift from the current left by the bird ahead. It is easier going for all, except the leader. During a migration, geese are apt to take turns in the ____
+Lead position
+10
+
+Animals: Migratory bird with long wings and forked tail?
+Swallow
+10
+
+Animals: Milk delivered to the store today was in the cow ____
+Two days ago
+10
+
+Animals: Milk snakes lay about 13 eggs - in piles of animal ____
+Manure
+10
+
+Animals: Minnows have teeth in their ____
+Throat
+10
+
+Animals: Moby Dick was what color?
+White
+10
+
+Animals: Monkeys will not eat red meat or ____
+Butter
+10
+
+Animals: More ____ are raised in California than in any other state in the United States
+Turkeys
+10
+
+Animals: More people are killed in Africa by crocodiles than by ____
+Lions
+10
+
+Animals: More species of ____ live in a single tributary of the Amazon River than in all the rivers in North America combined
+Fish
+10
+
+Animals: More than one million stray dogs and over 500,000 stray cats live in the ____
+New york city
+10
+
+Animals: Mosquitoes are attracted to the color ____ twice as much as to any other color
+Blue
+10
+
+Animals: Mosquitos have____
+Teeth
+10
+
+Animals: Most ____ lived to be more than a hundred years old
+Dinosaurs
+10
+
+Animals: Most cows give more milk when they ____
+Listen to music
+10
+
+Animals: Most tropical marine fish could survive in a tank filled with ____
+Human blood
+10
+
+Animals: Most varieties of ____ can go an entire year without eating a single morsel of food
+Snake
+10
+
+Animals: Mother prairie dogs will nurse their young only while ____ in the safety of the burrow. If an infant tries to suckle above ground, the mother will slap it
+Underground
+10
+
+Animals: Mother-of-pearl is not always ____. It can be pink, blue, purple, gray, or even green. Nor is it produced only by the pearl oyster. The abalone and the pearl mussel both have shells that are lined with fine-quality mother-of-pearl
+White
+10
+
+Animals: Mountain ____ grow luxurious winter coats - more than three inches of cashmere-quality wool, overlaid with long hollow hairs. The hardy animals can endure winter temperatures as low as minus 50 degrees F, and powerful winds up to 100 miles per hour
+Goats
+10
+
+Animals: Mouse-like desert rodent with long hind legs?
+Gerbil
+10
+
+Animals: Mussels can thrive in ____ because of an inborn ability to purify bacteria, fungi, and viruses
+Polluted water
+10
+
+Animals: My babies weigh less than apples, I eat bamboo?
+Panda bear
+10
+
+Animals: N. American wild dog?
+Coyote
+10
+
+Animals: Name collectively applied to numerous species of a family of waterfowl?
+Duck
+10
+
+Animals: Name for a group of salmon?
+Bind
+10
+
+Animals: Name for the dirt covered clump of wool on a sheeps rear end (Nice!)?
+Daglock
+10
+
+Animals: Name given to young cows?
+Heifers
+10
+
+Animals: Name of the cloned sheep born in 1997?
+Dolly
+10
+
+Animals: name of the unicorn-like angora goat at marine world in redwood city, ca?
+Lancelot
+10
+
+Animals: name of which Russian explorer was given to the wild horse which he discovered in western Mongolia in the late 1870s?
+Nikolai przhevalski
+10
+
+Animals: Name one male fish that gives birth?
+Sea horse or pipe fish
+10
+
+Animals: Name some dinosaurs?
+Tyrannosaurus Rex
+10
+
+Animals: Name the carnivorous mammal related to the hyena?
+Aardwolf
+10
+
+Animals: Name the fastest land animal over a prolonged distance (1km plus)?
+Antelope
+10
+
+Animals: Name the heaviest breed of domestic dog?
+Bernard
+10
+
+Animals: Name the heaviest flying bird of prey?
+Condor
+10
+
+Animals: Name the largest living bird?
+Ostrich
+10
+
+Animals: Name the largest of the dinosaurs?
+Brachiosaurus
+10
+
+Animals: Name the largest web-footed bird?
+Albatross
+10
+
+Animals: Name the longest venomous snake?
+Cobra
+10
+
+Animals: Name the longest venomous snake?
+King cobra
+10
+
+Animals: Name the mammal living at the highest altitude?
+Yak
+10
+
+Animals: Name the most venomous spider?
+Black widow
+10
+
+Animals: Name the only animal whose main source of food is the porcupine?
+Fisher
+10
+
+Animals: Name the only native North American marsupial?
+Opossum
+10
+
+Animals: Name the slowest moving land mammal?
+Sloth
+10
+
+Animals: Name the smallest breed of dog?
+Chihuahua
+10
+
+Animals: Name the wild dogs of Australia?
+Dingo
+10
+
+Animals: Name the world's largest butterfly, with a wingspan of 280mm (11in)?
+Queen Alexandra's Birdwing
+10
+
+Animals: Name the world's largest moth, with a wingspan of 300mm (11.8in)?
+Atlas Moth
+10
+
+Animals: Names of the Ninja Turtles in alphabetical order?
+Donatello leonardo michelangelo raphael
+10
+
+Animals: names of the stages of life of a salmon?
+Egg
+10
+
+Animals: Native peoples of South America catch ____ and use their razor-sharp teeth to make tools and weapons
+Piranha
+10
+
+Animals: Ninety percent of all species that have become extinct have been ____
+Birds
+10
+
+Animals: Nocturnal burrowing animal with black and white striped head?
+Badger
+10
+
+Animals: Nocturnal mammal of southern Africa with a long extendible tongue?
+Aardvark
+10
+
+Animals: North American deer of the same species as the reindeer of Eurasia?
+Caribou
+10
+
+Animals: North American elk?
+Moose
+10
+
+Animals: Northern species of duck with soft feathers?
+Eider
+10
+
+Animals: Not all leeches are bloodsuckers. Many are predators which eat earthworms, etc. The nearest relatives of leeches are ____
+Earthworms
+10
+
+Animals: Observed. however, by 1910, it was extinct. what was this bird?
+Passenger
+10
+
+Animals: Octopi and squid have ____ hearts. Their main systemic heart pumps blood throughout the circulatory system, and two branchial hearts provide some additional push at each of the paired gills
+Three
+10
+
+Animals: Of all known forms of animals life ever to inhabit the Earth, only about ____ still exist today
+Ten percent
+10
+
+Animals: Of the 250-plus known species of shark in the world, only about 18 are known to be ____
+Dangerous to man
+10
+
+Animals: Of what are walrus tusks made?
+Ivory
+10
+
+Animals: Of what do earthworms have five?
+-- Answer metadata begin
+{
+    "answers": ["Hearts", "5"]
+}
+-- Answer metadata end
+10
+
+Animals: Off the coast of southern California, around 200 ____ still roam in Catalina Island's hinterlands, descendants of a few brought there in the 1920s for a movie and left there
+Bison
+10
+
+Animals: Oilbirds have a ____ sense shared among known birds only in Southeast Asia's swiftlets (although very common among bats). The oilbird is a cave dweller, and it bounces its echoing clicks from rock walls to help navigate in the dark vaults where they nest by the hundreds
+Sonar
+10
+
+Animals: Old World bird with plain brown plumage, inhabiting marshes and similar habitats?
+Reed Warbler
+10
+
+Animals: On a common lady bug, what color are the spots?
+Black
+10
+
+Animals: On a rabbit where would you find a scut?
+The tail
+10
+
+Animals: On the Baja coast, osprey couples return to the same nests year after year. These birds rebuild their old nest, carefully repairing any damage caused by winds, rain, and age. After years of rebuilding, some osprey nests can reach heights of ____
+Four feet
+10
+
+Animals: On the top of the Calcutta Cup what animal will you find?
+Elephant
+10
+
+Animals: On what do honeybees have a type of hair?
+Eyes
+10
+
+Animals: On which island off Iceland was the last known great auk killed in 1844?
+Ldey
+10
+
+Animals: One in ten Dalmatians is born ____, and the breed lacks the ability to process urine completely, so they need a special diet low in flesh protein
+Deaf
+10
+
+Animals: One Laysan ____, tracked by biologists at Wake Forest University, flew more than 24,843 miles in flights across the North Pacific to find food for its chick in just 90 days - a flight distance equivalent to circling the globe
+Albatross
+10
+
+Animals: One that feeds off the flesh of its own species?
+Cannibal
+10
+
+Animals: One way birds learn is by trial and error. Scientists have discovered that many of their learned motor patterns are linked to appetite. For instance, young doves must learn to drink water. The pecking of domestic chicks improves about 30 hours after hatching. They snatch up a grain with increased efficiency. Simple trial-and-error learning is also believed to be very important in birds' ____
+Nest-building
+10
+
+Animals: Only tom turkeys ____. Hen turkeys make a clicking noise
+Gobble
+10
+
+Animals: Organ that keeps a fish afloat?
+Swim bladder
+10
+
+Animals: Ostriches are such fast runners, they can outrun a horse. Male ostriches can ____
+Roar like a lion
+10
+
+Animals: Ostriches live about ____ years and can reproduce for 50 years
+75
+10
+
+Animals: Ostriches live about 75 years and can reproduce for ____
+Fifty years
+10
+
+Animals: Other than humans, black lemurs are the only primates that may have what?
+Blue eyes
+10
+
+Animals: Other than humans, which is the only animal that can get sunburned?
+Pig
+10
+
+Animals: Out of the 650 known species of leeches, Hirudo medicinalis is the most common used by ____
+Doctors
+10
+
+Animals: Pandas spend about 12 hours a day eating ____
+Bamboo
+10
+
+Animals: Parrots, most famous of all talking birds, rarely acquire a vocabulary of more than twenty words. However, Tymhoney Greys and African Greys have been known to carry vocabularies in excess of ____
+One hundred words
+10
+
+Animals: Part of the deer that Weineraner dogs are trained to attack?
+Genitals
+10
+
+Animals: Pigeons and hummingbirds have tiny magnetic particles in their heads that respond to the Earth's magnetic fields and are used for ____
+Navigation
+10
+
+Animals: Pigs are exceedingly loud creatures. A University of Illinois study measured average pig squeals that ranged from 100 to 115 decibels. The supersonic Concorde jet, by comparison, was originally banned from New York when its engines exceeded 112 decibels at ____
+Takeoff
+10
+
+Animals: Pigs, walruses, and light-colored horses can be ____
+Sunburned
+10
+
+Animals: Pink elephants? In regions of India where the soil is red, elephants take on a permanent pink tinge because they regularly spray dust over their bodies to protect themselves against ____
+Insects
+10
+
+Animals: Popular name for a family of about 19 species of birds allied to the herons & ibises?
+Stork
+10
+
+Animals: Prior to migration a ____ will consume the equivalent of up to 25 percent of its body weight per day, accumulating large amounts of fat. During the migration, geese may cover up to 600 miles per day. At the end of the migration, they often weigh less than before they started fattening up in preparation
+Goose
+10
+
+Animals: Puffinus puffinus, is the latin for which bird -hint, it is not the puffin!?
+Manx shearwater
+10
+
+Animals: Racehorses have been known to wear out ____ in one race
+New shoes
+10
+
+Animals: Relating to anthropoid apes?
+Simian
+10
+
+Animals: Reportedly, ____ mate for life
+Beavers
+10
+
+Animals: Researchers don't know why killer whales like to rub their sensitive stomachs on the bottom of shallow beaches, but they think it may be a form of ____
+Grooming
+10
+
+Animals: Scary Wild Animals?
+Bear
+10
+
+Animals: Scientists say that ____, unlike all other domestic animals, arrive at solutions by thinking them through. ____ can be - and have been - taught to accomplish almost any feat a dog can master, and usually in a shorter period of time
+Pigs
+10
+
+Animals: Scooby Doo is what kind of dog?
+Great Dane
+10
+
+Animals: sea eagle?
+Erne
+10
+
+Animals: Sea otters have ____ coats of fur
+Two
+10
+
+Animals: Several poison-dart frog species are bred at the National Aquarium in Baltimore. There, researchers gauge the toxicity of poisonous species by taste. No danger is posed, because frogs caught in the wild gradually become less poisonous, and captive offspring are nontoxic. The change may be due to diet. The frog's natural menu - mostly tropical ants and springtails - cannot be duplicated in a ____
+Terrarium
+10
+
+Animals: Shark's teeth are literally as hard as?
+Steel
+10
+
+Animals: Sharks and rays are the only animals known to man that cannot succumb to cancer. Scientists believe this is related to the fact that they have no bone - only?
+Cartilage
+10
+
+Animals: Sharks and rays are the only animals known to man that cannot succumb to which disease?
+Cancer
+10
+
+Animals: Sharks can be dangerous even before they are born. Scientist Stewart Springer was bitten by a sand tiger shark embryo while he was examining its ____
+Pregnant mother
+10
+
+Animals: Sharks can travel up to ____ miles per hour
+Forty
+10
+
+Animals: Short legged breed of Welsh dog?
+Corgi
+10
+
+Animals: Short legged long bodied dog?
+Dachshund
+10
+
+Animals: Shorthorn cattle were the first breed to have their own herdbook, in which county were they developed?
+Durham
+10
+
+Animals: Shrimps' hearts are in their?
+Heads
+10
+
+Animals: Sika, fallow, and Roe, are what types of animal?
+Deer
+10
+
+Animals: Since housecats are clean and their coats are dry and glossy, their fur easily becomes charged with ____. sparks can be seen if their fur is rubbed in the dark
+Electricity
+10
+
+Animals: Since white tigers have pigmented stripes and blue eyes, they are not ____
+Albinos
+10
+
+Animals: Sir Walter Raleigh's black greyhound was named ____
+Hamlet
+10
+
+Animals: Slugs have how many noses?
+Four
+10
+
+Animals: Small armoured animal able to walk under water?
+Armadillo
+10
+
+Animals: Small catarrhine monkey common in N India?
+Rhesus
+10
+
+Animals: Snails have ____. They are arranged in rows along the snail's tongue and are used like a file to saw or slice through the snail's foot
+Teeth
+10
+
+Animals: Snakes are reptiles. What are frogs?
+Amphibians
+10
+
+Animals: So that it can pull its lithe body into a tight, prickly little ball for defense, the hedgehog has a large muscle running along its ____
+Stomach
+10
+
+Animals: Some ____ pretend to be dead when captured, but quickly hop away when let go
+Bullfrogs
+10
+
+Animals: Some animals always grow new teeth to replace the old. Name one of them!?
+Crocodile
+10
+
+Animals: Some animals always grow new teeth to replace the old. Name one of them!?
+Shark
+10
+
+Animals: Some animals spend the winter in a sleep-like state known as ____
+Hibernation
+10
+
+Animals: Some more names for groups of animals... a bale of turtles, a clowder of cats, a charm of goldfinches, a gam of whales, a knot of toads, a ____ of tigers
+Streak
+10
+
+Animals: Some sloths, opossum, and armadillos spend up to 80 percent of their lives sleeping or ____
+Dozing
+10
+
+Animals: Some species of earthworms in ____ can measure more than ten feet in length
+Australia
+10
+
+Animals: Some species of freshwater eels migrate to the Sargasso Sea in the Atlantic Ocean to mate. After laying up to 20 million eggs, the female eel dies. The baby eels hatched from the eggs then make their way back to ____
+Fresh water
+10
+
+Animals: Some species of rain forest birds migrate every summer from South America to Canada to ____
+Breed
+10
+
+Animals: Sperm whale vomit & vital ingredient in many old perfumes?
+Ambergris
+10
+
+Animals: Stoats white winter fur?
+Ermine
+10
+
+Animals: Strange creatures, jellyfish are comprised mostly of water - more than 95 percent - and have no brain, heart, or bones, and no actual ____
+Eyes
+10
+
+Animals: Sue, the world's largest, most complete, and best preserved ____, made her grand debut to the public on May 17, 2000 at the Field Museum in Chicago, Illinois
+Tyrannosaurus rex
+10
+
+Animals: Sun, spectacled, brown and sloth are all types of what?
+Bear
+10
+
+Animals: Surviving all dangers, a wild ____ may live up to 20 years
+Cobra
+10
+
+Animals: Terrestrial gastropod mollusk, related to the snail, but with the shell represented by an internal horny plate overlying the respiratory cavity?
+Slug
+10
+
+Animals: Tha larva of which insect is the rat tailed maggot?
+Hoverfly
+10
+
+Animals: The ____ - a relative of the mole - is the smallest mammal in North America. It weighs 1/14 ounce - less than a dime
+Pigmy shrew
+10
+
+Animals: The ____ bird can fly at a speed of 260 miles per hour
+Frigate
+10
+
+Animals: The ____ can travel up to 45 miles per hour, whereas the rabbit can achieve an average speed of just 35 miles per hour
+Hare
+10
+
+Animals: The ____ can travel up to 9 miles per hour
+Chicken
+10
+
+Animals: The ____ continually grows new sets of teeth to replace old teeth. It also cannot move its tongue. The tongue is rooted to the base of its mouth
+Crocodile
+10
+
+Animals: The ____ does not chew its food, but swallows it whole. It carries several pounds of small stones in its stomach to aid in grinding up and digesting its nourishment
+Crocodile
+10
+
+Animals: The ____ eagle of Africa hunts over a territory of 250 square miles a day
+Bateleur
+10
+
+Animals: The ____ eagle, swooping at better than 100 miles per hour, can brake to a halt in 20 feet
+African
+10
+
+Animals: The ____ eats nothing but eucalyptus leaves
+Koala
+10
+
+Animals: The ____ has green bones
+Garfish
+10
+
+Animals: The ____ has only two toes, unlike most birds, which have three or four
+Ostrich
+10
+
+Animals: The ____ is one of the few land animals that does not need water to supplement its food
+Koala
+10
+
+Animals: The ____ is the first bird mentioned in the Bible. It was sent out by Noah to see if the waters had abated
+Raven
+10
+
+Animals: The ____ is the only bird that can swim, but not fly. It is also the only bird that walks upright
+Penguin
+10
+
+Animals: The ____ of a really famished camel may flop over and hang down the side of the body as the fat is used up
+Hump
+10
+
+Animals: The ____ snake found in the state of Arizona is not poisonous, but when frightened, it may hiss loudly and vibrate its tail like a rattlesnake
+Gopher
+10
+
+Animals: The ____ whale is the mammal with the heaviest brain - about six times heavier than a human's
+Sperm
+10
+
+Animals: The ____, a small lizard generally measuring 6 or 7 inches, has a tongue several inches longer than its body. With a thrust of this remarkable appendage, it can catch insects some 10 inches away
+Chameleon
+10
+
+Animals: The ____, national bird of New Zealand, can't fly. It lives in a hole in the ground, is almost blind, and lays only one egg each year. Despite this, it has survived for more than 70 million years
+Kiwi
+10
+
+Animals: The ____, the unique member of the family dungongidae, is a large and long-lived marine mammal that may have contributed to the myth of mermaid sightings
+Dugong
+10
+
+Animals: The Ad?lie ____ bears the name of French explorer Dumont d'Urville's beloved wife
+Penguin
+10
+
+Animals: The Alaskan ____ is the largest deer of the New World. It attains a height at the withers in excess of 7 feet and, when fully grown, weighs up to 1,800 pounds
+Moose
+10
+
+Animals: The albatross drinks sea water. It has a special desalinization apparatus that strains out and excretes all excess ____
+Salt
+10
+
+Animals: The American ____ weighs approximately one pound when fully grown
+Crow
+10
+
+Animals: The American ____, with its eyes placed toward the top of its head, can see backward and upward, and forward and upward, with binocular vision and, laterally, almost 180 degrees with each eye
+Woodcock
+10
+
+Animals: The American opossum, a marsupial, bears its young just 12 to 13 days after conception. The Asiatic elephant takes 608 days to give birth, or just over ____
+20 months
+10
+
+Animals: The anaconda, one of the world's largest snakes, gives birth to its young instead of ____
+Laying eggs
+10
+
+Animals: The ancient nautilus is considered the most intelligent of the invertebrates; it is said to have been as intelligent as a ____
+Young cat
+10
+
+Animals: The animal responsible for the most human deaths world wide is the ____
+Mosquito
+10
+
+Animals: The animal with the largest brain in relation to its body is the?
+Ant
+10
+
+Animals: The armor of the ____ is not as tough as it appears. It is very pliable, much like a human fingernail
+Armadillo
+10
+
+Animals: The average ____ moves at a rate of approximately 0.000362005 miles per hour
+Snail
+10
+
+Animals: The average ____ weighs 14 pounds
+Fox
+10
+
+Animals: The average adult ____ pig weighs two pounds
+Guinea
+10
+
+Animals: The average adult ____ weighs 21 pounds
+Raccoon
+10
+
+Animals: The average adult male ____, the world's largest living bird, weighs up to 345 pounds
+Ostrich
+10
+
+Animals: The average capacity of a pelican's ____ is 12 quarts
+Pouch
+10
+
+Animals: The average cod deposits between 4 and 6 million eggs at a single ____
+Spawning
+10
+
+Animals: The average elephant produces 50 pounds of ____ each day
+Dung
+10
+
+Animals: The average giraffe's ____ is two or three times that of a healthy man
+Blood pressure
+10
+
+Animals: The average life expectancy of a leopard in captivity is ____
+Twelve years
+10
+
+Animals: The average life expectancy of a rhinoceros in captivity is ____
+Fifteen years
+10
+
+Animals: The average minimal speed of birds in order to remain aloft in flight is reported to be about 161/2 feet per second, or about ____ miles per hour
+Eleven
+10
+
+Animals: The average porcupine has more than 30,000 quills. Porcupines are excellent swimmers because their quills are hollow and serve as pontoons to keep them ____
+Afloat
+10
+
+Animals: The Bactrian camel is the only land mammal on Earth that can survive on ____
+Salt water
+10
+
+Animals: The basenji is a mid-sized dog with a silky copper coat. Although they are considered a barkless dog, they are known to ____ when they are happy
+Yodel
+10
+
+Animals: The bat is the only mammal that can ____
+Fly
+10
+
+Animals: The biggest frog is the appropriately named ____ frog (Conraua goliath) of Cameroon. They reach nearly 30 cm (a foot) and weigh as much as 3.3 kilograms
+Goliath
+10
+
+Animals: The bite of a leech is painless due to its own ____
+Anaesthetic
+10
+
+Animals: The black bear is not always black. It can be brown, cinnamon, ____, and sometimes a bluish color
+Yellow
+10
+
+Animals: The blow of a whale has a strong, foul odor. It apparently smells like a combination of spoiled fish and old oil. Because whales have such terrible breath, sailors believed at one time that a whiff of it could cause ____
+Brain disorders
+10
+
+Animals: The blubber of a male ____ is considered superior to that of the sperm whale for lubricating machinery
+Elephant seal
+10
+
+Animals: The blue whale is maintained by its blubber and can go up to half a year without ____
+Eating
+10
+
+Animals: The blue whale weighs as much as thirty elephants, and is as long as three ____
+Greyhound buses
+10
+
+Animals: The bluefin ____ swims with its mouth partly open, relying on ramjet ventilation, unlike slower fish, which force water through their gills to remove oxygen and release carbon dioxide. Since seawater contains only about 2.5 percent as much oxygen it needs from the volume of water flowing through its mouth, the bluefin has proportionately one of the largest gill areas of any fish
+Tuna
+10
+
+Animals: The bottle-nosed ____ can dive to a depth of 3,000 feet in two minutes
+Whale
+10
+
+Animals: The breed of the Thoroughbred horse is only about 300 years old, although horse racing has been popular in England since Roman times, and can be traced back to Central Asia among ____
+Prehistoric nomads
+10
+
+Animals: The cabbage moth is which colour?
+Brown
+10
+
+Animals: The Cairn terrier is great at catching ____
+Rats
+10
+
+Animals: The Camberwell beauty, what is this butterfly called in the USA?
+Mourning cloak
+10
+
+Animals: The cat was the symbol of liberty in ancient ____
+Rome
+10
+
+Animals: The cells which make up the antlers of a ____ are the fastest growing animal cells in nature
+Moose
+10
+
+Animals: The chameleon has a tongue that is 1.5 times the length of its ____
+Body
+10
+
+Animals: The Chinese, during the reign of Kublai Khan, used lions on hunting expeditions. They trained the big cats to pursue and drag down massive animals, from wild bulls to bear, and to stay with the kill until the ____
+Hunter arrived
+10
+
+Animals: The color of the blood of an ____ is bluish-green
+Octopus
+10
+
+Animals: The common carp lives up to 25 years in the wild, and up to 40 years in captivity. The durable fish can survive in waters up to 90 degrees F, and can even withstand ____ for short periods
+Freezing
+10
+
+Animals: The conception and birth of the armadillo are odd events. Although mating usually occurs in July, the embryos of the armadillo remain in a dormant state until November. Later in March, four young are born. Armadillos are the only mammals in which multiple young form from a single egg with any regularity. All four of the young, always of the same sex, are identical quadruplets and developed from the same egg. They even shared a single ____ while in the womb
+Placenta
+10
+
+Animals: The crayfish isn't a fish at all - it is related to the ____
+Lobster
+10
+
+Animals: The crocodile is a cannibal; it will occasionally eat other ____
+Crocodiles
+10
+
+Animals: The crocodile is surprisingly fast on land. If pursued by a crocodile, a person should run in a zigzag motion, for the crocodile has little or no ability to make sudden changes of ____
+Direction
+10
+
+Animals: The Dalmatian dog is named for the Dalmatian Coast of ____, where it is believed to have been originally bred
+Croatia
+10
+
+Animals: The digestive juices of crocodiles contain so much ____ that they have dissolved iron spearheads and 6-inch steel hooks that the crocodiles have swallowed
+Hydrochloric acid
+10
+
+Animals: The dog and the turkey were the only two domesticated animals in ancient ____
+Mexico
+10
+
+Animals: The dog fish is what type of fish?
+A shark
+10
+
+Animals: The domestic cat is the only species able to hold its tail vertically while walking. Wild cats hold their tail horizontally, or tucked between their legs while ____
+Walking
+10
+
+Animals: The duckbill platypus of Australia can store up to 600 worms in its large cheek ____
+Pouches
+10
+
+Animals: The ears of the Asiatic ____ are larger than those of other bear species
+Black bears
+10
+
+Animals: The Egyptian ____, a white bird about the size of a raven, throws stones with its beak to open ostrich eggs to eat. This bird is one of the very few animals that, like man, manipulates objects as tools
+Vulture
+10
+
+Animals: The electric eel is the most shocking animal on Earth - no other animal packs such a big charge. If attacking a large prey, a 9-foot-long eel can discharge about ____. One zap could stun a human. The larger the eel, the bigger the charge
+800 volts
+10
+
+Animals: The electric eel lives in the Amazon River and its tributaries in South America. The rivers churn up a lot of mud and the eels cannot see well in them. Two less powerful electric fish are the electric catfish and ray. Electric rays live in warm ocean water, and they can give off a charge of sufficient force to stun a human. The biggest electric ray, the Atlantic torpedo ray, can weigh ____ pounds
+200
+10
+
+Animals: The electric eel's shocking power is so great that it can overtake its victims while ____
+15 feet away
+10
+
+Animals: The electric organs in an electric eel make up four-fifths of its ____
+Body
+10
+
+Animals: The famous cow used as the corporate symbol on all Elmer's products is actually named ____, and she is the spouse of Elmer, the steer who the company is named after
+Elsie
+10
+
+Animals: The fastest animal an earth, if you try to get them to chase a mechanical rabbit, they will figure out to stop, face the other way & wait for the rabbit to lap?
+Cheetah
+10
+
+Animals: The fastest animal on four legs is the ____
+Cheetah
+10
+
+Animals: The fastest bird is a spine tailed swift. How fast can it fly (mph)?
+106
+10
+
+Animals: The fastest bird is the ____ ____ ____, clocked at speeds of up to 106 miles per hour
+Spine tailed swift
+10
+
+Animals: The fastest dog, the ____, can reach speeds of up to 45 miles per hour. The breed was known to exist in ancient Egypt more than 5,000 years ago
+Greyhound
+10
+
+Animals: The fastest of all fish in the sea is the ____, streaming forward at speeds near 68 miles per hour
+Swordfish
+10
+
+Animals: The favorite horses of both Alexander the Great (Bucephalos) and Julius Caesar both had atavistic mutations - extra toes. Horses normally have only one toe per foot, but are descended from horses with three or four toes on ____
+Each limb
+10
+
+Animals: The female ____ inseminates herself. At mating time, the male deposits a conical mass of jellylike substance containing the sperm. The female draws the jelly into herself, and in so doing, fertilizes her eggs
+Salamander
+10
+
+Animals: The female American Oyster lays an average of 500 million eggs per year. Usually only one oyster out of the bunch reaches ____
+Maturity
+10
+
+Animals: The female condor lays a single egg once every ____
+2 years
+10
+
+Animals: The female king crab incubates as many as 400,000 young for 11 months in a brood pouch under her ____
+Abdomen
+10
+
+Animals: The female knot-tying weaverbird will refuse to mate with a male who has built a shoddy nest. If spurned, the male must take the nest apart and completely rebuild it in order to win the ____ of the female
+Affections
+10
+
+Animals: The female pigeon cannot lay eggs if she is alone. In order for her ovaries to function, she must be able to see another pigeon. If no other pigeon is available, her own ____ in a mirror will suffice
+Reflection
+10
+
+Animals: The fins of which fish are made into a soup?
+Shark
+10
+
+Animals: The firefly depends on sight to find a ____
+Mate
+10
+
+Animals: The first ____ dragons to breed in the western world are at the National Zoo at the Smithsonian Institute in Washington, D.C
+Komodo
+10
+
+Animals: The first medical use of leeches dates back to approximately 2,500 years ago. The leech's saliva contains a property that acts as an anticoagulant for ____
+Human blood
+10
+
+Animals: The flamingoes of East Africa have few natural enemies. In general, the only predators an adult flamingo need fear are the fish eagle and the ____
+Marabou stork
+10
+
+Animals: The flounder swims ____
+Sideways
+10
+
+Animals: The flying ____ of Java and Malaysia is able to flatten itself out like a ribbon and sail like a glider from tree to tree
+Snake
+10
+
+Animals: The four stages in the life-cycle of an insect are: egg, adult, pupa, and ____
+Larva
+10
+
+Animals: The fur of the vicuna, a small member of the camel family which live in the Andes mountains of Peru, is so fine that each hair is less than two-thousandths of an inch. The animal was considered sacred by the Incas, and only royalty could wear its ____
+Fleece
+10
+
+Animals: The gastric juices of a snake can digest bones and teeth - but not ____
+Hair
+10
+
+Animals: The giant ____ is the largest creature without a backbone. It weighs up to 2.5 tons and grows up to 55 feet long. Each eye is a foot or more in diameter
+Squid
+10
+
+Animals: The giant African ____ grows to a foot long and reaches weights greater than a pound
+Snail
+10
+
+Animals: The giraffe's ____ is huge; it weighs 25 pounds, is 2 feet long, and has walls up to 3 inches thick
+Heart
+10
+
+Animals: The great horned owl can turn its head ____
+270 degrees
+10
+
+Animals: The grebe, an aquatic bird, has an effective means of escaping danger while protecting its young. At the first sign of danger, it will sink into the water until its back is level with the surface. This allows its offspring to swim over and quickly climb onto its back. The parent grebe then rises up to its swimming position and ferries the chicks across the water to ____
+Safety
+10
+
+Animals: The grizzly bear is capable of running as fast as the average ____
+Horse
+10
+
+Animals: The herdwick sheep is particularly found in which English national park?
+Lake district
+10
+
+Animals: The hides of mature female blue ____ are more than twice as thick as those of males, probably as a protection against courtship bites
+Sharks
+10
+
+Animals: The hippopotamus gives birth ____ and nurses its young in the river as well, although the young hippos must come up periodically for air
+Underwater
+10
+
+Animals: The hippopotamus has skin an inch-and-a-half thick, so solid that most ____ cannot penetrate it
+Bullets
+10
+
+Animals: The hippopotamus has the world's shortest ____
+Sperm
+10
+
+Animals: The hippopotamus is, next to the elephants, the heaviest of all land mammals. It may weigh as much as 8,000 pounds. It is also a close relative of the ____
+Pig
+10
+
+Animals: The Hirudo leech has three jaws with 100 teeth on each jaw - making 300 teeth in all. The ____ leech uses a different method of sucking blood. They insert a long proboscis into the victim as opposed to biting
+Amazon
+10
+
+Animals: The Hirudo leech lays its babies within a cocoon; the Amazon leech carries its babies on its ____ - sometimes as many as 300
+Stomach
+10
+
+Animals: The horned lizard of the American southwest may squirt a thin stream of ____ from the corners of its eyes when frightened
+Blood
+10
+
+Animals: The hum of a hummingbird comes from the super-fast beat of the wings. The smallest ones beat their wings the fastest - up to 80 times per second. Even the slower beat of bigger hummingbirds (20 times per second) is so fast you can only see a ____
+Blur
+10
+
+Animals: The hummingbird is the only bird that can ____
+Fly backwards
+10
+
+Animals: The hummingbird's tiny ____, 4.2% of its body weight, is proportionately the largest in the bird kingdom
+Brain
+10
+
+Animals: The individual hair of a chinchilla is so fine that ____of them equal the thickness of a single human hair
+500
+10
+
+Animals: The jackrabbit is not a rabbit; it is a ____
+Hare
+10
+
+Animals: The Jardine River in Australia's Cape York Peninsula is home to Crocodylus porosus, the saltwater or estuarine crocodile. It is the largest and perhaps most dangerous of all ____ species of crocodilians
+23
+10
+
+Animals: The king crab walks ____
+Diagonally
+10
+
+Animals: The kinkajou's tail is twice as long as its body. Every night, it wraps itself up in its tail and uses it as a ____
+Pillow
+10
+
+Animals: The largest bird egg in the world today is that of the ostrich. Ostrich eggs are from 6 to 8 inches long. Because of their size and the thickness of their shells, they take 40 minutes to ____
+Hard-boil
+10
+
+Animals: The largest Great White Shark ever caught measured 37 feet and weighed 24,000 pounds. It was found in a herring weir in New Brunswick in 1930. The harmless Whale Shark, holds the title of largest fish, with the record being a 59-footer captured in Thailand in ____
+1919
+10
+
+Animals: The largest jellyfish in the world has a bell that can reach 8 feet across and tentacles that extend over half the length of a ____
+Football field
+10
+
+Animals: The largest known egg ever laid by a creature was that of the extinct ____ of Madagascar. The egg was 9.5 inches long. It had a volume of 2.35 gallons
+Aepyornis
+10
+
+Animals: The largest order of mammals, with about 1,700 species, is ____. Bats are second with about 950 species
+Rodents
+10
+
+Animals: The largest species of seahorse measures ____
+Eight inches
+10
+
+Animals: The leech has 32 brains - 31 more than a ____
+Human
+10
+
+Animals: The leech will gorge itself up to ____ its body weight and then just fall off its victim
+Five times
+10
+
+Animals: The life expectancy of the average mockingbird is ____
+10 years
+10
+
+Animals: The llama belongs to what family to what family of animals?
+Camel
+10
+
+Animals: The longest beetle in the world is how long?
+Six inches
+10
+
+Animals: The lungfish can live out of water in a state of suspended animation for ____
+Three years
+10
+
+Animals: The majority of reptiles are oviparous. What does this mean?
+Egg laying
+10
+
+Animals: The majority of small toothed whales are called____
+Dolphins
+10
+
+Animals: The male ____ sheds its antlers every winter and grows a new set the following year
+Moose
+10
+
+Animals: The male ____ will mate for life, and if the female dies, he remains single for the rest of his life. However, if the male dies, the female will hook up with a new mate
+Fox
+10
+
+Animals: The male Californian sea-otter grips the nose of the female with his teeth during?
+Mating
+10
+
+Animals: The male house ____ builds several nests as part of his courtship ritual. Once the nests are completed, his potential bride looks them all over, then selects one as her preferred choice for the laying of her eggs
+Wren
+10
+
+Animals: The male seahorse, not the female, carries the ____ of the species. The female fills the male's brooch pouch with eggs, which remain in the swollen sac for a gestation period of eight to ten days
+Embryo
+10
+
+Animals: The maximum life span of ____ has been documented to be over 200 years in exceptional cases. The average life span of the large colorful fish, however, is 25 to 35 years
+Koi
+10
+
+Animals: The Mojave ground ____, found mainly in the American West, hibernates for two-thirds of every year
+Squirrel
+10
+
+Animals: The Mola Mola, or Ocean Sunfish, lays up to ____ eggs at one time
+5,000,000
+10
+
+Animals: The more that is learned about the ecological benefits of ____, the more home gardeners are going out of their way to entice these amazing winged mammals into their neighborhoods. ____ are voracious insect eaters, devouring as many as 600 bugs per hour for 4 to 6 hours a night. They can eat from one-half to three-quarters their weight per evening. ____ are also important plant pollinators, particularly in the southwestern U.S
+Bats
+10
+
+Animals: The most Asian elephants to be found in their natural habitat can be found in what country?
+India
+10
+
+Animals: The most carnivorous of all bears is the ____. Its diet consists almost entirely of seals and fish
+Polar bear
+10
+
+Animals: The most venomous of all snakes, known as the Inland Taipan, has enough venom in one bite to kill more than 200,000 ____
+Mice
+10
+
+Animals: The mouse is the most common mammal in the ____
+United states
+10
+
+Animals: The mudskipper is a fish that can actually ____
+Walk on land
+10
+
+Animals: The name of which breed of dog means badger dog in German?
+Dachshund
+10
+
+Animals: The nematode Caenorhabditis elegans ages the equivalent of 5 human years for every day they live, usually expiring after 14 days. However, when stressed, the worm goes into a state of suspended animation that can last for 2 months or more. the human equivalent would be to sleep for about ____
+200 years
+10
+
+Animals: The New Guinea Singing Dog's most unique characteristic is its dramatic ability to vary the pitch of its howl. They do not bark repetitively but have a complex vocal behavior, including yelps, whines, and single-note ____
+Howls
+10
+
+Animals: The Nile crocodile averages about 45 years in the wild, and may live up to 80 years in ____
+Captivity
+10
+
+Animals: The normal body temperature of the ____ horse is 101 degrees Fahrenheit (38 degrees Celsius)
+Clydesdale
+10
+
+Animals: The now-extinct ancestor of the horse, ____, had a short neck, a pug muzzle, and stood no higher than a medium-sized dog
+Eohippus
+10
+
+Animals: The Offspring of a male donkey and a female horse is called what?
+A mule
+10
+
+Animals: The only country in the world that has a Bill of Rights for Cows is ____
+India
+10
+
+Animals: The optimum depth of water in a birdbath, says the Audubon Society of America, is two and a half inches. Less water makes it difficult for birds to take a bath; more makes them ____
+Afraid
+10
+
+Animals: The owl is the only bird to drop its upper eyelid to wink. All other birds raise their lower ____
+Eyelids
+10
+
+Animals: The owl parrot can't fly, and builds its nest under tree ____
+Roots
+10
+
+Animals: The oyster is usually ____. It begins life as a male, then becomes a female, then changes back to being a male, then back to being female. It may go back and forth many times
+Ambisexual
+10
+
+Animals: The Ozark blind salamander begins life with eyes and plumelike gills. As the animal matures, its eyelids fuse together and the gills ____
+Disappear
+10
+
+Animals: The part of the foot of a horse between the fetlock and the hoof is the ____
+Pastern
+10
+
+Animals: The penculine ____ of Africa builds its home in such a sturdy manner that Masai tribesman use their nests for purses and carrying cases
+Titmouse
+10
+
+Animals: The poison-arrow frog has enough poison to kill about ____
+2,200 people
+10
+
+Animals: The process of a snake shedding its skin or a crustacean casting off its outer shell is called ____
+Ecdysis
+10
+
+Animals: The pronghorn ____ can run up to 61 miles per hour
+Antelope
+10
+
+Animals: The pronghorn ____ is the fastest mammal to be found in North America, and second only to the cheetah as the fastest mammal on the planet
+Antelope
+10
+
+Animals: The pupil of an octopus's eye is ____
+Rectangular
+10
+
+Animals: The rear portion of the head of a horse is called the ____
+Poll
+10
+
+Animals: The ring-tailed ____, a primate found only in Madagascar, meows like a cat
+Lemur
+10
+
+Animals: The ruby-throated hummingbird beats its wings at the incredibly rapid speed of 50 to 70 times a second. If a 170-pound man expended energy at the rate of the hummingbird, he would have to eat 285 pounds of hamburger or twice his weight in potatoes each day in order to maintain his weight. He would have to evaporate 100 pounds of perspiration per hour to keep his skin temperature below the ____
+Boiling point of water
+10
+
+Animals: The Rufous is the only species of hummingbird to nest in Alaska. They migrate 2,000 miles to Mexico each winter, and then back to Alaska in the ____
+Spring
+10
+
+Animals: The sea cucumber, a purplish-brown creature covered with ____, has a unique defense strategy. When attacked, it throws out sticky threads from its mouth, which entangles its enemy. The sea cucumber can then quickly escape
+Warts
+10
+
+Animals: The sea lion can swim 6,000 miles, stopping only to ____
+Sleep
+10
+
+Animals: The sea lion is susceptible to sunburn, and if put on board a ship, will get as seasick as a ____
+Man
+10
+
+Animals: The sea otter's dark fur is the finest and densest of any animal fur. On an adult animal, there are approximately 650,000 hairs per square inch. A sea otter relies on its fur to keep it warm - it doesn't have blubber as other marine mammals do. Natural oils in a sea otter's fur repel ____
+Water
+10
+
+Animals: The seeing-eye dog, or any dog trained to guide the blind, cannot tell a red light from a green one. When it lead its master across the street, it watches the traffic flow to tell when it is ____
+Safe to cross
+10
+
+Animals: The shoebill ____, native to Africa, is often compared to a statue. The bird will stand perfectly still for long periods waiting for fish to come to surface in the water
+Stork
+10
+
+Animals: The shrew is known to eat up to its own weight about every three hours. Deprived of nutrition for a day, it may ____
+Starve to death
+10
+
+Animals: The skin of baby ____ is so transparent that one can actually see the milk flowing into them as they nurse
+Mice
+10
+
+Animals: The smallest bird in the world is the Cuban bee ____. It is less than 2 inches long from tip of beak to tip of tail. It weighs 6/100ths of an ounce
+Hummingbird
+10
+
+Animals: The smallest frog is the Gold frog (Psyllophryne Didactyla) of ____. It grows to only 9.8 mm (3/8 inch)
+Brazil
+10
+
+Animals: The smallest of American owls, the ____, often nests in the Gila woodpecker's cactus hole after the woodpecker leaves. The owl measures barely 6 inches tall. It specializes in catching scorpions, seizing each by the tail and nipping off its stinger. It then swallows the scorpion's body, pincers and all
+Elf owl
+10
+
+Animals: The smell of a ____ can be detected by a human a mile away
+Skunk
+10
+
+Animals: The snail mates only once in its entire life. When it does mate, however, it may take as long as ____ to consummate the act
+12 hours
+10
+
+Animals: The spines on a newborn ____ start to appear within 24 hours
+Hedgehog
+10
+
+Animals: The spiny cheek, starsnout poacher, and monkeyface prickleback are all names of ____
+Fish
+10
+
+Animals: The spots on a plaice are what color?
+Orange
+10
+
+Animals: The squirrel monkey's brain accounts for roughly 5 percent of its body weight - the largest percentage of any other animal. The human brain, by comparison, makes up about 2.3 percent of ____
+Body weight
+10
+
+Animals: The staple diet of a Koala bear is what?
+Eucalyptus Leaves
+10
+
+Animals: The star-nosed mole, with 22 pink ____ on its snout, is said to have the most delicate sense of touch in the animal world
+Tentacles
+10
+
+Animals: The stegosaurus had a brain that weighed only 2 ounces and was no bigger than a ____
+Walnut
+10
+
+Animals: The striped ____ can fire its musk stream accurately for up to 12 feet, and even farther with a cooperative downwind
+Skunk
+10
+
+Animals: The study of animals is given the name of what?
+Zoology
+10
+
+Animals: The study of birds eggs is called what?
+Oology
+10
+
+Animals: The Suidae family is made up of what animals?
+Pigs
+10
+
+Animals: The tailorbird of Africa makes its nest by sewing together two broad leaves. It uses fiber as the thread and its bill as the ____
+Needle
+10
+
+Animals: The tarantula spends most of its life within its burrow, which is an 18-inch vertical hole with an inch-wide opening. When male tarantulas are between the ages of 5 to 7 years, they leave the burrow in search of a female, usually in the early fall. This migration actually signals the end of their life cycle. The males mate with as many females as they can, and then they die around mid____
+November
+10
+
+Animals: The Tasmanian Devil is native to which country?
+Australia
+10
+
+Animals: The three-toed ____ of tropical America can swim easily, but it can only drag itself across bare ground
+Sloth
+10
+
+Animals: The two ____ of a dolphin's brain work independently. For 8 hours, the entire brain is awake. The left side then sleeps for 8 hours. When it wakes up, the right side sleeps for 8 hours. Thus, the dolphin gets 8 hours of sleep without ever having to stop physically
+Hemispheres
+10
+
+Animals: The underwater mating song of the ____ is so loud that sometimes it can be heard by humans on the shore
+Toadfish
+10
+
+Animals: The venom of the king cobra is so deadly that one gram of it can kill ____. Just to handle the substance can put one in a coma
+150 people
+10
+
+Animals: The Virginia opossum is the only marsupial (pouched mammal) indigenous to North America. They will play dead when threatened, and contrary to folklore, do not sleep hanging by their tails. They have a litter size of up to 22, but only a maximum of 13 offspring live. Their babies stay in the pouch for the first ____
+60 days
+10
+
+Animals: The weasel and the ermine are the same animal. This mammal's coat changes with the season - in its white winter coat, it is known as an ermine, in its brown coat, it is a ____
+Weasel
+10
+
+Animals: The whale has the slowest metabolism of all animals. Despite its great size, it lives on one of the smallest of all creatures: the microscopic ____, found throughout the sea
+Plankton
+10
+
+Animals: The whistling swan has more than ____ feathers on its body
+25,000
+10
+
+Animals: The white elephant is the sacred animal of ____
+Thailand
+10
+
+Animals: The woolly ____, extinct since the Ice Age, had tusks almost 16 feet high
+Mammoth
+10
+
+Animals: The World Wildlife Fund has which animal as it's symbol?
+Giant Panda
+10
+
+Animals: The world's fastest flying bird, at over 76kph (47mph)?
+Common Eider
+10
+
+Animals: The world's fastest reptile (measured on land) is the spiny-tailed ____ of Costa Rica. It has been clocked at 21.7 miles per hour
+Iguana
+10
+
+Animals: The world's fastest running bird, at over 72kph (44mph)?
+Ostrich
+10
+
+Animals: The world's fastest swimming bird, at over 35kph (21mph)?
+Penguin
+10
+
+Animals: the world's largest known spider a record leg-span of 28 cm (11 in) is a male?
+Goliath bird eating spider
+10
+
+Animals: The world's largest mammal, the blue whale, weighs 50 tons at birth. Fully grown, it weighs as much as ____ tons
+150
+10
+
+Animals: The world's largest rodent is the Capybara. An Amazon water hog that looks like a guinea pig, it can weigh more than ____ pounds
+100
+10
+
+Animals: The world's rarest living creature is the abingdon island ____ ____. an aged male named lonesome george is the only survivor
+Giant tortoise
+10
+
+Animals: There are ____ that nest in trees. These creatures may spend their whole life without ever touching the ground
+Mice
+10
+
+Animals: There are 1,600 known species of ____ in the world
+Starfishes
+10
+
+Animals: There are 328 species of ____
+Parrots
+10
+
+Animals: There are 40,000 muscles and ____ in an elephant's trunk. This makes it very strong and flexible, allowing an elephant to pluck a delicate flower or lift a huge log. The trunk is used for touching, grasping, sucking, spraying, smelling, and striking
+Tendons
+10
+
+Animals: There are 690 known species of ____
+Bats
+10
+
+Animals: There are about 130 species of ____
+Owl
+10
+
+Animals: There are about 40 different ____ in a birds wing
+Muscles
+10
+
+Animals: There are about 5,000 species of ____ known. Only about half of them build reefs
+Coral
+10
+
+Animals: There are about 500 different kinds of cone snails around the world. All have a sharp, modified tooth that stabs prey with venom like a harpoon. Most cone snails hunt worms and other snails, but some eat fish. These are the ones most dangerous to people. The nerve toxin that stops a fish is powerful enough to also kill a ____
+Human
+10
+
+Animals: There are close to 4,000 known species of frogs, including ____
+Toads
+10
+
+Animals: There are fewer than 1,000 Bactrian camels left in the wild. They have survived in a land with no water in an area used for nuclear testing. Their numbers, however, are falling dramatically as humans encroach farther and farther into China's ____
+Gobi Desert
+10
+
+Animals: there are more than ____ known spider species throughout the world
+35000
+10
+
+Animals: There are more than 100 million ____ in the united states. americans spend more than 5.4 billion dollars on their pets each year
+Cats and dogs
+10
+
+Animals: There are more than 450 species of ____ throughout the world
+Finches
+10
+
+Animals: There are no penguins at the ____. In fact, there are no penguins anywhere in the Northern Hemisphere (outside of zoos). All 17 varieties of the bird are found below the equator, primarily in the Antarctica
+North pole
+10
+
+Animals: There are no wild deer of any kind in Australia, and the small red deer is the only one found in ____
+Africa
+10
+
+Animals: There are seven distinctive types of combs on ____: rose, strawberry, single, cushion, buttercup, pea, and V-shaped
+Chickens
+10
+
+Animals: There are some 50 different species of ____, and all of them are venomous. They thrive in abundance along the coast from the Persian Gulf to Japan and around Australia and Melanesia. Their venom is ten times as virulent as that of the cobra. Humans bitten by them have died within two-and-a-half hours
+Sea snakes
+10
+
+Animals: There is a substantial wild population of golden hamsters living in Eastern Europe and the Middle East. Scientists speculate that all the domesticated golden hamsters in the world descended from a single female with twelve babies, which were dug from a burrow in Syria back in ____
+1930
+10
+
+Animals: There is approximately one ____ for every human being in the world
+Chicken
+10
+
+Animals: There is just one known species of ____ in the world - it is in the order of Struthioniformes
+Ostrich
+10
+
+Animals: There is no mention of cats or rats in the ____
+Bible
+10
+
+Animals: There is no single cat called the ____. The name is commonly applied to the leopard, but it is also used to refer to the puma and the jaguar. A black ____ is really a black leopard
+Panther
+10
+
+Animals: There once were more sea lions on Earth than ____
+People
+10
+
+Animals: These marine crustaceans often attach themselves to the hulls of ships?
+Barnacle
+10
+
+Animals: These marine crustaceans often attach themselves to the hulls of ships?
+Barnacles
+10
+
+Animals: Thirty thousand monkeys were used in the massive three-year effort to classify the various types of ____
+Polio
+10
+
+Animals: This African animal kills the most people?
+Crocodile
+10
+
+Animals: This animal is armed with bony plates and rolls up into a ball if frightened?
+Armadillo
+10
+
+Animals: This animal is kept as a house pet to kill cobras?
+Mongoose
+10
+
+Animals: This animal is the symbol of the U.S. Democratic Party?
+Donkey
+10
+
+Animals: This animal is the symbol of the U.S. Republican Party?
+Elephant
+10
+
+Animals: This animal's name is the same as that given to a high church official?
+Cardinal
+10
+
+Animals: This bird lays its eggs in the nests of other birds?
+Cuckoo
+10
+
+Animals: this dolphin is the world's rarest dolphin and only found in new zealand waters?
+Hector's dolphin
+10
+
+Animals: This extinct creature got its name from the Portuguese for stupid?
+Dodo
+10
+
+Animals: this extinct new zealand bird had eleven species. the tallest stood at around 9 feet tall?
+Moa
+10
+
+Animals: This Flightless Bird lays the World's largest Eggs?
+Ostrich
+10
+
+Animals: This is the largest of the deer family?
+Moose
+10
+
+Animals: This is the main food of the blue whale?
+Plankton
+10
+
+Animals: This is the only mammal with four knees?
+Elephant
+10
+
+Animals: This order of insects contains the most species?
+Beetle
+10
+
+Animals: This organic gem is a deep red secretion from a marine animal?
+Coral
+10
+
+Animals: this playful new zealand native bird is one of the most intelligent birds in the world and will happily attack a car in order to steal a windscreen wiper or other bits of rubber?
+Kea
+10
+
+Animals: This small animal is trained to hunt rats and rabbits?
+Ferret
+10
+
+Animals: This two ton animal can gallop at over 50 miles an hour?
+Rhinoceros
+10
+
+Animals: This ugly creature has patches of red on his rear-end?
+Mandrill
+10
+
+Animals: Thoth, the ancient egyptian god of wisdom was usually depicted with the head of which bird?
+Ibis
+10
+
+Animals: Though human noses have an impressive 5 million olfactory cells with which to smell, sheepdogs have 220 million, enabling them to smell 44 times better than ____
+Man
+10
+
+Animals: Tiger cubs are born blind and weigh only about 2 to 3 pounds (1 kg), depending on the subspecies. They live on milk for 6 to 8 weeks before the female begins taking them to kills to feed. Tigers have fully developed canines by 16 months of age, but they do not begin making their own kills until about ____
+18 months of age
+10
+
+Animals: To a human, one giant octopus looks virtually the same as any other of the same size and species. This explains why divers claim to have seen the same octopus occupy a den for ten or more years. But an octopus seldom lives longer than ____
+4 years
+10
+
+Animals: To survive, most birds must eat at least half their own weight in food ____
+Each day
+10
+
+Animals: To which animal does the adjsctive viverrine apply?
+Ferrets
+10
+
+Animals: To which group of animals do the cayman and the gavial belong?
+Crocodile
+10
+
+Animals: Today's oldest form of horse is the Przewalski, or Mongolian Wild Horse. Survivors of this breed were discovered in the Gobi Desert in ____
+1881
+10
+
+Animals: Toothed ____ whales live in extended family units that, for families, constitute life-long associations. They differ from baleen whales, which form only temporary bonds
+Sperm
+10
+
+Animals: Totally useless fact: If a rabbits front teeth were not worn down by eating, to what length could they grow?
+Ten feet
+10
+
+Animals: Traveling at a rate of 2 to 3 miles per hour, camels can carry 500 to 1,000 pounds on their backs. They are able to keep up this pace for 6 or 7 hours a day. Camels will refuse to carry loads that are not properly ____
+Balanced
+10
+
+Animals: Tropical mollusc with bright shell used as money in some parts of asia?
+Cowrie
+10
+
+Animals: Tuna swim at a steady rate of 9 miles per hour for an indefinite period of time - and they never stop moving. Estimates indicate that a 15-year-old tuna travels one million miles in its ____
+Lifetime
+10
+
+Animals: Tunas will suffocate if they ever stop ____. They need a continual flow of water across their gills to breathe, even while they rest
+Swimming
+10
+
+Animals: Turtles survived the upheavals of the last 200 million years, including the great extinction episode that eliminated the dinosaurs. Now, about half of the world's turtle species face possible extinction - due in large part to a growing demand for turtles as a popular dining delicacy and a source of ____
+Traditional medicines
+10
+
+Animals: Two rats can become the progenitors of 15,000 rats in less than?
+One year
+10
+
+Animals: unidentified animal said to live in the Himalayas?
+Abominable snowman
+10
+
+Animals: Unlike dolphins, porpoises are not very ____
+Sociable
+10
+
+Animals: Unlike most fish, electric eels cannot get enough oxygen from water. Approximately every five minutes, they must surface to breathe, or they will drown. Unlike most fish, they can swim both ____
+Backwards and forwards
+10
+
+Animals: Very unusual for carnivores, hyena clans are dominated by ____
+Females
+10
+
+Animals: Walrus tusks are made of ____
+Ivory
+10
+
+Animals: Walt Disney's famous deer was named what?
+Bambi
+10
+
+Animals: Wandering ____ spread their wings, clack bills, and shake heads in a ritual dance. Bonds between courting birds may last the whole of a 50-year lifetime
+Albatrosses
+10
+
+Animals: Was the Brachiosaurus the fastest or slowest of the dinosaurs?
+Slowest
+10
+
+Animals: We are sure that whales and dolphins had land-living ancestors, but we don't know what they were like and we don't know how they ____
+Evolved
+10
+
+Animals: Web footed cackling birds?
+Geese
+10
+
+Animals: Weighing approximately 13 pounds at birth, a baby caribou will double its weight in just ____
+10 days
+10
+
+Animals: What animal appears on the label of Levi 500 jeans?
+Horse
+10
+
+Animals: What animal became officially extinct in 1681?
+Dodo
+10
+
+Animals: What animal can communicate using sounds that are below the human hearing range (between 14 & 35 hertz)?
+Elephant
+10
+
+Animals: What animal can get the disease 'heaves'?
+Horse
+10
+
+Animals: What animal can get the disease heaves?
+Horse
+10
+
+Animals: What animal can hop as fast as 40 mph?
+Kangaroo
+10
+
+Animals: What animal can live several weeks without its head?
+Cockroach
+10
+
+Animals: What animal could you make extinct today, & recreate tomorrow?
+Mule
+10
+
+Animals: What animal does mutton come from?
+Sheep
+10
+
+Animals: What animal does the adjective 'cervine' refer to?
+Deer
+10
+
+Animals: What animal does the adjective 'macropine' refer to?
+Kangaroo
+10
+
+Animals: What animal does the adjective 'meline' refer to?
+Badger
+10
+
+Animals: What animal does the adjective 'pardine' refer to?
+Leopard
+10
+
+Animals: What animal does the adjective 'talpine' refer to?
+Mole
+10
+
+Animals: What animal does venison come from?
+Deer
+10
+
+Animals: What animal fond in Britain is sometimes called the foul-mart?
+Polecat
+10
+
+Animals: What animal has 32 muscles in each ear?
+Cat
+10
+
+Animals: What animal has a baleen?
+Whale
+10
+
+Animals: What animal has a heart as large as a small car?
+Blue whale
+10
+
+Animals: What animal has been called The Poor Mans's Cow?
+Goat
+10
+
+Animals: What animal has bony plates and rolls up into a ball if its frightened?
+Armadillo
+10
+
+Animals: What animal has no control over when they go to the bathroom, (completly involuntary action)?
+Birds
+10
+
+Animals: What animal has no natural predators?
+Tiger
+10
+
+Animals: What animal has no vocal chords?
+Giraffe
+10
+
+Animals: What animal has red patches on its rear?
+Mandrill
+10
+
+Animals: What animal has the greatest relative size difference between the sexes?
+Elephant seal
+10
+
+Animals: What animal has the highest blood pressure?
+Giraffe
+10
+
+Animals: What animal has the largest brain proportionate to its body?
+Ant
+10
+
+Animals: What animal has the largest penis size in proportion to its body size?
+Flea
+10
+
+Animals: What animal has the longest fur?
+Musk ox
+10
+
+Animals: what animal has the longest lifespan in captivity?
+The giant tortoise
+10
+
+Animals: What animal has the same name as a high church official?
+Cardinal
+10
+
+Animals: What animal helped free the netted lion in aesop's fable?
+Mouse
+10
+
+Animals: What animal helped free the trapped lion in Aesop's fable?
+Mouse
+10
+
+Animals: What animal in India is sacred and cannot be killed?
+Cow
+10
+
+Animals: What animal is a called a nanook in eskimo?
+Polar bear
+10
+
+Animals: What animal is a mare when female & a stallion when a male?
+Horse
+10
+
+Animals: What animal is a musophobic afraid of?
+Mice
+10
+
+Animals: What animal is considered to have the highest blood pressure?
+Giraffe
+10
+
+Animals: What animal is dr. dolittle's pushmi-pullyu?
+Two-headed llama
+10
+
+Animals: What animal is featured on the Australian coat of arms other than an emu?
+Kangaroo
+10
+
+Animals: What animal is found on the flag of sri lanka?
+Lion
+10
+
+Animals: What animal is known as 'man's best friend'?
+Dog
+10
+
+Animals: What animal is known by the nickname 'sea canary'?
+The Beluga Whale
+10
+
+Animals: What animal is mentioned as being the colour of purple grape juice?
+The South African Blesbok
+10
+
+Animals: What animal is most likely to threaten a matador?
+Bull
+10
+
+Animals: What animal is most sacred to hindus?
+Cow
+10
+
+Animals: What animal is nicknamed the river horse?
+Hippo
+10
+
+Animals: What animal is often confused with a leopard?
+Jaguar
+10
+
+Animals: What animal is represented by the constellation lacerta?
+Lizard
+10
+
+Animals: What animal is represented by the constellation Monoceros?
+Unicorn
+10
+
+Animals: What animal is represented in the astrological sign cancer?
+Crab
+10
+
+Animals: What animal is second is producing the most milk consumed?
+Goat
+10
+
+Animals: What animal is the provider of coney fur?
+Rabbit
+10
+
+Animals: What animal is the provider of Moroccan leather?
+Goat
+10
+
+Animals: What animal is the symbol of france?
+Cockerel
+10
+
+Animals: What animal is the symbol of long life in Korea?
+The Deer
+10
+
+Animals: What animal is thought to have inspired the myth of the unicorn?
+Rhinoceros
+10
+
+Animals: What animal is used to locate truffles?
+Pig
+10
+
+Animals: What animal lives in a form?
+Hare
+10
+
+Animals: What animal lives in a holt?
+Otter
+10
+
+Animals: What animal lives in a lodge?
+Beaver
+10
+
+Animals: What animal lives in a warren?
+Rabbit
+10
+
+Animals: What animal may be stag, rhinoceros or dung?
+Beetle
+10
+
+Animals: What animal often communicate at sound levels as low as 5hz?
+Elephants
+10
+
+Animals: What animal only blinks one eye at a time?
+Hampster
+10
+
+Animals: What animal pollinates banana plants in the wild?
+Bats
+10
+
+Animals: What animal produces pink milk?
+Yak
+10
+
+Animals: What animal provided the hair for hairspring watches?
+Pig
+10
+
+Animals: What animal rests in a form?
+Hare
+10
+
+Animals: What animal saved arion from drowning?
+Dolphin
+10
+
+Animals: What animal tailhairs are traditionally used in making violin bows?
+Horse
+10
+
+Animals: What animal that may now be extinct is on the tasmanian coat of arms?
+Tasmanian Devil
+10
+
+Animals: What animal was named for what was wrongly thought to be its country of origin?
+The turkey
+10
+
+Animals: What animal was paraded through the streets of Paris on Mardi Gras to remind people not to eat meat during Lent?
+An ox
+10
+
+Animals: What animal was revered by the ancient Egyptians?
+Cat
+10
+
+Animals: What animal, like humans, cries tears when distressed?
+Elephant
+10
+
+Animals: What animal, other than humans, can get leprosy?
+Armadillos
+10
+
+Animals: What animal, when born, falls from a average height of six feet, normally without being hurt?
+Giraffe
+10
+
+Animals: What animal's fleece yields lanolin?
+Sheep
+10
+
+Animals: What animal's fur is the thickest?
+The Sea Otter
+10
+
+Animals: What animal's hair is used in violin bows?
+Horse
+10
+
+Animals: What animal's milk does not curdle?
+Camel
+10
+
+Animals: What animal's milk is more than 54% fat?
+Humpback whale
+10
+
+Animals: What animal's shell is used to make jewellery?
+Abalone
+10
+
+Animals: What animal's tail is called a brush?
+Fox
+10
+
+Animals: what animal's tail is referred to as a brush?
+A fox
+10
+
+Animals: What animals are used playing polo?
+Horses
+10
+
+Animals: What animals became the leaders in Animal Farm?
+Pigs
+10
+
+Animals: What animals cannot walk backwards?
+Emus
+10
+
+Animals: What animals did hannibal lead over the alps for the first time?
+Elephants
+10
+
+Animals: What animals did the Ricardos and Mertzes attempt to raise for profit upon moving to Connecticut?
+Chickens
+10
+
+Animals: What animals does a hippophobe fear?
+Horses
+10
+
+Animals: What animals eye is bigger than its brain?
+Ostrich
+10
+
+Animals: What animals give birth to fawns?
+Deer
+10
+
+Animals: What animals hair is traditionally used to make shaving brushes?
+Badger
+10
+
+Animals: What animals make a sound called nuzzing?
+Camels
+10
+
+Animals: What animals reached plague proprotions in the town of Hamelin?
+Rats
+10
+
+Animals: What animals use 95% of Mane n Tail shampoo, designed for horses?
+Humans
+10
+
+Animals: What are baby elephants called?
+Calves
+10
+
+Animals: What are fingerlings?
+Baby salmon
+10
+
+Animals: What are the only other animals on which the pill works?
+Gorillas
+10
+
+Animals: What are the pouched animals called?
+Marsupials
+10
+
+Animals: What bird builds the largest nest?
+Eagle
+10
+
+Animals: What bird can swim but can't fly?
+Penguin
+10
+
+Animals: What bird is an excellent swimmer, but can't fly?
+Penguin
+10
+
+Animals: What bird is associated with Lundy Island?
+Puffin
+10
+
+Animals: What characterises stags that are referred to a hummels?
+No antlers
+10
+
+Animals: What color is an ocelot?
+Yellow with black markings
+10
+
+Animals: What colour is a giraffes tongue?
+Blue
+10
+
+Animals: What colour is a robin's egg?
+Blue
+10
+
+Animals: What comprises than 54% of humpback whale's milk?
+Fat
+10
+
+Animals: What do bats' wings, elephants' ears, flamingos' legs, rabbits' ears, goats' horns, and human skin all have in common? They radiate heat to providing ____
+Cooling
+10
+
+Animals: What do crocodiles swallow to enable them to dive deeper?
+Rocks
+10
+
+Animals: What do you call a group of birds on the ground?
+Flock
+10
+
+Animals: What do you call a group of this animal- ant?
+Army
+10
+
+Animals: What do you call a group of this animal- antelope?
+Herd
+10
+
+Animals: What do you call a group of this animal- ants?
+Colony
+10
+
+Animals: What do you call a group of this animal- ape?
+Shrewdness
+10
+
+Animals: What do you call a group of this animal- apes?
+Shrewdness
+10
+
+Animals: What do you call a group of this animal- asses?
+Pace
+10
+
+Animals: What do you call a group of this animal- baboons?
+Troop
+10
+
+Animals: What do you call a group of this animal- badger?
+Cete
+10
+
+Animals: What do you call a group of this animal- badgers called?
+Cete
+10
+
+Animals: What do you call a group of this animal- badgers?
+Cete
+10
+
+Animals: What do you call a group of this animal- bass?
+Shoal
+10
+
+Animals: What do you call a group of this animal- bats?
+Colony
+10
+
+Animals: What do you call a group of this animal- bear?
+Sleuth
+10
+
+Animals: What do you call a group of this animal- bears called?
+Sleuth
+10
+
+Animals: What do you call a group of this animal- bears?
+Sleuth
+10
+
+Animals: What do you call a group of this animal- beaver?
+Colony
+10
+
+Animals: What do you call a group of this animal- bee?
+Swarm
+10
+
+Animals: What do you call a group of this animal- bees?
+Swarm
+10
+
+Animals: What do you call a group of this animal- bird?
+Flock
+10
+
+Animals: What do you call a group of this animal- birds flying?
+Flight
+10
+
+Animals: What do you call a group of this animal- birds on the ground?
+Flock
+10
+
+Animals: What do you call a group of this animal- bison?
+Herd
+10
+
+Animals: What do you call a group of this animal- bitterns?
+Sedge
+10
+
+Animals: What do you call a group of this animal- boar?
+Sounder
+10
+
+Animals: What do you call a group of this animal- boars?
+Singular
+10
+
+Animals: What do you call a group of this animal- bobolinks?
+Chain
+10
+
+Animals: What do you call a group of this animal- buck?
+Brace
+10
+
+Animals: What do you call a group of this animal- buffalo?
+Gang
+10
+
+Animals: What do you call a group of this animal- buffalo?
+Herd
+10
+
+Animals: What do you call a group of this animal- buzzards?
+Wake
+10
+
+Animals: What do you call a group of this animal- cat?
+Clutter
+10
+
+Animals: What do you call a group of this animal- caterpillar?
+Army
+10
+
+Animals: What do you call a group of this animal- caterpillars?
+Army
+10
+
+Animals: What do you call a group of this animal- cats?
+Clowder
+10
+
+Animals: What do you call a group of this animal- cattle?
+Herd
+10
+
+Animals: What do you call a group of this animal- chicken?
+Brood
+10
+
+Animals: What do you call a group of this animal- chickens?
+Brood
+10
+
+Animals: What do you call a group of this animal- chicks?
+Brood
+10
+
+Animals: What do you call a group of this animal- chicks?
+Clutch
+10
+
+Animals: What do you call a group of this animal- clam?
+Bed
+10
+
+Animals: What do you call a group of this animal- cobra?
+Quiver
+10
+
+Animals: What do you call a group of this animal- cockroaches?
+Intrusion
+10
+
+Animals: What do you call a group of this animal- colt?
+Rag
+10
+
+Animals: What do you call a group of this animal- colts?
+Team
+10
+
+Animals: What do you call a group of this animal- coots called?
+Covert
+10
+
+Animals: What do you call a group of this animal- coots?
+Cover
+10
+
+Animals: What do you call a group of this animal- cormorants?
+Solitude
+10
+
+Animals: What do you call a group of this animal- cow?
+Kine
+10
+
+Animals: What do you call a group of this animal- coyote?
+Band
+10
+
+Animals: What do you call a group of this animal- crane?
+Sedge
+10
+
+Animals: What do you call a group of this animal- cranes?
+Termites
+10
+
+Animals: What do you call a group of this animal- crocodile?
+Float
+10
+
+Animals: What do you call a group of this animal- crocodiles?
+Bask
+10
+
+Animals: What do you call a group of this animal- crow?
+Murder
+10
+
+Animals: What do you call a group of this animal- crows?
+Horde
+10
+
+Animals: What do you call a group of this animal- cub?
+Litter
+10
+
+Animals: What do you call a group of this animal- cur?
+Cowardice
+10
+
+Animals: What do you call a group of this animal- curlew?
+Herd
+10
+
+Animals: What do you call a group of this animal- curs?
+Cowardice
+10
+
+Animals: What do you call a group of this animal- deer?
+Herd
+10
+
+Animals: What do you call a group of this animal- dog?
+Pack
+10
+
+Animals: What do you call a group of this animal- dogs?
+Pack
+10
+
+Animals: What do you call a group of this animal- donkey?
+Herd
+10
+
+Animals: What do you call a group of this animal- donkeys called?
+Herd
+10
+
+Animals: What do you call a group of this animal- dotterel?
+Trip
+10
+
+Animals: What do you call a group of this animal- dove?
+Dule
+10
+
+Animals: What do you call a group of this animal- doves?
+Dule
+10
+
+Animals: What do you call a group of this animal- Duck?
+Brace
+10
+
+Animals: What do you call a group of this animal- ducks on the water?
+Raft
+10
+
+Animals: What do you call a group of this animal- ducks paddling?
+Team
+10
+
+Animals: What do you call a group of this animal- ducks?
+Brace
+10
+
+Animals: What do you call a group of this animal- eagles?
+Convocation
+10
+
+Animals: What do you call a group of this animal- eggs?
+Clutch
+10
+
+Animals: What do you call a group of this animal- Elephant?
+Herd
+10
+
+Animals: What do you call a group of this animal- elephants?
+Herd
+10
+
+Animals: What do you call a group of this animal- Elk?
+Gang
+10
+
+Animals: What do you call a group of this animal- elks called?
+Gang
+10
+
+Animals: What do you call a group of this animal- Emus?
+Mob
+10
+
+Animals: What do you call a group of this animal- falcons called?
+Cast
+10
+
+Animals: What do you call a group of this animal- Ferret?
+Business
+10
+
+Animals: What do you call a group of this animal- ferrets?
+Business
+10
+
+Animals: What do you call a group of this animal- finches called?
+Trimming
+10
+
+Animals: What do you call a group of this animal- Finches?
+Charm
+10
+
+Animals: What do you call a group of this animal- Fish?
+School
+10
+
+Animals: What do you call a group of this animal- fish?
+Shoal
+10
+
+Animals: What do you call a group of this animal- flamingoes?
+Stand
+10
+
+Animals: What do you call a group of this animal- flies?
+Business
+10
+
+Animals: What do you call a group of this animal- Fly?
+Swarm
+10
+
+Animals: What do you call a group of this animal- flying geese called?
+Skein
+10
+
+Animals: What do you call a group of this animal- Fox?
+Skulk
+10
+
+Animals: What do you call a group of this animal- foxes?
+Shulk
+10
+
+Animals: What do you call a group of this animal- Frog?
+Colony
+10
+
+Animals: What do you call a group of this animal- frogs?
+Army
+10
+
+Animals: What do you call a group of this animal- geese called?
+Gaggle
+10
+
+Animals: What do you call a group of this animal- geese flying?
+Skein
+10
+
+Animals: What do you call a group of this animal- Geese?
+Flock
+10
+
+Animals: What do you call a group of this animal- giraffes?
+Tower
+10
+
+Animals: What do you call a group of this animal- Gnat?
+Cloud
+10
+
+Animals: What do you call a group of this animal- gnats?
+Mothers-in-law
+10
+
+Animals: What do you call a group of this animal- Goat?
+Herd
+10
+
+Animals: What do you call a group of this animal- goats?
+Tribe
+10
+
+Animals: What do you call a group of this animal- Goldfince?
+Charm
+10
+
+Animals: What do you call a group of this animal- Gorilla?
+Band
+10
+
+Animals: What do you call a group of this animal- gorillas?
+Band
+10
+
+Animals: What do you call a group of this animal- grasshoppers?
+Getting bald
+10
+
+Animals: What do you call a group of this animal- Greyhound?
+Leash
+10
+
+Animals: What do you call a group of this animal- grouse?
+Pack
+10
+
+Animals: What do you call a group of this animal- gulls called?
+Colony
+10
+
+Animals: What do you call a group of this animal- gulls?
+Colony
+10
+
+Animals: What do you call a group of this animal- Hare?
+Down
+10
+
+Animals: What do you call a group of this animal- hares?
+Husk
+10
+
+Animals: What do you call a group of this animal- Hawk?
+Cast
+10
+
+Animals: What do you call a group of this animal- hawks called?
+Cast
+10
+
+Animals: What do you call a group of this animal- hawks spiralling in flight?
+Boil
+10
+
+Animals: What do you call a group of this animal- hawks?
+Cast
+10
+
+Animals: What do you call a group of this animal- Hen?
+Brood
+10
+
+Animals: What do you call a group of this animal- hens called?
+Brood
+10
+
+Animals: What do you call a group of this animal- Heron?
+Hedge
+10
+
+Animals: What do you call a group of this animal- herons?
+Darkness
+10
+
+Animals: What do you call a group of this animal- herring?
+Army
+10
+
+Animals: What do you call a group of this animal- hippopotamuses?
+Bloat
+10
+
+Animals: What do you call a group of this animal- Hog?
+Drift
+10
+
+Animals: What do you call a group of this animal- hogs?
+Passel
+10
+
+Animals: What do you call a group of this animal- hornets?
+Nest
+10
+
+Animals: What do you call a group of this animal- Horse?
+Team
+10
+
+Animals: What do you call a group of this animal- horses?
+Herd
+10
+
+Animals: What do you call a group of this animal- Hound?
+Pack
+10
+
+Animals: What do you call a group of this animal- hounds?
+Cry
+10
+
+Animals: What do you call a group of this animal- hyenas?
+Cackle
+10
+
+Animals: What do you call a group of this animal- jays?
+Party
+10
+
+Animals: What do you call a group of this animal- Jellyfish?
+Smack
+10
+
+Animals: What do you call a group of this animal- Kangaroo?
+Troop
+10
+
+Animals: What do you call a group of this animal- kangeroos called?
+A mob
+10
+
+Animals: What do you call a group of this animal- Kitten?
+Kindle
+10
+
+Animals: What do you call a group of this animal- kittens called?
+Kindle
+10
+
+Animals: What do you call a group of this animal- kittens?
+Litter
+10
+
+Animals: What do you call a group of this animal- lapwings?
+Deceit
+10
+
+Animals: What do you call a group of this animal- Lark?
+Ascension
+10
+
+Animals: What do you call a group of this animal- larks?
+Exaltation
+10
+
+Animals: What do you call a group of this animal- Leopard?
+Leap
+10
+
+Animals: What do you call a group of this animal- leopards called?
+Leap
+10
+
+Animals: What do you call a group of this animal- leopards?
+Leap
+10
+
+Animals: What do you call a group of this animal- Lion?
+Pride
+10
+
+Animals: What do you call a group of this animal- lions?
+Pride
+10
+
+Animals: What do you call a group of this animal- Locust?
+Plague
+10
+
+Animals: What do you call a group of this animal- locusts?
+Plague
+10
+
+Animals: What do you call a group of this animal- Magpie?
+Tiding
+10
+
+Animals: What do you call a group of this animal- magpies?
+Tiding
+10
+
+Animals: What do you call a group of this animal- Mallard?
+Sord
+10
+
+Animals: What do you call a group of this animal- mallards in flight?
+Sord
+10
+
+Animals: What do you call a group of this animal- Mare?
+Stud
+10
+
+Animals: What do you call a group of this animal- mares?
+Stud
+10
+
+Animals: What do you call a group of this animal- Marten?
+Richness
+10
+
+Animals: What do you call a group of this animal- martins?
+Richness
+10
+
+Animals: What do you call a group of this animal- Mole?
+Labour
+10
+
+Animals: What do you call a group of this animal- moles?
+Labor
+10
+
+Animals: What do you call a group of this animal- Monkey?
+Troop
+10
+
+Animals: What do you call a group of this animal- monkeys called?
+Troop
+10
+
+Animals: What do you call a group of this animal- monkeys?
+Troop
+10
+
+Animals: What do you call a group of this animal- Mule?
+Barren
+10
+
+Animals: What do you call a group of this animal- mules?
+Span
+10
+
+Animals: What do you call a group of this animal- nightingales?
+Watch
+10
+
+Animals: What do you call a group of this animal- otters?
+Romp
+10
+
+Animals: What do you call a group of this animal- Owls?
+Parliament
+10
+
+Animals: What do you call a group of this animal- Oyster?
+Bed
+10
+
+Animals: What do you call a group of this animal- oysters?
+Bed
+10
+
+Animals: What do you call a group of this animal- Parrot?
+Company
+10
+
+Animals: What do you call a group of this animal- parrots?
+Company
+10
+
+Animals: What do you call a group of this animal- Partridge?
+Covey
+10
+
+Animals: What do you call a group of this animal- partridges?
+Covey
+10
+
+Animals: What do you call a group of this animal- Peacock?
+Muster
+10
+
+Animals: What do you call a group of this animal- peacocks?
+Muster
+10
+
+Animals: What do you call a group of this animal- Peep?
+Litter
+10
+
+Animals: What do you call a group of this animal- penguins?
+Colony
+10
+
+Animals: What do you call a group of this animal- Pheasant?
+Nest
+10
+
+Animals: What do you call a group of this animal- Pig?
+Litter
+10
+
+Animals: What do you call a group of this animal- Pigeon?
+Flock
+10
+
+Animals: What do you call a group of this animal- piglets?
+Litter
+10
+
+Animals: What do you call a group of this animal- Plover?
+Wing
+10
+
+Animals: What do you call a group of this animal- plovers in flight?
+Wing
+10
+
+Animals: What do you call a group of this animal- plovers?
+Congregation
+10
+
+Animals: What do you call a group of this animal- ponies?
+String
+10
+
+Animals: What do you call a group of this animal- Pony?
+String
+10
+
+Animals: What do you call a group of this animal- porcupines?
+Prickle
+10
+
+Animals: What do you call a group of this animal- Porpoise?
+Pod
+10
+
+Animals: What do you call a group of this animal- ptarmigans?
+Covey
+10
+
+Animals: What do you call a group of this animal- puppies?
+Litter
+10
+
+Animals: What do you call a group of this animal- Quail?
+Covey
+10
+
+Animals: What do you call a group of this animal- Rabbit?
+Nest
+10
+
+Animals: What do you call a group of this animal- rabbits?
+Warren
+10
+
+Animals: What do you call a group of this animal- Rat?
+Pack
+10
+
+Animals: What do you call a group of this animal- Rattlesnake?
+Rhumba
+10
+
+Animals: What do you call a group of this animal- Raven?
+Unkindness
+10
+
+Animals: What do you call a group of this animal- ravens?
+Unkindness
+10
+
+Animals: What do you call a group of this animal- Rhino?
+Crash
+10
+
+Animals: What do you call a group of this animal- rhinocerouses?
+Crash
+10
+
+Animals: What do you call a group of this animal- roe deer?
+Bevy
+10
+
+Animals: What do you call a group of this animal- Roebuck?
+Bevy
+10
+
+Animals: What do you call a group of this animal- Rook?
+Building
+10
+
+Animals: What do you call a group of this animal- rooks?
+Building
+10
+
+Animals: What do you call a group of this animal- Seal?
+Pod
+10
+
+Animals: What do you call a group of this animal- seals?
+Herd
+10
+
+Animals: What do you call a group of this animal- sharks?
+Shiver
+10
+
+Animals: What do you call a group of this animal- Sheep?
+Drove
+10
+
+Animals: What do you call a group of this animal- sheep?
+Flock
+10
+
+Animals: What do you call a group of this animal- Snake?
+Nest
+10
+
+Animals: What do you call a group of this animal- snakes?
+Nest
+10
+
+Animals: What do you call a group of this animal- Snipe?
+Walk
+10
+
+Animals: What do you call a group of this animal- snipe?
+Wisp
+10
+
+Animals: What do you call a group of this animal- Sparrow?
+Host
+10
+
+Animals: What do you call a group of this animal- sparrows?
+Host
+10
+
+Animals: What do you call a group of this animal- Squirrel?
+Dray
+10
+
+Animals: What do you call a group of this animal- squirrels called?
+Dray
+10
+
+Animals: What do you call a group of this animal- squirrels?
+Dray
+10
+
+Animals: What do you call a group of this animal- Starling?
+Murmuration
+10
+
+Animals: What do you call a group of this animal- starlings?
+Murmuration
+10
+
+Animals: What do you call a group of this animal- Stork?
+Mustering
+10
+
+Animals: What do you call a group of this animal- storks?
+Mustering
+10
+
+Animals: What do you call a group of this animal- Swallow?
+Flight
+10
+
+Animals: What do you call a group of this animal- swallows?
+Flight
+10
+
+Animals: What do you call a group of this animal- Swan?
+Bevy
+10
+
+Animals: What do you call a group of this animal- swans in flight?
+Wedge
+10
+
+Animals: What do you call a group of this animal- swans?
+Bevy
+10
+
+Animals: What do you call a group of this animal- Swift?
+Flock
+10
+
+Animals: What do you call a group of this animal- Swine?
+Sounder
+10
+
+Animals: What do you call a group of this animal- Teal?
+Spring
+10
+
+Animals: What do you call a group of this animal- this called: bacteria?
+Culture
+10
+
+Animals: What do you call a group of this animal- tigers?
+Streak
+10
+
+Animals: What do you call a group of this animal- Toad?
+Knot
+10
+
+Animals: What do you call a group of this animal- toads?
+Knot
+10
+
+Animals: What do you call a group of this animal- travelling wolves?
+Route
+10
+
+Animals: What do you call a group of this animal- trout?
+Hover
+10
+
+Animals: What do you call a group of this animal- Turkey?
+Rafter
+10
+
+Animals: What do you call a group of this animal- turkeys?
+Rafter
+10
+
+Animals: What do you call a group of this animal- turtle doves?
+Pitying
+10
+
+Animals: What do you call a group of this animal- Turtle?
+Bale
+10
+
+Animals: What do you call a group of this animal- Turtledove?
+Pitying
+10
+
+Animals: What do you call a group of this animal- turtles?
+Bale
+10
+
+Animals: What do you call a group of this animal- Viper?
+Nest
+10
+
+Animals: What do you call a group of this animal- Walrus?
+Pod
+10
+
+Animals: What do you call a group of this animal- Whale?
+School
+10
+
+Animals: What do you call a group of this animal- whales called?
+Pod
+10
+
+Animals: What do you call a group of this animal- whales?
+Pod
+10
+
+Animals: What do you call a group of this animal- widgeons?
+Company
+10
+
+Animals: What do you call a group of this animal- wild dogs?
+Pack
+10
+
+Animals: What do you call a group of this animal- Wolf?
+Pack
+10
+
+Animals: What do you call a group of this animal- wolves?
+Pack
+10
+
+Animals: What do you call a group of this animal- Woodcock?
+Fall
+10
+
+Animals: What do you call a group of this animal- woodcocks?
+Fall
+10
+
+Animals: What do you call a group of this animal- Woodpecker?
+Descent
+10
+
+Animals: What do you call a group of this animal- woodpeckers?
+Descent
+10
+
+Animals: What do you call a young Antelope?
+Calf
+10
+
+Animals: What do you call a young Bear?
+Cub
+10
+
+Animals: What do you call a young Beasts of prey?
+Whelp
+10
+
+Animals: What do you call a young Beaver?
+Kit
+10
+
+Animals: What do you call a young Bird?
+Fledgling
+10
+
+Animals: What do you call a young Cat?
+Kitten
+10
+
+Animals: What do you call a young Codfish?
+Codling
+10
+
+Animals: What do you call a young Cow?
+Calf
+10
+
+Animals: What do you call a young Deer?
+Fawn
+10
+
+Animals: What do you call a young Dog?
+Puppy
+10
+
+Animals: What do you call a young Duck?
+Duckling
+10
+
+Animals: What do you call a young Eagle?
+Eaglet
+10
+
+Animals: What do you call a young Eel?
+Elver
+10
+
+Animals: What do you call a young Elephant seal?
+Weaner
+10
+
+Animals: What do you call a young Elephant?
+Calf
+10
+
+Animals: What do you call a young Fish?
+Fry
+10
+
+Animals: What do you call a young Fowl?
+Chick
+10
+
+Animals: What do you call a young Fox?
+Cub
+10
+
+Animals: What do you call a young Frog?
+Tadpole
+10
+
+Animals: What do you call a young Goat?
+Kid
+10
+
+Animals: What do you call a young Goose?
+Gosling
+10
+
+Animals: What do you call a young Grouse?
+Cheeper
+10
+
+Animals: What do you call a young Guinea fowl?
+Keet
+10
+
+Animals: What do you call a young Hawk?
+Eyas
+10
+
+Animals: What do you call a young Hen?
+Pullet
+10
+
+Animals: What do you call a young Hippo?
+Calf
+10
+
+Animals: What do you call a young Horse?
+Foal
+10
+
+Animals: What do you call a young Kangaroo?
+Joey
+10
+
+Animals: What do you call a young Lion?
+Cub
+10
+
+Animals: What do you call a young Owl?
+Owlet
+10
+
+Animals: What do you call a young Partridge?
+Cheeper
+10
+
+Animals: What do you call a young Pig?
+Piglet
+10
+
+Animals: What do you call a young Pigeon?
+Squab
+10
+
+Animals: What do you call a young Quail?
+Cheeper
+10
+
+Animals: What do you call a young Rabbit?
+Kit
+10
+
+Animals: What do you call a young Rat?
+Kitten
+10
+
+Animals: What do you call a young Rhino?
+Calf
+10
+
+Animals: What do you call a young Rooster?
+Cockerel
+10
+
+Animals: What do you call a young Salmon?
+Parr
+10
+
+Animals: What do you call a young Seal?
+Pup
+10
+
+Animals: What do you call a young Shark?
+Cub
+10
+
+Animals: What do you call a young Sheep?
+Lamb
+10
+
+Animals: What do you call a young Swan?
+Cygnet
+10
+
+Animals: What do you call a young Tiger?
+Cub
+10
+
+Animals: What do you call a young Turkey?
+Poult
+10
+
+Animals: What do you call a young Whale?
+Calf
+10
+
+Animals: What do you call a young Zebra?
+Foal
+10
+
+Animals: What does a camel store in its hump?
+Fat
+10
+
+Animals: What does a carpophagus animal feed on?
+Fruit
+10
+
+Animals: what does the male praying mantis lose to the female after mating?
+His head
+10
+
+Animals: What dog is named after a Mexican state?
+Chihuahua
+10
+
+Animals: What fish is the fastest?
+Sailfish
+10
+
+Animals: What form was the Egyptian god Sobek?
+Crocodile
+10
+
+Animals: What herbivore sleeps one hour a night?
+Antelope
+10
+
+Animals: What insect has a type of hair on it's eyes?
+Honeybees
+10
+
+Animals: What is a collective word for a group of foxes?
+Skulk
+10
+
+Animals: What is a dingo?
+Wild dog
+10
+
+Animals: What is a female bear?
+Sow
+10
+
+Animals: What is a female calf?
+Heifer
+10
+
+Animals: What is a female cat?
+Queen
+10
+
+Animals: What is a female deer called?
+Doe
+10
+
+Animals: What is a female deer?
+Doe
+10
+
+Animals: What is a female ferret?
+Jill
+10
+
+Animals: What is a female fox called?
+Vixen
+10
+
+Animals: What is a female red deer called?
+A hind
+10
+
+Animals: What is a female sheep?
+Ewe
+10
+
+Animals: What is a fox's den called?
+Earth
+10
+
+Animals: What is a fox's den called?
+An earth
+10
+
+Animals: What is a fox�s tail called?
+Brush
+10
+
+Animals: What is a gila monster?
+Lizard
+10
+
+Animals: What is a goat's offspring called?
+Kid
+10
+
+Animals: What is a goup of clams?
+Bed
+10
+
+Animals: What is a greyish cat with dark stripes called?
+Tabby
+10
+
+Animals: what is a gribble?
+Crustacean
+10
+
+Animals: What is a grosbeak?
+Bird
+10
+
+Animals: What is a Hen less than a year old called?
+A Pullet
+10
+
+Animals: What is a large, clawed, marine crustacean?
+Lobster
+10
+
+Animals: What is a male deer called?
+Buck
+10
+
+Animals: What is a male goose called?
+Gander
+10
+
+Animals: What is a male swan called?
+Cob
+10
+
+Animals: What is a male swine called?
+Boar
+10
+
+Animals: What is a marsupium?
+Pouch
+10
+
+Animals: What is a mature horse below the height of 14 and a half hands called?
+Pony
+10
+
+Animals: What is a Natterjack?
+Toad
+10
+
+Animals: What is a pangolin?
+Ant-eater
+10
+
+Animals: What is a Rana esculenta?
+Edible frog
+10
+
+Animals: What is a smaller form of Kangeroo usually called?
+Wallaby
+10
+
+Animals: What is a word for a castrated ram?
+Wether
+10
+
+Animals: What is a young goose called?
+Gosling
+10
+
+Animals: What is a young swan called?
+Cygnet
+10
+
+Animals: What is a young whale called?
+Calf
+10
+
+Animals: What is also known as a pillbug (they were once used for medicinal purposes and swallowed like pills - yuk!!!)?
+Woodlouse
+10
+
+Animals: What is an alan?
+Hunting dog
+10
+
+Animals: What is an army worm?
+Caterpillar
+10
+
+Animals: What is an emasculated stallion called?
+Gelding
+10
+
+Animals: What is an insect called while it is changing its form inside a cocoon?
+Pupa
+10
+
+Animals: What is another name for a Guinea Pig?
+Cavy
+10
+
+Animals: What is another name for the coyote?
+Prairie wolf
+10
+
+Animals: What is another name for the prairie wolf?
+Coyote
+10
+
+Animals: What is another term for a black leopard?
+Panther
+10
+
+Animals: what is canis lupus?
+A wolf
+10
+
+Animals: What is the axolotl also called?
+Salamander
+10
+
+Animals: What is the chihuahua named after?
+A Mexican state
+10
+
+Animals: What is the collective term that is used to refer to animals that feed on the remains of dead animals or plants?
+Detrivore
+10
+
+Animals: What is the common name for the bird Passer domesticus?
+House sparrow
+10
+
+Animals: What is the common name for the furcula in birds?
+Wishbone
+10
+
+Animals: What is the correct collective name for a litter of piglets?
+Farrow
+10
+
+Animals: What is the deadliest spider?
+The Black Widow Spider
+10
+
+Animals: What is the distinguishing feature of an animal classed as an ungulate?
+Hooves
+10
+
+Animals: What is the favorite fruit of the orang-utan?
+Durian
+10
+
+Animals: What is the heart rate of the blue whale (in beats per minute)?
+Nine
+10
+
+Animals: What is the heaviest snake?
+Anaconda
+10
+
+Animals: What is the horn of a rhinoceros made of?
+Hair
+10
+
+Animals: What is the largest lizard?
+Komodo Dragon
+10
+
+Animals: What is the longest venomous snake?
+King cobra
+10
+
+Animals: What is the most poisonous fish in the world?
+Stonefish
+10
+
+Animals: What is the most venomous snake (no, it's not the king cobra!)?
+Inland Taipan
+10
+
+Animals: What is the name for a collection of frogs?
+Army
+10
+
+Animals: What is the name given to a neutered stallion?
+A gelding
+10
+
+Animals: What is the name given to the young of a Kangaroo?
+Joey
+10
+
+Animals: What is the name of the largest land animal?
+Elephant
+10
+
+Animals: What is the offspring of a mare and a male ass called?
+A mule
+10
+
+Animals: What is the only dog that doesn't have a pink tongue?
+Chow
+10
+
+Animals: What is the only mammal that can't jump?
+Elephant
+10
+
+Animals: What is the only member of the cat family that cannot fully retract its claws?
+Cheetah
+10
+
+Animals: What is the only venomous snake found in Britain?
+Adder
+10
+
+Animals: What is the popular name for crane flies?
+Daddy long legs
+10
+
+Animals: What is the primary function of the kangaroo's tail?
+Balance
+10
+
+Animals: What is the scientific name for a turkey's wishbone?
+Furcula
+10
+
+Animals: what is the shape of a camel's spine?
+Straight
+10
+
+Animals: What is the smallest bird in the world?
+Hummingbird
+10
+
+Animals: What is the smallest British bird?
+Goldcrest
+10
+
+Animals: What is the technical name for an animal's pouch?
+Marsupium
+10
+
+Animals: What is the third name for the cougar or mountain lion?
+Puma
+10
+
+Animals: What is the wolds largest snail species, with a length of 770mm (30.3 in)?
+Australian Trumpet
+10
+
+Animals: What is the world's largest Mollusc, with a length of 16,764mm (660in)?
+Giant Squid
+10
+
+Animals: What is the world's longest snake?
+Python
+10
+
+Animals: What is young kangeroo called?
+Joey
+10
+
+Animals: What kind of animal is a boomslang?
+Snake
+10
+
+Animals: What kind of animal is a Dandie Dinmont?
+Scottish hunting terrier
+10
+
+Animals: What kind of animal is a quagga?
+Zebra
+10
+
+Animals: What kind of animal is a snow shoe rabbit?
+Hare
+10
+
+Animals: What kind of animal is a wapiti?
+American elk
+10
+
+Animals: What kind of animal is the emblem of the US republican political party?
+Elephant
+10
+
+Animals: What kind of animal is the source of mohair?
+Angora Goat
+10
+
+Animals: What kind of animal mates only once for 12 hours and can sleep for three years?
+Snail
+10
+
+Animals: What kind of animal was featured in Gavin Maxwells 1960 best seller A ring of Bright Water?
+Otter
+10
+
+Animals: What kind of animals don't hunt or eat any meat?
+Herbivore
+10
+
+Animals: What kind of animals live in an apiary?
+Bees
+10
+
+Animals: What kind of animals were Chi Chi and An An?
+Panda bears
+10
+
+Animals: What kind of creature always gives birth to same sex twins?
+Armadillo
+10
+
+Animals: What land mammal other than man has the longest lifespan?
+Elephant
+10
+
+Animals: What large herbivore sleeps only one hour a night?
+Antelope
+10
+
+Animals: What lives in a formicary?
+Ants
+10
+
+Animals: What name is given to a cows first milk after calving?
+Beestings
+10
+
+Animals: What name is given to a female calf?
+Heifer
+10
+
+Animals: What name is given to a larva of the salamander whish never fully develops because of a hormone deficiency although it can breed?
+Axolotl
+10
+
+Animals: What name is given to a male falcon?
+Tiercel
+10
+
+Animals: What name is given to young salmon which has been to sea only once?
+Grilse
+10
+
+Animals: What physical characteristic do pinnipeds have?
+Fins for feet
+10
+
+Animals: What sort of acid is in an ants sting?
+Formic acid
+10
+
+Animals: What sort of animal is an Addaz?
+Antelope
+10
+
+Animals: What sort of insects belong to the order Odonata?
+Dragonflies
+10
+
+Animals: What species of animal would Rangifer Tarandus refer to?
+Deer
+10
+
+Animals: What travels in gaggles?
+Geese
+10
+
+Animals: What type of animal according to Beatrix Potter was Mr Jeremy Fisher?
+Frog
+10
+
+Animals: What type of animal is a Lippizaner?
+Horse
+10
+
+Animals: What type of animal is a rockhopper?
+Penguin
+10
+
+Animals: What type of animal is a Tasmanian Devil?
+Marsupial
+10
+
+Animals: What type of animal is a wallaby?
+Kangaroo
+10
+
+Animals: What type of animal is a wallaby?
+Marsupial
+10
+
+Animals: What type of animal is the main source of food for a mole?
+Earthworms
+10
+
+Animals: What type of animal is the symbol of medicine?
+Snake
+10
+
+Animals: What type of animal lives in a formicary?
+Ant
+10
+
+Animals: What type of animal produces gossamer?
+Spider
+10
+
+Animals: What type of bird is the Liver bird found on coats of arms of Liverpool?
+Cormorant
+10
+
+Animals: What type of creature is a Basilisk?
+Lizard
+10
+
+Animals: What type of creature is a colobus?
+Monkey
+10
+
+Animals: What type of creature is a sidewinder?
+Snake
+10
+
+Animals: What type of creature's a bustard?
+Bird
+10
+
+Animals: What type of frog is the smallest frog?
+Gold frog
+10
+
+Animals: What type of insect eats its mate after mating?
+Preying Mantis
+10
+
+Animals: What type of insect has the best eyesight?
+Dragonfly
+10
+
+Animals: What type of leaves does a Koala use for food?
+Eucalyptus
+10
+
+Animals: What type of mammals fly using echolocation?
+Bats
+10
+
+Animals: What was it that Killed Cleopatra?
+An asp
+10
+
+Animals: What was Tarzan's Chimpanzee's name?
+Cheta
+10
+
+Animals: What was the first animal on the endangered species list?
+Peregrine falcon
+10
+
+Animals: What well known marsupial is the wallaby related to?
+Kangaroo
+10
+
+Animals: What were dachshunds originally bred to hunt?
+Badgers
+10
+
+Animals: What were the names of the two bears that lived in Jellystone park?
+Yogi and Boo Boo
+10
+
+Animals: What word is used for a female fox?
+Vixen
+10
+
+Animals: What word is used for a female sheep?
+Ewe
+10
+
+Animals: What word is used for a male ass (Other than that the word used for that $^&%@! ex-boyfriend...)?
+Jack
+10
+
+Animals: What word is used for a male deer?
+Buck
+10
+
+Animals: What word is used for a male duck?
+Drake
+10
+
+Animals: what worm prefers the mulberry?
+The silkworm
+10
+
+Animals: What's a Natterjack?
+A Toad
+10
+
+Animals: What's a Wessex Saddleback?
+A Pig
+10
+
+Animals: What's the smallest bird in the world?
+The Hummingbird
+10
+
+Animals: When a ____ exerts itself, gets angry, or stays out of the water for too long, it exudes red, sweatlike mucus through its skin
+Hippopotamus
+10
+
+Animals: When a ____ is first born, it is male, and it gradually evolves to female as it matures
+Prawn
+10
+
+Animals: When a school of baby ____ are threatened, their father opens his huge mouth and the youngsters swim inside to hide. When danger has passed, he reopens his mouth and lets the fry out
+Catfish
+10
+
+Animals: When a snail hatches from an egg, it is a miniature adult, shell and all. The shell grows with the snail, and the snail never leaves the ____
+Shell
+10
+
+Animals: When baby opossum are born, they are so small that an entire litter can fit in a tablespoon. They live inside their mother's pouch for ____ before climbing out and riding on her back
+3 months
+10
+
+Animals: When caterpillar changes into an adult butterfly what is the change called?
+Metamorphous
+10
+
+Animals: When cows graze in their natural head-down position, their saliva production increases by ____
+Seventeen percent
+10
+
+Animals: When eating, ____ often gorge themselves to the point that they can't fly. the bird will quickly regurgitate its meal to become light enough to escape if flight from an attacker is necessary
+Vultures
+10
+
+Animals: When thirsty, a camel can swig down 25 gallons of water in less than ____
+Three minutes
+10
+
+Animals: When under extreme stress, such as when held in captivity, some octopuses will eat their own arms, which ____
+Grow back
+10
+
+Animals: When young abalones feed on red seaweed, their shells turn ____
+Red
+10
+
+Animals: When young, the hoatzin, a crested, olive-colored South American bird, has claws on its ____
+Wings
+10
+
+Animals: Where are there over 58 million dogs?
+USA
+10
+
+Animals: Where do ants live?
+Formicary
+10
+
+Animals: Where do British swallows spend the winter?
+Africa
+10
+
+Animals: Where do demersal animals live?
+SEABED
+10
+
+Animals: Which animal appears first in the dictionary?
+Aardvark
+10
+
+Animals: Which animal has rectangular pupils?
+Goat
+10
+
+Animals: Which animal has the largest eyes?
+Giant squid
+10
+
+Animals: Which animal has the longest lifespan in captivity?
+Giant Tortoise
+10
+
+Animals: Which animal is sometimes known as In velvet?
+Deer
+10
+
+Animals: Which animal is the fastest, a hare, greyhound, or horse?
+Hare
+10
+
+Animals: Which animal is used on the Toys R Us logo?
+Giraffe
+10
+
+Animals: Which animal lives in a citadel?
+Mole
+10
+
+Animals: which animal lives in a lodge?
+The beaver
+10
+
+Animals: Which animal was traditionally called Russell?
+Fox
+10
+
+Animals: Which animals are known for their blue and red faces and bums?
+Mandrills
+10
+
+Animals: Which animals does Lupine relate to?
+Wolves
+10
+
+Animals: Which animals is commonly known as The buhmans clock?
+Kookaburra
+10
+
+Animals: Which animals latin name is bufo bufo?
+Toad
+10
+
+Animals: Which Australian animal is the world's fussiest eater is the?
+Koala
+10
+
+Animals: Which Australian bird is known as the Laughing Jackass?
+Kookaburra
+10
+
+Animals: Which bird is also known as Cuddys duck because St Cuthbert protected it?
+Eider
+10
+
+Animals: Which bird is named after its habit of up ending stones to look for shellfish?
+Turnstone
+10
+
+Animals: Which bird is stuffed and displayed in the MCC Museumat Lords having been hit and killed by a cricket ball?
+House sparrow
+10
+
+Animals: Which bird reestablished itself in Suffolk in the late 1940s and is the symbol of the RSPB?
+Avocet
+10
+
+Animals: Which bird, crex crex, has a cry which can be imitated by moving two notched bones across one another?
+Corncrake
+10
+
+Animals: Which bird, popular as a cage bird, syMbolised the Passion of Christ in medieval religious paintings?
+Goldfinch
+10
+
+Animals: Which breed of horse is tradionally ridden by the Spanish Riding School in Vienna?
+Lipizzaner
+10
+
+Animals: Which bug has the most legs?
+Millipede
+10
+
+Animals: Which crab, having no hard shell of its own, protects itself by taking over the shells of dead molluscs?
+Hermit crab
+10
+
+Animals: Which creature gets its name from the Spanish for lizard?
+Alligator
+10
+
+Animals: Which extinct creature got its name from the Portuguese for stupid?
+Dodo
+10
+
+Animals: Which female animal on heat, seeks sex an average of 20 times a day?
+Chimpanzee
+10
+
+Animals: Which Fred is the Daily Mail's cartoon dog?
+Fred Bassett
+10
+
+Animals: Which is the largest African bird of prey?
+Lammergeyer
+10
+
+Animals: Which is the largest aquatic bird?
+Albatross
+10
+
+Animals: Which is the largest known butterfly?
+Queen Alexandra's Birdwing
+10
+
+Animals: Which is the only animal other than humans that can get leprosy?
+Armadillos
+10
+
+Animals: Which is the only endemic species of bird confined entirely to Britain?
+Scottish crossbill
+10
+
+Animals: Which is the smallest mammal in the world?
+The pygmy shrew
+10
+
+Animals: Which mammals fly?
+Bats
+10
+
+Animals: Which member of the anura order of amphibians was once used in pregnancy tests?
+Clawed toad
+10
+
+Animals: Which of the big cats have tear stain facial markings?
+Cheetahs
+10
+
+Animals: Which penguin dad likes to babysit?
+Emporer Penguin
+10
+
+Animals: Which pigment is obtained from cuttlefish and squid?
+Sepia
+10
+
+Animals: Which proboscis has 40,000 muscles?
+Elephants trunk
+10
+
+Animals: Which sense is the weakest sense in most primates?
+Sense of Smell
+10
+
+Animals: Which sinister sounding beetle is a pest in the timbers of old buildings?
+Deathwatch beetle
+10
+
+Animals: Which snake kills the most humans?
+King cobra
+10
+
+Animals: Which subhuman primate is the most intelligent?
+Chimpanzee
+10
+
+Animals: Which type of animals have more teeth, reptiles or mammals?
+Mammals
+10
+
+Animals: Which type of semi aquatic animal is a lutra-lutra?
+An Otter
+10
+
+Animals: which woodland birs performs a roding display flight in the breeding season?
+Woodcock
+10
+
+Animals: While awake, hummingbirds must eat at least every 30 minutes or they will starve to death. They need to eat 2.5 times their body weight every day - this takes hundreds of ____ everyday
+Flowers
+10
+
+Animals: While dangerous to swimmers, the fact remains that ____ are much less dangerous than sharks
+Barracudas
+10
+
+Animals: While many people believe that a camel's humps are used for water storage, they are actually made up of ____. The hump of a well-rested, well-fed camel can weigh up to eighty pounds
+Fat
+10
+
+Animals: While some sharks lay eggs, blue sharks give birth to live ____, as do about two-thirds of all sharks, estimated at nearly 350 species
+Pups
+10
+
+Animals: While the bones of most airborne birds are hollow for lightness, ____ are endowed with solid bones for ballast when they dive, sometimes to 850 feet or more
+Penguins
+10
+
+Animals: Who are the queen bee's closest servants in a beehive?
+Drones
+10
+
+Animals: Who was the British TV personality that presented the show Animal Magic?
+Johnny Morris
+10
+
+Animals: who was the first animal named to the animal hall of fame, in 1969?
+Lassie
+10
+
+Animals: Whooper, mute and Bewicks are all types of what?
+Swan
+10
+
+Animals: Wild ass?
+Onager
+10
+
+Animals: Wildlife biologists estimate that as many as five out of six fawns starve to death during a hard winter in ____
+Vermont
+10
+
+Animals: With a distance of 19,000 kms (11,806 mi), this bird holds the record for the furthest migration route?
+Pectoral Sandpiper
+10
+
+Animals: With few exceptions, birds do not sing while on the ground. They sing during flight or while sitting on an object off the ____
+Ground
+10
+
+Animals: With only a four-week gestation period, a cottontail ____ can produce 5 to 7 litters, and as many as 35 offspring per year
+Rabbit
+10
+
+Animals: With which island is the puffin associated?
+Lundy island
+10
+
+Animals: With which mammal is the disease rabies commonly associated?
+Dogs
+10
+
+Animals: Within the hawk, or birds of prey, family, there are ____ species - eagles, hawks, kites, and Old World vultures, which are found nearly worldwide
+208
+10
+
+Animals: Wolf packs could be found in all the forests of Europe, and in 1420 and 1438, wolves roamed the streets of ____
+Paris
+10
+
+Animals: Woodpecker scalps, porpoise teeth, and giraffe tails have all been used as ____
+Money
+10
+
+Animals: Woolly haired South amrican animal?
+Llama
+10
+
+Animals: You are more likely to be killed by a ____ than by a poisonous spider
+Champagne cork
+10
+
+Animals: You are more likely to get attacked by a cow than a____
+Shark
+10
+
+Animals: You can identify a ____ bear's mark by the sign of five claws. A black bear will lacerate a tree trunk with four claws
+Grizzly
+10
+
+Animals: You can only smell 1/20th as well as a ____
+Dog
+10
+
+Animals: You can tell the sex of a horse by its teeth. Most males have 40, females have ____
+36
+10
+
+Animals: You could milk about ____ cows per hour by hand, but with modern machinery, you can milk up to 100 cows per hour
+Six
+10
+
+Animals: You have a 1 in 3,000,000 chance of being killed by a?
+Snake
+10
+
+Animals: You just saw an egg-laying mammal in the wild. Where are you?
+Australia
+10
+
+Animals: You see a lemur in it's natural habitat. Where are you?
+Madagascar
+10
+
+Animals: Young birds such as ducks, geese, and shore birds are born with their ____
+Eyes open
+10
+
+Animals: Young swan?
+Cygnet
+10
+
+Animals: Zebus are humped cattle found in India, China, and northern Africa. Zebubs are tsetse-like flies found in ____
+Ethiopia
+10
+
+Animals:Porcupines ____ in water
+Float
+10
+
+Animas: You are on a farm and you see a DUROC. What kind of animal is it?
+Pig
+10
+
+Anne Boleyn lost her head over this guy?
+Henry viii
+10
+
+Anniversary Gifts (traditional)?
+Paper
+10
+
+Annoying, litigious (and possibly duplicitous) owner of Boston Beer Company?
+Jim koch
+10
+
+Annual growth of ____ traffic is 314,000%
+Www
+10
+
+Annual growth of WWW traffic is ____
+314,000%
+10
+
+Annual London dog show?
+Crufts
+10
+
+Anonymous letters of hostility towards the recipient?
+Hate mail
+10
+
+Another name for a slaughter house?
+Abattoir
+10
+
+Another name for a villain or scoundrel?
+Blackguard
+10
+
+Another name for an artists workshop or studio?
+Ateiler
+10
+
+Another name for graphite or black lead?
+Plumbago
+10
+
+Another name for guardian angels is?
+Watchers
+10
+
+Another name for phencyclidine hydrochloride?
+Angel dust
+10
+
+Another name for the solar year is what?
+Tropical year
+10
+
+Another name for wood alcohol is...?
+Methanol
+10
+
+Another term for pure china clay is?
+Kaolin
+10
+
+Another word for direct confrontation?
+Face-off
+10
+
+Another word for vaccination?
+Immunization
+10
+
+Antarctica has no native____
+Population
+10
+
+Antarctica's residents are ____ and support staffs who usually stay no more than a year at a time
+Scientific
+10
+
+Antarctica's residents are scientific and ____ staffs who usually stay no more than a year at a time
+Support
+10
+
+Anteaters prefer ____ to ants
+Termites
+10
+
+Anteaters prefer termites to____
+Ants
+10
+
+Anthocyanins are compounds which produce what?
+Colors
+10
+
+Anthocyanins are compounds which produce...?
+Color
+10
+
+Anthomania is an obsession or crazed desire for ____ ____
+Flowers
+10
+
+Anthropoid (ape) of equatorial africa that, physically and genetically, is the animal most closely related to humans?
+Chimpanzee
+10
+
+Anti tank rocket launcher?
+Bazooka
+10
+
+Antoine domino is better known the world by what name?
+Fats domino
+10
+
+Anubis was the egyptian god of the ____
+Dead
+10
+
+Anvil, hammer and stirrup are all bones where?
+Ear
+10
+
+Any animal lacking a vertebral column, or backbone?
+Invertebrate
+10
+
+Any comparatively small body of land completely surrounded by water?
+Island
+10
+
+Any free-moving liquid in outer space will form itself into a sphere, because of it's surface ____
+Tension
+10
+
+Any material that hardens & becomes strongly adhesive after application in plastic form?
+Cement
+10
+
+Any member of a group of protozoa (single-celled animals) that are blood parasites?
+Trypanosome
+10
+
+Any month that starts on a Sunday will have a ____ in it
+Friday the 13th
+10
+
+Any object worn as a charm may be called a(n) ____
+Amulet
+10
+
+Any of a group of composite organisms made up of a fungus and an alga living in symbiotic association (symbiosis)?
+Lichen
+10
+
+Any of a large group of chemicals almost exclusively organic in nature, used for the coloring of textiles, inks, food products, & other substances?
+Dyes
+10
+
+Any of several soft metal alloys used to line bearings and bushings in order to reduce friction?
+Babbitt metal
+10
+
+Any of the drugs used to reduce nervous tension or induce sleep?
+Sedative
+10
+
+Any of the non-metallic elements which form a salt when combined with a metal?
+Halogen
+10
+
+Any of various scientific recording devices designed to register a person's bodily responses to being questioned?
+Polygraph
+10
+
+Any of various viruses that are parasites of bacteria?
+Bacteriophage
+10
+
+Any structure of animals, plants, or insects that produces chemical secretions or excretions?
+Gland
+10
+
+Any substance that produces disease conditions, tissue injury, or otherwise interrupts natural life processes when in contact with or absorbed into the body?
+Poison
+10
+
+Any type of machine that obtains mechanical energy directly from the expenditure of the chemical energy of fuel burned in a combustion chamber that is an integral part of the engine?
+Internal combustion
+10
+
+Any type of self-propelled vehicle used by railroads to pull or push other types of rolling stock, including passenger, freight, & work cars?
+Hovercraft
+10
+
+Any vessel that converts water into steam?
+Boiler
+10
+
+Any violent destruction or rowdy confusion?
+Mayhem
+10
+
+Anything that occupies space & has mass is generally known as ____
+Matter
+10
+
+Anywhere is a top 10 hit in 1995 for what band?
+Enya
+10
+
+Anzac troops come from which 2 countries?
+Australia and new zealand
+10
+
+Apart from being rivers what do Thames, Shannon, Forth, Tyne & Humber have in common?
+Sea/fishing areas (for weather forecasts)
+10
+
+Apart from billy connolly who else had a top twenty hit with d.i.v.o.r.c.e. in 1975?
+Tammy wynette 
+10
+
+Apart from clarity and cut, what are the two C's of a diamond?
+Carat and colour
+10
+
+Apart from eggs, what is the other essential ingredient in 'Eggs Florentine'?
+Spinach
+10
+
+Apart from England, which nation had the most carling premiership players representing them?
+Norway
+10
+
+Apart from gottfried leibniz, which famous scientist developed the many techniques of calculus in mathematics?
+Isaac newton
+10
+
+Apart from milk, what is the chief ingredient of lyonnaise sauce?
+Onions
+10
+
+Aphids can give birth how long after being born themselves?
+10 days
+10
+
+Aphrodisiomania is an obsession or crazed desire for ____
+Sex
+10
+
+Apollo was the greek god of ____ and ____
+Archery and prophecy
+10
+
+Apparatus mixing air with petrol vapour in an internal combustion engine?
+Carburettor
+10
+
+Apparatus or specially constructed chamber for maintaining living organisms in an environment that encourages growth?
+Incubator
+10
+
+Apparatus that converts molecules into ions and then separates the ions according to their mass-to-charge ratio?
+Mass spectrometer
+10
+
+Apparatus what was the first chinese dynasty?
+Shang
+10
+
+Apparition or double of living person?
+Doppelganger
+10
+
+Apples are more efficient than ____ in keeping people awake in the mornings
+Caffeine
+10
+
+Apples, not____ , are more efficient at waking up in the morning
+Caffeine
+10
+
+Appleton entered the uk charts at no2 in sept 2002 name the single?
+Fantasy
+10
+
+Approx 800 people died at a firework display in paris in what year?
+1770
+10
+
+Approximately ____ cakes of Ivory Soap had been manufactured by 1990
+30 billion
+10
+
+Approximately ____ of all statistics are made up
+97.35618329%
+10
+
+Approximately ____ of software in China is pirated
+98%
+10
+
+Approximately 1/3 of the earth's land surface is____
+Desert
+10
+
+Approximately 16 Canadians have their ____ removed when not required, everyday
+Appendixes
+10
+
+Approximately how deep are the deepest mines?
+Four km
+10
+
+Approximately how long after the atomic bombs were dropped on Japan did they surrender?
+One week
+10
+
+Approximately how long was the Brachiosaurus, in metres?
+24
+10
+
+Approximately how long was the Diplodocus, in metres?
+27
+10
+
+Approximately how many children did pharaoh ramses ii father?
+One hundred and six
+10
+
+Approximately how many concertos were composed by Antonio Vivaldi?
+500
+10
+
+Approximately how many genes are there on one human DNA molecule?
+80.000
+10
+
+Approximately how many inches are in a metre?
+Thirty nine
+10
+
+Approximately how many inches are there in one metre?
+Thirty nine
+10
+
+Approximately how many pounds of cereal will the average American/Canadian eat every year?
+11.9
+10
+
+Approximately how many species of butterfly are there?
+100,000
+10
+
+Approximately how many spoons are there in the 'new jersey spoon museum'?
+Five
+10
+
+Approximately how many spoons are there in the new jersey spoon museum?
+Five thousand four hundred
+10
+
+Approximately how many times a day does the human heart beat?
+One million
+10
+
+Approximately how many times a minute does lightning strike the earth?
+6000
+10
+
+Approximately how many times a minute does lightning strike the earth?
+Six thousand
+10
+
+Approximately how many times sweeter is saccharin than sucrose?
+Five hundred
+10
+
+Approximately how many years old is the first known written advertisement?
+-- Answer metadata begin
+{
+    "answers": ["3000", "three thousand"]
+}
+-- Answer metadata end
+10
+
+Approximately how much salt is in every gallon of seawater?
+Quarter pound
+10
+
+Approximately how old is the oldest piece of chewing gum?
+Nine thousand years
+10
+
+Approximately how tall was the Brachiosaurus, in metres?
+Twelve
+10
+
+Approximately what percentage of the earth do the oceans cover?
+-- Answer metadata begin
+{
+    "answers": ["Seventy one percent", "seventy one", "71", "71%"]
+}
+-- Answer metadata end
+10
+
+Approximately, 1 out of ____ people suffer from asthma
+25
+10
+
+Approximately, 1 out of 25 people suffer from____
+Asthma
+10
+
+April 1985: After a weekend of tunneling into a Dublin Bank, would-be thieves end up in a women's washroom. What were this gang of robbers known as?
+The Great Drain Robbers 
+10
+
+April 25 is which national holiday in Australia and New Zealand?
+Anzac day
+10
+
+April 25th is what Australian holiday?
+Anzac day
+10
+
+April fool's day came from ____ when the Gregorian calendar was adopted
+France
+10
+
+Aptronyms: best little hairhouse in town?
+Hairdresser
+10
+
+Aptronyms: the booby trap?
+Lingerie
+10
+
+Aquatic Animals: Living up to the ripe old age of 200 years, this is the world's longest-lived marine animal?
+Bowhead Whale
+10
+
+Aquatic Animals: The sailfish is the fastest fish, what are number two and three?
+Marlin and wahoo
+10
+
+Aquatic Animals: This fish has a recorded maximum speed of 112kph (69mph)?
+Sailfish
+10
+
+Aquatic Animals: With a maximum weight of 704kg (1,552lbs), this is the world's heaviest turtle species?
+Pacific Leatherback
+10
+
+Aquatic mollusc with hinged double shell?
+Bivalve
+10
+
+Arab terrorists hijack Italian ocean liner ____ & kill an American passenger
+Achille lauro
+10
+
+Arachnoid refers to what kind of creature?
+Spider
+10
+
+Arachnoid refers to what kind of insect?
+Spider
+10
+
+Araucaria or Chile Pine has a more common name, what is it?
+Monkey puzzle tree
+10
+
+Arborio, patna and basmati are all types of what?
+Rice
+10
+
+Arcade Games?
+Centipede
+10
+
+Arch, which is essentially a central voussoir?
+Keystone
+10
+
+Archaeology: Approximately how many years old is the first known written advertisement?
+Three thousand
+10
+
+Archaeology: In which ruins was the first known written advertisement found?
+Thebes
+10
+
+Archduke francis ferdinand was murdered in 1912, 1913 or 1914?
+1914
+10
+
+Archduke francis ferdinand's murder precipitated which war?
+World war i
+10
+
+Arched or domed recess at the end of a church?
+Apse
+10
+
+Architect of the labyrinth of knossos in crete?
+Daedalus
+10
+
+Architecture: 1970s: In 1974, this became the world's tallest building?
+Sears tower
+10
+
+Architecture: Architectural style developed in the Eastern Empire?
+Byzantine
+10
+
+Architecture: Triangular part of wall at the end of a ridged roof?
+Gable
+10
+
+Architecture: Which famous building was built by Shah Jehan?
+Taj Mahal
+10
+
+Architecture: Which famous building was built by Shih Huang Ti?
+Great Wall of China
+10
+
+Architecture: Which famous million dollar building cost more than a million dollars?
+Sydney Opera House
+10
+
+Are barnacles plant life or animals?
+Animals
+10
+
+Are chemical compounds used to kill or inhibit the growth of infectious organisms?
+Antibiotics
+10
+
+Are most cats right pawed or left pawed?
+Left
+10
+
+Are periwinkles animal, vegetable or mineral?
+Vegetable
+10
+
+Are there any plants that use insects for food?
+Yes
+10
+
+Are there more sheep than people in the Falkland Islands?
+Yes
+10
+
+Are there ski resorts in Hawaii?
+Yes
+10
+
+Are yabbies found in fresh or salt water?
+Fresh
+10
+
+Are you standing or sitting when you put your coccyx on the floor?
+Sitting
+10
+
+Area in which aircraft are forbidden to fly?
+No-fly zone
+10
+
+Area of commerce that encompasses farming or trapping certain furbearing animals, processing their skins for sale to manufacturers of fur garments, & marketing finished garments to retail outlets?
+Fur industry
+10
+
+Arenas what 1,300- foot column of basalt do wyoming indians want to keep people from climbing?
+Devil's tower
+10
+
+Ares, thor and mars are all what?
+Gods of war
+10
+
+Aretha franklin sang 'think' in which film?
+Blues brothers
+10
+
+Argentina what do x and y chromosomes combine in making?
+Males
+10
+
+Ariel is a natural satellite of what planet?
+Uranus
+10
+
+Ariel is a satellite of which planet in the solar system?
+Uranus
+10
+
+Arkansas became a state on June 15 ____
+1836
+10
+
+Arlanda is the airport which serves which European city?
+Stockholm
+10
+
+Arlington is the advanced form of what card game?
+Rummy
+10
+
+Armadillos can walk where?
+Underwater
+10
+
+Armoured glove?
+Gauntlet
+10
+
+Arms in what language was bambi originally published?
+German
+10
+
+Armstrong Short, simple, descriptive poem idealizing country life?
+Idyll
+10
+
+Army officer ranked below major-general?
+Brigadier
+10
+
+Army unit usually of 300-1000 men?
+Battalion
+10
+
+Army what bird has double-plumed feathers?
+Emu
+10
+
+Aromatic bitter bark of S.American tree?
+Angostura
+10
+
+Aromatic gum resin burnt as incense?
+Frankincense
+10
+
+Aromatic plant used for seasoning and salads?
+Coriander
+10
+
+Around 3000 bc, what writing system originated in sumer?
+Cuneiform
+10
+
+Around the perimeter of rome, a 250km labyrinth serves as a graveyard for the early christians is known as the?
+Catacombs
+10
+
+Arriving in New York, who famously said 'I have nothing to declare except my genius'?
+Oscar wilde
+10
+
+Arrow who wrote the 'unfinished symphony'?
+Wolfgang amadeus mozart
+10
+
+Art: 14th Century: What name was given to the dance of a skeleton or corpse leading people to the grave in order of social precedence?
+Danse macabre
+10
+
+Art: 1980s: He used bold line and silhouette techniques to depict the women of the '80s?
+Patrick nagel
+10
+
+Art: 19th Century: French lithographer chronicled repressive French government in mid 1800s?
+Honore daumier
+10
+
+Art: 19th Century: Known for his rendering of ballet dancers?
+Edgar degas
+10
+
+Art: Age at which Patrick Nagel died?
+38
+10
+
+Art: Born in Urbino in 1483, which Italian artist, with Leonardo and Michelangelo, is considered one of the three Masters of the High Renaissance?
+Raphael
+10
+
+Art: By what name is the 16th century Italian painter Jacopo Robusti better known?
+Tintoretto
+10
+
+Art: During the Renaissance, the iTalian Donatello was prominent in which field?
+Sculptor
+10
+
+Art: English painter 1887 - 1976?
+Laurence Stephen Lowry
+10
+
+Art: For which type of paintings are 16th century artists Nicholas Hilliard and Isaac Oliver chiefly known?
+Miniatures
+10
+
+Art: How did racey Emin shock the art world in 1999?
+With her bed
+10
+
+Art: In 1504 Michaelangelo completed the sculptureDavid which other Renaissance artist cast a bronze David in 1433?
+Donatello
+10
+
+Art: In Son of Man (1964) by Rene Magritte, what hides the subjects face?
+An apple
+10
+
+Art: Picasso was almost left for dead when he was born. who saved his life?
+-- Answer metadata begin
+{
+    "answers": ["His uncle", "uncle", "an uncle"]
+}
+-- Answer metadata end
+10
+
+Art: Sculptor Rodin was working on a commision when he died, it has become one of his most famous works what was it?
+The thinker
+10
+
+Art: she is famous for her airbrushed woman-animal art?
+Olivia
+10
+
+Art: Szukalski was this country's greatest artist (until Hitler destroyed his work)?
+Poland
+10
+
+Art: The art of beautiful handwriting?
+Calligraphy
+10
+
+Art: The art of tracing designs and taking impressions of them is ____
+Lithography
+10
+
+Art: The artist Canaletto painted many views of which city?
+Venice
+10
+
+Art: The mona lisa is also known by the original name of?
+La gioconda
+10
+
+Art: The work of which 20th century artist includes many compositions made up of maps,photographs and text such as A Hundred Mile walk?
+Richard long
+10
+
+Art: This statue was found on the Greek island of Melos in 1820?
+Venus de milo
+10
+
+Art: Three main types of Greek columns are Doric, Ionic, and ____
+Corinthian
+10
+
+Art: What Dutch master painted 64 self-portraits?
+Rembrandt
+10
+
+Art: What hobby was developed by the Palmer Paint Company?
+Painting by numbers
+10
+
+Art: What is the art of tracing designs and making impressions of them called?
+Lithography
+10
+
+Art: What was the surname of the Dutch painter Rembrandt?
+Van rijn
+10
+
+Art: Where on Van Goghs The Sunflowers at the National Gallery does the artists signature appear?
+On the vase
+10
+
+Art: Which 17th century Dutch artist painted a famous series of self portraits?
+Rembrandt
+10
+
+Art: Which 20th century artist has been called The King of Schlock Art?
+Morris katz
+10
+
+Art: Which American architect developed geodesic domes?
+Richard buckminster fuller
+10
+
+Art: Which American artist is famous for a picture of a can of beans?
+Andy Warhol
+10
+
+Art: Which artist and self taught anatomist painted racehorses Molly Longlegs and Whistlejacket?
+George stubbs
+10
+
+Art: Which artist featured a cemetary in his home town in his 1923-27 painting The Resurrection:Cookham?
+Stanley spencer
+10
+
+Art: Which artist is known for his silk screen images of Marilyn Monroe?
+Andy warhol
+10
+
+Art: which artist painted 62 self portraits?
+Rembrandt
+10
+
+Art: Which artist painted The Ambassadors, a double portrait of Jean de Dintville and Georges de Selve?
+Hans holbein
+10
+
+Art: Which artists most famous painting was The persistence of Memory?
+Dali
+10
+
+Art: Which northern artist has a new perfroming and visual arts centre in Salford named after him?
+L s lowrie
+10
+
+Art: Which painting by Sir Edwin Landseer is owned by John Dewar &sons and featured on the labels of their whisky bottles?
+The monarch of the glen
+10
+
+Art: Which post impressionist french artist renowned for his paintings of Tahiti was the subject of a Somerset Maugham novel?
+Paul gauguin
+10
+
+Art: Which Renaissance artist painted Mystic Nativity 1500 which is now in the National Gallery, London?
+Sandro botticelli
+10
+
+Art: Which Royal Academician in 1830 slipped one of his own works into the selection panel for an exhibition, only to have it rejected by his colleagues?
+John constable
+10
+
+Art: Which Spanish painter painted the picture known as The Rokeby Venus?
+Velasquez
+10
+
+Art: Which Van gogh painting sold for ?44.38m in May 1990?
+Portrait of Dr Gachet
+10
+
+Art: Who invented painting by numbers?
+Palmer paint company
+10
+
+Art: Who is the sculptor of Newton on the piazza of the new British Library at St Pancras?
+Eduardo paolozzi
+10
+
+Art: Who painted 'Irises'?
+Vincent Van Gogh
+10
+
+Art: who painted self portrait with bandaged ear?
+Vincent van gogh
+10
+
+Art: Who painted Snow storm- steamboat off a Harbours mouth?
+Turner
+10
+
+Art: Who painted the Mona Lisa?
+Leonardo da vinci
+10
+
+Art: Whose painting exhibited in 1874 gave rise to the term Impressionism?
+Claude monet
+10
+
+ART:Which artists most famous painting is The Blue Boy?
+Thomas Gainsborough
+10
+
+ART:Who did a series of paintings of young men and light reflecting on water?
+David Hockney
+10
+
+Artemis was the greek goddess of the ____
+Hunt
+10
+
+Artificial barrier or obstacle on a motor racing course?
+Chicane
+10
+
+Artificial rain was first used near ____, New Hampshire, in 1947 to fight a forest fire
+Concord
+10
+
+Artillery NCO below the rank of sergeant?
+Bombadier
+10
+
+As a result of 'cooking fires' going most of the time in the North American Indian longhouses, Huron Indian women often suffered from what as a result of the fires?
+Blindness
+10
+
+As a result of their wearing high leather collars to protect their necks from sabres, as what were the first u.s. marines known?
+Leathernecks
+10
+
+As at 29 October 2000 who is the Prime Minister of Australia?
+John howard
+10
+
+As at 29 October 2000 who is the Prime Minister of Canada?
+Jean chretien
+10
+
+As clear as a ____
+Bell
+10
+
+As close as two ____ in a pod
+Peas
+10
+
+As cute as a ____
+Button
+10
+
+As fit as a ____
+Fiddle
+10
+
+As large as ____
+Life
+10
+
+As mad as a ____
+Wet hen
+10
+
+As much as 50 gallons of Maple ____ are used to make a single gallon of Maple Sugar
+Sap
+10
+
+As much as 50 gallons of maple sap are used to make a single gallon of maple____
+Sugar
+10
+
+As Nick Park drove to the 1996 Oscar ceremony on a Wallace and Gromit-style red motorcycle and sidecar, why was he cautioned by the police?
+Not wearing a crash helmet
+10
+
+As of 1983, an average of ____ Christmas cards were sent annually in the United States
+3 billion
+10
+
+As of 1990, who held the major record for stolen bases?
+Ricky Henderson
+10
+
+As of 2000, how old is motor trend magazine?
+50
+10
+
+As of july 1, 2000, how many people were in the world?
+6,080,299,577 
+10
+
+As of November 2000, which golfer has won the most prize money in international competition?
+Greg norman
+10
+
+As of the year 2000, how old is Motor Trend Magazine?
+50
+10
+
+As pale as a ____
+Ghost
+10
+
+As part of the Queen Mothers birthday pageant in Aug 2000, which furry creatures marched past in Guardsmens uniforms?
+The wombles
+10
+
+As pretty as a ____
+Picture
+10
+
+As seen from the Earth, what is the brightest star in the constellation Scorpio?
+Antares
+10
+
+As seen from the Earth, what is the brightest star in the constellation Taurus?
+Aldebaran
+10
+
+As sick as a ____
+Dog
+10
+
+As sly as a ____
+Fox
+10
+
+As the Pacific plate moves under its coast, the ____ Island of New Zealand is getting larger
+North
+10
+
+As to the origin of his alleged powers, Uri Geller maintains that they come from the distant planet of?
+Hoova
+10
+
+As tough as ____
+Nails
+10
+
+As what did al capone's business cards identify him?
+Furniture dealer
+10
+
+As what did Everton Weekes become Barbados' champion after retiring as his countrys cricket captain?
+Bridge
+10
+
+As what did h.g wells refer to adolf hitler?
+Certifiable lunatic
+10
+
+As what did kotex first manufactured in wwi?
+Bandages
+10
+
+As what did Sir Walter Raleigh become famous?
+Explorer
+10
+
+As what did the ancient greeks consider onions?
+Aphrodisiac
+10
+
+As what does superstition say that peacock feathers shouldn't be used?
+House decorations
+10
+
+As what is 'cape town' also known?
+Kaapstad
+10
+
+As what is 'danny boy' also known?
+Londonderry air
+10
+
+As what is 'south west township' known in south africa?
+Soweto
+10
+
+As what is 7-up also known?
+Un-cola
+10
+
+As what is a camelopard also known?
+Giraffe
+10
+
+As what is a giraffe also known?
+Camelopard
+10
+
+As what is a gnu also known?
+Wildebeest
+10
+
+As what is a moose also known?
+Algonquin
+10
+
+As what is a swimming pool also known?
+Natatorium
+10
+
+As what is a wildebeest also known?
+Gnu
+10
+
+As what is America online known?
+Aol
+10
+
+As what is arizona known?
+Grand canyon state
+10
+
+As what is Beethoven's piano sonata in C-sharp minor more commonly known?
+The moonlight sonata
+10
+
+As what is boston also known?
+Beantown
+10
+
+As what is British honduras now known?
+Belize
+10
+
+As what is carol anne duffy best know?
+Poet
+10
+
+As what is ceylon now known?
+Sri lanka
+10
+
+As what is Cognoscenti v. Intelligentsia better known?
+Hanmster dance
+10
+
+As what is Dutch guiana now known?
+Surinam
+10
+
+As what is east pakistan now known?
+Bangladesh
+10
+
+As what is frank thomas known?
+Big hurt
+10
+
+As what is garlic also known?
+Stinky rose
+10
+
+As what is hungary also known?
+Magyar
+10
+
+As what is infantile paralysis commonly?
+Polio
+10
+
+As what is Karim Al-Hussain better known?
+Aga khan
+10
+
+As what is miami also known?
+Little havana
+10
+
+As what is milan considered?
+Fashion capital
+10
+
+As what is minus forty degrees celsius the same?
+Minus forty degrees fahrenheit
+10
+
+As what is minus forty degrees fahrenheit the same?
+Minus forty degrees celsius
+10
+
+As what is new jersey also known?
+Garden state
+10
+
+As what is niagara falls also known?
+Honeymoon capital
+10
+
+As what is pyrites commonly known?
+Fools gold
+10
+
+As what is saccharin mainly used?
+Sweetener
+10
+
+As what is san francisco known?
+Queen of the pacific
+10
+
+As what is south west africa now known?
+Namibia
+10
+
+As what is Switzerland also known?
+Helvetia
+10
+
+As what is the 'londonderry air' also known?
+Danny boy
+10
+
+As what is the 9th century kingdom of Alba now known?
+Scotland
+10
+
+As what is the bowery known?
+Street of forgotten men
+10
+
+As what is the devonian period also known?
+Age of fish
+10
+
+As what is the exclamation point known to mathematicians?
+Factoria
+10
+
+As what is the glue on israeli postage stamps certified?
+Kosher
+10
+
+As what is the Gulf of Gascony now known?
+The bay of biscay
+10
+
+As what is the international criminal police known?
+Interpol
+10
+
+As what is the mississippi river known?
+Father of waters
+10
+
+As what is the most frequently played segment of Wagners Lohengrin known?
+Here comes the bride
+10
+
+As what is the painting 'arrangement in grey and black #1' known?
+Whistler's mother
+10
+
+As what is the thyroid cartilage also known?
+Adam's apple
+10
+
+As what is the tree with the botanical name 'Betula' better known?
+Birch
+10
+
+As what is tibet also known?
+Roof of the world
+10
+
+As what is Washington also known?
+Evergreen state
+10
+
+As what was 'the New York times' formerly known?
+New york daily news
+10
+
+As what was 'the strip' in las vegas designated?
+Official scenic byway
+10
+
+As what was Anne Bonney notorious in the 18th century?
+Pirate
+10
+
+As what was bangladesh formerly known?
+East pakistan
+10
+
+As what was Belize was formerly known?
+British honduras
+10
+
+As what was cleopatra also known?
+Serpent of the nile
+10
+
+As what was john f. kennedy airport formerly known?
+Idlewild
+10
+
+As what was kotex first manufactured in wwi?
+Bandages
+10
+
+As what was Liberace famous?
+Pianist
+10
+
+As what was lincoln park in Chicago originally used?
+Cemetary
+10
+
+As what was louis xiv also known?
+Sun king
+10
+
+As what was Sir Matthew Baillie Begbie known as in the late 1800's?
+Hanging judge
+10
+
+As what was surinam formerly known?
+Dutch guiana
+10
+
+As what was the 19th century Prime Minister Arthur Wellesley better known?
+Duke of wellington
+10
+
+As what was the taj mahal built?
+Tomb
+10
+
+As what was tomato ketchup once sold?
+Medicine
+10
+
+As what was veronica lake known?
+Peekaboo girl
+10
+
+As what were 'the supremes' originally known?
+Primettes
+10
+
+As who is o'shea jackson known?
+Ice cube
+10
+
+As who is terry bollea known?
+Hulk hogan
+10
+
+As who is the frankish ruler Charles the great better known?
+Charlemagne
+10
+
+As who, was Lev Davidovitch Bronstein better known?
+Leon trotsky
+10
+
+As whom is marvin lee aday better know as?
+Meatloaf
+10
+
+As whom was fitness expert Derrick Evans better known?
+Mr motivator
+10
+
+As whom was Jan Ludvik Hoch better known?
+Robert maxwell
+10
+
+Ascorbic acid & sodium ascorbate are the most common forms of which vitamin?
+Vitamin c
+10
+
+Ashord/V. Simpson)?
+Whitney houston
+10
+
+Ashton Kutcher's famous older wife is whom?
+Demi Moore
+10
+
+Aside from Brussels, What other city contains the EU's main governing bodies?
+Strasbourg
+10
+
+Asimov Anthony: In the Xanth series, what is our world called?
+Mundania
+10
+
+Asimov Anthony: Name the third Apprentice Adept book?
+Juxtaposition
+10
+
+Asimov Anthony: To date there are ____ Xanth novels
+18
+10
+
+Asimov Anthony: What did the Cosmic AC say after reversing entropy?
+Let there be light
+10
+
+Asimov Anthony: Which drunk driver victim did Anthony incorporate into Xanth?
+Jenny
+10
+
+Asimov Anthony: Which of Humfrey's wives was a demoness?
+Dana
+10
+
+Asimov Anthony: Who (FULL name) did Anthony model Humfrey after?
+Lester del rey
+10
+
+Asimov Anthony: Who is Grundy's daughter?
+Surprise
+10
+
+Asimov Anthony: Who is Ivy's twin sister?
+Ida
+10
+
+Asparagus is a member of which family?
+Lily
+10
+
+Assam, darjeeling and oolong are all types of what?
+Tea
+10
+
+Associated with 'blues' music, which instrument is nicknamed a 'mississippi saxophone'?
+Harmonica
+10
+
+Association who was the norse goddess of love and fertility?
+Freya
+10
+
+Assuming ____ was in front, there are 40320 ways to rearrange the other eight reindeer
+Rudolph
+10
+
+Assuming Rudolph was in front, there are ____ ways to rearrange the other eight reindeer
+40320
+10
+
+Assuming Rudolph was in front, there are 40320 ways to rearrange the other ____ reindeer
+Eight
+10
+
+Astology - Who was born when Pluto, the astrological sign for death, was directly above Dallas, Texas?
+John F. Kennedy
+10
+
+Astrological Signs?
+Sagittarius
+10
+
+Astrology: Our galaxy is commonly known called ____
+Milky way
+10
+
+Astrology: The moon is exalted when it is in which sign?
+Pisces
+10
+
+Astrology: the ram is?
+Aries
+10
+
+Astrology: What is Julia Robert's astrological sun sign?
+Scorpio
+10
+
+Astrology: What is the astrological sign for death?
+Pluto
+10
+
+Astrology: What is the only sign in the zodiac which doesn't represent a living thing?
+Libra
+10
+
+Astrology: What is the ruling planet of the sign Taurus?
+Venus
+10
+
+Astrology: What is the zodiac sign for july 15?
+Cancer
+10
+
+Astrology: What is the Zodiac sign of the archer?
+Sagittarius
+10
+
+Astrology: What is the Zodiac sign of the bull?
+Taurus
+10
+
+Astrology: What is the Zodiac sign of the crab?
+Cancer
+10
+
+Astrology: What is the Zodiac sign of the fish?
+Pisces
+10
+
+Astrology: What is the Zodiac sign of the goat?
+Capricorn
+10
+
+Astrology: What is the Zodiac sign of the lion?
+Leo
+10
+
+Astrology: What is the Zodiac sign of the ram?
+Aries
+10
+
+Astrology: What is the Zodiac sign of the scales?
+Libra
+10
+
+Astrology: What is the Zodiac sign of the scorpion?
+Scorpio
+10
+
+Astrology: What is the Zodiac sign of the twins?
+Gemini
+10
+
+Astrology: What is the Zodiac sign of the virgin?
+Virgo
+10
+
+Astrology: What is the Zodiac sign of the water carrier?
+Aquarius
+10
+
+Astrology: What is the zodiacal symbol for Capricorn?
+Goat
+10
+
+Astrology: What is the zodiacal symbol for Pisces?
+Fish
+10
+
+Astrology: What is the zodiacal symbol for Sagittarius?
+Archer
+10
+
+Astrology: What is the zodiacal symbol for Virgo?
+Virgin
+10
+
+Astrology: What planet rules beauty and romance?
+Venus
+10
+
+Astrology: What was the last age before the Age of Aquarius?
+Age of pisces
+10
+
+Astrology: Which constellation is represented by a goat?
+Capricorn
+10
+
+Astrology: Which month has a diamond as a birthstone?
+April
+10
+
+Astrology: Which sign in the zodiac is said to be the most powerful?
+Scorpio
+10
+
+Astronaut Buzz Aldrinn was the second man to walk on the moon, his mother's maiden name was quirky, what was it?
+Moon
+10
+
+astronomical name for the big dipper?
+Ursa major
+10
+
+Astronomy: 1980s: ____ discovers 2 partial rings of Neptune in 1989
+Voyager 2
+10
+
+Astronomy: 19th Century: In 1877 ____ Hall discovers Mars's moon Deimos
+Asaph
+10
+
+Astronomy: 19th Century: In 1877 Asaph ____ discovers Mars's moon Deimos
+Hall
+10
+
+Astronomy: 19th Century: In 1877 Asaph Hall discovers ____ 's moon Deimos
+Mars
+10
+
+Astronomy: 19th Century: In 1877 Asaph Hall discovers Mars's moon ____
+Deimos
+10
+
+Astronomy: 99% of the solar system mass is concentrated in the____
+Sun
+10
+
+Astronomy: A heavenly body moving under the attraction of the Sun and consisting of a nucleus and a tail is a(n) ____
+Comet
+10
+
+Astronomy: As what is Polaris also known?
+North Star
+10
+
+Astronomy: As what is the North Star also known?
+Polaris
+10
+
+Astronomy: Does Uranus have an aurora?
+Yes
+10
+
+Astronomy: From 1979 until 2000 the most distant planet from the earth was ____
+Neptune
+10
+
+Astronomy: How many months does it take the moon to revolve around the Earth?
+One
+10
+
+Astronomy: How many planets are there in our solar system?
+Eight
+10
+
+Astronomy: How many planets are there in our solar system?
+Eight
+10
+
+Astronomy: If you're in the northern hemisphere, Polaris, the North Star, can be found by looking which direction?
+North
+10
+
+Astronomy: Mars is ____ kilometres in diameter
+6,790
+10
+
+Astronomy: Mars is ____ miles in diameter
+4,219
+10
+
+Astronomy: Mars is ____ million kilometres from the Sun
+228
+10
+
+Astronomy: Mars is sometimes called the ____ planet
+Red
+10
+
+Astronomy: Mars takes ____ Earth days to circle the sun
+687
+10
+
+Astronomy: Mythology: What gods are the planets of our solar system named after?
+Roman gods
+10
+
+Astronomy: Name the largest planet in the solar system?
+Jupiter
+10
+
+Astronomy: Name the second-largest planet in the solar system?
+Saturn
+10
+
+Astronomy: Of all the planets in our Solar System, which is the largest?
+Jupiter
+10
+
+Astronomy: Our galaxy is commonly known as the ____
+Milky Way
+10
+
+Astronomy: Planets?
+Uranus
+10
+
+Astronomy: Saturday is named after which planet?
+Saturn
+10
+
+Astronomy: The Big Dipper is part of what constellation?
+Ursa major
+10
+
+Astronomy: The fourth planet from the sun is ____
+Mars
+10
+
+Astronomy: The name for the group of stars which form a hunter with a club and shield is ____
+Orion
+10
+
+Astronomy: The North Star is also known as ____
+Polaris
+10
+
+Astronomy: The planet closest to the sun is ____
+Mercury
+10
+
+Astronomy: The spiral galaxy nearest ours is the ____ galaxy
+Andromeda
+10
+
+Astronomy: The spiral galaxy nearest ours is the ____
+Andromeda
+10
+
+Astronomy: The tides on the earth's oceans are actually created by gravitational pull from the ____
+Moon
+10
+
+Astronomy: There are ____ planets in this solar system
+9
+10
+
+Astronomy: This cluster of stars is also known as the Seven Sisters?
+Pleiades
+10
+
+Astronomy: This comet appears every 76.3 years?
+Comet Halley
+10
+
+Astronomy: This comet appears every 76.3 years?
+Halley
+10
+
+Astronomy: This planet's diameter is most equal to that of the earth's?
+Venus
+10
+
+Astronomy: Triple star system, also called rigil kent, in the constellation Centaurus?
+Alpha centauri
+10
+
+Astronomy: Venus has how many moons?
+0
+10
+
+Astronomy: Venus is ____ kilometres in diameter
+12,000
+10
+
+Astronomy: Venus is ____ miles in diameter
+7,456
+10
+
+Astronomy: Venus is ____ million kilometres from the Sun
+108
+10
+
+Astronomy: Venus takes nearly ____ Earth days to circle the Sun
+225
+10
+
+Astronomy: what cluster of stars is also known as the plow or the wagon?
+Big dipper
+10
+
+Astronomy: What constellation is represented by scales?
+Libra
+10
+
+Astronomy: What is the astronomical name for a group of stars?
+Constellation
+10
+
+Astronomy: What is the fifth planet in our solar system?
+Jupiter
+10
+
+Astronomy: What is the frequency of Halley's Commets return to earth orbit?
+76 years
+10
+
+Astronomy: What is the full moon nearest the autumnal equinox?
+Harvest moon
+10
+
+Astronomy: What is the largest of the asteroids in our solar system?
+Ceres
+10
+
+Astronomy: What is the largest planet in our solar system?
+Jupiter
+10
+
+Astronomy: What is the largest planetary moon in our solar system?
+Ganymede
+10
+
+Astronomy: What is the meaning of the name of the constellation Aquila?
+Eagle
+10
+
+Astronomy: What is the meaning of the name of the constellation Auriga?
+Charioteer
+10
+
+Astronomy: What is the meaning of the name of the constellation Camelopardalis?
+Giraffe
+10
+
+Astronomy: What is the meaning of the name of the constellation Canes Venatici?
+Greyhounds
+10
+
+Astronomy: What is the meaning of the name of the constellation Cassiopeia?
+Cassiopeia
+10
+
+Astronomy: What is the meaning of the name of the constellation Cepheus?
+Cepheus
+10
+
+Astronomy: What is the meaning of the name of the constellation Coma Berenices?
+Berenice's Hair
+10
+
+Astronomy: What is the meaning of the name of the constellation Corona Borealis?
+Northern Crown
+10
+
+Astronomy: What is the meaning of the name of the constellation Cygnus?
+Swan
+10
+
+Astronomy: What is the meaning of the name of the constellation Delphinus?
+Dolphin
+10
+
+Astronomy: What is the meaning of the name of the constellation Draco?
+Dragon
+10
+
+Astronomy: What is the meaning of the name of the constellation Equuleus?
+Colt
+10
+
+Astronomy: What is the meaning of the name of the constellation Lacerta?
+Lizard
+10
+
+Astronomy: What is the meaning of the name of the constellation Leo Minor?
+Lesser Lion
+10
+
+Astronomy: What is the meaning of the name of the constellation Lyra?
+Lyre
+10
+
+Astronomy: What is the meaning of the name of the constellation Ophiuchus?
+Serpent Bearer
+10
+
+Astronomy: What is the meaning of the name of the constellation Sagitta?
+Arrow
+10
+
+Astronomy: What is the meaning of the name of the constellation Serpens?
+Serpent
+10
+
+Astronomy: What is the meaning of the name of the constellation Triangulum?
+Triangle
+10
+
+Astronomy: What is the meaning of the name of the constellation Ursa Major?
+Great Bear
+10
+
+Astronomy: What is the meaning of the name of the constellation Ursa Minor?
+Little Bear
+10
+
+Astronomy: What is the meaning of the name of the constellation Vulpecula?
+Fox
+10
+
+Astronomy: What is the most essential tool in astronomy?
+Telescope
+10
+
+Astronomy: What is the most widely accepted theory for the creation of the universe?
+Big Bang
+10
+
+Astronomy: What is the name for a group of stars?
+Constellation
+10
+
+Astronomy: What is the name for the theoretical end-product of the gravitational collapse of a massive star?
+Black hole
+10
+
+Astronomy: What is the name given to a group of stars?
+Constellation
+10
+
+Astronomy: What is the name of brightest asteroid visible from earth?
+Vesta
+10
+
+Astronomy: What is the ocean of air around the earth called?
+Atmosphere
+10
+
+Astronomy: What is the only day named after a planet?
+Saturday
+10
+
+Astronomy: What is the proper name for falling stars?
+Meteors
+10
+
+Astronomy: What is the small irregular white cloud that zips around Neptune approximately every 16 hours called?
+Scooter
+10
+
+Astronomy: What is the technical name for 'falling stars'?
+Meteors
+10
+
+Astronomy: What is the term for the path followed a by a small body around a massive body in space?
+Orbit
+10
+
+Astronomy: What is the term for the path followed by a body in space?
+Orbit
+10
+
+Astronomy: What is your zodiac sign if you are born on August 9th?
+Leo
+10
+
+Astronomy: What is your zodiac sign if you are born on july 15?
+Cancer
+10
+
+Astronomy: What is your zodiac sign if you are born on July 15th?
+Cancer
+10
+
+Astronomy: What is your zodiac sign if you're born on New Years Day?
+Capricorn
+10
+
+Astronomy: What phenomenon is caused by the gravitational attraction of the moon?
+Tide
+10
+
+Astronomy: What phenomenon is caused by the gravitational attraction of the moon?
+Tides
+10
+
+Astronomy: What planet boasts the Great Red Spot?
+Jupiter
+10
+
+Astronomy: What planet is nearest the sun?
+Mercury
+10
+
+Astronomy: What's the nearest galaxy to our own?
+Andromeda
+10
+
+Astronomy: When does a full moon rise?
+Sunset
+10
+
+Astronomy: Where is the largest volcano in our solar system?
+Mars
+10
+
+Astronomy: Which is the largest planet in our solar system?
+Jupiter
+10
+
+Astronomy: Which is the only planet that rotates clockwise?
+Venus
+10
+
+Astronomy: Which meteor shower occurs on the 10th October?
+Draconids
+10
+
+Astronomy: Which meteor shower occurs on the 12th August?
+Perseids
+10
+
+Astronomy: Which meteor shower occurs on the 14th November?
+Andromedids
+10
+
+Astronomy: Which meteor shower occurs on the 16th November?
+Leonids
+10
+
+Astronomy: Which meteor shower occurs on the 21st April?
+Lyrids
+10
+
+Astronomy: Which meteor shower occurs on the 21st October?
+Orionids
+10
+
+Astronomy: Which meteor shower occurs on the 4th May?
+Eta Aquarids
+10
+
+Astronomy: Which meteor shower occurs on the 4th November?
+Taurids
+10
+
+Astronomy: Which of the planets has the shortest year?
+Mercury
+10
+
+Astronomy: Which planet does the moon Callisto belong to?
+Jupiter
+10
+
+Astronomy: Which planet in our solar system orbits closest to the sun?
+Mercury
+10
+
+Astronomy: Which planet is covered in thick clouds of carbon dioxide and sulphuric acid?
+Venus
+10
+
+Astronomy: Which planet is known as the red planet?
+Mars
+10
+
+Astronomy: Which planet was discovered in 1930?
+Pluto
+10
+
+Astronomy: Which star is nearest the Earth?
+Sun
+10
+
+Astronomy: Who coined the theory that the earth revolves around the sun?
+Nicolaus Copernicus
+10
+
+Astronomy: Who discovered the four largest moons of Jupiter?
+Galileo
+10
+
+Astronomy: Who invented the telescope?
+Galileo Galilei
+10
+
+Asuncion is the capital of ____
+Paraguay
+10
+
+At 12 years old, an ____ named Ernest Loftus made his first entry in his diary and continued everyday for 91 years
+African
+10
+
+At 12 years old, an African named ____ made his first entry in his diary and continued everyday for 91 years
+Ernest loftus
+10
+
+At 12 years old, an African named Ernest Loftus made his first entry in his diary and continued everyday for ____ years
+91
+10
+
+At 30 miles long, in which north American city would you find figueroa street?
+Los angeles
+10
+
+At 45, what did boxer, George Foreman win?
+Heavyweight championship
+10
+
+At 45, what did george foreman win?
+Heavyweight championship
+10
+
+At 7900 feet, is the deepest canyon in North America, deeper even than the Grand Canyon?
+Hell's Canyon
+10
+
+At 9,970,610 km2, Canada is the world's second-largest ____
+Country
+10
+
+At a fair in Maine, a boy spit a ____ seed 38 ft
+Watermelon
+10
+
+At a fair in Maine, a boy spit a watermelon seed ____ ft
+38
+10
+
+At a glance, the Celsius scale makes more sense than the Fahrenheit scale for temperature measuring. But its creator, Anders Celsius, was an oddball scientist. When he first developed his scale, he made freezing 100 degrees and boiling 0 degrees, or upside down. No one dared point this out to him, so fellow scientists waited until Celsius died to change the scale. True or False?
+True
+10
+
+At a jet plane's speed of ____ miles per hour, the length of the plane becomes one atom shorter than its original length
+620
+10
+
+At age 16, ____ was a corn inspector
+Confucius
+10
+
+At age 16, Confucius was a ____ inspector
+Corn
+10
+
+At age____ , Confucius was a corn inspector
+16
+10
+
+At andrew Jackson's funeral in 1845, his pet parrot had to be removed. Why?
+Because it was swearing
+10
+
+At any given time, there are ____ thunderstorms in progress over the earth's atmosphere
+1,800
+10
+
+At any given time, there are 1,800 ____ going on around the world
+Rainstorms
+10
+
+At birth a ____ is smaller than a mouse and weighs about four ounces
+Panda
+10
+
+At birth a panda is smaller than a mouse and weighs about ____ ounces
+Four
+10
+
+At darts, what is a score of 26 called?
+Bed & breakfast
+10
+
+At full tilt, Pumas can leap a distance of about ____ feet
+Sixty
+10
+
+At funerals in ancient ____, when the lid of the coffin was closed, mourners took a few steps backward lest their shadows get caught in the box
+China
+10
+
+At how many revolutions per minute does a long play record turn?
+Thirty three and a third
+10
+
+At latitude ____ degrees south you can sail all the way around the world
+Sixty
+10
+
+At least how many times a year does one blink?
+Ten million
+10
+
+At Mcdonalds in New Zealand, what kind of pies do they serve instead of cherry ones?
+Apricot
+10
+
+At one time, 6 white beads of this Indian currency were worth one penny?
+Wampum
+10
+
+At present, the tallest (twin) tower office block in the world is?
+Petronas towers
+10
+
+At room temperature, the average air molecule travels at the speed of a ____ bullet
+Rifle
+10
+
+At the 1991 World championships in Tokyo, which British hurdler ran the last leg of the 4x400 relay to win gold for Britain?
+Kris akabusi
+10
+
+At the age of 5 a filly becomes a ____
+Mare
+10
+
+At the bar: what do you get when you mix tequila, triple sec and lime juice?
+A margarita
+10
+
+At the battle of antietam, who commanded the xii corps for the union side?
+Joseph mansfield
+10
+
+At the beginning of a game of draughts how many pieces does each player have?
+Twelve
+10
+
+At the end of 'Planet of the Apes' what protruded from the rocks?
+Statue of Liberty
+10
+
+At the end of which siege in 1954 were the French finally beaten in Vietnam?
+Dien bien phu
+10
+
+At the equator the Earth spins at about ____ miles per hour
+1,000
+10
+
+At the f-1 grand prix race which killed aryton senna, which other driver suffered the same cruel fate?
+Ratzenberger
+10
+
+At the height of inflation in Germany in the early 1920s, one U.S. dollar was equal to ____ German marks
+4 quintillion
+10
+
+At the height of its power, in 400 B.C., the Greek city of ____ had 25,000 citizens and 500,000 slaves
+Sparta
+10
+
+At the height of its power, in 400 b.c., this greek city had 25,000 citizens and 500,000 slaves?
+Sparta
+10
+
+At the height of the teddy bear's huge popularity in the early 1900s, there is record of one Michigan priest who publicly denounced the teddy as an insidious weapon. He claimed that the stuffed toy would lead to the destruction of the instincts of ____ and eventual racial suicide
+Motherhood
+10
+
+At the Montreal Olympics, Nelli Kim was judged to have given a perfect performance in the floor exercise and which other discipline?
+Vault
+10
+
+At the nearest point , Russia and America are less than ____ km apart
+Four
+10
+
+At the outbreak of World War I, the American ____ consisted of only fifty men
+Air force
+10
+
+At the tip of which continent is Cape Horn?
+South America
+10
+
+At the turn of the last millennium, ____ Ireland had the largest slave market in the world, run by the Vikings
+Dublin
+10
+
+At the turn of the last millennium, Dublin Ireland had the largest ____ market in the world, run by the Vikings
+Slave
+10
+
+At the turn of the last millennium, dublin Ireland had the largest slave market in the world, run by the____
+Vikings
+10
+
+At the turn of the last____ , Dublin Ireland had the largest slave market in the world, run by the Vikings
+Millennium
+10
+
+At twelve noon GMT on London what time is it in Aukland, New Zealand?
+Midnight
+10
+
+At what age did Bill Gates write his first software program?
+Thirteen
+10
+
+At what age did robbie williams join take that?
+Sixteen
+10
+
+At what age does a filly become a mare and a colt become a horse?
+Five years
+10
+
+At what airport did Israeli commandos free 103 hostages in 1976?
+Entebbe
+10
+
+At what angle above the horizon must the sun be to create a rainbow?
+Forty degrees
+10
+
+At what atoll in the South Pacific did the U S do bomb nuclear bomb test in 1946?
+Bikini atoll
+10
+
+At what do girasol plants look?
+The sun
+10
+
+At what does singapore use the colors blue and yellow to ward off evil spirits?
+Funerals
+10
+
+At what does singapore use the colours blue and yellow to ward off evil spirits?
+Funerals
+10
+
+At what famed london studio was part of graceland waxed in?
+Abbey road studio
+10
+
+At what law firm could you find the defenders?
+Preston & preston
+10
+
+At what point in a meal would you serve potage?
+Start
+10
+
+At what sport did Italian Giacomo Agostini compete?
+Motor cycling
+10
+
+At what temperature in celcius degrees does alcohol freeze?
+-130
+10
+
+At what temperature should 'rice wine' be served?
+Warm
+10
+
+At what time did the hiroshima bomb detonate?
+8:15 am
+10
+
+At what weight did Frank Bruno win a boxing world championship title?
+Heavyweight
+10
+
+At which address will you find the White House?
+1600 pennsylvania avenue
+10
+
+At which American University were four students shot dead , while protesting against the Vietnam War?
+Kent
+10
+
+At which American University were four students shot dead in 1970 whilst protesting against the Vietnam War?
+Kent state, ohio
+10
+
+At which battle did General James Scarlett lead the Charge of the heavy Brigade?
+Balaclava
+10
+
+At which battle did the charge of the light brigade take place?
+Baraclava
+10
+
+At which battle did the English prince edward the black crush the french army, capturing the french king and his nobles?
+Poitiers
+10
+
+At which battle of 1513 was King James IV of Scotland killed?
+Flodden
+10
+
+At which battle was James Duke of Monmouth defeated in 1685 as he tried to seize the English throne?
+Sedgemoor
+10
+
+At which city would you find the Abbeydale Industrial Hamlet, Stone's Brewery and Midland railway station?
+Sheffield
+10
+
+At which city would you find the National Water Sports Centre, Hardy Hanson Brewery and Ye Olde Trip to Jerusalem Inn?
+Nottingham
+10
+
+At which conference in 1944 was the International Monetary System, including the I.M.F. and the World Bank, set up?
+Bretton woods
+10
+
+At which Grand Prix circuit did Ayrton Senna lose his life?
+San marino
+10
+
+At which grand prix did nikki lauda make his comback?
+Italian
+10
+
+At which high school did mr novak teach?
+Jefferson high
+10
+
+At which important event did mr.s.r bastard oficiate in 1878?
+The f a cup final
+10
+
+At which lengthy battle did 10,000 athenians defeat 20,000 persians?
+Marathon
+10
+
+At which meeting did allied leaders complete plans for the defeat for Germany in ww2 and the foundation of the united nations?
+Yalta conference
+10
+
+At which Olympic games did Olga Korbut win three gold medals?
+Munich
+10
+
+At which olympic games did steve redgrave win his first gold medal?
+Los angeles
+10
+
+At which olympics did zola budd accidentally trip mary decker?
+1984
+10
+
+At which Paris terminus does the Eurostar train from London arrive?
+Gare du nord
+10
+
+At which school did Ken Barlow teach?
+Bessie street
+10
+
+At which sport did Yvonne McGregor win a bronze medal for Great Britain at the Sydney Olympics?
+Cycling
+10
+
+At which sport do Oxford and Cambridge Universities compete for the Bowring Bowl?
+Rugbyunion
+10
+
+At which town did Livingstone and Stanley meet in 1871?
+Ujiji
+10
+
+At which university did spike lee teach?
+Harvard
+10
+
+At which university did the poet philip larkin work as a librarian?
+Hull
+10
+
+At which weight was boxer Freddie Mills World Champion?
+Light heavyweight
+10
+
+At whose court was merlin the wizard?
+King arthur
+10
+
+Athens is the capital of ____
+Greece
+10
+
+Athletics: who won a consecutive 122 races at 400m hurdles between 1977 - 1987?
+Edwin moses
+10
+
+Athousand miles name the artist?
+Vanessa carlton
+10
+
+Athropod with worm like body and many legs?
+Centipede
+10
+
+Atilla the Hun is thought to have been a?
+Dwarf
+10
+
+Atlanta is the capital of ____
+Georgia
+10
+
+Atmosphere: What is the stratosphere immediately above?
+Troposphere
+10
+
+Atmosphere: What is the troposphere immediately lower than?
+Stratosphere
+10
+
+Attend a party uninvited?
+Gatecrash
+10
+
+Attribution of human form or qualities to that which is not human?
+Anthropomorphism
+10
+
+Auctioneer's or judge's hammer?
+Gavel
+10
+
+August 2002, Abs reached the UK top ten with this song?
+What you got
+10
+
+August 2002, Gareth Gates had a second top ten uk hit with this song?
+Anyone of us
+10
+
+August 2002, he made it! Darius' no 1 UK hit?
+Colourblind
+10
+
+August 2002, no 2 uk hit for the Sugarbabes?
+Roundhouse
+10
+
+August 2002, Shakiras 2nd UK top 20 record?
+Underneath your clothes
+10
+
+August 2002, Uk top 20 hit for the S Club Juniors?
+Automatic high
+10
+
+August 2002, who had a no 1 UK hit with Crossroads?
+Blazin' squad
+10
+
+August 2002, Who had a top 10 uk hit with Just the Way?
+Milky
+10
+
+August 2002, who had a top ten uk hit with a cover of Madonnas Like a prayer?
+Madhouse
+10
+
+August 2002, Who had a top ten uk hit with Starry eyed?
+Oakenfold
+10
+
+August 2002, who had a uk top 20 hit with I'm alive?
+Celine Dion
+10
+
+August is the month when most ____ 's are born
+Baby
+10
+
+Auguste Rodin was famous in which field of the arts?
+Sculpture
+10
+
+Aurora borealis are more commonly referred to as what?
+Northern lights
+10
+
+Aussie rules, a game popular in Australia, is also played in a similar form in Ireland, known as?
+Gaelic football
+10
+
+Austin is the capital of what state?
+Texas
+10
+
+Australia is the richest source of mineral ____ in the world
+Sands
+10
+
+Australia was originally created to serve as a British ____ colony
+Penal
+10
+
+Australia: which Australian state would you find the great ocean road?
+Victoria
+10
+
+Australia: which little bird would you go to see at phillip island (victoria)?
+Fairy penguin
+10
+
+Australia: which river flows through the city of melbourne?
+Yarra river
+10
+
+Australia's oldest university?
+Sydney university
+10
+
+Australia's original name contained which words?
+Terra incognita
+10
+
+Austria is a leading port on which river?
+Danube
+10
+
+Authority charged with the disposition of legal actions involving children?
+Juvenile court
+10
+
+Average age of top ____ executives in 1994: 49.8 years
+Gm
+10
+
+Average age of top GM executives in 1994: ____ years
+49.8
+10
+
+Avery Laser Labels are ____ after company founder R. Stanton Avery
+Named
+10
+
+Aviation: How many 'Air Force One'(s) are there?
+Two
+10
+
+Aviation: This airline was founded on July 13, 1925 as Western Air Express, and is now known today as ____
+TWA
+10
+
+Aviation: This airline, with the Douglas Aircraft Co., developed the first modern, efficient airliner - the DC-1?
+TWA
+10
+
+Aviation: This was the first airline to fly the Atlantic in scheduled service using the Doppler radar system?
+TWA
+10
+
+Aviation: This was the first airline to install a dynamometer-type engine test cell, resulting in greater accuracy and safety at less cost?
+TWA
+10
+
+Aviation: This was the first airline to offer low-cost air transportation between the United States and Europe?
+TWA
+10
+
+Aviation: This was the first airline to require the its pilots have a flight plan, flight log, flight clearance, and cockpit check lists?
+TWA
+10
+
+Aviation: Who built the spruce goose?
+Howard hughes
+10
+
+Axe with an arched blade at right angle to handle?
+Adze
+10
+
+Badlands is a feature of which American state?
+South dakota
+10
+
+Baldies real and fictional (shaved, balding or bald) full names?
+Sinead O'Connor
+10
+
+Ball and ____
+Chain
+10
+
+Ballet: Ballet sensation rudolf nureyev leaps over the ____ to defect to the west
+Iron curtain
+10
+
+Ballet: what is a leap from one foot to another?
+Jete
+10
+
+Ballet: what is the main body of ballet dancers?
+Corps de ballet
+10
+
+Ballet: what is the short, stiff skirt worn in classical ballet?
+Tutu
+10
+
+Ballet: what is the term for a movement in which the dancer spins completely round on one foot?
+Pirouette
+10
+
+Ballet: what is the term for a turn in which the dancer whips free leg around?
+Fouette
+10
+
+Balmoral castle is on the banks of which Scottish river?
+River dee
+10
+
+Baltic Republics?
+Estonia
+10
+
+Baltimore has one of the world's largest ____
+Natural harbors
+10
+
+Bamboo (the world's tallest grass) can grow up to ____ cm in a day
+90
+10
+
+Banaba (or ocean island) is found in which country?
+Kiribati
+10
+
+Band of decoration especially at the top of a wall?
+Frieze
+10
+
+Band to keep up stockings?
+Garter
+10
+
+Banff, Alberta is famous Arnold the world for what?
+Hot Springs
+10
+
+Banging your head against a wall can burn up to ____ calories per hour
+150
+10
+
+Bantu-speaking people of southern africa?
+Zulu
+10
+
+Barbara 'I Dream Of Jeannie' Eden was married to an actor who once portrayed Cochise. Name him?
+Michael ansara
+10
+
+Barbara Streisand was the female lead in 'Hello, Dolly'- Who was the male lead?
+Walter Matthau
+10
+
+Barbary apes live on what mediterranean feature?
+Rock of gibraltar
+10
+
+Barclays bank in Enfield was the first in the world to have what?
+Automatic cash dispenser
+10
+
+Barnacle, Canada and Brent are all types of what?
+Geese
+10
+
+Baron pierre de coubertin is the founding father of the modern?
+Olympics
+10
+
+Barrel, breech and stock are all parts of a what?
+Gun
+10
+
+Bart's baby-sitter and first love. (Sarah Gilbert)?
+Laura Powers 
+10
+
+Bauxite is the principal ore of Aluminium, which other element is combined with the metal in this ore?
+Oxygen
+10
+
+Bay city is the setting of what tv soap opera?
+Another world
+10
+
+BCG is a vaccination for which disease?
+Tuberculosis
+10
+
+Be a sport: how many stumps are there in a cricket wicket?
+Three
+10
+
+Be Prepared: A Cub Scout Pack is divided up into several ____, of about 8 boys each
+Dens
+10
+
+Be Prepared: derge's Boy Scout Troop number. Also the US President's house number?
+1600
+10
+
+Be Prepared: Founder of the Boy Scouts?
+Lord robert baden-powell
+10
+
+Be Prepared: Give the colors of the 3 ribbons on the Webelos thing (alphabetical, no commas)?
+Green red yellow
+10
+
+Be Prepared: How many total merit badges are required for Eagle (as of 1995)?
+21
+10
+
+Be Prepared: Large, regional division of the BSA. Analogous to the OA's lodge?
+Council
+10
+
+Be Prepared: Points 4-6 of the ScoutLaw?
+Friendly courteous kind
+10
+
+Be Prepared: Points 7-9 of the Scout Law?
+Obedient cheerful thrifty
+10
+
+Be Prepared: Scout slogan?
+Do a good turn daily
+10
+
+Be Prepared: The top adult leader of a Boy Scout troop is given this title?
+Scoutmaster
+10
+
+Be Prepared: What is Explorer Scouting's equivalent of the Troop?
+Post
+10
+
+Be Prepared: What is the only Cub Scout/Webelos award that may be kept as a Boy Scout?
+Arrow of light
+10
+
+Beans who was the only actor to become president of the u.s.a?
+Ronald reagan
+10
+
+Beasley how much does park place cost in monopoly?
+Four hundred fifty dollars
+10
+
+Beautiful lake lucern can be visited in what european country?
+Switzerland
+10
+
+Beaver what is barbi's full name?
+Barbara millicent roberts
+10
+
+Because of a large orbital eccentricity, ____ was closer to the sun than Neptune between January 1979 and March 1999
+Pluto
+10
+
+Because of the rotation of the earth, an object can be thrown farther if it is thrown____
+West
+10
+
+Because the back part of their feet are made up of fat and no bone, on what do elephants walk?
+Tiptoe
+10
+
+Because their boss was never around, whom did bosley help?
+Charlie's angels
+10
+
+Before 1992 what 4 letters were on Soviet Olympic vests?
+Cccp
+10
+
+Before Canberra, which city was the capital of Australia?
+Melbourne
+10
+
+Before he carved the heads at Mount Rushmore, who had the sculptor been asked to carve into Stone Mountain in Georgia?
+Robert lee, stonewall jackson and jefferson davis
+10
+
+Before he was a safety inspector, what was Homer's job at SNPP?
+Technical Supervisor 
+10
+
+Before joining Crosby and Stills, Graham Nash sang with which group?
+Hollies
+10
+
+Before Martha Reeves began singing with the Vandellas, what job did she hold at Motown?
+Secretary
+10
+
+Before Olive Oil met Popeye she was engaged to someone Who was he?
+Ham Gravy
+10
+
+Before Olive Oyl met Popeye she was engaged to someone. Who was he?
+Ham Gravy
+10
+
+Before playing Captain Kangaroo, what role did Bob Keeshan play on Howdy doody?
+Clarabelle the Clown
+10
+
+Before she was a pop star, why was Samantha Fox in the British tabloids?
+She was a page three girl
+10
+
+Before the 1800's there were no separately designed ____ for right and left feet
+Shoes
+10
+
+Before the age of steel, skateblades were made of?
+Bones
+10
+
+Before the British burned it in 1814, what was the name of 'the white house'?
+Grey house
+10
+
+Before the Chinese take-over of Tibet in 1952, 25 percent of the males in the country were ____
+Buddhist monks
+10
+
+before the invention of pens what was a feather called when it was trimmed and used for writing?
+Quill
+10
+
+Before the Second World War, it was considered a sacrilege to even touch an?
+Emperor of Japan
+10
+
+Before wwii, the New York phone book had 22 listings for what surname, and none after wwii?
+Hitler
+10
+
+Behind greenland what is the second largest island in the world?
+New guinea
+10
+
+Beirut is the capital of ____
+Lebanon
+10
+
+Belgian and Swiss unit of currency?
+Franc
+10
+
+Belgium, the Netherlands and luxembourg came together in 1948 to form an economic union, known as what?
+Benelux
+10
+
+Belgrade is the capital of ____
+Yugoslavia
+10
+
+Belgrade lies on the danube and which other river?
+Sava
+10
+
+Bell bottom blues (1971) was done by what great group?
+Derek and the dominoes
+10
+
+Bell hanging at Lloyds of london?
+Lutine
+10
+
+Bell metal is an alloy of what?
+Tin & copper
+10
+
+Bell's palsy results in numbness in which area?
+Face
+10
+
+Beneath which paris monument is the tomb of france's unknown soldier?
+Arc de triomphe
+10
+
+Berlage is know for his what?
+Architecture
+10
+
+Bernard ____ of London managed to sustain a fart for an officially recorded time of 2 mins 42 seconds
+Clemmens
+10
+
+Bernard Clemmens of London managed to sustain a ____ for an officially recorded time of 2 mins 42 seconds
+Fart
+10
+
+Berne is the capital of ____
+Switzerland
+10
+
+Besides being candidates for president in the 1996 U S elections, what do Bill Clinton, Ross Perot & Bob Dole have in common?
+All left handed
+10
+
+Besides gin, what other alcoholic drink is used to make a White Lady cocktail?
+Cointreau
+10
+
+Bet you don't know ;-): The two sexes of humans are male and ____
+Female
+10
+
+Betsy Ross is the only real person to ever have been the head of a ____
+Pez dispenser
+10
+
+Better known by her maiden name, who was the 1930s aviation pioneer mrs. mollison?
+Amy johnson
+10
+
+Betty Boo was doing 'the doo' in what year?
+1990
+10
+
+Betty Rubble's Maiden name was?
+Betty jean mcbricker
+10
+
+between 1937 & 1942 which American theoretical physicist built the fist digital computer?
+John v atansoff
+10
+
+Between 25% to 33% of the population ____ when they are exposed to light
+Sneeze
+10
+
+Between the two World War's, France was controlled by ____ different governments
+Forty
+10
+
+Between what ages is a brandy or port described as VSO?
+12 to 17 years
+10
+
+Between what ages is a brandy or port described as VSOP?
+20 to 25 years
+10
+
+Between where does the ureter carry urine?
+Kidneys and bladder
+10
+
+Between which two cities did the first regular passenger flights start in 1919?
+Paris and london
+10
+
+Between which two countries does Offa's Dyke run?
+England & Wales
+10
+
+Between who was the shortest war in history?
+Zanzibar and England
+10
+
+Bezique is a?
+Card game
+10
+
+Bezique, piquet and pinochle are all types of what?
+Card games
+10
+
+Biko was involved in what protest movement?
+Apartheid
+10
+
+Bill gates invented which os?
+Windows
+10
+
+Bill gates was the founder of which company?
+Microsoft
+10
+
+Billion what can release approximately one billion grains of pollen?
+Ragweed plant
+10
+
+Billy Blanks is known for popularizing what martial art?
+Tae bo
+10
+
+Biology: ____ eyes are the most sensitive to light, dark brown the least sensitive
+Blue
+10
+
+Biology: 99% of all life forms to exist on Earth are now?
+Extinct
+10
+
+Biology: A ____ acquires fingerprints at the age of three months
+Fetus
+10
+
+Biology: A baby doctor is a ____
+Pediatrician
+10
+
+Biology: A bone specialist is a(n) ____
+Osteopath
+10
+
+Biology: A human has a bone just after the spine ends, which proves that humans once had ____
+Tails
+10
+
+Biology: A loss of memory is known as ____
+Amnesia
+10
+
+Biology: A mass of lymphoid tissue at the back of the throat?
+Adenoids
+10
+
+Biology: A medicine that hastens the emptying of the bowels is called a ____
+Laxative
+10
+
+Biology: A non-cancerous tumor is said to be ____
+Benign
+10
+
+Biology: A salt enema was given to children to rid them of ____
+Threadworm
+10
+
+Biology: A sore on the eyelid?
+Stye
+10
+
+Biology: A thread used in surgery to tie a bleeding blood vessel is called a(n) ____
+Ligature
+10
+
+Biology: Animal or plant without the normal pigmentation of its species?
+Albino
+10
+
+Biology: another name for a tendon?
+Sinew
+10
+
+Biology: Area accumulating pus within body tissue?
+Abscess
+10
+
+Biology: As what is haemophilia also known?
+Royal disease
+10
+
+Biology: Babies are born without?
+Knee caps
+10
+
+Biology: Babies knee caps don't appear until the child reaches ____ years of age
+2 - 6
+10
+
+Biology: Bacteria, the tiniest free-living cells, are so small that a single drop of liquid contains as many as ____ of them
+50 million
+10
+
+Biology: Benthos are plants and animals living where?
+Water
+10
+
+Biology: Biological community of interacting organisms and their physical environment?
+Ecosystem
+10
+
+Biology: Blonde beards grow ____ than darker beards
+Faster
+10
+
+Biology: Blood can be artificially cleansed via what process?
+Dialysis
+10
+
+Biology: Blue eyes are the most sensitive to light, ____ the least sensitive
+Dark brown
+10
+
+Biology: Bone of the forearm?
+Radius
+10
+
+Biology: Brain damage occurs at an internal temperature of ____ degrees Fahrenheit
+105
+10
+
+Biology: Bursitis affects the knee, what is its common name?
+Housemaids knee
+10
+
+Biology: By what name is the tendon at the back of the ankle known?
+The achilles
+10
+
+Biology: By what process is rock worn down by the weather?
+Erosion
+10
+
+Biology: By which other name is the shinbone known?
+The tibia
+10
+
+Biology: Carditis, affects the ____
+Heart
+10
+
+Biology: Caries is an extremely common disease, by which name is it better known?
+Tooth decay
+10
+
+Biology: Colourless constituent of blood?
+Plasma
+10
+
+Biology: Despite accounting for just one-fiftieth of body weight, the ____ burns as much as one-fifth of our daily caloric intake
+Brain
+10
+
+Biology: Do the pupils in a person's eyes get larger or smaller in bright light?
+Smaller
+10
+
+Biology: Do your pores open or close when your body is hot?
+Open
+10
+
+Biology: Doctors often have this instrument around their neck?
+Stethoscope
+10
+
+Biology: Due to a lack of vitamin C, sailors used to contract this disease?
+Scurvy
+10
+
+Biology: Each body cell contains how many chromosomes?
+46
+10
+
+Biology: Each square inch of human skin contains seventy-two feet of what?
+Nerves
+10
+
+Biology: Eczema affects which part of the body?
+Skin
+10
+
+Biology: Encephalitis affects the ____
+Brain
+10
+
+Biology: Every human has one of these on their tummies?
+Navel
+10
+
+Biology: Except for sex cells, all human cells contain 23 pairs of what?
+Chromosomes
+10
+
+Biology: Exercise the mind in the contemplation of spiritual matters?
+Meditate
+10
+
+Biology: Flat, round, brown spots on the skin that contain an excess of melanin, the human skin pigment?
+Freckles
+10
+
+Biology: Flattened, oblong organ that removes disease-producing organisms & worn-out red blood cells from the bloodstream?
+Spleen
+10
+
+Biology: Flattened, pear-shaped, hollow organ in the pelvis of the human female & most other mammals?
+Uterus
+10
+
+Biology: For which congenital disability was spastic a common name?
+Cerebral palsy
+10
+
+Biology: From the age of thirty, humans gradually begin to ____ in size
+Shrink
+10
+
+Biology: Gastritis affects the ____
+Stomach
+10
+
+Biology: Graves disease is caused by excessive production of what?
+Thyroid hormone
+10
+
+Biology: Hammer, anvil, and stirrup are parts of ____
+Ear
+10
+
+Biology: Hammer, anvil, and stirrup are parts of the ____
+Ear
+10
+
+Biology: Hard coating on the teeth?
+Enamel
+10
+
+Biology: He discovered the process of vaccination for prevention of smallpox?
+Edward jenner
+10
+
+Biology: Hepatitis affects the ____
+Liver
+10
+
+Biology: Heroin is the brand name of morphine once marketed by which pharmaceutical company?
+Bayer
+10
+
+Biology: How is German measles also known?
+Rubella
+10
+
+Biology: How many blood cells are destroyed in the human body every second?
+15 million
+10
+
+Biology: How many bones are there in the human body?
+206
+10
+
+Biology: How many chambers does the human heart have?
+Four
+10
+
+Biology: How many large holes are in your head?
+7
+10
+
+Biology: How many large holes are in your head?
+Seven
+10
+
+Biology: How many litres of air is in an adult lung?
+Five
+10
+
+Biology: How many pints of blood does the average human have in his/her body?
+Twelve
+10
+
+Biology: How many teeth shoudl a person have?
+Thirty two
+10
+
+Biology: How many times do your ribs move every year during breathing?
+Five million
+10
+
+Biology: Human ____ are as strong as concrete
+Thighbones
+10
+
+Biology: Human ____ is estimated to grow at 0.00000001 miles per hour
+Hair
+10
+
+Biology: Human adults breathe about ____ time a day
+23,000
+10
+
+Biology: Human birth control pills also work on what animal?
+Gorilla
+10
+
+Biology: Human bones can withstand stresses of ____ thousand pounds per square inch
+24
+10
+
+Biology: If body temperature was 86 degrees, how many years would a man man live?
+Two hundred
+10
+
+Biology: If locked in a completely sealed room, of what will you die before you suffocate?
+Carbon monoxide poisoning
+10
+
+Biology: In the early 20th century, rattlesnake venom was used to treat which illness?
+Epilepsy
+10
+
+Biology: In the field of psychiatry this term means self-love?
+Narcissism
+10
+
+Biology: In what body part does an osteopath specialise?
+Bones
+10
+
+Biology: In what organ of the body is insulin produced?
+Pancreas
+10
+
+Biology: In which organ are the hepatic arteries?
+The liver
+10
+
+Biology: In which organ is a pulmonary disease located?
+Lung
+10
+
+Biology: In which organ is Bile produced?
+Liver
+10
+
+Biology: Infantile Paralysis is commonly known as ____
+Polio
+10
+
+Biology: Infectious disease of horses, cattle, swine, & humans, also called lumpy jaw or big jaw?
+Actinomycosis
+10
+
+Biology: Infectious sexually transmitted disease of humans, spread by sexual contact, what primarily involves the mucous membranes of the urogenital tract?
+Gonorrhea
+10
+
+Biology: Intelligent people have more ____ and copper in their hair
+Zinc
+10
+
+Biology: Intelligent people have more zinc and ____ in their hair
+Copper
+10
+
+Biology: Joint between femur and tibia?
+Knee
+10
+
+Biology: Lack of blood is called?
+-- Answer metadata begin
+{
+    "answers": ["Anemia", "anaemia"]
+}
+-- Answer metadata end
+10
+
+Biology: Lack of iron makes a person what?
+Anaemic
+10
+
+Biology: Lack of what is the cause of the deficiency disease 'kwashiorkor'?
+Protein
+10
+
+Biology: Lack of what makes albinos?
+Pigment
+10
+
+Biology: Lack of what vitamin causes pellagra?
+B3
+10
+
+Biology: Lack of which chemical compound in the body is linked with Parkinsons disease?
+Dopamine
+10
+
+Biology: Like fingerprints, what other print is individual?
+Tongueprints
+10
+
+Biology: Lossof memory?
+Amnesia
+10
+
+Biology: Maxillary palps, abdomen, and metathorax are parts of an ____
+Insect
+10
+
+Biology: Meningitis affects the ____
+Brain
+10
+
+Biology: Myositis affects what?
+Muscle
+10
+
+Biology: Name the hardest substance in the human body?
+Enamel
+10
+
+Biology: Name the largest artery in the human body?
+Aorta
+10
+
+Biology: Name the largest gland in the human body?
+Liver
+10
+
+Biology: Name the largest gland in the human body?
+The liver
+10
+
+Biology: North American Indians ate watercress to dissolve gravel and stones in the ____
+Bladder
+10
+
+Biology: North American Indians ate watercress to dissolve what in the bladder?
+Gravel and stones
+10
+
+Biology: Of or concerned with the voice?
+Vocal
+10
+
+Biology: Of what does the typical man have 13,000?
+Whiskers
+10
+
+Biology: Of what is keratitis an inflammation?
+Cornea
+10
+
+Biology: On what part of the body is an 'LTK procedure' performed?
+Eyes
+10
+
+Biology: On what side should you sleep to improve digestion?
+Right
+10
+
+Biology: Organ system for changing food chemically for absorption by body tissues?
+Digestive system
+10
+
+Biology: Osteomyelitis affects the ____
+Bones
+10
+
+Biology: Peritonitis, affects the ____
+Abdomen
+10
+
+Biology: Photosynthesis is the process by which light converts carbon dioxide & water to sugar (glucose) & what substance?
+Oxygen
+10
+
+Biology: Portion of the central nervous system contained within the skull?
+Brain
+10
+
+Biology: Prosthetics deals with the making of ____
+Artificial limbs
+10
+
+Biology: Received by the ear?
+Aural
+10
+
+Biology: Small stirrup shaped bone of the middle ear?
+Stapes
+10
+
+Biology: Sperm is the smallest single ____ in a mans body
+Cell
+10
+
+Biology: Tarsus, metatarsus, and phalanges are parts of a(n) ____
+Foot
+10
+
+Biology: The arteries & veins surrounding the brain stem are called what?
+Circle of willis
+10
+
+Biology: The branch of medicine dealing with curing by operative procedures is ____
+Surgery
+10
+
+Biology: The correct name for the voice box is the ____
+Larynx
+10
+
+Biology: The first rubber gloves were used during surgery in 1890, 1910 or 1920?
+1890
+10
+
+Biology: The lack of this element in the diet is a cause of goitre?
+Iodine
+10
+
+Biology: The largest single organ of the human body is the ____
+Skin
+10
+
+Biology: The medical name for the voice box is the ____
+Larynx
+10
+
+Biology: The parasitic organism plasmodium, carried by an insect, transmits which disease?
+Malaria
+10
+
+Biology: The philtrum is a groove on the exterior of the body, where?
+Between the nose and lip
+10
+
+Biology: The small endocrine glands situated just above the kidneys?
+Adrenals
+10
+
+Biology: The small intestine is made up of the duodenum, the ileum and the ____
+Jejunum
+10
+
+Biology: The small intestine is made up of the duodenum, the jejenum and the ____
+Ileum
+10
+
+Biology: The small intestine is made up of the duodenum, the jejunum and the ____
+Ileum
+10
+
+Biology: The small intestine is made up of the jejenum, the ileum and the ____
+Duodenum
+10
+
+Biology: The smallpox vaccine was invented in 1763, 1784 or 1798?
+1798
+10
+
+Biology: The soft areas of the cartilage on a baby's head where the skull bones haven't joined is called what?
+Fontanelle
+10
+
+Biology: The teeth used for biting or cutting are known as ____
+Incisors
+10
+
+Biology: These animals were once used to bleed the sick?
+Leeches
+10
+
+Biology: These attach muscles to bones or cartilage?
+Tendon
+10
+
+Biology: These attach muscles to bones or cartilage?
+Tendons
+10
+
+Biology: This branch of medicine deals with old age and its diseases?
+Geriatrics
+10
+
+Biology: This complex substance makes up all living things?
+Protoplasm
+10
+
+Biology: This disease consists of a purposeless, continual growth of white blood cells?
+Leukemia
+10
+
+Biology: This fingerlike projection is attached to the large intestine?
+Appendix
+10
+
+Biology: This large bean-shaped lymph gland can expand and contract as needed?
+Spleen
+10
+
+Biology: This membrane controls the amount of light entering the eye?
+Iris
+10
+
+Biology: This organ is a small pouch that stores bile?
+Gall bladder
+10
+
+Biology: This parasite lives in the intestines of man and animals?
+Tapeworm
+10
+
+Biology: This poisonous, oily liquid occurs in tobacco leaves?
+Nicotine
+10
+
+Biology: This protein makes the blood red in color?
+Haemoglobin
+10
+
+Biology: This small gland attached to the brain exerts a control over growth?
+Pituitary
+10
+
+Biology: To what disability can keratitis lead?
+Blindness
+10
+
+Biology: To what does the adjective buccal refer?
+Cheek
+10
+
+Biology: Ulna, radius, and clavicle are types of ____
+Bone
+10
+
+Biology: What appears when the sun activates melanocytes?
+Freckles
+10
+
+Biology: What are looser than normal in a double-jointed person?
+Ligaments
+10
+
+Biology: What are the pads of cartilage between spinal vertebrae commonly known?
+Discs
+10
+
+Biology: What body function is improved if you sleep on your right side?
+Digestion
+10
+
+Biology: What breed of dog has an inability to bark?
+Basenji
+10
+
+Biology: What carries sensations from the tongue to the brain?
+Lingual nerve
+10
+
+Biology: What did North American Indians eat to dissolve gravel and stones in the bladder?
+Watercress
+10
+
+Biology: What do the auricularis muscles move?
+Ears
+10
+
+Biology: What do white blood cells produce to fight antigens?
+Antibodies
+10
+
+Biology: What does a sphygmomanometer measure?
+Blood pressure
+10
+
+Biology: What does encephalitus affect?
+Brain
+10
+
+Biology: What does hepatitis affect?
+Liver
+10
+
+Biology: What does HIV stand for?
+Human immunodeficiency virus
+10
+
+Biology: What does the body release that dilates small blood vessels and so causes a person to blush?
+Peptides
+10
+
+Biology: What does the lack of iodine in the diet cause?
+Goitre
+10
+
+Biology: What does the pancreas produce?
+Insulin
+10
+
+Biology: What element is lacking in a diet when goitre occurs?
+Iodine
+10
+
+Biology: What falls out with phalacrosis?
+Hair
+10
+
+Biology: What fleshy muscular organ is joined to the hyoid bone?
+Tongue
+10
+
+Biology: What gland secretes fluid that washes the eyes?
+Tear gland
+10
+
+Biology: What hormone is produced by the adrenal glands?
+Adrenaline
+10
+
+Biology: What instrument measures blood pressure?
+Sphygmomanometer
+10
+
+Biology: What is a Salamander?
+Amphibian
+10
+
+Biology: What is a skin specialist called?
+Dermatologist
+10
+
+Biology: What is a the technical name for a heart attack?
+Myocardial infarct
+10
+
+Biology: What is about to be measured when a doctor or nurse straps a sphygmomanometer on you?
+Blood pressure
+10
+
+Biology: What is activated for freckles to appear?
+Melanocytes
+10
+
+Biology: What is acute nasopharyngitis?
+A cold
+10
+
+Biology: What is affected by cholecystitis?
+Gall bladder
+10
+
+Biology: What is affected by otitis?
+The ear
+10
+
+Biology: What is an organism called that lives on or in a host animal?
+Parasite
+10
+
+Biology: What is another name for consumption?
+Tuberculosis
+10
+
+Biology: What is another name for tuberculosis?
+Consumption
+10
+
+Biology: what is by far the largest organ of the human body?
+The skin
+10
+
+Biology: What is cerumen?
+Earwax
+10
+
+Biology: What is normal body temperature for an adult human (in degrees fahrenheit)?
+98.6
+10
+
+Biology: What is normal body temperature for an adult human?
+98f
+10
+
+Biology: What is th econdition called when an internal organ protrudes through the wall of the cavity in which it is normally contained?
+Hernia
+10
+
+Biology: what is the axilla better known as?
+Armpit
+10
+
+Biology: What is the biggest disqualifying factor for prospective astronauts?
+Eyesight
+10
+
+Biology: What is the biological name for the shin bone?
+Tibia
+10
+
+Biology: What is the biological term for the voice box?
+Larynx
+10
+
+Biology: What is the common name for the disease parotitis?
+Mumps
+10
+
+Biology: What is the common name for the larynx?
+Voice box
+10
+
+Biology: What is the common name for the scapula?
+Shoulder blade
+10
+
+Biology: What is the common name for the sternum?
+Breastbone
+10
+
+Biology: What is the common name for the talus bone?
+Ankle bone
+10
+
+Biology: What is the common name for the tympanic membrane?
+Eardrum
+10
+
+Biology: What is the common name given to the third molar teeth?
+Wisdom teeth
+10
+
+Biology: What is the fastest breed of dog?
+Greyhound
+10
+
+Biology: What is the fastest growing species of grass?
+Bamboo
+10
+
+Biology: What is the hardest bone in the human body?
+Jawbone
+10
+
+Biology: What is the latin name for the top set of vertebrae?
+Cervical
+10
+
+Biology: What is the medical term for cancer of the blood?
+Leukemia
+10
+
+Biology: What is the more common name for allergic rhinitis?
+Hay fever
+10
+
+Biology: What is the most common animal?
+Sea worm
+10
+
+Biology: What is the name given to an examination of a body by dissection to determine cause of death?
+Autopsy
+10
+
+Biology: What is the name of the bone in the lower leg?
+Tibia
+10
+
+Biology: What is the name of the process used by green plants for obtaining food?
+Photosynthesis
+10
+
+Biology: What is the popular name for decompression sickness?
+The bends
+10
+
+Biology: What is the process of converting glucose to energy in cells called?
+Respiration
+10
+
+Biology: What is the proper name for the kneecap?
+The patella
+10
+
+Biology: What is the royal disease?
+Haemophilia
+10
+
+Biology: What is the scientific name for earwax?
+Cerumen
+10
+
+Biology: What is the Scientific name for the eardrum?
+Tympanic membrane
+10
+
+Biology: What is the second largest bone in the foot?
+Talus
+10
+
+Biology: What is the smallest bone in the human body?
+Stirrup bone
+10
+
+Biology: What is the study of insects called?
+Entomology
+10
+
+Biology: What is the tibia more commonly known as?
+Shin bone
+10
+
+Biology: what is your hallux'?
+Big toe
+10
+
+Biology: What kind of poisoning is known as plumbism?
+Lead
+10
+
+Biology: What muscle is joined by the lingual nerve to the brain?
+Tongue
+10
+
+Biology: What muscles move the ears?
+Auricularis
+10
+
+Biology: What name is given to a male bee?
+Drone
+10
+
+Biology: What name is given to a young frog?
+Tadpole
+10
+
+Biology: What name is given to animals which eat both plants and meat?
+Omnivore
+10
+
+Biology: What name is given to animals which have pouches?
+Marsupials
+10
+
+Biology: What name is given to animals which only eat meat?
+Carnivore
+10
+
+Biology: What name is given to animals which only eat plants?
+Herbivore
+10
+
+Biology: What name is given to opacity in the lens of the eye?
+Cataract
+10
+
+Biology: What name is given to the bodys 24 hour cycle of sleeping, waking?
+Circadian rhythm
+10
+
+Biology: what organ contains the islands of langerhans?
+The pancreas
+10
+
+Biology: What protein makes blood red?
+Haemoglobin
+10
+
+Biology: What small region at end of medulla oblongata serves as 'bridge' to brain?
+Pons
+10
+
+Biology: What sort of body fat produces a dimpled effect on the skin?
+Cellulite
+10
+
+Biology: What toe is the foot reflexology pressure point for the head?
+Big toe
+10
+
+Biology: What was given to children to rid them of threadworm?
+Salt enema
+10
+
+Biology: What were foreman,longman,lecman and littleman old names for?
+The fingers
+10
+
+Biology: What would you be doing if your soft palate and pharynx were vibrating because of an obstruction?
+Snoring
+10
+
+Biology: What's the strongest muscle in the human body?
+The tongue
+10
+
+Biology: What's the trasparent tissue that covers the iris and pupil of an eye called?
+The Cornea
+10
+
+Biology: When a tumour is cancerous, what is it said to be?
+Malignant
+10
+
+Biology: When does the human uterus expand 500 times its normal size?
+During pregnancy
+10
+
+Biology: Where are one quarter of the bones in the human body?
+Feet
+10
+
+Biology: where are red blood cells formed?
+In the bone marrow
+10
+
+Biology: Where are the deltoid muscles?
+On the shoulder
+10
+
+Biology: Where do you find the medulla oblongata?
+Brain
+10
+
+Biology: Where in the body is the cochlea?
+The inner ear
+10
+
+Biology: Where in the body is the tiniest human muscle?
+Ear
+10
+
+Biology: Where in the body would you find your olfactory lobes?
+Nose
+10
+
+Biology: Where is the carotid artery situated?
+In the neck
+10
+
+Biology: Where is the coccyx?
+Base of the spine
+10
+
+Biology: Where is the pituitry gland?
+Under the brain
+10
+
+Biology: Where is the septum linguae?
+Tongue
+10
+
+Biology: where is the temporal bone?
+Side of the skull
+10
+
+Biology: where would you find carpal bones and tarsal bones respectively?
+Hands and feet
+10
+
+Biology: Where would you find lymphocytes and thrombocytes?
+The blood
+10
+
+Biology: Which acid is produced in the muscles during exercise?
+Lactic acid
+10
+
+Biology: Which aperture allows light into the eye?
+Pupil
+10
+
+Biology: Which bird became extinct in 1861?
+Dodo
+10
+
+Biology: Which breed of dog has a name derived from the old name for Greece?
+Greyhound
+10
+
+Biology: Which disease is a virus infection and swelling of the parotid salivary glands?
+Mumps
+10
+
+Biology: Which disease is spread by a body louse?
+Typhus
+10
+
+Biology: which gland produces hormones to control the bodys metabolic rate?
+Thyroid
+10
+
+Biology: Which hormone regulates blood sugar level?
+Insulin
+10
+
+Biology: which is the longest bone in the human body?
+Femur
+10
+
+Biology: Which is the most sensitive finger?
+Forefinger
+10
+
+Biology: Which joint is affected by a Potts fracture?
+Ankle
+10
+
+Biology: Which part of a cat's eye reflects light?
+Tapetum
+10
+
+Biology: Which science studies animal behaviour in natural habitats?
+Ethology
+10
+
+Biology: Which sense is stimulated by the reaction of the olfactory cells?
+Smell
+10
+
+Biology: Which sight defect is the opposite of hypermetropia?
+Myopia
+10
+
+Biology: Which sight problem occurs in men far more then in women?
+Colour Blindness
+10
+
+Biology: Which species of Elephant has the largest ears?
+African
+10
+
+Biology: Who ate watercress to dissolve gravel and stones in the bladder?
+North American Indians
+10
+
+Biology: Who developed the vaccine for smallpox?
+Edward Jenner
+10
+
+Biology: Who discovered Penicillin?
+Alexander Fleming
+10
+
+Biology: Who first used antiseptics?
+Joseph Lister
+10
+
+Biology: Who invented the smallpox vaccine?
+Edward Jenner
+10
+
+Biology: Who was the first to use rubber gloves during surgery?
+Dr. W. S. Halstead
+10
+
+Biology: With age, what organ shrinks faster in males than in females?
+Brain
+10
+
+Biology: With what body part is otology involved?
+Ear
+10
+
+Biology: With which part of the body is dermatology concerned?
+Skin
+10
+
+Biology: You blink over ____ times a year
+10,000,000
+10
+
+Biology: You can't kill yourself by holding your?
+Breath
+10
+
+Biology: You're born with 300 bones, but when you get to be an adult, you only have?
+206
+10
+
+Biology: Your ____ holds your head to your shoulders
+Neck
+10
+
+Biology: Your epiglottis serves this purpose?
+Prevents choking
+10
+
+Biology: Your heart beats over ____ times a day
+One hundred thousand
+10
+
+Biology: Your left lung is smaller than your right lung to make room for your?
+Heart
+10
+
+Biology: Your nares are your ____
+Nostrils
+10
+
+Biology: Your ribs move about ____ times a year, every time you breathe
+Five million
+10
+
+Bip is the alter-ego of which French mime artist known for his classic work 'Walking Against the Wind'?
+Marcel Marceau
+10
+
+Bird droppings are chief ____ of Nauru, an island nation in the Western Pacific
+Export
+10
+
+Bird droppings are chief export of____ , an island nation in the Western Pacific
+Nauru
+10
+
+Bird of prey with a curved beak, rounded, short wings and a long tail?
+Hawk
+10
+
+Birmingham is flanked by the M6 on the north and M5 on the west, which motorway flanks south & east?
+M42
+10
+
+Birth-control campaigns in ____ in the late 1970s failed because village women ended up wearing the pills in lockets, as talismans
+Egypt
+10
+
+Births: 1910s: In 1911 Prince ____ , Germany, (Constort to Queen Juliana of Netherlands), born in
+Bernhard
+10
+
+Births: 1910s: Slim ____ Kingsburg Calif, actor (Dr Strangelove, Blazing Saddles), born in 1919
+Pickens
+10
+
+Births: 1920s: ____ Von Bulow accused of murdering his wife, born in 1926
+Claus
+10
+
+Births: 1920s: Claus ____ accused of murdering his wife, born in 1926
+Von bulow
+10
+
+Births: 1930s: ____ Falwell televangelist, Moral Majority head, born in 1933
+Jerry
+10
+
+Births: 1930s: Jerry ____ televangelist, Moral Majority head, born in 1933
+Falwell
+10
+
+Births: 1930s: Jerry Falwell____ , Moral Majority head, born in 1933
+Televangelist
+10
+
+Births: 1940s: ____ Vos Savant St Louis Mo, writer/world's highest IQ (Guinness), born in 1946
+Marilyn
+10
+
+Births: 1940s: Gary ____ Goose Creek Tx, actor (Buddy Holly Story, Under Siege), born in 1944
+Busey
+10
+
+Births: 1940s: Marilyn Vos ____ St Louis Mo, writer/world's highest IQ (Guinness), born in 1946
+Savant
+10
+
+Births: 1950s: ____ Hogan [Terry Bollea], Ga, WWF heavyweight champion (1984-89), born in 1953
+Hulk
+10
+
+Births: 1950s: ____ Wozniak cofounded Apple Computer, born in 1950
+Steve
+10
+
+Births: 1950s: Born in 1959, she was the actress possessed by the Devil in The Exorcist?
+Blair
+10
+
+Births: 1950s: Hulk ____ [Terry Bollea], Ga, WWF heavyweight champion (1984-89), born in 1953
+Hogan
+10
+
+Births: Debbie Harry name the year she was born?
+1945
+10
+
+Births: Malcolm Forbes was born in ____
+1919
+10
+
+Births: Year Martin Luther was born?
+1483
+10
+
+Birthstones: What is the birthstone for May?
+Emerald
+10
+
+Birthstones: What is the birthstone for September?
+Sapphire
+10
+
+Bishops tall headdress?
+Mitre
+10
+
+Black, cementlike material varying in consistency at room temperature from solid to semisolid?
+Asphalt
+10
+
+Blood is such a good stain that Native Americans used it for what?
+Paint
+10
+
+Bob Dole is ____ years older than the Empire State Building
+10
+10
+
+Bodrum in Turkey is on the site of which famous city?
+Halicarnassus
+10
+
+Book of information on many subjects?
+Encyclopedia
+10
+
+Book or table containing a calendar, together with astronomical and navigational data and, often, religious holidays, historical notes, proverbs, and astrological and agricultural forecasts?
+Almanac
+10
+
+Born Yaron Cohen, to the dismay of a number of her fellow countrymen, she won which international competition in May 1998?
+Eurovision song contest
+10
+
+Botany: ____ (the world's tallest grass) can grow up to 90 cm in a day
+Bamboo
+10
+
+Botany: ____ is a member of the thistle family
+Eggplant
+10
+
+Botany: 'honeydew' is a variety of what?
+Melon
+10
+
+Botany: A 'bunya-bunya' tree is native to which country?
+Australia
+10
+
+Botany: A shrub or tree with small yellow flowers sometimes called wattle?
+Acacia
+10
+
+Botany: A smooth nut in a rough cuplike base, the fruit of the oak tree?
+Acorn
+10
+
+Botany: A variety of which plant is known as Stinking corpse Lily?
+Rafflesia
+10
+
+Botany: African tree with massive trunk and edible fruit?
+Baobab
+10
+
+Botany: An oak tree has to be at least how old before it grows its first acorn?
+Fifty years
+10
+
+Botany: Any of the separate parts of the calyx of a flower?
+Sepal
+10
+
+Botany: Approximately how many years old are oak trees before they produce acorns?
+Fifty
+10
+
+Botany: Aromatic plant, leaves of which are used to flavour salads?
+Tarragon
+10
+
+Botany: Bananas are actually what?
+Berries
+10
+
+Botany: Bananas do not grow on trees, but on ____
+Rhizomes
+10
+
+Botany: Bananas grow pointing?
+Upwards
+10
+
+Botany: By what name is the edible fruit of the plant Lycopersicon esculentum, a member of the deadly nightshade family better known?
+Tomato
+10
+
+Botany: By what name is the flower woodbine better known?
+Honeysuckle
+10
+
+Botany: Calabrese is a form of which vegetable?
+Broccoli
+10
+
+Botany: Calypso, catteleya and pogonia are types of which flowering plant?
+Orchid
+10
+
+Botany: Caribbean plant yeilding a substance used in cosmetics?
+Aloe vera
+10
+
+Botany: Colourful shrub with drooping flowers?
+Fushsia
+10
+
+Botany: Common name applied to a perennial, trailing herb of the morning glory family?
+Sweet potato
+10
+
+Botany: Common name applied to any of a family of evergreen shrubs & trees?
+Nutmeg
+10
+
+Botany: Common name for a deciduous orchard tree of the rose family, & for the fruit of this tree?
+Peach
+10
+
+Botany: Common name for one of many poisonous, umbrella shaped fungi?
+Toadstool
+10
+
+Botany: Common name of the 6 ft rare flowering sumatran plant Amorphophallus titanum?
+Corpse Flower
+10
+
+Botany: Corolla, filament and stigma are parts of a(n) ____
+Flower
+10
+
+Botany: Dark edible fruit of the bramble?
+Blackberry
+10
+
+Botany: Dark green fruit with creamy flesh?
+Avocado pear
+10
+
+Botany: Deadly nightshade, drug obtained from this?
+Belladonna
+10
+
+Botany: Dense sea-water swamps along coasts of hot countries are called ____
+Mangrove
+10
+
+Botany: Digitalis came from which herb?
+Purple foxglove
+10
+
+Botany: Do trees grow more quickly or slowly at night?
+More slowly
+10
+
+Botany: Easy! What is grown in a paddy field?
+Rice
+10
+
+Botany: Fertiliser made of the dried excrement of fish eating sea birds?
+Guano
+10
+
+Botany: From where did the first banana come?
+Southern asia
+10
+
+Botany: Fruit of the blackthorn?
+Sloe
+10
+
+Botany: Hard acid yellowish pear shaped fruit used as a preserve or as a flavouring?
+Quince
+10
+
+Botany: Heather family of plannts?
+Erica
+10
+
+Botany: If a plant is latifolate what characteristic does it have?
+Broad leaves
+10
+
+Botany: Indian fig tree with self-rooting branches?
+Banyan
+10
+
+Botany: Linseed oil is obtained from the seed of which plant?
+Flax
+10
+
+Botany: Myrtaceous tree of mostly Australian genus, such as the blue gum or ironbark, yielding a mecidinal oil from its leaves?
+Eucalyptus
+10
+
+Botany: Name given to cultivation of plants without soil?
+Hydroponics
+10
+
+Botany: new zealand's most famous tree is a kauri standing over 51 metres high called?
+Tane mahuta
+10
+
+Botany: No species of wild plant produces a flower or blossom that is absolutely what color?
+Black
+10
+
+Botany: Oil derived from flax?
+Linseed
+10
+
+Botany: One ragweed plant can release approximately how many grains of pollen?
+One billion
+10
+
+Botany: One that lives one year?
+Annual
+10
+
+Botany: Paper is made from the pulp of ____
+Wood
+10
+
+Botany: Picea is the generic name for which tree?
+Spruce
+10
+
+Botany: Plant based compound often used as a drug?
+Alkaloid
+10
+
+Botany: Plant commonly known to cause stinging and itching, it is also edible when boiled?
+Nettle
+10
+
+Botany: Plant community, predominantly of trees or other woody vegetation, occupying an extensive area of land?
+Forest
+10
+
+Botany: Plant of the lily family with edible shoots?
+Asparagus
+10
+
+Botany: Plant of which stalks are used as a vegetable?
+Celery
+10
+
+Botany: Plant with aromatic seeds used in Indian food?
+Cumin
+10
+
+Botany: Plant with edible fruits in red green and yellow?
+Capsicum
+10
+
+Botany: Plant with oval, usually purple fruit used as a vegetable?
+Aubergine
+10
+
+Botany: Plant with pink, red or white flowers with backward turned leaves?
+Cyclamen
+10
+
+Botany: Plant with pungent bulb used in cookery?
+Garlic
+10
+
+Botany: Planting of trees in urban or desert areas?
+Greening
+10
+
+Botany: Plants with thick stems and fleshy leaves?
+Succulents
+10
+
+Botany: Poison oak and poison ivy are members of what plant family?
+Cashew
+10
+
+Botany: Poisonous alkaloid, c21h22n2o2, found in various plants of the genus strychnos, & obtained commercially from the seeds of the saint-ignatius's-bean & from nux vomica?
+Strychnine
+10
+
+Botany: Poisonous plant with small white flowers?
+Hemlock
+10
+
+Botany: Portion of vascular plants that commonly bears leaves & buds?
+Stem
+10
+
+Botany: Purple-reddish fruit named after the American judge and horticulturalist who first grew them?
+Loganberry
+10
+
+Botany: Raspberry, dewberry and blackberry are all members of what family?
+Rose
+10
+
+Botany: Species of willow used for baskets?
+Osier
+10
+
+Botany: The globular swollen stem at the base of some plants?
+Corm
+10
+
+Botany: The koala bear eats the leaves from this tree?
+Eucalyptus
+10
+
+Botany: The mass of feathery plumed seeds produced by plants of the genus Cirsium?
+Thistledown
+10
+
+Botany: The practice of joining the parts of two plants to make them grow as one is called ____
+Grafting
+10
+
+Botany: These flowerless plants grow on bare rocks and tree stumps?
+Lichen
+10
+
+Botany: This fruit has its seeds on the outside?
+Strawberry
+10
+
+Botany: This term means 'cone-bearing trees'?
+Conifers
+10
+
+Botany: To which family does the coffee plant belong?
+Madder
+10
+
+Botany: Trees?
+Oak
+10
+
+Botany: tropical fruit of the American bromeliaceous plant, Ananas comosus?
+Pineapple
+10
+
+Botany: Tropical plant with large flowering bracts?
+Bougainvillaea
+10
+
+Botany: Tropical shrub used for making hair dye?
+Henna
+10
+
+Botany: Tropical tree bearing edible orange fruit?
+Guava
+10
+
+Botany: What disease is carried by bark beetles?
+Dutch elm disease
+10
+
+Botany: What is a crowfoot with yellow flowers?
+Buttercup
+10
+
+Botany: What is a flowering plant that lives three or more years called?
+Perennial
+10
+
+Botany: What is a fly agaric?
+A mushroom
+10
+
+Botany: What is mimulus commonly called?
+Monkey flower
+10
+
+Botany: What is the common name for Helleborus Niger?
+Christmas rose
+10
+
+Botany: What is the common name for Lunaria annua, purple flower that produces seeds which have silery paper like discs?
+Honesty
+10
+
+Botany: What is the common name for Nigella damascena, which arises from the effect of the many thread like leaves growing along the whole of the stem?
+Love in a list
+10
+
+Botany: What is the common name for the evergreen plant Ilex aquifolium?
+English holly
+10
+
+Botany: What is the common name for the fungus called Phallus impudicus?
+Stinkhorn
+10
+
+Botany: What is the common name for the plant Dianthus barbatus?
+Sweet william
+10
+
+Botany: What is the common name for the poisonous plant Atropa belladonna?
+Deadly nightshade
+10
+
+Botany: what is the common name for Tropaeolum majus?
+Nasturtium
+10
+
+Botany: What is the fruit of a rosebush called?
+Hip
+10
+
+Botany: What is the fruit of eucalyptus trees?
+Gum nuts
+10
+
+Botany: What is the fruit of the 'Rubus fructicosus'?
+Blackberry
+10
+
+Botany: What is the fruit of the Anna Comosus?
+Pineapple
+10
+
+Botany: What is the fruit of the hawthorn called?
+Haw
+10
+
+Botany: What is the fruit of the Prunus Armeniaca?
+Apricot
+10
+
+Botany: What is the name for an underground creeping stem that sends out shoots?
+Rhizome
+10
+
+Botany: What is the term for plants that produce shoots one year and flower,produce seeds and die the following year?
+Biennial
+10
+
+Botany: What kind of plant is fescue?
+Grass
+10
+
+Botany: What plant is opium derived from?
+Poppy
+10
+
+Botany: What si another name for an alligator pear?
+Avocado
+10
+
+Botany: What sort of beans are most usually used to produce bean sprouts?
+Mung beans
+10
+
+Botany: What type of tree is a redwood?
+Sequoia
+10
+
+Botany: Which common wild flower is known inScotland as Stinking Willie?
+Ragwort
+10
+
+Botany: Which flower is also called a flag?
+Iris
+10
+
+Botany: Which flower is sometimes called the Lent Lily?
+Daffodil
+10
+
+Botany: Which fruit has the name prunus persica?
+Peach
+10
+
+Botany: Which member of the Plumiera family of trees, unusually was named after a perfume rather than the other way around?
+Frangipani
+10
+
+Botany: Which parasitic plant was sacred to the druids?
+Mistletoe
+10
+
+Botany: Which plant is also known as the Burning Bush?
+White dittany
+10
+
+Botany: Which plant is the source of linen?
+Flax
+10
+
+Botany: Which plant was believed to shriek when pulled up?
+Mandrake
+10
+
+Botany: Which plants Latin name is Ficus Elastica?
+Rubber plant
+10
+
+Botany: which tree has catkins in the spring and edible nuts in the autumn?
+Hazel
+10
+
+Botany: which tree has the latin name fagus pupurea?
+Copper beech
+10
+
+Botany: Which tree only produces acorns after it is fifty years old?
+Oak
+10
+
+Botany: With what acid do nettles cause irritation?
+Formic acid
+10
+
+Botany: �Baby's Breath' is the common name for which plant?
+Gypsophila
+10
+
+Botany: �daffodils' belong to which genus of bulb?
+Narcissus
+10
+
+Botany: �Herb of Grace', is the name given to which strong smelling herb?
+Rue
+10
+
+Botany: �panther cap', 'stinkhorn' and 'penny bun' are types of which plants?
+Fungi
+10
+
+Bottom of the bag is the English translation of what French term?
+Cul-de-sac
+10
+
+Botvinnik, petrosian and tal have all been world champions of what?
+Chess
+10
+
+Bougainville is part of which island group?
+Solomon
+10
+
+Boy, as in Tallboy and Lowboy, is derived from the French word for what?
+Wood
+10
+
+Branch of medicine concerned with hair and its diseases?
+Trichology
+10
+
+Brazilia is the capital of ____
+Brazil
+10
+
+Brazzaville is the capital of ____
+Congo
+10
+
+Breakers footrace what does the Irish 'dubh linn' mean?
+Blackpool
+10
+
+Breakfast Items?
+Lox
+10
+
+Breakfast items/entrees?
+Scrambled Eggs
+10
+
+breathing lessons_?
+Anne tyler
+10
+
+Brecia is in which country?
+Italy
+10
+
+Breed of rock pigeon that is specially trained to return swiftly to its home?
+Homing pigeon
+10
+
+Bret ____ trademarked the nickname 'Hitman' in 1990
+Hart
+10
+
+Bret Hart trademarked the nickname '____ ' in 1990
+Hitman
+10
+
+Bret hart trademarked the nickname 'hitman' in____
+1990
+10
+
+Brian wanted to help contribute to a charity fund. A sponser told him for every mile he runs, they will donate $20.00 to the charity. If Brian runs 5 miles, how much will his sponsor donate to the charity?
+$100
+10
+
+Bridgeport is the largest city in which u.s state?
+Connecticut
+10
+
+Bridgetown the capital of ____
+Barbados
+10
+
+Brief commemorative inscription on a tomb; also, a short piece of poetry or prose lauding a deceased person?
+Epitaph
+10
+
+Brigham Young was a pioneer of which institution?
+The mormon church
+10
+
+Brilliant red or black mineral, with diamondlike luster, composed of titanium oxide, tio2?
+Rutile
+10
+
+Brimstone, referred to in the Bible and some Alchemy text, is?
+Sulphur
+10
+
+Britain and Argentina fought over these islands in 1982?
+Falklands Islands
+10
+
+Britain has fewer public holidays than any other country in Europe. Which countries, with up to 14 days off each, have the most?
+Spain and Portugal
+10
+
+Britain what's the adhesion of molecules to the surfaces of solids called?
+Adsorption
+10
+
+Britain: How many inches tall are the bearskins worn by the guards at Buckingham Palace?
+Twenty
+10
+
+Britain's ____ river is the Brun which runs through Burnley in Lancashire
+Shortest
+10
+
+Britain's first ____ was installed in Harrods in 1878
+Escalator
+10
+
+Britain's first escalator was installed in 1864, 1878 or 1902?
+1878
+10
+
+Britain's first space rocket was launched in 1964. What was it called?
+Blue streak
+10
+
+Britain's shortest river is the ____ which runs through Burnley in Lancashire
+Brun
+10
+
+Britain's shortest river is the Brun which runs through ____ in Lancashire
+Burnley
+10
+
+Britain's shortest river is the brun which runs through burnley in____
+Lancashire
+10
+
+Britains say 'tarmac'; Americans say ____
+Runway
+10
+
+British authour Helen Fielding wrote a best-selling novel about the diary of what fictional character?
+Bridget Jones
+10
+
+British Central Bank nationalised in 1946 renamed to...The?
+Bank Of England
+10
+
+British chemist, who isolated and described several gases, including oxygen, and who is considered one of the founders of modern chemistry because of his contributions to experimentation?
+Joseph priestley
+10
+
+British department of state in charge of revenue?
+Exchequer
+10
+
+British explorer who reached the South Pole in 1912?
+Scott
+10
+
+British gold coins worth ?1?
+Sovereigns
+10
+
+British History - What was Margaret Thatcher's nickname?
+Iron Lady
+10
+
+British Monarchs: Queen Victoria was born in this year?
+1819
+10
+
+British motor engineer, the first man to exceed 300mph in Bluebird?
+Malcolm campbell
+10
+
+British rock-music group that rivaled the popularity of the group's early contemporaries, the Beatles?
+The rolling stones
+10
+
+Briton's say 'tarmac', americans say ____
+Runway
+10
+
+Broadway Musicals?
+Miss Saigon
+10
+
+Broadway Musicals?
+Pippin
+10
+
+Brother or sisters daughter?
+Niece
+10
+
+Brothers Jacob and Wilhelm were librarians and professors of language in 19th Century Germany. What was their surname?
+Grimm
+10
+
+Brown-Eyed Handsome Man was a hit for which singer after his death?
+Buddy Holly
+10
+
+BSE was identified in Britain in which year?
+1986
+10
+
+Bubble gum contains____
+Rubber
+10
+
+Buck owens sang '____ naturally'
+Act
+10
+
+Buckingham Palace has over ____ rooms
+600
+10
+
+Buddy rich's real first name was what?
+Bernard
+10
+
+Buffalo river national park is in which state?
+Arkansas
+10
+
+Bufo bufo is the scientific name for which creature?
+Common toad
+10
+
+Bugs bunny made his debut in 1935, 1936 or 1937?
+1935
+10
+
+Builder of the great wall and first emperor of china?
+Shih huang ti
+10
+
+Buildings: Built in 1884, The Eiffel Tower was referred to as what?
+The Tragic Lamppost
+10
+
+Buildings: for housing aircraft?
+Hanger
+10
+
+Buildings: occupied by monks?
+Abbey
+10
+
+Buildings: started on Westminster Abbey in which year?
+1050
+10
+
+Buildings: What is the largest inhabited castle in the world?
+Windsor Castle
+10
+
+Buildings: Where is the 'whispering gallery'?
+St. Paul's Cathedral
+10
+
+Buildings: Where would you find a nave, apse, atrium and narthex?
+Basilica
+10
+
+Built in 1866____is one of only two American-owned square-rigged sailing ships still afloat on the Pacific Ocean
+Balclutha
+10
+
+Bulls are ____
+Colorblind
+10
+
+Burke and Wills are most associated with the exploration of which continent?
+Australia
+10
+
+Burns' beloved bear?
+Bobo 
+10
+
+Busey what disney movie stars merlin the magician and wart the boy king?
+Sword in the stone
+10
+
+Buzz Aldrin was the first man to ____ his pants on the moon
+Pee
+10
+
+Bwana means Sir in which language?
+Swahili
+10
+
+By 1919, there were ____ cars in the U.S
+6,000,000
+10
+
+By 65 years old, Americans have watched more than ____ years of television
+Nine
+10
+
+By 70 years of age, an average person will have shed how many pounds of skin?
+105
+10
+
+By age____ , most people have lost half of their taste buds
+Sixty
+10
+
+By consuming too much alcohol during pregnancy, what disorder can a mother give her unborn child?
+Foetal alcohol syndrome
+10
+
+By feeding hens certain ____ they can be made to lay eggs with varicolored yolks
+Dyes
+10
+
+By finding what, can the slope of a curve at any given point be determined?
+Derivative
+10
+
+By how much do the world's termites outweigh human beings?
+Ten to one
+10
+
+By raising your legs slowly and laying on your back, in what can you not sink?
+Quicksand
+10
+
+By what alias does ferris bueller get into chez luis?
+Abe frohman
+10
+
+By what collective name were Moe Howard,Jerry Howard and Larry Fine better known?
+The three stooges
+10
+
+By what country was the first concentration camp setup during the Boer wars?
+England
+10
+
+By what first name is a plane's automatic pilot commonly known?
+George
+10
+
+By what is the hudson river spanned?
+George Washington bridge
+10
+
+By what more familiar title is the First Lord of the Treasury better known?
+Prime minister
+10
+
+By what name are curtains known in the USA?
+Drapes
+10
+
+By what name are the followers of Zoroaster properly known?
+Parsees
+10
+
+By what name do we know entertainer reginald dwight?
+Elton john
+10
+
+By what name do we know the slender glass tube used for transferring or measuring out known volumes of liquids?
+Pipette
+10
+
+By what name do we usually refer to radio detection and ranging?
+Radar
+10
+
+By what name is 'albumen' more commonly known?
+Egg white
+10
+
+By what name is an Elk known in North America?
+Moose
+10
+
+By what name is Emmanuel Rudnitsky more widely known?
+Man Ray
+10
+
+By what name is gainsboroughs portrait buttal better known?
+Blue boy
+10
+
+By what name is Harry Angstrom known in the titles of John Updike's trilogy?
+Rabbit
+10
+
+By what name is Jacopo Robusti better known?
+Tintoretto
+10
+
+By what name is Lesley Hornby better known?
+Twiggy
+10
+
+By what name is maurice micklewhite better known?
+Michael caine
+10
+
+By what name is Mrs Anne Laurence better known?
+The princess royal
+10
+
+By what name is president Lyndon B Johnson's wife Claudia better known?
+Lady Bird
+10
+
+By what name is Robert Alln Zimmerman better known?
+Bob dylan
+10
+
+By what name is Robert Zimmermann, better known?
+Bob dylan
+10
+
+By what name is the 2nd day of february called in the u.s.a?
+Ground hog day
+10
+
+By what name is the 3rd battle of Ypres known?
+Passchendaele
+10
+
+By what name is the French king Charles the great better known?
+Charlemagne
+10
+
+By what name is the pioneering Swiss architect Charles Jeanneret better known?
+Le corbusier
+10
+
+By what name is the reed pipe of the bagpipes known?
+Chanter
+10
+
+By what name is the skeleton dug up in Sussex in 1912, and later found to be a hoax,known?
+Piltdown man
+10
+
+By what name is the skin complaint of 'comedo' better known?
+Blackheads
+10
+
+By what name is the skin condition called 'naevus' better known?
+Strawberry mark
+10
+
+By what name is Virginia Wynette Pugh better known?
+Tammy wynette
+10
+
+By what name was butch cassidy's outlaw gang popularly known?
+Wild bunch
+10
+
+By what name was Cambodian leader Saloth Sar better known?
+Pol pot
+10
+
+By what name was elizabeth foster better known?
+Mother goose
+10
+
+By what name was Indian political leader Mohandas Gandhi better known?
+Mahatma
+10
+
+By what name was Jean Baptiste Poquelin better known?
+Moliere
+10
+
+By what name was Kampuchea forerly known?
+Cambodia
+10
+
+By what name was Kampuchea formally known?
+Cambodia
+10
+
+By what name was King George the II also known as?
+Mad King George
+10
+
+By what name was Lord Greystoke better known?
+Tarzan
+10
+
+By what name was manfred von richtofen better known as?
+Red baron
+10
+
+By what name was outlaw Harry Longbaugh better known?
+Sundance kid
+10
+
+By what name was Percy Blakeney better known in a novel by Baroness Orczy?
+The Scarlet Pimpernel 
+10
+
+By what name was Queen Victoria's husband known?
+Prince albert
+10
+
+By what name was Robert Stroud better known?
+Birdman of alcatraz
+10
+
+By what name was tennessee was formerly known?
+Franklin
+10
+
+By what name was the 19th century sporting eccentric John Sholto Douglas better known He won a famous libel case in 1895?
+The marquess of queensberry
+10
+
+By what name was the American William Cody better known?
+Buffalo bill
+10
+
+By what name was the musical hall entertainer matilda Wood known?
+Marie lloyd
+10
+
+By what name was the Scottish outlaw Robert McGregor better known?
+Rob roy
+10
+
+By what name was william cody better known as?
+Buffalo bill
+10
+
+By what name was Zimbabwe previously known?
+Rhodesia
+10
+
+By what name, historically, was the burning to death of people condemned as heretics by the Spanish Inquisition known?
+Auto-da-fe
+10
+
+By what name, is the entertainment business, is victoria adams better known?
+Posh spice
+10
+
+By what nickname is the well-known American singer bruce springsteen often referred?
+The boss
+10
+
+By what nickname was George Brummell usually known?
+Beau brummell
+10
+
+By what other name do we know table tennis?
+Ping pong
+10
+
+By what other name do we ususally refer to Norway lobsters or Dublin Bay prawns?
+Scampi
+10
+
+By what other name is a fox's tail known?
+Brush
+10
+
+By what other name is La Cosa Nostra also known?
+The mafia
+10
+
+By what other name is Lac Leman known?
+Lake geneva
+10
+
+By what other name is the 180 degree meridian known as?
+International date line
+10
+
+By what other name is the abominable snowman known?
+Yeti
+10
+
+By what other name is the island of Lindisfarne known?
+Holy island
+10
+
+By what other name is the mountain K2 called?
+Mount godwin austen
+10
+
+By what process is chromium applied to car parts?
+Electroplating
+10
+
+By what process is rum created?
+Fermenting molasses
+10
+
+By what stage name was the music hall performer Maxwell George Lorimerknown?
+Max wall
+10
+
+By what title is A Dictionary of Arts and Sciences, the work of 2 Edinburgh printers now known?
+Encyclopaedia brittanica
+10
+
+By what title was Mohandas K Gandhi known?
+Mahatma
+10
+
+By which English sea port did Dracula enter the country?
+Whitby
+10
+
+By which name do we know Martha Jane Canary?
+Calamity jane
+10
+
+By which name is Eric Claudin better known?
+Phantom of the opera
+10
+
+By which name is Virginia McMath better known?
+Ginger Rogers
+10
+
+C.f.c.'s are said to be damaging to the ozone layer. for what do the initials c.f.c. stand?
+Chloro fluoro carbon
+10
+
+C3p0 is the first character to speak in which film?
+Star wars
+10
+
+Caciocavallo, herkimer, mysost, & trappist are all varieties of what?
+Cheese
+10
+
+Caesar, pompey, and crassus formed the what?
+First triumverate
+10
+
+Caesars fatal day?
+The ides of march
+10
+
+Cagliari is the capital of which mediterranean island?
+Sardinia
+10
+
+Calamari is a greek dish made from what sea creature?
+Squid
+10
+
+Calamine, used as an ointment , contains a carbonate of which element?
+Zinc
+10
+
+Caliari is the capital of which island?
+Sardinia
+10
+
+California is to Eureka as New York is to?
+Excelsior
+10
+
+California's ____ Epperson invented the Popsicle in 1905 when he was 11-years-old
+Frank
+10
+
+California's Frank ____ invented the Popsicle in 1905 when he was 11-years-old
+Epperson
+10
+
+California's Frank Epperson invented the ____ in 1905 when he was 11-years-old
+Popsicle
+10
+
+California's Frank Epperson invented the Popsicle in 1905 when he was ____ -years-old
+Eleven
+10
+
+California's long association with gold make this a natural nickname for the state?
+The Golden State
+10
+
+Calliope was the muse of what?
+Epic poety
+10
+
+Callisto, lo and Europa are moons of which planet?
+Jupiter
+10
+
+Can a short-sighted person see objects more clearly when they are close up or far away?
+Close up
+10
+
+Can lasers cut diamonds?
+Yes
+10
+
+Can there be lightning without rain?
+Yes
+10
+
+Can you name all of the Bradford's on Eight is Enough?
+Tom,Abbey,David,Mary,Joni,Susan,Nancy,Tommy,Elizabeth,Nicholas
+10
+
+Can you swim in the sea of showers?
+No
+10
+
+Canada is seperated on an imaginary line along the ____
+49th parallel
+10
+
+Canada is the world leader in the production of?
+Newsprint
+10
+
+Canadian and American Brands of Cigarettes?
+Rothmans
+10
+
+Canadian: a person loyal to the British crown in the 1780's?
+Loyalist
+10
+
+Canadian: early inn?
+Mile house
+10
+
+Canadian: prince edward island?
+Spud island
+10
+
+Canadian: sled dog first bred by eskimos?
+Malemute
+10
+
+canadianisms: popular term for rcmp officers?
+Mounties
+10
+
+canadianisms: popular term for the liberal party?
+Grits
+10
+
+canadianisms: rcmp stands for...?
+Royal Canadian mounted police
+10
+
+Canadians are sometimes thought of as?
+Canucks
+10
+
+Canberra is the capital of ____
+Australia
+10
+
+Cancer claims ____ victims an hour in America
+Forty
+10
+
+Candlestick maker what is the capital of iran?
+Teheran
+10
+
+Candlestick maker?
+Chandler
+10
+
+Cannibals are famous for eating what?
+Human flesh
+10
+
+Canvey Island is part of which county?
+Essex
+10
+
+Capable of being decomposed by the action of light?
+Photodegradable
+10
+
+Cape Verde is a former colony of which country?
+Portugal
+10
+
+Capital cities: name the capital of syria?
+Damascus
+10
+
+Capital cities: Vanuatu?
+Port vila
+10
+
+Capital cities: Western Samoa?
+Apia
+10
+
+Capital cities: what country's capital was formed when pesth and buda merged?
+Hungary
+10
+
+Capital city of Arizona & seat of Maricopa County, located on the salt river in the south central part of the state?
+Phoenix
+10
+
+Capital city of Quebec, Canada?
+Quebec
+10
+
+Capital l is the roman numeral for which number?
+Fifty
+10
+
+Capital of afghanistan?
+Kabul
+10
+
+Capital of argentina?
+Buenos aires
+10
+
+Capital of azerbaijan?
+Baku
+10
+
+Capital of boliva?
+La paz
+10
+
+Capital of brunei?
+Bandar seri begawan
+10
+
+Capital of burkina faso?
+Ougadougou
+10
+
+Capital of chile?
+Santiago
+10
+
+Capital of ecuador?
+Quito
+10
+
+Capital of egypt and the largest city in africa?
+Cairo
+10
+
+Capital of el salvador?
+San salvador
+10
+
+Capital of georgia (the country)?
+Tbilisi
+10
+
+Capital of Iceland?
+Reykjavik
+10
+
+Capital of jordan?
+Amman
+10
+
+Capital of montserrat?
+Plymouth
+10
+
+Capital of papua new guinea?
+Port moresby
+10
+
+Capital of Scotland?
+Edinburgh
+10
+
+Capital of tajikistan?
+Dushanbe
+10
+
+Capital of the state of arkansas?
+Little rock
+10
+
+Capital of the state of michigan?
+Lansing
+10
+
+Capital of the state of New York?
+Albany
+10
+
+Capital of the state of North Dakota?
+Bismarck
+10
+
+Capital of the state of Oregon?
+Salem
+10
+
+Captain Cook left Britain and Count Dracula arrived via which town?
+Whitby
+10
+
+Captain cook lost almost half his crew in 1768 on his first voyage to ____
+South pacific
+10
+
+Captain Cook was the first man to set foot on all continents except?
+Antarctica
+10
+
+Captain John Mason received a grant for land in 1629. He named this land after the English county of Hampshire where he had enjoyed a number of years as a child?
+New Hampshire
+10
+
+Captain of the Titanic that sank in 1912?
+Smith
+10
+
+Capuchin monks belong to which order?
+Franciscans
+10
+
+Carat is the internatinally standardised unit of weight for precious stones what is its equivalent in grams?
+0.2 grams
+10
+
+Carbonated soda water was invented in 1767, 1768 or 1769?
+1767
+10
+
+Carbonated water, with nothing else in it, can dissolve limestone, ____ , and many other low-Moh's hardness minerals
+Talc
+10
+
+Carbonated water, with nothing else in it, can dissolve limestone, talc, and many other low-Moh's hardness____
+Minerals
+10
+
+Carbonated water, with nothing else in it, can dissolve____ , talc, and many other low-Moh's hardness minerals
+Limestone
+10
+
+Card games: what's the crucial card in the game of hearts?
+Queen of spades
+10
+
+Card Games?
+Poker
+10
+
+Cargo pants and mini-skirts were part of the 2001 uniform of what 90 year old organization?
+Girl Scouts of America
+10
+
+Caries refers to decay in what?
+Teeth
+10
+
+Carl Switzer was the real name of which of the Our Gang characters?
+Alfalfa
+10
+
+Carmenta is the roman goddess of ____
+Childbirth
+10
+
+Carolyn ____ has discovered 32 comets and approximately 800 asteroids
+Shoemaker
+10
+
+Carolyn Shoemaker has discovered ____ comets and approximately 800 asteroids
+32
+10
+
+Carolyn Shoemaker has discovered 32 comets and approximately ____ asteroids
+800
+10
+
+Carolyn weston's novel poor, poor ophelia was the basis for what show?
+Streets of san francisco
+10
+
+Carpet, coral and pilot are all types of which animal?
+Snakes
+10
+
+Carrie all what is the capital of ohio?
+Columbus
+10
+
+Carroll Charles carroll died in 1832, 1836 or 1837?
+1832
+10
+
+Carson who succeeded joseph stalin as Russian premier?
+Georgy malenkov
+10
+
+Carter what do goldfish lose if kept in dimly lit or running water?
+Colour
+10
+
+Carthusians are old boys of which school?
+Charterhouse
+10
+
+Carvel and Clinker are methods of making what?
+Boats
+10
+
+Cary Grant plays a con man with a heart of gold in?
+Mr. Lucky
+10
+
+Cashmere comes from a(n) ____
+Goat
+10
+
+Casper and laramieare towns in which us state?
+Wyoming
+10
+
+Cass elliot was part of which 'monday monday' group?
+Mamas and papas
+10
+
+Castle Howard is in which county?
+North yorkshire
+10
+
+Catgut comes from ____ not cats
+Sheep
+10
+
+Catgut is made from dried...?
+Intestines
+10
+
+Catherine de medici was the first woman in europe to use tobacco, she took it in a mixture of____
+Snuff
+10
+
+Catherine de Medici was the first woman in Europe to use____ . She took it in a mixture of snuff
+Tobacco
+10
+
+Catherine the First of Russia, made a rule that no man was allowed to get drunk at one of her parties before ____ o'clock
+Nine
+10
+
+Catherine the Great found relaxation by being ____
+Tickled
+10
+
+Cathie Jung has the worlds smallest waist it was ____ inches round
+15
+10
+
+Cathy Rigby is the only woman to pose ____ for Sports Illustrated
+Nude
+10
+
+Cave dweller?
+Troglodyte
+10
+
+Cave dwellers in the loire valley, in france, are called?
+Troglodytes
+10
+
+Cavendish is the family name for which Duke?
+Devonshire
+10
+
+Cavity of the human body, bordered above by the ribs & below by the hips?
+Abdomen
+10
+
+Celebration of christs resurrection?
+Easter
+10
+
+Celtic language of Scots or Irish?
+Gaelic
+10
+
+Centre of amphitheatre?
+Arena
+10
+
+Cephalacaudal ____ is the reason our extremities develop faster than the rest of us
+Recapitulation
+10
+
+Cephalacaudal recapitulation is the reason our ____ develop faster than the rest of us
+Extremities
+10
+
+Cerberus guarded the gates of the underworld in Greek mythology.what kind of creature was this three headed being?
+Dog
+10
+
+Cereal used as food and in spirits?
+Barley
+10
+
+Ceres was the roman goddess of ____
+Grain
+10
+
+Ceres was the Roman goddess of what?
+Agriculture
+10
+
+Certain marbles are called 'alleys' because they are made of ____
+Alabaster
+10
+
+Cetology is the study of?
+Whales
+10
+
+Chablis comes from what major wine producing area of france?
+Burgundy
+10
+
+Chain of Islands to the West Of Cornwall?
+Isles of Scilly
+10
+
+Challenger's windscreen had to be replaced in 1983 because it collided with a ____ ____ ____
+Fleck of paint
+10
+
+Chamberlain whose funeral was attended by more than 100,000 in New York City in 1926?
+Rudolph valentino
+10
+
+Chances of a white ____ in New York: 1 in 4
+Christmas
+10
+
+Chances of a white Christmas in____: 1 in 4
+New york
+10
+
+Chances that a ____ in the U.S. will be solved: 1 in 7
+Burglary
+10
+
+Chances that a burglary in the u.s. will be solved: 1 in____
+Seven
+10
+
+Chanel No. 5 is a well-known fragrance. Which other number is also a Chanel perfume?
+No. 19
+10
+
+Changing of an employees job or working conditions to force resignation?
+Constructive dismissal
+10
+
+Channel 5 ACTION news with your host ____ ____
+Kent Brockman
+10
+
+Channel, between the southern tip of Florida & the island of Cuba, linking the Atlantic Ocean & the Gulf of Mexico?
+Straits of Florida
+10
+
+Channels in 1978, whose music did def leppard like to cover in small clubs?
+Thin lizzy
+10
+
+Characters from the board game 'clue'?
+Colonel Mustard
+10
+
+Characters in A A Milnes' classic childrens stories?
+Christopher robin
+10
+
+Characters, Actors, (FULL NAME) and Places from All My Children?
+Susan Lucci
+10
+
+Charcoal is made by heating what?
+Wood
+10
+
+Chargers, Demons Barracudas, Javelins, Cyclones and Challengers were all?
+Muscle cars
+10
+
+Charing Cross in London was built in commemoration of Queen Eleanor, who was the wife of which British King?
+Edward i
+10
+
+Charlemagne ruled a large part of western and central europe in the years?
+800-814
+10
+
+Charles Best & Frederick Banting discovered this live saving drug in 1922?
+Insulin
+10
+
+Charles carroll died in 1832, 1836 or 1837?
+1832
+10
+
+Charles Dickens was an insomniac, who believed his best chance of sleeping was in the centre of a bed facing directly?
+North
+10
+
+Charles l was brought to trial in which year?
+1649
+10
+
+Charles Lindbergh took how many sandwiches with him on his famous transatlantic flight?
+Four
+10
+
+Charles lindbergh took only four of these to eat with him on his famous transatlantic flight?
+Sandwiches
+10
+
+Charles Lindbergh's grandfather changed the family name to Lindbergh upon leaving Sweden in 1859. What was the original name of the Lindbergh family prior to that date?
+Manson
+10
+
+Charles lutwidge dodgson is the real name of what well known writer?
+Lewis carroll
+10
+
+Charles Manson once auditioned unsuccessfully for this group?
+The Monkees
+10
+
+Charles Pa Jean invented which building toy sensation in 1914?
+Tinkertoy
+10
+
+Charles Taze Russell was the founder of which religious organisation?
+Jehovah's witnesses
+10
+
+Charles the Simple was the grandson of Charles the Bald, both were rulers of?
+France
+10
+
+Charlie Brown's father was a?
+Barber
+10
+
+Charlie Chaplain's cane was made of?
+Bamboo
+10
+
+Charlie Chaplin once won ____ prize in a Charlie Chaplin look alike contest
+Third
+10
+
+Charter 77 was an association of individuals devoted to the assertion of lost human rights in which European country?
+Czechoslovakia
+10
+
+Chase chevy chase was the first original cast member to leave which show?
+Saturday
+10
+
+chastity was the name of the first-born of whom?
+Cher bono
+10
+
+Chaucer's Canterbury Tales were written in which century?
+Fourteenth
+10
+
+Cheap ornaments and trinkets?
+Bric-a-brac
+10
+
+Cheeses?
+Cheddar
+10
+
+Chefs started using ____ 5,000 years ago to spice up their cooking
+Onions
+10
+
+Chefs started using onions ____ years ago to spice up their cooking
+5,000
+10
+
+Chelsea,Bow and Spode are all types of what?
+Porcelain
+10
+
+Chemical compound of hydrogen & oxygen with the formula h2o2?
+Hydrogen peroxide
+10
+
+Chemical compound that has the formula nacl?
+Salt
+10
+
+Chemical compounds or mixtures that undergo rapid burning or decomposition with the generation of large amounts of gas and heat and the consequent production of sudden pressure effects?
+Explosives
+10
+
+Chemical got from coal tar and used as a solvent?
+Benzene
+10
+
+Chemically pure gold contains how many karats?
+24
+10
+
+Chemistry: 20% of what is in the metal part at the end of a pencil?
+Sulphur
+10
+
+Chemistry: As what is sulphur also known?
+Brimstone
+10
+
+Chemistry: For what is the chemical formula H2O2?
+Hydrogen peroxide
+10
+
+Chemistry: For what metal is 'Au' the chemical symbol?
+Gold
+10
+
+Chemistry: Hydrogen Hydroxide is more commonly known as what?
+Water
+10
+
+Chemistry: Nitrogen, a poisonous gas, makes up 78% of the ____ that we breathe
+Air
+10
+
+Chemistry: Of what is 98% of the weight of water made?
+Oxygen
+10
+
+Chemistry: Sodium barcarbonate is better known as ____
+Baking soda
+10
+
+Chemistry: Sodium bicarbonate is better known as ____
+Baking soda
+10
+
+Chemistry: Sodium Hydroxide is more commonly known as ____
+Lye
+10
+
+Chemistry: The process of removing salt from sea water is known as ____
+Desalination
+10
+
+Chemistry: The smallest portion of a substance capable of existing independently and retaining its original properties is a(n) ____
+Molecule
+10
+
+Chemistry: This ancient attempt to transmute base metals into gold was called ____
+Alchemy
+10
+
+Chemistry: This is the heaviest naturally occurring element?
+Uranium
+10
+
+Chemistry: This is the symbol for tin?
+Sn
+10
+
+Chemistry: This poisonous gas is in the exhaust fumes from cars?
+Carbon monoxide
+10
+
+Chemistry: To what group of elements do cerium, praesiodymium and promethium belong?
+Rare earth metals
+10
+
+Chemistry: Water containing carbon dioxide under pressure is called ____
+Soda water
+10
+
+Chemistry: What are Helium, Neon, Argon, Krypton and Xenon?
+Noble Gases
+10
+
+Chemistry: What are Petrol, Naphta, Kerosine, Diesel and Oil?
+Hydrocarbons
+10
+
+Chemistry: What colour does litmus paper turn if a solution is acidic?
+Red
+10
+
+Chemistry: What does the symbol 'Am' represent?
+Americium
+10
+
+Chemistry: What element has the periodic table name Au?
+Gold
+10
+
+Chemistry: What element has the periodic table name Na?
+Sodium
+10
+
+Chemistry: What element has the periodic table name Sb?
+Antimony
+10
+
+Chemistry: What element has the periodic table name Sn?
+Tin
+10
+
+Chemistry: What is a corrosive substance with a pH value less than 7 called?
+Acid
+10
+
+Chemistry: What is another name for iron oxide?
+Rust
+10
+
+Chemistry: What is brine?
+Salt water
+10
+
+Chemistry: What is calcium oxide commonly called?
+Lime
+10
+
+Chemistry: What is it that turns blue litmus paper red?
+Acid
+10
+
+Chemistry: What is the abbreviation for trinitrotoluene?
+Tnt
+10
+
+Chemistry: What is the atomic number for thalium?
+81
+10
+
+Chemistry: What is the atomic number of Bromine?
+Thirty five
+10
+
+Chemistry: What is the atomic number of Molybdenum?
+Forty two
+10
+
+Chemistry: What is the atomic number of sulphur?
+16
+10
+
+Chemistry: What is the atomic number of uranium?
+Ninety two
+10
+
+Chemistry: What is the chemical name for quicksilver?
+Mercury
+10
+
+Chemistry: What is the chemical symbol for copper?
+Cu
+10
+
+Chemistry: What is the chemical symbol for gold?
+Au
+10
+
+Chemistry: What is the chemical symbol for iron?
+Fe
+10
+
+Chemistry: What is the common name for lysergic acid diethylamide?
+LSD
+10
+
+Chemistry: What is the heaviest naturally occuring element?
+Uranium
+10
+
+Chemistry: What is the main component of air?
+Nitrogen
+10
+
+Chemistry: What is the more scientific name for quicksilver?
+Mercury
+10
+
+Chemistry: What is the symbol for copper?
+Cu
+10
+
+Chemistry: What is the symbol for iron in chemistry?
+Fe
+10
+
+Chemistry: What is the symbol for silver?
+Ag
+10
+
+Chemistry: What is the symbol for tin?
+Sn
+10
+
+Chemistry: What name is given to a chemical reaction which gives out heat?
+Exothermic
+10
+
+Chemistry: What name is given to a chemical reaction which takes in heat?
+Endothermic
+10
+
+Chemistry: What term is applied to ethyl alcohol that has been treated with poison to make it unfit for human consumption?
+Denatured
+10
+
+Chemistry: What type of paper is used to test for acidity and alkalinity?
+Litmus
+10
+
+Chemistry: Which element is also known as Quicksilver?
+Mercury
+10
+
+Chemistry: Who invented dynamite?
+Alfred Nobel
+10
+
+Cher won the oscar for best actress in 1987 for which film?
+Moonstruck
+10
+
+chessie the cat is the symbol of what us railroad?
+Chesapeake & ohio
+10
+
+Cheyenne, navahoe and arapaho are all what?
+Native American tribes
+10
+
+Chicago, people, places & things?
+Oprah Winfrey
+10
+
+Children grow faster in the ____ than they do the rest of the year
+Springtime
+10
+
+Childrens songs, sing a song of sixpence,How amny blackbirds were baked?
+Four and twenty
+10
+
+Childrens songs, sing a song of sixpence,what was the queen eating?
+Bread and honey
+10
+
+Childrens songs, sing a song of sixpence,where was the king?
+In his counting house
+10
+
+Childrens songs, sing a song of sixpence,where was the maid?
+In the garden
+10
+
+Childrens songs, sing a song of sixpence,where was the queen?
+In the parlour
+10
+
+Childrens songs, the grand old duke of york, had how many men?
+Ten thousand
+10
+
+Chili peppers he worked in a factory making toilets for airplanes before he recorded 'aint no sunshine when shes gone'?
+Bill withers
+10
+
+China banned the pigtail in 1911 as it was seen as a symbol of?
+Feudalism
+10
+
+China produces ____ eggs per year
+278,564,356,980
+10
+
+China which is the most remote island in the southern atlantic ocean?
+Bouvet island
+10
+
+China's Beijing Duck Restaurant can seat ____ people at one time
+9,000
+10
+
+China's largest city is ____
+Shanghai
+10
+
+Chips: 1980's Apple II 6502 ran at 2MHz. Where is 1995's PowerPC 604 clocked at?
+150mhz
+10
+
+Chips: A commonly used process for oxide and nitride deposition, CVD, stands for:?
+Chemical vepor deposition
+10
+
+Chips: AMD merged with this designer of the Nx686 Pentium competitor on 10/20/95?
+Nexgen
+10
+
+Chips: Because of this phenomenon, one shouldn't touch a chip's pin I/O:?
+Electrostatic discharge
+10
+
+chips: characteristic of thermal oxide caused by lateral 02 diffusion (it 'pecks')?
+Birds beak
+10
+
+Chips: Critical photolithographic dimensions in 1995 are measured in these units?
+Micron
+10
+
+Chips: Dielectric thickness can be calculated from this electrical measurement?
+Capacitance
+10
+
+Chips: Early MOSFET pioneer, Stanford grad & author of the EE's device bible:?
+Sze
+10
+
+Chips: EEPROM memory devices rely on this tunneling mechanism for cell erase:?
+Fowler-nordheim
+10
+
+chips: element existing abundantly in ordinary beach sand?
+Silicon
+10
+
+Chips: Element recently (1995) disclosed by IBM to catalyze certain metal contacts:?
+Mo
+10
+
+chips: manufacturer of the pentium microprocessor and where mach is working?
+Intel
+10
+
+Chips: Optical technique commonly used to measure thin film thickness, and RI:?
+Ellipsometry
+10
+
+chips: polarity of photoresist which permits an iverted image of a photomask:?
+Negative
+10
+
+Chips: The area in between chips on a wafer, where test and defect monitors lie:?
+Kerf
+10
+
+chips: two types of mosfets of which cmos is composed (answers sep'd by a space):?
+Nfet pfet
+10
+
+Chiromancer is the technical term for what occult median?
+Palm Reading
+10
+
+Chitlins are made from what part of the pig?
+Intestines
+10
+
+Chlorine is derived from the greek word meaning what?
+Green
+10
+
+Chocolate manufacturers use 40 percent of the world's ____
+Almonds
+10
+
+Choking - On what do approximately 100 people choke to death every year?
+Ballpoint pens
+10
+
+Cholera is caused by what?
+Bacteria
+10
+
+Choo rock groups: frankie lymon and the ____
+Teenagers
+10
+
+Chrissie Hynde was in which early eighties group?
+The Pretenders
+10
+
+Christ's image is alleged to be imprinted on this cloth?
+Shroud of turin
+10
+
+Christian Dior launched his 'New Look' in which year?
+1947
+10
+
+Christian sacrement in which bread and wine are consecrated and consummed?
+Eucharist
+10
+
+Christmas became a national holiday in the u.s in 1879, 1890 or 1895?
+1890
+10
+
+Christmas: In the 'Twelve days of christmas', how many items in total are sent by 'my true love'?
+78
+10
+
+Christmas: Name the loner rebel reindeer with the red shiny nose?
+Rudolph
+10
+
+Christmas: Santa Claus reportedly lives at the ____ Pole
+North
+10
+
+Chromosomal disorder occurring in about 1 out of every 800 births?
+Down syndrome
+10
+
+Chronic condition in which the skin of the scalp flakes off in excessive amounts?
+Dandruff
+10
+
+Chronic disease marked by overgrowth of hands, feet, & lower part of the face, resulting from excessive production of somatotropin, the growth-stimulating hormone hormone?
+Acromegaly
+10
+
+Chronic transmissible disease, due to bacilius leprae, is better known as ____
+Leprosy
+10
+
+Chub, gudgeon and perch are all types of what?
+Freshwater fish
+10
+
+Chumly was the walrus sidekick of what cartoon penguin?
+Tennessee tuxedo
+10
+
+Churchill what are phalanges?
+Finger bones
+10
+
+Churchill what kind of bug emerges in the 1975 movie the bug?
+Beetle
+10
+
+Churchill what was john lennon's first girlfriend's name?
+Thelma pickles
+10
+
+Churchill, F. D. Roosvelt and Stalin met here in 1945?
+Yalta
+10
+
+Cigarettes: brand named for a motorcycle make?
+Harley Davidson
+10
+
+Cigarettes: Cigarette brand synonymous with honor, virtue, achievement?
+Merit
+10
+
+Cigarettes: Cigarette brand, or a governor ruling in a monarch's name?
+Viceroy
+10
+
+cigarettes: cigarette brand, or an nc city?
+Raleigh
+10
+
+Cigarettes: Cigarette brand, or first name of Forrest Gump author?
+Winston
+10
+
+Cigarettes: Cigarette brand, or Robert Guillaume and shrubs?
+Benson and hedges
+10
+
+Cigarettes: cigarette brand, or the last name of a superhero's alter-ego?
+Kent
+10
+
+Cigarettes: Marlboro and Merit are brands from this company (2 wds)?
+Philip morris
+10
+
+Cigarettes: Smoking this menthol brand is hip, fashionable, just plain...?
+Kool
+10
+
+Cigarettes: This Canadian cigarette brand sponsors the Canadian Open (tennis and golf)?
+Du maurier
+10
+
+cigarettes: this is the us's no. 3 tobacco company as of 1995?
+Brown and williamson
+10
+
+Cigarettes: Tobacco drying barns are typically painted this color?
+Black
+10
+
+cigarettes: warning: smoking causes lung cancer, heart disease, emphysema, and may (2wds)?
+Complicate pregnancy
+10
+
+Cigarettes: Women's cigarette brand, or a Mercury model?
+Capri
+10
+
+Cigna Corporation is the second largest ____ in America
+Health Care Company
+10
+
+Cindy Crawford's earnings in 1994 were____?
+6.5 million dollars
+10
+
+Cinnabar is an ore of which metal?
+Mercury
+10
+
+Circle, Parabola and Hyperbola are three 3 of the four curves known as the conic sections. Name the fourth?
+Ellipse
+10
+
+Circuits can be wired in series or ____
+Parallel
+10
+
+Circular bands used to decorate ears, toes, noses, or, most often, fingers?
+Rings
+10
+
+Circular staircases in firehouses are a tradition began to keep what from coming upstairs?
+Horses
+10
+
+City in eastern china, situated on the Huangpu River, a tributary of the Yangtze River, near the Yangtze's mouth to the east China Sea?
+Shanghai
+10
+
+City in eastern Iowa, on the Mississippi River, seat of Clinton County?
+Clinton
+10
+
+City in northeastern Germany, capital of a United Germany from 1871 to 1945 & again since 1990?
+Berlin
+10
+
+City in western California, coextensive with San Francisco County?
+San francisco
+10
+
+city lights was the name of a film by whom?
+Charlie chaplin
+10
+
+City nicknames: where is motown?
+Detroit
+10
+
+City with the most rolls royce's per capita:?
+Hong kong
+10
+
+Cityin Belgium situated on the Meuse river?
+Liege
+10
+
+civil rights leader martin luther king, jr. led more than ____ demonstrators in a march down the mall in Washington dc
+250000
+10
+
+Clark ____ used to shower more than 4 times a day
+Gable
+10
+
+Clark Gable used to ____ more than 4 times a day
+Shower
+10
+
+Clark Gable used to shower more than ____ times a day
+4
+10
+
+Clark gable used to shower more than ____ times a day
+Four
+10
+
+Clark who is the smallest member of the european union?
+Luxembourg
+10
+
+Class of complex chemical compounds in plants?
+Glycosides
+10
+
+Class of invertebrates belonging to the coelenterate phylum?
+Hydrozoa
+10
+
+Claylike mineral, chief source of aluminium?
+Bauxite
+10
+
+Cleo and Caesar were the early stage names of?
+Sonny & cher
+10
+
+Cleopatra used what kind of seeds for lipstick?
+Pomegranate
+10
+
+Clergyman ranking below bishop?
+Archdeacon
+10
+
+Cleveland four u.s presidents have served entire terms without having a ____
+Vice
+10
+
+Cleveland spelled backwards is ____
+Dna level c
+10
+
+Cliches: A ____ of one's imagination
+Figment
+10
+
+Cliches: A bird in the hand is worth ____
+Two in the bush
+10
+
+Cliches: A gentleman & a ____
+Scholar
+10
+
+Cliches: A stitch in time saves ____
+Nine
+10
+
+Cliches: As clear as a ____
+Bell
+10
+
+Cliches: As close as two ____ in a pod
+Peas
+10
+
+Cliches: As easy as ____
+Pie
+10
+
+Cliches: As hard as ____
+Nails
+10
+
+Cliches: As mad as a ____
+Wet hen or hatter
+10
+
+Cliches: As nervous as a long-tailed cat in a room full of ____
+Rocking chairs
+10
+
+Cliches: As pretty as a ____
+Picture
+10
+
+Cliches: As sick as a ____
+Dog
+10
+
+Cliches: As sly as a ____
+Fox
+10
+
+Cliches: Born with a silver?
+Spoon
+10
+
+Cliches: Cross that ____ when you come to it
+Bridge
+10
+
+cliches: don't cry over spilled?
+Milk
+10
+
+Cliches: Don't take any wooden ____
+Nickels
+10
+
+Cliches: Hell hath no fury like a ____
+Woman scorned
+10
+
+Cliches: Hook, line, & ____
+Sinker
+10
+
+cliches: keep the from the door?
+Wolves
+10
+
+Cliches: Like bringing?
+Coals
+10
+
+cliches: make a mountain out of a?
+Molehill
+10
+
+Cliches: Necessity is the mother of ____
+Invention
+10
+
+Cliches: Not all it's ____ up to be
+Cracked
+10
+
+Cliches: On which side the bread is ____
+Buttered
+10
+
+cliches: the cat that swallowed the?
+Canary
+10
+
+Cliches: The greatest thing since ____ bread
+Sliced
+10
+
+Cliches: Time ____ when you're having fun
+Flies
+10
+
+Cliches: Too many ____ in the fire
+Irons
+10
+
+Cliches: Variety is the ____ of life
+Spice
+10
+
+cliches: when the come home?
+Cows
+10
+
+Close encounters of the first kind?
+Sighting unexplained craft
+10
+
+Closely related to pascal, niklaus wirth also played a part in what computer language's creation?
+Modula
+10
+
+Cloud heights are measured by a...?
+Ceilometer
+10
+
+Coal is sometimes added to softdrinks to make them ____
+Sweeter
+10
+
+Coarse and Fly are varieties of which popular activity?
+Fishing
+10
+
+Cocaine purified by heating with ether, and inhaled or smoked?
+Freebase
+10
+
+Codes: In alphabet radio code, what word is used for 'c'?
+Charlie
+10
+
+Codes: In alphabet radio code, what word is used for 'f'?
+Foxtrot
+10
+
+Codes: In alphabet radio code, what word is used for 'h'?
+Hotel
+10
+
+Codes: In alphabet radio code, what word is used for 't'?
+Tango
+10
+
+Codes: In alphabet radio code, what word is used for 'x'?
+X-ray
+10
+
+Codes: Using morse code, what does trasmitting using 3 dots, 3 dashes and 3 dots?
+SOS
+10
+
+Coffins which are due for cremation are usually made with ____ handles
+Plastic
+10
+
+Coin-operated phonograph that's the highest scoring Scrabble first turn word?
+Jukebox
+10
+
+Col rudolf able was the Russian spy exchanged in 1962 for who?
+Gary powers
+10
+
+Cold-blooded aquatic animals with backbones, gills, & fins are called____
+Fish
+10
+
+Collective name for pioneers or innovators in the field of art, music etc?
+Avant garde
+10
+
+Collectively, how were Jean Borotra, Jaques Brugnon, Henri Cochet and Ren? Lacoste known?
+Four musketeers
+10
+
+Collectively, what name is given to the first ten of the twenty six amendments to the united states' constitution?
+The bill of rights
+10
+
+Cologne water, a mildly perfumed toilet water also known as eau de Cologne, has been made in ____, West Germany since 1709
+Cologne
+10
+
+Colombo is the capital of ____
+Sri lanka
+10
+
+Colonel Waring, New York City Street Cleaning Commissioner, was responsible for organizing the first rubbish-sorting plant for recycling in the United States in?
+1898
+10
+
+Colorado has become known as a skier's paradise, perhaps destined after words from President?
+Theodore Roosevelt
+10
+
+Colorless chemical pesticide, dichlorodiphenyltrichloroethane, used to eradicate disease-carrying & crop-eating insects?
+Ddt
+10
+
+Colorless, corrosive liquid that has the chemical formula hno3?
+Nitric acid
+10
+
+Colorless, odorless, sweet-tasting alcohol, c3h8o3, with a specific gravity of 1.26?
+Glycerol
+10
+
+Colourless volatile liquid formerly used as an anaesthetic?
+Chloroform
+10
+
+Colours?
+Chartreuse
+10
+
+Colours?
+Red
+10
+
+Columbia is the capital of what state?
+South carolina
+10
+
+Comedian that is the disc jockey on the soundtrack to Resevoir Dogs?
+Steven wright
+10
+
+Comedians/Comediennes?
+Robin Williams
+10
+
+Comet that slammed into jupiter, in the mid 1990s, that reportedly would have destroyed all semblance of life on earth?
+Shoemaker-levy
+10
+
+Comet which visited in 1998, prompting a doomsday cult of about 30 people to commit suicide?
+Hale-bopp
+10
+
+Comfort food when we are feeling the blues?
+Chocolate
+10
+
+Comfrey (herb) baths were popular before the wedding night to attempt to repair the hymen and thereby apparently restore ____
+Virginity
+10
+
+Comic Book SuperHeroes?
+Superman
+10
+
+Comic Strip Trivia: What comic strip is set at Camp Swampy?
+Beetle bailey
+10
+
+Comics: Batman: Batman really doesn't like this superhero, and would love to punch him?
+Superman
+10
+
+Comics: Batman: Batman's Creator?
+Bob kane
+10
+
+Comics: Batman: Bruce's loyal and witty, if often sardonic, butler and mentor?
+Alfred
+10
+
+Comics: Batman: Graphic batman novel in which a virus battles a Coded Batman?
+Digital justice
+10
+
+Comics: Batman: Selena Kyle's alter-identity, now with her own series?
+Catwoman
+10
+
+Comics: Batman: The man who shot Thomas and Martha Wayne (Careful!, it wasn't the Joker!)?
+Joe chill
+10
+
+Comics: Batman: There have been this many Robins?
+Three
+10
+
+Comics: Batman: This red-headed villainess will give you a permanent itch?
+Poison ivy
+10
+
+Comics: Bill Watterson, cartoonist for Calvin & Hobbes, is the first cartoonist to use what word in his cartoon?
+Booger
+10
+
+Comics: Bloom County: Name of the groundhog?
+Portnoy
+10
+
+Comics: Bloom County: The author's name which is more putrid than Yaz Pistachio (first and last)?
+Berkely breathed
+10
+
+Comics: Bloom County: What is Oliver's full name (3 words)?
+Oliver wendell jones
+10
+
+Comics: Bloom County: Who was always being tormented by his anxiety closet?
+Binkley
+10
+
+Comics: Bloom County: Who's brain gets transplated into Bill's skull?
+Donald trump
+10
+
+Comics: cable's full real name?
+Nathan christopher summer
+10
+
+Comics: Calvin and Hobbes' artist?
+Bill watterson
+10
+
+Comics: Cartoon created by Dale Messick?
+Brenda starr
+10
+
+Comics: Cartoon created by Russell Myers?
+Broom hilda
+10
+
+Comics: Creator of Superman cartoon character who died in the early 90s?
+Joseph shuster
+10
+
+Comics: DC: Also known as Demon?
+Etrigan
+10
+
+Comics: DC: broke batman?
+Bane
+10
+
+Comics: DC: current leader of justice league America?
+Wonder woman
+10
+
+Comics: DC: girlfriend of lex luther ii?
+Supergirl
+10
+
+Comics: DC: green lantern's alter ego?
+Hal jordan
+10
+
+Comics: DC: group of heroes led by dick grayson?
+New titans
+10
+
+Comics: DC: Hometown of Green Lantern?
+Coast city
+10
+
+Comics: DC: killed superman?
+Doomsday
+10
+
+Comics: DC: of the new supermen, this one was a villain?
+Cyborg
+10
+
+Comics: DC: photographer for daily planet?
+Jimmy olsen
+10
+
+Comics: DC: Replaced Bruce Wayne as Batman?
+Jean Paul valley
+10
+
+Comics: DC: Secret identity of arthur curry?
+Aquaman
+10
+
+Comics: DC: Secret identity of boston brand?
+Deadman
+10
+
+Comics: DC: Secret identity of bruce wayne?
+Batman
+10
+
+Comics: DC: Secret identity of clark kent?
+Superman
+10
+
+Comics: DC: Secret identity of cliff steele?
+Robotman
+10
+
+Comics: DC: Secret identity of jay garrick?
+The flash
+10
+
+Comics: DC: Secret identity of Jim Corrigan?
+The spectre
+10
+
+Comics: DC: Secret identity of jimmy olson?
+Elastic lad
+10
+
+Comics: DC: Secret identity of jonn jonzz?
+Martian manhunter
+10
+
+Comics: DC: Secret identity of kay challis?
+Crazy jane
+10
+
+Comics: DC: Secret identity of kirk morrison?
+King mob
+10
+
+Comics: DC: Secret identity of Lyta Trevor?
+Fury
+10
+
+Comics: DC: Secret identity of Maggie Sawyer?
+Maggie sawyer
+10
+
+Comics: DC: Secret identity of Wally West?
+The flash
+10
+
+Comics: DC: what relation was superman to supergirl?
+First cousin
+10
+
+Comics: DC: younger version of aquaman?
+Aqualad
+10
+
+Comics: Dilbert: how are elbonian factories powered?
+Stationary bikes
+10
+
+Comics: Dilbert: which test does the gruntmaster 6000 fail?
+Armageddon
+10
+
+Comics: Elzie Crisler Segar created the comic strip character Popeye in?
+1919
+10
+
+Comics: giant robots that hunted mutants?
+Sentinels
+10
+
+Comics: how many x-men were there originally?
+Five
+10
+
+Comics: In 'blondie' who was dagwood's boss?
+Mr dithers
+10
+
+Comics: In 'blondie', who was blondie's husband?
+Dagwood
+10
+
+Comics: In 'blondie', who was dagwood's best friend?
+Herb
+10
+
+Comics: In 'blondie', who was dagwood's wife?
+Blondie
+10
+
+Comics: List some SuperVillains?
+Mr. Freeze
+10
+
+Comics: List some SuperVillians?
+Apocalypse
+10
+
+Comics: magneto's real name?
+Erik magnus lensherr
+10
+
+Comics: Mentor of Titan had two children in the Marvel comics, Thanos and ____
+Ero
+10
+
+Comics: mr fantastic and invisible girl's son?
+Franklin richards
+10
+
+Comics: Name the creator of the comic strip the Peanuts?
+Charles shultz
+10
+
+Comics: Peanuts: schroeder's favorite composer?
+Beethoven
+10
+
+Comics: Peanuts: snoopy and woodstock play hockey on this when the water freezes?
+Birdbath
+10
+
+Comics: Peanuts: the amount lucy charges at her psychiatry booth?
+5 cents
+10
+
+Comics: Peanuts: the catcher on the gang's baseball team?
+Schroeder
+10
+
+Comics: Peanuts: The name of Snoopy's brother who lives in the desert town of Needles?
+Spike
+10
+
+Comics: Peanuts: The only character that does not speak, or think, in English?
+Woodstock
+10
+
+Comics: Peanuts: The second-baseman on the gang's baseball team?
+Linus
+10
+
+Comics: Peanuts: This character always pulls the football away from Charlie Brown?
+Lucy
+10
+
+Comics: Peanuts: this is what marci calls peppermint patti?
+Sir
+10
+
+Comics: Peanuts: This is what Peppermint Patti calls Charlie Brown?
+Chuck
+10
+
+Comics: Secret identity of Billy Batson?
+Captain Marvel
+10
+
+Comics: Secret identity of Clark kent?
+Superman
+10
+
+Comics: Secret identity of Dick Grayson?
+Robin
+10
+
+Comics: Secret identity of Doctor Banner?
+The Incredible Hulk
+10
+
+Comics: Secret identity of Don Blake?
+The Mighty Thor
+10
+
+Comics: Secret identity of Henry Penfold?
+Hong Kong Phooey
+10
+
+Comics: Secret identity of John Reid?
+The Lone Ranger
+10
+
+Comics: Secret identity of Mark Harris?
+The Man From Atlantis
+10
+
+Comics: Secret identity of Paul Metcalfe?
+Captain Scarlet
+10
+
+Comics: Secret identity of Peter Parker?
+Spiderman
+10
+
+Comics: The amazing Spider Man was one of the first comic books to have a story in which one of the supporting characters ____
+Died
+10
+
+Comics: the beast formerly belonged to this group?
+Avengers
+10
+
+Comics: the creator of x-men?
+Stan lee
+10
+
+Comics: the founder of the x-men (real name)?
+Charles xavier
+10
+
+Comics: the x-men otherwise known as the?
+Children of the atom
+10
+
+Comics: This comic by Mark Schultz briefly appeared as a network TV show?
+Cadillacs and dinosaurs
+10
+
+Comics: What color suit does Clark Kent always wear?
+Blue
+10
+
+Comics: what colour suit does clark kent always wear?
+Blue
+10
+
+Comics: what does the beast say when he's suprised?
+Oh my stars and garters
+10
+
+Comics: what is captain America's real name?
+Steve rogers
+10
+
+Comics: what is captain marvel's favorite expression?
+Holey moley
+10
+
+Comics: what is iron man's real name?
+Tony stark
+10
+
+Comics: what is the incredible hulk's real name?
+Bruce banner
+10
+
+Comics: What is the name of Superman's super cat?
+Streaky
+10
+
+Comics: What is tin tin's dog's name?
+Snowy
+10
+
+Comics: what mountain peak does captain marvel fly over?
+Rock of eternity
+10
+
+Comics: What sound does wolverine's adamantium claws make when he extends them from his forearms?
+Snikt
+10
+
+Comics: what was storm's profession when she was young?
+Pickpocket
+10
+
+Comics: when professor x was killed by his son, an alternate timeline was formed. what was it called?
+Age of apocalypse
+10
+
+Comics: Where was Li'l Abner's hometown?
+Dogpatch
+10
+
+Comics: who is professor x's half brother?
+Juggernaut
+10
+
+Comics: who is the x-men's arch nemesis?
+Magneto
+10
+
+Comics: who was the first x-man to die?
+Thunderbird
+10
+
+Comics: X-Men: Charles Xavier loves her?
+Lilandra
+10
+
+Comics: X-Men: Gahck battled wolverine here?
+Savage land
+10
+
+Comics: X-Men: Longshot's Miniseries was penciled by him?
+Adams
+10
+
+Comics: X-Men: Magneto founded this?
+Brotherhood of evil mutants
+10
+
+Comics: X-Men: She hired Gatecrasher's Technet to kidnap Captain Britain?
+Saturnyne
+10
+
+Comics: X-Men: She ruled Limbo?
+Illyana rasputin
+10
+
+Comics: X-Men: SpiderMan begs him to kill him in the Savage land?
+Ka-zar
+10
+
+Comics: X-Men: The first villain faced by the New Mutants was him?
+Donald pierce
+10
+
+Comics: X-Men: Wolverine and SpiderMan discovered the identity of HobGoblin Here?
+Berlin
+10
+
+Comics: X-Men: X-Men (past and present)?
+Wolverine
+10
+
+Commercial enterprise of hunting whales to obtain oil, whalebone, meat, & various by-products?
+Whaling
+10
+
+Commercial raising of chickens, turkeys, ducks, & geese for their meat & eggs?
+Poultry farming
+10
+
+Common inclusive term used to describe physical discomfort of the upper gastrointestinal tract, associated with eating or drinking?
+Indigestion
+10
+
+Common name applied to a group of vegetable products, both amorphous & crystalline, obtained from various plants, & important commercially in the tanning of leather?
+Tannins
+10
+
+Common name for a family comprising about 80 genera & 1500 species of herbs, shrubs, & some trees, & for its representative genus?
+Mallow
+10
+
+Common name for a family of flowering plants & for its representative genus?
+Buttercup
+10
+
+Common name for a family of grasslike flowering plants with characteristically triangular stems?
+Sedge
+10
+
+Common name for a family of herbaceous flowering plants?
+Iris
+10
+
+Common name for a family of mostly herbaceous flowering plants, & for its representative genus?
+Pink
+10
+
+Common name for a family of mostly woody flowering plants, and for one of its important genera?
+Tea
+10
+
+Common name for a family of woody or herbaceous flowering plants of worldwide distribution, & for its well-known genus?
+Mint
+10
+
+Common name for a genus of about 40 species of coniferous trees, indigenous to the northern hemisphere, nearly half being natives of North America?
+Spruce
+10
+
+Common name for a genus of perennial flowers of the buttercup family?
+Globeflower
+10
+
+Common name for a large genus of hardwood trees that are widespread in the north temperate zone?
+Oak
+10
+
+Common name for a large sea turtle, named for the color of its fat, although the animal is brownish overall?
+Green turtle
+10
+
+Common name for a medium-size family of flowering plants with many important fruit & ornamental species, & for its representative genus?
+Rose
+10
+
+Common name for a medium-size family of mostly woody flowering plants widely distributed in tropical areas, & for its representative genus?
+Soapberry
+10
+
+Common name for a number of species of water birds of the same family as ducks & swans?
+Goose
+10
+
+Common name for a plant family comprising about 227 genera & 4450 species of mostly temperate herbs, & for its representative genus?
+Figwort
+10
+
+Common name for a plant family with about 50 genera & 1300 species?
+Ginger
+10
+
+Common name for a plant family, & for plants of the family's typical genus?
+Milkweed
+10
+
+Common name for a plant of the sedge family?
+Papyrus
+10
+
+Common name for a small family of aquatic flowering plants, & for its representative genus?
+Water lily
+10
+
+Common name for a small family of trees, widespread in the temperate areas of the northern hemisphere, & for its representative genus?
+Maple
+10
+
+Common name for a small family of woody flowering plants, & for certain trees of its representative genera?
+Willow
+10
+
+Common name for a small thorny tree (rue), & for its fruit?
+Lemon
+10
+
+Common name for a species of bear, similar in size to a large cat, with thick, reddish-brown fur?
+Lesser panda
+10
+
+Common name for a tropical tree (mulberry), grown on the islands of the south pacific ocean?
+Breadfruit
+10
+
+Common name for about 19 species of annual herbs, of the grass family (grasses)?
+Rice
+10
+
+Common name for about 200 species of algae belonging to the phylum charophyta of the plant kingdom?
+Stonewort
+10
+
+Common name for about 2200 species of fishes, of which some 1200 are south American?
+Catfish
+10
+
+Common name for about 34,000 species of arthropod animals having eight walking legs, anterior appendages bearing fangs & poison glands, & specialized reproductive organs on the second appendages of the male?
+Spider
+10
+
+Common name for about 90 species of small songbirds, all of which are found in eurasia?
+Lark
+10
+
+Common name for an almost exclusively meat-eating family of mammals (carnivore) that are superbly adapted for their typically predatory life?
+Cat family
+10
+
+Common name for an amphibian of the order that also includes toads?
+Frog
+10
+
+Common name for an annual leguminous (legume) plant & its seeds?
+Soybean
+10
+
+Common name for any animal of the vertebrate class lying between fishes & reptiles on the evolutionary scale?
+Amphibian
+10
+
+Common name for any large member of a family of rodents, with dull-colored, coarse fur; long tails; large ears; & a pointed snout?
+Rat
+10
+
+Common name for any member of a family of annual & perennial herbs & shrubs, native to subtropical & temperate regions worldwide?
+Saint john's wort
+10
+
+Common name for any member of a genus of plants, of the mustard family?
+Wallflower
+10
+
+Common name for any of a genus of coniferous trees (pine)?
+Hemlock
+10
+
+Common name for any of a group of mainly aquatic arthropod invertebrates, including the crab, lobster, & shrimp?
+Crustacean
+10
+
+Common name for any of a large family of luminescent beetles?
+Firefly
+10
+
+Common name for any of a large group of mammals, most of which carry their young in an abdominal pouch after birth?
+Marsupial
+10
+
+Common name for any of about 2000 species of two-winged insects (fly)?
+Mosquito
+10
+
+Common name for any of about 30 species of long-legged, long-necked wading birds of the same family as the spoonbills?
+Ibis
+10
+
+Common name for any of seven species of water birds constituting a distinct section of the duck family?
+Swan
+10
+
+Common name for any of several different species of marine bivalve mollusks?
+Oyster
+10
+
+Common name for any of several marine spiny-finned food fishes?
+Weakfish
+10
+
+Common name for any of several species of highly social bees known for their honey-hoarding behavior & their use as a domesticated species (beekeeping)?
+Honey bee
+10
+
+Common name for any of the invertebrate animals making up two classes of the coelenterate phylum?
+Jellyfish
+10
+
+Common name for any one of numerous varieties of sweet fruits of the gourd family, that grow on two species of trailing vines?
+Melon
+10
+
+Common name for certain flowering plants often grown as houseplants?
+African violet
+10
+
+Common name for certain mammals in the mole family that lead a semiaquatic existence beside ponds & streams, feeding on insects, fish, & mollusks?
+Desman
+10
+
+Common name for certain marine members of a family of venomous snakes?
+Sea snake
+10
+
+Common name for certain members of a family of venomous snakes, known for their intimidating behavior & deadly bite?
+Cobra
+10
+
+Common name for certain slow-moving arboreal mammals that inhabit the tropical forests of south & central America?
+Sloth
+10
+
+Common name for certain small, burrowing mammals characterized by a pointed snout; rudimentary eyes; soft, thick, velvety fur; short legs; broad feet; & long, powerful claws on the front pair of legs?
+Mole
+10
+
+Common name for flightless, aquatic birds of the southern hemisphere?
+Penguin
+10
+
+Common name for many food fishes, but not corresponding to any particular scientific classification?
+Bass
+10
+
+Common name for many rodents belonging to the same family as the woodchuck (marmot), chipmunk, and prairie dog?
+Squirrel
+10
+
+Common name for members of a family of widely distributed shorebirds consisting of more than 60 species?
+Plover
+10
+
+Common name for nonpoisonous snakes of the boa family?
+Boa
+10
+
+Common name for numerous heavy-bodied, large-jawed, sedentary fishes found close to weeds, coral, & other protected coastal areas?
+Grouper
+10
+
+Common name for passerine birds of several unrelated families, many having the habit of capturing insects on the wing?
+Flycatcher
+10
+
+Common name for several plants of the family of composite flowers?
+Thistle
+10
+
+Common name for several related plants, especially for certain hybrids cultivated as ornamentals & sold as dried bulbs for growing as houseplants?
+Amaryllis
+10
+
+Common name for small, bloodsucking, wingless insects?
+Flea
+10
+
+Common name for soft-bodied, usually parasitic animals, the simplest of animals possessing heads?
+Flatworm
+10
+
+Common name for solitary, slow-moving lizards, so named for their shape & their well-developed, protective, bony osteoderms (scales) that lie just beneath the outer skin?
+Alligator lizard
+10
+
+Common name for the family comprising a peculiar group of spiny, fleshy plants native to America?
+Cactus
+10
+
+Common name for the five species of a family of birds having exceptionally long legs & long, highly flexible necks?
+Flamingo
+10
+
+Common name for the species of a genus of large birds having a long, large, flattened bill, the upper mandible terminated by a strong hook that curves over the tip of the lower one?
+Pelican
+10
+
+Common name for three or four species of large trees native to mountainous areas of north africa & asia?
+Cedar
+10
+
+Common name for two different members of the deer family?
+Elk
+10
+
+Common name for two families of true (two-winged) flies, the larvae of what feed on fresh or decaying vegetable matter?
+Fruit fly
+10
+
+Common name for white soft limestone?
+Chalk
+10
+
+Common name given to several unrelated groups of seed-eating birds including the true finches, the hawaiian honeycreepers (honeycreeper), & a family of tiny birds of tropical & subtropical areas of eurasia?
+Finch
+10
+
+Common name loosely applied to any biting two-winged fly?
+Gnat
+10
+
+Common numbers (ie11)?
+411
+10
+
+Common ore of iron, and one of the most commonly occurring minerals in nature?
+Goethite
+10
+
+Commonwealth day is celebrated on the second monday of which month?
+March
+10
+
+Comoros and Gambia are among 4 countries where virtually 100% of the women are married by age 50, name the other two?
+Ghana and Nauru
+10
+
+Compact, opaque gemstone ranging in color from dark green to almost white?
+Jade
+10
+
+Company that formerly owned Nullsoft & Winamp?
+America On-Line
+10
+
+Company what is the abbreviation for lake minnetonka?
+Lake tonka
+10
+
+Company what is the former name of the tonka metalcraft company?
+Mound metalcraft
+10
+
+Compared to the earth, how much gravity does the moon have?
+One eighth
+10
+
+Complete or almost complete absence of the sense of sight?
+Blindness
+10
+
+Complete the group title ?Gerry and the' what?
+Pacemakers
+10
+
+Complete the name of the 1970s group Bachman Turner ____
+Overdrive
+10
+
+Complete the name of the 1970s group Sutherland Brothers and ____
+Quiver
+10
+
+Complete the proverb: 'What you lose on the swings...'?
+You gain on the roundabouts
+10
+
+Complete the proverb: There's many a good tune?
+Played on an old fiddle
+10
+
+Complete the saying: 'He who praises everybody ...'?
+Praises nobody
+10
+
+Complete the saying: 'What can't be cured must be ...'?
+Endured
+10
+
+Complete the saying: An apple a day?
+Keeps the doctor away
+10
+
+Complete this phrase: friends, romans,?
+Countrymen
+10
+
+Complete this proverb:'listeners never hear any...'?
+Good of themselves
+10
+
+Complete this saying 'all ship shape and'?
+Bristol fashion
+10
+
+Complex disease of uncertain origin caused by the faulty metabolism of uric acid produced in the body by breakdown of protein, & resulting in elevated levels of uric acid in the blood?
+Gout
+10
+
+Compounds of which molecule outnumber tenfold all other compounds of molecules together?
+Carbon
+10
+
+Comprising of 9 member countries, with cambodia poised to join as its tenth member is this grouping?
+Asean
+10
+
+Computers: After breaking into physicist Tsutomu Shimomura's computer on Christmas in 1994, what legendary hacker was taken down?
+Kevin Mitnick
+10
+
+Computers: demo means____
+Demonstration
+10
+
+Computers: Digital Equipment Corporation sued what computer chip manufacturer claiming it stole the technology to develop the Pentium Pro?
+Intel Corporation
+10
+
+Computers: From what source did William Henry Gates III amass his fortune?
+Computer software
+10
+
+Computers: Hal, the computer in 2001: A Space Odyssey, got its name how?
+The letters before I B and M
+10
+
+Computers: How many bits are in a nibble?
+4
+10
+
+Computers: How much cache did the Coppermine CPU have?
+256k
+10
+
+Computers: How much cache did the Katmai CPU have?
+512k
+10
+
+Computers: How much cache did the Mendocino CPU have?
+128k
+10
+
+Computers: How much cache did the Thunderbird CPU have?
+256k
+10
+
+Computers: How much cache did the Tualatin CPU have?
+512k
+10
+
+Computers: How much cache did the Willamette CPU have?
+256k
+10
+
+Computers: In computer lingo what is a MUD?
+Multi User Computer Game
+10
+
+Computers: In what field of study are the terms CPU, PC, and VDU used?
+Computer Science
+10
+
+Computers: In what year was the Intel Pentium processor introduced?
+1993
+10
+
+Computers: List some operating systems?
+DOS
+10
+
+Computers: List some parts?
+Hard Drive
+10
+
+Computers: mhz stands for____
+Megahertz
+10
+
+Computers: Movie maker George Lucas Filed a law suit against President Ronald Reagan to get him to stop referring to an outer space computer controlled defense system as what?
+Star Wars
+10
+
+Computers: On the birthday of a famous painter, every March 6th, what computer virus strikes?
+Michelangelo
+10
+
+Computers: Pixar created a 1995 blockbuster hit move using computer animation. What was the title of the movie?
+Toy Story
+10
+
+Computers: Red Hat and Yellow Dog are computer outfits that distributed an alternative computer operating system. What was the name of the system?
+Linux
+10
+
+Computers: That big square thing you're staring at right now is called a ____
+Monitor
+10
+
+Computers: The Dancing Baby computer generated 3D image danced it's way onto what TV show in 1998?
+Ally McBeal
+10
+
+Computers: The displays commonly found in notebook and laptop computers are called what?
+Liquid Crystal Display
+10
+
+Computers: The Electronic Frontier Foundation named its $250,000 computer designed to crack the U.S. government's outdated DES cryptographic code what?
+Deep Crack
+10
+
+Computers: The first computer used for weather research was named what?
+MANIAC
+10
+
+Computers: The generic term for the mechanical, electrical and electronic components of a computer are called what?
+Hardware
+10
+
+Computers: The Internet Relay Chat Program, which normally connects to port 6667, is more commonly known as ____
+Irc
+10
+
+Computers: The Los Angeles Police Department developed a computer program to help solve homicides. What was it called?
+HITMAN
+10
+
+Computers: to erase data or files from your computer is to____
+Format
+10
+
+Computers: To reorganise the data on your hard drive?
+Defragment
+10
+
+Computers: to transmit files from a central computer or server to another is called____
+Upload
+10
+
+Computers: What common element is used in the manufacture of computer chips?
+Silicon
+10
+
+Computers: What country did the operating system 'Linux' come from?
+Finland
+10
+
+Computers: What did Charles Babbage invent when he designed his analytical engine in 1833?
+Computer
+10
+
+Computers: What does 'IBM' stand for?
+International Business Machines
+10
+
+Computers: What does ietf stand for?
+Internet Engineering Task Force
+10
+
+Computers: what does ram stand for?
+Random access memory
+10
+
+Computers: What does TFT mean when seen on a monitor?
+Thin film transistor
+10
+
+Computers: What does the 'x' mean when referring to the speed of a CD-rom (eg. 32x)?
+Times (faster than standard speed)
+10
+
+Computers: What is MUD an abbreviation for?
+Multiple User Dungeon
+10
+
+Computers: What is the codename for Pentium III cpu's with 256k cache?
+Coppermine
+10
+
+Computers: What is the codename for Pentium III cpu's with 512k cache?
+Katmai
+10
+
+Computers: What is the codename for Pentium IV cpu's with 256k cache?
+Willamette
+10
+
+Computers: What is the codename for Pentium IV cpu's with 512k cache?
+Northwood
+10
+
+Computers: What is the difference between the Intel 386DX and the Intel 386SX processor?
+Math Coprocessor
+10
+
+Computers: What is the reason behind the layout of the Qwerty keyboard?
+To slow down typing rates
+10
+
+Computers: What is the successor to AMD's 5x86 CPU?
+Athlon
+10
+
+Computers: What is the successor to AMD's Athlon CPU?
+Athlon XP
+10
+
+Computers: What is the successor to ATI's Rage 128 video chipset?
+Radeon
+10
+
+Computers: What is the successor to ATI's Rage Pro video chipset?
+Rage 128
+10
+
+Computers: What is the successor to Intel's Pentium CPU?
+Pentium II
+10
+
+Computers: What is the successor to Intel's Pentium II CPU?
+Pentium III
+10
+
+Computers: What is the successor to Intel's Pentium III CPU?
+Pentium IV
+10
+
+Computers: What is the successor to Nvidia's Geforce 256 video chipset?
+Geforce2
+10
+
+Computers: What is the successor to Nvidia's Geforce2 video chipset?
+Geforce3
+10
+
+Computers: What is the successor to Nvidia's Riva 128 video chipset?
+TNT
+10
+
+Computers: What is the successor to Nvidia's TNT video chipset?
+TNT2
+10
+
+Computers: What is the successor to Nvidia's TNT2 video chipset?
+Geforce 256
+10
+
+Computers: What is the successor to the Intel 486 CPU?
+Pentium
+10
+
+Computers: What kind of fruit was used to name a computer in 1984?
+Apple
+10
+
+Computers: What letter is between Q and E on a computer keyboard?
+W
+10
+
+Computers: What personal computer became a video production system with the addition of New Tek's Video Toaster?
+Amiga
+10
+
+Computers: What size cache do Pentium II cpu's have?
+512k
+10
+
+Computers: What time doe the computer virus W32.MARIJUANA interrupt you to suggest taking a break?
+4:20 p.m.
+10
+
+Computers: What type of memory do i815 motherboards use?
+SDRAM
+10
+
+Computers: What type of memory do i820 motherboards use?
+RDRAM
+10
+
+Computers: What type of memory do i845 motherboards use?
+DDR-SDRAM
+10
+
+Computers: What type of memory do i850 motherboards use?
+RDRAM
+10
+
+Computers: What type of memory do Intel BX motherboards use?
+SDRAM
+10
+
+Computers: What type of memory do KT133 motherboards use?
+SDRAM
+10
+
+Computers: What type of memory do KT266 motherboards use?
+DDR-SDRAM
+10
+
+Computers: What type of printer did Seiko develop for the 1964 Tokyo Olympics?
+Dot matrix
+10
+
+Computers: What U.S. Democratic senator had the first internet home page?
+Ted Kennedy
+10
+
+Computers: What was Fortran designed for?
+Formula Translation
+10
+
+Computers: What was invented over 3000 years ago that is now considered the first 'computer'?
+Abacus
+10
+
+Computers: What was the first version of Microsoft Windows to have networking capabilities?
+Windows for Workgroups
+10
+
+Computers: What was the first version of Microsoft Windows?
+Windows 286
+10
+
+Computers: What was the name of the computer company that was named after the founder's memories of a summer in an Orchard in Oregon?
+Apple
+10
+
+Computers: What was the name of the computer language named after a French philosopher and mathematician?
+PASCAL
+10
+
+Computers: what year was the first IBM pc introduced?
+1981
+10
+
+Computers: when software stops responding & your computer freezes, what has happened to your computer?
+It crashed
+10
+
+Computers: Which brothers built a home-made supercomputer to calculate the digits of Pi?
+Chudnovsky
+10
+
+Computers: Which computer company dropped the Play Station line and created an Aptiva brand computer for home users?
+IBM corporation
+10
+
+Computers: Which computer language is an acronym of the name of the world's first computer programmer?
+ADA
+10
+
+Computers: Who is the CEO of Apple computers?
+Steve Jobs
+10
+
+Conakry is the capital of ____
+Guinea
+10
+
+Concertino=short concerto, concertina=simple type of this instrument?
+Accordian
+10
+
+Concetta rosa maria franconero is the real name of which 60's singer?
+Connie francis
+10
+
+Concordia is the roman goddess of ____
+Harmonious relations
+10
+
+Condition existing at the free surface of a liquid, resembling the properties of an elastic skin under tension?
+Surface tension
+10
+
+Condition in a circuit in which the combined impedances of the capacity and induction to alternating currents cancel each other out or reinforce each other?
+Resonance
+10
+
+Condition in which body temperature falls drastically as a result of exposure to cold?
+Hypothermia
+10
+
+Condition of persistent mental and emotional stress occuring after injury or severe shock?
+Post-traumatic stress disorder
+10
+
+Condition of weather that occurs when the air temperature is below freezing?
+Frost
+10
+
+Conifer with dark foliage?
+Cypress
+10
+
+Connecticut was nicknamed beacuse John Fiske, the historian, claimed that The Fundamental Orders of 1638-39 comprised the first written constitution in history?
+The Constitution State
+10
+
+Connecting the Japanese islands of Honshu & Hokkaido, the ____ is the world's longest rail tunnel
+Seikan
+10
+
+Connors who did bobby fischer beat to win the world chess championship?
+Boris spassky
+10
+
+Constellations?
+Orion
+10
+
+Construction workers hard hats were first invented and used in the building of the ____ Dam in 1933
+Hoover
+10
+
+contact, starring jodie foster, was written by?
+Carl sagan
+10
+
+Contagious disease of warm-blooded animals, including humans, caused by the bacterium bacillus anthracis?
+Anthrax
+10
+
+Contagious febrile disease of animals and, rarely, humans?
+Foot & mouth disease
+10
+
+Containing 27 chapters, which book of the Old Testament is concerned with priestly laws and rituals?
+Leviticus
+10
+
+Contamination of air, water, or soil by materials that interfere with human health, the quality of life, or the natural functioning of ecosystems?
+Pollution
+10
+
+Contraception: After who is the 'Ramses' brand condom named?
+Pharaoh Ramses II
+10
+
+Contrary to popular belief, there are almost no Buddhists in____ , nor have there been for about a thousand years
+India
+10
+
+Conventionally middle class materialist?
+Bourgeois
+10
+
+Conversion of the vibrations of sound (for example, music) into a permanent record, & its later playback in its original form (sound)?
+Sound recording & reproduction
+10
+
+Conway who, according to a song, damaged her foot on a piece of wood and fell into a raging torrent?
+Clementine
+10
+
+Cookie what gas that animals exhale do plants utilize?
+Carbon dioxide
+10
+
+Cooking and salad ____ could lubricate machinery, such as cars and boats, according to Penn State chemical engineers
+Oils
+10
+
+Coolidge colorless, corrosive liquid that has the chemical formula hno3?
+Nitric acid
+10
+
+Coolidge what heisman trophy winner returned his first nfl kickoff for a touchdown?
+Tim brown
+10
+
+Copenhagen is the capital of ____
+Denmark
+10
+
+Copernicus what is new, last or gibbous?
+Moon
+10
+
+Cord what colour is the umbilical cord?
+Blue
+10
+
+Cornflakes was invented in 1863, 1890 or 1915?
+1890
+10
+
+Coronation street's kabin is located in which street?
+Ross street
+10
+
+Corregidor is a part of which island group?
+Philippines
+10
+
+cortez conquered Mexico; he conquered peru?
+Pizarro
+10
+
+Cortez is to Mexico as ____ is to peru
+Pizarro
+10
+
+Cos, Web's Wonderful & Winter Density are all types of what?
+Lettuce
+10
+
+Cosmetic surgeons remove more than ____,____ pounds of fat from American every year
+200,000
+10
+
+Count Almaviva, a character in Rossini's The Barber of Seville , also appears in which opera by Mozart?
+The marriage of figaro
+10
+
+Countries into which the Alps extend?
+Austria
+10
+
+Countries: 33 atolls in mid-Pacific Ocean, Tarawa is the capital?
+Kiribati
+10
+
+Countries: about 700 islands between Florida & Haiti?
+Bahamas
+10
+
+Countries: At 21 square kms, this is the world's Smallest island country?
+Nauru
+10
+
+Countries: Brunei is on which island?
+Borneo
+10
+
+Countries: Brussels is the capital of ____
+Belgium
+10
+
+Countries: Buenos Aires is the capital of ____
+Argentina
+10
+
+Countries: By what name is the country of Bechuanaland now known?
+Botswana
+10
+
+Countries: Cairo is the capital of ____
+Egypt
+10
+
+Countries: Canadian Capitals?
+St. John's
+10
+
+Countries: Canadian Provinces?
+Newfoundland and Labrador
+10
+
+Countries: Capitals: what national capital is heated by underground hot-water springs?
+Reykjavik, Iceland
+10
+
+Countries: Capitals: what national capital rises where the blue nile and white nile converge?
+Khartoum, sudan
+10
+
+Countries: Capitals: what's the world's southernmost national capital?
+Wellington, new zealand
+10
+
+Countries: Caracas is the capital of ____
+Venezuela
+10
+
+Countries: Central America, Tegucigalpa is the capital?
+Honduras
+10
+
+Countries: central Europe, the capital is Bratislava?
+Slovakia
+10
+
+Countries: central Europe, the capital is Prague?
+Czech republic
+10
+
+Countries: central Pacific Ocean, southwest of Hawaii, this island is covered in phosphate, it's principal export?
+Nauru
+10
+
+Countries: chain of more than 3,000 islands, major cities include Yokohama & Osaka?
+Japan
+10
+
+Countries: east-central Europe, the capital is Kiev?
+Ukraine
+10
+
+Countries: eastern coast of Baltic Sea in northeastern Europe, the capital is Vilnius?
+Lithuania
+10
+
+Countries: equatorial country in central Africa, Kinshasa is the capital?
+Congo
+10
+
+Countries: In central Europe, bounded on the north by the North Sea, Denmark, & the Baltic Sea; on the east by Poland & the Czech Republic; on the south by Austria & Switzerland; & on the west by France, Luxembourg, Belgium, & the Netherlands?
+Federal republic of Germany
+10
+
+Countries: In east asia, the world's third largest country by area (after Russia and Canada) and the largest by population?
+China
+10
+
+Countries: land of the thousand lakes?
+Finland
+10
+
+Countries: landlocked country in central South America, the capital is Asuncion?
+Paraguay
+10
+
+Countries: landlocked country in southern Africa, the capital is Gaborone?
+Botswana
+10
+
+Countries: landlocked country in southern Africa, the capital is Harare?
+Zimbabwe
+10
+
+Countries: Maine is the ____ capital of the world
+Toothpick
+10
+
+Countries: north eastern Africa, the capital is Djibouti?
+French somaliland
+10
+
+Countries: north eastern coast of central America, the capital is Belmopan?
+Belize
+10
+
+Countries: north eastern Europe & northern Asia, major cities include St. Petersburg & Novosibirsk?
+Russia
+10
+
+Countries: north eastern Europe, the capital is Tallinn?
+Estonia
+10
+
+Countries: north eastern South America, the capital is Georgetown?
+Guyana
+10
+
+Countries: north western Africa, major cities include Casablanca & Marrakech?
+Morocco
+10
+
+Countries: north western Africa, Nouakchott is the capital?
+Mauritania
+10
+
+Countries: northern part of central American Isthmus, major cities include Quezaltenango & Escuintla?
+Guatemala
+10
+
+Countries: Over what place in India is it forbidden to fly an airplane?
+Taj Mahal
+10
+
+Countries: roof at the top of the world?
+Tibet
+10
+
+Countries: Seoul is the capital of ____
+South korea
+10
+
+Countries: South africa is the biggest producer and exporter of ____
+Mohair
+10
+
+Countries: south eastern Europe, major cities include Thessaloniki & Piraeus?
+Greece
+10
+
+Countries: south eastern Europe, the capital is Ljubljana?
+Slovenia
+10
+
+Countries: southern shore of Arabian peninsula, Sana'a is the capital?
+Yemen
+10
+
+Countries: Taipei is the capital of ____
+Taiwan
+10
+
+Countries: western Asia, Amman is the capital?
+Jordan
+10
+
+Countries: western Asia, the capital is Damascus?
+Syria
+10
+
+Countries: western Asia, the capital is Tehran?
+Iran
+10
+
+Countries: western coast of Africa, major cites include Yamoussoukro & Abidjan?
+Ivory coast
+10
+
+Countries: western coast of Africa, the capital is Porto-novo?
+Benin
+10
+
+Countries: western coast of South American, major cities include Arequipa & Trujillo?
+Peru
+10
+
+Countries: What are chief export of Nauru, an island nation in the Western Pacific?
+Bird droppings
+10
+
+Countries: What country suffers from the most earthquakes?
+Japan
+10
+
+Countries: Which country is the biggest producer and exporter of mohair?
+South Africa
+10
+
+Countries: With y's?
+Italy
+10
+
+Couples: Abe Lincoln and ____ ____
+Mary todd
+10
+
+Couples: archie bunker and ____
+Edith
+10
+
+Couples: Ashford and ____
+Simpson
+10
+
+Couples: Chang and Eng were the original pair of these?
+Siamese twin
+10
+
+Couples: Charles and ____
+Di
+10
+
+Couples: donnie & ____
+Marie
+10
+
+Couples: eleanor & ____
+Franklin
+10
+
+Couples: ferdinand and ____
+Isabella
+10
+
+Couples: Harry Truman and ____
+Bess
+10
+
+Couples: Heloise & ____
+Abelard
+10
+
+Couples: his desire to marry this American prompted edward viii to abdicate the throne?
+Wallis simpson
+10
+
+Couples: Jean Paul Sartre and ____ ____ ____
+Simone de beauvoir
+10
+
+Couples: jim bakker and ____ ____
+Tammy faye
+10
+
+Couples: lyndon johnson and ____ ____
+Lady bird
+10
+
+Couples: michael jackson and ____ ____
+Lisa marie
+10
+
+Couples: miss piggy and ____
+Kermit
+10
+
+Couples: Othello and ____
+Desdemona
+10
+
+Couples: Paris and ____
+Laura
+10
+
+Couples: prince rainer and ____ ____
+Grace kelly
+10
+
+Couples: Puss and ____, nursery rhyme
+Boots
+10
+
+Couples: romeo and ____
+Juliet
+10
+
+Couples: samson & ____
+Delilah
+10
+
+Couples: She is the gypsy girl Quasimodo loves?
+Esmeralda
+10
+
+Couples: sid (vicious) & ____
+Nancy
+10
+
+Couples: sluggo and ____
+Nancy
+10
+
+Couples: the archeologist mallowan, was married to this popular English author?
+Agatha christie
+10
+
+Couples: the late great writing team will and ariel ____
+Durant
+10
+
+Couples: They ruled Britain jointly from 1689-1694?
+William and mary
+10
+
+Couples: victoria & ____
+Albert
+10
+
+Couples: winston smith and ____
+Julia
+10
+
+Crack gets its name because it ____ when you smoke it
+Crackles
+10
+
+Cranberries are sorted for ripeness by bouncing them; a fully ripened cranberry can be dribbled like a____
+Basketball
+10
+
+Cranberry Jello, is the only jello flavor that comes from the____ , not artificial flavoring
+Real fruit
+10
+
+Cranesbill is the wild form of which garden flower?
+Geranium
+10
+
+Crater formed by an explosion or collapse of a volcanic vent?
+Caldera
+10
+
+Creamy sauce of butter,egg yolks and vinegar?
+Hollandaise
+10
+
+Creation of programs, databases etc.for computer applications?
+Authoring
+10
+
+Creator of Noddy?
+Enid blyton
+10
+
+Creatures of class including spiders and scorpions?
+Arachnid
+10
+
+Credit card on which magnetically encoded information is stored to be read by an electronic device?
+Swipe card
+10
+
+Creedence clearwater revival sings 'have you ever ____'
+Seen the rain
+10
+
+Creek what position has been held by 266 men, 33 of whom have died violently?
+Pope
+10
+
+Crikey, It's a Sniiike: Although the South American Anaconda is sometimes claimed to be the longest snake, this is actually the longest recorded snake?
+Reticulated Python
+10
+
+Crime of getting married again whilst still legally married?
+Bigamy
+10
+
+Crime Stories: Edward G. Robinson gained notoriety by playing this hoodlum?
+Little caesar
+10
+
+Crime Stories: Frank Chambers is mad for her in the Postman Always Rings Twice?
+Cora papadalis
+10
+
+Crime Stories: George Smiley's nemesis?
+Karla
+10
+
+Crime Stories: Hammett's anonymous detective?
+Continental op
+10
+
+Crime Stories: He played Caspar Gutman in the 1941 John Huston film?
+Sydney greenstreet
+10
+
+Crime Stories: Lt. Joe Leaphorn and Sgt. Jim Chee work for this tribe?
+Navajo
+10
+
+Crime Stories: MacDonald bum who lives on a houseboat?
+Travis mcgee
+10
+
+Crime Stories: Raymond Chandler's gumshoe?
+Phillip marlowe
+10
+
+Crime Stories: Red October is this?
+Submarine
+10
+
+Crime Stories: Rumpole tipples here?
+Pomeroys wine bar
+10
+
+Crime Stories: The Cornwall mansion in Rebecca?
+Manderley
+10
+
+Crime Stories: The grandmaster of the locked-room puzzle?
+John dickson carr
+10
+
+Crime Stories: The most famous lawyer/sleuth?
+Perry mason
+10
+
+Crime Stories: The name of Travis McGee's houseboat?
+The busted flush
+10
+
+Cronus is identified with which roman god?
+Uranus
+10
+
+Cross what day of the week did solomon grundy die?
+Saturday
+10
+
+Crusoe in what state is the theodore roosevelt national park?
+North dakota
+10
+
+Cryogenics is the study of the very ____
+Cold
+10
+
+Cuba is the only island in the caribbean to have a____
+Railroad
+10
+
+Cuirass, greave and Pauldron are all pieces belonging to what?
+Armour
+10
+
+Culture: Because the emu and the kangaroo cannot walk backwards, they are on the Australian ____
+Coat of arms
+10
+
+Culture: Culture: Where are the Hausa and Ibo tribes?
+Nigeria
+10
+
+Culture: For which country is the lotus flower the national symbol?
+India
+10
+
+Culture: In which country is it polite to stick your tongue out at your guests?
+Tibet
+10
+
+Culture: In which country is milk the most popular beverage?
+USA
+10
+
+Culture: In which town does the famous 'running of the bulls' take place?
+Pamplona
+10
+
+Culture: What animals are on the Australian coat of arms?
+Emu and kangaroo
+10
+
+Culture: What are the roads of Guam paved with?
+Coral
+10
+
+Culture: What are the sandals called that are worn in ceremonial Japanese tradition?
+Tabi
+10
+
+Culture: What city do the Italians call the Monaco of bavaria?
+Munich
+10
+
+Culture: What do the Italians call Munich?
+Monaco of Bavaria
+10
+
+Culture: What famous building is located on the banks of the river Jumna?
+Taj Mahal
+10
+
+Culture: What happened on screen for the first time in India in 1977?
+Screen kiss
+10
+
+Culture: What is a water taxi known as in Venice?
+Gondola
+10
+
+Culture: What is the most common name in Italy?
+Mario Rossi
+10
+
+Culture: What is the name of a quarter of Jerusalem that can be translated as 'hundred gates'?
+Mea Shearim
+10
+
+Culture: What is the name of the wrought iron tower in Paris?
+Eiffel Tower
+10
+
+Culture: What is the national symbol for India?
+Lotus flower
+10
+
+Culture: What is the sacred river of Hinduism?
+Ganges
+10
+
+Culture: What is the tribal african word for dowry?
+Lobola
+10
+
+Culture: What London landmark has an 11 foot long hand?
+Big Ben
+10
+
+Culture: When is turkey traditionally eaten in America?
+Thanksgiving
+10
+
+Culture: Where do the English monarchs live?
+Buckingham Palace
+10
+
+Culture: Where is the Blarney Stone?
+Blarney Castle, Ireland
+10
+
+Culture: Where was it once against the law to have a pet dog?
+Iceland
+10
+
+Culture: Where would one eat a taco?
+Mexico
+10
+
+Culture: Which country eats the most turkey per capita?
+Israel
+10
+
+Culture: Which famous museum is in Paris, France?
+Louvre
+10
+
+Culture: Which nationality calls Munich the 'Monaco of Bavaria'?
+Italians
+10
+
+Culture:Israel has the highest per capital consumption of ____
+Turkey
+10
+
+Cumulus, cirrus and stratus are all types of what?
+Clouds
+10
+
+Currencies: Germany's equivalent to the dollar is the ____
+Deutsche mark
+10
+
+Currencies: Israel's equivalent to the dollar is the ____
+Shekel
+10
+
+Currencies: Italy's equivalant to the dollar is the ____
+Lira
+10
+
+Currencies: Japan's equivalent to the dollar is the ____
+Yen
+10
+
+Currencies: List some currencies?
+Lira
+10
+
+Currencies: Mexico's equivalent to the dollar is the ____
+Peso
+10
+
+Currencies: Spain's equivalent to the dollar is the ____
+Peseta
+10
+
+Currencies: Thailand?
+Bahts
+10
+
+Currencies: The Danish?
+Krone
+10
+
+Currencies: The Indian?
+Rupee
+10
+
+Currencies: The Maltese?
+Liri
+10
+
+Currencies: The quetzal is the currency of ____
+Guatemala
+10
+
+Currencies: The Swedish?
+Krone
+10
+
+Currencies: Turkish?
+Lirasi
+10
+
+Currencies: What country's currency is the Bolivar?
+Venezuela
+10
+
+Currencies: What is the currency of Guatemala?
+Quetzal
+10
+
+Currencies: What is the currency of Venezuela?
+Bolivar
+10
+
+Currencies: What is the Japanese currency?
+Yen
+10
+
+Currencies: What is the monetary unit of India?
+Rupee
+10
+
+Currencies: Which country has the currency 'yen'?
+Japan
+10
+
+Curtain serving to screen Hindu or Muslim women from the sight of men or strangers?
+Purdah
+10
+
+Curved inwards?
+Concave
+10
+
+Curved outwards?
+Convex
+10
+
+Cushion for kneeling on in church?
+Hassock
+10
+
+Custer was the youngest General in US history, he was promoted at the age of?
+23
+10
+
+cyberpunk: a program that runs in the background of a decker's os:?
+Daemon
+10
+
+Cyberpunk: A program used for defeating passwords, or the name of your dictionary:?
+Webster
+10
+
+Cyberpunk: Bionic enhancement which allows user to manipulate any voice or sound:?
+Silver tongue
+10
+
+cyberpunk: book by william gibson, thought by many to have started cyberpunk:?
+Neuromancer
+10
+
+Cyberpunk: In this predecessor of Cyberpunk novels, the hero was Guy Montag:?
+Fahrenheit 451
+10
+
+Cyberpunk: Light, reflective armor used to protect wearer from laser fire:?
+Reflec
+10
+
+Cyberpunk: Name of Max Headroom's alter ego:?
+Edison carter
+10
+
+Cyberpunk: Russian word for underground press:?
+Samizdat
+10
+
+Cyberpunk: These computer simulated personalities are dominant in Cyberspace:?
+Artificial intelligence
+10
+
+cyberpunk: this famous cyberpunk writer has an award named after him?
+Dick
+10
+
+Cyprus has a ____ on its flag
+Map
+10
+
+Cyprus lies in which sea?
+Mediterranean
+10
+
+Cyrus curtis founded what woman's magazine in 1896?
+Ladies home journal
+10
+
+Cystallite is the material ____ are made from
+Snooker balls
+10
+
+Czar ____ banished soldiers to Siberia for marching out of step
+Paul i
+10
+
+Czar Paul I banished soldiers to ____ for marching out of step
+Siberia
+10
+
+D is the roman numeral for which number?
+-- Answer metadata begin
+{
+    "answers": ["Five hundred", "500"]
+}
+-- Answer metadata end
+10
+
+Dactylography is the study and practice of what?
+Finger printing
+10
+
+Dagon is the mesopotamian god of ____
+Vegetation
+10
+
+Dainty or cute to an affected degree?
+Cutesy
+10
+
+Dairy products account for about ____ of all food consumed in the U.S
+29%
+10
+
+Daisy cooper was a housekeeper in what western?
+Laramie
+10
+
+Daisy Hawkins was the original song title for which Beatle hit?
+Eleanor Rigby
+10
+
+Dalcroze, Professor of Harmony at the Geneva Conservatoire, conceived of which form of exercise?
+Eurhythmics
+10
+
+Damascus is the capital of ____
+Syria
+10
+
+Dame Edna Everages companion?
+Madge allsop
+10
+
+Dame where is the notre dame cathedral?
+Paris
+10
+
+Danish architect Yorn Utzon designed what Australian building to resemble a giant sailing ship?
+Sydney Opera House
+10
+
+Dapsang is another name for which major mountain?
+K2
+10
+
+Dar es salaam is the capital of ____
+Tanzania
+10
+
+Dark skinned nomadic European?
+Gypsy
+10
+
+Dark volcanic rock?
+Basalt
+10
+
+Dating back to the 1600s, thermometers were filled with ____ instead of mercury
+Brandy
+10
+
+David ball was the less flamboyant member od which duo?
+Soft cell
+10
+
+David Letterman attended what Indiana University?
+Ball State
+10
+
+Davita's Harp_?
+Chaim potok
+10
+
+Death of body tissue usually caused by bad circulation?
+Gangrene
+10
+
+Deaths: 1960s: In 1967, Jayne Mansfield, actress, dies in a car crash at the age of?
+-- Answer metadata begin
+{
+    "answers": ["Thirty four", "34"]
+}
+-- Answer metadata end
+10
+
+Deaths: 1970s: Funeral of Pope____ in 1978
+Paul vi
+10
+
+Deaths: 1970s: In 1978, Bob Crane actor (Hogan's Heroes), murdered at the age of?
+-- Answer metadata begin
+{
+    "answers": ["Fifty nine", "59"]
+}
+-- Answer metadata end
+10
+
+Deaths: 1970s: This world leader died in Cairo in 1970?
+Gamal abdel nasser
+10
+
+Deaths: 1980s: Shot dead at the airport in Manila, in 1983?
+Benigno aquino
+10
+
+Deaths: 1990s: Indian film maker who died in the early 90s, given honorary Academy Award for lifetime achievement?
+Satyajit ray
+10
+
+Deaths: Art: 1950s: ____ Pollock abstract artist, dies in auto accident in 1956(East Hampton)
+Jackson
+10
+
+Deaths: Art: 1950s: Jackson ____ abstract artist, dies in auto accident in 1956(East Hampton)
+Pollock
+10
+
+Deaths: Art: 1950s: Jackson Pollock abstract artist, dies in a ____ in 1956(East Hampton)
+-- Answer metadata begin
+{
+    "answers": ["Car accident", "auto accident"]
+}
+-- Answer metadata end
+10
+
+Deaths: Israel PM who made peace with Egypt at Camp David, who died in the early 90s?
+Menachem begin
+10
+
+Deaths: Owner of global press empire which included the New York Daily News, who died in the early 90s?
+Robert maxwell
+10
+
+Deaths: Senior Democratic Senator from North Dakota, who died in the early 90s?
+Quentin burdick
+10
+
+Decipher this famous saying: a mass of concentrated earthly material perennially rotating on its axis will not accumulate an accretion of bryophytic vegetation?
+A rolling stone gathers no moss
+10
+
+Decipher this famous saying: everything that coruscates with effulgence is not ipso facto aurous?
+All that glitters is not gold
+10
+
+Decoration of food?
+Garnish
+10
+
+Defender of the US constitution whose headstone reads '...that nothing's so sacred as honor and nothing's so loyal as love'?
+Wyatt earp
+10
+
+Deficiency of dietary fibre leads to...?
+Constipation
+10
+
+Degrees who was the Indian maiden in johnny preston's 'running bear'?
+Little white
+10
+
+Delivery of child by cutting into the abdomen?
+Cesarean
+10
+
+Denmark, Norway, Sweden, and Iceland combine to make what?
+Scandinavia
+10
+
+Denver is the capital of ____
+Colorado
+10
+
+Dephlogisticated air was the name given by Joseph Priestley to which gas?
+Oxygen
+10
+
+Derived from the latin 'australis', what does Australia mean?
+Southern
+10
+
+Designed about 1860 by George Meacham, this was the first public botanic garden in the United States?
+Boston Public Garden
+10
+
+Despite a population of over a billion, China has only about ____ family names
+200
+10
+
+Detectives (full names)?
+Sherlock holmes
+10
+
+Detectives?
+Dixon Hill
+10
+
+Determination of the depth of a body of water?
+Sounding
+10
+
+Deuteronomy what is the capital of illinois?
+Springfield
+10
+
+Development of agricultural ecosystems intended to be complete and self sustaining?
+Permaculture
+10
+
+Device for driving air into fire?
+Bellows
+10
+
+Device for viewing a revolving or oscillating object by making the object appear to be at rest?
+Stroboscope
+10
+
+Device installed on a deck of a warship for launching aircraft?
+Catapult
+10
+
+Device which automatically maintains a motor vehicle at a chosen speed is called?
+Cruise control
+10
+
+Devil's tower, the first us national monument, is located in what state?
+Wyoming
+10
+
+Devoid of its ____ and proteins, human blood has the same general makeup as seawater
+Cells
+10
+
+Devoid of its cells and____ , human blood has the same general makeup as seawater
+Proteins
+10
+
+Devon is the only county in Great Britain to have ____ coasts
+Two
+10
+
+Devon is the only county in Great Britain to have two ____
+Coasts
+10
+
+Diameter TV/Film: Who played shortstop for charlie brown's baseball team?
+Snoopy
+10
+
+Diamond is the birthstone for which month?
+April
+10
+
+Diamonds are composed of which element?
+Carbon
+10
+
+Diamonds were discovered near kimberley in 1841,1867 or 1893?
+1867
+10
+
+Diamonds which band covered nilsson's 'one' and brought it to the top ten in 1969?
+Three dog night
+10
+
+Diana ross sings 'everytime you touch me i become a hero'. what is the song title?
+When you tell me that you love me
+10
+
+Diana ross sings 'noone knows what goes on behind ____'
+Closed doors
+10
+
+Dibble means to drink like a____
+Duck
+10
+
+Dick Van Dyke Show: In what year did the show premiere?
+1961
+10
+
+Dick Van Dyke Show: What body part would Rob lose if he became a Twyloite?
+Thumb
+10
+
+Dick Van Dyke Show: What instrument did Buddy play?
+Cello
+10
+
+Dick Van Dyke Show: What kind of sports car did Rob Petrie buy?
+Tarantula
+10
+
+Dickinson where was emily dickinson's home?
+Massachusetts
+10
+
+Did superman have a logo on his cape?
+Yes
+10
+
+Digimon: Name 5 of the original Digidestined?
+Tai
+10
+
+Digimon: What are the devices called that allow Digimon to digivolve?
+Digivice
+10
+
+Digimon: What do the 9 crests represent?
+Courage
+10
+
+Digimon: What is required to trigger the Ultimate level digivolution?
+Digimon Crest
+10
+
+Digimon: What is the name of the world where the digimon come from?
+The Digital World
+10
+
+Digimon: What was the first Digimon series known as?
+Digimon Adventure
+10
+
+Digimon: Who defeated Devimon?
+Angemon
+10
+
+Digimon: Who defeated Etemon?
+MetalGreymon
+10
+
+Digimon: Who defeated MetalSeadramon?
+WarGreymon
+10
+
+Digimon: Who defeated Myotismon?
+Angewomon
+10
+
+Digimon: Who defeated Puppetmon?
+MetalGarurumon
+10
+
+Digimon: Who defeated Shellmon?
+Greymon
+10
+
+Digimon: Who defeated VenomMyotismon?
+WarGreymon and MetalGarurumon
+10
+
+Digimon: Who does Agumon belong to?
+Tai
+10
+
+Digimon: Who does Biyomon belong to?
+Sora
+10
+
+Digimon: Who does Gabumon belong to?
+Matt
+10
+
+Digimon: Who does Gatomon belong to?
+Kari
+10
+
+Digimon: Who does Gomamon belong to?
+Joe
+10
+
+Digimon: Who does Palmon belong to?
+Mimi
+10
+
+Digimon: Who does Patamon belong to?
+T.K
+10
+
+Digimon: Who does Tentamon belong to?
+Izzy
+10
+
+Digimon: Who is Matts younger brother?
+T.K
+10
+
+Digimon: Who is the first Mega Digimon to be shown in the series?
+VenomMyotismon
+10
+
+Digimon: Who is the first Ultimate Digimon to be shown in the series?
+Etemon
+10
+
+Dirk, poniard, and stiletto are all types of what?
+Daggers
+10
+
+Disc of light shown round the head of a sacred person?
+Halo
+10
+
+Disco singer donna summer struts into the top 10 with the song?
+Last dance
+10
+
+Discovered in the 30s, Jonker and President Vargas were types of what?
+Diamond
+10
+
+Discoverer of antiseptic?
+Joseph lister
+10
+
+Discoverer of nine ancient cities including Troy, Heinrich Schliemann made spectacular excavations of which city during 1874 to 1876?
+Mycenae
+10
+
+Discoverer of penicillin?
+Alexander flemming
+10
+
+Discoverer of the circulation of the body?
+William harvey
+10
+
+Discoverer of the planet of pluto?
+James christy
+10
+
+Disease: Caused by deficiency of vitamin b?
+Beri-beri
+10
+
+Disease: Of animals, especially birds, monkeys, & humans, caused by infection by protozoans of the genus plasmodium & characterized by chills & intermittent fever?
+Malaria
+10
+
+Disease: Sleeping sickness is carried by which insect?
+Tsetse fly
+10
+
+Disease: What disease is carried by the tsetse fly?
+Sleeping sickness
+10
+
+Disgrace through shameful conduct is known as?
+Opprobrium
+10
+
+Disney: ____ comics were nearly banned in Finland because he doesn't wear pants
+Donald duck
+10
+
+Disney: ____ tree house in Disneyland has 300,000 fake leaves on it which are changed twice a year to reflect the seasons
+The Swiss family robinson
+10
+
+Disney: 1990s: In 1992, what country saw the opening of euro disneyland?
+France
+10
+
+Disney: At Disneyland Paris, the park's famous ____ is known as Le Ch?teau de la Belle au Bois Dormant
+Sleeping beauty castle
+10
+
+Disney: Disney World in Florida was opened to the public in 1971. The amusement park was the largest in the world, set within ____ acres. It required a $400-million investment, and did not do well during the first year it was opened
+28,000
+10
+
+Disney: Disney World in Orlando, Florida covers ____ acres (46 square miles), making it twice the size of the island of Manhattan, New York
+30,500
+10
+
+Disney: Disney's ____ was featured on cereal boxes for the Post cereal Toasties corn flakes back in 1935
+Mickey mouse
+10
+
+Disney: Disney's ____ was the first roller coaster to run on steel tubes, which made the ride smoother while allowing Disney to build longer-lasting coasters faster and cheaper
+Matterhorn
+10
+
+Disney: Disneyland opened in what year?
+1955
+10
+
+Disney: Every plant in Tomorrowland at Disneyland in Anaheim, California, is edible. Plants in this section of the amusement park include ____, strawberries, tomatoes, and more. Guest are more than welcome to pick their fill
+Bananas
+10
+
+Disney: H.R. Haldeman and Ron Ziegler, who helped plan the ____ burglary for President Nixon, both worked at Disneyland when they were younger
+Watergate
+10
+
+Disney: On what New Orleans Square (Disneyland) ride do you travel up a waterfall?
+Pirates of the caribbean
+10
+
+Disney: Only 10,000 people visited Disney World, Florida during the first year. With time, however, the attendance numbers rose to more than ____ people an hour
+10,000
+10
+
+Disney: Purely coincidental, Disneyland and Walt Disney World amusement parks are in counties with the same name. The former is in Orange County, California; the latter is in Orange County, ____
+Florida
+10
+
+Disney: The ____ to the picturesque, 77-foot-tall Sleeping Beauty's Castle in Disneyland in southern California, actually works. It was lowered on the opening day of the park, July 17, 1955
+Drawbridge
+10
+
+Disney: Walt Disney had an apartment in disneyland, where was it located?
+Over the fire house
+10
+
+Disney: Walt Disney World is home to the largest working wardrobe in the world with over ____ costumes in its inventory
+2.5 million
+10
+
+Disney: Walt Disney's autograph bears no resemblance to the famous Disney ____
+Logo
+10
+
+Disney: Walt Disney's family dog was named ____. She was a poodle
+Lady
+10
+
+Disney: What is one of the main entertainment areas in Disneyworld called?
+Magic kingdom
+10
+
+Disney: What is the campground area in Disneyworld called?
+Fort wilderness
+10
+
+Disney: What is the old west section of Disneyworld called?
+Frontierland
+10
+
+District of ancient greece on the northern coast of the gulf of corinth?
+Aetolia
+10
+
+Divas ____ music goddesses past & present
+Barbra Streisand
+10
+
+Diverse group of either single-celled or multicellular organisms that obtain food by direct absorption of nutrients?
+Fungi
+10
+
+Diving sea bird with black plumage?
+Cormorant
+10
+
+Division of geologic time in the Cenozoic era following the tertiary period (geology)?
+Quaternary period
+10
+
+Division what's popeye's official age?
+34
+10
+
+DNA analysis suggests there are three distinct species of this animal, African forest, African savanna & Indian. What animal?
+Elephant
+10
+
+DNA stands for what?
+Deoxyribonucleic acid
+10
+
+Do arteries carry blood towards or away from the heart?
+Away
+10
+
+Do some jets use kerosene as fuel?
+Yes
+10
+
+Do unto others as you would have others do unto you is also called what?
+Golden rule
+10
+
+Doctor Crippen was arrested aboard which ship?
+Montrose
+10
+
+Doers Of Deeds: English queen who reigned during the persecution of protestants in the 16 cent?
+Bloody mary
+10
+
+Doers Of Deeds: Man in charge of the New Deal?
+Roosevelt
+10
+
+Doers Of Deeds: Russian-born Israeli woman who served as prime minister of Israel, 1969-1974?
+Golda meir
+10
+
+Doers Of Deeds: The leader of the Norman Conquest?
+William the conqueror
+10
+
+Does 'verbatim' mean 'in the same words' or 'opposite'?
+In the same words
+10
+
+Does a 'milliner' make & sell flour, hats or windmills?
+Hats
+10
+
+Does a cat groom itself more in cold weather or in warm weather?
+Warm
+10
+
+Does a giraffe have a voice?
+Yes
+10
+
+Does a person's heart rate increase or decrease during exercise?
+Increase
+10
+
+Does a wild rabbit live 10, 15 or 20 years?
+Ten
+10
+
+Does Barry Manilow know you raid his wardrobe?
+Breakfast Club
+10
+
+Does batman's mask cover his nose?
+Yes
+10
+
+Does botany bay lie to the north or south of sydney?
+South
+10
+
+Does elizabeth ii face to the left or right on a British coin?
+Right
+10
+
+Does Robin Hood have a feather in his cap?
+Yes
+10
+
+Does sound travel faster in warmer or colder air?
+Warmer
+10
+
+Does tennis service begin in the left or right court?
+Right
+10
+
+Dogs ____ through the pads of their feet
+Sweat
+10
+
+Dogs & humans are the only animals with what?
+Prostates
+10
+
+Dogs and cats consume over ____ worth of pet food a year
+$
+10
+
+Dogs and cats consume over ____ worth of pet food a year
+-- Answer metadata begin
+{
+    "answers": ["$11 billion", "11,000,000,000"]
+}
+-- Answer metadata end
+10
+
+Dogs are ____ blind
+Colour
+10
+
+Dogs bark and cows moo, but what does a Khaki Campbell do?
+Quack
+10
+
+Dogs bark, donkeys ____
+Bray
+10
+
+Dogs can hear ____ that humans cant
+Sounds
+10
+
+Dogs?
+German Shepard
+10
+
+Dolly, dimmer & rocker are all types of what?
+Light switches
+10
+
+Dolores Ibarruri was better known under what name during the Spanish Civil War?
+La passionaria
+10
+
+Dolphins ____ with one eye open
+Sleep
+10
+
+domenikos theotocopoulus is better known as this?
+El greco
+10
+
+Domestic Metallurgy Name the clothing wrinkle remover that sounds like a kind of metal?
+Iron
+10
+
+Dominica supplies a good part of the world with Rose's?
+Lime juice
+10
+
+Dominica, ____ , Zambia, Kiribati, Fiji and Egypt all have birds on their flags
+Mexico
+10
+
+Dominica, Mexico, ____ , Kiribati, Fiji and Egypt all have birds on their flags
+Zambia
+10
+
+Dominica, Mexico, Zambia, ____ , Fiji and Egypt all have birds on their flags
+Kiribati
+10
+
+Dominica, Mexico, Zambia, Kiribati, ____ and Egypt all have birds on their flags
+Fiji
+10
+
+Dominica, Mexico, Zambia, Kiribati, Fiji & Egypt all have what on their flags?
+Birds
+10
+
+Don Carlos, subject of an opera by Verdi, was the half brother of which king of Spain?
+Philip iii
+10
+
+Don henley was a part of what popular group in the 70's?
+Eagles
+10
+
+Don John of Austria, the victorious admiral at Lepanto, was the illegitimate son of which Holy Roman Emperor?
+Charles v
+10
+
+Donald Duck comics were banned in ____ because he doesn't wear pants
+Finland
+10
+
+Donald duck comics were banned in Finland because he didn't wear ____
+Pants
+10
+
+Donald duck's middle name as he enlisted in the us army?
+Fauntleroy
+10
+
+Donatello, Raphael, Michelangelo, and Leonardo are the names of what cartoon characters?
+Teenage mutant ninja turtles
+10
+
+Doubly-ionised helium atoms, when emitted by some radioactive nuclei, are known as what?
+Alpha particles
+10
+
+Dove where is most of the vitamin c in fruits?
+Skin
+10
+
+Dover is the capital of ____
+Delaware
+10
+
+Dover is the capital of which US state?
+Delaware
+10
+
+Down which street is the st patrick's day parade?
+Fifth avenue
+10
+
+Dr James Simpson was knighted by Queen Victoria after the birth of her eighth child in 1853. Which medicine did he administer during childbirth?
+Chloroform
+10
+
+dr seuss: the big-hearted moose?
+Thidwick
+10
+
+dr seuss: there's a in my pocket?
+Wocket
+10
+
+dr seuss: this elephant hatched and egg and heard a who?
+Horton
+10
+
+Dr. ____ pronounced his name so that it would rhyme with rejoice
+Seuss
+10
+
+Dr. Hermann Rorschach is credited with developing what kind of tests?
+Inkblot
+10
+
+Dr. Seuss Books?
+The Cat in the Hat
+10
+
+Dr. Suess wrote ____ after his editor dared him to write a book using fewer than fifty different words
+Green eggs & ham
+10
+
+Dr. Thomas Bramwell Welch became the first to successfully pasteurize which beverage?
+Grape Juice
+10
+
+dragon whiskers is a type of tea from what country?
+China
+10
+
+Dragonball Z: How many forms did Frieza have?
+Four
+10
+
+Dragonball Z: How many times did Goku die in Dragonball Z?
+Twice
+10
+
+Dragonball Z: Name 5 earthlings from the series?
+Krillin
+10
+
+Dragonball Z: Name 5 Saiyans from the series?
+Gohan
+10
+
+Dragonball Z: Name all of the Namekians?
+Kami
+10
+
+Dragonball Z: Name all of the Super Saiyan 2s?
+Goku
+10
+
+Dragonball Z: Name Friezas father?
+King Cold
+10
+
+Dragonball Z: Name Friezas two main serveants?
+Dodoria and Zarbon
+10
+
+Dragonball Z: Name Gohans ultimate attack?
+Super Kamehameha
+10
+
+Dragonball Z: Name Gokus brother?
+Radditz
+10
+
+Dragonball Z: Name Gokus father?
+Bardock
+10
+
+Dragonball Z: Name Gokus sons?
+Gohan and Goten
+10
+
+Dragonball Z: Name Gokus ultimate attack?
+Spirit Bomb
+10
+
+Dragonball Z: Name Gokus wife?
+Chi Chi
+10
+
+Dragonball Z: Name one of Piccolos signature attacks?
+Masenko
+10
+
+Dragonball Z: Name one of Yamchas signature attacks?
+Wolf Gang Fist
+10
+
+Dragonball Z: Name Piccolos ultimate attack?
+Special Beam Canon
+10
+
+Dragonball Z: Name the 5 members of the Ginyu Force?
+Captain Ginju
+10
+
+Dragonball Z: Name the earthling who Vegeta marries?
+Bulma
+10
+
+Dragonball Z: Name the main Namekian in the series?
+Piccolo
+10
+
+Dragonball Z: Name the path the dead must travel to meet King Kai?
+Snake Way
+10
+
+Dragonball Z: Name the special force that Frieza has at his disposal?
+Ginyu Force
+10
+
+Dragonball Z: Name the two types of fusion?
+Fusion dance and Potara earrings
+10
+
+Dragonball Z: Name Tiens ultimate attack?
+Tri Beam Attack
+10
+
+Dragonball Z: Name Vegetas brother?
+Tarble
+10
+
+Dragonball Z: Name Vegetas son?
+Trunks
+10
+
+Dragonball Z: Name Vegetas ultimate attack?
+Final Flash
+10
+
+Dragonball Z: What move of Deborahs could turn anybody to stone?
+His spit
+10
+
+Dragonball Z: What planet do Namekians come from?
+Planet Namek
+10
+
+Dragonball Z: What planet do Saiyans come from?
+Planet Vegeta
+10
+
+Dragonball Z: What two Androids did Cell intend to fuse with?
+Android 18 and Android 17
+10
+
+Dragonball Z: What two Saiyans fuse to form Gotenks?
+Trunks and Goten
+10
+
+Dragonball Z: What two Saiyans fuse to form Vegetto?
+Vegeta and Goku
+10
+
+Dragonball Z: What two Saiyans fuse to make Gogeta?
+Vegeta and Goku
+10
+
+Dragonball Z: What two Saiyans invaded earth after Gokus dies the first time?
+Vegeta and Nappa
+10
+
+Dragonball Z: Who created the Androids?
+Dr Gero
+10
+
+Dragonball Z: Who killed Dodoria?
+Vegeta
+10
+
+Dragonball Z: Who killed Frieza?
+Trunks
+10
+
+Dragonball Z: Who killed King Cold?
+Trunks
+10
+
+Dragonball Z: Who killed Vegeta on planet Namek?
+Frieza
+10
+
+Dragonball Z: Who killed Zarbon?
+Vegeta
+10
+
+Dragonball Z: Who taught Goku how to use Instant Transmission?
+The Yardrats
+10
+
+Dragonball Z: Who trained Goku after his defeat to Radditz?
+King Kai
+10
+
+Dragonball Z: Who was responsible for Majin Buu re-awakening?
+Babidi
+10
+
+Dragonball Z: Who was the demon king who accompanied Babidi?
+Deborah
+10
+
+Dragonball Z: Who was the fat pink enemy in the final saga of the series?
+Majin Buu
+10
+
+Dragonball Z: Who was the first Saiyan to achieve the level of Super Saiyan 2?
+Gohan
+10
+
+Dragonball Z: Who was the first Saiyan to achieve the level of Super Saiyan 3?
+Goku
+10
+
+Dragonball Z: Who was the first Super Saiyan?
+Goku
+10
+
+Dragonball: How many Dragonballs are there?
+Seven
+10
+
+Dragonball: Who is the author of the Dragonball series?
+Akira Toriyama
+10
+
+Dream of jeannie license plates: what film series does ob wan enjoy?
+Star wars
+10
+
+Dreams are good friends, when you're ____
+Lonely
+10
+
+Dressed list who paid miss ussr four cartons of marlboro to be on his show?
+David
+10
+
+Dressed man what song spawned a lawsuit for tommy tutone?
+867-5309/jenny
+10
+
+Dresses first incorporated this in the 1930's?
+Zipper
+10
+
+Dried fish eaten as a relish with curry?
+Bombay duck
+10
+
+Drinking vessel with foot and stem?
+Goblet
+10
+
+Drinking water after eating reduces the ____ in your mouth by 61 percent
+Acid
+10
+
+Drinking water after eating reduces the acid in your mouth by ____ percent
+61
+10
+
+Driving at ____ miles per hour, it would take 258 days to drive around one of Saturn's rings
+75
+10
+
+Driving at 75 miles per hour, it would take 258 days to drive around one of ____ 's rings
+Saturn
+10
+
+Drop the piolot name the female artist?
+Joan armatrading
+10
+
+Dropped out of the sky onto the actors' heads?
+Green Slime
+10
+
+Dry ice consists of?
+Carbon dioxide
+10
+
+Dublin comes from the Irish Dubh Linn which means?
+Blackpool
+10
+
+Dublin is the capital of ____
+Ireland
+10
+
+Due to a lack of vitamin c, sailors used to contract a disease called?
+Scurvy
+10
+
+Due to gravitational effects, you weigh slightly less when the moon is directly?
+Overhead
+10
+
+Due to precipitation, for a few weeks k2 is bigger than?
+Mt everest
+10
+
+Due to precipitation, for a few weeks, ____ is taller than Mt. Everest
+K2
+10
+
+Due to precipitation, for a few weeks, k2 is taller than mt.____
+Everest
+10
+
+Due to staggering inflation in the 1920's, 4,000,000,000,000,000,000 ____ ____ were worth 1 US dollar
+German marks
+10
+
+Duelling is legal in Paraguay as long as both parties are registered?
+Blood donors
+10
+
+Duran Duran were the 'wild boys' of which year?
+1984
+10
+
+During a 24-hour period, the average human will breathe ____ times
+23,040
+10
+
+During a lifetime, one person generates more than ____ pounds of red blood cells
+1,000
+10
+
+During a lifetime, one person generates more than 1,000 pounds of ____ blood cells
+Red
+10
+
+During a orchidectomy, a man has a ____ removed
+Testicle
+10
+
+During annual spring floods, this waterfall can become so loud as to break windows six miles away?
+Victoria falls
+10
+
+During Australia's ____ in 1850, only a few miners ever became rich. Instead, merchants and shopkeepers were the ones who really got rich
+Gold rush
+10
+
+During conscription for WWII, there were ____ documented cases of men with three testicles
+Nine
+10
+
+During conscription for WWII, there were nine documented cases of men with ____ testicles
+Three
+10
+
+During conscription for WWII, there were nine documented cases of men with three____
+Testicles
+10
+
+During his entire life, Vincent ____ sold exactly one painting, Red Vineyard at Arles
+Van gogh
+10
+
+During his entire life, vincent van gogh sold exactly one painting,____
+Red vineyard at arles
+10
+
+During menstruation, the sensitivity of a woman's middle finger is____
+Reduced
+10
+
+During one four-year period, Thomas Edison obtained ____ patents, or one every five days
+300
+10
+
+During the ____ century, books that were considered offensive were sometimes punished by being whipped
+18th
+10
+
+During the ____ period, about 500 million years ago, a day was only 20.6 hours long
+Cambrian
+10
+
+During the 1812 war between Canada and the u.s, what did Canadian troops invade and burn?
+White house
+10
+
+During the 1940s, ____ contributed directly to the war effort in the 1940s, by manufacturing first-aid kits and dye markers for the U.S. Navy. When the war ended, the cosmetic firm began to produce manicure and pedicure instruments, which were tremendously successful
+Revlon
+10
+
+During the 20th century who was the only England bowler to take a hat trick in an Ashes test?
+Darren gough
+10
+
+During the American revolutionary war, what country declared war on Great Britain to help the colonies?
+Spain
+10
+
+During the Cambrian period, about ____ years ago, a day was only 20.6 hours long
+500 million
+10
+
+During the Cambrian period, about 500 million years ago, a day was only ____ hours long
+20.6
+10
+
+During the Depression, ____ first used Scotch tape to mend torn currency
+Banks
+10
+
+During the Depression, banks first used ____ tape to mend torn currency
+Scotch
+10
+
+During the han dynasty, court officials chewed this spice to sweeten their breath before speaking to the emperor?
+Cloves
+10
+
+During the Industrial Revolution a toilet was simply a glass or metal jar that people emptied by simply tossing its contents into the street below. It was a common courtesy to warn the passerby with the shout 'gardyloos'. What does Gardyloos mean?
+Watch out for the water
+10
+
+During the Medieval Crusades, transporting bodies off the battlefield for burial was a major problem, this was solved by carrying a huge cauldron into the Holy wars, boiling down the bodies, and taking only the ____ with them
+Bones
+10
+
+During the migration, geese may cover up to ____ miles per day
+600
+10
+
+During the reign of Elizabeth I, there was a tax put on men's?
+Beards
+10
+
+During the seventeen century , the Sultan of Turkey ordered his entire harem of women ____, and replace with a new one
+Drowned
+10
+
+During the Spanish American War in 1898, there were 45 stars on the ____
+American flag
+10
+
+During the Spanish Civil war, which town in the Basque region was destroyed by German bombers, an event which Picasso commemorated in a painting?
+Guernica
+10
+
+During the time of Peter the Great, any Russian man who wore a ____ was required to pay a special tax
+Beard
+10
+
+During the time of the Roman occupation it was known as Lutetia. How is it known today?
+Paris
+10
+
+During the U S civil war, how many union army blacks gave their lives?
+-- Answer metadata begin
+{
+    "answers": ["38,000", "38000", "thirty eight thousand"]
+}
+-- Answer metadata end
+10
+
+During the u.s civil war, how many blacks served in the union army?
+-- Answer metadata begin
+{
+    "answers": ["200,000", "200000", "two hundred thousand"]
+}
+-- Answer metadata end
+10
+
+During the u.s civil war, what did 22 union army blacks win?
+Medal of honour
+10
+
+During the U.S. Civil War, telegraph wires were strung to follow and report on the action on the battlefield. But there was no telegraph office in the White House, so President Lincoln trekked across the street to the ____ to get the news
+War department
+10
+
+During the____ , banks first used Scotch tape to mend torn currency
+Depression
+10
+
+During what month did Robert Browning have a longing to be in England?
+April
+10
+
+During what month is the Earth closest to the sun?
+January
+10
+
+During what period in American history did thousands of people die or go blind from drinking bad liquor?
+Prohibition
+10
+
+During what was alcohol was made illegal?
+Prohibition
+10
+
+During which conflict did the battles of Alma and Inkermann take place?
+The crimean war
+10
+
+During which conflict were the battles of Blore Heath, Wakefield, Northampton and Mortimer's Cross?
+Wars of the roses
+10
+
+During which geologic era did insects, fish, amphibians, and reptiles first appear on earth?
+Paleozoic era
+10
+
+During which month is the earth nearest the sun?
+January
+10
+
+During which month is the longest day in the Northern hemisphere?
+June
+10
+
+During which month is the longest day in the Southern hemisphere?
+December
+10
+
+During which month is the shortest day in the Northern hemisphere?
+December
+10
+
+During which month is the shortest day in the Southern hemisphere?
+June
+10
+
+During which war did andersonville prison earn its disgraceful reputation?
+American civil war
+10
+
+During which war did the Battle of Jutland take place?
+-- Answer metadata begin
+{
+    "answers": ["World war 1", "world war i"]
+}
+-- Answer metadata end
+10
+
+During which war did the battles of The Modder River, Majuba and Magersfontein take place?
+The boer war
+10
+
+During which war was kuwait liberated?
+Gulf war
+10
+
+During World War I, the punishment for homosexuality in the French army was ____
+Execution
+10
+
+During World War II, the original copies of the U.S. Constitution and the Declaration of Independence were taken from the Library of Congress and kept at ____, Kentucky
+Fort knox
+10
+
+During World War II, W.C. Fields kept US ____ in Germany 'in case the little bastard wins'
+$50,000
+10
+
+During World War II, what were U-Boats?
+Submarines
+10
+
+During World War One, the future Pope John XXIII was a ____ in the Italian Army
+Sergeant
+10
+
+During WW I, it was at this city & battle where the Germans introduced mustard gas?
+Ypres
+10
+
+During WW I, what day of the week was the recommended meatless day?
+Tuesday
+10
+
+During WWII, Americans tried to train ____ to drop bombs
+Bats
+10
+
+During WWII, Americans tried to train bats to?
+Drop bombs
+10
+
+During WWII, men in the Air Corps who did not fly bore which nickname?
+Kiwi
+10
+
+During your lifetime you will eat ____ pounds of food, the weight of six elephants
+60,000
+10
+
+During your lifetime you will eat 60,000 pounds of food, the weight of ____ elephants
+Six
+10
+
+During your lifetime you will spend this long on the phone?
+Two years
+10
+
+During your lifetime you will spend this long waiting for traffic lights to change?
+Two weeks
+10
+
+Dustin hoffman won his 2 oscars for best actor in?
+Rainman and kramer vs kramer
+10
+
+Dutch-born Swiss scientist, who discovered basic principles of fluid behavior?
+Daniel bernoulli
+10
+
+Each month, there is at least one report of ____ 's from each province of Canada
+Ufo
+10
+
+Each unit on the Richter scale is equivalent to a power factor of how much?
+32
+10
+
+Each year, approximately 250,000 American husbands are physically attacked and beaten by ____
+Their wives
+10
+
+Each year, more than 300,000 American teenagers become afflicted with some form of ____
+Venereal disease
+10
+
+Eagles can live in captivity for up to ____ years
+46
+10
+
+Earl Warren chaired the commission on the assassination of which president?
+Kennedy
+10
+
+Early in his career, which rolling stones guitarist played with rod stewart and 'the faces'?
+Ron wood
+10
+
+Early mariners mistook the manatee and the dugong for what?
+Mermaids
+10
+
+Early models of vacuum cleaners were powered by?
+Gasoline
+10
+
+Early people used flint for 2 reasons, one was to make tools, what was the other?
+To make fire
+10
+
+Earth has not anything to show more fair is the first line of a poem by whom?
+Wordworth
+10
+
+Earth is ____ kilometres in diameter
+3,476
+10
+
+Earth is ____ miles in diameter
+2,160
+10
+
+Earth is ____ million kilometres from the Sun
+150
+10
+
+Earth is the only planet not named after a?
+God
+10
+
+Earth's atmosphere is, proportionally, thinner than the skin of an____
+Apple
+10
+
+East Pakistan is the former name of which modern republic?
+Bangladesh
+10
+
+Eating raw onions are good for unblocking a stuffed____
+Nose
+10
+
+Eau de Cologne was originally marketed as a way of protecting yourself against the?
+Plague
+10
+
+Ed Moses won the 400 metre hurdle title in which year?
+1984
+10
+
+Edgar allan poe introduced mystery fiction's first fictional detective, auguste c. dupin, in what 1841 story?
+The murders in the rue morgue
+10
+
+Edgar Allen Poe wrote a famous poem about this animal?
+Raven
+10
+
+Edgar allen poe wrote a famous poem about which animal?
+Raven
+10
+
+Editor of Private Eye?
+Ian Hislop
+10
+
+Edson arantes do nascimento is better known as?
+Pele
+10
+
+Edward III did well between 1346 and 1356. But what catastrophe cast a terrible blight over that decade?
+The black death
+10
+
+Edward kennedy is the real name of which singer?
+Duke ellington
+10
+
+Edwin Shoemaker invented the first type of motion furniture. What is this piece of furniture?
+The La-z Boy Recliner
+10
+
+Effect a complex alcohol constituent of all animal fats and oils?
+Cholesterol
+10
+
+Effect that occurs when two or more waves overlap or intersect?
+Interference
+10
+
+Egg beaters operate on what type of gear?
+Bevel
+10
+
+Eggplant is not a vegetable, but is actually a member of what plant family?
+Thistle
+10
+
+Eglantine Jebb founded which charitable organisation?
+Save the children fund
+10
+
+Eight hundred dollars if locked in a completely sealed room, of what will you die before you suffocate?
+Carbon monoxide poisoning
+10
+
+Eight thousand in the middle ages, where did people believe the seat of intelligence was?
+Heart
+10
+
+Eighty one what is the minimum number of degrees in an acute angle?
+One degree
+10
+
+Eighty per cent of all body heat escapes through the?
+Head
+10
+
+Eighty percent of all people hit by ____ are men
+Lightning
+10
+
+Einstein couldn't speak fluently when he was____ . His parents thought he might be retarded
+Nine
+10
+
+Einstein gave this successful prediction of the stock market when asked what it would do in the next year. He said?
+It would fluctuate
+10
+
+Either of two saturated hydrocarbons, or alkanes, with the chemical formula c4h10?
+Butane
+10
+
+El Al is the national airline of which country?
+Israel
+10
+
+El cid was the name of what college's mascot goat?
+Annapolis naval academy
+10
+
+Elba island is located in what sea?
+Tyrrhenian sea
+10
+
+Eleanor Roosevelt was concerned about improving her memory. What did her doctor recommend she eat to do so?
+Chocolate covered garlic balls
+10
+
+Electrical circuit made by depositing conductive material on the surface of an insulating base?
+Printed circuit board
+10
+
+Electronic device that allows the passage of current in only one direction?
+Diode
+10
+
+Electronic lift control what is the second biggest organ in the human body?
+Liver
+10
+
+Electronics: As what was Sony's video recorder known?
+Betamax
+10
+
+Electronics: Circuits can be wired in parallel or ____
+Series
+10
+
+Elementary in the house of lords, where does the lord chancellor sit?
+Woolsack
+10
+
+Elementary particle found in all nuclei except that of hydrogen?
+Neutron
+10
+
+Elementary, My Dear Watson: With a melting point of -38.8 Celsius, this element holds the record for the lowest melting point?
+Mercury
+10
+
+Elementary, My Dear Watson: With a melting point of 3,527 Celsius, this element holds the record for the highest melting point?
+Carbon
+10
+
+Elements (Argon, Iron, Zinc, etc)?
+Zinc
+10
+
+Elephants are the only animals that can't?
+Jump
+10
+
+Elephants trumpet, monkeys chatter & bark, what do pandas do?
+Bleat
+10
+
+Eliza Doolittle is a character in which George Bernard Shaw play?
+Pygmalion
+10
+
+Elsinore Castle is the setting for which of Shakespeare's plays?
+Hamlet
+10
+
+Elton John got married (with a woman) only once in 1994. With whom?
+Renate blauel
+10
+
+Elvis: Elvis had a twin brother named ____, who died at birth
+Garon
+10
+
+Elvis: Elvis presley appeared on how many stamps in 1993?
+Five hundred million
+10
+
+Elvis: Elvis Presley's favorite food was fried peanut butter and ____ sandwiches
+Banana
+10
+
+Elvis: Elvis weighed ____ pounds at the time of his death
+230
+10
+
+Embankment built to prevent flooding?
+Dyke
+10
+
+Emerald is the birthstone for which month?
+May
+10
+
+Emeralds come from which mineral?
+Beryl
+10
+
+EMI stands for?
+Electrical and musical instruments
+10
+
+Eminem is a member of this rap crew?
+D-12
+10
+
+Emission of energy as electromagnetic waves in the portion of the spectrum just beyond the limit of the red portion of visible radiation?
+Infrared radiation
+10
+
+Emmanuel Goldstein is a character in which 1949 novel?
+1984
+10
+
+emoticons: :d?
+Big smile
+10
+
+emoticons: :o?
+Surprise
+10
+
+emoticons: (^o^)?
+Happiness
+10
+
+emoticons: (h_h)?
+Happiness
+10
+
+emoticons: [_]?
+Robot
+10
+
+Emperor Haile Selassie of Ethiopia was finally diposed in 1974 after how many years in power?
+Fifty eight
+10
+
+Emperor is the largest and pott is the smallest what?
+Paper size
+10
+
+Encephalon is a technical term which relates to what?
+The brain
+10
+
+Encounter on march 5, 1770, five years before the American revolution, between British troops and a group of citizens of boston?
+Boston massacre
+10
+
+Endorphins are produced in the brain and in the pituitary gland. What is their function?
+Pain killers
+10
+
+Energy waves produced by the oscillation or acceleration of an electric charge. Electromagnetic waves have both electric and magnetic components?
+Electromagnetic radiation
+10
+
+Engine that employs gas flow as the working medium by what heat energy is transformed into mechanical energy?
+Gas turbine
+10
+
+England is smaller than?
+New England
+10
+
+England periodic table: what is rn?
+Radon
+10
+
+England's Stonehenge is ____ years older than Rome's Colosseum
+Fifteen hundred
+10
+
+Englands Stonehenge is how many years older than Rome's colosseum?
+1,500 years
+10
+
+English charts: Clive Dunn had a hit called Grandad in which year?
+1971
+10
+
+English fashion photographer?
+David Bailey
+10
+
+English mathematician who devised the precursor of the computer?
+Charles Babbage
+10
+
+Englund what was the first ironclad warship launched?
+Hms warrior
+10
+
+Engrave with acid?
+Etch
+10
+
+Entomology: What is the only insect that can turn its head?
+Praying mantis
+10
+
+Environmental pressure group, established in 1971 in the UK?
+Friends of the Earth
+10
+
+Epaminondas was the general of which ancient state?
+Thebes
+10
+
+Eponyms (words named for people) A close fitting garment for the torso, worn by dancers, acrobats & the like. Can you name the garment?
+A Leotard
+10
+
+Eppie Cass is a central character in which |novel by George Eliot?
+Silas marner
+10
+
+Erato was the Greek muse of what?
+Mime
+10
+
+Erato was the muse of what?
+Love poetry
+10
+
+Ergot is a plant disease caused by what?
+Fungi
+10
+
+Erie, suez, panama etc?
+Canals
+10
+
+Ernest Bevin, Minister of Labour during World War II, left school at the age of?
+Eleven
+10
+
+Ernest t tubb's 'waltz ____ texas'
+Across
+10
+
+Erotic solo dance of north africa, the middle east, and turkish-influenced balkan areas?
+Belly dance
+10
+
+Errol flynn's autobiography, ____, is published posthumously
+My wicked wicked ways
+10
+
+Erse is another name for which language?
+Gaelic
+10
+
+Erving inky and dinky were the nephews of what comic book cat?
+Felix the cat
+10
+
+Escape (1982) was recorded by what group?
+Journey
+10
+
+Eschatology: Andaman Islanders believe this god will destroy them with an earthquake?
+Puluga
+10
+
+Eschatology: Buddhists believe this condition transcends the end of the world?
+Nirvana
+10
+
+Eschatology: Last word of Revelations?
+Amen
+10
+
+Eschatology: This prostitute caught it big time in Revelations?
+Jezebel
+10
+
+Eschatology: Wanderer doomed to live until the end of the world?
+Cartaphilus
+10
+
+Eskimo ice cream is neither icy, nor ____
+Creamy
+10
+
+Eskimos never____
+Gamble
+10
+
+Essential framework of any structure, outline consisting of bare essentials?
+Skeleton
+10
+
+Ester Pauline Friedman, famous newspaper columnist, is better known as who?
+Ann Landers
+10
+
+Estragon protects against ____ disease
+Heart
+10
+
+Estragon protects against?
+Heart disease
+10
+
+Ethan allen's favorite drink at the green mountain tavern, was known as what?
+Stonewall
+10
+
+Ethel who is the spokesperson for the exercise tapes 'tae bo'?
+Billy blanks
+10
+
+Ethernet is a registered trademark of what company?
+Xerox
+10
+
+Ethernet is a registered trademark of____ ,
+Xerox
+10
+
+Ethylene glycol is frequently used in automobiles... how?
+Anti-freeze
+10
+
+Etna, Hekla and Popocate a petl are all types of what?
+Volcanoes
+10
+
+Etymology is the study of what?
+Word origins
+10
+
+Euphrates who did adolf hitler dictate mein kampf to while in prison?
+Rudolf hess
+10
+
+Europa is a satellite of which planet in the solar system?
+Jupiter
+10
+
+Europe's most active volcano, spewed out fountains of lava from mid-July to early August 2001?
+Mount Etna
+10
+
+European architecture and music,ornate and extravagant?
+Baroque
+10
+
+Euterpe was the muse of what?
+Music
+10
+
+Eve of All Saints Day?
+Halloween
+10
+
+Even if up to 80% of this is removed from a human, what is it that will continue to function & grow back to its original size?
+Liver
+10
+
+Every ____ spent about half an hour as a single cell
+Human
+10
+
+Every human first spent about half an hour as a single what?
+Cell
+10
+
+Every litre of water taken from the Red Sea would contain about ____ grams of salt
+200
+10
+
+Every person has a unique ____ print
+Finger
+10
+
+Every photograph of an American atomic bomb detonation was taken by ____ Edgerton
+Harold
+10
+
+Every photograph of an American atomic bomb detonation was taken by Harold ____
+Edgerton
+10
+
+Every photograph of an American atomic bomb detonation was taken by who?
+Harold edgerton
+10
+
+Every queen named ____ has either been murdered, imprisoned, gone mad, died young, or been dethroned
+Jane
+10
+
+Every single hamster in the U.S. today comes from a single litter captured in ____ in 1930
+Syria
+10
+
+Every single hamster in the U.S. today comes from a single litter captured in Syria in ____
+1930
+10
+
+Every square inch of the human body has an average of 32 million ____
+Bacteria
+10
+
+Every time you lick a ____, you're consuming 1/10 of a calorie
+Stamp
+10
+
+Every time you lick a stamp, you're consuming 1/10 of a?
+Calorie
+10
+
+Every time you step forward, you use ____ muscles
+54
+10
+
+Every two thousand frowns create one____
+Wrinkle
+10
+
+Every year, ____ Americans injure themselves while trying out bizarre sexual positions
+11,000
+10
+
+Every year, ____ and their guests drink 1.2 million gallons of beer during Oktoberfest. The first Oktoberfest was in 1810 and celebrated the marriage of King Ludwig I of Bavaria
+Bavarians
+10
+
+Every year, ____ sinks about 10 inches
+Mexico city
+10
+
+Every year, 11,000 Americans injure themselves while trying out ____ sexual positions
+Bizarre
+10
+
+Every year, Mexico City sinks about ____ inches
+-- Answer metadata begin
+{
+    "answers": ["10", "ten"]
+}
+-- Answer metadata end
+10
+
+Everyone is familiar with the RCA logo with nipper the dog listening to the rca grammaphone. But the original picture had both the dog & the grammaphone sitting on what?
+His dead master's casket
+10
+
+Evidence of ____ exists as early as 10,000 B.C
+Shoemaking
+10
+
+Evidence of shoemaking exists as early as ____ B.C
+10,000
+10
+
+Excellency which company, during the 1984 super bowl, aired what is considered one of the best commercials in tv history?
+Apple
+10
+
+Except for newborns, what gender are all eels on the east coast?
+Female
+10
+
+Excessive discharge of blood from blood vessels, caused by pathological condition of the vessels or by traumatic rupture of one or more vessels?
+Haemmorage
+10
+
+Excluding man, what is the longest lived land mammal?
+Elephant
+10
+
+Excluding Rudolph, how many reindeer pull Santa's sleigh?
+Eight
+10
+
+Excrement of sea birds used as manure?
+Guano
+10
+
+Execute by strangulation with a thin wire?
+Garrotte
+10
+
+Experienced ____ say that married men tip better than unmarried men
+Waitress
+10
+
+Experienced waitress say that ____ men tip better than unmarried men
+Married
+10
+
+Experts at Intel say that microprocessor speed will double every 18 months for at least ____ years
+10
+10
+
+Exploitation of slum tenants by unscrupulous landlords, named after a landlord of the early 1960s in London?
+Rachmanism
+10
+
+Explorer: Englishman who discovered the River Back in Canada in 1833?
+George Back
+10
+
+Explorers in South America caught and ate cavies. What are cavies?
+Guinea pigs
+10
+
+Explorers: what ship did sir francis drake circle the world in?
+The golden hind
+10
+
+Extensive cultivation of plants to yield food, feed, or fiber; to provide medicinal or industrial ingredients; or to grow ornamental products?
+Crop farming
+10
+
+Extortion of payment in return for silence?
+Blackmail
+10
+
+Facility of stopping a videotape in order to wiew a motionless image?
+Freeze-frame
+10
+
+Fahrenheit as what is minus forty degrees fahrenheit the same?
+Minus forty degrees
+10
+
+Falcon's Lair was the name of the Los Angeles home owned by which belated actor?
+Rudolph Valentino
+10
+
+Famous Blondes ____ real or fake, full name or nick
+Mae West
+10
+
+Famous Blondes, natural or otherwise?
+Courtney Love
+10
+
+Famous Canadians: Canadian Prime Minister who was on American Immigration's blacklist?
+Pierre elliot trudeau
+10
+
+Famous Canadians: Halifax native who built one of the world's largest shipping line?
+Cunard
+10
+
+Famous Canadians: Known as the father of the Social Credit Party?
+Tommy Douglas
+10
+
+Famous Canadians: Known for her series of books about Anne Shirley?
+Lucy maud montgomery
+10
+
+Famous Canadians: Popular Canadian novelist known for her feminist themes?
+Margaret atwood
+10
+
+Famous Canadians: Portly comedian, Second City alum, and CFL franchise co-owner?
+John candy
+10
+
+Famous Canadians: She was Deputy Prime Minister under Jean Chretien?
+Sheila copps
+10
+
+Famous Canadians: This Canadian ambassador helped free the American prisoners from Iran?
+Ken taylor
+10
+
+Famous Canadians: This Nova Scotian premier became the Consul General in Boston?
+Donald cameron
+10
+
+Famous dog who starred in 'where the north begins', 'clash of the wolves' and 'dogs of the regiment'?
+Rin tin tin
+10
+
+Famous Greek sculptures?
+Elgin marbles
+10
+
+Famous Last Words: Are you sure the ____ is off
+Power
+10
+
+Famous Last Words: I don't think we're in ____ anymore
+Kansas
+10
+
+Famous Last Words: I'll get a ____ record for this
+World
+10
+
+Famous Last Words: I'll get your ____ out
+Toast
+10
+
+Famous Last Words: I'll hold it and you light the ____
+Fuse
+10
+
+Famous Last Words: I've seen this done on ____
+TV
+10
+
+Famous Last Words: It's ____ enough for both of us
+Strong
+10
+
+Famous Last Words: It's fire____
+Proof
+10
+
+Famous Last Words: Let it down ____
+Slowly
+10
+
+Famous Last Words: Nice ____
+Doggie
+10
+
+Famous Last Words: Now ____ this
+Watch
+10
+
+Famous Last Words: OK this is the ____ time
+Last
+10
+
+Famous Last Words: Pull the pin and ____ to what?
+Count
+10
+
+Famous Last Words: Rat ____ only kills rats
+Poison
+10
+
+Famous Last Words: That's ____
+Odd
+10
+
+Famous Last Words: The Duke of Wellington, spoken just before he died 14th August 1852?
+I dont feel quite well
+10
+
+Famous Last Words: The odds of that happening have to be a ____ to one!
+Million
+10
+
+Famous Last Words: These are the good kind of ____
+Mushrooms
+10
+
+Famous Last Words: This doesn't ____ right
+Taste
+10
+
+Famous Last Words: What ____?
+Duck
+10
+
+Famous Last Words: What does this ____ do
+Button
+10
+
+Famous Last Words: What's that ____ doing here?
+Priest
+10
+
+Famous Last Words: Which ____ was I supposed to cut?
+Wire
+10
+
+Famous Last Words: You look just like Charles ____
+Manson
+10
+
+Famous Last Words: You wouldn't hit a guy with ____ on, would you
+Glasses
+10
+
+Famous Lies?
+I am not a crook
+10
+
+Famous Men we love to hate (full names if appropriate)?
+Dennis Rodman
+10
+
+Famous Michaels?
+Michael J. Fox
+10
+
+Famous painter that paints with both his right & left hands?
+Leonardo da vinci
+10
+
+Famous People: Mandy Allwood's expectation of how many babies made the news in 1996?
+8
+10
+
+famous people: nicky clarke's name is famous in which fashion field?
+Hairdressing
+10
+
+Famous People: Sean Penn was once married to which singer/actress?
+Madonna
+10
+
+famous people: trudie styler married which singer/rainforest conservationist in 1992?
+Sting
+10
+
+famous people: what is the profession of claudia shiffer's ex, David copperfield?
+Magician
+10
+
+Famous People: What was Mrs. Michael Jackson II's first name?
+Debbie
+10
+
+Famous People: Which actress married Richard Burton twice?
+Elizabeth taylor
+10
+
+famous people: which former son-in-law of the queen remarried in 1997?
+Mark phillips
+10
+
+famous people: which model elle is an ex-flame of the actor kevin costner?
+Macpherson
+10
+
+Famous People: Which Royal Prince's name was linked with photographer Koo Stark?
+Andrew
+10
+
+Famous People: Which woman got Bill Clinton caught with his pants down in 1999?
+Monica lewinsky
+10
+
+Famous Pick-up lines?
+What sign are you?
+10
+
+Famous Quotes: All work is as seed sown; it grows and spreads, and sows itself anew?
+Thomas caryle
+10
+
+Famous Quotes: Anyone who hates children and dogs cant be all bad?
+W.c. fields
+10
+
+Famous Quotes: Boy, after seeing Rambo last night, I know what to do next time this happens?
+Ronald reagan
+10
+
+Famous Quotes: Don't give up the ship?
+John Paul jones
+10
+
+Famous Quotes: He does not preach what he practices till he has practiced what he preaches?
+Confucius
+10
+
+Famous Quotes: Let them eat cake?
+Marie antoinette
+10
+
+Famous Quotes: Never have so many owed so much...?
+Winston churchill
+10
+
+Famous Quotes: Old soldiers never die, they just fade away?
+Douglas macarthur
+10
+
+Famous Quotes: Power corrupts, and absolute power corrupts absolutely?
+John emerich edward acton
+10
+
+Famous Quotes: Science without religion is lame, religion without science is blind?
+Albert einstein
+10
+
+Famous Quotes: United we stand, divided we fall?
+Abraham lincoln
+10
+
+Famous UFO incident happened in the 40's in the south of USA?
+Roswell
+10
+
+Famous white marble mausoleum at Agra, India?
+Taj Mahal
+10
+
+Famous Women we love to hate (full names if appropriate)?
+Courtney Love
+10
+
+Fandible, lateral line and dorsal fin and a part of which animal?
+Fish
+10
+
+Fanta ____ is the third largest selling soft drink in the world
+Orange
+10
+
+Fashion: ____ comes from the French, cord du roi or cloth of the king
+Corduroy
+10
+
+Fashion: 1990s slang for very short cutoff jeans?
+Daisy dukes
+10
+
+Fashion: 2000s: Which Paris fashion house did designer Stella McCartney leave to set up her own label in 2001?
+Chloe
+10
+
+Fashion: All in one exercise garment named after a 19th century trapeze artist?
+Leotard
+10
+
+Fashion: Ancient roman garment?
+Toga
+10
+
+Fashion: Articles Of Clothing?
+Coat
+10
+
+Fashion: Articles Of Clothing?
+G-string
+10
+
+Fashion: Articles Of Clothing?
+Socks
+10
+
+Fashion: artificial structure worn to extend shirts behind?
+Bustle
+10
+
+Fashion: band worn to keep stockings up?
+Garter
+10
+
+Fashion: Bathing suit named for a Pacific atoll?
+Bikini
+10
+
+Fashion: born 1936 he became christian dior's assistant at 17?
+Yves saint laurent
+10
+
+Fashion: Close fitting knee length shorts?
+Bermuda
+10
+
+Fashion: Clothes designer alexander mcqueen works for which fashion house?
+Givenchy
+10
+
+Fashion: Clothes designer john galliano works for which fashion house?
+Christian dior
+10
+
+Fashion: dominant fashion magazine of the 20th century?
+Vogue
+10
+
+Fashion: Egyptian motifs were popular after his tomb was discovered in 1922?
+Tutankhamen
+10
+
+Fashion: Elsa Schiaperelli's trademark color?
+Shocking pink
+10
+
+Fashion: Fashion Accessories?
+Earrings
+10
+
+Fashion: he called couture the most blatant form of conspicuous consumption?
+Thorsein veblen
+10
+
+Fashion: he has a personal fortune estimated at $1.7 billion - the highest of any designer?
+Ralph lauren
+10
+
+Fashion: In the US canvas shoe?
+Sneaker
+10
+
+Fashion: In traditional Japanese dress what is an obi?
+A wide sash
+10
+
+Fashion: June 1946, what was official launched in Paris?
+The bikini
+10
+
+Fashion: Mans scarf worn inside an open necked shirt?
+Cravat
+10
+
+Fashion: milanese suitmaker showcased on miami vice?
+Armani
+10
+
+Fashion: model that married David bowie?
+Iman
+10
+
+Fashion: Monks appareil?
+Habit
+10
+
+Fashion: movie star who popularized trenchcoats & berets?
+Greta garbo
+10
+
+Fashion: Name given to the shorts which in fashion in the early 1970s?
+Hot pants
+10
+
+Fashion: name of a clothing line, or sport whose periods are called 'chuckers'?
+Polo
+10
+
+Fashion: On what is an espadrille worn?
+Foot
+10
+
+Fashion: Originally made in Nimes, France, this fabric was called serge denimes?
+Denim
+10
+
+Fashion: Ornamental band worn on wrist or arm?
+Bracelet
+10
+
+Fashion: petticoat artificially stiffened by horsehair?
+Crinoline
+10
+
+Fashion: skirt and trousers desiged by amelia?
+Bloomer
+10
+
+Fashion: The dominant decorative style of the 20s and 30s?
+Art deco
+10
+
+Fashion: The first widely used synthetic fiber?
+Rayon
+10
+
+Fashion: this company's logo is a sailboat?
+Nautica
+10
+
+Fashion: three-letter clothing outlet, or a space or void?
+Gap
+10
+
+Fashion: What colour thread is used for filigree?
+Silver or gold
+10
+
+Fashion: What fabric is known in Europe as serge de Nimes?
+Denim
+10
+
+Fashion: What is a pelerine?
+A cape
+10
+
+Fashion: What is the covering on the tip of a shoelace called?
+Aglet
+10
+
+Fashion: What popular name is given to the sleeveless pullover with wide armholes popular in the 60s and early 70s?
+Tank top
+10
+
+Fashion: Which American designer set up her own fashion label called DKNY?
+Donna karan
+10
+
+Fashion: Which designer created the Space Age Collection in 1964?
+Pierre cardin
+10
+
+Fashion: Which designers designs under the Emporio label?
+Armani
+10
+
+Fashion: Women's Perfume?
+Ici
+10
+
+Fashion: Women's perfume?
+Joy
+10
+
+Fashion: Women's shoe types?
+Stiletto Heels
+10
+
+Father of modern neurology & neurosurgery?
+Cushing
+10
+
+Feb 1865 is the only month in recorded history not to have a?
+Full moon
+10
+
+February 2nd is known as Ground Hog Day. What was the day originally known as in parts of Europe?
+Candleman's Day
+10
+
+February is ____ history month
+Black
+10
+
+Fedora, bowler and boater are all types of what?
+Hats
+10
+
+Female child star of the thirties?
+Shirley temple
+10
+
+Female model, Jean Shrimpton, was fondly known by what nickname?
+The Shrimp 
+10
+
+Female Politicians (first and last name)?
+Queen Elizabeth
+10
+
+Ferrite is a form of which metal?
+Iron
+10
+
+Fettucini, linguini and tagliatelle are all types of what?
+Pasta
+10
+
+Fianna Fail is a political party in which country?
+Ireland
+10
+
+Fictional private eye?
+Sam spade
+10
+
+Field of engineering & applied physics dealing with the design & application of devices, usually electronic circuits, the operation of what depends on the flow of electrons for the generation, transmission, reception, & storage of information?
+Electronics
+10
+
+Field of physics that describes & correlates the physical properties of macroscopic systems of matter & energy?
+Thermodynamics
+10
+
+Fighting alongside Americans and British during the ____ invasion of 1944 were 15,000 Canadians. And it was the Canadian troops who were the first to reach their planned objective
+D-day
+10
+
+Fiorello is the Italian word for what?
+Little Flower
+10
+
+Fired unglazed pottery?
+Bisque
+10
+
+First Byzantine emperor?
+Justinian
+10
+
+First division of the paleozoic era?
+Cambrian period
+10
+
+First Names: ____ Johnson Lincoln's successor, only impeached president
+Andrew
+10
+
+First state to secede from the Union in 1861?
+South carolina
+10
+
+First synthetic plastic created in 1909?
+Bakelite
+10
+
+First to conquer the south pole?
+Roald amundsen
+10
+
+First women in outer space?
+Sally Ride
+10
+
+Fishy short story also known as Creation Took Eight Days?
+Goldfish bowl
+10
+
+Five members of Lt. Col. George Armstrong Custer's family were killed at the Battle of ____: Tom and Boston, two half-brothers; Harry Armstrong Reed, a nephew; and a brother-in-law, James Calhoun
+Little big horn
+10
+
+Five objects set out so four are at corners of square or rectangle and the other at its centre?
+Quincunx
+10
+
+Five squared equals 25, what other number when squared gives the answer 25?
+Minus five
+10
+
+Five u.s states border which ocean?
+Pacific ocean
+10
+
+Flag day is celebrated in Canada on what date?
+February 15
+10
+
+Flags: How many stars are there on the New Zealand flag?
+Four
+10
+
+Flags: What colours are on the Belgian flag?
+Yellow
+10
+
+Flags: Which country has a plain green flag?
+Libya
+10
+
+Flags: Whose flag has the national arms on one side and the treasury seal on the other?
+Paraguay
+10
+
+Fleshy fruit of trailing cucumber like plant, often dried?
+Gourd
+10
+
+Flexible disc for storage of computer data?
+Floppy disk
+10
+
+Floating wreckage at sea?
+Flotsam
+10
+
+Florence Nightingale tended the soldiers in which war?
+Crimean
+10
+
+Florence nightingale was known as 'the lady of the ____'
+Lamp
+10
+
+Florence was severely flooded in what year?
+1966
+10
+
+Florentine Republic was besieged by the Medicis in 1530?
+Michelangelo
+10
+
+Florida is often referred to as 'The Sunshine State' what place in Australia also has the same nickname?
+Queensland
+10
+
+Florizel & Perdita are characters in which Shakespeare play?
+The winter's tale
+10
+
+Flowers?
+Daisy
+10
+
+Flub-a-dub and chief thunderchicken were regulars on?
+Howdy doody
+10
+
+Fluid produced in the lacrimal glands above the outside corner of each eye?
+Tears
+10
+
+Flux which English physicist worked on thermodynamics and has a unit of energy named for him?
+James prescott joule
+10
+
+Flying at the speed of sound is also known as?
+Mach one
+10
+
+Flying dutchman, soling and tornado are all classes of ____
+Sailboats
+10
+
+Focus group information compiled by CalComp revealed that 50 percent of computer users do not like using a?
+Mouse
+10
+
+Fohn,Khamsin,Brickfielder and Harmattan are all types of what?
+Wind
+10
+
+Food & Drink:  What is made of fermented grape juice?
+Wine
+10
+
+Food & Drink: ____ are called brussel sprouts because they were discovered in Brussels
+Brussel sprouts
+10
+
+Food & Drink: ____ explode when you put them in the microwave
+Grapes
+10
+
+Food & Drink: ____ milk does not curdle
+Camel's
+10
+
+Food & Drink: ____ of vitamin C in brussels sprouts will be lost in cooking
+90%
+10
+
+Food & Drink: ____ tongues were a common delicacy at Roman feasts
+Flamingo
+10
+
+Food & Drink: 'Rennet' is an extract from the stomachs of which animal?
+Calves
+10
+
+Food & Drink: 1940s: Aaron Lupin came up with an idea of putting whipped cream in a seamless, lined aersol canister. What is the name of this popular commodity?
+Reddi-wip
+10
+
+Food & Drink: 1980s: g.d. searle & co put this brand sweetener on the market in 1983?
+Nutrasweet
+10
+
+Food & Drink: 1990s: In 1992, what type of pet food could be mail-ordered from bow-wow distributers?
+Vegetarian pet food
+10
+
+Food & Drink: 19th Century: Laws forbidding the sale of ____ on Sunday prompted William Garwood to invent the ice cream sundae in Evanston, IL, in 1875
+Sodas
+10
+
+Food & Drink: 7x was used to refer to the secret ingredient of what drink?
+Coca cola
+10
+
+Food & Drink: 90% of vitamin ____ in brussels sprouts will be lost in cooking
+C
+10
+
+Food & Drink: A 'roux' is produced when making which food?
+Sauce
+10
+
+Food & Drink: A bloomer is what type of food?
+Bread
+10
+
+Food & Drink: A bottle of wine originating from the 'Nobilo' vineyards, is produced in which country?
+New zealand
+10
+
+Food & Drink: A bottle of wine originating from the Mondavi coastal vineyard is produced in which country?
+USA
+10
+
+Food & Drink: A bowl of ____ contains twice as much sodium as a bowl of potato chips
+Wheaties
+10
+
+Food & Drink: A bowl of Wheaties contains twice as much ____ as a bowl of potato chips
+Sodium
+10
+
+Food & Drink: A bowl of Wheaties contains twice as much sodium as a bowl of____
+Potato chips
+10
+
+Food & Drink: A breakfast food of rolled oats, dried fruit, nuts etc usually eaten with milk?
+Muesli
+10
+
+Food & Drink: A Calzone Is A Folded Stuffed What?
+Pizza
+10
+
+Food & Drink: A cantaloupe is a small what?
+Melon
+10
+
+Food & Drink: A canteloupe is what kind of fruit?
+Melon
+10
+
+Food & Drink: A connoisseur of good food?
+Gourmet
+10
+
+Food & Drink: A crapulous person is full of what?
+Alcohol
+10
+
+Food & Drink: A dressing made with oil, wine, vinegar and seasoning is called what?
+Vinaigrette
+10
+
+Food & Drink: A favourite Indian soup consisting of ground kernels of corn, dried smoked meat, fish, squash, pumpkin, or berries was called what?
+Sagamite
+10
+
+Food & Drink: A flat round Dutch cheese?
+Gouda
+10
+
+Food & Drink: A flat round soft creamy French cheese?
+Brie
+10
+
+Food & Drink: A folded tortilla filled with meat, cheese, beans etc. is called what?
+Taco
+10
+
+Food & Drink: A girl with pig tails, and a white-haired man represent this chain?
+Wendys
+10
+
+Food & Drink: A green or yellow liqueur brandy?
+Chartreuse
+10
+
+Food & Drink: A hot spicy root used in cooking?
+Ginger
+10
+
+Food & Drink: A liqueur made red, acid-tasting cherries?
+Maraschino
+10
+
+Food & Drink: A mint with a hole?
+Polo
+10
+
+Food & Drink: a really big french fry, stuffed with yummy stuff?
+Baked potato
+10
+
+Food & Drink: A tayberry is a cross between which two fruits?
+Blackberry and raspberry
+10
+
+Food & Drink: A thin Indian cake of unleavened bread?
+Chapatti
+10
+
+Food & Drink: A thin pancake with savoury or sweet filling?
+Crepe
+10
+
+Food & Drink: According to Vincent Vega, what is a Big Mac called in France?
+Le big mac
+10
+
+Food & Drink: according to vincent, whats a quarter pounder called in france?
+Royale with cheese
+10
+
+Food & Drink: Add this to milk, eggs, and sugar to make a Tom and Jerry?
+Rum
+10
+
+Food & Drink: Adding this to a mere martini makes it a Gibson?
+Onion
+10
+
+Food & Drink: An egg plant is also known as which vegetable?
+Aubergine
+10
+
+Food & Drink: Any candy on a stick is known as this?
+Lollipop
+10
+
+Food & Drink: Apart from potato What is the other main ingredient of Bubble and Squeak?
+Cabbage
+10
+
+Food & Drink: At which stage of a meal would you have an hors d'oeuvre?
+Beginning
+10
+
+Food & Drink: Avocados have the highest calories of any fruit at ____ calories per hundred grams
+167
+10
+
+Food & Drink: Bacardi Rum's logo features which creature?
+Bat
+10
+
+Food & Drink: Baked beans are made from which beans?
+Haricot
+10
+
+Food & Drink: Baklava is a form of...?
+Dessert
+10
+
+Food & Drink: Bechemel, espagnole and bearnaise are types of which food?
+Sauce
+10
+
+Food & Drink: Beef roast cooked in vinegar (German)?
+Sauerbraten
+10
+
+Food & Drink: Beer: Beers Around the World (brand names)?
+Dos Equis
+10
+
+Food & Drink: Beer: Beers Around the World (brand names)?
+Leinenkugel
+10
+
+Food & Drink: Beer: Beers Around the World (brand names)?
+Tecate
+10
+
+Food & Drink: Beer: Beers made with top fermenting yeasts, usually at warmer temperatures?
+Ale
+10
+
+Food & Drink: Beer: Belgian monks at places like Chimay and Orval brew beers given this moniker?
+Trappist
+10
+
+Food & Drink: Beer: Biweekly IRC beer tastings, at 10pm Eastern Time, are on this channel?
+#tasting
+10
+
+Food & Drink: Beer: Brand that makes a cameo appearance in Das Boot?
+Becks
+10
+
+Food & Drink: Beer: breweries that produce less than 15,000 barrels per year are called ____
+Microbreweries
+10
+
+Food & Drink: Beer: Cheaper non-barley grains such as rice and corn are referred to by this term?
+Adjuncts
+10
+
+Food & Drink: Beer: Common ending for the names of German Doppelbocks?
+Ator
+10
+
+Food & Drink: Beer: German variety of noble hops that Jim Koch whines about on the radio?
+Hallertau mittelfrueh
+10
+
+Food & Drink: Beer: Home country of Sam Miguel beer?
+Philippines
+10
+
+Food & Drink: Beer: In many backward states, stronger beers must use this useless term instead?
+Malt liquor
+10
+
+Food & Drink: Beer: Most experts say you don`t have a pilsner if you don't use this kind of hops?
+Saaz
+10
+
+Food & Drink: Beer: Standard unit of bitterness. Defined as 1 part per million isohumolone?
+International bittering unit
+10
+
+Food & Drink: Beer: Swiss beer bottled each year on December 6th and sold the following year?
+Samichlaus
+10
+
+Food & Drink: Beer: Term used for the strongest ales (not lagers)?
+Barleywine
+10
+
+Food & Drink: Beer: The art or science of brewing beer. Also the name of a homebrew magazine?
+Zymurgy
+10
+
+Food & Drink: Beer: The brewery in derge's hometown, Frederick, Maryland, brews under this label?
+Blue ridge brewery
+10
+
+Food & Drink: Beer: the German term weizen refers to beers made with this ingredient?
+Wheat
+10
+
+Food & Drink: Beer: The process of extracting sugar from malt by soaking in water?
+Mashing
+10
+
+Food & Drink: Beer: thiz tazetless zwill is zomething different all right, but itz not beer?
+Zima
+10
+
+Food & Drink: Beer: What country is home to the real Budweiser? Not the USA?
+Czechen republic
+10
+
+Food & Drink: Beer: Where was Budweiser first brewed?
+St. louis
+10
+
+Food & Drink: Beer: which is higher, percent alcohol by weight or by volume?
+By volume
+10
+
+Food & Drink: Before baking a 'baked Alaska', with what is the ice cream covered?
+Meringue
+10
+
+Food & Drink: big Mexican food chain, ring ding a ling, making you run for the border!?
+Taco bell
+10
+
+Food & Drink: Biology: Bread, cereals, fruit and vegetables are needed by the body as good sources of what?
+Fibre
+10
+
+Food & Drink: Black-eyed peas are not peas. What are they?
+Beans
+10
+
+Food & Drink: Boned steak cut off sirloin?
+Entrecote
+10
+
+Food & Drink: Borsch is based on what vegetable?
+Beetroot
+10
+
+Food & Drink: Bortsch is a traditional dish from which country?
+Russia
+10
+
+Food & Drink: Boston butt, jowl, and picnic ham are parts of a ____
+Pig
+10
+
+Food & Drink: Breakfast Cereals?
+Alphabits
+10
+
+Food & Drink: Breakfast Cereals?
+Fruit Loops
+10
+
+Food & Drink: Breakfast CerealsCorn Pops?
+Fruity Pebbles
+10
+
+Food & Drink: Bummalo fish dried and salted is eaten as a relish called what?
+Bombay duck
+10
+
+Food & Drink: Cakes or biscuits made with egg whites, sugar and ground almonds or coconut?
+Macaroons
+10
+
+Food & Drink: Candy: Cinnamon flavored candies with a Mexican theme?
+Hot tamales
+10
+
+Food & Drink: Candy: fruit flavored candy pieces made with ju-ju gum?
+Jujubes
+10
+
+Food & Drink: Caster,demerara and Muscovado are all types of what?
+Sugar
+10
+
+Food & Drink: chain with a hat as a logo, makes roast beef burgers among other things?
+Arbys
+10
+
+Food & Drink: Cheese: Dutch origin; inedible casing; mild; appetizer, dessert?
+Edam
+10
+
+Food & Drink: Cheese: English origin; mild to very sharp; snack, cooking, dessert?
+Cheddar
+10
+
+Food & Drink: Cheese: french origin; cherry brandy flavor; appetizer, dessert?
+Gourmandise
+10
+
+Food & Drink: Cheese: French origin; pungent; appetizer, dessert?
+Camembert
+10
+
+Food & Drink: Cheese: French origin; sharp, salty; appetizer, salad, dessert?
+Roquefort
+10
+
+Food & Drink: Cheese: Italian origin; mellow; appetizer, dessert?
+Fontina
+10
+
+Food & Drink: Cheese: Italian origin; mild, curd or dry; cooking, dessert?
+Ricotta
+10
+
+Food & Drink: Cheese: Italian origin; mild; as an appetizer, for dessert?
+Bel paese
+10
+
+Food & Drink: Cheese: Italian origin; pungent flavor; crumbly; in salads, for dessert?
+Gorgonzola
+10
+
+Food & Drink: Cheese: norwegian origin; caramel flavor; sandwich, snack?
+Gjetost
+10
+
+Food & Drink: Cheese: probably french origin; tangy, sharp; appetizer, salad, dessert?
+Blue
+10
+
+Food & Drink: Cheese: Swiss origin; clover flavor; usually grated?
+Sapsago
+10
+
+Food & Drink: Cheese: Swiss origin; nutty, sharper than Swiss; cooking, dessert?
+Gruyere
+10
+
+Food & Drink: Cheese: This Mother Goose character was eating what we'd call cottage cheese?
+Little miss muffett
+10
+
+Food & Drink: Cheese: u.s. origin; very mild; hill slightly; salad, snack, dessert?
+Cream
+10
+
+Food & Drink: Cheese: Yugoslavian origin; salty, appetizer, snack, dessert?
+Kashkaval
+10
+
+Food & Drink: Chefs at the al bustan rotana hotel made a cake with ____ candles
+2100
+10
+
+Food & Drink: Chewing gum was patented by who?
+William semple
+10
+
+Food & Drink: Chewing gum while peeling onions will keep you from?
+Crying
+10
+
+Food & Drink: Chicken is the leading cause of what food born illness?
+Salmonella poisoning
+10
+
+Food & Drink: Chicory was a war time substitute for what drink?
+Coffee
+10
+
+Food & Drink: Chocolate: Marble sized, vanilla flavored, chewy caramels covered with milk chocolate?
+Milk duds
+10
+
+Food & Drink: Chocolate: milk chocolate covered peanuts?
+Goobers
+10
+
+Food & Drink: Chocolate: Named for a celestial object?
+Milky way
+10
+
+Food & Drink: Chocolate: named for Mars and Murrie, the company's founders?
+Mnms
+10
+
+Food & Drink: Chocolate: promoted by bart simpson?
+Butterfingers
+10
+
+Food & Drink: Chocolate: Swiss manufacturer of the Crunch bar?
+Nestle
+10
+
+Food & Drink: Coca-cola was named for the extracts of which of its two 'medicinal' ingredients?
+Coca leaves and kola nuts
+10
+
+Food & Drink: Coca-cola was originally what colour?
+Green
+10
+
+Food & Drink: Cocktails: Bourbon, sugar and mint make a(n) ____
+Mint julep
+10
+
+Food & Drink: Cocktails: Cognac (brandy) and white creme de menthe make a(n) ____
+Stinger
+10
+
+Food & Drink: Cocktails: Creme de Cacao, cream, and brandy make a(n) ____
+Brandy alexander
+10
+
+Food & Drink: Cocktails: creme de cacao, cream, and brandy make a?
+Brandy alexander
+10
+
+Food & Drink: Cocktails: Gin and Collins mix make a(n) ____
+Tom collins
+10
+
+Food & Drink: Cocktails: gin, blue curacao & lemonade make a ____
+Blue lagoon
+10
+
+Food & Drink: Cocktails: Rum, lime, and cola drink make a(n) ____
+Cuba libre
+10
+
+Food & Drink: Cocktails: Triple sec, tequila, and lemon or lime juice make a(n) ____
+Margarita
+10
+
+Food & Drink: Cocktails: vodka & kahlua make a(n) ____
+Black Russian
+10
+
+Food & Drink: Cocktails: Vodka and Kahlua make a(n) ____
+Black Russian
+10
+
+Food & Drink: Cocktails: vodka and lime juice make a?
+Gimlet
+10
+
+Food & Drink: Cocktails: vodka and orange juice make a?
+Screwdriver
+10
+
+Food & Drink: Cocktails: Vodka, orange juice and Galliano make a(n) ____
+Harvey wallbanger
+10
+
+Food & Drink: Cocktails: What are the essential ingredients of a daiquiri?
+Rum and lemon
+10
+
+Food & Drink: Cocktails: What cocktail is based on rum and lemon?
+Daiquiri
+10
+
+Food & Drink: Cocktails: whiskey, angostura bitters, and sugar make an?
+Old fashion
+10
+
+Food & Drink: Cocktails: Whiskey, hot coffee, and whipped cream make a(n) ____
+Irish coffee
+10
+
+Food & Drink: Coffee made under steam pressure?
+Espresso
+10
+
+Food & Drink: Conference, Bartlett and Kaiser are all varieties of which fruit?
+Pear
+10
+
+Food & Drink: Cornflakes were invented in 1863, 1890 or 1915?
+1890
+10
+
+Food & Drink: Different kinds of pies (omit pie)?
+French Silk
+10
+
+Food & Drink: Dish consisting of flavoured mince, chilli and beans?
+Chilli con carne
+10
+
+Food & Drink: Dish of food covered with alcohol and set alight?
+Flambe
+10
+
+Food & Drink: Dish served between fish and meat courses?
+Entree
+10
+
+Food & Drink: Drink made of eggs, cream & sugar - rum optional (English)?
+Eggnog
+10
+
+Food & Drink: Dry white wine made from european varitey of grape?
+Riesling
+10
+
+Food & Drink: Duke Richelieu brought it to France after visiting Mahon, city on Minorca?
+Mayonnaise
+10
+
+Food & Drink: Dunkin' Donuts serves about ____ doughnuts each day
+112,500
+10
+
+Food & Drink: During brewing what is converted into alcohol?
+Sugar
+10
+
+Food & Drink: Dutch cheese with red rind?
+Edam
+10
+
+Food & Drink: Dutch liqeur made with raw eggs?
+Advocaat
+10
+
+Food & Drink: Earl grey is a china tea flavoured with what?
+Bergamot
+10
+
+Food & Drink: Edible organs of an animal?
+Offal
+10
+
+Food & Drink: Even though it tastes nothing like grapes, a ____ is often eaten for breakfast
+Grapefruit
+10
+
+Food & Drink: Expensive potato patties served for breakfast?
+Hash browns
+10
+
+Food & Drink: Fashion designer that owns Paris's Maxim's restaurant?
+Pierre cardin
+10
+
+Food & Drink: Fast Food Restaurants?
+McDonalds
+10
+
+Food & Drink: Federal labeling regulations require how much caffeine be removed from coffee for it to be called decaffeinated?
+Ninety seven percent
+10
+
+Food & Drink: Filo pastry stuffed with chopped nuts and honey?
+Baklava
+10
+
+Food & Drink: Fine strong dark coffee?
+Mocha
+10
+
+Food & Drink: Finely ground meal of grains of wheat, obtained by milling?
+Flour
+10
+
+Food & Drink: Five jello flavours that flopped: celery, ____ , cola, apple and chocolate
+Coffee
+10
+
+Food & Drink: Five jello flavours that flopped: celery, coffee, ____ , apple and chocolate
+Cola
+10
+
+Food & Drink: Five jello flavours that flopped: celery, coffee, cola, ____ and chocolate
+Apple
+10
+
+Food & Drink: Five jello flavours that flopped: celery, coffee, cola, apple and____
+Chocolate
+10
+
+Food & Drink: Five jello flavours that flopped:____ , coffee, cola, apple and chocolate
+Celery
+10
+
+Food & Drink: Flamingo ____ were a common delicacy at Roman feasts
+Tongues
+10
+
+Food & Drink: Flamingo tongues were a common delicacy at ____ feasts
+Roman
+10
+
+Food & Drink: French bread filled with meat, cheese and salad is called a what?
+Hero sandwich
+10
+
+Food & Drink: French fries come from this country?
+Belgium
+10
+
+Food & Drink: French: Beef stew with Burgundy wine?
+Boeuf bourguignonne
+10
+
+Food & Drink: french: clarified double-strength brown stock?
+Consomme
+10
+
+Food & Drink: french: flaky, buttery pastry shaped in a quarter-moon?
+Croissant
+10
+
+Food & Drink: french: less stimulating than tea or coffee, an infusion?
+Tisane
+10
+
+Food & Drink: french: rich custard famous for its hard, caramelized sugar glaze?
+Creme brulee
+10
+
+Food & Drink: french: salad from the south of france, made with black olives and anchovies?
+Salade nicoise
+10
+
+Food & Drink: french: the basic white sauce?
+Bechamel
+10
+
+Food & Drink: french: thin pancakes with an orange liqueur sauce?
+Crepes suzette
+10
+
+Food & Drink: French: what is the name of the favourite French Canadian snack consisting of French Fries and Melted Cheese?
+Poutine
+10
+
+Food & Drink: From what animal do we get venison?
+Deer
+10
+
+Food & Drink: From what is mock turtle soup made?
+Calfs head
+10
+
+Food & Drink: From what is rum distilled?
+Sugar cane
+10
+
+Food & Drink: From which animal does haggis come?
+Sheep
+10
+
+Food & Drink: From which fish is caviar obtained?
+Sturgeon
+10
+
+Food & Drink: Fruit preserved in sugar?
+Glace
+10
+
+Food & Drink: Fruit puree thin enough to pour?
+Coulis
+10
+
+Food & Drink: fruit smack flavored syrup was the original name of?
+Kool aid
+10
+
+Food & Drink: Fruit that is a cross between a grapefruit and a tangerine?
+Ugli
+10
+
+Food & Drink: garfield's favourite food, multi-layered, common at pizza stores?
+Lasagna
+10
+
+Food & Drink: German dish with roast beef marinated in vinegar, sugar, and seasonings?
+Sauerbraten
+10
+
+Food & Drink: German wholemeal rye bread?
+Pumpernickel
+10
+
+Food & Drink: Glass bottle for serving wine?
+Carafe
+10
+
+Food & Drink: Greek dish of mince with aubergine and eggs?
+Mousaka
+10
+
+Food & Drink: Grolsch lager is from which country?
+Holland
+10
+
+Food & Drink: Hash Browns are normally made from which vegetables?
+Potatoes
+10
+
+Food & Drink: Homer Simpson drinks what brand of beer?
+Duff
+10
+
+Food & Drink: Homer Simpson drinks Which brand of beer regularly?
+Duff
+10
+
+Food & Drink: How many calories are there in a stick of celery?
+None
+10
+
+Food & Drink: How many flowers are in the design stamped on each side of an Oreo cookie?
+Twelve
+10
+
+Food & Drink: How many herbs and spices are used in Kentucky Fried Chicken?
+Eleven
+10
+
+Food & Drink: How many pieces of bun are in a Mcdonald's Big Mac?
+Three
+10
+
+Food & Drink: How many sizes of chicken eggs does the USDA recognize, including peewee?
+Six
+10
+
+Food & Drink: Iceberg, Boston, and Bibb are types of ____
+Lettuce
+10
+
+Food & Drink: If I take two apples out of a basket containing six apples how many apples do I have ?
+Two
+10
+
+Food & Drink: If steak was blue how would it be cooked?
+Very Rare
+10
+
+Food & Drink: If you had frijoles refritos in a Mexican restaurant it would be refried what?
+Beans
+10
+
+Food & Drink: If you ordered Caneton what would you get?
+Duck
+10
+
+Food & Drink: In 1904, what food product was renamed Post Toasties cereal because the clergy objected to the original name?
+Elijah's Manna
+10
+
+Food & Drink: In a French restaurant what would you be eating if you chose escargots?
+Snails
+10
+
+Food & Drink: In a Mcdonald's Big Mac how many pieces of bun are there?
+Three
+10
+
+Food & Drink: In addition to potatoes what is in colcannon?
+Cabbage
+10
+
+Food & Drink: In Ancient China what variety of meat was reserved exclusively for the emperor?
+Pork
+10
+
+Food & Drink: In ancient Egypt what was liquorice used for?
+Medicine
+10
+
+Food & Drink: In cooking how many teaspoons in a tablespoon?
+Three
+10
+
+Food & Drink: In Eggs Florentine which vegetable is a main ingredient?
+Spinach
+10
+
+Food & Drink: In pickles, what are gherkins?
+Cucumbers
+10
+
+Food & Drink: In the dish of Beef Wellington, in what is the beef wrapped?
+Pastry
+10
+
+Food & Drink: In the Hansel and Gretel tale what was the wicked witch's house made of?
+Gingerbread
+10
+
+Food & Drink: In the United States, what are the five most frequently eaten fruits?
+Banana
+10
+
+Food & Drink: In what year was Diet Pepsi introduced?
+1965
+10
+
+Food & Drink: In which country did edam cheese originate?
+Holland
+10
+
+Food & Drink: In which country did the word 'biscuit' originate?
+France
+10
+
+Food & Drink: Indian clarified butter?
+Ghee
+10
+
+Food & Drink: Indian dish of of fried vegetables?
+Bhaji
+10
+
+Food & Drink: Is a schnitzel a sweet or a savoury?
+Savoury
+10
+
+Food & Drink: Is wholemeal bread brown or white?
+Brown
+10
+
+Food & Drink: Italian dish consiting of olives, anchovies, salami, celery, and appetizers?
+Antipasto
+10
+
+Food & Drink: Japanese drink made from rice?
+Sake
+10
+
+Food & Drink: Jasmine and long grain are both types of what?
+Rice
+10
+
+Food & Drink: kfc stands for?
+Kentucky fried chicken
+10
+
+Food & Drink: Lack of Vitamin D causes which disease?
+Rickets
+10
+
+Food & Drink: Laetrile is associated with the pit of which fruit?
+Apricot
+10
+
+Food & Drink: Large brown fruit of tropical palm tree?
+Coconut
+10
+
+Food & Drink: Largest single user of almonds in North America?
+Hershey
+10
+
+Food & Drink: List Coffee drinks & types (omit coffee)?
+Americano
+10
+
+Food & Drink: Little round chocolate candies are known as _&m's?
+M
+10
+
+Food & Drink: Long green fleshy fruit used in salads?
+Cucumber
+10
+
+Food & Drink: lots of people like this brown liquid with fries?
+Gravy
+10
+
+Food & Drink: Marsala is a type of this?
+Sweet wine
+10
+
+Food & Drink: Marzipan is made from which nuts?
+Almonds
+10
+
+Food & Drink: McDonald's also sells this Italian food in some markets?
+Pizza
+10
+
+Food & Drink: McDonalds: all of their products seem to be prefaced with which 2 letters?
+Mc
+10
+
+Food & Drink: McDonalds: out of the two big cola brands, which one do they sell?
+Coca cola
+10
+
+Food & Drink: McDonalds: These things may sound like Scottish lumps of gold, but are food?
+Mcnuggets
+10
+
+Food & Drink: McDonalds: Who is McDonald's mascot?(full name)?
+Ronald mcdonald
+10
+
+Food & Drink: Mexican dish with minced and seasoned meat packed in cornmeal and corn husks?
+Tamale
+10
+
+Food & Drink: Mixed diced vegetables in mayonnaise is what sort of salad?
+Russian
+10
+
+Food & Drink: Mixed Drinks/Cocktails?
+Martini
+10
+
+Food & Drink: Mixed Drinks/Cocktails?
+Whiskey Sour
+10
+
+Food & Drink: Mustard, ketchup and onions on a hotdog are all ____
+Condiments
+10
+
+Food & Drink: N. African dish of cracked wheat steamed over broth?
+Couscous
+10
+
+Food & Drink: Name for an oblong cream puff filled and topped with icing?
+Eclair
+10
+
+Food & Drink: Name for vitamin B2?
+Riboflavin
+10
+
+Food & Drink: Name of a cylindrical clay oven traditionally used in India?
+Tandoor
+10
+
+Food & Drink: Name of a medieval spiced wine, often served warm?
+Hippocras
+10
+
+Food & Drink: Name the drink that is often confused with a drug?
+Coke
+10
+
+Food & Drink: Name the only fruit named for its color?
+Orange
+10
+
+Food & Drink: name the year l & p - lemon and paeroa new zealand's most famous soft drink was invented in?
+1904
+10
+
+Food & Drink: North African dish with this semolina product (North African)?
+Couscous
+10
+
+Food & Drink: Nut used to make marzipan?
+Almond
+10
+
+Food & Drink: Nutmeg is extremely ____ if injected intravenously
+Poisonous
+10
+
+Food & Drink: Of all the common fowl, this requires the longest cooking?
+Duck
+10
+
+Food & Drink: Of the Worlds food crops, what percentage is pollinated by insects?
+80 percent
+10
+
+Food & Drink: Of which fruit is Pearmain a variety?
+Apple
+10
+
+Food & Drink: Often drank, this liquid is normally harvested from female cows?
+Milk
+10
+
+Food & Drink: Often drunk, this liquid is normally harvested from female cows?
+Milk
+10
+
+Food & Drink: Often eaten for breakfast, the egg comes from what barnyard animal?
+Chicken
+10
+
+Food & Drink: On a menu, the term flambe indicates this?
+Flaming
+10
+
+Food & Drink: On some boards, these things are listed as FREE, at McDonald's?
+Smiles
+10
+
+Food & Drink: On what vegetable did an ancient Egyptian place his right hand when taking an oath?
+The onion
+10
+
+Food & Drink: One who specialises in the scientific study and regulation of food intakeand preparation?
+Dietician
+10
+
+Food & Drink: Oyster, Chestnut, or Shitaki are types of which vegetable?
+Mushrooms
+10
+
+Food & Drink: Pale very dry Spanish sherry?
+Manzanilla
+10
+
+Food & Drink: Pate de foie gras is made from the liver of which bird?
+Goose
+10
+
+Food & Drink: Pilaf is this cooked in a broth of meat or poultry?
+Rice
+10
+
+Food & Drink: Pizza Toppings?
+Cheddar Cheese
+10
+
+Food & Drink: Pizza toppings?
+Mozzarella Cheese
+10
+
+Food & Drink: Polish cake filled with candied fruits and nuts?
+Babka
+10
+
+Food & Drink: Port Salut is what?
+Cheese
+10
+
+Food & Drink: Prunes stuffed with almonds are wrapped in what to make Devils on horseback?
+Bacon
+10
+
+Food & Drink: Pureed chick-pea dip (Mid East)?
+Hummus
+10
+
+Food & Drink: Red wine from Bordeaux?
+Claret
+10
+
+Food & Drink: Rickets is caused by a lack of which vitamin?
+Vitamin D
+10
+
+Food & Drink: Rounded green ish citrus fruit with an acid fleshy pulp?
+Lime
+10
+
+Food & Drink: Sauerkraut is pickled what?
+Cabbage
+10
+
+Food & Drink: Seasoned smoked sausage?
+Frankfurter
+10
+
+Food & Drink: Sheep milk is used to produce Roquefort____
+Cheese
+10
+
+Food & Drink: Six ounces of orange juice contains the minimum daily requirement for which vitamin?
+Vitamin C
+10
+
+Food & Drink: Soft french cheese?
+Brie
+10
+
+Food & Drink: Sometimes called a Frankfurt, on a bun with cheese,mustard,ketchup etc?
+Hot dog
+10
+
+Food & Drink: Spice made from the berry of the pimento plant?
+Allspice
+10
+
+Food & Drink: Spirit distilled from malted barley?
+Whisky
+10
+
+Food & Drink: Sticky and sweet this food is produced in a hive?
+Honey
+10
+
+Food & Drink: Stuff you put in, on or serve with chili (the dish)?
+Cayenne pepper
+10
+
+Food & Drink: Stuff you put in, on or serve with chili (the dish)?
+Cheese
+10
+
+Food & Drink: sweetbread is derived from this organ?
+Pancreas
+10
+
+Food & Drink: Taco ____
+Bell
+10
+
+Food & Drink: Tea: Better teabags contain these small particles sifted out of better teas?
+Fannings
+10
+
+Food & Drink: Tea: In this country, tea leaves are pickled and used as a vegetable relish?
+Burma
+10
+
+Food & Drink: Tea: Japanese and many Chinese people prefer this type of tea, which is unfermented?
+Green
+10
+
+Food & Drink: Tea: Tea plants belong to this genus?
+Camellia
+10
+
+Food & Drink: Tea: The first sprouting of Darjeeling tea leaves in the spring are called this?
+First flush
+10
+
+Food & Drink: Tea: The practice of steeping tea was developed during this Chinese dynasty?
+Ming
+10
+
+Food & Drink: Tea: This black tea is flavoured with oil of bergamot, an aromatic Chinese orange?
+Earl grey
+10
+
+Food & Drink: Tea: This is the name of the Japanese tea ceremony?
+Chanoyu
+10
+
+Food & Drink: Tea: This nation is the world's largest producer of tea?
+India
+10
+
+Food & Drink: The 'M' in the McDonalds logo is what colour?
+Yellow
+10
+
+Food & Drink: The beer introduced in 1961 to take the head off sales of imported beers?
+Michelob
+10
+
+Food & Drink: The beer museum in Cincinnati is associated with this brewery?
+Oldenberg
+10
+
+Food & Drink: The Bereich is a wine producing region of which country?
+Germany
+10
+
+Food & Drink: The drink Sake (sah'ki) comes from this country?
+Japan
+10
+
+Food & Drink: The eggs of this sturgeon are the preferred form of caviar?
+Beluga
+10
+
+Food & Drink: The FDA approved what fat substitute for use in snack foods even though there were reports of side affects like cramps and diarrhea?
+Olestra
+10
+
+Food & Drink: the flop 1960's diet drink minivitine was a spinoff of this drink mix?
+Ovaltine
+10
+
+Food & Drink: The founder of Weight Watchers?
+Jean nidetch
+10
+
+Food & Drink: The Giant panda's favorite food is what?
+Bamboo shoots
+10
+
+Food & Drink: The home of the Golden Arches?
+Mcdonalds
+10
+
+Food & Drink: The juice of which fruit will you find in a bloody mary?
+Tomato
+10
+
+Food & Drink: The Lobster people...?
+Red lobster
+10
+
+Food & Drink: The main cereal ingredient of flapkacks (Hudson Bars in USA)?
+Oats
+10
+
+Food & Drink: The main ingredient of a Paella is what?
+Rice
+10
+
+Food & Drink: The main ingredient of Sauerkraut is what?
+Cabbage
+10
+
+Food & Drink: The main vegetable ingredient in the dish Borsht is what?
+Beetroot
+10
+
+Food & Drink: The making of what well known dessert item was perfected by Sicilian Francisco Procopio in 1659?
+Ice cream
+10
+
+Food & Drink: The name of what food, when translated, means twice-cooked?
+Biscuit
+10
+
+Food & Drink: The place that brings you fried chicken that has lovely but very caloric skin?
+Kentucky fried chicken
+10
+
+Food & Drink: The principal ingredient of sauerkraut?
+Cabbage
+10
+
+Food & Drink: the queensland nut or bush nut is more commonly known as this?
+Macadamia
+10
+
+Food & Drink: The Simpsons advertise this candy?
+Butterfinger
+10
+
+Food & Drink: The song, Food, Glorious Food, was featured in which musical?
+Oliver
+10
+
+Food & Drink: The Teenage Mutant Ninja Turtles favourite food is?
+Pizza
+10
+
+Food & Drink: The tradition of making what was born out of the need to use up milk and eggs before lent?
+Pancakes
+10
+
+Food & Drink: The turtles love these, they often come with many toppings?
+Pizza
+10
+
+Food & Drink: The usual main meat ingredient of a Shish Kebab is?
+Lamb
+10
+
+Food & Drink: These are Hershey's Kisses intertwined with white chocolate?
+Hugs
+10
+
+Food & Drink: this bar first appeared in oats'n honey, cinammon, and coconut flavors?
+Granola
+10
+
+Food & Drink: This breakfast cereal has a leprechaun mascot?
+Lucky charms
+10
+
+Food & Drink: This carbohydrate fruit is high in potassium?
+Banana
+10
+
+Food & Drink: This cereal features a honey bee as its mascot (very specific)?
+Honey nut cheerios
+10
+
+Food & Drink: This cereal is the only one that features a frog as its mascot?
+Sugar smacks
+10
+
+Food & Drink: This cereal's mascot is Tony the Tiger?
+Frosted flakes
+10
+
+Food & Drink: This chick pea pure? is flavoured with tahini and served as a dip?
+Hummus
+10
+
+Food & Drink: This chocolaty cereal features Fred Flintstone and Barney Rubble?
+Cocoa pebbles
+10
+
+Food & Drink: This city is famous for its oranges?
+Seville
+10
+
+Food & Drink: this cut of beef lies between tenderloin & rump?
+Sirloin
+10
+
+Food & Drink: This dairy product tastes good on crackers and sandwiches or on its own?
+Cheese
+10
+
+Food & Drink: This film inspired the snack food Screaming Yellow Zonkers?
+Yellow submarine
+10
+
+Food & Drink: This food has a name which means on a skewer?
+Kebab
+10
+
+Food & Drink: This fruit goes into the liqueur Kirsch?
+Cherry
+10
+
+Food & Drink: This gum lasts an extra, extra, extra, long time?
+Extra
+10
+
+Food & Drink: This gum's commercials highlight twins?
+Doublemint
+10
+
+Food & Drink: This herb is used to flavour Pernod?
+Aniseed
+10
+
+Food & Drink: This herb is used to make a Pesto sauce?
+Basil
+10
+
+Food & Drink: This is converted into alcohol during brewing?
+Sugar
+10
+
+Food & Drink: This is the chocolate caramel coated cookie bar (and is Mach's favorite)?
+Twix
+10
+
+Food & Drink: This meat is used to make scaloppine?
+Veal
+10
+
+Food & Drink: This milk is a basic ingredient in Thai cookery?
+Coconut milk
+10
+
+Food & Drink: This spirit is the base for a Black Russian cocktail?
+Vodka
+10
+
+Food & Drink: This type of milk is a basic ingredient in Thai cookery?
+Coconut milk
+10
+
+Food & Drink: Traditionally at a fair ground what fruit would be covered with toffee?
+Apple
+10
+
+Food & Drink: Type of frothy milky coffee?
+Cappuccino
+10
+
+Food & Drink: Type of moist aerated Italian bread?
+Ciabatta
+10
+
+Food & Drink: Type of Pakistani curry cooked and served in a shallow dish?
+Balti
+10
+
+Food & Drink: Under what name did the Domino's Pizza chain get its start?
+DomNick's
+10
+
+Food & Drink: Unleavened bread for Passover?
+Matzo
+10
+
+Food & Drink: Unlike other oranges, what does a navel orange not have?
+Seeds
+10
+
+Food & Drink: Vegetable used in sauerkraut?
+Cabbage
+10
+
+Food & Drink: Vermicelli literally means ____
+Little worms
+10
+
+Food & Drink: What added ingredient keeps confectioners' sugar from clumping?
+Corn starch
+10
+
+Food & Drink: What American city produces most of the egg rolls sold in grocery stores in the United States?
+Houston, Texas
+10
+
+Food & Drink: What animals milk is used to make authentic Italian mozzarella cheese?
+The water buffalo's
+10
+
+Food & Drink: What are de-headed, de-veined an sorted by size in a laitram machine?
+Shrimp
+10
+
+Food & Drink: What are dried prunes?
+Plums
+10
+
+Food & Drink: What are gazpacho and vichyssoise?
+Chilled soups
+10
+
+Food & Drink: What are Pontefract cakes made from?
+Liquorice
+10
+
+Food & Drink: What are small cubes of toasted or fried bread?
+Croutons
+10
+
+Food & Drink: What are Swedish buns called?
+Danishes
+10
+
+Food & Drink: What are the 3 main ingredients of Yorkshire pudding?
+Milk, flour & eggs
+10
+
+Food & Drink: what are the corns in corned beef?
+Salt
+10
+
+Food & Drink: What are the oldest, most widely cultivated and extensively used nuts in the world?
+Almonds
+10
+
+Food & Drink: What are the principal ingredients of kedgeree?
+Fish and rice
+10
+
+Food & Drink: What are the two top selling spices in the world?
+Pepper and mustard
+10
+
+Food & Drink: What baking ingredient, sprayed at high pressure, did the U.S. Air Force replace its toxic paint stripper with?
+Baking soda
+10
+
+Food & Drink: What basic product is cheese made out of?
+Milk
+10
+
+Food & Drink: What bird is used in squab pie?
+Pigeon
+10
+
+Food & Drink: What breakfast cereal was invented at Battle Creek Sanitarium?
+Cornflakes
+10
+
+Food & Drink: What cake do you keep a layer of to eat at the christening of your first child?
+Wedding Cake
+10
+
+Food & Drink: What carbonated beverage started out life in the 1890's as 'Brad's Drink'?
+Pepsi
+10
+
+Food & Drink: What cereal is used in Scotch Broth?
+Barley
+10
+
+Food & Drink: what colour is the flesh of an avocado?
+Green
+10
+
+Food & Drink: What company first condensed soup in 1898?
+Campbell's
+10
+
+Food & Drink: What country is home to Grolsch lager?
+Holland
+10
+
+Food & Drink: What country saw the cultivation of the first potato, in 200 A.D.?
+South America
+10
+
+Food & Drink: What daily vegetable do typical boxer's ears look like?
+Cauliflower
+10
+
+Food & Drink: What did Charles Jung invent?
+Fortune cookies
+10
+
+Food & Drink: What do the brits call a Weenie?
+A hot dog
+10
+
+Food & Drink: What does chop suey literally mean?
+Bits and pieces
+10
+
+Food & Drink: What does iron deficiency cause?
+Anaemia
+10
+
+Food & Drink: What drink is named after the queen of England who was famous for her 'sanguinary' persecution of the protestants?
+Bloody Mary
+10
+
+Food & Drink: What drink was sold as Diastoid when first introduced?
+Malted milk
+10
+
+Food & Drink: What drupaceous fruit were Hawaiian women once forbidden by law to eat?
+The coconut
+10
+
+Food & Drink: What edible comes in crimmini, morel, oyster and wood ear varieties?
+Mushrooms
+10
+
+Food & Drink: What falling fruit supposedly inspired Isaac Newton to write the laws of gravity?
+An Apple
+10
+
+Food & Drink: What fitness guru appeared as a dancing meatball in an Italian TV commercial as an art student?
+Richard Simmons
+10
+
+Food & Drink: What flavor of ice cream did Baskin-Robbins introduce to commemorate America's landing on the moon on July 20, 1969?
+Lunar Cheesecake
+10
+
+Food & Drink: What flavour is Ouzo?
+Aniseed
+10
+
+Food & Drink: What food is the leading source of salmonella poisoning?
+Chicken
+10
+
+Food & Drink: What food was considered the food of the Gods, and was said to bring eternal life to anyone who ate it?
+Ambrosia
+10
+
+Food & Drink: What fruit grows on the blackthorn tree?
+Sloe
+10
+
+Food & Drink: What fruit or vegetable was dubbed the FlavrSavr and was the first genetically engineered food sold in the United States?
+The tomato
+10
+
+Food & Drink: What fruit was originally called a Chinese gooseberry?
+Kiwi Fruit
+10
+
+Food & Drink: What fruits are usually served 'belle helene'?
+Pears
+10
+
+Food & Drink: What group of people were the first to use freeze-drying on potatoes?
+The Incas
+10
+
+Food & Drink: What hit the market alongside spinach as the first frozen veggies?
+Peas
+10
+
+Food & Drink: What ingredient in fresh milk is eventually devoured by bacteria, causing the sour taste?
+Lactose
+10
+
+Food & Drink: What is a combination of chopped and boiled pigs heads, feet, hearts and tongues, held together in a loaf shaped by gelatin?
+Head cheese
+10
+
+Food & Drink: What is a cross between a blackberry and a raspberry?
+Tayberry
+10
+
+Food & Drink: What is a light round bun usually served hot?
+Muffin
+10
+
+Food & Drink: What is a macadamia?
+Nut
+10
+
+Food & Drink: what is a zabouska?
+Russian hors-d'oeuvre
+10
+
+Food & Drink: What is added to mineral water to make tonic?
+Quinine
+10
+
+Food & Drink: What is another name for almond paste?
+Marzipan
+10
+
+Food & Drink: What is another name for the carambula?
+Star fruit
+10
+
+Food & Drink: What is another name for the star fruit?
+Carambula
+10
+
+Food & Drink: What is Blue Vinney?
+Cheese
+10
+
+Food & Drink: What is Bombay Duck?
+Fish
+10
+
+Food & Drink: What is cinsidered to be the oldest of the English cheeses?
+Cheshire
+10
+
+Food & Drink: What is deer meat called?
+Venison
+10
+
+Food & Drink: What is included in a BLT sandwich?
+Bacon, lettuce and tomato
+10
+
+Food & Drink: What is inside corn that makes it pop?
+Water
+10
+
+Food & Drink: What is lava bread?
+Seaweed
+10
+
+Food & Drink: What is passata?
+Sieved tomatoes
+10
+
+Food & Drink: What is produced by roasting dried corn kernels in oil?
+Popcorn
+10
+
+Food & Drink: What is Scooby Doo`s favourite food?
+Scooby Snacks
+10
+
+Food & Drink: What is the correct spelling of a Cadbury Creame/Creem/Creme/Cream Egg?
+Creme
+10
+
+Food & Drink: What is the favourite food of Dragonflies?
+Mosquitoes
+10
+
+Food & Drink: What is the favourite food of the Aardvark?
+Ants
+10
+
+Food & Drink: What is the French name for a tart of cheese and bacon in a cream and egg filling?
+Quiche lorraine
+10
+
+Food & Drink: What is the french name given to clear soup?
+Consomme
+10
+
+Food & Drink: What is the literal meaning of the Italian word linguine?
+Little tongues
+10
+
+Food & Drink: what is the main ingredient in the welsh dish lava bread?
+Seaweed
+10
+
+Food & Drink: What is the main ingredient of a traditional fondue?
+Cheese
+10
+
+Food & Drink: What is the main ingredient of paella?
+Rice
+10
+
+Food & Drink: What is the main vegetable ingredient in the dish Borsht?
+Beetroot
+10
+
+Food & Drink: What is the main vegetable used to make Borsch?
+Beetroot
+10
+
+Food & Drink: What is the most expensive pate you can buy?
+Pate de fois gras
+10
+
+Food & Drink: What is the most widely eaten fish in the world?
+The Herring
+10
+
+Food & Drink: What is the most widely used seasoning?
+Salt
+10
+
+Food & Drink: What is the name given to a joint of beef cut from the breast next to the ribs?
+Brisket
+10
+
+Food & Drink: What is the name given to meat from the flesh of young calves?
+Veal
+10
+
+Food & Drink: What is the name given to stunted and withered apples used to make rough cider?
+Scrumps
+10
+
+Food & Drink: What is the name of the cocktail, a mixture of tequila,lime juice and an orange flavoured liqueur served in glass rimed with salt?
+Margarita
+10
+
+Food & Drink: What is the name of the evergreen shrub from which we get capers?
+The caper bush
+10
+
+Food & Drink: What is the name of the syrup drained from raw sugar?
+Molasses
+10
+
+Food & Drink: What is the name of this hot red chilli pepper it is often dried and ground?
+Cayenne Pepper
+10
+
+Food & Drink: What is the national dish of Hungary?
+Goulash
+10
+
+Food & Drink: What is the official national cheese of Greece?
+Feta
+10
+
+Food & Drink: What is the oldest known vegetable?
+Pea
+10
+
+Food & Drink: What is the only essential vitamin not found in the white potato?
+Vitamin A
+10
+
+Food & Drink: What is the only fruit named for its colour?
+Orange
+10
+
+Food & Drink: What is the only fruit that grows its seeds on the outside?
+Strawberry
+10
+
+Food & Drink: What is the plant that wards off vampires?
+Garlic
+10
+
+Food & Drink: What is the popular name for an apple dipped in boiled sugar-syrup and left to set?
+Toffee apple
+10
+
+Food & Drink: What is The Teenage Mutant Ninja Turtles favourite food?
+Pizza
+10
+
+Food & Drink: What is this Italian dessert, made from sponge cake, mascarpone cheese and flavoured with coffee and brandy called?
+Tiramisu
+10
+
+Food & Drink: What is toasted bread rubbed with garlic and drizzled with olive oil?
+Bruschetta
+10
+
+Food & Drink: What is tripe on a menu?
+Stomach
+10
+
+Food & Drink: What is Uganda's staple crop, which each adult consumes over 3 times bodyweight annually?
+Bananas
+10
+
+Food & Drink: What is vodka made from?
+Grain or potatoes
+10
+
+Food & Drink: What Italian Cheese usually tops a pizza?
+Mozzarella
+10
+
+Food & Drink: What kind of nuts are used in marzipan?
+Almonds
+10
+
+Food & Drink: what little fish of the herring family are pickled are used for a pizza topping?
+Anchovies
+10
+
+Food & Drink: What meat is Coq au vin made with ?
+Chicken
+10
+
+Food & Drink: What meat is used in Woolton pie?
+None
+10
+
+Food & Drink: What method of preserving food did the Incas first use, on potatoes?
+Freeze-drying
+10
+
+Food & Drink: What might you be eating at Wimbledon if you had a Cambridge Rival in your mouth?
+Strawberry
+10
+
+Food & Drink: What milk product did the U.S. Agriculture Department propose as a substitute for meat in school lunches, in 1996?
+Yogurt
+10
+
+Food & Drink: What morning food has a name derived from the German word for stirrup?
+Bagel
+10
+
+Food & Drink: What name can be a lettuce or a mass of floating frozen water?
+Iceberg
+10
+
+Food & Drink: What name's given to a small, deep fried chinese dumpling with a savoury filing?
+Won ton
+10
+
+Food & Drink: What nation produces two thirds of the world's vanilla?
+Madagascar
+10
+
+Food & Drink: What newly-imported substance caused the first major outbreak of tooth decay in Europe, in the1500's?
+Sugar
+10
+
+Food & Drink: What nut do two-thirds of its U. S. producers sell through Blue Diamond?
+The Almond
+10
+
+Food & Drink: What nuts are used to flavour amaretto?
+Almonds
+10
+
+Food & Drink: What nutty legume accounts for one sixth of the world's vegetable oil production?
+The peanut
+10
+
+Food & Drink: What Olympic athlete could not run the 200-meter final in the 92 Olympics because of food poisoning?
+Michael Johnson
+10
+
+Food & Drink: What other names are sardines known by?
+Pilchards
+10
+
+Food & Drink: What overtook coca-cola as the most well known brand name (in the world) in 1996?
+McDonalds
+10
+
+Food & Drink: What should your diet be high in to lessen the chance of colon cancer, according to a 1990 study?
+Fiber
+10
+
+Food & Drink: What sort of bone is broken as wishes are made?
+Wishbone
+10
+
+Food & Drink: What sort of fish is used to make an Arbroath Smokie?
+Smoked haddock
+10
+
+Food & Drink: What sort of food is a 'rollmop'?
+Fish
+10
+
+Food & Drink: What sort of pastry is used to make profiteroles?
+Choux
+10
+
+Food & Drink: What soup is likely to be on the menu in warsaw or moscow?
+Borsht
+10
+
+Food & Drink: What south American capital city shares its name with a legume?
+Lima
+10
+
+Food & Drink: What Spanish drink consists of sweet red wine, lemonade or soda water and decorated with fruit?
+Sangria
+10
+
+Food & Drink: What spice do chefs pay the most for?
+Saffron
+10
+
+Food & Drink: What spice gives piccalilli and curries its yellow colour?
+Turmeric
+10
+
+Food & Drink: What spice is Zanzibar famous for?
+Cloves
+10
+
+Food & Drink: What spice tastes like a blend of cinnamon, nutmeg & cloves?
+Allspice
+10
+
+Food & Drink: What staple is laced with up to 16 additives including plaster of paris, to stay fresh?
+Bread
+10
+
+Food & Drink: What sticky sweetener was traditionally used as an antiseptic ointment for cuts and burns?
+Honey
+10
+
+Food & Drink: What take-away is traditional in England at the seaside?
+Fish and chips
+10
+
+Food & Drink: What tree gives us prunes?
+The plum tree
+10
+
+Food & Drink: What two ingredients make a black velvet?
+Champagne and stout
+10
+
+Food & Drink: What type of chocolate was first developed for public consumption in Vevey, Switzerland in 1875?
+Milk Chocolate
+10
+
+Food & Drink: What type of creature builds a lodge in which to store food, rear its young, and pass the winter?
+Beaver
+10
+
+Food & Drink: what type of drink is perrier?
+Mineral water
+10
+
+Food & Drink: What type of egg will yield 11 and one-half average-size omelettes?
+An Ostrich egg
+10
+
+Food & Drink: What type of food did Linda McCartney launch?
+Vegetarian food
+10
+
+Food & Drink: What type of food is pitta (pita)?
+Bread
+10
+
+Food & Drink: What type of lettuce was called Crisphead until the 1920s?
+Iceberg lettuce
+10
+
+Food & Drink: What type of micro organism makes up the base of marine and freshwater food chains?
+Plankton
+10
+
+Food & Drink: What type of oven will not brown foods?
+Microwave oven
+10
+
+Food & Drink: What type of salad do you need apple, celery, walnuts, raisins and mayonnaise mixed together?
+Waldorf Salad
+10
+
+Food & Drink: What type of thin pancake is eaten in Mexico?
+Tortilla
+10
+
+Food & Drink: What type of tree leaves are the only food that a koala bear will eat?
+Eucalyptus
+10
+
+Food & Drink: What uncooked meat is a trichina worm most likely to make a home in?
+Pork
+10
+
+Food & Drink: What variety of banana shares its name with the title of a Bond movie?
+Goldfinger
+10
+
+Food & Drink: What vegetable is also known as zucchini in the USA?
+Courgette
+10
+
+Food & Drink: What vegetable is sold mainly before 30th October?
+Pumpkin
+10
+
+Food & Drink: What was margarine called when it was first marketed in England?
+Butterine
+10
+
+Food & Drink: What was the convenience food that Joel Cheek developed?
+Instant Coffee
+10
+
+Food & Drink: What was the drink we know as the Bloody Mary originally called?
+The Red Snapper
+10
+
+Food & Drink: What was the favourite food of Paddington Bear?
+Marmalade
+10
+
+Food & Drink: What was the first commercially manufactured breakfast cereal?
+Shredded Wheat
+10
+
+Food & Drink: What was the name of Cheerios when it was first marketed 50 years ago?
+Cheerioats
+10
+
+Food & Drink: What was the Teenage Mutant Ninja Turtles favorite food?
+Pizza
+10
+
+Food & Drink: What wine is flavoured with pine resin?
+Retsina
+10
+
+Food & Drink: What would you be drinking if you were drinking Earl Grey?
+Tea
+10
+
+Food & Drink: What would you call a cluster of bananas?
+A hand
+10
+
+Food & Drink: What would you call a segment of garlic?
+Clove
+10
+
+Food & Drink: What's a small pickled cucumber?
+Gherkin
+10
+
+Food & Drink: What's cockney rhyming slang for eyes?
+Mince Pies
+10
+
+Food & Drink: What's colour of the inside of a pistachio nut?
+Green
+10
+
+Food & Drink: What's lava bread?
+Seaweed
+10
+
+Food & Drink: What's Sauerkraut's main ingredient?
+Cabbage
+10
+
+Food & Drink: What's the alligator pear better known as?
+The Avocado
+10
+
+Food & Drink: What's the groundnut better known as?
+The peanut
+10
+
+Food & Drink: What's the only fish that produces real caviar, according to the FDA?
+Sturgeon
+10
+
+Food & Drink: What's the only rock edible to man?
+Salt
+10
+
+Food & Drink: Whats the English translation for the french word crepe?
+Pancake
+10
+
+Food & Drink: When a wine is described as 'brut' what does it mean about the taste?
+Very Dry
+10
+
+Food & Drink: When Birdseye introduced the first frozen food in 1930, what did the company call it?
+Frosted Food
+10
+
+Food & Drink: Where did the pineapple plant originate?
+South America
+10
+
+Food & Drink: Where is most of the vitamin C in fruits?
+Skin
+10
+
+Food & Drink: where was baloney first served?
+Bologna, Italy
+10
+
+Food & Drink: Where were Cornflakes invented?
+Battle Creek Sanitarium
+10
+
+Food & Drink: Where were fortune cookies invented?
+United States
+10
+
+Food & Drink: Which banned alcoholic drink distilled from wormwood, was known as Green Faerie?
+Absinthe
+10
+
+Food & Drink: Which brand of beer features a kangaroo on the packaging?
+Fosters
+10
+
+Food & Drink: Which cake shares a name with an English Queen?
+Victoria sandwich cake
+10
+
+Food & Drink: Which carbohydrate makes jam a gel?
+Pectin
+10
+
+Food & Drink: Which celebrity chef was nicknamed 'The Naked Chef'?
+Jamie Oliver
+10
+
+Food & Drink: Which cheese is made in reverse?
+Edam
+10
+
+Food & Drink: Which city gave its name to a three-coloured Neapolitan ice-cream?
+Naples
+10
+
+Food & Drink: Which country consumes the most pasta per person per year?
+Italy
+10
+
+Food & Drink: Which country does Rioja Wine come from?
+Spain
+10
+
+Food & Drink: Which country does the dish Mousakka come from?
+Greece
+10
+
+Food & Drink: Which country in Europe consumes more spicy Mexican food than any other?
+Norway
+10
+
+Food & Drink: Which country invented the Marmite alternative - Veggie mite?
+Australia
+10
+
+Food & Drink: Which entertainer on Conan O'Brien's show, choose NBC cafeteria chicken over his own brand in a blind taste test?
+Kenny Rogers
+10
+
+Food & Drink: Which essential herbs are used to flavour bearnaise sauce?
+Chervil and tarragon
+10
+
+Food & Drink: Which family of vegatables are Chives from?
+Onions
+10
+
+Food & Drink: Which flavouring is added to brandy and egg to make advocaat?
+Vanilla
+10
+
+Food & Drink: Which food has a name which means on a skewer?
+Kebab
+10
+
+Food & Drink: Which food was popular with Popeye the Sailor?
+Spinach
+10
+
+Food & Drink: Which fortified wine is particularly associated with the River Douro?
+Port
+10
+
+Food & Drink: Which french term for a light frothy dish literally translates as puffed up?
+Souffle
+10
+
+Food & Drink: Which fruit also shares its name with Gwyneth Paltrow's daughter?
+Apple
+10
+
+Food & Drink: Which fruit does one of Bob Geldofs' daughter share a name with?
+Peaches
+10
+
+Food & Drink: Which fruit is used in the making of a Black Forest Gateau?
+Black Cherries
+10
+
+Food & Drink: Which fruit served with cream is eaten during the summer tennis tournament Wimbledon?
+Strawberries
+10
+
+Food & Drink: Which fruits other name is the Chinese Gooseberry?
+Kiwi fruit
+10
+
+Food & Drink: Which is the fruit that contains the most calories?
+Avocado pear
+10
+
+Food & Drink: Which meat is usally in a Shish Kebab?
+Lamb
+10
+
+Food & Drink: Which nut is used to flavour traditional Bakewell Tart?
+Almond
+10
+
+Food & Drink: Which product is advertised on TV with the slogan, ?Once you pop you can't stop??
+Pringles
+10
+
+Food & Drink: Which red jelly is a traditional accompaniment to lamb?
+Redcurrant
+10
+
+Food & Drink: Which song mentions saveloy, mustard, jelly, custard and sausages in the lyrics?
+Food Glorious Food
+10
+
+Food & Drink: Which town in Yorkshire has given its name to a type of liquorice lozenge made there since the 16th century and bearing the impression of a castle?
+Pontefract
+10
+
+Food & Drink: Which two fruits are anagrams of each other?
+Lemon & Melon
+10
+
+Food & Drink: Which variety of orange was named after a Japanese province?
+Satsuma
+10
+
+Food & Drink: who are the worlds greatest cheese eaters?
+The French
+10
+
+Food & Drink: Who invented fortune cookies?
+Charles Jung
+10
+
+Food & Drink: Who invented Margarine in 1868?
+Hyppolyte Merge-mouries
+10
+
+Food & Drink: Who invented the Egg Mcmuffin?
+Ed Peterson
+10
+
+Food & Drink: who is the founder of kfc?
+Colonel sanders
+10
+
+Food & Drink: Who talked of eating human liver washed down with Chianti?
+Hannibal Lecter
+10
+
+Food & Drink: Who, according to the TV commercial, ?makes exceedingly good cakes'?
+Mr Kipling
+10
+
+Food & Drink: Wine sediment?
+Lees
+10
+
+Food & Drink: �Birdseye' introduced fish fingers into the UK in what year?
+1955
+10
+
+Food & Drink: �Coco-cola' was invented in which year?
+1886
+10
+
+Food & Drink: �Jambalaya' is a traditional dish in which American state?
+Louisiana
+10
+
+Food & Drink: �Toheroa Soup' is a traditional dish from which country?
+New zealand
+10
+
+Food & Drink:Alcohol: 'framboise' is a liqueur flavoured with what?
+Raspberries
+10
+
+Food & Drink:Alcohol: 'maraschino' is a liqueur flavoured with what?
+Cherries
+10
+
+Food & Drink:Alcohol: 'Williamine' is a liqueur made from what?
+Pears
+10
+
+Food & Drink:Alcohol: 1 1/2 oz. light rum, 1 lime, powdered sugar, fruit juice, blend w/crushed ice?
+Daiquiri
+10
+
+Food & Drink:Alcohol: 1 ounce of light rum and the juice of 1/2 lime, top with cola?
+Cuba libre
+10
+
+Food & Drink:Alcohol: 1 oz. gin and 1 oz. orange juice?
+Orange blossom
+10
+
+Food & Drink:Alcohol: 1 oz. gin, 1/2 oz. dry vermouth, 1/2 oz. sweet vermouth, 1/2 oz. orange juice?
+Bronx cocktail
+10
+
+Food & Drink:Alcohol: 1/2 oz. light rum, 1/2 oz. dark rum, 1 oz. orange, lime, pineapple juice?
+Pina colada
+10
+
+Food & Drink:Alcohol: 1990s: What helped a lot of underage drinkers get drunk in 1995?
+Alcopop
+10
+
+Food & Drink:Alcohol: 2 oz. gin, juice of 1/2 lemon, 1 tsp sugar, pour over ice cubes?
+Tom collins
+10
+
+Food & Drink:Alcohol: 2 oz. gin, juice of 1/2 lemon, 1 tsp sugar, top with soda water?
+Gin fizz
+10
+
+Food & Drink:Alcohol: A full ____ percent of the entire Irish barley crop goes to the production of Guinness beer
+Seven
+10
+
+Food & Drink:Alcohol: A full seven percent of the entire Irish ____ crop goes to the production of Guinness beer
+Barley
+10
+
+Food & Drink:Alcohol: A full seven percent of the entire Irish barley crop goes to the production of ____ beer
+Guinness
+10
+
+Food & Drink:Alcohol: A manhattan, but with scotch whiskey?
+Rob roy
+10
+
+Food & Drink:Alcohol: A manhattan, but with scotch whisky?
+Rob roy
+10
+
+Food & Drink:Alcohol: A.K.A juniper juice?
+Gin
+10
+
+Food & Drink:Alcohol: An illegal 1920s saloon?
+Speakeasy
+10
+
+Food & Drink:Alcohol: Anise flavored Greek liqueur?
+Ouzo
+10
+
+Food & Drink:Alcohol: Australian city home of Castlemaine XXXX Export Lager?
+Brisbane
+10
+
+Food & Drink:Alcohol: Beer: admeeral tyeyskoye:?
+Russia
+10
+
+Food & Drink:Alcohol: Beer: Aguila Imperial Ale:?
+Spain
+10
+
+Food & Drink:Alcohol: Beer: Churchill:?
+England
+10
+
+Food & Drink:Alcohol: Beer: escudo:?
+Chile
+10
+
+Food & Drink:Alcohol: Beer: Heineken:?
+Holland
+10
+
+Food & Drink:Alcohol: Beer: ngok' malt liquor:?
+Zaire
+10
+
+Food & Drink:Alcohol: Beer: pilsner urquell:?
+Czechoslavakia
+10
+
+Food & Drink:Alcohol: Beer: prestige stout:?
+Haiti
+10
+
+Food & Drink:Alcohol: Beer: Sapporo:?
+Japan
+10
+
+Food & Drink:Alcohol: Beer: Xingu:?
+Brazil
+10
+
+Food & Drink:Alcohol: Beverage made from rice?
+Arrack
+10
+
+Food & Drink:Alcohol: Beverage produced by fermenting the juice of grapes?
+Wine
+10
+
+Food & Drink:Alcohol: Company that brews Michelob beer?
+Anheuser-busch
+10
+
+Food & Drink:Alcohol: Company that was purveyor of Vodka to the Imperial Russian Court (1886-1917)?
+Smirnoff
+10
+
+Food & Drink:Alcohol: Egyptian god credited with first making beer?
+Osiris
+10
+
+Food & Drink:Alcohol: French cup of coffee flavored with apple brandy?
+Cafe calvados
+10
+
+Food & Drink:Alcohol: From what is the liqueur kirsch made?
+Cherries
+10
+
+Food & Drink:Alcohol: From which fruit is the liqueur Kirsh made?
+Cherry
+10
+
+Food & Drink:Alcohol: From which plant is tequila derived?
+Cactus
+10
+
+Food & Drink:Alcohol: Good Rhine wines are bottled in what colour bottles?
+Brown
+10
+
+Food & Drink:Alcohol: Hazelnut liqueur named for the mysterious monk that made it 300 years ago?
+Frangelico
+10
+
+Food & Drink:Alcohol: iquor whose name is derived from uisge beath, gaelic for aqua vitae?
+Whisky
+10
+
+Food & Drink:Alcohol: Japanese rice wine?
+Sake
+10
+
+Food & Drink:Alcohol: Legend says bats lived in the rum distillery and one of them is on the label?
+Bacardi
+10
+
+Food & Drink:Alcohol: Liver disease caused by alcoholism?
+Cirrhosis
+10
+
+Food & Drink:Alcohol: London engraver famous for his etchings of drunkards?
+William hogarth
+10
+
+Food & Drink:Alcohol: mead is made from this?
+Honey
+10
+
+Food & Drink:Alcohol: Medieval monks invented this stopper, necessary for champagne?
+Cork
+10
+
+Food & Drink:Alcohol: Monastic order that established the California wine industry?
+Franciscan
+10
+
+Food & Drink:Alcohol: National drink of Peru?
+Pisco
+10
+
+Food & Drink:Alcohol: Only three grape varieties can be used to make champagne. Pinot Noir and Pinot Meunier are two. Name the third?
+Chardonnay
+10
+
+Food & Drink:Alcohol: Polish plum brandy?
+Slivovitz
+10
+
+Food & Drink:Alcohol: Rum is made from this plant?
+Sugar cane
+10
+
+Food & Drink:Alcohol: sapporo is brewed in this country?
+Japan
+10
+
+Food & Drink:Alcohol: Spice that a bartender would dust your Brandy Flip with?
+Nutmeg
+10
+
+Food & Drink:Alcohol: that's reproduced by the replicator?
+Synthehol
+10
+
+Food & Drink:Alcohol: The cultivation of grapes?
+Viticulture
+10
+
+Food & Drink:Alcohol: The geometric shape found on the Bass Pale Ale bottle?
+Triangle
+10
+
+Food & Drink:Alcohol: the German new year's carnival?
+Fasching
+10
+
+Food & Drink:Alcohol: The Greek god of wine, dance, and ecstacy?
+Dionysus
+10
+
+Food & Drink:Alcohol: The most popular alcoholic beverage in America before beer?
+Cider
+10
+
+Food & Drink:Alcohol: the traditional sweedish drink?
+Aquavit
+10
+
+Food & Drink:Alcohol: the two ingredients of a black velvet are stout and?
+Champagne
+10
+
+Food & Drink:Alcohol: This liquor brand accents a Scarlet O' Hara or a Rhett Butler?
+Southern comfort
+10
+
+Food & Drink:Alcohol: Vodka, consomme, lemon, tabasco sauce, salt, pepper, celery salt?
+Bullshot
+10
+
+Food & Drink:Alcohol: Vodka, tomato juice, lemon, tabasco sauce, salt, pepper, celery salt?
+Bloody mary
+10
+
+Food & Drink:Alcohol: What berries give gin its flavour?
+Juniper berries
+10
+
+Food & Drink:Alcohol: what bottles of chianti are traditionally covered with?
+Straw
+10
+
+Food & Drink:Alcohol: What color is a Remy Martin bottle?
+Green
+10
+
+Food & Drink:Alcohol: what colour is creme de menthe?
+Green
+10
+
+Food & Drink:Alcohol: what country produces rioja wines?
+Spain
+10
+
+Food & Drink:Alcohol: What do you chase whisky with in a boilermaker?
+Beer
+10
+
+Food & Drink:Alcohol: What do you get when you add fresh fruit to red wine?
+Sangria
+10
+
+Food & Drink:Alcohol: What the V.O. in Seagrams V.O. stands for?
+Very old
+10
+
+Food & Drink:Alcohol: Where is the best brandy bottled?
+Cognac
+10
+
+Food & Drink:Alcohol: Zima iz made in thiz United Statez city?
+Memphis
+10
+
+Food & Drink:Alcohol: �calvados' is a brandy made from what?
+Apples
+10
+
+Food: a green variety of these are often used as fishing bait?
+Shrimp
+10
+
+Food: A topping from what I would call a really big chicken?
+Turkey
+10
+
+Food: A topping that makes your breath all stinky :)?
+Garlic
+10
+
+Food: People often like to break the bones of these and make a wish?
+Chicken
+10
+
+Food: pizza hut tells us to eat what part first?
+Crust
+10
+
+Food: Pizza Toppings?
+Cheese
+10
+
+Food: Smallish lunchtime pizzas from Pizza Hut are called?
+Personal pan
+10
+
+Food: thanks to a dead cow. this topping is called 'minced meat' by some?
+Ground beef
+10
+
+Food: they have a short guy in a toga and a wreath as their spokesman?
+Little caesars
+10
+
+Food: they're green and called capsicum by some?
+Green pepper
+10
+
+Food: Very salty nautical creature?
+Anchovy
+10
+
+For a Non-Muslims, the tour to Mecca is?
+Prohibited
+10
+
+For every extra kilogram carried on a space flight, ____ kg of excess fuel are needed at lift-off
+530
+10
+
+For every tree that is cut for lumber, how much is sold as timber?
+One eighth
+10
+
+For every tree that is cut, how much is sold for lumber?
+One eighth
+10
+
+For her performance in which film did jane wyman win the 1948 best actress oscar?
+Johnny belinda
+10
+
+For how long did Charles osborne have hiccups?
+Sixty nine years
+10
+
+For how long was the Eiffel Tower the tallest building in the world?
+Forty years
+10
+
+For how many radio stations was john cage's 'imaginary landscaper no 4' scored?
+Twelve
+10
+
+For how many years was queen elizabeth the first on the throne of England?
+45 years
+10
+
+For how much did an American urologist buy Napoleon's penis (US Dollars)?
+$3800
+10
+
+For how much did an American urologist buy napoleon's penis?
+-- Answer metadata begin
+{
+    "answers": ["Three thousand eight hundred dollars", "$3800"]
+}
+-- Answer metadata end
+10
+
+For how much did peter minuit buy manhattan island?
+24 dollars?$24
+10
+
+For making what is the abalone shell used?
+Jewellery
+10
+
+For many reasons, this queen of france has received a great deal of blame for inciting the revolution. what was her name?
+Marie antoinette
+10
+
+For red october what african republic's name was inspired by its thriving elephant tusk trade?
+The ivory coast
+10
+
+For the city 'summer of 69' was a hit for which canuck in 1984?
+Bryan adams
+10
+
+For the city a method of resolving questions of conscience by applying moral principles or laws to concrete cases?
+Casuistry
+10
+
+For the development of a vaccine against which disease is Jonas Edward Salk best remembered?
+Poliomyelitis (polio)
+10
+
+For the holy grail in the monty python parody 'search for the holy grail', what did arthur's servant use to make the sound of horses hooves?
+Empty coconuts
+10
+
+For what are allen and wright famous?
+Root beer
+10
+
+For what are Allen and Wright most famous?
+Root beer
+10
+
+For what baseball team does frank thomas play?
+Chicago white sox
+10
+
+For what condition is the drug Mogadon prescribed?
+Sleeplessness
+10
+
+For what constituency is tony blair mp?
+Sedgefield
+10
+
+For what did robert montgomery coach president eisenhower?
+Television
+10
+
+For what did the knights of the round table search?
+The holy grail
+10
+
+For what did the marquis de sade serve 27 years in prison?
+Sexual offenses
+10
+
+For what do the initials of cricketer P B H May stand?
+Peter baker howard
+10
+
+For what do the letters P&O stand for in the shipping line?
+Peninsular and oriental
+10
+
+For what do the letters www stand?
+World wide web
+10
+
+For what do you use the Sieve of Eratosthenes?
+Finding prime numbers
+10
+
+For what does i.f.p stand?
+Inkatha freedom party
+10
+
+For what does the K stand in the name of the author J.K. Rowling?
+Kathleen
+10
+
+For what does the letter 'S' stand in the initials ISBN?
+International standard book number
+10
+
+For what does the letters stand for in the initials ISBN?
+International standard book number
+10
+
+For what does the second letter 'A' stand in the initials BAFTA?
+Arts
+10
+
+For what feat is Alexei Leonov famous?
+First space walk
+10
+
+For what film did jack nicholson win his first oscar?
+One flew over the cuckoo's nest
+10
+
+For what film did john wayne win his only oscar?
+True grit
+10
+
+For what football team did bo jackson play before his injury?
+Los angeles raiders
+10
+
+For what genre of book is isaac asimov famous?
+Science fiction
+10
+
+For what is 'gravidity' the medical condition?
+Pregnancy
+10
+
+For what is Athenian, Draco, remembered?
+Harsh laws
+10
+
+For what is AWACS the acronym?
+Airbourne warning and control system
+10
+
+For what is ethylene glycol used in automobiles?
+Anti-freeze
+10
+
+For what is tea from willow bark good for relieving?
+Pain
+10
+
+For what is the chemical symbol h2o2?
+Hydrogen peroxide
+10
+
+For what is the Italian town of carrara world famous?
+Marble
+10
+
+For what is the Prix Goncourt awarded?
+Literature
+10
+
+For what is the sargasso sea best known?
+Seaweed
+10
+
+For what is the turner prize awarded?
+Art
+10
+
+For what kind of paintings was Alfred Mannings famous?
+Horses
+10
+
+For what literary work is ambrose bierce most remembered now?
+Devil's dictionary
+10
+
+For what long-lost item did jimmy buffet keep searching?
+Salt shaker
+10
+
+For what Major League baseball team did Mickey Mantle play for?
+Yankees
+10
+
+For what monumental creation are we indebted to the sculptor Gutzon Borglum?
+Mount rushmore
+10
+
+For what new England woman's college was the first brand of wrigley's gum named?
+Vassar
+10
+
+For what occupation was Jesus trained?
+Carpenter
+10
+
+For what olympic team did andre agassi's father box?
+Iranian olympic team
+10
+
+For what organization did april dancer work?
+Uncle
+10
+
+For what principal purpose are UHF radio waves used?
+Transmission of television signals
+10
+
+For what product is the town of sevres famous?
+Porcelain
+10
+
+For what reason were the 1987 Badminton Horse Trials cancelled?
+Bad weather
+10
+
+For what sport did sports minister Colin Moynihan win an Olympic silver medal?
+Rowing
+10
+
+For what sport does Clive Everton most famously provide the TV commentary?
+Snooker
+10
+
+For what team did larry bird play?
+Boston celtics
+10
+
+For what tv sitcom did isabel sanford get her 1981 best actress emmy?
+Jeffersons
+10
+
+For what university did reggie jackson play college baseball?
+Arizona state
+10
+
+For what was amateur naturalist Thomas Bewick especially famous?
+Engravings
+10
+
+For what was Beryl Grey famous?
+Ballet
+10
+
+For what was black the most common colour in the depression?
+Automobiles
+10
+
+for what was dr. crippen hanged?
+Murdering his wife
+10
+
+For what was the acanthus plant used as a model?
+Corinthian columns
+10
+
+For what was the last person hanged in the American colonies september 22, 1692?
+Witchcraft
+10
+
+For which 1949 film did Anton Karas write and perform the music?
+The third man
+10
+
+For which 1949 musical was the song Diamonds are a girls best friend written?
+Gentlemen prefer blondes
+10
+
+For which ad campaign was the line 'i can't believe i ate the whole thing' used?
+Alka seltzer
+10
+
+For which bank did rogue trader nick leeson work?
+Barrings
+10
+
+For which British monarch was the Golden coach made?
+George III
+10
+
+For which cartoon character was beethoven a favourite composer?
+Shroeder
+10
+
+For which constituency is Tony Blair the MP?
+Sedgefield
+10
+
+For which country did Kenny Dalglish play international Football?
+Scotland
+10
+
+For which country is CH the international car reg mark?
+Switzerland
+10
+
+For which decoration do the letters C.G.M. stand?
+Conspicuous gallantry medal
+10
+
+For which English king did handel compose his water music?
+George the first
+10
+
+For which famous ballet company did Stravinsky write The Firebird,Petroushka and the Rite of Spring?
+The diaghilev
+10
+
+For which film did Anthony Quinn win an Oscar for Best Suporting Actor, in 1956?
+Lust for life
+10
+
+For which film did art carney win best actor oscar in 1974?
+Harry and tonto
+10
+
+For which film did dennis quaid lose 47 pounds?
+Wyatt earp
+10
+
+For which film did Humphrey Bogart win an Oscar in 1951?
+The african queen
+10
+
+For which film did James Cagney win an oscar?
+Yankee doodle dandy
+10
+
+For which film did michael caine win an oscar in 2000?
+The cider house rules
+10
+
+For which film did Sophia Loren become the first to win a Best Actor/Best Actress Oscar in a foreign language film?
+Two women
+10
+
+For which industry did Lavenham in Suffolk become famous?
+Wool
+10
+
+For which novel did a s byatt win the booker prize in 1990?
+Possession
+10
+
+For which precious stone is Cobber Pedy, South Australia famous?
+Opal
+10
+
+For which product was Millais' painting Bubbles used to advertise?
+Pear's soap
+10
+
+For which series of films did Talbot Rothwell write most of the scripts?
+The carry on films
+10
+
+For which state was Al Gore a senator?
+Tennessee
+10
+
+For which team will Jensen Button be driving in the forthcoming Formula 1 World Championship motor racing season?
+Benneton
+10
+
+For which team will Neil Hodgson be riding in the forthcoming World Superbike Motorcycling season?
+Ducatti
+10
+
+For which theory of creation is Georges Lemaitre famous?
+The big bang theory
+10
+
+For who was deana carter named?
+Dean martin
+10
+
+For who was the play 'peter pan' exclusively written?
+Children
+10
+
+For whom was buckingham palace built?
+John sheffield
+10
+
+For whom were blue jeans originally designed?
+Gold panners
+10
+
+For whom were xtc making plans for?
+Nigel
+10
+
+For whose death was delilah responsible?
+Samson
+10
+
+For whose death was Judas Iscariot responsible for?
+Jesus christ
+10
+
+Ford had a problem in Brazil when the pinto wouldn't sell. ford later found out pinto was Brazilian slang for what?
+Small male genitals
+10
+
+Foreman at 45, what did george foreman win?
+Heavyweight championship
+10
+
+Forest fires in the western U S are usually caused by what?
+Lightning
+10
+
+Forget-me-not pollen grains are so small that ____ of them can fit on the head of a pin
+10,000
+10
+
+Fork in the road: what's the best chariot route from rome to brindisi?
+The appian way
+10
+
+Forked, sheet and ball are types of ____
+Lightning
+10
+
+Form of visible electric discharge between rain clouds or between a rain cloud and the earth (electricity)?
+Lightning
+10
+
+Formal invocation of the divine blessing upon people or things?
+Benediction
+10
+
+Formal or informal agreement among business firms designed to reduce or suppress competition in a particular market?
+Cartel
+10
+
+Former baseball star chuck connors hits a bull's-eye with adult-western?
+Rifleman
+10
+
+Former chairman of Yale physics dept. who died in the early 90s; helped develop the atomic bomb?
+William watson
+10
+
+Former grand wizard of the kkk David Duke loses a close senate race in ____
+Louisiana
+10
+
+Former name for tetanus?
+Lockjaw
+10
+
+Former name of Liberty Island, where the Statue of Liberty Stands?
+Beldloe's island
+10
+
+Former name of the Hawaiian islands?
+Sandwich islands
+10
+
+Former Royal coat of arms of France?
+Fleur-de-lis
+10
+
+Former yes drummer bill bruford played with what group in 1972?
+King crimson
+10
+
+Formerly in India a term of respect used for European married women?
+Memsahib
+10
+
+Formerly Siam?
+Thailand
+10
+
+Formerly St Petersburg & Petrograd?
+Leningrad
+10
+
+Formerly which king? - The Duke of Windsor?
+King Edward viii
+10
+
+Formerly, a mans close fitting jacket with or without sleeves?
+Doublet
+10
+
+Fort Baxter, Kansas was the fictional setting for which TV series?
+Seargant bilko
+10
+
+Fortnum and Masons in London was opened in which year?
+1707
+10
+
+Fortune cookies were actually invented in America, in ____, by Charles Jung
+1918
+10
+
+Fortune cookies were invented in what year?
+1918
+10
+
+Forty percent of the American population has never visited a____
+Dentist
+10
+
+Forty-five percent of all the coniferous forests on earth exist where?
+Russia
+10
+
+Fortymile creek was the location of what Alaskan discovery in 1886?
+Gold
+10
+
+Fossilized dinosaur droppings are called what?
+Coprolites
+10
+
+Fossilized dinosaur droppings are called?
+Coprolites
+10
+
+Found in most health stores, this plant extract will improve your trivia game if taken on a regular basis (It jogs the memory)?
+Lecithin
+10
+
+Founded in 1608 by Champlain, it was the capital of New France?
+Quebec
+10
+
+Founded in 1896, what was ibm formerly called?
+Tabulating machine company
+10
+
+Founded in the 6th Century B.C., which religion has two schools - the Hinayana, or Lesser Vehicle, and the Mahayana, or Greater Vehicle?
+Buddhism
+10
+
+Founder of the Jesuits?
+Ignatius Loyola
+10
+
+Founder of Wal-Mart Stores, Inc, who died in the early 90s?
+Sam walton
+10
+
+Four European countries keep Greenwich Mean Time. The UK and Ireland are two, name the others?
+Iceland and Portugal
+10
+
+Four men in the history of boxing have been knocked out in the first ____ seconds of the first round
+Eleven
+10
+
+Four thirds multiplied by pi multiplied by the radius cubed, gives you the volume of what geometric object?
+Sphere
+10
+
+Four u.s presidents have served entire terms without having a ____
+Vice president
+10
+
+Four wheeled enclosed carriage?
+Landau
+10
+
+Fourth greek letter?
+Delta
+10
+
+Fourth letter of the Greek alphabet?
+Delta
+10
+
+Fourth U S president to be assassinated in office?
+John f kennedy
+10
+
+Fox what is the capital of Idaho?
+Boise
+10
+
+Fragrant flowering African bulb?
+Freesia
+10
+
+Fragrant plant with edible leaf-stalks and seeds?
+Fennel
+10
+
+Frampton with what vegetable song did dee dee sharp score big?
+Mashed potato time
+10
+
+France and Mexico were involved in a year-long conflict popularly known as the ____ in 1838. Mexico refused to pay for damage done by Mexican army officers to a restaurant run by a French pasty chef in Tacubaya, now a section of Mexico City
+Pastry war
+10
+
+France has the highest per capita consumption of ____
+Cheese
+10
+
+France the bliss of mrs blossom starred what actress in the title role?
+Shirley
+10
+
+Francis Castellucio is the real name of which singer who got his start in the 60 '?
+Frankie valli
+10
+
+Francis what prime-time soap opera debuted as a five-part miniseries in 1978?
+Dallas
+10
+
+Frank bruno reached no 28 in dec 1995 name the song?
+The eye of the tiger
+10
+
+Frank Sinatra had 2 solo Britsh number ones, Two coins in a fountain was one, what was the other?
+Strangers in the night
+10
+
+Frank sinatra was once quoted as saying rock 'n' roll was only played by 'cretinous____
+Goons
+10
+
+Frank Sinatras home town;Hoboken is in which state?
+New jersey
+10
+
+Frank Stoeber collected a 10,000 lb ball of this?
+String
+10
+
+Frank Zappa was lead singer with which band?
+Mothers of invention
+10
+
+Frankfort is the capital of ____
+Kentucky
+10
+
+Frankie valli was the lead singer with which group?
+Four seasons
+10
+
+Franklin D Roosevelt, what does the D stand for?
+Delano
+10
+
+frech mime artist?
+Marcel Marceau
+10
+
+Fredcrick the First, 1657 to 1713, was the first king of which country?
+Prussia
+10
+
+Freddie Marsden was the drummer in which group that had three number one hits in the UK in 1963?
+Gerry and the pacemakers
+10
+
+Frederick Gowland Hopkins won a Nobel prize in 1929 for which medical discovery?
+Vitamins
+10
+
+Fredericton is the capital of ____
+New brunswick
+10
+
+Fredericton is the capital of which Canadian province?
+New brunswick
+10
+
+Freetown is the capital of ____
+Sierra leone
+10
+
+French for until we meet again?
+Au revoir
+10
+
+French fortification system along the German frontier from Switzerland to Luxembourg?
+Maginot Line
+10
+
+French philosopher, scientist, and mathematician, sometimes called the father of modern philosophy?
+Descartes
+10
+
+French speaking residents of belgium are called____
+Walloons
+10
+
+French Sudan is the previous name of which country?
+Mali
+10
+
+French violin virtuoso, who died in the early 90s, known for polish, refinement, and lyricism?
+Zino francescatti
+10
+
+French word for jewel or trinket?
+Bijou
+10
+
+French: done and past arguing about?
+Fait accompli
+10
+
+Freya was the norse goddess of ____
+Love and fertility
+10
+
+Friday im in love name the band?
+The cure
+10
+
+Friends Characters?
+Phoebe
+10
+
+Frogs live on every continent except which one?
+Antarctica
+10
+
+Frogs never drink. They absorb water from their surroundings by what method?
+Osmosis
+10
+
+From 1979 to 2000, which will be the most distant planet earth?
+Neptune
+10
+
+From 1979 until 2000 the most distant planet from the earth was ____
+Neptune
+10
+
+From 1979 until 2000 the most distant planet from the earth will be ____
+Neptune
+10
+
+From 1980 to 1990, what state had the highest percentage increase in population?
+Alaska
+10
+
+From 1980 to 1995, which country produced the largest amount of crude oil?
+Saudi arabia
+10
+
+From 9,000 pounds of roses, which totals about 55,000 blossoms, ____ pounds of costly rose essence can be extracted to be used as a component in fragrances
+Two
+10
+
+From a distance: how many nautical miles are there in one degree of longitude?
+Sixty
+10
+
+From fertilisation to birth, a baby's weigh increase ____ times
+Five billion
+10
+
+From freya, the queen of the nordic gods, came this term describing a noble lady?
+Fraulein
+10
+
+From New York to where was the first commercial boeing 747 flight?
+London
+10
+
+From the coast of which county does the padstow lifeboat get launched?
+Cornwall
+10
+
+From the milk of which animal is real Mozzarella cheese made?
+Buffalo
+10
+
+From the milk of which animal is ricotta made?
+Sheep
+10
+
+From what animal is mutton?
+Sheep
+10
+
+From what animal is venison?
+Deer
+10
+
+From what animals tail hair are violin bows traditionally made?
+Horse
+10
+
+From what BBC TV series comes the phrase 'And now for something completely different?
+Monty python's flying circus
+10
+
+From what bridge does the oxford/cambridge boat race start?
+Putney
+10
+
+From what coast do dalmatian originate?
+Dalmatian coast
+10
+
+From what country did the U S buy the Virgin Islands?
+Denmark
+10
+
+From what country do we get avia wines?
+Yugoslavia
+10
+
+From what country is pamela lee anderson from?
+Canada
+10
+
+From what country was the athlete peter snell?
+New zealand
+10
+
+From what did julius caesar and napoleon suffer?
+Epilepsy
+10
+
+From what did the ghan railway get its name?
+Camel drivers
+10
+
+From what do camels protect themselves with three eyelids?
+Blowing sand
+10
+
+From what do over 1000 birds die from every year?
+Smashing into windows
+10
+
+From what does Moscow take its name?
+River moscowa
+10
+
+From what fruit is the liqueur kirsch made?
+Cherries
+10
+
+From what group of wild plants are cereals derived?
+Grasses
+10
+
+From what is banana oil made?
+Petroleum
+10
+
+From what is rum distilled?
+Sugar cane
+10
+
+From what is the brown pigment bistre prepared?
+Soot
+10
+
+From what is the drink 'perry' made?
+Pears
+10
+
+From what is velvet made?
+Silk
+10
+
+From what is welsh rarebit made?
+Cheddar cheese and beer
+10
+
+From what language is the word 'mummy' derived?
+Persian
+10
+
+From what material are millefiori ornaments made?
+Glass
+10
+
+From what material are snooker balls made?
+Chrystallite
+10
+
+From what material is the ring made in Sumo Wrestling?
+Clay
+10
+
+From what mountain did Jesus ascend into heaven?
+Mt ebal
+10
+
+From what mountain in chattanooga, tennessee can you reportedly see five states?
+Lookout mountain
+10
+
+From what plant is opium derived?
+Poppy
+10
+
+From what platform does the 'chattanooga choo choo leave pennsylvania station?
+Twenty nine
+10
+
+From what port did the titanic set sail on its fateful voyage?
+Southampton
+10
+
+From what Shakespeare play is this line taken: to be or not to be: that is the question?
+Hamlet
+10
+
+From what town did wagon train's pilgrimage begin?
+St joseph
+10
+
+From what were balloons originally made?
+Animal bladders
+10
+
+From what words is dublin derived?
+Dubh linn
+10
+
+From which album by Sade do the following tracks come - Why cant we live together,Cherry Pie and Your love is King?
+Diamond life
+10
+
+From where are walloons?
+Belgium
+10
+
+From where did a crusade to Downing Street set out in 1936?
+Jarrow
+10
+
+From where did paddington bear come?
+Darkest peru
+10
+
+From where do alsatians originate?
+Alsace-lorraine
+10
+
+From where does Motown get its name?
+Detroit
+10
+
+From where does the uvula dangle?
+Palate
+10
+
+From where exactly do you remove an offending object if you have a glob of something stuck in your philtrum?
+Groove under your nose
+10
+
+From where I stand you are home free?
+Magic Olivia Newton-John 
+10
+
+From where is the music for the 'star spangled banner'?
+Anacreon in heaven
+10
+
+From where to london was the first commercial boeing 747 flight?
+New york
+10
+
+From where to where did the first railway on the witwatersrand run?
+Johannesburg to springs
+10
+
+From where was ricky in 'i love lucy'?
+Cuba
+10
+
+From which album did the original version of elton john's candle in the wind come?
+Goodbye yellow brick road
+10
+
+From which American state do the Bighorn Mountains arch northwest into southern Montana?
+Wyoming
+10
+
+From which animal is 'ambergris'?
+Sperm whale
+10
+
+From which Asian kingdom do the Gurkhas originate?
+Nepal
+10
+
+From which bridge was Wordsworth enjoying the view when he wrote Earth has not anything to show more fair?
+Westminster bridge
+10
+
+From which broadway show do we get the songs 'the girl that i marry' and 'anything you can do'?
+Annie get your gun
+10
+
+From which city can you see table mountain?
+Cape town
+10
+
+From which city did Shakespeares Two Gentlemen come?
+Verona
+10
+
+From which congreve play comes the line, 'music has charms to soothe a savage breast'?
+The mourning bride
+10
+
+From which country are the European Space Agency Ariane rockets launched?
+French guiana
+10
+
+From which country did Admiral Cheng Ho lead voyages of discovery?
+China
+10
+
+From which country did the astromomer tycho brahe come?
+Denmark
+10
+
+From which country did the midget who played Lisa come form? (Burns' Heir)?
+Estonia 
+10
+
+From which country did tulips originally come?
+Turkey
+10
+
+From which country does bjork come?
+Iceland
+10
+
+From which country does opera singer Kiri Te Kanawa come?
+New zealand
+10
+
+From which country does the plastic explosive semtex originate from?
+Czech republic
+10
+
+From which creatures do we obtain bacon?
+Pigs
+10
+
+From which date does the legal term 'Time Immemorial' apply?
+The death of Henry II
+10
+
+From which element is pitchblende derived?
+Uranium
+10
+
+From which family of plants does tea come?
+Camellia
+10
+
+From which family relative did Queen Victoria inherit the throne?
+Her uncle
+10
+
+From which french word does the 'mayday' distress signal come?
+M'aidez
+10
+
+From which fruit is the liqueur kirsh made?
+Cherries
+10
+
+From which fruit is the liqueur obtained?
+Cherry
+10
+
+From which house is the queen?
+Windsor
+10
+
+From which kind of organism is the indicator litmus extracted?
+Lichens
+10
+
+From which language does the word 'alcohol' come, originally?
+Arabic
+10
+
+From which language does the word 'alibi' come?
+Latin
+10
+
+From which language does the word Gymnasium come?
+Greek
+10
+
+From which language does the word ketchup come?
+Chinese
+10
+
+From which large South American country do the beers 'Brahma Chopp' and 'Antarctica' come?
+Brazil
+10
+
+From which London jail did Ronnie Biggs escape in 1965?
+Wandsworth
+10
+
+From which London palace did the BBC transmit the first Tv service?
+Alexandra palace
+10
+
+From which Marx Brothers film comes the line 'Either he's dead, or my watch has stopped?
+A day at the races
+10
+
+From which musical did the songs 'If my friends could see me now' and 'There's got to be something better than this' come?
+Sweet charity
+10
+
+From which musical does the song getting to know you come?
+The king and i
+10
+
+From which musical does the song on the street where you live come?
+My fair lady
+10
+
+From which musical does the song surrey with the fringe on top come?
+Oklahoma
+10
+
+From which palbet does Dr Who come?
+Gallifrey
+10
+
+From which part of a tree does turmeric come?
+Root
+10
+
+From which plant does the drug belladonna come from?
+Deadly nightshade
+10
+
+From which plant family do vanilla pods come?
+Orchid
+10
+
+From which plant is natural vanilla flavouring?
+Orchid
+10
+
+From which poem do the following lines come- So munch on,crunch on, take your nuncheon.Breakfast,supper,dinner,luncheon!?
+The pied piper of hamelin
+10
+
+From which prison in south africa was nelson mandela released?
+Victor verster
+10
+
+From which Shakespeare play did Tom Stoppard borrow his Rosencrantz and Guildenstern?
+Hamlet
+10
+
+From which shakespeare play does the line 'all the world's a stage' come?
+As you like it
+10
+
+From which shakespeare play does the line 'the course of true love never did run smooth.' come?
+A midsummer night's dream
+10
+
+From which Shakespeare play is this line taken: 'Double, double ... '?
+Macbeth
+10
+
+From which Shakespeare play is this line taken: 'Goodnight, goodnight! Parting is such sweet sorrow, That I should say goodnight till it be morrow?
+Romeo and Juliet
+10
+
+From which Shakespeare play is this line taken: 'To be or not to be?
+Hamlet
+10
+
+From which Shakespeare play is this line taken: 'What in a name. That which we call a rose, by any other name would smell as sweet?
+Romeo and Juliet
+10
+
+From which Shakespeare play is this line taken: goodnight, goodnight! Parting is such sweet sorrow, that i should say goodnight till it be morrow?
+Romeo & juliet
+10
+
+From which Shakespeare play is this line taken: what in a name that which we call a rose, by any other name would smell as sweet?
+Romeo & juliet
+10
+
+From which station does the 'chattanooga choo choo leave?
+Pennsylvania
+10
+
+From which TV quiz show does the catchphrase Bernie the bolt come from?
+The golden shot
+10
+
+From which type of rock is marble formed?
+Limestone
+10
+
+From which type of wood are most baseball bats made?
+Ash
+10
+
+From which US state does model Jerry Hall originate?
+Texas
+10
+
+From which yarn is the best velvet made?
+Silk
+10
+
+From who did malta gain independence in 1964?
+Britain
+10
+
+From who was kuwait liberated in the gulf war?
+Iraq
+10
+
+From whom did chrysler buy the jeep/eagle division in 1988?
+American motors
+10
+
+From whom did j.f. kennedy accept his dog pushinska?
+Nikita kruschev
+10
+
+From whom did Peter Mandelson borrow the money for his house?
+Geoffrey robinson
+10
+
+From whom did rocky first win the boxing championship?
+Apollo creed
+10
+
+From whom did the u.s buy the virgin islands?
+Denmark
+10
+
+Fromage is french for?
+Cheese
+10
+
+Front which part of a pig do we get ham?
+Hind leg
+10
+
+Frozen dew or vapour?
+Frost
+10
+
+Fu Manchu was the adversary of which Scotland Yard detective?
+Nayland smith
+10
+
+Fuad became king of which country from 1922?
+Egypt
+10
+
+Fuel especially methane produced by fermentation of organic matter?
+Biogas
+10
+
+Fulgurite is formed when lightning strikes?
+Sand
+10
+
+Full Metal Alchemist: Name all 7 of the homunclui?
+Wrath
+10
+
+Full Metal Alchemist: What are the 7 homunculi named after?
+The seven deadly sins
+10
+
+Full Metal Alchemist: What are the two Elric brothers first names?
+Alphonse and Edward
+10
+
+Full Metal Alchemist: What rank is Roy Mustang in the military?
+Colonel
+10
+
+Full Metal Alchemist: What type of Alchemist is Edward?
+State Alchemist
+10
+
+Fun Runs - What is San Francisco's equivalent to Sydney's 'City To Surf' race?
+Bay to Breakers footrace
+10
+
+Funchal is the principal city of which Portuguese province?
+Madeira
+10
+
+Fundamentalist branch of the Amish?
+Swartzentruber amish
+10
+
+Furniture: What is the metal part of a lamp surrounding the bulb and supporting the shade called?
+Harp
+10
+
+Furniture: Where did venetian blinds originate?
+Japan
+10
+
+Gaborone is the capital of ____
+Botswana
+10
+
+Gabriel and Michael are the only 2 angels to be named in the?
+Bible
+10
+
+Gaddafi came to power in which year?
+1969
+10
+
+Gadfly Texan who claimed computer and potato chips were economically equivalent?
+Ross perot
+10
+
+Gaelic is a type of what?
+Celtic language
+10
+
+Galactic travel tale based loosely on Heinlein work?
+Destination moon
+10
+
+Galena is an ore of which metal?
+Lead
+10
+
+Galena is the principal Lead ore which other element is combined with the metal to form Galena?
+Sulphur
+10
+
+Gamblers in ancient Greece made dice from the ankle-bones and shoulder blades of?
+Sheep
+10
+
+Game bird with feathered feet?
+Grouse
+10
+
+Game in which participants simulate military combat using airguns to shoot paint capsules at each other?
+Paintball
+10
+
+Game or fly fishing is for salmon and which other fish?
+Trout
+10
+
+Game show: before she became the head-turning letter turner on wheel of fortune in 1982, vanna white appeared as a contestant on what show?
+The price is right
+10
+
+Game show: which of the 60 minutes men hosted several game shows in the early part of his career?
+Mike wallace
+10
+
+Games: ____ & Righter (former US owners of Scrabble rights)
+Selchow
+10
+
+Games: ____ goes first in Tic Tac Toe
+X
+10
+
+Games: A ____ checkerboard has 121 holes
+Chinese
+10
+
+Games: A bridge hand with no cards in one suit is said to have a ____
+Void
+10
+
+Games: A card game similar to rummy?
+Canasta
+10
+
+Games: A Chinese checkerboard has ____ holes
+121
+10
+
+Games: A Draughts player starts with how many pieces?
+12
+10
+
+Games: A game in which small balls are struck into holes on inclined board?
+Bagatelle
+10
+
+Games: A poker hand consisting of three of a kind and a pair is called a ____
+Full house
+10
+
+Games: a royal flush is the best hand you can get in which game?
+Poker
+10
+
+Games: a.k.a a pair of aces & a pair of eights?
+Dead mans hand
+10
+
+Games: besides red, name the other two colours on a roulette wheel?
+Black and green
+10
+
+Games: Board game involving rapid climbing and tragic sliding?
+-- Answer metadata begin
+{
+    "answers": ["Snakes and ladders", "chutes and ladders"]
+}
+-- Answer metadata end
+10
+
+Games: Board game with pieces moved according to throw of dice?
+Backgammon
+10
+
+Games: Board games, old & new?
+Mouse Trap
+10
+
+Games: Board Games, Old and new?
+Monopoly
+10
+
+Games: Chess originated in India under which name?
+Caturanga
+10
+
+Games: Clue (tm) Murder Weapons/People?
+Rope
+10
+
+Games: d&d stands for this?
+Dungeons and dragons
+10
+
+Games: Eva Gabor and Johnny Carson popularized this game by climbing over each other?
+Twister
+10
+
+Games: Frank Lloyd Wright son John invented these after watching workers move timber?
+Lincoln logs
+10
+
+Games: How many balls are used in a game of snooker in addition to the cue ball?
+Twenty-one
+10
+
+Games: How many balls are used in a game of snooker including the cue ball?
+22
+10
+
+Games: How many dots are on a twister mat?
+Thirty
+10
+
+Games: How many dots are there on a pair of dice?
+42
+10
+
+Games: How many folds does a Monopoly board have?
+One
+10
+
+Games: How many numbers are on the spinner in the game of 'Life'?
+Ten
+10
+
+Games: how many properties are there on a monopoly board?
+28
+10
+
+Games: How many sets are there in a full-length men's championship tennis match?
+Five
+10
+
+Games: How many squares are there on a chessboard?
+64
+10
+
+Games: how many tiles does a player play to score a bingo in scrabble?
+7
+10
+
+Games: How much does Park Place cost in Monopoly (in US Dollars)?
+450
+10
+
+Games: how much is the luxury tax (in dollars) in monopoly?
+75
+10
+
+Games: In a game of horseshoes, how many feet apart must the stakes be?
+Forty
+10
+
+Games: In Chess, the obligation to move even when it must be disadvantageous?
+Zug zwang
+10
+
+Games: In poker five cards of the same suit is called a(n) ____
+Flush
+10
+
+Games: In pool, what color is the eight ball?
+Black
+10
+
+Games: In roulette, what number is green?
+Zero
+10
+
+Games: In Scrabble, what is the value of the blank tile?
+Nil
+10
+
+Games: In the board game Battleship, A battleship occupies how many squares?
+Four
+10
+
+Games: In the board game cluedo, which room is situated directly between the kitchen and the conservatory?
+The ballroom
+10
+
+Games: In the board game Diplomacy, Which country starts with the most naval units?
+Britain
+10
+
+Games: In the board game Hungry, Hungry Hippos, the four colors are Pink, Green, Orange, and?
+Yellow
+10
+
+Games: In the board game Riskm the three symbols are a foot soldier, a calvaryman, and a ____
+Cannon
+10
+
+Games: In the dice game 'craps', what is a throw of double one called?
+Snakeeye
+10
+
+Games: In the game monopoly, the most money you can lose in one travel around the board (normal game rules, going to jail only once) is how much?
+$26,040
+10
+
+Games: In the game of `scrabble' the highest known score for a single word in competition had what value?
+392 points
+10
+
+Games: In the game of Cluedo what is the name of the Reverend?
+Green
+10
+
+Games: In the game of draughts, what term means to remove from the board for failing to make a possible capture?
+Huff
+10
+
+Games: In the game of eight-ball, how many balls are there on the table at the start (excluding the cue ball)?
+15
+10
+
+Games: In the game of fives, what do the players hit the ball with?
+Hand
+10
+
+Games: in this card game, teams are designated north-south and east-west?
+Bridge
+10
+
+Games: in this game players take turns placing disks on an 8x8 board?
+Othello
+10
+
+Games: In which card game do you meld?
+Canasta
+10
+
+Games: In which game are the terms 'pin', 'fork', and 'skewer' used?
+Chess
+10
+
+Games: Jokers apart, how many red cards are there in a standard pack?
+26
+10
+
+Games: klondike is the most popular form of this game?
+Solitaire
+10
+
+Games: monopoly penalty space between baltic ave. and reading rr (2 wds)?
+Income tax
+10
+
+Games: Moving anti-clockwise on a dartboard, what is the number next to '4'?
+Eighteen
+10
+
+Games: number of points lost for scratching off the blue ball in snooker?
+5
+10
+
+Games: term for any number between 19 & 36 in roulette?
+Passe
+10
+
+Games: term for any number between one & 18 in roulette?
+Manque
+10
+
+Games: The 1993 Ken Doll has been insinuated to have this type of ring as a necklace?
+Cock
+10
+
+Games: the easiest to defend continent in risk?
+Australia
+10
+
+Games: The Five Alls, the King is depicted along with which 4 other occupations?
+Priest
+10
+
+Games: the king in chess can move a maximum of this many squares?
+Two
+10
+
+Games: the object of this card game is to meld sets of 7 or more cards?
+Canasta
+10
+
+Games: the Queen of Spades is worth 13 - is based on this game...?
+Hearts
+10
+
+Games: There are this many Miners in a full Stratego set?
+Ten
+10
+
+Games: There are this many red-letter cubes in Perquackey?
+3
+10
+
+Games: This ancient Chinese game is played with 156 small rectangular tiles?
+Mah jongg
+10
+
+Games: this cube puzzle was invented by a hungarian mathematician in 1974?
+Rubik
+10
+
+Games: this game of chance was originally called 'beano'?
+Bingo
+10
+
+Games: this is a french named car-racing card game?
+Mille borne
+10
+
+Games: this is the length, in feet, of a regulation snooker table?
+12
+10
+
+Games: This is the lowest ranking suit in Bridge?
+Clubs
+10
+
+Games: this is the oldest board game still played (5000 yr old boards were found)?
+Backgammon
+10
+
+Games: this is the strongest poker hand you can get?
+Royal flush
+10
+
+Games: This many dice are used in Yahtzee?
+Five
+10
+
+Games: This term denotes a chess move in which both the king and the rook are moved?
+Castling
+10
+
+Games: To what do opposite faces of a dice always add up?
+Seven
+10
+
+Games: what board game features a three-legged planchette that points to letters and numbers?
+Ouija
+10
+
+Games: what board game's tokens include a thimble, shoe, top hat, and dog?
+Monopoly
+10
+
+Games: What bowling term means three straight strikes?
+Turkey
+10
+
+Games: What card game can you peg out in?
+Cribbage
+10
+
+Games: What card game derived its name from biritch, or Russian Whist?
+Bridge
+10
+
+Games: What card game has 2,598,960 possible hands?
+Poker
+10
+
+Games: What card game has variations known as cincinnati, Chicago and lowball?
+Poker
+10
+
+Games: What card game is also known as Vingt-et-Un?
+Blackjack
+10
+
+Games: What card game is said to have been invented by the poet Sir John Suckling?
+Cribbage
+10
+
+Games: What card game shares its name with that of a floating bridge?
+Pontoon
+10
+
+Games: What card game was invented by harold s vanderbilt in 1925?
+Contract bridge
+10
+
+Games: what chinese parlor game swept America in the 1920s?
+Mah-jongg
+10
+
+Games: What do opposite faces of a dice always add up to?
+Seven
+10
+
+Games: what female suspect in the game of clue is single?
+Miss scarlet
+10
+
+Games: what game is fatal to anybody over 21?
+Blackjack
+10
+
+Games: What game or sport is Bobby Fischer identified with?
+Chess
+10
+
+Games: What game usually starts with 'is it animal, vegetable or mineral'?
+Twenty questions
+10
+
+Games: what game's board shows the territories of irkutsk, yakutsk, and kamchatka?
+Risk
+10
+
+Games: What is another name for the card game 'Blackjack'?
+Twenty-one
+10
+
+Games: What is another name for the card game 'Twenty-one'?
+Blackjack
+10
+
+Games: What is known as The Sport of Kings?
+Horse racing
+10
+
+Games: What is the best possible score in blackjack?
+21
+10
+
+Games: what is the game of mumbletypeg played with?
+A pocketknife
+10
+
+Games: What is the most popular sport in England?
+Darts
+10
+
+Games: What is the tallest piece on a chessboard?
+King
+10
+
+Games: What number is at 12 o'clock on a dartboard?
+Twenty
+10
+
+Games: What playing card is called the curse of Scotland?
+Nine of diamonds
+10
+
+games: what playing card symbolizes death?
+Ace of spades
+10
+
+Games: What score is not possible for a cribbage hand?
+Nineteen
+10
+
+Games: What sport/game is Bobby Fischer associated with?
+Chess
+10
+
+games: what suspect in the game of clue teaches college?
+Professor plum
+10
+
+games: what world championship is called the bermuda bowl?
+Bridge
+10
+
+games: what's the value of face cards in cribbage?
+Ten
+10
+
+Games: Where did the card game 'bridge' originate?
+Turkey
+10
+
+Games: Where does the annual Poker World Series take place?
+Las Vegas
+10
+
+Games: which British game is known as checkers in the usa?
+Draughts
+10
+
+Games: Which chess piece is usually valued as 5 points?
+Rook
+10
+
+games: which risk player wins tied dice rolls, the attacker or the defender?
+The defender
+10
+
+Games: whist is an early form of this card game?
+Bridge
+10
+
+Games: who devised the point count bidding system for bridge?
+Charles goren
+10
+
+Games: Who invented Bazaar, Acquire, Can't Stop, and Domination?
+Sidney sackson
+10
+
+Games: whose 3-dimensional cube became a 70s & 80s craze?
+Rubiks cube
+10
+
+Games: Yahtzee is played with how many dice?
+5
+10
+
+Games: you meld groups of three cards or more of the same rank or suit in this game?
+Rummy
+10
+
+Ganesha is the hindu god of ____
+Good fortune
+10
+
+Gardner Cowles founded what picture magazine in 1937 to compete with 'Life Magazine'?
+Look
+10
+
+Garfield was created by which cartoonist (first & last names)?
+Jim davis
+10
+
+Garlic is a primary defense against?
+High cholesterol
+10
+
+Garnet is the birthstone for which month?
+January
+10
+
+Garnet, amethyst and zircon are all types of what?
+Minerals
+10
+
+Garter snakes give off a smelly substance called?
+Musk
+10
+
+Garuda is the national airline of which far-eastern country?
+Indonesia
+10
+
+Gary powers u-2 mission over Russia in 1960 was known as?
+Operation overflight
+10
+
+Gas from a Supernova can travel up to ____ kilometres per second
+10,000
+10
+
+gastritis is a condition that affects what part of the body?
+Stomach
+10
+
+Gathering in of a seasons crops?
+Harvest
+10
+
+Gatorade was named for the University of ____ Gators where it was first developed
+Florida
+10
+
+gay issues: a lesbian kiss on what abc sitcom caused an uproar?
+Roseanne
+10
+
+Gay Issues: A passed anti-gay measure in what state caused calls for a boycott?
+Colorado
+10
+
+gay issues: what British musician/singer was bi, now openly gay?
+Elton john
+10
+
+Gay Issues: What is America's weekly gay news magazine?
+The advocate
+10
+
+gay issues: what is announcing someone being gay against their will called?
+Outing
+10
+
+Gay Issues: What Middle Eastern country allows gays in its military?
+Israel
+10
+
+Gay Issues: What popular Canadian country singer is an open lesbian?
+K.d. lang
+10
+
+Gems: 19th Century: In 1893 ____ diamond (blue-white 995 carats) discovered
+Excelsior
+10
+
+Gems: A large flawless ____ is worth more than a similarly large flawless diamond
+Emerald
+10
+
+Gems: A large flawless emerald is worth more than a similarly large flawless____
+Diamond
+10
+
+Gems: Gemstones are formed from slowly cooling ____ rocks
+Igneous
+10
+
+Gems: Name some?
+Diamond
+10
+
+Gems: Peridot is the birthstone for ____
+August
+10
+
+Gems: What is the birthstone for August?
+Peridot
+10
+
+General military term for large weapons such as cannons & rocket launchers?
+Artillery
+10
+
+General term for any animal that subsists mainly on the flesh of other animals?
+Carnivore
+10
+
+Generally acknowledged to be the most prolific painter of modern times?
+Pablo picasso
+10
+
+Generals Gowon, Abasanjo and Abacha have all been leaders of which African State?
+Nigeria
+10
+
+Generic name for an anonymous average man?
+John doe
+10
+
+GENERL KNOWLEDGE:Occuring every 20 years?
+Vicennial
+10
+
+Genesis, exodus, leviticus, numbers, ____...
+Deuteronomy
+10
+
+Genetics - How many chromosomes do each body cell contain?
+46
+10
+
+Genghis Khan started out as a what?
+Goatherder
+10
+
+Genghis khan started out as a____
+Goatherd
+10
+
+Genghis khan was the most famous leader of what people?
+The mongols
+10
+
+Genghis Khan's original name was?
+Temujin
+10
+
+Genie ina bottle was a no 1 in oct99 name the us female artist?
+Christina aguilera
+10
+
+Genus of annual and perennial herbs (buttercup) containing about 20 species, grown for their showy flowers?
+Adonis
+10
+
+Genus of plants with more than 150 species, most native to South Africa?
+Aloe
+10
+
+Genus of tropical American flowering annual herbs?
+Ageratum
+10
+
+GEOGRAPHY; Dutch city famous for its pottery and porcelain?
+Delft
+10
+
+GEOGRAPHY; In which European city is there a lake called the Tjorn?
+Reykjavik
+10
+
+GEOGRAPHY; In which sea are the Docecanese Islands?
+Aegean Sea
+10
+
+GEOGRAPHY; Whre would you see the statue of The little Mermaid?
+Copenhagen
+10
+
+GEOGRAPHY;Which European flag is red and gold and has an eagle in its crest?
+Spain
+10
+
+Geography: ____ account for more than half of the world's total production of peanuts. The United States grows about 10 percent of the world's peanut crop, mainly in such southern states as Alabama, Florida, Georgia, and South Carolina
+India and china
+10
+
+Geography: ____ averages the greatest number of shark attacks annually - an average of 13
+Florida
+10
+
+Geography: ____ got its start as a major tourist destination during the early days of World War II. German U-boats threats off the eastern United States compelled the wealthy to find new places to vacation. At one time one had to be a millionaire to enjoy ____, but that hasn't been the case for years
+Acapulco
+10
+
+Geography: ____ has 150 recognized ecosystems
+Hawaii
+10
+
+Geography: ____ has 254 counties. Alaska, which is more than twice as large, hasn't any
+Texas
+10
+
+Geography: ____ has 570 miles of shoreline
+New york city
+10
+
+Geography: ____ has a sand desert with dunes over 100 feet high. It is located along the flatland of the Kobuk River in the northwestern part of the state
+Alaska
+10
+
+Geography: ____ has official state neckwear - the bolo tie
+Arizona
+10
+
+Geography: ____ has parallel drops of only 158 and 167 feet
+Niagara falls
+10
+
+Geography: ____ has the greatest number of islands in the world: 179,584
+Finland
+10
+
+Geography: ____ has the highest per capita income in the world, except for the oil sheikdoms
+Bermuda
+10
+
+Geography: ____ has the largest rural population in the United States
+Pennsylvania
+10
+
+Geography: ____ has the nation's largest city park system, with more than 200 parks within city limits and 20,000 acres of parks in the nearby mountains - an area larger than all of Manhattan Island
+Denver
+10
+
+Geography: ____ has two official national anthems
+South africa
+10
+
+Geography: ____ in southern California is the lowest point in the United States at 282 feet below sea level. The highest point in the contiguous 48 states is also in California: Mount Whitney, which is 14,491 feet above sea level
+Death valley
+10
+
+Geography: ____ in Wyoming, the world-famous, nearly vertical monolith rises 1,267 feet above the Belle Fourche River. Known by several northern plains tribes as Bears Lodge, it is a sacred site of worship for many American Indians. Scientists are still undecided as to what exactly caused the natural wonder, although they agree that it is the remnant of an ancient volcanic feature
+Devils tower
+10
+
+Geography: ____ includes the islands of New Britain and New Ireland
+Papua new guinea
+10
+
+Geography: ____ is 98 percent ice, 2 percent barren rock. The average thickness of the ice sheet is 7,200 feet; this amounts to 90 percent of all the ice and 70 percent of all the fresh water in the world. If the ice cap were to melt, the sea level would rise by an average of 230 feet
+Antarctica
+10
+
+Geography: ____ is a land with a lot of big creatures - it is home to the world's largest snake (the anaconda, measuring up to 35 feet in length), largest spider, largest rodent (the capybara, a sort of guinea pig the size of a police dog), and the world's largest ant
+Brazil
+10
+
+Geography: ____ is home to the world's most remote weather station. Its Eureka weather station is 600 miles from the North Pole
+Canada
+10
+
+Geography: ____ is one-quarter the size of the state of Maine
+Israel
+10
+
+Geography: ____ is smaller than the state of Montana (116,304 square miles and 147,138 square miles, respectively)
+Italy
+10
+
+Geography: ____ is the birthplace of many celebrities, including David Birney, Blair Brown, Connie Chung, Matt Frewer, Goldie Hawn, Al Gore, John Heard, Edward Hermann, William Hurt, John F. Kennedy, Jr., Michael Learned, Roger Mudd, Maury Povich, Chita Rivera, Pete Sampras, and Peter Tork
+Washington, d.c
+10
+
+Geography: ____ is the first and last city in the world to operate cable cars. Almost 100 other cities around the world have had cable cars, but all have discontinued use. The cable cars began operation on August 2, 1873. Designed by London born engineer Andrew Hallidie, the cable cars are controlled by a subterranean loop that travels at a constant 9.5 miles per hour
+San francisco
+10
+
+Geography: ____ is the fourth-largest island in the world. It is approximately the same size as the state of Texas
+Madagascar
+10
+
+Geography: ____ is the largest country in Africa. It has a population greater than 28,100,000
+Sudan
+10
+
+Geography: ____ is the largest French-speaking city in the Western Hemisphere
+Montreal
+10
+
+Geography: ____ is the largest Spanish-speaking country and the second-largest Roman Catholic nation in the world
+Mexico
+10
+
+Geography: ____ is the largest Western European country. Its area is slightly less than twice the size of Colorado
+France
+10
+
+Geography: ____ is the most densely populated non-island region in the world, with more than 1,970 humans per square mile
+Bangladesh
+10
+
+Geography: ____ is the only Central American country not bordering the Caribbean Sea
+El salvador
+10
+
+Geography: ____ is the only country in the Middle East that does not have a desert
+Lebanon
+10
+
+Geography: ____ is the second smallest country in the world and the principality has four distinct divisions. (1.) La Condamine, the business district. (2.) The Casino or Monte Carlo. (3.) Monaco-Ville which is on a rocky promontory and (4.) Fontvieille
+Monaco
+10
+
+Geography: ____ is the world's largest producer of cork. The country has regulations protecting cork trees dating back to 1320. During the 1920s and 1930s, it became illegal to cut down the trees other than for essential thinning and removal of older non-producing trees
+Portugal
+10
+
+Geography: ____ itself was formed by the activity of undersea volcanoes
+Hawaii
+10
+
+Geography: ____ possesses more proven oil reserves than any country outside the Middle East
+Venezuela
+10
+
+Geography: ____ sits on the southern coast of France, near the border with Italy, and covers 0.73 square miles (approximately 1/2 the size of New York's Central Park)
+Monaco
+10
+
+Geography: ____ was admitted to the U.N. in May 1993, making it the smallest country represented there
+Monaco
+10
+
+Geography: ____ was the first American city planned for a specific purpose. It was designed by Major Pierre Charles L'Enfant, to be a beautiful city with wide streets and many trees. The district was originally a 10 miles square crossing the Potomac River into Virginia. The Virginia part of the district was given back to Virginia in 1846
+Washington, d.c
+10
+
+Geography: ____ was the U.S. Confederacy's largest city
+New orleans
+10
+
+Geography: ____, Illinois was nicknamed the Windy City because of the excessive local bragging that accompanied the Columbian Exhibition of 1893. ____ has actually been rated as only the 16th breeziest city in America
+Chicago
+10
+
+Geography: ____, in Russia, is the largest city north of the Arctic Circle
+Murmansk
+10
+
+Geography: ____, in the eastern West Indies, is one of the world's most densely populated countries
+Barbados
+10
+
+Geography: ____, of the southern Baja Peninsula, was favored by early pirates because of its safe harbors
+Los cabos
+10
+
+Geography: 300,000 Chinese troops invaded a country in February of 1979, what was the country?
+Vietnam
+10
+
+Geography: 80% of the World`s fresh water is located in what country?
+Canada
+10
+
+Geography: A Bajan is an inhabitiant of which island?
+Barbados
+10
+
+Geography: A distillery was originally on the site of America's first mint, the ____ mint, which opened in 1792
+Philadelphia
+10
+
+Geography: A federation in SE Asia occupying the northern part of Borneo?
+Malaysia
+10
+
+Geography: A member of a Bantu people living chiefly in South Africa?
+Zulu
+10
+
+Geography: A patent on polyester was patented first in what country?
+Briton
+10
+
+Geography: A ridge projecting laterally from a mountain or mountain range?
+Spur
+10
+
+Geography: A small violent tropical storm or cyclone in the China seas?
+Typhoon
+10
+
+Geography: A whirlpool below ____ iced over for the first time on record, on March 25, 1955
+Niagara falls
+10
+
+Geography: A wide indentation in a shoreline?
+Bight
+10
+
+Geography: About 43 million years ago, the Pacific plate took a northwest turn, creating a bend where new upheavals initiated the Hawaiian Ridge. Major islands formed included Kauai, 5.1 million years old, Maui, 1.3 million years old, and ____, a youngster at only 800,000 years old
+Hawaii
+10
+
+Geography: Abuja is the capital of ____
+Nigeria
+10
+
+Geography: Acadia was the original name of which Canadian province?
+Nova scotia
+10
+
+Geography: Acapulco is in which country?
+Mexico
+10
+
+Geography: According to ____ historian Herodotus, Egyptian men never became bald. The reason for this was that, as children, Egyptian males had their heads shaved, and their scalps were continually exposed to the health-giving rays of the sun
+Greek
+10
+
+Geography: According to a Fortune magazine survey conducted a few years ago, ____ topped the list of best major U.S. cities to balance work and family
+Seattle
+10
+
+Geography: According to classical legend, which city was the home of the original Palladium?
+Troy
+10
+
+Geography: According to the ____, a survey of 18- to 24-year-olds from nine nations put the United States dead last in general geographic knowledge scores. One in seven - about 24 million people - could not find their own country on a world map. The survey revealed that Americans possess a pathetically poor sense of where they are - much less any knowledge about the rest of the world. And even more alarming, those who participated in the survey were recent high school and college graduates
+National Geographic Society
+10
+
+Geography: According to the U.S. Naval Observatory, the first populated land where the Sun will rise on a new day is at Kahuitara Point (44? 16' S 176? 9' W) on Pitt Island in the Chatham Islands, a dependency of ____
+New zealand
+10
+
+Geography: Accra is the capital of ____
+Ghana
+10
+
+Geography: Adolf Hitler was born in what country?
+Austria
+10
+
+Geography: African country, capital Luanda?
+Angola
+10
+
+Geography: African country, capital Niamey?
+Niger
+10
+
+Geography: After which city is mayonnaise said to be named?
+Port mahon
+10
+
+Geography: After which First World war heroine was a peak in the Rockies named?
+Edith Cavell
+10
+
+Geography: Albany is the capital of ____
+New York
+10
+
+Geography: Alternative name for Ayres Rock?
+Uluru
+10
+
+Geography: America purchased Alaska from ____ in 1867 for $7,200,000 - about 2 cents an acre
+Russia
+10
+
+Geography: Among the fifty-two ____ churches Sir Christopher Wren created from 1670 to 1711, the greatest was St. Paul's Cathedral
+London
+10
+
+Geography: Andalusia is a region located in the south of which country?
+Spain
+10
+
+Geography: Ankara is the capital of ____
+Turkey
+10
+
+Geography: Antibes, on the eastern French Riviera, was founded by the ____ in the fourth century B.C. After World War II, Pablo Picasso left Paris to live near the Mediterranean. He worked for six months in the Grimaldi castle where he painted La Joi De Vivre. It is now a museum that holds many of Picasso's paintings and pottery. Antibes also hosts one of the largest antique shows in Europe each spring
+Greeks
+10
+
+Geography: Antigua and Barbuda lie in which Sea?
+Caribbean
+10
+
+Geography: Approximately 70 percent of the Earth is covered with water. Only 1 percent of the water is ____
+Drinkable
+10
+
+Geography: Approximately what percentage of the earth do the oceans cover?
+71
+10
+
+Geography: Argentina's east coast lies on which ocean?
+Atlantic
+10
+
+Geography: Arguably the largest state in the world, ____ covers one-third of the Australian continent. It spans over 2.5 million square kilometers (1 million square miles)
+Western Australia
+10
+
+Geography: Arizona boasts a great variety of fossils, the best known of which were of creatures that lived during the Triassic Period. These include early dinosaurs and the trees that left us Arizona petrified wood, (Araucarioxylon arizonicum), the state's fossil. Arizona petrified wood is protected in Petrified Forest National Park. Another famous Arizona fossil site is the Grand Canyon. It was carved out of the ____, a famous geologic region
+Colorado plateau
+10
+
+Geography: Aruba maintains the strongest ties to what European country?
+Netherlands
+10
+
+Geography: As of 1990, ____, Pennsylvania was the only U.S. city of the nation's largest 50 cities with a higher death rate than birth rate
+Pittsburgh
+10
+
+Geography: As what is Constantinople now known?
+Istanbul
+10
+
+Geography: As what is Formosa now known?
+Taiwan
+10
+
+Geography: As what is Krung Thep is more commonly known?
+Bangkok
+10
+
+Geography: As what is the South Pole also known?
+Amundsen Scott Station
+10
+
+Geography: As what was the Taj Mahal originally built?
+Tomb
+10
+
+Geography: At the start of the twentieth century, the spectacular city of ____, didn't even exist. Now it's home to more than one million people, and the city boasts nine of the world's ten largest hotels
+Las vegas, nevada
+10
+
+Geography: Austin is the capital of ____
+Texas
+10
+
+Geography: Australia's highest mountain is named for Thaddeus ____, the Polish general who fought in the American Revolution
+Kosciusko
+10
+
+Geography: Bamako is the capital of ____
+Mali
+10
+
+Geography: Bangalore and jaipur are in which country?
+India
+10
+
+Geography: Bangkok is the capital of ____
+Thailand
+10
+
+Geography: Banjul is the capital of ____
+Gambia
+10
+
+Geography: Bartolomeo diaz called it the cape of storms. what is it called now?
+The cape of good hope
+10
+
+Geography: Before 1918, ____ belonged to Austria-Hungary; from 1918 to 1991, it was part of Yugoslavia. It declared its independence on June 25, 1991
+Slovenia
+10
+
+Geography: Berkshire racecourse?
+Ascot
+10
+
+Geography: Bismarck is the capital of ____
+North Dakota
+10
+
+Geography: Bissau is the capital of ____
+Guinea-Bissau
+10
+
+Geography: bodies of water: Where in the heck is Bantry Bay?
+Ireland
+10
+
+Geography: Bodies Of Water?
+Lake Michigan
+10
+
+Geography: Bodies Of Water?
+Pacific Ocean
+10
+
+Geography: Bogota is the capital of ____
+Colombia
+10
+
+Geography: Boise is the capital of ____
+Idaho
+10
+
+Geography: Bore-hole seismometry indicates that the land in ____ moves up and down 25 cm throughout the day, corresponding with the tides. Earth tides are generally about one-third the size of ocean tides
+Oklahoma
+10
+
+Geography: Bridgeport is the largest city in which state?
+Connecticut
+10
+
+Geography: Bridgetown is the capital of ____
+Barbados
+10
+
+Geography: Brussels is the capital of which country?
+Belgium
+10
+
+Geography: Buckingham Palace is in which English City.?
+London
+10
+
+Geography: Budapest is the capital of ____
+Hungary
+10
+
+Geography: buildings: what's the largest office building in the world?
+The pentagon
+10
+
+Geography: Burma was the former name of which country?
+Myanmar
+10
+
+Geography: By what name is British Honduras now known?
+Belize
+10
+
+Geography: Canada is the second-largest country in the world after ____. Nearly 90 percent of the Canada's population is concentrated within 161 km of the United States/Canada border
+Russia
+10
+
+Geography: Cape Town, South Africa, is also known as?
+Kaapstad
+10
+
+Geography: Capital of Afghanistan?
+Kabul
+10
+
+Geography: Capital of Albania?
+Tirana
+10
+
+Geography: Capital of Algeria?
+Algiers
+10
+
+Geography: Capital of Andorra?
+Andorra la Vella
+10
+
+Geography: Capital of Angola?
+Luanda
+10
+
+Geography: Capital of Argentina?
+Buenos Aires
+10
+
+Geography: Capital of Australia?
+Canberra
+10
+
+Geography: Capital of Austria?
+Vienna
+10
+
+Geography: Capital of Bahrain?
+Manama
+10
+
+Geography: Capital of Bangladesh?
+Dhaka
+10
+
+Geography: Capital of Barbados?
+Bridgetown
+10
+
+Geography: Capital of Belgium?
+Brussels
+10
+
+Geography: Capital of Belize?
+Belmopan
+10
+
+Geography: Capital of Benin?
+Porto Novo
+10
+
+Geography: Capital of Bhutan?
+Thimphu
+10
+
+Geography: Capital of Botswana?
+Gaborone
+10
+
+Geography: Capital of Brazil?
+Brasilia
+10
+
+Geography: Capital of Brunei?
+Bandar Seri Begawan
+10
+
+Geography: Capital of Bulgaria?
+Sofia
+10
+
+Geography: Capital of Cambodia?
+Phnom Penh
+10
+
+Geography: Capital of Cameroon?
+Yaounde
+10
+
+Geography: Capital of Canada?
+Ottawa
+10
+
+Geography: Capital of Chad?
+N'Djamena
+10
+
+Geography: Capital of Congo?
+Brazzaville
+10
+
+Geography: Capital of Costa Rica?
+San Jose
+10
+
+Geography: Capital of Cuba?
+Havana
+10
+
+Geography: Capital of Cyprus?
+Nicosia
+10
+
+Geography: Capital of Czechoslovakia?
+Prague
+10
+
+Geography: Capital of Denmark?
+Copenhagen
+10
+
+Geography: Capital of Djibouti?
+Djibouti
+10
+
+Geography: Capital of Ecuador?
+Quito
+10
+
+Geography: Capital of Egypt?
+Cairo
+10
+
+Geography: Capital of El Salvador?
+San Salvador
+10
+
+Geography: Capital of Ethiopia?
+Addis Ababa
+10
+
+Geography: Capital of Fiji?
+Suva
+10
+
+Geography: Capital of Finland?
+Helsinki
+10
+
+Geography: Capital of France?
+Paris
+10
+
+Geography: Capital of Gabon?
+Libreville
+10
+
+Geography: Capital of Ghana?
+Accra
+10
+
+Geography: Capital of Greece?
+Athens
+10
+
+Geography: Capital of Grenada?
+St George's
+10
+
+Geography: Capital of Guatemala?
+Guatemala
+10
+
+Geography: Capital of Guyana?
+Georgetown
+10
+
+Geography: Capital of Haiti?
+Port-au-Prince
+10
+
+Geography: Capital of Honduras?
+Tegucigalpa
+10
+
+Geography: Capital of Hungary?
+Budapest
+10
+
+Geography: Capital of Iceland?
+Reykjavik
+10
+
+Geography: Capital of India?
+New Delhi
+10
+
+Geography: Capital of Indonesia?
+Jakarta
+10
+
+Geography: Capital of Iran?
+Teheran
+10
+
+Geography: Capital of Iraq?
+Baghdad
+10
+
+Geography: Capital of Irish Republic?
+Dublin
+10
+
+Geography: Capital of Israel?
+Jerusalem
+10
+
+Geography: Capital of Italy?
+Rome
+10
+
+Geography: Capital of Ivory Coast?
+Abidjan
+10
+
+Geography: Capital of Jamaica?
+Kingston
+10
+
+Geography: Capital of Japan?
+Tokyo
+10
+
+Geography: Capital of Jordan?
+Amman
+10
+
+Geography: Capital of Kenya?
+Nairobi
+10
+
+Geography: Capital of Kiribati?
+Tarawa
+10
+
+Geography: Capital of Kuwait?
+Kuwait
+10
+
+Geography: Capital of Laos?
+Vientiane
+10
+
+Geography: Capital of Lebanon?
+Beirut
+10
+
+Geography: Capital of Lesotho?
+Maseru
+10
+
+Geography: Capital of Libya?
+Tripoli
+10
+
+Geography: Capital of Liechtenstein?
+Vaduz
+10
+
+Geography: Capital of Lithuania?
+Vilnius
+10
+
+Geography: Capital of Madagascar?
+Antananarivo
+10
+
+Geography: Capital of Malaysia?
+Kuala Lumpar
+10
+
+Geography: Capital of Maldives?
+Male
+10
+
+Geography: Capital of Malta?
+Valletta
+10
+
+Geography: Capital of Martinique?
+Fort-de-France
+10
+
+Geography: Capital of Mauritius?
+Port Louis
+10
+
+Geography: Capital of Mexico?
+Mexico City
+10
+
+Geography: Capital of Moazambique?
+Maputo
+10
+
+Geography: Capital of Monaco?
+Monaco
+10
+
+Geography: Capital of Mongolia?
+Ulan Bator
+10
+
+Geography: Capital of Morocco?
+Rabat
+10
+
+Geography: Capital of Namibia?
+Windhoek
+10
+
+Geography: Capital of Nauru?
+Yaren
+10
+
+Geography: Capital of Nepal?
+Kathmandu
+10
+
+Geography: Capital of New Zealand?
+Wellington
+10
+
+Geography: Capital of Nicaragua?
+Managua
+10
+
+Geography: Capital of Niger?
+Niamey
+10
+
+Geography: Capital of Nigeria?
+Lagos
+10
+
+Geography: Capital of North Korea?
+Pyongyang
+10
+
+Geography: Capital of Norway?
+Oslo
+10
+
+Geography: Capital of Oman?
+Muscat
+10
+
+Geography: Capital of pakistan?
+Islamabad
+10
+
+Geography: Capital of Panama?
+Panama
+10
+
+Geography: Capital of Papua New Guinea?
+Port Moresby
+10
+
+Geography: Capital of Paraguay?
+Asuncion
+10
+
+Geography: Capital of Peru?
+Lima
+10
+
+Geography: Capital of Phiippines?
+Manila
+10
+
+Geography: Capital of Poland?
+Warsaw
+10
+
+Geography: Capital of Portugal?
+Lisbon
+10
+
+Geography: Capital of Qatar?
+Doha
+10
+
+Geography: Capital of Romania?
+Bucharest
+10
+
+Geography: Capital of Rwanda?
+Kigali
+10
+
+Geography: Capital of Saskatchewan?
+Regina
+10
+
+Geography: Capital of South Korea?
+Seoul
+10
+
+Geography: Capital of Swaziland?
+Mbabane
+10
+
+Geography: Capital of the Bahamas?
+Nassau
+10
+
+Geography: Capital of the Canadian province of Manitoba?
+Winnipeg
+10
+
+Geography: Capital of the Isle of Man?
+Douglas
+10
+
+Geography: Capitals: Baghdad is the capital of ____
+Iraq
+10
+
+Geography: Capitals: Baku is the capital of which country?
+Azerbaijan
+10
+
+Geography: Capitals: Bangkok is which country's capital?
+Thailand
+10
+
+Geography: Capitals: Bangui is the capital of ____
+Central african republic
+10
+
+Geography: Capitals: Berlin is the capital of ____
+Germany
+10
+
+Geography: Caribbean island which with Bermuda became an independent state in 1981?
+Antigua
+10
+
+Geography: Celine Deion was born in what North American Country?
+Canada
+10
+
+Geography: Cheyenne is the capital of ____
+Wyoming
+10
+
+Geography: Chief sea port of France?
+Marseille
+10
+
+Geography: cities: What capital city lies at the junction of the Sava and Danube rivers?
+Belgrade
+10
+
+Geography: cities: What city rises at the head of the Nile River Delta?
+Cairo
+10
+
+Geography: cities: What German city is famed for a scent it produces?
+Cologne
+10
+
+Geography: cities: Where would one find the Austerlitz train station?
+Paris, France
+10
+
+Geography: City and administrative centre of an English county situated on the North Sea anmd The Wash site of an 11th century cathedral?
+Lincoln
+10
+
+Geography: City in Florida, USA situated near Walt Disney World?
+Orlando
+10
+
+Geography: City-state and the largest port in Germany?
+Hamburg
+10
+
+Geography: City, capital of Nepal, in the central part of the country?
+Kathmandu
+10
+
+Geography: City, capital of the province of Quebec, Canada, in Quebec county, at the confluence of the Saint Lawrence & Saint-Charles rivers, in the southern part of the province?
+Quebec
+10
+
+Geography: Colorado's capital of ____ is the largest metro city in a 600-mile radius - an area almost the size of Europe
+Denver
+10
+
+Geography: Columbus is the capital of ____
+Ohio
+10
+
+Geography: Compact group of mountain heights?
+Massif
+10
+
+Geography: Country on the Caribbean coast of Central America, capital Belmopan?
+Belize
+10
+
+Geography: County of Northern Ireland?
+Tyrone
+10
+
+Geography: County town of Clare?
+Ennis
+10
+
+Geography: County town of Cornwall?
+Truro
+10
+
+Geography: Dakar is the capital of ____
+Senegal
+10
+
+Geography: Denmark, Norway and Sweden combine to make what?
+Scandinavia
+10
+
+Geography: Des Moines is the capital of ____
+Iowa
+10
+
+Geography: Dhaka is the capital of ____
+Bangladesh
+10
+
+Geography: Djibouti is the capital of ____
+Djibouti
+10
+
+Geography: During the nineteenth century, Michigan was a key stop on the Underground Railroad, and many runaway slaves decided to make their homes there. Currently, 14 percent of Michigan's population is ____
+African American
+10
+
+Geography: Each tour through Natural Bridge Caverns in ____ covers 3/4 mile. An average tour guide will walk almost 560 miles in one year
+Texas
+10
+
+Geography: Each year ____ has approximately 5,000 earthquakes, including 1,000 that measure above 3.5 on the Richter scale
+Alaska
+10
+
+Geography: Eddy Grant comes from what country?
+Guyana
+10
+
+Geography: Edinburgh is in which country?
+Scotland
+10
+
+Geography: Edmonton is the capital of which province?
+Alberta
+10
+
+Geography: English county - the garden of England?
+Kent
+10
+
+Geography: Excluding Alaska, the American state with the lowest population density is?
+Wyoming
+10
+
+Geography: Filled with water, gas, electric, telephone, cable, steam, and sewer lines, ____ is the most dense underground site in the United States
+Manhattan
+10
+
+Geography: Fireworks originated in what country?
+China
+10
+
+Geography: Five US states border which ocean?
+Pacific Ocean
+10
+
+Geography: Florida is not the southernmost state in the United States. ____ is farther south
+Hawaii
+10
+
+Geography: For centuries, Spain's ____ has been and still is one of the world's largest
+Fishing fleet
+10
+
+Geography: For most of the 20th century ST. Petersburg has been named after which Soviet Hero?
+Lenin
+10
+
+Geography: For those who are eager to peek inside Europe's only active volcano, a shuttle takes tourists close to the top of Mount Vesuvius. After that, it is a thirty-minute hike to the lip of the crater. Mount Vesuvius erupted about seventy-nine years after Christ. The flourishing city of ____ was obliterated, buried under a thirty-foot wave of hot mud and volcanic ash. The lunar-like top of the volcano stands at a dizzying 4,000 feet
+Pompeii
+10
+
+Geography: For years Sicily was the source of which element?
+Sulphur
+10
+
+Geography: Formally called Kiritimati, ____ in the Indian Ocean is 52 square miles
+Christmas island
+10
+
+Geography: Founded in 1822 by the American Colonisation Society as a home for liberated slaves, capital city named after US President James Monroe, which country?
+Liberia
+10
+
+Geography: Four states have active volcanoes: Washington, ____, Alaska, and Hawaii, whose Mauna Loa is the world's largest active volcano
+California
+10
+
+Geography: Frankfort is the capital of which state?
+Kentucky
+10
+
+Geography: French resort location of the Promenade des Anglais?
+Nice
+10
+
+Geography: French sea port with a ferry service to Dover?
+Calais
+10
+
+Geography: From an old name for which country did Horace Walpole coin the term Serendipity for happy finds made by chance?
+Sri lanka
+10
+
+Geography: From the 1830s to 1960s, the Lehigh River in eastern ____, was owned by the Lehigh Coal and Navigation Co., making it the only privately owned river in the United States
+Pennsylvania
+10
+
+Geography: From which country did the Bashi Bazouks come?
+Turkey
+10
+
+Geography: From which country do Moselle wines come from?
+Germany
+10
+
+Geography: From which Irish province were the MacCarthys hereditary kings?
+Munster
+10
+
+Geography: Generally regarded as the world's most active volcano (in Hawaii)?
+Kilauea
+10
+
+Geography: Genoa overlooks which sea?
+Ligurian
+10
+
+Geography: Going due south from New York City, which S. American country do you hit first?
+Colombia
+10
+
+Geography: Gore is also known as the Brown Trout Capital of the World and New Zealand's ____
+Country music capital
+10
+
+Geography: Grasshopper Glacier in ____ was named for the grasshoppers that can still be seen frozen in the ice
+Montana
+10
+
+Geography: Great river of Brazil?
+Amazon
+10
+
+Geography: Group of round 30 islets in the North Sea off the coast of Northumberland?
+Farne Islands
+10
+
+Geography: Guatemala is the capital of ____
+Guatemala
+10
+
+Geography: Guayaquil is the largest city in what country?
+Ecuador
+10
+
+Geography: Halifax is the capital of which Canadian province?
+Nova scotia
+10
+
+Geography: Havana is the capital of which country?
+Cuba
+10
+
+Geography: He invented the most common projection for world maps?
+Gerardus Mercator
+10
+
+Geography: He visited Australia and New Zealand, then surveyed the Pacific Coast of North America?
+Vancouver
+10
+
+Geography: Height of Ayres Rock?
+110 FEET
+10
+
+Geography: Helena is the capital of ____
+Montana
+10
+
+Geography: Hell's Canyon on the Snake River is deeper than the ____
+Grand canyon
+10
+
+Geography: hich is the largest lake in Wales?
+Lake bala
+10
+
+Geography: Hills on the Scottish English border?
+Cheviot hills
+10
+
+Geography: Honolulu is the capital of ____
+Hawaii
+10
+
+Geography: Honolulu is the only place in the united states that has a ____
+Royal palace
+10
+
+Geography: Honshu is the largest island of which country?
+Japan
+10
+
+Geography: Hot dusty wind in Argentina?
+Zonda
+10
+
+Geography: How long is the Great Wall of China?
+1450 miles
+10
+
+Geography: How many countries border the black sea?
+Six
+10
+
+Geography: How many Great Lakes are there?
+Five
+10
+
+Geography: How many stars are on the flag of New Zealand?
+Four
+10
+
+Geography: How was the Cote D'Ivoire previously known?
+Ivory Coast
+10
+
+Geography: If its 4:00pm in Seattle Washington, what time is it in Portland Oregon?
+4
+10
+
+Geography: If its 4:00pm in Seattle, Washington what time is it in Portland, Oregon?
+4:00pm
+10
+
+Geography: If the ____ River were stretched across the United States, it would run just about from New York to Los Angeles
+Nile
+10
+
+Geography: If you flew due West from Portugal, what is the first continent you would reach?
+North America
+10
+
+Geography: If you were at longitude 24 degrees 55' east and latitude 60 degrees 15' north, in which capital city would you be?
+Helsinki
+10
+
+Geography: In ____, Domino's Pizza has a reindeer sausage pie on its menu
+Iceland
+10
+
+Geography: In ____, the Presidential highway links the towns of Gore and Clinton
+New zealand
+10
+
+Geography: In 1507, the first globular map was published showing the Western Hemisphere. It was printed at St. Die in the Vosges Mountains of Alsac, and it was the first map to use the term ____
+America
+10
+
+Geography: In 1932, Porto Rico was renamed ____
+Puerto rico
+10
+
+Geography: In 1955 which city became the official capital of Wales?
+Cardiff
+10
+
+Geography: In 1964 Tanganyika joined Zanzibar to become which country?
+Tanzania
+10
+
+Geography: In Australia, a branch of a river forming a backwater?
+Billabong
+10
+
+Geography: In London what was the Tyburn?
+Stream
+10
+
+Geography: In Paris, what are Louis Blanc and Etienne Marcel?
+Metro stations
+10
+
+Geography: In Russia,what is Kyzyl Kum?
+Desert
+10
+
+Geography: In South America what is the largest country?
+Brazil
+10
+
+Geography: in south west France, which 2 rivers unite to form the Gironde estuary?
+Dordogne & garonne
+10
+
+Geography: In the 1960s which London Street was the fashion centre for the young?
+Carnaby street
+10
+
+Geography: In the broadest sense, the entire western hemisphere south of the USA?
+Latin America
+10
+
+Geography: In the centre of which South American city is the Square of Three Powers?
+Brasilia
+10
+
+Geography: In the country of ____, the basic monetary unit is the tala
+Western samoa
+10
+
+Geography: In the province of ____, Canada there are towns by the name of Elbow & Eyebrow
+Saskatchewan
+10
+
+Geography: In the uK excluding mainland Britain what is the largest island?
+Lewis with Harris
+10
+
+Geography: In the world's oceans, there are: 58 species of sea grasses; less than 1,000 species of cephalopods (squids, octopi, and pearly nautiluses); 1,000 species of sea anemones; 1,500 species of brown algae; 7,000 species of echinoderms (starfishes, sea urchins, sea cucumbers, and sea lilies); 13,000 species of fishes; and 50,000 species of ____
+Mollusks
+10
+
+Geography: In travel, what number was given to the route that ran from Chicago to Los Angeles?
+Route 66
+10
+
+Geography: In what city are the famous Tivoli Gardens?
+Copenhagen
+10
+
+Geography: In what city is the Leaning Tower?
+Pisa
+10
+
+Geography: In what city is the Smithsonian Institute?
+Washington
+10
+
+Geography: In what country can one find 40 species of lemurs?
+Madagascar
+10
+
+Geography: In what country is Banff National Park?
+Canada
+10
+
+Geography: In what country is Lahore?
+Pakistan
+10
+
+Geography: In what country is Mandalay?
+Myanmar
+10
+
+Geography: In what country is Taipei?
+Taiwan
+10
+
+Geography: In what country is the highest point in South America?
+Argentina
+10
+
+Geography: In what country is the Jutland peninsula?
+Denmark
+10
+
+Geography: In what country is the lowest point in South America?
+Argentina
+10
+
+Geography: In what country is the Mekong River Delta?
+Vietnam
+10
+
+Geography: In what country is the port of Archangel?
+Russia
+10
+
+Geography: In what country is the source of the Blue Nile?
+Ethiopia
+10
+
+Geography: In what country is the Waterloo battlefield?
+Belgium
+10
+
+Geography: In what country is Thunder Bay?
+Canada
+10
+
+Geography: In what island group is Corregidor?
+Philippines
+10
+
+Geography: In what mountain range is Kicking Horse Pass?
+Rockies
+10
+
+Geography: In what state is Concord?
+New hampshire
+10
+
+Geography: In what state is Silicon Valley?
+California
+10
+
+Geography: In which African country do the Ashanti live?
+Ghana
+10
+
+Geography: In which African country might you visit Nairobi and Mombasa?
+Republic of kenya
+10
+
+Geography: In which American State is the Garden of the Gods?
+Colorado
+10
+
+Geography: In which British city is Usher Hall?
+Edinburgh
+10
+
+Geography: In which city did Anne Frank write her diary?
+Amsterdam
+10
+
+Geography: In which city is Fitzwilliam Museum?
+Cambridge
+10
+
+Geography: In which city is Michelangelos statue of David?
+Florence
+10
+
+Geography: In which city is Red Square?
+Moscow
+10
+
+Geography: In which city is Saint Paul's Cathedral?
+London
+10
+
+Geography: In which city is Schiphol airport?
+Amsterdam
+10
+
+Geography: In which city is the Arch of Hadrian?
+Athens
+10
+
+Geography: In which city is the Bridge of Sighs?
+Venice
+10
+
+Geography: In which city is the C.N. Tower?
+Toronto
+10
+
+Geography: In which city is the Canale Grande?
+Venice
+10
+
+Geography: In which city is the Coliseum located?
+Rome
+10
+
+Geography: In which city is the Colliseum located?
+Rome
+10
+
+Geography: In which city is the Dome of the Rock Mosque?
+Jerusalem
+10
+
+Geography: In which city is the famous Bond Street?
+London
+10
+
+Geography: In which city is the Sistine Chapel?
+Vatican City
+10
+
+Geography: In which city is the Wailing Wall?
+Jerusalem
+10
+
+Geography: In which city is Wembley Stadium?
+London
+10
+
+Geography: In which city is Westminster Abbey?
+London
+10
+
+Geography: In which city was Europes first hard paste porcelain made?
+Dresden
+10
+
+Geography: In which city was the most famous library of the ancient world?
+Alexandria
+10
+
+Geography: In which city would you find the Rotunda and Chamberlain Square?
+Birmingham
+10
+
+Geography: In which city would you see the famous marble bridge called the Rialto?
+Venice
+10
+
+Geography: In which continent are the Atlas mountains?
+Africa
+10
+
+Geography: In which continent would you find the Amazon river?
+South America
+10
+
+Geography: In which continent would you find the Amur river?
+Asia
+10
+
+Geography: In which continent would you find the Congo river?
+Africa
+10
+
+Geography: In which continent would you find the Lena river?
+Asia
+10
+
+Geography: In which continent would you find the Mackenzie river?
+North America
+10
+
+Geography: In which continent would you find the Mekong river?
+Asia
+10
+
+Geography: In which continent would you find the Mississippi river?
+North America
+10
+
+Geography: In which continent would you find the Niger river?
+Africa
+10
+
+Geography: In which continent would you find the Nile river?
+Africa
+10
+
+Geography: In which continent would you find the Ob river?
+Asia
+10
+
+Geography: In which continent would you find the Volga river?
+Europe
+10
+
+Geography: In which continent would you find the Yangtze river?
+Asia
+10
+
+Geography: In which continent would you find the Yellow river?
+Asia
+10
+
+Geography: In which continent would you find the Yenisey river?
+Asia
+10
+
+Geography: In which country are Europes only wild bison?
+Poland
+10
+
+Geography: In which country are the Tagalog a major ethnic group?
+Philippines
+10
+
+Geography: In which country did the 1976 Jonestown massacre occur?
+Guyana
+10
+
+Geography: In which country did the lambada dance originate?
+Brazil
+10
+
+Geography: In which country do the walloons live?
+Belgium
+10
+
+Geography: In which country does 100 kobo equal 1 naira?
+Nigeria
+10
+
+Geography: In which country is an Afghani a unit of currency?
+Afghanistan
+10
+
+Geography: In which country is Angel Falls?
+Venezuela
+10
+
+Geography: In which country is Brest (NOT Breast;-)?
+France
+10
+
+Geography: In which country is Chennai (formerly Madras)?
+India
+10
+
+Geography: In which country is Cusco?
+Peru
+10
+
+Geography: In which country is El Alamein?
+Egypt
+10
+
+Geography: In which country is Loch Ness?
+Scotland
+10
+
+Geography: in which country is ltatinga waterfall?
+Brazil
+10
+
+Geography: In which country is Madras?
+India
+10
+
+Geography: In which country is Mount Kosciuszko the highest peak?
+Australia
+10
+
+Geography: In which country is Normandy?
+France
+10
+
+Geography: In which country is Sapporo?
+Japan
+10
+
+Geography: In which country is the Calabria region?
+Italy
+10
+
+Geography: In which country is the Dalai Lama's palace?
+Tibet
+10
+
+Geography: In which country is the Great Victoria Desert?
+Australia
+10
+
+Geography: In which country is the largest active volcano in the world?
+Ecuador
+10
+
+Geography: In which country is the Machu Picchu?
+Peru
+10
+
+Geography: In which country is the source of the Amazon?
+Peru
+10
+
+Geography: In which country is the volcano Krakatoa?
+Indonesia
+10
+
+Geography: In which country is Tobruk?
+Libya
+10
+
+Geography: In which country is Valparaiso an important port?
+Chile
+10
+
+Geography: In which country was natural gas first discovered?
+Greece
+10
+
+Geography: In which country was the first Zoo?
+China
+10
+
+Geography: In which country was the World Wide Web invented?
+Switzerland
+10
+
+Geography: In which country would you find Ayers Rock?
+Australia
+10
+
+Geography: In which country would you find Dunkirk?
+France
+10
+
+Geography: In which country would you find the Yucatan Peninsula?
+Mexico
+10
+
+Geography: In which county are all ten of England's highest peaks?
+Cumbria
+10
+
+Geography: In which county is Hemel Hempstead?
+Hertfordshire
+10
+
+Geography: In which county is Jodrell Bank?
+Cheshire
+10
+
+Geography: In which county is Romney marsh?
+Kent
+10
+
+Geography: In which county is the naval base of Gosport?
+Hampshire
+10
+
+Geography: In which county is Wells Cathedral?
+Somerset
+10
+
+Geography: In which county would you find Alum Bay,Godshill and Carisbrooke Castle?
+Isle of Wight
+10
+
+Geography: In which English city did the new LS Lowry Arts Centre open in April 2000?
+Salford
+10
+
+Geography: In which English county is Helvellyn?
+Cumbria
+10
+
+Geography: In which English county is St Austell?
+Cornwall
+10
+
+Geography: In which English county is the holiday resort of Margate?
+Kent
+10
+
+Geography: In which English county is the holiday resort of St Ives?
+Cornwall
+10
+
+Geography: In which European is Mount Esja?
+Iceland
+10
+
+Geography: In which group of islands is the volcanic island Stromboli?
+Lipari islands
+10
+
+Geography: In which modern country is the site of the ancient city of Troy?
+Turkey
+10
+
+Geography: In which modern day country is ancient Troy?
+Turkey
+10
+
+Geography: In which ocean or sea are the Seychelles?
+Indian Ocean
+10
+
+Geography: In which part of the British isles would you find the bailiwicks?
+Channel Isles
+10
+
+Geography: In which range of Scottish Hills is Scald Law the highest peak?
+Pentland Hills
+10
+
+Geography: In which river did the Pied Piper drown the rats of Hamelin?
+Weser
+10
+
+Geography: In which sea is the Dogger bank?
+The North Sea
+10
+
+Geography: In which Spanish city is the Great Mosque known as La Mezquita which was begun in the 8th century and is now a Christian Cathedral?
+Cordoba
+10
+
+Geography: In which state are Gettysburg and the Liberty Bell?
+Pennsylvania
+10
+
+Geography: In which state are the Everglades?
+Florida
+10
+
+Geography: In which state are the Finger Lakes?
+New york
+10
+
+Geography: In which state is Appomattax?
+Virginia
+10
+
+Geography: In which state is Cape Hatteras?
+North Carolina
+10
+
+Geography: In which state is Hoover Dam?
+Arizona
+10
+
+Geography: In which state is Monument Valley?
+Utah
+10
+
+Geography: In which state is Mount McKinley?
+Alaska
+10
+
+Geography: In which state is Mount St. Helens?
+Washington
+10
+
+Geography: In which state is Mount Vernon?
+Virginia
+10
+
+Geography: In which state is Stone Mountain?
+Georgia
+10
+
+Geography: In which state is the Kennedy Space Center?
+Florida
+10
+
+Geography: In which state is the Mayo Clinic?
+Minnesota
+10
+
+Geography: In which state is the Natchez Trail?
+Mississippi
+10
+
+Geography: In which state is the Painted Desert?
+Arizona
+10
+
+Geography: In which state is Tupelo?
+Mississippi
+10
+
+Geography: In which state is Walla Walla?
+Washington
+10
+
+Geography: In which states are the Sierra Nevada mountains?
+California
+10
+
+Geography: In which US state are the Everglades?
+Florida
+10
+
+Geography: In which US state are the Green Mountains?
+Vermont
+10
+
+Geography: In which Welsh town is the Theatre Clwyd?
+Mold
+10
+
+Geography: In which year did Macau revert to China?
+1999
+10
+
+Geography: India ink was developed in what country?
+China
+10
+
+Geography: Inguri,Nurek and Guavio are amongst the worlds highest what?
+Dams
+10
+
+Geography: Inland sea separating Europe from N.Africa?
+Mediterranean Sea
+10
+
+Geography: Into what bay does the Ganges River flow?
+Bengal
+10
+
+Geography: Into what body of water does the Danube River flow?
+Black sea
+10
+
+Geography: Into what body of water does the Rhone River flow into?
+Mediterranean
+10
+
+Geography: Into what body of water does the Yukon River flow?
+Bering sea
+10
+
+Geography: Into what ocean does the Zambezi River empty?
+Indian Ocean
+10
+
+Geography: Into what sea does the Elbe River flow?
+North Sea
+10
+
+Geography: Into what sea does the Mackenzie River flow?
+Beaufort Sea
+10
+
+Geography: Into which bay does the Golden Gate Strait lead?
+San Francisco Bay
+10
+
+Geography: Into which estuary do the Trent and Ouse flow?
+Humber
+10
+
+Geography: Into which sea does the river Jordan flow?
+The Dead Sea
+10
+
+Geography: Is Belfast in Northern or Southern Ireland?
+Northern
+10
+
+Geography: Is Dublin in Northern or Southern Ireland?
+Southern
+10
+
+Geography: Island off the SW coast of Scotland, chief town Rothesay?
+Bute
+10
+
+Geography: Island republic led by Castro?
+Cuba
+10
+
+Geography: Japan consists of the four large islands of Hokkaido, ____, Shikoku, Kyushu, and about three thousand smaller islands
+Honshu
+10
+
+Geography: Japan sends the most what to Australia?
+Tourists
+10
+
+Geography: Jefferson City is the capital of ____
+Missouri
+10
+
+Geography: Kathmandu is the capital of ____
+Nepal
+10
+
+Geography: Khartoum is the capital of which country?
+Sudan
+10
+
+Geography: Kigali is the capital of ____
+Rwanda
+10
+
+Geography: Kingston is the capital of ____
+Jamaica
+10
+
+Geography: Kingston is the capital of which country?
+Jamaica
+10
+
+Geography: Kinloch Castle is one which Hebridean Island?
+Rum
+10
+
+Geography: Kinshasa is the capital of ____
+Democratic Republic of the Congo
+10
+
+Geography: Kuwait City is the capital of ____
+Kuwait
+10
+
+Geography: Kuwait is the capital of ____
+Kuwait
+10
+
+Geography: Lake Baikal in ____ is the only lake in the world that is deep enough to have deep-sea fish
+Siberia
+10
+
+Geography: Lansing is the capital of ____
+Michigan
+10
+
+Geography: Largest of the English national parks?
+The Peak District
+10
+
+Geography: Lesotho is a southern African Kingdom surround by which country?
+South Africa
+10
+
+Geography: Lesotho is a southern African Kingdom surrounded by which country?
+South Africa
+10
+
+Geography: Libreville is the capital of ____
+Gabon
+10
+
+Geography: Lilongwe is the capital of ____
+Malawi
+10
+
+Geography: Linz, Austria is a leading port on which river?
+Danube
+10
+
+Geography: Located 137 miles north of Rome, ____ is the oldest and one of the smallest republics in the world
+San marino
+10
+
+Geography: Located in the Indian Ocean just north of the equator, ____ had a highly developed civilization as early as the fifth century B.C
+Sri lanka
+10
+
+Geography: Located in the western yukon at 19,850 feet, it is Canada's highest point?
+Mount logan
+10
+
+Geography: Located in West Africa on the Gulf of Guinea, the nation of C?te d'Ivoire has been officially known as such since 1986. Previously, it was called the ____
+Ivory coast
+10
+
+Geography: Located on the Yucatan Peninsula, which juts into the Gulf of Mexico and the Caribbean, ____ was largely a stretch of empty beach until it opened for business in 1972. Close to Texas's border, it has become Mexico's most popular beach resort, with more than 25,000 hotel rooms
+Cancun
+10
+
+Geography: Location of the New York Stock Exchange?
+Wall street
+10
+
+Geography: Location of Yale University?
+New Haven
+10
+
+Geography: Location of Yasser Arafat�s headquarters?
+Ramallah
+10
+
+Geography: Lombard Street is London's equivalent of New York's ____
+Wall street
+10
+
+Geography: Lome is the capital of ____
+Togo
+10
+
+Geography: London, which street was thought of a cordon sanitaire to separate the East End form the West End?
+Regent street
+10
+
+Geography: Longest river in the southern hemisphere?
+Amazon
+10
+
+Geography: Longest river of Asia, in China, about 5526 km (about 3434 mi) in length?
+Yangtze
+10
+
+Geography: Luang prabang was the capital of ____
+Laos
+10
+
+Geography: Luxembourg is the capital of ____
+Luxembourg
+10
+
+Geography: Madagascar is off which coast of Africa?
+East
+10
+
+Geography: Madrid and Lisbon are both located near this river?
+Tagus
+10
+
+Geography: Mainland Great Britain is the ____ largest island in the world (number only)
+Eight
+10
+
+Geography: Malabo is the capital of ____
+Equatorial Guinea
+10
+
+Geography: Managua is the capital of ____
+Nicaragua
+10
+
+Geography: Many cities in our country bear the names of other countries. The U.S. city of Mexico can be found in the states of Indiana, Maine, and ____
+Missouri
+10
+
+Geography: Maputo is the capital of ____
+Mozambique
+10
+
+Geography: Maracaibo is the second largest city in which South American country?
+Venezuela
+10
+
+Geography: Marbella is a resort on which Spainsh coast?
+Costa del sol
+10
+
+Geography: Matlock is the administrative centre of which county?
+Derbyshire
+10
+
+Geography: Mauritania is in which continent?
+Africa
+10
+
+Geography: Mayfair, London is a district of little streets near ____
+Hyde Park
+10
+
+Geography: Mecca is a city in which country?
+Saudi arabia
+10
+
+Geography: Members of a people who had a powerful leader named Shaka?
+Zulus
+10
+
+Geography: Meridians converge at the ____
+Pole s
+10
+
+Geography: Mexico City is the capital of ____
+Mexico
+10
+
+Geography: Miami, Florida, is the most southerly major city in the continental United States, sitting about two degrees north of the ____
+Tropic of cancer
+10
+
+Geography: Montevideo is the capital of ____
+Uruguay
+10
+
+Geography: More than two-thirds of Earth's land surface lies north of the ____
+Equator
+10
+
+Geography: Mount Carmel is one of Chicago's finest graveyards, and is the oldest Catholic cemetery in the western part of the Archdiocese of Chicago. The vast majority of persons buried here are Italian. There are more than 400 private Italian family mausoleums in Mount Carmel, more than any other cemetery in the area. The most popular attraction is the Bishops' mausoleum, which received over 50,000 visitors in the two months following the death of Cardinal Bernardin in October 1996. But to many, Mount Carmel is equally famous for the graves of Chicago's notorious gangsters of the 1920s - including the infamous ____
+Al Capone
+10
+
+Geography: Mount Olympus is on the border of which 2 regions of greece?
+Macedonia and thesaly
+10
+
+Geography: Mount Victoria is the highest peak of this island country?
+Fiji
+10
+
+Geography: Mountains of NW Africa?
+Atlas
+10
+
+Geography: Myanmar was known as ____ until 1989
+Burma
+10
+
+Geography: Myrtle Beach, ____ has the most mini-golf courses per area in the U.S. At last count, there were 47 in a 60 mile radius
+South carolina
+10
+
+Geography: N Irish county to the south of Lough Neagh?
+Armagh
+10
+
+Geography: Name a country which has the same name as a bird?
+Turkey
+10
+
+Geography: Name given to the deep limestone shafts in N Yorkshire-they give their name to the pass between Wensleydale and Swaledale?
+Buttertubs
+10
+
+Geography: Name of the Aztec city on whose ruins Mexico City was founded?
+Tenochtitlan
+10
+
+Geography: Name Senegals chief port?
+Dakar
+10
+
+Geography: Name the capital city of Massachusetts?
+Boston
+10
+
+Geography: Name the capital city of Rhode Island?
+Providence
+10
+
+Geography: Name the capital of Argentina?
+Buenos aires
+10
+
+Geography: Name the capital of Bolivia?
+La paz
+10
+
+Geography: Name the capital of Brazil?
+Brasilia
+10
+
+Geography: Name the capital of Brazil?
+Brasilia
+10
+
+Geography: Name the capital of Italy?
+Rome
+10
+
+Geography: Name the capital of Nepal?
+Kathmandu
+10
+
+Geography: Name the capital of Saudi Arabia?
+Riyadh
+10
+
+Geography: Name the capital of Spain?
+Madrid
+10
+
+Geography: Name the city at the west end of Lake Superior?
+Duluth
+10
+
+Geography: Name the continent that consists of a single country?
+Australia
+10
+
+Geography: Name the desert located in south-east California?
+Mojave
+10
+
+Geography: Name the desrt located in south-east California?
+Mojave
+10
+
+Geography: Name the expanse of water between New Zealand's North and South Islands?
+Cook strait
+10
+
+Geography: Name the four main islands that make up Japan?
+Hokkaido
+10
+
+Geography: Name the historic region in Europe that is partly in Belgium, France and Holland which was the scene of heavy fighting in both world wars?
+Flanders
+10
+
+Geography: Name the large mountain chain in the eastern U.S.A?
+The appalachian s
+10
+
+Geography: Name the large mountain chain in the eastern USA?
+The Appalachians
+10
+
+Geography: Name the largest cathedral in the world?
+St. peter's
+10
+
+Geography: Name the largest city in Canada?
+Toronto
+10
+
+Geography: Name the largest fresh-water lake in Florida?
+Okeechobee
+10
+
+Geography: Name the largest island in the world?
+Australia
+10
+
+Geography: Name the largest island in the world?
+Greenland
+10
+
+Geography: Name the largest lake in Australia?
+Eyre
+10
+
+Geography: Name the largest port in the world?
+Rotterdam, the Netherlands
+10
+
+Geography: Name the largest river forming part of the U.S. - Mexican border?
+Rio grande
+10
+
+Geography: Name the largest river forming part of the US-Mexican border?
+Rio grande
+10
+
+Geography: Name the last province to become part of Canada?
+Newfoundland
+10
+
+Geography: Name the longest river in Asia?
+Yangtze
+10
+
+Geography: Name the longest river in Nigeria?
+Niger
+10
+
+Geography: Name the longest river in Nigeria?
+The niger
+10
+
+Geography: Name the most north-easterly of the 48 contiguous states?
+Maine
+10
+
+Geography: Name the only Central American country without an Atlantic coastline?
+El salvador
+10
+
+Geography: Name the sea between Asia Minor and Greece?
+Aegean
+10
+
+Geography: Name the sea between Korea and China?
+Yellow Sea
+10
+
+Geography: Name the sea north of Alaska?
+Beaufort
+10
+
+Geography: Name the sea north of Murmansk, Russia?
+Barents
+10
+
+Geography: Name the sea west of Alaska?
+Bering
+10
+
+Geography: Name the second largest country in Africa?
+Algeria
+10
+
+Geography: Name the second largest country in South America?
+Argentina
+10
+
+Geography: Name the second largest lake in North America?
+Huron
+10
+
+Geography: Name the smallest of the Great Lakes?
+Ontario
+10
+
+Geography: Name the strait joining the Atlantic Ocean and the Mediterranean Sea?
+Gibraltar
+10
+
+Geography: Name the U.S. state with the smallest population?
+Alaska
+10
+
+Geography: Name the world's most photographed and most climbed mountain?
+Fuji
+10
+
+Geography: Nashville is the capital of ____
+Tennessee
+10
+
+Geography: Nassau is the capital of which country?
+Bahamas
+10
+
+Geography: National capitals:____ is the capital of Luxembourg (europe)
+Luxembourg
+10
+
+Geography: National capitals:____ is the capital of Mexico
+Mexico city
+10
+
+Geography: National capitals:____ is the capital of Morocco (africa)
+Rabat
+10
+
+Geography: National capitals:____ is the capital of Portugal (europe)
+Lisbon
+10
+
+Geography: National capitals:____ is the capital of United States
+Washington dc
+10
+
+Geography: National capitals:____ is the capital of Uruguay (south America)
+Montevideo
+10
+
+Geography: native American indians are of which human subrace? (e.g. caucasian)?
+Mongoloid
+10
+
+Geography: Native inhabitant of Australia?
+Aborigine
+10
+
+Geography: Nature's totem, the awe-inspiring, 325-foot spire of Chimney Rock in ____, informed Pony Express riders and frontiersmen they had crossed the American plains and that mountains lay ahead
+Nebraska
+10
+
+Geography: Near to which British Seaside resort are the Great and Little Ormes?
+Llandudno
+10
+
+Geography: Near what river is the Temple of Karnak?
+Nile
+10
+
+Geography: Near which city is Lulsgate airport?
+Bristol
+10
+
+Geography: Near which North American city are the Plains of Abraham?
+Quebec
+10
+
+Geography: New Delhi is the capital of ____
+India
+10
+
+Geography: New name for Burma?
+Myanmar
+10
+
+Geography: new zealand has over how many kilometres of beautiful coastline?
+15000 km
+10
+
+Geography: New zealand's most famous glaciers on the south island's west coast are the?
+Franz josef and fox
+10
+
+Geography: new zealand's southern alps have a number of glaciers, the largest being?
+Tasman glacier
+10
+
+Geography: Nicosia is the capital of ____
+Cyprus
+10
+
+Geography: North African port on the Mediterranean?
+Tunis
+10
+
+Geography: Of the 3,000 islands of the Bahama chain in the ____, only 20 are inhabited
+Caribbean
+10
+
+Geography: Of the ten strongest earthquakes ever recorded in the world, three have occurred in ____
+Alaska
+10
+
+Geography: Of the twenty-five highest mountains on Earth, nineteen are in the ____
+Himalayas
+10
+
+Geography: Of what are Quemoy and Matsu part?
+Taiwan
+10
+
+Geography: Of which Australian state is Adelaide the capital?
+Southern Australia
+10
+
+Geography: Of which country does the Kalahari Desert cover 84%?
+Botswana
+10
+
+Geography: Of which country is Christmas Island a territory?
+Australia
+10
+
+Geography: Of which country was Flt Lt Jerry Rawlings leader?
+Ghana
+10
+
+Geography: Of which country was Kim Il Sung Prime Minister and President for 46 yars?
+North korea
+10
+
+Geography: Of which coutry was Ferdinand Marcosm president from 1965 - 1986?
+Philippines
+10
+
+Geography: Of which Far Eastern country are the islands of Luzon,Mindanao,Samar and Negros a part?
+The philippines
+10
+
+Geography: Okinawa is a volcano in which country?
+Japan
+10
+
+Geography: Old Faithful, the jewel of ____ in Calistoga, California, is not as dependable as it used to be. Because of vandalism and age-old geological shifts, the world's largest geyser is slowly losing its reputation for erupting like clockwork. In 1970, the average time between eruptions of the 126-year-old geyser was 66 minutes. The average today is about once every 77 minutes, or 18 times a day instead of 21. The geyser's power hasn't diminished, however
+Yellowstone national park
+10
+
+Geography: On an average day in the mid 1990s, more than 13,000 people trekked to the ____ in Arizona. Because of the wear and tear on the natural wonder's fragile environment, tourism is now being limited, as are sight-seeing helicopters and motor vehicles in the national park
+Grand canyon
+10
+
+Geography: On March 27, 1964, North America's strongest recorded earthquake, with a moment magnitude of 9.2, rocked central ____
+Alaska
+10
+
+Geography: On the banks of which river is the Taj Mahal situated?
+Jumna
+10
+
+Geography: On the banks of which river is the Taj Mahal?
+River Jumna
+10
+
+Geography: On the London Underground, which station has a different name on two of its platforms?
+Bank and Monument
+10
+
+Geography: On the site of which ancient city is Bodrum in Turkey built?
+Halicanassus
+10
+
+Geography: On what island is Honolulu?
+Oahu
+10
+
+Geography: On what island is Pearl Harbor?
+Oahu
+10
+
+Geography: On what island is Pearl Harbour?
+Oahu
+10
+
+Geography: On what island is the Blue Grotto?
+Capri
+10
+
+Geography: On what island is the U.S. naval base, Guantanamo?
+Cuba
+10
+
+Geography: On what mountain are four presidents' faces carved?
+Rushmore
+10
+
+Geography: On what peninsula are Spain and Portugal located?
+The iberia n peninsula
+10
+
+Geography: On what river is Blackpool?
+River Fylde
+10
+
+Geography: On what river is Liverpool?
+Mersey
+10
+
+Geography: On what river is the capital city of Canada?
+Ottawa
+10
+
+Geography: On what sea is the Crimea?
+Black Sea
+10
+
+Geography: On which city did Charles Darrow base his original game of monopolY patented in the 1930s?
+Atlantic city
+10
+
+Geography: On which coast of Australia is Sydney?
+East
+10
+
+Geography: On which Island is Mount Suribachi?
+Iwo Jima
+10
+
+Geography: on which island is Tokyo?
+Honshu
+10
+
+Geography: On which London Street is Selfridges?
+Oxford Street
+10
+
+Geography: On which ocean are the coastal resorts of The Gambia?
+Atlantic ocean
+10
+
+Geography: On which river does Belfast stand?
+Lagan
+10
+
+Geography: On which river does Canterbury stand?
+Stour
+10
+
+Geography: On which river is London, England?
+Thames
+10
+
+Geography: On which river is Oporto in Portugal?
+Duoro
+10
+
+Geography: On which river is Rome located?
+Tiber
+10
+
+Geography: On which river is the Aswan High Dam?
+Nile
+10
+
+Geography: On which river is the Hoover Dam?
+Colorado
+10
+
+Geography: On which river was Rome built?
+Tiber
+10
+
+Geography: On which Scottish Island is the stone circle known as the Ring of Brogar?
+Mainland island, the orkneys
+10
+
+Geography: One of a group of peoples inhabiting N Canada, Greenland, Alaska and E Siberia?
+Eskimo
+10
+
+Geography: One of the deadliest diseases in the world is Japanese River Fever, with a mortality rate of more than 50 percent. It is found only near rivers in certain areas of Japan, China, Korea, Burma, and ____
+India
+10
+
+Geography: One of the Shetland Isles noted for its multi coloured knitting designs?
+Fair isle
+10
+
+Geography: Only one Canadian province borders at least one Great Lake: ____
+Ontario
+10
+
+Geography: Ottawa is which country's capital?
+Canada
+10
+
+Geography: Ouagadougou is the capital of ____
+Burkina Faso
+10
+
+Geography: Over 75% of the Earth's surface is covered by some form of ____
+Water
+10
+
+Geography: Panama, because of a bend in the isthmus, is the only place in the world where one can see the sun rise on the Pacific Ocean and set on the ____
+Atlantic
+10
+
+Geography: Port Louis is the capital of ____
+Mauritius
+10
+
+Geography: Port Moresby is the capital of ____
+Papua New Guinea
+10
+
+Geography: Portugal is bordered by only want country, what is it?
+Spain
+10
+
+Geography: Principality in the Pyrenees?
+Andorra
+10
+
+Geography: Rabat is the capital of which country?
+Morocco
+10
+
+Geography: Raleigh is the capital of ____
+North Carolina
+10
+
+Geography: Rangoon is the capital of ____
+Burma
+10
+
+Geography: Residence of the British Royal family in Scotland?
+Balmoral Castle
+10
+
+Geography: Reykjavik, ____ is likely the cleanest capital city in the world
+Iceland
+10
+
+Geography: Richmond is the capital of ____
+Virginia
+10
+
+Geography: River flowing through Lake Geneva?
+Rhone
+10
+
+Geography: River of Gateshead?
+Tyne
+10
+
+Geography: River of Leeds?
+Aire
+10
+
+Geography: River of Paris?
+Seine
+10
+
+Geography: River of York?
+Ouse
+10
+
+Geography: River that enters the Atlantic at New York City?
+Hudson
+10
+
+Geography: rivers: what direction does the nile river flow?
+North
+10
+
+Geography: rivers: what is the longest river in the British isles?
+The shannon
+10
+
+Geography: rivers: what river tumbles over victoria falls?
+The zambezi
+10
+
+Geography: Riyadh is the capital of ____
+Saudi Arabia
+10
+
+Geography: Roman defensive structure built across the extreme North of England?
+Hadrians wall
+10
+
+Geography: Rome is the capital of ____
+Italy
+10
+
+Geography: Roxette came from which European country?
+Sweden
+10
+
+Geography: Ruby Falls, America's highest underground waterfall open to the public, is located on historic Lookout Mountain in Chattanooga, ____
+Tennessee
+10
+
+Geography: S American republic, capital Caracus?
+Venezuela
+10
+
+Geography: San Francisco Bay is located near what city?
+San francisco
+10
+
+Geography: San Francisco was the birthplace of the ____ in 1945. After a brief stop at Lake Success, New York, it was moved to New York City because many European nations believed San Francisco was too far to travel
+United nations
+10
+
+Geography: Santiago is the capital of ____
+Chile
+10
+
+Geography: Santo Domingo is the capital of ____
+Dominican Republic
+10
+
+Geography: Savannah, ____ was founded in 1733 as a haven for British debtors
+Georgia
+10
+
+Geography: Scandanavian country ruled by King harald?
+Norway
+10
+
+Geography: Scarefell pike is the highest point of which US national park?
+Lake district
+10
+
+Geography: What is the second largest city in Denmark?
+Aarhus
+10
+
+Geography: Seoul is the capital of which country?
+South korea
+10
+
+Geography: Sheffield is situated on the confluence of the River Don and which other river?
+Sheaf
+10
+
+Geography: Singapore is the capital of which country?
+Singapore
+10
+
+Geography: Smallest American state?
+Rhode Island
+10
+
+Geography: Smallest of the Great lakes?
+Ontario
+10
+
+Geography: Smallest South African Province?
+Natal
+10
+
+Geography: Sometimes land boundaries are not uniform. ____ and the Netherlands have an underground boundary that differs from the surface boundary shown on maps. In 1950, the two countries agreed to move the underground boundary so as not to divide coal mines between the two countries
+Belgium
+10
+
+Geography: Southernmost point of England, in Cornwall?
+Lizard point
+10
+
+Geography: Springfield is the capital of ____
+Illinois
+10
+
+Geography: St. George's is the capital city of what island country?
+Grenada
+10
+
+Geography: State capital of New Jersey?
+Trenton
+10
+
+Geography: Stonehenge is in which English county?
+Wiltshire
+10
+
+Geography: Strait between Wales and the Isle of Angelsey?
+Menai
+10
+
+Geography: Strangeray Springs cattle station in ____ is the largest ranch in the world. It's area, 30,029 square kilometers, and is only slightly smaller than the European country of Belgium
+South Australia
+10
+
+Geography: Surfing is believed to have originated here?
+Hawaii
+10
+
+Geography: Swiss city, HQ of the Red Cross?
+Geneva
+10
+
+Geography: Sydney is on the east coast of ____
+Australia
+10
+
+Geography: Taiwan was known formerly as ____
+Formosa
+10
+
+Geography: Taumatawhakatangihangakoauauotamateaturipukakapikimaungahoronukupokaiwhenuakitanatahu is the name of a hill in?
+New Zealand
+10
+
+Geography: Tegucigalpa is the capital of ____
+Honduras
+10
+
+Geography: Teh central part of Bejing?
+Forbidden city
+10
+
+Geography: Tha name of which Caribbean island means land of many springs?
+Jamaica
+10
+
+Geography: The ____ comprises an area as large as Europe. Its total land mass is some 3,565,565 square miles
+Sahara desert
+10
+
+Geography: the ____ geyser at whakarewarewa is in rotorua
+Pohutu
+10
+
+Geography: The ____ got its name from the occasionally extensive blooms of algae that, upon dying, turn the sea's normally intense blue-green waters to red
+Red sea
+10
+
+Geography: The ____ is actually a desert environment, averaging about the same amount of monthly rainfall as the Sahara Desert
+South pole
+10
+
+Geography: The ____ is not a sea, but a landlocked salt lake, 45 miles long by 9 miles wide
+Dead sea
+10
+
+Geography: The ____ is the lowest body of water on Earth at 1,315 feet below sea level at its lowest point
+Dead sea
+10
+
+Geography: The ____ is the lowest country in the world. It is estimated that 40 percent of the land is below sea level
+Netherlands
+10
+
+Geography: The ____ is the world's oldest desert, and the only desert inhabited by elephant, rhino, giraffe, and lion
+Namib
+10
+
+Geography: The ____ is the world's smallest ocean. It is mostly covered by solid ice, ice floes, and icebergs
+Arctic ocean
+10
+
+Geography: The ____ River has 1,100 tributary streams
+Amazon
+10
+
+Geography: The ____ river has frozen over at least twice, in 829 and 1010 A.D
+Nile
+10
+
+Geography: The 4,200-meter-high summit of Mauna Kea, a dormant volcano, on the island of ____ hosts the world's largest astronomical observatory, with telescopes operated by astronomers from eleven countries. The combined power of Mauna Kea's telescopes is fifteen times greater than that of the Palomar telescope in California - for many years, the world's largest - and fifty times greater than that of the Hubble Space Telescope. Since astronomers observe the skies at night and car headlights interfere with observations, it is preferred that visitors drive to the summit area between sunrise and sunset. Daytime visitors are also welcomed
+Hawaii
+10
+
+Geography: The administrative capital of South Africa?
+Pretoria
+10
+
+Geography: The Amazon river pushes so much water into the ____ that, more than a hundred miles at sea, off the mouth of the river, one can dip fresh water out of the ocean and drink it
+Atlantic
+10
+
+Geography: The ancient cavern system of Ka`eleku Caverns at Hana on the Hawaiian island ____, was created from hot molten lava flowing 30,000 years ago. Tourists can hike with experienced guides deep into the subterranean passages of one of the world's largest lava tubes
+Maui
+10
+
+Geography: The Arctic ocean is the smallest and ____
+Shallowest
+10
+
+Geography: The Auckland Islands belong to which country?
+New zealand
+10
+
+Geography: The aurora borealis is most commonly observed in which country?
+Canada
+10
+
+Geography: The beautiful Antibes on the ____ is the luxury-yacht capital of the world. Antibes also hosts one of the largest antique shows in Europe each spring
+French riviera
+10
+
+Geography: The Bingham Canyon copper mine in ____ is the biggest manmade hole on Earth. It is more than half a mile deep and 2.5 miles across. An astronaut can see this hole from the space shuttle with his bare eyes
+Utah
+10
+
+Geography: The Bledowska Desert, in ____ is the only true desert in Europe
+Poland
+10
+
+Geography: The border between ____ and the U.S. is the world's longest frontier. It stretches 3,987 miles (6,416 km)
+Canada
+10
+
+Geography: The capital of the Balearic Islands?
+Palma de Mallorca
+10
+
+Geography: The centre of which English city has large outdoor sculptures The River,Youth and The Guardians by Dhruva Mistry?
+Birmingham
+10
+
+Geography: The Channel Tunnel links England with which European country?
+France
+10
+
+Geography: The Chinese call it Huang Ho, what do we call it?
+Yellow River
+10
+
+Geography: The Chinese city of Beijing was previously known as what?
+Peking
+10
+
+Geography: The City of Bridges in ____ are to be found in Saskatoon, Saskatchewan. The city of Saskatoon was named for the red berries that grew along its riverbank
+Canada
+10
+
+Geography: The city of Cardiff lies on which Channel?
+Bristol channel
+10
+
+Geography: The city of Los Angeles is more than one-third the size of the entire state of ____
+Rhode island
+10
+
+Geography: The city of Vienna stands on which river?
+Danube
+10
+
+Geography: The countries of Belgium, Netherlands, and Luxembourg are together called ____
+Benelux
+10
+
+Geography: The distance from Honolulu to New York is greater than the distance from Honolulu to ____
+Japan
+10
+
+Geography: The divorce capital of the world?
+Reno,Nevada
+10
+
+Geography: The Federated States of ____, located at the Eastern Caroline Islands in the northwest Pacific Ocean, has more than 600 islands and 40 volcanos
+Micronesia
+10
+
+Geography: The first city to reach a population of 1 million people was ____, Italy in 133 B.C. London, England reached the mark in 1810 and New York City, USA made it in 1875. Today, there are over 300 cities in the world that boast a population in excess of 1 million
+Rome
+10
+
+Geography: the first country along the great circle route due south from san francisco?
+Canada
+10
+
+Geography: The first letter of every continent's name is the same as the last: AmericA, AntarcticA, EuropE, AsiA, ____, AfricA
+Australia
+10
+
+Geography: The french call it Lac Leman, the Germans Genfersee, what do we call it?
+Lake geneva
+10
+
+Geography: The geographic center of ____ is located in the city of Thunder Bay
+Canada
+10
+
+Geography: The Gulf countries of the Middle East are located on the Arabian Gulf - it is important when visiting or conducting business in the Gulf countries to not refer to that body of water as the ____
+Persian gulf
+10
+
+Geography: The Hawaiian Islands are the projecting tops of the biggest mountain range in the world. Mauna Kea, on the island of Hawaii, is the largest mountain on Earth - though partially submerged, it is 4,000 feet taller than ____
+Mount everest
+10
+
+Geography: The Hebrides are part of this country?
+Scotland
+10
+
+Geography: The highest mountain on Earth, ____, reaches only about halfway through the lowest layer of the troposphere
+Mount Everest
+10
+
+Geography: The highest point in Pennsylvania is lower than the lowest point in ____
+Colorado
+10
+
+Geography: the highest temperature ever recorded on earth was in which country?
+Libya
+10
+
+Geography: The Ionian and Cyclades are island groups of which country?
+Greece
+10
+
+Geography: The islands of ____ have no rivers or lakes. The inhabitants must use rain for water
+Bermuda
+10
+
+Geography: The Italian city of ____, where Shakespeare's lovers Romeo and Juliet lived, receives about 1,000 letters addressed to Juliet every Valentine's Day
+Verona
+10
+
+Geography: The King Ranch in ____ is bigger than the state of Rhode Island. It comprises 1.25 million acres and was the first ranch in the world to be completely fenced in. At one time, its borders were guarded by armed patrol
+Texas
+10
+
+Geography: The land area of the country of ____ is slightly smaller than Alabama
+Greece
+10
+
+Geography: The largest bay in the world bordering only one country, Canada?
+Hudson bay
+10
+
+Geography: The largest bird colony in the world is located on the islands off the coast of Peru. Ten million Peruvian boobies and cormorants reside there. Their diet - anchovies - produces the world's finest fertilizer, guano. Because of the value of their droppings, the birds were placed under strict protection by the ____
+Incas
+10
+
+Geography: The largest city on the Mississippi River is ____
+Memphis, tennessee
+10
+
+Geography: the largest island on the west coast of north America is?
+Vancouver
+10
+
+Geography: The largest lake in Australia is ____, measuring 3,420 square miles (8,885 sq. km)
+Eyre
+10
+
+Geography: The largest rock mass in the world?
+Ayres Rock
+10
+
+Geography: The Little Mermaid is found in the harbour of which city?
+Copenhagen
+10
+
+Geography: The longest main street in America, 33 miles in length, can be found in Island Park, ____
+Idaho
+10
+
+Geography: The longest river in Western Europe is ____
+Rhine
+10
+
+Geography: The majestic eastern slopes of Table Mountain in ____ create the home of the world-renowned Kirstenbosch Botanical Gardens. The gardens are dedicated to the preservation of the indigenous plants of South Africa. More than 6,000 different species of plant are grown here, including ancient cycads and many species of erica, pelargoniums, ferns, and rare succulents
+Cape Town
+10
+
+Geography: The Monegasque - natives of ____ - constitute only about 16 percent of the nation's population
+Monoco
+10
+
+Geography: The most densely populated state in the United States is ____
+New jersey
+10
+
+Geography: The most famous natural landmark in ____ is the Giant's Causeway. Comprised of approximately 37,000 dark basalt columns packed together, they were formed when a volcanic eruption spewed molten basalt out 55 million years ago. As the basalt cooled, these unique polygonal structures were formed. Most of the columns of the Giant's Causeway form a six-sided honeycomb pattern. Some have as many as ten sides and measure about 12 inches across and up to forty feet in length
+Northern Ireland
+10
+
+Geography: The muskellunge, a fierce fighting fish that can weigh in at around 70 pounds, is the official state fish of ____
+Wisconsin
+10
+
+Geography: The name of which United States city means in Spanish The Meadows?
+Las vegas
+10
+
+Geography: The nation of ____ covers approximately the same land area as the state of Wisconsin. Yet it ranks eighth in population among all the world's countries
+Bangladesh
+10
+
+Geography: The nation of ____ has an AK-47 assault rifle on its flag
+Mozambique
+10
+
+Geography: The nation of ____, located in the Atlantic Ocean 450 miles west of the western tip of Africa, has no minerals except salt and pozzolana
+Cape verde
+10
+
+Geography: The Nationalist Chinese occupy this island?
+Taiwan
+10
+
+Geography: the northernmost point in mainland Australia is on this geographic feature?
+Cape york
+10
+
+Geography: The northernmost U.S. state capital is ____
+Juneau, Alaska
+10
+
+Geography: The official language of Austria is what?
+German
+10
+
+Geography: The official state musical instrument in South Dakota is the ____
+Fiddle
+10
+
+Geography: The old Roman province of Lusitania is now called ____. Some parts of Lusitania are also found in Spain
+Portugal
+10
+
+Geography: the only national airline that has never had a crash nor a forced landing?
+Qantas
+10
+
+Geography: The only river that flows both north and south of the equator is the ____. It crosses the equator twice
+Congo
+10
+
+Geography: The Oregon Trail (1840-1860), the route used during the westward migrations of the United States, started in ____ and ended in Oregon and was about 2,000 miles long
+Missouri
+10
+
+Geography: The peacock is the national bird of ____
+India
+10
+
+Geography: The Philippines is an archipelago of 7,107 islands in the ____
+Pacific ocean
+10
+
+Geography: The pillars of Hercules stand on either side of which stretch of water?
+Straits of Gibralter
+10
+
+Geography: The Pindus mountains run north to south through which country?
+Greece
+10
+
+Geography: The planner of the city of ____ was French architect Pierre L'Enfant. In 1791, it was known as Federal City
+Washington d.c
+10
+
+Geography: The prophet Muhammad was born in Mecca, in which city did he die?
+Medina
+10
+
+Geography: The remains of which 12th century Cistercian abbey stand just outside Ripon?
+Fountains abbey
+10
+
+Geography: The River Seine runs through which European capital city?
+Paris
+10
+
+Geography: The roadrunner is the official bird of ____
+New Mexico
+10
+
+Geography: The Salto Alto (Angel Falls) in ____ is the highest waterfall known. It is more than twenty times higher than Niagara
+Venezuela
+10
+
+Geography: The Saturn V rocket was built by what country?
+USA
+10
+
+Geography: The seven natural wonders of the world are suggested to be Mount Everest in Nepal/Tibet; Victoria Falls in Zambia/Zimbabwe; Grand Canyon in Arizona; ____ in Australia; the Northern Lights; Paricutin volcano in Mexico; and Rio de Janeiro Harbor in Brazil
+Great barrier reef
+10
+
+Geography: The small island of ____ in the Caribbean, off the coast between Cancun and Playa del Carmen, has long been known as a diver's paradise. Its clear water hosts the second-largest reef in the world
+Cozumel
+10
+
+Geography: The smallest island with country status is ____ in Polynesia, at just 1.75 square miles (4.53 sq km)
+Pitcairn
+10
+
+Geography: The smallest U.S. state in area, west of the Mississippi River, is ____
+Hawaii
+10
+
+Geography: The southernmost point in the 48 American states (excluding Alaska, Hawaii)?
+Key west
+10
+
+Geography: The standard single oar used by gondoliers in ____ is 14 feet long
+Venice
+10
+
+Geography: The state of ____ has one city named Sisters and another called Brothers. Sisters got its name from a nearby trio of peaks in the Cascade Mountains known as the Three Sisters. Brothers was named as a counterpart to Sisters
+Oregon
+10
+
+Geography: The streets of ____ were lit by gaslights for the first time in 1807. Before that, torches were used
+London
+10
+
+Geography: the strongest recorded earthquake (8.9) occurred in which country in 1933?
+Japan
+10
+
+Geography: The sun sets in the ____
+West
+10
+
+Geography: The Sutherland Falls are amongst the highest in the world, where are they?
+New Zealand
+10
+
+Geography: the tallest building in the southern hemisphere is in which city?
+Melbourne
+10
+
+Geography: The territory of French Polynesia covers an area, including inland water, of about 1,550 square miles. The capital is ____ on the island of Tahiti, the largest of the islands. There are 130 French Polynesian islands in all
+Papeete
+10
+
+Geography: The Thatcher Ferry Bridge crosses what canal?
+Panama Canal
+10
+
+Geography: The town of Hamilton, Ontario, Canada, is closer to the equator than it is to the ____
+North pole
+10
+
+Geography: The town of Tequila is in which country?
+Mexico
+10
+
+Geography: The two Canadian provinces that are landlocked are ____ and Saskatchewan
+Alberta
+10
+
+Geography: The U.S. coastline, comprised of the Atlantic, ____, and Gulf waters, involves 25 of the 48 mainland states
+Pacific
+10
+
+Geography: The U.S. state of ____ has 3,500 miles of coastline
+Maine
+10
+
+Geography: The U.S. state that contains the most square miles of inland water is ____
+Alaska
+10
+
+Geography: The United States is made up of ____ states
+50
+10
+
+Geography: The United States would fit into the continent of ____ three and a half times
+Africa
+10
+
+Geography: The Victoria Falls are shared between Zimbabwe and which other country beginning with the same letter?
+Zambia
+10
+
+Geography: The Volta is the largest river in which country?
+Ghana
+10
+
+Geography: The water of the ____ is seven to eight times saltier than ocean water
+Dead sea
+10
+
+Geography: The white cliffs of ____ is a natural landmark located at the southern coast of England. The distinctive color of the cliffs was actually created by the accumulation of skeletal remains of tiny organisms deposited over thousands of centuries. Sea level was higher millions of years ago, and after the waters receded, the whitish residual remains of the creatures were exposed
+Dover
+10
+
+Geography: The white rose is the emblem of which county in England?
+Yorkshire
+10
+
+Geography: The world's biggest meteor crater is located in New Quebec, ____
+Canada
+10
+
+Geography: The world's longest railway is in ____. The Central Railway climbs to 15,694 feet in the Galera tunnel, 108 miles from Lima. Tourists take it to get to the ruins of Machu Picchu
+Peru
+10
+
+Geography: The world's tallest mountains, the ____, are also the fastest growing. Their growth - about half an inch a year - is caused by the pressure exerted by two of Earth's continental plates (the Eurasian plate and the Indo-Australian plate) pushing against one another
+Himalayas
+10
+
+Geography: The worlds first mid air collision took place over what country?
+Austria
+10
+
+Geography: There are 42 other year-round research stations on Antarctica. All told, about ____ people live on Antarctica in summer, 1,000 in winter
+4,000
+10
+
+Geography: There are approximately 100,000 glaciers in ____
+Alaska
+10
+
+Geography: There are approximately 320,000 ____ in the world
+Icebergs
+10
+
+Geography: There are four mountain ranges in New York State: Adirondack, Catskill, Shawangunk, and ____
+Taconic
+10
+
+Geography: There are sand dunes in Arcachon, ____ that are 350 feet high
+France
+10
+
+Geography: There is a U.S. state capital that was named after a famous German. Bismarck, North Dakota, was named after ____
+Otto von bismarck
+10
+
+Geography: There is only one river in the world that has its source near the equator and from there flows into a temperate zone: the ____. For some little-understood reason, the flow of most rivers is in the opposite direction
+Nile
+10
+
+Geography: This Canadian island is the world's fifth largest?
+Baffin
+10
+
+Geography: This Caribbean island rebelled AGAINST independence, for British colonialism?
+Anguilla
+10
+
+Geography: This City has the oldest Metro System in the world?
+London
+10
+
+Geography: This country is divided at the 38th parallel?
+Korea
+10
+
+Geography: this country is home to the world's oldest continuous local democracy?
+Iceland
+10
+
+Geography: This country lost the largest percentage of its men in a single war (~70%)?
+Paraguay
+10
+
+Geography: This imaginary line approximately follows the 180 degree meridian through the Pacific Ocean?
+International date line
+10
+
+Geography: This is the bridge with the longest span in the U.S.A?
+Verrazano Narrows
+10
+
+Geography: This is the only borough of New York City that is not on an island?
+Bronx
+10
+
+Geography: This is the port city serving Tokyo?
+Yokohama
+10
+
+Geography: This is the residence of English monarchs?
+Buckingham palace
+10
+
+Geography: This island group is off the east coast of southern South America?
+Falkland islands
+10
+
+Geography: This Pacific island's puzzling monoliths attract ethnologists?
+Easter island
+10
+
+Geography: This place in Illinois, USA, was originally named Fort Dearborn, Indian Territory?
+Chicago
+10
+
+Geography: This re-opened in 1975 after being closed for 8 years?
+Suez canal
+10
+
+Geography: This section of Manhattan is noted for its Negro and Latin American residents?
+Harlem
+10
+
+Geography: This US state is the only one starting with 'H'?
+Hawaii
+10
+
+Geography: Though part of the British Isles, the ____ is administered according to its own laws by the Court of Tynwald. The island is not bound by British law unless it chooses to be
+Isle of man
+10
+
+Geography: Though the ____ sprawl measures 15 miles wide by 15 miles long, most of the 30 million tourists each year tend to mob the 6-mile stretch of ____ Boulevard that includes both the Strip, home to the city's glittering, impressive major casinos, and the downtown area
+Las vegas
+10
+
+Geography: Through which mountain range in the United States does the Blue Ridge Parkway run?
+Appalachians
+10
+
+Geography: Through which ocean does the International Date Line approximately follow the 180 degree meridian?
+Pacific Ocean
+10
+
+Geography: Tirana is the capital of ____
+Albania
+10
+
+Geography: To what country do the Faeroe Islands belong?
+Denmark
+10
+
+Geography: To what country does the Gaza Strip belong?
+Egypt
+10
+
+Geography: To which modern country did the Roman province of Lusitania roughly correspond?
+Portugal
+10
+
+Geography: Tonto Natural Bridge in ____ is the largest natural travertine bridge in the world, spanning Pine Creek 183 feet high. Mineral springs rich with limestone formed the massive bridge one drop at a time. Hats, shoes, or other items left in the creek become encrusted with travertine and appear to be made of stone
+Arizona
+10
+
+Geography: Tourists who are eager to visit recently erupted volcanoes while on vacation should take heed. Volcanic ash has been known to remain hot for a period of nearly ____
+100 years
+10
+
+Geography: Towering more than a mile above the ____ valley known as Jackson Hole, the awe-inspiring Grand Teton rises to 13,770 feet above sea level. Located south of Yellowstone National Park, twelve Teton peaks reach higher than 12,000 feet elevation, high enough to support a dozen mountain glaciers. Youngest of the mountains in the Rocky Mountain system, the Teton Range displays some of the North America's oldest rocks. About 4,100,000 people visit Grand Teton National Park every year
+Wyoming
+10
+
+Geography: Town in Southern Belgium the scene of a First World war battle?
+Mons
+10
+
+Geography: Tresco airport is on which islands?
+Scilly isles
+10
+
+Geography: Tristan da Cunha is an island group in which ocean?
+Atlantic
+10
+
+Geography: True Or False: The Easter Bunny is from Easter Island?
+False
+10
+
+Geography: True Or False: There are only virgins on the Virgin Islands?
+False
+10
+
+Geography: Tupamaros are guerrilas in which country?
+Uruguay
+10
+
+Geography: Turkey's largest city, ____, played a central role in Greek history. Called Constantinople, it was capital of the Byzantine Empire. The name ____ was not officially adopted until 1930
+Istanbul
+10
+
+Geography: Twenty-three states in the U.S. border an ____
+Ocean
+10
+
+Geography: Two thousand years ago, the ancient Roman city of ____ was a thriving commercial port of 20,000 people
+Pompeii
+10
+
+Geography: tyre is a port in which country?
+Lebanon
+10
+
+Geography: Ulan Bator is the capital of ____
+Mongolia
+10
+
+Geography: Under a treaty dating back to 1918, if the Grimaldis of ____ should ever be without a male heir, ____ would cease to exist as a sovereign state and would become a self-governing French protectorate
+Monaco
+10
+
+Geography: Under what river does the Holland Tunnel run?
+Hudson
+10
+
+Geography: Unlike most African nations, ____ was never a European colony
+Ethiopia
+10
+
+Geography: Until 1266, the Isle of Man was owned by ____ and was a separate country with its own King who also owned the Sodor, the southern isles of Scotland. Edward III was the Isle of Man's first English king, but in 1405, Henry IV gave it to the Stanley family and it later passed to the Dukes of Atholl. It was not until 1765 that it was sold to the British Government for 70,000 pounds
+Norway
+10
+
+Geography: US city, location of the Hollywood Bowl?
+Los angeles
+10
+
+Geography: US State, capital Little Rock?
+Arkansas
+10
+
+Geography: USA: What is the state capital of Montana?
+Helena
+10
+
+Geography: USA: What is the state capital of Nebraska?
+Lincoln
+10
+
+Geography: USA: What is the state capital of Nevada?
+Carson City
+10
+
+Geography: USA: What is the state capital of New Hampshire?
+Concord
+10
+
+Geography: USA: What is the state capital of New Jersey?
+Trenton
+10
+
+Geography: USA: What is the state capital of New Mexico?
+Sante Fe
+10
+
+Geography: USA: What is the state capital of New York?
+Albany
+10
+
+Geography: USA: What is the state capital of North Carolina?
+Raleigh
+10
+
+Geography: USA: What is the state capital of North Dakota?
+Bismarck
+10
+
+Geography: USA: What is the state capital of Ohio?
+Columbus
+10
+
+Geography: USA: What is the state capital of Oklahoma?
+Oklahoma City
+10
+
+Geography: USA: What is the state capital of Oregon?
+Salem
+10
+
+Geography: USA: What is the state capital of Pennsylvania?
+Harrisburg
+10
+
+Geography: USA: What is the state capital of Rhode Island?
+Providence
+10
+
+Geography: USA: What is the state capital of South Carolina?
+Columbia
+10
+
+Geography: USA: What is the state capital of South Dakota?
+Pierre
+10
+
+Geography: USA: What is the state capital of Tennessee?
+Nashville
+10
+
+Geography: USA: What is the state capital of Texas?
+Austin
+10
+
+Geography: USA: What is the state capital of Utah?
+Salt Lake City
+10
+
+Geography: USA: What is the state capital of Vermont?
+Montpelier
+10
+
+Geography: USA: What is the state capital of Virginia?
+Richmond
+10
+
+Geography: USA: What is the state capital of Washington?
+Olympia
+10
+
+Geography: USA: What is the state capital of West Virginia?
+Charleston
+10
+
+Geography: USA: What is the state capital of Wisconsin?
+Madison
+10
+
+Geography: USA: What is the state capital of Wyoming?
+Cheyenne
+10
+
+Geography: USA: What is the state nickname of Alabama?
+Heart of Dixie
+10
+
+Geography: USA: What is the state nickname of Alaska?
+The last frontier
+10
+
+Geography: USA: What is the state nickname of Arizona?
+Apache state
+10
+
+Geography: USA: What is the state nickname of Arkansas?
+Land of opportunity
+10
+
+Geography: USA: What is the state nickname of California?
+Golden state
+10
+
+Geography: USA: What is the state nickname of Colorado?
+Centennial state
+10
+
+Geography: USA: What is the state nickname of Conneticut?
+Nutmeg state
+10
+
+Geography: USA: What is the state nickname of Delaware?
+Diamond state
+10
+
+Geography: USA: What is the state nickname of Florida?
+Sunshine state
+10
+
+Geography: USA: What is the state nickname of Georgia?
+Peach state
+10
+
+Geography: USA: What is the state nickname of Hawaii?
+Aloha state
+10
+
+Geography: USA: What is the state nickname of Idaho?
+Gem state
+10
+
+Geography: USA: What is the state nickname of Illinois?
+Prairie state
+10
+
+Geography: USA: What is the state nickname of Indiana?
+Hoosier state
+10
+
+Geography: USA: What is the state nickname of Iowa?
+Corn state
+10
+
+Geography: USA: What is the state nickname of Kansas?
+Sunflower state
+10
+
+Geography: USA: What is the state nickname of Kentucky?
+Bluegrass state
+10
+
+Geography: USA: What is the state nickname of Louisiana?
+Sugar state
+10
+
+Geography: USA: What is the state nickname of Maine?
+Pine tree state
+10
+
+Geography: USA: What is the state nickname of Maryland?
+Free state
+10
+
+Geography: USA: What is the state nickname of Massachusetts?
+Old colony
+10
+
+Geography: USA: What is the state nickname of Michigan?
+Wolverine state
+10
+
+Geography: USA: What is the state nickname of Minnesota?
+North star state
+10
+
+Geography: USA: What is the state nickname of Mississippi?
+Magnolia state
+10
+
+Geography: USA: What is the state nickname of Missouri?
+Bullion state
+10
+
+Geography: USA: What is the state nickname of Montana?
+Big sky country
+10
+
+Geography: USA: What is the state nickname of Nebraska?
+Cornhusker state
+10
+
+Geography: USA: What is the state nickname of Nevada?
+Silver state
+10
+
+Geography: USA: What is the state nickname of New Hampshire?
+Granite state
+10
+
+Geography: USA: What is the state nickname of New Jersay?
+Garden state
+10
+
+Geography: USA: What is the state nickname of New Mexico?
+Land of enchantment
+10
+
+Geography: USA: What is the state nickname of New York?
+Empire state
+10
+
+Geography: USA: What is the state nickname of North carolina?
+Old north state
+10
+
+Geography: USA: What is the state nickname of North Dakota?
+Sioux state
+10
+
+Geography: USA: What is the state nickname of Ohio?
+Buckeye state
+10
+
+Geography: USA: What is the state nickname of Oklahoma?
+Sooner state
+10
+
+Geography: USA: What is the state nickname of Oregon?
+Sunset state
+10
+
+Geography: USA: What is the state nickname of Pennsylvania?
+Keystone state
+10
+
+Geography: USA: What is the state nickname of Rhode Island?
+Ocean state
+10
+
+Geography: USA: What is the state nickname of South Carolina?
+Palmetto state
+10
+
+Geography: USA: What is the state nickname of South dakota?
+Coyote state
+10
+
+Geography: USA: What is the state nickname of Tennessee?
+Volunteer state
+10
+
+Geography: USA: What is the state nickname of Texas?
+Lone star state
+10
+
+Geography: USA: What is the state nickname of Utah?
+Mormon state
+10
+
+Geography: USA: What is the state nickname of Vermont?
+Green mountain state
+10
+
+Geography: USA: What is the state nickname of Virginia?
+Old Dominion
+10
+
+Geography: USA: What is the state nickname of Washington?
+Evergreen state
+10
+
+Geography: Using satellite-surveying techniques, scientists have determined that Los Angeles, California is moving east. At a rate estimated to be about one-fifth of an inch per year, the city is moving closer to the ____
+San gabriel mountains
+10
+
+Geography: Vaduz is the capital of ____
+Liechtenstein
+10
+
+Geography: Various U.S. cities are named after other countries. You can visit the U.S. city of ____ in the states of Maine, Nebraska, and New York
+Peru
+10
+
+Geography: Various U.S. cities have been named for popular European cities. If you say you're going to be vacationing in ____, it could mean the city located in either the states of Arkansas, Florida, Idaho, Illinois, Kentucky, Massachusetts, Tennessee, Texas, or West Virginia. Perris, California is another possibility. Then again, it could be in France
+Paris
+10
+
+Geography: Warsaw is the capital of what country?
+Poland
+10
+
+Geography: Washington dc is the capital of ____
+United states
+10
+
+Geography: Wat Arun, The Temple of the Dawn is in which capital city?
+Bangkok
+10
+
+Geography: Water is so scarce in the arid regions of ____ that, in the grasslands, the people never take baths, and sometimes must wash their faces in yak's milk
+China
+10
+
+Geography: West Sussex castle seat of the Dukes of Norfolk?
+Arundel
+10
+
+Geography: Whale watching in South Africa has become part of the South African experience for tourists. The Cape Whale Route stretches from Doringbaai on the West Coast to the Tsitsikamma National Park on the East Coast and incorporates many varied whale viewing points. About thirty-seven species of ____ typically visit South Africa. The southern right whale is seen the most frequently
+Whales and dolphins
+10
+
+Geography: What aboriginal name is Ayers Rock also known as?
+Uluru
+10
+
+Geography: What American city is known as Little Havana?
+Miami
+10
+
+Geography: What are drumlins and eskers formed by?
+Glaciers
+10
+
+Geography: What are the colours of the flag of the Republic of Ireland?
+Green, white and orange
+10
+
+Geography: What are the Islas Canarias in English?
+Canary Islands
+10
+
+Geography: What are the names of the 2 islands in the Seine in the centre of Paris?
+Ile de la cite and ile st-louis
+10
+
+Geography: What are the worlds four oceans - alphabetically?
+Arctic, atlantic, Indian and pacific
+10
+
+Geography: what are you forbidden to fly a plane over, in India?
+The taj mahal
+10
+
+Geography: What area of London is bounded by Oxford St, Charing Cross Rd, Coventry St and Regent St?
+Soho
+10
+
+Geography: What Asian city was once called Edo?
+Tokyo
+10
+
+Geography: What Asian country has the highest population density?
+Singapore
+10
+
+Geography: What body of water borders Saudi Arabia to the east?
+Persian gulf
+10
+
+Geography: what bordering country is due north of costa rica?
+Nicaragua
+10
+
+Geography: What Canadian city is at the west end of Lake Ontario?
+Hamilton
+10
+
+Geography: What canal connects Lake Ontario and Lake Erie?
+Welland
+10
+
+Geography: what capital city means blackpool?
+Dublin
+10
+
+Geography: What Central American country extends furthest north?
+Belize
+10
+
+Geography: What city boasts the Copacabana Beach and Impanema?
+Rio
+10
+
+Geography: What city boasts the Copacabana Beach and Ipanema?
+Rio de Janeiro
+10
+
+Geography: What city has the world's largest black population?
+New York City
+10
+
+Geography: What city is associated with Alcatraz?
+San francisco
+10
+
+Geography: What city is on Lake Erie at the mouth of the Cuyahoga River?
+Cleveland
+10
+
+Geography: What city is the Christian Science Monitor based in?
+Boston
+10
+
+Geography: What city is the Kremlin located in?
+Moscow
+10
+
+Geography: What city is the Kremlin located?
+Moscow
+10
+
+Geography: What color does the bride wear in China?
+Red
+10
+
+Geography: What colour is the far left stripe on the French flag?
+Blue
+10
+
+Geography: What continent is Cyprus considered to be part of?
+Asia
+10
+
+Geography: What continent is part of both the East and Aest hemispheres?
+Antarctica
+10
+
+Geography: What continent is the home to the greatest number of countries?
+Africa
+10
+
+Geography: What country are the Islands of Quemoy and Matsu part of?
+Taiwan
+10
+
+Geography: What country borders Egypt on the West?
+Libya
+10
+
+Geography: What country borders Egypt to the South?
+Sudan
+10
+
+Geography: What country borders Libya on the East?
+Egypt
+10
+
+Geography: What country borders Sudan to the North?
+Egypt
+10
+
+Geography: what country can claim magallanes, the world's southernmost city?
+Peru
+10
+
+Geography: What country did 153 of the first 400 Nobel Prize-winning scientists call home?
+The United States
+10
+
+Geography: What country did Ion Iliescu take over after its previous president was arrested, tried and shot?
+Romania
+10
+
+Geography: What country does not border Iran: Turkey, Pakistan, Iraq, Oman?
+Oman
+10
+
+Geography: What country does the island of Mykonos belong to?
+Greece
+10
+
+Geography: What country first came up with windmills?
+Iran
+10
+
+Geography: What country formed the union of Tanganyika and Zanzibar?
+Tanzania
+10
+
+Geography: What country has a volcano called Okinawa?
+Japan
+10
+
+Geography: What country has the biggest population?
+China
+10
+
+Geography: What country has the world's most southerly city?
+Chile
+10
+
+Geography: What country is directly north of Israel?
+Lebanon
+10
+
+Geography: What country is directly north of the continental United States?
+Canada
+10
+
+Geography: What country is directly west of Spain?
+Portugal
+10
+
+Geography: What country is known as the Hellenic Republic?
+Greece
+10
+
+Geography: What country is Kuala Lumpur in?
+Malaysia
+10
+
+Geography: What country is located between Panama and Nicaragua?
+Costa rica
+10
+
+Geography: What country is Phnom Penh the capital of?
+Cambodia
+10
+
+Geography: What country is Santo Domingo the capital of?
+Dominican republic
+10
+
+Geography: What country is situated between Panama and Nicaragua?
+Costa Rica
+10
+
+Geography: What country is surrounded by Brazil, Argentina and Bolivia?
+Paraguay
+10
+
+Geography: What country owns the island of Corfu?
+Greece
+10
+
+Geography: What country was once known as 'The Breadbasket of Russia'?
+Ukraine
+10
+
+Geography: What country was once known as Gaul?
+France
+10
+
+Geography: What country's capital is Caracas?
+Venezuela
+10
+
+Geography: What did the Romans call Glevum?
+Gloucester
+10
+
+Geography: What did the Romans name the town upon which the city of Carlisle was founded?
+Luguvalium
+10
+
+Geography: What divides the American North from the South?
+The Mason-Dixon Line
+10
+
+Geography: What do Americans traditionally eat on thanksgiving day?
+Turkey
+10
+
+Geography: what does a German call munich?
+Munchen
+10
+
+Geography: What does the George Washington Bridge span?
+Hudson River
+10
+
+Geography: What does the Monument in London commemorate?
+The great fire of london
+10
+
+Geography: What does the word Tokyo mean?
+Eastern capital
+10
+
+Geography: What English city does the Prime Meridian pass through?
+Greenwich
+10
+
+Geography: What English town is served by Squires Gate Airport?
+Blackpool
+10
+
+Geography: what european city has the world's busiest port?
+Rotterdam
+10
+
+Geography: What European country administers the island of Martinique?
+France
+10
+
+Geography: What European country uses its Latin Name, Helvetia, on its stamps?
+Switzerland
+10
+
+Geography: What European country was in an official state of emergency from 1933 until 1945?
+Germany
+10
+
+Geography: What famous geyser erupts regularly at the Yellowstone National Park?
+Old faithful
+10
+
+Geography: What floral symbol do the country of Peru and the state of Kansas have in common?
+The sunflower
+10
+
+Geography: What gorge,containing the Colorado River reaches depths of over 1.7km?
+Grand canyon
+10
+
+Geography: What has never happened In Calama, a town in the Atacama Desert of Chile?
+Rained
+10
+
+Geography: What in Moscow is Tsar Kolokol?
+Worlds heaviest bell
+10
+
+Geography: What is a calm ocean region near the equator called?
+Doldrums
+10
+
+Geography: What is a peanut if it is not a pea or a nut?
+Legume
+10
+
+Geography: What is also known as Amundsen Scott Station?
+South Pole
+10
+
+Geography: What is Americas national cemetery called?
+Arlington
+10
+
+Geography: What is Canadas national anthem called?
+O Canada
+10
+
+Geography: What is known as the graveyard of the Atlantic?
+Sable Island
+10
+
+Geography: what is staged at oberammergau, Germany, every 10 years?
+The passion play
+10
+
+Geography: What is th ename of the group of about 1300 islands in the North Indian Ocean none of which has an area greater than 5 sq miles?
+The maldives
+10
+
+Geography: What is the address of the Sherlock Holmes museum in London?
+221b baker street
+10
+
+Geography: What is the administrative HQ of Hampshire?
+Winchester
+10
+
+Geography: What is the basic unit of currency for China?
+Yuan
+10
+
+Geography: What is the basic unit of currency for Colombia?
+Peso
+10
+
+Geography: What is the basic unit of currency for Comoros?
+Franc
+10
+
+Geography: What is the basic unit of currency for Costa Rica?
+Colon
+10
+
+Geography: What is the basic unit of currency for Croatia?
+Kuna
+10
+
+Geography: What is the basic unit of currency for Cuba?
+Peso
+10
+
+Geography: What is the basic unit of currency for Cyprus?
+Pound
+10
+
+Geography: What is the basic unit of currency for Czech Republic?
+Koruna
+10
+
+Geography: What is the basic unit of currency for Denmark?
+Krone
+10
+
+Geography: What is the basic unit of currency for Djibouti?
+Franc
+10
+
+Geography: What is the basic unit of currency for Dominica?
+Dollar
+10
+
+Geography: What is the basic unit of currency for Dominican Republic?
+Peso
+10
+
+Geography: What is the basic unit of currency for Ecuador?
+Sucre
+10
+
+Geography: What is the basic unit of currency for Egypt?
+Pound
+10
+
+Geography: What is the basic unit of currency for El Salvador?
+Colon
+10
+
+Geography: What is the basic unit of currency for Equatorial Guinea?
+Franc
+10
+
+Geography: What is the basic unit of currency for Eritrea?
+Nakfa
+10
+
+Geography: What is the basic unit of currency for Estonia?
+Kroon
+10
+
+Geography: What is the basic unit of currency for Ethiopia?
+Birr
+10
+
+Geography: What is the basic unit of currency for Fiji?
+Dollar
+10
+
+Geography: What is the basic unit of currency for Finland?
+Markka
+10
+
+Geography: What is the basic unit of currency for France?
+Franc
+10
+
+Geography: What is the basic unit of currency for Gabon?
+Franc
+10
+
+Geography: What is the basic unit of currency for Gambia?
+Dalasi
+10
+
+Geography: What is the basic unit of currency for Georgia (country)?
+Lari
+10
+
+Geography: What is the basic unit of currency for Germany?
+Deutsche mark
+10
+
+Geography: What is the basic unit of currency for Ghana?
+Cedi
+10
+
+Geography: What is the basic unit of currency for Greece?
+Drachma
+10
+
+Geography: What is the basic unit of currency for Grenada?
+Dollar
+10
+
+Geography: What is the basic unit of currency for Guatemala?
+Quetzal
+10
+
+Geography: What is the basic unit of currency for Guinea-Bissau?
+Franc
+10
+
+Geography: What is the basic unit of currency for Guinea?
+Franc
+10
+
+Geography: What is the basic unit of currency for Guyana?
+Dollar
+10
+
+Geography: What is the basic unit of currency for Haiti?
+Gourde
+10
+
+Geography: What is the basic unit of currency for Honduras?
+Lempira
+10
+
+Geography: What is the basic unit of currency for Hong Kong?
+Dollar
+10
+
+Geography: What is the basic unit of currency for Hungary?
+Forint
+10
+
+Geography: What is the basic unit of currency for Iceland?
+Krona
+10
+
+Geography: What is the basic unit of currency for Samoa?
+Tala
+10
+
+Geography: What is the basic unit of currency for San Marino?
+Lira
+10
+
+Geography: What is the basic unit of currency for Saudi Arabia?
+Riyal
+10
+
+Geography: What is the basic unit of currency for Senegal?
+Franc
+10
+
+Geography: What is the basic unit of currency for Seychelles?
+Rupee
+10
+
+Geography: What is the basic unit of currency for Sierra Leone?
+Leone
+10
+
+Geography: What is the basic unit of currency for Singapore?
+Dollar
+10
+
+Geography: What is the basic unit of currency for Slovakia?
+Koruna
+10
+
+Geography: What is the basic unit of currency for Slovenia?
+Tolar
+10
+
+Geography: What is the basic unit of currency for Solomon Islands?
+Dollar
+10
+
+Geography: What is the basic unit of currency for Somalia?
+Shilling
+10
+
+Geography: What is the basic unit of currency for South Africa?
+Rand
+10
+
+Geography: What is the basic unit of currency for South Korea?
+Won
+10
+
+Geography: What is the basic unit of currency for Spain?
+Peseta
+10
+
+Geography: What is the basic unit of currency for Sri Lanka?
+Rupee
+10
+
+Geography: What is the basic unit of currency for Sudan?
+Dinar
+10
+
+Geography: What is the basic unit of currency for Suriname?
+Guilder
+10
+
+Geography: What is the basic unit of currency for Swaziland?
+Lilangeni
+10
+
+Geography: What is the basic unit of currency for Sweden?
+Krona
+10
+
+Geography: What is the basic unit of currency for Switzerland?
+Franc
+10
+
+Geography: What is the basic unit of currency for Syria?
+Pound
+10
+
+Geography: What is the basic unit of currency for Taiwan?
+Dollar
+10
+
+Geography: What is the basic unit of currency for Tajikistan?
+Rouble
+10
+
+Geography: What is the basic unit of currency for Tanzania?
+Shilling
+10
+
+Geography: What is the basic unit of currency for Thailand?
+Baht
+10
+
+Geography: What is the basic unit of currency for Togo?
+Franc
+10
+
+Geography: What is the basic unit of currency for Tonga?
+Pa'anga
+10
+
+Geography: What is the basic unit of currency for Trinidad and Tobago?
+Dollar
+10
+
+Geography: What is the basic unit of currency for Tunisia?
+Dinar
+10
+
+Geography: What is the basic unit of currency for Turkey?
+Lira
+10
+
+Geography: What is the basic unit of currency for Turkmenistan?
+Manat
+10
+
+Geography: What is the basic unit of currency for Tuvalu?
+Dollar
+10
+
+Geography: What is the basic unit of currency for Uganda?
+Shilling
+10
+
+Geography: What is the basic unit of currency for Ukraine?
+Hryvnia
+10
+
+Geography: What is the basic unit of currency for United Arab Emirates?
+Dirham
+10
+
+Geography: What is the basic unit of currency for United Kingdom?
+Pound
+10
+
+Geography: What is the basic unit of currency for United States?
+Dollar
+10
+
+Geography: What is the capital of Afghanistan?
+Kabul
+10
+
+Geography: What is the capital of Alaska?
+Juneau
+10
+
+Geography: What is the capital of Albania?
+Tirana
+10
+
+Geography: What is the capital of Algeria?
+Algiers
+10
+
+Geography: What is the capital of Andorra?
+Andorra la vella
+10
+
+Geography: What is the capital of Angola?
+Luanda
+10
+
+Geography: What is the capital of Antigua and Barbuda?
+Saint john's
+10
+
+Geography: What is the capital of Armenia?
+Yerevan
+10
+
+Geography: What is the capital of Australia?
+Canberra
+10
+
+Geography: What is the capital of Austria?
+Vienna
+10
+
+Geography: What is the capital of Azerbaijan?
+Baku
+10
+
+Geography: What is the capital of Bahrain?
+Manama
+10
+
+Geography: What is the capital of Bangladesh?
+Dhaka
+10
+
+Geography: What is the capital of Barbados?
+Bridgetown
+10
+
+Geography: What is the capital of Belarus?
+Minsk
+10
+
+Geography: What is the capital of Belgium?
+Brussels
+10
+
+Geography: What is the capital of Belize?
+Belmopan
+10
+
+Geography: What is the capital of Bhutan?
+Thimphu
+10
+
+Geography: What is the capital of Bolivia?
+La paz
+10
+
+Geography: What is the capital of Bosnia and Hercegovina?
+Sarajevo
+10
+
+Geography: What is the capital of Botswana?
+Gaborone
+10
+
+Geography: What is the capital of Brazil?
+Brasilia
+10
+
+Geography: What is the capital of Brunei?
+Bandar Seri Begawan
+10
+
+Geography: What is the capital of Bulgaria?
+Sofia
+10
+
+Geography: What is the capital of Burkina Faso?
+Ouagadougou
+10
+
+Geography: What is the capital of Burma?
+Rangoon
+10
+
+Geography: What is the capital of Burundi?
+Bujumbura
+10
+
+Geography: What is the capital of California?
+Sacramento
+10
+
+Geography: What is the capital of Cambodia?
+Phnom penh
+10
+
+Geography: What is the capital of Canada?
+Ottawa
+10
+
+Geography: What is the capital of Cape Verde?
+Praia
+10
+
+Geography: What is the capital of Central African Republic?
+Bangui
+10
+
+Geography: What is the capital of Chad?
+N'djamena
+10
+
+Geography: What is the capital of Chile?
+Santiago
+10
+
+Geography: What is the capital of China?
+Beijing
+10
+
+Geography: What is the capital of Colombia?
+Bogota
+10
+
+Geography: What is the capital of Colorado?
+Denver
+10
+
+Geography: What is the capital of Comoros?
+Moroni
+10
+
+Geography: What is the capital of Congo?
+Brazzaville
+10
+
+Geography: What is the capital of Croatia?
+Zagreb
+10
+
+Geography: What is the capital of Cuba?
+Havana
+10
+
+Geography: What is the capital of Cyprus?
+Nicosia
+10
+
+Geography: What is the capital of Czech Republic?
+Prague
+10
+
+Geography: What is the capital of Democratic Republic of the Congo?
+Kinshasa
+10
+
+Geography: What is the capital of Denmark?
+Copenhagen
+10
+
+Geography: What is the capital of Djibouti?
+Djibouti
+10
+
+Geography: What is the capital of Dominica?
+Roseau
+10
+
+Geography: What is the capital of Dominican Republic?
+Santo domingo
+10
+
+Geography: What is the capital of Ecuador?
+Quito
+10
+
+Geography: What is the capital of Egypt?
+Cairo
+10
+
+Geography: What is the capital of El Salvador?
+San salvador
+10
+
+Geography: What is the capital of Equatorial Guinea?
+Malabo
+10
+
+Geography: What is the capital of Eritrea?
+Asmara
+10
+
+Geography: What is the capital of Estonia?
+Tallinn
+10
+
+Geography: What is the capital of Ethiopia?
+Addis ababa
+10
+
+Geography: What is the capital of Fiji?
+Suva
+10
+
+Geography: What is the capital of Finland?
+Helsinki
+10
+
+Geography: What is the capital of Florida?
+Tallahassee
+10
+
+Geography: What is the capital of France?
+Paris
+10
+
+Geography: What is the capital of Gabon?
+Libreville
+10
+
+Geography: What is the capital of Gambia?
+Banjul
+10
+
+Geography: What is the capital of Georgia?
+Tbilisi
+10
+
+Geography: What is the capital of Germany?
+Berlin
+10
+
+Geography: What is the capital of Ghana?
+Accra
+10
+
+Geography: What is the capital of Greece?
+Athens
+10
+
+Geography: What is the capital of Grenada?
+Saint george's
+10
+
+Geography: What is the capital of Guatemala?
+Guatemala
+10
+
+Geography: What is the capital of Guinea-Bissau?
+Bissau
+10
+
+Geography: What is the capital of Guinea?
+Conakry
+10
+
+Geography: What is the capital of Guyana?
+Georgetown
+10
+
+Geography: What is the capital of Haiti?
+Port-au-prince
+10
+
+Geography: What is the capital of Honduras?
+Tegucigalpa
+10
+
+Geography: What is the capital of Hungary?
+Budapest
+10
+
+Geography: What is the capital of Idaho?
+Boise
+10
+
+Geography: What is the capital of Illinois?
+Springfield
+10
+
+Geography: What is the capital of India?
+New Delhi
+10
+
+Geography: What is the capital of Indonesia?
+Jakarta
+10
+
+Geography: What is the capital of Iowa?
+Des Moines
+10
+
+Geography: What is the capital of Iran?
+Tehran
+10
+
+Geography: What is the capital of Iraq?
+Baghdad
+10
+
+Geography: What is the capital of Ireland?
+Dublin
+10
+
+Geography: What is the capital of Israel?
+Jerusalem
+10
+
+Geography: What is the capital of Italy?
+Rome
+10
+
+Geography: What is the capital of Jamaica?
+Kingston
+10
+
+Geography: What is the capital of Japan?
+Tokyo
+10
+
+Geography: What is the capital of Jordan?
+Amman
+10
+
+Geography: What is the capital of Kansas?
+Topeka
+10
+
+Geography: What is the capital of Kenya?
+Nairobi
+10
+
+Geography: What is the capital of Kiribati?
+Bairiki
+10
+
+Geography: What is the capital of Kuwait?
+Kuwait city
+10
+
+Geography: What is the capital of Kyrgyzstan?
+Bishkek
+10
+
+Geography: What is the capital of Laos?
+Vientiane
+10
+
+Geography: What is the capital of Latvia?
+Riga
+10
+
+Geography: What is the capital of Lebanon?
+Beirut
+10
+
+Geography: What is the capital of Lesotho?
+Maseru
+10
+
+Geography: What is the capital of Liberia?
+Monrovia
+10
+
+Geography: What is the capital of Libya?
+Tripoli
+10
+
+Geography: What is the capital of Liechtenstein?
+Vaduz
+10
+
+Geography: What is the capital of Lithuania?
+Vilnius
+10
+
+Geography: What is the capital of Luxembourg?
+Luxembourg
+10
+
+Geography: What is the capital of Macedonia?
+Skopje
+10
+
+Geography: What is the capital of Madagascar?
+Antananarivo
+10
+
+Geography: What is the capital of Maine?
+Augusta
+10
+
+Geography: What is the capital of Malawi?
+Lilongwe
+10
+
+Geography: What is the capital of Malaysia?
+Kuala lumpur
+10
+
+Geography: What is the capital of Maldives?
+Male
+10
+
+Geography: What is the capital of Mali?
+Bamako
+10
+
+Geography: What is the capital of Malta?
+Valletta
+10
+
+Geography: What is the capital of Marshall Islands?
+Dalap-Uliga-Davrit
+10
+
+Geography: What is the capital of Mauritania?
+Nouakchott
+10
+
+Geography: What is the capital of Mauritius?
+Port Louis
+10
+
+Geography: What is the capital of Mexico?
+Mexico City
+10
+
+Geography: What is the capital of Michigan?
+Lansing
+10
+
+Geography: What is the capital of Micronesia?
+Palikir
+10
+
+Geography: What is the capital of Missouri?
+Jefferson City
+10
+
+Geography: What is the capital of Monaco?
+Monaco
+10
+
+Geography: What is the capital of Mongolia?
+-- Answer metadata begin
+{
+    "answers": ["Ulan Bator", "ulaanbaatar"]
+}
+-- Answer metadata end
+10
+
+Geography: What is the capital of Montana?
+Helena
+10
+
+Geography: What is the capital of Morocco?
+Rabat
+10
+
+Geography: What is the capital of Mozambique?
+Maputo
+10
+
+Geography: What is the capital of Namibia?
+Windhoek
+10
+
+Geography: What is the capital of Nauru?
+Yaren
+10
+
+Geography: What is the capital of Nebraska?
+Lincoln
+10
+
+Geography: What is the capital of Nepal?
+Kathmandu
+10
+
+Geography: What is the capital of New York state?
+Albany
+10
+
+Geography: What is the capital of New Zealand?
+Wellington
+10
+
+Geography: What is the capital of Nicaragua?
+Managua
+10
+
+Geography: What is the capital of Niger?
+Niamey
+10
+
+Geography: What is the capital of Nigeria?
+Abuja
+10
+
+Geography: What is the capital of North Carolina?
+Raleigh
+10
+
+Geography: What is the capital of North Dakota?
+Bismarck
+10
+
+Geography: What is the capital of North Korea?
+Pyongyang
+10
+
+Geography: What is the capital of Norway?
+Oslo
+10
+
+Geography: What is the capital of Ohio?
+Columbus
+10
+
+Geography: What is the capital of Oman?
+Muscat
+10
+
+Geography: What is the capital of Pakistan?
+Islamabad
+10
+
+Geography: What is the capital of Panama?
+Panama city
+10
+
+Geography: What is the capital of Papua New Guinea?
+Port Moresby
+10
+
+Geography: What is the capital of Pennsylvania?
+Harrisburg
+10
+
+Geography: What is the capital of Peru?
+Lima
+10
+
+Geography: What is the capital of Philippines?
+Manila
+10
+
+Geography: What is the capital of Poland?
+Warsaw
+10
+
+Geography: What is the capital of Portugal?
+Lisbon
+10
+
+Geography: What is the capital of Qatar?
+Doha
+10
+
+Geography: What is the capital of Romania?
+Bucharest
+10
+
+Geography: What is the capital of Russia?
+Moscow
+10
+
+Geography: What is the capital of Rwanda?
+Kigali
+10
+
+Geography: What is the capital of Saint Kitts and Nevis?
+Basseterre
+10
+
+Geography: What is the capital of Saint Lucia?
+Castries
+10
+
+Geography: What is the capital of Saint Vincent?
+Kingstown
+10
+
+Geography: What is the capital of Samoa?
+Apia
+10
+
+Geography: What is the capital of San Marino?
+San marino
+10
+
+Geography: What is the capital of Saudi Arabia?
+Riyadh
+10
+
+Geography: What is the capital of Senegal?
+Dakar
+10
+
+Geography: What is the capital of Seychelles?
+Victoria
+10
+
+Geography: What is the capital of Sierra Leone?
+Freetown
+10
+
+Geography: What is the capital of Singapore?
+Singapore
+10
+
+Geography: What is the capital of Slovakia?
+Bratislava
+10
+
+Geography: What is the capital of Slovenia?
+Ljubljana
+10
+
+Geography: What is the capital of Solomon Islands?
+Honiara
+10
+
+Geography: What is the capital of Somalia?
+Mogadishu
+10
+
+Geography: What is the capital of South Korea?
+Seoul
+10
+
+Geography: What is the capital of Spain?
+Madrid
+10
+
+Geography: What is the capital of Sudan?
+Khartoum
+10
+
+Geography: What is the capital of Suriname?
+Paramaribo
+10
+
+Geography: What is the capital of Swaziland?
+Mbabane
+10
+
+Geography: What is the capital of Sweden?
+Stockholm
+10
+
+Geography: What is the capital of Switzerland?
+Bern
+10
+
+Geography: What is the capital of Syria?
+Damascus
+10
+
+Geography: What is the capital of Taiwan?
+Taipei
+10
+
+Geography: What is the capital of Tajikistan?
+Dushanbe
+10
+
+Geography: What is the capital of Tanzania?
+Dar es salaam
+10
+
+Geography: What is the capital of Tennessee?
+Nashville
+10
+
+Geography: What is the capital of Texas?
+Austin
+10
+
+Geography: What is the capital of Thailand?
+Bangkok
+10
+
+Geography: What is the capital of The Bahamas?
+Nassau
+10
+
+Geography: What is the capital of the country Georgia?
+Tbilisi
+10
+
+Geography: What is the capital of the Dominican Republic?
+Santo Domingo
+10
+
+Geography: What is the capital of The Netherlands?
+Amsterdam
+10
+
+Geography: What is the capital of the United Arab Emirates?
+Abu dhabi
+10
+
+Geography: What is the capital of Togo?
+Lome
+10
+
+Geography: What is the capital of Tonga?
+Nuku'alofa
+10
+
+Geography: What is the capital of Trinidad and Tobago?
+Port-of-Spain
+10
+
+Geography: What is the capital of Tunisia?
+Tunis
+10
+
+Geography: What is the capital of Turkey?
+Ankara
+10
+
+Geography: What is the capital of Uganda?
+Kampala
+10
+
+Geography: What is the capital of Ukraine?
+Kiev
+10
+
+Geography: What is the capital of United Kingdom?
+London
+10
+
+Geography: What is the capital of United States?
+Washington
+10
+
+Geography: What is the capital of Uruguay?
+Montevideo
+10
+
+Geography: What is the capital of Uzbekistan?
+Tashkent
+10
+
+Geography: What is the capital of Vatican City?
+Vatican city
+10
+
+Geography: What is the capital of Venezuela?
+Caracas
+10
+
+Geography: What is the capital of Vietnam?
+Hanoi
+10
+
+Geography: What is the capital of Virginia?
+Richmond
+10
+
+Geography: What is the capital of Washington state?
+Olympia
+10
+
+Geography: What is the capital of West Virginia?
+Charleston
+10
+
+Geography: What is the capital of Western Samoa?
+Apia
+10
+
+Geography: What is the capital of Wisconsin?
+Madison
+10
+
+Geography: What is the capital of Wyoming?
+Cheyenne
+10
+
+Geography: What is the capital of Yugoslavia?
+Belgrade
+10
+
+Geography: What is the capital of Zaire?
+Kinshasa
+10
+
+Geography: What is the capital of Zambia?
+Lusaka
+10
+
+Geography: What is the circle of the earth at 0 degrees latitude called?
+Equator
+10
+
+Geography: What is the correct name of Bangkok?
+Krung Thep
+10
+
+Geography: What is the county town of Derbyshire?
+Matlock
+10
+
+Geography: What is the current name for south-west Africa?
+Namibia
+10
+
+Geography: What is the deepest land gorge in the world?
+Grand Canyon
+10
+
+Geography: What is the fifth largest country in the world?
+Brazil
+10
+
+Geography: What is the former name of Botswana?
+Bechuanaland
+10
+
+Geography: What is the former name of Guinea-Bissau?
+Portuguese guinea
+10
+
+Geography: What is the former name of Istanbul?
+Constantinople
+10
+
+Geography: What is the former name of John F Kennedy Airport?
+Idlewild
+10
+
+Geography: What is the former name of the Russian city Volgograd?
+Stalingrad
+10
+
+Geography: What is the former name of the tonka metalcraft company?
+Mound metalcraft company
+10
+
+Geography: What is the former name of Zaire?
+Belgian Congo
+10
+
+Geography: What is the former zaire now known as?
+The democratic republic of Congo
+10
+
+Geography: What is the fourth largest country in europe?
+Sweden
+10
+
+Geography: What is the full name of lake tonka?
+Lake minnetonka
+10
+
+Geography: What is the Great Barrier Reef made from?
+Coral
+10
+
+Geography: What is the highest mountain in Canada?
+Mount logan
+10
+
+Geography: What is the highest peak in Fiji?
+Mount Victoria
+10
+
+Geography: What is the iTalian name for the city of Florence?
+Firenze
+10
+
+Geography: What is the largest city in Australia, in terms of population?
+Sydney
+10
+
+Geography: What is the largest city in China?
+Shanghai
+10
+
+Geography: What is the largest city in Ecuador?
+Guayaquil
+10
+
+Geography: What is the largest city in Switzerland?
+Zurich
+10
+
+Geography: What is the largest country in Central America?
+Nicaragua
+10
+
+Geography: What is the largest country in South America?
+Brazil
+10
+
+Geography: What is the largest exclusively Indonesian island?
+Sumatra
+10
+
+Geography: What is the largest ocean?
+Pacific Ocean
+10
+
+Geography: What is the largest of the countries in Central America?
+Nicaragua
+10
+
+Geography: What is the local name for the capital of Kalaallit Nunaat (Greenland)?
+Nuuk
+10
+
+Geography: What is the meaning of the word Dublin, the Norse name for the city?
+Black pool
+10
+
+Geography: What is the monetary unit of India?
+Rupee
+10
+
+Geography: What is the most mountainous country in Europe?
+Switzerland
+10
+
+Geography: What is the most populous city in North America?
+Mexico
+10
+
+Geography: What is the most sacred river in India?
+Ganges
+10
+
+Geography: What is the name for the ancient trade route between China and the Mediterranean?
+Silk road
+10
+
+Geography: What is the name for the deepest part of the ocean?
+Abyss
+10
+
+Geography: What is the name of Polands largest river?
+Vistula
+10
+
+Geography: What is the name of the arm of the North Sea that separates Norway and Denmark?
+Skaggerak
+10
+
+Geography: What is the name of the country that flew the first supersonic airliner in 1968 and had it crash in 1973?
+The Soviet Union
+10
+
+Geography: What is the name of the highest point on the Isle of Man?
+Snaefell
+10
+
+Geography: What is the name of the hot south wind which blows on to european coast of the medierranean?
+Sirocco
+10
+
+Geography: What is the name of the mountain near Rio de Janeiro from whose peak the giant statue of Christ the Redeemer overlooks the city?
+Corcovado
+10
+
+Geography: What is the name of the neolithic quarries near Thetford,Norfolk?
+Grimes Graves
+10
+
+Geography: What is the name of the Pyrenean nation between France and Spain?
+Andorra
+10
+
+Geography: What is the name of zimbabwes second largest town?
+Bulawayo
+10
+
+Geography: What is the narrowest part of the English Channel?
+Straits of dover
+10
+
+Geography: What is the official currency of The Vatican?
+Lira
+10
+
+Geography: What is the official language of Dominica?
+English
+10
+
+Geography: What is the official language of Egypt?
+Arabic
+10
+
+Geography: What is the oldest town in Belgium?
+Tongeren
+10
+
+Geography: what is the only arab country without a desert?
+Lebanon
+10
+
+Geography: What is the only borough of New York City that is not on an island?
+Bronx
+10
+
+Geography: what is the only country which covers an entire continent?
+Australia
+10
+
+Geography: What is the previous name of Ho Chi Minh CIty?
+Saigon
+10
+
+Geography: What is the principal river of Ireland?
+Shannon
+10
+
+Geography: What is the river capital of the world?
+Akron
+10
+
+Geography: What is the saltiest sea in the world?
+The Dead Sea
+10
+
+Geography: What is the second highest mountain in Japan?
+Mount ontake
+10
+
+Geography: What is the second largest continent in the world?
+Africa
+10
+
+Geography: What is the second largest mountain range in North America?
+Appalachian Mountains
+10
+
+Geography: What is the second largest ocean?
+Atlantic Ocean
+10
+
+Geography: What is the second largest of the United States?
+Texas
+10
+
+Geography: What is the second largest state in the USA?
+Texas
+10
+
+Geography: What is the smallest Canadian province?
+Prince Edward Island
+10
+
+Geography: What is the smallest independent state in the world?
+Vatican City
+10
+
+Geography: What is the smallest of the Central American countries?
+El salvador
+10
+
+Geography: What is the smallest state in the USA?
+Rhode Island
+10
+
+Geography: What is the Southernmost country in continental Europe?
+Spain
+10
+
+Geography: what is the third-largest lake in the world?
+Lake victoria
+10
+
+Geography: What is the windiest place on earth?
+Mount Washington, New Hampshire
+10
+
+Geography: What is the world's deepest lake?
+Lake Baikal
+10
+
+Geography: What is the world's highest city?
+Lhasa
+10
+
+Geography: What is the world's highest mountain?
+Mount Everest
+10
+
+Geography: What is the world's highest waterfall?
+Angel Falls
+10
+
+Geography: What is the world's largest desert?
+Sahara Desert
+10
+
+Geography: What is the world's largest lake?
+Caspian Sea
+10
+
+Geography: What is the world's largest sea?
+Mediterranean
+10
+
+Geography: What is the world's second highest mountain?
+K2
+10
+
+Geography: What is the world's widest river?
+Amazon
+10
+
+Geography: What is the worlds third highest mountain?
+Kanchenjunga
+10
+
+Geography: What is Uraguays chief port?
+Montevideo
+10
+
+Geography: What island has Hamilton as its capital?
+Bermuda
+10
+
+Geography: What island is known as the Spice Island?
+Zanzibar
+10
+
+Geography: What lake is approximately 394,000 sq. km in area?
+Caspian Sea
+10
+
+Geography: What London borough does the Prime Meridian pass through?
+Greenwich
+10
+
+Geography: what mediterranean country is the only one in the world to display its map on its flag?
+Cyprus
+10
+
+Geography: What mountain range separates Europe from Asia?
+Ural
+10
+
+Geography: What name is shared by an asian Capital, a Canadian provincial town and an African lake?
+Victoria
+10
+
+Geography: What name meaning mid winter settlement did the Romans give to Paris?
+Lutetia
+10
+
+Geography: What North American country enacted the War Powers Act to quell a separatist rebellion in 1970?
+Canada
+10
+
+Geography: What ocean is found along the East border of Asia?
+Pacific Ocean
+10
+
+Geography: What place is known as 'the land nowhere near'?
+Cape Three Points
+10
+
+Geography: What plant is a national emblem of Wales?
+Leek
+10
+
+Geography: What prison island was off the coast of French Guiana?
+Devil's Island
+10
+
+Geography: What river has the largest drainage basin?
+Amazon
+10
+
+Geography: What river is known as China's Sorrow?
+Yellow
+10
+
+Geography: What river is Liverpool on?
+Mersey
+10
+
+Geography: What river is the Temple of Karnak near?
+Nile
+10
+
+Geography: What Scandinavian capital begins and ends with the same letter?
+Oslo
+10
+
+Geography: What sea is between Italy and Yugoslavia?
+Adriatic
+10
+
+Geography: What seaport's name is Spanish for 'white house'?
+Casablanca
+10
+
+Geography: What small island is in the bay of Naples?
+Isle of Capri
+10
+
+Geography: What south American country has both a Pacific and Atlantic coastline?
+Colombia
+10
+
+Geography: what Spanish city gave its name to sherry?
+Jerez
+10
+
+Geography: What state borders Alabama to the north?
+Tennessee
+10
+
+Geography: What state is the Golden State?
+California
+10
+
+Geography: What state was the home to Mayberry?
+North carolina
+10
+
+Geography: what statue overlooks piccadilly circus?
+Eros
+10
+
+Geography: What stretch of water separates Denmark from Sweden?
+The kattegat
+10
+
+Geography: What Surrey town is famed for its salts?
+Epsom
+10
+
+Geography: What symbol is on the flag of Vietnam?
+Star
+10
+
+Geography: What tunnel connects France and Italy?
+Mont Blanc Tunnel
+10
+
+Geography: what two countries did hadrian's wall separate?
+England and Scotland
+10
+
+Geography: What type of bridges are the Humber and Severn road bridges?
+Suspension
+10
+
+Geography: What U.S. city is known as Insurance City?
+Hartford
+10
+
+Geography: What U.S. city is named after Saint Francis of Assisi?
+San francisco
+10
+
+Geography: What U.S. state is known as The Land of 10,000 Lakes?
+Minnesota
+10
+
+Geography: What unit of currency will buy you dinner in Iraq, Jordan, Tunisia and Yugoslavia?
+Dinar
+10
+
+Geography: What US state is completely surrounded by the Pacific Ocean?
+Hawaii
+10
+
+Geography: What volcano showers ash on Sicily?
+Etna
+10
+
+Geography: What was built on the site of the old Waldorf Astoria hotel in New York?
+The Empire State Building
+10
+
+Geography: What was the ancient name for the Dardanelles, the strait between the Sea of Marmara and the Aegean Sea?
+Hellespont
+10
+
+Geography: What was the former name of Hawaii?
+Sandwich islands
+10
+
+Geography: What was the former name of Tokyo?
+Yedo
+10
+
+Geography: What was the name of the Hoover Dam from 1933-1947?
+Boulder Dam
+10
+
+Geography: What would you expect in a pluvial region?
+Rain
+10
+
+Geography: what would you find at 1313 harbor boulevard, anaheim, California?
+Disneyland
+10
+
+Geography: What's the former name of Istanbul?
+Constantinople
+10
+
+Geography: What's the highest mountain in the 48 contiguous U.S. states?
+Whitney
+10
+
+Geography: what's the largest island in the west indies?
+Cuba
+10
+
+Geography: What's the northernmost scandinavian country?
+Norway
+10
+
+Geography: what's the world's largest gulf?
+Gulf of Mexico
+10
+
+Geography: When was Liverpool granted its charter?
+1207
+10
+
+Geography: Where are the 'wallops'?
+Hampshire
+10
+
+Geography: Where are the following places of interest - Rabbit Hash, Beaver Lick, Monkey's Eyebrow, Possum Trot and Bugtussle?
+Kentucky
+10
+
+Geography: Where are the great Walls of Babylon located in the modern day world?
+Iraq
+10
+
+Geography: Where are the Nazca lines?
+Peru
+10
+
+Geography: Where are the pyramids located?
+Egypt
+10
+
+Geography: Where are the Spanish Steps?
+Rome
+10
+
+Geography: Where are the Twin Towers of Asia located?
+Kuala Lumpur
+10
+
+Geography: Where are the two steepest streets in the USA?
+San Francisco
+10
+
+Geography: Where can the largest cannon in the world be seen?
+The Kremlin
+10
+
+Geography: where can you belt back a fifth of scotch on the firth of forth?
+Scotland
+10
+
+Geography: Where did the Allies first cross the Rhine in WWii?
+Remagen
+10
+
+Geography: where did the most powerful explosion ever witnessed on earth occur?
+Krakatoa
+10
+
+Geography: Where does the river Thames rise?
+Cotswolds Hills
+10
+
+Geography: where does the us rank among world countries in total area?
+Fourth
+10
+
+Geography: Where in Britain is the Neolithic village of Skara Brae?
+The Orkneys
+10
+
+Geography: Where in Britain is the Up-helly-Aa festivity held?
+Shetlands
+10
+
+Geography: Where in England is Legoland?
+Berkshire
+10
+
+Geography: Where in London is the American Embassy?
+Grosvenor Square
+10
+
+Geography: Where in London were the Frost Fairs held until 1831?
+On the thames
+10
+
+Geography: Where in Scotland is there a replica of the Colosseum of Rome known as McCaigs Tower?
+Oban
+10
+
+Geography: where in the heck is britain's royal observatory?
+Greenwich
+10
+
+Geography: where in the heck is dam square?
+Amsterdam
+10
+
+Geography: Where in the US is Mount Mckinley?
+Denali national park and preserve
+10
+
+Geography: Where is Angel Falls?
+Venezuela
+10
+
+Geography: Where is area 51 generally said to be?
+Groom Lake
+10
+
+Geography: Where is Arnhem Land?
+Australia
+10
+
+Geography: Where is Beacon Street?
+Boston
+10
+
+Geography: Where is Britains tallest nave?
+Westminster Abbey
+10
+
+Geography: Where is Calcutta?
+India
+10
+
+Geography: Where is Cape Hatteras?
+North Carolina
+10
+
+Geography: Where is Chester Beatty Library?
+Dublin
+10
+
+Geography: Where is Eurodisney?
+Paris, France
+10
+
+Geography: Where is Euston Station?
+London
+10
+
+Geography: Where is George Washington buried?
+Mt. vernon, Virginia
+10
+
+Geography: Where is Gorky Park?
+Moscow
+10
+
+Geography: Where is Lake Maracaibo?
+Venezuela
+10
+
+Geography: Where is Leeds Castle?
+Maidstone,Kent
+10
+
+Geography: where is loftleidir airlines based?
+Iceland
+10
+
+Geography: Where is most of America's gold located?
+Fort Knox
+10
+
+Geography: Where is Mount Washington?
+New Hampshire
+10
+
+Geography: Where is Queen Maud Land located?
+Antarctica
+10
+
+Geography: Where is Tabasco?
+Mexico
+10
+
+Geography: Where is the Admirality Arch?
+London
+10
+
+Geography: Where is the Blue Grotto - la Grotta Azzurra?
+Capri, Italy
+10
+
+Geography: Where is the bridge of San Luis Rey?
+Peru
+10
+
+Geography: Where is the city of Brotherly Love?
+Philadelphia
+10
+
+Geography: Where is the Cresta Run?
+St Moritz
+10
+
+Geography: Where is the famous colony of macaque monkeys?
+Gibraltar
+10
+
+Geography: Where is the Holy Kaaba?
+Mecca
+10
+
+Geography: Where is the Island of Panay?
+Philippines
+10
+
+Geography: Where is the land of 10,000 lakes?
+Minnesota
+10
+
+Geography: where is the lost city of the Incas to be found?
+Peruvian Andes
+10
+
+Geography: Where is the Louvre Art Museum?
+Paris
+10
+
+Geography: Where is the Machu Picchu?
+Peru
+10
+
+Geography: Where is the Parthenon located?
+Athens
+10
+
+Geography: Where is the Prado art gallery?
+Madrid
+10
+
+Geography: Where is the sculpture nicknamed The Floozie in the Jacuzzi, unveiled in 1993, located?
+Birmingham
+10
+
+Geography: Where is the statue 'Le Petit Pissoir'?
+Brussels
+10
+
+Geography: Where is the Taj Mahal?
+India
+10
+
+Geography: Where is the wailing wall?
+Jerusalem
+10
+
+Geography: Where is the world's biggest prison camp?
+Siberia
+10
+
+Geography: Where is the world's largest desert?
+North Africa
+10
+
+Geography: Where is Tongeren?
+Belgium
+10
+
+Geography: Where is Westminster Abbey located?
+London
+10
+
+Geography: Where was the capital of the Assyrian Empire?
+Nineveh
+10
+
+Geography: Where were the Pillars of Hercules located?
+Gibraltar
+10
+
+Geography: WHERE WERE THE sPICE iSLANDS?
+SOUTH CHINA SEAS
+10
+
+Geography: Where would you find calderas?
+Volcanoes
+10
+
+Geography: Where would you find St Basils Cathedral?
+Red Square, Moscow
+10
+
+Geography: Which African capital city was called Leopoldville until 1966?
+Kinshasa
+10
+
+Geography: Which African capital citys name means rope matting, it came about in the 15th century when the inhabitans were asked the name and they thought they were asked what they were doing?
+Banjul
+10
+
+Geography: Which animal appears on the flag of California?
+Bear
+10
+
+Geography: Which Asian City other than the walled section of Bejing which contains the Imperial Palace was also known as the Forbidden City?
+Lhasa
+10
+
+Geography: Which Australian province has New at the beginning of its name?
+South Wales
+10
+
+Geography: Which bridge spans the Hudson River?
+George Washington Bridge
+10
+
+Geography: Which British Citys airport is at Rhoose?
+Cardiff
+10
+
+Geography: Which British island, about 80 feet across, is in the Atlantic, 230 miles west of the Hebrides?
+Rockall
+10
+
+Geography: Which Californian desert drops below sea level?
+Death Valley
+10
+
+Geography: Which Canadian city used to be called Bytown?
+Ottawa
+10
+
+Geography: Which Canadian city was devastated in 1917 when an ammunition ship blew up in its harbour?
+Halifax
+10
+
+Geography: Which Canadian province extends farthest north?
+Quebec
+10
+
+Geography: Which canal links the Mediterranean sea with the Red Sea?
+The suez canal
+10
+
+Geography: Which capital city is overlooked by the volcano Popocatepetl?
+Mexico city
+10
+
+Geography: Which capital citys name is the corruption of a word for ants?
+Accra
+10
+
+Geography: Which capital is known as the Glass Capital of the World?
+Toledo
+10
+
+Geography: Which Central American country extends furthest north?
+Belize
+10
+
+Geography: Which Chinese landmark was viewed from space?
+Great Wall of China
+10
+
+Geography: Which city boasts the largest taxi fleet - a whopping 61,278 of them?
+Mexico City
+10
+
+Geography: Which city does Speke airport serve?
+Liverpool
+10
+
+Geography: Which city does Tempelhof airport serve?
+Berlin
+10
+
+Geography: Which city had the original ghetto in the 16th century?
+Venice
+10
+
+Geography: Which city has the highest population?
+Mexico City
+10
+
+Geography: Which city has the largest rodeo in the world?
+Calgary
+10
+
+Geography: Which city in Sudan, the scene of a battle in 1898 was the residence of the mahdi?
+Omdurman
+10
+
+Geography: Which city is called Kapstad in Afrikaans?
+Cape Town
+10
+
+Geography: Which city is famed for its Temple of the Emerald Buddha?
+Bangkok
+10
+
+Geography: Which city is known as Motown?
+Detroit
+10
+
+Geography: Which city is known as the Windy City?
+Chicago
+10
+
+Geography: Which city is on the east side of San Francisco Bay?
+Oakland
+10
+
+Geography: Which city was the capital of Timurs empire?
+Samarkand
+10
+
+Geography: which continent does lake titicaca beautify?
+South America
+10
+
+Geography: Which country administers Christmas Island?
+Australia
+10
+
+Geography: Which country administers Martinique?
+France
+10
+
+Geography: Which country administers New Caledonia?
+France
+10
+
+Geography: which country administers south georgia, a last stop before antarctica?
+Great britain
+10
+
+Geography: Which country altered it's timezone in order to be the first to see in the year 2000?
+Tonga
+10
+
+Geography: Which country are the Galapagos Islands part of?
+Ecuador
+10
+
+Geography: Which country borders Italy, Switzerland, West Germany, Czechoslovakia, Hungary, Yugoslavia, and Liechtenstein?
+Austria
+10
+
+Geography: Which country built the Mannerheim Line as a defence against Russia?
+Finland
+10
+
+Geography: Which country celebrates nov 2nd as a National holiday - The day of the Dead?
+Mexico
+10
+
+Geography: Which country has a flag of a red circle on a white background?
+Japan
+10
+
+Geography: Which country has a population of 1.3 billion, but only 200 family names?
+China
+10
+
+Geography: Which country has Ankara as its capital?
+Turkey
+10
+
+Geography: Which country has Budapest as its capital?
+Hungary
+10
+
+Geography: Which country has Colombia to the west and Guyana to the east?
+Venezuela
+10
+
+Geography: Which country has the fourth largest population?
+Indonesia
+10
+
+Geography: Which country has the Leone as its unit of currency?
+Sierra leone
+10
+
+Geography: Which country has the longest land border?
+China
+10
+
+Geography: Which country has the most emigrants?
+Mexico
+10
+
+Geography: Which country has the slowest population growth rate?
+West Germany
+10
+
+Geography: Which country hosted the 1982 World Cup of Football?
+Spain
+10
+
+Geography: Which country is also known as Suomi?
+Finland
+10
+
+Geography: Which country is known as the roof of the world?
+Tibet
+10
+
+Geography: Which country is the major exporter of Teak?
+Burma
+10
+
+Geography: Which country is the maple leaf the national symbol?
+Canada
+10
+
+Geography: Which country is The Prado Art Museum?
+Spain
+10
+
+Geography: Which country is the smallest population?
+Vatican City
+10
+
+Geography: Which country lies between Zimbabwe and the sea?
+Mozambique
+10
+
+Geography: Which country lost over seventeen percent of its entire population in World War II?
+Poland
+10
+
+Geography: Which country occupies the 'horn' of Africa?
+Somalia
+10
+
+Geography: Which country owns Corfu?
+Greece
+10
+
+Geography: Which country owns the Queen Elizabeth Islands in the Arctic?
+Canada
+10
+
+Geography: Which Country produces the world's best cigars?
+Cuba
+10
+
+Geography: Which country would come first in an alphabetical list of countries?
+Afghanistan
+10
+
+Geography: Which country would you be in if you landed at Dalaman airport?
+Turkey
+10
+
+Geography: Which country's national anthem is called The peaceful banks of the River Ipiranga?
+Brazil
+10
+
+Geography: Which country's ships fly under the Union Jack?
+Great Britain
+10
+
+Geography: Which countrys flag consists of a red background with a white crescent moon and star?
+Turkey
+10
+
+Geography: Which countrys international car registration letters are PL?
+Poland
+10
+
+Geography: Which county are the racecourses Sandown Park and epsom?
+Surrey
+10
+
+Geography: Which countys symbol is a standing bear next to a ragged staff?
+Warwickshire
+10
+
+Geography: Which Derbyshire town has a twisted spire?
+Chesterfield
+10
+
+Geography: Which element makes up 2.5% of the Earth's crust?
+Potassium
+10
+
+Geography: Which element makes up 2.6% of the Earth's crust?
+Magnesium
+10
+
+Geography: Which element makes up 2.83% of the Earth's crust?
+Sodium
+10
+
+Geography: Which element makes up 27.72% of the Earth's crust?
+Silicon
+10
+
+Geography: Which element makes up 3.63% of the Earth's crust?
+Calcium
+10
+
+Geography: Which element makes up 46.6% of the Earth's crust?
+Oxygen
+10
+
+Geography: Which element makes up 5% of the Earth's crust?
+Iron
+10
+
+Geography: Which element makes up 8.13% of the Earth's crust?
+Aluminium
+10
+
+Geography: Which English City is named after Snot and his tribe?
+Nottingham
+10
+
+Geography: Which English city would you find Piccadilly Circus?
+London
+10
+
+Geography: Which English county has the smallest perimeter?
+Isle of Wight
+10
+
+Geography: Which English countys emblem is an imp?
+Lincolnshire
+10
+
+Geography: Which European country has the highest population density?
+Monaco
+10
+
+Geography: Which European country has the lowest population density?
+Iceland
+10
+
+Geography: Which European country launched Europe's first super high speed passenger train in 1981?
+France
+10
+
+Geography: Which explorer gave his name to the Strait between Asia and North America?
+Vitus bering
+10
+
+Geography: Which famous arts complex in Paris houses the French National Museum of Modern Art?
+The pompidou centre
+10
+
+Geography: Which French town is known for its glove making?
+Grenoble
+10
+
+Geography: Which Glen in Central Scotland between Loch Katrine and Loch Achray was popularised by Sir Walter Scott?
+The trossachs
+10
+
+Geography: Which has the largest population (2003): Iraq, Kuwait, Egypt, Jordan?
+Egypt
+10
+
+Geography: Which House in London did the Queen Mother live?
+Clarence House
+10
+
+Geography: Which imaginery line approximately follows the 180 degree meridian through the Pacific Ocean?
+International Date Line
+10
+
+Geography: Which Irish city is famous for its crystal?
+Waterford
+10
+
+Geography: Which is South Africas administrative capital?
+Pretoria
+10
+
+Geography: Which is the Earth's fifth largest continent?
+Antarctica
+10
+
+Geography: Which is the Earth's fourth largest continent?
+South America
+10
+
+Geography: Which is the Earth's largest continent?
+Asia
+10
+
+Geography: Which is the Earth's second largest continent?
+Africa
+10
+
+Geography: Which is the Earth's second smallest continent?
+Europe
+10
+
+Geography: Which is the Earth's third largest continent?
+North America
+10
+
+Geography: Which is the largest island just off the west coast of North America?
+Vancouver Island
+10
+
+Geography: Which is the largest lake in South America?
+Lake Maracaibo
+10
+
+Geography: Which is the most populated state/territory in Australia?
+New South Wales
+10
+
+Geography: Which is the most remote island in the southern atlantic ocean?
+Bouvet Island
+10
+
+Geography: Which is the only musical bird that can fly backwards?
+Hummingbird
+10
+
+Geography: Which is the only sea below sea level?
+Dead Sea
+10
+
+Geography: Which is the smallest independent country?
+Vatican City
+10
+
+Geography: Which island country lies immediately to the East of R?union?
+Mauritius
+10
+
+Geography: Which island country lies immediately to the West of Mauritius?
+Reunion
+10
+
+Geography: Which island country lies to the East of Mauritius?
+Australia
+10
+
+Geography: Which island country lies to the West of Australia?
+Mauritius
+10
+
+Geography: Which island is seperated from Wales by the Menai Straits?
+Anglesey
+10
+
+Geography: Which Island merged with Tanganyika to form a new country in 1964?
+Zanzibar
+10
+
+Geography: Which island off the north coast of Devon takes its name from the Norse word for Puffin?
+Lundy
+10
+
+Geography: Which island was born near Iceland in 1963?
+Surtsey
+10
+
+Geography: Which islands did Captain Cook name The friendly islands?
+Tonga
+10
+
+Geography: Which islands in the Atlantic Ocean were named after dogs?
+Canary islands
+10
+
+Geography: Which islands were named after Prince Philip of Spain?
+The philippine s
+10
+
+Geography: Which Italian style resort on the coast of Gwynedd in wales was designed in 1925 by Clough Willaims-Ellis?
+Portmeirion
+10
+
+Geography: Which language apart from English is an official language of Canada?
+French
+10
+
+Geography: Which language is spoken in Brazil?
+Portuguese
+10
+
+Geography: Which large city is on the Southeastern coast of Australia?
+Sydney
+10
+
+Geography: Which mainland Latin American country is in neither South America nor Central America?
+Mexico
+10
+
+Geography: Which mountain stands at the entrance to Rio de Janeiro harbour?
+Sugar Loaf Mountain
+10
+
+Geography: Which mountain was called Peak XV until 1865 when it was renamed in honour of a British geologist?
+Mount everest
+10
+
+Geography: Which mountains are regarded as the east border of Europe?
+Ural
+10
+
+Geography: Which ocean has an area of approximately 166 sq. km?
+Pacific Ocean
+10
+
+Geography: Which of the 48 contiguous states extends farthest north?
+Minnesota
+10
+
+Geography: Which of the U.S. states borders only one other state?
+Maine
+10
+
+Geography: Which of the United States of America is the most southerly?
+Hawaii
+10
+
+Geography: Which one of England's biggest shipping ports is famous for being the port that the Titanic left from?
+Southampton
+10
+
+Geography: Which palace near London, built by Cardinal Wolsey was the favorite residence of King Henry viii?
+Hampton court palace
+10
+
+Geography: Which part of London took its name from the ornamental collars which were once made there?
+Piccadilly
+10
+
+Geography: Which Portuguese colony reverted to China in December 1999?
+Macau
+10
+
+Geography: Which resort in the French alps situated on the River Arve at an elevation of 1037m is the starting point for the ascent of Mont Blanc by cable car?
+Chamonix
+10
+
+Geography: Which resort on the mediterranean riviera is Casino Square a popular spot for tourists?
+Monte carlo
+10
+
+Geography: Which river contains the most fresh water?
+Amazon
+10
+
+Geography: Which river flows for 1500 miles through Venezuela and forms the border with Colombia?
+Orinoco
+10
+
+Geography: Which Roman Palace is one mile west of Chichester?
+Fishbourne
+10
+
+Geography: Which Roman Road ran from Exeter to Lincoln?
+Fosse way
+10
+
+Geography: Which Roman Road runs between Lincoln and Axmouth on the coast of Devon?
+Fosse way
+10
+
+Geography: Which Scandinavian Capital Begins And Ends With The Same Letter?
+Oslo
+10
+
+Geography: Which Scottish city boasts an underground system?
+Glasgow
+10
+
+Geography: Which sea has no coast?
+The sargasso sea
+10
+
+Geography: Which sea is really the worlds largest lake?
+The Caspian Sea
+10
+
+Geography: Which sea is sometimes called the Euxine sea?
+The black sea
+10
+
+Geography: Which sea lies between Korea & Shanghai?
+The yellow sea
+10
+
+Geography: Which South American Canal joins the Atlantic to the Pacific oceans?
+Panama
+10
+
+Geography: Which South American country has both a Pacific and Atlantic coastline?
+Colombia
+10
+
+Geography: Which state has Cape Hatteras?
+North carolina
+10
+
+Geography: Which state has the most hospitals?
+California
+10
+
+Geography: Which state is divided into two parts by a large lake?
+Michigan
+10
+
+Geography: Which state is the Evergreen State?
+Washington
+10
+
+Geography: Which state is the Garden State?
+New jersey
+10
+
+Geography: Which state is the Wolverine State?
+Michigan
+10
+
+Geography: Which straits sepaarate Sri Lanka from India?
+The Palk Straits
+10
+
+Geography: Which structure in Brussels was built for the world exposition of 1958 and consists of 9 spheres linked by struts and represents the atomic structure of iron?
+The atomium
+10
+
+Geography: Which Swiss ski resort whose name means in the meadow lies at the foot of the Matterhorn at an elevation of 1616m?
+Zermatt
+10
+
+Geography: Which tourist attraction is the only living structure visible from outer space?
+The Great Barrier Reef
+10
+
+Geography: Which town is known as the capital of the Cotswolds?
+Cirencester
+10
+
+Geography: Which town is said to have taken its name from the number of tree on the Tonbridge Road?
+Sevenoaks
+10
+
+Geography: Which town is the capital of the Orkneys?
+Kirkwall
+10
+
+Geography: Which tropic passes through Australia?
+Tropic of Capricorn
+10
+
+Geography: Which two countries share Victoria Falls?
+Zimbabwe and Zambia
+10
+
+Geography: Which U.S. city is known as Beantown?
+Boston
+10
+
+Geography: Which U.S. city is known as the Biggest Little City in the World?
+Reno
+10
+
+Geography: Which U.S. state borders a Canadian territory?
+Alaska
+10
+
+Geography: Which U.S. state has the least rainfall?
+Nevada
+10
+
+Geography: Which U.S. state receives the most rainfall?
+Hawaii
+10
+
+Geography: Which US holiday state has the Everglades National Park?
+Florida
+10
+
+Geography: Which US state gets the most rainfall?
+Hawaii
+10
+
+Geography: Which US state is famous for Disneyland and the film industry?
+California
+10
+
+Geography: Which volcano erupted in Washington State in 1980 causing widespread damage?
+Mount st helens
+10
+
+Geography: Which volcanos eruption in 1883 was one of the most catastrophic ever recorded?
+Krakatoa
+10
+
+Geography: Which was the first American city to host the Olympics?
+St louis
+10
+
+Geography: Which was the only european country before wwii where more than half the inhabitants were muslim?
+Albania
+10
+
+Geography: Which water gate lies under St Thomas' Tower in the Tower of London?
+Traitors gate
+10
+
+Geography: Which White House room is The Presidents office?
+Oval room
+10
+
+Geography: Who chose Ottawa to be the capital of Canada?
+Queen victoria
+10
+
+Geography: Who owns the island of Bermuda?
+Britain
+10
+
+Geography: Who ruled England from 827 until 860?
+Egbert, Ethelwulf and Ethelbald
+10
+
+Geography: Who was the US state of Georgia named after?
+King george ii
+10
+
+Geography: Who were the first settlers in Las Vegas?
+Mormons
+10
+
+Geography: With about 865 people per square mile, the island of ____ is one of Europe's most densely populated regions
+Madeira
+10
+
+Geography: With nearly ten million visitors in 1998, the beautiful and impressive ____ National Park drew nearly twice the number of visitors as the second most-visited park, the Grand Canyon, with nearly five million visitors
+Great smoky mountains
+10
+
+Geography: With what country is Fidel Castro associated?
+Cuba
+10
+
+Geography: With which country is Prince Rainier III identified?
+Monaco
+10
+
+Geography: Within northern California's Humboldt Redwoods State Park's 53,000 acres, there are more than 17,000 acres of old-growth forest. ____, close beside Bull Creek and the Eel River, is one of the largest remaining tracts of contiguous uncut coast redwood forest in the world
+Rockefeller forest
+10
+
+Geography: World Capitals?
+Ottawa
+10
+
+Geography: Worlds most remote weather station is located in what country?
+Canada
+10
+
+Geography: Yaounde is the capital of ____
+Cameroon
+10
+
+Geography: You will find the world famous Raffles Hotel in which country?
+Singapore
+10
+
+Geography: Yuletide-named towns in the United States include Santa Claus, located in Arizona and Indiana, Noel in Missouri, and Christmas in both Arizona and ____
+Florida
+10
+
+Geography: Yuma, ____ has the most sun of any locale in the U.S. - it averages sunny skies 332 days a year
+Arizona
+10
+
+Geogrpahy: Name the capital city of Utah?
+Salt lake city
+10
+
+Geology: Earth's outer layer of surface soil or crust is called the ____
+Lithosphere
+10
+
+Geology: Fault zone in California stretching northwest for about 1000 km (about 600 mi), from the Imperial Valley in Southern California to Point Arena on the northern coast & out to sea?
+San andreas fault
+10
+
+Geology: new zealand's oldest rocks are over ____ old
+500 million years
+10
+
+Geology: Peat, lignite and bituminous are types of ____
+Coal
+10
+
+Geology: Slate is formed by the metamorphosis of ____
+Shale
+10
+
+Geology: The green variety of beryl is called ____
+Emerald
+10
+
+Geology: The molten material from a volcano is ____
+Lava
+10
+
+Geology: The spot on the Earth's surface directly above an earthquake's focus is called the ____
+Epicenter
+10
+
+Geology: The violet variety of quartz is called ____
+Amethyst
+10
+
+Geology: There are three types of rocks: metamorphic, sedimentary, and ____
+Igneous
+10
+
+Geology: These limestone deposits rise from the floor of caves?
+Stalagmites
+10
+
+Geology: This is the hardest naturally occurring substance?
+Diamond
+10
+
+Geology: What is the highest active volcano in the world?
+Cotopaxi
+10
+
+Geology: What is the most reliable geyser in the world?
+Old Faithful
+10
+
+Geology: What is the name of the layer between the Earth's crust and the Earth's core?
+Mantle
+10
+
+Geology: What name is given to the point where a river starts?
+Source
+10
+
+Geology: What name is given to the point where two rivers join?
+Confluence
+10
+
+Geology: What name is given to the single super-continent that existed 200 million years ago?
+Pangaea
+10
+
+Geology: What name is used to describe permanently-frozen subsoil?
+Permafrost
+10
+
+Geology: What type of rock is marble?
+Metamorphic
+10
+
+Geology: Which river made The Grand Canyon?
+Colorado
+10
+
+Geometry: Is a square a parellelogram?
+Yes
+10
+
+Geometry: What is the sum of all the angles in a square (in degrees)?
+360
+10
+
+George Kresge Jr.'s spectacular stage name (3 wds)?
+The amazing kreskin
+10
+
+George mallory was found dead after 75 years 600 meters away from the top of a mountain, which mountain?
+Mount everest
+10
+
+George Michael was one half of Wham!, name the other half?
+Andrew Ridgley
+10
+
+George Robertson is now Director General of NATO, what was his previous post?
+Defence secretary
+10
+
+George Stephenson was born in what year?
+1781
+10
+
+George Washington became the first president of the u.s in what year?
+1789
+10
+
+George Washington had to borrow money to go to his own ____
+Inauguration
+10
+
+Gerald Ford pardoned Robert E. Lee posthumously of all crimes of?
+Treason
+10
+
+Gerald ford's v.p?
+Nelson e rockefeller
+10
+
+German military decoration?
+Iron cross
+10
+
+German physicist and nobel laureate, who was the originator of the quantum theory?
+Planck
+10
+
+German scientist, who is generally regarded as the founder of the science of mineralogy?
+Agricola
+10
+
+Germany's allies in wwi were Austria-hungary, bulgaria and ____
+Turkey
+10
+
+Germany's allies in wwii were Japan, Italy, hungary, bulgaria, Finland, libya and ____
+Rumania
+10
+
+Germany's equivalant to the dollar is ____
+Deutchmark
+10
+
+Geronimo was the leader of which North American people?
+Apache
+10
+
+Geronimo's Apache name was Goyathlay. What does Goyathlay mean in English?
+One who yawns
+10
+
+Gesture of celebration in which two people slap each others palms with their arms outstretched over their heads?
+High-five
+10
+
+Get'em up, scout: what's the off side on a horse?
+The left
+10
+
+Gettysburg: From what direction did the Confederate Army attack Gettysburg?
+North
+10
+
+Gettysburg: The Confederacy invaded the North to draw Union troops away from here?
+Vicksburg
+10
+
+Gettysburg: The Gettysburg National Cemetery stopped burials this year?
+1972
+10
+
+Gettysburg: This Confederate general led Rebel troops into the Union line at The Angle?
+Lewis armistead
+10
+
+Gettysburg: This general commanded the Union troops at Gettysburg?
+George meade
+10
+
+gherkins are a type of ____
+Pickle
+10
+
+Ghost who calls munich the 'monaco of bavaria'?
+Italians
+10
+
+Ghosts appear in 4 Shakespearian plays; Julius Caesar, ____ , Hamlet and Macbeth
+Richard iii
+10
+
+Ghosts appear in 4 Shakespearian plays; Julius Caesar, Richard III, ____ and Macbeth
+Hamlet
+10
+
+Ghosts appear in 4 shakespearian plays; julius caesar, richard iii, hamlet and____
+Macbeth
+10
+
+Ghosts appear in 4 Shakespearian plays;____ , Richard III, Hamlet and Macbeth
+Julius caesar
+10
+
+Giant flying foxes that live in ____ have wingspans of nearly six feet
+Indonesia
+10
+
+Giant flying foxes that live in Indonesia have wingspans of nearly ____ feet
+Six
+10
+
+Gillan Music: who re-recorded 'secret agent man' in 1979?
+Devo
+10
+
+Gilligan of Gilligan's Island had a first name that was only used once, on the never-aired pilot show. His first name was?
+Willy
+10
+
+Gilligans Island: What is the Professor's only concern about his most brilliant idea?
+If it will work
+10
+
+Gimme a number: how many colours are there in the spectrum?
+Seven
+10
+
+Gina Hemphill carried the Olympic Torch at the opening ceremony of the 1984 Summer Olympic Games. Who was her famous grandfather?
+Jesse owens
+10
+
+Ginger baker, Eric clapton and jack bruce were the line-up to which band?
+Cream
+10
+
+Giovannie in the opera 'don giovanni', who was leporello?
+Servant
+10
+
+Giraffes are unable to?
+Cough
+10
+
+Give a year in the life of the painter Frans Hals?
+1580-1666
+10
+
+Give another name for hydrocyanic acid (HCN), sometimes wrongly called cyanide?
+Prussic acid
+10
+
+Give another name for mother of pearl?
+Nacre
+10
+
+Give another name for the Gnu?
+Wldebeest
+10
+
+Give approval or sanctin to something?
+Endorse
+10
+
+Give me the matematical constant pi with 15 decimals?
+3.141592653589793
+10
+
+Give one of michael portillo's other christian names.denzil?
+Xavier
+10
+
+Give poet E.E.Cummin s' christian names.?
+Edward estlin
+10
+
+Give poet W.H.Auden's Christian names?
+Wystan hugh
+10
+
+Give the first names of the author p.g.wodehouse?
+Pelham grenville
+10
+
+Give the food items eaten by the owl and the pussycat.?
+Mince and quince
+10
+
+Give the forenames of baseball player, Babe Ruth?
+George herman
+10
+
+Give the musical term for 'grow louder'?
+Crescendo
+10
+
+Give the name by which the daughter of Prof. Archimedes Q. Porter is known in a 1914 novel Tarzan & the Apes?
+Jane
+10
+
+Give the name of Elizabeth Barrett Browning's dog?
+Flush
+10
+
+Give the title of the play by Yasmina Reza about three friends, one of whom buys a white painting on a white background?
+Art
+10
+
+Give the two men who completed the first circumnavigation of the globe in a balloon?
+Bertrand piccard and brian jones
+10
+
+Give the year in which Boris Becker was the Men's Wimbledon champion and Pol Pot resigned as Khmer Rouge commander?
+1985
+10
+
+Glamorous movie star, Veronica Lake, was often teamed up with which male co-star?
+Alan Ladd
+10
+
+Glascow was voted the European City of Culture in which year?
+1990
+10
+
+Glasgow gained a major museum in the 1980s, what is it called?
+The burrell collection
+10
+
+Glass Making - What is the glass capital of the world?
+Toledo
+10
+
+Glassy mineral the red kind is used as a gem?
+Garnet
+10
+
+Glen Seaborg is the only living person after whom a chemical element is named. Name it?
+Seaborgium
+10
+
+Globe & Jerusalem are all types of what?
+Artichoke
+10
+
+Glucose is a form of which substance?
+Sugar
+10
+
+Gnu is the three letter term for which animal?
+Wildebeest
+10
+
+Goat's eyes have what shape of pupils?
+Rectangular
+10
+
+Goats have rectangular ____
+Pupils
+10
+
+Goats produce?
+Cashmere
+10
+
+Goblin like creature?
+Gnome
+10
+
+God of dreams and nephew of hades?
+Morpheus
+10
+
+Goddesses of fate (in alphabetical order)?
+Atropos clotho lachesis
+10
+
+Godthaab is the capital of which country?
+Greenland
+10
+
+Goethe could only write if he had an ____ rotting in the drawer of his desk
+Apple
+10
+
+Goitre is an enlargement of what gland?
+Thyroid
+10
+
+Gold coin depicting President Kruger?
+Krugerrand
+10
+
+Gold or silver in lump valued by weight?
+Bullion
+10
+
+Gold salts are sometimes injected into the muscles to relieve?
+Arthritis
+10
+
+Golden ____ are so rare that a biological reserve has been specifically created for them
+Toads
+10
+
+Golden books in how many films did grace kelly appear?
+Eleven
+10
+
+Goldfish can suffer ____ sickness
+Motion
+10
+
+GOMER stands for what?
+Get out of my emergency room
+10
+
+Gone With the Wind is the only Civil War epic ever filmed without a single ____ scene
+Battle
+10
+
+Good friday fell on what date, in the year 2000?
+Apr 21
+10
+
+Goose-geese, passerby- ____
+Passersby
+10
+
+Gordon Sumner is the real name of which pop star?
+Sting
+10
+
+Gordon sumner of the police is also known as who?
+Sting
+10
+
+Gorillas often sleep for up to ____ hours a day
+Fourteen
+10
+
+Gossip periodicals, tabloids or magazines?
+National Enquirer
+10
+
+Gothe and stendhal were both famous as?
+Writers
+10
+
+Gothenburg is the chief seaport of which country?
+Sweden
+10
+
+Gotta know this: what was the name of Charles foster kane's sled?
+Rosebud
+10
+
+Grabatology is the collecting of?
+Ties
+10
+
+Graham bell his ship was the h.m.s. beagle?
+Charles darwin
+10
+
+Grand teton national park is in what state?
+Wyoming
+10
+
+Grapes explode when you put them in the____
+Microwave
+10
+
+Grass from SE Asia yeilding a fragrant oil?
+Citronella
+10
+
+Gratinee is a Parisian favorite what is it?
+Cheese-topped onion soup
+10
+
+Grave's Disease is caused by a malfunctioning?
+Thyroid
+10
+
+Grease: What did Frenchy do that made Sandy puke?
+Pierced her ear
+10
+
+Great Britain: In the House of Lords, where does the Lord Chancellor sit?
+Woolsack
+10
+
+Great Britain: In which park are Queen Mary's gardens?
+Regents Park
+10
+
+Great Britain: What are the only two london boroughs that start with the letter 'e'?
+Ealing and Enfield
+10
+
+Great Britain: What does 'The Monument' in London commemorate?
+Great Fire of London
+10
+
+Great Britain: What was the second bridge built across the Thames?
+Westminster Bridge
+10
+
+Great Britain: Where is Selfridges?
+Oxford Street, London
+10
+
+Great Britain: Which building commemorates the Great Fire of London?
+Monument
+10
+
+Great Britain: Who at Buckingham Palace wears bearskins?
+Guards
+10
+
+Great desert area, northern Africa, the western portion of the broad belt of arid land that extends from the Atlantic ocean eastward past the red sea to Iraq?
+Sahara
+10
+
+great teacher, the title bestowed upon buddha, is also formally called?
+Gautama
+10
+
+Great waves resulting from earthquakes are called ____
+Tsunami
+10
+
+Great woman opera singer?
+Diva
+10
+
+greek god of love?
+Eros
+10
+
+Greek gods of Mythology: god of sleep?
+Hypnos
+10
+
+Greek gods of Mythology: goddess of retribution?
+Nemesis
+10
+
+Greek gods of Mythology: which goddess personified the earth?
+Gaea
+10
+
+Greek mythological youth loved by Aphrodite?
+Adonis
+10
+
+Greek mythology monster with lions head, goats body and serpents tail?
+Chimera
+10
+
+Greek mythology, which goddess was the avenger of crime and dispenser of justice?
+Nemesis
+10
+
+Greek mythology, who was the messenger of the gods?
+Hermes
+10
+
+Greek Mythology: God of war?
+Ares
+10
+
+Greek Mythology: What is is named after a creature that was part woman, part snake, and whom mothered Hydra?
+Echidna
+10
+
+Greek philosopher, who profoundly affected western philosophy through his influence on plato?
+Socrates
+10
+
+Green Bay Packer fans are often called ____
+Cheeseheads
+10
+
+Green Bay Packers football great ____ was inducted into the hall of fame in 1974
+Tony canadeo
+10
+
+Greenlands offical name?
+Kaladlit nunat
+10
+
+Gregorian Calendar People riot thinking the govt stole ____ days of their lives
+Eleven
+10
+
+Grenadine is a syrup from the juice of which fruit?
+Pomegranate
+10
+
+Grey and black #1 what latin word means 'little shaded area'?
+Umbrella
+10
+
+Griffin's Wharf was the site for which famous party?
+The Boston Tea Party
+10
+
+Groaking is to watch people ____ in hopes that they will offer you some
+Eating
+10
+
+Grossanes is another name for which cocktail extra?
+Olives
+10
+
+Grotesque carved spout usually projecting from the gutter of a building?
+Gargoyle
+10
+
+Group of devices used to convert mechanical energy into electrical energy, or electrical energy into mechanical energy, by electromagnetic means (energy)?
+Electric motors & generators
+10
+
+Grunge music originated in which American city?
+Seattle
+10
+
+Guinness modern ballroom dance, of argentinian origin?
+Tango
+10
+
+Guiyaquil is the largest city in which country?
+Ecuador
+10
+
+Gules is the heraldic name for what colour?
+Red
+10
+
+Gunpowder is formed after mixing charcoal, ____ and sulphur
+Saltpetre
+10
+
+Gunpowder is formed after mixing charcoal, saltpetre and ____
+Sulphur
+10
+
+Gunpowder was invented in?
+China
+10
+
+Gustav Vasa was the King of which Scandinavian country?
+Sweden
+10
+
+Guy Blaine is the latest boyfriend of which famous lady?
+Barbie
+10
+
+Guy delage claimed to be the first person to swim across which ocean?
+Atlantic ocean
+10
+
+Gypsum is a hydrated sulphate of which metal?
+Calcium
+10
+
+H2s04 is the chemical formula for which compound?
+Sulphuric acid
+10
+
+Habib Ibn Ali Bourguiba became president of which country in 1957, was re-elected three times before being made Life President in 1975?
+Tunisia
+10
+
+Habib ibn ali bourguiba became president of which country in 1957?
+Tunisia
+10
+
+Hades was god of what?
+The underworld
+10
+
+Hadrians Wall marked the northern boundary of which empire?
+The roman empire
+10
+
+Haifa is a major seaport in which country?
+Israel
+10
+
+Haiphong is the third largest city in which south-east asian country?
+Vietnam
+10
+
+Hair is made from the same substance as____
+Fingernails
+10
+
+Hair Styling Stuff?
+Gel
+10
+
+Hair styling stuff?
+Hair pins
+10
+
+Hair, prompted by testosterone, grows faster in men in anticipation of ____
+Sex
+10
+
+Hairstylist anthony silvestri cuts hair while____
+Underwater
+10
+
+Haiti was the second country in the Americas to achieve freedom from colonial rule, what was the first?
+United states of America
+10
+
+Half a byte is called a?
+Nybble
+10
+
+Half of all murders are committed with ____
+Handguns
+10
+
+half rotten vegetable matter, used to enrich soil?
+Mulch
+10
+
+Half years who made her show business debut at the age of 2 1/2 as part of her family's vaudeville act on the 'new grand theater stage'?
+Judy garland
+10
+
+Halifax is the capital of ____
+Nova scotia
+10
+
+Hallmark makes cards for ____ different relationships
+105
+10
+
+Hamburg lies on which river?
+The elbe
+10
+
+Hamlet was the prince of ____
+Denmark
+10
+
+Hammer, anvil and stirrup are parts of ____
+Ear
+10
+
+Hammer, anvil, and stirrup are parts of the ____
+Ear
+10
+
+Hand tool for gripping nuts or bolt heads?
+Spanner
+10
+
+Hand-held Weapons?
+Gun
+10
+
+Handlebar, toothbrush and walrus are all types of what?
+Moustache
+10
+
+Hang On Sloopy is the official rock song of____
+Ohio
+10
+
+Hannibal had only one ____ after getting a disease while attacking Rome
+Eye
+10
+
+Hannibal was of what nationality?
+Carthaginian
+10
+
+Hanoi is the capital of ____
+North vietnam
+10
+
+Hans Christian andersen, Cher, Tom Cruise, Albert Einstein, Whoopie Goldberg, Greg Louganis, Lee Harvey Oswald, & General George S. Patton, are (were) all what?
+Dyslexic
+10
+
+hans Lippershay -1608, Galileo - 1610, Isaac Newton - 1668 and William Herschel 178 all designed different types of what?
+Telescope
+10
+
+Hans Wildorf developed the first waterproof watch in 1926 when with which company?
+Rolex
+10
+
+Hansen's disease has another name what is it?
+Leprosy
+10
+
+Hansenosis is more commonly known as...?
+Leprosy
+10
+
+Happy Days takes place in this city?
+Milwaukee
+10
+
+Happy days: what did the she devils motorcycle gang threaten to do to chachi for breaking up with his gang leader's little sister?
+Shave his head
+10
+
+Happy days: what high school did richie, ralph, and potsie attend?
+Jefferson high school
+10
+
+Happy days: what was fonzie's nickname for joanie?
+Shortcake
+10
+
+Happy days: when richie was chosen to be a contestant on the tv show big money, what was his chosen category?
+Rock and roll
+10
+
+Harappa & mohenjodaro were 2 great cities in the?
+Indus valley
+10
+
+Harare is the capital of ____
+Zimbabwe
+10
+
+Hard heavy black tropical wood?
+Ebony
+10
+
+Hard striped semi precious form of quartz?
+Agate
+10
+
+Harrisburg is the capital of ____
+Pennsylvania
+10
+
+Harrison Ford's performance in which film earned him his only Best Actor nomination?
+Witness
+10
+
+Harrison What do the San Joaquin kit fox, Hawaiian hawk and Ocelot have in common?
+Endangered species
+10
+
+Hartford is the capital of ____
+Connecticut
+10
+
+Hartford is the capital of which American state?
+Connecticut
+10
+
+Harvard college was founded in this year?
+1636
+10
+
+Hattie mcdaniel was the first black actress to win an oscar, for which film?
+Gone with the wind
+10
+
+Havana is the capital of ____
+Cuba
+10
+
+Have you ever danced with the devil in the pale moonlight?
+Batman
+10
+
+Having a surface which curves inwards?
+Concave
+10
+
+Hawaii lies on the tropic of?
+Cancer
+10
+
+Hawaii officially became apart of the US on June 14,?
+1900
+10
+
+Hawaii: what is the nickname of the island lanai?
+Pineapple island
+10
+
+Hawaii: what is the nickname of the island oahu?
+Gathering place
+10
+
+Hawaii: What island of the Hawaiian islands is the youngest?
+Hawaii
+10
+
+Hawaii: What year was the first telephone company started?
+1883
+10
+
+Hay fever is the ____ most prevalent chronic condition in the United States
+Sixth
+10
+
+Haydn's 'creation' was based on genesis and which other piece of literature?
+Paradise lost
+10
+
+Hayling Island is part of which comity?
+Hampshire
+10
+
+Hazel was the maid for what family?
+Baxters
+10
+
+He assassinated john lennon on december 8 1980?
+Mark chapman
+10
+
+He belted out hits for bad company, the firm and then went out on his own?
+Paul rodgers
+10
+
+He collected & recorded the opinions & arguments of Socrates?
+Plato
+10
+
+He composed the opera, barber of seville?
+Rossini
+10
+
+He designed the first feasible automobile with an internal combustion engine?
+Karl Freidrich Benz
+10
+
+He died in 1829, but his #100,000 foundation formed many major museums?
+James smithson
+10
+
+He directed 'The Godfather'?
+Francis Ford Coppola
+10
+
+He discovered natural radioactivity?
+Antoine becquerel
+10
+
+He discovered phobos?
+Asaph hall
+10
+
+He discovered the Grand Canyon?
+Francisco coronado
+10
+
+He founded the Egyptian city of Alexandria?
+Alexander the great
+10
+
+He gave us malted milk?
+William horlick
+10
+
+He invented the most common projection for world maps?
+Gerardus mercator
+10
+
+He is the godfather of the Springfield mafia?
+Don Vittorio
+10
+
+He is the Plow King?
+Barney Gumbel
+10
+
+He is the president of Laramie cigarettes?
+Jack Larson 
+10
+
+He led the mormons to the great salt lake?
+Brigham young
+10
+
+He left saturday night for late night in 1992:?
+Dennis miller
+10
+
+He Marquis of Blandford is heir to which British Peerage?
+Duke of marlborough
+10
+
+He opened Tutankhamens tomb?
+Howard carter
+10
+
+He put words in Charlie McCarthy's mouth?
+Edgar bergen
+10
+
+He said, 'i have nothing to offer but blood, tears, toil and sweat'?
+Winston churchill
+10
+
+He shot Lee Harvey Oswald?
+Jack ruby
+10
+
+He starred in 'Conan the Barbarian'?
+Arnold Schwarzenegger
+10
+
+He starred in, 'City Lights'?
+Charlie Chaplin
+10
+
+He swept the Princi Awards. Who is he and what school is he from?
+Principal Valiant from Shelbyville Elementary
+10
+
+He transmitted radio signals across the Atlantic in 1901?
+Enrico Marconi
+10
+
+He used elephants to cross the alps & plunder the Roman countryside?
+Hannibal
+10
+
+He visited Australia & New Zealand, then surveyed the Pacific coast of North America?
+George vancouver
+10
+
+He was 'dancing on the ceiling'?
+Lionel richie
+10
+
+He was a monk,scholar and scientist who died in 1920, nicknamed Dr Mirabilis.Credited with inventing gunpowder and magnifying glasses?
+Roger bacon
+10
+
+He was a terror down the right wing for blackpool, stoke and England, and was every leftback's nightmare. he retired from football at the ripe old age of 50?
+Sir stanley matthews
+10
+
+He was assassinated on Nov. 22, 1963?
+President kennedy
+10
+
+He was elected President of France, in 1981?
+Francios Mitterrand
+10
+
+He was from the planet mongo?
+Ming the merciless
+10
+
+He was known as the 'Elephant Man'?
+John Merrick
+10
+
+He was responsible for building the china clipper?
+Glenn l martin
+10
+
+He was Secretary of the Interior for Ronald Regan?
+James Watt
+10
+
+He was the American inventor of the cotton gin?
+Eli whitney
+10
+
+He was the emperor of Japan during WW II?
+Hirohito
+10
+
+He was the German nobel prize winner of 1918, inventor of the method of ammonia processing, and attempted to extract gold from sea water?
+Haber
+10
+
+He was the last Saxon king?
+Harold ii
+10
+
+He was the son of Adam & Eve who was slain by his brother?
+Abel
+10
+
+He was the U S president during the civil war?
+Abraham lincoln
+10
+
+He was the villain in 'Star Wars'?
+Darth Vader
+10
+
+He won 511 games between 1890 and 1911?
+Cy young
+10
+
+He worked in a factory making toilets for airplanes before he recorded 'aint no sunshine when shes gone'?
+Bill withers
+10
+
+He wrote 'Sexual Behaviour in the Human Male' in 1948?
+Alfred Kinsey
+10
+
+He wrote 'the aeneid' & is generally acccepted as Rome's greatest poet?
+Virgil
+10
+
+Head of the Virgin gruop of campanies?
+Richard Branson
+10
+
+Head which Spanish explorer named the amazon river?
+Orellana
+10
+
+Heads up!: who's head did salome demand?
+John the baptist
+10
+
+Heartbreak Hotel: What was Elvis Presley's rank when he was discharged from the army?
+Sergeant
+10
+
+Heat & light resulting from the rapid combination of oxygen, or in some cases gaseous chlorine, with other materials?
+Fire
+10
+
+Heavenly Bodies: At 40 million kms, this is the star nearest to the Earth?
+Proxima Centauri
+10
+
+Heavier-than-air craft that derives its lift not from fixed wings like those of conventional airplanes, but from a power-driven rotor or rotors, revolving on a vertical axis above the fuselage?
+Helicopter
+10
+
+Heaviest substance known?
+Osmium
+10
+
+Heavy material stabilizing a ship?
+Ballast
+10
+
+Hebrew is one of the official languages of Israel, name the other?
+Arabic
+10
+
+Heh, heh. Those darn ninjas. They're ____.
+Wacky
+10
+
+Hela cells, immortal cancer cells, came from this woman?
+Henrietta lacks
+10
+
+Helen Gurley Brown published which woman's magazine?
+Cosmopolitan
+10
+
+Helen Gurley Brown was the publisher of what magazine?
+Cosmopolitan
+10
+
+Helen sharman was the first British female what?
+Astronaut
+10
+
+Heliomania is an obsession or crazed desire for ____ ____
+Sun
+10
+
+Heliotaxis means the response of an organism to what?
+Sunlight
+10
+
+Hell hath no fury like ____
+A woman scorned
+10
+
+Helsinki is the capital of ____
+Finland
+10
+
+Hemp plant part of which can be used as a narcotic?
+Cannabis
+10
+
+Henry fleming was the young soldier in the civil war in what movie?
+Red badge of courage
+10
+
+Henry ford flatly stated that history is____
+Bunk
+10
+
+Henry Rowley Bishop was most famous for composing whihc popular song?
+Home sweet home
+10
+
+Henry the Eighth was the father of two English Queens, Mary I and Elizabeth I. Which other King was the father did the same?
+James the second
+10
+
+Henry VII was the only British King to be crowned on the?
+Field of battle
+10
+
+Henry viii had six wives, which of them survived him?
+Katherine parr
+10
+
+Henry VIII's wife Catherine of Aragon was born in which country?
+Spain
+10
+
+Her face launched a thousand ships?
+Helen of troy
+10
+
+Her first on-screen words, after the silent film age were 'Gimme a whisky with ginger-ale on the side - and don't be stingy baby' Who was the actress who uttered these words?
+Greta Garbo
+10
+
+Her name was McGill and she called herself Lil but everyone knew her as?
+Nancy
+10
+
+Heraldry: Green?
+Vert
+10
+
+Heraldry: Left?
+Sinister
+10
+
+Herbs, Seasonings & Spices?
+Oregano
+10
+
+Here is an easy one!! What color feathers does a flamingo have?
+Pink
+10
+
+Here, kitty kitty: what kind of cats are seal points and blue points?
+Siamese
+10
+
+Herman's hermits re-made 'silhouettes' who did it originally?
+Rays
+10
+
+Heroin is derived from the ____ poppy, Papaver Somniferum, which means the poppy that brings sleep
+Opium
+10
+
+Heroin is the brand name of ____ once marketed by Bayer
+Morphine
+10
+
+Heroin is the brand name of morphine once marketed by who?
+Bayer
+10
+
+Heroin is the brand name of morphine once marketed by?
+Bayer
+10
+
+Herp Alpert's Backing Group...The?
+Tijuana Brass
+10
+
+Heston the American flag first flew over a foreign fort in what country?
+Libya
+10
+
+Hey, I was First!: A pioneer in the use of snowmobiles for Arctic exploration, this explorer led the first confirmed overland expedition to the North Pole in 1968, after a 43-day journey?
+Ralph Plaisted
+10
+
+Hey, I was First!: Christopher Columbus became the first explorer to land in the Americas in 1492. In 1497, who was second?
+John Cabot
+10
+
+Hey, I was First!: John Cabot became the first person to explore Canada in 1497. In 1534, who was second?
+Jacques Cartier
+10
+
+Hey, I was First!: New Zealander Edmund Hillary and Tenzing Norgay of Nepal became the first people to do this on May 29, 1953?
+Climb Mt Everest
+10
+
+Hey, I was First!: On Dec 14 1911, Norwegians Oscar Wisting, Helge Sverre Hassel, Helmer Julius Hanssen, Roald Amundsen, and Olav Olavsen Bjaaland became the first people to do this?
+Reach the South Pole
+10
+
+Hey, I was First!: On June 30, 1859, Jean Francois Gravelet became the first person to do this, and did it several times. On one occasion, he even paused to cook and eat an omelette. What did he do?
+Cross Niagara Falls by Tightrope
+10
+
+Hey! what was the name of this song released by 'the romantics' in february 1980?
+What i like about you
+10
+
+Hg is the chemical symbol for what element?
+Mercury
+10
+
+Hi, I'm ____ (What the hell am I doing in Springfield) ____.
+Bob Hope 
+10
+
+Hiawatha was chief of which Indian people?
+Mohawks
+10
+
+Hich sport makes use of a balance beam?
+Gymnastics
+10
+
+High speed passenger train is called a?
+Bullet train
+10
+
+Highest melting point of any metal?
+Tungsten
+10
+
+Highest order of English Knighthood?
+Order of the Garter
+10
+
+Highlander: On Highlander The Series, what is the name of Duncan MacLeod's young partner?
+Richie ryan
+10
+
+Highlander: TV/Film: Who played Duncan MacLeod?
+Adrian Paul
+10
+
+Highlander: What is the backdrop for the infamous 'cut scene' in the first movie?
+World war ii
+10
+
+Highlander: What was the name of Duncan MacLeod's monk mentor?
+Darius
+10
+
+Highly poisonous substance used in the extraction of gold and silver?
+Cyanide
+10
+
+Hillary what bird lays an egg that is roughly a quarter of its body weight?
+Kiwi
+10
+
+Hills & ridges composed of drifting sand are known as ____
+Dunes
+10
+
+Hills and ridges composed of drifting sand are known as ____
+Dunes
+10
+
+Hindu men once believed it to be unluckily to marry a ____ time. They could avoid misfortune by marrying a tree first. The tree (his third wife) was then burnt, freeing him to marry again
+Third
+10
+
+Hindus don't like dying in bed, they prefer to die beside a?
+River
+10
+
+Hippopotamuses do ____ percent of their vocalization under water
+80
+10
+
+Hirohito ascended to the Japanese throne in which year?
+1926
+10
+
+Hirtory: Name the first black nation to gain freedom from European colonial rule?
+Haiti
+10
+
+Hirundine refers to what kind of bird?
+Swallow
+10
+
+His designs focused on maximum output from minimum material and output?
+Buckminster Fuller
+10
+
+His real name was Cornelius McGillicuddy?
+Connie mack
+10
+
+Historical usually Spanish warship?
+Galleon
+10
+
+History: ____ Agnew; disgraced vice president under Nixon
+Spiro
+10
+
+History: ____ became Queen of Scotland when she was only six days old
+Mary stuart
+10
+
+History: ____ de Medici was the first woman in Europe to use tobacco. She took it in a mixture of snuff
+Catherine
+10
+
+History: ____ emperor Montezuma had a nephew, Cuitlahac, whose name meant plenty of excrement
+Aztec
+10
+
+History: ____ had only one eye after getting a disease while attacking Rome
+Hannibal
+10
+
+History: ____ Hamilton was shot by Aaron Burr in the groin
+Alexander
+10
+
+History: ____ lost 41 of his 98-men crew to scurvy (a lack of vitamin C) on his first voyage to the South Pacific in 1768. By 1795, the importance of eating citrus was realized, and lemon juice was issued on all British Navy ships
+Captain cook
+10
+
+History: ____ of workers on the Panama Canal suffered from malaria
+82%
+10
+
+History: ____ Trotsky, the seminal Russian Communist, was assassinated in Mexico with an icepick
+Leon
+10
+
+History: ____ Tse Tung, Chinese communist leader
+Mao
+10
+
+History: ____ was first used as a medical treatment in 2700 B.C. by Chinese emperor Shen-Nung
+Acupuncture
+10
+
+History: ____ was the first head of the United States Post Office
+Benjamin franklin
+10
+
+History: ____ were once used to treat a bone infection called osteomyelitis
+Maggots
+10
+
+History: 'Operation Desert Storm' took place in 1989, 1991 or 1995?
+1991
+10
+
+History: 10th Century: In the period 978-1016 England was ruled by which 'unready' king?
+Ethelred 
+10
+
+History: 14th Century: A plague killed up to one third of Europe's population. What was it called?
+The Black Plague
+10
+
+History: 15th Century: ____ set sail for the New World on a Friday in 1492
+Christopher columbus
+10
+
+History: 15th century: In which ship did john cabot sail to Canada?
+Matthew
+10
+
+History: 15th Century: Scholars in China compiled an ____ consisting of 11,095 volumes
+Encyclopedia
+10
+
+History: 15th Century: Who was the first woman to receive a diamond engagement ring? It was given to her by Maximilian I of Germany in 1477?
+Anne of burgundy
+10
+
+History: 16th Century: A 1772 explosive eruption blows 1.2 km off the top of volcano Papandayan, Java, kills____
+-- Answer metadata begin
+{
+    "answers": ["Three thousand", "3000"]
+}
+-- Answer metadata end
+10
+
+History: 16th Century: A 1772 explosive eruption blows 1.2 km off the top of volcano____ , Java, kills 3,000
+Papandayan
+10
+
+History: 16th Century: A cathedral built between 1554 and 1560 for Ivan the Terrible, to which saint is this Russian Orthodox church in Moscow dedicated?
+Saint basil
+10
+
+History: 16th Century: In 1793, who launched the worlds first hot air balloon?
+Montgolfier brothers
+10
+
+History: 16th Century: Mission ____ founded in 1776
+Dolores
+10
+
+History: 17th Century: Between 1620 and 1624 Cornelius Drebbel built and tested the first what on the Thames?
+Submarine
+10
+
+History: 17th Century: Between 1642 and 1644 which French mathematician designed the first digital calculator to help hos father in his tax computations?
+Blaise pascal
+10
+
+History: 17th Century: In 1854, during the Crimean War, what event came to be known as one of the greatest military blunders of all times?
+Charge of the light brigade
+10
+
+History: 17th Century: In the English hospitals of the seventeenth century, children were entitled to ____ gallons of beer as part of their weekly diet
+Two
+10
+
+History: 17th Century: In the great fire of london in 1666 half of London was burnt down but how many people were injured?
+Six
+10
+
+History: 18th Century: ____ was first introduced in England in 1799 by British Prime Minister, William Pitt
+Income tax
+10
+
+History: 18th Century: European women achieved a pale complexion by eating 'complexion wafers' which were actually what poison?
+Arsenic
+10
+
+History: 18th Century: Who was the us president in 1778?
+Nobody
+10
+
+History: 18th Century: Who was the US President in 1788?
+Nobody
+10
+
+History: 18th Century: You could purchase insurance against going to____ , in London, England
+Hell
+10
+
+History: 1900s: Between 1902 and 1907 the same ____ killed 436 people in India
+Tiger
+10
+
+History: 1900s: Between 1902 and 1907 the same tiger killed ____ people in India
+436
+10
+
+History: 1900s: Between 1902 and 1907 the same tiger killed 436 people in____
+India
+10
+
+History: 1900s: In 1908 a giant fireball impacts in Central ____ (Tunguska Event)
+Siberia
+10
+
+History: 1910s: In 1914 was Mahatma ____ 's 1st arrest, campaigning for Indian rights in South Africa
+Gandhi
+10
+
+History: 1920s: In 1923, New Zealand claims ____ Dependency in Antarctica
+Ross
+10
+
+History: 1930s: Hitler annexed the Sudetenland, of which country was it a part?
+Czechoslovakia
+10
+
+History: 1933, Mrs Klarius Mikkelson was the first woman to set foot where?
+The Antarctic
+10
+
+History: 1940s: Became Foreign Secretary in Attlee's Cabinet (1945-1951)?
+Ernest bevin
+10
+
+History: 1940s: In 1945 Allies refuse Japan's surrender offer to retain Emperor____
+Hirohito
+10
+
+History: 1940s: In 1948, ____ as a substitute for Radio tubes announced (Bell Labs)
+Transistor
+10
+
+History: 1940s: In 1949, South Africa begins implementing ____ ; no mixed marriages
+Apartheid
+10
+
+History: 1940s: The Bich pen was changed to Bic for fear that Americans would pronounce it '____ .'
+Bitch
+10
+
+History: 1950s: In 1952 Queen Elizabeth II acceded to the throne on the death of her father. Who was he?
+George VI
+10
+
+History: 1950s: In 1952, ____ proclaimed king of Jordan
+Hussein
+10
+
+History: 1950s: In 1952, Hussein proclaimed king of____
+Jordan
+10
+
+History: 1950s: In 1959, which party was elected for the third time in a row in Britain?
+Conservative
+10
+
+History: 1950s: King Talal of this country was ousted, due to insanity, by his son Hussein?
+Jordan
+10
+
+History: 1950s: Robert Menzies was the Prime Minister of which country throughout the 50s?
+Australia
+10
+
+History: 1950s: The 1951 Festival of Britain was centred on which city?
+London
+10
+
+History: 1950s: The control of which waterway was the goal of a joint British, French and Israeli military mission in 1956?
+Suez canal
+10
+
+History: 1950s: This European principality gained a princess in 1956?
+Monaco
+10
+
+History: 1950s: This flop car was introduced in the 50's?
+Edsel
+10
+
+History: 1950s: This nation was divided at the 17th parallel in 1954?
+Vietnam
+10
+
+History: 1950s: This pact was signed by the Soviet Union and its eastern allies?
+Warsaw
+10
+
+History: 1950s: This was created by the treaty of Rome in 1957?
+European economic community
+10
+
+History: 1950s: Which 77-year-old was returned as British Prime Minister?
+Winston churchill
+10
+
+History: 1950s: Which American evangelist Billy led a London crusade?
+Graham
+10
+
+History: 1950s: Which large mountain was conquered by Edmund Hillary and Tenzing Norgay in 1953?
+Everest
+10
+
+History: 1950s: Which was the last to come off rationing (in 1954)?
+Food
+10
+
+History: 1950s: Who left No 10 Downing Street for the second and final time in 1955?
+Winston Churchill
+10
+
+History: 1950s: Who reached the summit of Mount Everest in 1953?
+Edmund hilary
+10
+
+History: 1960s: ____ declares independence in 1960
+Chad
+10
+
+History: 1960s: A tranquilising drug, thought to have no harmful effects, was marketed in Britain and other countries as a therapy for morning sickness, resulting in the birth of hundreds of deformed babies. Name the drug?
+Thalidomide
+10
+
+History: 1960s: Discovered in 1967, pulsating radio sources in space are better known as this?
+Pulsar
+10
+
+History: 1960s: First nation ever to resign from the united nations?
+Indonesia
+10
+
+History: 1960s: Fourth nation to explode an atom bomb?
+China
+10
+
+History: 1960s: he was appointed deputy commander of military assistance in 1964?
+Westmoreland
+10
+
+History: 1960s: In 1963, Cardinal ____ elected Pope Paul VI, 262nd head of RC Church
+Montini
+10
+
+History: 1960s: In 1969, what did Neil Armstrong consider a giant leap for mankind?
+Walking on the moon
+10
+
+History: 1960s: In the 1969 Apollo 11 landing, who stayed in the command module?
+Michael collins
+10
+
+History: 1960s: John Young and him were the first astronauts to fly the two-occupant Gemini?
+Gus grissom
+10
+
+History: 1960s: Malta won independence from this country in 1964?
+England
+10
+
+History: 1960s: Martin Luther King, Jr. was assassinated in this city?
+Memphis
+10
+
+History: 1960s: Rwanda & ____ become independent in 1962
+Burundi
+10
+
+History: 1960s: Thalidomide was prescribed to help pregnant women fight what symptoms?
+Morning sickness
+10
+
+History: 1960s: Theodore Maiman demonstrated this enlightening device for the first time in '60?
+Laser
+10
+
+History: 1960s: This bridge, the largest suspension bridge in the US, was finished in 1964?
+Verrazano narrows
+10
+
+History: 1960s: This remote area was crossed on foot for the first time in 1968-1969?
+North pole
+10
+
+History: 1960s: what was the New York times headline for monday, july 21, 1969?
+Men walk on moon
+10
+
+History: 1960s: What was the theory by which America rationalised its entry into the Vietnam war?
+Domino effect
+10
+
+History: 1960s: Who set foot on the moon on july 20, 1969?
+Neil armstrong
+10
+
+History: 1960s: Zaire (then the ����� ) gained independence from Belgium in 1960?
+Belgian Congo
+10
+
+History: 1963, what was the subject of the Beeching Report?
+The railways
+10
+
+History: 1970s: ____ was the last Ivy League college to go coed, in 1972
+Dartmouth
+10
+
+History: 1970s: Angola won its independence fromthem in 1975?
+Portugal
+10
+
+History: 1970s: Anthony Armstrong-Jones and which royal separated in 1976?
+Princess Margaret
+10
+
+History: 1970s: Apple Computer ships its 1st ____ in 1977
+Apple ii
+10
+
+History: 1970s: became the capital of the reunited north and south vietnam?
+Hanoi
+10
+
+History: 1970s: He was court-martialed in 1971 for atrocities in Southeast Asia?
+William calley
+10
+
+History: 1970s: In 1971, 3 cosmonauts die as ____ depressurizes during reentry
+Soyuz xi
+10
+
+History: 1970s: In 1973 he became Los Angeles' first black mayor?
+Tom bradley
+10
+
+History: 1970s: In the UK, Margaret Thatcher was the first what?
+Female prime minister
+10
+
+History: 1970s: oregans trojan was the most powerful one of these in this decade?
+Nuclear plant
+10
+
+History: 1970s: Russian dancer who defected in 1974?
+Mikhail baryshnikov
+10
+
+History: 1970s: The first American to walk on the moon in the 70's?
+Alan shepard
+10
+
+History: 1970s: The WHO declared this disease eliminated?
+Smallpox
+10
+
+History: 1970s: this famous Idaho dam went to pieces in 1976?
+Teton river dam
+10
+
+History: 1970s: This war hero quit the Israeli cabinet in 1979?
+Moshe dayan
+10
+
+History: 1970s: Which coin was worth one hundredth of a pound under decimalisation that occurred in 1971 in the UK?
+New penny
+10
+
+History: 1980s: A hailstorm that struck munich, Germany, in july, 1984, caused an estimated $____ worth of damage to trees, buildings and motor vehicles
+1 billion
+10
+
+History: 1980s: argentina called them the malvinas islands, the British this?
+Falkland
+10
+
+History: 1980s: Charles and Diana were wed in this cathedral?
+St. Paul
+10
+
+History: 1980s: country that saw 32 of its citizens convicted of spying from 1981-88?
+United states
+10
+
+History: 1980s: first man to ride the space shuttle into orbit twice?
+John young
+10
+
+History: 1980s: He lost the 1977 NYC mayoral bid before taking successful aim at Albany?
+Mario cuomo
+10
+
+History: 1980s: How many dollars was Bernhard Goetz asked for on his fateful subway ride?
+5
+10
+
+History: 1980s: In 1981, China's Communist Party condemns the late ____ Tse-tung's policy
+Mao
+10
+
+History: 1980s: In 1983, Anne Burford left her position as administrator of this agency?
+Epa
+10
+
+History: 1980s: In 1989, where did the Iron Curtain first open?
+Hungary's border with Austria
+10
+
+History: 1980s: Infamous subway rider only convicted of illegal weapons possession?
+Bernhard goetz
+10
+
+History: 1980s: john Paul ii forgave this man for shooting him?
+Memet agca
+10
+
+History: 1980s: Seaboard state home to a nation-leading 96 hazardous waste sites in 1987?
+New jersey
+10
+
+History: 1980s: She was drawn to his 'wit, charm and good looks'. But what did Prince Andrew say he liked about Sarah Ferguson in 1986?
+Red hair
+10
+
+History: 1980s: The name of the first space shuttle?
+Columbia
+10
+
+History: 1980s: The US mining of this nations harbor created an uproar in 1984?
+Nicaragua
+10
+
+History: 1980s: the youngest leader of the soviet union before gorbachev?
+Joseph stalin
+10
+
+History: 1980s: This corporation was granted over 1 billion in government loans?
+Chrysler
+10
+
+History: 1980s: this country's president zia ul-haq was killed in a 1988 plane crash?
+Pakistan
+10
+
+History: 1980s: This leader dozed off in a 1984 speech, leading to speculation of his health?
+Chernenko
+10
+
+History: 1980s: Voyager 2 discovers 2 partial rings of ____ in 1989
+Neptune
+10
+
+History: 1980s: What was the day in 1987, that Wall Street shares plunged in value, called?
+Black Monday
+10
+
+History: 1980s: Which deadly disease was declared eradicated in 1980?
+Smallpox
+10
+
+History: 1980s: Who was the soviet president between 1985 and 1988?
+Andrei gromyko
+10
+
+History: 1980s: Who's 1000th day as a hostage was Dec. 10, 1987?
+Terry anderson
+10
+
+History: 1990s: 30th may 1998, an earthquake measuring 6.9 on the richter scale triggered landslides that swallowed entire villages killing as many as 5,000 people. In which country did this take place?
+Afghanistan
+10
+
+History: 1990s: a former east German leader found refuge at moscow's chilean embassy in 1992?
+Erich honecker
+10
+
+History: 1990s: Bill and hilary clinton switched on the christmas tree lights in belfast in 1990, 1995 or 1996?
+1995
+10
+
+History: 1990s: From which conflict in 1992 did we get the euphemism 'ethnic cleansing'?
+Bosnia
+10
+
+History: 1990s: In 1990, ____ and Morocco troops land in Saudi Arabia to prevent Iraqi invasion
+Egyptian
+10
+
+History: 1990s: In 1990, Egyptian and ____ troops land in Saudi Arabia to prevent Iraqi invasion
+Moroccan
+10
+
+History: 1990s: In 1990, Egyptian and Moroccan troops land in ____ to prevent the Iraqi invasion
+Saudi arabia
+10
+
+History: 1990s: In 1990, Egyptian and Moroccan troops land in Saudi Arabia to prevent the ����� invasion?
+Iraqi
+10
+
+History: 1990s: In 1990, Soviets admit to what?
+Katyn Massacre
+10
+
+History: 1990s: In 1990, what did Tim Berners-Lee invent while working at the CERN European nuclear research organisation?
+The world wide web
+10
+
+History: 1990s: In 1991, which multinational military campaign ousted Iraq from Kuwait?
+Desert Storm
+10
+
+History: 1990s: In 1992, what city saw 3,700 fires started on the last two days of April?
+Los angeles
+10
+
+History: 1990s: In 1992, what continent had the greatest explosion of aids cases?
+Africa
+10
+
+History: 1990s: In 1992, what credit card company recorded 205 million dollars in 3rd quarter losses?
+American express
+10
+
+History: 1990s: In 1992, what democrat won the new hampshire primary?
+Paul tsongas
+10
+
+History: 1990s: In 1992, what did the church of England allow women to become?
+Priests
+10
+
+History: 1990s: In 1992, what US state was the first ever to elect two women to its senate?
+California
+10
+
+History: 1990s: In 1992, who was found sane in Milwaukee after he killed & cut up 15 young kids?
+Jeffrey dahmer
+10
+
+History: 1990s: In 1993, $20 billion of financial aid went to this nation?
+Russia
+10
+
+History: 1990s: In 1993, a liver of this animal was transplanted into a human at the University of Pittsburgh?
+Baboon
+10
+
+History: 1990s: In 1993, China released this dissident, famous for Tiannaem Square Massacre activity?
+Wang dan
+10
+
+History: 1990s: In 1993, Crown Prince Naruhito married her?
+Masako owada
+10
+
+History: 1990s: In 1993, May Day riots occurred in this nation?
+Russia
+10
+
+History: 1990s: In 1993, this man became South Korea's first civilian leader?
+Kim young sam
+10
+
+History: 1990s: In 1993, this territory held a referendum where residents chose not to pursue statehood?
+Puerto rico
+10
+
+History: 1990s: In 1993, this world leader visited Denver, Colorado for world youth day?
+John Paul ii
+10
+
+History: 1990s: In 1997, the Cassini space probe carried this dangerous substance?
+Plutonium
+10
+
+History: 1990s: In 1997, what did the theme tune to New Labour's general election campaign promise?
+Things can only get better
+10
+
+History: 1990s: In the 1991 gulf war, what missiles did the allies use to intercept iraqi scuds?
+Patriots
+10
+
+History: 1990s: Stock markets on this continent plunged in October 1997?
+Asia
+10
+
+History: 1990s: The compound of this sect was under siege in Waco, Texas in 1993?
+Branch davidians
+10
+
+History: 1990s: This company sold 44,200,000 cases of their 16 oz cans in 1994?
+Lipton tea
+10
+
+History: 1990s: What biblical disease did 39 texans come down with in 1992?
+Leprosy
+10
+
+History: 1990s: What european country hosted expo '92?
+Spain
+10
+
+History: 1990s: What was the #5 us daily newspaper with 1,117,376 average circulation in 1990?
+New york times
+10
+
+History: 1990s: Which country voted to keep the Queen in 1999?
+Australia
+10
+
+History: 19th Century: ____ was the first country to give woman the vote, in 1893
+New zealand
+10
+
+History: 19th Century: ____ was the first European country to establish a system for health insurance for its workers in 1888
+Germany
+10
+
+History: 19th Century: Between 1857 & 1861, during James Buchanan's presidency, what role was performed by his neice, Harriet Lane?
+First Lady
+10
+
+History: 19th Century: Between 1895 & 1898 who was the first person to sail around the world alone?
+Joshua slocum
+10
+
+History: 19th Century: In 1894 Korea declares independence from ____ , asks for Japanese aid
+China
+10
+
+History: 19th Century: In the 1858 Treaty of Algun, ____ cedes north bank of Amur River to Russia
+China
+10
+
+History: 19th Century: In the 1858 Treaty of Algun, China cedes north bank of ____ River to Russia
+Amur
+10
+
+History: 19th Century: In the 1858 Treaty of Algun, China cedes north bank of Amur River to ____
+Russia
+10
+
+History: 19th Century: In the 1858 Treaty of____ , China cedes north bank of Amur River to Russia
+Algun
+10
+
+History: 19th Century: Millions of human mummies were used as what in Egypt?
+Fuel for locomotives
+10
+
+History: 19th Century: Who was the slavery abolitionist that was tried and hanged for his beliefs in 1859? his name lives on in song?
+John brown
+10
+
+History: 19th Century: Who was the US President in 1800?
+Adams
+10
+
+History: 19th Century: Who was the us president in 1808?
+Jefferson
+10
+
+History: 19th Century: With which innovation in transport in the 1830s is the English surgeon and inventor Sir Goldsworth Gurney associated?
+Steam driven stagecoaches
+10
+
+History: 200 million years ago Earth contained 1 land mass called?
+Pangaea
+10
+
+History: 2000s: 2002, who became the Queen of Spain?
+Sophia
+10
+
+History: 2000s: As of 2002, which republic currently exists in France?
+The fifth
+10
+
+History: 2000s: In 2002, British troops led a peacekeeping force in which capital city?
+Kabul
+10
+
+History: 2000s: Which of these millennium landmarks closed almost as soon as it opened?
+The Millennium bridge
+10
+
+History: 6th century BC: What did nebuchadnezzar build on the banks of the euphrates?
+Hanging gardens of babylon
+10
+
+History: 82% of the workers on the Panama Canal suffered from?
+Malaria
+10
+
+History: 82% of workers on the ____ Canal suffered from malaria
+Panama
+10
+
+History: A female pharaoh was unknown in ____ before Hatshepsut, who had herself portrayed in male costume, with a beard and without breasts
+Egypt
+10
+
+History: After India became independent, dispute over which state led to a war with Pakistan?
+Kashmir
+10
+
+History: After sheltering from a storm near Cheddar Gorge, Augustus Toplady wrote which hymn?
+Rock of Ages
+10
+
+HISTORY: After the end of the Vietnam war what was saigons name changed to?
+Ho Chi Minh City
+10
+
+History: After which governor of the Dutch East India company was Tasmania first named?
+Anthony van dieman
+10
+
+History: After who was America named?
+Amerigo Vespucci
+10
+
+History: After who was Mickey Mouse named?
+Mickey Rooney
+10
+
+History: After whom is the US state of Virginia named?
+Elizabeth i
+10
+
+History: After whose rebellion were the 'Bloody Assizes' presided over by the infamous Judge Jeffreys?
+Duke of monmouth
+10
+
+History: After WWI what was Hitler promoted to in rank?
+Corporal
+10
+
+History: Against which country did England fight the 'hundred years war'?
+France
+10
+
+History: Against which Iraqi dictator was the Gulf War fought?
+Saddam hussein
+10
+
+History: Against whom did Richard the Lionheart fight in the Crusades?
+Saladin
+10
+
+History: Against whom was Robert the Bruce fighting when he was inspired to try again by a spider?
+King edward II
+10
+
+History: Alexander the Great was king of which country?
+Macedonia
+10
+
+HISTORY: allied invasion of Italy?
+Gallipoli
+10
+
+History: Although his remains were found to be missing in 1864, where was Voltaire buried?
+The Pantheon,Paris
+10
+
+History: Although modern images of India often show poverty and lack of development, India was the richest country on earth until the time of British invasion in the early ____ Century
+17th
+10
+
+History: Animals: 1950s: Laika was the first animal in space in 1957. What was she?
+A dog
+10
+
+History: Approximately how many children did pharaoh Ramses II father?
+One hundred and sixty
+10
+
+History: As what was Istanbul previously known?
+Constantinople
+10
+
+History: As what was Taiwan formerly known?
+Formosa
+10
+
+History: As what was winchester known by the Romans?
+Venta Bulgarum
+10
+
+History: Astronaut Neil Armstrong stepped on the moon with his ____ foot first
+Left
+10
+
+History: At the time of Julius Caesar, who was the ruler of Egypt?
+Cleopatra
+10
+
+History: At what time did the hiroshima bomb detonate?
+8:15 am
+10
+
+History: At which battle between British and Zulu forces in South Africa in 1879 did a small British force win 11 Victoria Crosses?
+Rorkes drift
+10
+
+History: At which battle in Ireland in 1690 did the army of William of Orange decisively defeat that of James VII & II?
+Battle of the boyne
+10
+
+History: At which battle of 1798 did the boy stand on the burning deck?
+Battle of the Nile
+10
+
+History: At which castle near Leyburn was Mary Queen of Scots held captive for 6 months in 1568?
+Bolton castle
+10
+
+History: Australian highwaymen or robbers who, in the late 18th and early 19th centuries, terrorized settlers in the new south wales and victoria regions?
+Bushrangers
+10
+
+History: Aztec emperor ____ had a nephew, Cuitlahac, whose name meant plenty of excrement
+Montezuma
+10
+
+History: Aztec emperor Montezuma had a nephew, ____ , whose name meant plenty of excrement
+Cuitlahac
+10
+
+History: Aztec emperor Montezuma had a nephew, Cuitlahac, whose name meant plenty of ____
+Excrement
+10
+
+History: Babieca was the name of who's horse?
+El cid
+10
+
+History: Bandleader Glenn Miller was last seen in an aircraft leaving which country?
+England
+10
+
+History: Bangladesh became independent in 1971, what was it called before that date?
+East pakistan
+10
+
+History: Barney Clark was the first recipient of which artificial heart?
+Jarvik 7
+10
+
+History: Battle at which Davy Crockett was killed?
+The alamo
+10
+
+History: Because of heavy traffic congestion, Julius Caesar banned all ____ from Rome during daylight hours
+Wheeled vehicles
+10
+
+History: Because of heavy traffic congestion, julius caesar banned all wheeled vehicles from rome during ____
+Daylight hours
+10
+
+History: Because of heavy____ , Julius Caesar banned all wheeled vehicles from Rome during daylight hours
+Traffic congestion
+10
+
+History: Because of the ____ content of the Dead Sea, it is difficult to dive below its surface
+Salt
+10
+
+History: Because they had no proper rubbish disposal system, the streets of ancient ____ became literally knee-deep in rubbish
+Mesopotamia
+10
+
+History: Beetle sacred to the ancient egyptians?
+Scarab
+10
+
+History: Benazir bhutto regained power in 1993 after being ousted how many years before?
+Three
+10
+
+History: Benito mussolini would ward off he evil eye by touching his what?
+Testicles
+10
+
+History: Benjamin Franklin suggested that ____ should be the U S national bird
+Turkey
+10
+
+History: Between which countries was the shortest war in history?
+Zanzibar and England
+10
+
+History: Bill and Hilary Clinton switched on the Christmas tree lights in Belfast, Northern Ireland, in 1990, 1995 or 1996?
+1995
+10
+
+History: Bill Clinton is the first Democrat to be elected to two terms in office since which American President?
+Franklin d roosevelt
+10
+
+History: Bill Gates dropped out of which of educational institution?
+Harvard
+10
+
+History: Bill Gates formed a company to sell a computerized traffic counting system to cities, which made $20,000 its first year. Business dropped sharply when customers learned Gates was only ____ years old
+Fourteen
+10
+
+History: Billy the Kid was born in ____
+1859
+10
+
+History: Blackbird, who was the chief of ____ Indians, was buried sitting on his favourite horse
+Omaha
+10
+
+History: Blanchard and jeffries crossed the English channel in 1785 using what means of transport?
+Hydrogen balloon
+10
+
+History: Britain and Argentina fought over these islands in 1982?
+Falkland
+10
+
+History: Britain and Argentina fought over these islands in 1982?
+Falklands Islands
+10
+
+History: British aircraft designer of the Tiger Moth and Mosquito?
+De havilland
+10
+
+History: British inventor of the first successful steam locomotive in 1814?
+George stephenson
+10
+
+HISTORY: British prime minister 1979 - 1990?
+Margaret Thatcher
+10
+
+History: Buffalo Bill's real name was...?
+William f cody
+10
+
+History: By what name is the Mongol leader Temujin better known?
+Genghis Khan
+10
+
+History: By who was Gerald Ford almost assassinated?
+Squeaky Fromme
+10
+
+History: Canadian Prime Minister: Pierre Elliott ____
+Trudeau
+10
+
+History: Chang and Eng were the most famous as what?
+Siamese twins
+10
+
+History: Charles ii's mistress?
+Nell Gwynn
+10
+
+History: Charles Rolls of Rolls Royce fame died in what type of vehicle?
+Airplane
+10
+
+History: Churchill, F.D. Roosvelt and Stalin met here in 1945?
+Yalta
+10
+
+History: Code name for D Day?
+Operation Overlord
+10
+
+History: Columbus had three ships on his first American exploration. On his second expedition, ____ ships were under his command
+Seventeen
+10
+
+History: Did Rotheim invent the aerosol in 1919, 1926 or 1931?
+1926
+10
+
+History: Disney: Back in the day at Walt Disney studios, Walt's brother Ray reportedly peddled what to employees on the lot?
+Insurance
+10
+
+History: During Prohibition, what name was given to an illegal drinking club?
+Speakeasy
+10
+
+History: During which war was OXFAM set up?
+WWII
+10
+
+History: During which war was the New Model Army formed?
+English civil war
+10
+
+History: During World War I what kind of gas was used in the trenches?
+Mustard gas
+10
+
+History: During wwii Norman Shelley was enlisted to imitate whom in radio broadcasts?
+Winston Churchill
+10
+
+History: East Berlin was the capital of ____
+East Germany
+10
+
+History: Easy! What was described as Unsinkable?
+RMS Titanic
+10
+
+HISTORY: Englands first prime minister?
+Robert Walpole
+10
+
+History: Eras are divided into units called ____
+Periods
+10
+
+History: Ferdinand and imelda marcos were exiled in what year?
+1986
+10
+
+History: Ferdinand and Isabella were joint rulers in which country?
+Spain
+10
+
+History: Ferdinand Marcos was the president of which country?
+Philippines
+10
+
+History: Final and decisive action of the napoleonic wars, that effectively ended french domination of europe?
+Battle of waterloo
+10
+
+History: First emperor of rome (27bc-14ad), who restored unity and orderly government to the realm after nearly a century of civil wars?
+Augustus
+10
+
+History: First name of the famous lord nelson of trafalgar?
+Horatio
+10
+
+History: For what country did Columbus make his historic voyage?
+Spain
+10
+
+History: For what drink was chicory a wartime substitute?
+Coffee
+10
+
+History: For what purpose did the Mayan people build pyramids?
+Temples
+10
+
+History: For what was Sir Francis Walsingham, Elizabeth i's Secretary of State best remembered?
+Espionage
+10
+
+History: For which event was th efirst commemorative medal struck?
+Defeat of the armada
+10
+
+History: Four Japanese carriers were destroyed in this battle?
+Midway
+10
+
+History: Frankish ruler Charles the Great is better known as ____
+Charlemagne
+10
+
+History: From the 14th century to 1830 the eldest sons of french kings were known by what title?
+Dauphin
+10
+
+History: From the 14th century to 1830 the eldest sons of French kings were known by which name?
+Dauphin
+10
+
+History: From what country did the U.S. buy the Virgin Islands?
+Denmark
+10
+
+History: From what did Alexander the Great suffer?
+Epilepsy
+10
+
+History: From which French ship was the musket ball fired that killed Lord Nelson?
+Redoubtable
+10
+
+History: From which port did the Titanic set sail?
+Southampton
+10
+
+HISTORY: From whom did JF kennedy accept his dog Pushinka?
+Nikita Krushchev
+10
+
+History: General Sherman burned this city in 1864?
+Atlanta
+10
+
+History: George Washington Carver advocated planting peanuts and sweet potatoes to replace what?
+Cotton and tobacco
+10
+
+History: George Washington Carver advocated planting what to replace cotton and tobacco?
+Peanuts and sweet potatoes
+10
+
+History: Germany was split into two zones by which agreement?
+Yalta agreement
+10
+
+History: Germany's allies in WW II were Japan, Italy, Hungary, Bulgaria, Finland, Libya, and ____
+Romania
+10
+
+History: Germany's WW I allies were Austria-Hungary, Bulgaria, and ____
+Turkey
+10
+
+History: He advocated the planting peanuts and sweet potatoes to replace cotton and tobacco?
+Carver
+10
+
+History: He allowed the bugging of the Democratic Committee headquarters?
+Richard nixon
+10
+
+History: He discovered the Grand Canyon?
+Coronado
+10
+
+History: He discovered the Grand Canyon?
+Francisco Coronado
+10
+
+History: He is said to have fiddled while Rome burned?
+Nero
+10
+
+History: He killed Jesse James?
+Ford
+10
+
+History: He led 900 followers in a mass suicide in 1979?
+Jim jones
+10
+
+History: he name of which American civil war battle near San Antonio Texas means Cottonwood?
+The alamo
+10
+
+History: He ordered the persecution of Christians in which Peter and Paul died?
+Nero
+10
+
+History: He received the Nobel Peace Prize in 1964 for his civil rights leadership?
+Martin luther king jr
+10
+
+History: He ruled Rome when Christ was born?
+Caesar augustus
+10
+
+History: He shot Lee Harvey Oswald?
+Jack Ruby
+10
+
+History: He shot Lee Harvy Oswald?
+Ruby
+10
+
+History: He taught Alexander the Great?
+Aristotle
+10
+
+History: He was assassinated on Dec. 8, 1980 in New York City?
+John lennon
+10
+
+History: He was assassinated on Nov. 22, 1963?
+John fitzgerald kennedy
+10
+
+History: He was defeated at the Battle of Little Bighorn?
+General custer
+10
+
+History: He was stabbed by Cassius?
+Julius caesar
+10
+
+History: He was stabbed by Gaius Cassius Longinus?
+Julius Caesar
+10
+
+History: He was the American inventor of the Cotton Gin?
+Eli Whitney
+10
+
+History: He was the American inventor of the Cotton Gin?
+Whitney
+10
+
+History: He was the U.S. president during the Civil War?
+Abraham lincoln
+10
+
+HISTORY: Henry viii warship?
+Mary Rose
+10
+
+HISTORY: Henry VIIIs flagship?
+Mary rose
+10
+
+History: hich British king spoke German but hardly any English?
+George i
+10
+
+History: His ship was the H.M.S. Beagle?
+Charles darwin
+10
+
+History: His wife was Roxana. His horse was Bacephalus. He was ____
+Alexander the great
+10
+
+History: Hitler's title as supreme leader of nazi Germany?
+Fuhrer
+10
+
+History: How did 1940s British murderer John Haigh dispose of his victims' bodies?
+Acid bath
+10
+
+HISTORY: How did Jane Seymour,wife of Henry viii die?
+Septicaemia
+10
+
+History: How do you write 69 in Roman numerals?
+Lxix
+10
+
+History: How is the stockmarket collapse of the 24th October 1929 better known?
+Black Thursday
+10
+
+History: How long did the Arab-Israeli War of 1967 last?
+Six days
+10
+
+History: How many astronauts manned each Apollo flight?
+3
+10
+
+History: How many astronauts manned each Apollo flight?
+Three
+10
+
+History: How many British officers were forced by Indian troops into the Black Hole of Calcutta?
+146
+10
+
+History: How many countries joined the United Nations at it's start?
+51
+10
+
+History: How many kings of England have been called Henry?
+Eight
+10
+
+History: How many olympics have been cancelled due to war?
+Three
+10
+
+History: How many people were killed in the battle of Lexington?
+Eight
+10
+
+History: How many stab wounds did Julius Caesar have when he died?
+23
+10
+
+History: How many years was Nelson Mandela in prison?
+27
+10
+
+History: How many years were between the creation of the Magna Carta and the American Declaration of Independence?
+561
+10
+
+History: How old was Alexander the Great when he died?
+32
+10
+
+History: How old was John F. Kennedy when he became president?
+43
+10
+
+History: How was William Pitt the Elder's son known?
+William Pitt the Younger
+10
+
+History: In 1902 this volcano erupted, killing 30,000?
+Pelee
+10
+
+History: In 1911 Roald Amundsen became the first person to reach where?
+South Pole
+10
+
+History: In 1962, for what did Britain and France sign an agreement to build together?
+Concorde
+10
+
+History: In 1975, what re-opened after an 8 year closure?
+Suez Canal
+10
+
+History: In 1998 the Festina team was banned from what over drug allegations?
+Tour de France cycle race
+10
+
+History: In ancient greece, what was a hoplite?
+A soldier
+10
+
+History: In British history a dwelling offering accomodation to the poor?
+Almshouse
+10
+
+History: In March 1979, where did a major nuclear accident occur?
+Three Mile Island
+10
+
+History: In the 15th century, what was the war between the houses of Lancaster and York?
+War of the Roses
+10
+
+History: In the 17th century which country started taxing beards?
+Russia
+10
+
+History: In the 1855 Russian War, what were used to transport Torpedos?
+Kites
+10
+
+History: In the 19th Century what were Piccadily Weepers?
+Droopy whiskers
+10
+
+History: In the 9th century which city had several thousand bookstores?
+Baghdad
+10
+
+History: In the early 20th century, what was used to treat epilepsy?
+Rattlesnake venom
+10
+
+History: In the early Twentieth century, rattlesnake venom was used to treat ____
+Epilepsy
+10
+
+History: In the French revolution what was the occupation of a tricoteuse?
+Knitting
+10
+
+History: In the Geological Time Scale, during the Meso Erazoic, what Period came just after the Cretaceous Period?
+Jurassic
+10
+
+History: In the marriage ceremony of the ancient Incas, the couple was considered officially wed when they took off their ____ and handed them to each other
+Sandals
+10
+
+History: In the middle ages what was a pavis?
+Shield
+10
+
+History: In the Middle Ages what was lichen scraped from crucifixes supposed to cure?
+Nightmares
+10
+
+History: In the middle ages, where did people believe the seat of intelligence was?
+Heart
+10
+
+History: In the reign of Henry iii, compurgation was introduced as the forerunner to what?
+Jury system
+10
+
+History: In the year 2000 which companies CEO was the worlds second richest man?
+Oracle
+10
+
+History: In what capacity did the writer Ernest Hemingway serve in WW i?
+Ambulance driver
+10
+
+History: In what decade did the Dust Bowl devastate Midwest farmers?
+1930s
+10
+
+History: In what type of building did Plato and Aristotle teach?
+Gymnasium
+10
+
+History: In what year did China become a communist state?
+1949
+10
+
+History: In what year did England's lease on Hong Kong expire?
+1997
+10
+
+History: In what year did man first set foot on the moon?
+1969
+10
+
+History: In what year did the Berlin Wall come down?
+1989
+10
+
+History: in what year did winston churchill die?
+1965
+10
+
+History: In what year of WW II did Russia declare war on Japan?
+1945
+10
+
+History: In what year was the Wall Street Crash?
+1929
+10
+
+History: In which African countries were US embassies bombed in 1998?
+Kenya & Tanzania
+10
+
+History: In which battle was George A. Custer defeated?
+Battle of Little Bighorn
+10
+
+HISTORY: In which century were the Wars of the Roses fought?
+The fifteenth century
+10
+
+History: In which city did the Peterloo massacre take place in 1819?
+Manchester
+10
+
+History: in which city did the Phoenix Park murders occur in 1882?
+Dublin
+10
+
+History: In which city was President Kennedy killed?
+Dallas
+10
+
+History: In which city were the Hanging Gardens?
+Babylon
+10
+
+History: In which country did Louis Riel lead a rebellion and set up a provisional government in 1869?
+Canada
+10
+
+History: In which country did the Boxer Rebellion take place?
+China
+10
+
+History: In which country did the Red Brigades operate in the late 70s?
+Italy
+10
+
+History: In which country was Adolf Hitler born?
+Austria
+10
+
+History: In which country was paper money first used?
+China
+10
+
+History: In which country was the Rosetta Stone found?
+Egypt
+10
+
+History: In which country was the Titanic launched?
+Ireland
+10
+
+History: In which country's waters was Greenpeace's Rainbow Warrior sunk in 1985?
+New Zealand's
+10
+
+History: In which county is Passschendaele, scene of battle in WWI?
+Belgium
+10
+
+History: In which English county is the site of the battle of Edgehill?
+Warwickshire
+10
+
+HISTORY: In which harbour did the Mary Rose sink in 1545?
+Portsmouth
+10
+
+History: In which month did the attack on Pearl Harbor take place?
+December
+10
+
+History: In which street in London did the Great Fire start?
+Pudding lane
+10
+
+HISTORY: In which war did the battle of Isandwlana take place?
+Zulu war
+10
+
+History: In which war was the battle of Antietam?
+American civil war
+10
+
+History: In which year did Disneyland open?
+1955
+10
+
+History: In which year did London Underground open?
+1863
+10
+
+History: In which year did Richard Burton die?
+1984
+10
+
+History: In which year did Skylab crashland in Western Australia?
+1979
+10
+
+History: In which year did the Battle of Britain take place?
+1940
+10
+
+History: In which year did the first man walk on the moon?
+1969
+10
+
+History: in which year did the Spanish Armada try to invade England?
+1588
+10
+
+History: In which year did the Titanic set sail?
+1912
+10
+
+History: In which year did Winston Churchill first become prime minister?
+1940
+10
+
+History: In which year was John F. Kennedy elected?
+1960
+10
+
+History: In which year was Lady Jane Grey queen?
+1553
+10
+
+History: In which year was Lord Mountbatten murdered?
+1979
+10
+
+History: In which year was Martin Luther King shot?
+1968
+10
+
+History: In which year was Nelson Mandela released from prison?
+1990
+10
+
+History: In which year was Nelson Mandela released from Robben Island?
+1990
+10
+
+History: In which year was the First Crusade?
+1095
+10
+
+History: In which year was the Rosetta stone written?
+196 BC
+10
+
+History: In which year was the shortest war in history?
+1896
+10
+
+History: In which year was the smoke detector invented?
+1969
+10
+
+History: In world war ii what name was given to the German technique of sending U Boats out in groups?
+Wolf pack
+10
+
+History: In WWII what was a moaning minnie?
+German mortar
+10
+
+History: In WWII who was in charge of the Afrika Korps?
+Rommel
+10
+
+HISTORY: Indian spiritualist leader?
+Mahatma ghandi
+10
+
+HISTORY: Inventor of the television?
+John Logie Baird
+10
+
+History: Israel occupied the Golan Heights. Whose territory was it?
+Syria
+10
+
+History: Israel occupied the West Bank. It belonged to ____
+Jordan
+10
+
+History: John F. Kennedy Airport in New York used to be called ____
+Idlewind
+10
+
+History: John F. Kennedy Airport used to be called ____
+Idlewild
+10
+
+HISTORY: Jon Magnusson was the prime minister of which country 1924 - 1926?
+Iceland
+10
+
+History: Kate Barton became the first bus conductress in 1909, 1920 or 1933?
+1909
+10
+
+History: King of Italy 1900-46?
+Victor emmanuel iii
+10
+
+History: King Richard the ____
+Lionheart
+10
+
+History: Leaders of which country wore a double crown to signify the unification of Upper and Lower kingdoms?
+Egypt
+10
+
+History: Leon Trotsky, the seminal Russian Communist, was assassinated in ____ with an icepick
+Mexico
+10
+
+History: Leon Trotsky, the seminal Russian Communist, was assassinated in Mexico with an____
+Icepick
+10
+
+History: Leon____ , the seminal Russian Communist, was assassinated in Mexico with an icepick
+Trotsky
+10
+
+History: Lillie Langtry was the mistress of which future king?
+Edward vii
+10
+
+History: London in the 18th century,what was Kitty Fishers profession?
+Prostitute
+10
+
+History: Longest reigning empress of Russia?
+Catherine the great
+10
+
+History: Louis XVI was guillotined in 1732, 1793 or 1842?
+1793
+10
+
+History: Man first stepped foot on the moon in which year?
+1969
+10
+
+History: Marco Polo was born on the ____ island of Korcula (pronounced Kor-Chu-La)
+Croatian
+10
+
+History: Marconi transmitted radio signals across the atlantic in 1901, 1902 or 1903?
+1901
+10
+
+History: Margaret Thatcher becomes the first woman elected prime minister of?
+Great britain
+10
+
+History: Marshall of France who established his government at Vichy, imprisoned for treason in 1945?
+Petain
+10
+
+History: May 24th 1862, which bridge in London was opened?
+Westminster bridge
+10
+
+History: May 28th 1742, Englands first what opened?
+Swimming pool
+10
+
+History: Muhammad Ali refused to fight in which war?
+Vietnam
+10
+
+History: Mussolini invaded this country in 1935?
+Ethiopia
+10
+
+HISTORY: Name for the elite British wartime pilots who marked targets for the bombers?
+Pathfinder Force
+10
+
+HISTORY: name given to william i's campaign of devastation after the Saxon uprising of 1069?
+The Harrowing of the North
+10
+
+History: Name Jacques Cousteau's research ship?
+Calypso
+10
+
+History: Name of a sub division of a county once under Danish influence, especially in Yorkshire?
+Wapentake
+10
+
+History: Name of Britains allies in the Seven Years War?
+Prussia and Hanover
+10
+
+History: Name of Dick Turpins horse?
+Black Bess
+10
+
+History: Name of Donald Campbells boat in which he was killed?
+Bluebird
+10
+
+History: Name of the civil code of ancient Rome?
+The red laws
+10
+
+History: Name of the first Black man to walk in space?
+Bernard Harris
+10
+
+History: name of the first woman in the world to be elected Head of State in 1980?
+Vigdis finnbogadottir
+10
+
+HISTORY: Name of the notorious English highwayman?
+Dick Turpin
+10
+
+HISTORY: Name of the stock market crash of 1720?
+South Sea Bubble
+10
+
+HISTORY: Name of the treaty that ended the War of Spanish Succession?
+Treaty of utrecht
+10
+
+HISTORY: Name that year, Wars of the Roses?
+1455
+10
+
+History: Name the incident in which tea was dumped into the harbour?
+Boston tea party
+10
+
+History: name the two vessels which fought the first sea battle between iron-covered ships?
+Monitor and merrimac
+10
+
+History: Name the Year: British army seizes King Charles I as a prisoner?
+1647
+10
+
+History: Near what falls did Jimmy Angel crash his plane in 1937?
+Angel Falls
+10
+
+History: Near which Bavarian city did the Nazis hold huge rallies in the 1930s?
+Nuremberg
+10
+
+HISTORY: Nelsons flagship?
+H M S Victory
+10
+
+History: Nelsons mistress, Lady Hamiltons first name?
+Emma
+10
+
+History: Niveveh and Assur were cities of which empire?
+Assyrian
+10
+
+History: Numbering houses in London streets only began in?
+1764
+10
+
+History: Octavia was which emperor's sister?
+August
+10
+
+History: Of what did Prince Albert die?
+Typhoid Fever
+10
+
+History: Of which Cambodian party was Pol Pot the leader?
+Khmer Rouge
+10
+
+HISTORY: Of which kingdom was Offa the King?
+Mercia
+10
+
+History: Of which ship was Miles Standish captain?
+The Mayflower
+10
+
+History: Off which South American port was the Graf Spee scuttled in 1939?
+Montevideo
+10
+
+History: On what date did America become an independant nation?
+July 4th, 1776
+10
+
+History: On what day of the week did Solomon Grundy die?
+Saturday
+10
+
+History: On what was Pennsylvania incorrectly spelled?
+Liberty Bell
+10
+
+History: on which lake was Donald Campbell killed?
+Coniston Water
+10
+
+History: On which of the Canary Islands did a collision of two jumbo jets take place, making it one of the worst air disasters in history?
+Tenerife
+10
+
+History: One of the Seven Wonders of the World, The Mausoleum at Halicanassus was built by whom?
+Artemisia
+10
+
+History: One who fought professionally in Roman arenas was a(n) ____
+Gladiator
+10
+
+History: Original name for Tasmania?
+Van diemans land
+10
+
+History: Performing Arts: 15th Century: Shakespeare's ____ Theater burns down in 1613
+Globe
+10
+
+History: Prime minister during Edward VIIIs abdication?
+Baldwin
+10
+
+History: Science: what did archimedes say upon discovering the principle of buoyancy in his bath?
+Eureka
+10
+
+History: Seven Wonders(Ancient)?
+The Great Pyramid Of Giza
+10
+
+History: She overcame her handicaps to become a lecturer and a scholar?
+Helen Keller
+10
+
+History: She overcame her handicaps to become a lecturer and a scholar?
+Keller
+10
+
+History: She was Queen of Egypt and mistress of Julius Caesar?
+Cleopatra
+10
+
+History: She was the first First Lady to be received privately by the Pope?
+Jackie kennedy
+10
+
+History: She was the first woman premier of Israel?
+Golda Meir
+10
+
+History: She was the first woman premier of Israel?
+Meir
+10
+
+History: She was the first woman to fly the Atlantic solo?
+Amelia Earhart
+10
+
+History: She was the first woman to fly the Atlantic solo?
+E. earhart
+10
+
+History: She was the first woman to swim the English channel?
+Ederle
+10
+
+History: She was the first woman to swim the English channel?
+Gertrude Caroline Ederle
+10
+
+History: She was the greatest trick shot artist of all time?
+Annie oakley
+10
+
+History: She won the 1979 Nobel Peace Prize for her work among the poor?
+Mother teresa
+10
+
+History: Some of the survivors from which ship were rescued by Grace Darling and her father in sept 1838?
+The forfarshire
+10
+
+History: Spain ceded Florida to Britain in exchange for this territory?
+Cuba
+10
+
+History: Sports: Bank robber John Dillinger played professional?
+Baseball
+10
+
+History: Tasmania got its current name from a navigator on an exploratory voyage, what was his name?
+Abel tasman
+10
+
+History: Ten day Queen of England?
+Lady jane grey
+10
+
+History: The ____ Tea Party
+Boston
+10
+
+History: The 14th July 1789 marked the start of what?
+French Revolution
+10
+
+History: The ancient symbol called a fylfot or gammadion is better known as what?
+Swastika
+10
+
+History: The battle of Vittoria in 1813 as the last battle in which war?
+Peninsular War
+10
+
+History: The Cod Wars of the 1970s were between Britain and which other country?
+Iceland
+10
+
+History: The date of which Christian festival was fixed in 325AD by the Council of Nicaea?
+Easter
+10
+
+History: The derrick crane was named after Dick Derrick, what was his occupation?
+Hangman
+10
+
+History: The Devonian Period is also known as the Age of ____
+Fish
+10
+
+History: The discovery of the Babington Plot led to the death of which monarch?
+Mary Queen of Scots
+10
+
+History: The Empire State Building was completed in 1930, 1931 or 1932?
+1931
+10
+
+History: The EOKA were a terrorist group operating on which island?
+Cyprus
+10
+
+History: The first charity flag day was held in 1914, 1917 or 1919?
+1914
+10
+
+History: The first dog in space was named ____
+Laika
+10
+
+History: The first metered taxi become operational in 1899, 1903 or 1907?
+1907
+10
+
+HISTORY: The fleas of which animal carried the Black Death?
+The black rat
+10
+
+History: The french ship Petit Pierre was the first to be driven by what in 1902?
+Diesel engine
+10
+
+History: The Inquisition forced him to recant his belief in the Copernican Theory?
+Galileo
+10
+
+HISTORY: The Japanese premier who initiated the attack on Pearl harbour in 1941?
+Hideki Tojo
+10
+
+History: The man known as the Red baron was famous in which field?
+Aviation
+10
+
+History: The original Charing cross was erected to commemorate Edward is quenn, what was her name?
+Eleanor
+10
+
+History: The Romans built these to convey water?
+Aqueduct
+10
+
+History: The Romans built these to convey water?
+Aqueducts
+10
+
+History: The St. Valentine's Day massacre took place in this city?
+Chicago
+10
+
+History: The Taliban were a guerrilla group in which country?
+Afghanistan
+10
+
+History: The Tamil Tigers were fighting for a separate state on which island?
+Sri Lanka
+10
+
+History: The wristwatch invented in 1896, 1898 or 1904?
+1904
+10
+
+History: The youngest pope was?
+11 years old
+10
+
+History: This assassin of Julius Caesar was his friend?
+Brutus
+10
+
+History: This F.B.I agent headed the investigation of Al Capone?
+Elliot ness
+10
+
+History: This French peasant girl led the army to victories?
+Joan of arc
+10
+
+History: This frontiersman and politician was killed at the Alamo?
+Davey crockett
+10
+
+History: This frontiersman and politician was killed at the Alamo?
+Davy Crockett
+10
+
+History: This Indian group ruled in early Peru?
+Inca
+10
+
+History: This is said to be history's greatest military evacuation?
+Dunkirk
+10
+
+History: This man was the first human to set foot on the moon?
+Neil Armstrong
+10
+
+History: This military attack took place on Dec. 7, 1941?
+Pearl harbour
+10
+
+History: This Nazi leader had his six children poisoned prior to his own death?
+Goebbels
+10
+
+History: This Nazi leader had his six children poisoned prior to his own death?
+Joseph Goebbels
+10
+
+History: This organization was founded by William Booth?
+Salvation army
+10
+
+History: This Queen of France was beheaded in 1793?
+Marie antoinette
+10
+
+History: This racist organization was formed in Tennessee in 1865?
+Ku klux klan
+10
+
+History: This Roman killed himself after his defeat at Actium?
+Marc anthony
+10
+
+History: This Roman killed himself after his defeat at Actium?
+Marc Antony
+10
+
+History: This Sioux Indian toured with Buffalo Bill's Wild West Show?
+Sitting bull
+10
+
+History: This Spaniard conquered Mexico?
+Cortes
+10
+
+History: This Spaniard conquered Mexico?
+Hernando Cortez
+10
+
+History: This U.S. president was fatally shot in 1881?
+Garfield
+10
+
+History: This U.S. president was fatally shot in 1881?
+James Garfield
+10
+
+History: This U.S. Secretary of State won the Nobel Peace Prize in 1973?
+Henry Kissinger
+10
+
+History: This U.S. Secretary of State won the Nobel Peace Prize in 1973?
+Kissinger
+10
+
+History: This war began on June 25, 1950?
+Korean
+10
+
+History: This was the largest real estate deal in U.S. history?
+Louisiana purchase
+10
+
+History: This word describes the Nazi annihilation of Jews?
+Holocaust
+10
+
+History: Through the streets of what town did Lady Godiva ride naked?
+Coventry
+10
+
+History: To which island was Napoleon exiled, after his loss at Waterloo?
+St Helena
+10
+
+History: Totally useless - 1988, David Stern, New York, blew a record bubble, how big was it?
+Fifty feet across
+10
+
+HISTORY: Tudor statesman?
+Oliver Cromwell
+10
+
+History: Two 747's collided here in 1977?
+Canary islands
+10
+
+History: U.S. President, Chester Alan ____
+Arthur
+10
+
+History: U.S. President, Herbert C. ____
+Hoover
+10
+
+History: U.S. President, John Quincy ____
+Adams
+10
+
+History: U.S. President: Calvin ____
+Coolidge
+10
+
+History: Ugandan politician,president 1971-79?
+Idi Amin
+10
+
+History: UK, what was revealed by letter to Lord Monteagle?
+The Gunpowder Plot
+10
+
+History: US president shot by John Wilkes Booth?
+Lincoln
+10
+
+History: USA: 1970s: The Rhode Island Legislature in the US entertained a proposal that there be a $2 tax on every act of ____ ____ in the State
+Sexual intercourse
+10
+
+History: USA: In the confederate army, who were given copies of 'les miserables'?
+Officers
+10
+
+History: USA: In the Declaration of Independence as first written by Thomas Jefferson, there was a clause abolishing ____. Because of popular pressure, however, Jefferson deleted the clause
+Slavery
+10
+
+History: USA: In the Gasden Purchase, the USA bought territory from which country?
+Mexico
+10
+
+History: War broke out in Biafra in the 60s when it broke away from which country?
+Nigeria
+10
+
+History: Wh o is recognised to have been the first man to reach the north pole?
+Robert peary
+10
+
+History: What 1992 presidential candidate began life as william jefferson blythe?
+Bill clinton
+10
+
+History: What 19th century war between Russia and England, Turkey, Britain and France, was named after a peninsula in the Black Sea?
+Crimean War
+10
+
+History: What age preceded the Iron Age?
+The bronze age
+10
+
+History: What Alabama city saw state troopers attack Civil Rights marchers on Edmund Pettis Bridge?
+Selma
+10
+
+History: What American feminist went bust as a silver dollar?
+Anthony
+10
+
+History: What American feminist went bust as a silver dollar?
+Susan B. Anthony
+10
+
+History: what argentine revolutionary fought with castro and died in bolivia?
+Che guevara
+10
+
+History: What black basalt slab, found by Napoleons soldiers iin Egypt was the key to the translation of Egyptian hieroglyphic writing?
+The Rosetta Stone
+10
+
+History: what botanical marvel did nebuchadnezzar build?
+Hanging gardens of babylon
+10
+
+History: What brave-hearted Scottish patriot led soldiers to a defeat of the English at the Battle of Cambuskenneth in 1297?
+William Wallace
+10
+
+History: what British peerage gave its name to an overcoat, a sofa and a cigarette?
+Chesterfield
+10
+
+History: What California city did the last Pony Express ride end in?
+Sacramento
+10
+
+History: What Chinese dynasty was overthrown in 1911?
+Manchu
+10
+
+History: What city was founded in 753 BC?
+Rome
+10
+
+History: What civil rights leader did Dorothy Parker leave the bulk of her estate to?
+Martin Luther King Jr
+10
+
+History: What colour was Diana Spencer's engagement photograph suit?
+Blue
+10
+
+History: What congressional award was Dr. Mary Edwards Walker the first woman to receive?
+Medal of Honor
+10
+
+History: What connects the countries of Eire,Portugal, Spain and Turkey during wwii?
+Remained neutral
+10
+
+History: What country did Abel Tasman discover in 1642?
+New Zealand
+10
+
+History: What country suffered the most combat deaths in world war ii?
+Soviet union
+10
+
+History: What country was formerly known as Siam?
+Thailand
+10
+
+History: What country was ruled by Pol Pot, leader of the Khmer Rouge party?
+Cambodia (Kampuchea)
+10
+
+History: What current branch of the U.S. military was a corps of only 50 soldiers when World War I broke out?
+The U.S. Air Force
+10
+
+History: What did 'DMZ' stand for in the vietnam war?
+Demilitarized Zone
+10
+
+History: What did baker John Faynors carelessness cause?
+The Fire of London
+10
+
+History: what did bryan allen cross in the gossamer albatross?
+The English channel
+10
+
+History: What did Col Blood attempt to steal in 1671?
+Crown jewels
+10
+
+History: What did cowpunchers use to protect their legs?
+Chaps
+10
+
+History: What did David Stirling found?
+SAS
+10
+
+History: What did Ed Peterson invent?
+Egg Mcmuffin
+10
+
+History: What did Eli Whitney invent?
+Cotton gin
+10
+
+History: What did Erik Rotheim invent in 1926?
+Aerosol
+10
+
+History: What did Henry Shrapnel invent?
+The exploding shell
+10
+
+HISTORY: What did hospital social workers used to be called?
+Almoners
+10
+
+History: What did Louis Cartier invent?
+Wristwatch
+10
+
+History: What did Marie Curie die of on 4th July, 1934?
+Radiation poisoning
+10
+
+History: What did Pennsylvania legalise before any other colony?
+Witchcraft
+10
+
+History: What did Peter Minuit buy in 1626?
+Manhattan Island
+10
+
+History: What did President J. Buchanan not have?
+A wife
+10
+
+History: What did President J. Buchanan not have?
+A wife
+10
+
+History: What did Republicans call the platform they hyped in the 1994 Congressional elections?
+The Contract With America
+10
+
+History: what did sir walter raleigh lose in 1618?
+His head
+10
+
+History: What did Temujin change his name to?
+Genghis Khan
+10
+
+History: What did the French railways ban in 1910 because caused delays?
+Kissing
+10
+
+History: What did the romans call their settlement at York?
+Eboracum
+10
+
+History: What did Victorian women bathe in to try to enlarge their breasts?
+Strawberries
+10
+
+History: What does the Glorious First of June commemorate?
+A sea battle
+10
+
+History: What English city was known to the Romans as Venta Bulgarum?
+Winchester
+10
+
+History: what English explorer was set adrift by his mutinous crew near the bay that bears his name?
+Henry hudson
+10
+
+History: What ethnic group was largely responsible for building most of the early railways in the U.S. West?
+The Chinese
+10
+
+History: What famous artist could write with both his left and right hand at the same time?
+Leonardo da Vinci
+10
+
+History: What first ran from Paddington to Farringdon Street in 1863?
+London Underground
+10
+
+History: what food did marco polo introduce into Italy from the court of kubla khan?
+Pasta
+10
+
+History: What food was almost non-existent in Ireland in the 1840's?
+Potatoes
+10
+
+History: What form did the Egyptian god Sebek take?
+Crocodile
+10
+
+History: What future Soviet dictator was training to be a priest when he got turned on to Marxism?
+Joseph Stalin
+10
+
+History: What game was created by French mathematician Blaise Pascal, which he discovered when doing experiments into perpetual motion?
+The Game of Roulette
+10
+
+History: What group landed in America in 1620?
+The pilgrim s
+10
+
+History: What happened aboard the USS Missouri on 2 sept 1945?
+Japan surrended
+10
+
+History: What happened at 2:56 on the 21st July 1969?
+First Manned moon landing
+10
+
+History: What happened in november 1621?
+The First Thanksgiving
+10
+
+History: What is a large medieval catapult called that was used to attack castles?
+Trebuchet
+10
+
+History: What is referred to as Black Forty?
+Irish Potato Famine
+10
+
+History: what is Singapore's animal symbol?
+Merlion
+10
+
+History: What is the 15' by 18' cell that 146 captured British officers were forced into by Indian troops in the 19th century called?
+Black Hole of Calcutta
+10
+
+History: What is the bname given to the period between Napoleons escape from elba to his defeat at Waterloo?
+The hundred days
+10
+
+HIStORY: What is the exact date of Rhodesian U D I?
+11 November 1965
+10
+
+HISTORY: What is the name given to British History 1810 - 20?
+The Regency period
+10
+
+History: What is the name given to the 4th arab-israeli war of 1973?
+Yom kippur war
+10
+
+History: What is the name of the Czech village which was destroyed on 10 june 1942 by the nazis in retaliation for the assassination of Reinhard Heydrich, deputy leader of the SS?
+Lidice
+10
+
+History: What is the name of the Derbyshire village which isolated itself in order to contain the great plague which had reached the village in 1665?
+Eyam
+10
+
+HISTORY: What is the name of the flag of the eleven confederate states in the American Civil war?
+The stars and bars
+10
+
+History: What is the name of the Russian Czar's daughter who might-or might not-have survived the Russian revolution?
+Anastasia
+10
+
+History: What is the official residence of British sovereigns from 1698 to 1837?
+St James's Palace
+10
+
+History: What is the Roman numeral for fifty?
+L
+10
+
+History: what island has the merlion as its symbol?
+Singapore
+10
+
+History: What island was returned to China in 1997?
+Hong Kong
+10
+
+History: What island was returned to China in 1999?
+Macao
+10
+
+History: what jackets protect you from flieger abwehr kanonen?
+Flak jackets
+10
+
+History: What kind of armour did the Norman knights wear?
+Chain mail
+10
+
+History: What kind of pipe did General Douglas Macarthur smoke?
+A corn-cob pipe
+10
+
+History: What kind of teeth did George Washington have?
+Wooden
+10
+
+History: What king did Col Qaddafi depose in 1969?
+King idris
+10
+
+History: what long-range wwi German cannon was named for bertha krupp?
+Big bertha
+10
+
+History: What missionary station was built by Albert Schweitzer?
+Lambarene
+10
+
+History: What modern vehicle was invented to circumvent trench warfare?
+The Tank
+10
+
+History: What movement was founded by John Thomas in 1848?
+The Christadelphians
+10
+
+History: What nation issued the five-dollar bill found in Abraham Lincoln's pocket when he was shot?
+The Confederate States of America
+10
+
+History: What nationality was Anne of Cleves?
+German
+10
+
+History: What occured between may 26 and 2 june 1940?
+The dunkirk evacuation
+10
+
+History: What Operation was the codename for the D Day landings?
+Overlord
+10
+
+History: What period is also known as the age of fish?
+Devonian period
+10
+
+History: What political system was gradually dismantled in South Africa, starting in 1989?
+Apartheid
+10
+
+History: What pre-tv radio show turned film caused people to commit suicide when it was first aired?
+War Of The Worlds
+10
+
+History: What president was shot while walking to California Governor Jerry Brown' office?
+Gerald Ford
+10
+
+History: What product was the first TV advert advertising?
+Toothpaste
+10
+
+History: What purged the Great Plague of London?
+Great Fire of London
+10
+
+History: what Russian master spy lived in the us under the name emil goldfus?
+Rudolf abel
+10
+
+History: What settlers were the forebears of the Boers of South Africa?
+Dutch
+10
+
+History: What Shakespearean king was actually king of Scotland for 17 years?
+Macbeth
+10
+
+History: What single name is more commonly applied to Holy Roman Emperor Charles the Great?
+Charlemagne
+10
+
+History: What six-year-old composer surprised Marie Antoinette by asking her to marry him?
+Mozart
+10
+
+History: what Spanish soldier of fortune led the party that discovered the pacific ocean?
+Vasco balboa
+10
+
+History: What Texan ended up with one delegate after spending $12 million of his own money running for president in 1980?
+John Connally
+10
+
+History: what two commanders directed the forces in the battle of el alamein?
+Montgomery and rommel
+10
+
+History: What United States president was in office during the civil war?
+Abraham Lincoln
+10
+
+History: What volcano destroyed Pompeii?
+Vesuvius
+10
+
+History: What war lasted from June 5 to June 11, 1967?
+Six day war
+10
+
+History: What was 11th-century Spanish military leader Rodrigo Diaz de Vivar better know as?
+El Cid
+10
+
+History: What was a gladiator armed with, in addition to a dagger and spear?
+A net
+10
+
+History: What was Alaska called before 1867?
+Russian America
+10
+
+History: What was Alexander The Great's wife's name?
+Roxana
+10
+
+History: What was banned in the uSA by the 18th amendment?
+Alcohol
+10
+
+HISTORY: What was built along the south coast to guard against French invasion?
+Martello towers
+10
+
+History: What was called the Jewel in Queen Victorias crown?
+India
+10
+
+History: What was Commonwealth Day called before 1958?
+Empire Day
+10
+
+History: What was first worn on the 10th October 1886?
+Tuxedo
+10
+
+History: What was George A Custer's horses' name?
+Comanche
+10
+
+History: What was King Arthur's mother's name?
+Igraine
+10
+
+History: What was named after Amerigo Vespucci?
+America
+10
+
+HISTORY: What was Operation Overlord?
+Allied landings at normandy
+10
+
+History: What was Operation Sealion?
+Hitlers proposed invasion of britain
+10
+
+History: What was Russian America called after 1867?
+Alaska
+10
+
+History: What was Thailand formerly known as?
+Siam
+10
+
+History: what was the bullseye on achilles?
+His right heel
+10
+
+History: What was the capital of East Germany?
+East Berlin
+10
+
+History: What was the D-Day invasion password?
+Mickey Mouse
+10
+
+History: What was the destination of the ship 'Mary Celeste' on it's final voyage November 1872?
+Genoa
+10
+
+History: What was the first American colony to legalise witchcraft?
+Pennsylvania
+10
+
+History: What was the first fighting vehicle?
+War chariot
+10
+
+History: What was the first newspaper produced in the United States?
+Publick Occurences
+10
+
+History: What was the first postage stamp?
+Penny Black
+10
+
+History: What was the first product to have a barcode?
+Wrigley's gum
+10
+
+History: What was the first ship to reach the Titanic after it sank?
+Carpathia
+10
+
+History: What was the first transatlantic radio message sent?
+S
+10
+
+History: what was the infamous contracton of geheime staatspolizei?
+Gestapo
+10
+
+History: what was the infamous pseudonym of peter sutcliffe?
+The yorkshire ripper
+10
+
+History: What was the Japanese warrior class that rose to power in the 11th century?
+Samurai
+10
+
+History: What was the last chinese dynasty?
+Manchu
+10
+
+History: What was the last drink Socrates downed?
+Hemlock
+10
+
+History: What was the leading cause of death in the late 19th century?
+Tuberculosis
+10
+
+History: What was the main wood used by Thomas Chippendale in the 18th century?
+Mahogany
+10
+
+History: What was the name given to the first complete Bible printed in America and published in 1663?
+The Indian bible
+10
+
+History: What was the name given to the programme of social reform attempted by President Truman?
+Fair deal
+10
+
+History: What was the name given to the toxin used by the US in Vietnam to defoliate trees?
+Agent orange
+10
+
+History: What was the name of Henry VIII's warship which was recovered from the Solent in 1982?
+Mary Rose
+10
+
+History: What was the name of Plato's school?
+Academy
+10
+
+History: What was the name of Stephensons first locomotive built in 1814?
+Blucher
+10
+
+History: What was the name of the B-29 used at Hiroshima to drop the bomb?
+Enola gay
+10
+
+History: What was the name of the first ironclad warship ever launched?
+HMS Warrior
+10
+
+History: What was the name of the government newspaper in ancient Rome?
+Acat Diurna
+10
+
+History: What was the name of the scandal that resulted in the resignation of president Nixon?
+Watergate
+10
+
+History: what was the name of the wright brothers' plane?
+Flyer
+10
+
+History: What was the nationality of Marco Polo?
+Italian
+10
+
+History: What was the nationality of the jet shot down in Russian air space in 1983?
+Korean
+10
+
+History: What was the nationallity of Rasputin?
+Russian
+10
+
+History: What was the nickname of the British 7th Armoured Division in WWii?
+Desert Rats
+10
+
+History: What was the number of the British Armored Division known as The Desert Rats?
+7th
+10
+
+History: what was the one-word headline of the london star on dec 10, 1936?
+Abdication
+10
+
+History: What was the original name of Drakes ship The Golden Hind?
+The pelican
+10
+
+History: What was the predecessor of the United Nations?
+League of Nations
+10
+
+HISTORY: What was the speed limit fixed by the Motor car act of 1903?
+Twenty miles an hour
+10
+
+HISTORY: What was the Wright brothers plane called?
+Flyer
+10
+
+History: What wonder stood 32m high in rhodes harbour?
+Colossus of Rhodes
+10
+
+History: What's the resting place of those buried at sea?
+Davey jones's locker
+10
+
+HISTORY: When did the Baltic states gain independence from the USSR?
+1991
+10
+
+History: When did the first tank go into battle?
+1916
+10
+
+History: When was D-day?
+June 6th, 1944
+10
+
+History: When was Julius Caesar murdered?
+Ides of March
+10
+
+History: When was the Battle of Saratoga?
+September 19 1777
+10
+
+History: When was the date of the Christian festival Easter fixed by the Council of Nicaea?
+325 AD
+10
+
+History: When was the Greek alphabet first used?
+800 BC
+10
+
+History: When was the Rosetta stone found?
+1799
+10
+
+History: When was the wearing of seat belts made compulsory in England?
+1983
+10
+
+History: When were the Twin Towers attacked?
+September 11, 2001
+10
+
+History: WhenWoolfe took Quebec which general did he defeat?
+Montcalm
+10
+
+History: Where did 'The Mayflower' take the pilgrims?
+New World
+10
+
+History: Where did Bill and Hilary Clinton switch on Christmas lights in 1995?
+Belfast, Northern Ireland
+10
+
+History: Where did Churchill, Roosevelt and Stalin meet in 1945?
+Yalta
+10
+
+History: where did Drakes memorable game of bowls take place?
+Plymouth Hoe
+10
+
+History: Where did Guinevere retire to die?
+Amesbury
+10
+
+History: Where did Hurricane Mitch strike in 1998?
+Central America
+10
+
+History: Where did Lord Kitchener defeat the Mahdi in 1898?
+Omdurman
+10
+
+History: Where did Nazi leader Rudolf Hess crash land in 1941?
+Scotland
+10
+
+History: Where did the Bay Of Pigs take place?
+Cuba
+10
+
+History: Where did the bayonet originate (a nation of backstabbing bastards)?
+Bayonne, France
+10
+
+History: Where did the Birkenhead sink?
+Danger Point
+10
+
+History: Where did the British surrender to the Japanese in Feb 1942?
+Singapore
+10
+
+History: Where did the Confederates surrender?
+Appomattox
+10
+
+History: Where did the Enola Gay drop a devastating bomb in WWII?
+Hiroshima
+10
+
+History: Where did the germans defeat the russians over the 26th to 30th august in 1914?
+Tannenburg
+10
+
+HISTORY: Where did the Great Fire of London start?
+Pudding Lane
+10
+
+History: Where did the Incas originate?
+Peru
+10
+
+History: Where did two jumbo jets collide in 1977, killing 579 people?
+Tenerife, Canary Islands
+10
+
+History: Where in Britain did the Battel of Beanfield occur in 1985?
+Stonehenge
+10
+
+History: Where in India did a major industrial accident occur in 1984?
+Bhopal
+10
+
+History: Where in London was the Scottish Leader William Wallace hanged, drawn and quartered in 1305?
+Smithfield
+10
+
+History: Where was Joan of Arc burnt at the stake?
+Rouen
+10
+
+History: Where was Marco Polo born?
+Venice
+10
+
+History: Where was Martin Luther King shot?
+Memphis,Tennessee
+10
+
+History: Where was Napoleon defeated?
+Waterloo
+10
+
+History: Where was Nelson mandela in prison?
+Robben Island
+10
+
+HISTORY: Where was Nelsons flagship, Victory, built?
+Chatham
+10
+
+HISTORY: Where was the battle of Hastings fought?
+Senlac Hill
+10
+
+History: Where was the Bay of Pigs whose invasion sparked a world crisis in the 60s?
+Cuba
+10
+
+History: Where was the German fleet scuttled in 1919?
+Scapa Flow
+10
+
+History: Where was the Rosetta stone found?
+Cairo
+10
+
+History: Where was the USA's worst nuclear accident, in 1979?
+Three Mile Island
+10
+
+HISTORY: Where was William of Prussia crowned German Emperor?
+Versailles
+10
+
+History: Where were numerous French nuclear tests conducted?
+Muraroa Atoll
+10
+
+History: Where were the ancient script of Linear A and Linear B found?
+Crete
+10
+
+History: Where were the first books printed?
+China
+10
+
+History: Where were the Hanging Gardens?
+Babylon
+10
+
+History: Which 16th century astrologer became famous for his obscure prophecies?
+Nostradamus
+10
+
+History: Which African president was assassinated at a military review in 1981?
+President Sadat
+10
+
+History: Which airline owned the plane which crashed off Nova Scotia in 1998 killing over 200 including UN officials?
+Swissair
+10
+
+History: Which American married a former King of England?
+Wallis Warfield Simpson
+10
+
+History: Which American Military Academt was established in 1802 on the Hudson river?
+West Point
+10
+
+History: Which American president survived 2 assassination attempts in 17 days in 1975?
+Gerald Ford (jnr)
+10
+
+History: Which animal caused the death of William iii?
+Mole
+10
+
+History: Which Apollo space mission put the first men on the moon?
+Apollo 11
+10
+
+History: Which architect rebuilt 51 London churches after the Great Fire of 1666?
+Christopher wren
+10
+
+History: Which artificial fiber was invented in 1938?
+Nylon
+10
+
+History: Which Australian state capital was bombed by the Japanese in Feb 1942?
+Darwin
+10
+
+History: Which avaiator made the first solo flight across the Atlantic?
+Charles lindbergh
+10
+
+History: Which aviator made the first non-stop flight across the Atlantic?
+Charles lindbergh
+10
+
+History: Which Baltic seaport was the German rocket centre during WWII?
+Peenemunde
+10
+
+History: Which battle in the Pacific was fought between 4 and 5th June 1942?
+Battle of midway
+10
+
+History: Which battle of the Crimean war was fought on Nov 5th 1854?
+Inkerman
+10
+
+HISTORY: Which body founded ASH, the anti smoking organisation in 1971?
+The Royal College of Physicians
+10
+
+History: Which breakaway Russian republic had Grozny as its capital?
+Chechnya
+10
+
+History: Which British city was the first to erect a statue of Nelson?
+Glasgow
+10
+
+History: Which British comedian was the first man to appear on the cover of 'playboy'?
+Peter Sellers
+10
+
+History: Which British commander was so popular during the Seven Years War that many inns and pubs were named after him?
+Marquis of Granby
+10
+
+History: Which British King convened the Hampton Court conference in 1604 which led to the Authorised Version of the Bible?
+James VI & I
+10
+
+History: Which British pianist initiated lunchtime concerts at the National Gallery during wwii?
+Dame myra hess
+10
+
+History: Which British prime minister died in 1965?
+Winston Churchill
+10
+
+History: Which chief led the resistance against the Romans in 43AD?
+Caractacus
+10
+
+History: Which city was besieged by German troops for over 900 days in WWII?
+Leningrad
+10
+
+History: Which civil rights leader was killed by James earl ray in 1968?
+Martin luther king
+10
+
+History: Which Civil war battle took place 7 miles west of York on 2nd July 1644?
+Marston moor
+10
+
+History: Which country blew up a Greenpeace ship in New Zealand?
+France
+10
+
+HISTORY: Which country has been ruled by 10 kings called Christian?
+Denmark
+10
+
+History: Which country has the oldest national flag?
+Denmark
+10
+
+History: Which country in 1958 intoduced an economic policy called The Great Leap Forward?
+China
+10
+
+History: Which country pulled out of Vietnam in the 1950s?
+France
+10
+
+History: Which country was invaded by Japan in 1937?
+China
+10
+
+History: Which country was ruled by William the Lion?
+Scotland
+10
+
+History: Which country was split into two zones by the Yalta agreement?
+Germany
+10
+
+History: Which country was the first to issue postage stamps?
+Great Britain 
+10
+
+HISTORY: Which country's kings used to be crowned on Tara Hill?
+Ireland
+10
+
+History: Which countrys Prime Minister was apparently drowned in 1967?
+Australias
+10
+
+History: Which disaster occured the night of the 14-15 April 1912?
+The Titanic Sunk
+10
+
+History: Which disaster took lace in Kobe, Japan in 1995?
+Earthquake
+10
+
+History: Which emperor made his horse a senator?
+Caligula
+10
+
+History: Which English artillery officer gave his name to a shell originally used in WWI which contained small shot and an explosive charge to scatter shot as well as fragments of the shell casing?
+Henry shrapnel
+10
+
+HISTORY: Which English king reigned for 10 years but only spent about 6 months in England?
+Richard i
+10
+
+History: Which English king was murdered at Berkeley Castle by the insertion of a red hot poker so that no external marks would be visible?
+EDWARD II
+10
+
+History: which English monarch lost the crown jewels in the wash?
+King john
+10
+
+History: Which Englishman was shot outside the Dakota building in New York in 1980?
+John Lennon
+10
+
+History: Which European King died in 1993?
+King Baudouin
+10
+
+History: Which European Prime Minister was assassinated in Feb 1986?
+Olaf palme
+10
+
+History: Which Eurpoean state did George i rule before he became King of England?
+Hanover
+10
+
+History: Which event triggered the Great Depression?
+The wall street crash
+10
+
+History: Which famous actor is honored in a statue in Leicester Square?
+Charlie Chaplin
+10
+
+History: Which famous Americans 2 year old son was kidnapped and murdered in 1932?
+Charles Lindburgh
+10
+
+History: Which famous explorer visited Australia and New Zealand, then surveyed the Pacific coast of North America?
+Captain George Vancouver
+10
+
+History: Which famous Indian is buried at Gravesend in Kent?
+Pocahontas
+10
+
+History: Which famous ship sank in 1912?
+Titanic
+10
+
+History: Which foreign king married and divorced an English woman named Toni Gardiner?
+King hussein of Jordan
+10
+
+History: Which former European country was ruled by the Holenzollerns?
+Prussia
+10
+
+History: Which French king was known as the Sun King?
+Louis XIV
+10
+
+History: Which Frenchman supervised the building of the Suez canal?
+Ferdinand de lesseps
+10
+
+History: Which frontiersman died at the Alamo?
+Davy Crockett
+10
+
+History: Which fruit did Columbus discover on Guadeloupe in 1493?
+Pineapple
+10
+
+History: Which gangleaders men were murdered in the Valentine Day Massacre?
+Bugs Moran
+10
+
+History: Which gangster died on the 25th January 1947?
+Al Capone
+10
+
+History: Which gangster was shot dead by the FBI on 22nd July 1934 as he came out of the Biograph Cinema in Chicago?
+John Dillinger
+10
+
+History: Which German airship crashed in New Jersey in 1937?
+Hindenburg
+10
+
+History: Which German city was devastated by 2,600 tons of British bombs in Feb 1945?
+Dresden
+10
+
+History: which great African river was explored by HN Stanley in 1889?
+The Congo
+10
+
+History: Which houses fought the War of the Roses?
+Lancaster and York
+10
+
+History: Which illness caused twice as many fatalities in America and Europe in 1917-18 as there were in WWI?
+Flu
+10
+
+History: Which is the ancestral home of the Dukes of Bedford?
+Woburn Abbey
+10
+
+History: Which is the most ancient walled city?
+Jericho
+10
+
+History: Which king converted Leeds Castle into a royal palace?
+Henry viii
+10
+
+History: Which king freed Scotland from English rule in 1314?
+Robert bruce
+10
+
+History: Which King hid in an Oak tree after the battle of Worcester?
+Charles ii
+10
+
+History: Which king led the Huns from 445 to 450 AD?
+Attila
+10
+
+History: Which land did Cartier claim for France in 1534?
+Canada
+10
+
+History: Which leader reached the South Pole in 1912 but died on the return journey?
+Robert falcon scott
+10
+
+History: Which major international organization was created in 1945?
+United Nations
+10
+
+History: Which major weapon of war was used for the first time in 1916?
+Tank
+10
+
+History: Which Mexican revolutionary, first name Emiliano was assassinated in 1919?
+Zapata
+10
+
+History: Which military battle took place in 1815?
+Waterloo
+10
+
+History: Which monarch wrote the casket letters?
+Mary,Queen of Scots
+10
+
+History: Which MP was knocked down and killed by a train during the opening of the Liverpool and Manchester railway in 1830?
+William huskisson
+10
+
+HISTORY: Which murdered Roman Emperor was succeeded by his uncle Claudius?
+Caligula
+10
+
+History: Which nation did Moshoeshoe found?
+Basotho
+10
+
+History: Which nation was led by Genghis Khan?
+Mongolia
+10
+
+History: Which nursery rhyme was the first gramophone recording?
+Mary Had A Little Lamb
+10
+
+History: Which of Henry viii's wives was the mother of Queen Elizabeth I?
+Anne boleyn
+10
+
+HISTORY: Which of Henry viiis wives survived him?
+Catherine Parr
+10
+
+History: Which Olympic Games were the scene of a terrorist attack by Palestinian guerrillas?
+Munich
+10
+
+History: Which Open Tennis tournament was John McEnroe expelled from?
+Australian
+10
+
+History: Which people were the first to drink cocoa?
+The Aztecs
+10
+
+History: Which people worshipped the rain god Apu Ilapa?
+The Incas
+10
+
+History: Which period was first, jurassic or carboniferous?
+Carboniferous
+10
+
+History: Which pilots were named after a typhoon which destroyed a Mongol invasion fleet bound for Japan in the Middle ages?
+The kamikaze
+10
+
+History: Which president was responsible for the 'Louisiana Purchase'?
+Thomas Jefferson
+10
+
+History: Which president was responsible for the Louisiana Purchase?
+Jefferson
+10
+
+HISTORY: Which queen of England had 11 fingers?
+Anne Boleyn
+10
+
+History: Which racist organisation was formed in Tennessee in 1865?
+Ku Klux Klan
+10
+
+History: Which revolt took place in 1381?
+The Peasants revolt
+10
+
+History: Which revolutionary type of firearm was invented by Richard Gatling in 1862?
+The machine gun
+10
+
+History: Which royal palace was given by Charles II to his mistress, the Duchess of Cleveland who sold it for building materials?
+Nonsuch palace
+10
+
+HISTORY: Which Saudi Arabian king was assassinated in 1975?
+King Faisal
+10
+
+History: Which Scottish King was known as Toom Tabard?
+John balliol
+10
+
+History: Which ship did Charles Darwin captain?
+HMS Beagle
+10
+
+History: Which ship sent the first SOS?
+Titanic
+10
+
+History: Which space shuttle exploded in flight killing the crew?
+Challenger
+10
+
+History: Which Spanish explorer first travelled to Jamaica?
+Christopher Columbus
+10
+
+History: Which Spanish soldier conquered Peru in the 1530s?
+Francisco pizarro
+10
+
+History: Which steamship of 1843 was the first to cross the Atlantic using a screw propeller?
+The great britain
+10
+
+History: Which Suffolk town, famous for a music festival was the first to have a female mayor?
+Aldeburgh
+10
+
+History: Which two British aircrafts played major parts in winning the Battle of Britain?
+Hurricane and spitfire
+10
+
+History: Which type of bullet was outlawed in 1899?
+Dum Dum
+10
+
+History: Which US general along with Schwarzkopf was leader in the Gulf War?
+Powell
+10
+
+History: Which US president said 'the buck stops here'?
+Harry Truman
+10
+
+History: Which US Presidents Presidency was called the Thousand Days?
+J F Kennedy's
+10
+
+History: Which war began June 25th 1950?
+Korean
+10
+
+History: Which was the first Chinese dynasty?
+Shang
+10
+
+History: Which was the first magazine to publish a hologram on its cover?
+National Geographic
+10
+
+History: Which was the first major German city to be captured by the allies in wwii?
+Aachen
+10
+
+HISTORY: Which weapon did Robert Whitehead invent in 1866?
+Torpedo
+10
+
+History: Which word means lighting war in German?
+Blitzkrieg
+10
+
+History: Which World War 2 leader was executed and exhibited by his own people?
+Mussolini
+10
+
+History: Who advocated planting peanuts and sweet potatoes to replace cotton and tobacco?
+George Washington Carver
+10
+
+History: Who appeared on the back of a US banknote in 1875?
+Pocahontas
+10
+
+History: Who assassinated John Lennon?
+Mark David Chapman
+10
+
+History: Who assassinated president Kennedy?
+Lee Harvey Oswald
+10
+
+History: Who became Nelsons mistress and bore him a child?
+Lady Hamilton
+10
+
+History: Who became president of South Africa in 1989?
+F.W. de Klerk
+10
+
+History: who betrayed norway to the nazis?
+Vidkun quisling
+10
+
+History: Who built Camelot?
+King Arthur
+10
+
+History: Who built the Bastille?
+Hughes aubriot
+10
+
+History: Who built the Lambarene missionary station?
+Albert Schweitzer
+10
+
+History: Who built the Taj Mahal?
+Shah Jahan
+10
+
+History: Who burned Atlanta in 1864?
+General Sherman
+10
+
+History: Who captained the HMS Beagle?
+Charles Darwin
+10
+
+History: Who captured Constantinople in 1453?
+The turks
+10
+
+History: Who committed the first daytime robbery?
+Frank and Jesse James
+10
+
+History: Who declared war on Japan the day before the bomb was dropped on Nagasaki?
+The soviet union
+10
+
+History: Who defeated Boudica on Watling Street?
+Suetonius Paullinus
+10
+
+History: Who defined the four freedoms in 1941?
+Franklin D Roosevelt
+10
+
+History: Who developed the first nuclear submarine?
+Soviet Union
+10
+
+History: Who did Count Claus von Stauffenberg attempt to assasinate with a bomb on 20 july 1944?
+Hitler
+10
+
+History: who did giuseppe zangara try to assassinate in miami on feb 15, 1933?
+Franklin roosevelt
+10
+
+History: Who did Louis XVI give the Hope Diamond to?
+Marie Antoinette
+10
+
+History: who did photographer heinrich hoffmann introduce to adolf hitler in 1929?
+Eva braun
+10
+
+History: Who did Squeaky Fromme try to assassinate?
+Gerald Ford
+10
+
+History: Who died three days after Elvis Presley?
+Groucho Marx
+10
+
+History: Who died three days before Groucho Marx?
+Elvis Presley
+10
+
+History: who discovered jamaica?
+Christopher columbus
+10
+
+History: Who discovered the Grand Canyon?
+Francisco Coronado
+10
+
+History: Who drafted most of the American Declaration of Independence?
+Thomas Jefferson
+10
+
+History: Who established the first English printing press in 1476?
+John Caxton
+10
+
+History: Who fiddled while Rome burned?
+Nero
+10
+
+History: Who fixed the date of the Christian festival 'Easter'?
+Council of Nicaea
+10
+
+HISTORY: Who flew for over forty years without a licence?
+Orville Wright
+10
+
+History: Who forced 146 captured British officers into the Black Hole of Calcutta?
+Indian troops
+10
+
+HISTORY: Who fought the Punic Wars?
+Carthage and Rome
+10
+
+History: Who fought the wars of the Roses?
+Yorkists and Lancastrians
+10
+
+History: Who founded the Free Presbyterian church of Ulster in 1951?
+Ian Paisley
+10
+
+History: Who founded the Viking settlement of York in 875-6?
+Halfdan
+10
+
+History: Who had a mountain retreat at Berechtesgarten?
+Hitler
+10
+
+History: Who imported the first Go set into Britain?
+Marco Polo
+10
+
+History: Who in 1893 defined vegtables as plants eaten in a meal and fruits as plants eaten as dessert?
+United States Supreme Court
+10
+
+History: Who in 1988 became the first elected female prime minister in an Islamic country?
+Benazir Bhutto
+10
+
+History: Who introduced bagpipes to the British Isles?
+Romans
+10
+
+History: Who invented crop insurance?
+Benjamin Franklin
+10
+
+History: Who invented the aerosol?
+Erik Rotheim
+10
+
+History: Who invented the ballpoint pen?
+Georgo and Laszlo Biro
+10
+
+History: Who invented the cotton gin?
+Eli Whitney
+10
+
+History: Who invented the exploding shell?
+Henry Shrapnel
+10
+
+History: Who invented the gatling gun?
+Richard Gatling
+10
+
+History: Who invented the predecessor to today's computers?
+Charles Babbage
+10
+
+History: Who invented the wristwatch?
+Louis Cartier
+10
+
+History: Who is considered the father of medicine?
+Hippocrates
+10
+
+History: Who is famous for historically riding naked on horseback through Coventry, England?
+Lady Godiva
+10
+
+History: Who is identified with the word 'eureka'?
+Archimedes
+10
+
+History: Who is known as the high priest of revenge?
+Philip Seldon
+10
+
+HISTORY: Who is known as The warrior Queen?
+Boadicea
+10
+
+History: Who is known for his 'theory of evolution'?
+Charles Darwin
+10
+
+History: Who is missing from the Munich quartet - Chamberlain,Hitler,Mussolini and ____
+Daladier
+10
+
+History: Who is recognised as the father of geometry?
+Euclid
+10
+
+History: Who is supposed to have invented bi-focal lenses?
+Benjamin Franklin
+10
+
+History: Who is the first woman to cross the Atlantic Ocean by air and cross the Atlantic alone?
+Amelia Earhart 
+10
+
+History: Who killed Jesse James?
+Robert Ford
+10
+
+History: Who landed at Le Bourget airport on May 21st 1927?
+Charles Lindbergh
+10
+
+History: Who led 900 followers in a mass suicide in 1979?
+Jim Jones
+10
+
+History: Who led the army of Britons who razed London to the ground in AD 60-61?
+Boudica
+10
+
+History: Who led the attack on the Alamo?
+Santa Ana
+10
+
+History: Who led the attack on the Alamo?
+Santa anna
+10
+
+History: Who led the British expedition that conquered Everest in 1953?
+John Hunt
+10
+
+HISTORY: Who led the Charge of the Light Brigade?
+Lord Cardigan
+10
+
+History: Who led the children of Israel out of Egypt?
+Moses
+10
+
+History: Who led the first expedition to reach the south pole?
+Amundsen
+10
+
+History: Who led the first whire expedition overland to the US west coast in 1804?
+Lewis and clark
+10
+
+History: Who led the Junta which seized the Falklands in 1982?
+Galtieri
+10
+
+History: Who led the mongols?
+Genghis Khan
+10
+
+History: Who led the Turkish armies against the Christian forces in the Third Crusade?
+Saladin
+10
+
+History: who made a boat out of gopher wood?
+Noah
+10
+
+History: Who married actress Nancy Davis?
+Ronald Reagan
+10
+
+History: Who met in Yalta in 1945 (in alphabetical order)?
+Churchill Roosevelt Stalin
+10
+
+History: Who opened the worls first full scale atomic generating plant?
+Queen Elizabeth ii
+10
+
+History: Who ordered the persecution of the Christians in which Peter and Paul died?
+Nero
+10
+
+History: Who presided over the trial of Jesus?
+Pontius Pilate
+10
+
+HISTORY: Who ran against Ronald Reagan in the 1981 presidential election?
+Jimmy Carter
+10
+
+History: Who received the nobel peace prize in 1964 for civil rights leadership?
+Martin Luther King Jr
+10
+
+History: Who replaced Churchill at the Potsdam conference in July and august 1945?
+Clement attlee
+10
+
+History: Who rode naked through the streets of Coventry?
+Lady godiva
+10
+
+History: Who ruled rome when Christ was born?
+Augustus Caesar
+10
+
+History: Who said 'eureka'?
+Archimedes
+10
+
+History: who said 'honey, i forgot to duck'?
+Ronald reagan
+10
+
+History: Who said 'public service is my motto'?
+Al Capone
+10
+
+History: Who sailed to the new world in 'The mayflower'?
+Pilgrims
+10
+
+History: Who sang Happy Birthday to John F. Kennedy for his 45th?
+Marilyn monroe
+10
+
+History: Who saw the turtleneck he wore at cease-fire talks in Bosnia fetch $5,000 at auction?
+Jimmy Carter
+10
+
+History: Who shot abraham lincoln?
+Booth
+10
+
+History: Who shot Abraham Lincoln?
+John Wilkes Booth
+10
+
+History: Who shot Martin Luther King?
+James Earl Ray
+10
+
+History: Who signed the 'thanksgiving proclamation'?
+Abraham Lincoln
+10
+
+History: Who started arriving in Britain in Jan 1942?
+American GIs
+10
+
+History: Who started the occasional tax of danegeld?
+Ethelred the Unread
+10
+
+History: Who started the second Punic war?
+Carthage
+10
+
+History: Who succeeded Albert Reynolds as Prime Minister of Eire?
+John Brunton
+10
+
+History: Who succeeded Churchill when he resigned in 1955?
+Sir anthony eden
+10
+
+History: Who succeeded Hitler as German leader?
+Admiral donitz
+10
+
+History: Who succeeded Nelson Mandela as head of the African National Party and went on to become President of South Africa?
+Thabo mbeki
+10
+
+History: Who succeeded Winston Churchill as Prime Minister of England?
+Anthony Eden
+10
+
+HISTORY: Who took over at No 10 from Winston Churchill?
+Anthony Eden
+10
+
+History: Who tried to create the 'Great Society'?
+Lyndon B Johnson
+10
+
+History: Who was 'The Elephant Man'?
+Joseph Merrick
+10
+
+History: Who was appointed head of the Spanish Inquisition in 1483?
+Torquemada
+10
+
+History: Who was appointed to command the US Pacific fleet shortly after Pearl Harbor?
+Admiral chester w nimitz
+10
+
+History: Who was assassinated on December 8, 1980 in New York City?
+John Lennon
+10
+
+History: Who was assassinated on November 22, 1963 in Dallas, Texas?
+President John F. Kennedy
+10
+
+History: Who was Canada's first Prime Minister?
+John A. Macdonald
+10
+
+History: Who was captain of 'The Mayflower'?
+Miles Standish
+10
+
+History: Who was defeated at the Battle of Little Bighorn?
+George A. Custer
+10
+
+History: Who was defeated by Roosevelt in the 1932 presidentail election?
+President Hoover
+10
+
+History: Who was ejected from Albania in 1939 by the invading Italians?
+King Zog
+10
+
+HISToRY: Who was executed in 1944 for attempting to assassinate Hitler?
+General Claus von Stauffenberg
+10
+
+History: Who was forced by Indian troops into the Black Hole of Calcutta?
+British officers
+10
+
+History: Who was George Washington's vice-president?
+Adams
+10
+
+History: Who was George Washington's vice-president?
+John Adams
+10
+
+History: Who was given the only Nobel Peace Prize award during WWI?
+International Red Cross
+10
+
+History: who was Governor of the Bahamas during WWii?
+Duke of Windsor
+10
+
+History: Who was granted an Honorary Kinghthood by the Queen in 1991?
+Norman schwarzkopf
+10
+
+History: Who was Henry viiis third wife?
+Jan seymour
+10
+
+History: who was it that said 'the end justifies the means'?
+Niccolo machiavelli
+10
+
+History: Who was Joseph Merrick?
+The Elephant Man
+10
+
+HISTORY: who was Julias Ceasars third wife?
+Calpurnia
+10
+
+History: Who was kidnapped on the night of March 1, 1932?
+Charles Lindbergh Jr
+10
+
+History: Who was killed in Bluebird on Coniston water?
+Donald Campbell
+10
+
+History: Who was King Arthur's foster-father?
+Ector
+10
+
+History: Who was king of France at the time of the French Revolution?
+Louis xvi
+10
+
+History: Who was known as 'the peanut president'?
+Jimmy Carter
+10
+
+History: who was known as the flanders mare?
+Anne of cleaves
+10
+
+History: Who was known as the Iron Chancellor?
+Bismarck
+10
+
+History: Who was president of Nicaragua from 1981 to 1990?
+Daniel ortega
+10
+
+History: Who was Russian Foreign Minister 1957 - 1985?
+Gromyko
+10
+
+History: Who was Russian leader at the time of the Cuban Missile crisis?
+Kruschev
+10
+
+History: Who was shot by James Earl Ray?
+Dr Martin Luther King
+10
+
+History: Who was the 16th president of the United States?
+Abraham Lincoln
+10
+
+History: who was the captain of the mayflower?
+Miles standish
+10
+
+History: Who was the first (and last) catholic president?
+John Fitzerald Kennedy
+10
+
+History: Who was the first British Princess Royal?
+Princess mary
+10
+
+History: Who was the first chancellor of West Germany after WW II?
+Adenauer
+10
+
+History: Who was the first chancellor of West Germany after WW II?
+Konrad Adenauer
+10
+
+History: Who was the first dog in space?
+Laika
+10
+
+History: Who was the first duke of York?
+Edmund of langley
+10
+
+History: Who was the first englishman to sail around the world?
+Francis drake
+10
+
+History: Who was the first european to sail around the cape of good hope?
+Bartolomeu dias
+10
+
+History: Who was the first female American astronaut?
+Sally Ride
+10
+
+History: Who was the first fully Danish king of England?
+Canute the Great
+10
+
+History: Who was the first man to reach the North Pole?
+Robert Edwin Peary
+10
+
+History: Who was the first person to be confined in the Bastille?
+Hugues aubriot
+10
+
+History: Who was the first person to break the sound barrier?
+Chuck Yeager
+10
+
+History: Who was the first person to fly across the English channel?
+Louis bleriot
+10
+
+History: Who was the first person to own a billiards table?
+Mary Queen of Scots
+10
+
+History: Who was the first person to sail right round New Zealand?
+James cook
+10
+
+History: Who was the first person to swim the English Channel?
+Captain Matthew Webb
+10
+
+History: Who was the first president of the USA?
+George Washington
+10
+
+History: Who was the first signatory of the American Declaration of Independence?
+John Hancock
+10
+
+History: Who was the first U.S. president to adopt the informal version of his first name?
+Jimmy Carter
+10
+
+History: Who was the first US President to be awarded the Nobel Peace Prize?
+Theodore roosevelt
+10
+
+History: Who was the first US President to resign while in office?
+Richard Nixon
+10
+
+HISTORY: Who was the first wife of Henry viii?
+Catherine of Aragon
+10
+
+History: Who was the first woman in space?
+Valentina Tereshkova
+10
+
+History: Who was the founder of the Royal Exchange in 1537?
+Sir thomas gresham
+10
+
+HISTORY: Who was the guest conductor at the opening of the Carnegie hall in 1891?
+Tchaikovsky
+10
+
+History: who was the head of the German SS?
+Himmler
+10
+
+HISTORY: Who was the head of the Gestapo?
+Heinrich Himmler
+10
+
+History: Who was the last English king to die in battle?
+Richard iii
+10
+
+History: Who was the last president of the Soviet Union?
+Mikail Gorbachev
+10
+
+History: Who was the last prisoner held in the Tower of London?
+Rudolf Hess
+10
+
+History: Who was the lead singer for Creedence Clearwater Revival, and recently released 'Blue Moon Swamp'?
+John Fogerty
+10
+
+History: Who was the leader of the Khmer Rouge?
+Pol Pot
+10
+
+History: Who was the leader of the Pilgrimage of Grace, the Yorkshire Uprising in 1536 provoked by the Dissolution of the Monasteries?
+Robert aske
+10
+
+History: Who was the leader of Zanu who became Zimbabwe's first president?
+Robert Mugabe
+10
+
+History: Who was the Man of destiny?
+Napoleon
+10
+
+History: Who was the only survivor of Custer's last stand?
+His horse
+10
+
+History: Who was the only survivor of the Burke and Wills expedition which set out from Melbourne in 1860 to cross Australia?
+John king
+10
+
+History: Who was the prime minister of the first majority Labout government?
+Clement Attlee
+10
+
+History: Who was the second to set foot on the moon?
+Buz aldrin
+10
+
+HISTORY: Who was the second wife of Henry viii?
+Anne Boleyn
+10
+
+History: who was the second wife of King Henry viii?
+Anne boleyn
+10
+
+History: Who was the sioux Indian chief that headed the Indian forces which massacred general custer's men?
+Sitting bull
+10
+
+History: Who was the sun king?
+Louis xiv
+10
+
+History: Who was the Supreme Allied Commander at the end of World War One?
+Marshal ferdinand foch
+10
+
+History: Who was the third president of singpore?
+Devan nair
+10
+
+History: Who was the third President of the US?
+Thomas jefferson
+10
+
+History: Who was the third US president to be assissinated?
+Mckinley
+10
+
+History: Who was the top American ace of the korean war with 16 victories?
+James mcconnell
+10
+
+History: Who was the U S first postmaster general?
+Benjamin franklin
+10
+
+History: Who was the u. s. president at the time of the first �wall street crash'?
+Hoover
+10
+
+History: Who was the victim of the first murder seen live on tv?
+Lee harvey oswald
+10
+
+History: Who was the welsh prince who led the revolt against English rule in 1400?
+Owain glyn dwr
+10
+
+History: Who was the wife of Henry VI of England?
+Margaret of anjou
+10
+
+History: Who was the wife of Prince Albert of Saxe-Coburg-Gotha?
+Queen victoria
+10
+
+History: Who was the world's first woman Prime Minister?
+Sirimavo bandaranaike
+10
+
+History: Who was the world's longest reigning monarch?
+Louis xiv of france
+10
+
+History: Who was the young pretender who tried to seize the British throne in 1745?
+Bonnie prince charlie
+10
+
+History: Who was the youngest general in the American Civil War?
+George E Custer
+10
+
+History: Who was Ulysses' son, who grew to manhood in his absence?
+Telemachus
+10
+
+History: Who were defeated along with the Germans at El Alamein?
+Italians
+10
+
+History: Who were the first people to be elected into the Aviation Hall Of Fame?
+The Wright Brothers
+10
+
+History: Who won the Six day war of 1967?
+Israel
+10
+
+History: Who wrote 'The Starry Messenger'?
+Galileo
+10
+
+History: Who, during the Vietnam War, was known as Hanoi Jane?
+Jane Fonda
+10
+
+History: Whom did Betty Boothroyd succeed as Speaker of the House of Commons?
+Bernard weatherill
+10
+
+History: Whom did Harold ii succeed to the English throne?
+Edward the Confessor
+10
+
+History: Whose address was No 1, London?
+Duke of Wellington
+10
+
+History: Whose army spent a greadful winter in 1777-78 at Valley Forge?
+George Washington
+10
+
+History: Whose forces were defeated at the Battle of Midway in 1942?
+Japan
+10
+
+History: whose funeral was attended by more than 100,000 in New York City in 1926?
+Rudolph valentino
+10
+
+History: Wife of former King Edward VIII?
+Wallis simpson
+10
+
+History: Winston Churchill resigned from office in 1954, 1955 or 1956?
+1955
+10
+
+History: With which ancient people do you associate The book of the Dead?
+Egyptians
+10
+
+History: With who did benito mussolini dally?
+Clara petacci
+10
+
+History: WWI: 11918 Battle of Amiens ends in WWI, Allies beat____
+Germans
+10
+
+History: WWI: 1918 Battle of ____ ends in WWI, Allies beat Germans
+Amiens
+10
+
+History: WWI: 1918 Battle of Amiens ends in WWI, ____ beat Germans
+Allies
+10
+
+History: WWII: A family of ____ died in Oregon during WWII as a result of a Japanese balloon bomb
+Six
+10
+
+History: WWII: A family of six died in ____ during WWII as a result of a Japanese balloon bomb
+Oregon
+10
+
+History: WWII: A family of six died in Oregon during WWII as a result of a ____ balloon bomb
+Japanese
+10
+
+History: WWII: A family of six died in Oregon during WWII as a result of a Japanese balloon____
+Bomb
+10
+
+History: WWII: A sister ship to the Bismarck at over 50,000 tons, this German battleship was sunk on Nov 12 1944?
+Tirpitz
+10
+
+History: WWII: Britain's fastest WWII fighter aircraft, with a maximum speed of 721 kph?
+Spitfire
+10
+
+History: WWII: German Luftwaffe aircraft, of which 20,000 were produced for WWII?
+Focke-Wulf Fw 190
+10
+
+History: WWII: German Luftwaffe aircraft, of which 30,480 were produced for WWII?
+Messerschmitt Me 109
+10
+
+History: WWII: Germany's fastest WWII fighter aircraft, with a maximum speed of 959 kph?
+Messerschmitt Me 163
+10
+
+History: WWII: Hitler's plan 'operation sea lion', called for the invasion of which country?
+England
+10
+
+History: WWII: Hitler's plan called operation 'Sea Lion' called for the invasion of what country?
+England
+10
+
+History: WWII: Japanese Aircraft Carrier, a sister ship to the Musashi at 263 metres (862ft), sunk on Apr 7 1945?
+Yamato
+10
+
+History: WWII: On what Japanese city was the second atomic bomb dropped during world war ii?
+Nagasaki
+10
+
+History: WWII: United States' fastest WWII fighter aircraft, with a maximum speed of 784 kph?
+P51 Mustang
+10
+
+History: WWII: who headed up the gestapo?
+Heinrich himmler
+10
+
+History: Year that Viking I landed on Mars?
+1976
+10
+
+History: �papa doc' was president of which caribbean republic until his death in 1967?
+Haiti
+10
+
+Hitler and ____ both had only one testicle
+Napolean
+10
+
+Hitler and napolean both had only one ____
+Testicle
+10
+
+Holidays: April 14 is this western-world day?
+Pan American
+10
+
+Holidays: Catholics throughout Europe observer this on January 6?
+Epiphany
+10
+
+Holidays: Dentists get a lot of business due to this day?
+Halloween
+10
+
+holidays: derived from eostre, the dawn goddess of anglo-saxon myth?
+Easter
+10
+
+Holidays: Father's Day falls in this month?
+June
+10
+
+Holidays: Flag Day is this day in June?
+14
+10
+
+Holidays: Good King Wenceslaus was celebrating this feast on?
+St stephen
+10
+
+Holidays: Groundhog day is this day in february?
+2nd
+10
+
+Holidays: Grownups in Japan enjoy this day on January 15?
+Adult day
+10
+
+holidays: his birthday is celebrated february 12?
+Lincoln
+10
+
+holidays: his controversial day falls on october 12?
+Columbus
+10
+
+Holidays: Inauguraton Day is this January day?
+20th
+10
+
+Holidays: June 22 is this day in Finland; it's June 24 in Great Britain?
+Midsummer
+10
+
+Holidays: June 5 is this day in Denmark?
+Constitution
+10
+
+Holidays: March 26 in Spain is known as this?
+Fiesta del arbol
+10
+
+holidays: mithraism's (sun god worship) big day falls on the same day as this holiday?
+Christmas
+10
+
+Holidays: Popcorn was first served to colonists at this dinner?
+Thanksgiving
+10
+
+Holidays: Purim (Lots) is celebrated by Jewish in this Month (Jewish name)?
+Adar
+10
+
+Holidays: Setsubun (bean throwing festival) in Japan falls on this February day?
+3
+10
+
+Holidays: St. Agnes Eve in Great Britian falls on this January day?
+20
+10
+
+holidays: this day is the fourth thursday in november?
+Thanksgiving
+10
+
+Holidays: This lovely day is February 14th?
+Valentines day
+10
+
+Hollywood golden couple Nicole Kidman and Tom Cruise have split, but what have they said is the reason?
+The pressures of working apart
+10
+
+Holy Island, off the coast of Northumberland?
+Lindisfarne
+10
+
+Home Electronics?
+Computer
+10
+
+Honey is used as a center for ____ balls and in antifreeze mixtures
+Golf
+10
+
+Honey is used as a center for golf balls and in ____ mixtures
+Antifreeze
+10
+
+hook and eye, strap, tee, butt and blind are all types of what?
+Hinges
+10
+
+Hooked staff carried by a bishop as a symbol of pastoral office?
+Crosier
+10
+
+Hormone used in treating inflammation and allergy?
+Cortisone
+10
+
+Horn & Hardart opened the first U.S. automat in Philadelphia in?
+1902
+10
+
+Horsie Colors ____ colors of horses, of course! 10
+Palomino
+10
+
+Hosni Mubarak became president of which African country in 1981?
+Egypt
+10
+
+Host of the annual labor day telethon?
+Jerry lewis
+10
+
+Hot lesbian witches Ouch, that's hot!?
+Being john malkovitch
+10
+
+Hot springs are known as geysers after the great geysir that is located where?
+Iceland
+10
+
+Houari boumedienne was president of which country from 1965 to 1978?
+Algeria
+10
+
+House on what part of the body is an 'ltk procedure' performed?
+Eyes
+10
+
+Household items such as television sets and audio equipment are know as?
+Brown goods
+10
+
+Household paper products (include paper)?
+Toilet paper
+10
+
+Houston, Waco and Fort Worth are all in which state?
+Texas
+10
+
+Hovercrafts can be described as A.C.V.s. For what do the letters A.C.V. stand?
+Air cushion vehicle
+10
+
+How are cranberries checked for ripeness?
+By bouncing them
+10
+
+How are the first 5 books of the bible known collectively?
+Pentateuch
+10
+
+How are the first five books of the bible known collectively?
+The pentateuch
+10
+
+How are women called that never had childbirth?
+Nullparia
+10
+
+How big a can of soda pop contains the equivalent of 9 teaspoons of sugar?
+Twelve ounce
+10
+
+How big is the city of london?
+One square mile
+10
+
+How big is the great hornbill?
+About three feet tall
+10
+
+How big was the Unix kernel in 1974?
+42 kilobytes
+10
+
+How deep is a fathom?
+Six feet
+10
+
+How deep is the target depth of the borehole located at the Kola Peninsula in northern Russia?
+Fifteen kilometers
+10
+
+How did actor Daniel Day-Lewis end his relationship with girlfriend Isabelle Adjani?
+By fax 
+10
+
+How did actress Minnie Driver discover that boyfriend Matt Damon had ended their relationship?
+He told Oprah Winfrey
+10
+
+How did african explorer HM Stanley earnhis living?
+As a journalist
+10
+
+How did Alice get into the land of the living chess pieces?
+Through the looking glass
+10
+
+How did Bad Manners change the title of a Millie hit?
+Lip up fatty
+10
+
+How did Brad Pitt, recently married to Jennifer Aniston, refer to his ex Gwyneth Paltrow in a recent magazine interview?
+Paltrow' 
+10
+
+How did Buddy Holly die?
+Aeroplane crash
+10
+
+How did captain cook lose 41 of his 98 crew on his first voyage to the south pacific in 1768?
+Scurvy
+10
+
+How did Dora Ratjen place in the 1936 olympics women's high jump?
+Fourth
+10
+
+How did Dr. Nick get his operating gloves?
+They came free with his toilet brush
+10
+
+How did ed mcmahon of the tonite show start his career?
+Circus clown
+10
+
+How did Eva Peron die?
+Cancer
+10
+
+How did Frances Queen Marie Antoinette die?
+Executed by guillotine
+10
+
+How did Greta Gustafson become better known as an actress?
+Greta Garbo
+10
+
+How did indiana previously know marion in raiders of the lost ark?
+He studied with her father
+10
+
+How did Jamie Sommers become bionic?
+From a parachute accident.
+10
+
+How did John Belushi die?
+Drug and Alcohol overdose 
+10
+
+How did Judas Iscariot commit suicide?
+Hanging
+10
+
+How did lawrence of arabia meet his death in 1935?
+Motor cycle accident
+10
+
+How did leonardo da vinci's alarm clock wake a sleeper?
+Rubbing the feet
+10
+
+How did loggers get their logs to the mills in the 18th & 19th century?
+Floated down rivers
+10
+
+How did Mahatma Gandhi die?
+Shot
+10
+
+How did Mark Chapman shock the world?
+Shot john lennon
+10
+
+How did marvin gaye die?
+Shot by his father
+10
+
+How did Montravia Kaskarak Hitari better known as Alfie distinguish himself?
+Crufts supreme champion
+10
+
+How did Mussolini die?
+Execution
+10
+
+How did Mussolini travel to Rome during his 1922 March on Rome?
+By train
+10
+
+How did Nero commit suicide?
+Cut his throat
+10
+
+How did nurse Edith Cavell die in 1915?
+Shot by the germans
+10
+
+How did Paul Wilson run 100 yards in 13.1 seconds on September 22nd 1979 to set a world record?
+Backwards
+10
+
+How did Rocky Marciano die?
+Plane crash
+10
+
+How did Rose Nilin's husband Charlie die on The Golden Girls?
+He died of a heart Attack while making love to Rose.
+10
+
+How did Sir Henry Tate, of the Tate gallery make his fortune?
+Sugar production
+10
+
+How did Sir John Franklin meet his death in 1847?
+In arctic ice
+10
+
+How did Sir Thomas Moore die?
+Beheaded for treason
+10
+
+How did sir walter raleigh die?
+Execution
+10
+
+How did Socrates commit suicide?
+Drinking poison hemlock
+10
+
+How did teenager Homan Walsh cross Niagara in 1848?
+With a kite
+10
+
+How did the bum convince the family dog to start eating again in Down and Out in Beverly Hills?
+He ate the dog's food
+10
+
+How did the crew of Red Dwarf get brought back to life?
+By Nanobots
+10
+
+How did the cuckoo flower get its name?
+Flowers on the day the first cuckoo calls
+10
+
+How did the London Bridge collapse?
+It was pushed
+10
+
+How did the roman emperor claudius die?
+Choked on a feather
+10
+
+How did Umberto Nobile cross the North Pole in 1926?
+Airship
+10
+
+How did Vivian of the Young oNes get rid of the Tv when the inspector called?
+He ate it
+10
+
+How did will rogers, carole lombard and mike todd all die?
+In a plane crash
+10
+
+How do amphibians like frogs and toads breathe?
+Through their skins
+10
+
+How do frogs breathe under water?
+Through the skin
+10
+
+How do most worms get inside apples?
+They hatch there
+10
+
+How do salmon find their way back to their home river to spawn every year?
+Smell
+10
+
+How do the German owners of SNPP describe their country to Homer? (Burns Verkaft Das Kraftverk)?
+The land of chocolate
+10
+
+How do the people of Samoa greet one another?
+They smell each other
+10
+
+How do tightrope walkers stay on the wire?
+Practice
+10
+
+How do wolves carry meat to their young - by dragging it, pushing it or swallowing it?
+Swallowing
+10
+
+How do write 49 in Roman numerals?
+Xlix
+10
+
+How do you catch a unique rabbit?
+Unique up on it
+10
+
+How do you get the square of a number?
+Multiply the number by itself
+10
+
+How do you spell the word meaning 'to be still or not moving'?
+Stationary
+10
+
+How do you tell a male chromosome from a female chromosome?
+Pull down their genes
+10
+
+How do you write 49 in Roman numerals?
+Xlix
+10
+
+How do you write 50 in Roman numerals?
+L
+10
+
+How do you write ninety nine in Roman numerals?
+Xcix
+10
+
+How do you write sixy-nine in roman numerals?
+Lxix
+10
+
+How does a tortoise drink water?
+Thru its nose
+10
+
+How does an international air mile compare with a staute mile?
+Longer
+10
+
+How does Darcy Bussell make her living?
+Ballet dancer
+10
+
+How does logan know eyes-only?
+He is him
+10
+
+How does Mr. Burns describe his fortune?
+Vast
+10
+
+How does the Texas licence plate of the former first lady Barbara Bush read?
+I read
+10
+
+How does Tracy Emin make her living?
+Artist
+10
+
+How far away can a human detect a skunk's smell from?
+One mile
+10
+
+How far can a mole dig an hour?
+Fifteen feet
+10
+
+How far does the cruise liner 'queen elizabeth ii' move for each gallon of diesel it burns?
+Six inches
+10
+
+How far is neptune from the sun?
+2793 million miles
+10
+
+How fast can a kangaroo hop?
+Forty mph
+10
+
+How fast can a penguin fly?
+Penguins cant fly
+10
+
+How fast can the flightless ostrich run(mph)?
+45
+10
+
+How fast did the bus in the movie speed need to go in order not to blow up?
+50mph
+10
+
+How fast does a sneeze leave your mouth?
+100 mph
+10
+
+How fast does the tip of a rotary mower travel?
+Two hundred km/hr
+10
+
+How fast does the tip of a standard rotary mower travel (in km/h)?
+-- Answer metadata begin
+{
+    "answers": ["Two hundred", "200"]
+}
+-- Answer metadata end
+10
+
+How fast is a jiffy?
+1/100th of a second
+10
+
+How heavy was the hammer swung by John Henry?
+Nine pounds
+10
+
+How high are the letters of the famous Hollywood sign that overlooks Hollywood, California?
+45 feet
+10
+
+How high could the klopek's furnace go in the 'burbs?
+5000 degrees
+10
+
+How high is a basketball net?
+Ten feet
+10
+
+How high is the highest building in the world in meters?
+452
+10
+
+How high is the net in a game of table tennis?
+Six inches
+10
+
+How is 21 written in binary numbers?
+10101
+10
+
+How is a female duck called?
+Duck
+10
+
+How is a zither played?
+Plucked
+10
+
+How is abba calling for help?
+Sos
+10
+
+How is Cherilyn Sarkasian La Pierre better known?
+Cher
+10
+
+How is george lucas effect company called?
+Industrial light and magic
+10
+
+How is mancunian multi-instrumentalist damon gough better known?
+Badly drawn boy
+10
+
+How is mistletoe gathered in the southern united states?
+Shot from trees
+10
+
+How is Supergirl related to Superman?
+First cousins
+10
+
+How is the 15th March also known?
+Ides of March
+10
+
+How is the Common Business Language commonly referred to in computing?
+Cobol
+10
+
+How is the math related structure of beads strung on parallel wires in a rectangular frame better known?
+Abacus
+10
+
+How is the mathematically related structure of beads strung on parallel wires in a rectangular frame better known?
+Abacus
+10
+
+How is the tree with the botanical name Fagus better known?
+Beech
+10
+
+How is the year 2000 written in Roman numerals?
+Mm
+10
+
+How large can a giant clam grow to?
+Five feet
+10
+
+How long ago did dinosaurs die out?
+64 million years ago
+10
+
+How long can it take for the insecticide ddt to break down in nature?
+Eight years
+10
+
+How long did dinosaurs live on earth?
+150 million years
+10
+
+How long did it take god to create the universe?
+Seven days
+10
+
+How long did it take Marco Polo to reach China?
+Four years
+10
+
+How long did it take the first woman to swim the English channel?
+14 hours & 34 minutes
+10
+
+How long did it take to deliver the gettysburg address?
+2 minutes
+10
+
+How long did the hundred years war last?
+-- Answer metadata begin
+{
+    "answers": ["115 years", "one hundred and fifteen years"]
+}
+-- Answer metadata end
+10
+
+How long did yuri gagarin's first orbit round the earth take?
+One hundred and eight minutes
+10
+
+How long does a boxer get to rest between the rounds of a match?
+One minute
+10
+
+How long does a game of ice hockey last?
+Sixty minutes
+10
+
+How long does an American president hold office?
+Four years
+10
+
+How long does Aunt Selma have to live before she blows up?
+One hour
+10
+
+How long does it take a fully loaded supertanker to stop from traveling at normal speed?
+Twenty minutes
+10
+
+How long does it take a mole to dig a tunnel 300 feet long?
+One night
+10
+
+How long does it take an orchid to grow from seed?
+Eight years
+10
+
+How long does it take for sunlight to reach earth?
+Eight minutes
+10
+
+How long does it take neptune to travel around the sun?
+165 years
+10
+
+How long does it take the average person to fall asleep (in minutes)?
+7
+10
+
+How long does it take the average person to fall asleep?
+Seven minutes
+10
+
+How long does it take the earth to travel one and a half million miles?
+Twenty four hours
+10
+
+How long does it take the moon to revolve around the Earth, to the nearest day?
+27
+10
+
+How long does it take the moon to revolve around the earth?
+Twenty seven days
+10
+
+How long does the average worker in central London spend commuting to their office?
+110 minutes
+10
+
+How long does the average yawn last?
+6 seconds
+10
+
+How long is a coat hanger if straightened?
+44 inches
+10
+
+How long is a diamond anniversary?
+Fifty years
+10
+
+How long is a dog watch at sea?
+Two hours
+10
+
+How long is a giraffe's tongue?
+Twenty one inches
+10
+
+How long is a major penalty in hockey?
+Five minutes
+10
+
+How long is a normal hockey period in minutes?
+20
+10
+
+How long is a one year anniversary?
+Paper anniversary
+10
+
+How long is a paper anniversary?
+One year
+10
+
+How long is a sesquicentennial?
+150 years
+10
+
+How long is a shuffleboard court?
+52 feet
+10
+
+How long is a silver anniversary?
+Twenty five years
+10
+
+How long is a standard olympic swimming pool?
+Fifty metres
+10
+
+How long is a swimming race that covers sixteen lengths of an olympic pool?
+800 metres
+10
+
+How long is an elephant pregnant?
+2 years
+10
+
+How long is an elephant's gestation period?
+22 months
+10
+
+How long is an emerald anniversary?
+Sixty years
+10
+
+How long is an eon?
+One billion years
+10
+
+How long is an olympic swimming pool?
+50 metres
+10
+
+How long is camptown racetrack?
+Five miles
+10
+
+How long is Edgar Reitzs film history of a German village Heimat?
+Sixteen hours
+10
+
+How long is New York`s Broadway in km?
+241
+10
+
+How long is the approach area prior to the foul line on a bowling lane?
+Sixteen feet
+10
+
+How long is the campdown racetrack?
+Five miles
+10
+
+How long is the camptown racetrack?
+5 miles
+10
+
+How long is the danube river?
+1,750 miles
+10
+
+How long is the ganges river?
+1560 miles
+10
+
+How long is the george-massey tunnel, near vancouver, bc?
+629 meters
+10
+
+How long is the le mans endurance motor race?
+Twenty four hours
+10
+
+How long is the longest tunnel?
+One hundred and sixty nine kms
+10
+
+How long is the memory span of a goldfish?
+Three seconds
+10
+
+How long is the rest between rounds in boxing?
+One minute
+10
+
+How long is the Suez canal in kilometers?
+161.9
+10
+
+How long passed from the making of minute rice & its marketing?
+18 years
+10
+
+How long passed from the making of the first zipper & its marketing?
+55 years
+10
+
+How long was jesus' temptation in the desert?
+Forty days
+10
+
+How long was jonah in the whale's stomach?
+3 days
+10
+
+How long was nelson mandela in prison?
+Twenty seven years
+10
+
+How long was the love affair between dashiel hammett and lillian hellman?
+Thirty years
+10
+
+How long was the marquis de sade in prison for sexual offences?
+Twenty seven years
+10
+
+How long was the six day war?
+Six days
+10
+
+How long was the uncut version of the film 'the longest day'?
+179 minutes
+10
+
+How long were Jerry Seinfeld and his pals sentenced in the series finale?
+One year
+10
+
+How long were Take That Back For in 1995?
+Good
+10
+
+How long would a bassoon be if it was stretched out?
+Nine feet
+10
+
+How long, after coming in contact with Poison Ivy, do you have to wash off your skin before the urushiol binds with skin surface and causes itching?
+15 minutes
+10
+
+How long, to the nearest 50 years, has the dodo been dead?
+300
+10
+
+How loud can a human snore be?
+Sixty nine decibels
+10
+
+How many - How many years in a vicennial?
+Twenty
+10
+
+How many 'joeys' can a female kangaroo have in her pouch at one time?
+Three
+10
+
+How many 'joeys' can a kangaroo have in her pouch at one time?
+Three
+10
+
+How many 'tarsal' bones do we have in each foot?
+Seven
+10
+
+How many Academy Awards did the Itchy and Scratchy Movie win?
+9 
+10
+
+How many acres in a square mile?
+640
+10
+
+How many air force one(s) are there?
+Two
+10
+
+How many air wing divisions are there in the marine corps?
+3
+10
+
+How many American voyages did Christopher Columbus make?
+Four
+10
+
+How many animals are used to designate the years of the Chinese calendar?
+Twelve
+10
+
+How many apostles did Jesus choose?
+Twelve
+10
+
+How many arches grace Aberdeen's Bridge of Dee?
+Seven
+10
+
+How many ascii characters is there?
+255
+10
+
+How many astronauts manned each apollo flight?
+Three
+10
+
+How many astronauts manned each of the Project Gemini flights?
+Two
+10
+
+How many Australian states are there?
+Seven
+10
+
+How many avenues radiate from the Arc di Triomphe?
+Twelve
+10
+
+How many bags of mail were lost by the pony express?
+One
+10
+
+How many balls apart from the cue ball are used in snooker?
+21
+10
+
+How many balls are there in snooker?
+22
+10
+
+How many balls are used in a game of snooker in addition to the cue ball?
+Twenty One
+10
+
+How many balls were there in the old Australian over?
+Eight
+10
+
+How many band members are there in the band Slipknot?
+9
+10
+
+How many bank holidays are there in England and Wales in 2002?
+Nine
+10
+
+How many basic positions of the feet are there in ballet?
+Five
+10
+
+How many bathing suits was Martin wearing in 1F22?
+17
+10
+
+How many bathrooms are in the Toronto based Casa Loma?
+Thirty
+10
+
+How many birthday candles were Michael Jackson & Madonna each obliged to blow out in 1998?
+Forty
+10
+
+How many bits are in a nibble?
+4four
+10
+
+How many bits was the intel 4004 chip?
+4 bits
+10
+
+How many blackbirds were baked in a pie?
+Four and twenty
+10
+
+How many blades are there on a kayak paddle?
+Two
+10
+
+How many blades does a kayak paddle have?
+Two
+10
+
+How many bones are in the human body?
+Two hundred and six
+10
+
+How many bones are there in the inner ear?
+3
+10
+
+How many bonus points in Scrabble if all seven tiles played at once?
+Fifty
+10
+
+How many books are in the old testament of the holy Bible?
+39
+10
+
+How many books are there in a trilogy?
+Three
+10
+
+How many bottles are there in a magnum of champagne?
+Two
+10
+
+How many bottles of wine make up a magnum?
+Two
+10
+
+How many bowling balls does it take to make a spare?
+Two
+10
+
+How many brains does a leech have?
+Thirty two
+10
+
+How many brains does a starfish have?
+None
+10
+
+How many British monarchs have been deposed since the norman conquest?
+Five
+10
+
+How many British officers were forced by Indian troops into the black hole of calcutta?
+One hundred and forty six
+10
+
+How many British prime ministers have been assassinated?
+One
+10
+
+How many broken clubs is a golfer allowed to replace during a round?
+One
+10
+
+How many broken clubs is a golfer alowed to replace during a round?
+One
+10
+
+How many Bronte sisters lived to see their 40th birthdays?
+None of them
+10
+
+How many brothers Karamazov were there?
+Four
+10
+
+How many BTU's in a therm?
+100,000
+10
+
+How many bulls are killed in a formal bullfight?
+Six
+10
+
+How many bulls are slaughtered in a normal bullfight?
+Six
+10
+
+How many buns in a baker's dozen?
+13
+10
+
+How many burgers does Homer order from the Krusty Burger on an off-shore oil rig?
+700 
+10
+
+How many calendars are needed for a perpetual calendar?
+Fouteen
+10
+
+How many calories are in a can of mountain dew?
+170
+10
+
+How many calories are in albersons cream soada?
+180
+10
+
+How many calories are there in a glass of water?
+-- Answer metadata begin
+{
+    "answers": ["0", "none"]
+}
+-- Answer metadata end
+10
+
+How many calories does a passionate kiss burn?
+Six
+10
+
+How many calories does it take to frown?
+17
+10
+
+How many camels carried the 117,000 volumes of abdul kassem ismael's library?
+Four hundred
+10
+
+How many Canadian provinces border Montana?
+3
+10
+
+How many cards are dealt to each player in gin rummy?
+Ten
+10
+
+How many cards are there in a pack not including jokers?
+Fifty two
+10
+
+How many cards are there in each suit of a standard deck?
+Thirteen
+10
+
+How many cars are being driven down the U.S's highways?
+123,000,000
+10
+
+How many cars are permitted to take part in a formula one race?
+26
+10
+
+How many cars compete against each other in a drag race?
+Two
+10
+
+How many cells die in the human body every minute?
+300,000,000
+10
+
+How many cents are there in a Bahamian Dollar?
+100
+10
+
+How many chambers are in the south african parliament that was formed in 1984?
+Three
+10
+
+How many chambers are there in the human heart?
+Four
+10
+
+How many championship divisions are there in boxing?
+Eight
+10
+
+How many championships did fangio win?
+Five
+10
+
+How many cherubs are there on a Trivial Pursuit board?
+Nineteen
+10
+
+How many children are in the 'American dream'?
+2.5
+10
+
+How many children did adam and eve have together?
+Three
+10
+
+How many children did adam and eve have?
+Three
+10
+
+How many children did mama & papa hansen have in mama?
+Three
+10
+
+How many children did president william Henry harrison have?
+Ten
+10
+
+How many children did queen anne have?
+Seventeen
+10
+
+How many children do The Waltons have?
+7
+10
+
+How many christmas trees are produced by nova scotia anually?
+1
+10
+
+How many chromosomes do each body cell contain?
+Forty six
+10
+
+How many cigars did sir winston churchill ration himself to a day?
+Fifteen
+10
+
+How many classic horse races are there?
+Five
+10
+
+How many claws does a house cat have?
+Eighteen
+10
+
+How many clubs can a professional golfer play a round with?
+Fourteen
+10
+
+How many cocoons are needed to make one pound of silk?
+25,000
+10
+
+How many colonies fought in the American war of Independence?
+Thirteen
+10
+
+How many colors are there in a rainbow?
+7
+10
+
+How many colours are there in a rainbow?
+Seven
+10
+
+How many colours are there in the rainbow?
+Seven
+10
+
+How many compartments does a cow's stomach have?
+Four
+10
+
+How many consecutive Elton John albums hit the first position on the charts (1971-1975)?
+Seven
+10
+
+How many consecutive misses eliminate a high jumper?
+Three
+10
+
+How many contestants participated in the first modern olympiad?
+484
+10
+
+How many continents are there?
+Seven
+10
+
+How many continents must a sport be played on before the IOC will consider making it an Olympic event for men?
+Four
+10
+
+How many continents must a sport be regularly played in before it is accepted into the olympics?
+Five
+10
+
+How many cooks spoil the broth, according to a well known saying?
+Too many
+10
+
+How many corners does a cube have?
+Eight
+10
+
+How many counters of each colour does backgammon have?
+Fifteen
+10
+
+How many counties are in Northern Ireland?
+Six
+10
+
+How many countries are there in the continent of Australia?
+1
+10
+
+How many countries border bolivia?
+5
+10
+
+How many countries border china?
+Fourteen
+10
+
+How many countries border the black sea?
+Four
+10
+
+How many countries competed in the first modern olympics in 1896?
+Thirteen
+10
+
+How many countries have an area less then 10 square miles?
+Four (vatican city, monaco, nauru and tuvalu)
+10
+
+How many countries lie along the Greenwich Meridian line?
+Seven
+10
+
+How many countries won the 1969 eurovision song contest?
+Four
+10
+
+How many cowhides do the nfl use for a year's supply of footballs?
+Three thousand
+10
+
+How many cows does it take to supply the NFL in footballs for one year?
+3,0003000
+10
+
+How many crusades were there?
+Eight
+10
+
+How many cubic feet of wood are in a cord?
+128
+10
+
+How many curls did Shirley Temple always have in her hair?
+56
+10
+
+How many cycles per second in one megahertz?
+1 million
+10
+
+How many cylinders does a V-8 engine have?
+Eight
+10
+
+How many daily tides are there?
+Two
+10
+
+How many days after John F Kennedy's assassination was Lee Harvey Oswald shot?
+-- Answer metadata begin
+{
+    "answers": ["2", "two"]
+}
+-- Answer metadata end
+10
+
+How many days and nights did the Lord flood the earth while Noah and his family were safely aboard the ark?
+Forty
+10
+
+How many days are in november?
+30
+10
+
+How many days are in the month of October?
+31
+10
+
+How many days are there in a fortnight?
+Fourteen
+10
+
+How many days are there in a leap year?
+366
+10
+
+How many days are there in august?
+31
+10
+
+How many days are there in Lent?
+Forty
+10
+
+How many days are there in the month of August?
+31
+10
+
+How many days can a cockroach live without water?
+Thirty
+10
+
+How many days did woodstock run?
+3 
+10
+
+How many days does a typical mayfly live?
+One
+10
+
+How many days does it take to complete the decathlon?
+Two
+10
+
+How many days does the month of November have?
+30
+10
+
+How many days long is a year on the planet mercury?
+Eighty eight
+10
+
+How many days were the 52 American hostages held in Iran?
+444
+10
+
+How many days were the American hostages held in Iran?
+-- Answer metadata begin
+{
+    "answers": ["Four hundred and forty", "444"]
+}
+-- Answer metadata end
+10
+
+How many days were there in 1976?
+Three hundred and sixty six
+10
+
+How many days where there in 1976?
+-- Answer metadata begin
+{
+    "answers": ["Three hundred and sixty six", "366"]
+}
+-- Answer metadata end
+10
+
+How many deadly sins are there?
+Seven
+10
+
+How many deeds did hercules perform to free himself from bondage?
+Twelve
+10
+
+How many degrees are all the angles in a square?
+Three hundred and sixty
+10
+
+How many degrees are there between north & east on a compass?
+90
+10
+
+How many degrees are there in a right angle?
+Ninety
+10
+
+How many degrees are there in the three angles of a triangle?
+180
+10
+
+How many degrees separate boiling & freezing in fahrenheit?
+180
+10
+
+How many dice are used in Backgammon?
+Five
+10
+
+How many dice are used to play yahtzee?
+Five
+10
+
+How many different basic tastes can a human tongue distinguish?
+Four
+10
+
+How many different basic tastes can the tongue distinguish?
+Four
+10
+
+How many different color labels are there on crayola crayons?
+Eighteen
+10
+
+How many different color mandm's are there?
+Seven
+10
+
+How many different colored belts are there in Taekwondo?
+11
+10
+
+How many different colours of m&m's are there?
+7
+10
+
+How many different muscles are in a birds wing?
+Forty
+10
+
+How many different numbers are there on a dartboard?
+Twenty
+10
+
+How many different squares are open to a knight making the very first move in a game of chess?
+Two
+10
+
+How many different swimming strokes are used in medley race?
+Four
+10
+
+How many different types of chess pieces are there in a game of chess?
+Six
+10
+
+How many different types of chess pieces are there?
+Six
+10
+
+How many different zodiac signs are there?
+Twelve
+10
+
+How many dimensions does a solid have?
+Three
+10
+
+How many dimples are there on a regulation golf ball?
+336
+10
+
+How many dimples does a golf ball have?
+Three hundred and thirty six
+10
+
+How many Dirty Harry movies have been made?
+Five
+10
+
+How many Dirty Harry movies have been madefive?
+5
+10
+
+How many dog years actually equal one human year?
+5.5 years
+10
+
+How many dominoes are in a standard set?
+28
+10
+
+How many dots are there on a pair of dice?
+Forty two
+10
+
+How many drivers pick up points in a Grand Prix race?
+Six
+10
+
+How many drops make a dash in cooking?
+Six
+10
+
+How many drops make a dash?
+6
+10
+
+How many drops make up a dash in cooking?
+Six
+10
+
+How many eggs do identical twins develop from?
+One
+10
+
+How many emmy awards were personally won by Walt Disney and his studios during his lifetime?
+7
+10
+
+How many employees does IBM have?
+600 thousand
+10
+
+How many engines did the b-36 have?
+10
+10
+
+How many engines does a B-52 bomber have?
+Eight
+10
+
+How many engines does a Boeing 737 have?
+Two
+10
+
+How many engines does a DC-10 have?
+Three
+10
+
+How many engines does a Lancaster bomber have?
+Four
+10
+
+How many engines does a Lear jet have?
+Two
+10
+
+How many engines does the saturn rocket boast?
+Eight
+10
+
+How many English kings have been named Henry?
+Eight
+10
+
+How many English Test Cricket venues are there?
+Six
+10
+
+How many episodes were there in the original Star Trek series?
+Seventy five
+10
+
+How many episodes were there of the tv game show 'nothing but the truth'?
+One
+10
+
+How many equal angles are there in an isosceles triangle?
+Two
+10
+
+How many equal sides are there in an isosceles triangle?
+2
+10
+
+How many equal sides are there on a scalene triangle?
+-- Answer metadata begin
+{
+    "answers": ["0", "none"]
+}
+-- Answer metadata end
+10
+
+How many events make up the decathlon?
+Ten
+10
+
+How many eyelids do birds have on each eye?
+Three
+10
+
+How many eyes are there in a deck of 52 cards?
+Forty two
+10
+
+How many eyes are there on a U S one-dollar bill?
+Four
+10
+
+How many eyes does a bat have?
+Two
+10
+
+How many eyes does a scorpion have?
+Eight
+10
+
+How many eyes does an earthworm have?
+None
+10
+
+How many faces did the Romans believe Janus to have?
+Two
+10
+
+How many faces has an icosahedron?
+Twenty
+10
+
+How many facets has a snowflake?
+Six
+10
+
+How many feet apart are the bases in baseball?
+Ninety feet
+10
+
+How many feet are in a mile?
+Five thousand two hundred and eighty
+10
+
+How many feet are in a nautical mile?
+6080
+10
+
+How many feet are there in a chain?
+Sixty-six
+10
+
+How many feet are there in a fathom?
+Six
+10
+
+How many feet are there in a nautical mile?
+6080
+10
+
+How many feet are there in one fathom?
+Six
+10
+
+How many feet around KJAZZ (Springfields jazz radio station) are occupied by its radio signals?
+23 feet 
+10
+
+How many feet can a hippo's mouth open?
+Four
+10
+
+How many feet of blood vessels are in the human skin?
+19
+10
+
+How many feet of tape does the average sixty minute audio cassette contain?
+562.5
+10
+
+How many fences does a Grand National winner jump?
+Thirty
+10
+
+How many fiddlers did old king cole have?
+Three
+10
+
+How many films did elvis presley make in his lifetime?
+Thirty three
+10
+
+How many finally made it to freedom in the film the great escape?
+Three
+10
+
+How many fingers are used to draw a bow?
+Three
+10
+
+How many fingers does Homer Simpson have?
+Eight
+10
+
+How many fires erupted in the april 18, 1906 san francisco earthquake?
+Fifty
+10
+
+How many floors are in the empire state building?
+102
+10
+
+How many fluid onces make up an American pint?
+Sixteen
+10
+
+How many fluid ounces in an American pint?
+Sixteen
+10
+
+How many fluid ounces in an English pint?
+Twenty
+10
+
+How many footballers died in the Munich air crash?
+Eight
+10
+
+How many freckles did howdy doody have?
+Forty eight
+10
+
+How many front toes does a parrot have?
+-- Answer metadata begin
+{
+    "answers": ["Two", "2"]
+}
+-- Answer metadata end
+10
+
+How many funnels did the Titanic have?
+Four
+10
+
+How many furlongs are there in a mile and a quarter racetrack?
+Ten
+10
+
+How many furlongs to a mile?
+8
+10
+
+How many gallons of diesel does the cruise liner 'queen elizabeth ii' use for each six inches it moves?
+One gallon
+10
+
+How many gallons of water are in a bath if the water weighs 100 pounds?
+Ten
+10
+
+How many gallons of water does the average camels hump hold?
+It holds fat
+10
+
+How many games are played in a five-team round-robin tournament?
+Ten
+10
+
+How many games are scheduled in one season for each major league team?
+162
+10
+
+How many games in a rubber of contract bridge?
+Three
+10
+
+How many games is needed to win a set in tennis?
+Six
+10
+
+How many gases make up 95 percent of the sun?
+Two
+10
+
+How many gears do most modern cars have?
+Five
+10
+
+How many genies appear to aladdin in the arabian nights tale?
+Two
+10
+
+How many ghosts appear to scrooge in dickens's 'a christmas carol'?
+Four
+10
+
+How many gigawatts of electricity did doc brown need to generate to power the delorion in back to the future?
+1.21 gigawatts!!
+10
+
+How many gloves did Michael Jackson wear?
+One
+10
+
+How many gold balls are there on the moon?
+Three
+10
+
+How many gold medals did Jesse Owens win in the 1936 Berlin Olympics?
+Four
+10
+
+How many gold medals did swimmer Mark Spitz win at the 1972 Olympics?
+Seven
+10
+
+How many gold medals did swimmer Mark Spitz win at the Munich Olympics in 1972?
+Seven
+10
+
+How many golf balls are there on the moon?
+Three
+10
+
+How many golf courses is the bob hope desert classic played on?
+Four
+10
+
+How many grammy awards did elvis win for his rock & roll songs?
+None
+10
+
+How many Grammy Awards did Smokey Robinson win?
+Zero
+10
+
+How many grams are there in two & a half kilograms?
+2,500
+10
+
+How many great lakes border Ontario, Canada?
+Four
+10
+
+How many Great Lakes do not border Michigan?
+One
+10
+
+How many guns of navarone were there?
+Two
+10
+
+How many hands are there on a digital watch?
+Zero
+10
+
+How many heads are there on a croquet mallet?
+Two
+10
+
+How many hearts does an earthworm have; is it 100,10, or none?
+Ten
+10
+
+How many hearts does an octopus have?
+Three
+10
+
+How many hearts has an octopus?
+Three
+10
+
+How many herrings are in a Warp?
+Four
+10
+
+How many highways are in Romania?
+Two
+10
+
+How many holes are in a horseshoe?
+Eight
+10
+
+How many holes are on a chinese checkerboard?
+One hundred and twenty one
+10
+
+How many holes are there in a standard horseshoe?
+Eight
+10
+
+How many holes are there in a ten pin bowling ball?
+Three
+10
+
+How many holes does a penny whistle have?
+Six
+10
+
+How many home matches did Manchester United play on their way to the 1990 FA Cup Final?
+None
+10
+
+How many hops are there in a triple jump - one, two or three?
+Three
+10
+
+How many horsemen where there of the apocalypse?
+Four
+10
+
+How many horses are there on a polo team?
+4
+10
+
+How many horses died in the 1990 Grand National?
+Two
+10
+
+How many horses in a polo team?
+Four
+10
+
+How many hostages were killed in the Entebbe raid?
+Three
+10
+
+How many hours a day does a ferret sleep?
+Twenty
+10
+
+How many hours a day does the average jumbo jet fly?
+Ten
+10
+
+How many hours are there in a week?
+One hundred and sixty eight
+10
+
+How many hours are there in a year (non-leap)?
+8760
+10
+
+How many hours constitutes a day aboard the ds9 space station?
+26 hours
+10
+
+How many hours difference is there between est and western Australian time when daylight savings is not on?
+12
+10
+
+How many hours does an antelope sleep at night?
+One
+10
+
+How many hours from Tulsa was Gene Pitney in his 1963 hit song?
+24
+10
+
+How many hours per day does the average in service jumbo jet fly?
+Ten
+10
+
+How many housing property squares are there on a monopoly board?
+22
+10
+
+How many humps does a Dromedary have?
+One
+10
+
+How many humps does an African camel have?
+-- Answer metadata begin
+{
+    "answers": ["One", "1"]
+}
+-- Answer metadata end
+10
+
+How many humps has a bactrian camel?
+Two
+10
+
+How many hundred rooms does Buckingham palace have?
+Six
+10
+
+How many hurdles are there in a 400 metres hurdle race?
+Ten
+10
+
+How many hurdles are there in a women's hurdle sprint?
+Ten
+10
+
+How many hydrogen atoms would fit across a full stop?
+1,000,000
+10
+
+How many ice ages have there been in the last 150,000 years?
+Two
+10
+
+How many icons are there on the tool bar in mirc v5.02?
+22
+10
+
+How many inches are there in a foot?
+Twelve
+10
+
+How many inches in a cubit?
+Eighteen
+10
+
+How many inches thick is a hockey puck?
+1
+10
+
+How many individual bets make up a Yankee?
+Eleven
+10
+
+How many innings are there in a regulation softball game?
+Seven
+10
+
+How many innings must a starting pitcher pitch to get a victory?
+Five
+10
+
+How many instruments accompany someone singing 'a cappela'?
+Zero
+10
+
+How many islands make up hawaii?
+Twenty
+10
+
+How many Israeli athletes were killed at the Munich Olympics?
+Eleven
+10
+
+How many Israeli commandos died in the Entebbe raid?
+One
+10
+
+How many items are there in 1 gross?
+144
+10
+
+How many items constitute a baker's dozen?
+13
+10
+
+How many Jackson brothers are there?
+Six
+10
+
+How many jews were saved on schindler's list?
+1,100
+10
+
+How many JR's were there in Dallas?
+Three
+10
+
+How many just men were there?
+Four
+10
+
+How many karats is pure, unalloyed gold?
+24
+10
+
+How many keys is there on a standard keyboard?
+104
+10
+
+How many kilograms are there in a metric ton?
+1,000
+10
+
+How many King Charles' have there been in England?
+Two
+10
+
+How many King Stephens have ruled England?
+One
+10
+
+How many labours did Hercules have to perform?
+Twelve
+10
+
+How many labours did hercules perform?
+Twelve
+10
+
+How many land miles are there in a league?
+Three
+10
+
+How many landing weels does a Concorde have?
+Ten
+10
+
+How many lanes are there in an olympic swimming pool?
+Eight
+10
+
+How many laps are there in a speedway race?
+Four
+10
+
+How many laps does a speedway racetrack have?
+Four
+10
+
+How many laps does it take to complete the Indianapolis 500?
+200
+10
+
+How many laps make up the indianapolis 500?
+200
+10
+
+How many large holes are in your head?
+Seven
+10
+
+How many large holes are there in your head?
+7
+10
+
+How many lashes did jesus receive?
+Thirty nine
+10
+
+How many layers are inside the chocolate of a snickers bar?
+Two
+10
+
+How many layers of skin cover the epidermis?
+None
+10
+
+How many layers of tobacco are in a homemade cigar?
+Three
+10
+
+How many layers of tobacco are there in a handmade cigar?
+Three
+10
+
+How many legionaires were there in a century?
+Eighty
+10
+
+How many legs do 'decapods' have?
+Ten
+10
+
+How many legs do crabs, lobsters & shrimp each have?
+Ten
+10
+
+How many legs do creatures of the arachnid family have?
+Eight
+10
+
+How many legs do scorpions run about on?
+Eight
+10
+
+How many legs does a crab have?
+Ten
+10
+
+How many legs does a ladybird have?
+Six
+10
+
+How many legs does a lobster have?
+Ten
+10
+
+How many legs does a millipede have on each of its body segments?
+Four
+10
+
+How many legs does a millipede have on each segment of its body?
+Four
+10
+
+How many legs does a spider have?
+Eight
+10
+
+How many legs does a tripod have?
+Three
+10
+
+How many legs does an arachnid have?
+Eight
+10
+
+How many legs does an elephant have?
+Four
+10
+
+How many legs does an oyster catcher have?
+Two
+10
+
+How many legs has a woodlouse?
+Fourteen
+10
+
+How many letters (maximum) can a thoroughbred horse can have in its name?
+Fourteen
+10
+
+How many letters are there in the English alphabet?
+26
+10
+
+How many letters are there in the french alphabet?
+Twenty five
+10
+
+How many letters are used for roman numerals?
+Seven
+10
+
+How many letters in the roman alphabet?
+Twenty six
+10
+
+How many limbs does a squid have?
+Ten
+10
+
+How many lines are in a sonnet?
+Fourteen
+10
+
+How many lines are there in a limerick?
+-- Answer metadata begin
+{
+    "answers": ["5", "five"]
+}
+-- Answer metadata end
+10
+
+How many lines are there in a sonnet?
+Fourteen
+10
+
+How many lines does a sonnet have?
+Fourteen
+10
+
+How many lines has a British TV transmission?
+Six hundred and twenty five
+10
+
+How many lines has a limerick?
+Five
+10
+
+How many lines in a sonnet?
+Fourteen
+10
+
+How many lions are there on the queens coat of arms?
+Eight or nine
+10
+
+How many litres are there in a cubic metre?
+1,000
+10
+
+How many litres of water vapour can be lost in a large tree in an hour by transpiration?
+Three hundred
+10
+
+How many litters can have a mouse in a year?
+Up to ten
+10
+
+How many lives did herb philbrick lead?
+Three
+10
+
+How many lives is a cat said to have?
+Nine
+10
+
+How many loaves is in a baker's dozen?
+Thirteen
+10
+
+How many loaves of bread are there in a baker's dozen?
+Thirteen
+10
+
+How many locks are there on the Suez Canal?
+Zero
+10
+
+How many logarithmic scales are there on a slide rule?
+Two
+10
+
+How many lords a leaping are there in the carol twelve days of christmas?
+Ten
+10
+
+How many main gods are there in Hinduism?
+Three
+10
+
+How many majic bullets were there in Webers opera Der Freischutz?
+Seven
+10
+
+How many masts does a ketch have?
+Two
+10
+
+How many matches are there in a standard book of matches?
+20
+10
+
+How many medals did the USSR win at the 1984 Olympics?
+None
+10
+
+How many member states are there in the United Arab Emirates?
+Seven
+10
+
+How many members were in the group bread?
+Three
+10
+
+How many men have walked on the moon?
+Twelve
+10
+
+How many men were on a dead mans chest?
+Fifteen
+10
+
+How many men who signed the declaration of independence in 1776 later became us presidents (one word)?
+2
+10
+
+How many men who signed the Declaration of Independence in 1776 later became US presidents?
+Two
+10
+
+How many metal rings are there within the numbers of a dart board?
+Six
+10
+
+How many metres are there in half a kilometre?
+500
+10
+
+How many metres can an Olympic swimmer swim without turning?
+Fifty
+10
+
+How many Michelin star restaurants does London have?
+Thirty one
+10
+
+How many miles are in a league?
+3
+10
+
+How many miles are there in a league?
+Three
+10
+
+How many miles can a Pershing missile travel?
+400
+10
+
+How many miles comprise one kiloparsec?
+19069779456000000 miles
+10
+
+How many miles is 1 kilometer (To three decimal places)?
+0.621
+10
+
+How many miles long is the Kentucky derby?
+1.25
+10
+
+How many miles long is the Nile river?
+4,145 miles
+10
+
+How many miles of passenger railway track has Kuwait?
+Zero
+10
+
+How many miles of telephone wire a strung across the U.S?
+1,525,000,000
+10
+
+How many milk teeth do three-year-olds normally have?
+Twenty
+10
+
+How many millimetres are there in a kilometre?
+1,000,000
+10
+
+How many million cells does the human skin consist of?
+Nineteen
+10
+
+How many million kilometres from the Sun is Saturn?
+1427
+10
+
+How many minor league homeruns did Babe Ruth hit?
+1
+10
+
+How many minutes are in a day?
+1440
+10
+
+How many minutes are in a week?
+10080
+10
+
+How many minutes are there in a day?
+1440
+10
+
+How many minutes does it take for sunlight to reach earth?
+8
+10
+
+How many minutes does it take the typical person to fall asleep?
+Seven
+10
+
+How many minutes each half of a professional game of Football?
+45
+10
+
+How many minutes is each period of hockey?
+Twenty minutes
+10
+
+How many minutes were missing on the infamous Watergate tape?
+Eighteen and a half
+10
+
+How many mixtapes did funkmaster flex released?
+4
+10
+
+How many months are there in a year?
+Twelve
+10
+
+How many months do baby opossums live in the mothers pouch before climbing out & riding on her back?
+Three
+10
+
+How many months have 28 days?
+All
+10
+
+How many months have 30 days?
+Four
+10
+
+How many months have an Ides?
+Twelve
+10
+
+How many moons does Jupiter have?
+Sixteen
+10
+
+How many moons does the planet Uranus have?
+Five
+10
+
+How many mountain peaks over 10,000 ft soar over new zealand's south island?
+Seventeen
+10
+
+How many movies has Shaquille O'neal been in?
+3
+10
+
+How many muscles are in a human?
+639
+10
+
+How many muscles are required to frown?
+34 
+10
+
+How many muscles are required to smile?
+13 
+10
+
+How many musicians are there in a nonet?
+Nine
+10
+
+How many nail holes are there in a standard horseshoe?
+Eight
+10
+
+How many names did the first telephone book ever issued contain?
+Fifty50
+10
+
+How many names were in the first ever telephone book?
+Fifty
+10
+
+How many national parks does Scotland have?
+None
+10
+
+How many nations participated in the first modern olympiad?
+Thirteen
+10
+
+How many nautical miles are there in one degree longitude at the equator?
+Sixty
+10
+
+How many nautical miles are there in one degree of longitude at the equator?
+Sixty
+10
+
+How many neck bones has a giraffe?
+Seven
+10
+
+How many NHL games are there a year?
+82
+10
+
+How many nickels are there in 2.25 dollars?
+Forty five
+10
+
+How many nickles are there in $2.25?
+45
+10
+
+How many nightmare on elm street movies were made in the 80's?
+5 
+10
+
+How many nights are there in the Arabian Nights?
+1,001
+10
+
+How many no 1 hit singles did the who enjoy in the uk?
+Zero
+10
+
+How many noble gases are there?
+6
+10
+
+How many Noble Truths are there in Buddhism?
+Four
+10
+
+How many noggins are there in a print?
+Four
+10
+
+How many North American countries are south of the equator?
+Zero
+10
+
+How many nose jobs has Michael Jackson had, as of 1991, according to the book Michael Jackson- The Magic and the Madness?
+6
+10
+
+How many novels did Anthony Trollope write?
+47
+10
+
+How many nuber 1 hits did elvis have?
+17
+10
+
+How many numbered coloured balls are there in pool?
+Fifteen
+10
+
+How many numbers are on a telephone dial?
+Ten
+10
+
+How many numbers are on the spinner in 'the game of life'?
+Ten
+10
+
+How many numbers are there on a keno card?
+Eighty
+10
+
+How many oars did a slave row with on a galley?
+One
+10
+
+How many oceans are named on a 'risk' game board?
+4
+10
+
+How many of each species did moses take onto the ark with him?
+None
+10
+
+How many of every four Americans say that they believe in astrology?
+1
+10
+
+How many of every ten Ford Explorer owners have never driven off-road?
+Nine
+10
+
+How many of every ten Japanese smokers were male in 1986?
+Nine
+10
+
+How many of his wives did Henry VIII have beheaded?
+Two
+10
+
+How many of Queen Anne's seventeen children survived?
+None
+10
+
+How many of the great lakes border Michigan?
+Four
+10
+
+How many of the islands of hawaii are inhabited?
+Eight
+10
+
+How many of the nine major planets are named after Gods?
+Eight
+10
+
+How many of the Tolpuddle Martyr's were executed?
+None
+10
+
+How many of the Tolpuddle Martyrs were executed?
+Zero
+10
+
+How many of the u.s states have similar names (like Virginia and West Virginia)?
+Six
+10
+
+How many of the United States don't border the main land mass?
+Two
+10
+
+How many official languages does Switzerland have?
+Four
+10
+
+How many official languages does Switzerland recognise?
+Four
+10
+
+How many officials are on the ice during a NHL game?
+3
+10
+
+How many oil glands does the human skin have?
+90
+10
+
+How many old pennies in a pound?
+Two hundred and forty
+10
+
+How many olympic games have been cancelled in modern times because of war?
+Three
+10
+
+How many Olympic Games were cancelled because of World War II?
+Four
+10
+
+How many olypmic medals has mark spitz won?
+Nine
+10
+
+How many one-eyed face cards are there in a standard deck?
+3
+10
+
+How many or every 10 lawyers in the world were practicing in the US in 1992?
+Seven
+10
+
+How many original seasons of Gilligan's Island were TV viewers subjected to?
+3
+10
+
+How many Oscars did actor Errol Flynn win?
+Zero
+10
+
+How many Oscars did actress Greta Garbo win?
+Zero
+10
+
+How many oscars did Walt Disney collect between 1931 and 1969?
+Thirty five
+10
+
+How many ounces in a cup?
+Eight
+10
+
+How many ounces of orange juice contains the minimum daily requirement for vitamin c?
+Six ounces
+10
+
+How many paintings did van gogh sell during his life?
+1
+10
+
+How many pairs of chromosomes do humans havetwenty three?
+23
+10
+
+How many pairs of chromosomes does a normal human being have?
+23
+10
+
+How many pairs of hands did monica dickens attain success with?
+One
+10
+
+How many pairs of jaws does a crab have?
+Six
+10
+
+How many pairs of ribs are there in a male skeleton?
+Twelve
+10
+
+How many panels on a Football ball?
+Thirty two
+10
+
+How many parts form something described as duple?
+Two
+10
+
+How many passenger terminals are there currently at Heathrow (2002)?
+Four
+10
+
+How many pawns does a chess player start with?
+Eight
+10
+
+How many pawns does each player have at the start of a chess game?
+-- Answer metadata begin
+{
+    "answers": ["Eight", "8"]
+}
+-- Answer metadata end
+10
+
+How many peas grace the average pod?
+Eight
+10
+
+How many pecks are there in a bushel?
+Four
+10
+
+How many pedals does a unicycle have?
+Two
+10
+
+How many pencils are there in a dozen?
+Twelve
+10
+
+How many pennies in an old English pound?
+240
+10
+
+How many people appear in da vinci's the last supper?
+Thirteen
+10
+
+How many people are there on a volleyball team?
+Six
+10
+
+How many people attended the last supper?
+Thirteen
+10
+
+How many people did andrew cunanan kill before killing gianni versace?
+Four
+10
+
+How many people died at 'woodstock'?
+One
+10
+
+How many people go to Major League baseball each year?
+56,000,000
+10
+
+How many people live permanently in the Antarctic?
+Zero
+10
+
+How many people on average are killed by lightning in Britain every year?
+Twelve
+10
+
+How many people to the nearest thousand does heathrow employ?
+Forty five thousand
+10
+
+How many people were aboard Noah's Ark during the flood?
+Eight
+10
+
+How many percent of our brains do we use?
+Ten percent
+10
+
+How many phalanges are there in a normal human hand?
+Fourteen
+10
+
+How many phalanges in a human hand?
+Fourteen
+10
+
+How many picture cards are there in a standard pack of playing cards?
+Twelve
+10
+
+How many pieces are on the board at the start of a game of backgammon?
+Thirty
+10
+
+How many pieces of mail are delivered each year in the U.S?
+166,875,000,000
+10
+
+How many pieces of stone were the Ten Commandments written on?
+Two
+10
+
+How many pigs' houses does the wolf huff,puff & blow down?
+Two
+10
+
+How many pins are used in skittles?
+9
+10
+
+How many pints are there in a gallon?
+8
+10
+
+How many pints of blood in the average human body?
+Twelve
+10
+
+How many pips are there in the BBC's radio time signal?
+Six
+10
+
+How many players are in a water polo team?
+Seven
+10
+
+How many players are on a pitch during a footy game?
+22
+10
+
+How many players are on the field during a cricket match?
+22
+10
+
+How many players are there in a baseball team?
+Nine
+10
+
+How many players are there in a cricket team?
+Eleven
+10
+
+How many players are there in a game of chess?
+Two
+10
+
+How many players are there in a men's lacrosse team?
+Ten
+10
+
+How many players are there in a Rugby League side?
+Thirteen
+10
+
+How many players are there in a tug of war team?
+Eight
+10
+
+How many players are there in a volleyball team?
+Six
+10
+
+How many players are there in a water polo team?
+Seven
+10
+
+How many players are there in an Australian rules football team?
+18
+10
+
+How many players are there in an average symphony orchestra?
+Ninety
+10
+
+How many players are there in the average symphony orchestra?
+Ninety
+10
+
+How many players are there on a basketball team?
+Five
+10
+
+How many players in a water polo team?
+Seven
+10
+
+How many players in solo whist?
+Four
+10
+
+How many players make up a water polo team?
+Seven
+10
+
+How many players on a field hockey team?
+Eleven
+10
+
+How many players on a Football team?
+Eleven
+10
+
+How many players play in a volleyball team?
+Six
+10
+
+How many players should be in the pool at any one time during an Olympic water polo match?
+Fourteen
+10
+
+How many players usually play the card game 'patience'?
+One
+10
+
+How many playing points grace a backgammon board?
+24
+10
+
+How many pockets are there on a snooker table?
+Six
+10
+
+How many pockets are there on a true billiard table?
+None
+10
+
+How many pockets does a snooker table have?
+Six
+10
+
+How many points are awarded to the winning driver of a F1 grand prix race?
+Ten
+10
+
+How many points are awarded to the winning driver of a formula 1 grand prix race?
+Ten
+10
+
+How many points are there in a perfect cribbage hand?
+29
+10
+
+How many points are there on a Maltese cross?
+Eight
+10
+
+How many points are there on a star in a Chinese chequers board?
+Six
+10
+
+How many points are there on a traditional ship's compass?
+32
+10
+
+How many points are there on the Statue of Liberty's crown?
+Seven
+10
+
+How many points does a backgammon board have?
+Twenty four
+10
+
+How many points does a cannon score in billiards?
+Two
+10
+
+How many points does it take to win a Cribbage game?
+121
+10
+
+How many points is a black ball worth in snooker?
+Seven
+10
+
+How many points is a blue ball worth in snooker?
+Five
+10
+
+How many points is a brown ball worth in snooker?
+Four
+10
+
+How many points is a green ball worth in snooker?
+Three
+10
+
+How many points is a pink ball worth in snooker?
+Six
+10
+
+How many points is a red ball worth in snooker?
+One
+10
+
+How many points is a yellow ball worth in snooker?
+Two
+10
+
+How many points is the green ball worth in snooker?
+Three
+10
+
+How many points is the outer bulls-eye worth in darts?
+25
+10
+
+How many points make a perfect game in tenpin bowling?
+Three hundred
+10
+
+How many points make up a perfect fivepin bowling score?
+450
+10
+
+How many points on a compass?
+32
+10
+
+How many pole positions did ayrton senna score?
+Sixty five
+10
+
+How many possible opening moves does white have at the start of a game of chess?
+Twenty
+10
+
+How many pounds are there in a stone?
+Fourteen
+10
+
+How many pounds does the Olympic hammer weigh?
+Sixteen
+10
+
+How many pounds of pesticides are used annually on lawns in the U S?
+67 million
+10
+
+How many pounds of plutonium are needed to make an atomic bomb?
+Fifteen
+10
+
+How many pounds of space dust and other space debris fall on the Earth everyday?
+2,000
+10
+
+How many predecimal pennies were there in a shilling?
+Twelve
+10
+
+How many predidents have been assassinated while in office?
+Four
+10
+
+How many presidential likenesses are carved in Mount Rushmore?
+Four
+10
+
+How many presidents of the usa have died in office?
+Eight
+10
+
+How many provinces are in pakistan?
+Four
+10
+
+How many queen bees reign in a hive?
+One
+10
+
+How many queens in a standard deck of cards hold flowers?
+Four
+10
+
+How many queens named elizabeth have ruled over England?
+2
+10
+
+How many questions must be answered correctly to win the jackpot on who wants to be a millionaire?
+Fifteen
+10
+
+How many railway stations are there on a Monopoly board?
+Four
+10
+
+How many red balls are used in snooker?
+Fifteen
+10
+
+How many red blood cells does an average human have?
+20 trillion
+10
+
+How many red stripes are there on the national flag of the U.S.A?
+Seven
+10
+
+How many red stripes are there on the US flag?
+Seven
+10
+
+How many reindeer pull santa's sleigh?
+Eight
+10
+
+How many representatives (us congress house of representatives) does the state of alabama have?
+7
+10
+
+How many rhode island men saw service during the civil war?
+24,000
+10
+
+How many ribs does a human have?
+24
+10
+
+How many ringling brothers were there?
+Five
+10
+
+How many rings are on a five-zone archery target?
+Four
+10
+
+How many rings are there in the olympic symbol?
+Five
+10
+
+How many rings are there on a five zone archery target?
+Four
+10
+
+How many rings are there on a five-zone archery target?
+4
+10
+
+How many rings does the Phantom wear?
+Two
+10
+
+How many rings make up the olympic symbol?
+Five
+10
+
+How many rivers are there in Saudi Arabia?
+Zero
+10
+
+How many Rocky movies were made by 1990?
+5
+10
+
+How many rooms are in buckingham castle?
+602 
+10
+
+How many rooms are there in buckingham palace?
+Six hundred and two
+10
+
+How many rooms are there on a Cluedo game board?
+Nine
+10
+
+How many rounds are there in an olympic boxing match?
+Three
+10
+
+How many rounds did George Chuvalo go against Cassius Clay in 1966?
+Fifteen
+10
+
+How many rows are kernels in an average ear of corn arranged in?
+Sixteen
+10
+
+How many rows of sprocket holes are there on a 36 exposure roll of Fuji 200 ASA film?
+Two
+10
+
+How many rows of whiskers does a cat have?
+Four
+10
+
+How many rules were in the first recorded code of law, established by Hammurabi?
+282
+10
+
+How many runs are scored in cricket if the ball is hit over the boundary without bouncing?
+Six
+10
+
+How many runs did the blue jays score in their 1st regular season game?
+Nine
+10
+
+How many Russians have landed on the moon?
+Zero
+10
+
+How many russians have landed on the surface of the moon?
+Zero
+10
+
+How many sacraments are there in the roman catholic church?
+Seven
+10
+
+How many seams are there on an American football?
+Four
+10
+
+How many seconds are in a day?
+86400
+10
+
+How many seconds are in a week?
+604,800
+10
+
+How many seconds comprise a day?
+86,400
+10
+
+How many seconds in quarter of an hour?
+900
+10
+
+How many seconds usually elapsed before the tape self destructed on mission impossible?
+Five
+10
+
+How many segments for the number 8 on a digital clock?
+Seven
+10
+
+How many segments form the number 8 on a digital clock?
+Seven
+10
+
+How many semihemidemisemiquavers are in a breve?
+Two hundred and fifty six
+10
+
+How many semihemidemisemiquavers are there in a breve?
+256
+10
+
+How many senators comprise the US Senate?
+100
+10
+
+How many senators does the state of Idaho have?
+2
+10
+
+How many shilling are there in a guinea?
+Twenty one
+10
+
+How many siblings has Celine Dion?
+Thirteen
+10
+
+How many side does a snowflake have?
+6
+10
+
+How many sides are on a home-plate?
+Five
+10
+
+How many sides are there on a Pentagon?
+Five
+10
+
+How many sides does a 50p coin have?
+Seven
+10
+
+How many sides does a cube have?
+-- Answer metadata begin
+{
+    "answers": ["6", "six"]
+}
+-- Answer metadata end
+10
+
+How many sides does a cylinder have?
+3
+10
+
+How many sides does a decogon have?
+Ten
+10
+
+How many sides does a dodecagon have?
+Twelve
+10
+
+How many sides does a dodecahedron have?
+Twelve
+10
+
+How many sides does a heptagon have?
+Seven
+10
+
+How many sides does a hexagon have?
+Six
+10
+
+How many sides does a nonagon have?
+Nine
+10
+
+How many sides does a octagon have?
+Eight
+10
+
+How many sides does a pentagon have?
+Five
+10
+
+How many sides does a rhomboid have?
+Four
+10
+
+How many sides does a snowflake have?
+Six
+10
+
+How many signs in the Zodiac?
+Twelve
+10
+
+How many singles titles did Martina Navratilova pick up at Wimbledon?
+Nine
+10
+
+How many sleds may each country enter in the four man Olympic bobsled event?
+Two
+10
+
+How many solutions are there to a quartic equation?
+Four
+10
+
+How many sons did john lennon have?
+Two
+10
+
+How many South American countries have Portuguese as their official language?
+One
+10
+
+How many spaces are there on a Monopoly board?
+Forty
+10
+
+How many spaces are there on a Scrabble board?
+225
+10
+
+How many spaces are there on a Scrabble Crossword Game board?
+225
+10
+
+How many species of frogs are there in the UK?
+Three
+10
+
+How many spectral colors are in a rainbow?
+Twenty seven
+10
+
+How many spectral colors are there in a rainbow?
+27
+10
+
+How many spikes do the shoes of a hammer thrower have?
+None
+10
+
+How many spokes are in the crown of the statue of liberty?
+Seven
+10
+
+How many spokes does an umbrella have?
+Eight
+10
+
+How many spots are on a dice?
+Twenty one
+10
+
+How many spots are there on one dice?
+Twenty one
+10
+
+How many square miles, to the nearest mile, contain Gibraltar?
+Two
+10
+
+How many squares are on a checkerboard?
+64
+10
+
+How many squares are on a chessboard?
+Sixty four
+10
+
+How many squares are on a Shogi (Japanese chess) board?
+Eighty one81
+10
+
+How many squares are there along one side of a Scrabble board?
+Fifteen
+10
+
+How many squares are there on a draughts board?
+Sixty four
+10
+
+How many squares are there on a noughts and crosses grid?
+One
+10
+
+How many squares are there on a Snakes and Ladders board?
+100
+10
+
+How many squares are there on one side of a Rubiks cube?
+Nine
+10
+
+How many squares does a rubik's revenge have on each side?
+Sixteen
+10
+
+How many squares on shogi (Japanese chess) board?
+Eighty one
+10
+
+How many stages has a Polaris missile?
+Two
+10
+
+How many standard bottles of wine are there in a Jereboam?
+Four
+10
+
+How many stars are on the paramount film studio logo?
+Twenty two
+10
+
+How many stars are there in the Big Dipper?
+Seven
+10
+
+How many stars are there in the Paramount movie logo?
+22
+10
+
+How many stars are there on the U S flag?
+Fifty
+10
+
+How many stars does an American general of the army wear?
+Five
+10
+
+How many stars make up Orion's belt?
+Three
+10
+
+How many stars on the national flag of china?
+Five
+10
+
+How many stars were on the union flag in the civil war?
+35
+10
+
+How many states (including internal territories) does Australia contain?
+Eight
+10
+
+How many states border the Atlantic Ocean?
+Fourteen
+10
+
+How many states existed when George Washington took office?
+Thirteen
+10
+
+How many states joined the union in the 19th century?
+29
+10
+
+How many states of the United States of America have a Pacific coast?
+Five
+10
+
+How many States were there in the Confederate States of America?
+Eleven
+10
+
+How many states were there in the original United States of America?
+Thirteen
+10
+
+How many steps are there in John Buchan's novel?
+39
+10
+
+How many steps are there to the second storey flat at 221b baker street?
+Seventeen
+10
+
+How many steps are there to the second-story flat at 221b baker street?
+17
+10
+
+How many stitches are on a regulation baseball?
+One hundred and eight
+10
+
+How many stomachs does a camel have?
+Three
+10
+
+How many stomachs does a cow have?
+Two
+10
+
+How many stones did David carry into battle with Goliath?
+Five
+10
+
+How many storeys are there in a bungalow?
+One
+10
+
+How many stories did enid blyton publish in 1959?
+Fifty nine
+10
+
+How many strikes are in a 300 game?
+Twelve
+10
+
+How many strings are there on a Spanish Guitar?
+Six
+10
+
+How many strings did howdy doody have?
+Seven
+10
+
+How many stripes are on the US flag?
+13
+10
+
+How many stripes are there on Israels flag?
+Two
+10
+
+How many strokes are tournament golfers penalised for slow play?
+Two
+10
+
+How many strokes are tournament golfers penalized for slow play?
+Two
+10
+
+How many strokes does a golfer take on a hole if he scores an ace?
+One
+10
+
+How many strokes make up a quadruple bogey on a par five gold hole?
+Nine
+10
+
+How many stroks make up a quadruple bogey on a par five golf hole?
+Nine
+10
+
+How many stumps are in a cricket wicket?
+3
+10
+
+How many substitutes is a football team aloowed to use during a game?
+Two
+10
+
+How many summer olympic games were cancelled because of WW II?
+Two
+10
+
+How many summer olympics were cancelled because of wwii?
+Two
+10
+
+How many surfaces does a cone have?
+Two
+10
+
+How many surfaces does a sphere have?
+One
+10
+
+How many surfaces has a cube?
+Six
+10
+
+How many sweat glands does the human skin have?
+625
+10
+
+How many tales did the brothers grimm compile?
+Two hundred and eleven
+10
+
+How many teams are there in the NHL?
+Thirty
+10
+
+How many teams compete in the world cup 90 in Football?
+24
+10
+
+How many tears did Question Mark & the Mysterians shed?
+96
+10
+
+How many teaspoons are in one tablespoon?
+Three
+10
+
+How many teaspoons make up a tablespoon?
+Four
+10
+
+How many teats does a female hyena have?
+Two
+10
+
+How many teeth constitute a set of adult teeth?
+Thirty two
+10
+
+How many teeth does a mosquito have?
+Forty seven
+10
+
+How many teeth does a walrus have?
+Eighteen
+10
+
+How many tennis tournaments make up the Grand Slam?
+4
+10
+
+How many tenths of the earth's surface lie under water?
+Seven
+10
+
+How many territories in Australia?
+Two
+10
+
+How many things make a dozen?
+12
+10
+
+How many thousand million tonnes of carbon dioxide are formed each year by the combustion of fossil fuels?
+Sixteen
+10
+
+How many thousand sensory glands does the human skin have?
+Nineteen
+10
+
+How many throwing events are there in a decathlon?
+Three
+10
+
+How many tiles are there in a domino set?
+Twenty eight
+10
+
+How many tiles are there in a Scrabble game?
+100
+10
+
+How many tiles did the Space Shuttle Columbia lose on its second flight?
+0
+10
+
+How many time a day to cows poop (on the average)?
+16
+10
+
+How many time zones are there in New Zealand?
+One
+10
+
+How many time zones are there in the world?
+24twenty four
+10
+
+How many time zones are there on the face of the earth?
+24
+10
+
+How many times a day does a typical person go to the bathroom?
+6
+10
+
+How many times a day does the typical person go to the bathroom?
+6
+10
+
+How many times a year is a bimonthly periodical published?
+Six
+10
+
+How many times can a piece of paper be folded?
+Eight
+10
+
+How many times can a worker bee sting?
+Once
+10
+
+How many times can an attacking rugby league team be tackled before a change over?
+Six
+10
+
+How many times did bill clinton say the word 'sorry' when addressing the nation on the monica lewinsky affair?
+Zero
+10
+
+How many times did bing crosby and bob hope hit the road in films?
+Seven
+10
+
+How many times did Bjorn Borg win the Wimbledon Mens singles?
+Five
+10
+
+How many times did Fred Archer win the English Derby?
+Five
+10
+
+How many times did Jack Nicklaus win the U S open?
+Four
+10
+
+How many times did Wallis Warfield marry?
+Three
+10
+
+How many times does the average American move in a lifetime?
+Twelve 
+10
+
+How many times does the average computer user blink per minute?
+Seven
+10
+
+How many times has cliff richard represented britain at the eurovision song contest?
+Two
+10
+
+How many times has Olympics been cancelled due to war in modern times?
+Three
+10
+
+How many times has the character Ross from the show friends been married?
+Twice
+10
+
+How many times higher than Ayres rock is Mont Blanc?
+Fifteen
+10
+
+How many times is a roman numeral's value increased if it has a line over it?
+1,000
+10
+
+How many times is the capacity of a pipe increased if the diameter is doubled?
+Four
+10
+
+How many times larger than the UK is Spain?
+Two
+10
+
+How many times thicker than water is blood?
+Six
+10
+
+How many times was Joe diMaggio named most valuable player?
+Three
+10
+
+How many times was johnny carson married?
+Four
+10
+
+How many times was julius erving named mvp in an aba all star game?
+None
+10
+
+How many times was marilyn monroe married?
+3
+10
+
+How many times was Moses given the ten commandments?
+Two
+10
+
+How many times would Japan fit into an area the size of the U.S?
+25.15
+10
+
+How many times would the earth fit into a space the size of the sun?
+1298000
+10
+
+How many tines are in a standard dinner fork?
+Four
+10
+
+How many tines are there on a standard dinner fork?
+Four
+10
+
+How many toe pads does a cat have on each of its back paws?
+Four
+10
+
+How many toes do most birds have?
+Four
+10
+
+How many toes does a cat have on its front paw?
+Five
+10
+
+How many toes does the rhea have?
+Three
+10
+
+How many tons of gem diamonds are mined each year?
+Two
+10
+
+How many tons of paper are used each year in the U.S?
+85,000,000
+10
+
+How many top front teeth do cows have?
+Zero
+10
+
+How many top ten hits did dave clark have in the 60's?
+Eight
+10
+
+How many towns is Britain are called Newport?
+Eleven
+10
+
+How many trees does it take to make newsprint for the average sunday New York Times?
+63000
+10
+
+How many tricks must be won to make game in 'No trumps' in Contract Bridge?
+Nine
+10
+
+How many tricks must you take in 500 if you call a slam?
+Ten
+10
+
+How many triple word score spaces are there on a Scrabble board?
+Eight
+10
+
+How many trouser legs are there in a standard Japanese kimono?
+None
+10
+
+How many tunes blared from the 1948 wurlitzer model 1100 jukebox?
+Twenty four
+10
+
+How many tunnels under the mersey link liverpool to the wirral?
+Two
+10
+
+How many U's are there in Albuquerque?
+3
+10
+
+How many umbrellas are lost on the London Underground each year?
+80,000
+10
+
+How many US presidents were assassinated during Queen Victoria's reign?
+Two
+10
+
+How many US states border Lake Erie?
+4
+10
+
+How many us states share a border with Canada?
+13
+10
+
+How many varieties of penguins are there (outside of zoos) in the northern hemisphere?
+Zero
+10
+
+How many varieties of twins are there?
+Five
+10
+
+How many VCs were awarded in the Falklands War?
+Two
+10
+
+How many vegetables are there in V8 juice?
+Eight
+10
+
+How many ventricles are there in the human heart?
+Two
+10
+
+How many verses are there in the Greek national anthem?
+158
+10
+
+How many versions of the mona lisa are painted beneath the original?
+Three
+10
+
+How many victories did rocky marciano score in his professional career?
+49
+10
+
+How many Vikings landed on Mars in 1976?
+Two
+10
+
+How many voyages did Christopher Columbus make to America?
+Four
+10
+
+How many voyages did sinbad make?
+Seven
+10
+
+How many voyages had the Titanic made when it hit an iceberg and sank in 1912?
+None, it was her maiden voyage
+10
+
+How many watches are there in the course of a sailor's day (24 hours)?
+Six
+10
+
+How many ways are there to make change for a dollar?
+Two hundred and ninety three
+10
+
+How many ways, according to Paul simon can you leave your lover?
+Fifty
+10
+
+How many weeks did love is all around by wet wet wet spend at no 1?
+15 weeks
+10
+
+How many were in attendance at the last supper?
+Thirteen
+10
+
+How many were there in the Thompson Twins?
+Three
+10
+
+How many wheels are there on a tandem bicycle?
+Two
+10
+
+How many wheels did a gladiator's chariot have?
+Two
+10
+
+How many wheels does a skateboard have?
+Four
+10
+
+How many white dots are in a pacman arcade game?
+Two hundred and forty
+10
+
+How many white keys are there on a standard piano?
+42
+10
+
+How many white squares are there on a chessboard?
+32
+10
+
+How many white stripes are there on the us flag?
+Six
+10
+
+How many Wimbledon titles does Billie-Jean King possess?
+Twenty
+10
+
+How many windows can be seen in the statue of liberty's crown?
+25
+10
+
+How many wings does a bee have?
+Four
+10
+
+How many wings does a flea have?
+None
+10
+
+How many winks are there in a tiddlywinks set?
+Twenty
+10
+
+How many wisdom teeth does an adult have?
+Four
+10
+
+How many witches were burned at the stake in salem, massachusetts?
+Zero
+10
+
+How many wives did Henry V have?
+One
+10
+
+How many wives did Mormon leader, Brigham Young have?
+27
+10
+
+How many wives was mormon leader brigham young said to have?
+Twenty seven
+10
+
+How many women are believed to have been victims of Jack the Ripper?
+Five
+10
+
+How many women did the shark munch his way through in Jaws?
+One
+10
+
+How many wooden objects are normally in full view on a cricket field during play?
+Twelve
+10
+
+How many words were spoken in the Mel Brookes film Silent Movie?
+One
+10
+
+How many World Championship points are awarded to a winning Grand Prix driver?
+Ten
+10
+
+How many years are there in a chiliad?
+One thousand
+10
+
+How many years are there in a sesquincentury?
+One hundred and fifty
+10
+
+How many years did Alf Ramsey reign as England team manager?
+Eleven
+10
+
+How many years did Hitler predict the Third Reich would reign?
+One thousand
+10
+
+How many years did Queen Victoria reign?
+64 years
+10
+
+How many years did rip van winkle sleep?
+Twenty
+10
+
+How many years did sleeping beauty sleep?
+100
+10
+
+How many years did the average ancient Roman live?
+22
+10
+
+How many years did the experimental British Standard Time last?
+Three
+10
+
+How many years did the hundred years war last?
+116
+10
+
+How many years did the second punic war last?
+16
+10
+
+How many years did the soviet union last?
+Seventy four
+10
+
+How many years did the third and final punic war last?
+3
+10
+
+How many years do United States patents stay in effect?
+17 years
+10
+
+How many years does an annual plant live?
+One
+10
+
+How many years does it take for Saturn to orbit the Sun?
+Twenty nine
+10
+
+How many years does it take saturn to go round the sun?
+29
+10
+
+How many years elapsed between the creation of the Republic of Vietnam and Saigon falling to the communists?
+Thirty
+10
+
+How many years has castro been president of cuba?
+Forty three
+10
+
+How many years in a vicennial?
+Twenty
+10
+
+How many years is a sapphire wedding anniversary?
+45
+10
+
+How many years is an emerald wedding anniversary?
+55
+10
+
+How many years make a lustrum?
+Five
+10
+
+How many years make up a vicennial period?
+Twenty
+10
+
+How many years of bad luck come from breaking a mirror?
+Seven
+10
+
+How many years of bad luck follow breaking a mirror?
+Seven
+10
+
+How many years old are horses that run in the Derby?
+Three
+10
+
+How many years old was the telephone before one was installed on the desk of the President of the United States?
+51
+10
+
+How many years was the seige on the israeli town of azotus?
+Twenty nine
+10
+
+How many years were between the creation of the mangna carta and the American declaration of independence?
+561
+10
+
+How many zero's in a quadrillion?
+Fifteen
+10
+
+How many zeroes are there in a trillion?
+12
+10
+
+How many zeros are there in a British billion?
+Twelve
+10
+
+How many zeros follow the number 1 to form a googol?
+One hundred
+10
+
+How may different Dialects or in the Philippines?
+72
+10
+
+How much 'monopoly' money do you collect for finishing second in a beauty contest?
+Ten dollars
+10
+
+How much blood on average is contained in the human body?
+Nine pints
+10
+
+How much current can the south American electric eel produce?
+One amp
+10
+
+How much current does a south American eel put out?
+One amp
+10
+
+How much did David letterman pay to have miss ussr on his show?
+Four cartons of marlboro
+10
+
+How much did greta garbo insure her legs for?
+One million dollars
+10
+
+How much did seward pay Russia for Alaska?
+7.2 million dollars
+10
+
+How much did the first issue of playboy cost?
+Fifty cents
+10
+
+How much did the Simpsons pay to get illegally hooked up to cable?
+$50
+10
+
+How much did the u.s pay Russia for Alaska?
+Two cents per acre
+10
+
+How much do nine pennies weigh?
+One ounce
+10
+
+How much does a baby whale gain in weight every day?
+Two hundred pounds
+10
+
+How much does Park Lane cost in Monopoly?
+$450
+10
+
+How much does park place cost in monopoly?
+Four hundred fifty dollars
+10
+
+How much does the cullinan diamond weigh?
+Three thousand one hundred carats
+10
+
+How much drinking water did a scuttlebutt hold?
+A day's supply
+10
+
+How much internal memory did the early personal computer, the sinclair zx80, have?
+One kilobyte
+10
+
+How much is a dime worth?
+Ten cents
+10
+
+How much is a nickel worth?
+Five cents
+10
+
+How much is a quarter worth?
+Twenty five cents
+10
+
+How much jelly fills a proper dunkin donuts' munchkin?
+One half ounce
+10
+
+How much longer is a day on mars than a day on earth?
+Thirty minutes
+10
+
+How much memory did the early pc, the sinclair zx80 have?
+One kilobyte
+10
+
+How much money do you get for passing go in monopoly?
+200
+10
+
+How much per head did the government offer to the staff at GCHQ as a bribe to leave the union?
+One thousand pounds
+10
+
+How much playing time is there in a football game?
+Sixty minutes
+10
+
+How much snow fell in Alaska on february 7,1916?
+Seventy eight inches
+10
+
+How much was dr christian barnard offered to perform a human head transplant?
+250,000 dollars
+10
+
+How much was simple simon supposed to give the pieman?
+One penny
+10
+
+How much water would a human drink in a lifetime?
+500 million litres
+10
+
+How much were betty grable's legs insured for?
+One million dollars
+10
+
+How much would a one metre cube of platinum weigh - to the nearest ton?
+Twenty tons
+10
+
+How much would each person get if $100 was shared equally among eight people?
+$12.50
+10
+
+How often are the olympic games held?
+4 years
+10
+
+How often did babe ruth change the cabbage leaf which he wore under his cap?
+Every two innings
+10
+
+How often do chimpanzees build new sleeping nests?
+Nightly
+10
+
+How often does a sesquicentennial occur?
+Every 150 years
+10
+
+How often does February 29 occur?
+Every four years
+10
+
+How often does halley's comet become visible?
+Every 76 years
+10
+
+How often does Halleys Comet fly near to the earth?
+Every seventy five years
+10
+
+How often does the human race double in number(appx)?
+Every 35 years
+10
+
+How often does the phoenix rise from the ashes?
+Every 500 years
+10
+
+How often is a broken clock correct?
+Twice a day
+10
+
+How often is a Football's world cup competition played?
+Every four years
+10
+
+How old are oak trees before they produce acorns?
+Fifty
+10
+
+How old is a horse when it changes from a filly to a mare?
+Four
+10
+
+How old is Hans Moleman?
+31
+10
+
+How old is the oldest goldfish in the world?
+45 years
+10
+
+How old was Alanis Morisette when she recorded her first song?
+Six
+10
+
+How old was anne frank when she died?
+Fifteen
+10
+
+How old was beethoven when he died?
+57
+10
+
+How old was Billie when she had her first number 1?
+Fifteen
+10
+
+How old was bobby riggs when he took on 35 year old billie jean king?
+55
+10
+
+How old was charlie brown in 1990?
+Forty
+10
+
+How old was deputy dewey in the first scream?
+25
+10
+
+How old was george forman when he became the oldest heavyweight boxing champion?
+Forty five
+10
+
+How old was hayley mills when she made her first film tiger bay?
+Twelve
+10
+
+How old was Jack Benny when he died?
+Eighty
+10
+
+How old was Jesus when he died?
+33
+10
+
+How old was John F. Kennedy when he became president?
+Forty three43
+10
+
+How old was john f.kennedy when he became president?
+Forty three
+10
+
+How old was john schneider when he first played bo duke on the dukes of hazzard?
+18 years old
+10
+
+How old was Judy Garland when she filmed The Wizard of Oz?
+16
+10
+
+How old was judy garland when she made her show business debut?
+-- Answer metadata begin
+{
+    "answers": ["Two and a half years", "2.5 years"]
+}
+-- Answer metadata end
+10
+
+How old was juliet when she married romeo?
+13
+10
+
+How old was julius caesar when he was killed?
+Fifty eight
+10
+
+How old was karen carpenter when she died?
+Thirty two
+10
+
+How old was Lolita when Professor Humbert first fell for her?
+Twelve
+10
+
+How old was Marilyn Monroe when she died?
+Thirty six
+10
+
+How old was Mary Stuart when she became queen of Scotland?
+Six days
+10
+
+How old was michelangelo when he died?
+-- Answer metadata begin
+{
+    "answers": ["Eighty eight", "88"]
+}
+-- Answer metadata end
+10
+
+How old was Mozart when he made his first tour as a performer?
+Six
+10
+
+How old was Peggy ashcroft when she won her first Oscar?
+Seventy seven
+10
+
+How old was princess elizabeth when she married?
+Twenty one
+10
+
+How old was Robert Louis Stevenson when he died?
+44
+10
+
+How old was sarah bernhardt when she played the title role in 'romeo and juliet'?
+Seventy
+10
+
+How old was sarah when she had a child?
+Ninety
+10
+
+How old was sergei prokofiev when he wrote the opera 'the giant'?
+Seven
+10
+
+How old was shakespeare when he married anne hathaway?
+Eighteen
+10
+
+How old was she in the Beatles' song i saw her standing there?
+17
+10
+
+How old was the girl in the Beatles' song 'i saw her standing there'?
+Seventeen
+10
+
+How old was the oldest known goldfish?
+41
+10
+
+How old was the Suez Canal when it was nationalized in 1950?
+Eighty seven
+10
+
+How old was the sweet person Neil Sedaka wished Happy Birthday to in 1961?
+Sixteen
+10
+
+How old was the world's oldest man?
+One hundred and forty one
+10
+
+How old was Walt Disney when disneyland opened?
+53
+10
+
+How old would Marilyn Monroe have been in 1986 if she had lived?
+Sixty
+10
+
+How old would Otis Redding have been had he lived to the end of the 20th century?
+58
+10
+
+How one would describe Jeremiah Peabody's pills?
+Poly unsaturated quick dissolving fast acting pleasant tasting green and purple
+10
+
+How precisely is the bird CYGNUS CYGNUS better known?
+Whooper swan
+10
+
+How tall are the bearskins worn by the guards at buckingham palace?
+Twenty inches
+10
+
+How tall was Attila the Hun?
+Four foot six inches
+10
+
+How tall was napoleon?
+5'6
+10
+
+How tall was queen victoria?
+Five feet
+10
+
+How tall was the model ape in the 1933 version of 'king kong'?
+Eighteen inches
+10
+
+How tall was the world's shortest man?
+Six hundred and seventy mm
+10
+
+How tall was thumbelina?
+One inch
+10
+
+How thick is an ice hockey puck?
+One inch
+10
+
+How was Australias most infamous bush ranger?
+Ned kelly
+10
+
+How was Billie Jean Moffitt later known in the tennis world?
+Billie Jean King
+10
+
+How was Charles Lutwidge Dodson better known?
+Lewis carroll
+10
+
+How was crystal palace destroyed?
+Fire
+10
+
+How was film director Emil Anton Bundmann better known?
+Anthony Mann
+10
+
+How was hamida djandoubi executed?
+Guillotine
+10
+
+How was mark feld better known in the 1970s when he had four number one hits with his band?
+Marc bolan
+10
+
+How was robespierre executed?
+Guillotine
+10
+
+How was the 1839-42 Anglo-Chinese war better known?
+The opium war 
+10
+
+How was the church at laodicea referred to in revelation?
+Neither cold nor hot
+10
+
+How was the greek city of troy penetrated?
+Wooden horse
+10
+
+How was the mausoleum at halicarnassus destroyed?
+Earthquake
+10
+
+How was the original Jumbo killed in 1885?
+Collided with a train
+10
+
+How was the universe said to have been created?
+Big bang
+10
+
+How was the virus transmitted in the film 'outbreak'?
+Through the air
+10
+
+How was the world's largest diamond sent to England in 1905?
+Post
+10
+
+How was uther pendragon killed?
+Ambush
+10
+
+How were 'Mr Barrow' and 'Miss Parker' better known?
+Bonnie and clyde
+10
+
+How were the bodies of dead crusaders brought home for christian burial?
+Chopped up and boiled
+10
+
+How were the camels carrying abdul kassem ismael's library trained to walk?
+In alphabetical order
+10
+
+How were, Bill Oddie, Graeme Garden and Tim Brooke-Taylor better known?
+The goodies
+10
+
+How wide a target does a cricket wicket present to a bowler?
+Nine Inches
+10
+
+How would you describe reptiles' eggs?
+Leathery
+10
+
+Howdy Doody had ____ freckles
+48
+10
+
+Howdy Doody had how many freckles?
+48
+10
+
+Hrand Araklein, a ____ 's car guard, was killed when $50,000 worth of quarters crushed on him
+Brink
+10
+
+Hrand Araklein, a Brink's car guard, was killed when ____ worth of quarters crushed on him
+$50,000
+10
+
+Hudson how many points are awarded to the winning driver of a formula 1 grand prix race?
+Ten
+10
+
+Huge battle at the end of the world?
+Armageddon
+10
+
+Hugh ____ Cleaver Beaumont was an ordained minister
+Ward
+10
+
+Hugh Ward ____ Beaumont was an ordained minister
+Cleaver
+10
+
+Hugh Ward Cleaver ____ was an ordained minister
+Beaumont
+10
+
+Hugh ward cleaver beaumont was an ordained ____
+Minister
+10
+
+Hukusai and Hiroshige were famous Japanese what?
+Artists
+10
+
+Human thigh bones are stronger than?
+Concrete
+10
+
+Humanitarianism - What does the abbreviation 'UNICEF' stand for?
+United Nations Childrens' Emergency Fund
+10
+
+Humans and dolphins are the only species that have sex for?
+Pleasure
+10
+
+Humans are the only primates that do not have ____ in the palms of their hands
+Pigment
+10
+
+Humans have 46 chromozomes. How many do goldfish have?
+94
+10
+
+Humans have a bone just after the spine ends, proving that they once had ____
+Tails
+10
+
+Humans shed & regrow almost how many new skins in a lifetime?
+1,000
+10
+
+Humans shed roughly how many particles of skin every hour?
+600,000
+10
+
+Humans shed roughly how many pounds of skin a year?
+One & a half pounds
+10
+
+Hummingbirds are the only animals able to fly in what direction?
+Backwards
+10
+
+Hummingbirds can't?
+Walk
+10
+
+Humphrey bogart received his only oscar for which film?
+The african queen
+10
+
+Humphrey bogart was related to____
+Princess diana
+10
+
+Humphrey Bogart won his only oscar for his part in which film?
+The african queen
+10
+
+Hundred and nine whose official neutral name is 'the helvetic confederation'?
+Switzerland
+10
+
+Hundred and ninety five litres what toy was originally made from the bladder of an animal?
+Balloon
+10
+
+Hundred and ninety two khartoum is the capital of ____
+Sudan
+10
+
+Hundred kilometres from what do camels protect themselves with three eyelids?
+Blowing sand
+10
+
+Hundred thousand during the u.s civil war, how many union army blacks gave their lives?
+Thirty
+10
+
+Hundred when does the uterus expand 500 times its normal size?
+During pregnancy
+10
+
+Hurricane, typhoon and tornado are all types of what?
+Fighter aircraft
+10
+
+Hurt driving: what country is identified by the letter h?
+Hungary
+10
+
+Husbands and wives in India who desire children whisper their wish to the ear of a ____ cow
+Sacred
+10
+
+Hussey a hippo can open its mouth wide enough to fit a 4 foot tall ____
+Child
+10
+
+Hybrid offspring of the jackass (male ass) and the mare, much used and valued in many parts of the world as a beast of burden?
+Mule
+10
+
+Hydroelectric project in New South Wales, Australia?
+Snowy mountains scheme
+10
+
+Hyperemesis gravidarum is colloquially known as?
+Vomiting of pregnancy
+10
+
+Hypnos was the greek god of ____
+Sleep
+10
+
+I am the walrus: What record company threw out The Beatles after George Harrison sang The Sheik of Araby?
+Decca
+10
+
+I didn't know that: How many times a year does a penguin have sex?
+One
+10
+
+I didn't know that: what company is the world's largest user of silver?
+Kodak
+10
+
+I didn't know that: what country would you come up in if you dug a hole straight through the earth from buenos aires?
+China
+10
+
+I didn't know that: what did a united nations organization say consisted of 356,000 metric tons in 1978?
+All the tea in china
+10
+
+I don't like my friends.I don't like your friends either?
+Heathers
+10
+
+I want you back name the artist?
+Missy elliot
+10
+
+I what year was britains' general strike?
+1926
+10
+
+I'll Be There For You, sung by the Rembrandts, is the theme song of which American television comedy series?
+Friends
+10
+
+I'll drink to that: What's the standard of strength of distilled alcoholic liquors called?
+Proof
+10
+
+I'm getting sentimental over you was who's theme song?
+Tommy dorsey
+10
+
+I1948 ____ Newton-John (in Cambridge, England), singer, born in
+Olivia
+10
+
+I1948 Olivia ____ -John (in Cambridge, England), singer, born in
+Newton
+10
+
+I1948 Olivia Newton____ (in Cambridge, England), singer, born in
+John
+10
+
+Ian Fleming Books (author of James Bond series)?
+Thunderball
+10
+
+Ibm was founded in what year?
+1896
+10
+
+IBM was incorporated in 1911 as the Computer-Tabulating-Recording Co. with a product line that included time clocks, scales and punch card tabulators. The name was changed in ____
+1924
+10
+
+Ice cream was originally made without ____ and eggs
+Sugar
+10
+
+Ice cream was originally made without sugar and____
+Eggs
+10
+
+Iceberg, boston and bibb are types of ____
+Lettuce
+10
+
+Iceland and greenland are separated by which stretch of water?
+Denmark strait
+10
+
+Iceland is the world's oldest functioning?
+Democracy
+10
+
+Ich dien (i serve) is the motto of whom?
+Prince of wales
+10
+
+Ichabod mudd was what to captain midnight?
+Mechanic
+10
+
+Ichthyology is a study of ____
+Fish
+10
+
+Ida morgenstern was played by what actress in the sitcom rhoda?
+Nancy walker
+10
+
+Ideally, what should be the total of your cards in baccarat?
+Nine
+10
+
+Identify the film that was advertised with the following quote. 'Something almost beyond comprehension is happening to a girl on this street, in this house, and a man has been sent for as a last result'?
+The Exorcist
+10
+
+Identify the most famous American to have rudolph as a middle name?
+Gerald ford
+10
+
+Identify the only American wrestler to win medals at 3 successive olympiad?
+Bruce baumgartner
+10
+
+Idi Amin, one of the most ruthless tyrants in the world, before coming to power, served in the?
+British army
+10
+
+If ____ imported just 10% of it's rice needs- the price on the world market would increase by 80%
+China
+10
+
+If ____% of the human liver was removed, it could still function and would eventually restore itself to its original size
+80
+10
+
+If a bear lives in the northern hemisphere, the opening of the cave in which he hibernates is always on which slope?
+North
+10
+
+If a bear lives in the southern hemisphere, the opening of the cave in which he hibernates is always on which slope?
+South
+10
+
+If a chemical is 'anhydrous' what does it not contain?
+Water
+10
+
+If a dish is served 'au gratin', what does it have on it?
+Cheese
+10
+
+If a dish is served a la bretonne, with what would it be garnished?
+Haricot beans
+10
+
+If a dish is served a la chantilly, what would be its main ingredient?
+Whipped cream
+10
+
+If a family had 2 servants or less in the U.S. in 1900, census takers recorded it as ____ middle-class
+Lower
+10
+
+If a flower is described as 'stellate' what shape would it be?
+Star shaped
+10
+
+If a four is thrown on a dice, what is the sum of the four other visible faces?
+Fourteen
+10
+
+If a frog's mouth is held open for too long the frog will____
+Suffocate
+10
+
+If a man tosses a coin and gets heads three times, what are the odds of getting heads next time?
+One in two
+10
+
+If a marine animal cannot be identified, a diver should ____
+Avoid it completely
+10
+
+If a plane crashes on the border where do they bury the survivors?
+Nowhere
+10
+
+If a pope has not been elected, what color smoke is seen?
+Black
+10
+
+If a robin's egg is put in vinegar for thirty days, what colour does it become?
+Yellow
+10
+
+If a surgeon in Ancient Egypt lost a patient while performing an operation, his ____ were cut off
+Hands
+10
+
+If a surgeon in Ancient Egypt lost a patient while performing an operation, his hands were?
+Cut off
+10
+
+If a tumor is life threatening, or cancerous, it is?
+Malignant
+10
+
+If a tunnel were dug straight through the earth from new zealand, where would it come out?
+Spain
+10
+
+If a tunnel were dug straight through the earth from Spain, where would it come out?
+New zealand
+10
+
+If all the track of the London Underground were laid end to end, how far would it reach?
+253 miles
+10
+
+If all the water in the air fell at the same time what depth of rain would cover the earth?
+1 inch
+10
+
+If an American footballer talked about his 'zippers' what would he mean?
+Scars
+10
+
+If an animal has feathers, what is it?
+Bird
+10
+
+If an animal has gills, what is it?
+Fish
+10
+
+If barbie was lifesize, what would her measurements be?
+39-29-33
+10
+
+If Barbie were life-size her measurements would be 39-23-33. She would stand ____ feet, ____ inches tall and have a neck twice the length of a norma human's neck
+Seven two
+10
+
+If British mp's want to have a private session, what does one of them say when they point to the public gallery?
+I spy strangers
+10
+
+If China imported just ____ of it's rice needs- the price on the world market would increase by 80%
+10%
+10
+
+If China imported just 10% of it's ____ needs- the price on the world market would increase by 80%
+Rice
+10
+
+If China imported just 10% of it's rice needs- the price on the world market would increase by ____
+80%
+10
+
+If circumnavigating the Earth which of these is the greater distance: going east/west at the equator or north/south through the poles?
+Round the equator
+10
+
+If done perfectly, any rubix cube combination can be solved in ____ turns
+17
+10
+
+If eggs have been fried on one side only how are they said to be served?
+Sunny side up
+10
+
+If electrodes are inserted at opposite ends of a ____, & electricity is passed through, it will glow
+Pickle
+10
+
+If food has been 'devilled' how would you expect it to taste?
+Hot
+10
+
+If Frikadelles were on the menu, what would they be?
+Meatballs
+10
+
+If Harry Enfield is Wayne Slob, who is Waynetta Slob?
+Kathy burke
+10
+
+If I was standing on the Canso Causeway, what country would I be in?
+Canada
+10
+
+If in law someone is convicted of A.B.H. for what does the 'A' stand?
+Actual
+10
+
+If it were removed from the body, the small intestine would stretch to a length of how many feet?
+22
+10
+
+If its 4:00pm in Seattle Washington, what time is it in Portland Oregon?
+4:00
+10
+
+If its 4:00pm in Seattle, Washington what time is it in Portland, Oregon?
+4:00pm
+10
+
+If Mary had 13.00 dollars and that was 1/3 of the money Sue has... how much does Sue have?
+39
+10
+
+If monday's child is fair of face, what is wednesday's child?
+Full of woe
+10
+
+If monkeys eat too many un-ripe ____ their tongue and eyes will turn green
+Bananas
+10
+
+If one angle in an isosceles triangle is 100 degrees, what is each of the other two?
+Forty degrees
+10
+
+If one, two and three are cardinal, what are secord and third?
+Ordinal
+10
+
+If sand is melted with limestone and sodium carbonate what is formed?
+Glass
+10
+
+If someone from Australia is Australian what is someone from New Zealand?
+New zealand
+10
+
+If someone gets out of a difficult situation, he is said to have saved his what?
+Bacon
+10
+
+If something is galvanised with which metal is it coated?
+Zinc
+10
+
+If the Earth was smooth, the ocean would cover the entire surface to a depth of ____ feet
+12,000
+10
+
+If the groundhog sees his shadow on Feb 2, there will be how many more weeks of bad weather?
+Six
+10
+
+If the letters mfh came after your name what would it mean?
+Master of foxhounds
+10
+
+If the population of China walked past you in single file, the line would never end because of the rate of?
+Reproduction
+10
+
+If the present birth rate continues, New York City will have a black majority by the?
+End of the century
+10
+
+If the right hand page of an open book is recto, what is the left hand page?
+Verso
+10
+
+If the skin under someone's finger nails turned blue this would be the first symptom of what?
+Cyanide poisoning
+10
+
+If the spaceship Earth Ride at Epcot was a golf ball, to be the proportional size to hit it, how tall would you need to be?
+2 miles tall
+10
+
+If the sun stopped shining suddenly, it would take how many minutes for people on earth to be aware of the fact?
+Eight
+10
+
+If the tail of a coin is the reverse, what is the head?
+Obverse
+10
+
+If triangle ABC is equal to triangle XYZ, they are said to be...?
+Congruent
+10
+
+If two ships are on a collision course, what do the rules of the sea require them both to do?
+Turn right
+10
+
+If venus is the second planet from the sun, what is jupiter?
+Fifth
+10
+
+If we had the same ____ rate as in the 1900s, more than half the people in the world today would not be alive
+Mortality
+10
+
+If wishes were horses who would ride, according to the old saying?
+Beggars
+10
+
+If you 'peg out', what game are you playing?
+Cribbage
+10
+
+If you abstain from pleasure, you are practicing?
+Stoicism
+10
+
+If you add up the numbers 1-100 consecutively (1+2+3+4+5 etc) the total is ____
+5050
+10
+
+If you are a universal donor your blood group is?
+Type o
+10
+
+If you are at comiskey park what sport would you be watching?
+Baseball
+10
+
+If you are in graz...what continent are you on?
+Europe
+10
+
+If you are in the city Bandung, what country are you in?
+Indonesia
+10
+
+If you are in your birthday suit what are you wearing?
+Nothing
+10
+
+If you are Ombrophobic you fear?
+Rain
+10
+
+If you are sinisitromanual, you are?
+Lefthanded
+10
+
+If you attempted to count the stars in a galaxy at a rate of one every second it would take around ____ years to count them all
+3,000
+10
+
+If you carry out bel canto, what are you doing?
+Singing
+10
+
+If you commit uxoricide, who have you killed?
+Your wife
+10
+
+If you could remove all the space from the atoms that make up your body, you could walk through the?
+Eye of a needle
+10
+
+If you counted 24 hours a day, it would take ____ years to reach one trillion
+31,688
+10
+
+If you cut through a solid sphere, what shape will the flat area be?
+A circle
+10
+
+If you drive on a parkway, you park on a ____
+Driveway
+10
+
+If you earn ____ dollars a year, one minute of your time is worth a little more than seventeen cents
+$20,000
+10
+
+If you earn twenty thousand dollars a year, one minute of your time is worth a little more than ____ cents
+Seventeen
+10
+
+If you fart consistently for 6 years and 9 months, enough gas is produced to create the energy of an?
+Atomic bomb
+10
+
+If you farted for 6 years & 9 months, enough gas would be produced to create the energy of?
+An atomic bomb
+10
+
+If you flew due east from New York City, what would be the first country you would reach?
+Portugal
+10
+
+If you flew due west from Portugal, what is the first place you would reach?
+New york city
+10
+
+If you go blind in one eye you only lose about one ____ of your vision, but all your sense of depth
+Fifth
+10
+
+If you go blind in one eye, you'll only lose about how much of your vision (but all your depth perception.)?
+One fifth
+10
+
+If you go blind in one eye, you'll only lose about twenty percent of your vision, but all of your ____
+Depth perception
+10
+
+If you had a Colles' fracture which part of the body would be affected?
+Wrist
+10
+
+If you had chronic regional ileitis, what eponymous disease would you have?
+Crohn's
+10
+
+If you had enough water to fill ____ goldfish bowls, you could fill an entire stadium
+One million
+10
+
+If you have a tapeworm in your stomach, it will come up while you're asleep to lick the ____ off your lips
+Salt
+10
+
+If you have committed regicide, whom have you killed?
+A king
+10
+
+If you have served an ace, you are playing what sport?
+Tennis
+10
+
+If you have to pay your taxi fare in zloty, which country are you probably in?
+Poland
+10
+
+If you keep a goldfish in the dark room, it will eventually turn?
+White
+10
+
+If you lace your shoes from the inside to the outside the fit will be snugger around which toe?
+Big toe
+10
+
+If you lace your shoes from the inside to the outside, the fit will be ____ around your big toe
+Snugger
+10
+
+If you left Oklahoma by crossing the Red river in a southerly direction, which American state would you enter?
+Texas
+10
+
+If you lock you ____ while standing long enough, you will pass out
+Knees
+10
+
+If you look at the sun long enough, you go ____
+Blind
+10
+
+If you look carefully at the picture of Mona Lisa, you will notice a ____ in the background
+Bridge
+10
+
+If you make hats you are a?
+Milliner
+10
+
+If you mix yellow and blue what colour do you get?
+Green
+10
+
+If you ordered 'Betsy in a bowl' at a restaurant, what would you expect to be served?
+Beef Stew
+10
+
+If you ordered 'pamplemousse' in a french restaurant, what would you be served?
+Grapefruit
+10
+
+If you ordered a 'brunette with sand' in a restaurant, what would you expect to be served?
+Coffee with sugar
+10
+
+If You Place ?5 On A Single Roulette Number, How Much Do You Win If It Comes In...?
+175
+10
+
+If you put a raisin in a glass of____ , it will keep floating to the top and sinking to the bottom
+Champagne
+10
+
+If you saw the word 'aloo' on an Indian menu, which vegetable would it stand for?
+Potato
+10
+
+If you saw the word 'sag' on an Indian menu, which vegetable would it signify?
+Spinach
+10
+
+If you see a big sign by the side of the road that says '15 miles to ____', where are you headed
+Love shack
+10
+
+If you sneeze too hard, you can?
+Fracture a rib
+10
+
+If you suffer from peridontisis, you have problems with your what?
+Gums
+10
+
+If you suffer from____ , you have three nipples
+Polythelia
+10
+
+If you throw a total of four, you should throw next to win, name the game?
+Craps
+10
+
+If you told someone that they were one in a million, you'd be saying there were ____ of them in China
+1,800
+10
+
+If you told someone that they were one in a million, youd be saying there were about how many of them in China?
+1,800
+10
+
+If you toss a penny ____ times it will not be heads The head picture weighs more, so it ends up on the bottom
+10,000
+10
+
+If you travel across the Russia, you will cross ____ time zones
+Seven
+10
+
+If you travel by 'Shanks's pony' how do you go?
+On foot
+10
+
+If you travel from east to west across the Soviet Union, you will cross ____ time zones
+Seven
+10
+
+If you travel northwards along the Atlantic coast of Florida, which is the next state that you find?
+Georgia
+10
+
+If you travel northwards along the coast of California, which is the next state that you reach?
+Oregon
+10
+
+If you try to suppress a sneeze, you can rupture a ____ in your head or neck and die
+Blood vessel
+10
+
+If you visited the English colleges of Trinity College & King's College, which city would you be in?
+Cambridge
+10
+
+If you want to go to the moon, you'll probably have to leave from Florida. John Glenn became the first American in orbit when he blasted off from?
+Cape canaveral
+10
+
+If you wanted to change your mIRC nick to Sucker, what command would you type?
+/nick sucker
+10
+
+If you wanted to leave a channel on mIRC, what command would you type?
+/part
+10
+
+If you went out into space, you would explode before you ____ because there's no air pressure
+Suffocated
+10
+
+If you were a chiropodist which part of the body would you treat?
+Feet
+10
+
+If you were anosmic, what would you lack?
+Sense of smell
+10
+
+If you were born on 01 April what star sign (Zodiac) would you be?
+Aries
+10
+
+If you were born on 01 August what star sign (Zodiac) would you be?
+Leo
+10
+
+If you were born on 01 December what star sign (Zodiac) would you be?
+Sagittarius
+10
+
+If you were born on 01 February what star sign (Zodiac) would you be?
+Aquarius
+10
+
+If you were born on 01 January what star sign (Zodiac) would you be?
+Capricorn
+10
+
+If you were born on 01 July what star sign (Zodiac) would you be?
+Cancer
+10
+
+If you were born on 01 June what star sign (Zodiac) would you be?
+Gemini
+10
+
+If you were born on 01 March what star sign (Zodiac) would you be?
+Pisces
+10
+
+If you were born on 01 May what star sign (Zodiac) would you be?
+Taurus
+10
+
+If you were born on 01 November what star sign (Zodiac) would you be?
+Scorpio
+10
+
+If you were born on 01 October what star sign (Zodiac) would you be?
+Libra
+10
+
+If you were born on 01 September what star sign (Zodiac) would you be?
+Virgo
+10
+
+If you were born on 02 April what star sign (Zodiac) would you be?
+Aries
+10
+
+If you were born on 02 August what star sign (Zodiac) would you be?
+Leo
+10
+
+If you were born on 02 December what star sign (Zodiac) would you be?
+Sagittarius
+10
+
+If you were born on 02 February what star sign (Zodiac) would you be?
+Aquarius
+10
+
+If you were born on 02 January what star sign (Zodiac) would you be?
+Capricorn
+10
+
+If you were born on 02 July what star sign (Zodiac) would you be?
+Cancer
+10
+
+If you were born on 02 June what star sign (Zodiac) would you be?
+Gemini
+10
+
+If you were born on 02 March what star sign (Zodiac) would you be?
+Pisces
+10
+
+If you were born on 02 May what star sign (Zodiac) would you be?
+Taurus
+10
+
+If you were born on 02 November what star sign (Zodiac) would you be?
+Scorpio
+10
+
+If you were born on 02 October what star sign (Zodiac) would you be?
+Libra
+10
+
+If you were born on 02 September what star sign (Zodiac) would you be?
+Virgo
+10
+
+If you were born on 03 April what star sign (Zodiac) would you be?
+Aries
+10
+
+If you were born on 03 August what star sign (Zodiac) would you be?
+Leo
+10
+
+If you were born on 03 December what star sign (Zodiac) would you be?
+Sagittarius
+10
+
+If you were born on 03 February what star sign (Zodiac) would you be?
+Aquarius
+10
+
+If you were born on 03 January what star sign (Zodiac) would you be?
+Capricorn
+10
+
+If you were born on 03 July what star sign (Zodiac) would you be?
+Cancer
+10
+
+If you were born on 03 June what star sign (Zodiac) would you be?
+Gemini
+10
+
+If you were born on 03 March what star sign (Zodiac) would you be?
+Pisces
+10
+
+If you were born on 03 May what star sign (Zodiac) would you be?
+Taurus
+10
+
+If you were born on 03 November what star sign (Zodiac) would you be?
+Scorpio
+10
+
+If you were born on 03 October what star sign (Zodiac) would you be?
+Libra
+10
+
+If you were born on 03 September what star sign (Zodiac) would you be?
+Virgo
+10
+
+If you were born on 04 April what star sign (Zodiac) would you be?
+Aries
+10
+
+If you were born on 04 August what star sign (Zodiac) would you be?
+Leo
+10
+
+If you were born on 04 December what star sign (Zodiac) would you be?
+Sagittarius
+10
+
+If you were born on 04 February what star sign (Zodiac) would you be?
+Aquarius
+10
+
+If you were born on 04 January what star sign (Zodiac) would you be?
+Capricorn
+10
+
+If you were born on 04 July what star sign (Zodiac) would you be?
+Cancer
+10
+
+If you were born on 04 June what star sign (Zodiac) would you be?
+Gemini
+10
+
+If you were born on 04 March what star sign (Zodiac) would you be?
+Pisces
+10
+
+If you were born on 04 May what star sign (Zodiac) would you be?
+Taurus
+10
+
+If you were born on 04 November what star sign (Zodiac) would you be?
+Scorpio
+10
+
+If you were born on 04 October what star sign (Zodiac) would you be?
+Libra
+10
+
+If you were born on 04 September what star sign (Zodiac) would you be?
+Virgo
+10
+
+If you were born on 05 April what star sign (Zodiac) would you be?
+Aries
+10
+
+If you were born on 05 August what star sign (Zodiac) would you be?
+Leo
+10
+
+If you were born on 05 December what star sign (Zodiac) would you be?
+Sagittarius
+10
+
+If you were born on 05 February what star sign (Zodiac) would you be?
+Aquarius
+10
+
+If you were born on 05 January what star sign (Zodiac) would you be?
+Capricorn
+10
+
+If you were born on 05 July what star sign (Zodiac) would you be?
+Cancer
+10
+
+If you were born on 05 June what star sign (Zodiac) would you be?
+Gemini
+10
+
+If you were born on 05 March what star sign (Zodiac) would you be?
+Pisces
+10
+
+If you were born on 05 May what star sign (Zodiac) would you be?
+Taurus
+10
+
+If you were born on 05 November what star sign (Zodiac) would you be?
+Scorpio
+10
+
+If you were born on 05 October what star sign (Zodiac) would you be?
+Libra
+10
+
+If you were born on 05 September what star sign (Zodiac) would you be?
+Virgo
+10
+
+If you were born on 06 April what star sign (Zodiac) would you be?
+Aries
+10
+
+If you were born on 06 August what star sign (Zodiac) would you be?
+Leo
+10
+
+If you were born on 06 December what star sign (Zodiac) would you be?
+Sagittarius
+10
+
+If you were born on 06 February what star sign (Zodiac) would you be?
+Aquarius
+10
+
+If you were born on 06 January what star sign (Zodiac) would you be?
+Capricorn
+10
+
+If you were born on 06 July what star sign (Zodiac) would you be?
+Cancer
+10
+
+If you were born on 06 June what star sign (Zodiac) would you be?
+Gemini
+10
+
+If you were born on 06 March what star sign (Zodiac) would you be?
+Pisces
+10
+
+If you were born on 06 May what star sign (Zodiac) would you be?
+Taurus
+10
+
+If you were born on 06 November what star sign (Zodiac) would you be?
+Scorpio
+10
+
+If you were born on 06 October what star sign (Zodiac) would you be?
+Libra
+10
+
+If you were born on 06 September what star sign (Zodiac) would you be?
+Virgo
+10
+
+If you were born on 07 April what star sign (Zodiac) would you be?
+Aries
+10
+
+If you were born on 07 August what star sign (Zodiac) would you be?
+Leo
+10
+
+If you were born on 07 December what star sign (Zodiac) would you be?
+Sagittarius
+10
+
+If you were born on 07 February what star sign (Zodiac) would you be?
+Aquarius
+10
+
+If you were born on 07 January what star sign (Zodiac) would you be?
+Capricorn
+10
+
+If you were born on 07 July what star sign (Zodiac) would you be?
+Cancer
+10
+
+If you were born on 07 June what star sign (Zodiac) would you be?
+Gemini
+10
+
+If you were born on 07 March what star sign (Zodiac) would you be?
+Pisces
+10
+
+If you were born on 07 May what star sign (Zodiac) would you be?
+Taurus
+10
+
+If you were born on 07 November what star sign (Zodiac) would you be?
+Scorpio
+10
+
+If you were born on 07 October what star sign (Zodiac) would you be?
+Libra
+10
+
+If you were born on 07 September what star sign (Zodiac) would you be?
+Virgo
+10
+
+If you were born on 08 April what star sign (Zodiac) would you be?
+Aries
+10
+
+If you were born on 08 August what star sign (Zodiac) would you be?
+Leo
+10
+
+If you were born on 08 December what star sign (Zodiac) would you be?
+Sagittarius
+10
+
+If you were born on 08 February what star sign (Zodiac) would you be?
+Aquarius
+10
+
+If you were born on 08 January what star sign (Zodiac) would you be?
+Capricorn
+10
+
+If you were born on 08 July what star sign (Zodiac) would you be?
+Cancer
+10
+
+If you were born on 08 June what star sign (Zodiac) would you be?
+Gemini
+10
+
+If you were born on 08 March what star sign (Zodiac) would you be?
+Pisces
+10
+
+If you were born on 08 May what star sign (Zodiac) would you be?
+Taurus
+10
+
+If you were born on 08 November what star sign (Zodiac) would you be?
+Scorpio
+10
+
+If you were born on 08 October what star sign (Zodiac) would you be?
+Libra
+10
+
+If you were born on 08 September what star sign (Zodiac) would you be?
+Virgo
+10
+
+If you were born on 09 April what star sign (Zodiac) would you be?
+Aries
+10
+
+If you were born on 09 August what star sign (Zodiac) would you be?
+Leo
+10
+
+If you were born on 09 December what star sign (Zodiac) would you be?
+Sagittarius
+10
+
+If you were born on 09 February what star sign (Zodiac) would you be?
+Aquarius
+10
+
+If you were born on 09 January what star sign (Zodiac) would you be?
+Capricorn
+10
+
+If you were born on 09 July what star sign (Zodiac) would you be?
+Cancer
+10
+
+If you were born on 09 June what star sign (Zodiac) would you be?
+Gemini
+10
+
+If you were born on 09 March what star sign (Zodiac) would you be?
+Pisces
+10
+
+If you were born on 09 May what star sign (Zodiac) would you be?
+Taurus
+10
+
+If you were born on 09 November what star sign (Zodiac) would you be?
+Scorpio
+10
+
+If you were born on 09 October what star sign (Zodiac) would you be?
+Libra
+10
+
+If you were born on 09 September what star sign (Zodiac) would you be?
+Virgo
+10
+
+If you were born on 10 April what star sign (Zodiac) would you be?
+Aries
+10
+
+If you were born on 10 August what star sign (Zodiac) would you be?
+Leo
+10
+
+If you were born on 10 December what star sign (Zodiac) would you be?
+Sagittarius
+10
+
+If you were born on 10 February what star sign (Zodiac) would you be?
+Aquarius
+10
+
+If you were born on 10 January what star sign (Zodiac) would you be?
+Capricorn
+10
+
+If you were born on 10 July what star sign (Zodiac) would you be?
+Cancer
+10
+
+If you were born on 10 June what star sign (Zodiac) would you be?
+Gemini
+10
+
+If you were born on 10 March what star sign (Zodiac) would you be?
+Pisces
+10
+
+If you were born on 10 May what star sign (Zodiac) would you be?
+Taurus
+10
+
+If you were born on 10 November what star sign (Zodiac) would you be?
+Scorpio
+10
+
+If you were born on 10 October what star sign (Zodiac) would you be?
+Libra
+10
+
+If you were born on 10 September what star sign (Zodiac) would you be?
+Virgo
+10
+
+If you were born on 11 April what star sign (Zodiac) would you be?
+Aries
+10
+
+If you were born on 11 August what star sign (Zodiac) would you be?
+Leo
+10
+
+If you were born on 11 December what star sign (Zodiac) would you be?
+Sagittarius
+10
+
+If you were born on 11 February what star sign (Zodiac) would you be?
+Aquarius
+10
+
+If you were born on 11 January what star sign (Zodiac) would you be?
+Capricorn
+10
+
+If you were born on 11 July what star sign (Zodiac) would you be?
+Cancer
+10
+
+If you were born on 11 June what star sign (Zodiac) would you be?
+Gemini
+10
+
+If you were born on 11 March what star sign (Zodiac) would you be?
+Pisces
+10
+
+If you were born on 11 May what star sign (Zodiac) would you be?
+Taurus
+10
+
+If you were born on 11 November what star sign (Zodiac) would you be?
+Scorpio
+10
+
+If you were born on 11 October what star sign (Zodiac) would you be?
+Libra
+10
+
+If you were born on 11 September what star sign (Zodiac) would you be?
+Virgo
+10
+
+If you were born on 12 April what star sign (Zodiac) would you be?
+Aries
+10
+
+If you were born on 12 August what star sign (Zodiac) would you be?
+Leo
+10
+
+If you were born on 12 December what star sign (Zodiac) would you be?
+Sagittarius
+10
+
+If you were born on 12 February what star sign (Zodiac) would you be?
+Aquarius
+10
+
+If you were born on 12 January what star sign (Zodiac) would you be?
+Capricorn
+10
+
+If you were born on 12 July what star sign (Zodiac) would you be?
+Cancer
+10
+
+If you were born on 12 June what star sign (Zodiac) would you be?
+Gemini
+10
+
+If you were born on 12 March what star sign (Zodiac) would you be?
+Pisces
+10
+
+If you were born on 12 May what star sign (Zodiac) would you be?
+Taurus
+10
+
+If you were born on 12 November what star sign (Zodiac) would you be?
+Scorpio
+10
+
+If you were born on 12 October what star sign (Zodiac) would you be?
+Libra
+10
+
+If you were born on 12 September what star sign (Zodiac) would you be?
+Virgo
+10
+
+If you were born on 13 April what star sign (Zodiac) would you be?
+Aries
+10
+
+If you were born on 13 August what star sign (Zodiac) would you be?
+Leo
+10
+
+If you were born on 13 December what star sign (Zodiac) would you be?
+Sagittarius
+10
+
+If you were born on 13 February what star sign (Zodiac) would you be?
+Aquarius
+10
+
+If you were born on 13 January what star sign (Zodiac) would you be?
+Capricorn
+10
+
+If you were born on 13 July what star sign (Zodiac) would you be?
+Cancer
+10
+
+If you were born on 13 June what star sign (Zodiac) would you be?
+Gemini
+10
+
+If you were born on 13 March what star sign (Zodiac) would you be?
+Pisces
+10
+
+If you were born on 13 May what star sign (Zodiac) would you be?
+Taurus
+10
+
+If you were born on 13 November what star sign (Zodiac) would you be?
+Scorpio
+10
+
+If you were born on 13 October what star sign (Zodiac) would you be?
+Libra
+10
+
+If you were born on 13 September what star sign (Zodiac) would you be?
+Virgo
+10
+
+If you were born on 14 April what star sign (Zodiac) would you be?
+Aries
+10
+
+If you were born on 14 August what star sign (Zodiac) would you be?
+Leo
+10
+
+If you were born on 14 December what star sign (Zodiac) would you be?
+Sagittarius
+10
+
+If you were born on 14 February what star sign (Zodiac) would you be?
+Aquarius
+10
+
+If you were born on 14 January what star sign (Zodiac) would you be?
+Capricorn
+10
+
+If you were born on 14 July what star sign (Zodiac) would you be?
+Cancer
+10
+
+If you were born on 14 June what star sign (Zodiac) would you be?
+Gemini
+10
+
+If you were born on 14 March what star sign (Zodiac) would you be?
+Pisces
+10
+
+If you were born on 14 May what star sign (Zodiac) would you be?
+Taurus
+10
+
+If you were born on 14 November what star sign (Zodiac) would you be?
+Scorpio
+10
+
+If you were born on 14 October what star sign (Zodiac) would you be?
+Libra
+10
+
+If you were born on 14 September what star sign (Zodiac) would you be?
+Virgo
+10
+
+If you were born on 15 April what star sign (Zodiac) would you be?
+Aries
+10
+
+If you were born on 15 August what star sign (Zodiac) would you be?
+Leo
+10
+
+If you were born on 15 December what star sign (Zodiac) would you be?
+Sagittarius
+10
+
+If you were born on 15 February what star sign (Zodiac) would you be?
+Aquarius
+10
+
+If you were born on 15 January what star sign (Zodiac) would you be?
+Capricorn
+10
+
+If you were born on 15 July what star sign (Zodiac) would you be?
+Cancer
+10
+
+If you were born on 15 June what star sign (Zodiac) would you be?
+Gemini
+10
+
+If you were born on 15 March what star sign (Zodiac) would you be?
+Pisces
+10
+
+If you were born on 15 May what star sign (Zodiac) would you be?
+Taurus
+10
+
+If you were born on 15 November what star sign (Zodiac) would you be?
+Scorpio
+10
+
+If you were born on 15 October what star sign (Zodiac) would you be?
+Libra
+10
+
+If you were born on 15 September what star sign (Zodiac) would you be?
+Virgo
+10
+
+If you were born on 16 April what star sign (Zodiac) would you be?
+Aries
+10
+
+If you were born on 16 August what star sign (Zodiac) would you be?
+Leo
+10
+
+If you were born on 16 December what star sign (Zodiac) would you be?
+Sagittarius
+10
+
+If you were born on 16 February what star sign (Zodiac) would you be?
+Aquarius
+10
+
+If you were born on 16 January what star sign (Zodiac) would you be?
+Capricorn
+10
+
+If you were born on 16 July what star sign (Zodiac) would you be?
+Cancer
+10
+
+If you were born on 16 June what star sign (Zodiac) would you be?
+Gemini
+10
+
+If you were born on 16 March what star sign (Zodiac) would you be?
+Pisces
+10
+
+If you were born on 16 May what star sign (Zodiac) would you be?
+Taurus
+10
+
+If you were born on 16 November what star sign (Zodiac) would you be?
+Scorpio
+10
+
+If you were born on 16 October what star sign (Zodiac) would you be?
+Libra
+10
+
+If you were born on 16 September what star sign (Zodiac) would you be?
+Virgo
+10
+
+If you were born on 17 April what star sign (Zodiac) would you be?
+Aries
+10
+
+If you were born on 17 August what star sign (Zodiac) would you be?
+Leo
+10
+
+If you were born on 17 December what star sign (Zodiac) would you be?
+Sagittarius
+10
+
+If you were born on 17 February what star sign (Zodiac) would you be?
+Aquarius
+10
+
+If you were born on 17 January what star sign (Zodiac) would you be?
+Capricorn
+10
+
+If you were born on 17 July what star sign (Zodiac) would you be?
+Cancer
+10
+
+If you were born on 17 June what star sign (Zodiac) would you be?
+Gemini
+10
+
+If you were born on 17 March what star sign (Zodiac) would you be?
+Pisces
+10
+
+If you were born on 17 May what star sign (Zodiac) would you be?
+Taurus
+10
+
+If you were born on 17 November what star sign (Zodiac) would you be?
+Scorpio
+10
+
+If you were born on 17 October what star sign (Zodiac) would you be?
+Libra
+10
+
+If you were born on 17 September what star sign (Zodiac) would you be?
+Virgo
+10
+
+If you were born on 18 April what star sign (Zodiac) would you be?
+Aries
+10
+
+If you were born on 18 August what star sign (Zodiac) would you be?
+Leo
+10
+
+If you were born on 18 December what star sign (Zodiac) would you be?
+Sagittarius
+10
+
+If you were born on 18 February what star sign (Zodiac) would you be?
+Aquarius
+10
+
+If you were born on 18 January what star sign (Zodiac) would you be?
+Capricorn
+10
+
+If you were born on 18 July what star sign (Zodiac) would you be?
+Cancer
+10
+
+If you were born on 18 June what star sign (Zodiac) would you be?
+Gemini
+10
+
+If you were born on 18 March what star sign (Zodiac) would you be?
+Pisces
+10
+
+If you were born on 18 May what star sign (Zodiac) would you be?
+Taurus
+10
+
+If you were born on 18 November what star sign (Zodiac) would you be?
+Scorpio
+10
+
+If you were born on 18 October what star sign (Zodiac) would you be?
+Libra
+10
+
+If you were born on 18 September what star sign (Zodiac) would you be?
+Virgo
+10
+
+If you were born on 19 April what star sign (Zodiac) would you be?
+Aries
+10
+
+If you were born on 19 August what star sign (Zodiac) would you be?
+Leo
+10
+
+If you were born on 19 December what star sign (Zodiac) would you be?
+Sagittarius
+10
+
+If you were born on 19 February what star sign (Zodiac) would you be?
+Pisces
+10
+
+If you were born on 19 January what star sign (Zodiac) would you be?
+Capricorn
+10
+
+If you were born on 19 July what star sign (Zodiac) would you be?
+Cancer
+10
+
+If you were born on 19 June what star sign (Zodiac) would you be?
+Gemini
+10
+
+If you were born on 19 March what star sign (Zodiac) would you be?
+Pisces
+10
+
+If you were born on 19 May what star sign (Zodiac) would you be?
+Taurus
+10
+
+If you were born on 19 November what star sign (Zodiac) would you be?
+Scorpio
+10
+
+If you were born on 19 October what star sign (Zodiac) would you be?
+Libra
+10
+
+If you were born on 19 September what star sign (Zodiac) would you be?
+Virgo
+10
+
+If you were born on 20 April what star sign (Zodiac) would you be?
+Taurus
+10
+
+If you were born on 20 August what star sign (Zodiac) would you be?
+Leo
+10
+
+If you were born on 20 December what star sign (Zodiac) would you be?
+Sagittarius
+10
+
+If you were born on 20 February what star sign (Zodiac) would you be?
+Pisces
+10
+
+If you were born on 20 January what star sign (Zodiac) would you be?
+Aquarius
+10
+
+If you were born on 20 July what star sign (Zodiac) would you be?
+Cancer
+10
+
+If you were born on 20 June what star sign (Zodiac) would you be?
+Gemini
+10
+
+If you were born on 20 March what star sign (Zodiac) would you be?
+Pisces
+10
+
+If you were born on 20 May what star sign (Zodiac) would you be?
+Taurus
+10
+
+If you were born on 20 November what star sign (Zodiac) would you be?
+Scorpio
+10
+
+If you were born on 20 October what star sign (Zodiac) would you be?
+Libra
+10
+
+If you were born on 20 September what star sign (Zodiac) would you be?
+Virgo
+10
+
+If you were born on 21 April what star sign (Zodiac) would you be?
+Taurus
+10
+
+If you were born on 21 August what star sign (Zodiac) would you be?
+Leo
+10
+
+If you were born on 21 December what star sign (Zodiac) would you be?
+Sagittarius
+10
+
+If you were born on 21 February what star sign (Zodiac) would you be?
+Pisces
+10
+
+If you were born on 21 January what star sign (Zodiac) would you be?
+Aquarius
+10
+
+If you were born on 21 July what star sign (Zodiac) would you be?
+Cancer
+10
+
+If you were born on 21 June what star sign (Zodiac) would you be?
+Gemini
+10
+
+If you were born on 21 March what star sign (Zodiac) would you be?
+Aries
+10
+
+If you were born on 21 May what star sign (Zodiac) would you be?
+Gemini
+10
+
+If you were born on 21 November what star sign (Zodiac) would you be?
+Scorpio
+10
+
+If you were born on 21 October what star sign (Zodiac) would you be?
+Libra
+10
+
+If you were born on 21 September what star sign (Zodiac) would you be?
+Virgo
+10
+
+If you were born on 22 April what star sign (Zodiac) would you be?
+Taurus
+10
+
+If you were born on 22 August what star sign (Zodiac) would you be?
+Leo
+10
+
+If you were born on 22 December what star sign (Zodiac) would you be?
+Capricorn
+10
+
+If you were born on 22 February what star sign (Zodiac) would you be?
+Pisces
+10
+
+If you were born on 22 January what star sign (Zodiac) would you be?
+Aquarius
+10
+
+If you were born on 22 July what star sign (Zodiac) would you be?
+Cancer
+10
+
+If you were born on 22 June what star sign (Zodiac) would you be?
+Cancer
+10
+
+If you were born on 22 March what star sign (Zodiac) would you be?
+Aries
+10
+
+If you were born on 22 May what star sign (Zodiac) would you be?
+Gemini
+10
+
+If you were born on 22 November what star sign (Zodiac) would you be?
+Scorpio
+10
+
+If you were born on 22 October what star sign (Zodiac) would you be?
+Libra
+10
+
+If you were born on 22 September what star sign (Zodiac) would you be?
+Virgo
+10
+
+If you were born on 23 April what star sign (Zodiac) would you be?
+Taurus
+10
+
+If you were born on 23 August what star sign (Zodiac) would you be?
+Virgo
+10
+
+If you were born on 23 December what star sign (Zodiac) would you be?
+Capricorn
+10
+
+If you were born on 23 February what star sign (Zodiac) would you be?
+Pisces
+10
+
+If you were born on 23 January what star sign (Zodiac) would you be?
+Aquarius
+10
+
+If you were born on 23 July what star sign (Zodiac) would you be?
+Leo
+10
+
+If you were born on 23 June what star sign (Zodiac) would you be?
+Cancer
+10
+
+If you were born on 23 March what star sign (Zodiac) would you be?
+Aries
+10
+
+If you were born on 23 May what star sign (Zodiac) would you be?
+Gemini
+10
+
+If you were born on 23 November what star sign (Zodiac) would you be?
+Sagittarius
+10
+
+If you were born on 23 October what star sign (Zodiac) would you be?
+Libra
+10
+
+If you were born on 23 September what star sign (Zodiac) would you be?
+Libra
+10
+
+If you were born on 24 April what star sign (Zodiac) would you be?
+Taurus
+10
+
+If you were born on 24 August what star sign (Zodiac) would you be?
+Virgo
+10
+
+If you were born on 24 December what star sign (Zodiac) would you be?
+Capricorn
+10
+
+If you were born on 24 February what star sign (Zodiac) would you be?
+Pisces
+10
+
+If you were born on 24 January what star sign (Zodiac) would you be?
+Aquarius
+10
+
+If you were born on 24 July what star sign (Zodiac) would you be?
+Leo
+10
+
+If you were born on 24 June what star sign (Zodiac) would you be?
+Cancer
+10
+
+If you were born on 24 March what star sign (Zodiac) would you be?
+Aries
+10
+
+If you were born on 24 May what star sign (Zodiac) would you be?
+Gemini
+10
+
+If you were born on 24 November what star sign (Zodiac) would you be?
+Sagittarius
+10
+
+If you were born on 24 October what star sign (Zodiac) would you be?
+Scorpio
+10
+
+If you were born on 24 September what star sign (Zodiac) would you be?
+Libra
+10
+
+If you were born on 25 April what star sign (Zodiac) would you be?
+Taurus
+10
+
+If you were born on 25 August what star sign (Zodiac) would you be?
+Virgo
+10
+
+If you were born on 25 December what star sign (Zodiac) would you be?
+Capricorn
+10
+
+If you were born on 25 February what star sign (Zodiac) would you be?
+Pisces
+10
+
+If you were born on 25 January what star sign (Zodiac) would you be?
+Aquarius
+10
+
+If you were born on 25 July what star sign (Zodiac) would you be?
+Leo
+10
+
+If you were born on 25 June what star sign (Zodiac) would you be?
+Cancer
+10
+
+If you were born on 25 March what star sign (Zodiac) would you be?
+Aries
+10
+
+If you were born on 25 May what star sign (Zodiac) would you be?
+Gemini
+10
+
+If you were born on 25 November what star sign (Zodiac) would you be?
+Sagittarius
+10
+
+If you were born on 25 October what star sign (Zodiac) would you be?
+Scorpio
+10
+
+If you were born on 25 September what star sign (Zodiac) would you be?
+Libra
+10
+
+If you were born on 26 April what star sign (Zodiac) would you be?
+Taurus
+10
+
+If you were born on 26 August what star sign (Zodiac) would you be?
+Virgo
+10
+
+If you were born on 26 December what star sign (Zodiac) would you be?
+Capricorn
+10
+
+If you were born on 26 February what star sign (Zodiac) would you be?
+Pisces
+10
+
+If you were born on 26 January what star sign (Zodiac) would you be?
+Aquarius
+10
+
+If you were born on 26 July what star sign (Zodiac) would you be?
+Leo
+10
+
+If you were born on 26 June what star sign (Zodiac) would you be?
+Cancer
+10
+
+If you were born on 26 March what star sign (Zodiac) would you be?
+Aries
+10
+
+If you were born on 26 May what star sign (Zodiac) would you be?
+Gemini
+10
+
+If you were born on 26 November what star sign (Zodiac) would you be?
+Sagittarius
+10
+
+If you were born on 26 October what star sign (Zodiac) would you be?
+Scorpio
+10
+
+If you were born on 26 September what star sign (Zodiac) would you be?
+Libra
+10
+
+If you were born on 27 April what star sign (Zodiac) would you be?
+Taurus
+10
+
+If you were born on 27 August what star sign (Zodiac) would you be?
+Virgo
+10
+
+If you were born on 27 December what star sign (Zodiac) would you be?
+Capricorn
+10
+
+If you were born on 27 February what star sign (Zodiac) would you be?
+Pisces
+10
+
+If you were born on 27 January what star sign (Zodiac) would you be?
+Aquarius
+10
+
+If you were born on 27 July what star sign (Zodiac) would you be?
+Leo
+10
+
+If you were born on 27 June what star sign (Zodiac) would you be?
+Cancer
+10
+
+If you were born on 27 March what star sign (Zodiac) would you be?
+Aries
+10
+
+If you were born on 27 May what star sign (Zodiac) would you be?
+Gemini
+10
+
+If you were born on 27 November what star sign (Zodiac) would you be?
+Sagittarius
+10
+
+If you were born on 27 October what star sign (Zodiac) would you be?
+Scorpio
+10
+
+If you were born on 27 September what star sign (Zodiac) would you be?
+Libra
+10
+
+If you were born on 28 April what star sign (Zodiac) would you be?
+Taurus
+10
+
+If you were born on 28 August what star sign (Zodiac) would you be?
+Virgo
+10
+
+If you were born on 28 December what star sign (Zodiac) would you be?
+Capricorn
+10
+
+If you were born on 28 February what star sign (Zodiac) would you be?
+Pisces
+10
+
+If you were born on 28 January what star sign (Zodiac) would you be?
+Aquarius
+10
+
+If you were born on 28 July what star sign (Zodiac) would you be?
+Leo
+10
+
+If you were born on 28 June what star sign (Zodiac) would you be?
+Cancer
+10
+
+If you were born on 28 March what star sign (Zodiac) would you be?
+Aries
+10
+
+If you were born on 28 May what star sign (Zodiac) would you be?
+Gemini
+10
+
+If you were born on 28 November what star sign (Zodiac) would you be?
+Sagittarius
+10
+
+If you were born on 28 October what star sign (Zodiac) would you be?
+Scorpio
+10
+
+If you were born on 28 September what star sign (Zodiac) would you be?
+Libra
+10
+
+If you were born on 29 April what star sign (Zodiac) would you be?
+Taurus
+10
+
+If you were born on 29 August what star sign (Zodiac) would you be?
+Virgo
+10
+
+If you were born on 29 December what star sign (Zodiac) would you be?
+Capricorn
+10
+
+If you were born on 29 February what star sign (Zodiac) would you be?
+Pisces
+10
+
+If you were born on 29 January what star sign (Zodiac) would you be?
+Aquarius
+10
+
+If you were born on 29 July what star sign (Zodiac) would you be?
+Leo
+10
+
+If you were born on 29 June what star sign (Zodiac) would you be?
+Cancer
+10
+
+If you were born on 29 March what star sign (Zodiac) would you be?
+Aries
+10
+
+If you were born on 29 May what star sign (Zodiac) would you be?
+Gemini
+10
+
+If you were born on 29 November what star sign (Zodiac) would you be?
+Sagittarius
+10
+
+If you were born on 29 October what star sign (Zodiac) would you be?
+Scorpio
+10
+
+If you were born on 29 September what star sign (Zodiac) would you be?
+Libra
+10
+
+If you were born on 30 April what star sign (Zodiac) would you be?
+Taurus
+10
+
+If you were born on 30 August what star sign (Zodiac) would you be?
+Virgo
+10
+
+If you were born on 30 December what star sign (Zodiac) would you be?
+Capricorn
+10
+
+If you were born on 30 January what star sign (Zodiac) would you be?
+Aquarius
+10
+
+If you were born on 30 July what star sign (Zodiac) would you be?
+Leo
+10
+
+If you were born on 30 June what star sign (Zodiac) would you be?
+Cancer
+10
+
+If you were born on 30 March what star sign (Zodiac) would you be?
+Aries
+10
+
+If you were born on 30 May what star sign (Zodiac) would you be?
+Gemini
+10
+
+If you were born on 30 November what star sign (Zodiac) would you be?
+Sagittarius
+10
+
+If you were born on 30 October what star sign (Zodiac) would you be?
+Scorpio
+10
+
+If you were born on 30 September what star sign (Zodiac) would you be?
+Libra
+10
+
+If you were born on 31 August what star sign (Zodiac) would you be?
+Virgo
+10
+
+If you were born on 31 December what star sign (Zodiac) would you be?
+Capricorn
+10
+
+If you were born on 31 January what star sign (Zodiac) would you be?
+Aquarius
+10
+
+If you were born on 31 July what star sign (Zodiac) would you be?
+Leo
+10
+
+If you were born on 31 March what star sign (Zodiac) would you be?
+Aries
+10
+
+If you were born on 31 May what star sign (Zodiac) would you be?
+Gemini
+10
+
+If you were born on 31 October what star sign (Zodiac) would you be?
+Scorpio
+10
+
+If You Were Born on: 01 April What Zodiac symbol would you be represented by, The:?
+Ram
+10
+
+If You Were Born on: 01 August What Zodiac symbol would you be represented by, The:?
+Lion
+10
+
+If You Were Born on: 01 December What Zodiac symbol would you be represented by, The:?
+Archer
+10
+
+If You Were Born on: 01 February What Zodiac symbol would you be represented by, The:?
+Water carrier
+10
+
+If You Were Born on: 01 January What Zodiac symbol would you be represented by, The:?
+Goat
+10
+
+If You Were Born on: 01 July What Zodiac symbol would you be represented by, The:?
+Crab
+10
+
+If You Were Born on: 01 June What Zodiac symbol would you be represented by, The:?
+Twins
+10
+
+If You Were Born on: 01 March What Zodiac symbol would you be represented by, The:?
+Fish
+10
+
+If You Were Born on: 01 May What Zodiac symbol would you be represented by, The:?
+Bull
+10
+
+If You Were Born on: 01 November What Zodiac symbol would you be represented by, The:?
+Scorpion
+10
+
+If You Were Born on: 01 October What Zodiac symbol would you be represented by, The:?
+Scales
+10
+
+If You Were Born on: 01 September What Zodiac symbol would you be represented by, The:?
+Virgin
+10
+
+If You Were Born on: 02 April What Zodiac symbol would you be represented by, The:?
+Ram
+10
+
+If You Were Born on: 02 August What Zodiac symbol would you be represented by, The:?
+Lion
+10
+
+If You Were Born on: 02 December What Zodiac symbol would you be represented by, The:?
+Archer
+10
+
+If You Were Born on: 02 February What Zodiac symbol would you be represented by, The:?
+Water carrier
+10
+
+If You Were Born on: 02 January What Zodiac symbol would you be represented by, The:?
+Goat
+10
+
+If You Were Born on: 02 July What Zodiac symbol would you be represented by, The:?
+Crab
+10
+
+If You Were Born on: 02 June What Zodiac symbol would you be represented by, The:?
+Twins
+10
+
+If You Were Born on: 02 March What Zodiac symbol would you be represented by, The:?
+Fish
+10
+
+If You Were Born on: 02 May What Zodiac symbol would you be represented by, The:?
+Bull
+10
+
+If You Were Born on: 02 November What Zodiac symbol would you be represented by, The:?
+Scorpion
+10
+
+If You Were Born on: 02 October What Zodiac symbol would you be represented by, The:?
+Scales
+10
+
+If You Were Born on: 02 September What Zodiac symbol would you be represented by, The:?
+Virgin
+10
+
+If You Were Born on: 03 April What Zodiac symbol would you be represented by, The:?
+Ram
+10
+
+If You Were Born on: 03 August What Zodiac symbol would you be represented by, The:?
+Lion
+10
+
+If You Were Born on: 03 December What Zodiac symbol would you be represented by, The:?
+Archer
+10
+
+If You Were Born on: 03 February What Zodiac symbol would you be represented by, The:?
+Water carrier
+10
+
+If You Were Born on: 03 January What Zodiac symbol would you be represented by, The:?
+Goat
+10
+
+If You Were Born on: 03 July What Zodiac symbol would you be represented by, The:?
+Crab
+10
+
+If You Were Born on: 03 June What Zodiac symbol would you be represented by, The:?
+Twins
+10
+
+If You Were Born on: 03 March What Zodiac symbol would you be represented by, The:?
+Fish
+10
+
+If You Were Born on: 03 May What Zodiac symbol would you be represented by, The:?
+Bull
+10
+
+If You Were Born on: 03 November What Zodiac symbol would you be represented by, The:?
+Scorpion
+10
+
+If You Were Born on: 03 October What Zodiac symbol would you be represented by, The:?
+Scales
+10
+
+If You Were Born on: 03 September What Zodiac symbol would you be represented by, The:?
+Virgin
+10
+
+If You Were Born on: 04 April What Zodiac symbol would you be represented by, The:?
+Ram
+10
+
+If You Were Born on: 04 August What Zodiac symbol would you be represented by, The:?
+Lion
+10
+
+If You Were Born on: 04 December What Zodiac symbol would you be represented by, The:?
+Archer
+10
+
+If You Were Born on: 04 February What Zodiac symbol would you be represented by, The:?
+Water carrier
+10
+
+If You Were Born on: 04 January What Zodiac symbol would you be represented by, The:?
+Goat
+10
+
+If You Were Born on: 04 July What Zodiac symbol would you be represented by, The:?
+Crab
+10
+
+If You Were Born on: 04 June What Zodiac symbol would you be represented by, The:?
+Twins
+10
+
+If You Were Born on: 04 March What Zodiac symbol would you be represented by, The:?
+Fish
+10
+
+If You Were Born on: 04 May What Zodiac symbol would you be represented by, The:?
+Bull
+10
+
+If You Were Born on: 04 November What Zodiac symbol would you be represented by, The:?
+Scorpion
+10
+
+If You Were Born on: 04 October What Zodiac symbol would you be represented by, The:?
+Scales
+10
+
+If You Were Born on: 04 September What Zodiac symbol would you be represented by, The:?
+Virgin
+10
+
+If You Were Born on: 05 April What Zodiac symbol would you be represented by, The:?
+Ram
+10
+
+If You Were Born on: 05 August What Zodiac symbol would you be represented by, The:?
+Lion
+10
+
+If You Were Born on: 05 December What Zodiac symbol would you be represented by, The:?
+Archer
+10
+
+If You Were Born on: 05 February What Zodiac symbol would you be represented by, The:?
+Water carrier
+10
+
+If You Were Born on: 05 January What Zodiac symbol would you be represented by, The:?
+Goat
+10
+
+If You Were Born on: 05 July What Zodiac symbol would you be represented by, The:?
+Crab
+10
+
+If You Were Born on: 05 June What Zodiac symbol would you be represented by, The:?
+Twins
+10
+
+If You Were Born on: 05 March What Zodiac symbol would you be represented by, The:?
+Fish
+10
+
+If You Were Born on: 05 May What Zodiac symbol would you be represented by, The:?
+Bull
+10
+
+If You Were Born on: 05 November What Zodiac symbol would you be represented by, The:?
+Scorpion
+10
+
+If You Were Born on: 05 October What Zodiac symbol would you be represented by, The:?
+Scales
+10
+
+If You Were Born on: 05 September What Zodiac symbol would you be represented by, The:?
+Virgin
+10
+
+If You Were Born on: 06 April What Zodiac symbol would you be represented by, The:?
+Ram
+10
+
+If You Were Born on: 06 August What Zodiac symbol would you be represented by, The:?
+Lion
+10
+
+If You Were Born on: 06 December What Zodiac symbol would you be represented by, The:?
+Archer
+10
+
+If You Were Born on: 06 February What Zodiac symbol would you be represented by, The:?
+Water carrier
+10
+
+If You Were Born on: 06 January What Zodiac symbol would you be represented by, The:?
+Goat
+10
+
+If You Were Born on: 06 July What Zodiac symbol would you be represented by, The:?
+Crab
+10
+
+If You Were Born on: 06 June What Zodiac symbol would you be represented by, The:?
+Twins
+10
+
+If You Were Born on: 06 March What Zodiac symbol would you be represented by, The:?
+Fish
+10
+
+If You Were Born on: 06 May What Zodiac symbol would you be represented by, The:?
+Bull
+10
+
+If You Were Born on: 06 November What Zodiac symbol would you be represented by, The:?
+Scorpion
+10
+
+If You Were Born on: 06 October What Zodiac symbol would you be represented by, The:?
+Scales
+10
+
+If You Were Born on: 06 September What Zodiac symbol would you be represented by, The:?
+Virgin
+10
+
+If You Were Born on: 07 April What Zodiac symbol would you be represented by, The:?
+Ram
+10
+
+If You Were Born on: 07 August What Zodiac symbol would you be represented by, The:?
+Lion
+10
+
+If You Were Born on: 07 December What Zodiac symbol would you be represented by, The:?
+Archer
+10
+
+If You Were Born on: 07 February What Zodiac symbol would you be represented by, The:?
+Water carrier
+10
+
+If You Were Born on: 07 January What Zodiac symbol would you be represented by, The:?
+Goat
+10
+
+If You Were Born on: 07 July What Zodiac symbol would you be represented by, The:?
+Crab
+10
+
+If You Were Born on: 07 June What Zodiac symbol would you be represented by, The:?
+Twins
+10
+
+If You Were Born on: 07 March What Zodiac symbol would you be represented by, The:?
+Fish
+10
+
+If You Were Born on: 07 May What Zodiac symbol would you be represented by, The:?
+Bull
+10
+
+If You Were Born on: 07 November What Zodiac symbol would you be represented by, The:?
+Scorpion
+10
+
+If You Were Born on: 07 October What Zodiac symbol would you be represented by, The:?
+Scales
+10
+
+If You Were Born on: 07 September What Zodiac symbol would you be represented by, The:?
+Virgin
+10
+
+If You Were Born on: 08 April What Zodiac symbol would you be represented by, The:?
+Ram
+10
+
+If You Were Born on: 08 August What Zodiac symbol would you be represented by, The:?
+Lion
+10
+
+If You Were Born on: 08 December What Zodiac symbol would you be represented by, The:?
+Archer
+10
+
+If You Were Born on: 08 February What Zodiac symbol would you be represented by, The:?
+Water carrier
+10
+
+If You Were Born on: 08 January What Zodiac symbol would you be represented by, The:?
+Goat
+10
+
+If You Were Born on: 08 July What Zodiac symbol would you be represented by, The:?
+Crab
+10
+
+If You Were Born on: 08 June What Zodiac symbol would you be represented by, The:?
+Twins
+10
+
+If You Were Born on: 08 March What Zodiac symbol would you be represented by, The:?
+Fish
+10
+
+If You Were Born on: 08 May What Zodiac symbol would you be represented by, The:?
+Bull
+10
+
+If You Were Born on: 08 November What Zodiac symbol would you be represented by, The:?
+Scorpion
+10
+
+If You Were Born on: 08 October What Zodiac symbol would you be represented by, The:?
+Scales
+10
+
+If You Were Born on: 08 September What Zodiac symbol would you be represented by, The:?
+Virgin
+10
+
+If You Were Born on: 09 April What Zodiac symbol would you be represented by, The:?
+Ram
+10
+
+If You Were Born on: 09 August What Zodiac symbol would you be represented by, The:?
+Lion
+10
+
+If You Were Born on: 09 December What Zodiac symbol would you be represented by, The:?
+Archer
+10
+
+If You Were Born on: 09 February What Zodiac symbol would you be represented by, The:?
+Water carrier
+10
+
+If You Were Born on: 09 January What Zodiac symbol would you be represented by, The:?
+Goat
+10
+
+If You Were Born on: 09 July What Zodiac symbol would you be represented by, The:?
+Crab
+10
+
+If You Were Born on: 09 June What Zodiac symbol would you be represented by, The:?
+Twins
+10
+
+If You Were Born on: 09 March What Zodiac symbol would you be represented by, The:?
+Fish
+10
+
+If You Were Born on: 09 May What Zodiac symbol would you be represented by, The:?
+Bull
+10
+
+If You Were Born on: 09 November What Zodiac symbol would you be represented by, The:?
+Scorpion
+10
+
+If You Were Born on: 09 October What Zodiac symbol would you be represented by, The:?
+Scales
+10
+
+If You Were Born on: 09 September What Zodiac symbol would you be represented by, The:?
+Virgin
+10
+
+If You Were Born on: 10 April What Zodiac symbol would you be represented by, The:?
+Ram
+10
+
+If You Were Born on: 10 August What Zodiac symbol would you be represented by, The:?
+Lion
+10
+
+If You Were Born on: 10 December What Zodiac symbol would you be represented by, The:?
+Archer
+10
+
+If You Were Born on: 10 February What Zodiac symbol would you be represented by, The:?
+Water carrier
+10
+
+If You Were Born on: 10 January What Zodiac symbol would you be represented by, The:?
+Goat
+10
+
+If You Were Born on: 10 July What Zodiac symbol would you be represented by, The:?
+Crab
+10
+
+If You Were Born on: 10 June What Zodiac symbol would you be represented by, The:?
+Twins
+10
+
+If You Were Born on: 10 March What Zodiac symbol would you be represented by, The:?
+Fish
+10
+
+If You Were Born on: 10 May What Zodiac symbol would you be represented by, The:?
+Bull
+10
+
+If You Were Born on: 10 November What Zodiac symbol would you be represented by, The:?
+Scorpion
+10
+
+If You Were Born on: 10 October What Zodiac symbol would you be represented by, The:?
+Scales
+10
+
+If You Were Born on: 10 September What Zodiac symbol would you be represented by, The:?
+Virgin
+10
+
+If You Were Born on: 11 April What Zodiac symbol would you be represented by, The:?
+Ram
+10
+
+If You Were Born on: 11 August What Zodiac symbol would you be represented by, The:?
+Lion
+10
+
+If You Were Born on: 11 December What Zodiac symbol would you be represented by, The:?
+Archer
+10
+
+If You Were Born on: 11 February What Zodiac symbol would you be represented by, The:?
+Water carrier
+10
+
+If You Were Born on: 11 January What Zodiac symbol would you be represented by, The:?
+Goat
+10
+
+If You Were Born on: 11 July What Zodiac symbol would you be represented by, The:?
+Crab
+10
+
+If You Were Born on: 11 June What Zodiac symbol would you be represented by, The:?
+Twins
+10
+
+If You Were Born on: 11 March What Zodiac symbol would you be represented by, The:?
+Fish
+10
+
+If You Were Born on: 11 May What Zodiac symbol would you be represented by, The:?
+Bull
+10
+
+If You Were Born on: 11 November What Zodiac symbol would you be represented by, The:?
+Scorpion
+10
+
+If You Were Born on: 11 October What Zodiac symbol would you be represented by, The:?
+Scales
+10
+
+If You Were Born on: 11 September What Zodiac symbol would you be represented by, The:?
+Virgin
+10
+
+If You Were Born on: 12 April What Zodiac symbol would you be represented by, The:?
+Ram
+10
+
+If You Were Born on: 12 August What Zodiac symbol would you be represented by, The:?
+Lion
+10
+
+If You Were Born on: 12 December What Zodiac symbol would you be represented by, The:?
+Archer
+10
+
+If You Were Born on: 12 February What Zodiac symbol would you be represented by, The:?
+Water carrier
+10
+
+If You Were Born on: 12 January What Zodiac symbol would you be represented by, The:?
+Goat
+10
+
+If You Were Born on: 12 July What Zodiac symbol would you be represented by, The:?
+Crab
+10
+
+If You Were Born on: 12 June What Zodiac symbol would you be represented by, The:?
+Twins
+10
+
+If You Were Born on: 12 March What Zodiac symbol would you be represented by, The:?
+Fish
+10
+
+If You Were Born on: 12 May What Zodiac symbol would you be represented by, The:?
+Bull
+10
+
+If You Were Born on: 12 November What Zodiac symbol would you be represented by, The:?
+Scorpion
+10
+
+If You Were Born on: 12 October What Zodiac symbol would you be represented by, The:?
+Scales
+10
+
+If You Were Born on: 12 September What Zodiac symbol would you be represented by, The:?
+Virgin
+10
+
+If You Were Born on: 13 April What Zodiac symbol would you be represented by, The:?
+Ram
+10
+
+If You Were Born on: 13 August What Zodiac symbol would you be represented by, The:?
+Lion
+10
+
+If You Were Born on: 13 December What Zodiac symbol would you be represented by, The:?
+Archer
+10
+
+If You Were Born on: 13 February What Zodiac symbol would you be represented by, The:?
+Water carrier
+10
+
+If You Were Born on: 13 January What Zodiac symbol would you be represented by, The:?
+Goat
+10
+
+If You Were Born on: 13 July What Zodiac symbol would you be represented by, The:?
+Crab
+10
+
+If You Were Born on: 13 June What Zodiac symbol would you be represented by, The:?
+Twins
+10
+
+If You Were Born on: 13 March What Zodiac symbol would you be represented by, The:?
+Fish
+10
+
+If You Were Born on: 13 May What Zodiac symbol would you be represented by, The:?
+Bull
+10
+
+If You Were Born on: 13 November What Zodiac symbol would you be represented by, The:?
+Scorpion
+10
+
+If You Were Born on: 13 October What Zodiac symbol would you be represented by, The:?
+Scales
+10
+
+If You Were Born on: 13 September What Zodiac symbol would you be represented by, The:?
+Virgin
+10
+
+If You Were Born on: 14 April What Zodiac symbol would you be represented by, The:?
+Ram
+10
+
+If You Were Born on: 14 August What Zodiac symbol would you be represented by, The:?
+Lion
+10
+
+If You Were Born on: 14 December What Zodiac symbol would you be represented by, The:?
+Archer
+10
+
+If You Were Born on: 14 February What Zodiac symbol would you be represented by, The:?
+Water carrier
+10
+
+If You Were Born on: 14 January What Zodiac symbol would you be represented by, The:?
+Goat
+10
+
+If You Were Born on: 14 July What Zodiac symbol would you be represented by, The:?
+Crab
+10
+
+If You Were Born on: 14 June What Zodiac symbol would you be represented by, The:?
+Twins
+10
+
+If You Were Born on: 14 March What Zodiac symbol would you be represented by, The:?
+Fish
+10
+
+If You Were Born on: 14 May What Zodiac symbol would you be represented by, The:?
+Bull
+10
+
+If You Were Born on: 14 November What Zodiac symbol would you be represented by, The:?
+Scorpion
+10
+
+If You Were Born on: 14 October What Zodiac symbol would you be represented by, The:?
+Scales
+10
+
+If You Were Born on: 14 September What Zodiac symbol would you be represented by, The:?
+Virgin
+10
+
+If You Were Born on: 15 April What Zodiac symbol would you be represented by, The:?
+Ram
+10
+
+If You Were Born on: 15 August What Zodiac symbol would you be represented by, The:?
+Lion
+10
+
+If You Were Born on: 15 December What Zodiac symbol would you be represented by, The:?
+Archer
+10
+
+If You Were Born on: 15 February What Zodiac symbol would you be represented by, The:?
+Water carrier
+10
+
+If You Were Born on: 15 January What Zodiac symbol would you be represented by, The:?
+Goat
+10
+
+If You Were Born on: 15 July What Zodiac symbol would you be represented by, The:?
+Crab
+10
+
+If You Were Born on: 15 June What Zodiac symbol would you be represented by, The:?
+Twins
+10
+
+If You Were Born on: 15 March What Zodiac symbol would you be represented by, The:?
+Fish
+10
+
+If You Were Born on: 15 May What Zodiac symbol would you be represented by, The:?
+Bull
+10
+
+If You Were Born on: 15 November What Zodiac symbol would you be represented by, The:?
+Scorpion
+10
+
+If You Were Born on: 15 October What Zodiac symbol would you be represented by, The:?
+Scales
+10
+
+If You Were Born on: 15 September What Zodiac symbol would you be represented by, The:?
+Virgin
+10
+
+If You Were Born on: 16 April What Zodiac symbol would you be represented by, The:?
+Ram
+10
+
+If You Were Born on: 16 August What Zodiac symbol would you be represented by, The:?
+Lion
+10
+
+If You Were Born on: 16 December What Zodiac symbol would you be represented by, The:?
+Archer
+10
+
+If You Were Born on: 16 February What Zodiac symbol would you be represented by, The:?
+Water carrier
+10
+
+If You Were Born on: 16 January What Zodiac symbol would you be represented by, The:?
+Goat
+10
+
+If You Were Born on: 16 July What Zodiac symbol would you be represented by, The:?
+Crab
+10
+
+If You Were Born on: 16 June What Zodiac symbol would you be represented by, The:?
+Twins
+10
+
+If You Were Born on: 16 March What Zodiac symbol would you be represented by, The:?
+Fish
+10
+
+If You Were Born on: 16 May What Zodiac symbol would you be represented by, The:?
+Bull
+10
+
+If You Were Born on: 16 November What Zodiac symbol would you be represented by, The:?
+Scorpion
+10
+
+If You Were Born on: 16 October What Zodiac symbol would you be represented by, The:?
+Scales
+10
+
+If You Were Born on: 16 September What Zodiac symbol would you be represented by, The:?
+Virgin
+10
+
+If You Were Born on: 17 April What Zodiac symbol would you be represented by, The:?
+Ram
+10
+
+If You Were Born on: 17 August What Zodiac symbol would you be represented by, The:?
+Lion
+10
+
+If You Were Born on: 17 December What Zodiac symbol would you be represented by, The:?
+Archer
+10
+
+If You Were Born on: 17 February What Zodiac symbol would you be represented by, The:?
+Water carrier
+10
+
+If You Were Born on: 17 January What Zodiac symbol would you be represented by, The:?
+Goat
+10
+
+If You Were Born on: 17 July What Zodiac symbol would you be represented by, The:?
+Crab
+10
+
+If You Were Born on: 17 June What Zodiac symbol would you be represented by, The:?
+Twins
+10
+
+If You Were Born on: 17 March What Zodiac symbol would you be represented by, The:?
+Fish
+10
+
+If You Were Born on: 17 May What Zodiac symbol would you be represented by, The:?
+Bull
+10
+
+If You Were Born on: 17 November What Zodiac symbol would you be represented by, The:?
+Scorpion
+10
+
+If You Were Born on: 17 October What Zodiac symbol would you be represented by, The:?
+Scales
+10
+
+If You Were Born on: 17 September What Zodiac symbol would you be represented by, The:?
+Virgin
+10
+
+If You Were Born on: 18 April What Zodiac symbol would you be represented by, The:?
+Ram
+10
+
+If You Were Born on: 18 August What Zodiac symbol would you be represented by, The:?
+Lion
+10
+
+If You Were Born on: 18 December What Zodiac symbol would you be represented by, The:?
+Archer
+10
+
+If You Were Born on: 18 February What Zodiac symbol would you be represented by, The:?
+Water carrier
+10
+
+If You Were Born on: 18 January What Zodiac symbol would you be represented by, The:?
+Goat
+10
+
+If You Were Born on: 18 July What Zodiac symbol would you be represented by, The:?
+Crab
+10
+
+If You Were Born on: 18 June What Zodiac symbol would you be represented by, The:?
+Twins
+10
+
+If You Were Born on: 18 March What Zodiac symbol would you be represented by, The:?
+Fish
+10
+
+If You Were Born on: 18 May What Zodiac symbol would you be represented by, The:?
+Bull
+10
+
+If You Were Born on: 18 November What Zodiac symbol would you be represented by, The:?
+Scorpion
+10
+
+If You Were Born on: 18 October What Zodiac symbol would you be represented by, The:?
+Scales
+10
+
+If You Were Born on: 18 September What Zodiac symbol would you be represented by, The:?
+Virgin
+10
+
+If You Were Born on: 19 April What Zodiac symbol would you be represented by, The:?
+Ram
+10
+
+If You Were Born on: 19 August What Zodiac symbol would you be represented by, The:?
+Lion
+10
+
+If You Were Born on: 19 December What Zodiac symbol would you be represented by, The:?
+Archer
+10
+
+If You Were Born on: 19 February What Zodiac symbol would you be represented by, The:?
+Fish
+10
+
+If You Were Born on: 19 January What Zodiac symbol would you be represented by, The:?
+Goat
+10
+
+If You Were Born on: 19 July What Zodiac symbol would you be represented by, The:?
+Crab
+10
+
+If You Were Born on: 19 June What Zodiac symbol would you be represented by, The:?
+Twins
+10
+
+If You Were Born on: 19 March What Zodiac symbol would you be represented by, The:?
+Fish
+10
+
+If You Were Born on: 19 May What Zodiac symbol would you be represented by, The:?
+Bull
+10
+
+If You Were Born on: 19 November What Zodiac symbol would you be represented by, The:?
+Scorpion
+10
+
+If You Were Born on: 19 October What Zodiac symbol would you be represented by, The:?
+Scales
+10
+
+If You Were Born on: 19 September What Zodiac symbol would you be represented by, The:?
+Virgin
+10
+
+If You Were Born on: 20 April What Zodiac symbol would you be represented by, The:?
+Bull
+10
+
+If You Were Born on: 20 August What Zodiac symbol would you be represented by, The:?
+Lion
+10
+
+If You Were Born on: 20 December What Zodiac symbol would you be represented by, The:?
+Archer
+10
+
+If You Were Born on: 20 February What Zodiac symbol would you be represented by, The:?
+Fish
+10
+
+If You Were Born on: 20 January What Zodiac symbol would you be represented by, The:?
+Water carrier
+10
+
+If You Were Born on: 20 July What Zodiac symbol would you be represented by, The:?
+Crab
+10
+
+If You Were Born on: 20 June What Zodiac symbol would you be represented by, The:?
+Twins
+10
+
+If You Were Born on: 20 March What Zodiac symbol would you be represented by, The:?
+Fish
+10
+
+If You Were Born on: 20 May What Zodiac symbol would you be represented by, The:?
+Bull
+10
+
+If You Were Born on: 20 November What Zodiac symbol would you be represented by, The:?
+Scorpion
+10
+
+If You Were Born on: 20 October What Zodiac symbol would you be represented by, The:?
+Scales
+10
+
+If You Were Born on: 20 September What Zodiac symbol would you be represented by, The:?
+Virgin
+10
+
+If You Were Born on: 21 April What Zodiac symbol would you be represented by, The:?
+Bull
+10
+
+If You Were Born on: 21 August What Zodiac symbol would you be represented by, The:?
+Lion
+10
+
+If You Were Born on: 21 December What Zodiac symbol would you be represented by, The:?
+Archer
+10
+
+If You Were Born on: 21 February What Zodiac symbol would you be represented by, The:?
+Fish
+10
+
+If You Were Born on: 21 January What Zodiac symbol would you be represented by, The:?
+Water carrier
+10
+
+If You Were Born on: 21 July What Zodiac symbol would you be represented by, The:?
+Crab
+10
+
+If You Were Born on: 21 June What Zodiac symbol would you be represented by, The:?
+Twins
+10
+
+If You Were Born on: 21 March What Zodiac symbol would you be represented by, The:?
+Ram
+10
+
+If You Were Born on: 21 May What Zodiac symbol would you be represented by, The:?
+Twins
+10
+
+If You Were Born on: 21 November What Zodiac symbol would you be represented by, The:?
+Scorpion
+10
+
+If You Were Born on: 21 October What Zodiac symbol would you be represented by, The:?
+Scales
+10
+
+If You Were Born on: 21 September What Zodiac symbol would you be represented by, The:?
+Virgin
+10
+
+If You Were Born on: 22 April What Zodiac symbol would you be represented by, The:?
+Bull
+10
+
+If You Were Born on: 22 August What Zodiac symbol would you be represented by, The:?
+Lion
+10
+
+If You Were Born on: 22 December What Zodiac symbol would you be represented by, The:?
+Goat
+10
+
+If You Were Born on: 22 February What Zodiac symbol would you be represented by, The:?
+Fish
+10
+
+If You Were Born on: 22 January What Zodiac symbol would you be represented by, The:?
+Water carrier
+10
+
+If You Were Born on: 22 July What Zodiac symbol would you be represented by, The:?
+Crab
+10
+
+If You Were Born on: 22 June What Zodiac symbol would you be represented by, The:?
+Crab
+10
+
+If You Were Born on: 22 March What Zodiac symbol would you be represented by, The:?
+Ram
+10
+
+If You Were Born on: 22 May What Zodiac symbol would you be represented by, The:?
+Twins
+10
+
+If You Were Born on: 22 November What Zodiac symbol would you be represented by, The:?
+Scorpion
+10
+
+If You Were Born on: 22 October What Zodiac symbol would you be represented by, The:?
+Scales
+10
+
+If You Were Born on: 22 September What Zodiac symbol would you be represented by, The:?
+Virgin
+10
+
+If You Were Born on: 23 April What Zodiac symbol would you be represented by, The:?
+Bull
+10
+
+If You Were Born on: 23 August What Zodiac symbol would you be represented by, The:?
+Virgin
+10
+
+If You Were Born on: 23 December What Zodiac symbol would you be represented by, The:?
+Goat
+10
+
+If You Were Born on: 23 February What Zodiac symbol would you be represented by, The:?
+Fish
+10
+
+If You Were Born on: 23 January What Zodiac symbol would you be represented by, The:?
+Water carrier
+10
+
+If You Were Born on: 23 July What Zodiac symbol would you be represented by, The:?
+Lion
+10
+
+If You Were Born on: 23 June What Zodiac symbol would you be represented by, The:?
+Crab
+10
+
+If You Were Born on: 23 March What Zodiac symbol would you be represented by, The:?
+Ram
+10
+
+If You Were Born on: 23 May What Zodiac symbol would you be represented by, The:?
+Twins
+10
+
+If You Were Born on: 23 November What Zodiac symbol would you be represented by, The:?
+Archer
+10
+
+If You Were Born on: 23 October What Zodiac symbol would you be represented by, The:?
+Scales
+10
+
+If You Were Born on: 23 September What Zodiac symbol would you be represented by, The:?
+Scales
+10
+
+If You Were Born on: 24 April What Zodiac symbol would you be represented by, The:?
+Bull
+10
+
+If You Were Born on: 24 August What Zodiac symbol would you be represented by, The:?
+Virgin
+10
+
+If You Were Born on: 24 December What Zodiac symbol would you be represented by, The:?
+Goat
+10
+
+If You Were Born on: 24 February What Zodiac symbol would you be represented by, The:?
+Fish
+10
+
+If You Were Born on: 24 January What Zodiac symbol would you be represented by, The:?
+Water carrier
+10
+
+If You Were Born on: 24 July What Zodiac symbol would you be represented by, The:?
+Lion
+10
+
+If You Were Born on: 24 June What Zodiac symbol would you be represented by, The:?
+Crab
+10
+
+If You Were Born on: 24 March What Zodiac symbol would you be represented by, The:?
+Ram
+10
+
+If You Were Born on: 24 May What Zodiac symbol would you be represented by, The:?
+Twins
+10
+
+If You Were Born on: 24 November What Zodiac symbol would you be represented by, The:?
+Archer
+10
+
+If You Were Born on: 24 October What Zodiac symbol would you be represented by, The:?
+Scorpion
+10
+
+If You Were Born on: 24 September What Zodiac symbol would you be represented by, The:?
+Scales
+10
+
+If You Were Born on: 25 April What Zodiac symbol would you be represented by, The:?
+Bull
+10
+
+If You Were Born on: 25 August What Zodiac symbol would you be represented by, The:?
+Virgin
+10
+
+If You Were Born on: 25 December What Zodiac symbol would you be represented by, The:?
+Goat
+10
+
+If You Were Born on: 25 February What Zodiac symbol would you be represented by, The:?
+Fish
+10
+
+If You Were Born on: 25 January What Zodiac symbol would you be represented by, The:?
+Water carrier
+10
+
+If You Were Born on: 25 July What Zodiac symbol would you be represented by, The:?
+Lion
+10
+
+If You Were Born on: 25 June What Zodiac symbol would you be represented by, The:?
+Crab
+10
+
+If You Were Born on: 25 March What Zodiac symbol would you be represented by, The:?
+Ram
+10
+
+If You Were Born on: 25 May What Zodiac symbol would you be represented by, The:?
+Twins
+10
+
+If You Were Born on: 25 November What Zodiac symbol would you be represented by, The:?
+Archer
+10
+
+If You Were Born on: 25 October What Zodiac symbol would you be represented by, The:?
+Scorpion
+10
+
+If You Were Born on: 25 September What Zodiac symbol would you be represented by, The:?
+Scales
+10
+
+If You Were Born on: 26 April What Zodiac symbol would you be represented by, The:?
+Bull
+10
+
+If You Were Born on: 26 August What Zodiac symbol would you be represented by, The:?
+Virgin
+10
+
+If You Were Born on: 26 December What Zodiac symbol would you be represented by, The:?
+Goat
+10
+
+If You Were Born on: 26 February What Zodiac symbol would you be represented by, The:?
+Fish
+10
+
+If You Were Born on: 26 January What Zodiac symbol would you be represented by, The:?
+Water carrier
+10
+
+If You Were Born on: 26 July What Zodiac symbol would you be represented by, The:?
+Lion
+10
+
+If You Were Born on: 26 June What Zodiac symbol would you be represented by, The:?
+Crab
+10
+
+If You Were Born on: 26 March What Zodiac symbol would you be represented by, The:?
+Ram
+10
+
+If You Were Born on: 26 May What Zodiac symbol would you be represented by, The:?
+Twins
+10
+
+If You Were Born on: 26 November What Zodiac symbol would you be represented by, The:?
+Archer
+10
+
+If You Were Born on: 26 October What Zodiac symbol would you be represented by, The:?
+Scorpion
+10
+
+If You Were Born on: 26 September What Zodiac symbol would you be represented by, The:?
+Scales
+10
+
+If You Were Born on: 27 April What Zodiac symbol would you be represented by, The:?
+Bull
+10
+
+If You Were Born on: 27 August What Zodiac symbol would you be represented by, The:?
+Virgin
+10
+
+If You Were Born on: 27 December What Zodiac symbol would you be represented by, The:?
+Goat
+10
+
+If You Were Born on: 27 February What Zodiac symbol would you be represented by, The:?
+Fish
+10
+
+If You Were Born on: 27 January What Zodiac symbol would you be represented by, The:?
+Water carrier
+10
+
+If You Were Born on: 27 July What Zodiac symbol would you be represented by, The:?
+Lion
+10
+
+If You Were Born on: 27 June What Zodiac symbol would you be represented by, The:?
+Crab
+10
+
+If You Were Born on: 27 March What Zodiac symbol would you be represented by, The:?
+Ram
+10
+
+If You Were Born on: 27 May What Zodiac symbol would you be represented by, The:?
+Twins
+10
+
+If You Were Born on: 27 November What Zodiac symbol would you be represented by, The:?
+Archer
+10
+
+If You Were Born on: 27 October What Zodiac symbol would you be represented by, The:?
+Scorpion
+10
+
+If You Were Born on: 27 September What Zodiac symbol would you be represented by, The:?
+Scales
+10
+
+If You Were Born on: 28 April What Zodiac symbol would you be represented by, The:?
+Bull
+10
+
+If You Were Born on: 28 August What Zodiac symbol would you be represented by, The:?
+Virgin
+10
+
+If You Were Born on: 28 December What Zodiac symbol would you be represented by, The:?
+Goat
+10
+
+If You Were Born on: 28 February What Zodiac symbol would you be represented by, The:?
+Fish
+10
+
+If You Were Born on: 28 January What Zodiac symbol would you be represented by, The:?
+Water carrier
+10
+
+If You Were Born on: 28 July What Zodiac symbol would you be represented by, The:?
+Lion
+10
+
+If You Were Born on: 28 June What Zodiac symbol would you be represented by, The:?
+Crab
+10
+
+If You Were Born on: 28 March What Zodiac symbol would you be represented by, The:?
+Ram
+10
+
+If You Were Born on: 28 May What Zodiac symbol would you be represented by, The:?
+Twins
+10
+
+If You Were Born on: 28 November What Zodiac symbol would you be represented by, The:?
+Archer
+10
+
+If You Were Born on: 28 October What Zodiac symbol would you be represented by, The:?
+Scorpion
+10
+
+If You Were Born on: 28 September What Zodiac symbol would you be represented by, The:?
+Scales
+10
+
+If You Were Born on: 29 April What Zodiac symbol would you be represented by, The:?
+Bull
+10
+
+If You Were Born on: 29 August What Zodiac symbol would you be represented by, The:?
+Virgin
+10
+
+If You Were Born on: 29 December What Zodiac symbol would you be represented by, The:?
+Goat
+10
+
+If You Were Born on: 29 February What Zodiac symbol would you be represented by, The:?
+Fish
+10
+
+If You Were Born on: 29 January What Zodiac symbol would you be represented by, The:?
+Water carrier
+10
+
+If You Were Born on: 29 July What Zodiac symbol would you be represented by, The:?
+Lion
+10
+
+If You Were Born on: 29 June What Zodiac symbol would you be represented by, The:?
+Crab
+10
+
+If You Were Born on: 29 March What Zodiac symbol would you be represented by, The:?
+Ram
+10
+
+If You Were Born on: 29 May What Zodiac symbol would you be represented by, The:?
+Twins
+10
+
+If You Were Born on: 29 November What Zodiac symbol would you be represented by, The:?
+Archer
+10
+
+If You Were Born on: 29 October What Zodiac symbol would you be represented by, The:?
+Scorpion
+10
+
+If You Were Born on: 29 September What Zodiac symbol would you be represented by, The:?
+Scales
+10
+
+If You Were Born on: 30 April What Zodiac symbol would you be represented by, The:?
+Bull
+10
+
+If You Were Born on: 30 August What Zodiac symbol would you be represented by, The:?
+Virgin
+10
+
+If You Were Born on: 30 December What Zodiac symbol would you be represented by, The:?
+Goat
+10
+
+If You Were Born on: 30 January What Zodiac symbol would you be represented by, The:?
+Water carrier
+10
+
+If You Were Born on: 30 July What Zodiac symbol would you be represented by, The:?
+Lion
+10
+
+If You Were Born on: 30 June What Zodiac symbol would you be represented by, The:?
+Crab
+10
+
+If You Were Born on: 30 March What Zodiac symbol would you be represented by, The:?
+Ram
+10
+
+If You Were Born on: 30 May What Zodiac symbol would you be represented by, The:?
+Twins
+10
+
+If You Were Born on: 30 November What Zodiac symbol would you be represented by, The:?
+Archer
+10
+
+If You Were Born on: 30 October What Zodiac symbol would you be represented by, The:?
+Scorpion
+10
+
+If You Were Born on: 30 September What Zodiac symbol would you be represented by, The:?
+Scales
+10
+
+If You Were Born on: 31 August What Zodiac symbol would you be represented by, The:?
+Virgin
+10
+
+If You Were Born on: 31 December What Zodiac symbol would you be represented by, The:?
+Goat
+10
+
+If You Were Born on: 31 January What Zodiac symbol would you be represented by, The:?
+Water carrier
+10
+
+If You Were Born on: 31 July What Zodiac symbol would you be represented by, The:?
+Lion
+10
+
+If You Were Born on: 31 March What Zodiac symbol would you be represented by, The:?
+Ram
+10
+
+If You Were Born on: 31 May What Zodiac symbol would you be represented by, The:?
+Twins
+10
+
+If You Were Born on: 31 October What Zodiac symbol would you be represented by, The:?
+Scorpion
+10
+
+If you were going to a chiropractor for treatment, what would be affected?
+Backbone
+10
+
+If you were in the city of Copenhagen, what hemisphere would you be in?
+Northern
+10
+
+If you were on the island of Cape Verde, what ocean would you be surrounded by?
+Atlantic
+10
+
+If you were relaxing in the Piazza San Marco, what city would you be in?
+Venice
+10
+
+If you were to fly due West from New York, what would be the next country you would fly over?
+Japan
+10
+
+If you were turning meat into a daube what would you be doing with it?
+Braising it
+10
+
+If you were using English Bond or Flemish bond what would you be doing?
+Bricklaying
+10
+
+If you were waiting in yonkers, in which us state would you be?
+New york
+10
+
+If you would like to make a ____ happy, give him a horse-meat steak
+Siberian
+10
+
+If you yelled for 8 years, 7 months and 6 days, you would have produced enough sound energy to heat?
+One cup of coffee
+10
+
+If you yelled for 8 years, 7 months and six days, you would have produced enough sound energy to heat one cup of____
+Coffee
+10
+
+If you're going to san francisco, what should you wear?
+Flowers in your hair
+10
+
+If your eyes are six feet above the surface of the ocean, the horizon wil be about ____ statute miles away
+Three
+10
+
+If your face was rugose, what would it be?
+Wrinkled
+10
+
+If your hobby was topiary on what material or substance would you practice your art?
+Hedges and shrubs
+10
+
+If your mouth were completely dry, you wouldn't be able to ____ anything
+Taste
+10
+
+If your pay is in austral, what country are you in?
+Argentina
+10
+
+Ignatz mouse was whose brick throwing friend?
+Krazy kat
+10
+
+Igneous, sedimentary and metamorphic are all types of what?
+Rock
+10
+
+Iguaca National Park lies on the border between Argentina and which other country?
+Brazil
+10
+
+Ii what is the round fruit of the sycamore tree called?
+A buttonball
+10
+
+Ilex is the botanical name of which shrub?
+Holly
+10
+
+Illnesses in which the immune system reacts to normal components of the body as if they were foreign substances and produces antibodies against them?
+Autoimmune diseases
+10
+
+Imagination is more important than knowledge, for knowledge is limited, while imagination embraces the entire world.' Who quoted this?
+Einstein
+10
+
+Immunity of the communications media including newspapers, books, magazines, radio, and television from government control or censorship?
+Freedom of the press
+10
+
+Impaired normal blood clotting is the main symptom of which disease?
+Haemophilia
+10
+
+Imperial Units were phased out in England in 1999, which seven Imperial Units were authorised for retention as specialist terms?
+Troy ounce
+10
+
+Imperial, buck, and luna are types of ____
+Moths
+10
+
+Implement for clearing up dog excretment?
+Pooper scooper
+10
+
+Impose and collect a tax toll or fine?
+Levy
+10
+
+Impurities, particularly of which compound, according to modern chemists, gives amethyst its violet or blue colouration?
+Iron oxide
+10
+
+In ____ - 3 men were hung for the murder of Sir Edmund Berry at Greenbury Hill, their last names were Green, Berry , and Hill
+1911
+10
+
+In ____ exists a tribe of tall white people whose parrots are a warning sign against intruders
+Irian jaya
+10
+
+In ____ of American households, women manage the money and pay the bills
+75%
+10
+
+In ____, at only 7 years old, Charles Sauson inherited the post of official executioner
+1726
+10
+
+In ____, David Atchison became President of the United States for just one day, and he spent most of the day sleeping
+1849
+10
+
+In ____, Namco released Pac-Man, the most popular arcade game of all time
+1979
+10
+
+In 'coronation street', who is ken and denise's son?
+Daniel
+10
+
+In 'Gone With the Wind', Scarlett regains her wealth by investing in what type of business?
+Sawmill
+10
+
+In 'gone with the wind', what does scarlett invest in to regain her former wealth?
+A sawmill
+10
+
+In 'happy day's' what is ralph's last name?
+Malph
+10
+
+In 'les miserables', jean valjean's criminal number is the same as what character in 'the simpsons'?
+Sideshow bob
+10
+
+In 'monopoly', what phrase is printed above the name of the property on each deed?
+Title deed
+10
+
+In 'mta' the kingston trio sang of poor charlie being stuck in the subway system of what city?
+Boston
+10
+
+In 'my favourite martian', who did ray walston play?
+Uncle tim
+10
+
+In 'peanuts', who is woodstock's beagle friend?
+Snoopy
+10
+
+In 'peter pan', what was wendy's surname?
+Darling
+10
+
+In 'Romeo & Juliet', about what was Mercutio's long monologue?
+Queen mab
+10
+
+In 'romeo and juliet', who first finds out that juliet is 'dead'?
+Nurse
+10
+
+In 'romeo and juliet', who said 'i have a faint cold fear thrills through my veins'?
+Juliet
+10
+
+In 'romeo and juliet', who says 'i do but keep the peace put up thy sword, or manage it to part these men with me'?
+Benvolio
+10
+
+In 'romeo and juliet', who says 'what must be shall be'?
+Juliet
+10
+
+In 'romeo and juliet', why couldn't the nurse tell juliet the news of her meeting with romeo immediately?
+She was out of breath
+10
+
+In 'snow white and the seven dwarfs', what was the occupation of the seven dwarfs?
+Miners
+10
+
+In 'Star Trek' jean ____ Picard
+Luc
+10
+
+In 'Star Trek', what is data's rank?
+Lieutenant commander
+10
+
+In 'Star Trek', who was the captain of the 'enterprise c'?
+Rachel garret
+10
+
+In 'Star Wars, four people played darth vader David prowse was his body, james earl jones did the voice, sebastian shaw was his face and a fourth person did the ____
+Breathing
+10
+
+In 'Star Wars, james earl jones was darth vader's ____
+Voice
+10
+
+In 'Star Wars' David prowse was darth vader's ____
+Body
+10
+
+In 'Star Wars', sebastian shaw was darth vader's ____
+Face
+10
+
+In 'Star Wars', who was c3p0's sidekick?
+R2d2
+10
+
+In 'Star Wars', who was darth vader's body?
+David prowse
+10
+
+In 'Star Wars', who was darth vader's face?
+Sebastian shaw
+10
+
+In 'Star Wars', who was darth vader's voice?
+James earl jones
+10
+
+In 'startrek', who did leonard nimoy play?
+Dr spock
+10
+
+In 'startrek', who did william shatner play?
+Captain james t kirk
+10
+
+In 'startrek', who played captain james t kirk?
+William shatner
+10
+
+In 'startrek', who played dr spock?
+Leonard nimoy
+10
+
+In 'The Bullitt' what car did Steve McQueen drive?
+Ford mustang
+10
+
+In 'the flintstones' what is fred and wilma's daughter's name?
+Pebbles
+10
+
+In 'the flintstones' who are pebble's parents?
+Fred and wilma flintstone
+10
+
+In 'the great escape', how many finally made it to freedom?
+Three
+10
+
+In 'The Simpsons' cartoon series what is the name of the baby?
+Maggie
+10
+
+In 'the simpsons', sideshow bob's criminal number is the same as what character in 'les miserables'?
+Jean valjean
+10
+
+In 'the sleeping beauty', what is the princess' name?
+Aurora
+10
+
+In 'the thousand and one nights', which king marries a new woman each night and has her killed in the morning?
+Schahriah
+10
+
+In 'to kill a mockingbird' who played the role of boo radley?
+Robert duvall
+10
+
+In 'war of the worlds', from which planet did the invaders come?
+Mars
+10
+
+In 10 B.C. ____ 4th Roman emperor (41-54 AD), born in
+Claudius
+10
+
+In 10 B.C. Claudius ____ Roman emperor (41-54 AD), born in
+4th
+10
+
+In 1002 English king Ethelred II launches massacre of ____ settlers
+Danish
+10
+
+In 1016 ____ defeat Saxons at Battle of Assandun (Ashingdon)
+Danes
+10
+
+In 1016 Danes defeat ____ at Battle of Assandun (Ashingdon)
+Saxons
+10
+
+In 1016 Danes defeat Saxons at Battle of ____ (Ashingdon)
+Assandun
+10
+
+In 1017____ , Holy Roman emperor (1046-56)
+Henry iii
+10
+
+In 1054 Brightest known super-nova (____ Nebula) starts shining (23 days)
+Crab
+10
+
+In 1054 Brightest known super-nova (Crab Nebula) starts shining (____ days)
+23
+10
+
+In 1057 Macbeth, King of Scotland, slain by the son of King____
+Duncan
+10
+
+In 1057 Macbeth, King of____ , slain by the son of King Duncan
+Scotland
+10
+
+In 1057____ , King of Scotland, slain by the son of King Duncan
+Macbeth
+10
+
+In 106 B.C. Cicero, ____ statesman, born in
+Roman
+10
+
+In 106 B.C. Pompey (____ Pompeius Magnus) Rome, warrior, born in
+Gnaeus
+10
+
+In 106 B.C. Pompey (Gnaeus ____ Magnus) Rome, warrior, born in
+Pompeius
+10
+
+In 106 B.C. Pompey (Gnaeus Pompeius____ ) Rome, warrior, born in
+Magnus
+10
+
+In 1066 ____ the Conqueror lands in England
+William
+10
+
+In 1066 Battle of Hastings, in which ____ the Conqueror wins England
+William
+10
+
+In 1066 Battle of Hastings, in which William the ____ wins England
+Conqueror
+10
+
+In 1066 Battle of____ , in which William the Conqueror wins England
+Hastings
+10
+
+In 1066 St. Edward the____ , died
+Confessor
+10
+
+In 1066 William the ____ crowned William I of England
+Conqueror
+10
+
+In 1066 William the ____ lands in England
+Conqueror
+10
+
+In 1085 Alfonso VI of Castile captured____ , Spain, and brought the Moorish center of science into Christian hands
+Toledo
+10
+
+In 1085 St____ , pope (1073-85), dies (birth date unknown)
+Gregory vii
+10
+
+In 1087 ____ The Conqueror, King of England and Duke of Normandy, dies
+William i
+10
+
+In 1087 William I The Conqueror, King of England and Duke of____ , dies
+Normandy
+10
+
+In 1090 the chinese built the Cosmic Engine, what was it?
+Mechanical clock
+10
+
+In 1100 ____ 1st antipope (1084-1100), dies (birth date unknown)
+Clement iii
+10
+
+In 1113 ____ Plantagenet France, conquered Normandy, born in
+Geoffrey
+10
+
+In 1113 Geoffrey ____ France, conquered Normandy, born in
+Plantagenet
+10
+
+In 1113 Geoffrey Plantagenet France, conquered____ , born in
+Normandy
+10
+
+In 1143 John II ____ emperor, dies in an accident
+Byzantine
+10
+
+In 1157 ____ [Richard the Lion Hearted], King of England (1189-99), born in
+Richard i
+10
+
+In 1157 Richard I [Richard the____ ], King of England (1189-99), born in
+Lion hearted
+10
+
+In 1159 ____ only English pope (1154-59), dies (birth date unknown)
+Adrian iv
+10
+
+In 1159 ____ only English pope (1154-59), dies
+Adrian iv
+10
+
+In 1165 ____ Augustus 1st great Capetian king of France (1179-1223), born in
+Philip ii
+10
+
+In 1165 Philip II ____ 1st great Capetian king of France (1179-1223), born in
+Augustus
+10
+
+In 1165 Philip II Augustus 1st great ____ king of France (1179-1223), born in
+Capetian
+10
+
+In 1170 Thomas Beckett, archbishop, ____ by 4 knights of King Henry II
+Assassinated
+10
+
+In 1178 Five ____ monks report something exploding on the Moon (only known observation). These monks have NO winery of their own
+Canterbury
+10
+
+In 1181 ____ observed by Chinese and Japanese astronomers
+Supernova
+10
+
+In 1181 Supernova observed by ____ and Japanese astronomers
+Chinese
+10
+
+In 1181 Supernova observed by Chinese and ____ astronomers
+Japanese
+10
+
+In 1181 Supernova seen in____
+Cassiopia
+10
+
+In 1189 ____ King of England (1154-89), dies at 56
+Henry ii
+10
+
+In 1189 England's King ____ (the Lion-Hearted) crowned in Westminster
+Richard i
+10
+
+In 1189 England's King Richard I (the Lion-Hearted) crowned in____
+Westminster
+10
+
+In 1189 Henry II King of England (1154-89), dies at?
+56
+10
+
+In 12 B.C. ____ (Gaius Caesar), 3rd Roman emperor (37-41 AD), born in
+Caligula
+10
+
+In 1207____ , king of England (1216-72)
+Henry iii
+10
+
+In 121 Marcus ____ 16th Roman emperor (161-80), philosopher, born in
+Aurelius
+10
+
+In 1212 Battle of Las Navas de Tolosa; end of ____ power in Spain
+Moslem
+10
+
+In 1212 Battle of Las Navas de Tolosa; end of Moslem power in____
+Spain
+10
+
+In 1212 Battle of____ ; end of Moslem power in Spain
+Las navas de tolosa
+10
+
+In 1214 Louis IX, king of ____ (1226-70), born in
+France
+10
+
+In 1215 King ____ signs Magna Carta at Runnymede, England
+John
+10
+
+In 1215 King John signs Magna Carta at____ , England
+Runnymede
+10
+
+In 1216 Innocent III pope, dies at ____
+54
+10
+
+In 1227 ____ Khan Mongol conqueror, died
+Genghis
+10
+
+In 1227 Genghis ____ Mongol conqueror, died
+Khan
+10
+
+In 1227 Genghis Khan ____ conqueror, died
+Mongol
+10
+
+In 1237 St Sava, son of ____ 's king, dies
+Serbia
+10
+
+In 1242 Alexander ____ of Novgorod defeats Teutonic Knights
+Nevsky
+10
+
+In 1248 Construction of ____ Cathedral is begun
+Cologne
+10
+
+In 1256 William of ____ Holy Roman emperor, dies at about 28
+Holland
+10
+
+In 126 ____ Helvius Pertinax Roman emperor (193 AD), born in
+Publius
+10
+
+In 126 Publius ____ Pertinax Roman emperor (193 AD), born in
+Helvius
+10
+
+In 126 Publius Helvius ____ Roman emperor (193 AD), born in
+Pertinax
+10
+
+In 1265 ____ de Montfort, English baron, dies in battle
+Simon
+10
+
+In 1265 1st ____ Parliament formally convened (some authorities)
+English
+10
+
+In 1265 1st English ____ called into session by Earl of Leicester
+Parliament
+10
+
+In 1265 Simon de Montfort, English baron, dies in____
+Battle
+10
+
+In 1265 Simon de____ , English baron, dies in battle
+Montfort
+10
+
+In 1270 ____ and last crusade is launched
+8th
+10
+
+In 1271 ____ king of Bohemia and Poland (1278-1305), born in
+Wenceslas ii
+10
+
+In 1271 Wenceslas II king of ____ and Poland (1278-1305), born in
+Bohemia
+10
+
+In 1271 Wenceslas II king of Bohemia and ____ (1278-1305), born in
+Poland
+10
+
+In 1274 Robert the ____ Scotland, King (1328-1329), born in
+Bruce
+10
+
+In 1284 Alfonso X ____ king (Castile & Leon), dies at 62
+Spanish
+10
+
+In 1284 Edward II, king of ____ (1307-27), born in
+England
+10
+
+In 1285 St. Thorfinn, ____ , Died
+Norwegian bishop
+10
+
+In 1288 It was made legal in ____ for women to propose to men
+Scotland
+10
+
+In 1289 ____ (the Stubborn), king of France (1314-16)
+Louis x
+10
+
+In 1290 ____ Baggins (in Shire Reconning), born in
+Bilbo
+10
+
+In 1290 Bilbo ____ (in Shire Reconning), born in
+Baggins
+10
+
+In 1291 Everlasting League forms, basis of ____ Confederation (Nat'l Day)
+Swiss
+10
+
+In 1292 Saidi, great ____ poet (Orchard, Rose Garden) dies
+Persian
+10
+
+In 1298 ____ defeat Scots at Battle of Falkirk
+English
+10
+
+In 1298 English defeat ____ at Battle of Falkirk
+Scots
+10
+
+In 1298 English defeat Scots at Battle of____
+Falkirk
+10
+
+In 1302 According to____ , this is Romeo and Juliet's wedding day
+Shakespeare
+10
+
+In 1314 Clement V pope (1305-14) who moved papacy to ____ , dies
+Avignon
+10
+
+In 1314____ , under King Robert I, defeats England
+Scotland
+10
+
+In 1321 Death of ____ Alighieri, author of the Divine Comedy
+Dante
+10
+
+In 1321 Death of Dante____ , author of the Divine Comedy
+Alighieri
+10
+
+In 1326 Louis I (the Great), king of ____ (1342-82), Poland (1370-82)
+Hungary
+10
+
+In 1327 ____ king of England (1307-1327), dies at 43
+Edward ii
+10
+
+In 1327 Edward II king of England (1307-1327), dies at____
+43
+10
+
+In 1330 ____ the black prince, prince of Wales (1343-1376), born in
+Edward
+10
+
+In 1332 Battle of ____ Moor (in Scotland)
+Dupplin
+10
+
+In 1332 Battle of ____ Moor; Scottish dynastic battle
+Dupplin
+10
+
+In 1332 Battle of Dupplin Moor; ____ dynastic battle
+Scottish
+10
+
+In 1338 Charles V (the Wise), king of ____ (1364-80), born in
+France
+10
+
+In 1346 English longbows defeat French in Battle of____
+Crecy
+10
+
+In 1356 ____ defeat French at Battle of Poitiers
+English
+10
+
+In 1356 English defeat ____ at Battle of Poitiers
+French
+10
+
+In 1356 English defeat French at Battle of____
+Poitiers
+10
+
+In 1361 bc, who became the king of egypt at the age of nine?
+Tutankhamen
+10
+
+In 1364 Battle of Auray, ____ forces defeat French at Brittany
+English
+10
+
+In 1364 Battle of Auray, English forces defeat ____ at Brittany
+French
+10
+
+In 1364 Battle of Auray, English forces defeat French at____
+Brittany
+10
+
+In 1364 Battle of____ , English forces defeat French at Brittany
+Auray
+10
+
+In 1367 (England)____ , Bordeaux, France, king of England (1377-99), born in
+Richard ii
+10
+
+In 1368 Charles VI [the Well-Beloved], king of ____ (1380-1422), born in
+France
+10
+
+In 1370 Frederick I the ____ , elector of Saxony, born in
+Warlike
+10
+
+In 1373 Anglo____ Treaty of Alliance (world's oldest) signed
+Portuguese
+10
+
+In 1381 ____ abbess/reformer (Poor Clares), born in
+St colette
+10
+
+In 1385 ____ defeat Castilians at Aljubarrota, retain independence
+Portuguese
+10
+
+In 1385 Portuguese defeat ____ at Aljubarrota, retain independence
+Castilians
+10
+
+In 1385 Portuguese defeat Castilians at____ , retain independence
+Aljubarrota
+10
+
+In 1387 Heathen ____ banned in Poland
+Religions
+10
+
+In 1387____ , king of England (1413-22), born in
+Henry v
+10
+
+In 1396 Philip the Good Duke of____ , born in
+Burgundy
+10
+
+In 1398 ____ Lopez, Marques de Santillana, Spanish poet, born in
+Inigo
+10
+
+In 1398 Inigo Lopez, Marques de____ , Spanish poet, born in
+Santillana
+10
+
+In 1398 Inigo____ , Marques de Santillana, Spanish poet, born in
+Lopez
+10
+
+In 1400 Author ____ Chaucer dies in London
+Geoffrey
+10
+
+In 1400 Author Geoffrey ____ dies in London
+Chaucer
+10
+
+In 1402 Battle of ____ (Ankara)-Tatars defeat Turkish Army
+Angora
+10
+
+In 1412 (France)____ , Domremy, martyr, born in
+Joan of arc
+10
+
+In 1415 ____ Innsbruck Austria, German Emperor (1440-1493), born in
+Frederick iii
+10
+
+In 1415 ad, Henry v was crowned the ruler of france after this battle?
+Battle of agincourt
+10
+
+In 1415 Battle of____ , Welsh longbow defeats the armored knight
+Agincourt
+10
+
+In 1423 Louis ____ king of France (1461-83), born in
+Xi
+10
+
+In 1429 Joan of Arc leads ____ , France, to victory over English
+Orleans
+10
+
+In 1430 Joan of Arc captured by ____ who sold her to the English
+Burgundians
+10
+
+In 1432 ____ Pulci, Italian poet (Morgante), born in
+Luigi
+10
+
+In 1432 Luigi Pulci, Italian ____ (Morgante), born in
+Poet
+10
+
+In 1432 Luigi____ , Italian poet (Morgante), born in
+Pulci
+10
+
+In 1440 Ivan III (the Great) grand prince of____ , born in
+Russia
+10
+
+In 1442 Edward IV, king of ____ (1461-70, 1471-83), born in
+England
+10
+
+In 1444 Sandro____ , Italian painter (Birth of Venus), born in
+Botticelli
+10
+
+In 1446 Korean ____ alphabet devised
+Hangual
+10
+
+In 1451 Queen ____ I, funded Christopher Columbus, born in
+Isabella
+10
+
+In 1452 First book published, ____ Guttenberg's Bible
+Johann
+10
+
+In 1452 First book published, Johann ____ 's Bible
+Guttenberg
+10
+
+In 1452 First book published, Johann Guttenberg's____
+Bible
+10
+
+In 1454 Amerigo____ , explorer and namesake of America (lucky they didn't call it Vespuccia)
+Vespucci
+10
+
+In 1456 23rd recorded ____ passage of Halley's Comet
+Perihelion
+10
+
+In 1457 Henry ____ king of England (1485-1509), born in
+Vii
+10
+
+In 1457 Oldest exactly dated ____ (c. 3 years after Gutenberg)
+Printed book
+10
+
+In 1468 Pope____ , born in
+Paul iii
+10
+
+In 1470 King Edward V of ____ (1483); deposed, murdered? by Richard III, born in
+England
+10
+
+In 1471 Albrecht D?rer N?rnberg____ , Renaissance painter/print maker, born in
+Germany
+10
+
+In 1473 Nicolaus ____ (in Poland), astronomer, born in
+Copernicus
+10
+
+In 1475 Michelangelo, ____ artist, born in
+Renaissance
+10
+
+In 1478 ____ (the Handsome), first Habsburg king of Spain (1506), born in
+Philip i
+10
+
+In 1478 Philip I (the Handsome), first ____ king of Spain (1506), born in
+Habsburg
+10
+
+In 1478 Philip I (the Handsome), first Habsburg king of ____ (1506), born in
+Spain
+10
+
+In 1483 ____ king of France (1461-83), dies at 60
+Louis xi
+10
+
+In 1483 ____ usurps English throne
+Richard iii
+10
+
+In 1483 England's King ____ crowned
+Richard iii
+10
+
+In 1483 Martin____ , Eisleben, Germany, founded Protestantism, born in
+Luther
+10
+
+In 1485 ____ slain at Bosworth Field - Last of the Plantagenets
+Richard iii
+10
+
+In 1485 Catherine of____ , first wife of Henry VIII, born in
+Aragon
+10
+
+In 1485 Richard III slain at ____ - Last of the Plantagenets
+Bosworth field
+10
+
+In 1487 ____ Counter-Reformation pope (1550-55), born in
+Julius iii
+10
+
+In 1491 Five year truce between England and ____ began
+Scotland
+10
+
+In 1492 ____ sights the isle of San Salvador
+Columbus
+10
+
+In 1492 1st Spanish settlement in New World founded by ____
+Columbus
+10
+
+In 1492 Christopher ____ learns of maize (corn) from the Indians of Cuba
+Columbus
+10
+
+In 1492 Christopher Columbus signs contract with ____ to find the Indies
+Spain
+10
+
+In 1492 Columbus sights the isle of ____
+San salvador
+10
+
+In 1493 Alexander VI divides non-Christian world between ____ & Portugal
+Spain
+10
+
+In 1493 Christopher ____ discovers Puerto Rico
+Columbus
+10
+
+In 1493 France cedes Roussillon & Cerdogne to ____ by treaty of Barcelona
+Spain
+10
+
+In 1495 1st written record of ____ appears in Exchequer Rolls of Scotland. Friar John Cor is the distiller
+Scotch whiskey
+10
+
+In 1495 1st written record of Scotch Whiskey appears in ____ of Scotland. Friar John Cor is the distiller
+Exchequer rolls
+10
+
+In 1495 1st written record of Scotch Whiskey appears in Exchequer Rolls of____ . Friar John Cor is the distiller
+Scotland
+10
+
+In 1497 Bartolomeu Dias discovers Cape of Good____
+Hope
+10
+
+In 1498 ____ Columbus discovered the island of Trinidad
+Christopher
+10
+
+In 1498 Christopher ____ discovered the island of Trinidad
+Columbus
+10
+
+In 1498 Christopher Columbus discovered the island of____
+Trinidad
+10
+
+In 1498 Death of ____ de Torquemada, inquisitor who burned 10,000 people
+Tomas
+10
+
+In 1498 Death of Tomas de Torquemada, inquisitor who burned ____ people
+10,000
+10
+
+In 1498 Death of Tomas de____ , inquisitor who burned 10,000 people
+Torquemada
+10
+
+In 1501 ____ formally installed as canon of Frauenberg Cathedral
+Copernicus
+10
+
+In 1501 Copernicus formally installed as canon of ____ Cathedral
+Frauenberg
+10
+
+In 1502 Columbus left ____ on his 4th and final trip to the New World
+Spain
+10
+
+In 1504 By treaty of____ , French cede Naples to Ferdinand of Aragon
+Lyons
+10
+
+In 1506 Christopher ____ explorer, dies in poverty in Spain at 55
+Colombus
+10
+
+In 1509 Henry ____ ascended to the throne of England
+Viii
+10
+
+In 1509 Henry ____ becomes King of England
+Viii
+10
+
+In 1509 Pope ____ excommunicates Italian state of Venice
+Julius ii
+10
+
+In 1512 Gerhardus____ , geographer & map maker
+Mercator
+10
+
+In 1513 ____ Nuez de Balboa is the first European to see the Pacific Ocean
+Vasco
+10
+
+In 1513 Battle of Flodden Fields; English defeat ____ of Scotland
+James iv
+10
+
+In 1513 Battle of Flodden Fields; English defeat James IV of____
+Scotland
+10
+
+In 1513 Battle of____ ; English defeat James IV of Scotland
+Flodden fields
+10
+
+In 1513 Vasco ____ de Balboa is the first European to see the Pacific Ocean
+Nuez
+10
+
+In 1513 Vasco Nuez ____ is the first European to see the Pacific Ocean
+De balboa
+10
+
+In 1513 Vasco Nuez de Balboa is the first European to see the ____ Ocean
+Pacific
+10
+
+In 1513, ponce de leon discovered what is now the state of?
+Florida
+10
+
+In 1514 Copernicus makes his 1st observations of?
+Saturn
+10
+
+In 1516 Queen____ , first reigning queen of Great Britain, born in
+Mary i
+10
+
+In 1517 Turks conquer?
+Cairo
+10
+
+In 1519 ____ 's ship set sail to circumnavigate the Earth
+Magellan
+10
+
+In 1519 ____ starts first successful circumnavigation of the world
+Magellan
+10
+
+In 1519 Leonardo ____ artist/scientist, dies at 67
+Da vinci
+10
+
+In 1519____ , 230th Roman Catholic pope (1591), born in
+Innocent ix
+10
+
+In 1520 ____ begins crossing the Pacific Ocean
+Magellan
+10
+
+In 1520 Christian II of Denmark & Norway defeats the ____ at Lake Asunde
+Swedes
+10
+
+In 1520 King ____ of England orders bowling lanes to be built at Whitehall, in London
+Henry viii
+10
+
+In 1520 King Henry VIII of England orders bowling lanes to be built at____ , in London
+Whitehall
+10
+
+In 1520 Martin ____ publicly burned papal edict demanding that he recant
+Luther
+10
+
+In 1521 ____ conquerors captured Mexico City from Aztecs
+Spanish
+10
+
+In 1521 Ferdinand ____ world traveler, killed by Filipino natives
+Magellan
+10
+
+In 1521 Spanish conquerors captured ____ from Aztecs
+Mexico city
+10
+
+In 1521 Spanish conquerors captured Mexico City from____
+Aztecs
+10
+
+In 1526 Francis I forced to give up claims in____ , Italy & Flanders
+Burgundy
+10
+
+In 1527 ____ king of Spain (1556-98) & Portugal (1580-98), born in
+Philip ii
+10
+
+In 1527 Sack of ____ - End of the Renaissance
+Rome
+10
+
+In 1528 England & France declare war on Emperor ____ V of Spain
+Charles
+10
+
+In 1530 ____ (the Terrible) 1st tsar of Russia (1533-84), born in
+Ivan iv
+10
+
+In 1531 Richard Roose boiled to death for trying to ____ an archbishop
+Poison
+10
+
+In 1532 Pizarro seizes ____ emperor Atahualpa
+Incan
+10
+
+In 1533 ____ last Incan King of Peru, murdered by Spanish conquerors
+Atahualpa
+10
+
+In 1533 Atahualpa last ____ King of Peru, murdered by Spanish conquerors
+Incan
+10
+
+In 1533 Atahualpa last Incan King of Peru, murdered by ____ conquerors
+Spanish
+10
+
+In 1533 King Henry VIII and Catherine of ____ marriage declared null and void by the newly formed Church of England
+Aragon
+10
+
+In 1533 Queen ____ England, (1558-1603) daughter of Henry VIII, born in
+Elizabeth i
+10
+
+In 1533 Queen Elizabeth I England, (1558-1603) daughter of____ , born in
+Henry viii
+10
+
+In 1535 ____ declares himself head of English Church
+Henry viii
+10
+
+In 1535 Pope ____ deposed and excommunicated King Henry VIII
+Paul ii
+10
+
+In 1535 Pope Paul II deposed and excommunicated King____
+Henry viii
+10
+
+In 1535 Sir Thomas ____ went on trial in England charged with treason
+Moore
+10
+
+In 1535 Sir Thomas Moore went on trial in England charged with____
+Treason
+10
+
+In 1536 (England) ____ 1st wife of England's King Henry VIII, dies
+Catherine of aragon
+10
+
+In 1536 Anne ____ wife of Henry VIII, beheaded
+Boleyn
+10
+
+In 1536 Pope's authority declared ____ in England
+Void
+10
+
+In 1537 ____ king of England (1547-53), born in
+Edward vi
+10
+
+In 1537 ____ Seymour, third wife of Henry VIII, dies
+Jane
+10
+
+In 1537 (Italy) Alessandro de' Medici of____ , assassinated
+Florence
+10
+
+In 1537 Jane Seymour, third wife of____ , dies
+Henry viii
+10
+
+In 1537 Jane____ , third wife of Henry VIII, dies
+Seymour
+10
+
+In 1538 Pope Paul III excommunicated England's King ____ VIII
+Henry
+10
+
+In 1539 ____ claims the US state of Florida for Spain
+Hernando de soto
+10
+
+In 1539 Hernando De Soto claims the US state of ____ for Spain
+Florida
+10
+
+In 1539 Hernando De Soto claims the US state of Florida for____
+Spain
+10
+
+In 1540 (England) King Henry VIII of England married his ____ wife, Anne of Cleves
+4th
+10
+
+In 1540 England's King ____ 6-month marriage to Anne of Cleves annulled
+Henry viii
+10
+
+In 1540 England's King Henry VIII ____ marriage to Anne of Cleves annulled
+6-month
+10
+
+In 1540 England's King Henry VIII 6-month marriage to ____ of Cleves annulled
+Anne
+10
+
+In 1540 Society of ____ (Jesuits) founded by Ignatius Loyola
+Jesus
+10
+
+In 1540 Society of Jesus (Jesuits) founded by ____ Loyola
+Ignatius
+10
+
+In 1540 Society of Jesus (Jesuits) founded by Ignatius____
+Loyola
+10
+
+In 1540 Thomas ____ King Henry VIII's chief minister, executed
+Cromwell
+10
+
+In 1540 Thomas Cromwell King ____ 's chief minister, executed
+Henry viii
+10
+
+In 1540 Thomas Cromwell King Henry VIII's chief minister,____
+Executed
+10
+
+In 1541____ , Chile founded
+Santiago
+10
+
+In 1542 Akbar, Indian ____ emperor (1556-1605), born in
+Mughal
+10
+
+In 1542____ , Indian Mughal emperor (1556-1605), born in
+Akbar
+10
+
+In 1543 England's King ____ weds Catherine Parr (6th and last wife)
+Henry viii
+10
+
+In 1543 England's King Henry VIII weds Catherine ____ (6th and last wife)
+Parr
+10
+
+In 1543, who published a theory that planets revolve around the sun?
+Copernicus
+10
+
+In 1544 Francis II, king of ____ (1559-60), born in
+France
+10
+
+In 1547 ____ de Cervantes, novelist (Don Quixote), born in
+Miguel
+10
+
+In 1547 9-year-old ____ succeeds Henry VIII as king of England
+Edward vi
+10
+
+In 1547 Henry ____ King of England (1509-47), dies at 55
+Viii
+10
+
+In 1547 Ivan IV the ____ crowned 1st tsar of Russia
+Terrible
+10
+
+In 1547 Miguel de Cervantes, novelist (____ ), born in
+Don quixote
+10
+
+In 1547 Miguel de____ , novelist (Don Quixote), born in
+Cervantes
+10
+
+In 1547 Miguel DeCervantes ____ , author (The Man Of LaMancha), born in
+Saavedra
+10
+
+In 1548 La Paz, ____ is founded
+Bolivia
+10
+
+In 1548____ , Bolivia is founded
+La paz
+10
+
+In 1553 ____ woman introduces practice of starching linen into England
+Flemish
+10
+
+In 1553 City of____ , England established
+Lichfield
+10
+
+In 1556 St. ____ of Loyola, founder of the Society of Jesus died in Rome
+Ignatius
+10
+
+In 1556 St. Ignatius of Loyola, founder of the Society of Jesus died in____
+Rome
+10
+
+In 1556 St. Ignatius of____ , founder of the Society of Jesus died in Rome
+Loyola
+10
+
+In 1557 ____ Cartier French explorer, dies (birth date unknown)
+Jacques
+10
+
+In 1557 ____ Cartier French explorer, dies
+Jacques
+10
+
+In 1557 Jacques ____ French explorer, dies (birth date unknown)
+Cartier
+10
+
+In 1557 Jacques ____ French explorer, dies
+Cartier
+10
+
+In 1558 (France)____ , last English possession in France, retaken by French
+Calais
+10
+
+In 1558 Elizabeth I ascends English throne upon death of Queen____
+Mary
+10
+
+In 1558 Robert ____ Elizabethan dramatist (Friar Bacon), born in
+Greene
+10
+
+In 1559 ____ crowned queen of England in Westminster Abbey
+Elizabeth i
+10
+
+In 1559 Sir Thomas____ , English politician, benefactor, dies at about 52
+Pope
+10
+
+In 1561 Francis____ , England, statesman/essayist (Novum Organum), born in
+Bacon
+10
+
+In 1562 a man was dug up six hours after his burial, after he had been seen breathing by someone at the funeral - he lived for another ____ years
+75
+10
+
+In 1564 Galileo____ , astronomer, born in
+Galilei
+10
+
+In 1564 William ____ , bard, born in
+Shakespeare
+10
+
+In 1565 ____ siege of Malta broken by Maltese and Knights of St John
+Turkish
+10
+
+In 1565 1st permanent settlement in US forms (____ , Florida)
+St augustine
+10
+
+In 1565 1st Spanish settlement in ____ , Cebu City, forms
+Philippines
+10
+
+In 1565 Turkish siege of ____ broken by Maltese and Knights of St John
+Malta
+10
+
+In 1566 ____ French astrologer/physician/prophet, dies in Salon
+Nostradamus
+10
+
+In 1566 Nostradamus French astrologer/physician/prophet, dies in____
+Salon
+10
+
+In 1567 Mary Queen of ____ thrown into Lochleven Castle prison
+Scots
+10
+
+In 1567 Mary Queen of Scots thrown into ____ Castle prison
+Lochleven
+10
+
+In 1568 Dean of St ____ 's Cathedral perfects a way to bottle beer
+Paul
+10
+
+In 1569 St. Philip of Moscow martyred by ____ the Terrible
+Ivan
+10
+
+In 1570 Earl of____ , regent of Scotland, assassinated; civil war breaks out
+Moray
+10
+
+In 1571 ____ fleet defeated by Spanish and Italians in Battle of Lepanto
+Turkish
+10
+
+In 1571 Turkish fleet defeated by ____ and Italians in Battle of Lepanto
+Spanish
+10
+
+In 1571 Turkish fleet defeated by Spanish and ____ in Battle of Lepanto
+Italians
+10
+
+In 1571 Turkish fleet defeated by Spanish and Italians in Battle of____
+Lepanto
+10
+
+In 1572 King ____ orders massacre of thousands of French Protestants
+Charles ix
+10
+
+In 1572 King Charles IX orders massacre of thousands of ____ Protestants
+French
+10
+
+In 1573 ____ Italy, painter (or 1573), born in
+Caravaggio
+10
+
+In 1578 Battle of Alcazarquivir, ____ defeat Portugese
+Morrocans
+10
+
+In 1578 Battle of Alcazarquivir, Morrocans defeat____
+Portugese
+10
+
+In 1578 Battle of____ , Morrocans defeat Portugese
+Alcazarquivir
+10
+
+In 1579 Cornerstone is laid for ____ Brahe's Uraniborg observatory
+Tycho
+10
+
+In 1579 Cornerstone is laid for Tycho ____ 's Uraniborg observatory
+Brahe
+10
+
+In 1579 Cornerstone is laid for Tycho Brahe's ____ observatory
+Uraniborg
+10
+
+In 1579 Sir Francis ____ lands on the coast of California
+Drake
+10
+
+In 1579 Sir Francis Drake lands on the coast of____
+California
+10
+
+In 1579 Union of ____ signed, forming protestant Dutch Republic
+Utrecht
+10
+
+In 1580 Battle of Alcantara, ____ defeats Portugal
+Spain
+10
+
+In 1580 Battle of Alcantara, Spain defeats____
+Portugal
+10
+
+In 1580 Battle of____ , Spain defeats Portugal
+Alcantara
+10
+
+In 1581 Frances ____ completres circumnavigation of the world
+Drake
+10
+
+In 1581 James VI signs the 2nd ____ in Scotland
+Confession of faith
+10
+
+In 1582 ____ Rico Discovery Day
+Puerto
+10
+
+In 1582 Catholic countries switch to ____ calendar cut 10 prior days
+Gregorian
+10
+
+In 1582 Gregorian calendar introduced in____ , other Catholic countries
+Italy
+10
+
+In 1582 Russia cedes Livonia & Estonia to____ , loses access to the Baltic
+Poland
+10
+
+In 1583 ____ Alighieri Day
+Dante
+10
+
+In 1583 ____ claims Newfoundland (first English colony in North America)
+Gilbert
+10
+
+In 1583 Dante ____ Day
+Alighieri
+10
+
+In 1583 Gilbert claims ____ (first English colony in North America)
+Newfoundland
+10
+
+In 1583 Gregory____ , pope, born in
+Xiii
+10
+
+In 1583 Thomas ____ Day
+Aquinas
+10
+
+In 1584 ____ Day
+Gutenberg
+10
+
+In 1584 Pope____ , born in
+Hilarius
+10
+
+In 1585 ____ Otto Jansen of France, Roman Catholic reform leader
+Cornelius
+10
+
+In 1585 Cardinal A ____ de Plessicide de Richelieu, King Louis XIII of France's chief minister, born in
+Jean
+10
+
+In 1585 Cardinal A Jean de ____ de Richelieu, King Louis XIII of France's chief minister, born in
+Plessicide
+10
+
+In 1585 Cardinal A Jean de Plessicide de Richelieu, King ____ of France's chief minister, born in
+Louis xiii
+10
+
+In 1585 Cardinal A Jean de Plessicide de____ , King Louis XIII of France's chief minister, born in
+Richelieu
+10
+
+In 1585 Cornelius ____ Jansen of France, Roman Catholic reform leader
+Otto
+10
+
+In 1585 Cornelius Otto ____ of France, Roman Catholic reform leader
+Jansen
+10
+
+In 1586 Sir Thomas Herriot introduces ____ to England, from Colombia
+Potatoes
+10
+
+In 1586 Sir Walter ____ brings 1st tobacco to England from Virginia
+Raleigh
+10
+
+In 1586 Sir Walter Raleigh brings 1st ____ to England from Virginia
+Tobacco
+10
+
+In 1586 Sir Walter Raleigh brings 1st tobacco to England from____
+Virginia
+10
+
+In 1586 Trial of Mary, Queen of Scots, for conspiracy against Queen____ , begins
+Elizabeth i
+10
+
+In 1586 Trial of Mary, Queen of____ , for conspiracy against Queen Elizabeth I, begins
+Scots
+10
+
+In 1586 Trial of____ , Queen of Scots, for conspiracy against Queen Elizabeth I, begins
+Mary
+10
+
+In 1587 1st English child born in the New World (____ Dare)
+Virginia
+10
+
+In 1587 1st English child born in the New World (Virginia____ )
+Dare
+10
+
+In 1587 Mary Queen of ____ executed
+Scots
+10
+
+In 1588 ____ Armada sails to overthrow England's Queen Elizabeth I
+Spanish
+10
+
+In 1588 English fleet attacks the ____ armada
+Spanish
+10
+
+In 1588 English fleet defeats ____ armada
+Spanish
+10
+
+In 1588 Frederick II king of ____ , dies
+Denmark
+10
+
+In 1588 Spanish Armada sets sail for____ , bound to England
+Lisbon
+10
+
+In 1589 Catherine de Medici, ____ , died
+Queen of france
+10
+
+In 1593 ____ Walton, fisherman, writer (Compleat Angler), born in
+Izaac
+10
+
+In 1593 France's Protestant King ____ converts to Roman Catholic
+Henri iv
+10
+
+In 1593 France's Protestant King Henri IV converts to____
+Roman catholic
+10
+
+In 1593 Giuseppe ____ 1st surrealist painter, dies (birth date unkn)
+Arcimboldo
+10
+
+In 1593 Izaac____ , fisherman, writer (Compleat Angler), born in
+Walton
+10
+
+In 1594 Gustavus II Adolphus, king who made ____ a major power (1611-32)
+Sweden
+10
+
+In 1595 Sir Francis ____ English navigator, dies at about 50
+Drake
+10
+
+In 1596 ____ Amati, Italy, violin maker (Stradivari and Guarneri), born in
+Nicolo
+10
+
+In 1596 Nicolo Amati, Italy, violin maker (____ and Guarneri), born in
+Stradivari
+10
+
+In 1596 Nicolo Amati, Italy, violin maker (Stradivari and____ ), born in
+Guarneri
+10
+
+In 1596 Nicolo____ , Italy, violin maker (Stradivari and Guarneri), born in
+Amati
+10
+
+In 1599 Oliver Cromwell, Puritan lord protector of ____ (1653-58), born in
+England
+10
+
+In 1600 Battle of ____ sets Tokugawa clan as Japan's rulers (shoguns)
+Sekigahara
+10
+
+In 1600 Battle of Sekigahara sets ____ clan as Japan's rulers (shoguns)
+Tokugawa
+10
+
+In 1600 Clement IX Pistoia, Italy, ____ Roman Catholic pope (1667-69), born in
+238th
+10
+
+In 1601____ , king of France (1610-43), born in
+Louis xiii
+10
+
+In 1602 Cape Cod was discovered by the English navigator ____ Gosnold
+Batholomew
+10
+
+In 1602 Otto von Guericke, invented the air____
+Pump
+10
+
+In 1604 Tsar Ivan IV defeats the False____ , who claims to be the true tsar
+Dmitri
+10
+
+In 1605 Gunpowder Plot; ____ try to blow up English Parliament. Plot uncovered & leader Guy Fawkes hanged
+Catholics
+10
+
+In 1605 Philip IV king of Spain & ____ (1621-65), born in
+Portugal
+10
+
+In 1608 ____ Lippershey offers the Dutch government a new invention ____ the telescope
+Hans
+10
+
+In 1608 City of Quebec founded by Samuel de____
+Champlain
+10
+
+In 1608 Hans ____ offers the Dutch government a new invention ____ the telescope
+Lippershey
+10
+
+In 1608 John____ , poet and puritan (Paradise Lost) born
+Milton
+10
+
+In 1609 Galileo demonstrates his 1st telescope to ____ lawmakers
+Venetian
+10
+
+In 1609 Navigator ____ Hudson discovered the island of Manhattan
+Henry
+10
+
+In 1609 Navigator Henry ____ discovered the island of Manhattan
+Hudson
+10
+
+In 1609 Navigator Henry Hudson discovered the island of____
+Manhattan
+10
+
+In 1609 Venetian senate examines ____ 's telescope
+Galileo galilei
+10
+
+In 1610 (Italy) Galileo discovers 1st 3 ____ satellites, Io, Europa & Ganymede
+Jupiter
+10
+
+In 1610 1st Dutch settlers arrive (from NJ), to colonize ____ Island
+Manhattan
+10
+
+In 1610 Galileo Galilei discovers____ , 4th satellite of Jupiter
+Callisto
+10
+
+In 1610 Henry Hudson sailed into Hudson Bay, but where did he think he was?
+The pacific ocean
+10
+
+In 1611 Innocent XI ____ Roman Catholic pope (1676-89), born in
+240th
+10
+
+In 1613 ____ duc de la Rochefoucald Paris France, writer (Memoires), born in
+Francoise
+10
+
+In 1613 Francoise duc de la ____ Paris France, writer (Memoires), born in
+Rochefoucald
+10
+
+In 1614 Indian princess ____ marries English colonist John Rolfe
+Pocahontas
+10
+
+In 1616 Corpernicus' DE REVOLUTIONIBUS placed on ____ Forbidden index
+Catholic
+10
+
+In 1617 The first one-way streets are established ____ in____
+London
+10
+
+In 1618 Sir ____ Raleigh is executed in London
+Walter
+10
+
+In 1618 Sir Walter ____ is executed in London
+Raleigh
+10
+
+In 1619 Cyrano de____ , writer, born in
+Bergerac
+10
+
+In 1620 ____ sets sail from Southampton with 102 Pilgrims
+Mayflower
+10
+
+In 1620 1st merry-go-round seen at a fair (Philippapolis,____ )
+Turkey
+10
+
+In 1620 41 Pilgrims signed a compact aboard____
+Mayflower
+10
+
+In 1620 Mayflower sets sail from ____ with 102 Pilgrims
+Southampton
+10
+
+In 1620 Mayflower sets sail from Southampton with ____ Pilgrims
+102
+10
+
+In 1620 Pilgrims reach Cape Cod on the____
+Mayflower
+10
+
+In 1620 The ____ sets sail from Plymouth with 102 Pilgrims
+Mayflower
+10
+
+In 1620 The Mayflower sets sail from ____ with 102 Pilgrims
+Plymouth
+10
+
+In 1620 The Mayflower sets sail from Plymouth with ____ Pilgrims
+102
+10
+
+In 1621 ____ perfects the telescope
+Galileo
+10
+
+In 1622 Moli?re, France, ____ (Tartuffe, Les Misanthrope), baptized
+Dramatist
+10
+
+In 1623 Blaise____ , mathematician, born in
+Pascal
+10
+
+In 1625 Charles I King of England, ____ , and Ireland ascends to throne
+Scotland
+10
+
+In 1625 Giovanni Domenico ____ discovered 4 satellites of Saturn
+Cassini
+10
+
+In 1625 Giovanni Domenico Cassini discovered 4 satellites of____
+Saturn
+10
+
+In 1626 Indians sell ____ for $24 in cloth & buttons
+Manhattan island
+10
+
+In 1628 Charles ____ France, lawyer/writer (Mother Goose), born in
+Perrault
+10
+
+In 1629 Abbas I Shah of ____ (1588-1629), dies at 57
+Persia
+10
+
+In 1630 Italian Jesuit Niccolo____ , 1st to see 2 belts on Jupiter surface
+Zucchi
+10
+
+In 1630 Popcorn is introduced by an ____ named Quadequina to the English colonists at their first Thanksgiving dinner
+Indian
+10
+
+In 1630 The ____ is introduced to American dining by Gov. Winthrop
+Fork
+10
+
+In 1631 ____ Dryden, first poet laureate of England (Absalom and Achitophel), born in
+John
+10
+
+In 1631 John____ , first poet laureate of England (Absalom and Achitophel), born in
+Dryden
+10
+
+In 1632 Sir ____ Wren, England, astronomer/great architect, born in
+Christopher
+10
+
+In 1632 Sir Christopher____ , England, astronomer/great architect, born in
+Wren
+10
+
+In 1633____ , king of England (1685-88), born in
+James ii
+10
+
+In 1636 ____ College, first US college founded
+Harvard
+10
+
+In 1638 1st earthquake recorded in US, at____ , Mass
+Plymouth
+10
+
+In 1639 ____ University was named for clergyman John Harvard
+Harvard
+10
+
+In 1639 First ____ in America
+Printing press
+10
+
+In 1640 Portugal regained independence after 60 years of ____ rule
+Spanish
+10
+
+In 1640____ , Emperor of Holy Roman Empire, born in
+Leopold i
+10
+
+In 1642 ____ Huygens discovers Martian south polar cap
+Christiaan
+10
+
+In 1642 Christiaan ____ discovers Martian south polar cap
+Huygens
+10
+
+In 1642 Christiaan Huygens discovers ____ south polar cap
+Martian
+10
+
+In 1643____ , scientist, discovered laws of gravity
+Sir issac newton
+10
+
+In 1644 ____ Roemer, first to accurately measured speed of light, born in
+Olaus
+10
+
+In 1644 First protestant ministry society in New____
+England
+10
+
+In 1644 Olaus____ , first to accurately measured speed of light, born in
+Roemer
+10
+
+In 1645 ____ standing army first founded
+English
+10
+
+In 1646 ____ Flamsteed, first astronomer royal of England, born in
+John
+10
+
+In 1646 John____ , first astronomer royal of England, born in
+Flamsteed
+10
+
+In 1647 British army seizes King ____ as a prisoner
+Charles i
+10
+
+In 1647 the English Parliament abolished?
+Christmas
+10
+
+In 1648 Dutch and ____ agree to divide St. Maarten, Leeward Islands
+French
+10
+
+In 1648, the Treaty of Westphalia ended which war?
+The thirty years war
+10
+
+In 1649 Drogheda, ____ falls to Puritan troops; inhabitants massacred
+Ireland
+10
+
+In 1649 Drogheda, Ireland falls to ____ troops; inhabitants massacred
+Puritan
+10
+
+In 1649 Margaret ____ of Charlestown became the first person tried and executed for witchcraft in colonial Massachusetts
+Jones
+10
+
+In 1649____ , Ireland falls to Puritan troops; inhabitants massacred
+Drogheda
+10
+
+In 1654 Louis ____ crowned King of France
+Xiv
+10
+
+In 1655 ____ de Bergerac French dramatist/novelist, dies in Paris
+Cyrano
+10
+
+In 1655 ____ Luyts, Dutch scholar, physicist, mathematician, astronomer, born in
+Jan
+10
+
+In 1655 Cyrano de ____ French dramatist/novelist, dies in Paris
+Bergerac
+10
+
+In 1655 Innocent____ , 244th Roman Catholic pope (1721-24), born in
+Xiii
+10
+
+In 1655 Jan____ , Dutch scholar, physicist, mathematician, astronomer, born in
+Luyts
+10
+
+In 1657 london, what was advertised as a cure for scurvy, gout and other ills?
+Coffee
+10
+
+In 1657 Sophia, regent of ____ (1682-89), born in
+Russia
+10
+
+In 1657____ , regent of Russia (1682-89), born in
+Sophia
+10
+
+In 1658 ____ king of England (1603-25), dies at 92
+James i
+10
+
+In 1658 James I king of England (1603-25), dies at____
+92
+10
+
+In 1658 Lord ____ Cromwell British king (1653-58), dies at 59
+Oliver
+10
+
+In 1658 Lord Oliver ____ British king (1653-58), dies at 59
+Cromwell
+10
+
+In 1658 Lord Oliver Cromwell British king (1653-58), dies at____
+59
+10
+
+In 1659 ____ Crusoe is shipwrecked (according to Defoe)
+Robinson
+10
+
+In 1659 Robinson ____ is shipwrecked (according to Defoe)
+Crusoe
+10
+
+In 1660 ____ Gautier engineer, wrote 1st book on bridge building, born in
+Hubert
+10
+
+In 1660 Alessandro____ , Palermo Italy, composer (Tigrane), born in
+Scarlatti
+10
+
+In 1660 Hubert ____ engineer, wrote 1st book on bridge building, born in
+Gautier
+10
+
+In 1661 Cardinal Jules____ , the chief minister of France, died
+Mazarin
+10
+
+In 1661 Chinese ____ dynasty occupies Taiwan
+Ming
+10
+
+In 1662 ____ grants a charter to establish Royal Society in London
+Charles ii
+10
+
+In 1662 ____ sees solar eclipse, first known astronomical observation
+Flamsteed
+10
+
+In 1662 Act of Uniformity requires ____ to accept book of Common Prayer
+English
+10
+
+In 1666 Great Fire of London starts; destroys ____ Church
+St. Paul's
+10
+
+In 1666 Great London ____ begins in Pudding Lane. 80% of London is destroyed
+Fire
+10
+
+In 1666 Great London Fire begins in ____ Lane. 80% of London is destroyed
+Pudding
+10
+
+In 1666 Great London Fire begins in Pudding Lane. ____ of London is destroyed
+80%
+10
+
+In 1666 Samuel Pepys reports on first ____ transfusion (between dogs)
+Blood
+10
+
+In 1667 John ____ Scottish writer (Alexander Pope), born in
+Arbuthnot
+10
+
+In 1668 Treaty of Aix-la-Chapelle, ends?
+War of devolution
+10
+
+In 1670 Christian V became King of ____ and Norway
+Denmark
+10
+
+In 1671 ____ Cassini discovers Iapetus, satellite of Saturn
+Giovanni
+10
+
+In 1671 Giovanni ____ discovers Iapetus, satellite of Saturn
+Cassini
+10
+
+In 1671 Giovanni Cassini discovers Iapetus, satellite of____
+Saturn
+10
+
+In 1671 Giovanni Cassini discovers____ , satellite of Saturn
+Iapetus
+10
+
+In 1672 (Italy) Giovanni Cassini discovers Rhea, a satellite of____
+Saturn
+10
+
+In 1672 Frontenac becomes governor of ____ (Canada)
+New france
+10
+
+In 1673 Moliere, ____ Dramatist, died
+French
+10
+
+In 1674 Isaac ____ (in England), writer and preacher, born in
+Watts
+10
+
+In 1675 Royal Greenwich Observatory established in England by____
+Charles ii
+10
+
+In 1676 Sir ____ Walpole (Whig), British prime minister, 1721-42
+Robert
+10
+
+In 1676 Sir Robert ____ (Whig), British prime minister, 1721-42
+Walpole
+10
+
+In 1678 Edmund ____ receives MA from Queen's College, Oxford
+Halley
+10
+
+In 1679 Great panic occurs in ____ over the close approach of a comet
+Europe
+10
+
+In 1680, this area was separated from massachusetts and made a royal colony?
+New hampshire
+10
+
+In 1681 Georg Philipp Telemann, leading ____ late-baroque composer, born in
+German
+10
+
+In 1683 ____ Phillippe Rameau, French composer (baptized), born in
+Jean
+10
+
+In 1683 George II king of ____ (1727-60), born in
+England
+10
+
+In 1683 Jean ____ Rameau, French composer (baptized), born in
+Phillippe
+10
+
+In 1683 Jean Phillippe____ , French composer (baptized), born in
+Rameau
+10
+
+In 1683 Philip V, first Bourbon king of ____ (1700-46)
+Spain
+10
+
+In 1684 Ludvig Baron Holberg, a founder of ____ & Norwegian literature, born in
+Danish
+10
+
+In 1684 Patent granted for the?
+Thimble
+10
+
+In 1685 ____ revokes Edict of Nantes, outlaws Protestantism, hastens onset of French Revolution
+Louis xiv
+10
+
+In 1685 George Frideric____ , Baroque composer in Germany, born in
+Handel
+10
+
+In 1685 Johann Sebastian ____ (in Eisenach, Germany), composer, born in
+Bach
+10
+
+In 1685 Louis XIV revokes Edict of Nantes, outlaws Protestantism, hastens onset of____
+French revolution
+10
+
+In 1685 Louis XIV revokes Edict of Nantes, outlaws____ , hastens onset of French Revolution
+Protestantism
+10
+
+In 1685 Louis XIV revokes Edict of____ , outlaws Protestantism, hastens onset of French Revolution
+Nantes
+10
+
+In 1685____ , Holy Roman emperor (1711-40)
+Charles vi
+10
+
+In 1686 ____ reports seeing a satellite orbiting Venus
+Cassini
+10
+
+In 1686 Cassini reports seeing a satellite orbiting____
+Venus
+10
+
+In 1686 Gabriel Daniel____ , invented the thermometer
+Fahrenheit
+10
+
+In 1686 Robinson ____ leaves his island after 28 years (as per Defoe)
+Crusoe
+10
+
+In 1687 ____ destroyed in war between Turks and Venetians
+Parthenon
+10
+
+In 1687 Isaac ____ 's PRINCIPIA published by Royal Society in England
+Newton
+10
+
+In 1687 Parthenon destroyed in war between ____ and Venetians
+Turks
+10
+
+In 1687 Parthenon destroyed in war between Turks and____
+Venetians
+10
+
+In 1688 ____ William I, king of Prussia, born in
+Frederick
+10
+
+In 1688 Alexander ____ England, poet, born in
+Pope
+10
+
+In 1688 Frederick William I, king of____ , born in
+Prussia
+10
+
+In 1688 Frederick____ , king of Prussia, born in
+William i
+10
+
+In 1689 ____ Parliament adopts Bill of Rights after Cromwell's Revolution
+English
+10
+
+In 1689 ____ Scottish Highlanders defeat royal force at Killiecrankie
+Jacobite
+10
+
+In 1689 Jacobite Scottish Highlanders defeat royal force at____
+Killiecrankie
+10
+
+In 1689 Orangeman's Day ____ Battle of the Boyne, ____ victory in Ireland
+Protestant
+10
+
+In 1689 Orangeman's Day ____ Battle of the____ , Protestant victory in Ireland
+Boyne
+10
+
+In 1690 (England) John Flamsteed observes ____ but doesn't realize it's undiscovered
+Uranus
+10
+
+In 1690 Army of England's Protestant King ____ defeats Roman Catholic King James II in Battle of the Boyne in Ireland
+William iii
+10
+
+In 1690 England passes____ , forgiving followers of James II
+Act of grace
+10
+
+In 1693 ____ invents champagne
+Dom perignon
+10
+
+In 1694 ____ Basho greatest Japanese haiku poet, dies
+Matsuo
+10
+
+In 1694 Lord ____ letter writer; introduced Gregorian calendar (1752), born in
+Chesterfield
+10
+
+In 1694 Matsuo ____ greatest Japanese haiku poet, dies
+Basho
+10
+
+In 1694 Matsuo Basho greatest Japanese ____ poet, dies
+Haiku
+10
+
+In 1696 ____ Ottoman sultan, fought Austrians and Russians, born in
+Mahmud i
+10
+
+In 1696 Mahmud I ____ sultan, fought Austrians and Russians, born in
+Ottoman
+10
+
+In 1696 Mahmud I Ottoman sultan, fought ____ and Russians, born in
+Austrians
+10
+
+In 1696 Mahmud I Ottoman sultan, fought Austrians and____ , born in
+Russians
+10
+
+In 1697____ , Holy Roman emperor (1742-45), born in
+Charles vii
+10
+
+In 1699 Russian ____ adjusted so Russian New Year occurs on January 1st, instead of September 1st
+Calendar
+10
+
+In 1700 Daniel____ , Basel, Switzerland, mathematician, born in
+Bernoulli
+10
+
+In 1701 ____ king of England (1685-88), dies at 68
+James ii
+10
+
+In 1701 Anders Celsius, scientist, invented ____ temperature scale
+Centigrade
+10
+
+In 1701 Captain ____ is hanged in London after convicted of piracy and murder
+Kidd
+10
+
+In 1701 James II king of ____ (1685-88), dies at 68
+England
+10
+
+In 1701 James II king of England (1685-88), dies at____
+68
+10
+
+In 1704 ____ defeat French at Battle of Blenheim
+English
+10
+
+In 1704 ____ takes Gibraltar from Spain
+Great britain
+10
+
+In 1704 English defeat ____ at Battle of Blenheim
+French
+10
+
+In 1704 English defeat French at Battle of____
+Blenheim
+10
+
+In 1704 Great Britain takes ____ from Spain
+Gibraltar
+10
+
+In 1704 Great Britain takes Gibraltar from____
+Spain
+10
+
+In 1706____ , famous kite flyer, statesman, wit, born in
+Benjamin franklin
+10
+
+In 1707 Charles Wesley, cofounder of ____ movement
+Methodist
+10
+
+In 1708 ____ von Haller, the father of experimental physiology
+Albrecht
+10
+
+In 1708 Albrecht____ , the father of experimental physiology
+Von haller
+10
+
+In 1709 Battle of Poltava; ____ defeat Swedes
+Russians
+10
+
+In 1709 Battle of Poltava; Russians defeat____
+Swedes
+10
+
+In 1709 Battle of____ ; Russians defeat Swedes
+Poltava
+10
+
+In 1709 Elizabeth, empress of ____ (to Peter the Great and Catherine I),born
+Russia
+10
+
+In 1709 English, ____ and Austrians defeat French in Battle of Malplaquet
+Dutch
+10
+
+In 1709 English, Dutch and ____ defeat French in Battle of Malplaquet
+Austrians
+10
+
+In 1709 English, Dutch and Austrians defeat ____ in Battle of Malplaquet
+French
+10
+
+In 1709 English, Dutch and Austrians defeat French in Battle of____
+Malplaquet
+10
+
+In 1709 First known ascent in a hot-air balloon, by Father ____ de Gusmao of Portugal (indoors!)
+Bartolomeu
+10
+
+In 1709 First known ascent in a hot-air balloon, by Father Bartolomeu de ____ of Portugal (indoors!)
+Gusmao
+10
+
+In 1709 First known ascent in a____ , by Father Bartolomeu de Gusmao of Portugal (indoors!)
+Hot-air balloon
+10
+
+In 1709____ , Dutch and Austrians defeat French in Battle of Malplaquet
+English
+10
+
+In 1710 the first model was built that showed how the planets moved, what was it called?
+An orrery
+10
+
+In 1711 David ____ England, empiricists (Treatise of Human Nature), born in
+Hume
+10
+
+In 1712 ____ Grenville, British prime minister (1763-65), born in
+George
+10
+
+In 1712 George____ , British prime minister (1763-65), born in
+Grenville
+10
+
+In 1713 Ferdinand VI, king of ____ (1746-59), born in
+Spain
+10
+
+In 1713 Peace of ____ ; France cedes Maritime provinces to Britain
+Utrecht
+10
+
+In 1713____ , king of Spain (1746-59), born in
+Ferdinand vi
+10
+
+In 1713, the Treaty of Utrecht ended which war?
+War of Spanish succession
+10
+
+In 1714 Treaty of Baden-French retain Alsace, ____ gets right bank of Rhine
+Austria
+10
+
+In 1714 Treaty of Baden-French retain Alsace, Austria gets right bank of____
+Rhine
+10
+
+In 1714 Treaty of Baden-French retain____ , Austria gets right bank of Rhine
+Alsace
+10
+
+In 1715 ____ the great, king of France (1643-1715), dies at 76
+Louis xiv
+10
+
+In 1715 Claude ____ born, French philosopher
+Helvetius
+10
+
+In 1715 French manufacturer debuts 1st folding ____ (Paris)
+Umbrella
+10
+
+In 1715 John ____ observes Uranus for 6th time
+Flamsteed
+10
+
+In 1715 Louis XIV the great, king of ____ (1643-1715), dies at 76
+France
+10
+
+In 1715 Louis XIV the great, king of France (1643-1715), dies at____
+76
+10
+
+In 1715 Louis XIV the great, king of France (1643-1715), dies, what age was he?
+76
+10
+
+In 1716 First lion to be seen in America was exhibited in____
+Boston
+10
+
+In 1717 Empress Maria____ , Austria (Wife of Napolean), born in
+Theresa
+10
+
+In 1718 John Montague 4th Earl of Sandwich, inventor of____ , born in
+Sandwich
+10
+
+In 1719 Principality of ____ created within Holy Roman Empire
+Liechtenstein
+10
+
+In 1719 Sir John____ , wrote first history of music in English, born in
+Hawkins
+10
+
+In 1723 Adam ____ (in Kirkcaldy, Scotland), economist, born in
+Smith
+10
+
+In 1723 Sir William____ , English jurist (Blackstone's Commentaries), born in
+Blackstone
+10
+
+In 1725 ____ -Joseph Cugnot, designed and built first automobile, born in
+Nicolas
+10
+
+In 1725 Nicolas____ Cugnot, designed and built first automobile, born in
+Joseph
+10
+
+In 1725 Nicolas-Joseph____ , designed and built first automobile, born in
+Cugnot
+10
+
+In 1726 ____ -Andre Philidor, France, chess champion/musician, born in
+Francois
+10
+
+In 1726 Francois____ Philidor, France, chess champion/musician, born in
+Andre
+10
+
+In 1726 Francois-Andre Philidor, France, ____ champion/musician, born in
+Chess
+10
+
+In 1726 Francois-Andre____ , France, chess champion/musician, born in
+Philidor
+10
+
+In 1727 Severe earthquake in____
+New England
+10
+
+In 1727 Sir Isaac ____ died in London
+Newton
+10
+
+In 1728 ____ Cook, captain/explorer, discovered Sandwich Islands and led First Fleet to Australia, born in
+James
+10
+
+In 1728 ____ Lambert, Swiss mathematician, proved pi is irrational
+Johann
+10
+
+In 1728 James____ , captain/explorer, discovered Sandwich Islands and led First Fleet to Australia, born in
+Cook
+10
+
+In 1728 Johann____ , Swiss mathematician, proved pi is irrational
+Lambert
+10
+
+In 1729 ____ Mendelssohn, philosopher, critic, Bible translator, born in
+Moses
+10
+
+In 1729 Catherine II (the Great) empress of ____ (1762-96), born in
+Russia
+10
+
+In 1729 Moses____ , philosopher, critic, Bible translator, born in
+Mendelssohn
+10
+
+In 1730 Josiah____ , English pottery designer, manufacturer born
+Wedgewood
+10
+
+In 1731 ____ Cavendish, English physicist, chemist born
+Henr
+10
+
+In 1731 Henry____ , English physicist, chemist born
+Cavendis
+10
+
+In 1732 George____ , father figure for U.S., President (1789-1796), born in
+Washington
+10
+
+In 1733 Joseph ____ (father of soda pop) invents carbonated water
+Priestly
+10
+
+In 1734 Daniel ____ frontiersman/explorer, born in
+Boone
+10
+
+In 1736____ , Scotland, inventor (steam engine), born in
+James watt
+10
+
+In 1737 Antonio____ , violin maker, dies
+Stradivari
+10
+
+In 1737 Edward ____ England, historian (Decline & Fall of the Roman Emp), born in
+Gibson
+10
+
+In 1737 Thomas____ , political essayist (Common Sense, Age of Reason), born in
+Paine
+10
+
+In 1738 ____ of England, king, born in
+George iii
+10
+
+In 1738 Sir William Herschel, astronomer discovered ____
+Uranus
+10
+
+In 1740 ____ (in Scotland), Samuel Johnson's biographer, born in
+James boswell
+10
+
+In 1740 ____ Theresa became ruler of Austria, Hungary and Bohemia
+Maria
+10
+
+In 1740 Maria ____ became ruler of Austria, Hungary and Bohemia
+Theresa
+10
+
+In 1740 Maria Theresa became ruler of Austria, ____ and Bohemia
+Hungary
+10
+
+In 1740 Maria Theresa became ruler of Austria, Hungary and____
+Bohemia
+10
+
+In 1740 Maria Theresa became ruler of____ , Hungary and Bohemia
+Austria
+10
+
+In 1740 Marquis____ , 1st known sadist, writer (Justine), born in
+De sade
+10
+
+In 1741 Vitus Bering, Dutch ____ and explorer, died
+Navigator
+10
+
+In 1742 Edmund Halley genius eclipsed by____ , dies at 86
+Newton
+10
+
+In 1742, this crop was first planted in louisiana?
+Sugar cane
+10
+
+In 1743 Jean-Paul____ , philosopher born
+Marat
+10
+
+In 1744 Elbridge____ , 5th VP, gov. of Mass., invented gerrymandering, born in
+Gerry
+10
+
+In 1745 (France) Jacques Montgolfier, ____ (1st pioneer balloonist), born in
+Aeronaut
+10
+
+In 1745 Count Alessandro Giuseppe Antonio Anastasio____ , invented the electric battery, born in
+Volta
+10
+
+In 1746 Battle Of____ , Scotland
+Falkirk
+10
+
+In 1746 Francisco Jose____ , artist, born in
+De goya
+10
+
+In 1746 Giuseppe Piazzi, discovered first asteroid, ____
+Ceres
+10
+
+In 1746 Giuseppe____ , discovered first asteroid, Ceres
+Piazzi
+10
+
+In 1748 Treaty of Aix-la-Chapelle, ends War of ____ Succession
+Austrian
+10
+
+In 1748 Treaty of____ , ends War of Austrian Succession
+Aix-la-chapelle
+10
+
+In 1749 Johann Nikolaus____ , musicologist and first biographer of Bach, born in
+Forkel
+10
+
+In 1750 ____ Salieri Italy, composer (Tatare), born in
+Antonio
+10
+
+In 1750 ____ Sebastian Bach German composer (Art of the Fugue), dies at 65
+Johann
+10
+
+In 1750 Antonio ____ Italy, composer (Tatare), born in
+Salieri
+10
+
+In 1750 Johann ____ Bach German composer (Art of the Fugue), dies at 65
+Sebastian
+10
+
+In 1750 Johann Sebastian ____ German composer (Art of the Fugue), dies at 65
+Bach
+10
+
+In 1750 Johann Sebastian Bach German composer (Art of the Fugue), dies at____
+65
+10
+
+In 1752 ____ Appert, inventor of food canning, bouillon tablet, born in
+Nicolas
+10
+
+In 1752 Fanny____ , England, author (Camille, Evelina), born in
+Burney
+10
+
+In 1752 Last day of ____ calendar in Britain, British colonies
+Julian
+10
+
+In 1752 Nicolas Appert, inventor of____ , bouillon tablet, born in
+Food canning
+10
+
+In 1752 Nicolas____ , inventor of food canning, bouillon tablet, born in
+Appert
+10
+
+In 1752 Pope ____ elected to succeed Zacharias, died 2 days later
+Stephen ii
+10
+
+In 1752 This day never happened nor the next 10 days as England adopts Gregorian Calendar. People riot thinking the govt stole ____ days of their lives
+Eleven
+10
+
+In 1753 ____ Term Day
+Whitsunday
+10
+
+In 1753 First official St. ____ 's Day
+Patrick
+10
+
+In 1754 ____ Bligh nasty ship's captain and New South Wales governor (HMS Bounty), born in
+William
+10
+
+In 1754 William ____ nasty ship's captain and New South Wales governor (HMS Bounty), born in
+Bligh
+10
+
+In 1754 William Bligh nasty ship's captain and ____ governor (HMS Bounty), born in
+New south wales
+10
+
+In 1754 William Bligh nasty ship's captain and New South Wales governor (HMS____ ), born in
+Bounty
+10
+
+In 1754____ , French statesman and diplomat, born in
+Talleyrand
+10
+
+In 1754____ , king of France (1774-92); guillotined, born in
+Louis xvi
+10
+
+In 1755 ____ -Jacque Conte inventor (modern pencil), born in
+Nicolas
+10
+
+In 1755 ____ Evans, pioneered the high-pressure steam engine, born in
+Oliver
+10
+
+In 1755 ____ Lord Clive, founded British empire in India, born in
+Robert
+10
+
+In 1755 Marie-Antoinette Queen of____ , born in
+France
+10
+
+In 1755 Nicolas____ Conte inventor (modern pencil), born in
+Jacque
+10
+
+In 1755 Nicolas-Jacque ____ inventor (modern pencil), born in
+Conte
+10
+
+In 1755 Oliver____ , pioneered the high-pressure steam engine, born in
+Evans
+10
+
+In 1755 Robert Lord Clive, founded British empire in____ , born in
+India
+10
+
+In 1755 Robert Lord____ , founded British empire in India, born in
+Clive
+10
+
+In 1755____ , the first Secretary of the US Treasury, born in
+Alexander hamilton
+10
+
+In 1755, this Portuguese capital was devastated by a powerful earthquake?
+Lisbon
+10
+
+In 1756 ____ Loudon McAdam created macadam road surface (asphalt), born in
+John
+10
+
+In 1756 Aaron____ , duelist, born in
+Burr
+10
+
+In 1756 John ____ McAdam created macadam road surface (asphalt), born in
+Loudon
+10
+
+In 1756 John Loudon ____ created macadam road surface (asphalt), born in
+Mcadam
+10
+
+In 1756 St. Patrick's Day first celebrated in____ , at the Crown and Thistle Tavern
+New york city
+10
+
+In 1756 Wolfgang Amadeus____ , musical prodigy, composer, born in
+Mozart
+10
+
+In 1757 Charles X, Versailles, ____ , Duke of Prussia, born in
+France
+10
+
+In 1757 Charles X, Versailles, France, Duke of____ , born in
+Prussia
+10
+
+In 1757____ , king of France (1824-30); deposed, born in
+Charles x
+10
+
+In 1757____ , Versailles, France, Duke of Prussia, born in
+Charles x
+10
+
+In 1758 ____ Messier observes the Crab Nebula and begins catalog
+Charles
+10
+
+In 1758 ____ Nelson Burnham Thorpe, Britain, naval hero at Trafalgar, born in
+Horatio
+10
+
+In 1758 ____ Olbers, discoverer of asteroids Pallas and Vesta, born in
+Wilhelm
+10
+
+In 1758 ____ Webster, lexicographer
+Noah
+10
+
+In 1758 Charles ____ observes the Crab Nebula and begins catalog
+Messier
+10
+
+In 1758 Charles Messier observes the ____ and begins catalog
+Crab nebula
+10
+
+In 1758 Horatio ____ Burnham Thorpe, Britain, naval hero at Trafalgar, born in
+Nelson
+10
+
+In 1758 Horatio Nelson ____ Thorpe, Britain, naval hero at Trafalgar, born in
+Burnham
+10
+
+In 1758 Horatio Nelson Burnham Thorpe, Britain, naval hero at____ , born in
+Trafalgar
+10
+
+In 1758 Horatio Nelson Burnham____ , Britain, naval hero at Trafalgar, born in
+Thorpe
+10
+
+In 1758 Noah____ , lexicographer
+Webster
+10
+
+In 1758 Wilhelm Olbers, discoverer of asteroids ____ and Vesta, born in
+Pallas
+10
+
+In 1758 Wilhelm Olbers, discoverer of asteroids Pallas and____ , born in
+Vesta
+10
+
+In 1758 Wilhelm____ , discoverer of asteroids Pallas and Vesta, born in
+Olbers
+10
+
+In 1759 ____ defeats Montcalm on Plains of Abraham; Canada becomes English
+Wolfe
+10
+
+In 1759 Destructive eruption of____
+Vesuvius
+10
+
+In 1759 Robert____ , Scottish poet, born in
+Burns
+10
+
+In 1759 Wolfe defeats ____ on Plains of Abraham; Canada becomes English
+Montcalm
+10
+
+In 1759 Wolfe defeats Montcalm on Plains of____ ; Canada becomes English
+Abraham
+10
+
+In 1760 ____ ascends the British throne
+George iii
+10
+
+In 1760 Charles III king of ____ (1759-88), born in
+Spain
+10
+
+In 1762 George ____ king of England (1820-30), born in
+Iv
+10
+
+In 1763 John Jacob____ , merchant, born in
+Astor
+10
+
+In 1763 Treaty of ____ ends the French and Indian War
+Paris
+10
+
+In 1764 Ann Ward____ , English Gothic novelist (The Italian), born in
+Radcliffe
+10
+
+In 1765 ____ catalogs M41 (galactic cluster in Canis Major)
+Charles messier
+10
+
+In 1765 ____ Fulton, inventor, born in
+Robert
+10
+
+In 1765 ____ king of England (1830-37), born in
+William iv
+10
+
+In 1765 Robert____ , built first commercial steamboat
+Fulton
+10
+
+In 1765 Robert____ , inventor, born in
+Fulton
+10
+
+In 1766 The first patent is granted for a ____ ... a wicker basket on a pully and a chain, designed by a London watchmaker
+Fire escape
+10
+
+In 1768 ____ Ren, de Chateaubriand, French poet, novelist, statesman
+Francois
+10
+
+In 1768 Francois Ren, ____ , French poet, novelist, statesman
+De chateaubriand
+10
+
+In 1768 Francois Ren, de Chateaubriand, ____ poet, novelist, statesman
+French
+10
+
+In 1768 Francois____ , de Chateaubriand, French poet, novelist, statesman
+Ren
+10
+
+In 1769 ____ Bonaparte (Corsica), resident of Elba (Emperor of France 1804-13, 1814-15), born in
+Napoleon
+10
+
+In 1769 ____ Hoyle games expert, dies (birth date unknown)
+Edmond
+10
+
+In 1769 Edmond ____ games expert, dies (birth date unknown)
+Hoyle
+10
+
+In 1769 Napoleon ____ (Corsica), resident of Elba (Emperor of France 1804-13, 1814-15), born in
+Bonaparte
+10
+
+In 1769 Napoleon Bonaparte (Corsica), resident of ____ (Emperor of France 1804-13, 1814-15), born in
+Elba
+10
+
+In 1770 Capt ____ arrives in New South Wales
+Cook
+10
+
+In 1770 Captain ____ runs aground on Australian Great Barrier Reef
+Cook
+10
+
+In 1770 George ____ (C) British PM (1827), born in
+Canning
+10
+
+In 1770 Ludwig von ____ (in Bonn, Germany), composer, born in
+Beethoven
+10
+
+In 1770 Marie ____ married the future King Louis XVI of France
+Antoinette
+10
+
+In 1771 Sir ____ Scott, Scottish novelist, poet (Lady of Lake, Ivanhoe), born in
+Walter
+10
+
+In 1771 Sir Walter Scott, ____ novelist, poet (Lady of Lake, Ivanhoe), born in
+Scottish
+10
+
+In 1771 Sir Walter____ , Scottish novelist, poet (Lady of Lake, Ivanhoe), born in
+Scott
+10
+
+In 1771 Spain cedes the ____ Islands to Britain
+Falkland
+10
+
+In 1772 ____ outlawed in England
+Slavery
+10
+
+In 1772 ____ Taylor Coleridge (in England), poet, born in
+Samuel
+10
+
+In 1772 First partition of Poland, between Austria, ____ and Russia
+Prussia
+10
+
+In 1772 First partition of Poland, between Austria, Prussia and____
+Russia
+10
+
+In 1772 First partition of Poland, between____ , Prussia and Russia
+Austria
+10
+
+In 1772 First partition of____ , between Austria, Prussia and Russia
+Poland
+10
+
+In 1772 Samuel ____ Coleridge (in England), poet, born in
+Taylor
+10
+
+In 1772 Samuel Taylor ____ (in England), poet, born in
+Coleridge
+10
+
+In 1773 Big Tea Party in Boston Harbor. Indians welcome. ____ unwelcome
+British
+10
+
+In 1773 Scottish settlers arrive at____ , Nova Scotia (Canada)
+Pictou
+10
+
+In 1773 Thomas ____ proponent of the wave theory of light, born in
+Young
+10
+
+In 1774 ____ Caspar Mezzofanti, Cardinal/linguist (understood 70 languages), born in
+Joseph
+10
+
+In 1774 ____ Chapman, alias Johnny Appleseed, born in
+John
+10
+
+In 1774 Dr. ____ discovers oxygen
+Priestly
+10
+
+In 1774 Dr. Priestly discovers____
+Oxygen
+10
+
+In 1774 John Chapman, alias ____ Appleseed, born in
+Johnny
+10
+
+In 1774 John Chapman, alias Johnny____ , born in
+Appleseed
+10
+
+In 1774 John____ , alias Johnny Appleseed, born in
+Chapman
+10
+
+In 1774 Joseph ____ Mezzofanti, Cardinal/linguist (understood 70 languages), born in
+Caspar
+10
+
+In 1774 Joseph Caspar____ , Cardinal/linguist (understood 70 languages), born in
+Mezzofanti
+10
+
+In 1775 Andre-Marie Ampere of____ , discovered electromagnetism, born in
+France
+10
+
+In 1775 Charles ____ (in England), writer, born in
+Lamb
+10
+
+In 1775 Jane ____ (in England), novelist (Pride and Prejudice), born in
+Austen
+10
+
+In 1775 The first ____ ship, 'San Carlos', enters San Francisco bay
+Spanish
+10
+
+In 1775 The first Spanish ship, '____ , enters San Francisco bay
+San carlos
+10
+
+In 1776 ____ agree to donate arms to American rebels
+France & Spain
+10
+
+In 1776 ____ Avogadro, made famous by picking 6.022 x 10 ^ 23
+Amedeo
+10
+
+In 1776 Amedeo____ , made famous by picking 6.022 x 10 ^ 23
+Avogadro
+10
+
+In 1776 Col. John ____ gave first public reading of American Decleration of Independence
+Nixon
+10
+
+In 1776 Declaration of Independence is read aloud to Gen. George Washington's troops in____
+New york
+10
+
+In 1776 Declaration of Independence-US gained independence from ____ (U.S. Independence Day)
+Britain
+10
+
+In 1776 Henri Dutrochet, discovered & named process of ____
+Osmosis
+10
+
+In 1776 John ____ (in England), painter, born in
+Constable
+10
+
+In 1776 Thomas ____ publishes his first 'American Crisis' essay
+Paine
+10
+
+In 1776 Washington and his troops cross the ____ River
+Delaware
+10
+
+In 1777 ____ Christian Oersted, physicist, chemist born
+Hans
+10
+
+In 1777 ____ I, tsar of Russia (1801-25), born in
+Alexander
+10
+
+In 1777 ____ recognizes the independance of the 13 US colonies
+France
+10
+
+In 1777 Hans ____ Oersted, physicist, chemist born
+Christian
+10
+
+In 1777 Hans Christian Oersted, ____ , chemist born
+Physicist
+10
+
+In 1777 Hans Christian Oersted, physicist, ____ born
+Chemist
+10
+
+In 1777 Hans Christian____ , physicist, chemist born
+Oersted
+10
+
+In 1778 ____ Gottlieb von Bellinghausen 1st to circumnavigate Antarctica, born in
+Fabian
+10
+
+In 1778 ____ O'Higgins, won independence for Chile, born in
+Bernardo
+10
+
+In 1778 Beau____ , English Dandy, man of fashion, born in
+Brummel
+10
+
+In 1778 Bernardo____ , won independence for Chile, born in
+O'higgins
+10
+
+In 1778 Capt James Cook stumbles over ____ (Hawaiian Islands)
+Sandwich islands
+10
+
+In 1778 Capt. ____ passes through Bering Strait
+Cook
+10
+
+In 1778 Capt. Cook passes through ____ Strait
+Bering
+10
+
+In 1778 Captain Cook discovers ____ (in the Sandwich Islands)
+Maui
+10
+
+In 1778 Fabian ____ von Bellinghausen 1st to circumnavigate Antarctica, born in
+Gottlieb
+10
+
+In 1778 Fabian Gottlieb ____ 1st to circumnavigate Antarctica, born in
+Von bellinghausen
+10
+
+In 1778 Fabian Gottlieb von Bellinghausen 1st to circumnavigate____ , born in
+Antarctica
+10
+
+In 1778 Sir Humphry Davy, discovered several ____ elements
+Chemical
+10
+
+In 1778, fashionable women of ____ never went out in blustery weather without a lightning rod attached to their hats
+Paris
+10
+
+In 1778, fashionable women of Paris never went out in blustery weather without a ____ attached to their hats
+Lightning rod
+10
+
+In 1778, fashionable women of paris never went out in blustery weather without a lightning rod attached to their____
+Hats
+10
+
+In 1779 ____ Ritter, cofounder of modern science of geography, born in
+Carl
+10
+
+In 1779 Carl Ritter, cofounder of modern science of____ , born in
+Geography
+10
+
+In 1779 Carl____ , cofounder of modern science of geography, born in
+Ritter
+10
+
+In 1779 Clement Clarke____ , American author ('Twas the Night Before Xmas)
+Moore
+10
+
+In 1779____ , thesaurus fame, inventor (slide rule, pocket chessboard), born in
+Peter roget
+10
+
+In 1779, what city was replaced by Richmond as Virginia's capital?
+Williamsburg
+10
+
+In 1780 Britain declares war against____
+Holland
+10
+
+In 1780 William ____ discovers 1st binary star, Xi Ursae Majoris
+Herschel
+10
+
+In 1781 ____ founded in the Valley of Smokes (Indian Name)
+Los angeles
+10
+
+In 1781 (England) Planet ____ was discovered by Sir William Herschel
+Uranus
+10
+
+In 1781 George____ , inventor (principal RR locomotive), born in
+Stephenson
+10
+
+In 1781 Los Angeles founded in the Valley of ____ (Indian Name)
+Smokes
+10
+
+In 1781 Sir ____ Raffles founded Singapore, born in
+Stamford
+10
+
+In 1781 Sir Stamford ____ founded Singapore, born in
+Raffles
+10
+
+In 1781 Sir Stamford Raffles founded____ , born in
+Singapore
+10
+
+In 1782 ____ Paganini, Genoa, Italy, composer/violin virtuoso (Princess Lucca), born in
+Niccolo
+10
+
+In 1782 ____ recognizes US
+Netherlands
+10
+
+In 1782 ____ Washington creates the Order of the Purple Heart
+George
+10
+
+In 1782 George ____ creates the Order of the Purple Heart
+Washington
+10
+
+In 1782 George Washington creates the Order of the____
+Purple heart
+10
+
+In 1782 Niccolo____ , Genoa, Italy, composer/violin virtuoso (Princess Lucca), born in
+Paganini
+10
+
+In 1783 ____ becomes a protectorate of tsarist Russia
+Georgia
+10
+
+In 1783 ____ de Iturbide, emperor of Mexico (1822-23), born in
+Agustin i
+10
+
+In 1783 ____ Heathcoat, invented lace-making machinery, born in
+John
+10
+
+In 1783 ____ Pilftre de Rozier makes captive-balloon ascent
+Jean
+10
+
+In 1783 ____ Volcano in southern Iceland begins 8-month eruption
+Laki
+10
+
+In 1783 Agustin I de Iturbide, emperor of ____ (1822-23), born in
+Mexico
+10
+
+In 1783 Agustin I de____ , emperor of Mexico (1822-23), born in
+Iturbide
+10
+
+In 1783 Britain evacuated ____ York, their last military position in U.S
+New
+10
+
+In 1783 Charles and M.N. Roberts ascend 2,000' in a ____ balloon
+Hydrogen
+10
+
+In 1783 First hydrogen-filled ____ ascent (unmanned)
+Balloon
+10
+
+In 1783 George ____ resigned as US Army's commander-in-chief
+Washington
+10
+
+In 1783 Georgia becomes a protectorate of tsarist____
+Russia
+10
+
+In 1783 Jean ____ de Rozier makes captive-balloon ascent
+Pilftre
+10
+
+In 1783 Jean Pilftre ____ makes captive-balloon ascent
+De rozier
+10
+
+In 1783 John Heathcoat, invented ____ machinery, born in
+Lace-making
+10
+
+In 1783 John____ , invented lace-making machinery, born in
+Heathcoat
+10
+
+In 1783 Joseph Jaques ____ becomes the first to fly (10 minute) in a hot-air balloon
+Montgolfier
+10
+
+In 1783 Laki Volcano in southern ____ begins 8-month eruption
+Iceland
+10
+
+In 1783 Laki Volcano in southern Iceland begins ____ eruption
+8-month
+10
+
+In 1783 Simon Bolivar, freed 6 Latin American republics from ____ rule, born in
+Spanish
+10
+
+In 1783 Simon____ , freed 6 Latin American republics from Spanish rule, born in
+Bolivar
+10
+
+In 1783 Washington ____, writer (Rip Van Winkle, Legend of Sleepy Hollow), born in
+Irving
+10
+
+In 1784 E. ____ opens the first cooking school, in Great Britain
+Kidner
+10
+
+In 1784 Empress of ____ sets sail on first New York to China route
+China
+10
+
+In 1785 ____ (in Germany), storyteller
+Jacob grimm
+10
+
+In 1785 ____ French balloonists die in world's 1st fatal aviation accident
+Two
+10
+
+In 1785 ____ Miguel Carrera, president of Chile (1811-14), born in
+Jose
+10
+
+In 1785 Alessandro____ , poet, born in
+Manzoni
+10
+
+In 1785 Jose ____ Carrera, president of Chile (1811-14), born in
+Miguel
+10
+
+In 1785 Jose Miguel Carrera, president of ____ (1811-14), born in
+Chile
+10
+
+In 1785 Jose Miguel____ , president of Chile (1811-14), born in
+Carrera
+10
+
+In 1786 ____ Crockett US, frontiersman/adventurer/politician, born in
+Davy
+10
+
+In 1786 Davy ____ US, frontiersman/adventurer/politician, born in
+Crockett
+10
+
+In 1786 Wilhelm Karl____ , story teller, born in
+Grimm
+10
+
+In 1787 Georg Simon____ , scientist, born in
+Ohm
+10
+
+In 1787 Karl Ferdinand von____ , helped create modern plastic surgery, born in
+Grafe
+10
+
+In 1787 Thomas H. Gallaudet, pioneer of educating the____ , born in
+Deaf
+10
+
+In 1787 Titania & Oberon, moons of____ , discovered by William Herschel
+Uranus
+10
+
+In 1788 ____ becomes the capitol of the United States
+New york city
+10
+
+In 1788 First settlement established by the ____ in Australia. AUSTRALIA DAY !
+English
+10
+
+In 1788 Lord George Gordon Noel____ , England, romantic poet (Don Juan), born in
+Byron
+10
+
+In 1789 ____ Herschel discovers Mimas, satellite of Saturn
+William
+10
+
+In 1789 ____ Whiskey is first distilled from corn by Reverend Elijah Craig in Bourbon County, Kentucky
+Bourbon
+10
+
+In 1789 Bastille Day-citizens of Paris storm ____ prison
+Bastille
+10
+
+In 1789 Louis-Jacques-Mande Daguerre, developed a method of ____
+Photography
+10
+
+In 1789 Mutiny on HMS?
+Bounty
+10
+
+In 1789 Sir ____ Herschel discovers Saturn's moon Enceladus
+William
+10
+
+In 1789 Sir William ____ discovers Saturn's moon Enceladus
+Herschel
+10
+
+In 1789 Sir William Herschel discovers ____ 's moon Enceladus
+Saturn
+10
+
+In 1789 Sir William Herschel discovers Saturn's moon____
+Enceladus
+10
+
+In 1789 William ____ discovers Mimas, satellite of Saturn
+Herschel
+10
+
+In 1789 William Herschel discovers Mimas, satellite of____
+Saturn
+10
+
+In 1789 William Herschel discovers____ , satellite of Saturn
+Mimas
+10
+
+In 1790 Aztec calendar stone discovered in ____ City
+Mexico
+10
+
+In 1790 Chrysanthemums are introduced into England from____
+China
+10
+
+In 1790 Jean-Francois Champollion, deciphered ____ hieroglyphics
+Egyptian
+10
+
+In 1790 Sir William____ , British Arctic explorer,born
+Parry
+10
+
+In 1790 Slaves revolt in ____ (later suppressed)
+Haiti
+10
+
+In 1790 U.S. ____ system established
+Patent
+10
+
+In 1791 ____ Faraday discovered principle of electric motor, born in
+Michael
+10
+
+In 1791 ____ Fitch granted a US patent for his working steamboat
+John
+10
+
+In 1791 (AUSTRIA) Wolfgang ____ Mozart, composer, dies aged 37
+Amadeus
+10
+
+In 1791 (England) Charles____ , mathematician and developer of the speedometer, born in
+Babbage
+10
+
+In 1791 John ____ granted a US patent for his working steamboat
+Fitch
+10
+
+In 1791 King Louis ____ caught trying to escape French Revolution
+Xvi
+10
+
+In 1791 Michael ____ discovered principle of electric motor, born in
+Faraday
+10
+
+In 1791 New York City traffic regulation creates the first ____ -way street
+One
+10
+
+In 1792 ____ Bysshe Shelley England, romantic poet (Adonais), born in
+Percy
+10
+
+In 1792 ____ lays cornerstone of the Executive Mansion (White House)
+Washington
+10
+
+In 1792 1st ____ Republic declared
+French
+10
+
+In 1792 500 Marseillaisian men sing ____ 's national anthem for 1st time
+France
+10
+
+In 1792 Charles____ , English inventor (calculating machine), born in
+Babbage
+10
+
+In 1792 France declares war on ____ , Prussia & Sardinia
+Austria
+10
+
+In 1792 France declares war on Austria, ____ & Sardinia
+Prussia
+10
+
+In 1792 France declares war on Austria, Prussia & ____
+Sardinia
+10
+
+In 1792 George ____ Dallas (D), 11th Vice President (1845-49), born in
+Mifflin
+10
+
+In 1792 Guillotine 1st used, executes highwayman Nicolas J?
+Pelletier
+10
+
+In 1792 Mobs in Paris attack the palace of____
+Louis xvi
+10
+
+In 1792 Percy ____ Shelley England, romantic poet (Adonais), born in
+Bysshe
+10
+
+In 1792 Percy Bysshe ____ England, romantic poet (Adonais), born in
+Shelley
+10
+
+In 1793 ____ Antoinette beheaded in France
+Marie
+10
+
+In 1793 ____ executed
+Marie antoinette
+10
+
+In 1793 ____ is 1st mentioned in an English sporting magazine
+Tennis
+10
+
+In 1793 ____ Whitney applies for patent for the cotton gin
+Eli
+10
+
+In 1793 A new war government takes office in____
+France
+10
+
+In 1793 Eli ____ applies for patent for the cotton gin
+Whitney
+10
+
+In 1793 French revolutionary writer Jean Paul ____ murdered by Charlotte Corday
+Marat
+10
+
+In 1793 French revolutionary writer Jean Paul Marat murdered by Charlotte____
+Corday
+10
+
+In 1793 Louis XVI French king, ____ by French revolutionaries
+Beheaded
+10
+
+In 1793 Marie ____ beheaded in France
+Antoinette
+10
+
+In 1793 The____ , in Paris, was opened to the public
+Louvre
+10
+
+In 1793, ____ reaches the pacific
+Alexander mackenzie
+10
+
+In 1793, George Washington laid the cornerstone for the most important government building in the United States?
+White House
+10
+
+In 1794 ____ and 22 other terrorists executed to thunderous cheers
+Robespierre
+10
+
+In 1794 Eli ____ received patent for cotton gin
+Whitney
+10
+
+In 1794 Nathan____ , New Hampshire, gets patent for the washing machine
+Briggs
+10
+
+In 1794 Robespierre and ____ other terrorists executed to thunderous cheers
+22
+10
+
+In 1795 Charles ____ , England, explorered Australia, born in
+Sturt
+10
+
+In 1795 Sir Henry ____ British soldier (War in Afghanistan 1838-39), born in
+Havelock
+10
+
+In 1795 Sir Rowland Hill introduced 1st ____ postage stamp (1840)
+Adhesive
+10
+
+In 1795 Third partition of Poland, between Austria, ____ and Russia
+Prussia
+10
+
+In 1795 Third partition of Poland, between Austria, Prussia and____
+Russia
+10
+
+In 1795 Third partition of Poland, between____ , Prussia and Russia
+Austria
+10
+
+In 1795 Third partition of____ , between Austria, Prussia and Russia
+Poland
+10
+
+In 1796 ____ Russia, Tsar (1825-55), born in
+Nicholas i
+10
+
+In 1796 Napoleon Bonaparte married Josephine de?
+Beauharnais
+10
+
+In 1796 Robert ____ Scottish poet, dies
+Burns
+10
+
+In 1796 Robert Burns ____ poet, dies
+Scottish
+10
+
+In 1797 ____ -Jacques Garnerin makes the first parachute jump from a balloon (Paris, France)
+Andre
+10
+
+In 1797 ____ Wollstonecraft Shelley London England, author (Frankenstein), born in
+Mary
+10
+
+In 1797 Andre____ Garnerin makes the first parachute jump from a balloon (Paris, France)
+Jacques
+10
+
+In 1797 Andre-Jacques ____ makes the first parachute jump from a balloon (Paris, France)
+Garnerin
+10
+
+In 1797 Franz Peter____ , Lichtenthal Austria, composer (Unfinished Symphony), born in
+Schubert
+10
+
+In 1797 Henry Engelhard____ , piano maker, born in
+Steinway
+10
+
+In 1797 Mary ____ Shelley London England, author (Frankenstein), born in
+Wollstonecraft
+10
+
+In 1797 Mary Wollstonecraft ____ London England, author (Frankenstein), born in
+Shelley
+10
+
+In 1797 there were two British Navy mutinies. Give the location of one?
+Nore, spithead
+10
+
+In 1797 U.S. Navy frigate USS Constitution, ____ , launched in Boston
+Old ironsides
+10
+
+In 1797 U.S. Navy frigate USS Constitution, Old Ironsides, launched in____
+Boston
+10
+
+In 1797 U.S. Navy frigate USS____ , Old Ironsides, launched in Boston
+Constitution
+10
+
+In 1797 Wilhelm Beer, first to map?
+Mars
+10
+
+In 1798 ____ 1st emperor of Brazil (1822-31), king of Portugal, born in
+Pedro i
+10
+
+In 1798 ____ Amendment of American Constitution ratified, Judicial powers construed
+11th
+10
+
+In 1798 ____ under Adm Horatio Nelson beat French at Battle of Nile
+British
+10
+
+In 1798 British under Adm ____ Nelson beat French at Battle of Nile
+Horatio
+10
+
+In 1798 British under Adm Horatio ____ beat French at Battle of Nile
+Nelson
+10
+
+In 1798 British under Adm Horatio Nelson beat ____ at Battle of Nile
+French
+10
+
+In 1798 British under Adm Horatio Nelson beat French at Battle of____
+Nile
+10
+
+In 1798 Napoleon captures____ , Egypt
+Alexandria
+10
+
+In 1798 Pedro I 1st emperor of ____ (1822-31), king of Portugal, born in
+Brazil
+10
+
+In 1798 Pedro I 1st emperor of Brazil (1822-31), king of____ , born in
+Portugal
+10
+
+In 1799 ____ becomes dictator (1st consul) of France
+Napoleon
+10
+
+In 1799 Edward Jenner's ____ is introduced
+Smallpox vaccination
+10
+
+In 1799 First ____ imposed
+Income tax
+10
+
+In 1799 French-Egyptian forces under ____ I beat Turks at Battle of Abukir
+Napolean
+10
+
+In 1799 French-Egyptian forces under Napolean I beat ____ at Battle of Abukir
+Turks
+10
+
+In 1799 French-Egyptian forces under Napolean I beat Turks at Battle of____
+Abukir
+10
+
+In 1799 Honore de ____ France, novelist (Pere Goriot), born in
+Balzac
+10
+
+In 1799 King of Naples flees before the advancing ____ armies
+French
+10
+
+In 1800 Free black commission of Philadelphia petitioned Congress to abolish?
+Slavery
+10
+
+In 1801 ____ declares war on US for refusing tribute
+Tripoli
+10
+
+In 1801 William H.____ , who bought Alaska at $0.02/acre, born in
+Seward
+10
+
+In 1802 ____ Whitman, missionary born
+Marcus
+10
+
+In 1802 Abraham____ , 16th President (1861-1865), born in
+Lincoln
+10
+
+In 1802 Alexandre____ , France, author (3 Musketeers), born in
+Dumas
+10
+
+In 1802 Marcus____ , missionary born
+Whitman
+10
+
+In 1802 Thomas Davenport, invented the first commercially successful____ , born in
+Electric motor
+10
+
+In 1802 Thomas____ , invented the first commercially successful electric motor, born in
+Davenport
+10
+
+In 1802 Victor____ , French author, born in
+Hugo
+10
+
+In 1803 Battle of Vertieres, in which Haitians defeat____
+French
+10
+
+In 1803 Christian Doppler, discovered ____ Effect (color shift)
+Doppler
+10
+
+In 1803 Meteorites fall in ____ , France
+L'aigle
+10
+
+In 1803 Ralph Waldo ____ US, essayist/philosopher, born in
+Emerson
+10
+
+In 1803 Robert ____ 's insurrection in Dublin
+Emmett
+10
+
+In 1804 ____ becomes 1st French emperor, placing crown on his own head
+Napoleon
+10
+
+In 1804 Benjamin____ , British Statesman, born in
+Disraeli
+10
+
+In 1804 First self-propelled ____ on rails demonstrated, in Wales
+Locomotive
+10
+
+In 1804 James____ , scout, fur trader, mountain man par excellance, born in
+Bridger
+10
+
+In 1804 Johann____ , composer, born in
+Strauss
+10
+
+In 1804 John____ , pioneer manufacturer of agricultural implements, born in
+Deere
+10
+
+In 1804 K. L. ____ discovers Juno, third known asteroid
+Harding
+10
+
+In 1804 K. L. Harding discovers Juno, ____ known asteroid
+Third
+10
+
+In 1804 K. L. Harding discovers____ , third known asteroid
+Juno
+10
+
+In 1805 (USA) Joesph____ , founder of the Mormon church, born in
+Smith
+10
+
+In 1805 Battle of Trafalgar, although killed in this battle, ____ established British naval supremacy for the next century, beating both French and Spanish
+Nelson
+10
+
+In 1805 Battle of Trafalgar, although killed in this battle, Nelson established British naval supremacy for the next century, beating both ____ and Spanish
+French
+10
+
+In 1805 Battle of Trafalgar, although killed in this battle, Nelson established British naval supremacy for the next century, beating both French and____
+Spanish
+10
+
+In 1805 Battle of____ , although killed in this battle, Nelson established British naval supremacy for the next century, beating both French and Spanish
+Trafalgar
+10
+
+In 1805 Hans Christian____ , danish storyteller, born in
+Andersen
+10
+
+In 1805 Napoleon defeats ____ & Austrians at Austerlitz
+Russians
+10
+
+In 1805 US Marines attack shores of?
+Tripoli
+10
+
+In 1806 Benito____ , Mexician leader, born in
+Juarez
+10
+
+In 1806 Britain ____ the Cape of Good Hope
+Occupies
+10
+
+In 1806 Elizabeth ____ Browning, poet, born in
+Barrett
+10
+
+In 1806 John Stuart ____ philosopher/political economist/Utilitarian, born in
+Mill
+10
+
+In 1807 Giuseppe Garibaldi, unified____ , born in
+Italy
+10
+
+In 1807 Giuseppe____ , unified Italy, born in
+Garibaldi
+10
+
+In 1807 Henry Wadsworth ____ (in Portland, Maine), poet, born in
+Longfellow
+10
+
+In 1807 Townsend ____ 1st sells fruit-flavored carbonated drinks (Phila)
+Speakman
+10
+
+In 1808 Uprising against French occupation begins in?
+Madrid
+10
+
+In 1809 ____ 's constitution adopted
+Sweden
+10
+
+In 1809 ____ declares independence from Spain (National Day)
+Ecuador
+10
+
+In 1809 ____ Lord Tennyson, poet laureate of England, born in
+Alfred
+10
+
+In 1809 Alfred ____ Tennyson, poet laureate of England, born in
+Lord
+10
+
+In 1809 Alfred Lord____ , poet laureate of England, born in
+Tennyson
+10
+
+In 1809 Charles____ , evolutionist, born in
+Darwin
+10
+
+In 1809 Ecuador declares independence from ____ (National Day)
+Spain
+10
+
+In 1809 Louis Braille, developed ____ for the blind
+Reading system
+10
+
+In 1809 Napolean I defeats ____ at Battle of Abensberg, Bavaria
+Austria
+10
+
+In 1809 Papal States annexed by____
+France
+10
+
+In 1809 Thomas ____ writer (Age of Reason, Common Sense), dies at 72
+Paine
+10
+
+In 1809 Thomas Paine writer (Age of Reason, Common Sense), dies at ____
+72
+10
+
+In 1809 Treaty of ____ was concluded between Britain and France
+Dardanelles
+10
+
+In 1809____ , Boston, author (Pit & the Pendulum), born in
+Edgar allan poe
+10
+
+In 1810 ____ declared independence from Spain
+Colombia
+10
+
+In 1810 ____ first declares independence from Spain (National Day)
+Mexico
+10
+
+In 1810 Argentina declares independence from Napoleonic ____ (Natl Day)
+Spain
+10
+
+In 1810 Colombia declared independence from____
+Spain
+10
+
+In 1810 Emperor ____ married by proxy to Archduchess Marie Louise
+Napoleon
+10
+
+In 1810 Frederic____ , composer, born in
+Chopin
+10
+
+In 1810 Frederic____ , pianist, composer, born in
+Chopin
+10
+
+In 1810 Leo____ , 257th Roman Catholic pope (1878-1903), born in
+Xiii
+10
+
+In 1810 Mexico first declares independence from ____ (National Day)
+Spain
+10
+
+In 1810 Phineas ____ Barnum Bethel Conn, circus promoter (Barnum and Bailey), born in
+Taylor
+10
+
+In 1810 Phineas Taylor ____ Bethel Conn, circus promoter (Barnum and Bailey), born in
+Barnum
+10
+
+In 1810 Phineas Taylor Barnum ____ Conn, circus promoter (Barnum and Bailey), born in
+Bethel
+10
+
+In 1810 Phineas Taylor Barnum Bethel____ , circus promoter (Barnum and Bailey), born in
+Conn
+10
+
+In 1811 ____ Liszt (in Hungary), Romantic composer, virtuoso pianist, born in
+Franz
+10
+
+In 1811 El Salvador's 1st battle against ____ for independence
+Spain
+10
+
+In 1811 Franz ____ (in Hungary), Romantic composer, virtuoso pianist, born in
+Liszt
+10
+
+In 1811 Horace____ , editor (told young men to go west), born in
+Greeley
+10
+
+In 1811 The____ , the first steam-powered ferryboat, begins operation
+Juliana
+10
+
+In 1811 Venezuela, 1st South American country to gain independence from____
+Spain
+10
+
+In 1811 William Makepeace____ , Victorian novelist (Vanity Fair)
+Thackeray
+10
+
+In 1811____ , 1st South American country to gain independence from Spain
+Venezuela
+10
+
+In 1812 ____ begins his retreat from Moscow
+Napoleon
+10
+
+In 1812 ____ occupies Moscow
+Napoleon
+10
+
+In 1812 Alfred ____ , German arms merchant, born in
+Krupp
+10
+
+In 1812 Charles ____ (in England), author, born in
+Dickens
+10
+
+In 1812 Fire of____
+Moscow
+10
+
+In 1812 Napoleon begins his retreat from____
+Moscow
+10
+
+In 1812 Napoleon occupies____
+Moscow
+10
+
+In 1812 Napoleon's retreat from ____ begins
+Russia
+10
+
+In 1812 Waltz introduced into English____ . Most observers consider it disgusting & immoral. No wonder it caught on!
+Ballrooms
+10
+
+In 1812 War of 1812 begins as US declares war against____
+Britain
+10
+
+In 1813 ____ Kingdom of Westphalia abolished
+German
+10
+
+In 1813 ____ Verdi, composer of operas (Rigoletto, Aida, Otello), born in
+Giuseppe
+10
+
+In 1813 First pineapples planted in?
+Hawaii
+10
+
+In 1813 German Kingdom of ____ abolished
+Westphalia
+10
+
+In 1813 Giuseppe Verdi, composer of operas (____ , Aida, Otello), born in
+Rigoletto
+10
+
+In 1813 Giuseppe Verdi, composer of operas (Rigoletto, ____ , Otello), born in
+Aida
+10
+
+In 1813 Giuseppe Verdi, composer of operas (Rigoletto, Aida,____ ), born in
+Otello
+10
+
+In 1813 Giuseppe____ , composer of operas (Rigoletto, Aida, Otello), born in
+Verdi
+10
+
+In 1813 James Jesse____ , America's only crowned king (king of the Mormons), born in
+Strang
+10
+
+In 1813 Richard ____ Leipsig Germany, composer (Ring, Flying Dutchman, Ride of the Valkries), born in
+Wagner
+10
+
+In 1813 Rubber is?
+Patented
+10
+
+In 1813____ , inventor (1st coml useable barbed wire), born in
+Joseph farwell glidden
+10
+
+In 1813, Laura Secord walked ____ to warn of an American attack
+32 kilometres
+10
+
+In 1814 1st abdication of Napoleon; he is exiled to?
+Elba
+10
+
+In 1814 King of Denmark cedes ____ to King of Sweden by treaty of Kiel
+Norway
+10
+
+In 1814 Samuel____ , invented the Colt Revolver (made men equal), born in
+Colt
+10
+
+In 1815 ____ captured
+Napoleon bonaparte
+10
+
+In 1815 ____German states unite under the Act of Confederation
+39
+10
+
+In 1815 2nd abdication of ____ (after Waterloo)
+Napoleon
+10
+
+In 1815 Battle of ____ ____ British and Prussians defeat Napoleon
+Waterloo
+10
+
+In 1815 Napoleon enters____ , beginning his Hundred Days rule
+Paris
+10
+
+In 1815 Napoleon escapes from ____ to begin second conquest of France
+Elba
+10
+
+In 1815 Otto von____ , statesman, born in
+Bismarck
+10
+
+In 1815 World's first commercial ____ factory is established in Switzerland
+Cheese
+10
+
+In 1816 Argentina declared its independence from____ . (Argentinian Independance Day)
+Spain
+10
+
+In 1816 Charlotte ____ , Tornton England, novelist (Jane Eyre), born in
+Bronte
+10
+
+In 1816 Paul Julius, Baron____ , founded Reuters news service, born in
+Von reuter
+10
+
+In 1816 Paul____ , Baron von Reuter, founded Reuters news service, born in
+Julius
+10
+
+In 1817 First American school for the ____ (Hartford, Connecticut)
+Deaf
+10
+
+In 1818 ____ Jordan Gatling, US inventor of hand-cranked machine gun, born in
+Richard
+10
+
+In 1818 Alexander ____ Tsar of Russia (1855-81), born in
+Ii
+10
+
+In 1818 Congress decided US flag is 13 ____ and white stripes and 20 stars
+Red
+10
+
+In 1818 Emily____ , novelist (Wuthering Heights), born in
+Bronte
+10
+
+In 1818 Richard ____ Gatling, US inventor of hand-cranked machine gun, born in
+Jordan
+10
+
+In 1818 Richard Jordan____ , US inventor of hand-cranked machine gun, born in
+Gatling
+10
+
+In 1819 ____ Massacre; English police charge unemployed demonstrators
+Manchester
+10
+
+In 1819 ____ Wieck Schumann, German pianist, composer, born in
+Clara
+10
+
+In 1819 Abner____ , credited with inventing American baseball, born in
+Doubleday
+10
+
+In 1819 Battle of Boyac ; ____ defeats Spanish in Colombia
+Bolivar
+10
+
+In 1819 Battle of Boyac ; Bolivar defeats ____ in Colombia
+Spanish
+10
+
+In 1819 Battle of Boyac ; Bolivar defeats Spanish in____
+Colombia
+10
+
+In 1819 Battle of____ ; Bolivar defeats Spanish in Colombia
+Boyac
+10
+
+In 1819 Charles ____ (in England), author, born in
+Kingsley
+10
+
+In 1819 Clara ____ Schumann, German pianist, composer, born in
+Wieck
+10
+
+In 1819 Edwin____ , drilled first productive oil well in US, born in
+Drake
+10
+
+In 1819 Elias ____ (in Spencer, Mass), sewing machine inventor, born in
+Howe
+10
+
+In 1819 Elias Howe (in Spencer, Mass), ____ inventor, born in
+Sewing machine
+10
+
+In 1819 Sir Stamford ____ 1st lands in Singapore
+Raffles
+10
+
+In 1819, not one of the seven sons and five daughters of England's reigning grandfather, King George III, had a single ____ child who could inherit the empire's throne
+Legitimate
+10
+
+In 1820 ____ discovered by U.S. Navy Captain Nathaniel B. Palmer
+Antarctica
+10
+
+In 1820 ____ is proven nonpoisonous
+Tomato
+10
+
+In 1820 Florence ____ Florence, Italy, nurse (Crimean War), born in
+Nightingale
+10
+
+In 1820 Frontiersman ____ Boone died in Missouri at the age of 85
+Daniel
+10
+
+In 1820 Frontiersman Daniel ____ died in Missouri at the age of 85
+Boone
+10
+
+In 1820 Frontiersman Daniel Boone died in ____ at the age of 85
+Missouri
+10
+
+In 1820 Frontiersman Daniel Boone died in Missouri at the age of____
+85
+10
+
+In 1820 Susan B.____ , Woman's suffaregette, born in
+Anthony
+10
+
+In 1820 Victor Emmanuel II, the King of____ , born in
+Italy
+10
+
+In 1821 ____ declares independence from Spain (National Day)
+Peru
+10
+
+In 1821 ____ gains it's independence
+Greece
+10
+
+In 1821 Costa Rica, ____ , Guatemala, Honduras and Nicaragua gain independence
+El salvador
+10
+
+In 1821 Costa Rica, El Salvador, ____ , Honduras and Nicaragua gain independence
+Guatemala
+10
+
+In 1821 Costa Rica, El Salvador, Guatemala, ____ and Nicaragua gain independence
+Honduras
+10
+
+In 1821 Costa Rica, El Salvador, Guatemala, Honduras and ____ gain independence
+Nicaragua
+10
+
+In 1821 Peru declares independence from ____ (National Day)
+Spain
+10
+
+In 1821 Santo Domingo (Dominican Rep) proclaims independence from____
+Spain
+10
+
+In 1821 Sir Richard____ , explorer, born in
+Burton
+10
+
+In 1821 Spain ceded ____ to the United States
+Florida
+10
+
+In 1821____ , El Salvador, Guatemala, Honduras and Nicaragua gain independence
+Costa rica
+10
+
+In 1822 ____ declares independence from Portugal (National Day)
+Brazil
+10
+
+In 1822 ____ Herschel discovered Uranus, dies at 85
+William
+10
+
+In 1822 Brazil declares independence from ____ (National Day)
+Portugal
+10
+
+In 1822 Cesar ____ (in Belgium), composer, born in
+Franck
+10
+
+In 1822 Charles ____ of N. Y. was granted a patent for artificial teeth
+Graham
+10
+
+In 1822 Dom Pedro crowned emperor of____
+Brazil
+10
+
+In 1822 General Augustin de ____ crowned Augustin I, 1st emperor of Mexico
+Iturbide
+10
+
+In 1822 Gregor Mendel, geneticist who discovered laws of____ , born in
+Heredity
+10
+
+In 1822 Gregor____ , geneticist who discovered laws of heredity, born in
+Mendel
+10
+
+In 1822 Louis____ , French bacteriologist, born in
+Pasteur
+10
+
+In 1822 William ____ discovered Uranus, dies at 85
+Herschel
+10
+
+In 1822 William Herschel discovered Uranus, dies at____
+85
+10
+
+In 1822 William Herschel discovered____ , dies at 85
+Uranus
+10
+
+In 1822, Brazil became independent of this country?
+Portugal
+10
+
+In 1823 ____ Bolivar named president of Peru
+Simon
+10
+
+In 1823 ____ Macintosh of Scotland begins selling raincoats (Macs)
+Charles
+10
+
+In 1823 Charles ____ of Scotland begins selling raincoats (Macs)
+Macintosh
+10
+
+In 1823 Charles Macintosh of ____ begins selling raincoats (Macs)
+Scotland
+10
+
+In 1823 Charles Macintosh of Scotland begins selling ____ (Macs)
+Raincoats
+10
+
+In 1823 Karl Wilhelm ____ inventor (laid undersea cables), born in
+Siemens
+10
+
+In 1823 Li Hung____ , chinese statesman, born in
+Chang
+10
+
+In 1823 Simon ____ named president of Peru
+Bolivar
+10
+
+In 1823 Simon Bolivar named president of____
+Peru
+10
+
+In 1824 ____ becomes a republic
+Mexico
+10
+
+In 1824 ____ Bruckner (in Austria), Wagner disciple born
+Anton
+10
+
+In 1824 ____ defies Pele (Hawaiian volcano goddess) and lives
+Kapiolani
+10
+
+In 1824 Alexandre____ , playwright/novelist (Camille), born in
+Dumas
+10
+
+In 1824 Anton ____ (in Austria), Wagner disciple born
+Bruckner
+10
+
+In 1824 George____ , Scottish novelist (Lilith), born in
+Macdonald
+10
+
+In 1824 J.W. ____ introduces rubber galoshes to the public
+Goodrich
+10
+
+In 1824 Kapiolani defies ____ (Hawaiian volcano goddess) and lives
+Pele
+10
+
+In 1824 William____ , Lord Kelvin, engineer/mathematician/physicist, born in
+Thomson
+10
+
+In 1825 ____ declares independence from Brazil (National Day)
+Uruguay
+10
+
+In 1825 ____ gained independence from Spain (National Day)
+Bolivia
+10
+
+In 1825 ____ Strauss the Younger, composer, Waltz King
+Johann
+10
+
+In 1825 ____ transportation is born with first track in England
+Railroad
+10
+
+In 1825 Bolivia gained independence from ____ (National Day)
+Spain
+10
+
+In 1825 Charles Ferdinand ____ US, standardized time zones, born in
+Dowd
+10
+
+In 1825 Ezra Daggett & nephew Thomas Kensett patent ____ in tin cans
+Food storage
+10
+
+In 1825 Hannah Lord ____ of New York grabs her scissors and creates the first detachable collar on one of her husband's shirts, in order to reduce her laundry load
+Montague
+10
+
+In 1825 Johann ____ the Younger, composer, Waltz King
+Strauss
+10
+
+In 1825 Thomas Henry ____ scientist/humanist/Darwinist, born in
+Huxley
+10
+
+In 1825 Uruguay declares independence from ____ (National Day)
+Brazil
+10
+
+In 1825, upper peru became____
+Bolivia
+10
+
+In 1826 Giuseppe Piazzi, discoverer of first____ , dies
+Asteroid
+10
+
+In 1826 Giuseppe____ , discoverer of first asteroid, dies
+Piazzi
+10
+
+In 1827 Ballet introduced to the U.S. at ____ Theatre, New York City
+Bowery
+10
+
+In 1827 Composer Ludwig van ____ died in Vienna
+Beethoven
+10
+
+In 1828 ____ Tolstoy Russia, novelist (War and Peace, Anna Karenina), born in
+Leo
+10
+
+In 1828 Henrik ____ (in Norway), author, born in
+Ibsen
+10
+
+In 1828 Jules ____ (in France), author who pioneered what later became science fiction, born in
+Verne
+10
+
+In 1828 Leo ____ Russia, novelist (War and Peace, Anna Karenina), born in
+Tolstoy
+10
+
+In 1828 Leo Tolstoy Russia, novelist (____ , Anna Karenina), born in
+War and peace
+10
+
+In 1828 Leo Tolstoy Russia, novelist (War and Peace,____ ), born in
+Anna karenina
+10
+
+In 1829 ____ Dudley Warner, US newspaperman, author, born in
+Charles
+10
+
+In 1829 ____ formed in London
+Scotland yard
+10
+
+In 1829 ____ Hall, astronomer, discovered the moons of Mars, Phobos and Deimos, born in
+Asaph
+10
+
+In 1829 Asaph Hall, astronomer, discovered the moons of Mars, ____ and Deimos, born in
+Phobos
+10
+
+In 1829 Asaph Hall, astronomer, discovered the moons of Mars, Phobos and____ , born in
+Deimos
+10
+
+In 1829 Asaph Hall, astronomer, discovered the moons of____ , Phobos and Deimos, born in
+Mars
+10
+
+In 1829 Asaph____ , astronomer, discovered the moons of Mars, Phobos and Deimos, born in
+Hall
+10
+
+In 1829 Charles ____ Warner, US newspaperman, author, born in
+Dudley
+10
+
+In 1829 Siamese twins ____ and Eng Bunker, arrived in Boston to be exhibited
+Chang
+10
+
+In 1829 Siamese twins Chang and ____ Bunker, arrived in Boston to be exhibited
+Eng
+10
+
+In 1829 Siamese twins Chang and Eng Bunker, arrived in ____ to be exhibited
+Boston
+10
+
+In 1829 Siamese twins Chang and Eng____ , arrived in Boston to be exhibited
+Bunker
+10
+
+In 1829 The ____ is patented
+Typewriter
+10
+
+In 1829 William ____ , founder of the Salvation Army, born in
+Booth
+10
+
+In 1830 ____ Dickinson, poet, born in
+Emily
+10
+
+In 1830 ____ revolts against Netherlands
+Belgium
+10
+
+In 1830 Adolph ____ SF mayor, built Cliff House, railways, tunnels, born in
+Sutro
+10
+
+In 1830 Belgium revolts against____
+Netherlands
+10
+
+In 1830 Eadweard ____ , pioneered study of motion in photography, born in
+Muybridge
+10
+
+In 1830 Edwin ____ of England signs an agreement for manufacture of his invention, the lawn mower
+Budding
+10
+
+In 1830 Emily ____ (in Amherst, Mass), poet, born in
+Dickinson
+10
+
+In 1830 Emily____ , poet, born in
+Dickinson
+10
+
+In 1830 First regular ____ train passenger service starts
+Steam
+10
+
+In 1830 Revolution in France replaces ____ with Louis Philippe
+Charles x
+10
+
+In 1830 Revolution in France replaces Charles X with____
+Louis philippe
+10
+
+In 1831 ____ gained independence from Netherland, Leopold I made king
+Belgium
+10
+
+In 1831 Belgium gained independence from____ , Leopold I made king
+Netherland
+10
+
+In 1831 Clement____ , automobile pioneer, born in
+Studebaker
+10
+
+In 1832 ____ exempted from federal tariff duty
+Opium
+10
+
+In 1832 Charles Lutwidge ____ (you may know him as Lewis Carroll), born in
+Dodgson
+10
+
+In 1832 Charles____ , estate manager in Ireland, caused boycotts, born in
+Boycott
+10
+
+In 1832 Edouard____ , France, Impressionist painter, born in
+Manet
+10
+
+In 1832 Edouard____ , French painter, born in
+Manet
+10
+
+In 1832 South ____ passes Ordinance of Nullification
+Carolina
+10
+
+In 1832 Turkey cedes the island of ____ to the Egyptians
+Crete
+10
+
+In 1833 ____ Bernhard Nobel (in Stockholm, Sweden), created dynamite and Peace Prizes, born in
+Alfred
+10
+
+In 1833 ____ Teodoro Moneta, Italian journalist (Nobel Peace Prize 1907) BORN
+Ernesto
+10
+
+In 1833 Ada ____ (future first computer programmer) meets Charles Babbage
+Lovelace
+10
+
+In 1833 Alfred ____ Nobel (in Stockholm, Sweden), created dynamite and Peace Prizes, born in
+Bernhard
+10
+
+In 1833 Alfred Bernhard ____ (in Stockholm, Sweden), created dynamite and Peace Prizes, born in
+Nobel
+10
+
+In 1833 Alfred Bernhard Nobel (in Stockholm, Sweden), created ____ and Peace Prizes, born in
+Dynamite
+10
+
+In 1833 Britain abolishes slavery in colonies; ____ slaves freed
+700,000
+10
+
+In 1833 Ernesto ____ Moneta, Italian journalist (Nobel Peace Prize 1907) BORN
+Teodoro
+10
+
+In 1833 Ernesto Teodoro____ , Italian journalist (Nobel Peace Prize 1907) BORN
+Moneta
+10
+
+In 1833 The first newsboy in the US hired (____ Flaherty), by the NY Sun
+Barney
+10
+
+In 1833 The first newsboy in the US hired (Barney Flaherty), by the NY____
+Sun
+10
+
+In 1833 The first newsboy in the US hired (Barney____ ), by the NY Sun
+Flaherty
+10
+
+In 1834 Edgar____ , French impressionist painter, born in
+Degas
+10
+
+In 1834 First published reference to the game of ____ describes it as a Mississippi riverboat game
+Poker
+10
+
+In 1834 Frederic A.____ , sculptor who created the Statue of Liberty, born in
+Bartholdi
+10
+
+In 1834 Gottlieb____ , automobile pioneer, born in
+Daimler
+10
+
+In 1834 Hardhat diving suit patented by Leonard____ , Dixfield, Maine
+Norcross
+10
+
+In 1834 Joseph ____ of London receives patent for Hansom cabs
+Hansom
+10
+
+In 1834 Mt ____ erupts
+Vesuvius
+10
+
+In 1834 Pres ____ orders 1st use of US troops to suppress a labor dispute
+Jackson
+10
+
+In 1834 Sandpaper patented by Isaac ____ Jr, Springfield, Vermont
+Fischer
+10
+
+In 1834 William ____ (in England), artist and poet
+Morris
+10
+
+In 1835 ____ -Pieternella-Francoise Tinn, explored the White Nile, born in
+Alexandrine
+10
+
+In 1835 ____ founded with construction of first building (start of Yerba Buena, later to be called San Francisco)
+Pueblo
+10
+
+In 1835 Alexandrine____ -Francoise Tinn, explored the White Nile, born in
+Pieternella
+10
+
+In 1835 Alexandrine-Pieternella____ Tinn, explored the White Nile, born in
+Francoise
+10
+
+In 1835 Alexandrine-Pieternella-Francoise Tinn, explored the White____ , born in
+Nile
+10
+
+In 1835 Alexandrine-Pieternella-Francoise____ , explored the White Nile, born in
+Tinn
+10
+
+In 1835 P.T. ____ & his circus begin 1st tour of US
+Barnum
+10
+
+In 1835 St Pius X, ____ Roman Catholic pope (1903-14), born in
+257th
+10
+
+In 1836 ____ Houston elected president of the Republic of Texas
+Sam
+10
+
+In 1836 ____ returns to England aboard the HMS Beagle
+Darwin
+10
+
+In 1836 Alamo is besieged by____ , entire garrison eventually killed
+Santa anna
+10
+
+In 1836 Andrew S.____ , inventor of the Cable Car, born in
+Hallidie
+10
+
+In 1836 Battle of ____ , in which Texas wins independence from Mexico
+San jacinto
+10
+
+In 1836 Darwin returns to ____ aboard the HMS Beagle
+England
+10
+
+In 1836 Darwin returns to England aboard the HMS____
+Beagle
+10
+
+In 1836 First ____ temple was dedicated in Kirtland, Ohio
+Mormon
+10
+
+In 1836 Joseph Norman ____ discovered Helium/founded Nature magazine, born in
+Lockyer
+10
+
+In 1836 Sam ____ elected president of the Republic of Texas
+Houston
+10
+
+In 1836 Sam Houston elected president of the Republic of____
+Texas
+10
+
+In 1836 Texas declares its independence from?
+Mexico
+10
+
+In 1836 The ____ falls. (Remember it!)
+Alamo
+10
+
+In 1836 The ____ is patented
+Match
+10
+
+In 1836 Yamaoka ____ Japanese swordsman, master of kendo, born in
+Tesshu
+10
+
+In 1836____ , South Australia founded
+Adelaide
+10
+
+In 1837 Aleksandr____ , poet, novelist, dramatist, killed in a duel
+Pushkin
+10
+
+In 1837 Dwight Lyman____ , evangelist, born in
+Moody
+10
+
+In 1837 King ____ of England, dies
+William iv
+10
+
+In 1837 Queen Victoria at 18 ascends British throne following death of uncle King____ . She ruled for 63 years until 1901
+William iv
+10
+
+In 1838 ____ declares independence of Central American Federation
+Honduras
+10
+
+In 1838 (USA) Samuel Morse made 1st public demonstration of?
+Telegraph
+10
+
+In 1838 A London pedestrian walks 20 miles backward and 20 miles forward in ____ hours
+Eight
+10
+
+In 1838 Queen Liliuokalani, last queen of ____ (1891-93)
+Hawaii
+10
+
+In 1838 Queen____ , last queen of Hawaii (1891-93)
+Liliuokalani
+10
+
+In 1839 1st opium war-2 British frigates engage several ____ junks
+Chinese
+10
+
+In 1839 John D.____ , financier, born in
+Rockefeller
+10
+
+In 1839 Modest____ , composer, born in
+Moussorgsky
+10
+
+In 1839 Paul Cezanne, France, impressionist ____ (Bathers), born in
+Painter
+10
+
+In 1839 Treaty of London constitutes ____ an independent kingdom
+Belgium
+10
+
+In 1840 ____ Day
+New zealand
+10
+
+In 1840 John Boyd____ , developed the pneumatic rubber tire, born in
+Dunlop
+10
+
+In 1840 Peter Ilyich ____ , Russian composer (1812 Overture), born in
+Tchaikovsky
+10
+
+In 1840 Theodor____ , founded Zionist movement, born in
+Herzl
+10
+
+In 1840 Thomas____ , England, poet/novelist (Mayor of Casterbridge), born in
+Hardy
+10
+
+In 1841 ____ Dvorak, Nelahozeves, Czechoslovakia, composer (New World Symphony), born in
+Antonin
+10
+
+In 1841 ____ Hampson patents venetian blind
+John
+10
+
+In 1841 ____ VII, king of England (1901-10), born in
+Edward
+10
+
+In 1841 ____ was proclaimed a sovereign territory of Britain
+Hong kong
+10
+
+In 1841 1st Canadian parliament opens in____ , Ontario
+Kingston
+10
+
+In 1841 Antonin Dvorak, Nelahozeves, ____ , composer (New World Symphony), born in
+Czechoslovakia
+10
+
+In 1841 Antonin____ , Nelahozeves, Czechoslovakia, composer (New World Symphony), born in
+Dvorak
+10
+
+In 1841 British humor magazine `____ ' first published
+Punch
+10
+
+In 1841 China cedes ____ to the British
+Hong kong
+10
+
+In 1841 Henry ____ journalist/explorer (found Livingston in Africa), born in
+Stanley
+10
+
+In 1841 John ____ patents venetian blind
+Hampson
+10
+
+In 1841 Oliver Wendell____ , famous Supreme Court Justice, born in
+Holmes
+10
+
+In 1841 William Henry ____ dies of pneumonia and becomes the first U.S. president to die in office
+Harrison
+10
+
+In 1841____ , painter, born in
+Renoir
+10
+
+In 1842 Ambrose ____ Ohio, writer (The Devils Dictionary), born in
+Bierce
+10
+
+In 1842 Dr C. Long first used ether as an ____ during a minor operation
+Anesthetic
+10
+
+In 1842 Sir Arthur____ , London, England, of Gilbert & Sullivan fame, born in
+Sullivan
+10
+
+In 1842 The US-Canada border defined by the ____ -Ashburton Treaty
+Webster
+10
+
+In 1842 The US-Canada border defined by the Webster____ Treaty
+Ashburton
+10
+
+In 1842____ , Philospher, born in
+William james
+10
+
+In 1843 ____ (in South Africa) is made a British colony
+Natal
+10
+
+In 1843 British arrest Irish nationalist ____ O'Connell for conspiracy
+Daniel
+10
+
+In 1843 British arrest Irish nationalist Daniel ____ for conspiracy
+O'connell
+10
+
+In 1843 Edvard____ , Bergen Norway, composer, born in
+Grieg
+10
+
+In 1843 Natal (in South Africa) is made a ____ colony
+British
+10
+
+In 1844 ____ Bridges, poet laureate of England (The Testament of Beauty), born in
+Robert
+10
+
+In 1844 ____ John Heinz, founded a prepared-foods company, born in
+Henry
+10
+
+In 1844 ____ King of Ethiopia (1896-1913), born in
+Menelik ii
+10
+
+In 1844 ____ New Year
+Bah'i
+10
+
+In 1844 ____ Nietzsche, philosopher, Ubermensch, born in
+Friedrich
+10
+
+In 1844 ____ Republic gains it's independence
+Dominican
+10
+
+In 1844 Friedrich____ , philosopher, Ubermensch, born in
+Nietzsche
+10
+
+In 1844 Henry ____ Heinz, founded a prepared-foods company, born in
+John
+10
+
+In 1844 Henry John____ , founded a prepared-foods company, born in
+Heinz
+10
+
+In 1844 Menelik II King of ____ (1896-1913), born in
+Ethiopia
+10
+
+In 1844 Nicholas____ , composer, born in
+Rimsky-korsakov
+10
+
+In 1844 Rev. William Archibald____ , invented 'spoonerisms' (ie When you get you bords wackwards and you can't palk troperly.), born in
+Spooner
+10
+
+In 1844 Robert____ , poet laureate of England (The Testament of Beauty), born in
+Bridges
+10
+
+In 1844 Spain grants Dominican Rep____
+Independence
+10
+
+In 1844 The ____ founded in London
+Ymca
+10
+
+In 1845 ____ 's opera Tannhauser performed for 1st time
+Wagner
+10
+
+In 1845 ____ mad king of Bavaria (1864-86), born in
+Ludwig ii
+10
+
+In 1845 (France) Ether first used as an anasthetic in ____
+Childbirth
+10
+
+In 1845 (Germany) Louis III, last king of ____ (1913-18), born in
+Bavaria
+10
+
+In 1845 Homing pigeon completes ____ km trip (Namibia-London) in 55 days
+11,000
+10
+
+In 1845 Ludwig II mad king of ____ (1864-86), born in
+Bavaria
+10
+
+In 1845 Wagner's opera ____ performed for 1st time
+Tannhauser
+10
+
+In 1845, ice shipped to ____ cost $1 per pound
+Tallahassee
+10
+
+In 1846 ____ Burnham, American architect, built skyscrapers
+Daniel
+10
+
+In 1846 ____ David Thoreau jailed for tax resistance
+Henry
+10
+
+In 1846 ____ Galle and Heinrich d'Arrest find the planet Neptune
+Johann
+10
+
+In 1846 ____ Morris first uses ether in the first tooth extraction under anesthesia at Charlestown, Mass
+William
+10
+
+In 1846 American inventor elias howe patented what type of machine?
+Sewing machine
+10
+
+In 1846 Charles Edward____ , pioneer American spectroscopist, born in
+Pickering
+10
+
+In 1846 Daniel Burnham, American architect, built ____
+Skyscrapers
+10
+
+In 1846 Daniel____ , American architect, built skyscrapers
+Burnham
+10
+
+In 1846 Dentist ____ T. Morton demonstrated the effectiveness of ether
+William
+10
+
+In 1846 Dentist William T. ____ demonstrated the effectiveness of ether
+Morton
+10
+
+In 1846 Dentist William T. Morton demonstrated the effectiveness of____
+Ether
+10
+
+In 1846 George ____ inventor (the saxophone), born in
+Sax
+10
+
+In 1846 Henry ____ Thoreau jailed for tax resistance
+David
+10
+
+In 1846 Henry David ____ jailed for tax resistance
+Thoreau
+10
+
+In 1846 Johann ____ and Heinrich d'Arrest find the planet Neptune
+Galle
+10
+
+In 1846 Johann Galle and ____ d'Arrest find the planet Neptune
+Heinrich
+10
+
+In 1846 Johann Galle and Heinrich ____ find the planet Neptune
+D'arrest
+10
+
+In 1846 Johann Galle and Heinrich d'Arrest find the planet____
+Neptune
+10
+
+In 1846 Neptune's moon ____ discovered by William Lassell
+Triton
+10
+
+In 1846 Neptune's moon Triton discovered by ____ Lassell
+William
+10
+
+In 1846 Neptune's moon Triton discovered by William____
+Lassell
+10
+
+In 1846 William ____ first uses ether in the first tooth extraction under anesthesia at Charlestown, Mass
+Morris
+10
+
+In 1846 William Morris first uses ether in the first tooth extraction under ____ at Charlestown, Mass
+Anesthesia
+10
+
+In 1847 ____ declares independence
+Liberia
+10
+
+In 1847 ____ invents a gas burner. Lab teachers celebrate worldwide
+Bunson
+10
+
+In 1847 ____ James Missouri, outlaw, born in
+Jesse
+10
+
+In 1847 ____ Mitchell discovers a non-naked-eye comet
+Maria
+10
+
+In 1847 ____ was proclaimed an independent republic
+Liberia
+10
+
+In 1847 1st ____ created
+Doughnut
+10
+
+In 1847 Alexander ____ Bell, inventor of the telephone, born in
+Graham
+10
+
+In 1847 James ____ Bailey, Detroit, U.S.A., circus impresario (Barnum and Bailey), born in
+Anthony
+10
+
+In 1847 Jesse ____ Missouri, outlaw, born in
+James
+10
+
+In 1847 John ____ 'Johnny Appleseed' died in Allen County, Ind
+Chapman
+10
+
+In 1847 Joseph ____ , awarded newspaper prizes, born in
+Pulitzer
+10
+
+In 1847 Maria ____ discovers a non-naked-eye comet
+Mitchell
+10
+
+In 1847 Thomas Alva ____ (in New Jersey), inventor who lit up your life, born in
+Edison
+10
+
+In 1848 ____ (U.S.) and Lassell (England) independently discover Hyperion
+Bond
+10
+
+In 1848 Arthur Earl ____ (C), British PM (1902-05), born in
+Balfour
+10
+
+In 1848 Belle____ , entertainer of the wild west, born in
+Starr
+10
+
+In 1848 Bond (U.S.) and ____ (England) independently discover Hyperion
+Lassell
+10
+
+In 1848 Bond (U.S.) and Lassell (England) independently discover____
+Hyperion
+10
+
+In 1848 First shipload of ____ immigrants arrives in San Francisco, CA
+Chinese
+10
+
+In 1848 First Women's Rights Convention.____ , NY ... featuring the introduction of the first Bloomers
+Seneca falls
+10
+
+In 1848 Franz Josef I becomes emperor of ____ and King of Hungary
+Austria
+10
+
+In 1848 In Hawaii, the Great ____ (division of lands) is signed
+Mahele
+10
+
+In 1848 Louis Comfort____ , glassmaker, born in
+Tiffany
+10
+
+In 1848 Mexico sells U.S. Texas, ____ , New Mexico and Arizona
+California
+10
+
+In 1848 Mexico sells U.S. Texas, California, ____ and Arizona
+New Mexico
+10
+
+In 1848 Mexico sells U.S. Texas, California, New Mexico and?
+Arizona
+10
+
+In 1848 Mexico sells U.S.____ , California, New Mexico and Arizona
+Texas
+10
+
+In 1848 Paul____ , French post-impressionist painter, born in
+Gauguin
+10
+
+In 1848 Second ____ Republic was proclaimed
+French
+10
+
+In 1848 William ____ Grace, Victorian England's greatest cricketer
+Gilbert
+10
+
+In 1848 William Gilbert____ , Victorian England's greatest cricketer
+Grace
+10
+
+In 1849 ____ 1st PM of Australia (1900-03), born in
+Sir edmund barton
+10
+
+In 1849 ____ Allen Poe dies in Baltimore at 40
+Edgar
+10
+
+In 1849 ____ becomes a constitutional monarchy
+Denmark
+10
+
+In 1849 ____ Pavlov, Russia, physiologist/pioneer in psychology, born in
+Ivan
+10
+
+In 1849 ____ Republic crushed by Austria and Russia
+Hungarian
+10
+
+In 1849 Edgar ____ Poe dies in Baltimore at 40
+Allen
+10
+
+In 1849 Edgar Allen ____ dies in Baltimore at 40
+Poe
+10
+
+In 1849 Edgar Allen Poe dies in ____ at 40
+Baltimore
+10
+
+In 1849 Edgar Allen Poe dies in Baltimore at____
+Forty
+10
+
+In 1849 Emma____ , whose poem was inscribed on the Statue of Liberty, born in
+Lazarus
+10
+
+In 1849 Hungarian Republic crushed by ____ and Russia
+Austria
+10
+
+In 1849 Hungarian Republic crushed by Austria and____
+Russia
+10
+
+In 1849 Ivan____ , Russia, physiologist/pioneer in psychology, born in
+Pavlov
+10
+
+In 1849 Mrs. Elizabeth ____ becomes first woman physician in U.S...
+Blackwell
+10
+
+In 1849 Sir Ambrose Fleming, inventor of the ____
+Diode
+10
+
+In 1849 William Bond obtains first photograph of moon through a____
+Telescope
+10
+
+In 1850 ____ (Bah '? prophet) executed in Tabriz, Iran
+Bab
+10
+
+In 1850 ____ de Maupassant (in France), writer, born in
+Guy
+10
+
+In 1850 ____ founded
+American express
+10
+
+In 1850 1st public demonstration of ____ made by refrigeration
+Ice
+10
+
+In 1850 Bab (Bah '? prophet) executed in Tabriz,____
+Iran
+10
+
+In 1850 Bab (Bah '? prophet) executed in____ , Iran
+Tabriz
+10
+
+In 1850 Guy de ____ (in France), writer, born in
+Maupassant
+10
+
+In 1850 Harvard Observatory takes first photograph of a star (____ )
+Vega
+10
+
+In 1850 Sir Thomas ____ tea magnate (Lipton Tea), born in
+Lipton
+10
+
+In 1850, there were an estimated 9 billion of these in north America alone. in 1876, a colony twenty-eight miles long and more than three miles wide was observed. however, by 1910, it was extinct. what was this bird?
+Passenger pigeon
+10
+
+In 1851 ____ fields discovered in Australia
+Gold
+10
+
+In 1851 ____ Foch, believed to be the leader responsible for Allies winning World War I
+Ferdinand
+10
+
+In 1851 ____ Lassell discovers Ariel and Umbriel, satellites of Unranus
+William
+10
+
+In 1851 ____ Lassell discovers Ariel and Umbriel, satellites of Uranus
+William
+10
+
+In 1851 ____ Reed, who proved mosquitoes transmit yellow fever, born in
+Walter
+10
+
+In 1851 ____ Valley is discovered in California
+Yosemite
+10
+
+In 1851 Ferdinand____ , believed to be the leader responsible for Allies winning World War I
+Foch
+10
+
+In 1851 Gold fields discovered in____
+Australia
+10
+
+In 1851 Jacob____ , Baltimore dairyman, sets up 1st ice-cream factory
+Fussell
+10
+
+In 1851 Melvil Dewey, created the Dewey ____ System for libraries
+Decimal
+10
+
+In 1851 Total solar eclipse captured on a ____ photograph
+Daguerreotype
+10
+
+In 1851 U.S. Congress authorizes smallest U.S. ____ coin, the 3-cent piece
+Silver
+10
+
+In 1851 Walter Reed, who proved mosquitoes transmit____ , born in
+Yellow fever
+10
+
+In 1851 Walter____ , who proved mosquitoes transmit yellow fever, born in
+Reed
+10
+
+In 1851 William ____ discovers Ariel and Umbriel, satellites of Unranus
+Lassell
+10
+
+In 1851 William ____ discovers Ariel and Umbriel, satellites of Uranus
+Lassell
+10
+
+In 1851 William Lassell discovers ____ and Umbriel, satellites of Unranus
+Ariel
+10
+
+In 1851 William Lassell discovers ____ and Umbriel, satellites of Uranus
+Ariel
+10
+
+In 1851 William Lassell discovers Ariel and Umbriel, satellites of____
+Uranus
+10
+
+In 1851 William Lassell discovers Ariel and____ , satellites of Unranus
+Umbriel
+10
+
+In 1851 William Lassell discovers Ariel and____ , satellites of Uranus
+Umbriel
+10
+
+In 1851, Jacob Fussel became the first to manufacture what treat commercially?
+Ice cream
+10
+
+In 1852 ____ Wellesley General/Duke of Wellington, dies at 83
+Arthur
+10
+
+In 1852 1st edition of Peter ____ 's Thesaurus published
+Roget
+10
+
+In 1852 2nd French empire established; Louis ____ becomes emperor
+Napoleon
+10
+
+In 1852 Arthur ____ General/Duke of Wellington, dies at 83
+Wellesley
+10
+
+In 1852 Arthur Wellesley General/Duke of Wellington, dies at____
+83
+10
+
+In 1852 Arthur Wellesley General/Duke of____ , dies at 83
+Wellington
+10
+
+In 1852 First interment in US National Cemetary at____
+Presidio
+10
+
+In 1852 H. H. ____ (Liberal), British prime minister (1908-16), born in
+Asquith
+10
+
+In 1852 John Harvey____ , English Corn Flake inventor
+Kellogg
+10
+
+In 1853 ____ R Spofforth Australia, cricketer (Demon), born in
+Frederick
+10
+
+In 1853 First round-the-world trip by yacht (____ Vanderbilt)
+Cornelius
+10
+
+In 1853 First round-the-world trip by yacht (Cornelius____ )
+Vanderbilt
+10
+
+In 1853 Frederick R ____ Australia, cricketer (Demon), born in
+Spofforth
+10
+
+In 1853 Frederick R Spofforth Australia, ____ (Demon), born in
+Cricketer
+10
+
+In 1853 Hendrik Antoon____ , Dutch physicist (Nobel 1902)
+Lorentz
+10
+
+In 1853 Vincent____ , artist who always lent an ear, born in
+Van gogh
+10
+
+In 1853 Wilhelm____ , German physical chemist (Nobel 1909)
+Ostwald
+10
+
+In 1853____ , France, industrialist/tire manufacturer (Michelin), born in
+Andre michelin
+10
+
+In 1854 ____ and French defeat Russians at Alma, in the Crimea
+British
+10
+
+In 1854 ____ David Thoreau published `Walden'
+Henry
+10
+
+In 1854 ____ Rimbaud, France, poet/adventurer (Illuminations), born in
+Arthur
+10
+
+In 1854 American ____ Party formed at Ripon, Wisconsin
+Republican
+10
+
+In 1854 Arthur____ , France, poet/adventurer (Illuminations), born in
+Rimbaud
+10
+
+In 1854 British and ____ defeat Russians at Alma, in the Crimea
+French
+10
+
+In 1854 British and French defeat ____ at Alma, in the Crimea
+Russians
+10
+
+In 1854 British and French defeat Russians at Alma, in the____
+Crimea
+10
+
+In 1854 British and French defeat Russians at____ , in the Crimea
+Alma
+10
+
+In 1854 Frederick____ , Arms manufacturer, born in
+Krupp
+10
+
+In 1854 George F.B. ____ proposes that space is curved
+Reiman
+10
+
+In 1854 Henry ____ Thoreau published `Walden'
+David
+10
+
+In 1854 Henry David ____ published `Walden'
+Thoreau
+10
+
+In 1854 Henry David Thoreau published `____ '
+Walden
+10
+
+In 1854 Lighthouse established on ____ Island
+Alcatraz
+10
+
+In 1854 Major streets lit by ____ for first time
+Coal gas
+10
+
+In 1854 The Light Brigade charges ____ Battle of ____ (Crimean War)
+Balaklava
+10
+
+In 1855 King Camp Gillette, inventor of the____ , born in
+Safety razor
+10
+
+In 1855 William Seward ____ inventor (recording adding machine), born in
+Burroughs
+10
+
+In 1855, dentist Robert Arthur was the first to use ____ to fill cavities
+Gold
+10
+
+In 1856 ____ established to acknowledge bravery
+Victoria cross
+10
+
+In 1856 ____ Thompson US archeologist who explored Mayan ruins, born in
+Edward
+10
+
+In 1856 Edward ____ US archeologist who explored Mayan ruins, born in
+Thompson
+10
+
+In 1856 Edward Thompson US archeologist who explored ____ ruins, born in
+Mayan
+10
+
+In 1856 George ____ Shaw, Dublin Ireland, dramatist (Pygmalion-Nobel 1925), born in
+Bernard
+10
+
+In 1856 George Bernard____ , Dublin Ireland, dramatist (Pygmalion-Nobel 1925), born in
+Shaw
+10
+
+In 1856 Nikola Tesla, physicist who developed ____ and radio, born in
+Alternating current
+10
+
+In 1856 Nikola____ , physicist who developed alternating current and radio, born in
+Tesla
+10
+
+In 1856 Peter Henry____ , 1st to promote photography as an independent art, born in
+Emerson
+10
+
+In 1856 Sigmund____ , cigar smoker, psychiatrist, born in
+Freud
+10
+
+In 1857 ____ invented the washing machine
+Maytag
+10
+
+In 1857 ____ S. Hershey, US chocolate manufacturer, philanthropist, born in
+Milton
+10
+
+In 1857 ____ Tsiolkovsky, pioneer in rocket and space research, born in
+Konstantin
+10
+
+In 1857 (USA) Patent for reducing ____ granted to Samuel Wetherill
+Zinc ore
+10
+
+In 1857 Clarence ____ , lawyer, born in
+Darrow
+10
+
+In 1857 Konstantin____ , pioneer in rocket and space research, born in
+Tsiolkovsky
+10
+
+In 1857 Lord Robert____ , founder of the Boy Scouts, born in
+Baden-powell
+10
+
+In 1857 Milton S.____ , US chocolate manufacturer, philanthropist, born in
+Hershey
+10
+
+In 1857 Samuel S.____ , organizer of the first news syndicate, born in
+Mcclure
+10
+
+In 1858 ____ comet becomes the 1st to be photographed
+Donati's
+10
+
+In 1858 A. ____ Law (C), British prime minister (1922-23), born in
+Bonar
+10
+
+In 1858 A. Bonar ____ (C), British prime minister (1922-23), born in
+Law
+10
+
+In 1858 Asteroid 54, ____ discovered (named for goddess of silence)
+Kalypso
+10
+
+In 1858 Confederaci?n ____ (now Colombia) forms
+Granadina
+10
+
+In 1858 First electric ____ is installed in Boston, Mass
+Burglar alarm
+10
+
+In 1858 Giacomo ____ Italy, operatic composer (Madama Butterfly), born in
+Puccini
+10
+
+In 1858 Hyman L. ____ of Philadelphia patented a pencil with an attached eraser
+Lipman
+10
+
+In 1858 Mendelssohn's Wedding March ____ played, at wedding of Queen Victoria's daughter to the Crown Prince of Prussia
+First
+10
+
+In 1858 Rudolf____ , invented an engine, born in
+Diesel
+10
+
+In 1858 Theodore Roosevelt ____ President of US (1901-09) (Nobel 1906), born in
+26th
+10
+
+In 1858 War of the ____ (Mexico); Liberals establish capital at Vera Cruz
+Reform
+10
+
+In 1858, three years before becoming president, Abraham Lincoln became senator of which state?
+Franklin D Roosevelt
+10
+
+In 1859 1st observation of solar flare is made by whom (2 scientists)?
+Carrington & hodgson
+10
+
+In 1859 First successful ____ drilled near Titusville, Penn
+Oil well
+10
+
+In 1859 Georges Seurat____ , painter/pointillist (Grande Jatte), born in
+France
+10
+
+In 1859 Ground broken for ____ Canal
+Suez
+10
+
+In 1859 Jules Leotard performs the first Flying ____ circus act in Paris. He also designed the garment that bears his name
+Trapeze
+10
+
+In 1859 Kenneth____ , author (The Wind in the Willows), born in
+Grahame
+10
+
+In 1859 Patent granted on the____
+Electric range
+10
+
+In 1859 RC ____ and R Hodgson make 1st observation of solar flare
+Carrington
+10
+
+In 1859 RC Carrington and R ____ make 1st observation of solar flare
+Hodgson
+10
+
+In 1859 RC Carrington and R Hodgson make 1st observation of solar____
+Flare
+10
+
+In 1859 Sir Arthur ____ UK, brought Sherlock Holmes to life twice, born in
+Conan doyle
+10
+
+In 1859, ____ rabbits were released in Australia. Within six years the population grew to 2 million
+24
+10
+
+In 1859, thomas austin introduced what proliferating animal in Australia?
+Rabbits
+10
+
+In 1860 ____ (in Russia), writer, born in
+Anton checkov
+10
+
+In 1860 ____ A Sperry inventor (gyrocompass), born in
+Elmer
+10
+
+In 1860 ____ begins service, from St. Joseph, Missouri
+Pony express
+10
+
+In 1860 ____ Oakley, frontierswoman (Buffalo Bill's Wild West), born in
+Annie
+10
+
+In 1860 ____ Poincar, French prime minister (1912), president, born in
+Raymond
+10
+
+In 1860 Annie____ , frontierswoman (Buffalo Bill's Wild West), born in
+Oakley
+10
+
+In 1860 Anton____ , Chekhov Russia, writer (Cherry Orchard), born in
+Pavlovich
+10
+
+In 1860 Elmer A ____ inventor (gyrocompass), born in
+Sperry
+10
+
+In 1860 Elmer A Sperry inventor (____ ), born in
+Gyrocompass
+10
+
+In 1860 First ____ ambassador to the U.S
+Japanese
+10
+
+In 1860 First ____ Parliament met at Turin
+Italian
+10
+
+In 1860 James M. ____ (in Scotland), Author (Peter Pan)
+Barrie
+10
+
+In 1860 M. L. ____ of New York patented a corkscrew
+Byrn
+10
+
+In 1860 Raymond____ , French prime minister (1912), president, born in
+Poincar
+10
+
+In 1860 W. K. ____ , founded a cereal company
+Kellogg
+10
+
+In 1860, Godeys ladies book advised us women to cook tomatoes for at least how many hours?
+3 hours
+10
+
+In 1861 ____ Nansen, Norwegian Arctic explorer, humanitarian (Nobel 1922), born in
+Fridtjof
+10
+
+In 1861 At Montgomery, ____ , the Confederate States are organized
+Alabama
+10
+
+In 1861 C.S.A. President Jefferson ____ is inaugurated at Montgomery, AL
+Davis
+10
+
+In 1861 Congress creates the Territory of?
+Nevada
+10
+
+In 1861 First transcontinental ____ sent
+Telegram
+10
+
+In 1861 Fort Sumter, SC, shelled by ____ troops under General Beauregard. The American Civil War begins
+Confederate
+10
+
+In 1861 Fridtjof____ , Norwegian Arctic explorer, humanitarian (Nobel 1922), born in
+Nansen
+10
+
+In 1861 Leipzig Observatory discovers short-period (6.2 yrs) Comet____
+D'arrest
+10
+
+In 1861 Mehmed VI, last sultan of ____ Empire (1918-22), born in
+Ottoman
+10
+
+In 1862 ____ ball invented
+Bowling
+10
+
+In 1862 ____ creates Alice in Wonderland for Alice P Liddell
+Lewis carroll
+10
+
+In 1862 ____ Debussy (in France), composer (La Mer, Clair de lune), born in
+Claude
+10
+
+In 1862 ____ is abolished in the US territories
+Slavery
+10
+
+In 1862 ____ Lumiere, made 1st movie (Workers Leaving Lumiere Factory), born in
+Auguste
+10
+
+In 1862 Auguste____ , made 1st movie (Workers Leaving Lumiere Factory), born in
+Lumiere
+10
+
+In 1862 Battle of ____ ends
+Corinth
+10
+
+In 1862 Claude ____ (in France), composer (La Mer, Clair de lune), born in
+Debussy
+10
+
+In 1862 Florence ____ US, 1st American woman PhD, born in
+Bascom
+10
+
+In 1862 Frank____ , publisher and founder of Doubleday and Co., born in
+Nelson doubleday
+10
+
+In 1862 Gustav____ , Austria, Art Nouveau painter, born in
+Klimt
+10
+
+In 1862 Lewis Carroll creates Alice in Wonderland for Alice P____
+Liddell
+10
+
+In 1862 Telescope maker Alvin ____ discovers dwarf companion of Sirius
+Clark
+10
+
+In 1863 Battle of ____ begins
+Chattanooga
+10
+
+In 1863 Civil War Battle of Chickamauga, near____ , Tenn, ended
+Chattanooga
+10
+
+In 1863 Civil War Battle of____ , near Chattanooga, Tenn, ended
+Chickamauga
+10
+
+In 1863 First ____ railway opens in London
+Underground
+10
+
+In 1863 First wartime ____ law in US went into effect
+Conscription
+10
+
+In 1863 Football Association forms in England, standardizing____
+Football
+10
+
+In 1863 Four-wheeled roller skates patented by ____ of New York
+James plimpton
+10
+
+In 1863 Gen Stonewall ____ dies from wounds received at Chancellorsville
+Jackson
+10
+
+In 1863 George____ , philosopher, poet, humanist, born in
+Santayana
+10
+
+In 1863 Henry____ , Michigan, USA, auto maker (Ford), born in
+Ford
+10
+
+In 1863 International Committee of the ____ is founded (Nobel 1917, 1944, 1963)
+Red cross
+10
+
+In 1863 Northern Territory passes from ____ to South Australia
+New south wales
+10
+
+In 1863 Northern Territory passes from New South Wales to____
+South Australia
+10
+
+In 1863 Patent granted for a process of making color____
+Photographs
+10
+
+In 1863 President Lincoln delivers his famous address at____ , PA
+Gettysburg
+10
+
+In 1863 Sir ____ Chamberlain, British foreign secretary (Nobel 1925) born
+Austen
+10
+
+In 1863 Sir Austen____ , British foreign secretary (Nobel 1925) born
+Chamberlain
+10
+
+In 1863 Sir Henry____ , one of the founders of Rolls-Royce, born in
+Royce
+10
+
+In 1863 Worldwide Red Cross organized in____
+Geneva
+10
+
+In 1864 ____ Anniversary
+Red cross
+10
+
+In 1864 ____ Convention signed, by 12 nations
+Geneva
+10
+
+In 1864 ____ Lumiere with brother Auguste made 1st motion picture in 1895, born in
+Louis
+10
+
+In 1864 Abraham ____ was elected to his second term as President
+Lincoln
+10
+
+In 1864 Alois ____ Germany, psychiatrist/pathologist (Alzheimer Disease), born in
+Alzheimer
+10
+
+In 1864 Austrian Archduke ____ became emperor of Mexico
+Maximilian
+10
+
+In 1864 Austrian Archduke Maximilian became emperor of____
+Mexico
+10
+
+In 1864 Casey____ , locomotive engineer, born in
+Jones
+10
+
+In 1864 Colorado militia kills 150 peaceful ____ Indians
+Cheyenne
+10
+
+In 1864 Geneva Convention signed, by ____ nations
+Twelve
+10
+
+In 1864 Lord ____ of Chelwood, UK, helped form League of Nations (early version of the UN), born in
+Cecil
+10
+
+In 1864 Lord Cecil of____ , UK, helped form League of Nations (early version of the UN), born in
+Chelwood
+10
+
+In 1864 Louis ____ with brother Auguste made 1st motion picture in 1895, born in
+Lumiere
+10
+
+In 1864 Louis Lumiere with brother ____ made 1st motion picture in 1895, born in
+Auguste
+10
+
+In 1864 Patent issued for taking and projecting ____ to Louis Ducos du Hauron (he never did build such a machine, though)
+Motion pictures
+10
+
+In 1864 Ransom Eli____ , auto (Oldsmobile) and truck (REO) manufacturer, born in
+Olds
+10
+
+In 1864 Richard ____ (in Germany), composer, born in
+Strauss
+10
+
+In 1864, where were over 300 indians massacred colorado?
+Sand creek
+10
+
+In 1865 (USA) Coffee ____ invented
+Percolator
+10
+
+In 1865 At____ , Gen. Early's army is defeated
+Waynesborough
+10
+
+In 1865 Charles Proteus ____ , electronics pioneer, born in
+Steinmetz
+10
+
+In 1865 John Wilkes ____ , Abraham Lincoln's assassin, is shot dead
+Booth
+10
+
+In 1865 London____ , oldest surviving journal, is founded
+Gazette
+10
+
+In 1865 President Abraham ____ shot in Ford's Theatre by J.W. Booth
+Lincoln
+10
+
+In 1865 William Butler ____ Ireland, poet (Wild Swans at Coole-Nobel 1923), born in
+Yeats
+10
+
+In 1865, nathan forrest became the first leader of which American secret society?
+Ku klux klan
+10
+
+In 1866 ____ Potter England, children's author (Tale of Peter Rabbit), born in
+Beatrix
+10
+
+In 1866 American Society for the Prevention of ____ to Animals organized
+Cruelty
+10
+
+In 1866 Beatrix ____ England, children's author (Tale of Peter Rabbit), born in
+Potter
+10
+
+In 1866 Beatrix Potter England, children's author (____ ), born in
+Tale of peter rabbit
+10
+
+In 1866 H(erbert) G(eorge) ____ Bromley, England (War of the Worlds), born in
+Wells
+10
+
+In 1866 H(erbert) G(eorge) Wells Bromley, England (____ ), born in
+War of the worlds
+10
+
+In 1866 H(erbert) G(eorge) Wells____ , England (War of the Worlds), born in
+Bromley
+10
+
+In 1866 President ____ Johnson formally declared the Civil War over
+Andrew
+10
+
+In 1866 President Andrew ____ formally declared the Civil War over
+Johnson
+10
+
+In 1866 President Andrew Johnson formally declared the ____ over
+Civil war
+10
+
+In 1866 Transatlantic cable laid - Pres ____ spoke to Queen Victoria
+Buchanan
+10
+
+In 1866 Transatlantic cable laid - Pres Buchanan spoke to Queen____
+Victoria
+10
+
+In 1867 ____ gained independence
+Luxembourg
+10
+
+In 1867 Alfred ____ invents dynamite
+Nobel
+10
+
+In 1867 Arturo ____ (in Italy), conductor, born in
+Toscanini
+10
+
+In 1867 Bank of ____ opens its doors
+California
+10
+
+In 1867 Battle of____ ; Mexicans defeat Maximilian's forces (Cinco de Mayo)
+Puebla
+10
+
+In 1867 Charles____ , discovered the ozone layer in the upper atmosphere, born in
+Fabry
+10
+
+In 1867 Dominion of ____ formed (New Brunswick, Nova Scotia, Ontario and Quebec)
+Canada
+10
+
+In 1867 Great ____ eruption (volcano in Hawaii)
+Mauna loa
+10
+
+In 1867 Last day of ____ calendar in Alaska
+Julian
+10
+
+In 1867 Last day of Julian calendar in____
+Alaska
+10
+
+In 1867 Madame Marie Sklodowska Curie, discovered ____ (Nobel 1903, 1911)
+Radium
+10
+
+In 1867 Mexico's deposed emperor ____ is executed
+Maximilian
+10
+
+In 1867 Tokyo is opened for ____ trade
+Foreign
+10
+
+In 1867 US takes formal possession of ____ from Russia ($7.2 million)
+Alaska
+10
+
+In 1867 US takes formal possession of Alaska from ____ ($7.2 million)
+Russia
+10
+
+In 1867 US takes formal possession of Alaska from Russia (____ million)
+$7.2
+10
+
+In 1867 Wilbur ____ , of aeroplane fame, born in
+Wright
+10
+
+In 1868 ____ enclosed in a circular case patented
+Tape measure
+10
+
+In 1868 ____ last Russian tsar (1894-1917), born in
+Nicholas ii
+10
+
+In 1868 ____ MacFadden, publisher (Physical Culture, True Romances), born in
+Bernard
+10
+
+In 1868 Battle of Alcolea, causes Queen ____ of Spain to flee to France
+Isabella ii
+10
+
+In 1868 Battle of Alcolea, causes Queen Isabella II of ____ to flee to France
+Spain
+10
+
+In 1868 Battle of Alcolea, causes Queen Isabella II of Spain to flee to____
+France
+10
+
+In 1868 Battle of____ , causes Queen Isabella II of Spain to flee to France
+Alcolea
+10
+
+In 1868 Bernard____ , publisher (Physical Culture, True Romances), born in
+Macfadden
+10
+
+In 1868 Brigham ____ marries number 27, his final wife
+Young
+10
+
+In 1868 Great Train Robbery; 7 men make off with ____ in cash
+$98,000
+10
+
+In 1868 Severe ____ at 7:53 a.m., centered in Hayward, Calif
+Earthquake
+10
+
+In 1868 The first baseball game played in enclosed field in ____ Francisco, at 25th and Folsom
+San
+10
+
+In 1868____ , proved Einstein right about light bent by gravity, born in
+Sir frank dyson
+10
+
+In 1869 ____ iron invented
+Waffle
+10
+
+In 1869 ____ is patented in Paris, for use in the French Navy
+Margarine
+10
+
+In 1869 (France) Henri____ , impressionist painter, born in
+Matisse
+10
+
+In 1869 A hotel in ____ becomes the first to have indoor plumbing
+Boston
+10
+
+In 1869 A hotel in Boston becomes the first to have indoor____
+Plumbing
+10
+
+In 1869 Black Friday ____ Wall Street panics after ____ and Fisk attempt to corner gold
+Gould
+10
+
+In 1869 Black Friday ____ Wall Street panics after Gould and ____ attempt to corner gold
+Fisk
+10
+
+In 1869 Celluloid patented by John Wesley____ , Albany, NY
+Hyatt
+10
+
+In 1869 First postcards are issued in____
+Vienna
+10
+
+In 1869 Florenz____ , of Follies fame, born in
+Ziegfeld
+10
+
+In 1869 Margarine is patented in____ , for use in the French Navy
+Paris
+10
+
+In 1869 Neville____ , English PM and statesman, born in
+Chamberlain
+10
+
+In 1869 The ____ Canal opens
+Suez
+10
+
+In 1870 ____ annexes Rome and the Papal States; Rome made Italian capital
+Italy
+10
+
+In 1870 ____ Claude, inventor of the neon light, born in
+Georges
+10
+
+In 1870 ____ E Lee General of the Confederate Army, dies at 63
+Robert
+10
+
+In 1870 ____ is founded in New York City
+Ywca
+10
+
+In 1870 ____ Perrin, French physicist, studied Brownian motion (Nobel 1926)
+Jean
+10
+
+In 1870 ____ republic proclaimed
+French
+10
+
+In 1870 Charles____ , author, dies in England
+Dickens
+10
+
+In 1870 Construction of the ____ begins
+Brooklyn bridge
+10
+
+In 1870 First ____ City subway line was opened to the public
+New york
+10
+
+In 1870 Georges____ , inventor of the neon light, born in
+Claude
+10
+
+In 1870 Jean Perrin, French physicist, studied ____ motion (Nobel 1926)
+Brownian
+10
+
+In 1870 Jean____ , French physicist, studied Brownian motion (Nobel 1926)
+Perrin
+10
+
+In 1870 Napoleon ____ captured at Sedan
+Iii
+10
+
+In 1870 Napoleon III captured at____
+Sedan
+10
+
+In 1870 Robert E ____ General of the Confederate Army, dies at 63
+Lee
+10
+
+In 1870 Robert E Lee General of the ____ Army, dies at 63
+Confederate
+10
+
+In 1870 Robert E Lee General of the Confederate Army, dies at____
+63
+10
+
+In 1870 U.S. ____ Amendment passes, guarantees right to vote regardless of race
+15th
+10
+
+In 1871 ____ Rasputin, Russian monk born
+Grigori
+10
+
+In 1871 ____ Wright, an aviator, born in
+Orville
+10
+
+In 1871 Ernest Lord ____ England, physicist; discovered atomic nucleus, born in
+Rutherford
+10
+
+In 1871 First ____ Car is patented by Andrew S. Hallidie
+Cable
+10
+
+In 1871 German Empire ____ by Kaiser Wilhelm I
+Proclaimed
+10
+
+In 1871 Grigori Rasputin, ____ monk born
+Russian
+10
+
+In 1871 Grigori____ , Russian monk born
+Rasputin
+10
+
+In 1871 Marcel____ , French novelist (Remembrance of Things Past), born in
+Proust
+10
+
+In 1871 Orville____ , an aviator, born in
+Wright
+10
+
+In 1872 ____ Amundsen, Norwegian explorer, discoverer of South Pole born
+Roald
+10
+
+In 1872 ____ Milhaud, composer born
+Darius
+10
+
+In 1872 ____ Post authority on social behavior, writer (Etiquette), born in
+Emily
+10
+
+In 1872 ____ Vibhaji India, cricketer/politician, born in
+Ranjitsinhji
+10
+
+In 1872 Bertrand ____ England, mathematician/philosopher (Nobel 1950), born in
+Russell
+10
+
+In 1872 Britain introduced the concept of voting by ____ ballot
+Secret
+10
+
+In 1872 Darius____ , composer born
+Milhaud
+10
+
+In 1872 Emily ____ authority on social behavior, writer (Etiquette), born in
+Post
+10
+
+In 1872 Haakon ____ Charlottenlund Denmark, King of Norway, born in
+Vii
+10
+
+In 1872 Haakon VII Charlottenlund Denmark, King of____ , born in
+Norway
+10
+
+In 1872 Haakon VII Charlottenlund____ , King of Norway, born in
+Denmark
+10
+
+In 1872 Mahlon ____ receives patent for wireless ... the radio is born
+Loomis
+10
+
+In 1872 Ranjitsinhji ____ India, cricketer/politician, born in
+Vibhaji
+10
+
+In 1872 Roald Amundsen, Norwegian explorer, discoverer of ____ born
+South pole
+10
+
+In 1872 Roald____ , Norwegian explorer, discoverer of South Pole born
+Amundsen
+10
+
+In 1872 Samuel F.B.____ , the developer of the electric telegraph, died
+Morse
+10
+
+In 1872 Sir ____ Beerbohm England, caricaturist/writer/wit (Saturday Review), born in
+Max
+10
+
+In 1872 Sir Max ____ England, caricaturist/writer/wit (Saturday Review), born in
+Beerbohm
+10
+
+In 1872 Victoria ____ becomes 1st woman nominated for US president
+Woodhull
+10
+
+In 1872 World's largest ____ nugget (215 kg) found in New South Wales
+Gold
+10
+
+In 1872 World's largest gold nugget (215 kg) found in____
+New south wales
+10
+
+In 1872, U.S. President Ulysses S. Grant designated two million acres in Wyoming as ____
+Yellowstone national Park
+10
+
+In 1873 ____ commits the 1st train robbery
+Jesse james
+10
+
+In 1873 ____ Hertzsprung, Danish astronomer (Hertzsprung-Russell diagram), born in
+Ejnar
+10
+
+In 1873 Canada's North West Mounted Police force (The____ ) first established
+Mounties
+10
+
+In 1873 Ejnar Hertzsprung, ____ astronomer (Hertzsprung-Russell diagram), born in
+Danish
+10
+
+In 1873 Ejnar____ , Danish astronomer (Hertzsprung-Russell diagram), born in
+Hertzsprung
+10
+
+In 1873 Enrico ____ (in Italy), singer, born in
+Caruso
+10
+
+In 1873 Howard____ , Egyptologist who found King Tutankhamen
+Carter
+10
+
+In 1873 Sergei ____ (in Novgorod Province, Russia), composer, born in
+Rachmaninoff
+10
+
+In 1873 Susan B. ____ fined $100 for attempting to vote for President
+Anthony
+10
+
+In 1873 William Handy, blues musician, established the popularity of the ____ in band music
+Blues
+10
+
+In 1873____ , Colombian poet, translator, statesman, born in
+Guillermo valencia
+10
+
+In 1874 ____ Schoenberg, composer, born in
+Arnold
+10
+
+In 1874 A patent is granted to Joseph Glidden for ____ wire
+Barbed
+10
+
+In 1874 Arnold____ , composer, born in
+Schoenberg
+10
+
+In 1874 Francois Coty, ____ , born in
+Perfumemaker
+10
+
+In 1874 Gertrude____ , writer, born in
+Stein
+10
+
+In 1874 Guglielmo ____ Bologna Italy, inventor (radio) (Nobel 1909), born in
+Marconi
+10
+
+In 1874 Howard ____ world chess champion, designer of chess pieces, dies
+Staunton
+10
+
+In 1874 Israel Bak created 1st ____ printing press, dies
+Hebrew
+10
+
+In 1874 Levi ____ markets blue jeans with copper rivets, price $13.50 doz
+Strauss
+10
+
+In 1874 Sir Apirana Turupa ____ Kawaka NZ, Maori political/cultural leader, born in
+Ngata
+10
+
+In 1874 Somerset____ , poet, born in
+Maugham
+10
+
+In 1874 Sydney ____ opens
+Gpo
+10
+
+In 1875 ____ Rice Burroughs, novelist (Tarzan, John Carter Of Mars Saga), born in
+Edgar
+10
+
+In 1875 1st newspaper ____ strip
+Cartoon
+10
+
+In 1875 A ____ coin was authorized by U.S. Congress (It only lasted 3 years)
+20-cent
+10
+
+In 1875 Dr Carl ____ Jung, founded analytic psychology, born in
+Gustav
+10
+
+In 1875 Dr Carl Gustav____ , founded analytic psychology, born in
+Jung
+10
+
+In 1875 Edgar ____ Burroughs, novelist (Tarzan, John Carter Of Mars Saga), born in
+Rice
+10
+
+In 1875 Edgar Rice Burroughs, novelist (____ , John Carter Of Mars Saga), born in
+Tarzan
+10
+
+In 1875 Edgar Rice Burroughs, novelist (Tarzan,____ ), born in
+John carter of mars saga
+10
+
+In 1875 Edgar Rice____ , novelist (Tarzan, John Carter Of Mars Saga), born in
+Burroughs
+10
+
+In 1875 Heinrich ____ discoverer of 11-year sunspot cycle, dies
+Schwabe
+10
+
+In 1875 Marie, queen consort of ____ of Rumania, born in
+Ferdinand i
+10
+
+In 1875 Maurice ____ (in Cibourne, France), composer (Bollero), born in
+Ravel
+10
+
+In 1875 Maurice____ , composer (Bolero), born in
+Ravel
+10
+
+In 1875 Pacific ____ formally opens
+Stock exchange
+10
+
+In 1875 Robert ____ (in San Francisco, CA), poet, born in
+Frost
+10
+
+In 1875 Verney Cameron is first European to cross equatorial ____ from sea to sea
+Africa
+10
+
+In 1875 Violent bread riots at____
+Montreal
+10
+
+In 1875 Walter____ , founded a car company, born in
+Chrysler
+10
+
+In 1875____ , doctor/humanitarian/organist (Nobel 1952), born in
+Albert schweitzer
+10
+
+In 1876 ____ Drummond 1st Secretary-General of League of Nations (1919-33), born in
+Eric
+10
+
+In 1876 ____ Hari, dancer, courtesan, spy, born in
+Mata
+10
+
+In 1876 Alexander ____ Bell files an application for a patent for the telephone
+Graham
+10
+
+In 1876 Eric ____ 1st Secretary-General of League of Nations (1919-33), born in
+Drummond
+10
+
+In 1876 First public display of the ____ at the Philedelphia Exhibition
+Telephone
+10
+
+In 1876 Mata____ , dancer, courtesan, spy, born in
+Hari
+10
+
+In 1876 National ____ League formed with 8 teams
+Baseball
+10
+
+In 1876 Sardines were first canned, in____ , Maine
+Eastport
+10
+
+In 1876 Willis Haviland____ , developed air-conditioning equipment
+Carrier
+10
+
+In 1876____ , writer (Call of the Wild), born in
+Jack london
+10
+
+In 1876, Sir Henery Wickham transported ____ rubber tree seeds from Brazil to Kew Gardens in London
+70,000
+10
+
+In 1877 ____ Edison invents the Edisonphone, a sound recording device
+Thomas
+10
+
+In 1877 ____ Hall discovers Mars' moon Phobos
+Asaph
+10
+
+In 1877 ____ J. Jeans, cosmologist and astrophysicist, born in
+James
+10
+
+In 1877 ____ Norris Russell, astronomer (Hertzsprung-Russell diagram) born
+Henry
+10
+
+In 1877 Asaph ____ discovers Mars' moon Phobos
+Hall
+10
+
+In 1877 Asaph Hall discovers ____ ' moon Phobos
+Mars
+10
+
+In 1877 Asaph Hall discovers Mars' moon____
+Phobos
+10
+
+In 1877 First ____ tennis championships held
+Wimbledon
+10
+
+In 1877 Frederick Gardner Cottrell, invented the elecrostatic precipitator, used for ____ control and air ionizers, born in
+Polution
+10
+
+In 1877 Henry ____ Russell, astronomer (Hertzsprung-Russell diagram) born
+Norris
+10
+
+In 1877 Henry Norris____ , astronomer (Hertzsprung-Russell diagram) born
+Russell
+10
+
+In 1877 James J.____ , cosmologist and astrophysicist, born in
+Jeans
+10
+
+In 1877 Ole ____ inventor (outboard marine engine), born in
+Evinrude
+10
+
+In 1877 Thomas ____ invents the Edisonphone, a sound recording device
+Edison
+10
+
+In 1877, Edison demonstrated his first gramophone with a recording of himself reciting which nursery rhyme?
+Mary had a little lamb
+10
+
+In 1878 ____ Quezon, first president of Philippine Commonwealth (1935-42), born in
+Manuel
+10
+
+In 1878 ____ Yoshida Japanese PM (most of 1946-54), born in
+Shigeru
+10
+
+In 1878 Andre-Gustave____ , French automaker, born in
+Citroen
+10
+
+In 1878 First ____ is issued, in New Haven, Conn
+Telephone book
+10
+
+In 1878 First telephone exchange in ____ opens with 18 phones
+San francisco
+10
+
+In 1878 Lionel ____ actor (A Free Soul, David Cooperfield, Dr Kildaire), born in
+Barrymore
+10
+
+In 1878 Manuel Quezon, first president of ____ Commonwealth (1935-42), born in
+Philippine
+10
+
+In 1878 Manuel____ , first president of Philippine Commonwealth (1935-42), born in
+Quezon
+10
+
+In 1878 Princess ____ of Sweden, born in
+Ingeborg
+10
+
+In 1878 Princess Ingeborg of____ , born in
+Sweden
+10
+
+In 1878 Shigeru ____ Japanese PM (most of 1946-54), born in
+Yoshida
+10
+
+In 1878 Thomas Alva Edison patents the?
+Phonograph
+10
+
+In 1878, Wanamaker's of Philadelphia was the first U.S. department store to install?
+Electric lighting
+10
+
+In 1879 ____ Edison commercially perfects the light bulb
+Thomas
+10
+
+In 1879 ____ Trotsky, Russian revolutionary (pres of 1st Soviet), born in
+Leon
+10
+
+In 1879 ____ Zapata, Mexican revolutionary, peasant leader
+Emiliano
+10
+
+In 1879 (USA) ____ gives 1st public demonstration of his incandescent lamp
+Edison
+10
+
+In 1879 Albert____ , scientist, born in
+Einstein
+10
+
+In 1879 Emiliano____ , Mexican revolutionary, peasant leader
+Zapata
+10
+
+In 1879 James Ritty patents the first ____ register, to combat stealing by bartenders in his Dayton, Ohio saloon
+Cash
+10
+
+In 1879 Josef____ , Russian dictator, born in
+Stalin
+10
+
+In 1879 Leon____ , Russian revolutionary (pres of 1st Soviet), born in
+Trotsky
+10
+
+In 1879 Meteor falls near____ , Iowa
+Estherville
+10
+
+In 1879 Otto____ , co-discoverer of nuclear fission, born in
+Hahn
+10
+
+In 1879 Paul Klee, Swiss ____ painter ,born
+Abstract
+10
+
+In 1879 Sir Thomas ____ , English composer, founded London Philharmonic, born in
+Beecham
+10
+
+In 1879 The city of ____ inaugurates steam motor tram route
+Sydney
+10
+
+In 1879 Thomas ____ commercially perfects the light bulb
+Edison
+10
+
+In 1879 Thomas Edison commercially perfects the____
+Light bulb
+10
+
+In 188 ____ Roman emperor (211-17), born in
+Caracalla
+10
+
+In 1880 ____ L. Mencken, newspaperman, critic, Baltimore's son, born in
+Henry
+10
+
+In 1880 ____ Ligowsky patents device to throw clay pigeons for trapshooters
+Geo
+10
+
+In 1880 (USA) ____ silent screen cowboy actor, born in
+Tom mix
+10
+
+In 1880 Construction of ____ Cathedral is completed
+Cologne
+10
+
+In 1880 Gen. Douglas ____ born, he did return!
+Macarthur
+10
+
+In 1880 Geo ____ patents device to throw clay pigeons for trapshooters
+Ligowsky
+10
+
+In 1880 Henry L.____ , newspaperman, critic, Baltimore's son, born in
+Mencken
+10
+
+In 1880 Queen Mother ____ Netherlands (1890-1948), born in
+Wilhelmina
+10
+
+In 1880 S.S. ____ arrives in London with first successful shipment of frozen mutton from Australia
+Strathleven
+10
+
+In 1880 The passing of____ , Emperor of the US, Protector of Mexico
+Norton i
+10
+
+In 1880 Thomas Edison granted patent for an electric ____ lamp
+Incandescent
+10
+
+In 1880 W.C. Fields [____ Dukenfield], actor (Bank Dick), born in
+Claude william
+10
+
+In 1880____ , created Keystone Kops, born in
+Mack sennett
+10
+
+In 1881 ____ B deMille Mass, directed God (10 Commandments), born in
+Cecil
+10
+
+In 1881 ____ Edward Boeing, founded aircraft company
+William
+10
+
+In 1881 ____ Picasso, doodler (Guernica) (or 10-05) born
+Pablo
+10
+
+In 1881 Barnum and Bailey's ____ opens in Madison Square Garden in New York City
+Greatest show on earth
+10
+
+In 1881 Cecil B ____ Mass, directed God (10 Commandments), born in
+Demille
+10
+
+In 1881 Cecil B deMille Mass, directed ____ (10 Commandments), born in
+God
+10
+
+In 1881 Pablo____ , doodler (Guernica) (or 10-05) born
+Picasso
+10
+
+In 1881 S.S. ____ begins first round-the-world cruise from Liverpool
+Ceylon
+10
+
+In 1881 Sioux Indian leader____ , surrenders to federal troops
+Sitting bull
+10
+
+In 1881 Sir ____ Fleming, cashed in on penicillin (Nobel 1954), born in
+Alexander
+10
+
+In 1881 Sir Alexander Fleming, cashed in on ____ (Nobel 1954), born in
+Penicillin
+10
+
+In 1881 Sir Alexander____ , cashed in on penicillin (Nobel 1954), born in
+Fleming
+10
+
+In 1881 Treaty of____ , Tunisia becomes a French protectorate
+Bardo
+10
+
+In 1881 William ____ Boeing, founded aircraft company
+Edward
+10
+
+In 1881 William Edward Boeing, founded ____ company
+Aircraft
+10
+
+In 1881 William Edward____ , founded aircraft company
+Boeing
+10
+
+In 1882 ____ author (Winnie-the-Pooh), born in
+Alan alexander milne
+10
+
+In 1882 ____ invades Egypt
+Britain
+10
+
+In 1882 ____ Kendall Australian poet, dies of tuberculosis at 43
+Henry
+10
+
+In 1882 ____ opens (as the Local Security Board)
+Pacific stock exchange
+10
+
+In 1882 200 die as ____ derails near Tcherny, Russia
+Train
+10
+
+In 1882 200 die as train derails near____ , Russia
+Tcherny
+10
+
+In 1882 Anna____ , St Petersburg Russia, ballerina/choreographer, born in
+Pavlova
+10
+
+In 1882 Britain invades____
+Egypt
+10
+
+In 1882 Congress outlawed?
+Polygamy
+10
+
+In 1882 Feud between the ____ family of southern West Virginia and the McCoys of eastern Kentucky broke out. About 100 either killed or wounded
+Hatfield
+10
+
+In 1882 Feud between the Hatfield family of southern West ____ and the McCoys of eastern Kentucky broke out. About 100 either killed or wounded
+Virginia
+10
+
+In 1882 Feud between the Hatfield family of southern West Virginia and the ____ of eastern Kentucky broke out. About 100 either killed or wounded
+Mccoys
+10
+
+In 1882 Feud between the Hatfield family of southern West Virginia and the McCoys of eastern ____ broke out. About 100 either killed or wounded
+Kentucky
+10
+
+In 1882 Feud between the Hatfield family of southern West Virginia and the McCoys of eastern Kentucky broke out. About ____ either killed or wounded
+100
+10
+
+In 1882 Franklin D. Roosevelt, ____ President (1933-1945) in New Hyde Park NY, born in
+32nd
+10
+
+In 1882 German scientist Robert ____ discovered bacillus cause of TB
+Koch
+10
+
+In 1882 Henry ____ Australian poet, dies of tuberculosis at 43
+Kendall
+10
+
+In 1882 Henry Kendall Australian poet, dies of ____ at 43
+Tuberculosis
+10
+
+In 1882 Henry Kendall Australian poet, dies of tuberculosis at____
+43
+10
+
+In 1882 Igor____ , composer (Firebird Suite, The Rite of Spring)
+Stravinsky
+10
+
+In 1882 James____ , writer, born in
+Joyce
+10
+
+In 1882 Jesse ____ shot dead in St. Joseph Mo. by Robert Ford
+James
+10
+
+In 1882 John____ , actor, born in
+Barrymore
+10
+
+In 1882 Last bare knuckle champion John L. ____ KOs Paddy Ryan in Miss
+Sullivan
+10
+
+In 1882 Virginia____ , author, born in
+Woolf
+10
+
+In 1883 ____ began erupting with increasingly large explosions
+Krakatoa
+10
+
+In 1883 ____ Bill Cody presents 1st wild west show, North Platte, Nebraska, U.S.A...
+Buffalo
+10
+
+In 1883 ____ Mussolini (Il Duce), Italian facist dictator born
+Benito
+10
+
+In 1883 (Lebanon) Khalil Gibran, ____ (The Prophet, Broken Wings), born in
+Mystic poet
+10
+
+In 1883 Benito ____ (Il Duce), Italian facist dictator born
+Mussolini
+10
+
+In 1883 Douglas____ , first and greatest of Hollywood's swashbucklers, born in
+Fairbanks
+10
+
+In 1883 First ____ theater opens
+Vaudeville
+10
+
+In 1883 Franz____ , Czechoslavakia, author (Metamorphosis, Trial, Amerika), born in
+Kafka
+10
+
+In 1883 John Maynard ____ (in Cambridge, England), another economist, born in
+Keynes
+10
+
+In 1883 Kahlil ____ , philosopher, born in
+Gibran
+10
+
+In 1883 Karl____ , founder of Communism, died
+Marx
+10
+
+In 1883 Krakatoa, west of____ , blew apart; top that, St. Helens!
+Java
+10
+
+In 1883 Ladies ____ begins publication
+Home journal
+10
+
+In 1883 Lon____ , actor, man of a thousand faces, born in
+Chaney
+10
+
+In 1883 Louis ____ begins experiments that invent the fountain pen
+Waterman
+10
+
+In 1883 Oscar ____ patents first practical cigar-rolling machine
+Hammerstein
+10
+
+In 1883 Rube ____ who made the easy outrageously difficult, born in
+Goldberg
+10
+
+In 1883 The '____ ' begins its first run, linking Turkey to Europe by rail
+Orient express
+10
+
+In 1883 The 'Orient Express' begins its first run, linking ____ to Europe by rail
+Turkey
+10
+
+In 1883 The 'Orient Express' begins its first run, linking Turkey to ____ by rail
+Europe
+10
+
+In 1883 U.S. and ____ begin the use of standard time zones (standard time zones established by the railroads in both countries)
+Canada
+10
+
+In 1884 ____ Barrios, Chilean novelist (The Love-Crazed Boy) born
+Eduardo
+10
+
+In 1884 ____ Gernsback, responsible for science fiction becoming an independent literary form, born in
+Hugo
+10
+
+In 1884 ____ patents paper-strip photographic film
+George eastman
+10
+
+In 1884 ____ Teasdale, poet born
+Sara
+10
+
+In 1884 Cornerstone for the ____ laid
+Statue of liberty
+10
+
+In 1884 Davidson____ , Canada, doctor of anatomy (identified Peking Man), born in
+Black
+10
+
+In 1884 Eduardo____ , Chilean novelist (The Love-Crazed Boy) born
+Barrios
+10
+
+In 1884 Hugo____ , responsible for science fiction becoming an independent literary form, born in
+Gernsback
+10
+
+In 1884 John B. Meyenberg of St Louis patented ____ milk
+Evaporated
+10
+
+In 1884 Robert____ , father of the documentary film, born in
+Flaherty
+10
+
+In 1884 Sara____ , poet born
+Teasdale
+10
+
+In 1884 Statue of ____ presented to US in Paris
+Liberty
+10
+
+In 1884____ , horror actor (Dracula, Body Snatcher), born in
+Bela lugosi
+10
+
+In 1884, what was referred to as 'the tragic lamppost'?
+The Eiffel Tower
+10
+
+In 1885 ____ Bohr, physicist, expanded quantum physics (Nobel 1922), born in
+Niels
+10
+
+In 1885 ____ Daimler receives German patent for a motorcycle
+Gottlieb
+10
+
+In 1885 1st inoculation (for____ ) of a human being, by Louis Pasteur
+Rabies
+10
+
+In 1885 Admiral Chester____ , in charge of Pacific Fleet in WWII, born in
+Nimitz
+10
+
+In 1885 Congo Free State established by King ____ of Belgium
+Leopold ii
+10
+
+In 1885 First ____ photograph
+Meteor
+10
+
+In 1885 Gottlieb ____ receives German patent for a motorcycle
+Daimler
+10
+
+In 1885 Jerome____ , Broadway composer, born in
+Kern
+10
+
+In 1885 Louis B Mayer, ____ Russia, motion-picture executive (MGM), born in
+Minsk
+10
+
+In 1885 Louis B____ , Minsk Russia, motion-picture executive (MGM), born in
+Mayer
+10
+
+In 1885 Niels____ , physicist, expanded quantum physics (Nobel 1922), born in
+Bohr
+10
+
+In 1885 Statue of Liberty arrived in NYC aboard the French ship `____ '
+Isere
+10
+
+In 1885 The ____ Film Company manufactured the first commercial motion picture film
+Eastman
+10
+
+In 1886 ____ abolishes slavery in Cuba
+Spain
+10
+
+In 1886 ____ Igarashi Japan, climed Mt Fuji at age 99, born in
+Teiichi
+10
+
+In 1886 ____ Lorillard wears the first dinner jacket to the Autumn Ball in Tuxedo Park. Thus the name 'tuxedo.'
+Griswold
+10
+
+In 1886 American poet Emily ____ died
+Dickinson
+10
+
+In 1886 Coca-Cola is created (it had ____ at the time)
+Cocaine
+10
+
+In 1886 Duchess of____ , famous divorcee, born in
+Windsor
+10
+
+In 1886 Geronimo, ____ Indian, finally surrenders ending last major US-Indian war
+Apache
+10
+
+In 1886 Griswold ____ wears the first dinner jacket to the Autumn Ball in Tuxedo Park. Thus the name 'tuxedo.'
+Lorillard
+10
+
+In 1886 Griswold Lorillard wears the first dinner jacket to the Autumn Ball in Tuxedo Park. Thus the name '____ .'
+Tuxedo
+10
+
+In 1886 Haymarket riot in____ ; bomb kills 7 policemen
+Chicago
+10
+
+In 1886 King ____ of Bavaria drowns
+Ludwig ii
+10
+
+In 1886 King Ludwig II of ____ drowns
+Bavaria
+10
+
+In 1886 Spain abolishes slavery in____
+Cuba
+10
+
+In 1886 Teiichi ____ Japan, climed Mt Fuji at age 99, born in
+Igarashi
+10
+
+In 1886 Teiichi Igarashi Japan, climed Mt Fuji at age____ , born in
+99
+10
+
+In 1886 Willem ____ PM of Netherland (1948-58), born in
+Drees
+10
+
+In 1886 Willem Drees PM of ____ (1948-58), born in
+Netherland
+10
+
+In 1886____ , Apache Indian, finally surrenders ending last major US-Indian war
+Geronimo
+10
+
+In 1887 ____ Garvey, began back-to-Africa movement among US blacks, born in
+Marcus
+10
+
+In 1887 ____ Kirchoff, discoverer of the laws of spectroscopy, dies
+Gustav
+10
+
+In 1887 ____ Reed, journalist who reported on Mexican, Russian revolutions, born in
+John
+10
+
+In 1887 ____ Schrodinger Austria, physicist (had a cat), born in
+Erwin
+10
+
+In 1887 Britain celebrates ____ jubilee of Queen Victoria
+Golden
+10
+
+In 1887 Erwin ____ Austria, physicist (had a cat), born in
+Schrodinger
+10
+
+In 1887 Erwin Schrodinger Austria, ____ (had a cat), born in
+Physicist
+10
+
+In 1887 Gustav Kirchoff, discoverer of the laws of____ , dies
+Spectroscopy
+10
+
+In 1887 Gustav____ , discoverer of the laws of spectroscopy, dies
+Kirchoff
+10
+
+In 1887 Gustav____ , German quantum physicist (Nobel 1925), born in
+Hertz
+10
+
+In 1887 John Reed, journalist who reported on Mexican, ____ revolutions, born in
+Russian
+10
+
+In 1887 John Reed, journalist who reported on____ , Russian revolutions, born in
+Mexican
+10
+
+In 1887 John____ , journalist who reported on Mexican, Russian revolutions, born in
+Reed
+10
+
+In 1887 Marcel ____ painter (Nude Descending a Staircase), born in
+Duchamp
+10
+
+In 1887 Marcus____ , began back-to-Africa movement among US blacks, born in
+Garvey
+10
+
+In 1887 Sino-Portuguese treaty recognizes Portugal's control of____
+Macao
+10
+
+In 1887 Sir Julian ____ London, biologist/philosopher, Darwin's Bulldog, born in
+Huxley
+10
+
+In 1887 Thomas A Edison patents____ , (produces moving pictures)
+Kinetoscope
+10
+
+In 1887 U.S. receives rights to ____ Harbor, on Oahu, Hawaii
+Pearl
+10
+
+In 1888 ____ Chevalier, actor, singer (Gigi), ultimate Frenchman, born in
+Maurice
+10
+
+In 1888 ____ E. Byrd, polar explorer born
+Richard
+10
+
+In 1888 ____ Eastman patents first rollfilm camera and registers Kodak
+George
+10
+
+In 1888 ____ Logie Baird, Scotland, inventor (father of TV), born in
+John
+10
+
+In 1888 ____ O'Neill, playwright (Desire Under the Elms) (Nobel 1936)
+Eugene
+10
+
+In 1888 ____ Ta-chao cofounder with Mao Tse-tung of Chinese Communist Party, born in
+Li
+10
+
+In 1888 ____ Van Kannel of Philadelphia receives a patent for his revolving door ____ described as a storm door structure
+Theophilus
+10
+
+In 1888 ____ Zernike, inventor of phase-contrast microscope (Nobel 1953)
+Frits
+10
+
+In 1888 Blizzard struck the northeastern United States. ____ people died
+400
+10
+
+In 1888 Brazil abolishes____
+Slavery
+10
+
+In 1888 Eugene____ , playwright (Desire Under the Elms) (Nobel 1936)
+O'neill
+10
+
+In 1888 First ____ is patented by M.C. Stone in Washington, D.C
+Drinking straw
+10
+
+In 1888 Frits Zernike, inventor of phase____ microscope (Nobel 1953)
+Contrast
+10
+
+In 1888 Frits Zernike, inventor of phase-contrast ____ (Nobel 1953)
+Microscope
+10
+
+In 1888 Frits____ , inventor of phase-contrast microscope (Nobel 1953)
+Zernike
+10
+
+In 1888 George ____ patents first rollfilm camera and registers Kodak
+Eastman
+10
+
+In 1888 George Eastman patents first rollfilm camera and registers____
+Kodak
+10
+
+In 1888 Irving ____ [Isadore Balin], Temun, Russia, composer (White Xmas), born in
+Berlin
+10
+
+In 1888 Jack the ____ kills last victim
+Ripper
+10
+
+In 1888 John ____ Baird, Scotland, inventor (father of TV), born in
+Logie
+10
+
+In 1888 John Logie____ , Scotland, inventor (father of TV), born in
+Baird
+10
+
+In 1888 Li ____ cofounder with Mao Tse-tung of Chinese Communist Party, born in
+Ta-chao
+10
+
+In 1888 Li Ta-chao cofounder with ____ of Chinese Communist Party, born in
+Mao tse-tung
+10
+
+In 1888 Mary Ann ____ a 42-year-old prostitute, was found stabbed to death in London, 1st of at least five murders by Jack the Ripper
+Nicholls
+10
+
+In 1888 Maurice____ , actor, singer (Gigi), ultimate Frenchman, born in
+Chevalier
+10
+
+In 1888 National Geographic Society ____ (Washington, DC)
+Founded
+10
+
+In 1888 Richard E.____ , polar explorer born
+Byrd
+10
+
+In 1888 Shmuel____ , Israeli novelist (Day Before Yesterday) (Nobel 1966), born in
+Agnon
+10
+
+In 1888 T. E.____ , writer (aka Lawrence of Arabia), born in
+Lawrence
+10
+
+In 1888 T.S.____ , Anglican, playwright (Waste Land) (Nobel 1948), born in
+Eliot
+10
+
+In 1888 The ____ Army of England sends group to U.S. to begin welfare and religious activity here
+Salvation
+10
+
+In 1888 Theophilus Van ____ of Philadelphia receives a patent for his revolving door ____ described as a storm door structure
+Kannel
+10
+
+In 1888 Theophilus Van Kannel of ____ receives a patent for his revolving door ____ described as a storm door structure
+Philadelphia
+10
+
+In 1888 Theophilus Van Kannel of Philadelphia receives a patent for his ____ ____ described as a storm door structure
+Revolving door
+10
+
+In 1888 William Bundy invents the first ____ clock
+Timecard
+10
+
+In 1888____ , blues 12 string guitarist (Rock Island Line), born in
+Leadbelly
+10
+
+In 1888, an estimated 300,000 mummified cats were found at Beni Hassan, Egypt. They were sold at ____ per ton, & shipped to England to be ground up & used for fertilizer
+$18.43
+10
+
+In 1889 ____ Dumont, actress-Marx Brothers' foil, born in
+Margaret
+10
+
+In 1889 ____ invented
+Hamburger
+10
+
+In 1889 ____ with a back-pedal brake patented
+Bicycle
+10
+
+In 1889 Arnold ____ , historian, born in
+Toynbee
+10
+
+In 1889 Charlie ____ , actor, comedian, movie director, born in
+Chaplin
+10
+
+In 1889 Claude Rains____ , actor (Invisible Man, Casablanca), born in
+London
+10
+
+In 1889 Dom Pedro II, Emperor of____ , deposed; republic proclaimed
+Brazil
+10
+
+In 1889 Dr ____ F Mahoney developed pencillin treatment of syphillis, born in
+John
+10
+
+In 1889 Dr John F ____ developed pencillin treatment of syphillis, born in
+Mahoney
+10
+
+In 1889 Dr John F Mahoney developed ____ treatment of syphillis, born in
+Pencillin
+10
+
+In 1889 Dr John F Mahoney developed pencillin treatment of____ , born in
+Syphillis
+10
+
+In 1889 Erle Stanley____ , writer, created Perry Mason, born in
+Gardner
+10
+
+In 1889 Igor ____ developed a working helicopter, born in
+Sikorsky
+10
+
+In 1889 Jean ____ France, writer/artist/film maker (Le Potamak), born in
+Cocteau
+10
+
+In 1889 John L. ____ wins by KO in 75 rounds in last bareknuckle bout
+Sullivan
+10
+
+In 1889 Margaret____ , actress-Marx Brothers' foil, born in
+Dumont
+10
+
+In 1889 Oahu Railway begins public service in____
+Hawaii
+10
+
+In 1889 The first ____ is installed, at a saloon in San Francisco
+Jukebox
+10
+
+In 1889 The first ____ machine is marketed in Chicago
+Dishwashing
+10
+
+In 1890 ____ Island (NYC) opens as a US immigration depot
+Ellis
+10
+
+In 1890 ____ Rickenbacker, aviator, born in
+Eddie
+10
+
+In 1890 ____ Sanders, Kentucky Fried Chicken founder/colonel, born in
+Harland
+10
+
+In 1890 ____ trail blazer/leader of Vietnam (1946, 1969), born in
+Ho chi minh
+10
+
+In 1890 Dame ____ Christie mystery writer (Murder on the Orient Express), born in
+Agatha
+10
+
+In 1890 Dame Agatha ____ mystery writer (Murder on the Orient Express), born in
+Christie
+10
+
+In 1890 Eddie____ , aviator, born in
+Rickenbacker
+10
+
+In 1890 Edwin____ , radio pioneer (invented FM) ,born
+Armstrong
+10
+
+In 1890 Harland____ , Kentucky Fried Chicken founder/colonel, born in
+Sanders
+10
+
+In 1890 Rose____ , Mother of a President, an Attorney General, and a Senator, born in
+Kennedy
+10
+
+In 1891 A Hatfield marries a____ , ending a long feud in W. VA
+Mccoy
+10
+
+In 1891 Carnegie Hall opens in NYC with ____ as guest conductor
+Tchaikovsky
+10
+
+In 1891 Travelers ____ patented
+Cheques
+10
+
+In 1891, film was introduced to replace ____ in making photographic negatives
+Glass
+10
+
+In 1892 ____ Andric, Yugoslav novelist (Bridge on the Drina) (Nobel '61), born in
+Ivo
+10
+
+In 1892 ____ Freiherr von Richthofen [the Red Baron], German WW I ace, born in
+Manfred
+10
+
+In 1892 ____ Harlem Ga, comedy team member (Laurel & Hardy), born in
+Oliver hardy
+10
+
+In 1892 ____ Selassie, emperor of Ethiopia (1930-74), founder of the Rastafarian religion
+Haile
+10
+
+In 1892 ____ West, actress, born in
+Mae
+10
+
+In 1892 At a banquet through a letter Lord ____ presents the idea of a silver cup challenge for Hockey (Stanley Cup) The cup cost $50
+Stanley
+10
+
+In 1892 Basil ____ Johannesburg S Africa, actor (Sherlock Holmes), born in
+Rathbone
+10
+
+In 1892 Basketball rules ____ published
+First
+10
+
+In 1892 Britian and US signed treaty on ____ hunting in Bering Sea
+Seal
+10
+
+In 1892 Charles ____ takes 1st American-made auto out for a spin
+Duryea
+10
+
+In 1892 Dame Margaret____ , England, actress (Murder Most Foul), born in
+Rutherford
+10
+
+In 1892 Donald Wills ____ , founded an aircraft company
+Douglas
+10
+
+In 1892 E E ____ at Lick discovers Amalthea, 5th Jupiter moon
+Barnard
+10
+
+In 1892 E E Barnard at Lick discovers Amalthea, ____ Jupiter moon
+5th
+10
+
+In 1892 E E Barnard at Lick discovers Amalthea, 5th ____ moon
+Jupiter
+10
+
+In 1892 E E Barnard at Lick discovers____ , 5th Jupiter moon
+Amalthea
+10
+
+In 1892 Edna St. Vincent____ , poet, born in
+Millay
+10
+
+In 1892 First public game of?
+Basketball
+10
+
+In 1892 Haile Selassie, emperor of ____ (1930-74), founder of the Rastafarian religion
+Ethiopia
+10
+
+In 1892 Haile Selassie, emperor of Ethiopia (1930-74), founder of the ____ religion
+Rastafarian
+10
+
+In 1892 Haile____ , emperor of Ethiopia (1930-74), founder of the Rastafarian religion
+Selassie
+10
+
+In 1892 Ivo____ , Yugoslav novelist (Bridge on the Drina) (Nobel '61), born in
+Andric
+10
+
+In 1892 J.R.R. Tolkien, ____ , author (The Hobbit, Lord of the Rings), born in
+Linguist
+10
+
+In 1892 Mae____ , actress, born in
+West
+10
+
+In 1892 Poet Walt ____ died in Camden, New Jersey
+Whitman
+10
+
+In 1892, Italy raised the minimum age for marriage for girls to____
+1
+10
+
+In 1892, who raised the marriageable age for girls to 12 years old?
+Italy
+10
+
+In 1893 ____ issues first driving licenses, including a required test
+France
+10
+
+In 1893 1st ____ wheel premieres (Chicago's Columbian Exposition)
+Ferris
+10
+
+In 1893 Cole____ , Indiana U.S.A, composer/lyricist (Anything Goes, Kiss Me Kate), born in
+Porter
+10
+
+In 1893 Dorothy L ____ England, novelist (9 Taylors), born in
+Sayers
+10
+
+In 1893 Jimmy____ , comedian, born in
+Durante
+10
+
+In 1893 Viscount____ , Scotland, Governor General of Australia (1959-61), born in
+Dunrossil
+10
+
+In 1893 Vladimir____ , Soviet Georgia, poet (Ode to Revolution), born in
+Mayakovsky
+10
+
+In 1893 Vladimir____ , Soviet poet, born in
+Mayakovsky
+10
+
+In 1893, what did an American magazine vote 'the national beverage'?
+Ice cream soda
+10
+
+In 1894 ____ defeats China in Battle of Ping Yang
+Japan
+10
+
+In 1894 6,000 Armenians massacred by Turks in____
+Kurdistan
+10
+
+In 1894 Aldous____ , author (Brave New World), born in
+Huxley
+10
+
+In 1894 Alfred ____ entomologist/sexologist (Kinsey Report), born in
+Kinsey
+10
+
+In 1894 Andres____ , guitarist, born in
+Segovia
+10
+
+In 1894 Benjamin ____ (AKA Jack Benny), actor, comedian, born in
+Kubelski
+10
+
+In 1894 Duke of ____ [King Edward VIII of England] (briefly in 1936), born in
+Windsor
+10
+
+In 1894 E E____ , poet, born in
+Cummings
+10
+
+In 1894 First ____ shown in NY City
+Motion picture
+10
+
+In 1894 Hermann____ , founder of modern astronautics
+Oberth
+10
+
+In 1894 Japan defeats ____ in Battle of Ping Yang
+China
+10
+
+In 1894 Japan defeats China in Battle of____
+Ping yang
+10
+
+In 1894 Norman____ , artist, born in
+Rockwell
+10
+
+In 1894, there were only how many automobiles in the U S?
+4
+10
+
+In 1895 ____ Keaton, silent movie actor (The Navigator, Steamboat Bill) born
+Buster
+10
+
+In 1895 ____ Marx, comedian born
+Groucho
+10
+
+In 1895 ____ Mr FBI, born in
+J edgar hoover
+10
+
+In 1895 ____ Pasteur dies
+Louis
+10
+
+In 1895 ____ Peron, president of Argentina (1946-55, 1973-74), born in
+Juan
+10
+
+In 1895 ____ Yi-t'ang, Chinese writer (My Country and My People), born in
+Lin
+10
+
+In 1895 Alfred Nobel establishes ____ prize
+Nobel
+10
+
+In 1895 America's first ____ race starts; 6 cars, 55 miles, winner averages a blazing 7 MPH
+Auto
+10
+
+In 1895 Buster____ , silent movie actor (The Navigator, Steamboat Bill) born
+Keaton
+10
+
+In 1895 D.D. ____ of Davenport, Iowa, becomes the first Chiropractor
+Palmer
+10
+
+In 1895 First known ____ race
+Auto
+10
+
+In 1895 First round-the-world trip by a woman on a ____ (took 15 months)
+Bicycle
+10
+
+In 1895 First round-the-world trip by a woman on a bicycle (took ____ months)
+Fifteen
+10
+
+In 1895 First shipment of canned ____ from Hawaii
+Pineapple
+10
+
+In 1895 George Herman '____ ' Ruth, born in
+Babe
+10
+
+In 1895 Groucho____ , comedian born
+Marx
+10
+
+In 1895 Jack____ , boxer (The Manassa Mauler) born
+Dempsey
+10
+
+In 1895 Juan Peron, president of ____ (1946-55, 1973-74), born in
+Argentina
+10
+
+In 1895 Juan____ , president of Argentina (1946-55, 1973-74), born in
+Peron
+10
+
+In 1895 Lin____ , Chinese writer (My Country and My People), born in
+Yi-t'ang
+10
+
+In 1895 Louis ____ dies
+Pasteur
+10
+
+In 1895 Mance ____ , blues musician, born in
+Lipscomb
+10
+
+In 1895 Oscar____ , lyricist, born who worked with Richard Rodgers
+Hammerstein ii
+10
+
+In 1895 Rudolf ____ , Hitler's Deputy Fuhrer, only prisoner at Spandau, born in
+Hess
+10
+
+In 1895 Rudolph____ , silent film star, sheik
+Valentino
+10
+
+In 1895 Stan ____ comedian (Laurel & Hardy), born in
+Laurel
+10
+
+In 1895 The ____ is invented
+Pencil
+10
+
+In 1895 Treaty of ____ signed, ends first Sino-Japanese War (1894-95)
+Shimonoseki
+10
+
+In 1895 Wilhelm ____ discovers x-rays
+Rintgen
+10
+
+In 1895 Writer Oscar ____ is arrested
+Wilde
+10
+
+In 1896 ____ [Nathan Birnbaum], NYC, actor/comedian (Oh God), born in
+George burns
+10
+
+In 1896 ____ Gish, silent film and stage actor (Birth of a Nation), born in
+Lillian
+10
+
+In 1896 ____ invented in NYC by chef of visiting Chinese Ambassador
+Chop suey
+10
+
+In 1896 ____ is discovered on Klondike River
+Gold
+10
+
+In 1896 ____ Lie, first Secretary-General of UN (1946-52)
+Trygve
+10
+
+In 1896 ____ Piaget, pioneer developmental psychologist, born in
+Jean
+10
+
+In 1896 (USA) Ira____ , composer, born in
+Gershwin
+10
+
+In 1896 1st modern Olympic Games officially opens in?
+Athens
+10
+
+In 1896 A.J.____ , English author, born in
+Cronin
+10
+
+In 1896 Alfred ____ dies; Swedish Nobel Prize ceremony on this date
+Nobel
+10
+
+In 1896 Charlotte, grand duchess of ____ (1919-64), born in
+Luxembourg
+10
+
+In 1896 F. ____ Fitzgerald (in St. Paul, MN), writer (Great Gatsby), born in
+Scott
+10
+
+In 1896 F. Scott ____ (in St. Paul, MN), writer (Great Gatsby), born in
+Fitzgerald
+10
+
+In 1896 Gold is discovered on ____ River
+Klondike
+10
+
+In 1896 Henry takes his first Ford through the streets of____ . The road test of the is delayed an hour because the car is wider than the door of the shed in which it is built
+Detroit
+10
+
+In 1896 Jean Piaget, pioneer developmental____ , born in
+Psychologist
+10
+
+In 1896 Jean____ , pioneer developmental psychologist, born in
+Piaget
+10
+
+In 1896 Lillian____ , silent film and stage actor (Birth of a Nation), born in
+Gish
+10
+
+In 1896 Modern Olympics ____ . (First modern Olympiad)
+Anniversary
+10
+
+In 1896 Power plant at ____ Falls begins operation
+Niagara
+10
+
+In 1896 the speed limit for horseless carriages was raised from 4 mph to what?
+14 mph
+10
+
+In 1896 US Marines landed in ____ to protect US citizens
+Nicaragua
+10
+
+In 1896, Britain and Zanzibar were at war for ____ minutes
+38
+10
+
+In 1897 ____ last day as a city, it incorporates into NYC (1/1/1898)
+Brooklyn's
+10
+
+In 1897 ____ Mamoulian, movie director, born in
+Rouben
+10
+
+In 1897 1st American ____ ran, John J McDermott wins in 2:55:10 (Boston)
+Marathon
+10
+
+In 1897 Frank ____ movie director (Its a Wonderful Life, Arsenic & Old Lace), born in
+Capra
+10
+
+In 1897 Matthias Zurbriggen was the first climber to reach the summit of the highest peak in South America, what wasits name?
+Aconcagua
+10
+
+In 1897 Paul VI, ____ Roman Catholic pope (1963-78), born in
+262nd
+10
+
+In 1897 Rouben____ , movie director, born in
+Mamoulian
+10
+
+In 1897____ , 262nd Roman Catholic pope (1963-78), born in
+Paul vi
+10
+
+In 1897____ , Nazi propagandist, born in
+Paul joseph goebbels
+10
+
+In 1898 ____ -American War begins
+Spanish
+10
+
+In 1898 ____ cedes Guam to US
+Spain
+10
+
+In 1898 ____ Gershwin, (in Brooklyn, NY), composer (Rhapsody in Blue), born in
+George
+10
+
+In 1898 ____ speed record set ____ 63 kph
+Auto
+10
+
+In 1898 , the Bayer company began marketing what they claimed was a non addictive opiate what was it?
+Heroin
+10
+
+In 1898 Alexander Calder, ____ (mobiles, stabiles), born in
+Sculptor
+10
+
+In 1898 Alexander____ , sculptor (mobiles, stabiles), born in
+Calder
+10
+
+In 1898 Bertolt____ , born in
+Brecht
+10
+
+In 1898 China leases Hong Kong's new territories to Britain for ____ years
+99
+10
+
+In 1898 Emmett____ , circus clown (Weary Willie) born
+Kelly
+10
+
+In 1898 Enzo____ , car designer and manufacturer, born in
+Ferrari
+10
+
+In 1898 George____ , (in Brooklyn, NY), composer (Rhapsody in Blue), born in
+Gershwin
+10
+
+In 1898 Guglielmo ____ patents the radio
+Marconi
+10
+
+In 1898 Lewis Carroll writer (Alice in Wonderland), dies at?
+65
+10
+
+In 1898 Lord ____ retakes Sudan for Britain
+Kitchener
+10
+
+In 1898 Lord Kitchener retakes ____ for Britain
+Sudan
+10
+
+In 1898 Lord Kitchener retakes Sudan for____
+Britain
+10
+
+In 1898 Philippine nationalists declared their independence from____ . Phillipine Independance day
+Spain
+10
+
+In 1898 President ____ asks for Spanish-American War declaration
+Mckinley
+10
+
+In 1898 Spain cedes ____ to US
+Guam
+10
+
+In 1898 Spain declares war on U.S., rejecting ultimatum to withdraw from?
+Cuba
+10
+
+In 1898 Spanish-American War ends ____ U.S. acquires Guam, Puerto Rico, the Phillipines, and ____ from Spain
+Cuba
+10
+
+In 1898 who wrote The War of the Worlds?
+H.g. wells
+10
+
+In 1899 ____ Aiken, American poet, short story writer, critic, born in
+Conrad
+10
+
+In 1899 ____ Bliss becomes 1st automobile fatality
+Henry
+10
+
+In 1899 ____ Hitchcock, London, director (Psycho, Birds, Rear Window), born in
+Alfred
+10
+
+In 1899 ____ Society established to place bibles in hotels
+Gideon
+10
+
+In 1899 ____ Wallis movie producer (Maltese Falcon, Barefoot in the Park), born in
+Hal
+10
+
+In 1899 Alfred ____ , inventor of the game 'Scrabble', born in
+Butts
+10
+
+In 1899 Alfred Hitchcock, London, director (____ , Birds, Rear Window), born in
+Psycho
+10
+
+In 1899 Alfred Hitchcock, London, director (Psycho, ____ , Rear Window), born in
+Birds
+10
+
+In 1899 Alfred Hitchcock, London, director (Psycho, Birds,____ ), born in
+Rear window
+10
+
+In 1899 Alfred____ , London, director (Psycho, Birds, Rear Window), born in
+Hitchcock
+10
+
+In 1899 Anglo-Egyptian country of ____ forms
+Sudan
+10
+
+In 1899 C.S. Forester, historical novelist, created ____
+Horatio hornblower
+10
+
+In 1899 Conrad____ , American poet, short story writer, critic, born in
+Aiken
+10
+
+In 1899 Duke ____ bandleader (Take the A Train), born in
+Ellington
+10
+
+In 1899 E.B. ____ writer (Charlotte's Web, Elements of Style), born in
+White
+10
+
+In 1899 Ernest____ , author, (Nobel 1954), born in
+Hemmingway
+10
+
+In 1899 First ____ race, Manhattan Beach, N.Y
+Motorcycle
+10
+
+In 1899 Fred ____ Omaha Neb, tap dancer/actor (Easter Parade, Swingtime), born in
+Astaire
+10
+
+In 1899 George ____ wins patent for his golf tee
+Grant
+10
+
+In 1899 Gideon Society established to place ____ in hotels
+Bibles
+10
+
+In 1899 Hal ____ movie producer (Maltese Falcon, Barefoot in the Park), born in
+Wallis
+10
+
+In 1899 Henry ____ becomes 1st automobile fatality
+Bliss
+10
+
+In 1899 Humphrey____ , actor, born in
+Bogart
+10
+
+In 1899 Jean ____ hero of the French Resistance during WW II, born in
+Moulin
+10
+
+In 1899 Martha ____ of Brooklyn, became first woman to die by electrocution
+Place
+10
+
+In 1899 Sir Noel____ , playwright, born in
+Coward
+10
+
+In 1899 The first auto repair shop opens in____ , MA
+Boston
+10
+
+In 1899 Treaty of Paris ratifies; Spain cedes ____ to US
+Puerto rico
+10
+
+In 1899____ , Crime Boss, born in
+Al capone
+10
+
+In 1900 ____ annex Natal (South Africa)
+British
+10
+
+In 1900 ____ becomes a U.S. territory
+Hawaii
+10
+
+In 1900 ____ Hilton, hotel magnate (Hilton Hotels), born in
+James
+10
+
+In 1900 ____ modern Olympic games opens in Paris (lasted 5 months)
+2nd
+10
+
+In 1900 ____ Nietzsche philosopher, dies in Weimar, Germany
+Friedrich
+10
+
+In 1900 Adlai E.____ , statesman, born in
+Stevenson
+10
+
+In 1900 Ayatollah Ruhollah ____ Iran's spiritual leader, born in
+Khomeini
+10
+
+In 1900 Britain proclaims protectorate over kingdom of____
+Tonga
+10
+
+In 1900 British annex ____ (South Africa)
+Natal
+10
+
+In 1900 Charles ____ , Earthquakes seismologist (Richter scale), born in
+Richter
+10
+
+In 1900 China's ____ Rebellion against foreigners and Christians
+Boxer
+10
+
+In 1900 China's Boxer Rebellion against foreigners and____
+Christians
+10
+
+In 1900 Count Ferdinand von ____ 's 1st airship LZ-1, flies
+Zeppelin
+10
+
+In 1900 Dennis____ , inventor of holography (3D laser photography), born in
+Gabor
+10
+
+In 1900 First Davis Cup ____ matches, held in Boston. The U.S. defeats Britain
+Tennis
+10
+
+In 1900 First Davis Cup tennis matches, held in Boston. The ____ defeats Britain
+U.s
+10
+
+In 1900 First Davis Cup tennis matches, held in Boston. The U.S. defeats____
+Britain
+10
+
+In 1900 First Davis Cup tennis matches, held in____ . The U.S. defeats Britain
+Boston
+10
+
+In 1900 Friedrich ____ philosopher, dies in Weimar, Germany
+Nietzsche
+10
+
+In 1900 Friedrich Nietzsche philosopher, dies in____ , Germany
+Weimar
+10
+
+In 1900 Hamburger created by ____ Lassing in Connecticut
+Louis
+10
+
+In 1900 Hamburger created by Louis ____ in Connecticut
+Lassing
+10
+
+In 1900 Hamburger created by Louis Lassing in____
+Connecticut
+10
+
+In 1900 Italian King ____ I assassinated
+Umberto
+10
+
+In 1900 James____ , actor, born in
+Cagney
+10
+
+In 1900 James____ , hotel magnate (Hilton Hotels), born in
+Hilton
+10
+
+In 1900 Spanish____ War ends
+American
+10
+
+In 1900 Spencer ____ actor (Father's Little Dividend, Adam's Rib), born in
+Tracy
+10
+
+In 1900 the average age at death in the U S was what?
+47
+10
+
+In 1900, there were ____ cars in the United States
+8,000
+10
+
+In 1900, what was the average lifespan in the u.s?
+Forty seven
+10
+
+In 1901 ____ Fermi, Italy, nuclear physicist, born in
+Enrico
+10
+
+In 1901 ____ Maass army nurse sacrificied her life at 25 to prove that the mosquito carries yellow fever
+Clara
+10
+
+In 1901 ____ Osborn, playwright born
+Paul
+10
+
+In 1901 ____ patents 1st disposable razor
+Gillette
+10
+
+In 1901 ____ Quasimodo, Italian poet, critic, translator (Nobel 1959), born in
+Salvatore
+10
+
+In 1901 ____ Taylor, first to go over Niagara Falls in a barrel and live
+Anna
+10
+
+In 1901 (Germany) Marlene____ , actress, born in
+Dietrich
+10
+
+In 1901 (USA) Walt ____ born
+Disney
+10
+
+In 1901 Anna Taylor, first to go over ____ in a barrel and live
+Niagara falls
+10
+
+In 1901 Anna____ , first to go over Niagara Falls in a barrel and live
+Taylor
+10
+
+In 1901 Clara ____ army nurse sacrificied her life at 25 to prove that the mosquito carries yellow fever
+Maass
+10
+
+In 1901 Clara Maass army nurse sacrificied her life at ____ to prove that the mosquito carries yellow fever
+25
+10
+
+In 1901 Clara Maass army nurse sacrificied her life at 25 to prove that the ____ carries yellow fever
+Mosquito
+10
+
+In 1901 Clark____ , actor (didn't give a damn about Scarlet O'Hara)
+Gable
+10
+
+In 1901 Dame____ , Australian Opera Singer, reveals secret of her now famous toast
+Nellie melba
+10
+
+In 1901 Emperor ____ of Japan (1926-89), born in
+Hirohito
+10
+
+In 1901 Enrico____ , Italy, nuclear physicist, born in
+Fermi
+10
+
+In 1901 First ____ Peace Prizes (to Jean Henri Dunant, Frederic Passy)
+Nobel
+10
+
+In 1901 First telegraph company in ____ opens
+Hawaii
+10
+
+In 1901 Gen. ____ D. Taylor, former US Army chief of staff born
+Maxwell
+10
+
+In 1901 Gen. Maxwell D.____ , former US Army chief of staff born
+Taylor
+10
+
+In 1901 Paul____ , playwright born
+Osborn
+10
+
+In 1901 Pres ____ McKinley assassinated by Leon Czologosz in Buffalo, New York
+William
+10
+
+In 1901 Pres William ____ assassinated by Leon Czologosz in Buffalo, New York
+Mckinley
+10
+
+In 1901 Pres William McKinley assassinated by ____ Czologosz in Buffalo, New York
+Leon
+10
+
+In 1901 Pres William McKinley assassinated by Leon ____ in Buffalo, New York
+Czologosz
+10
+
+In 1901 Pres William McKinley assassinated by Leon Czologosz in____ , New York
+Buffalo
+10
+
+In 1901 Queen____ , Britain's Queen, dies at 82
+Victoria
+10
+
+In 1901 Salvatore____ , Italian poet, critic, translator (Nobel 1959), born in
+Quasimodo
+10
+
+In 1902 ____ Bourguiba, 1st president of Tunisia, born in
+Habib
+10
+
+In 1902 ____ Hamilton, actor (Wizard of Oz), played Wicked Witch of the West, born in
+Margaret
+10
+
+In 1902 ____ Kroc Illinois, founder of MacDonalds/baseball team owner (San Diego Padres), born in
+Ray
+10
+
+In 1902 ____ Nash, American humorous poet (I'm a Stranger Here Myself), born in
+Ogden
+10
+
+In 1902 ____ of England crowned after death of his mother Victoria
+Edward vii
+10
+
+In 1902 ____ Wankel, Germany, inventor (Wankel rotary-piston engine), born in
+Felix
+10
+
+In 1902 Ansel____ , knows how to handle a camera, born in
+Adams
+10
+
+In 1902 Charles A.____ , 'Lucky Lindy', born in
+Lindburgh
+10
+
+In 1902 David O ____ Pittsburgh Pa, producer (Gone With the Wind), born in
+Selznick
+10
+
+In 1902 Dr Howard T ____ Boston, a designer of Univac computer, born in
+Engstrom
+10
+
+In 1902 Edward VII of England crowned after death of his mother____
+Victoria
+10
+
+In 1902 Felix Wankel, Germany, inventor (____ rotary-piston engine), born in
+Wankel
+10
+
+In 1902 Felix____ , Germany, inventor (Wankel rotary-piston engine), born in
+Wankel
+10
+
+In 1902 Habib Bourguiba, 1st president of____ , born in
+Tunisia
+10
+
+In 1902 Habib____ , 1st president of Tunisia, born in
+Bourguiba
+10
+
+In 1902 Jean Rey, of____ , president of European Commission (1967-70)
+Belgium
+10
+
+In 1902 Jean____ , of Belgium, president of European Commission (1967-70)
+Rey
+10
+
+In 1902 John____ , writer, born in
+Steinbeck
+10
+
+In 1902 Margaret Hamilton, actor (____ ), played Wicked Witch of the West, born in
+Wizard of oz
+10
+
+In 1902 Margaret____ , actor (Wizard of Oz ____ Wicked Witch of the West) born
+Hamilton
+10
+
+In 1902 Margaret____ , actor (Wizard of Oz), played Wicked Witch of the West, born in
+Hamilton
+10
+
+In 1902 Marie and ____ Curie isolated the radioactive element radium
+Pierre
+10
+
+In 1902 Ogden____ , American humorous poet (I'm a Stranger Here Myself), born in
+Nash
+10
+
+In 1902 Ray ____ Illinois, founder of MacDonalds/baseball team owner (San Diego Padres), born in
+Kroc
+10
+
+In 1902____ , Mrs George Burns/comedian (Burns and Allen), born in
+Gracie allen
+10
+
+In 1902, which volcano erupted killing 30,000 people?
+Mount pelee
+10
+
+In 1903 ____ Marchiony granted patent for the ice cream cone
+Italo
+10
+
+In 1903 ____ Ringling North, circus director born
+John
+10
+
+In 1903 ____ Rothko, painter, born in
+Mark
+10
+
+In 1903 At 10:35AM, for 12 seconds, first sustained motorized aircraft flight (36 meters) by ____ Brothers at Kitty Hawk, NC
+Wright
+10
+
+In 1903 Benjamin____ , pediatrician/author (Common Sense Book of Baby Care), born in
+Spock
+10
+
+In 1903 Columbia grants ____ independence
+Panama
+10
+
+In 1903 Eliot Ness ____ (FBI agent-Chicago), born in
+Untouchable
+10
+
+In 1903 First ____ introduced in America. Made by Morris and Rose Michtom, Russian immigrants
+Teddy bear
+10
+
+In 1903 Giuseppe ____ elected Pope Pius X
+Sarto
+10
+
+In 1903 Hay-Bunau-Varilla Treaty, gives US exclusive canal rights through____
+Panama
+10
+
+In 1903 Italo ____ granted patent for the ice cream cone
+Marchiony
+10
+
+In 1903 John ____ North, circus director born
+Ringling
+10
+
+In 1903 John ____ one of America's Most Wanted, born in
+Dillinger
+10
+
+In 1903 John Ringling North, ____ director born
+Circus
+10
+
+In 1903 John Ringling____ , circus director born
+North
+10
+
+In 1903 King ____ & Queen Dragia of Serbia are assassinated
+Alexander i
+10
+
+In 1903 King Alexander I & Queen ____ of Serbia are assassinated
+Dragia
+10
+
+In 1903 King Alexander I & Queen Dragia of ____ are assassinated
+Serbia
+10
+
+In 1903 Lawrence____ , bandleader, bubble maker, born in
+Welk
+10
+
+In 1903 Mark____ , painter, born in
+Rothko
+10
+
+In 1903 N.Y. ____ (Yankees) tickets first go on sale
+Highlander
+10
+
+In 1903 Olav V, King of ____ (1957), born in
+Norway
+10
+
+In 1903 Randolph____ , actor, born in
+Scott
+10
+
+In 1903 Sir Arthur Conan Doyle published which book?
+The hound of the baskervilles
+10
+
+In 1903 Tallulah____ , Huntsville Ala, actress (Lifeboat, Die Die Darling), born in
+Bankhead
+10
+
+In 1903 Unsuccessful uprising of ____ against Turkey
+Macedonians
+10
+
+In 1903 Unsuccessful uprising of Macedonians against____
+Turkey
+10
+
+In 1903____ , King of Norway (1957), born in
+Olav v
+10
+
+In 1904 ____ (claimed this to be his Birthdate: True Date May 3 1903), crooner/actor (Going My Way), born in
+Bing crosby
+10
+
+In 1904 ____ actor (Arsenic & Old Lace, North by Northwest), born in
+Cary grant
+10
+
+In 1904 ____ Factor Jr CEO (Max Factor Cosmetics), born in
+Max
+10
+
+In 1904 ____ Greene, prolific English novelist (Brighton Rock) born
+Graham
+10
+
+In 1904 ____ Hart, playwright, born in
+Moss
+10
+
+In 1904 ____ Horowitz, pianist born
+Vladimir
+10
+
+In 1904 ____ Isherwood, novelist, playwright (I Am a Camera) born
+Christopher
+10
+
+In 1904 ____ J. Bunche, a founder and diplomat of UN (Nobel 1950), born in
+Ralph
+10
+
+In 1904 ____ Stanley, biochemist, first to crystallize a virus (Nobel '46), born in
+Wendell
+10
+
+In 1904 ____ Xiao Peng, Chinese leader, born in
+Deng
+10
+
+In 1904 Alexei____ , Soviet Premier, born in
+Kosygin
+10
+
+In 1904 Deng ____ Peng, Chinese leader, born in
+Xiao
+10
+
+In 1904 Deng Xiao____ , Chinese leader, born in
+Peng
+10
+
+In 1904 Fats ____ jazz pianist, composer (Ain't Misbehavin'), born in
+Waller
+10
+
+In 1904 Federation Internationale de Football Association (____ ), Football's World governing body forms
+Fifa
+10
+
+In 1904 Graham____ , prolific English novelist (Brighton Rock) born
+Greene
+10
+
+In 1904 J. Robert ____ , Manhattan Project physicist, born in
+Oppenheimer
+10
+
+In 1904 Jimmy____ , bandleader, born in
+Dorsey
+10
+
+In 1904 Joan____ , actor, dearest mommy (No wire hangers, ever!), born in
+Crawford
+10
+
+In 1904 John____ , actor (Tarzan)/100m swimmer (Olympic-gold-1924, 28), born in
+Weissmuller
+10
+
+In 1904 Max ____ Jr CEO (Max Factor Cosmetics), born in
+Factor
+10
+
+In 1904 Moss____ , playwright, born in
+Hart
+10
+
+In 1904 Peter____ , actor (M, Casablanca, Beast with 5 Fingers, voice over for Twilight Zone), born in
+Lorre
+10
+
+In 1904 Ralph J.____ , a founder and diplomat of UN (Nobel 1950), born in
+Bunche
+10
+
+In 1904 Russian cruisers ____ and Korietz sunk off Korean coast by Japanese
+Variag
+10
+
+In 1904 Russian cruisers Variag and ____ sunk off Korean coast by Japanese
+Korietz
+10
+
+In 1904 Sir John ____ , actor, singer, born in
+Gielgud
+10
+
+In 1904 The Ice Cream ____ is invented
+Cone
+10
+
+In 1904 Theodore ____ (Dr. Seuss), author, born in
+Giesl
+10
+
+In 1904 Vladimir____ , pianist born
+Horowitz
+10
+
+In 1904 Wendell Stanley, biochemist, first to ____ a virus (Nobel '46), born in
+Crystallize
+10
+
+In 1904 Wendell Stanley, biochemist, first to crystallize a ____ (Nobel '46), born in
+Virus
+10
+
+In 1904 Wendell____ , biochemist, first to crystallize a virus (Nobel '46), born in
+Stanley
+10
+
+In 1905 ____ Bloch, U.S. physicist (Nobel 1952), born in
+Felix
+10
+
+In 1905 ____ Club is founded by four men in Chicago
+Rotary
+10
+
+In 1905 ____ Garbo (in Stockholm, Sweden), actor (Ninotchka, Grand Hotel), born in
+Greta
+10
+
+In 1905 ____ Jansky, discoverer of cosmic radio emissions in 1932, born in
+Karl
+10
+
+In 1905 Christian Dior, ____ France, fashion designer (long-skirted look), born in
+Normandy
+10
+
+In 1905 Felix____ , U.S. physicist (Nobel 1952), born in
+Bloch
+10
+
+In 1905 Greta ____ (in Stockholm, Sweden), actor (Ninotchka, Grand Hotel), born in
+Garbo
+10
+
+In 1905 Henry ____ (in Grand Island, Nebraska), actor, born in
+Fonda
+10
+
+In 1905 Howard____ , reclusive billionaire/inventor, born in
+Hughes
+10
+
+In 1905 Jean-Paul____ , France, philosopher/writer (Nobel 1964; declined), born in
+Sartre
+10
+
+In 1905 Jean-Rene ____ France, tennis champ/alligator shirt designer, born in
+Lacoste
+10
+
+In 1905 Jules ____ dies in Amiens at 76 years old
+Verne
+10
+
+In 1905 Jules Verne dies in ____ at 76 years old
+Amiens
+10
+
+In 1905 Jules Verne dies in Amiens at ____ years old
+76
+10
+
+In 1905 Karl____ , discoverer of cosmic radio emissions in 1932, born in
+Jansky
+10
+
+In 1905 The ____ diamond, the world's largest, is found
+Cullinan
+10
+
+In 1906 ____ Freleng animator (Bugs Bunny-Emmy 1982), born in
+Friz
+10
+
+In 1906 ____ Huston, film director, writer, actor, born in
+John
+10
+
+In 1906 ____ Josef II, prince of Liechtenstein (1938- ), born in
+Franz
+10
+
+In 1906 ____ Nessler demonstrates the first 'permanent wave' for hair, in London
+Karl
+10
+
+In 1906 ____ Shostakovich, Russian composer, born in
+Dmitri
+10
+
+In 1906 1st ____ advertised (Telimco for $7.50 in Scientific American) claimed to receive signals up to ONE MILE
+Radio set
+10
+
+In 1906 Albert Hofmann, Swiss____ , discoverer of LSD, born in
+Chemist
+10
+
+In 1906 American suffragist Susan B. ____ died
+Anthony
+10
+
+In 1906 Architect Stanford ____ shot dead atop Madison Square Garden, which he designed, by Harry Thaw, the jealous husband of Evelyn Nesbit. During Thaw's trial, he tried to plead 'brainstorming' (temporary insanity)
+White
+10
+
+In 1906 Aristotle Onassis, ____ , rich shipping magnate, born in
+Greece
+10
+
+In 1906 Australian ____ dies in London Zoo at 26; oldest known marsupial
+Wombat
+10
+
+In 1906 Chester F.____ , invented xerography, born in
+Carlson
+10
+
+In 1906 Dmitri____ , Russian composer, born in
+Shostakovich
+10
+
+In 1906 First airplane flight in____
+Europe
+10
+
+In 1906 First animated ____ is copyrighted
+Cartoon
+10
+
+In 1906 Franz Josef II, prince of ____ (1938- ), born in
+Liechtenstein
+10
+
+In 1906 Franz____ , prince of Liechtenstein (1938- ), born in
+Josef ii
+10
+
+In 1906 Friz ____ animator (Bugs Bunny-Emmy 1982), born in
+Freleng
+10
+
+In 1906 Friz Freleng animator (____ -Emmy 1982), born in
+Bugs bunny
+10
+
+In 1906 James A ____ circus showman (Barnum & Bailey), dies at 58
+Bailey
+10
+
+In 1906 John____ , film director, writer, actor, born in
+Huston
+10
+
+In 1906 Karl ____ demonstrates the first 'permanent wave' for hair, in London
+Nessler
+10
+
+In 1906 Karl Nessler demonstrates the first 'permanent wave' for hair, in____
+London
+10
+
+In 1906 Peter Carl____ , developed color TV & LP records, born in
+Goldmark
+10
+
+In 1906 Pres. Theodore ____ (first American) awarded Nobel Peace Prize
+Roosevelt
+10
+
+In 1906 Samuel ____ , playwright, born in
+Beckett
+10
+
+In 1907 ____ Autry, singer/actor/Calif Angels owner, born in
+Gene
+10
+
+In 1907 ____ escapes chains underwater at Aquatic Park in 57 seconds
+Houdini
+10
+
+In 1907 ____ Wray Alberta Canada, actress-King Kong's main squeeze, born in
+Fay
+10
+
+In 1907 (USA) For the 1st time a ball drops at ____ Square to signal the new year
+Times
+10
+
+In 1907 Barbara____ , actor born
+Stanwyck
+10
+
+In 1907 Cesar____ , actor who played the Joker in the TV version of Batman, born in
+Romero
+10
+
+In 1907 Daphne du ____ novelist (Rebecca, The Parasites), born in
+Maurier
+10
+
+In 1907 Earl S ____ invented Tupperware, born in
+Tupper
+10
+
+In 1907 Earl S Tupper invented____ , born in
+Tupperware
+10
+
+In 1907 Fay ____ Alberta Canada, actress-King Kong's main squeeze, born in
+Wray
+10
+
+In 1907 Florenz ____ staged first `Follies' on the roof of the NY Theater
+Ziegfeld
+10
+
+In 1907 Gene____ , singer/actor/Calif Angels owner, born in
+Autry
+10
+
+In 1907 James____ , writer, born in
+Michener
+10
+
+In 1907 Orville____ , popcorn king born
+Redenbacher
+10
+
+In 1907 Robert A____ , sci-fi author (Stranger in a Strange Land), born in
+Heinlein
+10
+
+In 1907 what did the British government say it would never give up?
+India
+10
+
+In 1908 ____ annexes Bosnia and Herzegovina
+Austria
+10
+
+In 1908 ____ annexes Congo Free State
+Belgium
+10
+
+In 1908 ____ Crapo Durant incorporates General Motors
+William
+10
+
+In 1908 ____ declares independence from Turkey, Ferdinand I becomes Tsar
+Bulgaria
+10
+
+In 1908 ____ established
+Fbi
+10
+
+In 1908 ____ Hoxha, post-war leader of Albania
+Enver
+10
+
+In 1908 ____ Kenneth Galbraith, economist, born in
+John
+10
+
+In 1908 ____ modern Olympic games opens in London
+4th
+10
+
+In 1908 ____ Selfridge becomes 1st fatality of powered flight
+Thomas
+10
+
+In 1908 ____ stage & screen actress (Anything Goes, Call Me Madam), born in
+Ethel merman
+10
+
+In 1908 ____ Tati, director (Traffic, Playtime, My Uncle), born in
+Jacques
+10
+
+In 1908 ____ unites with Greece
+Crete
+10
+
+In 1908 ____ Wright, American author (Native Son, Uncle Tom's Children)
+Richard
+10
+
+In 1908 1st ____ held (Phila)
+Mother's day
+10
+
+In 1908 1st ascent of Mt.____ , Antarctica
+Erebus
+10
+
+In 1908 Around the World Autombile Race ends in____
+Paris
+10
+
+In 1908 Austria annexes ____ and Herzegovina
+Bosnia
+10
+
+In 1908 Austria annexes Bosnia and____
+Herzegovina
+10
+
+In 1908 Belgium annexes ____ Free State
+Congo
+10
+
+In 1908 Bette Davis Lowell ____ , famous eyes (Of Human Bondage, Jezebel), born in
+Mass
+10
+
+In 1908 Buddy____ , actor (Beverly Hillbillies, Barnaby Jones), born in
+Ebsen
+10
+
+In 1908 Bulgaria declares independence from Turkey, ____ becomes Tsar
+Ferdinand i
+10
+
+In 1908 Bulgaria declares independence from____ , Ferdinand I becomes Tsar
+Turkey
+10
+
+In 1908 Crete unites with____
+Greece
+10
+
+In 1908 Edward Teller, ____ , Hungary, fathered H-bomb (Manhattan Project), born in
+Budapest
+10
+
+In 1908 Enver Hoxha, post-war leader of ____
+Albania
+10
+
+In 1908 Enver____ , post-war leader of Albania
+Hoxha
+10
+
+In 1908 Estee ____ CEO (Estee Lauder's cosmetics), born in
+Lauder
+10
+
+In 1908 First New York to ____ auto race (via Alaska and Siberia) begins. George Schuster wins after 88 days behind the wheel
+Paris
+10
+
+In 1908 Jacques____ , director (Traffic, Playtime, My Uncle), born in
+Tati
+10
+
+In 1908 Jimmy____ , actor (Mr Smith Goes to Wash, Wonderful Life), born in
+Stewart
+10
+
+In 1908 John ____ Galbraith, economist, born in
+Kenneth
+10
+
+In 1908 John Kenneth____ , economist, born in
+Galbraith
+10
+
+In 1908 Lyndon B. Johnson, ____ President (1963-1969)
+36th
+10
+
+In 1908 Rex ____ England, actor (My Fair Lady, Cleopatra), born in
+Harrison
+10
+
+In 1908 Richard____ , American author (Native Son, Uncle Tom's Children)
+Wright
+10
+
+In 1908 Thomas ____ becomes 1st fatality of powered flight
+Selfridge
+10
+
+In 1908 William ____ Durant incorporates General Motors
+Crapo
+10
+
+In 1908 William Crapo ____ incorporates General Motors
+Durant
+10
+
+In 1908 William Crapo Durant incorporates____
+General motors
+10
+
+In 1908____ , writer, born in
+Simone de beauvoir
+10
+
+In 1909 ____ de Lambert of France sets airplane altitude record of 300 m
+Comte
+10
+
+In 1909 ____ King of Morocco (1953, 1955-61), born in
+Mohammed v
+10
+
+In 1909 Burl ____ Hunt Ill, folk singer/actor (Cat on a Hot Tin Roof), born in
+Ives
+10
+
+In 1909 Col. Tom ____ Elvis Presley's manager, born in
+Parker
+10
+
+In 1909 Comte ____ of France sets airplane altitude record of 300 m
+De lambert
+10
+
+In 1909 Comte de Lambert of ____ sets airplane altitude record of 300 m
+France
+10
+
+In 1909 Comte de Lambert of France sets airplane altitude record of ____ m
+300
+10
+
+In 1909 Douglas____ , Jr, actor (Ghost Story) born
+Fairbanks
+10
+
+In 1909 Errol ____ actor (Captain Blood, Robin Hood, Against All Flags), born in
+Flynn
+10
+
+In 1909 First broadcast by a 'ham' operator ____ Einar ____ of Denmark
+Dessau
+10
+
+In 1909 First radio-assisted ____ at sea
+Rescue
+10
+
+In 1909 Geronimo, ____ Indian Chief, died
+Apache
+10
+
+In 1909 Jessica ____ (in London, England), actor (Driving Miss Daisy, Cocoon), born in
+Tandy
+10
+
+In 1909 Mohammed V King of ____ (1953, 1955-61), born in
+Morocco
+10
+
+In 1909 Prince ____ of Japan is assassinated by a Korean
+Ito
+10
+
+In 1909 Sultan of Turkey Abdul ____ II is overthrown
+Hamid
+10
+
+In 1909 U.____ , Burma, 3rd UN sec-genl (1962-72), born in
+Thant
+10
+
+In 1909 U.S. invades____ , later overthrows President Zelaya
+Nicaragua
+10
+
+In 1909 US Army accepts delivery of 1st military____
+Airplane
+10
+
+In 1909 Victor Borge, pianist, ____ , born in
+Comedian
+10
+
+In 1909 what did David lloyd George call Balfours Poodle?
+The house of lords
+10
+
+In 1909, who was the first man to reach the North Pole?
+Commander robert peary
+10
+
+In 1910 ____ overthrows monarchy, proclaims republic
+Portugal
+10
+
+In 1910 (USA) Plane broke height ____ record at 11474 feet
+Altitude
+10
+
+In 1910 Akira____ , movie director, born in
+Kurosawa
+10
+
+In 1910 Baroness de ____ of Paris becomes first licensed female pilot
+Laroche
+10
+
+In 1910 Comet ____ 's closest approach to Earth
+Halley
+10
+
+In 1910 David____ , actor, born in
+Niven
+10
+
+In 1910 First ____ flight from the deck of a ship
+Airplane
+10
+
+In 1910 Fritz____ , writer, born in
+Leiber
+10
+
+In 1910 Halley's Comet passes ____ recorded perihelion at 87.9 million km
+29th
+10
+
+In 1910 Jacques Yves ____ (in France), marine explorer, born in
+Cousteau
+10
+
+In 1910 Mark Twain [Samuel Langhorne Clemens], author, dies in ____ Conn
+Redding
+10
+
+In 1910 Mother ____ of Calcutta (Nobel 1979)
+Teresa
+10
+
+In 1910 NY's Penn Station opens as world's largest ____ terminal
+Railway
+10
+
+In 1910 Passage of ____ through tail of Halley's Comet causes near-panic
+Earth
+10
+
+In 1910 Union of South ____ becomes a dominion
+Africa
+10
+
+In 1910 William ____ discoverer of stellar nature of Andromeda, dies
+Huggins
+10
+
+In 1910 William____ , animator (Hanna-Barbera), born in
+Hanna
+10
+
+In 1911 ____ A. Fowler, US astrophysicist (Nobel 1983), born in
+William
+10
+
+In 1911 ____ Ball (in New York, NY), comedian, actor, born in
+Lucille
+10
+
+In 1911 ____ Burchett, Australian Communist, journalist, writer, born in
+Wilfred
+10
+
+In 1911 ____ Golding, English novelist (Lord of the Flies) (Nobel 1983), born in
+William
+10
+
+In 1911 ____ sets world altitude record of 4,250 m (13,944 ft)
+Garros
+10
+
+In 1911 (UK) King George V crowned Emperor of India and founds New Dehli to replace ____ as the capital
+Calcutta
+10
+
+In 1911 (US) Gugliemo ____ sends the first wireless message across the Atlantic
+Marconi
+10
+
+In 1911 Amundsen of ____ reaches the south pole
+Norway
+10
+
+In 1911 Bob Dylan's 1st appearance at ____ , Greenwich Village
+Folk city
+10
+
+In 1911 China Revolutionaries under ____ overthrew Manchu dynasty
+Sun yat-sen
+10
+
+In 1911 China Revolutionaries under Sun Yat-sen overthrew ____ dynasty
+Manchu
+10
+
+In 1911 Garros sets world altitude record of ____ m (13,944 ft)
+4,250
+10
+
+In 1911 Italy attacks____ , takes Tipoli & Cyrenaica
+Turkey
+10
+
+In 1911 Jean____ , sex goddess of the 30s, born in
+Harlow
+10
+
+In 1911 King ____ of England crowned
+George v
+10
+
+In 1911 Lucille ____ (in New York, NY), comedian, actor, born in
+Ball
+10
+
+In 1911 Merle ____ (in Tasmania), born in
+Oberon
+10
+
+In 1911 Parliament Act reduces power of House of____
+Lords
+10
+
+In 1911 Paulette____ , born in
+Goddard
+10
+
+In 1911 Revolution in ____ overthrows President Diaz
+Mexico
+10
+
+In 1911 Ronald____ , 40th President (1981-1989), born in
+Reagan
+10
+
+In 1911 South Pole first reached, by Norwegian Roald____
+Amundsen
+10
+
+In 1911 Tennessee ____ (in Columbus, Miss.), playwright, born in
+Williams
+10
+
+In 1911 Terry ____ England, actor (It's a Mad, Mad, Mad, Mad World), born in
+Thomas
+10
+
+In 1911 Terry Thomas England, actor (____ ), born in
+It's a mad, mad, mad, mad world
+10
+
+In 1911 U.S. sent 20,000 troops to the ____ border
+Mexican
+10
+
+In 1911 Virginia ____ (a.k.a. Ginger Rogers), dancer, actor born
+Mcmath
+10
+
+In 1911 Wilfred____ , Australian Communist, journalist, writer, born in
+Burchett
+10
+
+In 1911 William A. Fowler, US ____ (Nobel 1983), born in
+Astrophysicist
+10
+
+In 1911 William A.____ , US astrophysicist (Nobel 1983), born in
+Fowler
+10
+
+In 1911 William____ , English novelist (Lord of the Flies) (Nobel 1983), born in
+Golding
+10
+
+In 1912 ____ (Libya) passes from Turkish to Italian control
+Tripoli
+10
+
+In 1912 ____ Jones animator (Bugs Bunny, Daffy Duck), born in
+Chuck
+10
+
+In 1912 ____ Kelly, dancer, actor, singer in the rain, born in
+Gene
+10
+
+In 1912 ____ modern Olympic games opens in Stockholm
+5th
+10
+
+In 1912 ____ proclaimed a French colony
+Comoros
+10
+
+In 1912 ____ US marines invade Nicaragua; US remains until 1925
+2,500
+10
+
+In 1912 (USA)____ , cartoonist (New Yorker, Addams Family), born in
+Charles addams
+10
+
+In 1912 2,500 US marines invade____ ; US remains until 1925
+Nicaragua
+10
+
+In 1912 Alan ____ mathematician pioneer in computer theory (Turing Machine), born in
+Turing
+10
+
+In 1912 Chinese republic proclaimed in?
+Tibet
+10
+
+In 1912 Chuck ____ animator (Bugs Bunny, Daffy Duck), born in
+Jones
+10
+
+In 1912 Chuck Jones animator (____ , Daffy Duck), born in
+Bugs bunny
+10
+
+In 1912 Chuck Jones animator (Bugs Bunny,____ ), born in
+Daffy duck
+10
+
+In 1912 Gene____ , dancer, actor, singer in the rain, born in
+Kelly
+10
+
+In 1912 Girl Guides (Girl Scouts) founded in____ , Ga
+Savanah
+10
+
+In 1912 Harriet ____ flies the English Channel, first woman to do so
+Quimby
+10
+
+In 1912 Jackson ____ abstract artist (Lavender Mist), born in
+Pollack
+10
+
+In 1912 James____ , former British Prime Minister, born in
+Callaghan
+10
+
+In 1912 Milton____ , economist, born in
+Friedman
+10
+
+In 1912 Perry ____ singer/TV (Perry Como Show, What did Delaware?), born in
+Como
+10
+
+In 1912 RMS ____ sets sail for its first and last voyage
+Titanic
+10
+
+In 1912 Royal Flying Corps established in____
+England
+10
+
+In 1912 Sir ____ Solti, conductor, born in
+Georg
+10
+
+In 1912 Sir Georg____ , conductor, born in
+Solti
+10
+
+In 1912 The RMS ____ strikes an iceberg at 11:40 p.m
+Titanic
+10
+
+In 1912 Tripoli (Libya) passes from ____ to Italian control
+Turkish
+10
+
+In 1912 Tripoli (Libya) passes from Turkish to ____ control
+Italian
+10
+
+In 1912 Werner von____ , rocket scientist, born in
+Braun
+10
+
+In 1912 Yuan ____ elected the first President of the Republic of China
+Shik-k'ai
+10
+
+In 1913 ____ and Atlantic mix as engineers blow Gamboa Dam, opening the Panama Canal
+Pacific
+10
+
+In 1913 ____ Begin, Israeli PM (1977-83) (Nobel 1978), born in
+Menachem
+10
+
+In 1913 ____ Bkln NY, UNICEF/comedian/actor (Danny Kaye Show), born in
+Danny kaye
+10
+
+In 1913 ____ Owens, athlete, spoiled Hitler's Olympic plans in 1936, born in
+Jesse
+10
+
+In 1913 ____ Quayle England, actor (Anne of 1000 Days, Lawrence of Arabia), born in
+Anthony
+10
+
+In 1913 1st ____ engine aircraft built & flown (Igor Sikorsky-Russia)
+Four
+10
+
+In 1913 2nd ____ War ends, Treaty of Bucharest, Bulgaria loses
+Balkan
+10
+
+In 1913 2nd Balkan War ends, Treaty of Bucharest, ____ loses
+Bulgaria
+10
+
+In 1913 2nd Balkan War ends, Treaty of____ , Bulgaria loses
+Bucharest
+10
+
+In 1913 Anthony ____ England, actor (Anne of 1000 Days, Lawrence of Arabia), born in
+Quayle
+10
+
+In 1913 Anthony Quayle England, actor (Anne of 1000 Days,____ ), born in
+Lawrence of arabia
+10
+
+In 1913 Burt ____ NYC, actor (From Here to Eternity, Elmer Gantry), born in
+Lancaster
+10
+
+In 1913 Continuous moving assembly line introduced by ____ (1 car every 2.5 minutes)
+Ford
+10
+
+In 1913 Frankie____ , singer, born in
+Laine
+10
+
+In 1913 Hedy____ , actress (Ecstacy, Samson and Delilah), born in
+Lamarr
+10
+
+In 1913 James____ , clergyman, born in
+Pike
+10
+
+In 1913 Jesse____ , athlete, spoiled Hitler's Olympic plans in 1936, born in
+Owens
+10
+
+In 1913 Jimmy____ , missing labor leader, born in
+Hoffa
+10
+
+In 1913 Ludwig III crowned king of____
+Bavaria
+10
+
+In 1913 Menachem____ , Israeli PM (1977-83) (Nobel 1978), born in
+Begin
+10
+
+In 1913 Menelik II, Emperor of____ , died
+Ethiopia
+10
+
+In 1913 Nazim____ , Turkey's PM assassinated
+Pasha
+10
+
+In 1913 Norman ____ , England, fashion photographer (Harper's Bazaar), born in
+Parkinson
+10
+
+In 1913 Oleg ____ Paris France, fashion designer for Jackie Kennedy, born in
+Cassini
+10
+
+In 1913 Pacific and ____ mix as engineers blow Gamboa Dam, opening the Panama Canal
+Atlantic
+10
+
+In 1913 Pacific and Atlantic mix as engineers blow ____ Dam, opening the Panama Canal
+Gamboa
+10
+
+In 1913 Pacific and Atlantic mix as engineers blow Gamboa Dam, opening the ____ Canal
+Panama
+10
+
+In 1913 The ____ Canal opens for use
+Panama
+10
+
+In 1913 Tyrone ____ actor (Mark of Zorro, Alexander's Ragtime Band), born in
+Power
+10
+
+In 1913 Vivien____ , actress (Gone With Wind), born in
+Leigh
+10
+
+In 1913 Willy ____ (SD), chancellor of West Germany (1969-74) (Nobel '71),born
+Brandt
+10
+
+In 1913 Woodrow ____ holds the first Presidential Press Conference
+Wilson
+10
+
+In 1913____ , 37th President (1968-1974), born in
+Richard m. nixon
+10
+
+In 1913____ , actor (Sea Hunt, Roots, Flying High), born in
+Lloyd bridges
+10
+
+In 1913, Mary Phelps Jacobs fashioned the brassiere. Under what name did she market this brassiere?
+Caresse Crosby
+10
+
+In 1914 ____ , Russia changes name to Petrograd
+St petersburg
+10
+
+In 1914 ____ declares war on Russia in WW I
+Germany
+10
+
+In 1914 ____ Gardner, Scientific American math and puzzles columnist, born in
+Martin
+10
+
+In 1914 ____ Heyerdahl Norway, anthropologist/explorer (Kon Tiki, Aku-Aku), born in
+Thor
+10
+
+In 1914 ____ invades Belgium and declares war on France in WW I
+Germany
+10
+
+In 1914 ____ Van Allen, discovered Van Allen radiation belts, born in
+James
+10
+
+In 1914 Archduke ____ & wife Sofia of Austria assassinated (starts WW I)
+Ferdinand
+10
+
+In 1914 Archduke Ferdinand & wife ____ of Austria assassinated (starts WW I)
+Sofia
+10
+
+In 1914 Battle of ____ begins between Germans and French during WW I
+Aisne
+10
+
+In 1914 Bolsheviks overthrew ____ govt in St Petersburg
+Russian
+10
+
+In 1914 Britain annexes____
+Cyprus
+10
+
+In 1914 British House of Commons passes____
+Irish home rule
+10
+
+In 1914 Cardinal ____ della Chiesa becomes Pope Benedict XV
+Giacome
+10
+
+In 1914 Cardinal Giacome ____ Chiesa becomes Pope Benedict XV
+Della
+10
+
+In 1914 Cardinal Giacome della ____ becomes Pope Benedict XV
+Chiesa
+10
+
+In 1914 Cardinal Giacome della Chiesa becomes Pope____
+Benedict xv
+10
+
+In 1914 Dorothy ____ (in New Orleans, LA), actor (Road to Bali), born in
+Lamour
+10
+
+In 1914 Dr. ____ Salk, who made polio a fear of the past born
+Jonas
+10
+
+In 1914 Dr. Jonas Salk, who made ____ a fear of the past born
+Polio
+10
+
+In 1914 Dr. Jonas____ , who made polio a fear of the past born
+Salk
+10
+
+In 1914 First airplane flight to ____ from San Francisco
+Los angeles
+10
+
+In 1914 German forces occupied____ , Belgium, during World War I
+Brussels
+10
+
+In 1914 Germans defeat Russians in Battle of____
+Tannenberg
+10
+
+In 1914 Germany declares war on ____ in WW I
+Russia
+10
+
+In 1914 Germany invades ____ and declares war on France in WW I
+Belgium
+10
+
+In 1914 Germany invades Belgium and declares war on ____ in WW I
+France
+10
+
+In 1914 Gypsy Rose ____ (in Seattle, WA), stripper, born in
+Lee
+10
+
+In 1914 Henry Ford introduces ____ for cars
+Assembly line
+10
+
+In 1914 James____ , discovered Van Allen radiation belts, born in
+Van allen
+10
+
+In 1914 Martin____ , Scientific American math and puzzles columnist, born in
+Gardner
+10
+
+In 1914 Patricia____ , actor (Peyton Place), born in
+Morrison
+10
+
+In 1914 Sir Alec____ , thespian (credits-too-numerous-to-mention), born in
+Guiness
+10
+
+In 1914 St Petersburg, Russia changes name to____
+Petrograd
+10
+
+In 1914 The ____ Canal opened to traffic
+Panama
+10
+
+In 1914 The U.S. State Department starts requiring ____ for passports
+Photographs
+10
+
+In 1914 Thor ____ Norway, anthropologist/explorer (Kon Tiki, Aku-Aku), born in
+Heyerdahl
+10
+
+In 1914 Thor Heyerdahl Norway, anthropologist/explorer (____ , Aku-Aku), born in
+Kon tiki
+10
+
+In 1914____ , burlesque entertainer born
+Gypsy rose lee
+10
+
+In 1915 ____ Andrews (in Minneapolis, MN), singer (Andrew Sisters) born
+Laverne
+10
+
+In 1915 ____ Bergman Sweden, actress (Casablanca, Cactus Flower), born in
+Ingrid
+10
+
+In 1915 ____ defeats Cumberland College 222-0 in gridiron (record)
+Georgia tech
+10
+
+In 1915 ____ Miller, playwright (Death of a Salesman, The Crucible), born in
+Arthur
+10
+
+In 1915 ____ women marched in NYC, demanding the right to vote
+25,000
+10
+
+In 1915 (Germany) Hugo Junkers completes the first all ____ airplane
+Metal
+10
+
+In 1915 1st ____ air raid over England
+Zeppelin
+10
+
+In 1915 Alexander Bell in New York calls ____ in San Francisco
+Thomas watson
+10
+
+In 1915 Anthony ____ , Mexico, actor (Zorba the Greek, Lawrence of Arabia), born in
+Quinn
+10
+
+In 1915 ANZAC troops land at ____ (Now observed in Australia, New Zealand, Nauru, Solomon Islands, Tonga, Western Samoa)
+Gallipoli
+10
+
+In 1915 Arthur Miller, playwright (____ , The Crucible), born in
+Death of a salesman
+10
+
+In 1915 Arthur Miller, playwright (Death of a Salesman,____ ), born in
+The crucible
+10
+
+In 1915 Arthur____ , playwright (Death of a Salesman, The Crucible), born in
+Miller
+10
+
+In 1915 Cornerstone laid for ____ Memorial in Washington, DC
+Lincoln
+10
+
+In 1915 David____ , International Power Broker, born in
+Rockefeller
+10
+
+In 1915 Electric ____ sign patented
+Neon
+10
+
+In 1915 Georgia Tech defeats ____ 222-0 in gridiron (record)
+Cumberland college
+10
+
+In 1915 Harry ____ (in Detroit, MI), actor (Dragnet, MASH), born in
+Morgan
+10
+
+In 1915 Ingrid ____ Sweden, actress (Casablanca, Cactus Flower), born in
+Bergman
+10
+
+In 1915 Italy declared war on ____ -Hungary in World War I
+Austria
+10
+
+In 1915 Les____ , Waukesha Wisconsin, U.S.A., guitarist/inventor (Les Paul guitar), born in
+Paul
+10
+
+In 1915 Lorne____ , actor (Bonanza, Battlestar Galactica), born in
+Greene
+10
+
+In 1915 Moshe ____ Israeli general/politician, born in
+Dayan
+10
+
+In 1915 Muddy ____ [McKinley Morganfield], guitarist (Hoochie Coochie Man), born in
+Waters
+10
+
+In 1915 Randolph ____ newspaper publisher, born in
+Hearst
+10
+
+In 1915 Stones at Stonehenge, England, sold at auction for ?____
+6,600
+10
+
+In 1915 Zero____ , actor (Fiddler on the Roof), born in
+Mostel
+10
+
+In 1915____ , actor (Citizen Kane), director, genius, born in
+Orson welles
+10
+
+In 1915, the average annual family income in the United States was $____ a year
+687
+10
+
+In 1916 ____ 's Theory of General Relativity presented
+Einstein
+10
+
+In 1916 ____ declares war against Germany during WW I
+Italy
+10
+
+In 1916 ____ Lockwood actress (Lady Vanishes), born in
+Margaret
+10
+
+In 1916 ____ Sanger opens the first public birth control clinic (Brooklyn, NY)
+Margaret
+10
+
+In 1916 1st ____ raid (on Paris)
+Zeppelin
+10
+
+In 1916 Allies turned back Germans in WW I's Battle of____
+Verdun
+10
+
+In 1916 Betty ____ (in St. Louis, MO), actor ,born
+Grable
+10
+
+In 1916 Edward ____ (C), British prime minister (1970-74), born in
+Heath
+10
+
+In 1916 First professional ____ tournament held
+Golf
+10
+
+In 1916 Gough ____ (ALP) Australia, PM (1972-75), born in
+Whitlam
+10
+
+In 1916 Great ____ Revolt begin
+Arab
+10
+
+In 1916 Gregory ____ La Jolla Calif, actor (To Kill a Mockingbird, MacArthur), born in
+Peck
+10
+
+In 1916 Harold____ , former British Prime Minister, born in
+Wilson
+10
+
+In 1916 Howard____ , poet, born in
+Nemerov
+10
+
+In 1916 Jackie____ , Comedian, born in
+Gleason
+10
+
+In 1916 Margaret ____ actress (Lady Vanishes), born in
+Lockwood
+10
+
+In 1916 Margaret ____ opens the first public birth control clinic (Brooklyn, NY)
+Sanger
+10
+
+In 1916 Margaret Sanger opens the first public ____ control clinic (Brooklyn, NY)
+Birth
+10
+
+In 1916 Paul Von ____ becomes chief-of-General-Staff in Germany
+Hindenburg
+10
+
+In 1916 US and ____ sign the Migratory bird treaty
+Canada
+10
+
+In 1916 WW I Battle of ____ begins
+Verdun
+10
+
+In 1916 Yehudi ____ , violinist, born in
+Menuhin
+10
+
+In 1917 ____ declares war on Germany and Austria at start of WW I
+China
+10
+
+In 1917 ____ executed by firing squad outside of Paris
+Mata hari
+10
+
+In 1917 ____ Gillespie, trumpeter, a creator of modern jazz, born in
+Dizzy
+10
+
+In 1917 ____ Marcos Philippines Pres (1965-86), born in
+Ferdinand
+10
+
+In 1917 ____ Mitchum, actor, born in
+Robert
+10
+
+In 1917 ____ revolution begins
+Bolshevik
+10
+
+In 1917 ____ Schlesinger, Jr., historian, born in
+Arthur
+10
+
+In 1917 ____ the Cat, cartoon character, born in
+Felix
+10
+
+In 1917 10 suffragists arrested as they picket the____
+White house
+10
+
+In 1917 41 suffragists are arrested in front of the ____ House
+White
+10
+
+In 1917 Arthur C.____ , science-fiction author (2001, Childhood's End), born in
+Clarke
+10
+
+In 1917 Arthur____ , Jr., historian, born in
+Schlesinger
+10
+
+In 1917 Britain grants Royal Letters ____ to New Zealand
+Patent
+10
+
+In 1917 British Royal family changes its name from ____ to Windsor
+Hanover
+10
+
+In 1917 China declares war on ____ and Austria at start of WW I
+Germany
+10
+
+In 1917 China declares war on Germany and ____ at start of WW I
+Austria
+10
+
+In 1917 Dean____ , singer, actor born
+Martin
+10
+
+In 1917 Desi____ , famous Cuban, bandleader, born in
+Arnaz
+10
+
+In 1917 Dizzy____ , trumpeter, a creator of modern jazz, born in
+Gillespie
+10
+
+In 1917 Ferdinand ____ Philippines Pres (1965-86), born in
+Marcos
+10
+
+In 1917 First ____ record in United States is cut
+Jazz
+10
+
+In 1917 Lenin returns to Russia to start ____ Revolution
+Bolshevik
+10
+
+In 1917 Mata Hari executed by firing squad outside of____
+Paris
+10
+
+In 1917 October Revolution overthrows ____ Provisional Government
+Russian
+10
+
+In 1917 Phyllis____ , comedian, born in
+Diller
+10
+
+In 1917 Pres. ____ asked Congress to declare war against Germany
+Wilson
+10
+
+In 1917 Provisional government of ____ established, Republic proclaimed
+Russia
+10
+
+In 1917 Robert____ , actor, born in
+Mitchum
+10
+
+In 1917 Royal Bank of Canada took over the ____ Bank
+Quebec
+10
+
+In 1917 Russia proclaimed a republic by ____ Kerensky
+Alexander
+10
+
+In 1917 Russia proclaimed a republic by Alexander____
+Kerensky
+10
+
+In 1917 Sculptor August ____ died in Meudon, France
+Rodin
+10
+
+In 1917 US declares war on ____ (WWI)
+Germany
+10
+
+In 1917 USA declares ____ on the Prussian-Hungarian forces, joining World War One on the side of the Allies
+War
+10
+
+In 1918 ____ -Argonne offensive against the Germans began during WWI
+Meuse
+10
+
+In 1918 ____ and Russia severed diplomatic ties
+Us
+10
+
+In 1918 ____ Bernstein conductor/composer/pianist/egotist, born in
+Leonard
+10
+
+In 1918 ____ declares independence from Austria
+Czechoslovakia
+10
+
+In 1918 ____ established in Britain
+Royal air force
+10
+
+In 1918 ____ Greene Plymouth England, actor (Adv of Robin Hood), born in
+Richard
+10
+
+In 1918 ____ Owen sets world typing speed record of 170 wpm for 1 min
+Margaret
+10
+
+In 1918 ____ President Sidonio Paes is assassinated
+Portugese
+10
+
+In 1918 and 1919, a world epidemic of simple influenza killed 20 million people in the United States and ____
+Europe
+10
+
+In 1918 Anwar El____ , president of Egypt, born in
+Sadat
+10
+
+In 1918 Austria becomes a____
+Republic
+10
+
+In 1918 Austro-Hungarian ____ disolves
+Empire
+10
+
+In 1918 Battle of ____ , ends
+Somme
+10
+
+In 1918 Bavaria proclaims itself a____
+Republic
+10
+
+In 1918 Britain opened its offensive on the ____ front during WW I
+Western
+10
+
+In 1918 Congress approved?
+Daylight saving time
+10
+
+In 1918 Czechoslovakia declares independence from____
+Austria
+10
+
+In 1918 During World War I ____ launched the Somme Offensive,
+Germany
+10
+
+In 1918 Ella ____ , singer, born in
+Fitzgerald
+10
+
+In 1918 Gamal Abdel Nasser, President of ____ (1954-1971?), born in
+Egypt
+10
+
+In 1918 Goddard demonstrates tube-launched solid propellant____
+Rockets
+10
+
+In 1918 Iceland becomes independent state under the ____ crown
+Danish
+10
+
+In 1918 Independence of ____ proclaimed by Jozef Pilsudski
+Poland
+10
+
+In 1918 Ingmar____ , Uppsala Sweden, director (Cries and Whispers), born in
+Bergman
+10
+
+In 1918 Jay Wright ____ invented random-access magnetic core memory
+Forrester
+10
+
+In 1918 Kaiser ____ II abdicates after German defeat in WW I
+Wilhelm
+10
+
+In 1918 Kakuei ____ Japanese PM convicted of bribe-taking, born in
+Tanaka
+10
+
+In 1918 Kirk____ , actor (Gunfight at the OK Corral, 7 Days in May),born
+Douglas
+10
+
+In 1918 Latvia declares independence from____
+Russia
+10
+
+In 1918 Leonard ____ conductor/composer/pianist/egotist, born in
+Bernstein
+10
+
+In 1918 Margaret ____ sets world typing speed record of 170 wpm for 1 min
+Owen
+10
+
+In 1918 Margaret ____ tennis champion, born in
+Dupont
+10
+
+In 1918 Meuse____ offensive against the Germans began during WWI
+Argonne
+10
+
+In 1918 Mickey____ , mystery writer, born in
+Spillane
+10
+
+In 1918 Nelson____ , South African civil rights leader & politician, born in
+Mandela
+10
+
+In 1918 Poland proclaims independence from ____ after WW I
+Russia
+10
+
+In 1918 Richard ____ Plymouth England, actor (Adv of Robin Hood), born in
+Greene
+10
+
+In 1918 Sgt. ____ York single-handedly kills 25, captures 132 Germans
+Alvin
+10
+
+In 1918 Sgt. Alvin ____ single-handedly kills 25, captures 132 Germans
+York
+10
+
+In 1918 Sgt. Alvin York single-handedly kills____ , captures 132 Germans
+25
+10
+
+In 1918 Sir ____ Ryle, British radio astronomer, astronomer royal 1972-82, born in
+Martin
+10
+
+In 1918 Sir Martin____ , British radio astronomer, astronomer royal 1972-82, born in
+Ryle
+10
+
+In 1918 St. ____ 's Day
+Vladimir
+10
+
+In 1918 Taufa'ahau ____ IV, king of Tonga (1965-?), born in
+Tupou
+10
+
+In 1918 Taufa'ahau Tupou IV, king of ____ (1965-?), born in
+Tonga
+10
+
+In 1918 Ukraine proclaimed a free ____ (German puppet)
+Republic
+10
+
+In 1918 US Airmail begins between Wash DC, ____ and New York
+Philadelphia
+10
+
+In 1918 US and ____ severed diplomatic ties
+Russia
+10
+
+In 1918 USSR ____ conversion
+Calendar
+10
+
+In 1918, what illness caused 20 million deaths?
+Influenza
+10
+
+In 1919 ____ Act passed by U.S. Congress, starting Prohibition
+Volstead
+10
+
+In 1919 ____ Bauersfeld, invented first modern projection planetarium
+Walther
+10
+
+In 1919 ____ Blakey, jazz drummer (Jazz Messengers), born in
+Art
+10
+
+In 1919 ____ Hayworth (in New York), actor, alzheimer victim, born in
+Rita
+10
+
+In 1919 ____ LA Calif, actor (Eliot Ness-Untouchables, Airplane), born in
+Robert stack
+10
+
+In 1919 ____ Reza Pahlavi Aryamehr, Shah of Iran (1941-79), born in
+Mohammad
+10
+
+In 1919 (USA) Theodore Roosevelt dies at his home in____ , NY, at 60
+Oyster bay
+10
+
+In 1919 2 million gallons of ____ flood Boston, USA, drowning 21
+Molasses
+10
+
+In 1919 Art____ , jazz drummer (Jazz Messengers), born in
+Blakey
+10
+
+In 1919 Benito Mussolini founded his ____ movement in Milan, Italy
+Fascist
+10
+
+In 1919 Communist Labor Party of America formed in____
+Chicago
+10
+
+In 1919 Dame Margot ____ England, ballerina (partner of Nureyev), born in
+Fonteyn
+10
+
+In 1919 First flight Junkers ____ advanced monoplane airliner
+F13
+10
+
+In 1919 Germans ____ their own fleet
+Scuttle
+10
+
+In 1919 John Presper ____ , co-inventor of first electronic computer (ENIAC), born in
+Eckert
+10
+
+In 1919 Lady Astor sworn-in as 1st female member of ____ Parliament
+British
+10
+
+In 1919 Mohammad ____ Pahlavi Aryamehr, Shah of Iran (1941-79), born in
+Reza
+10
+
+In 1919 Mohammad Reza ____ Aryamehr, Shah of Iran (1941-79), born in
+Pahlavi
+10
+
+In 1919 Mohammad Reza Pahlavi____ , Shah of Iran (1941-79), born in
+Aryamehr
+10
+
+In 1919 Moise Tshombe, president of____ , then premier of the Congo (Zaire), born in
+Katanga
+10
+
+In 1919 Nat King Cole, entertainer, father of____ , born in
+Natalie
+10
+
+In 1919 National Socialist (____ ) Party formed in Germany
+Nazi
+10
+
+In 1919 NYC welcomes home Gen ____ J Pershing and 25,000 WW I soldiers
+John
+10
+
+In 1919 NYC welcomes home Gen John J ____ and 25,000 WW I soldiers
+Pershing
+10
+
+In 1919 NYC welcomes home Gen John J Pershing and ____ WW I soldiers
+25,000
+10
+
+In 1919 NYC welcomes home Gen John J Pershing and 25,000 ____ soldiers
+Ww i
+10
+
+In 1919 Pianist & statesman ____ becomes 1st premier of Poland
+Ignace paderewski
+10
+
+In 1919 Polish Army captures ____ , Lithuania from Soviet Army
+Vilno
+10
+
+In 1919 Red____ , comedian, actor, born in
+Buttons
+10
+
+In 1919 Rita ____ (in New York), actor, alzheimer victim, born in
+Hayworth
+10
+
+In 1919 Rita Hayworth (in New York), actor, ____ victim, born in
+Alzheimer
+10
+
+In 1919 Sir Edmund ____ one of 1st 2 men to scale Mt Everest, born in
+Hillary
+10
+
+In 1919 Treaty of ____ and League of Nations rejected by U.S. Senate
+Versailles
+10
+
+In 1919 U.S. Congress established ____ in Arizona
+Grand canyon national park
+10
+
+In 1919 Uta____ , born in
+Hagen
+10
+
+In 1919 Volstead Act passed by U.S. Congress, starting____
+Prohibition
+10
+
+In 1919 Walther____ , invented first modern projection planetarium
+Bauersfeld
+10
+
+In 1919 Wladziu Valentino____ , pianist, born in
+Liberace
+10
+
+In 1919 WW I Peace Congress opens in____ , France
+Versailles
+10
+
+In 1919 Zsa Zsa ____ (in Budapest), actress, ex-con, born in
+Gabor
+10
+
+In 1920 ____ actor (Dr McCoy-Star Trek), born in
+Deforest kelly
+10
+
+In 1920 ____ amendment passes ____ women's suffrage granted (about time!)
+19th
+10
+
+In 1920 ____ Bradbury, science fiction author (Fahrenheit 451), born in
+Ray
+10
+
+In 1920 ____ Bukowsky (in Andernanch, Germany), poet, writer, born in
+Charles
+10
+
+In 1920 ____ Herbert, sci-fi writer (Dune), born in
+Frank
+10
+
+In 1920 ____ Italian director (Satyricon, La Dolce Vita), born in
+Federico fellini
+10
+
+In 1920 ____ Leary, psychologist, drug testing advocate, born in
+Timothy
+10
+
+In 1920 ____ Lockyer, editor of NATURE, discoverer of helium in sun, dies
+Norman
+10
+
+In 1920 ____ Matthau, actor (Odd Couple, Bad News Bears, Hopscotch) born
+Walter
+10
+
+In 1920 ____ of Nations established
+League
+10
+
+In 1920 ____ Rooney, actor (too many credits to mention), born in
+Mickey
+10
+
+In 1920 ____ SSR joins the USSR (1st time)
+Azerbaijan
+10
+
+In 1920 ____ Warden, actor (Verdict, Brian's Song), born in
+Jack
+10
+
+In 1920 (Geneva, Switzerland) China and ____ added to Leauge of Nations
+Austria
+10
+
+In 1920 (Ireland) ____ Law Declared
+Martial
+10
+
+In 1920 7th modern Olympic games opens in ____
+Antwerp
+10
+
+In 1920 Charles ____ (in Andernanch, Germany), poet, writer, born in
+Bukowsky
+10
+
+In 1920 DeForest ____ Atlanta Ga, actor (Dr Leonard McCoy-Star Trek), born in
+Kelley
+10
+
+In 1920 Dutch govt refuses to turn over ex-kaiser of ____ to the allies
+Germany
+10
+
+In 1920 Errol Walton____ , PM of Barbados (DLP) (1966-76, 1986-?), born in
+Barrow
+10
+
+In 1920 Frank Herbert, sci-fi writer (____ ), born in
+Dune
+10
+
+In 1920 Frank____ , sci-fi writer (Dune), born in
+Herbert
+10
+
+In 1920 Hank____ , cartoonist (Dennis the Menace), born in
+Ketcham
+10
+
+In 1920 Ireland divided into two parts, each with its own____
+Parliament
+10
+
+In 1920 Jack____ , actor (Believe It...Or Not), born in
+Palance
+10
+
+In 1920 Jack____ , actor (Dragnet, The D.I.), born in
+Webb
+10
+
+In 1920 Jack____ , actor (Verdict, Brian's Song), born in
+Warden
+10
+
+In 1920 Japan receives League of Nations mandate over ____ islands
+Pacific
+10
+
+In 1920 Javier Perez de Cuellar, ____ , Peru, 5th secretary-general of UN (1982-1996), born in
+Lima
+10
+
+In 1920 Joan of Arc was ____ in Rome
+Canonized
+10
+
+In 1920 Lana ____ (in Wallace, Idaho), actress, born in
+Turner
+10
+
+In 1920 Last day of ____ civil calendar (in parts of Bulgaria)
+Julian
+10
+
+In 1920 Last day of Julian civil calendar (in parts of____ )
+Bulgaria
+10
+
+In 1920 League of Nations holds first meeting, in____
+Geneva
+10
+
+In 1920 Mickey____ , actor (too many credits to mention), born in
+Rooney
+10
+
+In 1920 Norman Lockyer, editor of NATURE, discoverer of ____ in sun, dies
+Helium
+10
+
+In 1920 Norman____ , editor of NATURE, discoverer of helium in sun, dies
+Lockyer
+10
+
+In 1920 P.D. ____ mystery writer (Cover Her Face), born in
+James
+10
+
+In 1920 Ray____ , science fiction author (Fahrenheit 451), born in
+Bradbury
+10
+
+In 1920 The first ____ car is introduced
+Armored
+10
+
+In 1920 Timothy____ , psychologist, drug testing advocate, born in
+Leary
+10
+
+In 1920 Tony____ , actor (The Odd Couple), born in
+Randall
+10
+
+In 1920 US's first commercial radio, 8MK (later WWJ), ____ began daily broadcasting
+Detroit
+10
+
+In 1920 Walt Disney starts 1st job as an____ ; $40 week with KC Slide Co...
+Artist
+10
+
+In 1920 Walter Matthau, actor (____ , Bad News Bears, Hopscotch) born
+Odd couple
+10
+
+In 1920 Walter Matthau, actor (Odd Couple, Bad News Bears,____ ) born
+Hopscotch
+10
+
+In 1920 Walter____ , actor (Odd Couple, Bad News Bears, Hopscotch) born
+Matthau
+10
+
+In 1920 Yul ____ actor (King and I, 10 Commandments), born in
+Brynner
+10
+
+In 1920 Yul Brynner actor (____ , 10 Commandments), born in
+King and i
+10
+
+In 1920 Yul Brynner actor (King and I, 10 Commandments,____ ), born in
+Magnificient 7
+10
+
+In 1920____ , scientist-writer, born in
+Isaac asimov
+10
+
+In 1921 ____ Cabral, worked for independence of Portuguese Africa, born in
+Amilcar
+10
+
+In 1921 ____ gained independence from China (National Day)
+Mongolia
+10
+
+In 1921 ____ Kerr (in Helensburg, Scotland), actor (King and I, Night of the Iguana) born
+Deborah
+10
+
+In 1921 ____ Lem, Polish science-fiction writer, born in
+Stanislaw
+10
+
+In 1921 ____ Montand, France, actor/singer (Z, Napoleon), born in
+Yves
+10
+
+In 1921 ____ O'Hara, actress (Miracle on 34th St), born in
+Maureen
+10
+
+In 1921 ____ Poston, comedian, actor (Newhart), born in
+Tom
+10
+
+In 1921 ____ Puzo, author (Godfather), born in
+Mario
+10
+
+In 1921 ____ Runcie, archbishop of Canterbury born
+Robert
+10
+
+In 1921 ____ Susann, writer (Valley of the Dolls), born in
+Jacqueline
+10
+
+In 1921 1st Miss America crowned (____ of Washington DC)
+Margaret gorman
+10
+
+In 1921 Amilcar Cabral, worked for independence of____ , born in
+Portuguese africa
+10
+
+In 1921 Amilcar____ , worked for independence of Portuguese Africa, born in
+Cabral
+10
+
+In 1921 Barney____ , 1st to receive a permanent artificial heart, born in
+Clark
+10
+
+In 1921 Carol____ , actress (Gentlemen Prefer Blondes), born in
+Channing
+10
+
+In 1921 Cyd ____ (in Amarillo, Texas), actor, dancer, born in
+Charisse
+10
+
+In 1921 Deborah ____ (in Helensburg, Scotland), actor (King and I, Night of the Iguana) born
+Kerr
+10
+
+In 1921 Donna ____ (in Denison, Iowa), actor, born in
+Reed
+10
+
+In 1921 Eva ____ (Budapest, Hungary), actress (Green Acres), born in
+Gabor
+10
+
+In 1921 Jacqueline____ , writer (Valley of the Dolls), born in
+Susann
+10
+
+In 1921 Jane____ , actress full-figured gal (The Outlaw), born in
+Russell
+10
+
+In 1921 Mario Puzo, author (____ ), born in
+Godfather
+10
+
+In 1921 Mario____ , author (Godfather), born in
+Puzo
+10
+
+In 1921 Maureen____ , actress (Miracle on 34th St), born in
+O'hara
+10
+
+In 1921 Mongolia gained independence from ____ (National Day)
+China
+10
+
+In 1921 N.Y. Yankees purchase 20 acres in the ____ for Yankee Stadium
+Bronx
+10
+
+In 1921 Peter ____ , actor (Fiddler on the Roof, Death on the Nile), born in
+Ustinov
+10
+
+In 1921 Present constitution of ____ comes into effect
+Liechtenstein
+10
+
+In 1921 Prince Philip____ , Greece, current Duke of Edinburgh, born in
+Mountbatten
+10
+
+In 1921 Robert____ , archbishop of Canterbury born
+Runcie
+10
+
+In 1921 Stanislaw____ , Polish science-fiction writer, born in
+Lem
+10
+
+In 1921 Tom____ , comedian, actor (Newhart), born in
+Poston
+10
+
+In 1921 Turkestan ASSR established in ____ SFSR
+Russian
+10
+
+In 1921 Turkey declared in remnants of the ____ Empire
+Ottoman
+10
+
+In 1921 Turkey makes peace with?
+Armenia
+10
+
+In 1921 US, Japan, UK & France sign a treaty aimed at controlling naval build-up in the ____ Ocean
+Pacific
+10
+
+In 1921 Yves____ , France, actor/singer (Z, Napoleon), born in
+Montand
+10
+
+In 1922 ____ arrives in the White House
+Radio
+10
+
+In 1922 ____ De Carlo, Vancouver BC, actress (Lily Munster in the Munsters), born in
+Yvonne
+10
+
+In 1922 ____ Free State forms
+Irish
+10
+
+In 1922 ____ Mussolini takes control of Italy's government
+Benito
+10
+
+In 1922 ____ Penn, stage and film director, born in
+Arthur
+10
+
+In 1922 Arthur____ , stage and film director, born in
+Penn
+10
+
+In 1922 Assorted Russian republics form together to found the Union of ____ Socialist Republics
+Soviet
+10
+
+In 1922 atVancouver BC, actress Lily Munster in the Munsters, born in?
+Yvonne de carlo
+10
+
+In 1922 Ava____ , actress, born in
+Gardner
+10
+
+In 1922 Barbara ____ , actor (Perry Mason), born in
+Hale
+10
+
+In 1922 Barbara____ , (in Dekalb, IL), actor (Perry Mason), born in
+Hale
+10
+
+In 1922 BBC began ____ radio service
+Domestic
+10
+
+In 1922 Benito ____ takes control of Italy's government
+Mussolini
+10
+
+In 1922 Blake____ , writer/director (Breakfast at Tiffany's), born in
+Edwards
+10
+
+In 1922 British Broadcasting Corporation (____ ) established
+Bbc
+10
+
+In 1922 Charles ____ Penns, actor (Death Wish, Dirty Dozen), born in
+Bronson
+10
+
+In 1922 Dirk____ , actor, born in
+Bogarde
+10
+
+In 1922 Dr. Christiaan____ , performed first human heart transplantation
+Barnard
+10
+
+In 1922 Helen ____ in Portland Maine, publisher (Cosmopolitan), born in
+Gurly brown
+10
+
+In 1922 Henry ____ demonstrates his helicopter to US Bureau of Aeronautics
+Berliner
+10
+
+In 1922 Howard Carter discovers the tomb of____
+Tutankhamen
+10
+
+In 1922 Jack ____ Phila (Oscar-Odd Couple, Quincy, Goodbye Columbus), born in
+Klugman
+10
+
+In 1922 Judy ____ [Frances Gumm], Michigan, U.S.A., actress/singer (Wizard of Oz), born in
+Garland
+10
+
+In 1922 King Tut's Tomb is discovered in____
+Egypt
+10
+
+In 1922 Mohandas K. ____ sentenced in India to six years' imprisonment
+Gandhi
+10
+
+In 1922 Pierre____ , Paris, France, fashion designer (Unisex), born in
+Cardin
+10
+
+In 1922 Redd____ , actor (Sanford and Son), comedian, born in
+Foxx
+10
+
+In 1922 Rocky____ , pugilist, born in
+Graziano
+10
+
+In 1922 Sir Ernest Shackleton, ____ , died aboard his ship
+Antarctic explorer
+10
+
+In 1922 U.S. Supreme Court unanimously upheld the ____ Amendment (woman's right to vote)
+19th
+10
+
+In 1922 Yakut ASSR formed in ____ SFSR
+Russian
+10
+
+In 1922 Yvonne De Carlo, Vancouver BC, actress (____ in the Munsters), born in
+Lily munster
+10
+
+In 1922 Yvonne____ , Vancouver BC, actress (Lily Munster in the Munsters), born in
+De carlo
+10
+
+In 1923 ____ Co. founded
+Disney
+10
+
+In 1923 ____ formed
+Ussr
+10
+
+In 1923 ____ frees himself from a straitjacket while suspended upside down, 40 feet above the ground
+Harry houdini
+10
+
+In 1923 ____ Heston, actor (Ten Commandments, Ben Hur, Planet of the Apes) born
+Charlton
+10
+
+In 1923 ____ is proclaimed to have a republican government
+Turkey
+10
+
+In 1923 ____ magazine first published
+Time
+10
+
+In 1923 ____ Marciano, heavyweight champion boxer (1952-56), born in
+Rocky
+10
+
+In 1923 ____ seize & annex the country of Memel
+Lithuania
+10
+
+In 1923 ____ Williams, swimmer, actor, born in
+Esther
+10
+
+In 1923 1st flight of the ____ (Juan de la Cierva, Madrid Spain)
+Autogiro
+10
+
+In 1923 A general election results in a hung Parliament in the UK. James____ , of the UK Labor Party wins the follow-up election next year
+Macdonald
+10
+
+In 1923 Charlton Heston, actor (____ , Ben Hur, Planet of the Apes) born
+Ten commandments
+10
+
+In 1923 Charlton Heston, actor (Ten Commandments, ____ , Planet of the Apes) born
+Ben hur
+10
+
+In 1923 Charlton Heston, actor (Ten Commandments, Ben Hur,____ ) born
+Planet of the apes
+10
+
+In 1923 Charlton____ , actor (Ten Commandments, Ben Hur, Planet of the Apes) born
+Heston
+10
+
+In 1923 Ed____ , #1 second banana, famed announcer, sweepstakes harbinger, born in
+Mcmahon
+10
+
+In 1923 Esther____ , swimmer, actor, born in
+Williams
+10
+
+In 1923 First ____ news messages transmitted from U.S. to England
+Radio-telescope
+10
+
+In 1923 heavyweight champion boxer (1952-56), born in?
+Rocky marciano
+10
+
+In 1923 Howard ____ finds the Pharoah Tutankhamun
+Carter
+10
+
+In 1923 Marcel____ , mime, born in
+Marceau
+10
+
+In 1923 Nguyen ____ president of South Vietnam, born in
+Van thieu
+10
+
+In 1923 Rocky____ , heavyweight champion boxer (1952-56), born in
+Marciano
+10
+
+In 1923 Sir ____ Attenborough actor/director (Gandhi, Young Winston), born in
+Richard
+10
+
+In 1923 Sir Richard ____ actor/director (Gandhi, Young Winston), born in
+Attenborough
+10
+
+In 1923 Sir Richard Attenborough actor/director (____ , Young Winston), born in
+Gandhi
+10
+
+In 1923 Wally____ , astronaut, born in
+Schirra
+10
+
+In 1924 ____ Bacall (in Staten Island, NY), actor, whistler (Dark Passage, Key Largo, Always), born in
+Lauren
+10
+
+In 1924 ____ Capote, a short short story writer (In Cold Blood) born
+Truman
+10
+
+In 1924 ____ Clavell, author (Shogun, Tai Pan, King Rat, Noble House, Whirlwind), born in
+James
+10
+
+In 1924 ____ Kollontai of Russia becomes 1st woman ambassador
+Alexandra
+10
+
+In 1924 ____ Mastroianni actor (La Dolce Vita), born in
+Marcello
+10
+
+In 1924 Albania becomes a____
+Republic
+10
+
+In 1924 Alexandra ____ of Russia becomes 1st woman ambassador
+Kollontai
+10
+
+In 1924 Audie ____ Kingston Tx, WWII hero/actor (Destry, Joe Butterfly), born in
+Murphy
+10
+
+In 1924 Benny____ , Southampton England, comedian (Benny Hill Show), born in
+Hill
+10
+
+In 1924 Charles ____ Paris France, singer (Monsieur Carnavel), born in
+Aznavour
+10
+
+In 1924 Chet ____ Luttrell Tenn, guitarist (Me & My Guitar), born in
+Atkins
+10
+
+In 1924 Chuck ____ , actor (The Rifleman), born in
+Connors
+10
+
+In 1924 Don ____ Morgantown WV, actor (Amdy Griffth Show, 3's Company), born in
+Knotts
+10
+
+In 1924 Doris ____ (in Cincinnatti, Ohio), actor, girl next door, born in
+Day
+10
+
+In 1924 Estelle ____ NYC, actress (Sophia Petrillo-Golden Girls), born in
+Getty
+10
+
+In 1924 Ford Motor Company manufactures its ____ millionth automobile
+Ten
+10
+
+In 1924 George Herbert Walker____ , former President of the United States, born in
+Bush
+10
+
+In 1924 Giacomo ____ Italian socialist deputy, assassinated by fascists
+Matteotti
+10
+
+In 1924 Gloria____ , fashion designer (Don't my jeans look great!), born in
+Vanderbilt
+10
+
+In 1924 Henry ____ , composer, flutist, born in
+Mancini
+10
+
+In 1924 Italian composer Giacomo Puccini died in____
+Brussels
+10
+
+In 1924 Jackie____ , English Football star (Newcastle United)
+Milburn
+10
+
+In 1924 James Clavell, author (____ , Tai Pan, King Rat, Noble House, Whirlwind), born in
+Shogun
+10
+
+In 1924 James____ , author (Shogun, Tai Pan, King Rat, Noble House, Whirlwind), born in
+Clavell
+10
+
+In 1924 John____ , inventor (FORTRAN computer language), born in
+Backus
+10
+
+In 1924 Lauren ____ (in Staten Island, NY), actor, whistler (Dark Passage, Key Largo, Always), born in
+Bacall
+10
+
+In 1924 Lauren Bacall (in Staten Island, NY), actor, whistler (____ , Key Largo, Always), born in
+Dark passage
+10
+
+In 1924 Lauren Bacall (in Staten Island, NY), actor, whistler (Dark Passage, ____ , Always), born in
+Key largo
+10
+
+In 1924 Lauren Bacall (in Staten Island, NY), actor, whistler (Dark Passage, Key Largo,____ ), born in
+Always
+10
+
+In 1924 Lee____ , actor, born in
+Marvin
+10
+
+In 1924 Marcello ____ actor (La Dolce Vita), born in
+Mastroianni
+10
+
+In 1924 Marlon____ , actor (The Godfather, Last Tango in Paris), born in
+Brando
+10
+
+In 1924 Sydney____ , actor, born in
+Poitier
+10
+
+In 1924 Telly ____ Garden City NJ, actor (Acapulco, Kojak), born in
+Savalas
+10
+
+In 1924 Truman____ , a short short story writer (In Cold Blood) born
+Capote
+10
+
+In 1924 Vladimir Ilyich____ , Russian leader, dies of a stroke at 54
+Lenin
+10
+
+In 1924 William____ , FBI director, born in
+Webster
+10
+
+In 1924, pope urban viii threatened to excommunicate people who used what?
+Snuff
+10
+
+In 1925 ____ Bruce comedian, arrested on obsenity charges, born in
+Lenny
+10
+
+In 1925 ____ Byrd, guitarist, born in
+Charlie
+10
+
+In 1925 ____ Carson, pundit (Tonight Show), born in
+Johnny
+10
+
+In 1925 ____ Cray inventor (Cray I computer), born in
+Seymour
+10
+
+In 1925 ____ law prohibits teaching of evolution
+Tennessee
+10
+
+In 1925 ____ Omaha NB, assassinated leader of black muslims, born in
+Malcolm x
+10
+
+In 1925 ____ Parker, actor (Davy Crockett, Gunsmoke), born in
+Fess
+10
+
+In 1925 ____ Sellers England, actor (Pink Panther, Being There, Goon Show), born in
+Peter
+10
+
+In 1925 ____ takes office as president of Germany
+Hindenburg
+10
+
+In 1925 ____ Thatcher, (Tory) British PM (1979-90), Iron Lady, born in
+Margaret
+10
+
+In 1925 B. B.____ , singer, musician, born in
+King
+10
+
+In 1925 Bill ____ Mich, (andthe Comets-Rock Around the Clock), born in
+Haley
+10
+
+In 1925 Bill Haley Mich, (andthe ____ -Rock Around the Clock), born in
+Comets
+10
+
+In 1925 Charlie____ , guitarist, born in
+Byrd
+10
+
+In 1925 Chinese revolutionary leader Sun ____ died
+Yat-sen
+10
+
+In 1925 Fess Parker, actor (____ , Gunsmoke), born in
+Davy crockett
+10
+
+In 1925 Fess Parker, actor (Davy Crockett,____ ), born in
+Gunsmoke
+10
+
+In 1925 Fess____ , actor (Davy Crockett, Gunsmoke), born in
+Parker
+10
+
+In 1925 First ____ radio broadcast
+Transatlantic
+10
+
+In 1925 Hal____ , actor, born in
+Holbrook
+10
+
+In 1925 Jack____ , actor, born in
+Lemmon
+10
+
+In 1925 John T ____ arrested for teaching evolution in Tennessee
+Scopes
+10
+
+In 1925 John____ , Former Nixon White House aide, born in
+Ehrlichman
+10
+
+In 1925 Johnny____ , pundit (Tonight Show), born in
+Carson
+10
+
+In 1925 Lenny ____ comedian, arrested on obsenity charges, born in
+Bruce
+10
+
+In 1925 Margaret____ , (Tory) British PM (1979-90), Iron Lady, born in
+Thatcher
+10
+
+In 1925 Paul ____ born, actor, racer, popcorn and salad dressing mogul
+Newman
+10
+
+In 1925 Peter ____ England, actor (Pink Panther, Being There, Goon Show), born in
+Sellers
+10
+
+In 1925 Peter Sellers England, actor (____ , Being There, Goon Show), born in
+Pink panther
+10
+
+In 1925 Richard____ , Wales, actor (Cleopatra, Virginia Woolf), born in
+Burton
+10
+
+In 1925 Robert____ , director (MASH), born in
+Altman
+10
+
+In 1925 Rod ____ , actor, born in
+Steiger
+10
+
+In 1925 Seymour ____ inventor (Cray I computer), born in
+Cray
+10
+
+In 1925 The official news agency of the Soviet Union ____ was established
+Tass
+10
+
+In 1925 Tony ____ [Real Name: Bernard Schwartz], Bronx New York, actor (Some Like it Hot), born in
+Curtis
+10
+
+In 1925 Tony Curtis [Real Name: Bernard____ ], Bronx New York, actor (Some Like it Hot), born in
+Schwartz
+10
+
+In 1925 Tony____ , actor, born in
+Curtis
+10
+
+In 1925 Walter Percy ____ founded the Chrysler Corporation
+Chrysler
+10
+
+In 1925____ , jazz drummer, born in
+Max roach
+10
+
+In 1926 ____ (AKA Soupy Sales), comedian, born in
+Milton hinkes
+10
+
+In 1926 ____ [Norma Jean Baker], actress (Some Like It Hot), born in
+Marilyn monroe
+10
+
+In 1926 ____ Berry, St Louis, USA, rocker (Roll over Beethoven), born in
+Chuck
+10
+
+In 1926 ____ Coltrane, saxophonist, born in
+John
+10
+
+In 1926 ____ Freberg, writer, producer, comedian, cartoon-voice, born in
+Stan
+10
+
+In 1926 ____ Moore, actor, (The Saint, numerous James Bond movies), born in
+Roger
+10
+
+In 1926 ____ planes take off on first successful around-the-world flight
+Four
+10
+
+In 1926 ____ Tunney defeats Jack Dempsey for world heavyweight boxing title
+Gene
+10
+
+In 1926 (FRANCE) Claude____ , imperssionist painter, dies
+Monet
+10
+
+In 1926 Allen____ , poet, born in
+Ginsberg
+10
+
+In 1926 Andy ____ Mount Airy NC, actor (Andy Griffith Show, Matlock), born in
+Griffith
+10
+
+In 1926 Chuck Berry, St Louis, USA, rocker (____ ), born in
+Roll over beethoven
+10
+
+In 1926 Chuck____ , St Louis, USA, rocker (Roll over Beethoven), born in
+Berry
+10
+
+In 1926 Don ____ actor, secret agent 86 (Get Smart), born in
+Adams
+10
+
+In 1926 Elizabeth Alexandra Mary ____ II, queen of England (1952- ), born in
+Windsor
+10
+
+In 1926 First ____ demonstration of television
+Public
+10
+
+In 1926 Fred____ , actor (The Munsters), writer, born in
+Gwynne
+10
+
+In 1926 Gene ____ defeats Jack Dempsey for world heavyweight boxing title
+Tunney
+10
+
+In 1926 Gene Tunney defeats ____ Dempsey for world heavyweight boxing title
+Jack
+10
+
+In 1926 Gene Tunney defeats Jack ____ for world heavyweight boxing title
+Dempsey
+10
+
+In 1926 Harper ____ author (To Kill a Mockingbird), born in
+Lee
+10
+
+In 1926 Henry Ford announces the ____ work week
+Five day
+10
+
+In 1926 Hugh Hefner, publisher of ____ , made bunnies famous, born in
+Playboy
+10
+
+In 1926 Jean____ , London England, actress (Thorn Birds, Guys & Dolls), born in
+Simmons
+10
+
+In 1926 Jerry____ , French god, American humanitarian, comedian, actor, born in
+Lewis
+10
+
+In 1926 John____ , saxophonist, born in
+Coltrane
+10
+
+In 1926 Miles ____ trumpeter; pioneered cool jazz (Porgy & Bess), born in
+Davis
+10
+
+In 1926 Peter____ , actor (Mission Impossible, Airplane), born in
+Graves
+10
+
+In 1926 Roger Moore, actor, (____ , numerous James Bond movies), born in
+The saint
+10
+
+In 1926 Roger____ , actor, (The Saint, numerous James Bond movies), born in
+Moore
+10
+
+In 1926 Stan____ , writer, producer, comedian, cartoon-voice, born in
+Freberg
+10
+
+In 1926 Svetlana____ , daughter of Josef Stalin, born in
+Stalina
+10
+
+In 1926 Television is first demonstrated by ____ in London
+John logie baird
+10
+
+In 1926 Thomas ____ says Americans prefer silent movies over talkies
+Edison
+10
+
+In 1926 Transatlantic ____ service begins between New York and London
+Phone
+10
+
+In 1926 Transatlantic phone service begins between ____ and London
+New york
+10
+
+In 1926 Transatlantic phone service begins between New York and?
+London
+10
+
+In 1927 ____ Bosley, actor (Happy Days, Murder She Wrote) born
+Tom
+10
+
+In 1927 ____ Castro, Cuban political leader (1959-?), born in
+Fidel
+10
+
+In 1927 ____ expelled from Soviet CP; Stalin becomes undisputed dictator
+Trotsky
+10
+
+In 1927 ____ Falk, actor (Colombo, Princess Bride, In-Laws), born in
+Peter
+10
+
+In 1927 ____ Grass, German novelist, poet (The Tin Drum) born
+Gunter
+10
+
+In 1927 ____ Martino, singer, born in
+Al
+10
+
+In 1927 Academy of ____ forms
+Motion picture arts & sciences
+10
+
+In 1927 Al____ , singer, born in
+Martino
+10
+
+In 1927 Babe Ruth hits ____ of 60 homers
+40th
+10
+
+In 1927 Babe Ruth hits 40th of ____ homers
+Sixty
+10
+
+In 1927 Fidel____ , Cuban political leader (1959-?), born in
+Castro
+10
+
+In 1927 Gina Lollobrigida, ____ Italy, actress (Trapeze, Falcon Crest), born in
+Subiaco
+10
+
+In 1927 Gina Lollobrigida, Subiaco____ , actress (Trapeze, Falcon Crest), born in
+Italy
+10
+
+In 1927 Gina____ , Subiaco Italy, actress (Trapeze, Falcon Crest), born in
+Lollobrigida
+10
+
+In 1927 Gordon ____ Jr., astronaut, born in
+Cooper
+10
+
+In 1927 Great Britain via treaty grants ____ 's kingdom independence
+Saudi arabia
+10
+
+In 1927 Gunter____ , German novelist, poet (The Tin Drum) born
+Grass
+10
+
+In 1927 Harry____ , entertainer, born in
+Belafonte
+10
+
+In 1927 Harvey____ , actor, born in
+Korman
+10
+
+In 1927 Lindburgh lands in____ , after 1st solo air crossing of Atlantic
+Paris
+10
+
+In 1927 Mort ____ comedian/political satirist/beatnik (Big Party)
+Sahl
+10
+
+In 1927 Neil Simon, playwright (____ , Plaza Suite, Biloxi Blues), born in
+Odd couple
+10
+
+In 1927 Neil Simon, playwright (Odd Couple, ____ , Biloxi Blues), born in
+Plaza suite
+10
+
+In 1927 Neil Simon, playwright (Odd Couple, Plaza Suite,____ ), born in
+Biloxi blues
+10
+
+In 1927 Peter Falk, actor (____ , Princess Bride, In-Laws), born in
+Colombo
+10
+
+In 1927 Peter____ , actor (Colombo, Princess Bride, In-Laws), born in
+Falk
+10
+
+In 1927 Raul____ , President of Argentina, born in
+Alfonsin
+10
+
+In 1927 The ____ Tunnel, first underwater vehicular tunnel, opened between New York and New Jersey
+Holland
+10
+
+In 1927 Tom Bosley, actor (____ , Murder She Wrote) born
+Happy days
+10
+
+In 1927 Tom____ , actor (Happy Days, Murder She Wrote) born
+Bosley
+10
+
+In 1927 Using phone lines TV was sent from ____ to New York City
+Washington dc
+10
+
+In 1927____ , playwright (Odd Couple, Plaza Suite, Biloxi Blues), born in
+Neil simon
+10
+
+In 1928 ____ -Briand Pact, where 60 nations agreed to outlaw war
+Kellogg
+10
+
+In 1928 ____ becomes a kingdom, with Zogu I as king
+Albania
+10
+
+In 1928 ____ Coburn Laurel Nebr, actor (Our Man Flint, Magnificent Seven), born in
+James
+10
+
+In 1928 ____ Dean, actor, born in
+James
+10
+
+In 1928 ____ enthroned as Emperor of Japan
+Hirohito
+10
+
+In 1928 ____ Fisher, actor, born in
+Eddie
+10
+
+In 1928 ____ Kai-Shek becomes president of China
+Chiang
+10
+
+In 1928 ____ modern Olympic games opens in Amsterdam
+9th
+10
+
+In 1928 ____ Olympic Games closes in Amsterdam
+9th
+10
+
+In 1928 ____ Peppard, actor (Breakfast at Tiffany's, Blue Max, A-Team) born
+George
+10
+
+In 1928 ____ Ross (in Minnesota), actor (Played Mrs. Cunningham in Happy Days) born
+Marion
+10
+
+In 1928 ____ Wiesel, author (Souls on Fire), Nazi hunter (Nobel 1986) born
+Elie
+10
+
+In 1928 1st US-to____ flight lands (Sir Charles Kingford-Smith)
+Australia
+10
+
+In 1928 9th Olympic Games closes in____
+Amsterdam
+10
+
+In 1928 Albania becomes a kingdom, with ____ as king
+Zogu i
+10
+
+In 1928 Bob ____ Waterbury Ct, actor (Hogan's Heroes), born in
+Crane
+10
+
+In 1928 Chiang ____ becomes president of China
+Kai-shek
+10
+
+In 1928 Chiang Kai-Shek becomes president of____
+China
+10
+
+In 1928 Christopher ____ chosen PM of Norway at age 101
+Hornsrud
+10
+
+In 1928 Eartha ____ born (in South Carolina)
+Kitt
+10
+
+In 1928 Eddie____ , actor, born in
+Fisher
+10
+
+In 1928 Elie____ , author (Souls on Fire), Nazi hunter (Nobel 1986) born
+Wiesel
+10
+
+In 1928 Fats____ , singer, born in
+Domino
+10
+
+In 1928 First televised ____ match
+Tennis
+10
+
+In 1928 George Peppard, actor (____ , Blue Max, A-Team) born
+Breakfast at tiffany's
+10
+
+In 1928 George Peppard, actor (Breakfast at Tiffany's, ____ , A-Team) born
+Blue max
+10
+
+In 1928 George Peppard, actor (Breakfast at Tiffany's, Blue Max,____ ) born
+A-team
+10
+
+In 1928 George____ , actor (Breakfast at Tiffany's, Blue Max, A-Team) born
+Peppard
+10
+
+In 1928 James ____ , actor (Maverick movies and series, etc.) born
+Garner
+10
+
+In 1928 James ____ Laurel Nebr, actor (Our Man Flint, Magnificent Seven), born in
+Coburn
+10
+
+In 1928 James Coburn Laurel Nebr, actor (____ , Magnificent Seven), born in
+Our man flint
+10
+
+In 1928 James Coburn Laurel Nebr, actor (Our Man Flint,____ ), born in
+Magnificent seven
+10
+
+In 1928 James____ , actor, born in
+Dean
+10
+
+In 1928 Kellogg____ Pact, where 60 nations agreed to outlaw war
+Briand
+10
+
+In 1928 Kellogg-Briand Pact, where ____ nations agreed to outlaw war
+Sixty
+10
+
+In 1928 Marion ____ (in Minnesota), actor (Played Mrs. Cunningham in Happy Days) born
+Ross
+10
+
+In 1928 Marion Ross (in Minnesota), actor (Played Mrs. Cunningham in____ ) born
+Happy days
+10
+
+In 1928 Maurice____ , NYC, author/illustrator (Where The Wild Things Are), born in
+Sendak
+10
+
+In 1928 Patrick____ , actor, director (The Prisoner, Silver Streak), born in
+Mcgoohan
+10
+
+In 1928 Scotch tape 1st marketed by ____ Company
+3-m
+10
+
+In 1928 Stanley____ , director (2001, Dr Strangelove, Lolita), born in
+Kubrick
+10
+
+In 1928 Turkey switches from Arabic to ____ alphabet
+Roman
+10
+
+In 1929 ____ Blackman (in London, England), actor (The Avengers), born in
+Honor
+10
+
+In 1929 ____ invented by Edwin S Lowe
+Bingo
+10
+
+In 1929 ____ Lee Bouvier Kennedy Onassis 1st lady (1961-63), born in
+Jacqueline
+10
+
+In 1929 ____ Levin, author (Rosemary's Baby, Sleuth, This Perfect Day)
+Ira
+10
+
+In 1929 ____ Newhart Oak Park Ill, actor/comedian (Bob Newhart Show), born in
+Bob
+10
+
+In 1929 ____ Palmer golfer (PGA Golfer of the Year 1960, 1962), born in
+Arnold
+10
+
+In 1929 (Yugoslavia) Alexander I establishes a royal dictatorship in?
+Yugoslavia
+10
+
+In 1929 Anne____ , diarist, born in
+Frank
+10
+
+In 1929 Arnold ____ golfer (PGA Golfer of the Year 1960, 1962), born in
+Palmer
+10
+
+In 1929 Audrey ____ (Hepburn-Ruston Edda van Heemstra), Brussels, Belguim (Breakfast at Tiffany's, My Fair Lady), born in
+Hepburn
+10
+
+In 1929 Bob ____ Oak Park Ill, actor/comedian (Bob Newhart Show), born in
+Newhart
+10
+
+In 1929 Carolyn ____ Amarillo Texas, actress (Morticia-Addams Family), born in
+Jones
+10
+
+In 1929 First Academy Awards were given out. '____ ' won best picture. Best Actor went to Emil Jennings; Best Actress, Janet Gaynor
+Wings
+10
+
+In 1929 First telephone installed in the____
+White house
+10
+
+In 1929 German airship ____ ends a round-the-world flight
+Graf zeppelin
+10
+
+In 1929 Hassan II, king of ____ (1961- ), born in
+Morocco
+10
+
+In 1929 Honor ____ (in London, England), actor (The Avengers), born in
+Blackman
+10
+
+In 1929 Honor Blackman (in London, England), actor (____ ), born in
+The avengers
+10
+
+In 1929 Ira____ , author (Rosemary's Baby, Sleuth, This Perfect Day)
+Levin
+10
+
+In 1929 Jacqueline ____ Bouvier Kennedy Onassis 1st lady (1961-63), born in
+Lee
+10
+
+In 1929 Jacqueline Lee ____ Kennedy Onassis 1st lady (1961-63), born in
+Bouvier
+10
+
+In 1929 Jacqueline Lee Bouvier ____ Onassis 1st lady (1961-63), born in
+Kennedy
+10
+
+In 1929 Karl Freidrich ____ automobile engineer (Mercedes), dies
+Benz
+10
+
+In 1929 Leon ____ expelled from Russia
+Trotsky
+10
+
+In 1929 Max von ____ , actor, born in
+Sydow
+10
+
+In 1929 Nigel ____ actor (Tartuffe, Pope John Paul II (Sir Humphrey Appleby in Yes Minister), Richard III), born in
+Hawthorne
+10
+
+In 1929 Pres. ____ authorizes the building of Boulder Dam (Hoover Dam)
+Hoover
+10
+
+In 1929 Richard Byrd and crew flies over the ____ Pole
+South
+10
+
+In 1929 Robert J.L. ____ (Labor), prime minister of Australia (1983-1991) born
+Hawke
+10
+
+In 1929 St. Valentine's Day ____ in Chicago, 7 gangsters killed by rivals disguised as cops (The Night Chicago Died)
+Massacre
+10
+
+In 1929 Start of USSR experimental____
+Calender
+10
+
+In 1929 Vatican City (world's Smallest Country) is made an enclave of?
+Rome
+10
+
+In 1929____ , king of Morocco (1961- ), born in
+Hassan ii
+10
+
+In 1930 ____ Armstrong, X-15 pilot, first moonwalker (Gemini 8, Apollo 11), born in
+Neil
+10
+
+In 1930 ____ beats Argentina 4-2 for Football's 1st World Cup in Montevideo
+Uruguay
+10
+
+In 1930 ____ Bonynge, Sydney Australia, conductor (Australian Orchestra Sydney-1976), born in
+Richard
+10
+
+In 1930 ____ Charles, entertainer extraordinaire, born in
+Ray
+10
+
+In 1930 ____ Connery actor (James Bond, Man Who Would Be King), born in
+Sean
+10
+
+In 1930 ____ Culp, actor (I Spy), born in
+Robert
+10
+
+In 1930 ____ debutes in Max Fleischer's animated cartoon Dizzy Dishes
+Betty boop
+10
+
+In 1930 ____ Hughes, English poet laureate (1984- ), born in
+Ted
+10
+
+In 1930 ____ Marcos former 1st lady (Philipines)/shoe collector, born in
+Imelda
+10
+
+In 1930 ____ Miles, actor, born in
+Vera
+10
+
+In 1930 ____ Pinter, playwright, born in
+Harold
+10
+
+In 1930 ____ s first TV Broadcast for home reception, NY city
+Dumont
+10
+
+In 1930 ____ W. Young, astronaut (Gemini 3, 10, Apollo 10, 16, STS-1, 9), born in
+John
+10
+
+In 1930 ____ Warhol, artist, movie producer born
+Andy
+10
+
+In 1930 1st woman to fly solo from England to ____ takes-off (Amy Johnson)
+Australia
+10
+
+In 1930 A cow is flown (and milked in flight) for first time. Her milk was sealed in paper containers and dropped by ____ over St. Louis, MO. I knew you'd want to know ____
+Parachute
+10
+
+In 1930 Andy____ , artist, movie producer born
+Warhol
+10
+
+In 1930 Betty Boop debutes in ____ Fleischer's animated cartoon Dizzy Dishes
+Max
+10
+
+In 1930 Betty Boop debutes in Max ____ 's animated cartoon Dizzy Dishes
+Fleischer
+10
+
+In 1930 Betty Boop debutes in Max Fleischer's animated cartoon____
+Dizzy dishes
+10
+
+In 1930 Brooklyn's Clarence ____ puts the first individually packaged frozen foods on sale, in Springfield, Mass
+Birdseye
+10
+
+In 1930 City of Angora changed to?
+Ankara
+10
+
+In 1930 City of Constantinople changed to?
+Istanbul
+10
+
+In 1930 Edward ____ England, actor (Breaker Morant, Equalizer), born in
+Woodward
+10
+
+In 1930 Gavin____ , actor (Love Boat, Mary Tyler Moore Show), born in
+Macleod
+10
+
+In 1930 Gene____ , actor (Target, Uncommon Valor), born in
+Hackman
+10
+
+In 1930 Grace Lee____ , actor (Star Trek), born in
+Whitney
+10
+
+In 1930 Harold____ , playwright, born in
+Pinter
+10
+
+In 1930 Joanne ____ (in Thomasville, GA), actress, wife of Paul Newman, born in
+Woodward
+10
+
+In 1930 John W.____ , astronaut (Gemini 3, 10, Apollo 10, 16, STS-1, 9), born in
+Young
+10
+
+In 1930 John____ , actor (Gomez in TV Addams Family), born in
+Astin
+10
+
+In 1930 Lord____ , photographer, born in
+Snowdon
+10
+
+In 1930 Mohandas Gandhi began ____ -mile march protesting British salt tax
+200
+10
+
+In 1930 Neil____ , X-15 pilot, first moonwalker (Gemini 8, Apollo 11), born in
+Armstrong
+10
+
+In 1930 Planet ____ discovered by Clyde W. Tombaugh
+Pluto
+10
+
+In 1930 Princess ____ England (Sister of Queen Elizabeth II), born in
+Margaret
+10
+
+In 1930 Ray____ , entertainer extraordinaire, born in
+Charles
+10
+
+In 1930 Richard____ , Sydney Australia, conductor (Australian Orchestra Sydney-1976), born in
+Bonynge
+10
+
+In 1930 Robert Culp, actor (____ ), born in
+I spy
+10
+
+In 1930 Robert____ , actor (I Spy), born in
+Culp
+10
+
+In 1930 Robert____ , actor, born in
+Wagner
+10
+
+In 1930 Sean ____ actor (James Bond, Man Who Would Be King), born in
+Connery
+10
+
+In 1930 Sean Connery actor (____ , Man Who Would Be King), born in
+James bond
+10
+
+In 1930 Stephen____ , composer, lyricist (West Side Story, A Little Night Music), born in
+Sondheim
+10
+
+In 1930 Synthetic ____ first produced
+Rubber
+10
+
+In 1930 Ted____ , English poet laureate (1984- ), born in
+Hughes
+10
+
+In 1930 Tiny ____ , singer, born in
+Tim
+10
+
+In 1930 Uruguay beats ____ 4-2 for Football's 1st World Cup in Montevideo
+Argentina
+10
+
+In 1930 Uruguay beats Argentina 4-2 for Football's 1st World Cup in____
+Montevideo
+10
+
+In 1930 Vera____ , actor, born in
+Miles
+10
+
+In 1930 Yuri P.____ , Soviet cosmonaut (Soyuz 14), born in
+Artyukhin
+10
+
+In 1931 ____ Alva Edison inventor, dies in West Orange, NJ, at 84
+Thomas
+10
+
+In 1931 ____ Bancroft AKA Mrs Mel Brooks, Bronx, actress (Graduate), born in
+Anne
+10
+
+In 1931 ____ Capone convicted of tax evasion, sentenced to 11 years in prison
+Al
+10
+
+In 1931 ____ Ekberg, Sweden, actress (La Dolce Vita, War and Peace), born in
+Anita
+10
+
+In 1931 ____ Hagman Fort Worth Tx, actor (I Dream of Jeannie, JR-Dallas), born in
+Larry
+10
+
+In 1931 ____ Mantle, NY Yankee home run slugger, born in
+Mickey
+10
+
+In 1931 ____ Tutu, Anglican Archbishop of South Africa (Nobel Peace Prize 1982), born in
+Desmond
+10
+
+In 1931 1st commercially produced synthetic ____ manufactured
+Rubber
+10
+
+In 1931 Al ____ convicted of tax evasion, sentenced to 11 years in prison
+Capone
+10
+
+In 1931 Al Capone convicted of tax evasion, sentenced to ____ years in prison
+Eleven
+10
+
+In 1931 Al Capone convicted of____ , sentenced to 11 years in prison
+Tax evasion
+10
+
+In 1931 Al Capone was sentenced to how many years in prison?
+Eleven
+10
+
+In 1931 Anita____ , Sweden, actress (La Dolce Vita, War and Peace), born in
+Ekberg
+10
+
+In 1931 Anne ____ AKA Mrs Mel Brooks, Bronx, actress (Graduate), born in
+Bancroft
+10
+
+In 1931 Anne Bancroft AKA Mrs Mel Brooks, Bronx, actress (____ ), born in
+Graduate
+10
+
+In 1931 Desmond Tutu, ____ Archbishop of South Africa (Nobel Peace Prize 1982), born in
+Anglican
+10
+
+In 1931 Desmond____ , Anglican Archbishop of South Africa (Nobel Peace Prize 1982), born in
+Tutu
+10
+
+In 1931 First ____ photograph, Rochester, NY
+Infra-red
+10
+
+In 1931 First electric ____ marketed by Schick, Inc
+Razor
+10
+
+In 1931 James____ , actor (Rebel Without a Cause), born in
+Dean
+10
+
+In 1931 Jim Jones, reverend, poisoned over 100 in____ , born in
+Guyana
+10
+
+In 1931 Larry ____ Fort Worth Tx, actor (I Dream of Jeannie, JR-Dallas), born in
+Hagman
+10
+
+In 1931 Larry____ , actor, born in
+Hagman
+10
+
+In 1931 Leonard____ , actor, director, born in
+Nimoy
+10
+
+In 1931 Mickey____ , NY Yankee home run slugger, born in
+Mantle
+10
+
+In 1931 Nevada legalized?
+Gambling
+10
+
+In 1931 the British empire became the what?
+Commonwealth
+10
+
+In 1931 Thomas ____ Edison inventor, dies in West Orange, NJ, at 84
+Alva
+10
+
+In 1931 Thomas Alva ____ inventor, dies in West Orange, NJ, at 84
+Edison
+10
+
+In 1931 Thomas Alva Edison inventor, dies in West Orange, NJ, at____
+84
+10
+
+In 1931 Thomas Alva Edison inventor, dies in____ , NJ, at 84
+West orange
+10
+
+In 1931 William____ , actor (Star Trek, T.J. Hooker), author (Tek War), born in
+Shatner
+10
+
+In 1931____ , actor, born in
+Robert duvall
+10
+
+In 1931____ , actor, narrator, voice of Darth Vader, born in
+James earl jones
+10
+
+In 1932 ____ Broadcasting Corp. began transmitting overseas
+British
+10
+
+In 1932 ____ Christopher, actor (Father Mulcahy-MASH), born in
+William
+10
+
+In 1932 ____ Cline Va, country singer (Walkin' After Midnight), born in
+Patsy
+10
+
+In 1932 ____ Earhart completes transcontinental flight
+Amelia
+10
+
+In 1932 ____ Minsky, artificial intelligence guru, born in
+Marvin
+10
+
+In 1932 ____ modern Olympic games opens in Los Angeles
+10th
+10
+
+In 1932 ____ N. Rukavishnikov, Soviet cosmonaut (Soyuz 10, 16, 33), born in
+Nikolai
+10
+
+In 1932 ____ P. Carr, US astronaut (Skylab 4), born in
+Gerald
+10
+
+In 1932 ____ Russell, raconteur, born in
+Mark
+10
+
+In 1932 ____ vaccine for humans announced
+Yellow fever
+10
+
+In 1932 10th modern Olympic games opens in____
+Los angeles
+10
+
+In 1932 Amelia ____ completes transcontinental flight
+Earhart
+10
+
+In 1932 Amelia ____ is first woman to make solo crossing of the Atlantic
+Earhart
+10
+
+In 1932 Camera ____ meter patented, W. N. Goodwin
+Exposure
+10
+
+In 1932 Casey ____ Detroit, radio personality (American Top 40), born in
+Kasem
+10
+
+In 1932 Debbie ____ (in El Paso, TX), actor, dancer, born in
+Reynolds
+10
+
+In 1932 Elizabeth ____ (in London, England), actress, had many husbands, born in
+Taylor
+10
+
+In 1932 First Winter Olympics held at____ , NY
+Lake placid
+10
+
+In 1932 Gerald P.____ , US astronaut (Skylab 4), born in
+Carr
+10
+
+In 1932 Jayne ____ Bryn Mawr Pa, actress (Guide for the Married Man),
+Mansfieldborn
+10
+
+In 1932 Jim____ , actor (Gomer Pyle, USMC; Mayberry RFD), singer, born in
+Nabors
+10
+
+In 1932 John____ , poet and novelist, born in
+Updike
+10
+
+In 1932 Johnny____ , singer, The Man in Black, born in
+Cash
+10
+
+In 1932 Kingdom of ____ formed (National Day)
+Saudi arabia
+10
+
+In 1932 Lindbergh turned over ____ as ransom for kidnapped son
+$50,000
+10
+
+In 1932 Mark____ , raconteur, born in
+Russell
+10
+
+In 1932 Marvin____ , artificial intelligence guru, born in
+Minsky
+10
+
+In 1932 Nikolai N.____ , Soviet cosmonaut (Soyuz 10, 16, 33), born in
+Rukavishnikov
+10
+
+In 1932 Omar ____ , actor (Tamarind Seed, Dr. Zhivago), born in
+Sharif
+10
+
+In 1932 Oscar de la____ , designer, born in
+Renta
+10
+
+In 1932 Patsy ____ Va, country singer (Walkin' After Midnight), born in
+Cline
+10
+
+In 1932 Paul von ____ elected first German president (Hitler was the second)
+Hindenburg
+10
+
+In 1932 Peter ____ Ireland, actor (Lord Jim, Beckett, Lawrence of Arabia), born in
+O'toole
+10
+
+In 1932 Peter O'Toole Ireland, actor (____ , Lawrence of Arabia), born in
+Lord jim, beckett
+10
+
+In 1932 Peter O'Toole Ireland, actor (Lord Jim, Beckett,____ ), born in
+Lawrence of arabia
+10
+
+In 1932 Peter O'Toole____ , actor (Lord Jim, Beckett, Lawrence of Arabia), born in
+Ireland
+10
+
+In 1932 Walt ____ Art School created
+Disney
+10
+
+In 1932 William____ , actor (Father Mulcahy-MASH), born in
+Christopher
+10
+
+In 1932____ , Milan Italy, fashion designer (Jacquline Kennedy Onasis), born in
+Valentino
+10
+
+In 1932, Speed King, Sir Malcolm Campbell broke the 300 mph barrier with his race car. What was the name of his famous racecar?
+The Bluebird
+10
+
+In 1933 ____ (in Tokyo, Japan), singer, wife of John Lennon, born in
+Yoko ono
+10
+
+In 1933 ____ A. Anders, astronaut (Apollo 8), born in
+William
+10
+
+In 1933 ____ Blake, actor (Little Rascals, Baretta), born in
+Robert
+10
+
+In 1933 ____ DeLuise Bkln NY, comedian, actor (End, Cannonball Run, Fatso), born in
+Dom
+10
+
+In 1933 ____ Einstein arrives in the US, a refugee from Nazi Germany
+Albert
+10
+
+In 1933 ____ ground-breaking ceremony held at Crissy Field
+Golden gate bridge
+10
+
+In 1933 ____ McCallum, actor (Ilya Kuryakin in Man from U.N.C.L.E.), born in
+David
+10
+
+In 1933 ____ Polanski director (Knife in the Water, Repulsion, Macbeth), born in
+Roman
+10
+
+In 1933 ____ Skerritt Detroit Mich, actor (Ryan's Four, Alien, Big Bad Mama), born in
+Tom
+10
+
+In 1933 ____ V Khrunov USSR, cosmonaut (Soyuz 5), born in
+Yevgeny
+10
+
+In 1933 Adolf ____ named German Chancellor
+Hitler
+10
+
+In 1933 Albert ____ arrives in the US, a refugee from Nazi Germany
+Einstein
+10
+
+In 1933 Big earthquake in ____ (W.C. Fields was making a movie when it struck and the cameras kept running)
+Long beach
+10
+
+In 1933 David____ , actor (Ilya Kuryakin in Man from U.N.C.L.E.), born in
+Mccallum
+10
+
+In 1933 Dick ____ Carmel Calif, actor (Darrin-Bewitched), born in
+Sargent
+10
+
+In 1933 Dom ____ Bkln NY, comedian, actor (End, Cannonball Run, Fatso), born in
+Deluise
+10
+
+In 1933 Dom DeLuise Bkln NY, ____ , actor (End, Cannonball Run, Fatso), born in
+Comedian
+10
+
+In 1933 Emanuel____ , fashion designer, born in
+Ungaro
+10
+
+In 1933 First drive-in theatre opens, in____ , New Jersey
+Camden
+10
+
+In 1933 First known photo of ____ Ness monster (or whatever) is taken
+Loch
+10
+
+In 1933 First synthetic ____ for home use marketed
+Detergent
+10
+
+In 1933 German Reichstag granted ____ dictatorial powers
+Adolf hitler
+10
+
+In 1933 James____ , singer (I Feel Good . . . HEH!), born in
+Brown
+10
+
+In 1933 Joan ____ (in London), actor, born in
+Collins
+10
+
+In 1933 Joan ____ Brooklyn, comedian (The Late Show, Hollywood Squares), born in
+Rivers
+10
+
+In 1933 Kim ____ (in Chicago, Illinois), actress, born in
+Novak
+10
+
+In 1933 Michael____ , actor, born in
+Caine
+10
+
+In 1933 Nazi Germany began persecution of ____ boycotting Jewish businesses
+Jews
+10
+
+In 1933 Nina ____ (in Tyron, NC), born in
+Simone
+10
+
+In 1933 Quincy____ , composer, conductor, born in
+Jones
+10
+
+In 1933 Reichstag building in ____ was set afire, Nazis blame Communists
+Berlin
+10
+
+In 1933 Robert Blake, actor (Little Rascals,____ ), born in
+Baretta
+10
+
+In 1933 Robert____ , actor (Little Rascals, Baretta), born in
+Blake
+10
+
+In 1933 Roman ____ director (Knife in the Water, Repulsion, Macbeth), born in
+Polanski
+10
+
+In 1933 Roman Polanski director (____ , Repulsion, Macbeth), born in
+Knife in the water
+10
+
+In 1933 Roman Polanski director (Knife in the Water, ____ , Macbeth), born in
+Repulsion
+10
+
+In 1933 Roman Polanski director (Knife in the Water, Repulsion,____ ), born in
+Macbeth
+10
+
+In 1933 Roosevelt establishes diplomatic relations with the ____ Union
+Soviet
+10
+
+In 1933 Susan ____ NYC, author/film director (1966 Pol Award), born in
+Sontag
+10
+
+In 1933 the us formally recognized which country?
+Ussr
+10
+
+In 1933 Tom ____ Detroit Mich, actor (Ryan's Four, Alien, Big Bad Mama), born in
+Skerritt
+10
+
+In 1933 William A.____ , astronaut (Apollo 8), born in
+Anders
+10
+
+In 1933 Willie ____ , singer, actor
+Nelson
+10
+
+In 1933 Work on ____ begins, on Marin County side
+Golden gate bridge
+10
+
+In 1933 Yevgeny V ____ USSR, cosmonaut (Soyuz 5), born in
+Khrunov
+10
+
+In 1933____ , 30th US President, died
+Calvin coolidge
+10
+
+In 1933____ , actor, born in
+Dabney coleman
+10
+
+In 1934 ____ (in Bronx, NY), puppeteer (Lambchop), born in
+Shari lewis
+10
+
+In 1934 ____ and Clyde shot in Louisana ambush
+Bonnie
+10
+
+In 1934 ____ Bain (in Chicago, IL), actor (Mission Impossible, Space: 1999), born in
+Barbara
+10
+
+In 1934 ____ beats Czechoslovakia 2-1 (OT) in Football's 2nd World Cup at Rome
+Italy
+10
+
+In 1934 ____ Brunner, British sci-fi author (Sheep Look Up), born in
+John
+10
+
+In 1934 ____ Cohen, Montreal, singer/songwriter (Death of Ladies Man), born in
+Leonard
+10
+
+In 1934 ____ Eden (in Arizona), actor (I dream of Jeannie), born in
+Barbara
+10
+
+In 1934 ____ Landau, actor (Mission Impossible, Space 1999, Tucker), born in
+Martin
+10
+
+In 1934 Alan____ , actor, born in
+Bates
+10
+
+In 1934 Arthur____ , dancer, dance company director, born in
+Mitchell
+10
+
+In 1934 Barbara ____ (in Arizona), actor (I dream of Jeannie), born in
+Eden
+10
+
+In 1934 Barbara ____ (in Chicago, IL), actor (Mission Impossible, Space: 1999), born in
+Bain
+10
+
+In 1934 Barbara Eden (in Arizona), actor (____ ), born in
+I dream of jeannie
+10
+
+In 1934 Bill____ , SF Calif, actor (Incredible Hulk, My Favorite Martian), born in
+Bixby
+10
+
+In 1934 Bobby____ , auto racer, born in
+Unser
+10
+
+In 1934 Bonnie and ____ shot in Louisana ambush
+Clyde
+10
+
+In 1934 Bonnie and Clyde shot in ____ ambush
+Louisana
+10
+
+In 1934 Carl____ , NYC, astronomer/author/professor (Cosmos, Broca's Brain), born in
+Sagan
+10
+
+In 1934 Donald____ , actor (MASH), born in
+Sutherland
+10
+
+In 1934 Donald____ , famous fowl, born in
+Duck
+10
+
+In 1934 Dr. Frederick____ , co-discoverer of insulin, knighted
+Banting
+10
+
+In 1934 FDR grants future independence to the?
+Philippines
+10
+
+In 1934 Florence ____ (in Indiana), actress (Alice in The Brady Bunch), born in
+Henderson
+10
+
+In 1934 George____ , actor, banjo player, born in
+Segal
+10
+
+In 1934 Gloria ____ (in Toledo, OH), feminist, former Playboy bunny, born in
+Steinem
+10
+
+In 1934 Highest velocity wind ever recorded on Mt Washington, ____ mph
+231
+10
+
+In 1934 Italy beats ____ 2-1 (OT) in Football's 2nd World Cup at Rome
+Czechoslovakia
+10
+
+In 1934 Italy beats Czechoslovakia 2-1 (OT) in Football's 2nd World Cup at____
+Rome
+10
+
+In 1934 John ____ shot and killed in Chicago movie theatre
+Dillinger
+10
+
+In 1934 John Dillinger shot and killed in ____ movie theatre
+Chicago
+10
+
+In 1934 John____ , British sci-fi author (Sheep Look Up), born in
+Brunner
+10
+
+In 1934 Ken____ , Sydney, Australia, tennis star (US Open 1956), born in
+Rosewall
+10
+
+In 1934 Leonard____ , Montreal, singer/songwriter (Death of Ladies Man), born in
+Cohen
+10
+
+In 1934 Martin Landau, actor (____ , Space 1999, Tucker), born in
+Mission impossible
+10
+
+In 1934 Martin____ , actor (Mission Impossible, Space 1999, Tucker), born in
+Landau
+10
+
+In 1934 Philippine legislature accepts US proposal for?
+Independence
+10
+
+In 1934 Sergei Kirov Josef Stalin's collaborator, assassinated in____
+Leningrad
+10
+
+In 1934 Shirley ____ (in Richmond, Virginia), actor (in this life), born in
+Maclaine
+10
+
+In 1934 US Dept of Justice offers ____ reward for Dillinger, dead or alive
+$25,000
+10
+
+In 1934 Weekly airmail route starts between ____ and the United Kingdom
+Australia
+10
+
+In 1934 Willard____ , weatherman, original Ronald McDonald, born in
+Scott
+10
+
+In 1934 Women get the vote in ____
+Turkey
+10
+
+In 1934 Yuri____ , first man into space, born in
+Gagarin
+10
+
+In 1935 ____ Allen [Allen Stuart Konigsberg] (Zelig, Annie Hall, Manhattan Murder Mystery), born in
+Woody
+10
+
+In 1935 ____ and Harriet Nelson married
+Ozzie
+10
+
+In 1935 ____ L. (Rusty) Schweickart, astronaut (Apollo 9) born
+Russell
+10
+
+In 1935 ____ Lee Lewis, singer (Great Balls of Fire, Breathless), born in
+Jerry
+10
+
+In 1935 ____ Mathis, singer born
+Johnny
+10
+
+In 1935 ____ Minnesota, actress (The Birds), born in
+Tippi hedren
+10
+
+In 1935 ____ Pavarotti Moderna Italy, operatic tenor (Oh Giorgio), born in
+Luciano
+10
+
+In 1935 ____ Titov USSR, 1st man to spend a day in space (Vostok 2), born in
+Gherman
+10
+
+In 1935 ____ War between Bolivia and Paraguay ends
+Chaco
+10
+
+In 1935 Amelia Earhart flies from Hawaii to ____ (non-stop, of course)
+California
+10
+
+In 1935 Bruno Richard Hauptmann went on trial for kidnap-murder of ____ 's baby
+Charles lindberg
+10
+
+In 1935 Chaco War between ____ and Paraguay ends
+Bolivia
+10
+
+In 1935 Chaco War between Bolivia and ____ ends
+Paraguay
+10
+
+In 1935 Dalai____ , religious leader, born in
+Lama
+10
+
+In 1935 Dudley ____ actor (10, Arthur, Bedazzled, 6 Weeks), born in
+Moore
+10
+
+In 1935 First ____ air mail flight, Greenwood Lake, NY
+Rocket
+10
+
+In 1935 Gene____ , comedic actor, born in
+Wilder
+10
+
+In 1935 George II returns to ____ and regains monarchy
+Greece
+10
+
+In 1935 Gherman ____ USSR, 1st man to spend a day in space (Vostok 2), born in
+Titov
+10
+
+In 1935 Jerry ____ Lewis, singer (Great Balls of Fire, Breathless), born in
+Lee
+10
+
+In 1935 Jerry Lee____ , singer (Great Balls of Fire, Breathless), born in
+Lewis
+10
+
+In 1935 Johnny____ , singer born
+Mathis
+10
+
+In 1935 Judd____ , actor (Taxi), born in
+Hirsch
+10
+
+In 1935 Lie detector first used in court at____ , WI
+Portage
+10
+
+In 1935 Loretta ____ (in Kentucky), Ms. Country Music, coal miner's daughter, born in
+Lynn
+10
+
+In 1935 Luciano ____ Moderna Italy, operatic tenor (Oh Giorgio), born in
+Pavarotti
+10
+
+In 1935 Luciano Pavarotti Moderna Italy, operatic ____ (Oh Giorgio), born in
+Tenor
+10
+
+In 1935 Ozzie and ____ Nelson married
+Harriet
+10
+
+In 1935 Ozzie and Harriet ____ married
+Nelson
+10
+
+In 1935 Parker Brothers launches game of____
+Monopoly
+10
+
+In 1935 Roy ____ Orange NJ, actor (All That Jazz, Jaws), born in
+Scheider
+10
+
+In 1935 Russell L. (Rusty)____ , astronaut (Apollo 9) born
+Schweickart
+10
+
+In 1935 Sir ____ granted patent for RADAR
+Watson-watt
+10
+
+In 1935 T.E. ____ (of Arabia) dies in a motorcycle crash
+Lawrence
+10
+
+In 1935____ , King of Iraq, born in
+Faisal ii
+10
+
+In 1935____ , singer, born in
+Elvis presley
+10
+
+In 1935, ____ was renamed Iran
+Persia
+10
+
+In 1935, the police in Atlantic City, New Jersey, arrested 42 men on the beach. They were cracking down on ____ bathing suits worn by men
+Topless
+10
+
+In 1935, what did c.c magee invent?
+Parking meter
+10
+
+In 1936 ____ annexed Ethiopia
+Italy
+10
+
+In 1936 ____ Chamberlain NBA great center (LA Laker, 5 time MVP), born in
+Wilt
+10
+
+In 1936 ____ Holly singer (Peggy Sue, That'll Be the Day), born in
+Buddy
+10
+
+In 1936 ____ NYC, actor (Hawkeye Pierce-MASH), born in
+Alan alda
+10
+
+In 1936 ____ Oerter, US discus thrower, born in
+Al
+10
+
+In 1936 ____ Owens won his fourth gold medal of the Berlin Olympics
+Jesse
+10
+
+In 1936 ____ Saint-Laurent fashion designer (Opium, Obsession), born in
+Yves
+10
+
+In 1936 1st ____ windowless structure in US completed, Toledo, Ohio
+All-glass
+10
+
+In 1936 Adolph Hitler opens ____ Olympic Games
+Berlin
+10
+
+In 1936 Al____ , US discus thrower, born in
+Oerter
+10
+
+In 1936 Albert____ , actor (Oliver, The Twelve Chairs)
+Finney
+10
+
+In 1936 Bell Labs tests ____ cable for TV use
+Coaxial
+10
+
+In 1936 Bruno ____ , convicted Lindbergh baby killer, executed
+Hauptmann
+10
+
+In 1936 Buddy ____ singer (Peggy Sue, That'll Be the Day), born in
+Holly
+10
+
+In 1936 Buddy Holly singer (____ , That'll Be the Day), born in
+Peggy sue
+10
+
+In 1936 Buddy Holly singer (Peggy Sue,____ ), born in
+That'll be the day
+10
+
+In 1936 Burt____ , actor, born in
+Reynolds
+10
+
+In 1936 Dennis ____ actor (True Grit, Blue Velvet, Easy Rider), born in
+Hopper
+10
+
+In 1936 First ____ round-trip air flight
+Transatlantic
+10
+
+In 1936 First ____ substance produced synthetically (radium E)
+Radioactive
+10
+
+In 1936 Glenda____ , actor (Hopscotch), born in
+Jackson
+10
+
+In 1936 Harry ____ dives 110 m from airship into Bodensee & survives
+Froboess
+10
+
+In 1936 Hitler breaks Treaty of ____ by sending troops to Rhineland
+Versailles
+10
+
+In 1936 Jesse ____ won his fourth gold medal of the Berlin Olympics
+Owens
+10
+
+In 1936 Jesse Owens won his ____ gold medal of the Berlin Olympics
+Fourth
+10
+
+In 1936 Jesse Owens won his fourth gold medal of the ____ Olympics
+Berlin
+10
+
+In 1936 Jill ____ (in London, England), actor, born in
+Ireland
+10
+
+In 1936 King Edward VIII abdicated from the British throne to marry an American divorcee, who was she?
+Mrs. Wallis Simpson
+10
+
+In 1936 King George V of ____ dies, succeeded by Edward VIII
+Britain
+10
+
+In 1936 Kris ____ singer/actor (Amerika, Millenium), born in
+Kristofferson
+10
+
+In 1936 Paul____ , playwright, born in
+Zindel
+10
+
+In 1936 Pumping begins to build____ , San Francisco
+Treasure island
+10
+
+In 1936 Roy ____ , musician, born in
+Orbison
+10
+
+In 1936 Roy ____ Australia, tennis player (Wimbeldon '64, '65), born in
+Emerson
+10
+
+In 1936 Rudyard Kipling author, dies in____ , England
+Burwash
+10
+
+In 1936 Sally____ , Long Beach Cal, actress (MASH, back to school), born in
+Kellerman
+10
+
+In 1936 Semi-automatic ____ adopted by US army
+Rifles
+10
+
+In 1936 Spanish Civil War began as Gen. Francisco ____ led uprising
+Franco
+10
+
+In 1936 U.S. sprinter, ____ sets 100 meter record at 10.2 seconds
+Jesse owens
+10
+
+In 1936 Ursula ____ (in Switzerland), actor, born in
+Andress
+10
+
+In 1936 Wilt ____ NBA great center (LA Laker, 5 time MVP), born in
+Chamberlain
+10
+
+In 1936 Yves ____ fashion designer (Opium, Obsession), born in
+Saint-laurent
+10
+
+In 1936, American track star Jesse Owens beat a ____ over a 100-yard course. The horse was given a head start
+Race horse
+10
+
+In 1937 ____ (in Wales), born in
+Shirley bassey
+10
+
+In 1937 ____ (Singer), born in
+Shirley bassey
+10
+
+In 1937 ____ and Chinese troops clash, which will become the asian theatre of WW II
+Japanese
+10
+
+In 1937 ____ Hoffman, actor, born in
+Dustin
+10
+
+In 1937 ____ patented by W. H. Carothers
+Nylon
+10
+
+In 1937 ____ Redford Calif, actor (Sting, Candidate, Natural, Great Gatsby), born in
+Robert
+10
+
+In 1937 (Wales) Anthony____ , actor, born in
+Hopkins
+10
+
+In 1937 1st commercial flight across the ____ , Pan Am
+Pacific
+10
+
+In 1937 400 people mostly children killed in a gas explosion in?
+Texas
+10
+
+In 1937 Beryl ____ UK, won record (7) women's cycling titles, born in
+Burton
+10
+
+In 1937 Boris____ , chess player, born in
+Spassky
+10
+
+In 1937 Dr. William____ , comedian, actor born
+Cosby
+10
+
+In 1937 Dustin____ , actor, born in
+Hoffman
+10
+
+In 1937 Edward VIII, Duke of ____ married Wallis Warfield Simpson in France
+Windsor
+10
+
+In 1937 Edward VIII, Duke of Windsor married Wallis Warfield ____ in France
+Simpson
+10
+
+In 1937 Edward VIII, Duke of Windsor married Wallis Warfield Simpson in____
+France
+10
+
+In 1937 Edward____ , Duke of Windsor married Wallis Warfield Simpson in France
+Viii
+10
+
+In 1937 First ____ established, Chicago, IL
+Blood bank
+10
+
+In 1937 First automobile/airplane combination tested, ____ , Ca
+Santa monica
+10
+
+In 1937 George ____ composer (American in Paris), dies at 38
+Gershwin
+10
+
+In 1937 George Gershwin composer (American in Paris), dies at ____
+38
+10
+
+In 1937 Industrialist John D. ____ died in Ormond Beach, FL
+Rockfeller
+10
+
+In 1937 Isolation of ____ hormone announced
+Pituitary
+10
+
+In 1937 Jack ____ , actor (One Flew Over the Cuckoo's Nest, The Shining), born in
+Nicholson
+10
+
+In 1937 Japanese and ____ troops clash, which will become the asian theatre of WW II
+Chinese
+10
+
+In 1937 Mary ____ Moore, Brooklyn, actress (Mary Tyler Moore, Ordinary People), born in
+Tyler
+10
+
+In 1937 Merle____ , singer, born in
+Haggard
+10
+
+In 1937 Millionaire Howard Hughes sets ____ air record (7h28m25s)
+Transcontinental
+10
+
+In 1937 Morgan ____ actor (Driving Mrs Daisy), born in
+Freeman
+10
+
+In 1937 NBC forms first full sized symphony ____ exclusively for radio
+Orchestra
+10
+
+In 1937 Philip____ , composer (Einstein on the Beach), born in
+Glass
+10
+
+In 1937 Robert ____ Calif, actor (Sting, Candidate, Natural, Great Gatsby), born in
+Redford
+10
+
+In 1937 Robert Redford Calif, actor (____ , Candidate, Natural, Great Gatsby), born in
+Sting
+10
+
+In 1937 Robert Redford Calif, actor (Sting, ____ , Natural, Great Gatsby), born in
+Candidate
+10
+
+In 1937 Robert Redford Calif, actor (Sting, Candidate, ____ , Great Gatsby), born in
+Natural
+10
+
+In 1937 Robert Redford Calif, actor (Sting, Candidate, Natural,____ ), born in
+Great gatsby
+10
+
+In 1937 Saddam ____ president of Iraq (1979- ), born in
+Hussein
+10
+
+In 1937 Spinach growers of____ , TX, erect a statue of Popeye
+Crystal city
+10
+
+In 1937 The dirigible ____ explodes in flames at Lakehurst, NJ
+Hindenburg
+10
+
+In 1937 USSR executes ____ army leaders as Stalin's purge continued
+Eight
+10
+
+In 1937 Valentina ____ (in Russia), cosmonaut, first woman in space, born in
+Tereshkova
+10
+
+In 1937 Vanessa ____ (in London, England), actor, born in
+Redgrave
+10
+
+In 1937 Warren____ , actor, ladies man, born in
+Beatty
+10
+
+In 1938 ____ 'Evel' Knievel, motorcycle daredevil, born in
+Robert
+10
+
+In 1938 ____ annexes Sudetenland (1/3 of Czechoslovakia)
+Germany
+10
+
+In 1938 ____ awarded 1940 Olympic games after Japan withdraws
+Finland
+10
+
+In 1938 ____ Comics launched
+Superman
+10
+
+In 1938 ____ Koenig Chicago Ill, actor (Chekov-Star Trek), born in
+Walter
+10
+
+In 1938 ____ Laver, tennis player, born in
+Rod
+10
+
+In 1938 ____ Lloyd, actor (Taxi, Star Trek III, Back to the Future, Addams Family), born in
+Christopher
+10
+
+In 1938 ____ Rogers singer (Lady) actor (Coward of the County), born in
+Kenny
+10
+
+In 1938 ____ Stevens (in Brooklyn, NY), singer born
+Connie
+10
+
+In 1938 ____ took control of foreign-owned oil properties on its soil
+Mexico
+10
+
+In 1938 ____ Zeppelin II, world's largest airship, makes maiden flight
+Graf
+10
+
+In 1938 1st use of ____ dog
+Seeing eye
+10
+
+In 1938 Betty ____ Australia 100m/200m/400m dash (Olympic-gold-1956, 64), born in
+Cuthbet
+10
+
+In 1938 British PM ____ visits Hitler at Berchtesgarden
+Chamberlain
+10
+
+In 1938 British PM Chamberlain visits Hitler at____
+Berchtesgarden
+10
+
+In 1938 Christopher Lloyd, actor (____ , Star Trek III, Back to the Future, Addams Family), born in
+Taxi
+10
+
+In 1938 Christopher Lloyd, actor (Taxi, ____ , Back to the Future, Addams Family), born in
+Star trek iii
+10
+
+In 1938 Christopher Lloyd, actor (Taxi, Star Trek III, ____ , Addams Family), born in
+Back to the future
+10
+
+In 1938 Christopher Lloyd, actor (Taxi, Star Trek III, Back to the Future,____ ), born in
+Addams family
+10
+
+In 1938 Christopher____ , actor (Taxi, Star Trek III, Back to the Future, Addams Family), born in
+Lloyd
+10
+
+In 1938 Coelacanth, a fish thought to have been extinct for 65 million years caught of the coast of ____ Africa
+South
+10
+
+In 1938 Connie ____ (in Brooklyn, NY), singer born
+Stevens
+10
+
+In 1938 Diana ____ Doncaster England, actress (Emma Peel-Avengers, Hospital), born in
+Rigg
+10
+
+In 1938 Douglas ____ (a protestant) becomes 1st president of Eire
+Hyde
+10
+
+In 1938 Germany annexes ____ (1/3 of Czechoslovakia)
+Sudetenland
+10
+
+In 1938 Germany invades?
+Austria
+10
+
+In 1938 Graf____ , world's largest airship, makes maiden flight
+Zeppelin ii
+10
+
+In 1938 Jean-Loup____ , first French traveler in space (on Soyuz T-6), born in
+Chritien
+10
+
+In 1938 Jon____ , Yonkers, NY, actor (Deliverance, Midnight Cowboy), born in
+Voight
+10
+
+In 1938 Juan Carlos I, ____ , born in
+King of Spain
+10
+
+In 1938 Kemal Atarok 1st pres of____ , dies
+Turkey
+10
+
+In 1938 Kenny ____ singer (Lady) actor (Coward of the County), born in
+Rogers
+10
+
+In 1938 King ____ of Albania marries Countess Geraldine of Hungary
+Zog
+10
+
+In 1938 Munich Agreement-forces ____ to give territory to Germany
+Czechoslovakia
+10
+
+In 1938 Natalie ____ [Natasha Gurdin], SF, (Gypsy, Rebel Without a Cause), born in
+Wood
+10
+
+In 1938 Robert '____ ' Knievel, motorcycle daredevil, born in
+Evel
+10
+
+In 1938 Robert 'Evel'____ , motorcycle daredevil, born in
+Knievel
+10
+
+In 1938 Rod____ , tennis player, born in
+Laver
+10
+
+In 1938 Rudolf____ , ballet star, born in
+Nureyev
+10
+
+In 1938 The ocean liner ____ was launched at Glasgow
+Queen elizabeth
+10
+
+In 1938 The ocean liner Queen Elizabeth was launched at____
+Glasgow
+10
+
+In 1938 Walter ____ Chicago Ill, actor (Chekov-Star Trek), born in
+Koenig
+10
+
+In 1938 Walter Koenig Chicago Ill, actor (____ -Star Trek), born in
+Chekov
+10
+
+In 1938, for how much did joe shuster and jerry siegel sell all rights to the character 'superman'?
+130 dollars
+10
+
+In 1938, Pearl S. Buck became the first American woman to be awarded what international honour?
+Nobel literature prize
+10
+
+In 1938, to who were all rights to the character 'superman' sold for 130 dollars?
+Publishers
+10
+
+In 1939 ____ Airport opened in New York City
+Laguardia
+10
+
+In 1939 ____ Cleese comedian/actor (Monty Python, Fawlty Towers), born in
+John
+10
+
+In 1939 ____ Comics hit the street
+Batman
+10
+
+In 1939 ____ go on sale in the U.S. for the first time
+Nylon stockings
+10
+
+In 1939 ____ N. Glazkov, Soviet cosmonaut (Soyuz 24) born
+Yuri
+10
+
+In 1939 ____ Tabei Japan, 1st woman to climb Mount Everest, born in
+Junko
+10
+
+In 1939 ____ V. Ryumin, Soviet cosmonaut (Soyuz 25, 32), born in
+Valeri
+10
+
+In 1939 ____ Warsitz makes first jet-propelled flight (in a Heinkel He-178)
+Erich
+10
+
+In 1939 Brian____ , Prime Minister of Canada, born in
+Mulroney
+10
+
+In 1939 Britain declares war on Germany. France follows 6 hours later quickly joined by Australia, ____ , South Africa and Canada
+New zealand
+10
+
+In 1939 Britain declares war on Germany. France follows 6 hours later quickly joined by Australia, New Zealand, ____ and Canada
+South africa
+10
+
+In 1939 Britain declares war on Germany. France follows 6 hours later quickly joined by Australia, New Zealand, South Africa and____
+Canada
+10
+
+In 1939 Britain declares war on Germany. France follows 6 hours later quickly joined by____ , New Zealand, South Africa and Canada
+Australia
+10
+
+In 1939 Charley____ , singer, born in
+Pride
+10
+
+In 1939 Erich ____ makes first jet-propelled flight (in a Heinkel He-178)
+Warsitz
+10
+
+In 1939 Ernest Hausen of ____ sets chicken-plucking record-4.4 sec...
+Wisconsin
+10
+
+In 1939 Ernst ____ demonstrates 800-kph rocket plane to Hitler
+Heinkel
+10
+
+In 1939 Ernst Heinkel demonstrates 800-kph rocket plane to____
+Hitler
+10
+
+In 1939 First air conditioned ____ (Packard) exhibited, Chicago, IL
+Automobile
+10
+
+In 1939 First manned ____ flight (by auto maker Fritz von Opel)
+Rocket
+10
+
+In 1939 Francis Ford ____ , director born
+Coppola
+10
+
+In 1939 Germaine____ , Melbourne, Australia, feminist/author (Female Eunich), born in
+Greer
+10
+
+In 1939 Jackie____ , race-car driver, Ford spokesperson, born in
+Stewart
+10
+
+In 1939 Jim Bakker, ____ , con-man, born in
+Televangelist
+10
+
+In 1939 John ____ comedian/actor (Monty Python, Fawlty Towers), born in
+Cleese
+10
+
+In 1939 Judy____ , singer (Send in the Clowns, Clouds), born in
+Collins
+10
+
+In 1939 Junko ____ Japan, 1st woman to climb Mount Everest, born in
+Tabei
+10
+
+In 1939 LaGuardia Airport opened in____
+New york city
+10
+
+In 1939 Lee____ , golfer (US Open 1968,71), born in
+Trevino
+10
+
+In 1939 Liv ____ (in Tokyo, Japan), actor (Cries and Whispers), born in
+Ullman
+10
+
+In 1939 Physical Review publishes 1st paper to deal with____
+Black holes
+10
+
+In 1939 Pope ____ was crowned in ceremonies at the Vatican
+Pius xii
+10
+
+In 1939 Soviet Union invades ____ during WW II
+Poland
+10
+
+In 1939 Soviet-German treaty agree on 4th partition of ____ (WW II) and gives Lithuania to the USSR
+Poland
+10
+
+In 1939 Soviet-German treaty agree on 4th partition of Poland (WW II) and gives ____ to the USSR
+Lithuania
+10
+
+In 1939 Spanish Civil War end as ____ fell to Francisco Franco
+Madrid
+10
+
+In 1939 The Soviet Union invades ____ over a border dispute
+Finland
+10
+
+In 1939 the US political party 'The American Nazi Party' had ____ members
+200,000
+10
+
+In 1939 U.S. recognized Franco govt in ____ at end of the Spanish civil war
+Spain
+10
+
+In 1939 Uranium ____ 1st split, Columbia University
+Atom
+10
+
+In 1939 Valeri V.____ , Soviet cosmonaut (Soyuz 25, 32), born in
+Ryumin
+10
+
+In 1939 William ____ Yeats Irish poet, dies in France at 73
+Butler
+10
+
+In 1939 WW II starts, Germany invades Poland, takes____
+Danzig
+10
+
+In 1939 Yuri N.____ , Soviet cosmonaut (Soyuz 24) born
+Glazkov
+10
+
+In 1939, Albert Einstein wrote a letter to Roosevelt urging him to develop what?
+Nuclear bomb
+10
+
+In 1939, Robert May wrote a poem for the Montgomery Ward Department Store. The poem was fondly titled 'Rudolph the Red Nosed Reindeer. The name Rudolph had been suggested by May's four-year old daughter. What had May, himself wanted to call the Reindeer?
+Rollo
+10
+
+In 1940 ____ asks Germany for terms of surrender in WW II
+France
+10
+
+In 1940 ____ Avalon, singer (Four Seasons), born in
+Frankie
+10
+
+In 1940 ____ Carradine, actor (Kung fu, Death Race 2000), born in
+David
+10
+
+In 1940 ____ Collins, London England, actress (Shirley Valentine), born in
+Pauline
+10
+
+In 1940 ____ declares war on France & Britain during WW II
+Italy
+10
+
+In 1940 ____ evacuated before the German advance
+Paris
+10
+
+In 1940 ____ Harper (in Sufferin, NY), actor (Mary Tyler Moore Show, Rhoda), born in
+Valerie
+10
+
+In 1940 ____ Mann, musician, born in
+Manfred
+10
+
+In 1940 ____ Melville, actor, born in
+Sam
+10
+
+In 1940 ____ Pele, Football player extraordinaire, born in
+Edison
+10
+
+In 1940 ____ Sheen actor (Men At Work, Wall St), born in
+Martin
+10
+
+In 1940 ____ SSR is accepted into the USSR
+Lithuanian
+10
+
+In 1940 ____ surrenders to Germany during WW II
+Norway
+10
+
+In 1940 ____ Thompson Australia, actor (Breaker Morant), born in
+Jack
+10
+
+In 1940 ____ Trotsky assassinated in Mexico City by agents of Stalin
+Leon
+10
+
+In 1940 ____ Welch Chic (Myra Breckenridge, 1,000,000 BC, 100 Rifles), born in
+Raquel
+10
+
+In 1940 ____ Williams, singer, composer, actor, born in
+Paul
+10
+
+In 1940 (England) F. Scott____ , author, died
+Fitzgerald
+10
+
+In 1940 1st ____ wedding
+Parachute
+10
+
+In 1940 Al ____ NYC, actor (Godfather, Carlito's Way), born in
+Pacino
+10
+
+In 1940 Al____ , singer, born in
+Jarreau
+10
+
+In 1940 Battle of ____ begins in WW II
+France
+10
+
+In 1940 Brian Dennehy, actor (____ , Cocoon, Gorky Park), born in
+Silverado
+10
+
+In 1940 Brian Dennehy, actor (Silverado, ____ , Gorky Park), born in
+Cocoon
+10
+
+In 1940 Brian Dennehy, actor (Silverado, Cocoon,____ ), born in
+Gorky park
+10
+
+In 1940 Brian____ , actor (Silverado, Cocoon, Gorky Park), born in
+Dennehy
+10
+
+In 1940 British complete miracle of ____ by evacuating 300,000 troops
+Dunkirk
+10
+
+In 1940 British complete miracle of Dunkirk by evacuating ____ troops
+300,000
+10
+
+In 1940 Communist govt installed in____
+Lithuania
+10
+
+In 1940 Daniel J.____ , actor (Hill Street Blues)
+Travanti
+10
+
+In 1940 David Carradine, actor (____ , Death Race 2000), born in
+Kung fu
+10
+
+In 1940 David Carradine, actor (Kung fu,____ ), born in
+Death race 200
+10
+
+In 1940 David____ , actor (Kung fu, Death Race 2000), born in
+Carradine
+10
+
+In 1940 Discovery of element 93, ____ , announced
+Neptunium
+10
+
+In 1940 During WW II, German planes destroyed most of____ , England
+Coventry
+10
+
+In 1940 Edison____ , Football player extraordinaire, born in
+Pele
+10
+
+In 1940 End of USSR experimental calendar; ____ readopted 6/27
+Gregorian
+10
+
+In 1940 F. ____ Abraham, actor (Amadeus, Name of the Rose), born in
+Murray
+10
+
+In 1940 F. Murray____ , actor (Amadeus, Name of the Rose), born in
+Abraham
+10
+
+In 1940 Finland surrendered to the ____ during World War II
+Soviet union
+10
+
+In 1940 First ____ transmission
+Fm radio
+10
+
+In 1940 First synthetic rubber tire exhibited____ , OH
+Akron
+10
+
+In 1940 Frankie____ , singer (Four Seasons), born in
+Avalon
+10
+
+In 1940 French fortress of ____ captured by Germans
+Verdun
+10
+
+In 1940 Germany begins dropping incendiary bombs on ____ (WW II)
+London
+10
+
+In 1940 Germany invades ____ and Denmark in WW II
+Norway
+10
+
+In 1940 Germany occupies____ , Belgium & begins invasion of France
+Brussels
+10
+
+In 1940 Herbie ____ , musician, born in
+Hancock
+10
+
+In 1940 Italy declares war on ____ & Britain during WW II
+France
+10
+
+In 1940 Jack ____ Australia, actor (Breaker Morant), born in
+Thompson
+10
+
+In 1940 Jack Thompson Australia, actor (____ ), born in
+Breaker morant
+10
+
+In 1940 Jack____ , golfer (Player of Yr 1967,72,73,75,76), born in
+Nicklaus
+10
+
+In 1940 John____ , England, actor (Elephant Man, Alien, Midnight Express), born in
+Hurt
+10
+
+In 1940 Leon ____ assassinated in Mexico City by agents of Stalin
+Trotsky
+10
+
+In 1940 Leon Trotsky assassinated in ____ by agents of Stalin
+Mexico city
+10
+
+In 1940 Leon Trotsky assassinated in Mexico City by agents of____
+Stalin
+10
+
+In 1940 Manfred____ , musician, born in
+Mann
+10
+
+In 1940 Martin ____ actor (Men At Work, Wall St), born in
+Sheen
+10
+
+In 1940 Nancy ____ Jersey City, singer, (These boots were made for walking), born in
+Sinatra
+10
+
+In 1940 Nazi blitz conquest of France began by crossing ____ River
+Muese
+10
+
+In 1940 Nazis force 4.5 mil Warsaw Jews to live in walled____
+Ghetto
+10
+
+In 1940 Nick____ , actor, born in
+Nolte
+10
+
+In 1940 Nylon ____ on sale for the first time in the United States
+Stockings
+10
+
+In 1940 Patrick ____ actor (Capt Picard-Star Trek Next Generation), born in
+Stewart
+10
+
+In 1940 Paul____ , singer, composer, actor, born in
+Williams
+10
+
+In 1940 Pauline Collins, London England, actress (____ ), born in
+Shirley valentine
+10
+
+In 1940 Pauline____ , London England, actress (Shirley Valentine), born in
+Collins
+10
+
+In 1940 Peter____ , actor, son of Henry, born in
+Fonda
+10
+
+In 1940 Raquel ____ Chic (Myra Breckenridge, 1,000,000 BC, 100 Rifles), born in
+Welch
+10
+
+In 1940 Raul____ , actor (Gomez in the Addams Family), born in
+Julia
+10
+
+In 1940 Richard____ , comedian/actor (Lady Sings the Blues, Stir Crazy), born in
+Pryor
+10
+
+In 1940 Ringo____ , Beatles' drummer, born in
+Starr
+10
+
+In 1940 Roberta ____ (in North Carolina), singer, born in
+Flack
+10
+
+In 1940 Sam____ , actor, born in
+Melville
+10
+
+In 1940 Smokey____ , singer, born in
+Robinson
+10
+
+In 1940 Soviet Union annexes Estonia, ____ , Lithuania
+Latvia
+10
+
+In 1940 Soviet Union annexes Estonia, Latvia,____
+Lithuania
+10
+
+In 1940 Soviet Union annexes____ , Latvia, Lithuania
+Estonia
+10
+
+In 1940 The Battle of ____ began as Nazi forces attacked by air
+Britain
+10
+
+In 1940 Tide turns in Battle of Britain in WW II, RAF beats____
+Luftwaffe
+10
+
+In 1940 Tom____ , journalist, born in
+Brokaw
+10
+
+In 1940 Tom____ , singer, born in
+Jones
+10
+
+In 1940 US gives Britain ____ destroyers in exchange for Newfoundland base lease
+Fifty
+10
+
+In 1940 US gives Britain 50 destroyers in exchange for ____ base lease
+Newfoundland
+10
+
+In 1940 Valerie ____ (in Sufferin, NY), actor (Mary Tyler Moore Show, Rhoda), born in
+Harper
+10
+
+In 1940 Valerie Harper (in Sufferin, NY), actor (____ , Rhoda), born in
+Mary tyler moore show
+10
+
+In 1940 Valerie Harper (in Sufferin, NY), actor (Mary Tyler Moore Show,____ ), born in
+Rhoda
+10
+
+In 1940 Winston Churchill succeeds ____ as British PM
+Neville chamberlain
+10
+
+In 1940____ , deposed king of Greece (-1967), born in
+Constantine ii
+10
+
+In 1940, what candy company introduced its Peppermint Pattie?
+York Cone Co.
+10
+
+In 1941 ____ (in London, England), actress, born in
+Susannah york
+10
+
+In 1941 ____ (in Staten Island, NY), folk singer, born in
+Joan baez
+10
+
+In 1941 ____ Arias Sanchez, president of Costa Rica (1986- ) (Nobel 1987), born in
+Oscar
+10
+
+In 1941 ____ Bisset (in England), actor (Deep), born in
+Jaqueline
+10
+
+In 1941 ____ D. Kizim, Soviet cosmonaut (Soyuz T-3, T-10, T-15), born in
+Leonid
+10
+
+In 1941 ____ declares war on the U.S.S.R
+Finland
+10
+
+In 1941 ____ enters WW II against Russia
+Finland
+10
+
+In 1941 ____ Iglesias, singer, born in
+Julio
+10
+
+In 1941 ____ Redding, Georgia, rocker (Sitting on the Dock of the Bay), born in
+Otis
+10
+
+In 1941 ____ Reddy (in Melbourne, Australia), singer (I am Woman) born
+Helen
+10
+
+In 1941 ____ V. Malyshev, Soviet cosmonaut (Soyuz T-2, T-11)
+Yuri
+10
+
+In 1941 Barbara ____ (in Pittsburgh, PA), actor (Get Smart's 99), born in
+Feldon
+10
+
+In 1941 British aircraft carrier Ark Royal sank in____
+Mediterranean
+10
+
+In 1941 Charlie____ , drummer (Rolling Stones), born in
+Watts
+10
+
+In 1941 England's House of Commons detroyed in a____
+Blitz
+10
+
+In 1941 Eric ____ rocker (Animals-House of the Rising Sun), born in
+Burdon
+10
+
+In 1941 Eric____ , rocker (Animals-House of the Rising Sun)
+Burdon
+10
+
+In 1941 First ____ ship in WW2 captured by US ship (Busko)
+German
+10
+
+In 1941 First German ship in WW2 captured by US ship (____ )
+Busko
+10
+
+In 1941 Franklin D. ____ and Winston S. Churchill signed the Atlantic Charter
+Roosevelt
+10
+
+In 1941 Franklin D. Roosevelt and Winston S. ____ signed the Atlantic Charter
+Churchill
+10
+
+In 1941 Germany blitzes ____ , England
+Coventry
+10
+
+In 1941 Germany declares war on ____ during WW II
+Soviet union
+10
+
+In 1941 Helen ____ (in Melbourne, Australia), singer (I am Woman) born
+Reddy
+10
+
+In 1941 James Joyce novelist, dies in____ , Switzerland, at 58
+Zurich
+10
+
+In 1941 Japanese bomb ____ Harbour. The USA join Allies in fighting the Axis forces soon after
+Pearl
+10
+
+In 1941 Jaqueline ____ (in England), actor (Deep), born in
+Bisset
+10
+
+In 1941 Jaqueline Bisset (in England), actor (____ ), born in
+Deep
+10
+
+In 1941 Julio____ , singer, born in
+Iglesias
+10
+
+In 1941 Leonid D.____ , Soviet cosmonaut (Soyuz T-3, T-10, T-15), born in
+Kizim
+10
+
+In 1941 Marcus ____ dies at 52 in London England
+Garvey
+10
+
+In 1941 Marcus Garvey dies at ____ in London England
+52
+10
+
+In 1941 Novelist and critic Virginia ____ died
+Woolf
+10
+
+In 1941 Oscar ____ Sanchez, president of Costa Rica (1986- ) (Nobel 1987), born in
+Arias
+10
+
+In 1941 Oscar Arias Sanchez, president of ____ (1986- ) (Nobel 1987), born in
+Costa rica
+10
+
+In 1941 Oscar Arias____ , president of Costa Rica (1986- ) (Nobel 1987), born in
+Sanchez
+10
+
+In 1941 Otis____ , Georgia, rocker (Sitting on the Dock of the Bay), born in
+Redding
+10
+
+In 1941 Phil____ , musician (Genesis), actor (Buster), born in
+Collins
+10
+
+In 1941 Placido____ , Madrid Spain, opera tenor, born in
+Domingo
+10
+
+In 1941 President FDR signed into law the ____ Bill
+Lend-lease
+10
+
+In 1941 Ritchie____ , singer (Donna, La Bamba), born in
+Valens
+10
+
+In 1941 Robert ____ (a.k.a. Bob Dylan) (in Minnesota), folk singer
+Zimmerman
+10
+
+In 1941 Ryan ____ , actor, born in
+O'neal
+10
+
+In 1941 Sergio____ , artist, born in
+Mendes
+10
+
+In 1941 Siege of ____ by Nazi troops began during WW II
+Leningrad
+10
+
+In 1941 The Allies, along with Free France declare war on____
+Japan
+10
+
+In 1941 US forces land in ____ to forestall Nazi invasion
+Iceland
+10
+
+In 1941 Yuri V.____ , Soviet cosmonaut (Soyuz T-2, T-11)
+Malyshev
+10
+
+In 1941____ , actress (Chinatown, Bonnie & Clyde), born in
+Faye dunaway
+10
+
+In 1941____ , actress, born in
+Suzannah york
+10
+
+In 1941, the deputy Chancellor of Germany flew to Britain to try to sue for peace He was imprisoned in Spandau prison Who was he?
+Rudolph Hess
+10
+
+In 1942 ____ arrested Indian nationalist Mohandas K. Gandhi
+Britain
+10
+
+In 1942 ____ Crichton, author (Andromeda Strain, Jurrasic Park, Rising Sun), born in
+Michael
+10
+
+In 1942 ____ Eastman McCartney, singer, born in
+Linda
+10
+
+In 1942 ____ England, Broadway star (Phantom of the Opera), born in
+Michael crawford
+10
+
+In 1942 ____ forces retreated in the World War II Battle of Midway
+Japanese
+10
+
+In 1942 ____ Funichello (in Utica, NY), mouseketeer, actor, born in
+Annette
+10
+
+In 1942 ____ Hayes, composer, musician, born in
+Isaac
+10
+
+In 1942 ____ Hoskins, Suffolk, England, actor (Brazil, Who Framed Roger Rabbit?), born in
+Bob
+10
+
+In 1942 ____ Johnson fashion designer (1971 Winnie Award), born in
+Betsy
+10
+
+In 1942 ____ regulations implemented in San Francisco
+Dimout
+10
+
+In 1942 ____ Russell Lange PM (L) New Zealand, born in
+David
+10
+
+In 1942 ____ Simon, singer (Kodachrome, Graceland), born in
+Paul
+10
+
+In 1942 ____ takes Tobruk in North Africa
+Rommel
+10
+
+In 1942 1st controlled ____ chain reaction (University of Chicago)
+Nuclear
+10
+
+In 1942 28 nations, at war with____ , pledge no separate peace
+Axis
+10
+
+In 1942 Actors ____ Cronyn and Jessica Tandy are married
+Hume
+10
+
+In 1942 Actors Hume ____ and Jessica Tandy are married
+Cronyn
+10
+
+In 1942 Actors Hume Cronyn and ____ Tandy are married
+Jessica
+10
+
+In 1942 Actors Hume Cronyn and Jessica ____ are married
+Tandy
+10
+
+In 1942 Allied forces invade North____
+Africa
+10
+
+In 1942 American and ____ forces overwhelmed by Japanese at Bataan
+Filipino
+10
+
+In 1942 Annette ____ (in Utica, NY), mouseketeer, actor, born in
+Funichello
+10
+
+In 1942 Annette Funichello (in Utica, NY), ____ , actor, born in
+Mouseketeer
+10
+
+In 1942 Aretha ____ (in Detroit, MI), singer, born in
+Franklin
+10
+
+In 1942 Art____ , singer/actor (Sounds of Silence, Carnal Knowledge), born in
+Garfunkel
+10
+
+In 1942 Barbra ____ (in Brooklyn, NY), singer, actress, profile, born in
+Streisand
+10
+
+In 1942 Battle of ____ turning point in war in Pacific began
+Midway
+10
+
+In 1942 Battle of Midway turning point in war in ____ began
+Pacific
+10
+
+In 1942 Betsy ____ fashion designer (1971 Winnie Award), born in
+Johnson
+10
+
+In 1942 Bob____ , Suffolk, England, actor (Brazil, Who Framed Roger Rabbit?), born in
+Hoskins
+10
+
+In 1942 Britain arrested Indian nationalist ____ K. Gandhi
+Mohandas
+10
+
+In 1942 Britain arrested Indian nationalist Mohandas K.____
+Gandhi
+10
+
+In 1942 British naval forces raid Nazi occupied French port of St.____
+Nazaire
+10
+
+In 1942 British RAF staged a ____ -bomb raid on Bremen Germany (WW II)
+Thousand
+10
+
+In 1942 Curtis____ , musician, born in
+Mayfield
+10
+
+In 1942 David ____ Lange PM (L) New Zealand, born in
+Russell
+10
+
+In 1942 David Russell ____ PM (L) New Zealand, born in
+Lange
+10
+
+In 1942 During WW II, Britain launches major offensive at El Alamein,____
+Egypt
+10
+
+In 1942 During WW II, Britain launches major offensive at____ , Egypt
+El alamein
+10
+
+In 1942 During WWII Germany completed their occupation of____
+France
+10
+
+In 1942 First American expeditionary force to land in ____ (WW II)
+Africa
+10
+
+In 1942 First American offensive in Pacific in WW2, ____ , Solomon Is
+Guadalcanal
+10
+
+In 1942 First American pilot to shoot down German fighter plane, SF____
+Junkin
+10
+
+In 1942 First nylon parachute jump Hartford Ct Adeline____
+Gray
+10
+
+In 1942 First self-sustaining nuclear chain reaction demonstrated in one of the squash court under Stagg Field, University of____
+Chicago
+10
+
+In 1942 Gen. Douglas MacArthur left ____ for Australia
+Bataan
+10
+
+In 1942 German ____ begin harassing shipping on US east coast
+U-boats
+10
+
+In 1942 German SS kills ____ Jews in Minsk, Belorussia
+25,000
+10
+
+In 1942 German SS kills 25,000 ____ in Minsk, Belorussia
+Jews
+10
+
+In 1942 German SS kills 25,000 Jews in____ , Belorussia
+Minsk
+10
+
+In 1942 Harrison ____ actor (Star Wars, Indiana Jones, Frantic), born in
+Ford
+10
+
+In 1942 Harrison Ford actor (____ , Indiana Jones, Frantic), born in
+Star wars
+10
+
+In 1942 Harrison Ford actor (Star Wars, ____ , Frantic), born in
+Indiana jones
+10
+
+In 1942 Harrison Ford actor (Star Wars, Indiana Jones,____ ), born in
+Frantic
+10
+
+In 1942 Henry Ford patents a method of constructing ____ auto bodies
+Plastic
+10
+
+In 1942 Isaac____ , composer, musician, born in
+Hayes
+10
+
+In 1942 Japanese occupied?
+Manila
+10
+
+In 1942 Jerry ____ SF, rocker (Grateful Dead), born in
+Garcia
+10
+
+In 1942 Linda ____ McCartney, singer, born in
+Eastman
+10
+
+In 1942 Linda Eastman____ , singer, born in
+Mccartney
+10
+
+In 1942 Massacre at ____ (Czechoslovakia) Gestapo kills 173
+Lidice
+10
+
+In 1942 Massacre at Lidice (Czechoslovakia) Gestapo kills____
+173
+10
+
+In 1942 Michael Crichton, author (____ , Jurrasic Park, Rising Sun), born in
+Andromeda strain
+10
+
+In 1942 Michael Crichton, author (Andromeda Strain, ____ , Rising Sun), born in
+Jurrasic park
+10
+
+In 1942 Michael Crichton, author (Andromeda Strain, Jurrasic Park,____ ), born in
+Rising sun
+10
+
+In 1942 Michael____ , actor (Three Musketeers), born in
+York
+10
+
+In 1942 Michael____ , author (Andromeda Strain, Jurrasic Park, Rising Sun), born in
+Crichton
+10
+
+In 1942 Mick____ , musician born
+Fleetwood
+10
+
+In 1942 Mohammed____ , boxer ,born
+Ali
+10
+
+In 1942 Montgomery (Br) defeats ____ (Ger) in battle of Alamein (WW II)
+Rommel
+10
+
+In 1942 Paul____ , singer (Kodachrome, Graceland), born in
+Simon
+10
+
+In 1942 Pyotr I.____ , Soviet cosmonaut (Soyuz 13, 18, 30), born in
+Klimuk
+10
+
+In 1942 Rommel takes ____ in North Africa
+Tobruk
+10
+
+In 1942 Rommel takes Tobruk in North____
+Africa
+10
+
+In 1942 Taj ____ NYC, singer/songwriter (The Real Thing), born in
+Mahal
+10
+
+In 1942 US and ____ sign Lend-Lease agreement during World War II
+Ussr
+10
+
+In 1942 US bombers staged 1st independent raid on ____ attack Rouen, France
+Europe
+10
+
+In 1942 US bombers staged 1st independent raid on Europe attack____ , France
+Rouen
+10
+
+In 1942 Wayne ____ , singer, born in
+Newton
+10
+
+In 1942____ , boxer who floats like a butterfly, stings like a bee, born in
+Muhammed ali
+10
+
+In 1943 ____ 'Tuesday' Weld (in New York City), actor born
+Susan
+10
+
+In 1943 ____ (Leitch) Scotland, rock singer (Mellow Yellow), born in
+Donovan
+10
+
+In 1943 ____ and Italian Marshal Pietro Badoglio sign an armistice
+Eisenhower
+10
+
+In 1943 ____ Chase, comedian, actor (SNL, Vacation, Fletch, Caddyshack), born in
+Chevy
+10
+
+In 1943 ____ Crumb cartoonist (Father Time), born in
+Robert
+10
+
+In 1943 ____ De Niro, actor (Bang the Drum Slowly, Taxi Driver), born in
+Robert
+10
+
+In 1943 ____ declares war on former ally Germany
+Italy
+10
+
+In 1943 ____ Deneuve (in Paris, France), (Repulsion), born in
+Catherine
+10
+
+In 1943 ____ found after being adrift 133 days
+Poon lim
+10
+
+In 1943 ____ invade Italy
+Allies
+10
+
+In 1943 ____ Marshall (in New York City), actor (Laverne and Shirley), born in
+Penny
+10
+
+In 1943 ____ North, arms dealer, born in
+Oliver
+10
+
+In 1943 ____ quintuplets born in Buenos Aires, Argentina
+Diligenti
+10
+
+In 1943 ____ surrenders to the allies in WW II
+Italy
+10
+
+In 1943 ____ took the oath of office as president of China
+Chiang kai-shek
+10
+
+In 1943 ____ Walesa, Popowo Poland, leads Polish Solidarity (Nobel 1983), born in
+Lech
+10
+
+In 1943 ____ Waters, (Pink Floyd-The Wall), born in
+Roger
+10
+
+In 1943 (England) Ben____ , Scarborough, actor, born in
+Kingsley
+10
+
+In 1943 (USA) John ____ singer, born in
+Denver
+10
+
+In 1943 Allies invade____
+Italy
+10
+
+In 1943 Axis forces in ____ surrender
+North africa
+10
+
+In 1943 Benito ____ dismissed as premier of Italy during WW II
+Mussolini
+10
+
+In 1943 Canadian Army troops arrive in?
+North africa
+10
+
+In 1943 Catherine ____ (in Paris, France), (Repulsion), born in
+Deneuve
+10
+
+In 1943 Chevy Chase, comedian, actor (SNL, Vacation, ____ , Caddyshack), born in
+Fletch
+10
+
+In 1943 Chevy Chase, comedian, actor (SNL, Vacation, Fletch,____ ), born in
+Caddyshack
+10
+
+In 1943 Chevy____ , comedian, actor (SNL, Vacation, Fletch, Caddyshack), born in
+Chase
+10
+
+In 1943 Composer Sergei ____ died
+Rachmaninoff
+10
+
+In 1943 David____ , record company president, born in
+Geffen
+10
+
+In 1943 Eisenhower and Italian Marshal ____ Badoglio sign an armistice
+Pietro
+10
+
+In 1943 Eisenhower and Italian Marshal Pietro ____ sign an armistice
+Badoglio
+10
+
+In 1943 FDR appoints Gen Eisenhower supreme commander of ____ forces
+Allied
+10
+
+In 1943 George____ , singer (Beatles), born in
+Harrison
+10
+
+In 1943 Jews attack Nazi occupation forces at ____ Ghetto
+Warsaw
+10
+
+In 1943 Jews in the ____ Ghetto begin resistance of Nazis
+Warsaw
+10
+
+In 1943 Keith____ , guitarist (Rolling Stones),born
+Richard
+10
+
+In 1943 Lebanon gained independence from ____ (National Day)
+France
+10
+
+In 1943 Lech Walesa, Popowo Poland, leads Polish ____ (Nobel 1983), born in
+Solidarity
+10
+
+In 1943 Lech____ , Popowo Poland, leads Polish Solidarity (Nobel 1983), born in
+Walesa
+10
+
+In 1943 Lynn ____ (in London, England), actor, political activist, born in
+Redgrave
+10
+
+In 1943 Malcolm____ , actor, born in
+Mcdowell
+10
+
+In 1943 Michael ____ comedian (Monty Python, Fish Called Wanda), born in
+Palin
+10
+
+In 1943 Mick____ , Rolling Stone singer, born in
+Jagger
+10
+
+In 1943 Oliver____ , arms dealer, born in
+North
+10
+
+In 1943 Penny ____ (in New York City), actor (Laverne and Shirley), born in
+Marshall
+10
+
+In 1943 Penny Marshall (in New York City), actor (____ ), born in
+Laverne and shirley
+10
+
+In 1943 Poon Lim found after being adrift ____ days
+133
+10
+
+In 1943 Robert ____ cartoonist (Father Time), born in
+Crumb
+10
+
+In 1943 Robert De Niro, actor (Bang the Drum Slowly,____ ), born in
+Taxi driver
+10
+
+In 1943 Robert____ , actor (Bang the Drum Slowly, Taxi Driver), born in
+De niro
+10
+
+In 1943 Roger____ , (Pink Floyd-The Wall), born in
+Waters
+10
+
+In 1943 Roosevelt, Churchill and Stalin met at____
+Tehran
+10
+
+In 1943 Soviets announce they broke the long Nazi siege of?
+Leningrad
+10
+
+In 1943 Susan '____ ' Weld (in New York City), actor born
+Tuesday
+10
+
+In 1943 Susan 'Tuesday' ____ (in New York City), actor born
+Weld
+10
+
+In 1943 U.S. and Britain invade ____ in WWII
+Sicily
+10
+
+In 1943 U.S. wins Battle of ____ Sea over Japan
+Bismark
+10
+
+In 1943 World's largest office building, ____ , completed
+Pentagon
+10
+
+In 1943____ , bluesy rock singer (Down on Me), born in
+Janis joplin
+10
+
+In 1943, a Swiss chemist accidentally discovered which drug?
+Lsd
+10
+
+In 1943, the whole population of Naples was dusted with DDT. What organism did this kill?
+Lice
+10
+
+In 1944 ____ [Jesse Kuhaulua] Hawaii, 1st non-Japanese sumo champion, born in
+Takamiyama
+10
+
+In 1944 ____ Douglas, actor, producer, born in
+Michael
+10
+
+In 1944 ____ Elliott, actor, born in
+Sam
+10
+
+In 1944 ____ Entwistle, rocker (The Who), born in
+John
+10
+
+In 1944 ____ Frank, 15, (Diary of Anne Frank) is arrested by Nazis
+Anne
+10
+
+In 1944 ____ Gandhi, PM of India (1984-1991), born in
+Rajiv
+10
+
+In 1944 ____ LaBelle, singer born
+Patty
+10
+
+In 1944 ____ liberated from Nazi occupation (Romanian National Day)
+Rumania
+10
+
+In 1944 ____ liberated from Nazi occupation
+Paris
+10
+
+In 1944 ____ liberated from the Fascist armies of Mussolini
+Rome
+10
+
+In 1944 ____ Observatory is damaged by World War II flying bomb
+Greenwich
+10
+
+In 1944 ____ reoccupied by Allies
+Calais
+10
+
+In 1944 ____ Tosh, Jamaica, reggae musician, born in
+Peter
+10
+
+In 1944 ____ troops invade Czechoslovakia during WW II
+Soviet
+10
+
+In 1944 ____ troops invade Yugoslavia
+Soviet
+10
+
+In 1944 ____ White, singer, born in
+Barry
+10
+
+In 1944 1st ____ jet fighter used in combat (Gloster Meteor)
+British
+10
+
+In 1944 1st B-29 raid against mainland ____
+Japan
+10
+
+In 1944 1st jet fighter used in combat (____ 262)
+Messerschmitt
+10
+
+In 1944 Allied forces liberate ____ from Nazis
+Luxembourg
+10
+
+In 1944 Anne Frank, 15, (Diary of Anne Frank) is arrested by____
+Nazis
+10
+
+In 1944 Anne____ , 15, (Diary of Anne Frank) is arrested by Nazis
+Frank
+10
+
+In 1944 Barry____ , singer, born in
+White
+10
+
+In 1944 Battle of ____ (U.S. victory on Feb 22)
+Eniwetok atoll
+10
+
+In 1944 Battle of the ____ begins
+Bulge
+10
+
+In 1944 British troops capture ____ Ethiopia
+Addis ababa
+10
+
+In 1944 D-Day. Invasion of Europe; Allies storm____ , France
+Normandy
+10
+
+In 1944 Diana ____ (in Detroit, Michigan), singer (The Supremes), born in
+Ross
+10
+
+In 1944 English and Indian troops drove ____ forces during W.W.I
+Japanesei
+10
+
+In 1944 Erno ____ Budapest, inventor (Rubik's cube), born in
+Rubik
+10
+
+In 1944 First ____ captured and boarded on high seas - U 505
+Submarine
+10
+
+In 1944 First B-29 bombing raid ____ plane lost; engine failure
+One
+10
+
+In 1944 First mobile ____ delivered, Philadelphia PA
+Electric power plant
+10
+
+In 1944 Gary ____ [Paul Gadd] England, rocker (Rock & Roll Part II), born in
+Glitter
+10
+
+In 1944 George ____ director (Star Wars), born in
+Lucas
+10
+
+In 1944 German battleship Tirpitz was sunk off____
+Norway
+10
+
+In 1944 German Field Marshal ____ Rommel commits suicide rather than face trial for his part in an attempt to overthrow Hitler
+Erwin
+10
+
+In 1944 German Field Marshal Erwin ____ commits suicide rather than face trial for his part in an attempt to overthrow Hitler
+Rommel
+10
+
+In 1944 In occupied ____ the Nazis executed more than 300 civilians
+Rome
+10
+
+In 1944 Joe ____ England, rock musician (You can leave your hat on), born in
+Cocker
+10
+
+In 1944 John Entwistle, rocker (____ ), born in
+The who
+10
+
+In 1944 John____ , rocker (The Who), born in
+Entwistle
+10
+
+In 1944 Ken____ , actor, director, born in
+Howard
+10
+
+In 1944 Marvin____ , US composer/pianist (The Sting, Chorus Line), born in
+Hamlisch
+10
+
+In 1944 Mary____ , singer (Supremes), born in
+Wilson
+10
+
+In 1944 Michael Fish British TV ____ , born in
+Weatherman
+10
+
+In 1944 Michael____ , actor, producer, born in
+Douglas
+10
+
+In 1944 Nazi Germany begins ____ (Fieseler Fi-103) buzz-bomb attacks
+V-1
+10
+
+In 1944 Patti____ , singer born
+Labelle
+10
+
+In 1944 Patty____ , singer born
+Labelle
+10
+
+In 1944 Peter____ , Jamaica, reggae musician, born in
+Tosh
+10
+
+In 1944 Rajiv____ , PM of India (1984-1991), born in
+Gandhi
+10
+
+In 1944 Republic of ____ proclaimed at Thingvallir, Iceland
+Iceland
+10
+
+In 1944 Republic of Iceland proclaimed at____ , Iceland
+Thingvallir
+10
+
+In 1944 Revolution by workers and students in____
+Guatemala
+10
+
+In 1944 Rutger____ , actor (Blade Runner, Ladyhawke, Osterman Weekend), born in
+Hauer
+10
+
+In 1944 Sam____ , actor, born in
+Elliott
+10
+
+In 1944 Soviet troops invade ____ during WW II
+Czechoslovakia
+10
+
+In 1944 Soviet troops invade____
+Yugoslavia
+10
+
+In 1944 Stockard ____ (in New York), born in
+Channing
+10
+
+In 1944 The assault on ____ begins
+Anzio
+10
+
+In 1944 US 1st army begins battle of____
+Aachen
+10
+
+In 1944____ , boxer, born in
+Joe frazier
+10
+
+In 1945 ____ (Harris Glenn Milstead) film actor, born in
+Divine
+10
+
+In 1945 ____ (with 5 streetcar lines) forced to close
+Los angeles railway
+10
+
+In 1945 ____ becomes 1st nation to formally accept UN Charter
+Nicaragua
+10
+
+In 1945 ____ Conference (Roostevelt, Stalin, Churchill) holds first meeting
+Potsdam
+10
+
+In 1945 ____ Day; formal surrender of Japan aboard USS Missouri
+V-j
+10
+
+In 1945 ____ declares independence from France (National Day)
+Vietnam
+10
+
+In 1945 ____ declares independence from Netherlands (National Day)
+Indonesia
+10
+
+In 1945 ____ dropped on Hiroshima by the 'Enola Gay' (Pacific Time)
+Atom bomb
+10
+
+In 1945 ____ Feliciano, singer/songwriter (Light my Fire), born in
+Jose
+10
+
+In 1945 ____ liberated from Japanese rule. (Liberation Day in South Korea), born in
+South korea
+10
+
+In 1945 ____ liberated from Nazi occupation (National Day)
+Hungary
+10
+
+In 1945 ____ Lithgow, actor (Harry and the Hendersons, 3rd Rock From The Sun), born in
+John
+10
+
+In 1945 ____ McLean, singer, songwriter (American Pie, Vincent) born
+Don
+10
+
+In 1945 ____ Morrison Belfast, singer (Here Comes the Night), born in
+Van
+10
+
+In 1945 ____ Peron becomes dictator of Argentina
+Juan
+10
+
+In 1945 ____ Republic Day
+Yugoslav
+10
+
+In 1945 ____ resigns as Britain's PM
+Churchill
+10
+
+In 1945 ____ troops enter Berlin
+Soviet
+10
+
+In 1945 'Pepe Le Pew' debuts in his first?
+Cartoon
+10
+
+In 1945 2nd Republic of ____ forms
+Austria
+10
+
+In 1945 800 people killed as ____ attacked USS Franklin off Japan
+Kamikaze
+10
+
+In 1945 Adolf Hitler and wife ____ commit suicide
+Eva braun
+10
+
+In 1945 American forces launched the invasion of ____ during WW II
+Okinawa
+10
+
+In 1945 As he vowed, ____ returned to the Philippines
+General Douglas macarthur
+10
+
+In 1945 Atom Bomb dropped on ____ by the 'Enola Gay' (Pacific Time)
+Hiroshima
+10
+
+In 1945 Atom Bomb dropped on Hiroshima by the '____ (Pacific Time)
+Enola gay
+10
+
+In 1945 Benito ____ Fascist leader & mistress captured, tried, & shot
+Mussolini
+10
+
+In 1945 Bette____ , singer/actress (Do You Want to Dance?), born in
+Midler
+10
+
+In 1945 Bjorn ____ , rock vocalist/guitarist (ABBA), born in
+Ulvaeus
+10
+
+In 1945 British ____ Day
+Empire
+10
+
+In 1945 Burt ____ LA Calif, actor (Robin-Batman T.V. Show), born in
+Ward
+10
+
+In 1945 Burt Ward LA Calif, actor (Robin____ T.V. Show), born in
+Batman
+10
+
+In 1945 Deborah ____ singer (Blondie) actress (Videodrome, Hairspray), born in
+Harry
+10
+
+In 1945 Deborah Harry singer (____ ) actress (Videodrome, Hairspray), born in
+Blondie
+10
+
+In 1945 Deborah Harry singer (Blondie) actress (____ , Hairspray), born in
+Videodrome
+10
+
+In 1945 Deborah Harry singer (Blondie) actress (Videodrome,____ ), born in
+Hairspray
+10
+
+In 1945 Deborah____ , rocker (Blondie-Heart of Glass), born in
+Harry
+10
+
+In 1945 Divine (____ Glenn Milstead) film actor, born in
+Harris
+10
+
+In 1945 Divine (Harris ____ Milstead) film actor, born in
+Glenn
+10
+
+In 1945 Divine (Harris Glenn____ ) film actor, born in
+Milstead
+10
+
+In 1945 Don McLean, singer, songwriter (____ , Vincent) born
+American pie
+10
+
+In 1945 Don____ , musician (Eagles), born in
+Henley
+10
+
+In 1945 Don____ , singer, songwriter (American Pie, Vincent) born
+Mclean
+10
+
+In 1945 During World War II, US forces crossed the ____ River
+Rhine
+10
+
+In 1945 During WW II Allied bombers began ____ days of raids over Germany
+Four
+10
+
+In 1945 Ecuador and ____ join the United Nations
+Iraq
+10
+
+In 1945 Eric____ , guitarist, singer, born in
+Clapton
+10
+
+In 1945 First atomic blast, ____ Site, Alamogordo, New Mexico
+Trinity
+10
+
+In 1945 Franklin D. Rooseveldt dies of a ____ in Warm Springs, Ga
+Cerebral hemorrhage
+10
+
+In 1945 Gen George C. Marshall named special U.S. envoy to____
+China
+10
+
+In 1945 Gen. ____ declared German defenses on Western Front broken
+Eisenhower
+10
+
+In 1945 Indonesia declares independence from ____ (National Day)
+Netherlands
+10
+
+In 1945 International ____ Day
+Women's
+10
+
+In 1945 International War Crimes Tribunal opens trial of Nazi leaders in____
+Nuremberg
+10
+
+In 1945 Japan announces willingness to surrender to Allies provided the status of Emperor ____ remained unchanged
+Hirohito
+10
+
+In 1945 Japanese forces in the ____ surrender to Allies
+Philippines
+10
+
+In 1945 Japanese forces on ____ surrender to US during WW II
+Okinawa
+10
+
+In 1945 Japanese in S Korea, ____ , China, Indochina surrender to Allies
+Taiwan
+10
+
+In 1945 Japanese in S Korea, Taiwan, ____ , Indochina surrender to Allies
+China
+10
+
+In 1945 Japanese in S Korea, Taiwan, China, ____ surrender to Allies
+Indochina
+10
+
+In 1945 Japanese in____ , Taiwan, China, Indochina surrender to Allies
+S korea
+10
+
+In 1945 Jim ____ cartoonist (Garfield), born in
+Davis
+10
+
+In 1945 Jim Davis cartoonist (____ ), born in
+Garfield
+10
+
+In 1945 John Lithgow, actor (Harry and the Hendersons,____ ), born in
+3rd rock from the sun
+10
+
+In 1945 John____ , actor (Harry and the Hendersons, 3rd Rock From The Sun), born in
+Lithgow
+10
+
+In 1945 John____ , actor, born in
+Heard
+10
+
+In 1945 Jose Feliciano, singer/songwriter (____ ), born in
+Light my fire
+10
+
+In 1945 Jose____ , singer/songwriter (Light my Fire), born in
+Feliciano
+10
+
+In 1945 Juan ____ becomes dictator of Argentina
+Peron
+10
+
+In 1945 Juan Peron becomes dictator of____
+Argentina
+10
+
+In 1945 Lebanon and ____ are made independent
+Syria
+10
+
+In 1945 Marines land on?
+Iwo jima
+10
+
+In 1945 Mia ____ (in Los Angeles, CA), actress, born in
+Farrow
+10
+
+In 1945 Nazi ____ committed suicide while in prison at Luneburg, Germany
+Himmler
+10
+
+In 1945 Nazi concentration camp at ____ liberated by US 80th Division
+Buchenwald
+10
+
+In 1945 Nazi General Von ____ surrenders to Russian Marshal Zhukov near Berlin
+Keitel
+10
+
+In 1945 Nazi Himmler committed suicide while in prison at____ , Germany
+Luneburg
+10
+
+In 1945 Netherlands & ____ liberated from Nazi control
+Denmark
+10
+
+In 1945 Pat ____ (in Los Angeles), actor (Peyton Place), born in
+Morrow
+10
+
+In 1945 Peter ____ singer (Who-Tommy), born in
+Townsend
+10
+
+In 1945 Potsdam Conference (____ , Stalin, Churchill) holds first meeting
+Roostevelt
+10
+
+In 1945 Potsdam Conference (Roostevelt, ____ , Churchill) holds first meeting
+Stalin
+10
+
+In 1945 Potsdam Conference (Roostevelt, Stalin,____ ) holds first meeting
+Churchill
+10
+
+In 1945 President ____ announced atomic bomb secret shared with Britain and Canada
+Truman
+10
+
+In 1945 President Truman announced atomic bomb secret shared with ____ and Canada
+Britain
+10
+
+In 1945 President Truman announced atomic bomb secret shared with Britain and____
+Canada
+10
+
+In 1945 Priscilla____ , actor, wife of Elvis born
+Presley
+10
+
+In 1945 Richard ____ rocker (Pink Floyd-The Wall), born in
+Wright
+10
+
+In 1945 Riot in ____ celebrating end of World War II
+San francisco
+10
+
+In 1945 Rob____ , actor, director (All in the Family, Spinal Tap), born in
+Reiner
+10
+
+In 1945 Robert____ , rocketry pioneer, died
+Goddard
+10
+
+In 1945 Roosevelt, ____ , and Stalin began a conference at Yalta
+Churchill
+10
+
+In 1945 Roosevelt, Churchill, and ____ began a conference at Yalta
+Stalin
+10
+
+In 1945 Russia takes?
+Berlin
+10
+
+In 1945 South Korea liberated from ____ rule. (Liberation Day in South Korea), born in
+Japanese
+10
+
+In 1945 The Soviet Union invaded ____ during World War II
+Austria
+10
+
+In 1945 Tokyo ____ raids, using B-29's, damage Imperial Palace
+Incendiary
+10
+
+In 1945 Tom____ , actor (Lance-Rockford Files, Magnum PI), born in
+Selleck
+10
+
+In 1945 Truman, ____ and Churchill final Allied summit meeting of WWII
+Stalin
+10
+
+In 1945 Truman, Stalin and ____ final Allied summit meeting of WWII
+Churchill
+10
+
+In 1945 U.S. and ____ forces recaptured Corregidor
+Philippine
+10
+
+In 1945 UN Charter signed by ____ nations in SF
+Fifty
+10
+
+In 1945 Uruguay joined the ____ Nations
+United
+10
+
+In 1945 US 7th army captured German city of ____
+Nuremberg
+10
+
+In 1945 US drops ____ atomic bomb on Japan destroying part of Nagasaki. An estimated 74,000 people died. The original target was Kokura
+Second
+10
+
+In 1945 US drops second atomic bomb on Japan destroying part of Nagasaki. An estimated ____ people died. The original target was Kokura
+74,000
+10
+
+In 1945 US drops second atomic bomb on Japan destroying part of____ . An estimated 74,000 people died. The original target was Kokura
+Nagasaki
+10
+
+In 1945 US forces defeat ____ at Iwo Jima
+Japanese
+10
+
+In 1945 US forces land on ____ (complete conquest on March 3)
+Corregidor
+10
+
+In 1945 US liberates Nazi concentration camp in ____ , Germany
+Dachau
+10
+
+In 1945 US Marines raise flag on____ , famous photo and statue
+Iwo jima
+10
+
+In 1945 US Navy destroys ____ Japanese ships in the Battle of South China Sea
+4
+10
+
+In 1945 V-E Day; Germany signs unconditional surrender, ____ ends in Europe
+Ww ii
+10
+
+In 1945 V-J Day; formal surrender of ____ aboard USS Missouri
+Japan
+10
+
+In 1945 V-J Day; formal surrender of Japan aboard USS____
+Missouri
+10
+
+In 1945 Van ____ Belfast, singer (Here Comes the Night), born in
+Morrison
+10
+
+In 1945 Vietnam declares independence from ____ (National Day)
+France
+10
+
+In 1945 Women in ____ allowed to vote for the first time
+France
+10
+
+In 1945 Yalta Conference agreed that ____ would enter WWII against Japan
+Russia
+10
+
+In 1945____ , Churchill, and Stalin began a conference at Yalta
+Roosevelt
+10
+
+In 1945____ , singer, born in
+Rod stewart
+10
+
+In 1945____ , Stalin and Churchill final Allied summit meeting of WWII
+Truman
+10
+
+In 1946 ____ (in Los Angeles, CA), actor, born in
+Diane keaton
+10
+
+In 1946 ____ adopts new constitution, becomes a federal republic
+Yugoslavia
+10
+
+In 1946 ____ Ann Warren (in New York City), actor, born in
+Leslie
+10
+
+In 1946 ____ Carpenter, musician (Carpenters), born in
+Richard
+10
+
+In 1946 ____ disabled Vietnam vet (Born on 4th of July was based on his life), born in
+Ron kovic
+10
+
+In 1946 ____ gained independence from US
+Philippines
+10
+
+In 1946 ____ J. Jeans, astrophysicist, dies on his 69th birthday
+James
+10
+
+In 1946 ____ Lee Jones actor (Volcano, Batman Forever, Under Siege), born in
+Tommy
+10
+
+In 1946 ____ Mercury, singer, born in
+Freddie
+10
+
+In 1946 ____ Nazi leaders hanged as war criminals after Nuremberg trials
+Ten
+10
+
+In 1946 ____ officially submits to jurisdiction of World Court
+Us
+10
+
+In 1946 ____ Sarandon (in New York City), actor (Great Waldo Pepper) born
+Susan
+10
+
+In 1946 ____ Stone NYC, director (Wall St, Good Morning Vietnam, Platoon), born in
+Oliver
+10
+
+In 1946 ____ Vereen, dancer, actor, singer, born in
+Ben
+10
+
+In 1946 ____ went out of business, replaced by the U.N
+League of nations
+10
+
+In 1946 (England)____ , rocker (Pink Floyd-The Wall), born in
+Syd barrett
+10
+
+In 1946 (USA) President ____ officially proclaims end of WW-II
+Truman
+10
+
+In 1946 1st ____ manufactured; sold for US$39.50
+Electric blanket
+10
+
+In 1946 1st electric blanket manufactured; sold for US____
+$39.50
+10
+
+In 1946 28 former Jap leaders indicted in ____ as war criminals
+Tokyo
+10
+
+In 1946 4th French ____ established
+Republic
+10
+
+In 1946 Barry____ , singer, jingle writer (Like a Good Neighbor...)
+Manilow
+10
+
+In 1946 Ben____ , dancer, actor, singer, born in
+Vereen
+10
+
+In 1946 Candice ____ (in Beverly Hills), actor (Murphy Brown)
+Bergen
+10
+
+In 1946 Charlotte ____ (in England), actress, born in
+Rampling
+10
+
+In 1946 David Lynch, director (____ , Eraserhead), born in
+Dune
+10
+
+In 1946 Donald ____ master builder (Trump Towers/Plaza/Castle), born in
+Trump
+10
+
+In 1946 First ____ licensed for commercial use in New York City
+Helicopter
+10
+
+In 1946 First commercially designed ____ tested at Bridgeport, CT
+Helicopter
+10
+
+In 1946 First radar signal to____ , Belmar, NJ
+Moon
+10
+
+In 1946 Freddie____ , singer, born in
+Mercury
+10
+
+In 1946 Gregory____ , actor, dancer, born in
+Hines
+10
+
+In 1946 Hayley ____ (in London, England), actor, born in
+Mills
+10
+
+In 1946 Helen ____ [Eleni Mironova], England, actress (Prime Suspect), born in
+Mirren
+10
+
+In 1946 Henry ____ is first to take off shirt on TV
+Morgan
+10
+
+In 1946 Italian people chooses ____ over monarchy (National Day)
+Republic
+10
+
+In 1946 James J. Jeans, astrophysicist, dies on his ____ birthday
+69th
+10
+
+In 1946 James J.____ , astrophysicist, dies on his 69th birthday
+Jeans
+10
+
+In 1946 Joanna____ , Kashmir dia, actress (Absolutely Fabulous, The Avengers), born in
+Lumley
+10
+
+In 1946 Lana ____ (in Santa Monica, CA), actress, born in
+Wood
+10
+
+In 1946 League of Nations assembles for ____ time
+Last
+10
+
+In 1946 Leslie ____ Warren (in New York City), actor, born in
+Ann
+10
+
+In 1946 Leslie Ann ____ (in New York City), actor, born in
+Warren
+10
+
+In 1946 Linda ____ (in Tucson, Arizona), singer born
+Ronstadt
+10
+
+In 1946 Liza ____ (in Los Angeles, CA), singer, actor, born in
+Minnelli
+10
+
+In 1946 Louis ____ 's bikini swimsuit design debuts at Paris fashion show
+Reard
+10
+
+In 1946 Maud ____ (in Sweden), born in
+Adams
+10
+
+In 1946 Mother Frances Xavier ____ canonized as 1st American saint
+Cabrini
+10
+
+In 1946 Nazi ____ Goering poisons himself in prison
+Hermann
+10
+
+In 1946 Nazi Hermann ____ poisons himself in prison
+Goering
+10
+
+In 1946 Oliver ____ NYC, director (Wall St, Good Morning Vietnam, Platoon), born in
+Stone
+10
+
+In 1946 Oliver Stone NYC, director (____ , Good Morning Vietnam, Platoon), born in
+Wall st
+10
+
+In 1946 Oliver Stone NYC, director (Wall St, ____ , Platoon), born in
+Good morning vietnam
+10
+
+In 1946 Oliver Stone NYC, director (Wall St, Good Morning Vietnam,____ ), born in
+Platoon
+10
+
+In 1946 Prisoners revolt at____ , 5 die
+Alcatraz
+10
+
+In 1946 Richard Carpenter, musician (____ ), born in
+Carpenters
+10
+
+In 1946 Richard____ , musician (Carpenters), born in
+Carpenter
+10
+
+In 1946 Susan ____ (in New York City), actor (Great Waldo Pepper) born
+Sarandon
+10
+
+In 1946 Sylvester ____ NYC, actor/director (Rocky, Rambo, Cobra), born in
+Stallone
+10
+
+In 1946 Sylvester Stallone NYC, actor/director (____ , Rambo, Cobra), born in
+Rocky
+10
+
+In 1946 Sylvester Stallone NYC, actor/director (Rocky, ____ , Cobra), born in
+Rambo
+10
+
+In 1946 Sylvester Stallone NYC, actor/director (Rocky, Rambo,____ ), born in
+Cobra
+10
+
+In 1946 Ten Nazi leaders hanged as war criminals after ____ trials
+Nuremberg
+10
+
+In 1946 Tommy ____ Jones actor (Volcano, Batman Forever, Under Siege), born in
+Lee
+10
+
+In 1946 Tommy Lee ____ actor (Volcano, Batman Forever, Under Siege), born in
+Jones
+10
+
+In 1946 Tommy Lee Jones actor (____ , Batman Forever, Under Siege), born in
+Volcano
+10
+
+In 1946 Tommy Lee Jones actor (Volcano, ____ , Under Siege), born in
+Batman forever
+10
+
+In 1946 Tommy Lee Jones actor (Volcano, Batman Forever,____ ), born in
+Under siege
+10
+
+In 1946 Tyne ____ (in Madison, WI), actress (Cagney and Lacey), born in
+Daly
+10
+
+In 1946 UN Educational, Scientific, and ____ Organization formed. (UNESCO)
+Cultural
+10
+
+In 1946 UN set up temporary HQ at ____ in the Bronx
+Hunter college
+10
+
+In 1946 War broke out in Indochina as Ho Chi Minh attacked the____
+French
+10
+
+In 1946____ , country singer (Dolly, 9 to 5), born in
+Dolly parton
+10
+
+In 1946____ , rocker/actress (I got you babe, Jack Lalane, Mask), born in
+Cher
+10
+
+In 1946, the first TV ____ commercial aired. It was for Mr. Potato Head
+Toy
+10
+
+In 1947 ____ accepts constitution for parliamentary democracy
+Laos
+10
+
+In 1947 ____ aka Yusuf Islam, rocker (Peace Train, Father and Son), born in
+Cat stevens
+10
+
+In 1947 ____ and Pakistan granted independence within British Commonwealth after some 200 years of
+Indi
+10
+
+In 1947 ____ Dreyfuss, actor (Jaws, Close Encounters of the Third Kind), born in
+Richard
+10
+
+In 1947 ____ gained independence from Britain rule
+Pakistan
+10
+
+In 1947 ____ James (O.J.) Simpson, NFL running back (Buffalo Bills), born in
+Orenthal
+10
+
+In 1947 ____ King suspense writer (Shining, Kujo), born in
+Stephen
+10
+
+In 1947 ____ Kline, actor, born in
+Kevin
+10
+
+In 1947 ____ Pop [James Osterberg], Mich, rocker (Lust For Life, Search and Destroy), born in
+Iggy
+10
+
+In 1947 ____ Smith, actress (Charlie's Angel, Nightkill), born in
+Jaclyn
+10
+
+In 1947 ____ Waters, singer (Pink Floyd), born in
+Roger
+10
+
+In 1947 ____ Yeager pilots the world's first supersonic flight (Mach 1.015 at 12,800 m) at Muroc, CA
+Chuck
+10
+
+In 1947 (USA) ____ invented by Bardeen, Brattain and Shockley in Bell Labs
+Transistor
+10
+
+In 1947 Aleister____ , occultist dies at 74
+Crowley
+10
+
+In 1947 Ann ____ Missouri, soul singer (I Can't Stand the Rain), born in
+Peebles
+10
+
+In 1947 Billy____ , comedian, born in
+Crystal
+10
+
+In 1947 Britain's Princess Elizabeth, marries Duke Philip ____ in London's Westminster Abbey
+Mountbatten
+10
+
+In 1947 Carlos ____ Mexico, musician (Santana-Black Magic Woman), born in
+Santana
+10
+
+In 1947 Carole ____ (in New York), wife of Burt Bachrach, born in
+Bayer sager
+10
+
+In 1947 Cat Stevens aka____ , rocker (Peace Train, Father and Son), born in
+Yusuf islam
+10
+
+In 1947 Chuck ____ pilots the world's first supersonic flight (Mach 1.015 at 12,800 m) at Muroc, CA
+Yeager
+10
+
+In 1947 Dan____ , U.S. Vice-president (1989-1992), alleged twit, born in
+Quayle
+10
+
+In 1947 David ____ , late night television talk show host, born in
+Letterman
+10
+
+In 1947 Elton____ , singer, born in
+John
+10
+
+In 1947 Farrah ____ (in Texas), actress (Charlie's Angels), born in
+Fawcett-major
+10
+
+In 1947 First automobile to exceed ____ mph, John Cobb, Bonneville Salt Flats
+400
+10
+
+In 1947 First automobile to exceed 400 mph, ____ Cobb, Bonneville Salt Flats
+John
+10
+
+In 1947 First automobile to exceed 400 mph, John Cobb, ____ Salt Flats
+Bonneville
+10
+
+In 1947 First automobile to exceed 400 mph, John____ , Bonneville Salt Flats
+Cobb
+10
+
+In 1947 First instant develop ____ demonstrated in NY City by E. H. Land
+Camera
+10
+
+In 1947 First reported sighting of Flying Saucers, near Mt. Rainier, ____ by Kenneth Arnold of Boise, Idaho
+Washington
+10
+
+In 1947 Frankie____ , seasonal singer, born in
+Valli
+10
+
+In 1947 Glenn ____ (in Greenwich, Connecticut), actor, born in
+Close
+10
+
+In 1947 India and ____ granted independence within British Commonwealth after some 200 years of
+Pakista
+10
+
+In 1947 India and Pakistan granted independence within ____ Commonwealth after some 200 years of
+Britis
+10
+
+In 1947 India and Pakistan granted independence within British Commonwealth after some ____ years of British rule
+200
+10
+
+In 1947 International ____ began operations
+Monetary fund
+10
+
+In 1947 Jaclyn____ , actress (Charlie's Angel, Nightkill), born in
+Smith
+10
+
+In 1947 Kevin____ , actor, born in
+Kline
+10
+
+In 1947 Kiki ____ (in Yorkshire, England), singer, born in
+Dee
+10
+
+In 1947 Malcolm ____ founded rock group (Sex Pistols-God Save the Queen), born in
+Mclaren
+10
+
+In 1947 National Security Act establishes the____
+Cia
+10
+
+In 1947 Pakistan gained independence from ____ rule
+Britain
+10
+
+In 1947 Richard____ , actor (Jaws, Close Encounters of the Third Kind), born in
+Dreyfuss
+10
+
+In 1947 Roger Waters, singer (____ ), born in
+Pink floyd
+10
+
+In 1947 Roger____ , singer (Pink Floyd), born in
+Waters
+10
+
+In 1947 Stephane____ , actrss, born in
+Beacham
+10
+
+In 1947 Stephen ____ suspense writer (Shining, Kujo), born in
+King
+10
+
+In 1947 Steven____ , director (Jaws, Raiders of the Lost Ark, etc.),born
+Spielberg
+10
+
+In 1947 Ted____ , SD Calif, actor (Sam Malone-Cheers, 3 Men & a Baby), born in
+Danson
+10
+
+In 1947 The Bulgarian Government adopts a ____ Constitution
+Communist
+10
+
+In 1947 U.N. General Assmebly allows for a ____ state in Palestine
+Jewish
+10
+
+In 1947 U.S. ____ confirmed
+Atomic energy commission
+10
+
+In 1947____ , musician, actor, born in
+David bowie
+10
+
+In 1948 ____ (now Sri Lanka) gained independence from Britain
+Ceylon
+10
+
+In 1948 ____ becomes queen of the Netherlands
+Juliana
+10
+
+In 1948 ____ Hartman comedian (SNL, Newsradio, Simpsons (Voice of Troy McLure)), born in
+Phil
+10
+
+In 1948 ____ India's pacifist, assassinated
+Mahatma gandhi
+10
+
+In 1948 ____ Irons, English actor (French Lieutenant's Woman), born in
+Jeremy
+10
+
+In 1948 ____ is established
+World health organization
+10
+
+In 1948 ____ Jackson (in Alabama), actor (Charley's Angels, Making Love), born in
+Kate
+10
+
+In 1948 ____ Kidder (in Yellowknife), actor (Superman), born in
+Margot
+10
+
+In 1948 ____ National Day
+Burmese
+10
+
+In 1948 ____ Remek, first Czechoslovakian space traveler (Soyuz 28), born in
+Vladimir
+10
+
+In 1948 ____ Williams (in Van Nuys, CA), actor (Laverne and Shirley), born in
+Cindy
+10
+
+In 1948 (France) Gerard____ , actor, born in
+Depardieu
+10
+
+In 1948 1st stored computer program run, on ____ Mark I
+Manchester
+10
+
+In 1948 Alice____ , musician, born in
+Cooper
+10
+
+In 1948 Andrew____ , composer (Evita, Cats, J.C. Superstar), born in
+Lloyd webber
+10
+
+In 1948 Barbara ____ (in Atlanta, Georgia), actress, born in
+Hershey
+10
+
+In 1948 Baseball legend ____ died in New York at the age of 53
+Babe ruth
+10
+
+In 1948 Baseball legend Babe Ruth died in ____ at the age of 53
+New york
+10
+
+In 1948 Baseball legend Babe Ruth died in New York at the age of____
+53
+10
+
+In 1948 Bernadette ____ (in Queens, New York), actress, Tony winner, born in
+Peters
+10
+
+In 1948 Brian ____ rocker (Here Comes the Warm Jets), born in
+Eno
+10
+
+In 1948 Brian____ , singer, songwriter, born in
+Eno
+10
+
+In 1948 Britain's House of Commons voted to nationalize ____ industry
+Steel
+10
+
+In 1948 Cindy ____ (in Van Nuys, CA), actor (Laverne and Shirley), born in
+Williams
+10
+
+In 1948 Cindy Williams (in Van Nuys, CA), actor (____ ), born in
+Laverne and shirley
+10
+
+In 1948 Communists take over____
+Czechoslovakia
+10
+
+In 1948 Emmylou ____ (in Alabama), singer, born in
+Harris
+10
+
+In 1948 First ____ is sold
+Tape recorder
+10
+
+In 1948 First civilian to exceed ____ ____ H. H. Houver at Edwards Air Force Base, CA
+Speed of sound
+10
+
+In 1948 James____ , singer, songwriter, born in
+Taylor
+10
+
+In 1948 Japanese premier ____ sentenced to death by war crimes tribunal
+Tojo
+10
+
+In 1948 Jeremy____ , English actor (French Lieutenant's Woman), born in
+Irons
+10
+
+In 1948 Jerry____ , Sioux City Iowa, actor (Beaver-Leave It To Beaver), born in
+Mathers
+10
+
+In 1948 Juliana becomes queen of the____
+Netherlands
+10
+
+In 1948 Kate ____ (in Alabama), actor (Charley's Angels, Making Love), born in
+Jackson
+10
+
+In 1948 Katie ____ vocals/guitarist (B-52's-Rock Lobster, Love Shack), born in
+Pierson
+10
+
+In 1948 Leo ____ [Gerard], England, singer (When I Need Love), born in
+Sayer
+10
+
+In 1948 Margot ____ (in Yellowknife), actor (Superman), born in
+Kidder
+10
+
+In 1948 Margot Kidder (in Yellowknife), actor (____ ), born in
+Superman
+10
+
+In 1948 Mikhail____ , ballet dancer, actor, born in
+Baryshnikov
+10
+
+In 1948 Ozzy ____ heavy metal musician, born in
+Osbourne
+10
+
+In 1948 People's Democratic Republic of ____ proclaimed
+Korea
+10
+
+In 1948 Phil ____ comedian (SNL, Newsradio, Simpsons (Voice of Troy McLure)), born in
+Hartman
+10
+
+In 1948 PM Tojo, 6 other Japanese hung for ____ crimes by US
+War
+10
+
+In 1948 Republic of ____ (South Korea) proclaimed (National Day)
+Korea
+10
+
+In 1948 Republic of ____ founded
+Korea
+10
+
+In 1948 Soviets blockades ____ from the west
+Berlin
+10
+
+In 1948 Steve ____ England, rocker (A Higher Love), born in
+Winwood
+10
+
+In 1948 Steve____ , Aerosmith's lead singer, born in
+Tyler
+10
+
+In 1948 Stevie ____ , rocker (Fleetwood Mac), born in
+Nicks
+10
+
+In 1948 The flag of ____ is adopted
+Israel
+10
+
+In 1948 UN Gen Assembly unanimously approves Convention on____
+Genocide
+10
+
+In 1948 UN General Assembly adopts Universal Declaration on ____ Rights
+Human
+10
+
+In 1948 UN's ____ forms
+Who
+10
+
+In 1948 US denounces ____ blockade of Berlin
+Soviet
+10
+
+In 1948 Vladimir____ , first Czechoslovakian space traveler (Soyuz 28), born in
+Remek
+10
+
+In 1948____ , director/composer (Halloween, The Thing), born in
+John carpenter
+10
+
+In 1949 ____ (Leslie Hornby) (in England), model, actor (Blues Brothers), born in
+Twiggy
+10
+
+In 1949 ____ adopts a constitution as a British Commonwealth Republic
+India
+10
+
+In 1949 ____ Assante, actor (Q&A, Judge Dredd) born
+Armand
+10
+
+In 1949 ____ becomes associated state within French Union
+Laos
+10
+
+In 1949 ____ becomes first network western
+Hopalong cassidy
+10
+
+In 1949 ____ Begley, Jr., actor (St. Elsewhere, Real Genius, Spinal Tap), born in
+Ed
+10
+
+In 1949 ____ detonates its 1st atomic bomb
+Ussr
+10
+
+In 1949 ____ Gaynor Newark NJ, disco singer (I Will Survive), born in
+Gloria
+10
+
+In 1949 ____ Gere Phila Pa, actor (Breathless, Cotton Club), born in
+Richard
+10
+
+In 1949 ____ Knopfler guitar/vocals (Dire Straits), born in
+Mark
+10
+
+In 1949 ____ Long (in Fort Wayne, IN), actor, born in
+Shelley
+10
+
+In 1949 ____ renames itself Thailand
+Siam
+10
+
+In 1949 ____ Republic comes into existence
+Irish
+10
+
+In 1949 ____ Simmons Queens, NY, rocker (KISS), born in
+Gene
+10
+
+In 1949 ____ US Communist Party leaders convicted of sedition
+Fourteen
+10
+
+In 1949 ____ Watson, Golfer born
+Tom
+10
+
+In 1949 ____ Weaver (in Los Angeles), actor (Aliens, GhostBusters), born in
+Sigourney
+10
+
+In 1949 ____ Wendt, actor (Cheers), born in
+George
+10
+
+In 1949 (USA)____ , actor (V, Nightmare on Elm Street), born in
+Robert englund
+10
+
+In 1949 14 US Communist Party leaders convicted of____
+Sedition
+10
+
+In 1949 Armand____ , actor (Q&A, Judge Dredd) born
+Assante
+10
+
+In 1949 Bao ____ 's Republic of Vietnam gained independence from France
+Dai
+10
+
+In 1949 Billy ____ (in the Bronx, NY), singer, pianoman born
+Joel
+10
+
+In 1949 By a vote of 37-12, ____ becomes 59th member of UN
+Israel
+10
+
+In 1949 Chaim ____ becomes the first Israeli president
+Weizmann
+10
+
+In 1949 Ed____ , Jr., actor (St. Elsewhere, Real Genius, Spinal Tap), born in
+Begley
+10
+
+In 1949 Erik____ , actor, born in
+Estrada
+10
+
+In 1949 First ____ Awards are given out
+Emmy
+10
+
+In 1949 First ____ election
+Israeli
+10
+
+In 1949 First ____ Rights Day
+Human
+10
+
+In 1949 First museum devoted exclusively to____ , Oak Ridge, TN
+Atomic energy
+10
+
+In 1949 First non-stop, ____ airplane flight completed
+Round-the-world
+10
+
+In 1949 First practical ____ TV tube announced ____ Toledo, Oh
+Rectangular
+10
+
+In 1949 First rocket to reach outer space launched at____ , NM
+White sands
+10
+
+In 1949 Gene ____ Queens, NY, rocker (KISS), born in
+Simmons
+10
+
+In 1949 George Wendt, actor (____ ), born in
+Cheers
+10
+
+In 1949 George____ , actor (Cheers), born in
+Wendt
+10
+
+In 1949 Gloria ____ Newark NJ, disco singer (I Will Survive), born in
+Gaynor
+10
+
+In 1949 Gloria Gaynor Newark NJ, disco singer (____ ), born in
+I will survive
+10
+
+In 1949 Hunter S. Thompson, ____ journalist born
+Gonzo
+10
+
+In 1949 Jessica ____ Cloquet Minnesota, actress (King Kong, Tootsie) , born in
+Lange
+10
+
+In 1949 Lindsay ____ LA Ca, actress (Bionic Woman, Paper Chase, Nighthawks), born in
+Wagner
+10
+
+In 1949 Mark ____ guitar/vocals (Dire Straits), born in
+Knopfler
+10
+
+In 1949 Meryl ____ NJ, actress (French Lieutenant's Woman, Sophie's Choice), born in
+Streep
+10
+
+In 1949 North Atlantic Treaty Organization (____ ) established
+Nato
+10
+
+In 1949 Patrick____ , actor, born in
+Duffy
+10
+
+In 1949 Peoples Rebulic of ____ proclaimed
+China
+10
+
+In 1949 Richard ____ Phila Pa, actor (Breathless, Cotton Club), born in
+Gere
+10
+
+In 1949 Shelley ____ (in Fort Wayne, IN), actor, born in
+Long
+10
+
+In 1949 Sigourney ____ (in Los Angeles), actor (Aliens, GhostBusters), born in
+Weaver
+10
+
+In 1949 Sigourney Weaver (in Los Angeles), actor (____ , GhostBusters), born in
+Aliens
+10
+
+In 1949 Sigourney Weaver (in Los Angeles), actor (Aliens,____ ), born in
+Ghostbusters
+10
+
+In 1949 State of ____ formed
+Vietnam
+10
+
+In 1949 Tom____ , Golfer born
+Watson
+10
+
+In 1949 Twiggy (____ Hornby) (in England), model, actor (Blues Brothers), born in
+Leslie
+10
+
+In 1949 Twiggy (Leslie____ ) (in England), model, actor (Blues Brothers), born in
+Hornby
+10
+
+In 1949 Walter Baade discovers asteroid ____ inside orbit of Mercury
+Icarus
+10
+
+In 1949 West ____ was proclaimed
+Germany
+10
+
+In 1949 West begins ____ Airlift to get supplies around Soviet blockade
+Berlin
+10
+
+In 1949____ , boxer, born in
+George foreman
+10
+
+In 1949, forecasting the relentless march of science, Popular Mechanics said computers in the future may weigh no more than ____ tons
+Five
+10
+
+In 1949, what drug was first used to treat arthritis?
+Cortisone
+10
+
+In 1950 ____ Anniversary
+Eec
+10
+
+In 1950 ____ Hynde, rocker (Pretenders), born in
+Chrissie
+10
+
+In 1950 ____ issues its 1st credit cards
+Diner's club
+10
+
+In 1950 ____ Landis actor (American Werewolf in London), born in
+John
+10
+
+In 1950 ____ Landis director (Twilight Zone), born in
+John
+10
+
+In 1950 ____ Murray Evanston Ill, comedian (SNL, what About Bob, Stripes), born in
+Bill
+10
+
+In 1950 (England) ____ recognizes Communist government of China
+Britain
+10
+
+In 1950 American network ____ begins the tradition of Saturday morning kid shows
+Abc
+10
+
+In 1950 Bill ____ Evanston Ill, comedian (SNL, what About Bob, Stripes), born in
+Murray
+10
+
+In 1950 Bill Murray Evanston Ill, comedian (SNL, what About Bob,____ ), born in
+Stripes
+10
+
+In 1950 Bob ____ makes his first TV appearance
+Hope
+10
+
+In 1950 China enters ____ conflict
+Korean
+10
+
+In 1950 Chinese troops crossed the 38th Parallel in____
+Korea
+10
+
+In 1950 Chrissie____ , rocker (Pretenders), born in
+Hynde
+10
+
+In 1950 Christian____ , French couturier, born in
+Lacroix
+10
+
+In 1950 Cybill ____ (in Memphis, TN), actress (Moonlighting, Sybil), born in
+Shepherd
+10
+
+In 1950 David ____ , Shirley Jones' kid on TV and real life, born in
+Cassidy
+10
+
+In 1950 Element 98 - ____ announced
+Californium
+10
+
+In 1950 First ____ player in National Basketball Association, Fort Wayne, IN
+Black
+10
+
+In 1950 First jet plane combat victor in ____ - RJ Brown
+Korea
+10
+
+In 1950 George____ , author (Animal Farm, 1984), dies in London at 46
+Orwell
+10
+
+In 1950 George____ , British novelist, dies in London at 46
+Orwell
+10
+
+In 1950 Great Brink's robbery in____ , $28 million
+Boston
+10
+
+In 1950 India becomes a republic ceasing to be a ____ dominion. Indian Republic Day Celebrated
+British
+10
+
+In 1950 Intl Olympic Committee votes admission to West Germany & ____ in '52
+Japan
+10
+
+In 1950 Jay ____ New Rochelle, comedian (Tonight Show host), born in
+Leno
+10
+
+In 1950 John ____ actor (American Werewolf in London), born in
+Landis
+10
+
+In 1950 John ____ director (Twilight Zone), born in
+Landis
+10
+
+In 1950 Karen ____ (in Connecticut), drummer for the Carpenters, singer, born in
+Carpenter
+10
+
+In 1950 King ____ of Belgium abdicates, Baudouin becomes king
+Leopold
+10
+
+In 1950 King Leopold of ____ abdicates, Baudouin becomes king
+Belgium
+10
+
+In 1950 King Leopold of Belgium abdicates, ____ becomes king
+Baudouin
+10
+
+In 1950 Leroy ____ awarded first Order of Purple Heart in Korea
+Deans
+10
+
+In 1950 Mark____ , swimmer, born in
+Spitz
+10
+
+In 1950 Morgan ____ (in Dallas, TX), actress, born in
+Fairchild
+10
+
+In 1950 Natalie ____ (in Los Angeles, CA), singer, born in
+Cole
+10
+
+In 1950 Peter____ , rocker (Genesis-Against All Odds), born in
+Gabriel
+10
+
+In 1950 Pres. ____ ordered the Air Force and Navy into the Korean conflict
+Truman
+10
+
+In 1950 Princess ____ of England, born in
+Anne
+10
+
+In 1950 Ron ____ , actor, born in
+Perlman
+10
+
+In 1950 Shozo Fujii ____ champion, born in
+Judo
+10
+
+In 1950 South Africa passes ____ segregating races
+Group areas act
+10
+
+In 1950 Stevie____ , singer/songwriter (You are The Sunshine of My Love), born in
+Wonder
+10
+
+In 1950 Suzi ____ (in Detroit, Michigan), musician, born in
+Quatro
+10
+
+In 1950 Territory of ____ created
+Guam
+10
+
+In 1950 The United Nations gets approval from the U.S. government for issuing ____ stamps
+Postage
+10
+
+In 1950 U.S. forces invade Korea by crossing the ____ parallel
+38th
+10
+
+In 1950 UN forces entered____ , the capital of North Korea
+Pyongyang
+10
+
+In 1950 Victoria ____ (in Japan), actor (Dallas), born in
+Principal
+10
+
+In 1950, which mountain was the first of over 26,000 feet to be climbed to the summit?
+Anapurna
+10
+
+In 1951 ____ (in Kentucky), singer, born in
+Crystal gayle
+10
+
+In 1951 ____ Cougar Mellencamp, singer, born in
+John
+10
+
+In 1951 ____ Dawber Detroit, actress (Mindy-Mork and Mindy), born in
+Pam
+10
+
+In 1951 ____ Keaton, actor (Pacific Heights, Batman, Multiplicity), born in
+Michael
+10
+
+In 1951 ____ Ramone, rock guitarist, born in
+Johnny
+10
+
+In 1951 (USA) 1st battery to convert radioactive energy to ____ announced
+Electrical
+10
+
+In 1951 1st commercial computer, ____ , enters service at Census Bureau
+Univac
+10
+
+In 1951 1st long distance telephone call without ____ assistance
+Operator
+10
+
+In 1951 Abdullah Ibn____ , Jordan's King, assassinated in Jerusalem, born in
+Hussein
+10
+
+In 1951 Ace ____ Bronx NY, heavy metal rocker (Kiss), born in
+Frehley
+10
+
+In 1951 Anjelica____ , actress, born...
+Huston
+10
+
+In 1951 Armistice talks to end the Korean conflict began at____
+Kaesong
+10
+
+In 1951 First ____ atomic explosion, Frenchman Flat, Nevada
+Underground
+10
+
+In 1951 First ____ explosion witnessed by troops, NM
+Atomic
+10
+
+In 1951 First ____ jet crossing
+North pole
+10
+
+In 1951 First ____ of atomic explosion
+Telecast
+10
+
+In 1951 First ____ to intercept an airplane, White Sands, NM
+Rocket
+10
+
+In 1951 First treaty signed by female ambassador - ____ Anderson
+Eugenie
+10
+
+In 1951 First treaty signed by female ambassador - Eugenie____
+Anderson
+10
+
+In 1951 Jane ____ [Joyce Frankenberg], Middlesex England, actress (Dr Quinn, East of Eden, Lassiter), born in
+Seymour
+10
+
+In 1951 Jay ____ patents computer core memory
+Forrester
+10
+
+In 1951 John ____ Mellencamp, singer, born in
+Cougar
+10
+
+In 1951 John Cougar____ , singer, born in
+Mellencamp
+10
+
+In 1951 Johnny____ , rock guitarist, born in
+Ramone
+10
+
+In 1951 Julius & Ethel ____ , atomic spies, sentenced to death
+Rosenberg
+10
+
+In 1951 Kurt____ , actor, born in
+Russell
+10
+
+In 1951 Lynda ____ Phoenix Az, Miss USA/actress (Wonder Woman, Billie Jo).born
+Carter
+10
+
+In 1951 Lynda Carter Phoenix Az, Miss USA/actress (____ , Billie Jo).born
+Wonder woman
+10
+
+In 1951 Michael Keaton, actor (____ , Batman, Multiplicity), born in
+Pacific heights
+10
+
+In 1951 Michael Keaton, actor (Pacific Heights, ____ , Multiplicity), born in
+Batman
+10
+
+In 1951 Michael Keaton, actor (Pacific Heights, Batman,____ ), born in
+Multiplicity
+10
+
+In 1951 Michael____ , actor (Pacific Heights, Batman, Multiplicity), born in
+Keaton
+10
+
+In 1951 Pam ____ Detroit, actress (Mindy-Mork and Mindy), born in
+Dawber
+10
+
+In 1951 Pam Dawber Detroit, actress (Mindy____ ), born in
+Mork and mindy
+10
+
+In 1951 Paul ____ rocker (Squeeze/Ace-How Long), born in
+Carrack
+10
+
+In 1951 Peabo ____ , singer, born in
+Bryson
+10
+
+In 1951 Phil____ , England, singer/drummer (Genesis-Against All Odds), born in
+Collins
+10
+
+In 1951 President ____ asked Congress to formally end the state of war with Germany
+Truman
+10
+
+In 1951 Shigeki ____ , survivor of Hiroshima A-bomb, wins Boston Marathon
+Tanaka
+10
+
+In 1951 Sir ____ Geldof pop musician (Boomtown Rats, Band Aid), born in
+Bob
+10
+
+In 1951 Sir Bob ____ pop musician (Boomtown Rats, Band Aid), born in
+Geldof
+10
+
+In 1951 Sir Bob Geldof pop musician (____ , Band Aid), born in
+Boomtown rats
+10
+
+In 1951 Sir Bob Geldof pop musician (Boomtown Rats,____ ), born in
+Band aid
+10
+
+In 1951 Sir Richard ____ Christchurch, NZ, New Zealand Cricket Legend, born in
+Hadlee
+10
+
+In 1951 Sting, musician (____ ), actor (Dune) born
+Police
+10
+
+In 1951 Sting, musician (Police), actor (____ ) born
+Dune
+10
+
+In 1951 United Kingdom of ____ gained independence from Italy via the UN
+Libya
+10
+
+In 1951 US, ____ and New Zealand sign ANZUS treaty
+Australia
+10
+
+In 1951 US, Australia and ____ sign ANZUS treaty
+New zealand
+10
+
+In 1951____ , actress, born in
+Victoria principal
+10
+
+In 1951____ , Australia and New Zealand sign ANZUS treaty
+Us
+10
+
+In 1951____ , musician (Police), actor (Dune) born
+Sting
+10
+
+In 1952 ____ Barker, novelist (Hell Raiser) born
+Clive
+10
+
+In 1952 ____ becomes queen of Great Britain
+Elizabeth ii
+10
+
+In 1952 ____ Connors, tennis player born
+Jimmy
+10
+
+In 1952 ____ constitution adopted (National Day)
+Polish
+10
+
+In 1952 ____ Goldblum, actor (The Fly, Silverado, Buckaroo Bonzai, ID4), born in
+Jeff
+10
+
+In 1952 ____ Hamill, actor (Star Wars), born in
+Mark
+10
+
+In 1952 ____ Prunariu, first Rumanian space traveler (on board Soyuz 40), born in
+Dumitru
+10
+
+In 1952 ____ Reeve, actor (Superman, Somewhere in Time), born in
+Christopher
+10
+
+In 1952 ____ Stewart, rocker (Eurythmics-Here Comes the Rain Again), born in
+Dave
+10
+
+In 1952 ____ Swayze Houston Tx, actor/dancer (Dirty Dancing, Ghost), born in
+Patrick
+10
+
+In 1952 'Marvelous' ____ (in New Jersey), boxer, born in
+Marvin hagler
+10
+
+In 1952 1st commercial jet plane, ____ Comet
+Boac
+10
+
+In 1952 Annette ____ (in Houston, TX), actor, born in
+O'toole
+10
+
+In 1952 Chaim Weizmann 1st pres of____ , dies at 57
+Israel
+10
+
+In 1952 Christopher____ , actor (Superman, Somewhere in Time), born in
+Reeve
+10
+
+In 1952 Clarence Birdseye markets frozen____
+Peas
+10
+
+In 1952 Clive____ , novelist (Hell Raiser) born
+Barker
+10
+
+In 1952 Dan____ , Ottawa Canada, comedian/actor (SNL, Dragnet), born in
+Aykroyd
+10
+
+In 1952 Dave Stewart, rocker (____ -Here Comes the Rain Again), born in
+Eurythmics
+10
+
+In 1952 Dave____ , rocker (Eurythmics-Here Comes the Rain Again), born in
+Stewart
+10
+
+In 1952 David ____ Dunbartin Scotand, rocker (Talking Heads-Psycho Killer) , born in
+Byrne
+10
+
+In 1952 David____ , actor, born in
+Hasselhoff
+10
+
+In 1952 Dumitru____ , first Rumanian space traveler (on board Soyuz 40), born in
+Prunariu
+10
+
+In 1952 First ____ device exploded at Eniwetok Atoll in the Pacific
+Hydrogen
+10
+
+In 1952 First ____ high frequency (UHF) television station, Portland, OR
+Ultra
+10
+
+In 1952 First helicopter ____ flight began
+Transatlantic
+10
+
+In 1952 First landing by an ____ at geographic North Pole
+Airplane
+10
+
+In 1952 First plastic lens for ____ patients fitted, Philadelphia, PA
+Cataract
+10
+
+In 1952 First ultra high frequency (UHF) television station, ____ , OR
+Portland
+10
+
+In 1952 Jeff Goldblum, actor (____ , Silverado, Buckaroo Bonzai, ID4), born in
+The fly
+10
+
+In 1952 Jeff____ , actor (The Fly, Silverado, Buckaroo Bonzai, ID4), born in
+Goldblum
+10
+
+In 1952 Jimmy____ , tennis player, born in
+Connors
+10
+
+In 1952 John ____ actor (Roseanne, Everyone's All American), born in
+Goodman
+10
+
+In 1952 Mark____ , actor (Star Wars), born in
+Hamill
+10
+
+In 1952 Mel ____ author/comedian, born in
+Smith
+10
+
+In 1952 Monarchy overthrown in ____ (National Day)
+Egypt
+10
+
+In 1952 Mr T [Lawrence Tero], ____ , actor, (A-Team, Rocky III, T & T), born in
+Chicago
+10
+
+In 1952 Patrick ____ Houston Tx, actor/dancer (Dirty Dancing, Ghost), born in
+Swayze
+10
+
+In 1952 Patrick Swayze Houston Tx, actor/dancer (____ , Ghost), born in
+Dirty dancing
+10
+
+In 1952 Patrick Swayze Houston Tx, actor/dancer (Dirty Dancing,____ ), born in
+Ghost
+10
+
+In 1952 Paul____ , rock guitarist (KISS), born in
+Stanley
+10
+
+In 1952 Pierce ____ (in Israel), actor (current James Bond), born in
+Brosnan
+10
+
+In 1952 PM Winston Churchill announced that Britain had its own?
+Atomic bomb
+10
+
+In 1952 President Harry Truman seizes ____ industry to avoid a strike
+Steel
+10
+
+In 1952 President-elect ____ visits Korea to assess the war
+Eisenhower
+10
+
+In 1952 Robin ____ Chicago Ill, comedian (Mork and Mindy, Awakenings), born in
+Williams
+10
+
+In 1952 Roseanne ____ Arnold Salt Lake City, comedienne/TV star (Roseanne), born in
+Barr
+10
+
+In 1952 Susan____ , actor (First Love, LA Law), born in
+Dey
+10
+
+In 1952 UN turns over ____ to Ethiopia
+Eritrea
+10
+
+In 1952 UN turns over Eritrea to____
+Ethiopia
+10
+
+In 1952 US explodes world's first ____ bomb at Eniwetok Atoll
+Hydrogen
+10
+
+In 1952 WW II ____ peace treaty takes effect
+Pacific
+10
+
+In 1953 ____ elects it's 1st president (Marshal Tito)
+Yugoslavia
+10
+
+In 1953 ____ gains full independence from France
+Laos
+10
+
+In 1953 ____ Petty, Florida, USA, singer, born in
+Tom
+10
+
+In 1953 ____ proclaimed a republic
+Egypt
+10
+
+In 1953 ____ signed ending Korean War
+Armistice
+10
+
+In 1953 (USA) ____ announces development of the hydrogen bomb
+Pres truman
+10
+
+In 1953 (USA) Richard____ , pianist, born in
+Clayderman
+10
+
+In 1953 1st successful separation of ____ twins
+Siamese
+10
+
+In 1953 Abdul-Aziz ibn Sa'ud founder of ____ Arabia, dies (born c 1880)
+Saudi
+10
+
+In 1953 Benazir ____ 1st female leader of a Moslem nation (Pakistan), born in
+Bhutto
+10
+
+In 1953 Benazir Bhutto 1st female leader of a Moslem nation (____ ), born in
+Pakistan
+10
+
+In 1953 Cambodia (now Kampuchea) gains ____ within French Union
+Independence
+10
+
+In 1953 Coronation of Queen Elizabeth II in____
+Westminster abbey
+10
+
+In 1953 Dr. Jonas ____ announced a new vaccine against polio
+Salk
+10
+
+In 1953 Dylan ____ author-poet, dies in NY at 39
+Thomas
+10
+
+In 1953 Fidel ____ leads attack on Moncada Barracks, begins Cuban Revolution
+Castro
+10
+
+In 1953 Fidel Castro leads attack on ____ Barracks, begins Cuban Revolution
+Moncada
+10
+
+In 1953 First color network telecast in compatible color____ , MA
+Boston
+10
+
+In 1953 First passenger to fly commercially around the world in less than ____ hours
+100
+10
+
+In 1953 House of ____ , first feature-length 3-D movie, released in New York
+Wax
+10
+
+In 1953 Joanna____ , actress, born in
+Kerns
+10
+
+In 1953 Josef ____ died
+Stalin
+10
+
+In 1953 Laos gains full independence from____
+France
+10
+
+In 1953 Northern Rhodesia becomes part of Federation of ____ & Nyasaland
+Rhodesia
+10
+
+In 1953 Northern Rhodesia becomes part of Federation of Rhodesia &____
+Nyasaland
+10
+
+In 1953 Oprah____ , actress/TV host (Color Purple), born in
+Winfrey
+10
+
+In 1953 Russia publicly acknowledges a test detonation of a ____ bomb
+Hydrogen
+10
+
+In 1953 Soviet Union conducts secret test of its 1st ____ bomb
+Hydrogen
+10
+
+In 1953 Tom____ , Florida, USA, singer, born in
+Petty
+10
+
+In 1953 Winston Churchill ____ by Queen Elizabeth II
+Knighted
+10
+
+In 1953____ , singer, born in
+Pat benatar
+10
+
+In 1953, which group did clyde mcphatter form after leaving 'the dominoes'?
+Drifters
+10
+
+In 1954 ____ (in Connecticut), actor (Dallas), born in
+Pamela sue martin
+10
+
+In 1954 ____ actor (Maltese Falcon), dies at 74
+Sydney greenstreet
+10
+
+In 1954 ____ Bakula, actor (Quantum Leap, The Invaders), born in
+Scott
+10
+
+In 1954 ____ beats Hungary 3-2 for Football's 5th World Cup in Bern
+West Germany
+10
+
+In 1954 ____ Bernsen North Hollywood Calif, actor (Arnie Becker-LA Law), born in
+Corbin
+10
+
+In 1954 ____ Costello [Declan Patrick McManus], rocker (Allison), born in
+Elvis
+10
+
+In 1954 ____ joins North Atlantic Treaty Organization (NATO)
+West Germany
+10
+
+In 1954 ____ marries baseball star Joe DiMaggio
+Marilyn monroe
+10
+
+In 1954 (USA) Denzel____ , actor, born in
+Washington
+10
+
+In 1954 Adam ____ [Stuart Goddard], punk rocker (If I Strip For You), born in
+Ant
+10
+
+In 1954 Armistice divides Vietnam into ____ countries
+Two
+10
+
+In 1954 Bell labs announces 1st ____ battery (NYC)
+Solar
+10
+
+In 1954 Christie____ , model, born in
+Brinkley
+10
+
+In 1954 Construction begins on____
+Disneyland
+10
+
+In 1954 Corbin ____ North Hollywood Calif, actor (Arnie Becker-LA Law), born in
+Bernsen
+10
+
+In 1954 Corbin Bernsen North Hollywood Calif, actor (Arnie Becker____ ), born in
+La law
+10
+
+In 1954 Dennis ____ , actor, born in
+Quaid
+10
+
+In 1954 Elvis ____ [Declan Patrick McManus], rocker (Allison), born in
+Costello
+10
+
+In 1954 Elvis Presley records his first two singles at ____ Studios
+Sun record
+10
+
+In 1954 First ____ computer program run
+Fortran
+10
+
+In 1954 First ____ machine (photo engraving) used at Quincy, Mass
+Typesetting
+10
+
+In 1954 First rocket to exceed ____ altitude - White Sands, NM
+150 mile
+10
+
+In 1954 Ground breaking for____ , the Magic Kingdom, in Anaheim, CA
+Disneyland
+10
+
+In 1954 Jerry ____ comedian (Seinfeld), born in
+Seinfeld
+10
+
+In 1954 Jim____ , Chicago Ill, comedian (Sat Night Live, Trading Places), born in
+Belushi
+10
+
+In 1954 John____ , actor, born in
+Travolta
+10
+
+In 1954 Kathleen____ , actress, born in
+Turner
+10
+
+In 1954 Laos gains its____
+Independence
+10
+
+In 1954 Leslie-Anne ____ (in London, England), actor, born in
+Down
+10
+
+In 1954 Nancy ____ (in San Francisco, CA), singer (Heart), born in
+Wilson
+10
+
+In 1954 Nautilus, 1st ____ powered submarine launched
+Atomic
+10
+
+In 1954 Pope ____ canonized a saint
+Pius x
+10
+
+In 1954 Ray ____ Jr rocker (Ghostbusters theme), born in
+Parker
+10
+
+In 1954 RCA manufactures the first ____ television set
+Color
+10
+
+In 1954 Ron____ , actor (Mayberry RFD, Happy Days, American Graffiti), director (Splash, Cocoon, Backdraft), born in
+Howard
+10
+
+In 1954 Scott Bakula, actor (____ , The Invaders), born in
+Quantum leap
+10
+
+In 1954 Scott____ , actor (Quantum Leap, The Invaders), born in
+Bakula
+10
+
+In 1954 West Germany beats ____ 3-2 for Football's 5th World Cup in Bern
+Hungary
+10
+
+In 1954 West Germany beats Hungary 3-2 for Football's 5th World Cup in____
+Bern
+10
+
+In 1955 ____ actor (Fandango, Silverado, Bull Durham), born in
+Kevin costner
+10
+
+In 1955 ____ Dean, actor, died in a car crash (born Feb 08, 1931)
+James
+10
+
+In 1955 ____ Lee Roth, rocker, born in
+David
+10
+
+In 1955 ____ Ma, cellist, born in
+Yo-yo
+10
+
+In 1955 ____ model/David Bowie's wife/actress (Star Trek VI), born in
+Iman
+10
+
+In 1955 ____ opens its doors in rural Orange County
+Disneyland
+10
+
+In 1955 ____ proclaims Vietnam a republic with himself as president
+Ngo dinh diem
+10
+
+In 1955 ____ regains full independence after 4-power occupation
+Austria
+10
+
+In 1955 ____ resigns as British PM, Anthony Eden succeeds him
+Winston churchill
+10
+
+In 1955 ____ Rudner comedienne, born in
+Rita
+10
+
+In 1955 1st sun-powered automobile demonstrated, ____ , Ill
+Chicago
+10
+
+In 1955 2 killed, many dazed when lightning strikes ____ racetrack, England
+Ascot
+10
+
+In 1955 Australia takes control of the ____ Islands
+Cocos
+10
+
+In 1955 Commercial ____ begins in England
+TV
+10
+
+In 1955 Dana____ , comedian (Sat Night Live, Wayne's World), born in
+Carvey
+10
+
+In 1955 David ____ Roth, rocker, born in
+Lee
+10
+
+In 1955 David Lee____ , rocker, born in
+Roth
+10
+
+In 1955 Debra ____ (in Columbus, Ohio), actor, born in
+Winger
+10
+
+In 1955 Disneyland opens its doors in rural ____ County
+Orange
+10
+
+In 1955 Element ____ announced - element 101
+Mendelevium
+10
+
+In 1955 First aviator to bail out at ____ speed - G. F. Smith
+Supersonic
+10
+
+In 1955 First electric power generated from ____ sold commercially
+Atomic energy
+10
+
+In 1955 First oil drill ____ rig placed in service
+Sea going
+10
+
+In 1955 Greg____ , golfer, born in
+Norman
+10
+
+In 1955 Howard____ , musician, born in
+Jones
+10
+
+In 1955 Hundreds killed in anti-French rioting in ____ and Algeria
+Morocco
+10
+
+In 1955 Hundreds killed in anti-French rioting in Morocco and____
+Algeria
+10
+
+In 1955 Israel acquires 4 of the 7 dead sea?
+Scrolls
+10
+
+In 1955 James____ , actor, died in a car crash (born Feb 08, 1931)
+Dean
+10
+
+In 1955 Lee____ , actor, born in
+Horsley
+10
+
+In 1955 Margeaux ____ (in Portland, Oregon), actress, daughter of Ernest, born in
+Hemingway
+10
+
+In 1955 Mark David ____ assassin of John Lennon, born in
+Chapman
+10
+
+In 1955 Mick ____ rocker (The Clash, Big Audio Dynamite), born in
+Jones
+10
+
+In 1955 Olga ____ (in Russia), gymnast, born in
+Korbut
+10
+
+In 1955 Pope Pius XII ex-communicated Argentine President____
+Juan peron
+10
+
+In 1955 Pres ____ suffered a heart attack on vacation in Denver
+Eisenhower
+10
+
+In 1955 Pres Eisenhower suffered a heart attack on vacation in____
+Denver
+10
+
+In 1955 President Jose Antonio Remon of ____ assassinated
+Panama
+10
+
+In 1955 Production announced-first pilot plant to produce man-made?
+Diamonds
+10
+
+In 1955 Reba____ , singer, born in
+Mcentire
+10
+
+In 1955 Rita ____ comedienne, born in
+Rudner
+10
+
+In 1955 Sandra____ , actress, born in
+Bernhard
+10
+
+In 1955 Steven____ , co-founder of Apple Computer, born in
+Jobs
+10
+
+In 1955 U.S.'s First automobile ____ legislation is enacted in Illinois
+Seat belt
+10
+
+In 1955 United Nations ____ hearing
+Charter
+10
+
+In 1955 Willem____ , actor, born in
+Dafoe
+10
+
+In 1955 World's first nuclear powered ship,____
+Uss nautilus
+10
+
+In 1955 Yo-Yo____ , cellist, born in
+Ma
+10
+
+In 1955____ , actress (Cheers, Star Trek II), born in
+Kirstie alley
+10
+
+In 1955, Elvis Presley and his original back up group, The Blue Moon Boys auditioned for a widely syndicated coat-to-coast amateur show, but were rejected. What was the name of the show?
+Arthur Godfrey's Talent Scouts
+10
+
+In 1955's 'the blackboard jungle' sidney poitier played a tough high school kid. 12 years later, he was the teacher in which movie?
+To sir with love
+10
+
+In 1956 ____ (Comedian), born in
+Rowan atikinson
+10
+
+In 1956 ____ 1st televised
+King kong
+10
+
+In 1956 ____ Cattrall, Liverpool England, actress (Mannequin, Star Trek VI), born in
+Kim
+10
+
+In 1956 ____ Fisher (in Beverly Hills), actor (Star Wars, Blues Brothers), born in
+Carrie
+10
+
+In 1956 ____ gains its independence
+Morocco
+10
+
+In 1956 ____ marries Prince Rainier of Monaco (civil ceremony)
+Grace kelly
+10
+
+In 1956 ____ Navratilova, Prague, Czech Republic, tennis champion (Wimbeldon 1989,79,82-87), born in
+Martina
+10
+
+In 1956 ____ Presley appears on national TV for 1st time (Ed Sullivan)
+Elvis
+10
+
+In 1956 ____ seizes Suez Canal
+Egypt
+10
+
+In 1956 ____ Zimbalist NYC, actress (Remington Steele, Centennial), born in
+Stephanie
+10
+
+In 1956 (England)____ , comedian/actor (Never Say Never Again, Mr. Bean, Blackadder), born in
+Rowan atkinson
+10
+
+In 1956 156-day strike against ____ ended
+Westinghouse
+10
+
+In 1956 Ampex Corporation demonstrates first commercial ____ recorder. It's a unit the size of a deep-freeze, with an additional 5 6-foot racks of circuitry
+Videotape
+10
+
+In 1956 Atomic fusion (thermonuclear) bomb dropped from plane____
+Bikini atoll
+10
+
+In 1956 Bjorn____ , tennis player, born in
+Borg
+10
+
+In 1956 Carrie ____ (in Beverly Hills), actor (Star Wars, Blues Brothers), born in
+Fisher
+10
+
+In 1956 Carrie Fisher (in Beverly Hills), actor (____ , Blues Brothers), born in
+Star wars
+10
+
+In 1956 Carrie Fisher (in Beverly Hills), actor (Star Wars,____ ), born in
+Blues brothers
+10
+
+In 1956 David Bryant became the first World Champion in which sport?
+Bowls
+10
+
+In 1956 Elvis ____ appears on national TV for 1st time (Ed Sullivan)
+Presley
+10
+
+In 1956 First atomic power ____ exhibited ____ New York City
+Clock
+10
+
+In 1956 First transatlantic ____ cable goes into operation
+Telephone
+10
+
+In 1956 Forrester issued a patent for computer ____ memory
+Core
+10
+
+In 1956 France recognizes ____ 's independence
+Tunisia
+10
+
+In 1956 H.L.____ , satirist, critic, dies in Baltimore at 75
+Mencken
+10
+
+In 1956 Heavyweight champ, Rocky ____ , retires undefeated from boxing
+Marciano
+10
+
+In 1956 Hungary appeals for UN assistance against ____ invasion
+Soviet
+10
+
+In 1956 Israeli paratroopers drop into the Sinai to open Straits of____
+Tiran
+10
+
+In 1956 Israeli troops reach the ____ Canal for the first time
+Suez
+10
+
+In 1956 James____ . actor, born in
+Ingram
+10
+
+In 1956 Japan admitted to the United____
+Nations
+10
+
+In 1956 Jerry ____ Mesquite Tx, model, born in
+Hall
+10
+
+In 1956 Jimmy____ , actor (L.A. Law), born in
+Smits
+10
+
+In 1956 Johnny ____ [John Lydon], rocker (Sex Pistols-God Save the Queen), born in
+Rotten
+10
+
+In 1956 Kim____ , Liverpool England, actress (Mannequin, Star Trek VI), born in
+Cattrall
+10
+
+In 1956 Martina____ , Prague, Czech Republic, tennis champion (Wimbeldon 1989,79,82-87), born in
+Navratilova
+10
+
+In 1956 Pakistan became ____ within the British Commonwealth
+Independent
+10
+
+In 1956 Republicans start convention at the____ , San Francisco
+Cow palace
+10
+
+In 1956 Singer Nat Cole attacked on stage of ____ theater by whites
+Birmingham
+10
+
+In 1956 South African ____ demonstrate against pass laws
+Women
+10
+
+In 1956 Speech by ____ blasting Stalin made public
+Khrushchev
+10
+
+In 1956 Stephanie ____ NYC, actress (Remington Steele, Centennial), born in
+Zimbalist
+10
+
+In 1956 Stephanie Zimbalist NYC, actress (____ , Centennial), born in
+Remington steele
+10
+
+In 1956 Timothy____ , actor, James Bond #4, born in
+Dalton
+10
+
+In 1956 Tom____ , actor, born in
+Hanks
+10
+
+In 1956 US Lab detects high-temperature microwave radiation from ____
+Venus
+10
+
+In 1956____ , actor, born in
+Mel gibson
+10
+
+In 1957 ____ -Manuel Fangio, wins his last auto World Championship at 46
+Juan
+10
+
+In 1957 ____ (Malaysia) gained independence from Britain (National Day)
+Malaya
+10
+
+In 1957 ____ actor, dies at 57
+Humphrey bogart
+10
+
+In 1957 ____ Ascoli Italian developed anti-tuberculosis vaccine, dies
+Albert
+10
+
+In 1957 ____ Equipment Corp. founded
+Digital
+10
+
+In 1957 ____ Estefan, Cuba, singer, born in
+Gloria
+10
+
+In 1957 ____ Fahey rocker (Bananarama), born in
+Siobhan
+10
+
+In 1957 ____ Griffith, actor, born in
+Melanie
+10
+
+In 1957 ____ king of Norway, dies, Olaf succeeds him
+Haakon vii
+10
+
+In 1957 ____ Motor Co. introduced the Edsel! (Oh boy !)
+Ford
+10
+
+In 1957 ____ orders US troops to desegregate Little Rock schools
+Eisenhower
+10
+
+In 1957 ____ Tiegs (in Minnesota), model and actor, born in
+Cheryl
+10
+
+In 1957 Albert ____ Italian developed anti-tuberculosis vaccine, dies
+Ascoli
+10
+
+In 1957 Announcement of discovery of atomic element 102 ____
+Nobelium
+10
+
+In 1957 Cavern Club opens on ____ Street in England
+Matthews
+10
+
+In 1957 Charles ____ of Funk & Wagnalls Encyclopaedias, dies at 76
+Funk
+10
+
+In 1957 Cheryl ____ (in Minnesota), model and actor, born in
+Tiegs
+10
+
+In 1957 Dana____ , actress, born in
+Delaney
+10
+
+In 1957 Donny____ , singer born
+Osmond
+10
+
+In 1957 Earthquake gives ____ the shakes
+San francisco
+10
+
+In 1957 Eisenhower orders US troops to desegregate ____ schools
+Little rock
+10
+
+In 1957 First ____ introduced at Lancaster, PA
+Electric watch
+10
+
+In 1957 First commercial ____ pipeline placed in operation
+Coal
+10
+
+In 1957 First rocket with nuclear warhead fired, ____ , Nevada
+Yucca flat
+10
+
+In 1957 Ford Motor Co. introduced the____ ! (Oh boy !)
+Edsel
+10
+
+In 1957 Geena____ , actress (Beetlejuice, Fly), born in
+Davis
+10
+
+In 1957 Gloria Estefan, ____ , singer, born in
+Cuba
+10
+
+In 1957 Gloria____ , Cuba, singer, born in
+Estefan
+10
+
+In 1957 Haakon VII king of Norway, dies, ____ succeeds him
+Olaf
+10
+
+In 1957 Haakon VII king of____ , dies, Olaf succeeds him
+Norway
+10
+
+In 1957 Harold ____ becomes British PM
+Macmillan
+10
+
+In 1957 Israeli forces withdraw from the ____ Penisula
+Sinai
+10
+
+In 1957 Joseph McCarthy commie hunting senator, dies at____
+47
+10
+
+In 1957 Juan____ Fangio, wins his last auto World Championship at 46
+Manuel
+10
+
+In 1957 Juan-Manuel Fangio, wins his last auto World Championship at____
+46
+10
+
+In 1957 Juan-Manuel____ , wins his last auto World Championship at 46
+Fangio
+10
+
+In 1957 Kelly____ , actress, born in
+Mcgillis
+10
+
+In 1957 Laura ____ singer (Gloria), born in
+Branigan
+10
+
+In 1957 Mario A ____ creator of the maraschino cherry, dies
+Gianini
+10
+
+In 1957 Melanie____ , actor, born in
+Griffith
+10
+
+In 1957 Monarchy in ____ abolished in favor of a republic
+Tunisa
+10
+
+In 1957 Seve ____ , golfer, born in
+Ballesteros
+10
+
+In 1957 Sid ____ [John Beverly], bassist (Sex Pistols), born in
+Vicious
+10
+
+In 1957 Siobhan ____ rocker (Bananarama), born in
+Fahey
+10
+
+In 1957 Siobhan Fahey rocker (____ ), born in
+Bananarama
+10
+
+In 1957 Spike____ , director, actor (She's Gotta Have It, Jungle Fever), born in
+Lee
+10
+
+In 1957 The Gold Coast gained independence and takes the name?
+Ghana
+10
+
+In 1957 USSR fires defense minister, Marshal Georgi ____ (Zhukov lead USSR into Berlin during WW2)
+Zhukov
+10
+
+In 1957 USSR launches ____ 2 with a dog (Laika), 1st animal in orbit
+Sputnik
+10
+
+In 1957 USSR launches 1st intercontinental multistage ____ missile
+Ballistic
+10
+
+In 1957 Vanna ____ (in South Carolina), game show hostess (Wheel of Fortune), born in
+White
+10
+
+In 1958 ____ -Claude Van Damme, Belgium, actor (Kickboxer, No Retreat)
+Jean
+10
+
+In 1958 ____ , rock vocalist (Marillon), born in
+Fish
+10
+
+In 1958 ____ (Ciccone) (in Bay City, MI), singer, actor?, born in
+Madonna
+10
+
+In 1958 ____ army overthrows monarchy; republic replaces Hashemite dynasty
+Iraqi
+10
+
+In 1958 ____ Carlisle, (GoGos lead singer, Heaven on Earth), born in
+Belinda
+10
+
+In 1958 ____ Cassidy, singer, born in
+Shaun
+10
+
+In 1958 ____ Castro makes a speech on Cuban pirate radio Rebelde
+Fidel
+10
+
+In 1958 ____ Day
+Commonwealth
+10
+
+In 1958 ____ Hamilton Toledo, figure skating champion (Olympic-gold-1984), born in
+Scott
+10
+
+In 1958 ____ launch Pioneer III
+Nasa
+10
+
+In 1958 ____ launched; first spacecraft launched by NASA
+Pioneer 1
+10
+
+In 1958 ____ Le Bon, rocker (Duran Duran), born in
+Simon
+10
+
+In 1958 ____ Salazar, marathon runner, born in
+Alberto
+10
+
+In 1958 ____ votes for independence from France
+Guinea
+10
+
+In 1958 (Romania) Dr Petru Groza premier of____ , dies at 74
+Romania
+10
+
+In 1958 1st ____ video recording on magnetic tape presented, Charlotte North Carolina, USA
+Color
+10
+
+In 1958 1st color ____ on magnetic tape presented, Charlotte North Carolina, USA
+Video recording
+10
+
+In 1958 1st color video recording on ____ tape presented, Charlotte North Carolina, USA
+Magnetic
+10
+
+In 1958 9,000 scientists of ____ nations petition UN for nuclear test ban
+4
+10
+
+In 1958 Actor Tyrone ____ dies of a heart attack at 44
+Power
+10
+
+In 1958 Alberto____ , marathon runner, born in
+Salazar
+10
+
+In 1958 Andie ____ Gaffney SC, actress (Greystroke, Green Card), born in
+Macdowell
+10
+
+In 1958 Army launched US's third successful satellite?
+Explorer iii
+10
+
+In 1958 Belinda____ , (GoGos lead singer, Heaven on Earth), born in
+Carlisle
+10
+
+In 1958 Benelux treaty signed by Belgium, ____ & Luxembourg
+Netherlands
+10
+
+In 1958 Cammie ____ LA Calif, Guinness' World Strongest Woman, born in
+Lusko
+10
+
+In 1958 Central African Rep made autonomous member of ____ Commonwealth (Nat'l Day)
+French
+10
+
+In 1958 Charles de ____ becomes premier of France
+Gaulle
+10
+
+In 1958 Construction began on 1st private ____ nuclear reactor
+Thorium-uranium
+10
+
+In 1958 Elvis Presley was inducted into the Army in____ , Tenn
+Memphis
+10
+
+In 1958 Fidel ____ makes a speech on Cuban pirate radio Rebelde
+Castro
+10
+
+In 1958 Fidel Castro makes a speech on Cuban pirate radio____
+Rebelde
+10
+
+In 1958 First test project of Signal Communications by Orbiting Relay Equipment; first voice from space: recorded Christmas message by President____
+Eisenhower
+10
+
+In 1958 Guinea votes for independence from____
+France
+10
+
+In 1958 Holly____ , actor, born in
+Hunter
+10
+
+In 1958 Iraqi army overthrows monarchy; republic replaces ____ dynasty
+Hashemite
+10
+
+In 1958 James van Allen discovers ____ belt around Earth
+Radiation
+10
+
+In 1958 Jean____ Van Damme, Belgium, actor (Kickboxer, No Retreat)
+Claude
+10
+
+In 1958 Jean-Claude Van Damme, Belgium, actor (____ , No Retreat)
+Kickboxer
+10
+
+In 1958 Jean-Claude Van Damme, Belgium, actor (Kickboxer,____ )
+No retreat
+10
+
+In 1958 Jean-Claude____ , Belgium, actor (Kickboxer, No Retreat)
+Van damme
+10
+
+In 1958 Kate____ , England, singer/songwriter (Babushka, Running Up That Hill), born in
+Bush
+10
+
+In 1958 Keenen Ivory ____ comedian (In Living Color), born in
+Wayans
+10
+
+In 1958 Keith ____ Kutztown Pa, graffiti artist (Vanity Fair, Paris Review), born in
+Haring
+10
+
+In 1958 Kevin____ , actor, born in
+Bacon
+10
+
+In 1958 King ____ PM of Iraq, assassinated at Baghdad
+Faisal ii
+10
+
+In 1958 King Faisal II PM of Iraq, assassinated at____
+Baghdad
+10
+
+In 1958 King Faisal II PM of____ , assassinated at Baghdad
+Iraq
+10
+
+In 1958 Lolita, by ____ Nabokov, published
+Vladimir
+10
+
+In 1958 Lolita, by Vladimir____ , published
+Nabokov
+10
+
+In 1958 Madonna (____ ) (in Bay City, MI), singer, actor?, born in
+Ciccone
+10
+
+In 1958 Michelle ____ Calif, actress (Batman Returns, Married to the Mob), born in
+Pfeiffer
+10
+
+In 1958 Niger gains autonomy within ____ Community (National Day)
+French
+10
+
+In 1958 Nikita ____ became Soviet premier and first secretary of Communist Party
+Khrushchev
+10
+
+In 1958 Pres. ____ signs into law National Aeronautics and Space Administration (NASA) and Space Act of 1958
+Eisenhower
+10
+
+In 1958 Prince ____ of Monaco, born in
+Albert
+10
+
+In 1958 Princess ____ of Monaco, born in
+Caroline
+10
+
+In 1958 Scott ____ Toledo, figure skating champion (Olympic-gold-1984), born in
+Hamilton
+10
+
+In 1958 Scott Hamilton____ , figure skating champion (Olympic-gold-1984), born in
+Toledo
+10
+
+In 1958 Shaun____ , singer, born in
+Cassidy
+10
+
+In 1958 Simon____ , rocker (Duran Duran), born in
+Le bon
+10
+
+In 1958 Sir Edmund Hillary reached ____ overland
+South pole
+10
+
+In 1958 Soviet novelist ____ Pasternak, wins Nobel Prize for Literature
+Boris
+10
+
+In 1958 Soviet novelist Boris____ , wins Nobel Prize for Literature
+Pasternak
+10
+
+In 1958 St. Clare of ____ declared patron saint of television
+Assissi
+10
+
+In 1958 The Soviet Union launched____
+Sputnik iii
+10
+
+In 1958 The U.S. Navy launched the ____ satellite
+Vanguard 1
+10
+
+In 1958 US launches 1st____ , Explorer 1
+Artificial satellite
+10
+
+In 1958 US troops occupy____ , stay 3 months
+Lebanon
+10
+
+In 1958 who had a pop music hit with 'willie and the hand jive'?
+Johnny otis
+10
+
+In 1958____ , by Vladimir Nabokov, published
+Lolita
+10
+
+In 1958____ , musician, born in
+Prince
+10
+
+In 1959 ____ (Steven Patrick) British rocker (The Smiths & solo artist), born in
+Morrissey
+10
+
+In 1959 ____ (USSR) launched
+Luna
+10
+
+In 1959 ____ abolishes serfdom
+Tibet
+10
+
+In 1959 ____ Alexander (George in Seinfeld), born in
+Jason
+10
+
+In 1959 ____ Bonaduce actor (Danny-Partridge Family) (1959 approx), born in
+Danny
+10
+
+In 1959 ____ defeats US for tennis' Davis Cup
+Australia
+10
+
+In 1959 ____ launched by USSR; first spacecraft to impact on the moon
+Luna 1
+10
+
+In 1959 ____ Museum, designed by Frank Lloyd Wright, opens in New York
+Guggenheim
+10
+
+In 1959 ____ reveals an intense radation belt around the Earth
+Explorer vi
+10
+
+In 1959 ____ siezes power in Cuba
+Fidel castro
+10
+
+In 1959 (USA) Val____ , actor, born in
+Kilmer
+10
+
+In 1959 12 nations sign a treaty for scientific peaceful use of____
+Antarctica
+10
+
+In 1959 1211-kg great white shark becomes largest fish ever caught on a?
+Rod
+10
+
+In 1959 1st color photograph of ____ from outer space
+Earth
+10
+
+In 1959 Cecil Blount de____ , producer (10 Commandments), dies 77
+Mille
+10
+
+In 1959 Constitution of ____ promulgated (National Day)
+Tunisia
+10
+
+In 1959 Danny ____ actor (Danny-Partridge Family) (1959 approx), born in
+Bonaduce
+10
+
+In 1959 Dolph ____ actor, born in
+Lundgren
+10
+
+In 1959 First astronauts - selection announced by?
+Nasa
+10
+
+In 1959 First house with built-in ____ exhibited, Pleasant Hills, Pa
+Bomb shelter
+10
+
+In 1959 Ford Motor Company cancels the____
+Edsel
+10
+
+In 1959 Groucho, ____ and Harpo's final TV appearance together
+Chico
+10
+
+In 1959 Groucho, Chico and ____ final TV appearance together
+Harpo
+10
+
+In 1959 Guggenheim Museum, designed by ____ Lloyd Wright, opens in New York
+Frank
+10
+
+In 1959 Guggenheim Museum, designed by Frank ____ Wright, opens in New York
+Lloyd
+10
+
+In 1959 Guggenheim Museum, designed by Frank Lloyd Wright, opens in____
+New york
+10
+
+In 1959 Guggenheim Museum, designed by Frank Lloyd____ , opens in New York
+Wright
+10
+
+In 1959 Irene ____ (in New York), actor, dancer, singer, born in
+Cara
+10
+
+In 1959 Jack Benny (Violin) and Richard ____ (Piano) play their famed duet
+Nixon
+10
+
+In 1959 Jason ____ (George in Seinfeld), born in
+Alexander
+10
+
+In 1959 Jason Alexander (George in____ ), born in
+Seinfeld
+10
+
+In 1959 John____ , tennis player, brat, born in
+Mcenroe
+10
+
+In 1959 Kilauea Volcano's most spectacular ____ (in Hawaii)
+Eruption
+10
+
+In 1959 Linda____ , St Louis Mo, actress (Exorcist, Chained Heat, Savage St), born in
+Blair
+10
+
+In 1959 M. C. ____ becomes the first aviator to fly a million miles in a jet airplane
+Garlow
+10
+
+In 1959 Maj. Dale R. ____ and Master Sgt. Chester M. Ovnand first American soldiers to be killed during the Vietnam War
+Buis
+10
+
+In 1959 Maj. Dale R. Buis and Master Sgt. Chester M. ____ first American soldiers to be killed during the Vietnam War
+Ovnand
+10
+
+In 1959 Maj. Dale R. Buis and Master Sgt. Chester M. Ovnand first American soldiers to be killed during the ____ War
+Vietnam
+10
+
+In 1959 Matthew____ , actor (Project X, Ladyhawk), born in
+Broderick
+10
+
+In 1959 Matthew____ , actor, born in
+Modine
+10
+
+In 1959 NASA announces first ____ astronauts with The Right Stuff
+Seven
+10
+
+In 1959 Oscar____ , Norwegian premier, dies
+Torp
+10
+
+In 1959 Princess ____ 'Fergie' Ferguson, the Duchess of York, born in
+Sarah
+10
+
+In 1959 Princess Sarah ____ ' Ferguson, the Duchess of York, born in
+Fergie
+10
+
+In 1959 Princess Sarah 'Fergie' Ferguson, the Duchess of____ , born in
+York
+10
+
+In 1959 Princess Sarah 'Fergie'____ , the Duchess of York, born in
+Ferguson
+10
+
+In 1959 Radar first bounced off sun, ____ California
+Stanford
+10
+
+In 1959 Randy ____ country singer (Always & Forever), born in
+Travis
+10
+
+In 1959 Richie ____ guitarist (Bon Jovi-You Give Love a Bad Name), born in
+Sambora
+10
+
+In 1959 Richie Sambora guitarist (____ -You Give Love a Bad Name), born in
+Bon jovi
+10
+
+In 1959 Robert Smith rock ____ /vocalist (Cure), born in
+Guitarist
+10
+
+In 1959 Sheena ____ Glasgow Scotland, singer/Jack LaLane spokesperson, born in
+Easton
+10
+
+In 1959 Soviet ____ becomes first human-made object to crash on moon
+Lunik 2
+10
+
+In 1959 Soviet Luna 3, 1st successful photographic spacecraft, impacts____
+Moon
+10
+
+In 1959 Soviet Premier ____ arrives in US to begin a 13-day visit
+Khrushchev
+10
+
+In 1959 Soviet____ , 1st successful photographic spacecraft, impacts Moon
+Luna
+10
+
+In 1959 Sultan of ____ promulgates a constitution
+Brunei
+10
+
+In 1959 Suzanne ____ rocker (My Name is Luka), born in
+Vega
+10
+
+In 1959____ , actor (Doctor Doctor, Max Headroom), born in
+Matt frewer
+10
+
+In 1959____ , Chico and Harpo's final TV appearance together
+Groucho
+10
+
+In 1959, Mattel introduced the world to Barbie(R), how much did Barbie(R) sell for in 1959?
+$3.00
+10
+
+In 1960 ____ (Brazzaville) gained independence from France (Nat'l Day)
+Congo
+10
+
+In 1960 ____ (Dahomey) gained independence from France
+Benin
+10
+
+In 1960 ____ (REM Lead Singer), born in
+Michael stipe
+10
+
+In 1960 ____ (without Senegal) gained independence from France (National Day)
+Mali
+10
+
+In 1960 ____ and Nixon clashed in 4th and final pres debate
+Jfk
+10
+
+In 1960 ____ becomes a republic
+Ghana
+10
+
+In 1960 ____ becomes the capital of Brazil
+Brasilia
+10
+
+In 1960 ____ carries 3 dogs into orbit (later recovered alive)
+Sputnik 5
+10
+
+In 1960 ____ Clay captures the olympic light heavyweight gold medal
+Cassius
+10
+
+In 1960 ____ gained independence from Britain (National Day)
+Nigeria
+10
+
+In 1960 ____ gained independence from France (National Day)
+Gabon
+10
+
+In 1960 ____ gained independence from France (National Day)
+Madagascar
+10
+
+In 1960 ____ gained independence from France
+Niger
+10
+
+In 1960 ____ gained independence from France
+Senegal
+10
+
+In 1960 ____ Gary Powers convicted of spying by USSR (U-2 incident)
+Francis
+10
+
+In 1960 ____ grants independence to the crown colony of Cyprus
+Britain
+10
+
+In 1960 ____ grants Mauritania independence
+France
+10
+
+In 1960 ____ Hutton, actor, born in
+Timothy
+10
+
+In 1960 ____ I (Television and Infra-Red Observation Satellite) launched to improve weather prediction
+Tiros
+10
+
+In 1960 ____ Kittinger parachutes from a balloon at 31,330 m (record)
+Joseph
+10
+
+In 1960 ____ Luther King Jr arrested in Atlanta sit-in
+Martin
+10
+
+In 1960 ____ National Day begins
+Senegalese
+10
+
+In 1960 ____ Penn, actor, born in
+Sean
+10
+
+In 1960 ____ recovered 2 dogs; 1st living organisms to return from space
+Ussr
+10
+
+In 1960 ____ Winslow, actor/comedian (Police Academy), born in
+Michael
+10
+
+In 1960 Argentina complains to UN about Israeli illicit transfer of____
+Eichman
+10
+
+In 1960 Britain grants independence to the crown colony of____
+Cyprus
+10
+
+In 1960 British Somaliland (now____ ) gained independence from Britain
+Somalia
+10
+
+In 1960 Cassius ____ captures the olympic light heavyweight gold medal
+Clay
+10
+
+In 1960 Central African Republic and ____ proclaim independence from France
+Chad
+10
+
+In 1960 Central African Republic and Chad proclaim independence from____
+France
+10
+
+In 1960 Congo (Brazzaville) gained independence from ____ (Nat'l Day)
+France
+10
+
+In 1960 Elvis Presley appears on a Frank ____ TV special
+Sinatra
+10
+
+In 1960 Federation of ____ (& Senegal) becomes independent of France
+Mali
+10
+
+In 1960 First electronic ____ placed on sale, NY city
+Wrist watch
+10
+
+In 1960 France grants ____ independence (Natl Day)
+Togo
+10
+
+In 1960 France grants ____ independence
+Mauritania
+10
+
+In 1960 Francis ____ Powers convicted of spying by USSR (U-2 incident)
+Gary
+10
+
+In 1960 Francis Gary ____ convicted of spying by USSR (U-2 incident)
+Powers
+10
+
+In 1960 francis gary powers, flew into a row with Russia and was shot down allegedly for what?
+Spying
+10
+
+In 1960 Gabon gained independence from ____ (National Day)
+France
+10
+
+In 1960 Hope ____ , actress (I Married Joan, Peter Gunn), dies at 62
+Emerson
+10
+
+In 1960 Irwin Allen directed The Lost World, in which a party of scientists encountered dinosaurs Which author wrote the book on which the film was based?
+Sir Arthur Conan Doyle
+10
+
+In 1960 Israel announced capture of Nazi ____ in Argentina
+Adolf eichmann
+10
+
+In 1960 Israeli soldiers capture ____ in Buenos Aires
+Adolf eichmann
+10
+
+In 1960 Ivan____ , tennis player, born in
+Lendl
+10
+
+In 1960 Ivory Coast, ____ , Upper Volta and Niger declare independence
+Dahomey
+10
+
+In 1960 Ivory Coast, Dahomey, ____ and Niger declare independence
+Upper volta
+10
+
+In 1960 Ivory Coast, Dahomey, Upper Volta and ____ declare independence
+Niger
+10
+
+In 1960 JFK and ____ clashed in 4th and final pres debate
+Nixon
+10
+
+In 1960 JFK and Nixon clashed in ____ and final pres debate
+4th
+10
+
+In 1960 John D ____ Jr philanthropist, dies at 86
+Rockefeller
+10
+
+In 1960 Joseph ____ parachutes from a balloon at 31,330 m (record)
+Kittinger
+10
+
+In 1960 Joseph Kittinger parachutes from a balloon at ____ m (record)
+31,330
+10
+
+In 1960 Key ____ Coral Reef Preserve established (first underwater park)
+Largo
+10
+
+In 1960 Kim ____ (in Lockport, NY), Sports Illustrated swimsuit covergirl born
+Alexis
+10
+
+In 1960 Mali (without Senegal) gained independence from ____ (National Day)
+France
+10
+
+In 1960 Mali (without____ ) gained independence from France (National Day)
+Senegal
+10
+
+In 1960 Martin ____ King Jr arrested in Atlanta sit-in
+Luther
+10
+
+In 1960 Martin Luther ____ Jr arrested in Atlanta sit-in
+King
+10
+
+In 1960 Martin Luther King Jr arrested in ____ sit-in
+Atlanta
+10
+
+In 1960 Mauritania gained independence from ____ (National Day)
+France
+10
+
+In 1960 Michael Winslow, actor/comedian (____ ), born in
+Police academy
+10
+
+In 1960 Michael____ , actor/comedian (Police Academy), born in
+Winslow
+10
+
+In 1960 Michael____ , Australia, rocker (Inxs-I Need You Tonight), born in
+Hutchence
+10
+
+In 1960 Mike____ , singer (Simply Red-Every Time We Say Goodbye), born in
+Hucknall
+10
+
+In 1960 Niger gained independence from____
+France
+10
+
+In 1960 Nigeria gained independence from ____ (National Day)
+Britain
+10
+
+In 1960 Prince____ , Second eldest son of HRH Queen Elizabeth II, born in
+Andrew
+10
+
+In 1960 Roger ____ rock drummer (Duran Duran), born in
+Taylor
+10
+
+In 1960 Russia shoots down Francis Gary ____ ' U-2 spy plane over Sverdlovsk
+Powers
+10
+
+In 1960 Sean____ , actor, born in
+Penn
+10
+
+In 1960 Senegal gained independence from____
+France
+10
+
+In 1960 Sputnik 5 carries 3 ____ into orbit (later recovered alive)
+Dogs
+10
+
+In 1960 The ____ Olympic games close in Rome
+17th
+10
+
+In 1960 The 17th Olympic games close in____
+Rome
+10
+
+In 1960 The first ____ launched from nuclear powered submarine is launched from the USS Halibut
+Guided missile
+10
+
+In 1960 The US imposes an embargo on ____ to Cuba
+Exports
+10
+
+In 1960 The US imposes an embargo on exports to____
+Cuba
+10
+
+In 1960 Timothy____ , actor, born in
+Hutton
+10
+
+In 1960 USSR's ____ launched with 2 dogs
+Sputnik 5
+10
+
+In 1960 Yannick ____ France, tennis player (French 1983), born in
+Noah
+10
+
+In 1960____ , Dahomey, Upper Volta and Niger declare independence
+Ivory coast
+10
+
+In 1960____ , first passive satellite launched
+Echo i
+10
+
+In 1960, the capital of Brazil was changed from rio de janeiro to what city?
+Brasilia
+10
+
+In 1961 ____ annexes Portuguese colonies of Goa, Damao and Diu
+India
+10
+
+In 1961 ____ announces there will be no more elections in Cuba
+Fidel castro
+10
+
+In 1961 ____ becomes independent within the British Commonwealth
+Tanganyika
+10
+
+In 1961 ____ Dylan's 1st NY performance
+Bob
+10
+
+In 1961 ____ granted full internal self-government by Britain
+Tanganyika
+10
+
+In 1961 ____ Locklear, actor, born...
+Heather
+10
+
+In 1961 ____ Madsen Chicago Ill, actress (Dune, Highlander, Class), born in
+Virginia
+10
+
+In 1961 ____ Marino NFL quarterback (Miami Dolphins), born in
+Dan
+10
+
+In 1961 ____ Marsalis, New Orleans La, jazz trumpeter (Grammy 1983), born in
+Wynton
+10
+
+In 1961 ____ S. Titov, second Russian in space aboard Vostok 2
+Gherman
+10
+
+In 1961 (USA) 1st performance of the ____ Boys
+Beach
+10
+
+In 1961 Andy____ , guitarist with Duran Duran, born in
+Taylor
+10
+
+In 1961 Bob ____ 's 1st NY performance
+Dylan
+10
+
+In 1961 Boy____ , androgynous rock musician (Culture Club), born in
+George
+10
+
+In 1961 Building of the ____ begins
+Berlin wall
+10
+
+In 1961 Carl ____ US, olympic track and field star (Gold-1984, 1988), born in
+Lewis
+10
+
+In 1961 Construction on ____ begins in East Germany
+Berlin wall
+10
+
+In 1961 Construction on Berlin Wall begins in____
+East Germany
+10
+
+In 1961 Cosmonaut ____ Titov circles Earth for a full day in Vostok 2
+Gherman
+10
+
+In 1961 Cosmonaut Gherman ____ circles Earth for a full day in Vostok 2
+Titov
+10
+
+In 1961 Cosmonaut Gherman Titov circles Earth for a full day in____
+Vostok 2
+10
+
+In 1961 Dan ____ NFL quarterback (Miami Dolphins), born in
+Marino
+10
+
+In 1961 Eddie ____ , comedian, actor, born in
+Murphy
+10
+
+In 1961 Element 103, ____ , first produced in Berkeley, California lab
+Lawrencium
+10
+
+In 1961 Ernest ____ shot himself to death in Ketchum, Idaho
+Hemingway
+10
+
+In 1961 Ernest Hemingway shot himself to death in____ , Idaho
+Ketchum
+10
+
+In 1961 Experimental reactor kills three in____ , Idaho
+Idaho falls
+10
+
+In 1961 Fidel ____ declares he's a Marxist, & will lead Cuba to Communism
+Castro
+10
+
+In 1961 First all solid ____ rocket put into orbit from Wallops Island, VA
+Propellant
+10
+
+In 1961 First In-flight ____ is shown (on TWA)
+Movie
+10
+
+In 1961 First live, nationally televised, ____ news conference (JFK)
+Presidential
+10
+
+In 1961 French army revolts in?
+Algeria
+10
+
+In 1961 Gary____ , 2 time Academy award winning actor, dies at 60
+Cooper
+10
+
+In 1961 Gherman S. Titov, ____ Russian in space aboard Vostok 2
+Second
+10
+
+In 1961 Gherman S. Titov, second Russian in space aboard____
+Vostok 2
+10
+
+In 1961 Gherman S.____ , second Russian in space aboard Vostok 2
+Titov
+10
+
+In 1961 Heather____ , actor, born...
+Locklear
+10
+
+In 1961 Julia Louis-Dreyfus NYC, ____ (SNL, Steinfeld, Day by Day), born in
+Comedienne
+10
+
+In 1961 k.d.____ , singer, born in
+Lang
+10
+
+In 1961 Lady ____ Spencer (Princess Di), born in
+Diana
+10
+
+In 1961 Lloyd____ , guitar/vocals (& the Commotions-Rattlesnakes), born in
+Cole
+10
+
+In 1961 Maris hits his ____ of 61 homers
+50th
+10
+
+In 1961 Maris hits his 50th of ____ homers
+61
+10
+
+In 1961 Michael J____ , Edmonton, Canada, actor (Family Ties, Back to the Future, Spin City), born in
+Fox
+10
+
+In 1961 Nia ____ born
+Peeples
+10
+
+In 1961 Outer ____ and Mauritania become the 102nd and 103rd members of UN
+Mongolia
+10
+
+In 1961 Outer Mongolia and ____ become the 102nd and 103rd members of UN
+Mauritania
+10
+
+In 1961 Portuguese rebels seize cruise ship?
+Santa maria
+10
+
+In 1961 Republic of ____ proclaimed
+Rwanda
+10
+
+In 1961 Soviet ballet dancer Rudolf ____ defects to West in Paris
+Nureyev
+10
+
+In 1961 Tanganyika gained independence from____
+Britain
+10
+
+In 1961 U.S. backed ____ invasion in Cuba. Ended in failure
+Bay of pigs
+10
+
+In 1961 U.S. breaks relations with?
+Cuba
+10
+
+In 1961 UK grants ____ independence
+Sierra leone
+10
+
+In 1961 UN General Assembly condemns ____ for apartheid
+South africa
+10
+
+In 1961 Unmanned ____ test explodes on launch pad
+Mercury
+10
+
+In 1961 Virginia ____ Chicago Ill, actress (Dune, Highlander, Class), born in
+Madsen
+10
+
+In 1961 Virginia Madsen Chicago Ill, actress (____ , Highlander, Class), born in
+Dune
+10
+
+In 1961 Virginia Madsen Chicago Ill, actress (Dune, ____ , Class), born in
+Highlander
+10
+
+In 1961 Volcano eruptions on ____ (South Atlantic)
+Tristan de cunha
+10
+
+In 1961 Wayne ____ born, hockey player
+Gretzky
+10
+
+In 1961 Woody____ , actor born
+Harrelson
+10
+
+In 1961 Wynton____ , New Orleans La, jazz trumpeter (Grammy 1983), born in
+Marsalis
+10
+
+In 1961 Yuri A. Gagarin becomes first man to orbit Earth aboard ____ 1
+Vostok
+10
+
+In 1961 Yuri A.____ , first man in orbit
+Gagarin
+10
+
+In 1961, john f kennedy became the first ____ ____ to be elected to the presidency
+Roman catholic
+10
+
+In 1961, who was the first man to travel in space?
+Yuri gagarin
+10
+
+In 1962 ____ and Beatles produce My Bonnie and The Saints
+Tony sheridan
+10
+
+In 1962 ____ and Rwanda gain independence from Belgium (National Days)
+Burundi
+10
+
+In 1962 ____ and Tobago gain independence from Britain (National Day)
+Trinidad
+10
+
+In 1962 ____ Andretti Indy-car racer/Auto Hall of Fame (elected 1986), born in
+Michael
+10
+
+In 1962 ____ Arab Republic proclaimed (National Day)
+Yemen
+10
+
+In 1962 ____ De Mornay actress (The Hand That Rocker The Cradle), born in
+Rebecca
+10
+
+In 1962 ____ die in an earthquake in western Iran
+10,000
+10
+
+In 1962 ____ Elwes, actor (Glory, Princess Bride, Robin Hood - Men In Tights), born in
+Cary
+10
+
+In 1962 ____ gained independence after 132 years of French rule
+Algeria
+10
+
+In 1962 ____ gained independence from Britain
+Jamaica
+10
+
+In 1962 ____ Hollyfield, 2-time Heavyweight boxing champ, born in
+Evander
+10
+
+In 1962 ____ launched to Mars falls into Atlantic Ocean
+Mariner i
+10
+
+In 1962 ____ launched to Venus; flyby mission
+Mariner 2
+10
+
+In 1962 ____ Monroe dies at age 36
+Marilyn
+10
+
+In 1962 ____ orders withdrawal of Cuban missiles
+Krushchev
+10
+
+In 1962 ____ Revolution against French ends (Algeria gained independence on 5th July)
+Algerian
+10
+
+In 1962 10,000 die in an earthquake in western____
+Iran
+10
+
+In 1962 8 of the 9 planets ____ for the first time in 400 years
+Aligned
+10
+
+In 1962 Algeria gained independence after ____ years of French rule
+132
+10
+
+In 1962 Algeria gained independence after 132 years of ____ rule
+French
+10
+
+In 1962 Algerian Revolution against ____ ends (Algeria gained independence on 5th July)
+French
+10
+
+In 1962 Beatles replace ____ with Ringo Starr
+Pete best
+10
+
+In 1962 Beatles replace Pete Best with____
+Ringo starr
+10
+
+In 1962 Burundi and ____ gain independence from Belgium (National Days)
+Rwanda
+10
+
+In 1962 Burundi and Rwanda gain independence from ____ (National Days)
+Belgium
+10
+
+In 1962 Cary____ , actor (Glory, Princess Bride, Robin Hood - Men In Tights), born in
+Elwes
+10
+
+In 1962 Cosmonaut ____ in space first time 2, manned craft in space
+Popovich
+10
+
+In 1962 E. E. ____ poet, dies at 67
+Cummings
+10
+
+In 1962 E. E. Cummings poet, dies at____
+67
+10
+
+In 1962 East German border guards shot and kill ____ Fechter, 18, attempting to cross Berlin Wall into western sector
+Peter
+10
+
+In 1962 East German border guards shot and kill Peter____ , 18, attempting to cross Berlin Wall into western sector
+Fechter
+10
+
+In 1962 Emilio ____ actor (Breakfast Club, Young Guns)
+Estevez
+10
+
+In 1962 Evander____ , 2-time Heavyweight boxing champ, born in
+Hollyfield
+10
+
+In 1962 First ____ satellite to reach moon launched from Cape Canaveral
+American
+10
+
+In 1962 France and ____ rebels agreed to a truce
+Algerian
+10
+
+In 1962 Garth____ , C&W singer, born in
+Brooks
+10
+
+In 1962 Hana____ , tennis player, born in
+Mandlikova
+10
+
+In 1962 Jackie____ , runner, born in
+Joyner-kersee
+10
+
+In 1962 Jamaica gained independence from____
+Britain
+10
+
+In 1962 John ____ aboard Friendship 7, is first American to orbit the Earth
+Glenn
+10
+
+In 1962 Katanga becomes part of the Democratic Republic of the____
+Congo
+10
+
+In 1962 Lou ____ Philips, actor, born in
+Diamond
+10
+
+In 1962 M. Scott ____ aboard Aurora 7 is launched
+Carpenter
+10
+
+In 1962 Marilyn ____ dies at age 36
+Monroe
+10
+
+In 1962 Marilyn Monroe dies at age____
+36
+10
+
+In 1962 Mariner 2 launched to____ ; flyby mission
+Venus
+10
+
+In 1962 Mariner I launched to ____ falls into Atlantic Ocean
+Mars
+10
+
+In 1962 Mariner I launched to Mars falls into ____ Ocean
+Atlantic
+10
+
+In 1962 Michael ____ Indy-car racer/Auto Hall of Fame (elected 1986), born in
+Andretti
+10
+
+In 1962 Mrs. ____ gives the TV audience a tour of the White House
+Kennedy
+10
+
+In 1962 N. Korea reports ____ election turnout, 100% vote for Workers' Party
+100%
+10
+
+In 1962 NASA civilian pilot Neil A ____ takes X-15 to 54,600 m
+Armstrong
+10
+
+In 1962 Paula____ , singer, born in
+Abdul
+10
+
+In 1962 Pope ____ convenes 21st Roman Catholic ecumenical council, Vatican II, in Rome
+John xxiii
+10
+
+In 1962 Pope John XXIII convenes ____ Roman Catholic ecumenical council, Vatican II, in Rome
+21st
+10
+
+In 1962 Rebecca ____ actress (The Hand That Rocker The Cradle), born in
+De mornay
+10
+
+In 1962 Telstar, first ____ communications satellite, launched
+Geosynchronous
+10
+
+In 1962 Terrence Trent____ , musician, born in
+D'arby
+10
+
+In 1962 The fab fours' first recording session under the name ____ (they were formerly the Silver Beatles)
+Beatles
+10
+
+In 1962 Tom Cruise, Syracuse, New York, actor (____ , Color of Money, Rainman), born in
+Risky business
+10
+
+In 1962 Tom Cruise, Syracuse, New York, actor (Risky Business, ____ , Rainman), born in
+Color of money
+10
+
+In 1962 Tom Cruise, Syracuse, New York, actor (Risky Business, Color of Money,____ ), born in
+Rainman
+10
+
+In 1962 Trinidad and ____ gain independence from Britain (National Day)
+Tobago
+10
+
+In 1962 UN announces Earth population has hit____
+3 billion
+10
+
+In 1962 US sells ____ anti-aircraft missiles to Israel
+Hawk
+10
+
+In 1962 US sells Hawk anti-aircraft missiles to____
+Israel
+10
+
+In 1962 US/UK launch of ____ satellite; 1st international payload
+Ariel
+10
+
+In 1962____ , first geosynchronous communications satellite, launched
+Telstar
+10
+
+In 1962____ , Syracuse, New York, actor (Risky Business, Color of Money, Rainman), born in
+Tom cruise
+10
+
+In 1962, who lamented that 'only love can break a heart'?
+Gene pitney
+10
+
+In 1962, who recorded 'little egypt'?
+Coasters
+10
+
+In 1963 ____ 1st tour (opening act for Bo Diddley and Everly Bros)
+Rolling stones
+10
+
+In 1963 ____ becomes a republic within the British Commonwealth
+Uganda
+10
+
+In 1963 ____ begins trial of Nelson Mandela and 8 others on conspiracy
+South africa
+10
+
+In 1963 ____ claims to have a 100-megaton nuclear bomb
+Khrushchev
+10
+
+In 1963 ____ federal pen in San Francisco Bay was closed
+Alcatraz
+10
+
+In 1963 ____ Hetfield heavy metal rocker (Metallica), born in
+James
+10
+
+In 1963 ____ Houston, singer, born in
+Whitney
+10
+
+In 1963 ____ Lennon, musician, son of John Lennon, born in
+Julian
+10
+
+In 1963 ____ Walker in X-15 test plane reaches 106 km (67 miles), straight up
+Joe
+10
+
+In 1963 Beatles meet ____ for 1st time
+Rolling stones
+10
+
+In 1963 Beatles receive their 1st ____ disc (Please Please Me)
+Silver
+10
+
+In 1963 Beatles release ____ & Ask Me Why
+Please please me
+10
+
+In 1963 Bob Dylan cancels appearance on?
+Ed sullivan
+10
+
+In 1963 Brigitte ____ actress (Red Sonja, Rocky IV, Domino), born in
+Nielsen
+10
+
+In 1963 Charles____ , Star player for the Pheonix Suns and Houston Rockets basketball teams, born in
+Barkley
+10
+
+In 1963 Decca signs the ____ on advice of Beatle George Harrison
+Rolling stones
+10
+
+In 1963 Elizabeth Ann ____ of New York was beatified. She was sainted in 1975
+Seton
+10
+
+In 1963 First and only live murder on TV - Jack ____ shoots Lee Harvey Oswald
+Ruby
+10
+
+In 1963 George ____ (in England), singer, born in
+Michael
+10
+
+In 1963 Helen ____ LA Calif, actress (Mad About You), born in
+Hunt
+10
+
+In 1963 I.O.C. votes ____ to host 1968 Olympics
+Mexico city
+10
+
+In 1963 Indonesia takes control of ____ (west New Guinea) from Netherlands
+Irian jaya
+10
+
+In 1963 James ____ heavy metal rocker (Metallica), born in
+Hetfield
+10
+
+In 1963 Jennifer ____ (in Chicago), actor (Flashdance) ,born
+Beals
+10
+
+In 1963 Joe ____ in X-15 test plane reaches 106 km (67 miles), straight up
+Walker
+10
+
+In 1963 Joe Walker in ____ reaches 105 km
+X-15
+10
+
+In 1963 John ____ encyclical On peace in truth, justice, charity & liberty
+Xxiii
+10
+
+In 1963 Johnny____ , actor, born in
+Depp
+10
+
+In 1963 King Victor ____ of Italy, becomes Emperor of Ethiopia
+Emmanual iii
+10
+
+In 1963 Lars____ , Danish/US heavy metal drummer (Metallica-Kill 'em All), born in
+Ulrich
+10
+
+In 1963 Michael____ , gravity-defying hoopster, born in
+Jordan
+10
+
+In 1963 Nuclear ____ Ban Treaty signed
+Test
+10
+
+In 1963 Patsy Cline, ____ , and Hawkshaw Hawkins die in a plane crash
+Cowboy copus
+10
+
+In 1963 Patsy Cline, Cowboy Copus, and ____ die in a plane crash
+Hawkshaw hawkins
+10
+
+In 1963 Pope ____ (Giovanni Battista Montini) succeeds John XXIII
+Paul vi
+10
+
+In 1963 President John Kennedy assasinated in____ ; Lee Harvey Oswald is assumed to have been the assasin
+Dallas
+10
+
+In 1963 South Africa begins trial of ____ and 8 others on conspiracy
+Nelson mandela
+10
+
+In 1963 South Africa begins trial of Nelson Mandela and ____ others on conspiracy
+Eight
+10
+
+In 1963 Treaty banning ____ nuclear tests signed by US, UK, USSR
+Atmospheric
+10
+
+In 1963 Treaty banning atmospheric nuclear tests signed by US, ____ , USSR
+Uk
+10
+
+In 1963 Treaty banning atmospheric nuclear tests signed by US, UK,____
+Ussr
+10
+
+In 1963 Treaty banning atmospheric nuclear tests signed by____ , UK, USSR
+Us
+10
+
+In 1963 US____ , first geosynchronous communications satellite, launched
+Syncom
+10
+
+In 1963 US, ____ and England sign nuclear test ban treaty
+Russia
+10
+
+Born in 1963, Vanessa ____ (in Millwood, NY) was the first black Miss America
+Williams
+10
+
+Last name: Singer Whitney ____ was born in 1963
+Houston
+10
+
+In 1963 Zanzibar gained independence from ____
+Britain
+10
+
+In 1963 ____ , Cowboy Copus, and Hawkshaw Hawkins die in a plane crash
+Patsy cline
+10
+
+In 1963, which group had two top ten hits, 'blowin' in the wind' and 'don't think twice, it's all right' which were written by bob dylan?
+Peter, Paul and Mary
+10
+
+In 1964 ____ (N. Rhodesia) gained independence from Britain (National Day)
+Zambia
+10
+
+In 1964 ____ (then Nyasaland) gained independence from Britain (Natl Day)
+Malawi
+10
+
+In 1964 ____ achieves internal self-government & cabinet responsibility
+Bahamas
+10
+
+In 1964 ____ and Brezhnev replace Soviet premier Nikita Krushchev
+Kosygin
+10
+
+In 1964 ____ and other jewels are stolen in NY
+Star of India
+10
+
+In 1964 ____ becomes world's 5th nuclear power
+China
+10
+
+In 1964 ____ begins a long jail term in South Africa
+Nelson mandela
+10
+
+In 1964 ____ Commission found that Lee Harvey Oswald acted alone
+Warren
+10
+
+In 1964 ____ gained independence from Britain
+Malta
+10
+
+In 1964 ____ Hoover 31st president of US, dies in NY at 90
+Herbert
+10
+
+In 1964 ____ launched toward the Moon; sent back 4308 TV pictures
+Ranger 7
+10
+
+In 1964 ____ launches its first Orbital Geophysical Observatory (OGO-1)
+Nasa
+10
+
+In 1964 ____ Marciano former heavyweight champ, dies in a plane crash
+Rocky
+10
+
+In 1964 ____ Marx comedian (Marx Bros), dies at 75
+Harpo
+10
+
+In 1964 ____ signs an anti-poverty measure totaling nearly $1 billion
+Lbj
+10
+
+In 1964 ____ Summer Olympic Games opened in Tokyo
+18th
+10
+
+In 1964 (USA)____ , actor (The Rock, Face/Off), born in
+Nicolas cage
+10
+
+In 1964 18th Summer Olympic Games opened in____
+Tokyo
+10
+
+In 1964 1st ____ program run on a computer (Dartmouth)
+Basic
+10
+
+In 1964 9th Winter Olympic games open in____ , Austria
+Innsbruck
+10
+
+In 1964 Andy ____ , rocker (Erasure), born in
+Bell
+10
+
+In 1964 Beatles ____ appearance on Ed Sullivan
+Second
+10
+
+In 1964 Cassius Clay beats ____ for the heavyweight championship
+Sonny liston
+10
+
+In 1964 China becomes world's ____ nuclear power
+5th
+10
+
+In 1964 Congress passes ____ Resolution, official start of Vietnam war
+Tonkin
+10
+
+In 1964 Courtney ____ Birmingham Ala, actress (Monica on Friends), born in
+Cox
+10
+
+In 1964 Douglas MacArthur US general (Pacific theater-WW II), dies at?
+84
+10
+
+In 1964 Earthquake strikes____ , 8.4 on the Richter scale, 100 killed
+Alaska
+10
+
+In 1964 Harpo ____ comedian (Marx Bros), dies at 75
+Marx
+10
+
+In 1964 Harpo Marx comedian (Marx Bros), dies at____
+75
+10
+
+In 1964 Herbert ____ 31st president of US, dies in NY at 90
+Hoover
+10
+
+In 1964 Herbert Hoover ____ president of US, dies in NY at 90
+31st
+10
+
+In 1964 Herbert Hoover 31st president of US, dies in NY at____
+90
+10
+
+In 1964 Jacqueline Kennedy's 1st ____ (TV) since assassination
+Public appearance
+10
+
+In 1964 Jury in ____ found Jack Ruby guilty of murdering Lee Harvey Oswald
+Dallas
+10
+
+In 1964 Kenyan ____ Day
+Independance
+10
+
+In 1964 Kosygin and ____ replace Soviet premier Nikita Krushchev
+Brezhnev
+10
+
+In 1964 Launch of Voskhod 1, 1st 3 man crew (____ , Feokistov, Yegorov)
+Komarov
+10
+
+In 1964 Launch of Voskhod 1, 1st 3 man crew (Komarov, ____ , Yegorov)
+Feokistov
+10
+
+In 1964 Launch of Voskhod 1, 1st 3 man crew (Komarov, Feokistov,____ )
+Yegorov
+10
+
+In 1964 Launch of____ , 1st 3 man crew (Komarov, Feokistov, Yegorov)
+Voskhod
+10
+
+In 1964 Malta gained independence from____
+Britain
+10
+
+In 1964 Mariner 4 launched. First spacecraft to fly by____
+Mars
+10
+
+In 1964 Matt____ , actor, born in
+Dillon
+10
+
+In 1964 NASA launches its first ____ (OGO-1)
+Orbital geophysical observatory
+10
+
+In 1964 Pope Paul VI visits ____ and Israel
+Jordan
+10
+
+In 1964 Prince ____ of England, royalty, born in
+Edward
+10
+
+In 1964 Ranger 7 launched toward the____ ; sent back 4308 TV pictures
+Moon
+10
+
+In 1964 rhodesia declared udi, what is 'udi'?
+Unilateral declaration of independence
+10
+
+In 1964 Rob____ , actor, famous for home-made movies, born in
+Lowe
+10
+
+In 1964 Rocky ____ former heavyweight champ, dies in a plane crash
+Marciano
+10
+
+In 1964 Sidney ____ became first black man to win Oscar for best actor
+Poitier
+10
+
+In 1964 Tanganyika & ____ unite to form Tanzania (Tanzanian Union Day)
+Zanzibar
+10
+
+In 1964 this singer was shot dead by a woman, after wandering into the wrong hotel room, half naked?
+Sam Cooke
+10
+
+In 1964 Unmanned ____ launched
+Gemini 1
+10
+
+In 1964 US and ____ agree to resume diplomatic relations
+Panama
+10
+
+In 1964 US diplomats find at least 40 secret mics in the ____ embassy
+Moscow
+10
+
+In 1964 US launches Mariner 3 toward____ ; no data returned
+Mars
+10
+
+In 1964 US Ranger ____ transmits the 1st lunar close-up photos before impact. Takes 4,316 pictures before crashing on moon
+Seven
+10
+
+In 1964 US Ranger 7 transmits the 1st lunar close-up photos before impact. Takes ____ pictures before crashing on moon
+4,316
+10
+
+In 1964 Warren Commission found that ____ acted alone
+Lee harvey oswald
+10
+
+In 1964 Zambia (N. Rhodesia) gained independence from ____ (National Day)
+Britain
+10
+
+In 1964____ , assassin of Lee Harvey Oswald, died
+Jack ruby
+10
+
+In 1964, bobby freeman urged everybody to do which new dance out of the water?
+Swim
+10
+
+In 1965 ____ (T.S.) Eliot, poet, died
+Thomas stearns
+10
+
+In 1965 ____ [Dee Dee Williams], singer/actress (Action Jackson), born in
+Vanity
+10
+
+In 1965 ____ assassinated
+Malcolm x
+10
+
+In 1965 ____ Engle in X-15 reaches 80 km
+Joe
+10
+
+In 1965 ____ gained independence from Malaysia (National Day)
+Singapore
+10
+
+In 1965 ____ is made an autonomous region of China
+Tibet
+10
+
+In 1965 ____ National Day
+Gambian
+10
+
+In 1965 ____ Sheen, actor (Wall St, Platoon), born in
+Charlie
+10
+
+In 1965 1st ____ US Army ground units arrive in South Vietnam
+Large-scale
+10
+
+In 1965 Bangladesh windstorm kills ____
+17,000
+10
+
+In 1965 Beatle's ____ Stadium concert
+Shea
+10
+
+In 1965 Borman and Lovell Splash down in____ . Ends two week Gemini VII flight
+Atlantic
+10
+
+In 1965 Charlie Sheen, actor (____ , Platoon), born in
+Wall st
+10
+
+In 1965 Charlie Sheen, actor (Wall St,____ ), born in
+Platoon
+10
+
+In 1965 Charlie____ , actor (Wall St, Platoon), born in
+Sheen
+10
+
+In 1965 David O Selznick Gone With the Wind's producer, dies at?
+63
+10
+
+In 1965 Federal Voting Rights Act guarantees ____ voting rights
+Black
+10
+
+In 1965 Folk-rock begins, ____ uses electricity at Newport Folk Festival
+Dylan
+10
+
+In 1965 France launches first____ , a 92-pound A1 capsule
+Satellite
+10
+
+In 1965 Gemini ____ is launched. Ed White first American to walk in space
+Iv
+10
+
+In 1965 Gemini ____ returned after 12 days, 7 hours, 11 minutes, 53 seconds
+Five
+10
+
+In 1965 Gemini ____ returns to Earth
+Iv
+10
+
+In 1965 Gemini 3 launched, first US ____ space flight
+2-man
+10
+
+In 1965 Gemini 5 returned after ____ days, 7 hours, 11 minutes, 53 seconds
+Twelve
+10
+
+In 1965 Gemini 5 returned after 12 days, ____ hours, 11 minutes, 53 seconds
+Seven
+10
+
+In 1965 Gemini 5 returned after 12 days, 7 hours, ____ minutes, 53 seconds
+Eleven
+10
+
+In 1965 Gemini 5 returned after 12 days, 7 hours, 11 minutes, ____ seconds
+53
+10
+
+In 1965 Gemini VI returns to____
+Earth
+10
+
+In 1965 Gene ____ suggests 16 names including Kirk for Star Trek Captain
+Roddenberry
+10
+
+In 1965 Israel & ____ exchange letters beginning diplomatic relations
+West Germany
+10
+
+In 1965 Israel's cabinet approved diplomatic relations with?
+West Germany
+10
+
+In 1965 Joe ____ in X-15 reaches 80 km
+Engle
+10
+
+In 1965 Joe Engle in ____ reaches 80 km
+X-15
+10
+
+In 1965 Joe Engle in X-15 reaches ____ km
+80
+10
+
+In 1965 Karen ____ Lufkin Tx, playmate (Oct, 1989), born in
+Foster
+10
+
+In 1965 March by civil rights demonstrators was broken up in____ , Alabama
+Selma
+10
+
+In 1965 Martin Luther King, Jr. begins march from ____ to Montgomery, Ala
+Selma
+10
+
+In 1965 Martin Luther King, Jr. begins march from Selma to____ , Ala
+Montgomery
+10
+
+In 1965 Paulina ____ , Sports Illustrated swimsuit covergirl, actress, born in
+Porizkova
+10
+
+In 1965 Pope ____ proclaims Jews not collectively guilty for crucifixion
+Paul vi
+10
+
+In 1965 Republic of ____ gained independence from Britain (Nat'l Day)
+Maldives
+10
+
+In 1965 Republic of Maldives gained independence from ____ (Nat'l Day)
+Britain
+10
+
+In 1965 Rhodesia proclaimed independence from ____ by PM Ian D. Smith
+Britain
+10
+
+In 1965 Russia launches second and final____ . The first spacewalk is made by Aleksei Leonov
+Voshkoid
+10
+
+In 1965 Singapore gained independence from ____ (National Day)
+Malaysia
+10
+
+In 1965 they urged you to keep on dancing?
+The gentrys
+10
+
+In 1965 Tibet is made an autonomous region of____
+China
+10
+
+In 1965 Venera 2 launched by ____ Union toward Venus
+Soviet
+10
+
+In 1965 which song by sam the sham and the pharaohs peaked at number 2?
+Woolly bully
+10
+
+In 1965, Alexei Leonov became the first man to do what?
+Walk in space
+10
+
+In 1965, lyndon b johnson enacted a law requiring cigarette manufacturers to put what on their packages?
+Health warnings
+10
+
+In 1965, The Kinks sang about a Dedicated Follower Of what?
+Fashion
+10
+
+In 1965, which album did bob dylan release featuring 'subterranean homesick blues' and 'it's all over now, baby blue'?
+Bringing it all back home
+10
+
+In 1965, which song by sam the sham and the pharaohs peaked at number 2 on the charts?
+Wooly bully
+10
+
+In 1965, who had a top ten hit with 'you're the one'?
+Vogues
+10
+
+In 1965, who urged you to keep on dancing?
+Gentrys
+10
+
+In 1966 ____ (Basutoland) gained independence from Britain (National Day)
+Lesotho
+10
+
+In 1966 ____ beats West Germany 4-2 for Football's 8th World Cup in London
+England
+10
+
+In 1966 ____ becomes a republic
+Malawi
+10
+
+In 1966 ____ Bruce comedian, dies of a morphine overdose
+Lenny
+10
+
+In 1966 ____ gained independence from Britain (National Day)
+Botswana
+10
+
+In 1966 ____ gained independence from England, becomes Botswana
+Bechuanaland
+10
+
+In 1966 ____ is launched
+Gemini xi
+10
+
+In 1966 ____ Launched to moon
+Orbiter 1
+10
+
+In 1966 ____ launches its first satellite in to space
+Japan
+10
+
+In 1966 ____ releases his 1st record (Can't Help Thinking About Me)
+David bowie
+10
+
+In 1966 ____ XII launched on four-day flight (the final Gemini flight)
+Gemini
+10
+
+In 1966 ____ XII returns to Earth
+Gemini
+10
+
+In 1966 Barbados gained independence from ____ (National Day)
+Britain
+10
+
+In 1966 Bechuanaland gained independence from England, becomes____
+Botswana
+10
+
+In 1966 Bechuanaland gained independence from____ , becomes Botswana
+England
+10
+
+In 1966 Botswana gained independence from ____ (National Day)
+Britain
+10
+
+In 1966 Daylight meteor seen from ____ to Canada
+Utah
+10
+
+In 1966 Daylight meteor seen from Utah to____
+Canada
+10
+
+In 1966 Dr ____ South African PM, assassinated in assembly
+Verwoerd
+10
+
+In 1966 Emperor Haile ____ (Ethiopia) visits Kingston Jamaica
+Selassie
+10
+
+In 1966 England beats ____ 4-2 for Football's 8th World Cup in London
+West Germany
+10
+
+In 1966 England beats West Germany 4-2 for Football's 8th World Cup in____
+London
+10
+
+In 1966 First major tidal power plant opened at Rance estuary,____
+France
+10
+
+In 1966 First US ____ orbiter
+Lunar
+10
+
+In 1966 Israeli hmuel Yosef Agnon wins ____ Prize for literature
+Nobel
+10
+
+In 1966 Janet____ , singer, Michael's sister, born in
+Jackson
+10
+
+In 1966 Justine ____ (in Rye, NY), actress (Family Ties), born in
+Bateman
+10
+
+In 1966 Lenny ____ comedian, dies of a morphine overdose
+Bruce
+10
+
+In 1966 Lenny Bruce comedian, dies of a ____ overdose
+Morphine
+10
+
+In 1966 Lesotho (____ ) gained independence from Britain (National Day)
+Basutoland
+10
+
+In 1966 Lesotho (Basutoland) gained independence from ____ (National Day)
+Britain
+10
+
+In 1966 Luna ____ , first lunar orbiter
+Ten
+10
+
+In 1966 Lunar ____ takes first photograph of earth from the moon
+Orbiter 1
+10
+
+In 1966 Montgomery ____ actor, dies at 45
+Clift
+10
+
+In 1966 Montgomery Clift actor, dies at____
+45
+10
+
+In 1966 OAO 1, the 1st orbiting ____ observatory, launched
+Astronomical
+10
+
+In 1966 Pan Am places ____ order for 25 Boeing 747's
+$525,000,000
+10
+
+In 1966 Tortoise reportedly given to Tonga's king by Capt. ____ (1773), dies
+Cook
+10
+
+In 1966 U.S. sub locates missing ____ bomb in Mediterranean
+Hydrogen
+10
+
+In 1966 USSR launches ____ for orbit around Moon
+Luna 11
+10
+
+In 1966 Venera 3, ____ landing
+Venus
+10
+
+In 1966____ , Sweden, tennis player (Wimbeldon 1988), born in
+Stefan edberg
+10
+
+In 1966, which woman became the first briton to fly solo around the world?
+Sheila scott
+10
+
+In 1967 ____ (aka Muhammad Ali) has first Madison Square Garden fight
+Cassius clay
+10
+
+In 1967 ____ & Elvis Presley wed
+Priscilla
+10
+
+In 1967 ____ abolishes traditional tribal kingdoms, becomes a republic
+Uganda
+10
+
+In 1967 ____ attend the Human Be-In, SF
+20,00
+10
+
+In 1967 ____ captures Wailing Wall
+Israel
+10
+
+In 1967 ____ convicted of refusing induction into armed services
+Muhammad ali
+10
+
+In 1967 ____ executed in Bolivia
+Che guevara
+10
+
+In 1967 ____ Hertzsprung, Danish astrophysicist dies at 94
+Ejnar
+10
+
+In 1967 ____ Knight in X-15 reaches 85 km about Earth
+Pete
+10
+
+In 1967 ____ makes fly-by of Venus
+Mariner 5
+10
+
+In 1967 ____ votes 12,138 to 44 to remain British
+Gibraltar
+10
+
+In 1967 1st human heart transplant performed (Dr Christian____ , S Africa)
+Barnard
+10
+
+In 1967 1st successful test flight of a____
+Saturn v
+10
+
+In 1967 Body of ____ moved from a temporary grave to a permanent memorial
+John kennedy
+10
+
+In 1967 Britain grants internal self-government to?
+Swaziland
+10
+
+In 1967 Charles ____ says 'Vive le Quebec libre! Long live free Quebec!'
+De gaulle
+10
+
+In 1967 Che Guevara executed in____
+Bolivia
+10
+
+In 1967 Cosmonaut ____ is first to die in space aboard Soyuz 1
+Komarov
+10
+
+In 1967 Egyptian president ____ closes Straits of Tiran to Israel
+Nassar
+10
+
+In 1967 Ejnar Hertzsprung, Danish astrophysicist dies at____
+94
+10
+
+In 1967 Ejnar____ , Danish astrophysicist dies at 94
+Hertzsprung
+10
+
+In 1967 Fatal ____ fire kills Grissom, Chaffee, and White
+Apollo i
+10
+
+In 1967 First Boeing ____ rolls out
+737
+10
+
+In 1967 Gibraltar votes ____ to 44 to remain British
+12,138
+10
+
+In 1967 Israel, ____ , Jordan, Iraq, and Egypt begin Six-Day War
+Syria
+10
+
+In 1967 Israel, Syria, ____ , Iraq, and Egypt begin Six-Day War
+Jordan
+10
+
+In 1967 Israel, Syria, Jordan, ____ , and Egypt begin Six-Day War
+Iraq
+10
+
+In 1967 Israel, Syria, Jordan, Iraq, and ____ begin Six-Day War
+Egypt
+10
+
+In 1967 Israel, Syria, Jordan, Iraq, and Egypt begin ____ -Day War
+Six
+10
+
+In 1967 Launch of ____ for Venus fly-by
+Mariner v
+10
+
+In 1967 Mariner 5 makes fly-by of____
+Venus
+10
+
+In 1967 Olivia____ , London England, actress, born in
+D'abo
+10
+
+In 1967 Pamela____ , Ladysmith BC, Canada, (Home Improvement, Baywatch), born in
+Anderson
+10
+
+In 1967 Pete ____ in X-15 reaches 85 km about Earth
+Knight
+10
+
+In 1967 Pete Knight in ____ reaches 85 km about Earth
+X-15
+10
+
+In 1967 Pete Knight in X-15 reaches ____ km about Earth
+85
+10
+
+In 1967 Prince Willem-Alexander of the ____ , heir apparent, born in
+Netherlands
+10
+
+In 1967 Russia launches first ____ mission
+Soyuz
+10
+
+In 1967 Shah of Iran crowns himself after ____ years on Peacock Throne
+26
+10
+
+In 1967 Singer Otis ____ dies in plane crash at 26
+Redding
+10
+
+In 1967 South ____ (then Aden) gained independence from Britain
+Yemen
+10
+
+In 1967 Soviet ____ becomes the 1st probe to send data back from Venus
+Venera 4
+10
+
+In 1967 Soviet Venera 4 becomes the 1st probe to send data back from____
+Venus
+10
+
+In 1967 Svetlana ____ (Josef Stalin's daughter) defects in NYC
+Alliluyeva
+10
+
+In 1967 Thousands opposing Vietnam War tried to storm the____
+Pentagon
+10
+
+In 1967 UN Security council passes resolution 242, declaring that ____ must give back land won in the 6 day war
+Israel
+10
+
+In 1967 US ____ lands on Moon
+Surveyor iii
+10
+
+In 1967 USSR launches ____ for observation of Sun from Earth orbit
+Kosmos 166
+10
+
+In 1967 Vivian ____ Scarlet in Gone with the Wind, dies at 53
+Leigh
+10
+
+In 1967 Vivian Leigh ____ in Gone with the Wind, dies at 53
+Scarlet
+10
+
+In 1967 Vivian Leigh Scarlet in Gone with the Wind, dies at ____
+53
+10
+
+In 1967____ , Syria, Jordan, Iraq, and Egypt begin Six-Day War
+Israel
+10
+
+In 1967, which soap opera became the first to feature a black character?
+As the world turns
+10
+
+In 1968 ____ blind & deaf, dies at 87
+Helen keller
+10
+
+In 1968 ____ Corporation is incorporated
+Intel
+10
+
+In 1968 ____ gained independence from Britain (National Day)
+Swaziland
+10
+
+In 1968 ____ Kennedy marries Aristotle Onassis
+Jacqueline
+10
+
+In 1968 ____ Lake actress (Hairspray, Ricki Lake Show), born in
+Ricki
+10
+
+In 1968 ____ returns to Earth
+Apollo 7
+10
+
+In 1968 (USA) John____ , author, died
+Steinbeck
+10
+
+In 1968 Borman, ____ and Anders first men to orbit moon
+Lovell
+10
+
+In 1968 Cosmonaut____ , first man to orbit earth died in a plane crash
+Gagarin
+10
+
+In 1968 Dr Spock indicted on ____ law violations
+Draft
+10
+
+In 1968 Dr. Christian Barnard performs the ____ successful heart transplant
+Second
+10
+
+In 1968 Dr. Martin Luther King Jr shot to death in ____ , Tennessee
+Memphis
+10
+
+In 1968 Equatorial ____ gained independence from Spain (National Day)
+Guinea
+10
+
+In 1968 Equatorial Guinea gained independence from ____ (National Day)
+Spain
+10
+
+In 1968 France became world's ____ thermonuclear power
+5th
+10
+
+In 1968 Gary____ , actor, born in
+Coleman
+10
+
+In 1968 Helen Keller blind & deaf, dies at ____
+87
+10
+
+In 1968 Jacqueline ____ marries Aristotle Onassis
+Kennedy
+10
+
+In 1968 Jacqueline Kennedy marries ____ Onassis
+Aristotle
+10
+
+In 1968 Jacqueline Kennedy marries Aristotle____
+Onassis
+10
+
+In 1968 Molly ____ (in Los Angeles, CA), actress (Pretty in Pink), born in
+Ringwald
+10
+
+In 1968 Motion Picture Association of America adopts film ____ system
+Rating
+10
+
+In 1968 N. Vietnam agreed to meet US reps to set up preliminary ____ talks
+Peace
+10
+
+In 1968 Nauru gained independence from ____ (1982 pop 8,421)
+Australia
+10
+
+In 1968 New socialist constitution of ____ Germany takes effect
+East
+10
+
+In 1968 PLO's first hijacking of an ____ plane
+El al
+10
+
+In 1968 Police find 219 grains of ____ in John and Yoko's apartment
+Cannabis resin
+10
+
+In 1968 Pope ____ encyclical On the regulation of birth
+Paul vi
+10
+
+In 1968 Radio ____ (Czech) at 12:50 AM announces a soviet led invasion
+Prague
+10
+
+In 1968 Ricki ____ actress (Hairspray, Ricki Lake Show), born in
+Lake
+10
+
+In 1968 Sen. ____ F. Kennedy assassinated at the Ambassador Hotel in Los Angeles (by Sirhan Sirhan) after winning the Democratic Primary
+Robert
+10
+
+In 1968 Swaziland gained independence from ____ (National Day)
+Britain
+10
+
+In 1968, who invited you to Dance To The Music?
+Sly and the Family Stones
+10
+
+In 1969 ____ attend Atlanta Pop Festival featuring Led Zepplin and Janis Joplin
+140,000
+10
+
+In 1969 ____ Chi Minh North Vietnamese president, dies
+Ho
+10
+
+In 1969 ____ Eleniak, actress (Under Siege, Beverly Hillbillies), born in
+Erika
+10
+
+In 1969 ____ flies past Mars
+Mariner 7
+10
+
+In 1969 ____ is launched
+Soyuz 8
+10
+
+In 1969 ____ launched. First successful landing on another planet
+Venera
+10
+
+In 1969 ____ Music and Art Fair opened in New York State
+Woodstock
+10
+
+In 1969 ____ Priestley Vancouver BC, actor (Brandon-Beverly Hills 90210), born in
+Jason
+10
+
+In 1969 ____ returns to Earth
+Soyuz 7
+10
+
+In 1969 ____ revolution, Col Moammar Gadhafi deposes King Idris
+Libyan
+10
+
+In 1969 ____ troops intervened militarily in Northern Ireland
+British
+10
+
+In 1969 ____ writer (James Bond), dies at 80
+Ian fleming
+10
+
+In 1969 140,000 attend ____ Pop Festival featuring Led Zepplin and Janis Joplin
+Atlanta
+10
+
+In 1969 140,000 attend Atlanta Pop Festival featuring ____ and Janis Joplin
+Led zepplin
+10
+
+In 1969 140,000 attend Atlanta Pop Festival featuring Led Zepplin and____
+Janis joplin
+10
+
+In 1969 1st men on Moon, Neil ____ and Edwin Aldrin, Apollo 11
+Armstrong
+10
+
+In 1969 1st men on Moon, Neil Armstrong and Edwin Aldrin,____
+Apollo 11
+10
+
+In 1969 1st men on Moon, Neil Armstrong and Edwin____ , Apollo 11
+Aldrin
+10
+
+In 1969 250,000 protesters peacefully demonstrate against ____ War
+Vietnam
+10
+
+In 1969 Apollo ____ is launched
+Nine
+10
+
+In 1969 Apollo ____ returns to Earth
+Nine
+10
+
+In 1969 Apollo/____ , the first US/USSR linkup in space
+Soyuz
+10
+
+In 1969 Aretha ____ arrested in Detroit for creating a disturbance
+Franklin
+10
+
+In 1969 Beatle John Lennon married Yoko Ono in?
+Gibraltar
+10
+
+In 1969 Beatle Paul McCartney married ____ Eastman in London
+Linda
+10
+
+In 1969 Bobby____ , singer, married to Whitney Houston, born in
+Brown
+10
+
+In 1969 Brian ____ founder of the Rolling Stones, drowns
+Jones
+10
+
+In 1969 Brian ____ of the Rolling Stones drowns to death at 25
+Jones
+10
+
+In 1969 Brian Jones of the ____ drowns to death at 25
+Rolling stones
+10
+
+In 1969 Brian Jones of the Rolling Stones drowns to death at ____
+25
+10
+
+In 1969 British troops intervened militarily in____
+Northern Ireland
+10
+
+In 1969 Dr. Denton ____ implants first temporary artificial heart
+Cooley
+10
+
+In 1969 Dwight D. Eisenhower, the ____ president, died in Washington at age 78
+34th
+10
+
+In 1969 Erika____ , actress (Under Siege, Beverly Hillbillies), born in
+Eleniak
+10
+
+In 1969 Golda ____ became prime minister of Israel
+Meir
+10
+
+In 1969 Ho ____ Minh North Vietnamese president, dies
+Chi
+10
+
+In 1969 Ho Chi ____ North Vietnamese president, dies
+Minh
+10
+
+In 1969 Jason ____ Vancouver BC, actor (Brandon-Beverly Hills 90210), born in
+Priestley
+10
+
+In 1969 Jimi Hendrix & ____ wage a battle of guitars
+Peter townshend
+10
+
+In 1969 Judy Garland singer/actress, dies in London atforty seven?
+47
+10
+
+In 1969 Judy____ , singer/actress, dies at 48 of an alcohol overdose
+Garland
+10
+
+In 1969 Led Zepplin's ____ Album released
+Debut
+10
+
+In 1969 Levi Eshkol dies, ____ becomes premier of Israel
+Golda meir
+10
+
+In 1969 Libyan revolution, Col ____ Gadhafi deposes King Idris
+Moammar
+10
+
+In 1969 Libyan revolution, Col Moammar ____ deposes King Idris
+Gadhafi
+10
+
+In 1969 Libyan revolution, Col Moammar Gadhafi deposes King____
+Idris
+10
+
+In 1969 Mariner 7 flies past____
+Mars
+10
+
+In 1969 Mickey ____ announces his retirement
+Mantle
+10
+
+In 1969 Neil ____ steps on the Moon at 2:56:15 AM (GMT)
+Armstrong
+10
+
+In 1969 The British parliament voted for the abolition of ____ penalty
+Death
+10
+
+In 1969 the shares of the Australian company 'Poseidon' were worth $1, one year later they were worth $____ each
+280
+10
+
+In 1969 which politician was involved in a car accident at Chappaquiddick?
+Edward kennedy
+10
+
+In 1969____ , first manned ship to land on the moon, is launched
+Apollo 1
+10
+
+In 1969____ , Venus landing. First successful landing on another planet
+Venera 5
+10
+
+In 1969, this honey-dripping song by the Archies spent four weeks at the top of the charts?
+Sugar Sugar
+10
+
+In 1969, which rock group was playing Altamont when a man was killed by a Hell's Angels Motorcycle club member?
+The Rolling Stones
+10
+
+In 1969, which song by the archies spent four weeks at the top of the charts?
+Sugar sugar
+10
+
+In 1970 ____ gained independence from Britain (National Day)
+Fiji
+10
+
+In 1970 ____ Joplin dies at age 27
+Janis
+10
+
+In 1970 ____ kills estimated 300,000 in Bangladesh
+Cyclone
+10
+
+In 1970 ____ launched by USSR for soft landing on Venus
+Venera 7
+10
+
+In 1970 ____ leaves the Moon
+Luna 16
+10
+
+In 1970 ____ Phoenix, born in
+River
+10
+
+In 1970 ____ Republic (Cambodia) declares independence
+Khmer
+10
+
+In 1970 ____ returns to Earth
+Soyuz 9
+10
+
+In 1970 ____ Sadat elected president of Egypt, succeeding Gamal Abdel Nasser
+Anwar
+10
+
+In 1970 ____ Schiffer Rheinbach Germany, super model (Elle, Rolling Stone), born in
+Claudia
+10
+
+In 1970 ____ stripper/actress, dies at 56
+Gypsy rose lee
+10
+
+In 1970 1st baby born on ____ Island
+Alcatraz
+10
+
+In 1970 4 students at ____ University killed by Ohio National Guard during anti-war protest
+Kent state
+10
+
+In 1970 Andre ____ U.S., tennis pro (US & French Open finalist-1990), born in
+Agassi
+10
+
+In 1970 Anwar ____ elected president of Egypt, succeeding Gamal Abdel Nasser
+Sadat
+10
+
+In 1970 Anwar Sadat elected president of Egypt, succeeding ____ Abdel Nasser
+Gamal
+10
+
+In 1970 Anwar Sadat elected president of Egypt, succeeding Gamal ____ Nasser
+Abdel
+10
+
+In 1970 Anwar Sadat elected president of Egypt, succeeding Gamal Abdel____
+Nasser
+10
+
+In 1970 Anwar Sadat elected president of____ , succeeding Gamal Abdel Nasser
+Egypt
+10
+
+In 1970 Apollo 13 launched to ____ ; unable to land, returns in 6 days
+Moon
+10
+
+In 1970 Apollo 13 limps back safely, ____ -built oxygen tank no help
+Beech
+10
+
+In 1970 Apollo 13's Beech-built ____ tank explodes
+Oxygen
+10
+
+In 1970 Australia's 1st amateur ____ (Oscar 5) launched
+Radio satellite
+10
+
+In 1970 Charles ____ French pres, dies at 79
+Degaulle
+10
+
+In 1970 Claudia ____ Rheinbach Germany, super model (Elle, Rolling Stone), born in
+Schiffer
+10
+
+In 1970 Decca awards ____ Crosby a 2nd platinum disc for selling 300 million
+Bing
+10
+
+In 1970 Decca awards Bing ____ a 2nd platinum disc for selling 300 million
+Crosby
+10
+
+In 1970 Decca awards Bing Crosby a 2nd platinum disc for selling ____ million
+300
+10
+
+In 1970 Digital Equipment Corp introduces the ____ minicomputer
+Pdp-1
+10
+
+In 1970 Fiji gained independence from ____ (National Day)
+Britain
+10
+
+In 1970 First Automated return of lunar sample by____
+Luna 1
+10
+
+In 1970 First computer ____ tournament
+Chess
+10
+
+In 1970 Gabriela____ , tennis professional, raqueteer, born in
+Sabatini
+10
+
+In 1970 Grateful Dead members busted on ____ charges
+Lsd
+10
+
+In 1970 IBM announces ____ computer
+System 370
+10
+
+In 1970 Israeli archaeologists reported uncovering the first evidence supporting the destruction of ____ in 70 A.D. by military forces of the ancient Roman Empire.1973 Pope Paul VI has an audience with Golda Meir at Vatican
+Jerusalem
+10
+
+In 1970 Janis ____ dies at age 27
+Joplin
+10
+
+In 1970 Janis Joplin dies at age____
+27
+10
+
+In 1970 Khmer Republic (____ ) declares independence
+Cambodia
+10
+
+In 1970 Luna 16 lands on Moon's____ , drills core sample
+Mare fecunditatis
+10
+
+In 1970 Pope ____ VI wounded in chest during a visit to Philippines by a dagger-wielding Bolivian painter disguised as a priest
+Paul
+10
+
+In 1970 River____ , born in
+Phoenix
+10
+
+In 1970 Rocker Chubby ____ arrest for marijuana pocession
+Checker
+10
+
+In 1970 Russia lands unmanned remote-controlled vehicle on____
+Moon
+10
+
+In 1970 Salvador ____ Gossens elected president of Chile
+Allende
+10
+
+In 1970 Salvador Allende ____ elected president of Chile
+Gossens
+10
+
+In 1970 Salvador Allende Gossens elected president of____
+Chile
+10
+
+In 1970 Soviet author ____ I. Solzhenitsyn awarded Nobel Prize for Lit
+Alexander
+10
+
+In 1970 Soviet author Alexander I. ____ awarded Nobel Prize for Lit
+Solzhenitsyn
+10
+
+In 1970 Thor ____ crosses the Atlantic on reed raft 'Ra'
+Heyerdahl
+10
+
+In 1970 U.S. casts first ____ in UN Security Council (Support England)
+Veto
+10
+
+In 1970 USSR launches Luna 16; returns samples from lunar Sea of____
+Fertility
+10
+
+In 1970 USSR launches____ ; returns samples from lunar Sea of Fertility
+Luna 1
+10
+
+In 1970 Venera 7 launched by USSR for soft landing on____
+Venus
+10
+
+In 1970, only 5 percent of the American population lived in ____
+Cities
+10
+
+In 1971 ____ 9, first orbit of another planet, first orbit of Mars
+Mariner
+10
+
+In 1971 ____ gained independence from Britain
+Bahrain
+10
+
+In 1971 ____ hostages and 28 prisoners die in take over a Attica State Prison
+Nine
+10
+
+In 1971 ____ Khrushchev dies of a heart attack at 77
+Nikita
+10
+
+In 1971 ____ McCartney announces the formation of his group Wings
+Paul
+10
+
+In 1971 ____ returns to Earth
+Apollo 15
+10
+
+In 1971 (USA) Rube____ , inventor and cartoonist, dies
+Goldberg
+10
+
+In 1971 1st legal off-track ____ system begins (OTB-New York)
+Betting
+10
+
+In 1971 9 hostages and ____ prisoners die in take over a Attica State Prison
+28
+10
+
+In 1971 9 hostages and 28 prisoners die in take over a ____ State Prison
+Attica
+10
+
+In 1971 Abu Dhabi, Ajman, Dubai, Fujeira, Sharjah & Umm ak Qiwain form the United ____ Emirates
+Arab
+10
+
+In 1971 Bahrain gained independence from____
+Britain
+10
+
+In 1971 Broderick ____ Sydney Australia (7 of 9 survived infancy), born in
+Nonuplets
+10
+
+In 1971 Chris Young ____ , actor (Bryce Lynch-Max Headroom, Great Outdoors), born in
+Penn
+10
+
+In 1971 East Pakistan proclaimed independence taking the name?
+Bangladesh
+10
+
+In 1971 First Lt. William L.____ , Jr. found guilty in the MyLai massacre
+Calley
+10
+
+In 1971 Jim ____ rocker (Doors), dies of heart failure in Paris
+Morrison
+10
+
+In 1971 Jim Morrison rocker (____ ), dies of heart failure in Paris
+Doors
+10
+
+In 1971 Jim Morrison rocker (Doors), dies of ____ in Paris
+Heart failure
+10
+
+In 1971 Jim Morrison rocker (Doors), dies of heart failure in____
+Paris
+10
+
+In 1971 Mount ____ erupts in Sicily Italy
+Etna
+10
+
+In 1971 Nikita ____ dies of a heart attack at 77
+Khrushchev
+10
+
+In 1971 Nikita Khrushchev dies of a heart attack at____
+77
+10
+
+In 1971 Ogden ____ poet/TV panelist (Masquerade Party), dies at 68
+Nash
+10
+
+In 1971 on which release did santana lament 'shes gonna make a devil out of me'?
+Black magic woman
+10
+
+In 1971 Paul ____ announces the formation of his group Wings
+Mccartney
+10
+
+In 1971 Paul McCartney announces the formation of his group____
+Wings
+10
+
+In 1971 Republic of the ____ becomes Republic of Zaire
+Congo
+10
+
+In 1971 Republic of the Congo becomes Republic of____
+Zaire
+10
+
+In 1971 Sierra ____ becomes a republic (Natl Day)
+Leone
+10
+
+In 1971 Soviet Mars 3 is 1st to soft land on____
+Mars
+10
+
+In 1971 Supreme Court overturns ____ conviction of Muhammad Ali
+Draft evasion
+10
+
+In 1971 UN General Assembly admits Mainland China and expels____
+Taiwan
+10
+
+In 1971 US Apollo ____ lands on Mare Imbrium on the Moon
+Fifteen
+10
+
+In 1971 US Apollo 15 lands on ____ Imbrium on the Moon
+Mare
+10
+
+In 1971 US Apollo 15 lands on Mare ____ on the Moon
+Imbrium
+10
+
+In 1971 US Apollo 15 lands on Mare Imbrium on the____
+Moon
+10
+
+In 1971 USSR launches____ , 1st spacecraft to crash land on Mars
+Mars 2
+10
+
+In 1972 ____ 16 astronauts explore the surface of the moon
+Apollo
+10
+
+In 1972 ____ 16 takes off for the Moon
+Apollo
+10
+
+In 1972 ____ Dori Wangchuck, king of Bhutan, dies
+Jigme
+10
+
+In 1972 ____ Israeli athletes are slain at Munich Olympics
+Eleven
+10
+
+In 1972 ____ Jones closes above 1,000 for first time (1003.16)
+Dow
+10
+
+In 1972 ____ Shapley discoverer of the Sun's position in the galaxy, dies
+Harlow
+10
+
+In 1972 11 ____ athletes are slain at Munich Olympics
+Israeli
+10
+
+In 1972 11 Israeli athletes are slain at ____ Olympics
+Munich
+10
+
+In 1972 Alyassa____ , actor (Who's the Boss) ,born
+Milano
+10
+
+In 1972 American swimmer ____ Spitz becomes the first athlete to win seven olympic gold medals
+Mark
+10
+
+In 1972 American swimmer Mark ____ becomes the first athlete to win seven olympic gold medals
+Spitz
+10
+
+In 1972 American swimmer Mark Spitz becomes the first athlete to win ____ olympic gold medals
+Seven
+10
+
+In 1972 Arrest of burglars starts the ____ affair
+Watergate
+10
+
+In 1972 Ceylon becomes Republic of ____ as its constitution is ratified
+Sri lanka
+10
+
+In 1972 Earthquake destroys central Managua,____
+Nicaragua
+10
+
+In 1972 ERTS 1 (Earth Resources Technology Satellite), later called____ , launched to start its multi-spectral scans of Earth
+Landsat
+10
+
+In 1972 George ____ , actor (Mr Freeze-Batman TV series), dies at 65
+Sanders
+10
+
+In 1972 German Chancellor Willy ____ visits Israel
+Brandt
+10
+
+In 1972 Great Britain imposed direct rule over?
+Northern Ireland
+10
+
+In 1972 Guided tours of ____ (by Park Service) begin
+Alcatraz
+10
+
+In 1972 Harlow ____ discoverer of the Sun's position in the galaxy, dies
+Shapley
+10
+
+In 1972 Harry____ , 33rd US Pres (1945-53), dies in KC Mo at 88
+Truman
+10
+
+In 1972 Jigme ____ Wangchuck, king of Bhutan, dies
+Dori
+10
+
+In 1972 Jigme Dori Wangchuck, king of____ , dies
+Bhutan
+10
+
+In 1972 Jigme Dori____ , king of Bhutan, dies
+Wangchuck
+10
+
+In 1972 John and ____ guest-host The Mike Douglas Show for the entire week
+Yoko
+10
+
+In 1972 John Young & Charles ____ explores Moon (Apollo 16)
+Duke
+10
+
+In 1972 Kwame ____ president of Ghana, dies at 62
+Nkrumah
+10
+
+In 1972 NASA announced the start of the ____ program
+Space shuttle
+10
+
+In 1972 Nixon & ____ agree to use CIA to cover up Watergate
+Haldeman
+10
+
+In 1972 Pioneer ____ launched. First to traverse asteroid belt, leave system
+Ten
+10
+
+In 1972 President ____ visits China
+Nixon
+10
+
+In 1972 President Nixon and Chinese Premier ____ issued the Shanghai Communique
+Chou en-lai
+10
+
+In 1972 Republic of ____ declared as constitution is ratified
+Cameroon
+10
+
+In 1972 Summer Olympics opened in____ , West Germany
+Munich
+10
+
+In 1972 US Army turned over Long Bihn base to South ____ army
+Vietnamese
+10
+
+In 1972 US began its heaviest bombing of North____
+Vietnam
+10
+
+In 1972, what Canadian bay did Captain George Vancouver first sail into?
+The English Bay
+10
+
+In 1972, which album did peter townshend release?
+Who came first
+10
+
+In 1973 ____ 's President, Salvador Allende, deposed in a military coup
+Chile
+10
+
+In 1973 ____ and Priscilla Presley divorce after 6 years
+Elvis
+10
+
+In 1973 ____ became independent after 3 centuries of British rule
+Bahamas
+10
+
+In 1973 ____ is launched
+Soyuz 12
+10
+
+In 1973 ____ Jean King beats Bobby Riggs in battle-of-sexes tennis match
+Billy
+10
+
+In 1973 ____ Kissinger and Le Duc Tho jointly awarded Nobel peace prize
+Henry
+10
+
+In 1973 ____ launched, the 1st Space Station
+Skylab
+10
+
+In 1973 ____ launches Mars 6
+Ussr
+10
+
+In 1973 ____ Seles tennis star (French Open-1990), born in
+Monica
+10
+
+In 1973 ____ shoots down 13 Syrian MIG-21s
+Israel
+10
+
+In 1973 ____ War begins as Syria and Egypt attack Israel
+Yom kippur
+10
+
+In 1973 1st all ____ women's US Open final, (Margaret Court beats Yvonne Goolagong)
+Australian
+10
+
+In 1973 1st all Australian women's US Open final, (____ beats Yvonne Goolagong)
+Margaret court
+10
+
+In 1973 1st all Australian women's US Open final, (Margaret Court beats____ )
+Yvonne goolagong
+10
+
+In 1973 American ____ Movement occupy Wounded Knee in South Dakota
+Indian
+10
+
+In 1973 Australia grants self-government to ____ New Guinea
+Papua
+10
+
+In 1973 Billy ____ King beats Bobby Riggs in battle-of-sexes tennis match
+Jean
+10
+
+In 1973 Billy Jean ____ beats Bobby Riggs in battle-of-sexes tennis match
+King
+10
+
+In 1973 Billy Jean King beats ____ Riggs in battle-of-sexes tennis match
+Bobby
+10
+
+In 1973 Billy Jean King beats Bobby ____ in battle-of-sexes tennis match
+Riggs
+10
+
+In 1973 Britain's Princess ____ marries a commoner, Capt. Mark Phillips
+Anne
+10
+
+In 1973 Chile's President, ____ Allende, deposed in a military coup
+Salvador
+10
+
+In 1973 Chile's President, Salvador____ , deposed in a military coup
+Allende
+10
+
+In 1973 David Ben-Gurion founding father of ____ dies in Tel Aviv at 87
+Israel
+10
+
+In 1973 Elvis and ____ Presley divorce after 6 years
+Priscilla
+10
+
+In 1973 Elvis and Priscilla Presley divorce after ____ years
+Six
+10
+
+In 1973 Greek Pres George ____ ousted in a bloodless military coup
+Papadopoulos
+10
+
+In 1973 Henry ____ and Le Duc Tho jointly awarded Nobel peace prize
+Kissinger
+10
+
+In 1973 Henry Kissinger and ____ Duc Tho jointly awarded Nobel peace prize
+Le
+10
+
+In 1973 Henry Kissinger and Le ____ Tho jointly awarded Nobel peace prize
+Duc
+10
+
+In 1973 Henry Kissinger and Le Duc ____ jointly awarded Nobel peace prize
+Tho
+10
+
+In 1973 Intelsat communications ____ launched
+Satellite
+10
+
+In 1973 Israel shoots down 13 ____ MIG-21s
+Syrian
+10
+
+In 1973 John ____ begins testifying before the Senate Watergate Committee
+Dean
+10
+
+In 1973 Last US troops leave Vietnam, 9 yrs after the ____ Resolution
+Tonkin
+10
+
+In 1973 Lon ____ Jr actor (Hawkeye, Pistols 'n' Petticoats), dies at 67
+Chaney
+10
+
+In 1973 Lon Chaney Jr actor (____ , Pistols 'n' Petticoats), dies at 67
+Hawkeye
+10
+
+In 1973 Lon Chaney Jr actor (Hawkeye, Pistols 'n' Petticoats), dies at____
+67
+10
+
+In 1973 Nixon announces resignation of ____ , Ehrlichman, et al
+Haldeman
+10
+
+In 1973 Pablo ____ artist, dies near Mougins, France, at 91
+Picasso
+10
+
+In 1973 Pioneer 10 passes ____ (1st fly-by of an outer planet)
+Jupiter
+10
+
+In 1973 Pioneer 11 launched. First spacecraft to flyby?
+Saturn
+10
+
+In 1973 President ____ agrees to turn over White House tape recordings
+Nixon
+10
+
+In 1973 Security Council Resol 338 - a cease fire to the ____ War
+Yom kippur
+10
+
+In 1973 Six ____ Gulf nations double their oil prices
+Persian
+10
+
+In 1973 Soyuz 13 launched into ____ orbit for 8 days
+Earth
+10
+
+In 1973 The ____ - Israel's missile boat - is unveiled
+Reshef
+10
+
+In 1973 The ____ oil embargo begins. It will last until March, 1974
+Arab
+10
+
+In 1973 The Arab oil embargo begins. It will last until____ , 1974
+March
+10
+
+In 1973 this musician released an album of mid-sixties cover versions, titled Pin-Ups. Posing beside this artist on the album cover is Twiggy?
+David Bowie
+10
+
+In 1973 Three-man crew of ____ make safe splashdown in Pacific after 59 days
+Skylab ii
+10
+
+In 1973 Three-man crew of Skylab II make safe splashdown in Pacific after ____ days
+59
+10
+
+In 1973 University of Texas at ____ becomes the first accredited school to offer a course in belly dancing
+Arlington
+10
+
+In 1973 US and ____ signed a cease-fire agreement
+North vietnam
+10
+
+In 1973 USSR launches____
+Mars 6
+10
+
+In 1973 Veronica ____ actress, dies at 58
+Lak
+10
+
+In 1973 Veronica Lake actress, dies at ____
+58
+10
+
+In 1973 Women's ____ Day
+Equality
+10
+
+In 1973 Yom Kippur War begins as ____ and Egypt attack Israel
+Syria
+10
+
+In 1973 Yom Kippur War begins as Syria and ____ attack Israel
+Egypt
+10
+
+In 1973 Yom Kippur War ends - Israel ____ miles from Cairo, 26 from Damascus
+65
+10
+
+In 1973 Yom Kippur War ends - Israel 65 miles from Cairo, ____ from Damascus
+26
+10
+
+In 1973 Yom Kippur War ends - Israel 65 miles from Cairo, 26 from____
+Damascus
+10
+
+In 1973 Yom Kippur War ends - Israel 65 miles from____ , 26 from Damascus
+Cairo
+10
+
+In 1973, deep purple released which popular double live album?
+Made in Japan
+10
+
+In 1974 ____ -Bissau gained independence from Portugal
+Guinea
+10
+
+In 1974 ____ carries 2 cosmonauts to space station Salyut 3
+Soyuz 15
+10
+
+In 1974 ____ invades Cyprus
+Turkey
+10
+
+In 1974 ____ Kowal discovers Leda, 13th satellite of Jupiter
+Charles
+10
+
+In 1974 ____ Lindbergh, died at his home in Hawaii at the age of 72
+Charles
+10
+
+In 1974 ____ Petit walks tightrope strung between the twin towers of the World Trade Center, New York
+Philippe
+10
+
+In 1974 ____ TV host (Ed Sullivan Show), dies at 73
+Ed sullivan
+10
+
+In 1974 Agnes ____ actress (Endora-Bewitched), dies at 67
+Moorehead
+10
+
+In 1974 Arganat ____ publishes report concerning the Yom Kippur War
+Comm
+10
+
+In 1974 Charles ____ discovers Leda, 13th satellite of Jupiter
+Kowal
+10
+
+In 1974 Charles Kowal discovers Leda, ____ satellite of Jupiter
+13th
+10
+
+In 1974 Charles Kowal discovers Leda, 13th satellite of____
+Jupiter
+10
+
+In 1974 Charles Kowal discovers____ , 13th satellite of Jupiter
+Leda
+10
+
+In 1974 Charles Lindbergh, died at his home in Hawaii at the age of____
+72
+10
+
+In 1974 Charles____ , died at his home in Hawaii at the age of 72
+Lindbergh
+10
+
+In 1974 Chris____ , newscaster, shoots self on air
+Chubbock
+10
+
+In 1974 David____ , actor (Married With Children's Bud Bundy), born in
+Faustino
+10
+
+In 1974 Ed Sullivan TV host (Ed Sullivan Show), dies at____
+73
+10
+
+In 1974 French president Georges ____ died in Paris
+Pompidou
+10
+
+In 1974 Guinea____ gained independence from Portugal
+Bissau
+10
+
+In 1974 Guinea-Bissau gained independence from____
+Portugal
+10
+
+In 1974 Hank ____ tied Babe Ruth's home-run record by hitting his 714th
+Aaron
+10
+
+In 1974 House Judiciary Committee begin formal hearings on ____ impeachment
+Nixon
+10
+
+In 1974 Landslide in ____ Province Peru creates a natural dam
+Huancavelica
+10
+
+In 1974 Last Americans evacuated from?
+Saigon
+10
+
+In 1974 Mariner 10, ____ flyby
+Mercury
+10
+
+In 1974 Most ____ oil producing nations end US embargo
+Arab
+10
+
+In 1974 Philippe ____ walks tightrope strung between the twin towers of the World Trade Center, New York
+Petit
+10
+
+In 1974 Sara____ , actress (Melissa-Roseanne), born in
+Gilbert
+10
+
+In 1974 Skylab ____ 's astronauts land
+Four
+10
+
+In 1974 South Korean President ____ Chung-Hee escaped an assassination
+Park
+10
+
+In 1974 South Korean President Park ____ escaped an assassination
+Chung-hee
+10
+
+In 1974 Soyuz ____ is launched
+Fourteen
+10
+
+In 1974 Soyuz 15 carries 2 cosmonauts to space station____
+Salyut
+10
+
+In 1974 Supreme Court unanimously rules ____ must turn over Watergate tapes
+Nixon
+10
+
+In 1974 Turkey invades____
+Cyprus
+10
+
+In 1974 which heiress was kidnapped by the Simbionese Liberation Army?
+Patty hearst
+10
+
+In 1974 Yitzhak ____ replaces resigning Prime Minister Golda Meir
+Rabin
+10
+
+In 1974, ian gillian was replaced by David coverdale in which band?
+Deep purple
+10
+
+In 1974, whose first album featured 'can't get enough' and 'ready for love'?
+Bad company
+10
+
+In 1975 ____ Canal reopens (after 6 Day War caused it to close)
+Suez
+10
+
+In 1975 ____ formally signs Sinai accord with Egypt
+Israel
+10
+
+In 1975 ____ Is gain independence after 500 years of Portuguese rule
+Cape verde
+10
+
+In 1975 ____ killed in Eastern Boeing 727 crash at JFK airport
+113
+10
+
+In 1975 ____ opens (Disneyland)
+Space mountain
+10
+
+In 1975 ____ Sadat became 1st Egyptian president to officially visit the US
+Anwar
+10
+
+In 1975 Anwar ____ became 1st Egyptian president to officially visit the US
+Sadat
+10
+
+In 1975 Cape Verde Is gain independence after 500 years of ____ rule
+Portuguese
+10
+
+In 1975 Drew____ , actress, member of the Barrymore clan, born in
+Barrymore
+10
+
+In 1975 Israel formally signs ____ accord with Egypt
+Sinai
+10
+
+In 1975 Israel formally signs Sinai accord with____
+Egypt
+10
+
+In 1975 Israel signs an agreement with ____ Economic Market
+European
+10
+
+In 1975 Israeli Prime Minister Yitzhak ____ met with President Carter
+Rabin
+10
+
+In 1975 Japanese Junko ____ became first woman to reach Mt Everest's summit
+Tabei
+10
+
+In 1975 Laos People's ____ Republic founded (National Day)
+Democratic
+10
+
+In 1975 Nationalist Chinese leader Chiang ____ died at the age of 87
+Kai-shek
+10
+
+In 1975 Nationalist Chinese leader Chiang Kai-Shek died at the age of?
+87
+10
+
+In 1975 Netherlands grants ____ independence (Natl Day)
+Surinam
+10
+
+In 1975 Papua ____ gained independence from Australia (National Day)
+New guinea
+10
+
+In 1975 Portugal grants ____ independence (Natl Day)
+Angola
+10
+
+In 1975 Rocker Alice ____ falls of stage in Vancouver, breaks 6 ribs
+Cooper
+10
+
+In 1975 Rod Serling writer/host (Twilight Zone, Night Gallery), dies at?
+Sixty
+10
+
+In 1975 Sao Tome Principe gained independence from ____ (Nat'l Day)
+Portugal
+10
+
+In 1975 Soviet spacecraft ____ lands on Venus
+Venera 9
+10
+
+In 1975 Soyuz 19 and ____ launched; rendezvous 2 days later
+Apollo 18
+10
+
+In 1975 Spain's Gen. Francisco Franco dies in ____ at 82
+Madrid
+10
+
+In 1975 Star in ____ goes nova becoming 4th brightest in sky
+Cygnus
+10
+
+In 1975 Susan ____ dies at age 56
+Hayward
+10
+
+In 1975 the future US President, Ronald Reagan, bought something unusual at Harrods. What was it?
+A baby elephant
+10
+
+In 1975 USSR ____ made day Venus landing
+Venera 10
+10
+
+In 1975 usually-silly ray stevens did a serious re-make of which johnny mathis classic?
+Misty
+10
+
+In 1975 Venera 9, first craft to orbit the planet ____ launched
+Venus
+10
+
+In 1975 Wrestler Antonino ____ dies at 49
+Rocca
+10
+
+In 1975____ , first craft to orbit the planet Venus launched
+Venera
+10
+
+In 1975, jack nicholson won the oscar for best actor in which film?
+One flew over the cuckoo's nest
+10
+
+In 1975, what was the first kansas lp called?
+Kansas
+10
+
+In 1976 ____ and Tobago becomes a republic
+Trinidad
+10
+
+In 1976 ____ asks UN to condemn Israeli hostage rescue raid on Entebbe
+Uganda
+10
+
+In 1976 ____ Church approves ordination of women as priests and bishop
+Episcopal
+10
+
+In 1976 ____ gained independence, not recognized outside of South Africa
+Transkei
+10
+
+In 1976 ____ goes into orbit around Mars
+Viking 2
+10
+
+In 1976 ____ Hathaway completes a bicycle tour of every continent in the world and cycling 50,600 miles
+John
+10
+
+In 1976 ____ launched to Salyut 6, but return without docking
+Soyuz 23
+10
+
+In 1976 ____ launches rescue of 103 Air France crew and passengers being held at Entebbe Airport in Uganda by pro-Palestinian hijackers
+Israel
+10
+
+In 1976 ____ ownership legalized in Australia
+Gold
+10
+
+In 1976 ____ Palace announces separation of Princess Margaret
+Buckingham
+10
+
+In 1976 ____ performs their 1st concert
+Kiss
+10
+
+In 1976 ____ resumes on TV despite real life divorce
+Sonny and cher
+10
+
+In 1976 ____ returns to Earth
+Soyuz 22
+10
+
+In 1976 ____ succeeds Mao Tse-tung as chairman of Communist Party
+Hua guo-feng
+10
+
+In 1976 ____ Tse-Tung, Chinese communist party chairman (1949-76), dies at 82
+Mao
+10
+
+In 1976 Argentine pres. Isabel ____ was deposed by her country's military
+Peron
+10
+
+In 1976 Bank robbery in ____ nets $20-50 million (record)
+Beirut
+10
+
+In 1976 Formal reunification of North & South____
+Vietnam
+10
+
+In 1976 George Harrison sings the lumberjack song with ____
+Monty python
+10
+
+In 1976 Harold ____ resigns as British PM
+Wilson
+10
+
+In 1976 Howard Hughes reclusive billionaire, dies at?
+72
+10
+
+In 1976 Hua Guo-feng succeeds ____ as chairman of Communist Party
+Mao tse-tung
+10
+
+In 1976 Israel launches rescue of ____ Air France crew and passengers being held at Entebbe Airport in Uganda by pro-Palestinian hijackers
+103
+10
+
+In 1976 Israel launches rescue of 103 Air France crew and passengers being held at ____ Airport in Uganda by pro-Palestinian hijackers
+Entebbe
+10
+
+In 1976 Israel launches rescue of 103 Air France crew and passengers being held at Entebbe Airport in ____ by pro-Palestinian hijackers
+Uganda
+10
+
+In 1976 John ____ completes a bicycle tour of every continent in the world and cycling 50,600 miles
+Hathaway
+10
+
+In 1976 John Hathaway completes a bicycle tour of every continent in the world and cycling ____ miles
+50,600
+10
+
+In 1976 Mao ____ -Tung, Chinese communist party chairman (1949-76), dies at 82
+Tse
+10
+
+In 1976 Mao Tse____ , Chinese communist party chairman (1949-76), dies at 82
+Tung
+10
+
+In 1976 Mao Tse-Tung, Chinese communist party chairman (1949-76), dies at____
+82
+10
+
+In 1976 O.J. ____ gains 273 yards for Buffalo vs. Detroit
+Simpson
+10
+
+In 1976 Patricia ____ convicted of armed robbery
+Hearst
+10
+
+In 1976 Phil ____ rock producer, dies
+Ochs
+10
+
+In 1976 Soyuz 23 launched to____ , but return without docking
+Salyut
+10
+
+In 1976 Supersonic____ , 1st commercial flights, by Britain & France
+Concorde
+10
+
+In 1976 The first ____ film and TV festival
+Jewish
+10
+
+In 1976 Trinidad and ____ becomes a republic
+Tobago
+10
+
+In 1976 U.S. ____ goes into Martian orbit after an 11-month flight from Earth
+Viking 2
+10
+
+In 1976 U.S. presented with oldest known copy of the____
+Magna carta
+10
+
+In 1976 Uganda asks UN to condemn ____ hostage rescue raid on Entebbe
+Israeli
+10
+
+In 1976 Uganda asks UN to condemn Israeli hostage rescue raid on____
+Entebbe
+10
+
+In 1976 Viking 2 goes into orbit around____
+Mars
+10
+
+In 1976 who became the first woman to conduct the Metropolitan Opera in New York City?
+Sarah caldwell
+10
+
+In 1976, a Los Angeles secretary formally married her 50-pound?
+Pet rock
+10
+
+In 1976, what mandm color was discontinued due to health concerns?
+Red
+10
+
+In 1977 ____ 's army, led by Gen Mohammad Zia ul-Haq, seizes power
+Pakistan
+10
+
+In 1977 ____ Callas American-born prima donna dies in Paris at 53
+Maria
+10
+
+In 1977 ____ commandos storm a hijacked Lufthansa airliner in Mogadishu, Somalia, freeing all 86 hostages aboard and killing three of the four hijackers
+West German
+10
+
+In 1977 ____ Crosby dies in Madrid, Spain
+Bing
+10
+
+In 1977 ____ Furlong Pasedina Calif, actor (John Connor-Terminator 2), born in
+Edward
+10
+
+In 1977 ____ incorporated
+Apple computer
+10
+
+In 1977 ____ jubilee of Queen Elizabeth celebrated with fireworks
+Silver
+10
+
+In 1977 ____ Marx, died in Los Angeles at the age of 86
+Groucho
+10
+
+In 1977 ____ National Day
+Djibouti
+10
+
+In 1977 ____ pledges to regain arab terrority from Israel
+Sadat
+10
+
+In 1977 ____ Presley, dies of heart ailment at Graceland at age 42 . . . or goes into hiding. (Your Choice.)
+Elvis
+10
+
+In 1977 ____ returns to Earth
+Soyuz 25
+10
+
+In 1977 (England) ____ records drop punk rock group Sex Pistols
+Emi
+10
+
+In 1977 1st ____ computer sold
+Trs-80
+10
+
+In 1977 1st ____ concert (Pink Floyd in London)
+Quadrophonic
+10
+
+In 1977 582 die in aviation's worst disaster ____ crashes into Pan Am 747 on a foggy runway
+Klm 747
+10
+
+In 1977 a 13 year old boy had a ____ growing out of his foot
+Tooth
+10
+
+In 1977 Bing ____ dies in Madrid, Spain
+Crosby
+10
+
+In 1977 Bing Crosby dies in____ , Spain
+Madrid
+10
+
+In 1977 By 2/3 majority, Panamanians vote to approve the new ____ treaties
+Canal
+10
+
+In 1977 Donald Woods, a banned white editor flees ____ Africa
+South
+10
+
+In 1977 Edward ____ Pasedina Calif, actor (John Connor-Terminator 2), born in
+Furlong
+10
+
+In 1977 Edward Furlong Pasedina Calif, actor (John Connor____ ), born in
+Terminator
+10
+
+In 1977 Egyptian Pres Anwar ____ first meeting with President Jimmy Carter
+Sadat
+10
+
+In 1977 Egyptian President Anwar ____ arrives in Israel
+Sadat
+10
+
+In 1977 Egyptian President Anwar Sadat became first ____ leader to address Israel's Knesset
+Arab
+10
+
+In 1977 Egyptian President Sadat formally accepts invitation to visit____
+Israel
+10
+
+In 1977 Elvis Presley, dies of heart ailment at Graceland at age____ . . . or goes into hiding. (Your Choice.)
+42
+10
+
+In 1977 Elvis____ , dies of heart ailment at Graceland at age 42 . . . or goes into hiding. (Your Choice.)
+Presley
+10
+
+In 1977 Final European scheduled run of the ____ (94 years)
+Orient express
+10
+
+In 1977 First man-powered ____ (Bryan Allen in Gossamer Condor)
+Flight
+10
+
+In 1977 Groucho Marx, died in Los Angeles at the age of____
+86
+10
+
+In 1977 Groucho____ , died in Los Angeles at the age of 86
+Marx
+10
+
+In 1977 Indira Gandhi resigned as prime minister of ____
+India
+10
+
+In 1977 IRS reveals Jimmy ____ paid no taxes in 1976
+Carter
+10
+
+In 1977 Leonid ____ named president of USSR
+Brezhnev
+10
+
+In 1977 Maria ____ American-born prima donna dies in Paris at 53
+Callas
+10
+
+In 1977 Maria Callas American-born prima donna dies in Paris at____
+53
+10
+
+In 1977 New Orleans elects first ____ mayor, Ernest `Dutch' Morial
+Black
+10
+
+In 1977 NYC experiences 25 hr____
+Black-out
+10
+
+In 1977 Pakistan's army, led by Gen Mohammad____ , seizes power
+Zia ul-haq
+10
+
+In 1977 Pope ____ makes 19th-cent bishop John Neumann first US male saint
+Paul vi
+10
+
+In 1977 Pope Paul VI makes 19th-cent bishop John ____ first US male saint
+Neumann
+10
+
+In 1977 Pres Jimmy ____ pardons almost all Vietnam War draft evaders
+Carter
+10
+
+In 1977 President Jimmy Carter welcomes Shah of____
+Iran
+10
+
+In 1977 Princess Victoria ____ Alicia Desirie, heir apparent of Sweden
+Ingrid
+10
+
+In 1977 Princess Victoria Ingrid ____ Desirie, heir apparent of Sweden
+Alicia
+10
+
+In 1977 Princess Victoria Ingrid Alicia Desirie, heir apparent of____
+Sweden
+10
+
+In 1977 Princess Victoria Ingrid Alicia____ , heir apparent of Sweden
+Desirie
+10
+
+In 1977 Revolution in the ____ Islands
+Seychelles
+10
+
+In 1977 Sabra ____ finishes longest recorded belly dance (100 hrs)
+Starr
+10
+
+In 1977 Second test of the Space Shuttle____
+Enterprise
+10
+
+In 1977 Son of ____ shot to death 20-year-old Stacy Moskowitz
+Sam
+10
+
+In 1977 Son of Sam shot to death 20-year-old ____ Moskowitz
+Stacy
+10
+
+In 1977 Son of Sam shot to death 20-year-old Stacy____
+Moskowitz
+10
+
+In 1977 Soviet space station ____ launched into Earth orbit
+Salyut 6
+10
+
+In 1977 Soyuz ____ is launched
+24
+10
+
+In 1977 Soyuz ____ returns to Earth
+24
+10
+
+In 1977 Soyuz 26 carries 2 cosmonauts to ____ 6 space station
+Salyut
+10
+
+In 1977 Space shuttle ____ makes 1st atmospheric flight
+Enterprise
+10
+
+In 1977 Ted ____ manages an Atlanta Braves game
+Turner
+10
+
+In 1977 Third test of the Space Shuttle____
+Enterprise
+10
+
+In 1977 US recalls ____ Bowdler, ambassador to South Africa
+William
+10
+
+In 1977 US recalls William Bowdler, ambassador to____
+South africa
+10
+
+In 1977 US recalls William____ , ambassador to South Africa
+Bowdler
+10
+
+In 1977 West German commandos storm a hijacked ____ airliner in Mogadishu, Somalia, freeing all 86 hostages aboard and killing three of the four hijackers
+Lufthansa
+10
+
+In 1977 West German commandos storm a hijacked Lufthansa airliner in Mogadishu, ____ , freeing all 86 hostages aboard and killing three of the four hijackers
+Somalia
+10
+
+In 1977 West German commandos storm a hijacked Lufthansa airliner in Mogadishu, Somalia, freeing all ____ hostages aboard and killing three of the four hijackers
+86
+10
+
+In 1977 West German commandos storm a hijacked Lufthansa airliner in Mogadishu, Somalia, freeing all 86 hostages aboard and killing ____ of the four hijackers
+Three
+10
+
+In 1977 West German commandos storm a hijacked Lufthansa airliner in Mogadishu, Somalia, freeing all 86 hostages aboard and killing three of the ____ hijackers
+Four
+10
+
+In 1977 West German commandos storm a hijacked Lufthansa airliner in____ , Somalia, freeing all 86 hostages aboard and killing three of the four hijackers
+Mogadishu
+10
+
+In 1977, a ____ year old child found a tooth growing out of his left foot
+13
+10
+
+In 1977, a 13 year old child found a ____ growing out of his left foot
+Tooth
+10
+
+In 1977, a 13 year old child found a tooth growing out of his ____ foot
+Left
+10
+
+In 1977, a 13 year old child found a tooth growing out of his left____
+Foot
+10
+
+In 1977, according to the American Telephone and Telegraph Company, there were 14.5 telephone calls made for every 100 people in the ____
+Entire world
+10
+
+In 1977, less than 9 percent of physicians in the U.S. were ____
+Women
+10
+
+In 1977, Napoleon's ____ was sold in Paris for about US $3 800 to an American urologist
+Penis
+10
+
+In 1978 ____ Ali beats WBA heavyweight champion Leon Spinks
+Muhammad
+10
+
+In 1978 ____ Cardinal Karol Wojtyla elected supreme pontiff-Pope John Paul II
+Polish
+10
+
+In 1978 ____ gained independence from Britain (National Day)
+Solomon is
+10
+
+In 1978 ____ revolution (National Day)
+Afghanistan
+10
+
+In 1978 ____ spacecraft touches down in Soviet Kazakhstan
+Soyuz 30
+10
+
+In 1978 ____ Territory of Australia becomes self-governing
+Northern
+10
+
+In 1978 ____ Warby sets world speed record on water (514 kph)
+Kenneth
+10
+
+In 1978 Attempting to rid area of ____ guerrillas Israel invades Lebanon
+Palestine
+10
+
+In 1978 Cardinal ____ Luciani of Venice becomes Pope John Paul I
+Albino
+10
+
+In 1978 Cardinal Albino ____ of Venice becomes Pope John Paul I
+Luciani
+10
+
+In 1978 Cardinal Albino Luciani of Venice becomes Pope____
+John Paul i
+10
+
+In 1978 Crew of ____ 29 returns to Earth aboard Soyuz 31
+Soyuz
+10
+
+In 1978 Gutenberg Bible (1 of 21) sells for $____ million, London
+2.4
+10
+
+In 1978 James Christy's discovery of Pluto's moon ____ announced
+Charon
+10
+
+In 1978 Jordan's King Hussein marries Elizabeth____ , 26-yr-old American
+Halaby
+10
+
+In 1978 Kenneth ____ sets world speed record on water (514 kph)
+Warby
+10
+
+In 1978 Kenneth Warby sets world speed record on ____ (514 kph)
+Water
+10
+
+In 1978 Muhammad ____ beats WBA heavyweight champion Leon Spinks
+Ali
+10
+
+In 1978 Muhammad Ali beats WBA heavyweight champion ____ Spinks
+Leon
+10
+
+In 1978 Muhammad Ali beats WBA heavyweight champion Leon____
+Spinks
+10
+
+In 1978 Pioneer ____ transmitted images of Saturn and its rings
+Eleven
+10
+
+In 1978 Pioneer 11 transmitted images of ____ and its rings
+Saturn
+10
+
+In 1978 Pioneer Venus 2 drops 5 probes into atmosphere of____
+Venus
+10
+
+In 1978 Pioneer____ Multi-probe launched to Venus
+Venus 2
+10
+
+In 1978 Pioneer-Venus 2 Multi-probe launched to____
+Venus
+10
+
+In 1978 Polish Cardinal ____ Wojtyla elected supreme pontiff-Pope John Paul II
+Karol
+10
+
+In 1978 Polish Cardinal Karol ____ elected supreme pontiff-Pope John Paul II
+Wojtyla
+10
+
+In 1978 Polish Cardinal Karol Wojtyla elected supreme pontiff-Pope____
+John Paul ii
+10
+
+In 1978 Pope ____ dies after 33 days as pope
+John Paul i
+10
+
+In 1978 Pope John Paul I dies after ____ days as pope
+33
+10
+
+In 1978 Representatives of ____ and Egypt open talks in Washington
+Israel
+10
+
+In 1978 Representatives of Israel and ____ open talks in Washington
+Egypt
+10
+
+In 1978 Representatives of Israel and Egypt open talks in____
+Washington
+10
+
+In 1978 Rev Jim ____ leads 911 people in suicide in Jonestown, Guyana
+Jones
+10
+
+In 1978 Sex Pistols' ____ concert (Winterland, SF)
+Final
+10
+
+In 1978 Soyuz ____ is launched
+30
+10
+
+In 1978 the United Nations Food and Agricultural Organisation estimated that 'all the tea in China' amounted to approx. ____ tonnes
+356,000
+10
+
+In 1978 U.S. launches Pioneer ____ probe
+Venus
+10
+
+In 1978 which punk rocker commited a serious crime in manhattan?
+Sid vicious
+10
+
+In 1978____ , famous cat (big fat hairy deal), born in
+Garfield
+10
+
+In 1978, whose music did def leppard like to cover in small clubs?
+Thin lizzy
+10
+
+In 1979 ____ (Gilbert and Ellice Is.) gained independence from Britain
+Kiribati
+10
+
+In 1979 ____ 33 returns to Earth
+Soyuz
+10
+
+In 1979 ____ Chung-hee South Korean President is assassinated
+Park
+10
+
+In 1979 ____ flies past Jupiter
+Voyager ii
+10
+
+In 1979 ____ Islands (in the Pacific) become self-governing
+Marshall
+10
+
+In 1979 ____ Liberation Day; Sandinistas take over from Somoza
+Nicaragua
+10
+
+In 1979 ____ makes 1st fly-by of Saturn, discovers new moon, rings
+Pioneer 11
+10
+
+In 1979 ____ Pittsburgh, actor (Lurch-Addams Family), dies at 46
+Ted cassidy
+10
+
+In 1979 (Vietnam) Vietnamese forces capture ____ from Khmer Rouge
+Phnom penh
+10
+
+In 1979 1st western pop star to tour the USSR____
+Elton john
+10
+
+In 1979 Budweiser ____ car reaches 1190 kph (record for wheeled vehicle)
+Rocket
+10
+
+In 1979 Camp David peace treaty between ____ and Egypt
+Israel
+10
+
+In 1979 Camp David peace treaty between Israel and ____
+Egypt
+10
+
+In 1979 Deposed Shah of ____ arrived in NY for medical treatment
+Iran
+10
+
+In 1979 Dr. Christian Barnard was offered ____ by the American National Enquirer to perform a human head transplant
+$250,000
+10
+
+In 1979 Elton John becomes 1st pop star to perform in?
+Israel
+10
+
+In 1979 Guitarist Eric Clapton marries Patti____
+Boyd
+10
+
+In 1979 Home rule introduced to Kalaallit ____ (Greenland)
+Nunaat
+10
+
+In 1979 Iran proclaimed an ____ Republic following the fall of the Shah
+Islamic
+10
+
+In 1979 Israel's parliament approved a peace treaty with ____
+Egypt
+10
+
+In 1979 John ____ becomes 1st pope to visit a communist country (Poland)
+Paul ii
+10
+
+In 1979 Margaret ____ becomes prime minister of England
+Thatcher
+10
+
+In 1979 Merle ____ dies at age 68
+Oberon
+10
+
+In 1979 Mother ____ of India was awarded the Nobel Peace Prize
+Teresa
+10
+
+In 1979 Mother Teresa of ____ was awarded the Nobel Peace Prize
+India
+10
+
+In 1979 Neptune becomes ____ planet (Pluto moves closer)
+Outermost
+10
+
+In 1979 Nicaragua Liberation Day; ____ take over from Somoza
+Sandinistas
+10
+
+In 1979 Nicaragua Liberation Day; Sandinistas take over from____
+Somoza
+10
+
+In 1979 Nuclear accident at Three Mile Island near____ , PA
+Middletown
+10
+
+In 1979 Park ____ South Korean President is assassinated
+Chung-hee
+10
+
+In 1979 Pope ____ becomes 1st pope to visit Ireland
+John Paul ii
+10
+
+In 1979 Pope ____ is 1st Pope to visit the White House
+John Paul ii
+10
+
+In 1979 Pope John Paul II becomes 1st pope to visit____
+Ireland
+10
+
+In 1979 Shah Mohammed ____ of Iran flees Iran for Egypt
+Reza pahlevi
+10
+
+In 1979 Soyuz ____ is launched
+33
+10
+
+In 1979 Ugandan dictator ____ overthrown; Tanzania takes Kampala
+Idi amin
+10
+
+In 1979 Ugandan dictator Idi Amin overthrown; ____ takes Kampala
+Tanzania
+10
+
+In 1979 Ugandan dictator Idi Amin overthrown; Tanzania takes?
+Kampala
+10
+
+In 1979 US House of Representatives begins TV broadcasts of its day-to-day business. ____ is born
+C-span
+10
+
+In 1979 US Skylab enters atmosphere over ____ and disintegrates
+Australia
+10
+
+In 1979 Voyager I's closest approach to?
+Jupiter
+10
+
+In 1979 Voyager II flies past____
+Jupiter
+10
+
+In 1979 Walt Disney World's ____ -millionth guest
+100
+10
+
+In 1979 Zulfiqar Ali ____ former Pakistani president, hanged in Pakistan
+Bhutto
+10
+
+In 1979, Skylab came back to earth sooner than expected as a result of?
+Sunspot activity
+10
+
+In 1980 ____ people die when a pair of earthquakes struck NW Algeria
+4,500
+10
+
+In 1980 ____ returns to Earth
+Soyuz 38
+10
+
+In 1980 ____ troops seized Iranian territory in a border dispute
+Iraqi
+10
+
+In 1980 4,500 people die when a pair of earthquakes struck NW____
+Algeria
+10
+
+In 1980 Abolhassan ____ was installed as president of Iran
+Bani-sadr
+10
+
+In 1980 Alfred ____ dies in Calif at 80
+Hitchcock
+10
+
+In 1980 Alfred Hitchcock ____ ____ Good Evening
+Knighted
+10
+
+In 1980 British New Hebrides becomes independent and takes name____
+Vanuatu
+10
+
+In 1980 BSD ____ released
+Unix 3
+10
+
+In 1980 Cosmonauts ____ and Ryumin set space endurance record of 184 days
+Popov
+10
+
+In 1980 Cosmonauts Popov and ____ set space endurance record of 184 days
+Ryumin
+10
+
+In 1980 Grateful Dead's Bob ____ & Mickey Hart are arrested for incitement
+Weir
+10
+
+In 1980 Grateful Dead's Bob Weir & Mickey ____ are arrested for incitement
+Hart
+10
+
+In 1980 Ian ____ musician (Joy Division), dies
+Curtis
+10
+
+In 1980 Iraqi troops seized ____ territory in a border dispute
+Iranian
+10
+
+In 1980 Jimmy ____ NYC, comedian (Jimmy Durante Show), dies at 86
+Durante
+10
+
+In 1980 Joseph ____ & 3 other IRA men arrested for murder
+Doherty
+10
+
+In 1980 Jury finds John Wayne ____ guilty of murders of 33 men and boys
+Gacy
+10
+
+In 1980 Mae ____ dies at age 88
+West
+10
+
+In 1980 Mount ____ blows its top in Washington State
+St helens
+10
+
+In 1980 Nation of ____ founded (formerly Rhodesia)
+Zimbabwe
+10
+
+In 1980 Peter Sellers, comedian and actor, dies at ____
+54
+10
+
+In 1980 Peter____ , comedian and actor, dies at 54
+Sellers
+10
+
+In 1980 Poland's ____ labor union founded
+Solidarity
+10
+
+In 1980 Polish airliner crash kills all ____ aboard (22 are US amateur boxers)
+87
+10
+
+In 1980 Pope John Paul II began 5 day visit to West____
+Germany
+10
+
+In 1980 Rhodesia became independent?
+Zimbabwe
+10
+
+In 1980 Shah ____ Reza Pahavala of Iran, dies in Cairo at 60
+Mohammed
+10
+
+In 1980 Shah Mohammed ____ Pahavala of Iran, dies in Cairo at 60
+Reza
+10
+
+In 1980 Shah Mohammed Reza ____ of Iran, dies in Cairo at 60
+Pahavala
+10
+
+In 1980 Shah Mohammed Reza Pahavala of Iran, dies in ____ at 60
+Cairo
+10
+
+In 1980 Shah Mohammed Reza Pahavala of Iran, dies in Cairo at____
+Sixty
+10
+
+In 1980 Soviet Premier ____ Kosygin resigns, due to illness
+Alexei
+10
+
+In 1980 Soviet Premier Alexei ____ resigns, due to illness
+Kosygin
+10
+
+In 1980 Soviet Premier Alexei ____ suffered a fatal heart attack at 76
+Kosygin
+10
+
+In 1980 Soyuz ____ crew returns to Earth aboard Soyuz 36
+37
+10
+
+In 1980 Soyuz 37 crew returns to ____ aboard Soyuz 36
+Earth
+10
+
+In 1980 Soyuz 37 crew returns to Earth aboard Soyuz____
+36
+10
+
+In 1980 Steve Ptacek in Solar Challenger makes first solar-powered____
+Flight
+10
+
+In 1980 Sugar Ray ____ regains WBC welterweight championship
+Leonard
+10
+
+In 1980 Ted ____ 's Cable News Network (CNN) begins broadcasting
+Turner
+10
+
+In 1980 Terrorists seize ____ Embassy in London
+Irania
+10
+
+In 1980 The crew of ____ 35 returns to Earth aboard Soyuz 37
+Soyuz
+10
+
+In 1980 The crew of ____ returns to Earth aboard Soyuz 35
+Soyuz 36
+10
+
+In 1980 UN Security Council calls for ____ to free Nelson Mandela
+South africa
+10
+
+In 1980 US appeals to International Court on hostages in?
+Iran
+10
+
+In 1980 US space probe ____ I approaches 77,000 miles of Saturn
+Voyager
+10
+
+In 1980 USA beats ____ and wins the Olympic Gold Medal (4-2)
+Finland
+10
+
+In 1980 USA beats the ____ in Olympic Hockey (4-3)
+Russians
+10
+
+In 1980____ , first Indian satellite, is launched
+Rohini
+10
+
+In 1980, a ____ hospital suspended workers for betting on when patients would die
+Las vegas
+10
+
+In 1980, a las vegas hospital suspended workers for betting on when patients would____
+Die
+10
+
+In 1980, Secretary of State Michael J Connelly banned the sale of stock in?
+Apple computers
+10
+
+In 1981 ____ 's closest approach to Saturn (63,000 miles/100,000 km)
+Voyager
+10
+
+In 1981 ____ 's closest approach to Saturn enroute to Uranus and Neptune
+Voyager
+10
+
+In 1981 ____ 's General Moshe Dayan dies at 66
+Israel
+10
+
+In 1981 ____ premiers at 12:01 AM
+Mtv
+10
+
+In 1981 ____ Sadat assassinated
+Anwar
+10
+
+In 1981 ____ talks a despondent 21 year old out of committing suicide
+Muhammad ali
+10
+
+In 1981 Actor Natalie ____ drowns off Santa Catalina, Calif., at 43
+Wood
+10
+
+In 1981 Anwar ____ assassinated
+Sadat
+10
+
+In 1981 Beatle ____ marries actress Barbara Bach
+Ringo starr
+10
+
+In 1981 Bob ____ reggae singer, dies at 36 of brain & lung cancer
+Marley
+10
+
+In 1981 Bobby Sands IRA activists dies in his ____ day of his hunger strike
+66th
+10
+
+In 1981 Charles ____ clearly says a four-letter word on Saturday Night Live
+Rocket
+10
+
+In 1981 First ____ crossing of Pacific completed (Double Eagle V)
+Balloon
+10
+
+In 1981 First manned ____ flight across Pacific Ocean ended
+Balloon
+10
+
+In 1981 Gen ____ Bradley last 5-star general, dies in NY at 88
+Omar
+10
+
+In 1981 Israel destroys alleged ____ plutonium production facility
+Iraqi
+10
+
+In 1981 Israel's General ____ Dayan dies at 66
+Moshe
+10
+
+In 1981 Israel's General Moshe ____ dies at 66
+Dayan
+10
+
+In 1981 Israel's General Moshe Dayan dies at____
+66
+10
+
+In 1981 james brady was shot attempting to assassinate whom?
+Ronald reagan
+10
+
+In 1981 Leader of Panama Gen. Omar ____ killed in a plane crash
+Torrijo
+10
+
+In 1981 Pope John ____ gets out of hospital after attempt on life
+Paul ii
+10
+
+In 1981 Pope John ____ shot, wounded by assailant in St Peter's Square
+Paul ii
+10
+
+In 1981 Pres. ____ shot and wounded by John W. Hinckley Jr
+Reagan
+10
+
+In 1981 Rajan ____ recites 31,811 digits of pi from memory
+Mahadevan
+10
+
+In 1981 Rajan Mahadevan recites ____ digits of pi from memory
+31,811
+10
+
+In 1981 Second Space Shuttle Mission - ____ 2 is launched. First time a spacecraft is launched twice
+Columbia
+10
+
+In 1981 Second Space Shuttle Mission, ____ 2, returns to Earth
+Columbia
+10
+
+In 1981 Soyuz ____ is launched
+T-4
+10
+
+In 1981 Soyuz ____ returns to Earth
+39
+10
+
+In 1981 Soyuz 39 is launched - First ____ in space
+Monoglian
+10
+
+In 1981 Supreme Court Justice Potter Stewart retires. (replaced by ____ first woman on the high court)
+Sandra day o'connor
+10
+
+In 1981 Teenager fires ____ blanks at Queen Elizabeth II
+Six
+10
+
+In 1981 The wedding of ____ and Lady Diana Spencer
+Prince Charles
+10
+
+In 1981 The wedding of Prince Charles and____
+Lady diana spencer
+10
+
+In 1981 Two workers killed in accident testing space shuttle?
+Columbia
+10
+
+In 1981 US & ____ sign agreement to release 52 American hostages
+Iran
+10
+
+In 1981 Voyager 2 encounters____
+Saturn
+10
+
+In 1981 Voyager 2's closest approach to ____ (63,000 miles/100,000 km)
+Saturn
+10
+
+In 1981 Voyager's closest approach to ____ enroute to Uranus and Neptune
+Saturn
+10
+
+In 1981 Voyager's closest approach to Saturn enroute to ____ and Neptune
+Uranus
+10
+
+In 1981 Voyager's closest approach to Saturn enroute to Uranus and____
+Neptune
+10
+
+In 1981, a guy had a heart attack after playing the game ____ ____video gaming's only known fatality
+Berserk
+10
+
+In 1981, a guy had a heart attack after playing the game ____ video gaming's only known fatality
+Berserk
+10
+
+In 1981, film was introduced to replace glass in making ____
+Photographic negatives
+10
+
+In 1982 ____ and Syria stop fighting in Lebanon
+Israel
+10
+
+In 1982 ____ announces its population at 1 billion people plus
+China
+10
+
+In 1982 ____ attacks targets in southern Lebanon
+Israel
+10
+
+In 1982 ____ beats West Germany 3-1 for Football's 12th World Cup in Madrid
+Italy
+10
+
+In 1982 ____ becomes king of Saudi Arabia when King Khalid dies at 69
+Fahd
+10
+
+In 1982 ____ forces began pouring into west Beirut
+Israeli
+10
+
+In 1982 ____ leaves Lebanon
+Palestinian liberation organization
+10
+
+In 1982 ____ Portugal, a Spanish priest with a bayonet is stopped prior to his attempt to attack Pope John Paul II
+Fatima
+10
+
+In 1982 ____ troops reach outskirts of Beirut
+Israeli
+10
+
+In 1982 ____ War Memorial dedicated in Washington, DC
+Vietnam
+10
+
+In 1982 ____ warns US will withdraw from UN if they vote to exclude Israel
+Shultz
+10
+
+In 1982 1st permanent artificial ____ successfully implanted (U of Utah) in retired dentist Barney Clark; lived 112 days with the Jarvic-7 heart
+Heart
+10
+
+In 1982 4 ____ television crew members were shot dead in El Salvador
+Dutch
+10
+
+In 1982 5.9 earthquake in ____ /Canada; last one was in 1855
+New England
+10
+
+In 1982 5th Space Shuttle Mission - ____ 5 is launched (first commercial flight)
+Columbia
+10
+
+In 1982 Argentina seized the disputed ____ (Malvinas) Islands from Britain
+Falkland
+10
+
+In 1982 Argentina surrenders to ____ on S Georgia near Falkland Island
+Britain
+10
+
+In 1982 Argentina surrenders to Britain on Falkland Is, ends ____day conflict
+74
+10
+
+In 1982 Bombs planted by ____ explode in 2 London parks
+Ira
+10
+
+In 1982 Britain requests ____ arrange for return of prisoners
+Argentina
+10
+
+In 1982 Eric the Red discovered ____
+Luxembourg
+10
+
+In 1982 Fahd becomes king of ____ when King Khalid dies at 69
+Saudi arabia
+10
+
+In 1982 Fahd becomes king of Saudi Arabia when King ____ dies at 69
+Khalid
+10
+
+In 1982 Fahd becomes king of Saudi Arabia when King Khalid dies at ____
+69
+10
+
+In 1982 Fifth Space Shuttle Mission - ____ 5 returns to Earth
+Columbia
+10
+
+In 1982 Funeral services held in Moscow's Red Square for Leonid I.____
+Brezhnev
+10
+
+In 1982 Groundbreaking in____ , D.C., for Vietnam Veterans Memorial
+Washington
+10
+
+In 1982 In accordance with Camp David, ____ completes Sinai withdrawl
+Israel
+10
+
+In 1982 Israel and ____ stop fighting in Lebanon
+Syria
+10
+
+In 1982 Israel and Syria stop fighting in____
+Lebanon
+10
+
+In 1982 Israel attacks targets in southern____
+Lebanon
+10
+
+In 1982 Israel invades ____ to drive out the PLO
+Lebanon
+10
+
+In 1982 Israeli forces began pouring into west____
+Beirut
+10
+
+In 1982 Israeli troops reach outskirts of____
+Beirut
+10
+
+In 1982 Italy beats ____ 3-1 for Football's 12th World Cup in Madrid
+West Germany
+10
+
+In 1982 Italy beats West Germany 3-1 for Football's 12th World Cup in____
+Madrid
+10
+
+In 1982 Korean boxer Duk Koo Kim fatally injured when KOed by Ray____
+Mancini
+10
+
+In 1982 Leonid____ , Soviet 1st sectretary, dies of a heart attack at 75
+Brezhnev
+10
+
+In 1982 Miguel ____ makes first public quadruple somersault on trapeze
+Vasquez
+10
+
+In 1982 Mt ____ Observatory first to detect Halley's comet on 13th return
+Palomar
+10
+
+In 1982 Mt Palomar Observatory first to detect Halley's comet on ____ return
+13th
+10
+
+In 1982 Palestinian Liberation Organization leaves____
+Lebanon
+10
+
+In 1982 Pres ____ meets with Pope John Paul II and Queen Elizabeth
+Reagan
+10
+
+In 1982 President ____ resigns in Argentina
+Galtieri
+10
+
+In 1982 Prince ____ of Wales, second in line to English throne (Son of Prince Charles), born in
+William
+10
+
+In 1982 Princess ____ of Monaco dies at 52 in a car crash
+Grace
+10
+
+In 1982 Princess Grace of ____ dies at 52 in a car crash
+Monaco
+10
+
+In 1982 Princess Grace of Monaco dies at ____ in a car crash
+52
+10
+
+In 1982 Riots in ____ after Falklands/Malvinas defeat
+Argentina
+10
+
+In 1982 Shultz warns US will withdraw from UN if they vote to exclude____
+Israel
+10
+
+In 1982 Soyuz ____ is launched
+T-6
+10
+
+In 1982 Soyuz T-5 returns to____ , 211 days after take-off
+Earth
+10
+
+In 1982 Third Space Shuttle Mission - ____ is launched
+Columbia 3
+10
+
+In 1982 Third Space Shuttle Mission - ____ returns to Earth
+Columbia 3
+10
+
+In 1982 UN Security Council demanded ____ withdraw from Falkland Islands
+Argentina
+10
+
+In 1982 Yasuhiro Nakasone elected PM of ____ succeeding Zenko Suzuki
+Japan
+10
+
+In 1982 Yuri V. ____ succeeds Leonid Brezhnev
+Andropov
+10
+
+In 1982, 264,000 bottles of what were recalled after 7 people died?
+Tylenol
+10
+
+In 1982, Englishman William Hall committed suicide by drilling holes into his head with a power drill . . . it took ____ holes
+Eight
+10
+
+In 1982, the last member of a group of people who believed the Earth was ____ died
+Hollow
+10
+
+In 1982, who was accused of killing both her parents with an axe?
+Lizzie borden
+10
+
+In 1983 ____ announces their color computer 2 (the Coco2)
+Radio shack
+10
+
+In 1983 ____ becomes 1st man-made object to leave Solar System
+Pioneer 10
+10
+
+In 1983 ____ cut oil prices for the first time in 23 years
+Opec
+10
+
+In 1983 ____ Gershwin, lyricist, dies in Beverly Hills, Cal, at 86
+Ira
+10
+
+In 1983 ____ Jones actress (Morticia-Addams Family), dies at 54 of cancer
+Carolyn
+10
+
+In 1983 ____ Walesa wins the Nobel Peace Prize
+Lech
+10
+
+In 1983 ____ won the America's Cup yacht race
+Australia ii
+10
+
+In 1983 ?1 ____ introduced in United Kingdom
+Coin
+10
+
+In 1983 1st nonhuman primate (baboon) conceived in a lab dish,____
+San antonio
+10
+
+In 1983 241 US Marines and sailors die in a terrorist suicide attack on their barracks in____
+Beriut
+10
+
+In 1983 6th space shuttle mission, ____ launched
+Challenger 1
+10
+
+In 1983 7th Shuttle Mission (Challenger 2) launched. ____ is the first U.S. woman in space
+Sally ride
+10
+
+In 1983 After being expelled from Bolivia, former Nazi Gestapo official Klaus ____ was brought to Lyon, France to stand trial for alleged war crimes
+Barbie
+10
+
+In 1983 After being expelled from____ , former Nazi Gestapo official Klaus Barbie was brought to Lyon, France to stand trial for alleged war crimes
+Bolivia
+10
+
+In 1983 Brunei gains complete independence from____
+Britain
+10
+
+In 1983 Carolyn ____ actress (Morticia-Addams Family), dies at 54 of cancer
+Jones
+10
+
+In 1983 Carolyn Jones actress (Morticia-Addams Family), dies at ____ of cancer
+54
+10
+
+In 1983 Carolyn Jones actress (Morticia-Addams Family), dies at 54 of____
+Cancer
+10
+
+In 1983 Chaim ____ elected president of Israel
+Herzog
+10
+
+In 1983 Challenger crew perform a spacewalk - first by US in?
+9 years
+10
+
+In 1983 Cosmonauts ____ and Strekalov are saved from exploding Soyuz T-10
+Titov
+10
+
+In 1983 Cosmonauts Titov and ____ are saved from exploding Soyuz T-10
+Strekalov
+10
+
+In 1983 Cosmonauts Titov and Strekalov are saved from exploding Soyuz____
+T-1
+10
+
+In 1983 First Artificial heart recipient Dr. Barney Clark died after ____ days
+112
+10
+
+In 1983 Ira Gershwin, lyricist, dies in Beverly Hills, Cal, at____
+86
+10
+
+In 1983 Ira Gershwin, lyricist, dies in____ , Cal, at 86
+Beverly hills
+10
+
+In 1983 Ira____ , lyricist, dies in Beverly Hills, Cal, at 86
+Gershwin
+10
+
+In 1983 Israel & ____ sign a peace treaty
+Lebanon
+10
+
+In 1983 Korean ____ strays into Siberia and is shot down by a Soviet jet
+Boeing 747
+10
+
+In 1983 Korean Boeing 747 strays into ____ and is shot down by a Soviet jet
+Siberia
+10
+
+In 1983 Korean Boeing 747 strays into Siberia and is shot down by a ____ jet
+Soviet
+10
+
+In 1983 Lech ____ wins the Nobel Peace Prize
+Walesa
+10
+
+In 1983 NASA launches____
+Telsat v
+10
+
+In 1983 Ninth Space Shuttle Mission, ____ 6 is launched
+Columbia
+10
+
+In 1983 President ____ signs a bill establishing Martin Luther King day
+Reagan
+10
+
+In 1983 R ____ Fuller inventor/philosopher, dies in LA at 87
+Buckminster
+10
+
+In 1983 R Buckminster ____ inventor/philosopher, dies in LA at 87
+Fuller
+10
+
+In 1983 R Buckminster Fuller inventor/philosopher, dies in LA at?
+87
+10
+
+In 1983 Sixth Space Shuttle Mission - ____ returns to Earth
+Challenger 1
+10
+
+In 1983 St Christopher____ gained independence from Britain (Nat'l Day)
+Nevis
+10
+
+In 1983 US and USSR sign $10 billion ____ pact
+Grain
+10
+
+In 1983 US invades____ , a country with 1/2000 its population
+Grenada
+10
+
+In 1983, a Japanese artist made a copy of the mona lisa completely out of____
+Toast
+10
+
+In 1983, which firms security warehouse at Heathrow was robbed of ?26million of gold?
+Brinks-mat
+10
+
+In 1983, who released 'let's dance'?
+David bowie
+10
+
+In 1983, who sang 'domo origato mr roboto'?
+Styx
+10
+
+In 1984 ____ Bishop Desmond Tutu named Nobel Peace Prize winner
+Anglican
+10
+
+In 1984 ____ bombs hotel where Margaret Thatcher is staying
+Ira
+10
+
+In 1984 ____ Capote author (In Cold Blood), dies
+Truman
+10
+
+In 1984 ____ founder of MacDonalds/owner San Diego Padres, dies at 82
+Ray kroc
+10
+
+In 1984 ____ holds first free elections in 56 years; Sandinistas win 63%
+Nicaragua
+10
+
+In 1984 ____ Jones runs Chicago Marathon in world record 2 h 8 m 5 s
+Steve
+10
+
+In 1984 ____ Kittinger completes first solo balloon crossing of Atlantic
+Joe
+10
+
+In 1984 ____ Mason actor, dies at 75 of a heart attack
+James
+10
+
+In 1984 1st documented case of a ____ killing a human in US
+Robot
+10
+
+In 1984 2,000 die from Union ____ poison gas emission in Bhopal, India
+Carbide
+10
+
+In 1984 Anglican Bishop ____ Tutu named Nobel Peace Prize winner
+Desmond
+10
+
+In 1984 Anglican Bishop Desmond ____ named Nobel Peace Prize winner
+Tutu
+10
+
+In 1984 Baby Fae, who received a____ , heart died at a California medical center
+Baboon's
+10
+
+In 1984 Body of assassinated Indian PM Indira ____ cremated
+Gandhi
+10
+
+In 1984 Challenger astronauts complete 1st in space satellite?
+Repair
+10
+
+In 1984 Christopher ____ , FBI's 'most wanted man' accidentally killed self
+Wilder
+10
+
+In 1984 Cosmonaut ____ Savitskaya became 1st woman to walk in space
+Svetlana
+10
+
+In 1984 Count Basie jazz piano great, dies at?
+79
+10
+
+In 1984 Eleventh Space Shuttle Mission - ____ is launched
+Challenger 5
+10
+
+In 1984 Eleventh Space Shuttle Mission - ____ returns to Earth
+Challenger 5
+10
+
+In 1984 Fourteenth Space Shuttle Mission - ____ 2 is launched
+Discovery
+10
+
+In 1984 Fourteenth Space Shuttle Mission - ____ 2 returns to Earth
+Discovery
+10
+
+In 1984 IRA bombs hotel where ____ is staying
+Margaret thatcher
+10
+
+In 1984 James ____ actor, dies at 75 of a heart attack
+Mason
+10
+
+In 1984 James Mason actor, dies at ____ of a heart attack
+75
+10
+
+In 1984 James Mason actor, dies at 75 of a____
+Heart attack
+10
+
+In 1984 Joe ____ completes first solo balloon crossing of Atlantic
+Kittinger
+10
+
+In 1984 Joe Kittinger completes first solo balloon crossing of____
+Atlantic
+10
+
+In 1984 Johnny ____ actor (Tarzan, Jungle Jim), dies in Acapulco at 79
+Weismuller
+10
+
+In 1984 Los Angeles hosted the Summer Games, which city hosted the Winter Games that year?
+Sarajevo
+10
+
+In 1984 Marvin ____ shot to death by his father Marvin Gaye Sr in LA
+Gaye
+10
+
+In 1984 Pres ____ was elected to a second term, winning 49 states
+Reagan
+10
+
+In 1984 Prince ____ Charles Albert David of Wales, 3rd in British sucession, born in
+Henry
+10
+
+In 1984 Prince Henry ____ Albert David of Wales, 3rd in British sucession, born in
+Charles
+10
+
+In 1984 Prince Henry Charles ____ David of Wales, 3rd in British sucession, born in
+Albert
+10
+
+In 1984 Prince Henry Charles Albert ____ of Wales, 3rd in British sucession, born in
+David
+10
+
+In 1984 Prince Henry Charles Albert David of Wales, ____ in British sucession, born in
+3rd
+10
+
+In 1984 Prince Henry Charles Albert David of____ , 3rd in British sucession, born in
+Wales
+10
+
+In 1984 Republic of ____ becomes Burkina Fasso (National Day)
+Upper volta
+10
+
+In 1984 Republic of Upper Volta becomes ____ (National Day)
+Burkina fasso
+10
+
+In 1984 Rev Martin ____ King Sr, dies in Atlanta at 84
+Luther
+10
+
+In 1984 South African Bishop Desmond ____ received his Nobel Peace Prize
+Tutu
+10
+
+In 1984 South African prisoner ____ sees his wife for 1st time in 22 years
+Nelson mandela
+10
+
+In 1984 Soyuz ____ is launched
+T-10
+10
+
+In 1984 Soyuz T-12 carries 3 cosmonauts to space station____
+Salyut 7
+10
+
+In 1984 Steve ____ runs Chicago Marathon in world record 2 h 8 m 5 s
+Jones
+10
+
+In 1984 Svetlana ____ accompanies Vladimir Dzhanibekov on EVA outside Salyut 7, becoming first woman to walk in space
+Savitskaya
+10
+
+In 1984 Tenth Space Shuttle Mission - ____ is launched
+Challenger
+10
+
+In 1984 Tenth Space Shuttle Mission - ____ returns to Earth
+Challenger 4
+10
+
+In 1984 Truman ____ author (In Cold Blood), dies
+Capote
+10
+
+In 1984 U.S. ends participation in multinational peace force in?
+Lebanon
+10
+
+In 1984 USSR announces it will not participate in ____ Summer Olympics
+La
+10
+
+In 1984 which country wrested the Americas Cup away from United States?
+Australia
+10
+
+In 1984 William Schroeder, becomes second to receive Jarvik-7 artificial____
+Heart
+10
+
+In 1984, a Canadian farmer began renting ad space on?
+His cows
+10
+
+In 1984, a Canadian farmer began renting advertising space on his what?
+Cow
+10
+
+In 1984, who sang 'girls just want to have fun'?
+Cyndi lauper
+10
+
+In 1985 ____ agents sink Greenpeace's Rainbow Warrior in New Zealand
+French
+10
+
+In 1985 ____ Jackson buys ATV Music (including the rights to every Beatle song) for $47 million
+Michael
+10
+
+In 1985 ____ Shiite Moslem gunmen hijack TWA 847 after Athens' takeoff
+Lebanese
+10
+
+In 1985 ____ Space Shuttle Mission - Atlantis 1 is launched
+21st
+10
+
+In 1985 ____ Space Shuttle Mission - Atlantis 1 returns to Earth
+21st
+10
+
+In 1985 ____ Space Shuttle Mission - Challenger 8 is launched
+19th
+10
+
+In 1985 ____ Space Shuttle Mission - Challenger 8 returns to Earth
+19th
+10
+
+In 1985 ____ Space Shuttle Mission - Discovery 6 is launched
+20th
+10
+
+In 1985 ____ troops ends 27-hour siege of Bogota's Palace of Justice
+Colombian
+10
+
+In 1985 19th Space Shuttle Mission - ____ returns to Earth
+Challenger 8
+10
+
+In 1985 19th Space Shuttle Mission - Challenger ____ is launched
+Eight
+10
+
+In 1985 19th Space Shuttle Mission - Challenger 8 returns to____
+Earth
+10
+
+In 1985 21st Space Shuttle Mission - ____ is launched
+Atlantis 1
+10
+
+In 1985 21st Space Shuttle Mission - ____ returns to Earth
+Atlantis 1
+10
+
+In 1985 22nd Space Shuttle Mission - ____ 9 returns to Earth
+Challenger
+10
+
+In 1985 23rd Space Shuttle Mission - ____ 2 is launched
+Atlantis
+10
+
+In 1985 Body of Dr. Josef____ , Nazi war criminal, located and exhumed
+Mengele
+10
+
+In 1985 Clarence____ , the voice of Donald Duck, died
+Nash
+10
+
+In 1985 Claus ____ acquitted on charges he tried to murder his wife
+Von bulow
+10
+
+In 1985 Eighteenth Space Shuttle Mission - ____ is launched
+Discovery 5
+10
+
+In 1985 En route to Halley's Comet, USSR's ____ drops lander on Venus
+Vega 2
+10
+
+In 1985 European Space Agency launches ____ Sattelite to Halley's Comet
+Giotto
+10
+
+In 1985 FBI arrests John A ____ Jr, convicted of spying for USSR
+Walker
+10
+
+In 1985 Fifteenth Space Shuttle Mission - ____ returns to Earth
+Discovery
+10
+
+In 1985 French agents sink Greenpeace's ____ in New Zealand
+Rainbow warrior
+10
+
+In 1985 French agents sink Greenpeace's Rainbow Warrior in____
+New zealand
+10
+
+In 1985 Funeral services held in ____ for leader Konstantin Chernenko
+Moscow
+10
+
+In 1985 Gary Kasparov (USSR) becomes World ____ Champion at age of 22
+Chess
+10
+
+In 1985 India files suit against ____ over Bhopal disaster
+Union carbide
+10
+
+In 1985 India files suit against Union Carbide over ____ disaster
+Bhopal
+10
+
+In 1985 Journalist Terry ____ is abducted in Lebanon by pro-Iranian terrorists
+Anderson
+10
+
+In 1985 Lebanese ____ Moslem gunmen hijack TWA 847 after Athens' takeoff
+Shiite
+10
+
+In 1985 Lebanese Shiite ____ gunmen hijack TWA 847 after Athens' takeoff
+Moslem
+10
+
+In 1985 Lebanese Shiite Moslem gunmen hijack ____ after Athens' takeoff
+Twa 847
+10
+
+In 1985 Lebanese Shiite Moslem gunmen hijack TWA 847 after ____ ' takeoff
+Athens
+10
+
+In 1985 Live Aid, a rock concert in London, ____ , Moscow and Sydney
+Phila
+10
+
+In 1985 Live Aid, a rock concert in London, Phila, ____ and Sydney
+Moscow
+10
+
+In 1985 Live Aid, a rock concert in London, Phila, Moscow and____
+Sydney
+10
+
+In 1985 Live Aid, a rock concert in____ , Phila, Moscow and Sydney
+London
+10
+
+In 1985 Michael ____ buys ATV Music (including the rights to every Beatle song) for $47 million
+Jackson
+10
+
+In 1985 Michael Jackson buys ATV Music (including the rights to every ____ song) for $47 million
+Beatle
+10
+
+In 1985 Michael Jackson buys ATV Music (including the rights to every Beatle song) for____
+$47 million
+10
+
+In 1985 Nevado del Ruiz volcano erupts in____ , kills 25,000
+Colombia
+10
+
+In 1985 Republic of ____ gains consultative role in Northern Ireland
+Ireland
+10
+
+In 1985 Soviet Union announces death of its leader Konstantin____ . Mikhail S. Gorbachev becomes Communist Party general secretary
+Chernenko
+10
+
+In 1985 Space shuttle ____ makes second flight, carries 7 (1 Mexican)
+Atlantis
+10
+
+In 1985 Spokeswoman for Rock ____ confirmed he had AIDS
+Hudson
+10
+
+In 1985 Tancredo Neves becomes 1st elected president of ____ in 21 years
+Brazil
+10
+
+In 1985 UN ____ Council unanimously condemns 'acts of hostage-taking'
+Security
+10
+
+In 1985 Walt Disney World's ____ -millonth guest
+200
+10
+
+In 1985, as what did 'people magazine' name mel gibson?
+Sexiest man of the year
+10
+
+In 1985, which magazine named mel gibson 'the sexiest man of the year'?
+People magazine
+10
+
+In 1986 ____ & Arnold Schwarzenegger marry
+Maria shriver
+10
+
+In 1986 ____ announces high-level Chernobyl staff fired for stupidity
+Pravda
+10
+
+In 1986 ____ becomes only the 2nd freely elected president of Guatemala since the CIA-sponsored coup in 1954
+Vinicio cerezo
+10
+
+In 1986 ____ Tutu installed to lead south African Anglican Church
+Desmond
+10
+
+In 1986 '____ ', famed surrogate, born in
+Baby m
+10
+
+In 1986 (USA) Rutan and Yeager make first around-the-world flight without____
+Refueling
+10
+
+In 1986 24th Space Shuttle Mission - ____ is launched
+Columbia
+10
+
+In 1986 A mail carrier in Edmond, Okla., shot ____ fellow workers dead
+Fourteen
+10
+
+In 1986 Alleged Nazi Kurt ____ elected pres of Austria
+Waldheim
+10
+
+In 1986 Andrei Tarkovski, Russian ____ (Stalker), dies at 54
+Director
+10
+
+In 1986 Artificial heart recipient Murray P. Haydon died in____ , KY
+Louisville
+10
+
+In 1986 Benny ____ the clarinet playing King of Swing, dies in NY at 77
+Goodman
+10
+
+In 1986 Benny Goodman the ____ playing King of Swing, dies in NY at 77
+Clarinet
+10
+
+In 1986 Benny Goodman the clarinet playing King of Swing, dies in NY at?
+77
+10
+
+In 1986 Bloody coup overthrows government of?
+South yemen
+10
+
+In 1986 Cary____ , dies in Davenport, Iowa, at 82
+Grant
+10
+
+In 1986 Christa McAuliffe, Dr Judith Arlene Resnik, Ellison S Onizuka, Francis R Scobee, Michael J Smith and Ronald E McNair, die in the ____ Space shuttle disaster
+Challenger
+10
+
+In 1986 Clint Eastwood elected mayor of ____ , California. It made his day
+Carmel
+10
+
+In 1986 Desi ____ actor (Ricky Ricardo-I Love Lucy), dies at 69
+Arnaz
+10
+
+In 1986 Desmond ____ installed to lead south African Anglican Church
+Tutu
+10
+
+In 1986 Desmond Tutu installed to lead south African ____ Church
+Anglican
+10
+
+In 1986 Dodge ____ sailed solo nonstop around the world in 150 days
+Morgan
+10
+
+In 1986 Dodge Morgan sailed solo nonstop around the world in ____ days
+150
+10
+
+In 1986 First ____ television station to televise live local programs
+All-color
+10
+
+In 1986 Geraldo ____ opens Al Capone's vault on TV & finds nothing
+Rivera
+10
+
+In 1986 Halley's Comet makes closest approach to ____ this trip, 63 M km
+Earth
+10
+
+In 1986 James ____ died at his farm in Stanfordville, NY, at age 86
+Cagney
+10
+
+In 1986 Jonathan ____ spy for Israel pleads guilty
+Pollard
+10
+
+In 1986 Jonathan Pollard spy for ____ pleads guilty
+Israel
+10
+
+In 1986 Lebanese magazine Ash Shirra reveals secret US arms sales to____
+Iran
+10
+
+In 1986 P. W. ____ declares South African national emergency
+Botha
+10
+
+In 1986 Philippines President Ferdinand E. ____ flees in defeat, takes up residence in Hawaii with wife Imelda
+Marcos
+10
+
+In 1986 Pope ____ met Rome's Chief Rabbi Elio Toaff at Rome synagogue
+John Paul ii
+10
+
+In 1986 Pope John Paul II met Rome's Chief Rabbi ____ at Rome synagogue
+Elio toaff
+10
+
+In 1986 Pope John Paul II met Rome's Chief Rabbi Elio Toaff at ____ synagogue
+Rome
+10
+
+In 1986 Pres ____ criticizes South African state of emergency
+Reagan
+10
+
+In 1986 Reagan administration exceeds ____ II arms limitations for first time
+Salt
+10
+
+In 1986 Record ____ start in a marathon (Mexico City)
+23,000
+10
+
+In 1986 Record 23,000 start in a marathon (____ )
+Mexico city
+10
+
+In 1986 Record for a throw-and-return ____ toss is set (121m)
+Boomerang
+10
+
+In 1986 River ____ (Germany) polluted by chemical spill
+Rhine
+10
+
+In 1986 Tommy Lee drummer of ____ marries Heather Locklear
+Motley crue
+10
+
+In 1986 UN's WHO announces first global effort to combat____
+Aids
+10
+
+In 1986 US and ____ clash in the Gulf of Sidra
+Libya
+10
+
+In 1986 USSR frees dissident Andrei ____ from internal exile
+Sakharov
+10
+
+In 1986 USSR releases US journalist ____ Daniloff confined on spy charges
+Nicholas
+10
+
+In 1986 USSR releases US journalist Nicholas ____ confined on spy charges
+Daniloff
+10
+
+In 1986 Videotapes released showing sunken remains of the____
+Titanic
+10
+
+In 1986 Volcanic eruption in ____ releases poison gas, killing 2,000
+Cameroon
+10
+
+In 1986 Volcanic eruption in Cameroon releases poison gas, killing____
+2,000
+10
+
+In 1986 Voyager 2, first ____ flyby
+Uranus
+10
+
+In 1986 which Woody Allen film won Oscars for Best Supporting Actor and Best Supporting Actress, as well as for Best Original Screenplay?
+Hannah and her sisters
+10
+
+In 1986 Worst nuclear disaster, ____ USSR, 31 die
+Chernobyl
+10
+
+In 1986____ , Thin Lizzy Lead Singer, died
+Phil lynott
+10
+
+In 1986, what was the maximum fuel capacity imposed in formula 1 racing?
+-- Answer metadata begin
+{
+    "answers": ["One hundred and ninety five litres", "195 liters"]
+}
+-- Answer metadata end
+10
+
+In 1986, who sang tommy james' 'mony mony'?
+Billy idol
+10
+
+In 1987 ____ actor/dancer (Scarecrow in Wizard of Oz), dies at 82
+Ray bolger
+10
+
+In 1987 ____ Cox swims 4.3 km from US to USSR in 4? C (39? F) Bering Sea
+Lynne
+10
+
+In 1987 ____ gays march for civil rights in Washington
+200,000
+10
+
+In 1987 ____ Greene actor (Bonanza, Battlestar Galactica), dies at 72
+Lorne
+10
+
+In 1987 ____ Hess, Nazi, dies at 93, after 46 years in Spandau Prison
+Rudolph
+10
+
+In 1987 ____ Marvin dies in Tucson, Ariz at 63
+Lee
+10
+
+In 1987 ____ voters overwhelmingly approved a new constitution
+South korean
+10
+
+In 1987 175-kph winds cause blackout in____ , much of southern England
+London
+10
+
+In 1987 18-month-old ____ is rescued 58 hours after she fell 22 feet into a well shaft in Midland, TX
+Jessica mcclure
+10
+
+In 1987 18-month-old Jessica McClure is rescued ____ hours after she fell 22 feet into a well shaft in Midland, TX
+58
+10
+
+In 1987 18-month-old Jessica McClure is rescued 58 hours after she fell ____ feet into a well shaft in Midland, TX
+22
+10
+
+In 1987 18-month-old Jessica McClure is rescued 58 hours after she fell 22 feet into a well shaft in Midland,____
+Texas
+10
+
+In 1987 1st military use of trained ____ (US Navy in Persian Gulf)
+Dolphins
+10
+
+In 1987 1st of 3 massacres by ____ extremists takes place in India
+Sikh
+10
+
+In 1987 1st of 3 massacres by Sikh extremists takes place in____
+India
+10
+
+In 1987 200,000 gays march for civil rights in____
+Washington
+10
+
+In 1987 7 top NY Mafia bosses sentenced to ____ years in prison each
+100
+10
+
+In 1987 Andres ____ Spanish guitarist, dies at 94
+Segovia
+10
+
+In 1987 Astrological Harmonic Convergence ____ Dawn of____
+New age
+10
+
+In 1987 Australian ____ wins Wimbledon, upsets #1 seed Ivan Lendl
+Pat cash
+10
+
+In 1987 Australian Pat Cash wins Wimbledon, upsets #1 seed____
+Ivan lendl
+10
+
+In 1987 bernardo bertolucci became the first western director to be allowed to film in beijing, what film was he making?
+The last emperor
+10
+
+In 1987 Digging begins to link England and ____ under the English Channel
+France
+10
+
+In 1987 Flight 255 out of Metro Airport in ____ crashes just miniutes after take off, killing all but one small child
+Detroit
+10
+
+In 1987 Fox TV network premiers showing ____ & Tracey Ullman
+Married with children
+10
+
+In 1987 Fred ____ actor/dancer, dies at Century City Hospital in LA at 88
+Astaire
+10
+
+In 1987 Fred Astaire actor/dancer, dies at Century City Hospital in LA at?
+88
+10
+
+In 1987 Iceberg twice the size of ____ Island sighted in Antarctic
+Rhode
+10
+
+In 1987 Lee ____ dies in Tucson, Ariz at 63
+Marvin
+10
+
+In 1987 Lee Marvin dies in Tucson, Ariz at____
+63
+10
+
+In 1987 Lee Marvin dies in____ , Ariz at 63
+Tucson
+10
+
+In 1987 Lorne ____ actor (Bonanza, Battlestar Galactica), dies at 72
+Greene
+10
+
+In 1987 Lorne Greene actor (____ , Battlestar Galactica), dies at 72
+Bonanza
+10
+
+In 1987 Lorne Greene actor (Bonanza, Battlestar Galactica), dies at____
+72
+10
+
+In 1987 Lt Col ____ began public testimony at Iran-Contra hearing
+Oliver north
+10
+
+In 1987 Lynne ____ swims 4.3 km from US to USSR in 4? C (39? F) Bering Sea
+Cox
+10
+
+In 1987 New ____ constituion takes effect
+Nicaraguan
+10
+
+In 1987 PTL leader Jim ____ resigns
+Bakker
+10
+
+In 1987 R. Budd____ , Pennsylvannia State Treasurer, facing prison for conspiracy & perjury, shot himself to death at a televised news conference
+Dwyer
+10
+
+In 1987 Rita ____ actress, dies at 68 of Alzheimer's disease
+Hayworth
+10
+
+In 1987 Rudolph Hess, Nazi, dies at 93, after ____ years in Spandau Prison
+46
+10
+
+In 1987 Rudolph Hess, Nazi, dies at 93, after 46 years in ____ Prison
+Spandau
+10
+
+In 1987 Rudolph Hess, Nazi, dies at____ , after 46 years in Spandau Prison
+93
+10
+
+In 1987 Rudolph____ , Nazi, dies at 93, after 46 years in Spandau Prison
+Hess
+10
+
+In 1987 Surrogate Baby M case begins in____ , NJ
+Hackensack
+10
+
+In 1987 US Justice Dept bars Austrian Chancellor Kurt ____ from entering US, due to his aid of Nazi Germany during WW II
+Waldheim
+10
+
+In 1987 US warships destroy ____ Iranian oil platforms in Persian Gulf
+Two
+10
+
+In 1987 US warships destroy 2 ____ oil platforms in Persian Gulf
+Iranian
+10
+
+In 1987 US warships destroy 2 Iranian oil platforms in____
+Persian gulf
+10
+
+In 1987, which band asked you to 'pour some sugar on me'?
+Def leppard
+10
+
+In 1988 ____ Addams cartoonist (Addams Family), dies at 76 of heart attack
+Charles
+10
+
+In 1988 ____ Flynt paid hitman $1M to kill Hefner, Guccione and Sinatra
+Larry
+10
+
+In 1988 ____ Ireland, commander of Irish Republican Army, dies at 83
+Sean macbride
+10
+
+In 1988 ____ Space Shuttle mission, Discovery 7 launched
+26th
+10
+
+In 1988 ____ Tosh reggae singer shot dead at 43 in Jamacia
+Peter
+10
+
+In 1988 ____ Zia Ul-Haq, Pakistani president and US ambassador killed in plane crash
+Mohammed
+10
+
+In 1988 26th Space Shuttle mission, ____ launched
+Discovery 7
+10
+
+In 1988 5-day power blackout of downtown ____ begins
+Seattle
+10
+
+In 1988 Benazir Bhutto elected 1st female PM of a ____ country (Pakistan)
+Muslim
+10
+
+In 1988 Britain bans broadcast interviews with ____ members
+Ira
+10
+
+In 1988 Carlos Salinas de ____ elected president of Mexico
+Gortari
+10
+
+In 1988 Carlos Salinas de Gortari elected president of____
+Mexico
+10
+
+In 1988 Cease fire between ____ and Iraq takes effect after 8 years of war
+Iran
+10
+
+In 1988 Cease fire between Iran and ____ takes effect after 8 years of war
+Iraq
+10
+
+In 1988 Cease fire between Iran and Iraq takes effect after ____ years of war
+Eight
+10
+
+In 1988 Charles ____ cartoonist (Addams Family), dies at 76 of heart attack
+Addams
+10
+
+In 1988 Charles Addams cartoonist (Addams Family), dies at ____ of heart attack
+76
+10
+
+In 1988 Charles Addams cartoonist (Addams Family), dies at 76 of____
+Heart attack
+10
+
+In 1988 Chet ____ jazz trumpeter fell to death out of a hotel window at 59
+Baker
+10
+
+In 1988 Ching-Kao Chiang president of____ , dies at 81
+Taiwan
+10
+
+In 1988 George ____ becomes the first sitting vice-president of the U.S. in 150 years to win a presidential election
+Bush
+10
+
+In 1988 Larry ____ paid hitman $1M to kill Hefner, Guccione and Sinatra
+Flynt
+10
+
+In 1988 Larry Flynt paid hitman $1M to kill Hefner, ____ and Sinatra
+Guccione
+10
+
+In 1988 Larry Flynt paid hitman $1M to kill Hefner, Guccione and____
+Sinatra
+10
+
+In 1988 Larry Flynt paid hitman $1M to kill____ , Guccione and Sinatra
+Hefner
+10
+
+In 1988 Lillehammer, ____ upsets Anchorage to host 1994 Winter olympics
+Norway
+10
+
+In 1988 Lillehammer, Norway upsets ____ to host 1994 Winter olympics
+Anchorage
+10
+
+In 1988 Lillehammer, Norway upsets Anchorage to host 1994 ____ olympics
+Winter
+10
+
+In 1988 Mexican radio station erronously reports Mike ____ dies in car crash
+Tyson
+10
+
+In 1988 Mike ____ hires Donald Trump as an advisor
+Tyson
+10
+
+In 1988 Mike Tyson hires Donald ____ as an advisor
+Trump
+10
+
+In 1988 Mohammed ____ Ul-Haq, Pakistani president and US ambassador killed in plane crash
+Zia
+10
+
+In 1988 Mohammed Zia Ul-Haq, ____ president and US ambassador killed in plane crash
+Pakistani
+10
+
+In 1988 Mohammed Zia____ , Pakistani president and US ambassador killed in plane crash
+Ul-haq
+10
+
+In 1988 Peter ____ reggae singer shot dead at 43 in Jamacia
+Tosh
+10
+
+In 1988 Peter Tosh reggae singer shot dead at ____ in Jamacia
+43
+10
+
+In 1988 Peter Tosh reggae singer shot dead at 43 in____
+Jamacia
+10
+
+In 1988 Republican Convention in New Orleans select ____ -Quayle ticket
+Bush
+10
+
+In 1988 Republican Convention in New Orleans select Bush____ ticket
+Quayle
+10
+
+In 1988 Robert A ____ sci-fi writer, dies of heart failure at 80
+Heinlein
+10
+
+In 1988 Soviet Union agrees to allow teaching of____
+Hebrew
+10
+
+In 1988 Soviet Union launches ____ to probe Martian moon (unsuccessful)
+Phobos 1
+10
+
+In 1988 Soviets launch first unmanned Space ____ in two-day test
+Shuttle
+10
+
+In 1988 US-Soviet effort free 2 grey whales from frozen____
+Arctic
+10
+
+In 1988____ , Norway upsets Anchorage to host 1994 Winter olympics
+Lillehammer
+10
+
+In 1989 ____ actor (Magoo, Gilligan's Island), dies at 76 of pneumonia
+Jim backus
+10
+
+In 1989 ____ begin their flight to the west (via Hungary and Czech)
+East germans
+10
+
+In 1989 ____ Chapman, member of the Monty Python team, dies from cancer
+Graham
+10
+
+In 1989 ____ confirmed Voyager 2's discovery of 3 more moons of Neptune designated temporarily 1989 N2, 1989 N3 and 1989 N24
+Nasa
+10
+
+In 1989 ____ Davis dies at 81
+Bette
+10
+
+In 1989 ____ declares martial law in Beijing
+China
+10
+
+In 1989 ____ is hit by an earthquake (Richter 6.9) at 5:05 p.m. Over 1/2 mile of the upper deck of the Nimitz freeway collapses crushing hundreds of cars. When it was over, 62 people had died and $6 billion in damage had occured
+San francisco
+10
+
+In 1989 ____ makes its closest approach to Neptune (0400 GMT)
+Voyager 2
+10
+
+In 1989 ____ Marcos deposed president of Phillipines, dies
+Ferdinand
+10
+
+In 1989 ____ students take over Tiananmen Square in China
+Beijing
+10
+
+In 1989 ____ Wall opens in East Germany
+Berlin
+10
+
+In 1989 ____ years after Soviet tanks crushed the Prague Spring, Hungary declares itself a republic
+33
+10
+
+In 1989 (Japan) ____ of Japan, dies at 87 after 62-year reign
+Emperor hirohito
+10
+
+In 1989 135 acre Disney's ____ studio officially opens to the public
+Mgm
+10
+
+In 1989 29 year old French woman gives birth to ____ in Paris
+Sextuplets
+10
+
+In 1989 33 years after Soviet tanks crushed the Prague Spring, ____ declares itself a republic
+Hungary
+10
+
+In 1989 Approx ____ students begin hunger strike in Tiananmen Square, China
+2,000
+10
+
+In 1989 Ayatollah ____ (86) dies from complications due to surgery leading to days of loud, hysterical mourning
+Khomeini
+10
+
+In 1989 Bette ____ dies at 81
+Davis
+10
+
+In 1989 Bette Davis dies at____
+81
+10
+
+In 1989 East ____ opens its borders
+Berlin
+10
+
+In 1989 East Germans begin their flight to the west (via ____ and Czech)
+Hungary
+10
+
+In 1989 East Germans begin their flight to the west (via Hungary and____ )
+Czech
+10
+
+In 1989 East Germany drops the ____ monopoly from its constitution
+Communist
+10
+
+In 1989 Ferdinand ____ deposed president of Phillipines, dies
+Marcos
+10
+
+In 1989 Funeral for Japan's Emperor ____ costs his government $80-billion dollars, attracts all major world leaders
+Hirohito
+10
+
+In 1989 Germans begin punching holes in the ____ Wall
+Berlin
+10
+
+In 1989 Gilda ____ comedienne (Sat Night Live), dies at 42 of cancer
+Radner
+10
+
+In 1989 Graham Chapman, member of the ____ team, dies from cancer
+Monty python
+10
+
+In 1989 Graham Chapman, member of the Monty Python team, dies from____
+Cancer
+10
+
+In 1989 Graham____ , member of the Monty Python team, dies from cancer
+Chapman
+10
+
+In 1989 Guerrillas battle with government forces in El____
+Salvador
+10
+
+In 1989 In____ , two trains pass each other in a valley filled with natural gas from a leaking pipeline. The gas explodes and hundreds are killed. Not a good day
+Siberia
+10
+
+In 1989 Jim Backus actor (____ , Gilligan's Island), dies at 76 of pneumonia
+Magoo
+10
+
+In 1989 Jim Backus actor (Magoo, Gilligan's Island), dies at ____ of pneumonia
+76
+10
+
+In 1989 Jim Backus actor (Magoo, Gilligan's Island), dies at 76 of____
+Pneumonia
+10
+
+In 1989 Jim Backus actor (Magoo,____ ), dies at 76 of pneumonia
+Gilligan's island
+10
+
+In 1989 Lucille Ball comedienne/actress dies at ____ of a massive heart attack
+78
+10
+
+In 1989 Melanie ____ & Don Johnson remarry
+Griffith
+10
+
+In 1989 michael bolton won a grammy with this song that asked a question?
+How
+10
+
+In 1989 NASA confirmed ____ 's discovery of 3 more moons of Neptune designated temporarily 1989 N2, 1989 N3 and 1989 N24
+Voyager 2
+10
+
+In 1989 NASA confirmed Voyager 2's discovery of 3 more moons of ____ designated temporarily 1989 N2, 1989 N3 and 1989 N24
+Neptune
+10
+
+In 1989 NASA confirmed Voyager 2's discovery of 3 more moons of Neptune designated temporarily 1989 N2, 1989 ____ and 1989 N24
+N3
+10
+
+In 1989 NASA confirmed Voyager 2's discovery of 3 more moons of Neptune designated temporarily 1989 N2, 1989 N3 and 1989____
+N24
+10
+
+In 1989 NASA confirmed Voyager 2's discovery of 3 more moons of Neptune designated temporarily 1989____ , 1989 N3 and 1989 N24
+N2
+10
+
+In 1989 Nelson ____ recieves a BA from University of South Africa
+Mandela
+10
+
+In 1989 Oil tanker ____ runs aground in Alaska's Prince William Sound ____ causes world's worst oil spill
+Exxon valdez
+10
+
+In 1989 Republic Day in ____ Leone
+Sierra
+10
+
+In 1989 Ronald ____ is knighted by Queen Elizabeth
+Reagan
+10
+
+In 1989 Ruins of ____ (occupied 2050-1720 BC) found in Iraq
+Mashkan-shapir
+10
+
+In 1989 Salvador____ , Spanish surrealist painter, dies in Spain at 84
+Dali
+10
+
+In 1989 San Francisco is hit by an ____ (Richter 6.9) at 5:05 p.m. Over 1/2 mile of the upper deck of the Nimitz freeway collapses crushing hundreds of cars. When it was over, 62 people had died and $6 billion in damage had occured
+Earthquake
+10
+
+In 1989 San Francisco is hit by an earthquake (Richter 6.9) at 5:05 p.m. Over 1/2 mile of the upper deck of the ____ freeway collapses crushing hundreds of cars. When it was over, 62 people had died and $6 billion in damage had occured
+Nimitz
+10
+
+In 1989 San Francisco is hit by an earthquake (Richter 6.9) at 5:05 p.m. Over 1/2 mile of the upper deck of the Nimitz freeway collapses crushing hundreds of cars. When it was over, ____ people had died and $6 billion in damage had occured
+62
+10
+
+In 1989 San Francisco is hit by an earthquake (Richter 6.9) at 5:05 p.m. Over 1/2 mile of the upper deck of the Nimitz freeway collapses crushing hundreds of cars. When it was over, 62 people had died and ____ in damage had occured
+$6 billion
+10
+
+In 1989 San Francisco is hit by an earthquake (Richter____ ) at 5:05 p.m. Over 1/2 mile of the upper deck of the Nimitz freeway collapses crushing hundreds of cars. When it was over, 62 people had died and $6 billion in damage had occured
+6.9
+10
+
+In 1989 Sir Laurence ____ acting great, dies at 82
+Olivier
+10
+
+In 1989 Sir Laurence Olivier acting great, dies at____
+82
+10
+
+In 1989 Solidarity grants ____ status in Poland
+Legal
+10
+
+In 1989 United Airlines 747 jet rips open in flight from ____ to New Zealand, 9 passengers sucked out of plane, many injuries
+Honolulu
+10
+
+In 1989 USSR announces plan for 2-yr manned mission to?
+Mars
+10
+
+In 1989 USSR Pres Mikhail S ____ meets Pope John Paul II at the Vatican
+Gorbachev
+10
+
+In 1989 USSR's ____ enters Martian orbit
+Phobos ii
+10
+
+In 1989 Voyager 2 makes its closest approach to ____ (0400 GMT)
+Neptune
+10
+
+In 1989, 95 liverpool supporters were crushed to death and over 200 injured after a security fence collapsed. what was the name of the stadium?
+Hillsborough stadium
+10
+
+In 1989, denzel Washington won an oscar for best supporting actor for which film?
+Glory
+10
+
+In 1989,who won an oscar for best supporting actor for the film 'glory'?
+Denzel Washington
+10
+
+In 1990 ____ 's parliment votes 138-0 (1 abstention) for dependence
+Latvia
+10
+
+In 1990 ____ accepts Bush's offer for talks
+Iraq
+10
+
+In 1990 ____ agrees to resume dimplomatic ties with Iraq
+Iran
+10
+
+In 1990 ____ and Gorbachev meet in Helsinki and urge Iraq to leave Kuwait
+Bush
+10
+
+In 1990 ____ and Saudi Arabia restore diplomatic ties
+Soviet union
+10
+
+In 1990 ____ announce it will send 4,000 troops to the Persian Gulf
+France
+10
+
+In 1990 ____ Cafe opens in Las Vegas Nevada
+Hard rock
+10
+
+In 1990 ____ community proposes a boycott of Iraq
+European
+10
+
+In 1990 ____ die in Iranian Earthquake
+25,000
+10
+
+In 1990 ____ Gabor begins a 3 day jail sentence for slapping a cop
+Zsa zsa
+10
+
+In 1990 ____ Gaye gets a star on Hollywood's walk of fame
+Marvin
+10
+
+In 1990 ____ jury acquits art gallery of obsentity (Mappelthorpe photos)
+Cincinnati
+10
+
+In 1990 ____ Kanyon Doe president of Liberia, assassinated
+Samuel
+10
+
+In 1990 ____ pulls out of talks with Kuwait
+Iraq
+10
+
+In 1990 ____ threatens to hit Israel with a new missile
+Saddam
+10
+
+In 1990 ____ year old Pete Sampras beats Andre Agassi to win the US Open
+Nineteen
+10
+
+In 1990 19 year old ____ Sampras beats Andre Agassi to win the US Open
+Pete
+10
+
+In 1990 19 year old Pete ____ beats Andre Agassi to win the US Open
+Sampras
+10
+
+In 1990 19 year old Pete Sampras beats ____ Agassi to win the US Open
+Andre
+10
+
+In 1990 19 year old Pete Sampras beats Andre ____ to win the US Open
+Agassi
+10
+
+In 1990 1st McDonalds in Russia opens in____ , world's biggest McDonalds
+Moscow
+10
+
+In 1990 1st parlimentary election in newly reunified____
+Germany
+10
+
+In 1990 25,000 die in ____ Earthquake
+Iranian
+10
+
+In 1990 3 members of 2 Live Crew acquitted on obsenity charges in____
+Florida
+10
+
+In 1990 Angela Bowie reveals that ex husband David slept with ____
+Mick jagger
+10
+
+In 1990 Antiwar protest marches begin in ____ US cities (US-Iraq)
+Twenty
+10
+
+In 1990 Bhadwan Shree Rajneesh, ____ guru, dies at 58
+Indian
+10
+
+In 1990 Boeing 767 sets nonstop commercial flight distance record, ____ , U.S.A. to Narobi, Kenya
+Seattle
+10
+
+In 1990 Boeing 767 sets nonstop commercial flight distance record, Seattle, U.S.A. to____ , Kenya
+Narobi
+10
+
+In 1990 Brian Mydland, keyboardist (Grateful Dead), dies at____
+38
+10
+
+In 1990 Brian____ , keyboardist (Grateful Dead), dies at 38
+Mydland
+10
+
+In 1990 British and ____ workers meet in English Channel's tunnel (Chunnel)
+French
+10
+
+In 1990 Bush and ____ meet in Helsinki and urge Iraq to leave Kuwait
+Gorbachev
+10
+
+In 1990 Bush and Gorbachev meet in ____ and urge Iraq to leave Kuwait
+Helsinki
+10
+
+In 1990 Bush and Gorbachev meet in Helsinki and urge ____ to leave Kuwait
+Iraq
+10
+
+In 1990 Bush and Gorbachev meet in Helsinki and urge Iraq to leave____
+Kuwait
+10
+
+In 1990 Cincinnati jury acquits art gallery of obsentity (____ photos)
+Mappelthorpe
+10
+
+In 1990 David ____ 3'11' actor (wizard), shoots himself at 38
+Rappaport
+10
+
+In 1990 Ellis Island Historical Site opens on____ , NYC
+Ellis island
+10
+
+In 1990 European community proposes a boycott of____
+Iraq
+10
+
+In 1990 France announce it will send ____ troops to the Persian Gulf
+4,000
+10
+
+In 1990 France announce it will send 4,000 troops to the ____ Gulf
+Persian
+10
+
+In 1990 German Democratic Republic accepts the Deutsche ____ as its currency
+Mark
+10
+
+In 1990 Gloria ____ released from the hospital after her accident
+Estefan
+10
+
+In 1990 Guitarist ____ Ray Vaughn dies in a helicopter accident
+Stevie
+10
+
+In 1990 Guitarist Stevie ____ Vaughn dies in a helicopter accident
+Ray
+10
+
+In 1990 Guitarist Stevie Ray ____ dies in a helicopter accident
+Vaughn
+10
+
+In 1990 Guitarist Stevie Ray Vaughn dies in a ____ accident
+Helicopter
+10
+
+In 1990 Hard Rock Cafe opens in ____ Nevada
+Las vegas
+10
+
+In 1990 Hard Rock Cafe opens in Las Vegas____
+Nevada
+10
+
+In 1990 Hubble space telescope is placed into orbit by shuttle?
+Discovery
+10
+
+In 1990 In Victoria, helmetless ____ riding becomes illegal
+Bike
+10
+
+In 1990 Iran agrees to resume dimplomatic ties with____
+Iraq
+10
+
+In 1990 Iraq declares Kuwait it's ____ province
+19th
+10
+
+In 1990 Iraq pulls out of talks with____
+Kuwait
+10
+
+In 1990 Iraqi Pres ____ Hussein urges Arabs to rise against the West
+Saddam
+10
+
+In 1990 Iraqi Pres Saddam ____ urges Arabs to rise against the West
+Hussein
+10
+
+In 1990 Iraqi troops surround US and other embassies in ____ City
+Kuwait
+10
+
+In 1990 Jazz drummer ____ Blakey dies
+Art
+10
+
+In 1990 Jazz drummer Art ____ dies
+Blakey
+10
+
+In 1990 John ____ becomes the 1st ever expelled from the Australian Open for throwing a tantrum & swearing at an official
+Mcenroe
+10
+
+In 1990 Lithauania, Estonia and ____ hold their 1st joint session
+Latvia
+10
+
+In 1990 Little ____ gets a star on Hollywood's walk of fame
+Richard
+10
+
+In 1990 Marvin ____ gets a star on Hollywood's walk of fame
+Gaye
+10
+
+In 1990 Paul Hogan & ____ wed in Byron Bay, Eastern Australia
+Linda koslowski
+10
+
+In 1990 President ____ announces DOUBLING of US forces in Gulf
+Bush
+10
+
+In 1990 Rocky ____ boxer, dies at 71, of heart failure
+Graziano
+10
+
+In 1990 Saddam Hussein declares America can't beat____
+Iraq
+10
+
+In 1990 Saddam says ____ will be Iraq's 1st target
+Israel
+10
+
+In 1990 Saddam threatens to hit ____ with a new missile
+Israel
+10
+
+In 1990 Samuel ____ Doe president of Liberia, assassinated
+Kanyon
+10
+
+In 1990 Samuel Kanyon ____ president of Liberia, assassinated
+Doe
+10
+
+In 1990 Samuel Kanyon Doe president of____ , assassinated
+Liberia
+10
+
+In 1990 Soviet Union and ____ restore diplomatic ties
+Saudi arabia
+10
+
+In 1990 The ____ space telescope is brought on-line. Unfortunately, its mirror is slightly warped
+Hubble
+10
+
+In 1990 The soapie General Hospital tapes its ____ th episode
+7,000
+10
+
+In 1990 US Ambassador tells____ , US won't take sides in Iraq-Kuwait dispute
+Iraq
+10
+
+In 1990 US's ____ spacecraft lands on Venus
+Magellan
+10
+
+In 1990 US's Magellan spacecraft lands on____
+Venus
+10
+
+In 1990 Zsa Zsa ____ begins a 3 day jail sentence for slapping a cop
+Gabor
+10
+
+In 1990 Zsa Zsa Gabor begins a ____ day jail sentence for slapping a cop
+Three
+10
+
+In 1990 Zsa Zsa Gabor begins a 3 day jail sentence for slapping a____
+Cop
+10
+
+In 1990, 'The Portrait of Dr. Gachet' by ____sold for $75 million?
+Van gogh
+10
+
+In 1990, the children's classic ____ was pulled from the optional reading lists for 5th- and 6th-graders in Clay County, Florida, because the book reportedly used objectionable language
+My friend flicka
+10
+
+In 1990, the life expectancy of the average American male was 72.7 years and 76.1 years for females. In 1900, the life expectancy was 46.6 for males and ____ for females
+48.7
+10
+
+In 1990, there were about ____ vacuum cleaner related accidents in the U.S
+15,000
+10
+
+In 1991 ____ Capra director (It's a Wonderful Life), dies at 94
+Frank
+10
+
+In 1991 ____ Davis jazz musician, dies at 65 from pneumonia
+Miles
+10
+
+In 1991 ____ declares independence from the USSR
+Ukraine
+10
+
+In 1991 ____ Indurain of Spain wins the Tour de France bicycle race
+Miguel
+10
+
+In 1991 ____ Lewis runs 100m in 9.86 seconds
+Carl
+10
+
+In 1991 ____ Montand actor (Lets Make Love, Z), dies at 70
+Yves
+10
+
+In 1991 ____ resigns as head of USSR Communist Party
+Gorbachev
+10
+
+In 1991 ____ Seles wins the US Open
+Monica
+10
+
+In 1991 ____ Taylor weds for the 8th time (Larry Fortensky)
+Elizabeth
+10
+
+In 1991 ____ votes on whether to remain in the Soviet Union
+Armenia
+10
+
+In 1991 Arthur____ , dance instructor, dies at 95
+Murray
+10
+
+In 1991 At approx. 1:00 am Baghdad local time, allied forces attacked, beginning ____ War
+Gulf
+10
+
+In 1991 Battle for ____ in Saudia Arabia (ends after 3 days)
+Khafj
+10
+
+In 1991 Battle for ____ in Saudia Arabia(begins)
+Khafji
+10
+
+In 1991 Battle of the Ages-Heavyweight champ ____ Hollyfield beats 42 year old George Foreman
+Evander
+10
+
+In 1991 Boris ____ elected president of Russian SSR
+Yeltsin
+10
+
+In 1991 California University makes the ____ public
+Dead sea scrolls
+10
+
+In 1991 Carl ____ runs 100m in 9.86 seconds
+Lewis
+10
+
+In 1991 Chicago ____ win their first NBA championship in a 4-1 series against the Los Angeles Lakers
+Bulls
+10
+
+In 1991 Chicago Bulls win their first NBA championship in a 4-1 series against the Los Angeles____
+Lakers
+10
+
+In 1991 Communist coup is crushed in USSR in ____ days
+Two
+10
+
+In 1991 Elizabeth ____ weds for the 8th time (Larry Fortensky)
+Taylor
+10
+
+In 1991 Elizabeth Taylor weds for the ____ time (Larry Fortensky)
+8th
+10
+
+In 1991 Elizabeth Taylor weds for the 8th time (____ Fortensky)
+Larry
+10
+
+In 1991 Elizabeth Taylor weds for the 8th time (Larry____ )
+Fortensky
+10
+
+In 1991 Frank ____ director (It's a Wonderful Life), dies at 94
+Capra
+10
+
+In 1991 Frank Capra director (____ ), dies at 94
+It's a wonderful life
+10
+
+In 1991 Frank Capra director (It's a Wonderful Life), dies at____
+94
+10
+
+In 1991 High-denomination banknotes ____ in USSR
+Withdrawn
+10
+
+In 1991 Inaugural ____ awareness day
+Aids
+10
+
+In 1991 Michael ____ actor (Bonanza, Highway to Heaven), dies at 54 from cancer
+Landon
+10
+
+In 1991 Michael Landon actor (____ , Highway to Heaven), dies at 54 from cancer
+Bonanza
+10
+
+In 1991 Michael Landon actor (Bonanza, Highway to Heaven), dies at ____ from cancer
+54
+10
+
+In 1991 Michael Landon actor (Bonanza, Highway to Heaven), dies at 54 from ____
+Cancer
+10
+
+In 1991 Michael Landon actor (Bonanza,____ ), dies at 54 from cancer
+Highway to heaven
+10
+
+In 1991 Miguel ____ of Spain wins the Tour de France bicycle race
+Indurain
+10
+
+In 1991 Miguel Indurain of ____ wins the Tour de France bicycle race
+Spain
+10
+
+In 1991 Mike Tyson is accused of raping a Miss ____ contestant
+Black America
+10
+
+In 1991 Mikhail ____ resigns as head of the Soviet Union
+Gorbachev
+10
+
+In 1991 Miles ____ jazz musician, dies at 65 from pneumonia
+Davis
+10
+
+In 1991 Miles Davis jazz musician, dies at ____ from pneumonia
+65
+10
+
+In 1991 Miles Davis jazz musician, dies at 65 from____
+Pneumonia
+10
+
+In 1991 Monica ____ wins the US Open
+Seles
+10
+
+In 1991 Nelson Mandela meets Chief ____ in Durban
+Buthelezi
+10
+
+In 1991 Operation ____ begins. US & 27 allies attack Iraq for occupying Kuwait (US times)
+Desert storm
+10
+
+In 1991 Pres ____ is hospitalized for erratic heartbeat
+Bush
+10
+
+In 1991 Rajiv ____ Indian Prime Minster, assassinated
+Gandhi
+10
+
+In 1991 Space Shuttle ____ (Atlantis 8) launched
+Sts 37
+10
+
+In 1991 Total ____ eclipse is seen in Hawaii
+Solar
+10
+
+In 1991 Total solar eclipse is seen in____
+Hawaii
+10
+
+In 1991 U.S. Congress backs war in?
+Gulf
+10
+
+In 1991 Ukranian people vote for____
+Independence
+10
+
+In 1991 UN Secretary General Javier Perez de Cuellar meets with ____ in Baghdad
+Saddam hussein
+10
+
+In 1991 UN Security Council issues formal cease fire with ____ declaration
+Iraq
+10
+
+In 1991 UN's deadline for ____ to withdraw from Kuwait passes - (they don't)
+Iraq
+10
+
+In 1991 US begins air drops to ____ refugees in Northern Iraq
+Kurdish
+10
+
+In 1991 US trial of former ____ leader Manuel Noriega begins
+Panamanian
+10
+
+In 1991 US trial of former Panamanian leader ____ Noriega begins
+Manuel
+10
+
+In 1991 US trial of former Panamanian leader Manuel ____ begins
+Noriega
+10
+
+In 1991 Yves ____ actor (Lets Make Love, Z), dies at 70
+Montand
+10
+
+In 1991 Yves ____ actor, dies at 70 from a heart attack
+Montand
+10
+
+In 1991 Yves Montand actor (Lets Make Love, Z), dies at____
+70
+10
+
+In 1991, anthony hopkins won an oscar for best actor for his role in which film?
+Silence of the lambs
+10
+
+In 1991, which group 'rolled the bones'?
+Rush
+10
+
+In 1991, who won the best actor oscar for his role in 'silence of the lambs'?
+Anthony hopkins
+10
+
+In 1992 ____ Olympic Summer games opens in Barcelona, Spain
+25th
+10
+
+In 1992 25th Olympic Summer games opens in____ , Spain
+Barcelona
+10
+
+In 1992 Bill ____ elected US President
+Clinton
+10
+
+In 1992 EC recognises ____ and Croatian independence
+Slovenian
+10
+
+In 1992,which group combined hip hop with blues sensibility on 'three years five months & two days in the life of...'?
+Arrested development
+10
+
+In 1993 Audrey ____ actress (Breakfast at Tiffany's), dies at 63 of colon cancer in Tolochenaz, Switzerland
+Hepburn
+10
+
+In 1993 Galileo passes within 600 miles of asteroid____
+Ida
+10
+
+In 1993 President Bush and ____ sign historic nuclear arms reduction treaty
+President yeltsin
+10
+
+In 1993 red blood cells were found in the fossilized bone of which type of dinosaur?
+Tyrannosaurus Rex
+10
+
+In 1993 World Trade Centre bombing. ____ terrorists detonate a bomb in the World Trade Centre. 168 people killed in the first terrorist attack on United States soil
+Islamic
+10
+
+In 1993, there were ____murders in the US?
+23,200
+10
+
+In 1993, which was the second best fastfood chain in the u.s by revenue?
+Kentucky fried chicken
+10
+
+In 1993, which was the top fastfood chain in the u.s by revenue?
+Mcdonalds
+10
+
+In 1994 ____ in California
+Earthquake
+10
+
+In 1994 Frank____ , Australian actor (El Cid, Ben-Hur), dies at 68
+Thring
+10
+
+In 1994 Shane ____ takes a hat-trick v England at cricket MCG
+Warne
+10
+
+In 1994 who was sworn in as the first black president of south africa?
+Nelson mandela
+10
+
+In 1994, a total of 81.5 percent of Canadian households owned a ____
+Microwave oven
+10
+
+In 1995 ____ in Kobe
+Earthquake
+10
+
+In 1995 Barings Bank disaster. Nick ____ loses billions of Pounds Sterling in offshore investments, ruining Barings Bank
+Leeson
+10
+
+In 1995 OJ ____ acquitted for double murder of his Ex-wife Nicole Brown Simpson and Ronald Goldman
+Simpson
+10
+
+In 1995 OJ Simpson acquitted for double murder of his Ex-wife ____ and Ronald Goldman
+Nicole brown simpson
+10
+
+In 1995 OJ Simpson acquitted for double murder of his Ex-wife Nicole Brown Simpson and____
+Ronald goldman
+10
+
+In 1995 what nation restarted its nuclear weapon testing programme?
+France
+10
+
+In 1995 what were the men of Pilsen asked to donate in exchange for half a litre of the city's best know brew?
+Blood
+10
+
+In 1995, Michael Schumacher became formula I world champion for which team?
+Benetton
+10
+
+In 1995, the average U.S. public school contained ____ computers
+72
+10
+
+In 1996 ____ Olympic Summer games closes in Atlanta, Georgia
+26th
+10
+
+In 1996 ____ Olympic Summer games opens in Atlanta, Georgia
+26th
+10
+
+In 1996 26th Olympic Summer games closes in____ , Georgia
+Atlanta
+10
+
+In 1996 26th Olympic Summer games opens in____ , Georgia
+Atlanta
+10
+
+In 1996 Nathan ____ (aka George Burns), entertainer, actor, dies at 100 years old
+Birnbaum
+10
+
+In 1996, Americans bought only 12 inches of ____ per capita
+Dental floss
+10
+
+In 1996, Jonathon Taylor Thomas played who?
+Pinnochio
+10
+
+In 1997 ____ regains sovereignty of Hong Kong
+China
+10
+
+In 1997 British lease on New Territories in ____ expires
+Hong kong
+10
+
+In 1997, serial killer andrew cunanan murdered what famous clothing designer?
+Versace
+10
+
+In 1997, this star of private benjamin made her directorial debut with the tv movie hope?
+Goldie hawn
+10
+
+In 1997, which sportsman described his ethnic background as Cablinasian?
+Tiger woods
+10
+
+In 1997, worldwide sales of fragrance topped $____, more than $6 billion in the United States alone
+Fifteen billion
+10
+
+In 1998, Andrew Flintoff scored 34 runs from an over bowled by which Surrey bowler?
+Alex tudor
+10
+
+in 1998, coca-cola sold more than 683 million?
+Drinks per day
+10
+
+In 1999 ____ again becomes the outermost planet
+Pluto
+10
+
+In 1999 Control of ____ Canal reverts to Panama
+Panama
+10
+
+In 1999, France chose a new model for Marianne, who was she?
+Laetitia casta
+10
+
+In 1999, who or what was Melissa?
+Computer virus
+10
+
+In 2000 conjunction of Sun, Mercury, ____ , Mars, Jupiter, Saturn & Moon
+Venus
+10
+
+In 2000, which author released his novel 'The Plant' on the internet?
+Stephen King
+10
+
+In 2001 how mnay films were given certificates by the British board of film classification?
+505
+10
+
+In 2004 Transit of ____ (between Earth & Sun) occurs
+Venus
+10
+
+In 2012 Transit of ____ (between Earth and Sun) will occur
+Venus
+10
+
+In 2061 ____ recorded perihelion passage of Halley's Comet
+31st
+10
+
+In 2160 Montgomery Edward Scott Aberdeen, Scotland (Star Trek's____ ), born in
+Scotty
+10
+
+In 2160 Montgomery Edward____ , Aberdeen, Scotland (Star Trek's Scotty), born in
+Scott
+10
+
+In 2161____: 8 of 9 planets aligned on same side of sun
+Syzygy
+10
+
+In 217 ____ [Marcus Aureiius Antoniius], Roman emperor, dies
+Caracalla
+10
+
+In 218 7th recorded ____ passage of Halley's Comet
+Perihelion
+10
+
+In 230 St ____ begins his reign as Catholic Pope
+Pontianus
+10
+
+In 2348 B.C. Noah's ark grounded, Mt ____ (calculated date)
+Ararat
+10
+
+In 254 St ____ begins his reign as Catholic Pope
+Stephen i
+10
+
+In 295 8th recorded ____ passage of Halley's Comet
+Perihelion
+10
+
+In 30 BC ____ and most famous queen of Egypt, commits suicide
+Cleopatra 7th
+10
+
+In 30 Scholars' calculate this as the date that Jesus of Nazareth was crucified by ____ troops in Jerusalem
+Roman
+10
+
+In 31 BC Battle of Actium; ____ defeats Mark Antony and becomes Emperor Augustus
+Octavian
+10
+
+In 31 BC Battle of Actium; Octavian defeats ____ and becomes Emperor Augustus
+Mark antony
+10
+
+In 31 BC Battle of Actium; Octavian defeats Mark Antony and becomes Emperor____
+Augustus
+10
+
+In 31 BC Battle of____ ; Octavian defeats Mark Antony and becomes Emperor Augustus
+Actium
+10
+
+In 317____ , Roman emperor (337-61), born in
+Constantius ii
+10
+
+In 322 BC ____ dies of indigestion
+Aristotle
+10
+
+In 322 BC Aristotle dies of ____
+Indigestion
+10
+
+In 323 B.C. ____ the Great dies of fever at Babylon
+Alexander
+10
+
+In 323 B.C. Alexander the Great dies of ____ at Babylon
+Fever
+10
+
+In 323 B.C. Alexander the Great dies of fever at ____
+Babylon
+10
+
+In 330 ____ (later Istanbul) founded
+Constantinople
+10
+
+In 331 BC ____ of Macedon defeats Persian army at Gaugamela
+Alexander
+10
+
+In 331 BC Alexander of ____ defeats Persian army at Gaugamela
+Macedon
+10
+
+In 331 BC Alexander of Macedon defeats ____ army at Gaugamela
+Persian
+10
+
+In 331 BC Alexander of Macedon defeats Persian army at____
+Gaugamela
+10
+
+In 352 ____ begins his reign as Catholic Pope
+Liberius
+10
+
+In 40 Gnaeus Julius ____ Roman general; conquered Wales and Northern England, born in
+Agricola
+10
+
+In 40 Gnaeus Julius Agricola ____ general; conquered Wales and Northern England, born in
+Roman
+10
+
+In 40 Gnaeus Julius Agricola Roman general; conquered ____ and Northern England, born in
+Wales
+10
+
+In 40 Gnaeus Julius Agricola Roman general; conquered Wales and Northern____ , born in
+England
+10
+
+In 410 ____ overrun by Visigoths, symbolized fall of Western Roman Empire
+Rome
+10
+
+In 410 ____ sacks Rome
+Alaric
+10
+
+In 410 Alaric sacks____
+Rome
+10
+
+In 410 Rome overrun by____ , symbolized fall of Western Roman Empire
+Visigoths
+10
+
+In 419 ____ Roman emperor (425-55), born in
+Valentinian iii
+10
+
+In 427 B.C. ____ (Aristocles), philosopher/writer, Athens, born in
+Plato
+10
+
+In 432 St ____ ends his reign as Catholic Pope
+Celestine i
+10
+
+In 43BC The Roman politician, ____ , is slain
+Cicero
+10
+
+In 44 B.C. Julius ____ slain
+Caesar
+10
+
+In 452 ____ invaded by Attila the Hun
+Italy
+10
+
+In 452 Italy invaded by ____ the Hun
+Attila
+10
+
+In 452 Italy invaded by Attila the____
+Hun
+10
+
+In 472 ____ Ricimer general of the Western Roman Empire, kingmaker, born in
+Flavius
+10
+
+In 472 Flavius ____ general of the Western Roman Empire, kingmaker, born in
+Ricimer
+10
+
+In 472 Flavius Ricimer general of the Western ____ Empire, kingmaker, born in
+Roman
+10
+
+In 476 ____ Augustulus, last Roman emperor in west, is deposed
+Romulus
+10
+
+In 476 Romulus Augustulus, last ____ emperor in west, is deposed
+Roman
+10
+
+In 476 Romulus____ , last Roman emperor in west, is deposed
+Augustulus
+10
+
+In 480 B.C. ____ defeats Spartan king Leonidas at Thermopylae
+Persia
+10
+
+In 480 B.C. Persia defeats ____ king Leonidas at Thermopylae
+Spartan
+10
+
+In 480 B.C. Persia defeats Spartan king ____ at Thermopylae
+Leonidas
+10
+
+In 480 B.C. Persia defeats Spartan king Leonidas at____
+Thermopylae
+10
+
+In 484 BC Euripides, ancient ____ playwright (Trojan Women) (or 480 BC), born in
+Greek
+10
+
+In 484 BC____ , ancient Greek playwright (Trojan Women) (or 480 BC), born in
+Euripides
+10
+
+In 490 B.C. ____ defeat second Persian invasion of Greece at Marathon
+Athenians
+10
+
+In 490 B.C. Athenians defeat second ____ invasion of Greece at Marathon
+Persian
+10
+
+In 490 B.C. Athenians defeat second Persian invasion of ____ at Marathon
+Greece
+10
+
+In 490 B.C. Athenians defeat second Persian invasion of Greece at____
+Marathon
+10
+
+In 490 BC ____ runs first marathon, to announce the victory of Sparta over Persia
+Phidippides
+10
+
+In 490 BC Phidippides runs first marathon, to announce the victory of ____ over Persia
+Sparta
+10
+
+In 490 BC Phidippides runs first marathon, to announce the victory of Sparta over____
+Persia
+10
+
+In 4977 -BC- Johannes Kepler's date for creation of?
+Universe
+10
+
+In 514 St ____ begins his reign as Catholic Pope
+Hormisdas
+10
+
+In 523 St ____ begins his reign as Catholic Pope
+John i
+10
+
+In 526 Earthquake kills ____ in Antioch, Syria
+250,000
+10
+
+In 526 St ____ ends his reign as Catholic Pope
+John i
+10
+
+In 53 Trajan, ____ Roman emperor (98-117), conqueror of Ctesiphon, born in
+13th
+10
+
+In 53 Trajan, 13th Roman emperor (98-117), conqueror of____ , born in
+Ctesiphon
+10
+
+In 53____ , 13th Roman emperor (98-117), conqueror of Ctesiphon, born in
+Trajan
+10
+
+In 535 St ____ I begins his reign as Catholic Pope
+Agapitus
+10
+
+In 536 St ____ begins his reign as Catholic Pope
+Silverius
+10
+
+In 539 BC ____ falls to Cyrus the Great of Persia
+Babylon
+10
+
+In 539 BC Babylon falls to ____ the Great of Persia
+Cyrus
+10
+
+In 54 ____ Roman Emperor, dies
+Claudius
+10
+
+In 548 (Israel) This was the last year the ____ observed the birth of Jesus on this date. (Celebrating Christmas on December 25th began in the late 300s in the Western Church.)
+Church in jerusalem
+10
+
+In 55 B.C. ____ forces under Julius Caesar invaded Britain
+Roman
+10
+
+In 551 B.C. ____ (as celebrated in Taiwan), born in
+Confucius
+10
+
+In 553 2nd Council of ____ (5th ecumenical council) opens
+Constantinople
+10
+
+In 563 B.C. Gautama ____ (as celebrated in Japan-Kambutsue), born in
+Buddha
+10
+
+In 570 Religion of ____ (submission) founded in Mecca
+Islam
+10
+
+In 570 Religion of Islam (submission) founded in____
+Mecca
+10
+
+In 574 ____ ends his reign as Catholic Pope
+John iii
+10
+
+In 585 B.C. 1st known prediction of a____
+Solar eclipse
+10
+
+In 590 St ____ begins his reign as Catholic Pope
+Gregory i
+10
+
+In 625 B.C., metal coins were introduced in ____. They replaced grain - usually barley - as the medium of exchange. Stamped with a likeness of an ear of wheat, the new coins were lighter and easier to transport than grain, and did not get moldy
+Greece
+10
+
+In 63 BC ____ (Augustus Caesar), first Roman emperor, born in
+Octavian
+10
+
+In 63 BC Octavian (____ Caesar), first Roman emperor, born in
+Augustus
+10
+
+In 63 BC Octavian (Augustus____ ), first Roman emperor, born in
+Caesar
+10
+
+In 632 ____ prophet of Islam (Koran), dies (according to tradition)
+Mohammed
+10
+
+In 632 Mohammed prophet of ____ (Koran), dies (according to tradition)
+Islam
+10
+
+In 638 Start of ____ calendar
+Islamic
+10
+
+In 64 The Great Fire of ____ begins (Nero didn't fiddle)
+Rome
+10
+
+In 65 A.D., which Roman emperor forced his former tutor, Seneca the Younger, to commit suicide?
+Nero
+10
+
+In 654 St ____ begins his reign as Catholic Pope
+Eugene i
+10
+
+In 672 ____ begins his reign as Catholic Pope
+Deusdedit iii
+10
+
+In 678 ____ ends his reign as Catholic Pope
+Donus
+10
+
+In 68____ , Roman Emperor commits suicide
+Nero
+10
+
+In 680 ____ ibn 'Ali, Shi'i religious leader, enters martyrdom
+Husain
+10
+
+In 682 St ____ begins his reign as Catholic Pope
+Leo ii
+10
+
+In 683 St ____ ends his reign as Catholic Pope
+Leo ii
+10
+
+In 69 Galba, Roman emperor, killed by ____ guard in the Forum, Rome
+Praetorian
+10
+
+In 69 Traditional date of the destruction of____
+Jerusalem
+10
+
+In 70 BC ____ (Publius Vergilius Maro) (Mantua, Italy), poet (Aeneid), born in
+Virgil
+10
+
+In 70 BC Virgil (____ Vergilius Maro) (Mantua, Italy), poet (Aeneid), born in
+Publius
+10
+
+In 70 BC Virgil (Publius ____ Maro) (Mantua, Italy), poet (Aeneid), born in
+Vergilius
+10
+
+In 70 BC Virgil (Publius Vergilius____ ) (Mantua, Italy), poet (Aeneid), born in
+Maro
+10
+
+In 701 St ____ ends his reign as Catholic Pope
+Sergius i
+10
+
+In 715 St ____ begins his reign as Catholic Pope
+Gregory ii
+10
+
+In 742____ , emperor (Holy Roman Empire), born in
+Charlemagne
+10
+
+In 753 -BC- Traditional date of the foundation of ____
+Rome
+10
+
+In 757 Stephen ____ ends his reign as Catholic Pope
+Ii
+10
+
+In 760 14th recorded ____ passage of Halley's Comet
+Perihelion
+10
+
+In 763 B.C. ____ record total solar eclipse event on clay tablet
+Assyrians
+10
+
+In 79 Mt ____ erupts, buries Pompeii and Herculaneum
+Vesuvius
+10
+
+In 79 Mt Vesuvius erupts, buries ____ and Herculaneum
+Pompeii
+10
+
+In 79 Mt Vesuvius erupts, buries Pompeii and____
+Herculaneum
+10
+
+In 800 (Gaul) Charlmange crowned ____
+Emperor
+10
+
+In 814 Charlemagne ____ emperor, dies at 71
+German
+10
+
+In 816 Stephen ____ begins his reign as Catholic Pope
+Iv
+10
+
+In 823 ____ (the Bald) king of France (843-77), emperor (875-77), born in
+Charles ii
+10
+
+In 823 Charles II (the Bald) king of ____ (843-77), emperor (875-77), born in
+France
+10
+
+In 867 St ____ I (the Great), pope (858-67) dies
+Nicholas
+10
+
+In 879 ____ [The Simple], king of France (893-923), born in
+Charles iii
+10
+
+In 879 Charles III [The Simple], king of ____ (893-923), born in
+France
+10
+
+In 884 St ____ begins his reign as Catholic Pope
+Adrian iii
+10
+
+In 896 ____ ends his reign as Catholic Pope
+Formosus
+10
+
+In 8F12 (Lisa The Greek), why does Lisa favour the L.A. Raiders?
+Because they cheat
+10
+
+In 901 King ____ the Great, dies
+Alfred
+10
+
+In 982 Eric the red discovered ____
+Greenland
+10
+
+In a 1999 poll, Boston, scoring 40.6 percent, was ranked the top U.S. city with the most interesting ____
+Historical architecture
+10
+
+In a bar in which European country might you be served 'tapas'?
+Spain
+10
+
+In a building what is a 'paternoster'?
+Lift
+10
+
+In a business letter what does 'inst' mean?
+This month
+10
+
+In a church what is a galilee?
+Porch
+10
+
+In a deck of 52 cards, how many 'jacks' eyes can be seen?
+Twelve
+10
+
+In a drama, act i is also called the ____
+Introduction
+10
+
+In a drama, act iii is also called the ____
+Climax
+10
+
+In a famous opera, siegfried understood the speech of birds after tasting ____
+Dragon's blood
+10
+
+In a famous opera, what did siegfried understand after tasting dragon's blood?
+Bird's speech
+10
+
+In a famous opera, who understood the speech of birds after tasting dragon's blood?
+Siegfried
+10
+
+In a game of chess, how many opening moves are possible by each player?
+Twenty
+10
+
+In a game of horseshoes, how many feet apart must the stakes be?
+Forty feet
+10
+
+In a general sense, one who pleads for another in a court of law or other tribunal?
+Advocate
+10
+
+In a Gilbert and Sullivan opera, who was John Wellington Wells?
+Sorcerer
+10
+
+In a hospital, what would the o & g department be?
+Obstetrics and gynaecology
+10
+
+In a landslide victory, he is elected mayor of palm springs, California?
+Sonny bono
+10
+
+In a lifetime the average U S resident drinks more than how many gallons of liquid?
+13,000
+10
+
+In a lifetime, we replace our skin approximately ____ times
+1000
+10
+
+In a medieval motte and bailey castle,what was the motte?
+A mound
+10
+
+In a nursery rhyme where would you go to see a ?fine lady on a fine horse'?
+Banbury cross
+10
+
+In a perfect Brilliant stone, how many facets are there?
+Fifty eight
+10
+
+In a period of 400 years how many times does the 1st of January fall on a Sunday?
+-- Answer metadata begin
+{
+    "answers": ["58", "fifty eight"]
+}
+-- Answer metadata end
+10
+
+In a play, what kind of speech reveals a character's innermost thoughts to the audience?
+Soliloquy
+10
+
+In a political statement, James gave all rights to Sit Down to which political organisation?
+The labour party
+10
+
+In a recent survey, Americans revealed that this was their favorite smell?
+Banana
+10
+
+In a Rugby League team which player wears the number nine shirt?
+The hooker
+10
+
+In a standard 3 pin plug, 2 of the pins are connected to live ans neutral, to what is the third connectd?
+Earth
+10
+
+In a standard game of cricket, what is the maximum number of people that can be on the field of play at any one time during play?
+Seventeen
+10
+
+In a suit of armour which part of the body is protected by a greave?
+Lower leg
+10
+
+In a suit of armour which part of the body is protected by a sabaton?
+The foot
+10
+
+In a survey conducted by a women's magazine, 70 percent of female respondents said they would rather have ____ than sex, according to the Chocolate Manufacturers Association
+Chocolate
+10
+
+In a uniform gravitational field, the center of gravity is also a____
+Centre of mass
+10
+
+In academia where would one find a scholium?
+Annotation
+10
+
+In addition to the cue ball, how many balls are used in a snooker game?
+Twenty one
+10
+
+In Alaska it is illegal to shoot at a ____ from the window of an aeroplane or other flying vehicle
+Moose
+10
+
+In alphabet radio code, what word is used for 'x'?
+X ray
+10
+
+In alphabetical order, name the wilson brothers of the beach boys?
+Brian, carl, dennis
+10
+
+In America during prohibition, what name was given to an illegal drinking bar?
+Speakeasy
+10
+
+In America they are called Mutual Funds how are they known here?
+Unit trusts
+10
+
+In America what does a realtor do?
+An estate agent
+10
+
+In American universities, what is a second-year student called?
+Sophomore
+10
+
+In an alphabetical list of countries in the world, what middle eastern country comes between Portugal and romania?
+Qatar
+10
+
+In an atom, the electron weighs ____ th of the weight of the proton
+1/2000
+10
+
+In an average lifetime, the average aAerican drives 55,372 miles on?
+Shopping trips
+10
+
+In an average lifetime, the average American ____ 410078 times
+Laughs
+10
+
+In an average lifetime, the average American attends 4 ____
+Professional hockey games
+10
+
+In an average lifetime, the average American buys 420 ____
+Paperback books
+10
+
+In an average lifetime, the average American charges $120,875 on ____
+Credit cards
+10
+
+In an average lifetime, the average American charges on ____
+Credit cards
+10
+
+In an average lifetime, the average American consumes 10,231 gallons of ____
+Beverages
+10
+
+In an average lifetime, the average American drives 55,372 miles on ____
+Shopping trips
+10
+
+In an average lifetime, the average American eats 135 pound of ____
+American cheese
+10
+
+In an average lifetime, the average American eats 8,389 ____
+Hamburgers
+10
+
+In an average lifetime, the average American eats 84,775 ____
+Crackers
+10
+
+In an average lifetime, the average American gives flowers 136 times on ____
+Mother's day
+10
+
+In an average lifetime, the average American is counted in 7 ____
+Censuses
+10
+
+In an average lifetime, the average American sees 345 movies in ____
+Theaters
+10
+
+In an average lifetime, the average American spends 30,787 dollars on ____
+Home improvements
+10
+
+In an average lifetime, the average American spends 35 dollars on ____
+Sleeping pills
+10
+
+In an average lifetime, the average American visits a ____ 22 times
+Pediatrician
+10
+
+In an average lifetime, the average American visits a ____ 5 times
+Psychiatrist
+10
+
+In an average lifetime, the average American wears 7,500 ____
+Diapers
+10
+
+In an isosceles triangle, if the two equal angles are 35 degrees, what is the third angle?
+110 degrees
+10
+
+In anatomy, organ that stores urine after its formation by the kidneys?
+Bladder
+10
+
+In ancient ____, it was considered a sign of leadership to be born with a crooked nose
+Rome
+10
+
+In ancient ____, it was considered a sin to eat the flesh of a woodpecker
+Rome
+10
+
+In ancient ____, people committed suicide by eating a pound of salt
+China
+10
+
+In ancient ____, the crimes for abduction, armed robbery, treason, and adultery were punished by castration
+China
+10
+
+In ancient ____, towns were often arranged in patterns so that if seen from the air, the whole community would resemble an animal or a symbolic design. Some were arranged to resemble snakes, stars, sunbursts, and dragons
+China
+10
+
+In ancient Egypt, killing a ____ was a crime punishable by death
+Cat
+10
+
+In ancient Egypt, Priests ____ EVERY hair from their bodies, including their eyebrows and eyelashes
+Plucked
+10
+
+In ancient Egypt, the ____ was called the egg of the sun
+Apricot
+10
+
+In ancient egypt, the brain was extracted through the nasal passages during what process?
+Mummification
+10
+
+In ancient egypt, they paid their taxes in____
+Honey
+10
+
+In ancient eygpt the ploughs were first pulled by what?
+People
+10
+
+In ancient greece, what was a myriad?
+Groups of numbers over 10,000
+10
+
+In ancient mythology, what was a lamia?
+Female demon
+10
+
+In Ancient Peru, when a woman found an 'ugly' ____, it was the custom for her to push it into the face of the nearest man
+Potato
+10
+
+In ancient Rome what was a denarius?
+Coin
+10
+
+In ancient Rome, auburn-haired puppies were sacrificed to ensure a plentiful ____ crop
+Corn
+10
+
+In ancient rome, it was a sin to eat the flesh of what kind of bird?
+Woodpecker
+10
+
+In ancient rome, it was considered a sign of leadership to be born with a crooked____
+Nose
+10
+
+In ancient Rome, what physical characteristic was considered to be a sign of leadership?
+A crooked nose
+10
+
+In ancient time Bolotia was a region of which country?
+Greece
+10
+
+In ancient times, the traditional color of bridal gowns was ____. The wife of Napoleon III broke the tradition and wore a white gown. Then, brides began wearing white gowns (that were worn only once) as a symbol of their wealth
+Red
+10
+
+In ancient____ , killing a cat was a crime punishable by death
+Egypt
+10
+
+In animal house, what was bluto's grade point average?
+0.0
+10
+
+In any group of 23 people, there's a 50% chance that two of them share the same?
+Birthday
+10
+
+In approximately what year was steel first made?
+Five hundred bc
+10
+
+In arab countries, coffee there is flavoured with this spice?
+Cardamom
+10
+
+In arabian mythology, what is the spirit of a murdered man seeking to avenge his death?
+Afrit
+10
+
+In area, which is the largest Australian state?
+Western Australia
+10
+
+In area, which is the largest country in Africa?
+Sudan
+10
+
+In area, which is the second largest country of South America?
+Argentina
+10
+
+In Aregentinas currency how many australes are there in a peso?
+10,000
+10
+
+In around what year was joan of arc born?
+1412
+10
+
+In art, a form of watercolor that uses opaque pigments rather than the usual transparent watercolor pigments?
+Gouache
+10
+
+In art, what is impasto?
+Laying paint on thickly
+10
+
+In art, what name is given to a quick sketch for a larger painting?
+Cartoon
+10
+
+In arthurian legend what did sir lancelot's adultery prevent him from doing?
+Finding the holy grail
+10
+
+In Arthurian legend what was Ron?
+Spear
+10
+
+in Arthurian legend who found the Holy Grail?
+Sir Galahad
+10
+
+In Arthurian legend who is the son of Sir Lancelot?
+Galahad
+10
+
+In Arthurian legend, who was the Lily Maid of Astolat?
+Elaine
+10
+
+In astrology, what planet governs love?
+Venus
+10
+
+In astronomy, the angle in degrees of a heavenly body above the horizon?
+Altitude
+10
+
+In astronomy, the apparent great-circle annual path of the sun in the celestial sphere, as seen from the earth?
+Ecliptic
+10
+
+In atwt...who did holden marry?
+Lily
+10
+
+In August 1945 atomic bombs were dropped on which two cities?
+Hiroshima and nagasaki
+10
+
+In Australia, Why Is It That The White Sheep Eat More Grass Than The Black Sheep...Clue: BTAMWS?
+Because There Are More White Sheep
+10
+
+In Australian slang what does a blue heeler refer to?
+A policeman
+10
+
+In badminton, how many points win a mens singles game?
+Fifteen
+10
+
+In badminton, how many points win a singles game?
+Fifteen points
+10
+
+In Bahrain, male doctors may only exanine what, using a mirror?
+A womans genitals
+10
+
+In Baltimore USA it is illegal to wash or scrub a ____ regardless of how dirty it is
+Sink
+10
+
+In Bart's dream about the U.S. founding fathers, who is writing his name in the snow?
+John Hancock
+10
+
+In baseball, how far do you have to run if you hit a home run?
+-- Answer metadata begin
+{
+    "answers": ["Three hundred and sixy feet", "360 feet"]
+}
+-- Answer metadata end
+10
+
+In baseball, what does the 'Hot Corner' refer to?
+Third base
+10
+
+In baseball, you have to run 360 feet if you hit a ____
+Home run
+10
+
+In batman and robin [the new movie] what is the name of the actor that plays batman?
+George clooney
+10
+
+In battle star galactica, what was the name of the human leader of the cylons?
+Baltar
+10
+
+In Beast Wars what is the name of the Maximal Ship?
+The Axalon
+10
+
+In Beatrix Potter's Tale of Tom Kitten, what was the name of his mother?
+Tabitha twitchett
+10
+
+In beverly hills cop, how does axel foley escape the police car that is sent to follow him?
+A banana in the tailpipe
+10
+
+In biology, fusion of the nuclear materials of two gametes resulting in the formation of a zygote, or embryo?
+Fertilization
+10
+
+In biology, the complex of processes by which living organisms originated on earth & have been diversified & modified through sustained changes in form & function?
+Evolution
+10
+
+In biology, what 'D' is the process by which food is broken down?
+Digestion
+10
+
+In blazing saddles, what is the last name of everybody in the town of rock ridge?
+Johnson
+10
+
+In Blue Grass music who is Flatt's partner?
+Scruggs
+10
+
+In bosom buddies, where did kip & Henry work?
+Advertising agency
+10
+
+In bowling, what is it if you knock down all the pins with one ball?
+Strike
+10
+
+In bowling, what is it if you knock down all the pins with two balls?
+Spare
+10
+
+In boxing, what is a blow to the back of the head?
+Rabbit punch
+10
+
+In boxing, which weight is between fly and feather?
+Bantamweight
+10
+
+In braille, which letter do three vertical dots represent?
+L
+10
+
+In Britain a suffragette threw herself under the kings horse in what year?
+1913
+10
+
+In britain hamburger meat is called?
+Mince
+10
+
+In Britain how many llbs are there in a hundredweight?
+112
+10
+
+In Britain Stanstead airport was formally opened in which year?
+1991
+10
+
+In Britain what is the background colour on road signs on Motorways?
+Blue
+10
+
+In Britain what year was the Forth Railway Bridge opened?
+1890
+10
+
+In Britain, this popular pastime is referred to as a 'boot sale'. What is it known as in North America?
+A Garage Sale
+10
+
+In British history which royal houses fought in the Wars of the Roses?
+Lancaster and york
+10
+
+In Canada what is the NHL?
+National Hockey League
+10
+
+In caracas, the capital city of venezuela, it is customary for the streets to be blocked off on what holiday so that the people can roller-skate to church?
+Christmas eve
+10
+
+In card games what name is given to the most important suit?
+Trumps
+10
+
+In cartography, the ratio of the distance between two points on a map & the actual distance between the two points on the earth's surface?
+Scale
+10
+
+In cb lingo, what does the number 10-20 mean?
+Location
+10
+
+In certain parts of ____ and ancient China, mouse meat was considered a delicacy
+India
+10
+
+In certain parts of India and ancient China, ____ meat was considered a delicacy
+Mouse
+10
+
+In certain parts of India and ancient____ , mouse meat was considered a delicacy
+China
+10
+
+In charity what is the muslim equivalent of the Red Cross?
+Red crescent
+10
+
+In checkers, what piece can move in any direction?
+King
+10
+
+In chemistry what is a pipette used for?
+Measuring liquids
+10
+
+In chemistry, analytical technique used for the chemical separation of mixtures & substances?
+Chromatography
+10
+
+In chemistry, law stating that many of the physical & chemical properties of the elements tend to recur in a systematic manner with increasing atomic number?
+Periodic law
+10
+
+In chess an obligation to move even when that move is disadvantageous?
+Zugzwang
+10
+
+In chess haow many moves does a king make in a castling manoevre?
+Two
+10
+
+In chess, what name is given to the only move involving two pieces?
+Castling
+10
+
+In children's books written by the Duchess of York who or what is Budgie?
+Helicopter
+10
+
+In children's literature what was the name that appeared over the door of 'Winnie the Pooh's house?
+Mr sanders
+10
+
+In china Lego is called?
+0937
+10
+
+In chinese mythology, who separated the sky from the earth?
+Pangu
+10
+
+In chinese theory whats the opposite if yin?
+Yang
+10
+
+In christian churches, the universal rite of initiation, performed with water?
+Baptism
+10
+
+In classical mythology how many heads did the hydra have?
+Nine
+10
+
+In classical mythology who was the muse of history?
+Clio
+10
+
+In clement clarke moore's poem, 'the night before christmas', which is the first (alhphabetically) of the reindeer?
+Blitzen
+10
+
+In Cleveland, Ohio it is illegal to catch ____ without a hunting license
+Mice
+10
+
+In comic literature, what was the name of Billy Bunter's sister?
+Bessie
+10
+
+In common: belly, fever, journalism, pages?
+Yellow
+10
+
+In common: boot, eye, bird, death?
+Black
+10
+
+In common: brain, watching, bath, house?
+Bird
+10
+
+In common: chinook, kiowa, huey, labrador, sea king?
+Helicopters
+10
+
+In common: detroit, phibes, demento, faustus?
+Doctors
+10
+
+In common: dust, movie, gaze, sapphire?
+Star
+10
+
+In common: french, taking, alone, on?
+Leave
+10
+
+In common: goodbye columbus, letting go, portnoy's complaint, the breast?
+Novels by philip roth
+10
+
+In common: Henry ford, adolf hitler, frank sinatra, orville and wilbur wright?
+Secondary school dropouts
+10
+
+In common: himalayan, rex, manx, maine coon?
+Breeds of cats
+10
+
+In common: honeysuckle, tiny world, chux?
+Disposable diapers
+10
+
+In common: humor, mannered, suited, take?
+Ill
+10
+
+In common: Jesus Christ, Albert Einstein, Sigmund Freud, Karl Marx?
+Jewish
+10
+
+In common: John James Audubon, Alexander Graham Bell, Albert Einstein?
+Foreign born americans
+10
+
+In common: king tonkin, duchess of oldenburg, simpson starking and rambo?
+Apples
+10
+
+In common: labrador duck, passenger pigeon, dodo, carolina parakeet?
+Extinct birds
+10
+
+In common: macarthur, place, gorky, hyde, central?
+Parks
+10
+
+In common: nova, comet, galaxy, meteor?
+Cars
+10
+
+In common: office, camera, cardboard, spring?
+Box
+10
+
+In common: opera, into, verse, fingered, red, house?
+Light
+10
+
+In common: pascal, golden, equilateral, musical?
+Triangles
+10
+
+In common: poor soul, fenwick babbitt, joe the bartender, ralph kramden?
+Jackie gleason
+10
+
+In common: screen, sale, water, storm?
+Fire
+10
+
+In common: see, carpet, hot, cent?
+Red
+10
+
+In common: shar-pei, pug, shih tzu, pomeranian?
+Breeds of dogs
+10
+
+In common: sigmund freud, a conan doyle, robert louis stevenson?
+Cocaine users
+10
+
+In common: squeeze, passion, mate, doctor?
+Play
+10
+
+In common: tennis, geology, critics?
+Faults
+10
+
+In common: under, broke, go, after?
+Go
+10
+
+In common: ursa minor, ursa major, leo, orion, scorpius?
+Names of constellations
+10
+
+In common: wagon, stand, aid, dance?
+Band
+10
+
+In common: wh auden, yukio mishima, oscar wilde, petr tchaikovsky?
+Homosexuals who married women
+10
+
+In computer graphics, the effect produced when display resolution is too coarse to minimize the jagged, or appearance of certain design elements, such as diagonal lines, curves, & circles?
+Aliasing
+10
+
+In computer language what is BASIC an acronym for?
+Beginners all symbolic instruction code
+10
+
+In computer science, a key on ibm pc & similar computer keyboards that when pressed in combination with another key, gives the other key an alternative meaning?
+Alt key
+10
+
+In computer science, a peripheral or add-on to a computer, such as a mouse or a modem?
+Accessory
+10
+
+In computer talk what is a nibble?
+A half byte
+10
+
+In computer terms, what does ocr stand for?
+Optical character recognition
+10
+
+In computing terminology, what does d.p.i. stand for?
+Dots per inch
+10
+
+In computing which letter of the alphabet represents 1,024 bytes?
+K
+10
+
+In computing, for what does S stand in the acronym SIMM?
+Single
+10
+
+In computing, what is 'bit' an abbreviation for?
+Binary digit
+10
+
+In cookery, what term is used for the sprinkling of food lightly and evenly with flour, sugar, etc?
+Dredging
+10
+
+In cooking what does MSG stand for?
+Monosodium glutamate
+10
+
+In cooking where does 'angelica' come from?
+Plant root
+10
+
+In cooking, ____ drops make a dash
+Six
+10
+
+In cooking, cripsy, spicy or aromatic duck is usually given the name of which city?
+Peking
+10
+
+In cooking, six drops make a____
+Dash
+10
+
+In cooking, what are Brochettes?
+Pieces of meat cooked on a skewer
+10
+
+In cooking, which meat is used in the stew a Navarin?
+Lamb or mutton
+10
+
+In cornish folklore, what is a bucca?
+Sea spirit
+10
+
+In cornish folklore, what is a sea spirit that lives among fisherman?
+Bucca
+10
+
+In coronation street how did ken barlows first wife val die?
+Electrocution
+10
+
+In coronation street, what was the name of ken barlow's first wife, played by anne reid?
+Valerie
+10
+
+In coronation street, which room in the rover's return was regularly used by ena sharples and friends?
+Snug
+10
+
+In Coronation Street, who has been revealed as the father of Ashley Peacock?
+Fred elliott
+10
+
+In cricket how far is the popping crease from the stumps?
+Four feet
+10
+
+In cricket, an over bowled with no runs scored is called a ____ over
+Maiden
+10
+
+In cricket, how many wickets in a row comprise a hat trick?
+Three
+10
+
+In cricket, what is 'lbw'?
+Leg before wicket
+10
+
+In cricket, what is 3 wickets in a row?
+Hat trick
+10
+
+In darts, what does a dart in the inner bull score?
+Fifty
+10
+
+In darts, what does a dart in the outer bull score?
+25
+10
+
+In darts, what is a score of 26?
+Bed and breakfast
+10
+
+In darts, what is the highest score possible with 3 darts?
+180
+10
+
+In darts, what must a player do before he can start scoring points?
+Hit a double
+10
+
+In data processing, what's edi?
+Electronic data interchange
+10
+
+In dating agency adverts what does the 'S' represent in the abbreviation 'NSP'?
+Smoker
+10
+
+In Dawson City, Yukon, 500 motion pictures were dug out of a hole in the ground & were found to be in perfect condition. What preserved them?
+Permafrost
+10
+
+In december 1999 which was the last foreign colony to revert to chinese rule?
+Macao
+10
+
+In December of 1957 ____ Shippingport, Pennsylvania became the site of the first full-scale ____ power plant in the U.S
+Nuclear
+10
+
+In Denmark, it's called smutting. What's it called in the United States?
+Stone-skipping
+10
+
+In denmark, who takes the place of santa claus?
+Nisse
+10
+
+In developing nations, ____ percent of diseases are water related
+Eighty
+10
+
+In Dickens' novel 'David Copperfield', what is the Christian name of his old nurse Peggotty?
+Clara
+10
+
+In Digimon,what do T.K. and Kari have that the other children don't?
+Older brothers
+10
+
+In disney comics, who are daisy duck's three nieces?
+April, may and june
+10
+
+In Disney's Jungle Book, what kind of animal was 'King Louis'?
+Orang-utan
+10
+
+In disney's the lady and the tramp what kind of dog is 'lady'?
+Cocker spaniel
+10
+
+In don mclean's 'American pie', who was he singing about in 'the day the music died'?
+Buddy holly
+10
+
+In downtown____ , Peru, there is a large brass statue dedicated to Winnie-the-Pooh
+Lima
+10
+
+In drag racing, what does 't.s' mean?
+Terminal speed
+10
+
+In early 1939 what country was Adolf Hitler determined to invade & occupy?
+Poland
+10
+
+In Eastenders, what was Tiffany Mitchell's occupation?
+Aromatherapy massage
+10
+
+In Edward Lear's poem who married the owl and the Pussy-cat?
+Turkey
+10
+
+In edward lear's poem, upon which fruit did the owl and the pussycat dine?
+Quince
+10
+
+In Egyptian Mythology which goddess was the mother of Horus?
+Isis
+10
+
+In Egyptian mythology, what sort of creature was Apis?
+Bull
+10
+
+In egyptian mythology, who is the god of the underworld?
+Cherti
+10
+
+In egyptian mythology, who married two of her brothers?
+Cleopatra
+10
+
+In electric circuits, condition in a circuit in which the combined impedances of the capacity & induction to alternating currents cancel each other out or reinforce each other to produce a minimum or maximum impedance (electric circuit; electricity)?
+Resonance
+10
+
+In electricity, property of any object or substance to resist or oppose the flow of an electrical current?
+Resistance
+10
+
+In electricity, what is the opposite of an insulator?
+Conductor
+10
+
+In electronics, device used to propagate radio or electromagnetic waves or to capture radio waves?
+Antenna
+10
+
+In empire strikes back, what was chewing on the power cables of the millenium falcon while han solo and company were hiding inside the asteroid cave?
+Mynocks
+10
+
+In engineering, the measurement or control of equipment by fluid jet devices?
+Fluidics
+10
+
+In England and Wales, what is made up of twelve people?
+A jury
+10
+
+In England what ocean current allows gardeners on the west coast to grow exotic plants?
+Gulf stream
+10
+
+In England what year was the lynmouth flood disaster?
+1952
+10
+
+In England, in the 1880's, ____ was considered a dirty word
+Pants
+10
+
+In England, it's known as ducks and drakes. What's it called in North America?
+Stone-skipping
+10
+
+In England, the most commonly used guide dog for the blind is the____
+Yellow labrador retriever
+10
+
+In England, the speaker of the house is not allowed to do what?
+Speak
+10
+
+In England, the speaker of the house is not allowed to____
+Speak
+10
+
+In England, where does the 'queen elizabeth ii' usually dock?
+Southampton
+10
+
+In English folklore, ____ was a fairy queen who governed people's dreams
+Queen mab
+10
+
+In English mythology, who caused the death of the lady of shallot?
+Sir
+10
+
+In English what does arrivederci mean?
+Goodbye
+10
+
+In English, ____ is the only digit that has the same number of letters as its value
+Four
+10
+
+In English, the constellation Antlia is best known as?
+Air pump
+10
+
+In English, the constellation Camelo Pardalis is best known as?
+Giraffe
+10
+
+In English, the constellation Carina is best known as?
+Keel
+10
+
+In English, the constellation Cetus is best known as?
+Whale
+10
+
+In English, the constellation Corvus is best known as?
+Crow
+10
+
+In English, the constellation draco is best known as?
+Dragon
+10
+
+In English, the constellation eridanus is best known as?
+River
+10
+
+In English, the constellation Grus is best known as?
+Crane
+10
+
+In English, the constellation leo is best known as?
+Lion
+10
+
+In English, the constellation Microscopium is best known as?
+Microscope
+10
+
+In English, the constellation pavo is best known as?
+Peacock
+10
+
+In English, the constellation Phoenix is best known as?
+Phoenix
+10
+
+In English, the constellation pisces is best known as?
+Fish
+10
+
+In English, the constellation Sigitta is best know as?
+Arrow
+10
+
+In English, the constellation Triangleum is best known as?
+Triangle
+10
+
+In English, the constellation vulpecula is best known as?
+Fox
+10
+
+In every deck of cards the king of hearts is sticking what through his head?
+Sword
+10
+
+In every episode of Seinfeld there is a ____ somewhere
+Superman
+10
+
+In every show that tom jones and harvey schmidt there is at least one song about ____
+Rain
+10
+
+In exchange for what did Spain cede Florida to britain?
+Cuba
+10
+
+In exchange for what was cuba ceded by britain to Spain?
+Florida
+10
+
+In exodus, the waters of this river were turned into blood?
+The nile
+10
+
+In fairy folklore what was the job of Mab?
+Midwife
+10
+
+In fairy folklore what was the occupation of Mab?
+Midwife
+10
+
+In fashion which cloth is produced by buffing the flesh side of a tanned animal hide?
+Suede
+10
+
+In fashion which style of low heel on a womans shoe is named after a young animal?
+Kitten
+10
+
+In fashion, what do the letters 'LBD' mean?
+Little black dress
+10
+
+In fashion, what type of garment are Oxford bags?
+Trousers
+10
+
+In ferris bueller's day off, what is the principal's name?
+Mr. ed rooney
+10
+
+In Ferris Bueller's Day Off, what is the Principals name?
+Mr. Rooney
+10
+
+In ferris buellers day off, who is cameron going to marry?
+The first girl he lays
+10
+
+In fiction Michael Henchard was Mayor of which town?
+Casterbridge
+10
+
+In fiction, what is the last name of Dr. Hannibal____the Cannibal?
+Lecter
+10
+
+In fiction, who was the arch enemy of Dan Dare?
+The mekon
+10
+
+In film, collectively, how were Gabriel Byme, Stephen Baldwin, Benico Del Toro, Kevin Pollock and Kevin Spacey known in 1995?
+Usual suspects
+10
+
+In folklore, supernatural, sea-dwelling creature with the head and upper body of a beautiful woman and the lower body of a fish?
+Mermaid
+10
+
+In food preparation, what term is used for the removal of peas from the pod, or the green calyx from strawberries?
+Hulling
+10
+
+In food, what is the filling in a BLT sandwich?
+Bacon, lettuce & tomato
+10
+
+In football where was the world cup played in 1970?
+Mexico
+10
+
+In football which is th eonly English or Scottish league team with a J in the name?
+St johnstone
+10
+
+In football, how many yards of penalty are given for a personal foul?
+Fifteen
+10
+
+In football, what are the white marks intersecting each five-yard line?
+Hashmarks
+10
+
+In football, what wide receiver has recorded the most catches, yards and touchdowns in a career?
+Jerry rice
+10
+
+In football, where are the hashmarks?
+Five-yard lines
+10
+
+In football, where do the Chargers come from?
+San Diego
+10
+
+In Football, who is the only player allowed to handle the ball?
+Goalkeeper
+10
+
+In France in what kind of meat does a Charcuterie specialise?
+Pork
+10
+
+In France it is called 'potiron' and is a large round fruit with thick orange rind and pulpy flesh. What is it's English name?
+Pumpkin
+10
+
+In France what animal is specially trained to sniff out truffles?
+Pig
+10
+
+In France what would you buy in a Boulangerie?
+Bread
+10
+
+In france, there's a place called____
+Y
+10
+
+In France, what kind of a building is a 'moulin'?
+Mill
+10
+
+In French what country is Ecosse?
+Scotland
+10
+
+In fresh prince of bel-air what was the butlers name?
+Geoffrey
+10
+
+In full commonwealth of Virginia, state in the eastern U S & one of the original 13 colonies?
+Virginia
+10
+
+In gaelic legend, who had a dog called bran?
+Fingal
+10
+
+In gardening what would you use a 'trug' for?
+Carrying things
+10
+
+In general, the process of caring for, or nurturing, another individual?
+Nursing
+10
+
+In geography, any of the five divisions of the surface of the earth, characterized by similar temperature & sunshine distribution?
+Zone
+10
+
+In geology what is Blue John?
+Fluorite
+10
+
+In geology, a major structural feature of the earths crust?
+Geosyncline
+10
+
+In george orwells animal farm what kind of creature was napoleon?
+Pig
+10
+
+In German towns, what is the S-bahn?
+Railway
+10
+
+In golf the Americans call it a double eagle. What do we call it?
+Albatross
+10
+
+In golf what is the maximum number of clubs allowed in your bag?
+Fourteen
+10
+
+In golf, we call '3 under par' an 'albatross'. What do Americans call it?
+Double eagle
+10
+
+In golf, what is the woman's equivalent of the Ryder Cup?
+The solheim cup
+10
+
+In golf, what would you call a putt short enough to be conceded?
+Gimmie
+10
+
+In grease two what does stephanie want in a boyfriend?
+A cool rider
+10
+
+In Great Expectations, what was the occupation of Joe Gargery?
+Blacksmith
+10
+
+In greek and roman mythology, what food of the gods was said to make immortal anyone who ate it?
+Ambrosia
+10
+
+In greek cookery what are 'sheftalia'?
+Minced lamb kebabs
+10
+
+In greek legend which hero waas attacked by the monsters Scylla and Charybdis in the Straits of Messina?
+Odysseus
+10
+
+In Greek legend, what was eaten on the island of Jerba?
+Lotuses
+10
+
+In greek legend, who killed the hydra?
+Heracles
+10
+
+In Greek legend, Zeus wooed Europa, daughter of King Agenor, in the form of which animal?
+Bull
+10
+
+In Greek myth how were the children of Uranus & Gaea collectively known?
+The titans
+10
+
+In greek myth the name given to a statue that came to life in answer to the prayers of Pygmalion?
+Galatea
+10
+
+In Greek Myth who promised to marry the first man to beat her in a race?
+Atalanta
+10
+
+In Greek Myth who solved the riddle of the Sphinx?
+Oedipus
+10
+
+In Greek myth who swam the Hellespont?
+Leander
+10
+
+In Greek myth who was Jason's wife?
+Medea
+10
+
+In greek myth, which mother of twelve was turned into a weeping rock due to grief?
+Niobe
+10
+
+In Greek myth, who gave birth to the winged horse, Pegasus, from her blood after she had been slain?
+Medusa
+10
+
+In Greek mythology any of 3 snake haired sisters able to turn people to stone?
+Gorgon
+10
+
+In Greek mythology the place of ideal happiness?
+Elysium
+10
+
+In greek mythology what did atlanta want to do until she was defeated in a footrace?
+Remain unmarried
+10
+
+In Greek mythology what event did Paris trigger when he took his lover Helen home with him?
+Trojan war
+10
+
+In greek mythology who ferries the dead across the river styx?
+Charon
+10
+
+In greek mythology who placed callisto in the heavens as the constellation of ursa major?
+Zeus
+10
+
+In greek mythology who was jocasta's son?
+Oedipus
+10
+
+In greek mythology who was moirae's mother?
+Themes
+10
+
+In Greek mythology who was the father of Iphigenia & Electra?
+Agamemnon
+10
+
+In greek mythology who was the husband of Helen of Troy?
+Menelaus
+10
+
+In Greek mythology who was the mother of Uranus?
+Gaia
+10
+
+In Greek mythology who was the wife of Orpheus, the subject of the earliest surviving opera by Peri?
+Eurydice
+10
+
+In greek mythology whose dogs tore actaeon apart?
+Artemis
+10
+
+In greek mythology whose head is so hideous that anyone looking at it was turned to stone?
+Medusa
+10
+
+In greek mythology, actaeon was torn apart by artemis' ____
+Dogs
+10
+
+In greek mythology, alcemene was the child of ____
+Heracles
+10
+
+In greek mythology, as what were apricots known?
+Golden apples
+10
+
+In greek mythology, as which constellation did zeus place callisto?
+Ursa major
+10
+
+In greek mythology, atlanta wanted to remain unmarried until ____
+She was defeated in a footrace
+10
+
+In greek mythology, danae was the mother of ____
+Perseus
+10
+
+In greek mythology, dione was the mother of ____
+Aphrodite
+10
+
+In greek mythology, europa was the mother of ____
+Minos
+10
+
+In greek mythology, for who did the cyclops forge thunderbolts?
+Zeus
+10
+
+In greek mythology, from what mountain was haphaestus thrown?
+Mount olympus
+10
+
+In greek mythology, from where was a beam hewn on atlanta's ship?
+Speaking oaks of dodona
+10
+
+In greek mythology, gave fire to mankind?
+Prometheus
+10
+
+In greek mythology, how long did penelope wait for odysseus to return from the trojan war?
+Twenty years
+10
+
+In greek mythology, leda was visited by zeus in the the form of a swan, and become the mother of ____
+Helen and pollux
+10
+
+In greek mythology, mnemosyne is the mother of the ____
+Muses
+10
+
+In greek mythology, over which island did polycrates rule?
+Samos
+10
+
+In Greek mythology, Pasiphae gave birth to which creature?
+Minotaur
+10
+
+In greek mythology, phoebe was the goddess of the ____
+Moon
+10
+
+In Greek Mythology, she is the first mortal woman, and also the woman who opened the box containing all of man's troubles and plagues?
+Pandora
+10
+
+In Greek mythology, the nymph Callisto was turned into which creature?
+Bear
+10
+
+In greek mythology, themes was the mother of ____
+Moirae
+10
+
+In greek mythology, to where did bellerophon try to ride pegasus?
+Mount olympus
+10
+
+In greek mythology, to where did zeus abduct europa?
+Crete
+10
+
+In greek mythology, what city did cadmus found?
+Troy
+10
+
+In greek mythology, what did ariadne help theseus to escape?
+Labyrinth
+10
+
+In greek mythology, what did bellerophon and pegasus kill?
+Chimera
+10
+
+In greek mythology, what did the cyclops forge for zeus?
+Thunderbolts
+10
+
+In greek mythology, what god was thrown down from mount olympus because of his ugliness?
+Hephaestus
+10
+
+In greek mythology, what is the alternate name for pollux?
+Polydeuces
+10
+
+In greek mythology, what is the alternate name for polydeuces?
+Pollux
+10
+
+In greek mythology, what strait did leander cross every night to be with hero?
+Dardanelles
+10
+
+In greek mythology, what war did helen's abduction spark?
+Trojan war
+10
+
+In greek mythology, what was a lion-goat-serpent monster?
+Chimera
+10
+
+In greek mythology, what was attributed to athena?
+Owl
+10
+
+In greek mythology, what was eaten on the island of jerba?
+Lotuses
+10
+
+In greek mythology, what was pegasus?
+Winged horse
+10
+
+In Greek mythology, what were Medusa, Stheno and Euryale collectively known as?
+The gorgons
+10
+
+In greek mythology, what were the fifty daughters of nerius and doris called?
+Nereids
+10
+
+In greek mythology, what were the golden apples?
+Apricots
+10
+
+In greek mythology, where were lotuses eaten?
+Island of jerba
+10
+
+In Greek mythology, which goddess was Apollo's sister?
+Arte'mis
+10
+
+In greek mythology, which king had the golden touch?
+Midas
+10
+
+In greek mythology, which king imprisoned daedalus and icarus?
+Minos
+10
+
+In Greek mythology, which king made a statue of a woman which Aphrodite brought to life?
+Pygmalion
+10
+
+In Greek mythology, which monster had the head and breasts of a woman, the body of a lion and the wings of a bird?
+Sphinx
+10
+
+In greek mythology, which titans forged thunderbolts for zeus?
+Cyclops
+10
+
+In greek mythology, who abducted europa to crete?
+Zeus
+10
+
+In greek mythology, who briefly, was euridice's husband?
+Orpheus
+10
+
+In greek mythology, who briefly, was orpheus' wife?
+Euridice
+10
+
+In Greek mythology, who defeated Athene in a weaving contest?
+Arachne
+10
+
+In greek mythology, who defeated atlanta in a footrace?
+Melanion
+10
+
+In greek mythology, who descended to the underworld to retrieve his wife Eurydice?
+Orpheus
+10
+
+In greek mythology, who did ariadne help to escape the labyrinth?
+Theseus
+10
+
+In greek mythology, who did bellerophon tame?
+Pegasus
+10
+
+In greek mythology, who did diemos personify?
+Dread
+10
+
+In Greek mythology, who did Ganymede replace as Cup-Bearer to the Gods?
+Hebe
+10
+
+In greek mythology, who did melanion defeat in a footrace?
+Atlanta
+10
+
+In greek mythology, who did oedipus marry?
+Jocasta
+10
+
+In greek mythology, who did zeus place in the heavens as the constellation ursa major?
+Callisto
+10
+
+In greek mythology, who had a ship with a beam hewn from the 'speaking oaks of dodona'?
+Atlanta
+10
+
+In greek mythology, who helped theseus escape the labyrinth?
+Ariadne
+10
+
+In greek mythology, who is 'the dioscuri'?
+Castor and pollux
+10
+
+In greek mythology, who is the inventor of the reed-pipe?
+Marsyas
+10
+
+In greek mythology, who is the mother of paris?
+Hecuba
+10
+
+In greek mythology, who is the mother of the muses?
+Mnemosyne
+10
+
+In Greek mythology, who judged a beauty contest on Mount Ida, between Hera, Athene and Aphrodite?
+Paris
+10
+
+In greek mythology, who killed his grandfather with a quoit at the larrisan games?
+Perseus
+10
+
+In greek mythology, who killed the chimera?
+Bellerophon and pegasus
+10
+
+In greek mythology, who personified dread?
+Diemos
+10
+
+In Greek Mythology, who stole fire from the Gods and brought it back to Earth hidden in a fennel stalk?
+Prometheus
+10
+
+In greek mythology, who swam the dardanelles every night to be with his lover?
+Leander
+10
+
+In greek mythology, who tamed pegasus?
+Bellerophon
+10
+
+In Greek mythology, who turned Odysseus's men into pigs?
+Circe
+10
+
+In greek mythology, who visited leda in the form of a swan?
+Zeus
+10
+
+In greek mythology, who wanted to remain unmarried until she was defeated in a footrace?
+Atlanta
+10
+
+In greek mythology, who was abducted by zeus to crete?
+Europa
+10
+
+In greek mythology, who was aphrodite's mother?
+Dione
+10
+
+In greek mythology, who was condemned to bearing the world on his shoulders for trying to storm the heavens?
+Atlas
+10
+
+In greek mythology, who was daedalus' son?
+Icarus
+10
+
+In greek mythology, who was heracles' mother?
+Alcemene
+10
+
+In greek mythology, who was hero's lover?
+Leander
+10
+
+In greek mythology, who was hero?
+Priestess of aphrodite
+10
+
+In greek mythology, who was icarus' father?
+Daedalus
+10
+
+In greek mythology, who was leander's lover?
+Hero
+10
+
+In greek mythology, who was leda's husband?
+Tyndareus
+10
+
+In greek mythology, who was married to helen of troy?
+Menelaus
+10
+
+In greek mythology, who was married to menelaus?
+Helen
+10
+
+In greek mythology, who was married to odysseus?
+Penelope
+10
+
+In greek mythology, who was married to penelope?
+Odysseus
+10
+
+In greek mythology, who was minos' mother?
+Europa
+10
+
+In greek mythology, who was minos?
+King of crete
+10
+
+In greek mythology, who was oedipus' mother?
+Jocasta
+10
+
+In greek mythology, who was oenone's husband?
+Paris
+10
+
+In greek mythology, who was paris' wife before he was smitten by helen?
+Oenone
+10
+
+In Greek Mythology, who was responsible for giving fire to mankind?
+Prometheus
+10
+
+In greek mythology, who was the father of electra?
+Oceanus
+10
+
+In greek mythology, who was the first woman on earth, created by hephaestus at the request of zeus?
+Pandora
+10
+
+In greek mythology, who was the first woman on earth?
+Pandora
+10
+
+In greek mythology, who was the goddess of the moon?
+Phoebe
+10
+
+In greek mythology, who was the guardian of the home?
+Hestia
+10
+
+In greek mythology, who was the hunter who was torn apart by artemis' dogs?
+Actaeon
+10
+
+In greek mythology, who was the mother of perseus?
+Danae
+10
+
+In Greek mythology, who was the mother of Zeus?
+Rhea
+10
+
+In Greek mythology, who was the Muse of Tragedy?
+Melpomene
+10
+
+In Greek mythology, who was the sister of Apollo?
+Artemis
+10
+
+In greek mythology, who was the supreme god?
+Jupiter
+10
+
+In greek mythology, who was the twin brother of Castor?
+Pollux
+10
+
+In Greek mythology, who was the wife of Zeus?
+Hera
+10
+
+In greek mythology, who was tyndareus' wife?
+Leda
+10
+
+In greek mythology, who was visited by zeus in the form of a swan, and became the mother of helen and pollux?
+Leda
+10
+
+In greek mythology, who wept tears of amber?
+Electra
+10
+
+In greek mythology, who were jason's companions?
+Argonauts
+10
+
+In greek mythology, who were the god zeus' parents?
+Cronos and rhea
+10
+
+In greek mythology, who were the personification of the forces of nature?
+Titans
+10
+
+In greek mythology, whose abduction sparked the trojan war?
+Helen
+10
+
+In greek mythology, whose companions were the argonauts?
+Jason
+10
+
+In greek mythology, why was hephaestus thrown from mount olympus?
+Ugliness
+10
+
+In greek mythology,penelope was the faithful wife of which hero?
+Odysseus
+10
+
+In grekky mythology, who was jocasta's son?
+Oedipus
+10
+
+In greyhound racing, what colour does the first dog wear?
+Red
+10
+
+In growing pains, what was boners dad's name?
+Sylvester stabone 
+10
+
+In grrek mythology who was sorceress daughter of the King of Colchis?
+Medea
+10
+
+In Guatemala, when is Christmas day celebrated?
+25th of December
+10
+
+In Gulliver's Travels, from what did the scientists seek to get sunshine?
+Cucumbers
+10
+
+In Gulliver's Travels, what is the name of the flying island inhabited by scientific theorists?
+Laputa
+10
+
+In Gymnastics a backwards handspring is know as what?
+Flic-Flac
+10
+
+In Halloween Special V, who is the unquestioned ruler and master of the world?
+Ned Flanders
+10
+
+In halloween, what is michael myers' middle name?
+Audrey
+10
+
+In harper valley pta, what actress portrayed stella johnson?
+Barbara eden
+10
+
+In Harry potter novels what species of owl is hedwig?
+Snowy
+10
+
+In hartford, connecticut, it is illegal for a husband to kiss his wife on____
+Sundays
+10
+
+In hebrew what does the name Satan mean?
+Adversary
+10
+
+In heraldry what family member is denoted by a rose?
+Seventh son
+10
+
+In heraldry what is a 'mullet'?
+Star
+10
+
+In heraldry what is a 'talbot'?
+Hound (dog)
+10
+
+In heraldry what is denote by a bar sinister?
+Illegitimacy
+10
+
+In Heraldry, a two-legged dragon with wings & a barbed tail?
+Wyvern
+10
+
+In heraldry, what are the colours on the shield called?
+Tinctures
+10
+
+In heraldry, what is a martlet?
+Bird
+10
+
+In heraldry, what is a two legged dragon called?
+Wyvern
+10
+
+In hindu mythology who is the mother goddess?
+Kali
+10
+
+In hindu mythology, who is kali?
+Mother goddess
+10
+
+In Hinduism, which God is known as the Preserver?
+Vishnu
+10
+
+In his play the birds, what name did aristophanes give to the birds' kingdom in the sky?
+Cloud cuckoo land
+10
+
+In his will who left his second best bed to his wife?
+William shakespeare
+10
+
+In holloween, michael meyers wore a halloween mask of what famous character?
+Captain kirk mask
+10
+
+In hollywood, who was known as 'the legs'?
+Betty grable
+10
+
+In Holst's Planet Suite, which planet is the bringer of Jollity?
+Jupiter
+10
+
+In Holst's Planet Suite, which planet is the bringer of Peace?
+Venus
+10
+
+In homer's iliad, who was the king of troy?
+Priam
+10
+
+In honour if ____ Vaaler, inventor of the paper clip, a 221/2 paper clip was erected in Oslo, Norway
+Johan
+10
+
+In honour if Johan Vaaler, inventor of the paper clip, a 221/2 paper clip was erected in____ , Norway
+Oslo
+10
+
+In honour if Johan____ , inventor of the paper clip, a 221/2 paper clip was erected in Oslo, Norway
+Vaaler
+10
+
+In horse racing, what is the maximum age of a filly?
+Four years
+10
+
+In horse racing, what is the straight opposite the one with the finish line?
+Backstretch
+10
+
+In horse racing, which triple Crown race is held on Long Island?
+Belmont
+10
+
+In Hound of the Baskervilles what was the name of the bog into which it was believed the villain finally disappeared?
+Grimpen mire
+10
+
+In human biology, what is the process of (normal) cell division?
+Mitosis
+10
+
+In i dream of jeannie, where was jeannie's favorite hiding place?
+Lamp
+10
+
+In ice hockey, what name is given to a period of play in which one team has a player temporarily suspended from the game?
+Power play
+10
+
+In Imperial measurement, how many pounds are there in one hundredweight?
+112
+10
+
+In Imperial measurement, how many square yards are in a square chain?
+484
+10
+
+In independence day, what does will smith yell as he blasts off in the space ship?
+I gotta get me one of these
+10
+
+In India and the East Indies, what is an elephant driver or keeper called?
+Mahout
+10
+
+In India what is 'pachisi'?
+Board game
+10
+
+In India who or what is a 'dacoit'?
+Robber
+10
+
+In India, and also the British forces, what job does a Dhobi Wallah do?
+Laundry
+10
+
+In Indonesian cookery what name is given to meat kebabs served with a peanut sauce?
+Satay
+10
+
+In international car registrations, which country has the letters RA?
+Argentina
+10
+
+In international car registrations, which country has the letters ZA?
+South africa
+10
+
+In irian jaya exists a tribe of tall white people whose ____ are a warning sign against intruders
+Parrots
+10
+
+In Irian Jaya exists a tribe of tall. white people whose ____ are a warning sign against intruders
+Parrots
+10
+
+In Irish folklore what is the mischievous elf, often believed to have treasure hoard?
+Leprechaun
+10
+
+In Italy, as what is mickey mouse known?
+Topolino
+10
+
+In Italy, it is illegal to make ____ out of anything except nutshells or wood
+Coffins
+10
+
+In January 1953 - U.S. ____ Harry Truman announced the development of the hydrogen bomb
+President
+10
+
+In january 1997, who survived for five days in an upturned boat, in the south pacific ocean?
+Tony bullimore
+10
+
+In Japan, ____ of all publications sold are comic books
+20%
+10
+
+In Japan, 20% of all publications sold are ____ books
+Comic
+10
+
+In Japan, what is No?
+Type of theatre
+10
+
+In Japanese cookery what is 'nori'?
+Seaweed
+10
+
+In Japanese cooking what name is given to small pieces of raw fish served with cold rice?
+Sushi
+10
+
+In Jasmine, Saskatchewan, it is illegal for a cow to moo within ____ km of a private home
+300
+10
+
+In John's Gospel, which was the first named disciple to join Jesus?
+Andrew
+10
+
+In Joseph Conrad's Lord Jim what ship was abandoned by its crew before it sank?
+Patna
+10
+
+In Judo, which Dan is the highest in the grading of black belts?
+Tenth
+10
+
+In July 1992, Tim Taylor married which member of the royal family?
+Lady helen windsor
+10
+
+In July of 1955 - Arco, Idaho, with a population of 1,000, became the first U.S. town powered by nuclear energy. The town's energy was supplied by an experimental boiling-water reactor called the?
+Borax iii
+10
+
+In jumanji, a stampede is released. what is the slowest animal?
+Rhinoceros
+10
+
+In June 19&3, SvetLana Savatskaya was the first wornan to do what?
+Walk in space
+10
+
+In june 1990, thousands died in a massive earthquake. in which country?
+Iran
+10
+
+In June of what year was the treaty ending WWl signed?
+1919
+10
+
+In Kentucky, it is illegal to carry ice-cream in your back____
+Pocket
+10
+
+In Knight Rider,what does K.I.T.T.'s name stand for?
+Knight Industries Two Thousand 
+10
+
+In Knight Rider,what's the real last name of Michael Knight?
+Long
+10
+
+In Korea, the ____ is a symbol of long life, and is often portrayed in the company of immortals
+Deer
+10
+
+In korean, what does seoul mean?
+Capital
+10
+
+In law, a formal document stating that a person (defendant) is notified to appear in court and answer a complaint or charge brought against him or her by another party (plaintiff)?
+Summons
+10
+
+In law, special court exercising jurisdiction over all maritime issues?
+Admiralty
+10
+
+In law, the criminal offense of marrying while one is still a partner in a valid earlier marriage?
+Bigamy
+10
+
+In legend what is the name of King Arthurs fairy sister?
+Morgan Le Fay
+10
+
+In legend, who was the Roman goddess of war?
+Bellona
+10
+
+In li'l abner, what was daisey mae's maiden name?
+Scraggs
+10
+
+In literature who has a servant called Sanch Panza?
+Don quixote
+10
+
+In literature who was the wife of Othello?
+Desdemona
+10
+
+In literature, what was long john silver's status when on board ship?
+The cook
+10
+
+In literature, which French Physician wrote the book of rhyming prophesies titled 'Centuries'?
+Nostradamus
+10
+
+In literature, who were the 'star-crossed lovers'?
+Romeo & juliet
+10
+
+In liturature, which writer created Sid Halley, the jockey turned private investigator?
+Dick Francis
+10
+
+In living organisms, what do lysins destroy?
+Cells
+10
+
+In logic, what is the form of reasoning by which a specific conclusion is inferred from one or more premises?
+Deduction
+10
+
+In london what would you find at 87-135 brompton road?
+Harrods
+10
+
+In London when did the Globe Theatre catch fire?
+1613
+10
+
+In London when was the first cricket match held at Lords?
+1814
+10
+
+In london who designed marble arch?
+John nash
+10
+
+In London, what are King's Cross, St Pancras and Waterloo?
+Railway stations
+10
+
+In London, which river is crossed by Tower Bridge?
+Thames
+10
+
+In Louisa May Alcott's 'Little Women', which march sister dies?
+Beth
+10
+
+In Magnum PI,Rick was not Rick's real name. What was his real name?
+Orville Wright 
+10
+
+In Magnum PI,what kind of car did Higgins drive?
+An audi
+10
+
+In Magnum PI,what was the name of the charter service that TC ran?
+Island Hoppers
+10
+
+In Magnum PI,what was the name of the club?
+The King Kamehameha
+10
+
+In many parts of the world, especially Asia, people still use a counting device that goes back before recorded history. It is a board with beads on it?
+Abacus
+10
+
+In march 1785, what future president succeeded ben franklin as minister to france?
+Thomas jefferson
+10
+
+In March 1876 which American inventor did Alexander Bell beat in the race to patent the telephone?
+Elisha gray
+10
+
+In maritime history, a type of large, seagoing warship propelled by oars and, more frequently, by sail?
+Galley
+10
+
+In martin luther king jr.'s famous speech, these three words come between 'free at last! free at last!' and 'we are free at last!'?
+Thank god almighty
+10
+
+In Mathematics what name is given to a pair of angles whose sum is 90 degrees?
+Complementary
+10
+
+In mathematics which prefix refers to 10 to the power of minus 9?
+Atto
+10
+
+In mathematics, famous theorem which has led to important discoveries in algebra & analysis?
+Fermats last theorem
+10
+
+In Mathematics, who devised a triangle to show the probability of various results occurring when any number of coins are tossed?
+Blaise pascal
+10
+
+In matilda what was the name of matilda's teacher?
+Jennifer honey
+10
+
+In May 1948, Mt ____ and Mt Ngauruhoe, both in New Zealand, erupted simultaneously
+Ruapehu
+10
+
+In May 1948, Mt Ruapehu and Mt Ngauruhoe, both in____ , erupted simultaneously
+New zealand
+10
+
+In May 1948, Mt Ruapehu and Mt____ , both in New Zealand, erupted simultaneously
+Ngauruhoe
+10
+
+In mediaval history, who was the lover of Heloise?
+Abelard
+10
+
+In medical matters, what does the letter B stand for in B.C.G?
+Bacillus
+10
+
+In medical matters, what does the letter C stand for in C.A.T. scanner?
+Computerised
+10
+
+In medicine what do the letters hrt stand for?
+Hormone replacement therapy
+10
+
+In medicine what is boric acid used for?
+Antiseptic
+10
+
+In medicine what is procaine used for?
+Anaesthetic
+10
+
+In medicine, of what is oncology the study'?
+Tumours
+10
+
+In medicine, the determination of the nature of a disease?
+Diagnosis
+10
+
+In medieval ____, it was not unusual for a mother to breast-feed a child until the child was seven years old
+China
+10
+
+In medieval art what did the dog signify?
+Fidelity
+10
+
+In medieval legend, what was the name of the wandering jew?
+Ahasuerus
+10
+
+In medieval Spain which city was noted for its quality leather?
+Cordova
+10
+
+In medieval Spain which city was noted for its quality steel?
+Toledo
+10
+
+In Miami, Florida, roosting ____ have taken to snatching poodles from rooftop patios
+Vultures
+10
+
+In Miami, Florida, roosting vultures have taken to snatching ____ from rooftop patios
+Poodles
+10
+
+In michagan, usa, a man legally owns his wife's____
+Hair
+10
+
+In midieval England, ____ often was served with breakfast
+Beer
+10
+
+In midieval England, beer often was served with____
+Breakfast
+10
+
+In military slang which word means to carry heavy equipment on foot over difficult terrain?
+Yomp
+10
+
+In military terms what is a projecting watch tower called?
+Barbican
+10
+
+In Milwaukee during the 1900s, ____ horses in the city left an estimated 133 tons of manure and urine on the streets per year
+12,500
+10
+
+In minerology what does the mohs scale measure?
+Hardness
+10
+
+In mirc, what colour does control-4 give?
+Red
+10
+
+In money circles what does ERM mean?
+Exchange rate mechanism
+10
+
+In monopoly how much does whitechapel road cost?
+Sixty dollars
+10
+
+In Monopoly what completes the set with Fleet Street and The Strand?
+Trafalgar square
+10
+
+In Monopoly which property completes the group containing the Angel,Islington,and Euston Road?
+Pentonville Road
+10
+
+In mormon theology, which is the star closest to god's residence?
+Kolob
+10
+
+In morse code, what number is represented by five dashes?
+Zero
+10
+
+In most ____ countries and in China the colour of mourning is white
+Muslim
+10
+
+In most Muslim countries and in ____ the colour of mourning is white
+China
+10
+
+In most Muslim countries and in China the colour of mourning is ____
+White
+10
+
+In most____ , including newspapers, the time displayed on a watch is 10:10
+Advertisements
+10
+
+In motor racing, what is yellow?
+Danger flag
+10
+
+In music m-m means?
+Maelzel metronome
+10
+
+In music what does the term 'ff' mean?
+Very loud
+10
+
+In music what is a chromatic scale?
+A scale made up of semi-tones
+10
+
+In music what is a pentatonic scale?
+A scale of five notes only
+10
+
+In music, instrumental introduction to an opera or other musical or nonmusical dramatic work?
+Overture
+10
+
+In music, name the set of horizontal lines around which notes are written?
+Staff
+10
+
+In music, the art of extemporization or creating all or part of a composition at the moment of performance?
+Improvisation
+10
+
+In music, what 'H' is an open framed instrument played by plucking the strings with the fingers?
+Harp
+10
+
+In music, what does prestissimo mean?
+Extremely fast
+10
+
+In music, what does the term legato mean?
+One note leading smoothly to the next
+10
+
+In music, which major scale contains just one flat?
+F major
+10
+
+In musical notation which note is half a minim?
+Crotchet
+10
+
+In musical notation, what is the effect of placing a dot immediately after a note?
+Increases its length by half
+10
+
+In musical notation, what is the term for the symbol at the beginning of a staff?
+Clef
+10
+
+In mythology Romulus and Remus were brought up by which animal?
+Wolf
+10
+
+In mythology the fountain Aganippe was famous to whom?
+Muses
+10
+
+In mythology the labyrinth was built for which monster?
+Minotaur
+10
+
+In mythology which creature sprang from the blood of Medusa?
+Pegasus
+10
+
+In mythology which flower sprang from the blood of a young man killed by Apollo?
+Hyacinth
+10
+
+In mythology who continued to weep after she had been turned to stone?
+Niobe
+10
+
+In mythology, of where was Oedipus the King?
+Thebes
+10
+
+In mythology, she was the Goddess of the hunt and the Lady of 'Wild Things'?
+Artemis
+10
+
+In mythology, she was the grey-eyed Goddess who sprung from the head of Zeus?
+Athena
+10
+
+In Mythology, she was Zeus' wife, sister, and the Goddess who protects marriage?
+Hera
+10
+
+In mythology, the God Apollo gave this woman the gift of being able to foretell the future, only to curse the gift when this woman rejected him?
+Cassandra
+10
+
+In mythology, which King of Cyprus fell in love with a statue?
+Pygmalion
+10
+
+In mythology, which maiden was saved from a sea by Perseus?
+Andromeda
+10
+
+In mythology, which soil of Juno was considered to be the most Roman of gods?
+Mars
+10
+
+In mythology, who tamed the winged horse Pegasus?
+Bellerophon
+10
+
+In mythology, who was the mother of Eros and Aeneas?
+Aphrodite
+10
+
+In mythology, who was the wife of Jupiter?
+Juno
+10
+
+In mythology, who was the wife of Odysseus?
+Penelope
+10
+
+In mythology, who was turned into a laurel bush?
+Daphne
+10
+
+In national lampoon's vacation, what did the griswalds call their ugly green station wagon?
+The family truckster
+10
+
+In nautical terms stop! or cease!?
+Avast
+10
+
+In nautical terms, what name is given to the upper edge of a ship's side?
+Gunwhale
+10
+
+In navigation what measures 1.8 metres?
+Fathom
+10
+
+In New Zealand, on which island is Lake Taupo?
+North
+10
+
+In Norse mythology who was the evil and mischevious god?
+Loki
+10
+
+In norse mythology, balder is the god of ____
+Light and joy
+10
+
+In norse mythology, hel is the goddess of the ____
+Underworld
+10
+
+In norse mythology, odin is the king of the ____
+Gods
+10
+
+In Norse mythology, what is the name of Odin's six-legged horse?
+Sleipn1r
+10
+
+In norse mythology, who is brunhilda chief of?
+Valkyries
+10
+
+In norse mythology, who is king of the gods?
+Odin
+10
+
+In norse mythology, who is the chief of the valkyries?
+Brunhilda
+10
+
+In Norse mythology, who is the father of Odin?
+Bor
+10
+
+In norse mythology, who is the god of light and joy?
+Balder
+10
+
+In norse mythology, who is the goddess of the underworld?
+Hel
+10
+
+In norse mythology, who is the husband of frigg?
+Odin
+10
+
+In norse mythology, who is the wife of odin?
+Frigg
+10
+
+In Norse mythology, who were the messengers of Odin who selected heroes to die in battle?
+Valkyries
+10
+
+In North America, Final Fantasy 4 is known as...?
+Final fantasy 2
+10
+
+In November 1981, Diana Ross had a number one hit with the duet 'Endless Love'. Who was her co-singer?
+Lionel ritchie
+10
+
+In October 1999, who replaced Frank Dobson as Secretary of State for Health?
+Alan milburn
+10
+
+In official competition, what colour shirts do table tennis players wear?
+Black
+10
+
+In old English law, what did 'apport' mean?
+Charge or tax
+10
+
+In olden days, barbers also performed as ____. Blood-letting, a remedy of the time believed to cure diseases, was one of their main tasks. The red-and-white striped barber pole originally symbolized a bleeding arm swathed in bandages
+Surgeons
+10
+
+In one of donald horne's novels, as what was Australia dubbed?
+Lucky country
+10
+
+In one of donald horne's novels, who was 'the lucky country?
+Australia
+10
+
+In one word, what is yeast?
+Fungus
+10
+
+In one year, hens in America lay enough eggs to encircle the globe ____ times
+100
+10
+
+In ontario, Canada, these five young ladies were born on may 28, 1934?
+The dionne quintuplets
+10
+
+In optics, property of a lens system of bending a beam of white light in such a way that all its component colors are brought to a focus at the same point, thus obtaining a sharp image?
+Achromatism
+10
+
+In order for a deck of cards to be mixed up enough to play with properly, at least how many times should it be shuffled?
+Seven times
+10
+
+In order for a deck of cards to be mixed up enough to play with properly, it should be shuffled at least?
+Seven times
+10
+
+In order not to digest itself, how often does the stomach need a new layer of mucous?
+Every two weeks
+10
+
+In order to satisfy an adults daily nutritional requirements it would be possible to drink 1 glass of orange juice, 2 glasses of milk and how many pints of Guinness?
+47
+10
+
+In painting, what is a Maulstick?
+Stick to steady the hand
+10
+
+In Pakistan, goats are often sacrificed to improve the performance of the____
+Stock market
+10
+
+In paris on january 12, 1998, nineteen european nations signed the first binding international ban on what?
+Human cloning
+10
+
+In paris, the mcdonalds big 'm' is the only one in the world that is white, rather than yellow, it was thought that yellow was too____
+Tacky
+10
+
+In Paris, the McDonalds big 'M' is the only one in the world that is____ , rather than yellow, it was thought that yellow was too tacky
+White
+10
+
+In parts of ____, the women keep harems of men
+Malaya
+10
+
+In Paula abdul's first hit, how does she want it?
+Straight up
+10
+
+In physics and engineering, the property of a body that causes it to return to its original position or motion as a result of the action of the so-called restoring forces, or torques, once the body has been disturbed from a condition of equilibrium?
+Stability
+10
+
+In physics terminology, what is the tendency of a body in motion to remain in motion?
+Inertia
+10
+
+In physics, devices used to accelerate charged elementary particles or ions to high energies?
+Particle accelerators
+10
+
+In physics, mechanism by what energy is conveyed from one place to another in mechanically propagated waves without the transference of matter?
+Wave motion
+10
+
+In physics, process of reduction of matter into a denser form, as in the liquefaction of vapor or steam?
+Condensation
+10
+
+In physics, product of a force applied to a body & the displacement of the body in the direction of the applied force?
+Work
+10
+
+In poker five cards of the same suit is called a(n) ____
+Flush
+10
+
+In poker what name is given to a hand of cards which includes a pair of aces and a pair of eights?
+Dead man's hand
+10
+
+In poker, what are five cards of the same suit?
+Flush
+10
+
+In pool, what colour is the #1 ball?
+Yellow
+10
+
+In pool, what colour is the eight ball?
+Black
+10
+
+In popular culture, what is a 'tamagotchi'?
+Virtual pet
+10
+
+In popular usage, name denoting the acute disease known medically as aeroembolism & caused by rapid decrease of the atmospheric pressure?
+Bends
+10
+
+In post war fashion who was responsible for the New Look?
+Christian dior
+10
+
+In pottery, what is biscuit ware?
+Pottery fired but not glazed
+10
+
+In pottery, what is crackle?
+Tiny cracks in the glaze
+10
+
+In pre decimalisation currency, how much was a florin worth?
+Two shillings
+10
+
+In printing what shape is an obelus?
+Dagger
+10
+
+In pro football a 'sudden death' period lasts how many minutes long?
+Fifteen
+10
+
+In pro-football how long does a 'sudden death' period last?
+Fifteen minutes
+10
+
+In psalm 46, what is the 46th word from the first word?
+Shake
+10
+
+In psalm 46, what is the 46th word from the last word?
+Spear
+10
+
+In QUANGO what does QU stand for?
+Quasi
+10
+
+In racing, the 'chalk' horse is the what?
+Favorite
+10
+
+In radio what do the initials CB stand for?
+Citizens band
+10
+
+In relation to animals what does the word 'edentate' mean?
+No teeth
+10
+
+In relation to computers, in printing, to line up in relation to a given point of reference, such as the margins of a page or the edges of a piece of paper?
+Align
+10
+
+In relation to its size, the ordinary house spider is ____ times faster than an Olympic sprinter
+Eight
+10
+
+In relation to its size, which bird has, understandably, the thickest skull?
+Woodpecker
+10
+
+In religion, the assumption of an earthly form by a god?
+Incarnation
+10
+
+In rhyming slang what are april showers?
+Flowers
+10
+
+In rhyming slang what is a china plate?
+Mate
+10
+
+In roman mythology, who was the father of romulus and remus?
+Mars
+10
+
+In roman mythology, who was the god of forests, fields and herding?
+Silvanus
+10
+
+In roman mythology, who was the supreme god?
+Jupiter
+10
+
+In Roman mythology, who was the wife of Jupiter?
+Juno
+10
+
+In Rome, the world's first paved streets were laid out in ____ B.C
+170
+10
+
+In Rome, what was the Cloaca Maxima?
+Main sewer
+10
+
+In romeo and juliet', who gave a long monologue about queen mab?
+Mercutio
+10
+
+In Roseanne what was Roseanne's gay boss/employee?
+Leon
+10
+
+In rugby union, what colour jerseys are worn by the Welsh team?
+Red
+10
+
+In Rummy how many points is an ace worth?
+One
+10
+
+In Russia, dogs have been trained to sniff out ore deposits that contain ____
+Iron sulfides
+10
+
+In Russia, suppositories cut from fresh potatoes were used for quick relief of ____
+Haemorrhoids
+10
+
+In Russia, what type of food is a blini or blintze?
+Pancake
+10
+
+In sailing, what is a warp?
+A mooring rope
+10
+
+In sailing, what is a warp?
+Rope
+10
+
+In save by the bell, what were zack and kelly dressed up as the night they broke up?
+Romeo and juliet
+10
+
+In saving private ryan, what was tom hanks' rank?
+Captain
+10
+
+In Scandinavian mythology, which was the 'Tree of Life'?
+Ash
+10
+
+In science, which term refers to the number of protons in the nucleus of an atom?
+Atomic number
+10
+
+In scooby doo what is shaggys full name?
+Norville rogers
+10
+
+In Scotland, what is the third alternative to the verdicts Guilty and not guilty?
+Not proven
+10
+
+In scrabble, what is the point value for the standard vowels?
+One
+10
+
+In scrabble, which letter is worth 6 points?
+None
+10
+
+In second world war allied soldier's slang, what does pbi stand for?
+Poor bloody infantry
+10
+
+In september of 1994, 852 people died when the ferry estonia sank in what sea?
+Baltic sea
+10
+
+In Shakespeare which character dies saying, 'The rest is silence'?
+Hamlet
+10
+
+In Shakespeare, who killed Tybalt?
+Romeo
+10
+
+In Shakespeare's 'Antony & Cleopatra,' & perhaps in history as well, with what did Cleopatra kill herself?
+Poisonous snake
+10
+
+In Shakespeare's 'Merchant of Venice', with whom does Portia fall in love?
+Bassanio
+10
+
+In Shakespeare's Hamlet, who is the father of Ophelia?
+Polonius
+10
+
+In Shakespeare's Macbeth, which wood appears to move?
+Birnham wood
+10
+
+In Shakespeare's play who was the wife of Othello?
+Desdemona
+10
+
+In Shakespeare's play, who tamed the shrew?
+Petruchio
+10
+
+In shakespeare's the merchant of venice, what is the name of the merchant?
+Antonio
+10
+
+In Shakespeare's The Taming of the Shrew , what is the name of the shrew?
+Katharina
+10
+
+In shipping, what does 'p&o' mean?
+Peninsula and orient
+10
+
+In siberia in 1994, a container full of what was discovered in the 2,000 year old grave of a scythian princess and priestess?
+Marijuana
+10
+
+In Simon & Simon,what unusual thing did Rick live in?
+In a boat
+10
+
+In some legends, death (the grim reaper) plays a fiddle with how many strings?
+One
+10
+
+In South Africa, what is 'biltong'?
+Dried meat
+10
+
+In South America it is rude not to ask a man about his ____
+Family
+10
+
+In SouthPark, who wants to fuck Satan all the time?
+Saddam Hussein
+10
+
+In soylent green, what was the last resort used for riot control?
+Scoups
+10
+
+In space you cannot cry because there is no ____ to make the tears flow
+Gravity
+10
+
+In space, astronauts cannot cry, because there is no ____, so the tears can't flow
+Gravity
+10
+
+In sport what would a person do with a quoit?
+Throw it
+10
+
+In square miles, how big is Lake Ontario?
+7,550
+10
+
+In Star Wars, who was the leader of the rebel alliance?
+Mon mothma
+10
+
+In State schools, pupils take SATS at age 14 at the end of which Key Stage?
+Three
+10
+
+In superbowl xv, played in 1981, who played against the philadelphia eagle?
+Oakland raiders
+10
+
+In telephony, what do the initials ADSL stand for?
+Asymmetric digital subscriber line
+10
+
+In telephony, what do the initials ISDN stand for?
+Integrated services digital network
+10
+
+In ten-pin bowling what is the hardest split to convert?
+7 10
+10
+
+In ten-pin bowling, how many points does a perfect game consist of?
+Three hundred
+10
+
+In tennis what name is given to a service that is so good that the opponant fails to touch it?
+Ace
+10
+
+In tennis, what name is given to a serve which cannot be returned?
+Ace
+10
+
+In terms of area, which is the largest city in africa?
+Cairo
+10
+
+In terms of tons of cargo handled, which is europe's busiest port?
+Rotterdam
+10
+
+In Terry Pratchett's Discworld series, Death rides a pale horse. What is its name?
+Binky
+10
+
+In texas, it is illegal to put graffiti on someone else's____
+Cow
+10
+
+In the ABO system, which blood type is the universal donor?
+Type o
+10
+
+In the ABO system, which blood type is the universal recipient?
+Type ab
+10
+
+In the Andes, ____ is often measured by how long it takes to smoke a cigarette
+Time
+10
+
+In the Arctic, the ____ sometimes appears to be square
+Sun
+10
+
+In the arctic, the sun sometimes appears to be____
+Square
+10
+
+In the art medium tempera, what is mixed with powdered paint?
+Egg yolk
+10
+
+In the atmosphere, after Nitrogen, Oxygen, and Carbon Dioxide, which gas has the greatest concentration?
+Argon
+10
+
+In the body what may be endocrine or exocrine?
+Glands
+10
+
+In the body, what is the CNS?
+Central nervous system
+10
+
+In the body, what would be described as adipose?
+Fat
+10
+
+In the British army, which rank is immediately above colonel?
+Brigadier
+10
+
+In the British defence forces, which ranks remain on the active list for life?
+Field Marshal, Admiral of the Fleet and Air marshal
+10
+
+In the Caribbean, there are ____ that can climb trees
+Oysters
+10
+
+In the charity AHA, what part of the body does H stand for?
+Heart
+10
+
+In the Commedia del'Arte who was the daughter of Pantaloon?
+Columbine
+10
+
+In the contract that gave cuba freedom from the us, what was required?
+Permanent naval base
+10
+
+In the English legal system how many judges form a quorum in the Court of Appeal?
+Three
+10
+
+In the English legal system there are three Divisions in the High Court of Justice. One is the Family division. Name the other two?
+Queen's bench & chancery
+10
+
+In the famous line 'wherefore art thou romeo', what does 'wherefore' mean?
+Why
+10
+
+In the female version of this Simon play, the leads are Olive and Florence?
+The odd couple
+10
+
+In the galapagos islands, what has an upturned shell at its neck?
+Tortoise
+10
+
+In the great seal of the USA the eagle grasps how many arrows?
+Thirteen
+10
+
+In the great seal of the USA what kind of branch does the eagle grasp?
+Olive branch
+10
+
+In the grounds of which house is the largest private tomb/mausoleum in England?
+Castle howard
+10
+
+In the human body which protien forms nails & hair?
+Keratin
+10
+
+In the human body, what is the axilla?
+The armpit
+10
+
+In the human body, what is the hallux?
+Big toe
+10
+
+In the law of torts, oral defamation or use of the spoken word to injure another's reputation, as distinguished from libel or written defamation?
+Slander
+10
+
+In the night sky, what can be half, full or new?
+The moon
+10
+
+In the north of ____, the sun shines constantly for about 14 weeks each summer
+Norway
+10
+
+In the northern hemisphere do tornadoes turn clockwise or anti-clockwise?
+Anticlockwise
+10
+
+In the nursery rhtme where would you go to see a fine lady with bells on her toes?
+Banbury Cross
+10
+
+In the nursery rhyme how many blackbirds were baked in a pie?
+24
+10
+
+In the nursery rhyme, Simple Simon met a pieman going where?
+To the fair
+10
+
+In the nursery rhyme, what medication was applied to Jack's head after his tumble down the hill?
+Vinegar and brown paper
+10
+
+In the nursery rhyme, who ran away when the boys came out to play?
+Georgie porgie
+10
+
+In the nursery rhyme, who visited the person with a little nut tree?
+The king of Spain's daughter
+10
+
+In the nursery rhyme, who were the three men in a tub?
+Butcher, baker, & candlestick maker
+10
+
+In the odyssey, who was placed opposite the monster scylla?
+Charybdis
+10
+
+In the oil industry, what do the letters VLCC mean?
+Very large crude carrier
+10
+
+In the old cartoon jiggs, what did jiggs invariably wear over his shoes?
+Spats
+10
+
+In the old dick and jane 'primary reader' school books, what was the name of the little sister?
+Sally
+10
+
+In the original 101 Dalmatians, name the Dalmatian that has 72 spots?
+Pongo
+10
+
+In the periodic table of the elements, the group vii elements (ie, f, cl, br, i...) Are also known as the ____
+Halogens
+10
+
+In the phonetic alphabet what word represents the letter r?
+Romeo
+10
+
+In the phonetic alphabet what word represents the letter Z?
+Zulu
+10
+
+In the phonetic alphabet which five words represent the five vowels?
+Alpha echo India oscar uniform
+10
+
+In the pioneer spacecraft, what are the humans on the plaques wearing?
+Nothing
+10
+
+In the retina, color sensing cells are called?
+Cones
+10
+
+In the rhyme about magpies,'one for sorrow, two for joy', what are 6 magpies for?
+Gold
+10
+
+In the royal navy, which rank is immediately above captain?
+Commodore
+10
+
+In the Scottish hebrides, an island is defined as being an island only if it is big enough to sustain 1____
+Sheep
+10
+
+In the seventeenth-century a Boston man was sentenced to two hours in the stocks for obscene behaviour, his crime, kissing his wife in a public place on a?
+Sunday
+10
+
+In the show Cheers, what was the name of the bar that always played practical jokes on the gang at Cheers?
+Gary's Old Time Tavern
+10
+
+In The Simpson's, what is Flander's store called?
+Leftorium
+10
+
+In The Simpsons what is the first name of Chief of Police Wiggum?
+Clancy
+10
+
+In The Simpsons, what is the first name of Mr Burns assistant Smithers?
+Waylon
+10
+
+In the sitcom fish, the fish couple become foster parents to how many kids?
+Five
+10
+
+In the soap 'one life to live' who was vicky's alter ego?
+Nicky
+10
+
+In the soaps, just what was barnabas collins?
+Vampire
+10
+
+In the song 'skip to my lou', in what beverage are the flies?
+Buttermilk
+10
+
+In the song hotel California, what color is the champagne that is on ice?
+Pink
+10
+
+In the song where was the 'house of the rising sun' located?
+New orleans
+10
+
+In the song, the house of the rising sun is in which city?
+New orleans
+10
+
+In The Sound of Music the Von Trapp family have seven children. Name the two boys?
+Friedrich & kurt
+10
+
+In the Star Trek: deep space nine series, name the ferengi owner of the bar on deep space nine?
+Quark
+10
+
+In the Star Trek: voyager series, name the ex-borg who is a member of the 'voyager' crew?
+Seven of nine
+10
+
+In the Stephen King novel, Carrie, what was the name of the school Carrie attended?
+Bates High School
+10
+
+In the stock exchange one who applies for shares in a new issue with a view to selling it at once for a profit?
+Stag
+10
+
+In the suburbs of which modern Egyptian city would you find the pyramids?
+Cairo
+10
+
+In the summer, ____ get a tan
+Walnuts
+10
+
+In the symbols used on clothing labels what is meant by a crossed out triangle?
+Do not bleach
+10
+
+In the system of linear measurement, how many yards are there in one chain?
+22
+10
+
+In the television comedy series, what type of animal did Manuel think his pet rat Basil was?
+Siberian hamster
+10
+
+In the television series the prisoner, what seas patrick mcgoohan's number?
+Six
+10
+
+In the television series, who owned the high chapparal ranch?
+John cannon
+10
+
+In the tenth century, the Grand Vizier of ____ took his entire library with him wherever he went. The 117,000-volume library was carried by camels trained to walk in alphabetical order
+Persia
+10
+
+In the TV series 'Absolutely Fabulous, who played the part of 'Bubbles'?
+Jane horrocks
+10
+
+In the tv series 'airwolf', where is the helicopter hidden?
+Extinct volcano
+10
+
+In the tv series 'bottom', what was the name of the owner of the pub 'the dirty dick'?
+Dick head
+10
+
+In the tv series 'friends', who does courtney cox play?
+Monica geller
+10
+
+In the tv series 'happy days' what was arthur fonzarelli's nickname?
+The fonz
+10
+
+In the tv series 'happy days' what was the fonz's full name?
+Arthur fonzarelli 
+10
+
+In the tv series 'happy days', what was the fonz's full name?
+Arthur
+10
+
+In the tv series 'leave it to beaver', what was the mother's name?
+June
+10
+
+In the tv series 'leave it to beaver', what was wally's best friend's name?
+Eddie haskell
+10
+
+In the tv series 'mad about you', what is the name of Paul and jamie's daughter?
+Mabel
+10
+
+In the tv series 'mash', what was margaret houlihan's nickname?
+Hotlips
+10
+
+In the tv series 'mash', who was 'hotlips'?
+Margaret houlihan
+10
+
+In the tv series 'seinfeld', who does michael richards play?
+Kramer
+10
+
+In the tv series 'seinfeld', who played kramer?
+Michael richards
+10
+
+In the tv series 'the adventures of hercules', what is hercules' companion's name?
+Iolos
+10
+
+In the tv series 'the brady bunch', what was mike brady's occupation?
+Architect
+10
+
+In the tv series 'the fall guy', who did lee majors play?
+Colt seavers
+10
+
+In the tv series 'the fall guy', who played colt seavers?
+Lee majors
+10
+
+In the tv series batman which villian was played by cesar romero?
+The joker
+10
+
+In the tv series the six million dollar man, what kind of man was steve austin?
+Bionic
+10
+
+In the tv show 'voyage to the bottom of the sea', what was the 'seaview'?
+Atomic submarine
+10
+
+In the tv sitcom 'get smart', who played 'agent 99'?
+Barbara feldon
+10
+
+In the tv sitcom 'married with children', what is the dog's name?
+Buck
+10
+
+In the tv sitcom cheers, the legal capacity of the boston bar was how many?
+75
+10
+
+In the u.k, did breakfast tv start in 1992, 1993 or 1994?
+1993
+10
+
+In the u.s, for how long is a patent good?
+-- Answer metadata begin
+{
+    "answers": ["17 years", "seventeen years"]
+}
+-- Answer metadata end
+10
+
+In the U.S., there is, on average, ____ sex change operations per day
+Three
+10
+
+In the U.S.A., this food is known as 'granola' how is it known in europe?
+Muesli
+10
+
+In the United States, ____ have safer driving records than hearing people nationally
+Deaf people
+10
+
+In the United States, ____ teeth are knocked out annually
+5 million
+10
+
+In the United States, 1982, the painkiller 'Tylenol' was spiked with?
+Cyanide
+10
+
+In the United States, more ____ discs are sold each year than baseballs, basketballs, and footballs combined
+Frisbee
+10
+
+In the United States, more than 25 percent of women's fashion dollars are spent on sizes ____ and up
+Sixteen
+10
+
+In the us army, what rank is indicated by a silver eagle?
+Colonel
+10
+
+In the US comedy series Sergeant Bilko, what is Bilko's first name?
+Ernie
+10
+
+In the US what name is given to an advanced medical student or recent medical graduate residing in a hospital?
+Intern
+10
+
+In the US, what is a 'flapjack' a type of?
+Pancake
+10
+
+In the US, which avenue divides the east side of New York from the west side?
+Fifth Avenue
+10
+
+In the USA what are the TV equivalent of the Oscars?
+Emmys
+10
+
+In the USA what does the John Birch Society oppose?
+Communism
+10
+
+In the USA, what is an estate agent known as?
+Realtor
+10
+
+In the western the big valley, who played heath barkley?
+Lee majors
+10
+
+In the White House, there are ____ knives, forks and spoons
+13,092
+10
+
+In the winter of 1724, while on an outing at sea, ____ of Russia caught sight of a foundering ship, jumped in the water, and helped in the rescue. He caught cold, suffered from a high fever, and died several weeks later
+Peter the great
+10
+
+In the witwatersrand in 1886, near where were massive gold deposits discovered?
+Johannesburg
+10
+
+In the world of animals, where would you find a 'martingale'?
+On a horse
+10
+
+In the world of communications for what do the letters U R L stand for?
+Uniform resource locator
+10
+
+In the X-Files, what is Agent Mulder's first name?
+Fox
+10
+
+In the year 1000, leif erikson was the first european to set foot on ____
+North America
+10
+
+In what country does "MABUHAY" mean "hello"?
+-- Answer metadata begin
+{
+    "answers": ["Philippines", "The Philippines"]
+}
+-- Answer metadata end
+10
+
+Where on Earth are there oysters that can climb trees?
+-- Answer metadata begin
+{
+    "answers": ["Caribbean", "The Caribbean"]
+}
+-- Answer metadata end
+10
+
+Where on Earth is time often measured by how long it takes to smoke a cigarette?
+-- Answer metadata begin
+{
+    "answers": ["Andes", "The Andes"]
+}
+-- Answer metadata end
+10
+
+In their chart-topping football anthem, David Baddiel and Frank Skinner sang about what?
+Three lions
+10
+
+In thermodynamics, what word describes the disorder of a system?
+Entropy
+10
+
+In the UK, he is called 'Action Man'; What is he called in the USA?
+G.I. Joe
+-- Answer metadata begin
+{
+    "answers": ["G.I. Joe", "GI Joe"]
+}
+-- Answer metadata end
+10
+
+In the US, he is called G.I. Joe; what is he called in the UK?
+Action Man
+10
+
+In this team sport each player gets a chance to play every position?
+Volleyball
+10
+
+Into what substance is barley converted before it can be made into beer?
+Malt
+10
+
+In Tokyo, for what are toupees sold?
+Dogs
+10
+
+In Tokyo, they sell ____ for dogs
+Toupees
+10
+
+In tokyo, they sell toupees for____
+Dogs
+10
+
+In track & field, what is thrown farthest?
+Javelin
+10
+
+In traditional Chinese thought what is the opposite of 'yin'?
+Yang
+10
+
+In transport terms, what is an ACV?
+Air cushioned vehicle
+10
+
+In transport, what do the letters HGV stand for?
+Heavy goods vehicle
+10
+
+In true kingly fashion, elvis passed away while sitting on the____
+Throne
+10
+
+In Turkey, in the sixteenth and seventeenth centuries, anyone caught drinking ____ was put to death
+Coffee
+10
+
+In Turkey, the colour of mourning is ____
+Violet
+10
+
+In the TV series "Friends", what is Ross' occupation?
+Palaeontologist 
+10
+
+In units of measurement, how many rods are there in a chain?
+Four
+10
+
+In the USA, what us supreme court decision struck down the racial segregation policy of 'separate but equal' in education?
+Brown
+10
+
+In Verdi's opera Rigoletto what is the occupation of Rigoletto?
+Court jester
+10
+
+In Victorian pictures Santa was often shown wearing ____
+Glasses
+10
+
+In Wales, there are more ____ than people
+Sheep
+10
+
+In Wallace and Grommit's 'The Wrong Trousers', what is the name of the penguin who steals the trousers?
+Feathers mcgraw
+10
+
+In warfare and law-enforcement, what is the more common name for lachrymators?
+Tear gas
+10
+
+In warfare what does the acronym THAAD stand for?
+Theatre high altitude area defence
+10
+
+In wartime, what is the right of a belligerent warship to stop neutral merchant vessels on the high seas in order to ascertain the nature of the cargo and the ownership of the vessel and thus determine its liability to capture?
+Right of search
+10
+
+In Washington d.c., no building can be built taller than the____
+Capitol
+10
+
+In Welsh place names Llan- is a common feature, what does it mean?
+Church
+10
+
+In western movies, who had a horse called Topper?
+Hopalong Cassidy
+10
+
+In what 1932 movie did shirley temple, age three, first appear?
+Red haired alibi
+10
+
+In what 1967 film did gene hackman earn his first oscar nomination?
+Bonnie
+10
+
+In what action movie does anthony quinn play the part of a male nurse?
+African rage
+10
+
+In what American city was the first blood bank opened?
+New york
+10
+
+In what are monocotyledon and dicotyledon terms?
+Botany
+10
+
+In what Australian state is Geelong?
+Victoria
+10
+
+In what Australian state is Mount Isa?
+Queensland
+10
+
+In what Australian state would you find Albury?
+New south wales
+10
+
+In what Australian state would you find Alice Springs?
+Northern territory
+10
+
+In what Australian state would you find Armidale?
+New south wales
+10
+
+In what Australian state would you find Ballarat?
+Victoria
+10
+
+In what Australian state would you find Bathurst?
+New south wales
+10
+
+In what Australian state would you find Bendigo?
+Victoria
+10
+
+In what Australian state would you find Broome?
+Wetsern Australia
+10
+
+In what Australian state would you find Bunbury?
+Western Australia
+10
+
+In what Australian state would you find Bundaberg?
+Queensland
+10
+
+In what Australian state would you find Cairns?
+Queensland
+10
+
+In what Australian state would you find Canberra?
+Act
+10
+
+In what Australian state would you find Canowndra?
+New south wales
+10
+
+In what Australian state would you find Cessnock?
+New south wales
+10
+
+In what Australian state would you find Coffs Harbour?
+New south wales
+10
+
+In what Australian state would you find Darwin?
+Northern territory
+10
+
+In what Australian state would you find Devonport?
+Tasmania
+10
+
+In what Australian state would you find Dubbo?
+New south wales
+10
+
+In what Australian state would you find Fremantle?
+Western Australia
+10
+
+In what Australian state would you find Geradlton?
+Western Australia
+10
+
+In what Australian state would you find Gladstone?
+Queensland
+10
+
+In what Australian state would you find Hobart?
+Tasmania
+10
+
+In what Australian state would you find Horsham?
+Victoria
+10
+
+In what Australian state would you find Inverell?
+New south wales
+10
+
+In what Australian state would you find Ipswich?
+Queensland
+10
+
+In what Australian state would you find Kalgoolie?
+Westerna Australia
+10
+
+In what Australian state would you find Katherine?
+Northern territory
+10
+
+In what Australian state would you find Kiama?
+New south wales
+10
+
+In what Australian state would you find Launceston?
+Tasmania
+10
+
+In what Australian state would you find Mackay?
+Queensland
+10
+
+In what Australian state would you find Maitland?
+New south wales
+10
+
+In what Australian state would you find Maryborough?
+Queensland
+10
+
+In what Australian state would you find Mildura?
+Victoria
+10
+
+In what Australian state would you find Moe?
+Victoria
+10
+
+In what Australian state would you find Moree?
+New south wales
+10
+
+In what Australian state would you find Narabri?
+New south wales
+10
+
+In what Australian state would you find Newcastle?
+New south wales
+10
+
+In what Australian state would you find Orange?
+New south wales
+10
+
+In what Australian state would you find Parkes?
+New south wales
+10
+
+In what Australian state would you find Perth?
+Western Australia
+10
+
+In what Australian state would you find Port Augusta?
+South Australia
+10
+
+In what Australian state would you find Port Lincoln?
+South Australia
+10
+
+In what Australian state would you find Port Pirie?
+South Australia
+10
+
+In what Australian state would you find Rockhampton?
+Queensland
+10
+
+In what Australian state would you find Salisbury?
+South Australia
+10
+
+In what Australian state would you find Shellharbour?
+New south wales
+10
+
+In what Australian state would you find shepparton?
+Victoria
+10
+
+In what Australian state would you find Stirling?
+Western Australia
+10
+
+In what Australian state would you find Surfers Paradise?
+Queensland
+10
+
+In what Australian state would you find Swan Hill?
+Victoria
+10
+
+In what Australian state would you find Tamworth?
+New south wales
+10
+
+In what Australian state would you find Taree?
+New south wales
+10
+
+In what Australian state would you find Toowoomba?
+Queensland
+10
+
+In what Australian state would you find Townsville?
+Queensland
+10
+
+In what Australian state would you find Wagga Wagga?
+New south wales
+10
+
+In what Australian state would you find Wangaratta?
+Victoria
+10
+
+In what Australian state would you find whyalla?
+South Australia
+10
+
+In what Australian state would you find Wodonga?
+Victoria
+10
+
+In what Australian state would you find Wollongong?
+New south wales
+10
+
+In what Australian state would you find Woomera?
+South Australia
+10
+
+In what Austrian city was mozart born?
+Salzburg
+10
+
+In what body of water will you find the Great Barrier Reef?
+Coral sea
+10
+
+In what Bond film does 'Oddjob' appear?
+Goldfinger
+10
+
+In what book did hitler set out his horrific plan for Germany's future?
+Mein kampf
+10
+
+In what book did the grinch steal christmas?
+The grinch who stole christmas
+10
+
+In what book does 'schahriah' appear?
+Thousand and one nights
+10
+
+In what book was the final score 4-2 after casey struck out?
+Casey at the bat
+10
+
+In what book would you find a sorceress named 'The Witch of Endor'?
+Bible
+10
+
+In what Buckinghamshire (England) town was?
+Olney
+10
+
+In what building would you view the mona lisa and the venus de milo?
+Louvre
+10
+
+In what business are 'angle irons' and 'rolex'?
+Dentistry
+10
+
+In what business did William Randolph Hearst succeed?
+Newspaper publishing
+10
+
+In what California city was roger ramjet based?
+Lompoc
+10
+
+In what Canadian province would you find Shuswap Lake?
+British columbia
+10
+
+In what capacity did ernest hemingway take part in the first world war?
+Ambulance driver
+10
+
+In what century did the Easter Bunny originate?
+15th
+10
+
+In what century was the Doomsday Book written?
+Eleventh
+10
+
+In what city are kew gardens?
+London
+10
+
+In what city did happy days take place?
+Milwaukee
+10
+
+In what city did Jesus and his parents call home?
+Nazareth
+10
+
+In what city did the L.A. Lakers orignally play?
+Minneapolis
+10
+
+In what city do the nba raptors play their home games?
+Toronto
+10
+
+In what city do the NHL Cannucks play there home games?
+Vancouver
+10
+
+In what city does a certain church forbid burping or sneezing?
+Omaha,
+10
+
+In what city does chocolate ave intersect cocoa ave?
+Hershey
+10
+
+In what city does matlock take place?
+Atlanta, georgia
+10
+
+In what city is candlestick park?
+San francisco
+10
+
+In what city is the bridge of sighs?
+Venice
+10
+
+In what city is the kremlin located?
+Moscow
+10
+
+In what city is the worlds largest library located?
+Washington dc
+10
+
+In what city was the final of the 1991 Canada cup played?
+Hamilton
+10
+
+In what city would you find red square?
+Moscow
+10
+
+In what city would you find the 'Red Square'?
+Moscow
+10
+
+In what city would you find the Prado art museum?
+Madrid
+10
+
+In what class of animals is a Herpetologist interested?
+Reptiles
+10
+
+In what club are all the members liars?
+Ananias club
+10
+
+In what club did danny williams perform on make room for daddy?
+Copa club
+10
+
+In what common appliance would you find a cathode ray tube?
+Television
+10
+
+In what constellation would you find the 'Horesehead' nebula?
+Orion
+10
+
+In what constellation would you find the 'horsehead' nebula?
+Orion
+10
+
+In what country (not state) is Santa Fe a city?
+Argentina
+10
+
+In what country are monegasques barred from the gambling tables?
+Monaco
+10
+
+In what country are most baseballs made?
+Haiti
+10
+
+In what country are visions of the virgin mary seen most frequently?
+Italy
+10
+
+In what country can you find Ivalo, Pello and Kuhmo?
+Finland
+10
+
+In what country did the boer war take place?
+South africa
+10
+
+In what country did the sepoy mutiny occur?
+India
+10
+
+In what country did the sport of caber-tossing originate?
+Scotland
+10
+
+In what country do the most earthquakes occur?
+Chile
+10
+
+In what country does 'Green Giant' advertise its canned sweet corn as a topping for ice cream?
+Korea
+10
+
+In what country is Ayers Rock located?
+Australia
+10
+
+In what country is Heathrow Airport located?
+Great Britain
+10
+
+In what country is K2 the world's second-highest mountain?
+Pakistan
+10
+
+In what country is Kruger National Park?
+South africa
+10
+
+In what country is Mandalay?
+Myanmar
+10
+
+In what country is the city of meerut where a famous mutiny began in 1857?
+India
+10
+
+In what country is the jutland peninsula located?
+Denmark
+10
+
+In what country is the nubian desert?
+Sudan
+10
+
+In what country is the Pageant of the Golden Tree celebrated?
+Belgium
+10
+
+In what country is the penina golf course?
+Portugal
+10
+
+In what country is the town of Liege?
+Belgium
+10
+
+In what country is the town of Limoges?
+France
+10
+
+In what country is the world court located?
+Holland
+10
+
+In what country is the worlds biggest national park?
+Canada
+10
+
+In what country is Timbuktu?
+Mali
+10
+
+In what country is Vorder-Grauspitz the highest point?
+Liechtenstein
+10
+
+In what country is Wemperhardt the highest point?
+Luxembourg
+10
+
+In what country was Anneka Rice born?
+Wales
+10
+
+In what country was aspirin invented?
+Germany
+10
+
+In what country was Erik Rotheim, the inventor of the aerosol can, born in?
+Norway
+10
+
+In what country was the battle of El Alamein?
+Egypt
+10
+
+In what country was the first jet flown?
+Germany
+10
+
+In what country was volleyball invented?
+France
+10
+
+In what country were cosmetics first used?
+Egypt
+10
+
+In what country were the 1948 summer olympics held?
+England
+10
+
+In what country were the 1964 Summer Olympics held?
+Japan
+10
+
+In what country will you find 5-pin bowling?
+Canada
+10
+
+In what country would you find a geisha girl?
+Japan
+10
+
+In what country would you find New Brunswick?
+Canada
+10
+
+In what country would you find the city of tombouctou?
+Mali
+10
+
+In what country would you find the Indus River?
+India
+10
+
+In what country would you find the world's largest pyramid?
+Mexico
+10
+
+In what country would you find the Zagros Mountains?
+Iran
+10
+
+In what country would you find timbouctou?
+Mali
+10
+
+In what country would you see Ayers Rock?
+Australia
+10
+
+In what decade did Peter Paul Halijian develop his first candy bar?
+1920s
+10
+
+In what decade was the thirty miles per hour speed limit in built-up areas introduced in Britain?
+1930s
+10
+
+In what did ray walston play 'uncle tim'?
+My favourite martian
+10
+
+In what did someone squish her hands to make the sound of e.t walking?
+Jelly
+10
+
+In what direction do all rivers flow?
+Downhill
+10
+
+In what direction does the nile river flow?
+North
+10
+
+In what do monotheists believe?
+One god
+10
+
+In what does a rhinologist specialise?
+Noses
+10
+
+In what does an archer carry his arrows?
+Quiver
+10
+
+In what does michael jackson sleep?
+A cryochamber
+10
+
+In what does the fda allow an average of 30 insect fragments and 1 rodent hair per 100 grams?
+Peanut butter
+10
+
+In what epic film did Charles laughton play quasimodo?
+The hunchback of notre
+10
+
+In what event did singapore win a silver medal in the olympics?
+Weightlifting
+10
+
+In what famous poem does killing an albatross cause disaster?
+Rime of the ancient mariner
+10
+
+In what famous sci fi flick did an einsteinlike scientist say to a space alien 'sit down. i have several thousand questions i'd like to ask you?
+Day the earth stood still
+10
+
+In what field did Frances Mary Buss and Dorothea Beale become well known in the 19th Century?
+Girls higher education
+10
+
+In what field did julia make her career in the sitcom julia?
+Nursing
+10
+
+In what field did Walter Gropius achieve fame?
+Architecture
+10
+
+In what field is romuald rat a well-known name?
+Paparazzi photographer
+10
+
+In what field of study are 'flying buttresses'?
+Architecture
+10
+
+In what field was Erie Shipton famous?
+Mountaineering
+10
+
+In what field was Terence Donovan famous?
+Photography
+10
+
+In what field were Louis Daguerre and William Henry Fox-Talbot pioneers?
+Photography
+10
+
+In what Florida city was the ibm pc conceived?
+Boca raton
+10
+
+In what form are the signals that a normal TV aerial receives?
+Analogue
+10
+
+In what form of government do paid officials exercise controlling influence?
+Bureaucracy
+10
+
+In what fortress can the Scottish crown jewels be found?
+Edinburgh castle
+10
+
+In what game are the terms: - tables, points and bearing off used?
+Backgammon
+10
+
+In what game does the New York institute for the investigation of rolling spheroids specialize?
+Marbles
+10
+
+In what game does the player use a cesta to hurl a pelota?
+Jai alai
+10
+
+In what game is the 'pick 'n roll'?
+Basketball
+10
+
+In what game might you collect a pung of east winds?
+Mahjongg
+10
+
+In what game/sport are the terms 'spare' and 'gutter' used?
+Bowling
+10
+
+In what guise did god first talk to moses?
+Burning bush
+10
+
+In what Indian city is Dum Dum airport?
+Calcutta
+10
+
+In what Indian city would you find the taj mahal?
+Agra
+10
+
+In what is ammonia the active ingredient?
+Smelling salts
+10
+
+In what is food surrounded with dry, hot, circulated air?
+Convection oven
+10
+
+In what is Midway island midway?
+The pacific ocean
+10
+
+In what is the diameter of wool measured?
+Microns
+10
+
+In what is zaire the world leader?
+Cobalt mining
+10
+
+In what island group is Corregidor?
+Philippines
+10
+
+In what Italian city was Florence Nightingale born?
+Florence
+10
+
+In what jurisdiction was elroy p lobo sheriff?
+Orly county georgia
+10
+
+In what key do American car horns beep?
+F
+10
+
+In what key is the dialtone of a telephone?
+F
+10
+
+In what kind of building did Miss Marple solve her first murder?
+A vicarage
+10
+
+In what kind of buildings are hops dried?
+Oast house
+10
+
+In what kind of restaurant might you be offered 'kulfi' as a dessert?
+Indian
+10
+
+In what kind of tree would one find a Kookaburra sitting in?
+Gum Tree
+10
+
+In what language is the gutenberg bible printed?
+Latin
+10
+
+In what language is the Magna Carta written?
+Latin
+10
+
+In what language was bambi originally published?
+German
+10
+
+In what language was the poem Beowulf written?
+Anglo-saxon
+10
+
+in what languages except English did einstuerzende neubauten record 'blume'?
+French and Japanese
+10
+
+In what large southern us city can one find peachtree street?
+Atlanta, georgia
+10
+
+In what Mark Twain novel would one find a feud between the Grangerfords & the Shepherdsons?
+Huckleberry finn
+10
+
+In what material did Rene Lalique most famously work?
+Glass
+10
+
+In what material is Rene Lalique best remembered for his work?
+Glass
+10
+
+In what month did the queen accede to the throne?
+February
+10
+
+In what month is bastille day?
+July
+10
+
+In what mountain area did Rip Van Winkle fall asleep?
+Catskill mountains
+10
+
+In what New York City club did many famous vocalists get their start?
+Continental baths
+10
+
+In what novel do we find winston smith living in the nation of oceania and battling doublespeak and the thought police?
+1984
+10
+
+In what ocean is the Maldive Islands in?
+Indian
+10
+
+In what opera did cherubino serve count almaviva?
+Marriage of figaro
+10
+
+In what opera did count almaviva have a page named cherubino?
+Marriage of figaro
+10
+
+In what order left to right are the colours of the french flag?
+Blue,white and red
+10
+
+In what organ is the islands of langerhans found?
+Pancreas
+10
+
+In what part of the body are rabies injections given?
+Abdomen
+10
+
+In what precinct did barney miller work?
+Twelfth
+10
+
+In what prehistoric kingdom does 'alley oop' live?
+Moo
+10
+
+In what product's print ads did Brooke Shields, Kim Basinger, Cybill Shepherd, Jaclyn Smith and Cheryl Tiegs appear in as teenage models?
+Breck Shampoo
+10
+
+In what profession is a 'ruderal'?
+Gardening
+10
+
+In what professional sport did bob hope participate as packy east?
+Boxing
+10
+
+In what shaped ring does sumo wrestling take place?
+Circular
+10
+
+In what show does brady starr?
+Moesha
+10
+
+In what show does brandy starr?
+Moesha
+10
+
+In what song does john lennon find love is more than holding hands?
+If i fell
+10
+
+In what sort of boats did the viking travel?
+Longships
+10
+
+In what sort of landscape would you find an erg?
+Desert
+10
+
+In what sport did juan fangio win five world championships?
+Motor racing
+10
+
+In what sport did robert gamez win his first tournament in 1990?
+Golf
+10
+
+In what sport do teams compete for the Swaythling Cup?
+Men's table tennis
+10
+
+In what sport do toxophologists compete?
+Archery
+10
+
+In what sport do you need brooms and brushes?
+Curling
+10
+
+In what sport does one have luffing, gybing and bearing away?
+Yachting
+10
+
+In what sport is a 'chukka'?
+Polo
+10
+
+In what sport is a 'turkey'?
+Bowling
+10
+
+In what sport is a pommel horse used in?
+Gymnastics
+10
+
+In what sport is the arena 8 metres square?
+Karate
+10
+
+In what sport is the cy young trophy awarded?
+Baseball
+10
+
+In what sport is the danger flag yellow?
+Motor racing
+10
+
+In what sport is the Davis Cup awarded?
+Tennis
+10
+
+In what sport is the heisman trophy awarded?
+Football
+10
+
+In what sport is the term 'peloton' used?
+Bicycling
+10
+
+In what sport is the term 'terminal speed'?
+Drag racing
+10
+
+In what sport must you duck the boom in?
+Sailing
+10
+
+In what sport was eddie rickenbacker a top contender before ww ii?
+Auto racing
+10
+
+In what sport would a lure be used?
+Fishing
+10
+
+In what sport would you find a 'chukka'?
+Polo
+10
+
+In what sport would you use spikes and blocks?
+Athletics
+10
+
+In what state did the real mccoy's take place?
+California
+10
+
+In what state is flint the official gemstone?
+Ohio
+10
+
+In what state is Kennedy Space Center?
+Florida
+10
+
+In what state is mount lassen?
+California
+10
+
+In what state is the Alamo?
+Texas
+10
+
+In what state is the custer battlefield located?
+Montana
+10
+
+In what state is the theodore roosevelt national park?
+North dakota
+10
+
+In what state was ridgemont high, where there were fast times?
+California
+10
+
+In what state was the western gunsmoke set?
+Kansas
+10
+
+In what state will you find the Shirley Mountains?
+Wyoming
+10
+
+In what story did sherlock holmes make his debut?
+A study in scarlet
+10
+
+In what story would you find the headless horseman?
+Legend of sleepy hollow
+10
+
+In what subject did artist George Stubbs specialize?
+Horses
+10
+
+In what substance are eggs rich, which causes silver to tarnish?
+Sulphur
+10
+
+In what television series did miss usa, 1974 star?
+Wonder woman
+10
+
+In what time zone does louisiana fall?
+Central
+10
+
+In what town was the donna reed show set?
+Hilldale
+10
+
+In what town would you find lake quassapaug?
+Middlebury
+10
+
+In what track & field sport might you do the following - crouch, shift, thrust, & release?
+Shot put
+10
+
+In what TV programme was Benjamin Pearce a character?
+Mash
+10
+
+In what tv series did ron howard play richie?
+Happy days
+10
+
+In what tv series is sideshow bob?
+The simpsons
+10
+
+In what type of sport do you hit celluloid balls with a paddle?
+Table tennis
+10
+
+In what U S state can you visit Yosemite National Park?
+California
+10
+
+In what U S state was the philips head screwdriver invented?
+Oregon
+10
+
+In what U S state will you find Lake Winnebago?
+Wisconsin
+10
+
+In what unit is electrical current measured?
+Amperes
+10
+
+In what us city is baylor university located?
+Waco
+10
+
+In what us city is the 'cotton bowl' played?
+Dallas
+10
+
+In what us state is fort knox?
+Kentucky
+10
+
+In what us state is mount rushmore?
+South dakota
+10
+
+In what us state was the phillips head screwdriver invented?
+Oregon
+10
+
+In what us state would you find the black hills?
+South dakota
+10
+
+In what video game are you trying to regain your soul from Malebolgia?
+Spawn the eternal
+10
+
+In what winter sport does one lie on ones back?
+Luge
+10
+
+In what year did 'Challenger' explode?
+1987
+10
+
+In what year did 'The Searchers' have a hit record with Sweets for my Sweet?
+1963
+10
+
+In what year did a Boeing 737 crash on a UK motorway?
+1989
+10
+
+In what year did a Russian nuclear plant founded to be the most polluted spot on earth?
+1991
+10
+
+In what year did abraham lincoln issue the emancipation proclamation?
+1863
+10
+
+In what year did agatha christies play the mousetrap open in london?
+1952
+10
+
+In what year did Alaska become the 49th state of America?
+1959
+10
+
+In what year did alexander graham bell die?
+1922
+10
+
+In what year did alexander solzhenitsyn win the nobel peace prize?
+1974
+10
+
+In what year did Alvin Fisher invent the electric washing machine?
+1906
+10
+
+In what year did America declare independence?
+1776
+10
+
+In what year did America lose the coveted America's cup to Australia?
+1983
+10
+
+In what year did Anton van Leeuwenhoek discover bacteria?
+1683
+10
+
+In what year did Antonio Snider-Pellegrini define the continental drift theory?
+1858
+10
+
+In what year did Ascanio Sobrero develop nitroglycerin?
+1846
+10
+
+In what year did Austria abolish capitol punishment?
+1787
+10
+
+In what year did bette davis die?
+1989
+10
+
+In what year did Blaise Pascal invent the digital calculator?
+1642
+10
+
+In what year did bob marley release no woman no cry?
+1974
+10
+
+In what year did boris pasternak refuse the nobel prize?
+1958
+10
+
+In what year did Britain and France declare war on Germany?
+1939
+10
+
+In what year did Britain start using the Gregorian calendar?
+1752
+10
+
+In what year did cal ripken, jr., break the consecutive games record in major league baseball?
+1995
+10
+
+In what year did Carl Anderson discover the positron?
+1932
+10
+
+In what year did Charles Goodyear invent the vulcanization process of rubber?
+1839
+10
+
+In what year did Charles M. Hall invent aluminum manufacture, (by electrolytic action)?
+1866
+10
+
+In what year did Charles Richter invent the Richter scale?
+1935
+10
+
+In what year did Charles vl of france die?
+1422
+10
+
+In what year did Charles Wheatstone invent the microphone?
+1827
+10
+
+In what year did Christian Huygens invent the pendulum clock?
+1656
+10
+
+In what year did Christian Schonbein discover the ozone?
+1839
+10
+
+In what year did christmas become a U S national holiday?
+1890 
+10
+
+In what year did christopher columbus discover America?
+1492
+10
+
+In what year did Clarence Lillehie invent the first internal pacemaker?
+1957
+10
+
+In what year did Claude Minie invent the conical bullet?
+1849
+10
+
+In what year did Clyde Tombaugh discover the planet Pluto?
+1930
+10
+
+In what year did cugnot design the first steam powered carriage?
+1769
+10
+
+In what year did Denis Papin invent the pressure cooker?
+1679
+10
+
+In what year did Dr Felix Hoffman invent aspirin?
+1899
+10
+
+In what year did Einstein write to Roosevelt?
+1939
+10
+
+In what year did Elisha Otis invent the elevator?
+1852
+10
+
+In what year did Elmer Sperry invent the gyrocompass?
+1905
+10
+
+In what year did Enrico Fermi develop the first nuclear reactor?
+1942
+10
+
+In what year did Erik Rotheim invent the aerosol can?
+1926
+10
+
+In what year did Evangelista Torricelli invent the barometer?
+1643
+10
+
+In what year did Fleming discover penicillin?
+1928
+10
+
+In what year did francis pizarro land in south America?
+1532
+10
+
+In what year did franco come to power?
+1937
+10
+
+In what year did Francois Derosne invent the phosphorus match?
+1816
+10
+
+In what year did Freddie Mercury die?
+1991
+10
+
+In what year did Gail Borden invent condensed milk?
+1853
+10
+
+In what year did general wolfe defeat the french on the plains of abraham?
+1759
+10
+
+In what year did George Westinghouse invent the air brake?
+1868
+10
+
+In what year did Girolamo Fracastoro define the contagion theory?
+1546
+10
+
+IN what year did Henry Ford invent the moving assembly line?
+1913
+10
+
+In what year did Henry Seely invent the electric flat iron?
+1882
+10
+
+In what year did Hitlers army invade Poland?
+1939
+10
+
+In what year did Holland host the Olympic games?
+1928
+10
+
+In what year did Inigo Jones design the Queen's House at Greenwich?
+1616
+10
+
+In what year did isaac newton die?
+1727
+10
+
+In what year did jack benny die?
+1974
+10
+
+In what year did jackie robinson break the major league baseball's color barrier?
+1947
+10
+
+In what year did James Dean die?
+1955
+10
+
+In what year did james l of England die?
+1625
+10
+
+In what year did James Puckle invent the first generation machine gun?
+1718
+10
+
+In what year did Jean-Caude Killy win the Olympic grand slam?
+1968
+10
+
+In what year did joan of arc become a saint?
+1920
+10
+
+In what year did Johann Galle first discover the existence of Neptune?
+1846
+10
+
+In what year did John Browning invent the automatic rifle?
+1918
+10
+
+In what year did John Curtis invent chewing gum?
+1848
+10
+
+In what year did John Ericsson make the first realistic application of solar energy using parabolic solar reflector to drive caloric engine on steam boiler?
+1860
+10
+
+In what year did John Jacob Abel isolate adrenalin?
+1897
+10
+
+In what year did John Major become prime minister of the UK?
+1990
+10
+
+In what year did John Milne invent the first accurate seismograph?
+1880
+10
+
+In what year did John Napier invent the calculating machine?
+1614
+10
+
+In what year did Joseph Aspdin invent cement?
+1824
+10
+
+In what year did Joseph E. Glidden invent barbed wire?
+1873
+10
+
+In what year did Joseph Stalin die?
+1953
+10
+
+In what year did Karl Jansky receive the first radio noise signals from outer space?
+1931
+10
+
+In what year did kate winslett marry?
+1998
+10
+
+In what year did Kevin Costner play Whitney Houstons Bodyguard?
+1991
+10
+
+In what year did Kirchhoff & Bunsen invent spectrum analysis?
+1859
+10
+
+In what year did Krakatoa erupt?
+1883
+10
+
+In what year did leonardo da vinci die?
+1519
+10
+
+In what year did Louis Lenormand invent the parachute?
+1783
+10
+
+In what year did Louis Pasteur invent rabies immunization?
+1885
+10
+
+In what year did Martin Luther King Jr. win the Nobel Peace Prize?
+1964
+10
+
+In what year did marvin gaye die?
+1984
+10
+
+In what year did Melville R Bissell invent the carpet sweeper?
+1876
+10
+
+In what year did Mickey Mouse first appearing in the Sunday comics?
+1932
+10
+
+In what year did Mount St. Helens erupt?
+1980
+10
+
+In what year did Mussolini resign?
+1943
+10
+
+In what year did napoleon become emperor of france?
+1804
+10
+
+In what year did national geographic magazine start?
+1888
+10
+
+In what year did North Korea invade South Korea?
+1950
+10
+
+In what year did olga korbut win three olympic gold medals?
+1972
+10
+
+In what year did Pope Urban VIII threaten to excommunicate snuff users?
+1924
+10
+
+In what year did Princess Anne compete in the olympics?
+1976
+10
+
+In what year did Queen Elizabeth II turn 21?
+1947
+10
+
+In what year did quen elizabeth ll go through the channel tunnel?
+1994
+10
+
+In what year did RCA invent the compact disk?
+1972
+10
+
+In what year did Rene Laennec invent the stethoscope?
+1819
+10
+
+In what year did rhodesia declare independence?
+1965
+10
+
+In what year did Richard J Gatling invent the second generation machine gun?
+1861
+10
+
+In what year did Robert GToddard invent the liquid-fuelled rocket?
+1926
+10
+
+In what year did robert houdini the french conjurer die?
+1871
+10
+
+In what year did robert the bruce die?
+1329
+10
+
+In what year did rodger maris hit 61 home runs?
+1961
+10
+
+In what year did Roger Bannister run the 4 minute mile?
+1954
+10
+
+In what year did Russia become a communist country?
+1917
+10
+
+In what year did Samuel Colt invent the revolver?
+1835
+10
+
+In what year did samuel colt patent his revolver?
+1835
+10
+
+In what year did Schuyler Wheeler invent the electric fan?
+1882
+10
+
+In what year did Sir Ernest Swinton invent the military tank?
+1914
+10
+
+In what year did Sir Robert Watson-Watt invent the first practical radar?
+1934
+10
+
+In what year did skateboards first appear?
+1962
+10
+
+In what year did social reformer George Williams found the YMCA?
+1844
+10
+
+In what year did Sonny and Cher have a hit with 'I got you babe'?
+1965
+10
+
+In what year did Steve Davis win the World Snooker Championship?
+1981
+10
+
+In what year did sychronized swimming first appear in the Olympics?
+1984
+10
+
+In what year did the author daniel defoe die?
+1731
+10
+
+In what year did The Bayer company begin marketing heroin?
+1898
+10
+
+In what year did the Cold War begin?
+1946
+10
+
+In what year did the first woman go into space?
+1963
+10
+
+In what year did the German government relocate to Berlin?
+1999
+10
+
+In what year did the Hindenburg crash/burn?
+1937
+10
+
+In what year did the Japanese radiation leak occur?
+1999
+10
+
+In what year did the Lockerbie disaster occur?
+1988
+10
+
+In what year did the Post Office introduce ZIP codes to speed up mail delivery?
+1963
+10
+
+In what year did the space shuttle challenger explode killing the crew?
+1986
+10
+
+In what year did the Spanish armada set sail for England?
+1588
+10
+
+In what year did the Uk group Amen Corner have a hit album called Explosive Company?
+1969
+10
+
+In what year did the US death toll in Vietnam first exceed that in Korea?
+1969
+10
+
+In what year did the US enter WW1?
+1917
+10
+
+In what year did the us enter wwii?
+1941
+10
+
+In what year did the us transcontinental telephone line open for service?
+1914
+10
+
+In what year did the winter and summer Olympic games switch from being in the same year to 2 years apart?
+1992
+10
+
+In what year did the World Cup Finals take place in Mexico?
+1986
+10
+
+In what year did Thomas Kibble first postulate the cosamic theory?
+1976
+10
+
+In what year did TLC have a hit with 'Creep'?
+1995
+10
+
+In what year did two monkeys go into space?
+1959
+10
+
+In what year did ussr launch the first satellite?
+1957
+10
+
+In what year did Virginia Wade beat Chris Evert at Wimbledon?
+1977
+10
+
+In what year did Walter Hunt invent the safety pin?
+1849
+10
+
+In what year did Willard Libby discover radiocarbon dating?
+1947
+10
+
+In what year did Willard Libby first demonstrate radiocarbon dating?
+1950
+10
+
+In what year did William Harveyfound the knowledge of blood circulation?
+1628
+10
+
+In what year did William Oughtred invent the slide rule?
+1632
+10
+
+In what year did Willie Mays hit his 600th homerun?
+1969
+10
+
+In what year did Willis Carrier invent air conditioning?
+1911
+10
+
+In what year did work start on the first Channel Tunnel?
+1882
+10
+
+In what year did wwii star?
+1939
+10
+
+In what year does Meg Ryan fake her famous orgasm?
+1989
+10
+
+In what year is it now generally believed that Jesus was born?
+Four bc
+10
+
+In what year was 'buffalo bill' born?
+1846
+10
+
+In what year was 'Gulliver's Travel's' published?
+1726
+10
+
+In what year was 'Saccharin' discovered?
+1879
+10
+
+In what year was abraham lincoln assassinated?
+1865
+10
+
+In what year was Abraham Lincoln elected?
+1860
+10
+
+In what year was actress vanessa redgrave born?
+1937
+10
+
+In what year was alexander graham bell born?
+1847
+10
+
+In what year was anesthetic (ether) first used on humans?
+1842
+10
+
+In what year was Aspirin first developed?
+1853
+10
+
+In what year was Benjamin Spock's Baby and Childcare book published?
+1946
+10
+
+In what year was braille invented?
+1829
+10
+
+In what year was Churchill defeated?
+1945
+10
+
+In what year was Darwins 'Origin of the Species' published?
+1859
+10
+
+In what year was David hockney born?
+1937
+10
+
+In what year was dean martin born?
+1917
+10
+
+In what year was diet pepsi introduced?
+1965
+10
+
+In what year was Mount Everest first climbed?
+1953
+10
+
+In what year was fiber optics discovered by Narinder Kapany?
+1955
+10
+
+In what year was Fred Astaire born?
+1899
+10
+
+In what year was genetic fingerprinting invented?
+1984
+10
+
+In what year was golfer Seve Ballesteros born?
+1957
+10
+
+In what year was Greenpeace founded?
+1971
+10
+
+In what year was gunpowder invented?
+700
+10
+
+In what year was Guy Fawkes arrested?
+1605
+10
+
+In what year was handel's messiah composed?
+1741
+10
+
+In what year was hirohito crowned emperor of Japan?
+1928
+10
+
+In what year was houdini born?
+1874
+10
+
+In what year was insulin first used to treat diabetes?
+1922
+10
+
+In what year was insulin first used?
+1922
+10
+
+In what year was issac newton born?
+1642
+10
+
+In what year was jane fonda born?
+1937
+10
+
+In what year was Joan of Arc burned at the stake?
+1431
+10
+
+In what year was joan of arc burnt at the stake?
+1431
+10
+
+In what year was John F Kennedy married?
+1953
+10
+
+In what year was John Lennon shot?
+1980
+10
+
+In what year was Lech Waleska awarded the Nobel Peace Prize?
+1983
+10
+
+In what year was leonardo da vinci born?
+1452
+10
+
+In what year was liberia founded?
+1847
+10
+
+In what year was Lindbergh the first to fly solo across the Atlantic?
+1927
+10
+
+In what year was mahatma gandhi assasinated?
+1948
+10
+
+In what year was Micky Mouse created?
+1928
+10
+
+In what year was Mike Tyson jailed for rape?
+1992
+10
+
+In what year was nato formed?
+1949
+10
+
+In what year was Neptune discovered?
+1846
+10
+
+In what year was papyrus first made into paper...BC?
+2800
+10
+
+In what year was Pluto discovered?
+1930
+10
+
+In what year was princess margaret born?
+1930
+10
+
+In what year was rasputin assassinated?
+1916
+10
+
+In what year was Richard Nixon re-elected?
+1972
+10
+
+In what year was robert burns born?
+1759
+10
+
+In what year was Robert Oppenheimer born?
+1904
+10
+
+In what year was taiwan founded?
+1949
+10
+
+In what year was teflon invented?
+1943
+10
+
+In what year was the 'titanic' disaster?
+1912
+10
+
+In what year was the 'United Nations' formed?
+1946
+10
+
+In what year was the 50th star added to the flag of the U S A?
+1960
+10
+
+In what year was the author daniel defoe born?
+1660
+10
+
+In what year was the author sir arthur conan doyle born?
+1859
+10
+
+In what year was the ballistic missile invented?
+1944
+10
+
+In what year was the BASIC computer language introduced?
+1965
+10
+
+In what year was the Battle of Balaclava?
+1854
+10
+
+In what year was the Berlin blockade imposed?
+1948
+10
+
+In what year was the blockbuster film 'home alone' released?
+1990
+10
+
+In what year was the body shop founded?
+1976
+10
+
+In what year was the Boston tea party?
+1773
+10
+
+In what year was the British queen lady jane grey beheaded?
+1554
+10
+
+In what year was the camera invented by eastman (hint: 1800's)?
+1888
+10
+
+In what year was the car radio invented by William Lear and Elmer Wavering?
+1929
+10
+
+In what year was the CD-ROM invented?
+1983
+10
+
+In what year was the Central London Mosque opened?
+1978
+10
+
+In what year was the Chinese student revolt?
+1989
+10
+
+In what year was the COMPACT DISC invented?
+1979
+10
+
+In what year was the computer floppy disc introduced?
+1970
+10
+
+In what year was the computer mouse introduced?
+1983
+10
+
+In what year was the crossbow invented?
+300 b c
+10
+
+In what year was the drug LSD discovered?
+1943
+10
+
+In what year was the electric transformer invented?
+1885
+10
+
+In what year was the European Space Agency's satellite destoyed by a meteor?
+1993
+10
+
+In what year was the fermentation process discovered by Louis Pasteur?
+1860
+10
+
+In what year was the film 'Escape from Alcatraz released'?
+1979
+10
+
+In what year was the film the horse whisperer released?
+1998
+10
+
+In what year was the film The Sons of Katie Elder released?
+1965
+10
+
+In what year was the first all American soap box derby held?
+1934
+10
+
+In what year was the first Australian cricket tour to England?
+1868
+10
+
+In what year was the first bifocal lens developed?
+1760
+10
+
+In what year was the first car with gears produced?
+1891
+10
+
+In what year was the first commercial opera house opened?
+1637
+10
+
+In what year was the first continuous stitch sewing machine invented?
+1851
+10
+
+In what year was the first cylinder lock developed?
+1851
+10
+
+In what year was the first gnu c++ compiler released to the public?
+1987
+10
+
+In what year was the first human heart transplant performed?
+1967
+10
+
+In what year was the first Kentucky derby run?
+1875
+10
+
+In what year was the first oil well invented?
+1859
+10
+
+In what year was the first public library in the UK opened?
+1847
+10
+
+In what year was the first safety razor successfully marketed?
+1901
+10
+
+In what year was the first sewing machine invented?
+1846
+10
+
+In what year was the first successful heart transplant operation performed by Dr Christian Barnard?
+1967
+10
+
+In what year was the first supersonic flight made by Charles yeager in his bell xi rocket plane?
+1947
+10
+
+In what year was the first synthetic plastic made?
+1908
+10
+
+In what year was the first talking movie 'The Jazz Singer' released?
+1927
+10
+
+In what year was the first telecommunications satellite launched?
+1962
+10
+
+In what year was the first test tube baby born?
+1978
+10
+
+In what year was the first tv commercial broadcast?
+1941
+10
+
+In what year was the game Monopoly invented?
+1929
+10
+
+In what year was the great San Francisco earthquake?
+1906
+10
+
+In what year was the helicopter invented?
+1939
+10
+
+In what year was the holograph invented?
+1947
+10
+
+In what year was the last manned moon landing?
+1972
+10
+
+In what year was the LCD first developed?
+1970
+10
+
+In what year was the lie detector invented?
+1921
+10
+
+In what year was the lift invented?
+1852
+10
+
+In what year was the louisiana purchase?
+1803
+10
+
+In what year was the MICROPRICESSOR invented?
+1971
+10
+
+In what year was the microwave oven invented?
+1947
+10
+
+In what year was the model t ford car first produced?
+1908
+10
+
+In what year was the mtv network founded?
+1981
+10
+
+In what year was the neurton first discovered?
+1932
+10
+
+In what year was the original woodstock celebration held?
+1969
+10
+
+In what year was the Panama Canal opened?
+1914
+10
+
+In what year was the planet pluto discovered?
+1930
+10
+
+In what year was the POLAROID CAMERA invented?
+1948
+10
+
+In what year was the song moon river recorded?
+1961
+10
+
+In what year was the st. lawrence seaway completed?
+1959
+10
+
+In what year was the Star Spangled Banner made the US National Anthem?
+1931
+10
+
+In what year was the SUEZ CANAL opened?
+1869
+10
+
+In what year was the Taj Mahal finished?
+1658
+10
+
+In what year was the tape recorder invented?
+1899
+10
+
+In what year was the telephone invented by Alexander Graham Bell?
+1876
+10
+
+In what year was the telephone invented?
+1876
+10
+
+In what year was the telephone patented?
+1876
+10
+
+In what year was the tomb of Tutenkamun found?
+1922
+10
+
+In what year was the U S transcontinental railway completed?
+1869
+10
+
+In what year was the US atomic submarine Nautilus launched?
+1954
+10
+
+In what year was the us constitution ratified?
+1787
+10
+
+In what year was the US stock market crash?
+1929
+10
+
+In what year was the winter olympics changed to be 2years after the summer olympics instead of in the same year?
+1994
+10
+
+In what year was the world's first cash dispenser installed?
+1967
+10
+
+In what year was the world's first speed limit regulation introduced?
+1903
+10
+
+In what year was the world's first test tube bay born in Britain?
+1978
+10
+
+In what year was the X-ray discovered?
+1895
+10
+
+In what year was theodore roosevelt elected president?
+1901
+10
+
+In what year was Toto Schillaci top scorer in the World Cup Finals?
+1990
+10
+
+In what year was Trotsky murdered?
+1940
+10
+
+In what year was ufo formed?
+1970
+10
+
+In what year was UNIX created?
+1970
+10
+
+In what year was Walt Disney's snow white and the seven dwarfs first shown?
+1937
+10
+
+In what year was Walter Raleigh born?
+1552
+10
+
+In what year were cosmetics first used?
+4000 b c
+10
+
+In what year were neon lights invented?
+1911
+10
+
+In what year were radiohead formed?
+1991
+10
+
+In what year were safty matches patented?
+1855
+10
+
+In what year were Swiss women first allowed to vote?
+1971
+10
+
+In what year were the first dot matrix printers marketed?
+1957
+10
+
+In what year were the Olympics marred by the massacre of eleven Israeli athletes?
+1972
+10
+
+In what year were the population of Naples dusted with DDT to kill lice?
+1943
+10
+
+In what year were the salem witch trials?
+1692
+10
+
+In what year were the Winter Olympics re-adjusted to take place midway between summer games instead of being in the same year?
+1994
+10
+
+In what year were women first allowed to compete in the olympics?
+1928
+10
+
+In which country would you be if you were at the farthest point in the world from the sea?
+China
+10
+
+In which James Bond film does the villain cheat at golf?
+Goldfinger
+10
+
+In which 1916 film did seena owen play?
+Intolerance
+10
+
+In which 1932 film does marlene dietrich play the prostitute shanghai lil?
+Shanghai express
+10
+
+In which 1945 film did humphrey bogart play a martinique bar-owner who was opposing the nazis?
+To have and have not
+10
+
+In which 1945 film starring Lauren Bacall, did Humphrey Bogart play a Martinique bar-owner who was opposing the Nazis?
+To have and have not
+10
+
+In which 1949 film do Spencer Tracy and Katherine Hepbum play, married opposing lawyers in an attempted murder trial?
+Adam's rib
+10
+
+In which 1949 film do spencer tracy and katherine hepbum play, married opposing lawyers?
+Adam's rib
+10
+
+In which 1949 film does Alec Guinness portray 8 members of the D'Ascoyne family?
+Kind hearts and coronets
+10
+
+In which 1952 film, directed by john ford, did the character sean thornton appear?
+The quiet man
+10
+
+In which 1955 play did Humphrey Bogart make his sole T.V. appearance?
+The Petrified Forest
+10
+
+In which 1968 film did the husband of an unsuspecting wife become involved with a witches coven?
+Rosemary's baby
+10
+
+In which 1970's us soap did actor john forsythe star as 'blake carrington'?
+Dynasty
+10
+
+In which 1970's US TV show would you meet the characters 'Radar' and 'Hot Lips'?
+-- Answer metadata begin
+{
+    "answers": ["Mash", "M*A*S*H"]
+}
+-- Answer metadata end
+10
+
+In which 1971 film did Jane Fonda play a prostitute fearing for her life?
+Klute
+10
+
+In which 1972 film was Paul Newman almost upstaged by a beer drinking bear?
+The life and times of judge roy bean
+10
+
+In which 1973 film did Yul Brynner play an indestructible robot gunslinger?
+Westworld
+10
+
+In which 1974 disaster movie did fireman steve mcqueen need a long ladder?
+The towering inferno
+10
+
+In which 1975 film does Richard Dreyfuss paly a marine biologist called 'Hooper'?
+Jaws
+10
+
+In which 1975 film does richard dreyfuss play a marine biologist called 'hooper'?
+Jaws
+10
+
+In which 1975 smash hit film did the male star own a fishing boat called Orca?
+Jaws
+10
+
+In which 1992 film was Kevin Costner hired to look after Whitney Houston?
+The bodyguard
+10
+
+In which 1999 film was Anna Scott the world's most famous film star in London when she met bookseller William Thacker?
+Notting hill
+10
+
+In which 20th century decade was the first angle-poise lamp sold?
+1930's
+10
+
+In which 20th-century decade was Barbie's boyfriend Ken first made?
+60s
+10
+
+In which actual city is the television series Casualty filmed?
+Bristol
+10
+
+In which African city & country do the white Nile & blue Nile converge?
+Khartoum, sudan
+10
+
+In which African country is the city of Bulawayo?
+Zimbabwe
+10
+
+In which African country would you find the towns of Kumasi and Cape?
+Ghana
+10
+
+In which alcoholic spirit might you find a worm in the bottle?
+Tequila
+10
+
+In which alpine resort were the first ever Winter Olympics held in 1924?
+Chamonix
+10
+
+In which American city can the Liberty Bell be found?
+Philadelphia
+10
+
+In which American city is the film minority report set?
+Washington dc
+10
+
+In which American state are the towns of anaconda, moscow and also the salmon river?
+Idaho
+10
+
+In which American state are Toledo, Cincinnati and Dayton?
+Ohio
+10
+
+In which American state is Baltimore?
+Maryland
+10
+
+In which American state is Cincinnati?
+Ohio
+10
+
+In which American state is it illegal to cross state lines with a duck on your head?
+Minnesota
+10
+
+In which American state is Pittsburgh?
+Pennsylvania
+10
+
+In which American state is San Antonio?
+Texas
+10
+
+In which American state is stanford university'?
+California
+10
+
+In which American state is the Three Mile Island nuclear reactor?
+Pennysilvania
+10
+
+In which American state was the first atomic bomb test carried out in july 1945?
+New Mexico
+10
+
+In which American state would you find the gold depository at fort knox?
+Kentucky
+10
+
+In which andrew lloyd-webber did madonna take part?
+Evita
+10
+
+In which art form was Donald Mcgill a specialist in the early 20th century?
+Postcards
+10
+
+In which asian country did the long march take place in the 1930's?
+China
+10
+
+In which Australian city do The Sullivans go on and on and on and on?
+Melbourne
+10
+
+In which Australian state is gundagai?
+New south wales
+10
+
+In which Australian State is Kalgoorlie?
+Western Australia
+10
+
+In which Australian State is Wagga Wagga?
+New south wales
+10
+
+In which Australian state or territory is the Flinders Range and Lake Eyre?
+South Australia
+10
+
+In which Australian state or territory is the Kimberley Plateau and Eighty Mile Beach?
+Western Australia
+10
+
+In which battle did Davy Crockett die in 1836. The Battle for...?
+The Alamo
+10
+
+In which battle of 1571 did the combined Spanish and Venetian forces defeat the Turkish navy?
+Lepanto
+10
+
+In which battle of 1709 did the allied English army under Marlborough defeat French force led by Marshal Villars?
+Malplaquet
+10
+
+In which battle was King Harold killed?
+Hastings
+10
+
+In which battle were 4 Japanese carriers destroyed?
+Midway
+10
+
+In which bay will you find the Belcher Islands?
+Hudson
+10
+
+In which black township near Johannesburg was there a massacre in March 1960?
+Sharpeville
+10
+
+In which body of water are the Turks & Caicos Islands?
+Caribbean Sea
+10
+
+In which body of water is Haiti?
+Caribbean sea
+10
+
+In which book did the heroine serve as governess to the ward of the mysterious and moody edward rochester?
+Jane eyre
+10
+
+In which book did the Hispaniola feature?
+Treasure island
+10
+
+In which book is 'big brother'?
+1984
+10
+
+In which book of the bible are the Ten Commandments first listed?
+Exodus
+10
+
+In which book of the New Testament is Armageddon named as the gathering place of the Day of Judgement?
+Revelations
+10
+
+In which branch of maths do you get the result of zero when you add the sides of a triangle?
+Vectors
+10
+
+In which British city are the constituencies of Wavertree, Garston and riverside?
+Liverpool
+10
+
+In which British city would you find Murrayfield stadium?
+Edinburgh
+10
+
+In which British comedy film did Kevin Kline win the Oscar for Best Supporting Actor in 1988?
+A fish called wanda
+10
+
+In which British country are the Brecon Beacons?
+Wales
+10
+
+In which British county is Bishop Auckland?
+Durham
+10
+
+In which British county is the land of the Prince Bishops?
+County durham
+10
+
+In which British film can you hear the song you sexy thing?
+The full monty
+10
+
+In which British town did Michael Ryan run riot killing 14 people?
+Hungerford
+10
+
+In which British town is the Lowry centre?
+Salford
+10
+
+In which British town or city is there a Bridge of sighs?
+Cambridge
+10
+
+In which building did the funeral of Princess Diana take place?
+Westminster abbey
+10
+
+In which building in Washington d.c. does the united states congress meet?
+The capitol
+10
+
+In which California city does poltergeist take place?
+Cuesta verde
+10
+
+In which Canadian province is the capital named Fredericton?
+New brunswick
+10
+
+In which Canadian province is the capital named Halifax?
+Nova scotia
+10
+
+In which Canadian province is the capital named Regina?
+Saskatchewan
+10
+
+In which Canadian province is the capital named Toronto?
+Ontario
+10
+
+In which Canadian province would you find the SkyDome?
+Ontario
+10
+
+In which Carry On film did Richard O'Brien of Rocky Horror fame appear as an extra?
+Carry on cowboy
+10
+
+In which carry on film did Richard o` Brien appear as an extra?
+Carry on cowboy 
+10
+
+In which cartoon series did the chartacter 'snagglepuss' first appear?
+Yogi bear
+10
+
+In which Cathedral is Jane Austen buried?
+Winchester
+10
+
+In which century did Marco Polo first travel to China?
+-- Answer metadata begin
+{
+    "answers": ["13th", "thirteenth"]
+}
+-- Answer metadata end
+10
+
+In which century did pagan Midwinter feast become Christain christmas?
+The ninth century
+10
+
+In which century did Sir Martin Frobisher discover and name Frobisher Bay in the Arctic Ocean?
+16th century
+10
+
+In which century was margarine invented?
+19th
+10
+
+In which century was Sir Isaac Newton born?
+17th
+10
+
+In which century was the first skyscraper built?
+19th
+10
+
+In which century was the Ming Dynasty founded in China?
+Fourteenth
+10
+
+In which century was the poet robert frost born?
+Nineteenth
+10
+
+In which Charles dickens novel does herbert pocket appear?
+Great expectations
+10
+
+In which Charles Dickens' novel do the characters, Mrs Pardiggle and the Jarndyce family appear?
+Bleak house
+10
+
+In which Chinese city is the Terracotta Army?
+Xian
+10
+
+In which Chinese city is the tomb of Sun Yat Sen?
+Nanking
+10
+
+In which city are the Headquarters of INTERPOL located?
+Lyons
+10
+
+In which city are the Headquarters of OPEC located?
+Vienna
+10
+
+In which city did Inspector Taggart operate?
+Glasgow
+10
+
+In which city did Roger Bannister become the first athlete to run a mile in under 4 mins?
+Oxford
+10
+
+In which city did steve redgraves win his first gold medal?
+Los angeles
+10
+
+In which city did the 1998 Tour de France cycle race begin?
+Dublin
+10
+
+In which city did Zlata Filipovic write a diary in the 1990's which began just before her 11th birthday?
+Sarajevo
+10
+
+In which city do the golden state warriors play their home games?
+Oakland
+10
+
+In which city does Rocky live in the film of the same name?
+Philadelphia
+10
+
+In which city is Britain's Royal Observatory located?
+Greenwich
+10
+
+In which city is De Montfort University?
+Leicester
+10
+
+In which city is jan smuts airport?
+Johannesburg
+10
+
+In which city is lion's gate bridge?
+Vancouver
+10
+
+In which city is Napier University?
+Edinburgh
+10
+
+In which city is the Alhambra Palace?
+Granada
+10
+
+In which city is the Blue Mosque?
+Istanbul
+10
+
+In which city is the Colisseum located?
+Rome
+10
+
+In which city is the Colliseum located?
+Rome
+10
+
+In which city is the eastern terminus of the Trans-Siberian railway?
+Vladivostock
+10
+
+In which city is the Eiffel Tower?
+Paris
+10
+
+In which city is the Empire State Building?
+New york
+10
+
+In which city is the encyclopaedia britannica based and published today?
+Chicago
+10
+
+In which city is the European Court of Justice located?
+Luxembourg
+10
+
+In which city is the grande canal?
+Venice
+10
+
+In which city is the Grosvenor Museum situated?
+Chester
+10
+
+In which city is the hockey hall of fame located?
+Toronto, Canada
+10
+
+In which city is the horse race the Palio run?
+Sienna
+10
+
+In which city is the Kaaba, the holy muslim building?
+Mecca
+10
+
+In which city is the Prater funfair?
+Vienna
+10
+
+In which city is the Sistine Chapel?
+Rome
+10
+
+In which city is the street that winds the most?
+San francisco
+10
+
+In which city is the sugar bowl played?
+New orleans
+10
+
+In which city was Abraham born?
+Ur
+10
+
+In which city was Gianni Versace shot dead?
+Miami
+10
+
+In which city was Michael Hutchence found dead?
+Sydney
+10
+
+In which city was Mozart born?
+Salzburg
+10
+
+In which city was the 'skyscraper' invented in 1885?
+Chicago
+10
+
+In which city was the American live aid concert held?
+Philadelphia
+10
+
+In which city was the communist party set up in 1848?
+London
+10
+
+In which city was the first of the Rocky films shot?
+Philadelphia
+10
+
+In which city was the White Star liner 'Titanic' built?
+Belfast
+10
+
+In which city was the worlds first underground railway?
+London
+10
+
+In which city were the 1928 summer olympic games held?
+Amsterdam
+10
+
+In which city were the 1932 summer olympic games held?
+Los angeles
+10
+
+In which city were the Equestrian events held in the 1956 Olympics?
+Stockholm
+10
+
+In which city were the hanging garden?
+Babylon
+10
+
+In which city were the summer Olympic Games of 1900 held?
+Paris
+10
+
+In which city where the 1956 Olymipic games staged?
+Melbourne
+10
+
+In which city will you find the Spanish riding school?
+Vienna
+10
+
+In which city would you find a district called Hells Kitchen?
+New york
+10
+
+In which city would you find anne franks house?
+Amsterdam
+10
+
+In which city would you find the Hancock Tower and Filene's bargain basement?
+Boston, mass
+10
+
+In which city would you find the Wailing Wall?
+Jerusalem
+10
+
+In which city would you find tuff gong international studios, built by the late bob marley?
+Kingston
+10
+
+In which city would you have been spending your 1505 summer holiday if you had bumped into Michelangelo and Leonardo da Vinci?
+Florence
+10
+
+In which city, other than New York, would you find the Statue of Liberty?
+Paris
+10
+
+In which classic western film did the character will kane appear?
+High noon
+10
+
+In which comedy is the famous scene of marilyn monroe's white dress billowing up while she stands on a subway grating?
+Seven year itch
+10
+
+In which comic did Dan Dare originally appear?
+The eagle
+10
+
+In which Commonwealth country is Cobra beer brewed?
+India
+10
+
+In which Commonwealth country is Waitangi Day the national day?
+New Zealand
+10
+
+In which constellation are the Seven Sisters?
+Taurus
+10
+
+In which constellation is the first magnitude, giant star Aldebaran?
+Taurus
+10
+
+In which constellation is the night's brightest star, Sirius?
+Canis major
+10
+
+In which constellation is the star cluster Pleiades?
+Taurus
+10
+
+In which continent did the passion fruit originate?
+South America
+10
+
+In which continent is Mt Erebus?
+Antarctica
+10
+
+In which continent is the country of Benin?
+Africa
+10
+
+In which continent would you find the ob' river?
+Asia
+10
+
+In which counrty were the Mau-mau active?
+Kenya
+10
+
+In which country are 'fajitas' a traditional dish?
+Mexico
+10
+
+In which country are Cape Otway, Mount Gambier, and the Grampian Mountains?
+Australia
+10
+
+In which country are Mariachi bands traditional?
+Mexico
+10
+
+In which country are men legally allowed to have sex with animals?
+Lebanon
+10
+
+In which country are the mountains that Ptolemy named the Mountain of the Moon?
+Uganda
+10
+
+In which country are the remains of the Mycenaean culture?
+Greece
+10
+
+In which country are the Southern Alps?
+New zealand
+10
+
+In which country are the Transylvanian Alps?
+Romania
+10
+
+In which country are twins usually called taiwo and kehinde?
+Nigeria
+10
+
+In which country could you buy a chocolate bar called plopp?
+Sweden
+10
+
+In which country did Alexander the Great mount his great campaign of 327-325 BC?
+India
+10
+
+In which country did Arthur C Clarke make his home?
+Sri lanka
+10
+
+In which country did france carry out its first nuclear test?
+Algeria
+10
+
+In which country did Ned Kelly become an outlaw?
+Australia
+10
+
+In which country did orienteering originate?
+Sweden
+10
+
+In which country did the ancient Olmecs live?
+Mexico
+10
+
+In which country did the battle of plassey in 1756 take place?
+India
+10
+
+In which country did the boer wars take place?
+South africa
+10
+
+In which country did the drink Saki originate?
+Japan
+10
+
+In which country did the gallipoli campaign take place?
+Turkey
+10
+
+In which country did the industrial revolution start?
+England
+10
+
+In which country did the R101 airship make its maiden flight?
+England
+10
+
+In which country did the rumba originate?
+Cuba
+10
+
+In which country did the samba originate?
+Brazil
+10
+
+In which country did the Satsuma Rebellion occur?
+Japan
+10
+
+In which country did the wartime Anzio Landings take place?
+Italy
+10
+
+In which country do the Ashanti people live in the Province of Ashanti?
+Ghana
+10
+
+In which country do the indri and sifaka lemurs live?
+Madagascar
+10
+
+In which country do the Khmer people live?
+Cambodia or kampuchea
+10
+
+In which country do the Sinhala people live?
+Sri lanka
+10
+
+In which country do the women of the Padaung wear 20 pounds of brass rings around their neck?
+Burma
+10
+
+In which country does bribery turn most rife?
+Russia
+10
+
+In which country does the Henley-Todd Regatta take place?
+Australia
+10
+
+In which country does the serengeti lie?
+Tanzania
+10
+
+In which country is A Midsummer Nights Dream dreamed?
+Greece
+10
+
+In which country is Brest?
+France
+10
+
+In which country is Bukhara?
+Usbekistan
+10
+
+In which country is cludeos colonel mustard known as madame curry?
+Switzerland
+10
+
+In which country is Cluedos Col Mustard known as Madame Curry?
+Switzerland
+10
+
+In which country is dominion day celebrated?
+Canada
+10
+
+In which country is Gander airport?
+Canada
+10
+
+In which country is HoChi Minh City?
+Vietnam
+10
+
+In which country is innsbruck?
+Austria
+10
+
+In which country is Mount Ossa?
+Greece
+10
+
+In which country is Pravda a newspaper?
+Russia
+10
+
+In which country is Schiphol airport?
+Netherlands
+10
+
+In which country is Shinto one of the major religions?
+Japan
+10
+
+In which country is the Atacama Desert where rain has never fallen?
+Chile
+10
+
+In which country is the Banff National Park?
+Canada
+10
+
+In which country is the capital named Ottawa?
+Canada
+10
+
+In which country is the cheese Bolbo produced?
+France
+10
+
+In which country is the cheese Tome produced?
+Denmark
+10
+
+In which country is the chief range of Drakensberg Mountains?
+South africa
+10
+
+In which country is the city of Mandalay?
+Burma
+10
+
+In which country is the city of Omdurman?
+Sudan
+10
+
+In which country is the city of Samarkand?
+Uzbekistan
+10
+
+In which country is the Fiordland National Park?
+New zealand
+10
+
+In which country is the fortress of Sacsahuaman?
+Peru
+10
+
+In which country is the highest european waterfall?
+Ormeli, norway
+10
+
+In which country is the Itatinga waterfall?
+Brazil
+10
+
+In which country is the Laurentian Shield?
+Canada
+10
+
+In which country is the lazio region?
+Italy
+10
+
+In which country is the Masai Mara game reserve?
+Kenya
+10
+
+In which country is the pilgrim centre of Fatima?
+Portugal
+10
+
+In which country is the port of Chittagong?
+Bangladesh
+10
+
+In which country is the port of fray bentos?
+Uruguay
+10
+
+In which country is the port of Stravangar?
+Norway
+10
+
+In which country is the seaport of Trabzon, or Trebizond?
+Turkey
+10
+
+In which country is the site of the Battle of Waterloo?
+Belgium
+10
+
+In which country is the style of beer called LAMBIC brewed?
+Belgium
+10
+
+In which country is the town originally called Angostura, a place which gave its name to a herbal bitter drink?
+Venezuela
+10
+
+In which country is the Tv news agency Visnews based?
+England
+10
+
+In which country is the US naval base of Guantanamo?
+Cuba
+10
+
+In which country is the volcano cotopaxi?
+Ecuador
+10
+
+In which country is the volcano popocatepetl?
+Mexico
+10
+
+In which country is the wine Liebfraumilch produced?
+Germany
+10
+
+In which country is the world's highest capital?
+Bolivia
+10
+
+In which country is the world's most southern capital?
+New zealand
+10
+
+In which country is Timbuktu?
+Mali
+10
+
+In which country is Tobruk, scene of heavy fighting during WW2?
+Libya
+10
+
+In which country originated Spaghetti?
+China
+10
+
+In which country was Bjorn Borg born?
+Sweden
+10
+
+In which country was block printing first used?
+Japan
+10
+
+In which country was England cricket captain Nasser Hussain born?
+India 
+10
+
+In which country was Europes first motorway built?
+Germany
+10
+
+In which country was Ferdinand Porsche born?
+Austria
+10
+
+In which country was film star ray milland born?
+Wales
+10
+
+In which country was former Nazi officer Klaus Barbie arrested?
+Bolivia
+10
+
+In which country was Graham Greene's novel 'A Burnt Out Case' set?
+Belgian Congo
+10
+
+In which country was guitarist Django Reinhardt born?
+Belgium
+10
+
+In which country was Lord Beaverbrook born?
+Canada
+10
+
+In which country was Nelson Piquet born?
+Brazil
+10
+
+In which country was paper first used?
+China
+10
+
+In which country was Pilsner beer originally brewed?
+Czech republic
+10
+
+In which country was Robert Maxwell born?
+Czechoslovakia
+10
+
+In which country was rudyard kipling born?
+India
+10
+
+In which country was table tennis invented?
+England
+10
+
+In which country was the AIDS virus first recognized?
+USA
+10
+
+In which country was the Auschwitz death camp located?
+Poland
+10
+
+In which country was the caesar salad invented?
+Mexico
+10
+
+In which country was the film lord of the rings made?
+New zealand
+10
+
+In which country was the first Football World Cup held?
+Uruguay
+10
+
+In which country was the first military tank invented?
+England
+10
+
+In which country was the first modern motorway created?
+Italy
+10
+
+In which country was the high speed train the TGV introduced?
+France
+10
+
+In which country was the liberty bell made?
+England
+10
+
+In which country was the Pahlavi family a ruling dynasty?
+Iran
+10
+
+In which country was the war of the Three Henrys fought?
+France
+10
+
+In which country was the yo-yo originally a weapon?
+Philippines
+10
+
+In which country was US Secretary of State Madeleine Albright born?
+Czechoslovakia
+10
+
+In which country were cars first mass produced?
+United states
+10
+
+In which country were fortune cookies invented?
+United states
+10
+
+In which country were the first edible tableware pioneered?
+Taiwan
+10
+
+In which country would a tunnel dug straight through the earth from new zealand?
+Spain
+10
+
+In which country would one find the atlas mountains?
+Morocco
+10
+
+In which country would you find both the rivers oder and vistula, which flow into the baltic sea?
+Poland
+10
+
+In which country would you find glastonbury and stonehenge?
+Wiltshire
+10
+
+In which country would you find karachi?
+Pakistan
+10
+
+In which country would you find Lake Tuz?
+Turkey
+10
+
+In which country would you find mclaks (grilled salmon sandwich) on the mcdonalds menu?
+Norway
+10
+
+In which country would you find Quechuan indians?
+Peru
+10
+
+In which country would you find the 'Angel Fall's?
+Venezuela
+10
+
+In which country would you find the asiatic lion living in the wild?
+India
+10
+
+In which country would you find the holiday destination of sousse?
+Tunisia
+10
+
+In which country would you find the ida mountains?
+Turkey
+10
+
+In which country would you find the Kremista Dam?
+Greece
+10
+
+In which country would you find the motor racing circuit called kyalami?
+South africa
+10
+
+In which country would you find the Pripyet Marshes?
+Belarus
+10
+
+In which country would you find the River Meander?
+Turkey
+10
+
+In which country would you find the ruins of the city of troy?
+Turkey
+10
+
+In which country would you find the site of the world war one battle of tannenberg?
+Poland
+10
+
+In which country would you find the towns of lausanne and locarno?
+Switzerland
+10
+
+In which country would you now find the site of the world war one battle of caporetto?
+Italy
+10
+
+In which county did the north bound m1 end when it opened in 1959?
+Northamptonshire
+10
+
+In which county did the north bound M1 end when it opened?
+Northamptonshire
+10
+
+In which county does the River Mersey rise?
+Derbyshire
+10
+
+In which county in the UK are the Heights of Abraham?
+Derbyshire
+10
+
+In which county is Charnwood Forest?
+Leicestershire
+10
+
+In which county is Combe Martin?
+Devon
+10
+
+In which county is Corfe Castle?
+Dorset
+10
+
+In which county is Stanstead Airport?
+Essex
+10
+
+In which county is the market town of leek?
+Staffordshire
+10
+
+In which county is the stately home Kedleston Hall?
+Derbyshire
+10
+
+In which county is the town of Market Harborough?
+Leicestershire
+10
+
+In which county was John Majors constituency in the 1992 General Election?
+Cambridgeshire
+10
+
+In which county were Charles Dickens and Jane Austen born?
+Hampshire
+10
+
+In which county would you find the Blue John Mines?
+Derbyshire
+10
+
+In which creatures does formic acid occur?
+Ants
+10
+
+In which cult novel do gang members known as 'droogs' appear?
+A clockwork orange
+10
+
+In which decade did Jacques Garnerin make the first parachute descent (from a balloon)?
+1790's
+10
+
+In which decade did Kool and the Gang have their first hit?
+1970's
+10
+
+In which decade did leeds first win the fa cup?
+1970's
+10
+
+In which decade did Lester Piggott first win the Derby?
+1950s
+10
+
+In which decade did people last get the chance to see Halley's Comet?
+1980s
+10
+
+In which decade if the 20 century was the first Filofax sold?
+1920's
+10
+
+In which decade was Madonna born?
+50s
+10
+
+In which decade was Mohandas Karamchand Gandhi born?
+1860s (1869)
+10
+
+In which decade were talking movies introduced?
+The 1920s
+10
+
+In which dickens novel does dr. slammer appear?
+The pickwick papers
+10
+
+In which dickens novel would you find the characters jonh jarndyce and mrs jellyby?
+Bleak house
+10
+
+In which direction do the best surfing beaches face?
+West
+10
+
+In which disney cartoon does 'belle' appear?
+Beauty and the beast
+10
+
+In which disney film is the song 'so this is love'?
+Cinderella
+10
+
+In which dr. seuss book did the word 'nerd' first appear?
+If i ran the zoo
+10
+
+In which drink will a raisin in a glass keep floating to the top and sinking to the bottom?
+Champagne
+10
+
+In which ealing film comedy do alec guinness, herbert lom and peter sellers try and fail to commit a major crime?
+The ladykillers
+10
+
+In which Egyptian town was the Rosetta Stone found?
+Rosetta
+10
+
+In which English city are St Davids and St Thomas Railway stations?
+Exeter
+10
+
+In which English city are St. Chads RC and St Philips Cathedrals?
+Birmingham
+10
+
+In which English city is Elgar High School?
+Worcester
+10
+
+In which English city is the Martyr's Memorial?
+Oxford
+10
+
+In which English county is gotham?
+Nottinghamshire
+10
+
+In which English county is the military academy of sandhurst?
+Berkshire
+10
+
+In which English county is Thetford?
+Norfolk
+10
+
+In which English county is Tolpuddle?
+Dorset
+10
+
+In which English town is the Headquarters of the S.A.S?
+Hereford
+10
+
+In which English town or city would you find The Christmas Steps?
+Bristol
+10
+
+In which English town was the Spode pottery works established in the 1760s?
+Stoke
+10
+
+In which englsih town was William Shakespeare born?
+Stratford-upon-avon
+10
+
+In which European capital is the Kon-Tiki museum?
+Oslo
+10
+
+In which European city are the headquarters of OPEC (Organisation of Petroleum Exporting Countries)?
+Vienna
+10
+
+In which European city is Templehof airport?
+Berlin
+10
+
+In which european city is the International Museum of the Reformation which includes statues of John Knox and John Calvin?
+Geneva
+10
+
+In which European city is the Montjuic stadium and the Parc Gruell?
+Barcelona
+10
+
+In which European city is the new Guggenheim Museum?
+Bilbao
+10
+
+In which European city is the Vasco da Gama Bridge?
+Lisbon
+10
+
+In which European city would you find the tallest standing paper clip?
+Oslo
+10
+
+In which european country did the dance the mazurka orginate?
+Poland
+10
+
+In which European country do one hundred grochen equal one schilling?
+Austria
+10
+
+In which European country is gambling illegal?
+Sweden
+10
+
+In which European country is Romansch one of the official languages?
+Switzerland
+10
+
+In which European country is the world's deepest known cave?
+France
+10
+
+In which European country is Tokay wine produced?
+Hungary
+10
+
+In which European country would you find the town of Eupen?
+Belgium
+10
+
+In which European Palace are the State Apartments called the Hall of Mirrors?
+Versailles
+10
+
+In which Eurpoean city are the head-quarters of the cellular/mobile telephone company Nokia?
+Helsinki
+10
+
+In which everyday household products would find alkyl benzene sulphonate?
+Detergents
+10
+
+In which fictional land did 'a girl and her dog travel to the Emerald City'?
+Oz
+10
+
+In which field did Agatha Christie become famous?
+Crime fiction
+10
+
+In which field did Wayne Sleep achieve fame?
+Ballet
+10
+
+In which field event did jan zelezny specialise?
+Javelin
+10
+
+In which field of science is the history of the universe studied?
+Cosmology
+10
+
+In which field was Dame Ellen Terry famous?
+Acting
+10
+
+In which field was maria montessori famous?
+Education
+10
+
+In which field were the Boulting Brothers famous?
+Cinema
+10
+
+In which film based on a James Jones novel does Deborah Kerr embrace on the beach with Burt Lancaster?
+From here to eternity
+10
+
+In which film did Elvis Presley sing the song 'Wooden Heart'?
+G.i. blues
+10
+
+In which film did frank sinatra win his only oscar in an acting role?
+From here to eternity
+10
+
+In which film did gene kelly dance with a cartoon mouse?
+Anchors aweigh
+10
+
+In which film did Gregory Peck pretend to have his hand eaten by a rock?
+Roman holiday
+10
+
+In which film did groucho marx play the veterinary doctor hugo z. hackenbush'?
+A day at the races
+10
+
+In which film did Henry fonda play a fallen priest?
+The fugitive
+10
+
+In which film did Henry fonda portray a fallen priest?
+Fugitive
+10
+
+In which film did Henry thomas play 'elliot'?
+E.t
+10
+
+In which film did humphrey bogart and lauren bacall first appear together?
+To have and have not
+10
+
+In which film did jay leno play 'mookie'?
+American hot wax
+10
+
+In which film did Jennifer lopez play selena?
+Selena
+10
+
+In which film did john wayne play davy crocket?
+The alamo
+10
+
+In which film did johnny depp play a latin lover?
+Don juan demarco
+10
+
+In which film did Kevin Costner make his directorial debut?
+Dances with wolves
+10
+
+In which film did lee marvin throw boiling coffee in gloria graham's face?
+The big heat
+10
+
+In which film did leonardo di caprio and kate winslet play 'jack' and 'rose'?
+Titanic
+10
+
+In which film did matthew modine play a schizophrenic war veteran?
+Birdy
+10
+
+In which film did orson welles play 'Harry lime'?
+The third man
+10
+
+In which film did Paul newman and robert redford hold hands and jump into a river?
+Butch cassidy and the sundance kid
+10
+
+In which film did Paul Newrnan eat 50 hard-boiled eggs?
+Cool hand luke
+10
+
+In which film did Robert Shaw play Captain Quint?
+Jaws
+10
+
+In which film did Roger Moore first appear as James Bond?
+Live and let die
+10
+
+In which film did the actor Sterling Hayden say ' I do not avoid women but I do deny them my bodily essence?
+Doctor strangelove
+10
+
+In which film did tom hulce play 'mozart'?
+Amadeus
+10
+
+In which film did whoopi goldberg play a character called deloris?
+Sister act
+10
+
+In which film does Elvis Presley play an American soldier based in Germany?
+Gi blues
+10
+
+In which film does Kim Bassinger play a hooker who looks like Veronica Lake?
+LA Confidential
+10
+
+In which film does robert de niro play a 1950's hollywood director?
+Guilty as suspected
+10
+
+In which film is danny devito the voice of 'phil'?
+Hercules
+10
+
+In which film is the line, 'I could have been a contender'?
+On the waterfront
+10
+
+In which film starring humphrey bogart and set in martinique, did he play a character called Harry morgan?
+To have and have not
+10
+
+In which film was Charlie Chaplin first heard to speak?
+The great dictator
+10
+
+In which film was goldie hawn the body double for julia roberts?
+Pretty woman
+10
+
+In which film were the entire cast nominated for oscars?
+Who's afraid of Virginia woolf
+10
+
+In which film, starring james cagney, with pat o'brien as father connolly did he play a character called rocky sullivan?
+Angels with dirty faces
+10
+
+In which film, when advised that the girl he was chasing was actually a man, did the actor Joe E Brown say 'Well nobody's perfect'?
+Some like it hot
+10
+
+In which forest did Robin Hood take refuge?
+Sherwood
+10
+
+In which forest does the River Danube rise?
+Black forest
+10
+
+In which Fox TV show did Johnny Dep play an undercover cop in high school?
+21 Jump Street
+10
+
+In which French city did the German Army surrender on the 7th May 1945?
+Rheims
+10
+
+In which french island territory would you find the towns bastia and calvi?
+Corsica
+10
+
+In which French province did the allies land on D-day in 1944?
+Normandy
+10
+
+In which fritz lang film of 1926 do impoverished workers live beneath a city?
+Metropolis
+10
+
+In which game are there hashmarks on each five-yard line?
+Football
+10
+
+In which game can a person have a 'full house'?
+Poker
+10
+
+In which game could you 'plink with your plonker' and 'squopp' your opponent?
+Tiddleywinks
+10
+
+In which game do players change service after five points?
+Table tennis
+10
+
+In which game do players try to reduce their score to zero?
+Darts
+10
+
+In which game is banjo and tooty?
+Banjo-kazooie
+10
+
+In which game is gruntilda the witch?
+Banjo-kazooie
+10
+
+In which game must skittles not be knocked down?
+Bar billiards
+10
+
+In which game or sport can a person be 'skunked'?
+Cribbage
+10
+
+In which game/sport are 'staunton' pieces used?
+Chess
+10
+
+In which game/sport can a person be 'skunked'?
+Cribbage
+10
+
+In which game/sport is a 'zamboni' used?
+Ice hockey
+10
+
+In which geographical feature is a caldera found?
+A volcano
+10
+
+In which German city does the annual 'oktoberfest' beer festival take place?
+Munich
+10
+
+In which German city was the composer Pachelbel born?
+Nuremberg
+10
+
+In which Gilbert and Sullivan opera did Col. Fairfax marry Elsie?
+Yeoman of the guard
+10
+
+In which group of islands in Britain were the Churchill Barriers constructed during wwii to ptrotect the British fleet anchored there?
+The orkneys
+10
+
+In which group of islands was Ferdinand Magellan killed?
+Philippines
+10
+
+In which group would you find Jarvis Cocker?
+Pulp
+10
+
+In which group would you have found the Appleton sisters?
+All saints
+10
+
+In which hampshire village would you find the national motor museum?
+Beaulieu
+10
+
+In which hemesphereis the tropic of capricorn?
+Southern
+10
+
+In which house did Charles dickens live from 1857 to his death in 1870?
+Gad's hill
+10
+
+In which incident was tea dumped into the harbour?
+Boston tea party
+10
+
+In which Indian city did Mother Teresa do her good works?
+Calcutta
+10
+
+In which industry did alfred nobel make his fortune?
+Dynamite
+10
+
+In which Irish county is the Blarney Stone?
+Cork
+10
+
+In which Isle of Wight town would you find the History of Smuggling Museum?
+Ventnor
+10
+
+In which Italian city is the original of Leonardo da Vinci's Last Supper to be seen?
+Milan
+10
+
+In which Italian city would you find the headquarters of the Pirelli company?
+Milan
+10
+
+In which Italian town were the greatest violins made?
+Cremona
+10
+
+In which Jane Austen novel does Fanny Price appear?
+Mansfield park
+10
+
+In which job did casanova spend the last thirteen years of his life?
+Librarian
+10
+
+In which John le Carre novel does George Smiley first appear?
+Call for the dead
+10
+
+In which Kent town is the Indian princess, Pocahontas, buried?
+Gravesend
+10
+
+In which language was Bambi originally published in 1929?
+German
+10
+
+In which language was the poem 'Beowulf' written?
+Old English
+10
+
+In which large bay would you find the Belcher Islands?
+Hudson bay
+10
+
+In which Latin American country is the Quetzal the main unit of currency?
+Guatemala
+10
+
+In which learned discipline would you expect to come across the Sieve of Eratosthenes?
+Mathematics
+10
+
+In which literary work does Mrs Do-As-You-Would-Be-Done-By appear?
+Water babies
+10
+
+In which London hospital is the Florence Nightingale Museum?
+St thomas'
+10
+
+In which London park did Queen give a free concert in 1976?
+Hyde park
+10
+
+In which london park do deer roam free?
+Richmond
+10
+
+In which london park would you find speakers' corner?
+Hyde park
+10
+
+In which london square is the American embassy situated?
+Grosvenor square
+10
+
+In which London thoroughfare is the famous Hamley's Toy Shop?
+Regent street
+10
+
+In which Los Angeles Club did Elton John perform in the US for the first time?
+Trobadour
+10
+
+In which magazine did sarah ferguson make the 'worst dressed list' five times?
+People's magazine
+10
+
+In which Mediterranean Sea are the Cyclades islands?
+The aegean
+10
+
+In which Middle Eastern country is the site of the Hanging Gardens of Babylon understood to have been?
+Iraq
+10
+
+In which modem country is the site of Carthage?
+Tunisia
+10
+
+In which modem country was there a region called Acadia?
+Canada
+10
+
+In which modem day country did the battle of austerlitz take place in 1805?
+Czech republic
+10
+
+In which modern country is Mesopotamia?
+Iraq
+10
+
+In which modern country is the biblical land of Sheba?
+Yemen
+10
+
+In which modern country is the region known as Cappadocia?
+Turkey
+10
+
+In which modern country is the site of the Battle of Balaklava?
+Ukraine
+10
+
+In which monarchs reign was the word electricity first used?
+Elizabeth I
+10
+
+In which month do russians celebrate the october revolution?
+May
+10
+
+In which month does the Kentucky Derby take place?
+May
+10
+
+In which month does the Le Mans 24 hour race take place?
+June
+10
+
+In which month does the Quarter Day in Scotland known as Martinmas fall?
+November
+10
+
+In which month is the Earth nearest the Sun?
+January
+10
+
+In which month is the feast of Epiphany?
+January
+10
+
+In which month is the Le Mans 24 hour race held?
+June
+10
+
+In which month of 1940 did the Battle of Britain begin?
+June
+10
+
+In which month of the year are Nobel Prizes presented?
+December
+10
+
+In which month was Julius Caesar born?
+July
+10
+
+In which mountain range would you find the worlds highest railway?
+The Andes
+10
+
+In which mountains would you find the highest active volcano?
+Andes
+10
+
+In which movie is happy bob barker's partner?
+Happy gilmore
+10
+
+In which movie, in 1962, did Muhammad Ali appear?
+Requiem for heavyweight
+10
+
+In which musical did Barbra Streisand disguise herself as a man?
+Yentl
+10
+
+In which musical is the song Day by Day?
+Godspell
+10
+
+In which musical is the song, 'Hey Big Spender' featured?
+Sweet charity
+10
+
+In which musical work is there a jester called Jack Point?
+Yeomen of the guard
+10
+
+In which musical work of 1925 would you hear the song summertime?
+Porgy and bess
+10
+
+In which musical work would you hear the song as long as he needs me?
+Oliver
+10
+
+In which musical would you hear 'Consider Yourself'?
+Oliver
+10
+
+In which mythology does the Happy Hunting Ground feature?
+North American Indian
+10
+
+In which mythology was Marduk the supreme God?
+Babylonian
+10
+
+In which national park is the mauna loa volcano located?
+Hawaii volcanoes national park
+10
+
+In which naval battle was antony and cleopatra defeated by octavius?
+Battle of actium
+10
+
+In which newsapaper did the strip cartoon Jane appear?
+The daily mirror
+10
+
+In which newspaper does Rupert Bear appear?
+Daliy Express
+10
+
+In which north American city would you find the 1815 feet high c.n. tower?
+Toronto
+10
+
+In which North Italian city is a world renowned opera season held annually in the Roman arena during July and August?
+Verona
+10
+
+In which North-West town or city is Rylands Library?
+Manchester
+10
+
+In which North-West town or city is the Ashton Memorial?
+Lancaster
+10
+
+In which northern city is the BBC Philharmonic Orchestra based?
+Manchester
+10
+
+In which novel by George Eliot is Eppie Cass adopted by a miser whose gold has been stolen by her father?
+Silas marner
+10
+
+In which novel by george eliot would you find the characters 'maggie' and 'tom tulliver'?
+The mill on the floss
+10
+
+In which novel did edgar linton marry catherine earnshaw?
+Wuthering heights
+10
+
+In which novel is Harry Feversham the hero?
+The four feathers
+10
+
+In which novel is Phoebe Caulfield the hero's younger sister?
+Catcher in the rye
+10
+
+In which novel is Winston Smith the main character?
+1984
+10
+
+In which novel of 1874 does Sergeant Troy appear?
+Far from the madding crowd
+10
+
+In which novel would Big Brother be watching you?
+1984
+10
+
+In which novel would you find the characters 'Amelia Sedley' and 'Becky Sharp'?
+Vanity fair
+10
+
+In which novel, by Charles Dickens, do the characters Herbert Pocket and Joe Gargery appear?
+Great expectations
+10
+
+In which novel, by Charles Dickens, do the characters Stephen Blackpool and Thomas Gradgrind appear?
+Hard times
+10
+
+In which ocean are the Galapagos?
+Pacific ocean
+10
+
+In which ocean are the seychelles?
+Indian ocean
+10
+
+In which ocean are the Turks and Caicos Islands?
+The caribbean
+10
+
+In which ocean is mauritius?
+Indian ocean
+10
+
+In which ocean or sea are the Seychelles?
+Indian Ocean
+10
+
+In which ocean was the mary celeste found abandoned and adrift?
+Atlantic
+10
+
+In which ocean would you find the islands of Sao Tome and Principe?
+Atlantic
+10
+
+In which of Charles dickens' novels would you find the character dora spenlow?
+David copperfield
+10
+
+In which of coleridge's poems does an albatross appear?
+Rime of the ancient mariner
+10
+
+In which of Goldsmith's Comedies does Kate Hardcastle appear?
+She stoops to conquer
+10
+
+In which of the world's continents would you find mount erebus?
+Antarctica
+10
+
+In which Olympics did Mark Spitz achieve a new Olympic record by winning seven gold medals?
+1972
+10
+
+In which Olympics did Mark Spitz win seven gold medals?
+1972
+10
+
+In which opera do Ping, Pang and Pong appear?
+Turandot
+10
+
+In which opera does leporello entertain a vengeful jilted lover?
+Don giovanni
+10
+
+In which opera does the US naval officer Lieutenant B.F. Pinkerton appear?
+Madam butterfly
+10
+
+In which opera is the Anvil Chorus?
+Il trovatore
+10
+
+In which organ is a clear watery solution known as the 'aqueous humor' found?
+Eye
+10
+
+In which organ is insulin produced?
+Pancreas In what year did the national 
+10
+
+In which organ is your 'hypothalmus' located?
+Brain
+10
+
+In which other country does london stand on the thames?
+Canada
+10
+
+In which other series other than Dallas would you find one of the Ewings?
+Knots landing
+10
+
+In which palace was Queen Elizabeth I born?
+Greenwich
+10
+
+In which pantomine does old buttercup the cow appear?
+Jack and the beanstalk
+10
+
+In which paris cemetery is the canine film star rin tin tin buried?
+Pere-lachaise
+10
+
+In which paris museum and art gallery is the mona lisa?
+The louvre
+10
+
+In which Park was the New York marathon run until 14970?
+Central Park
+10
+
+In which part of Britain did Boadicea's Iceni live?
+East anglia
+10
+
+In which part of the mind according to Freud lies the conscience and sense of morality?
+Super ego
+10
+
+In which part of the world is the EC dollar a unit of currency?
+Caribbean
+10
+
+In which play did Mrs Malaprop first appear?
+The rivals
+10
+
+In which play did shakespeare write a whole scene entirely in french?
+Henry v
+10
+
+In which play does dame pliant appear?
+Alchemist
+10
+
+In which province would you find Glacier Bay?
+Nova scotia
+10
+
+In which puccini opera of 1896 is the christmas duet?
+La boheme
+10
+
+In which region of France is the red wine Chateauneuf du Pape produced?
+Rhone valley
+10
+
+In which region of France is the wine Chablis produced?
+Burgundy
+10
+
+In which region of Italy are the Chianti Hills?
+Tuscany
+10
+
+In which region of Italy is the wine Chianti produced?
+Tuscany
+10
+
+In which religion are cows sacred?
+Hinduism
+10
+
+In which religion is the mystic formula Om Mani Padme Hum chanted?
+Buddhism
+10
+
+In which religion is the Talmud a saced text?
+Judaism
+10
+
+in which revolution was emiliano zapata an important figure?
+Mexican revolution
+10
+
+In which river did the pied piper drown the rats of hamelin?
+Weser
+10
+
+In which river was jesus baptised?
+Jordan
+10
+
+In which Royal residence did both George V and George VI die?
+Sandringham
+10
+
+In which ruins were the first known written advertisement found?
+Thebes
+10
+
+In which sci-fi novel do the Morlocks live underground?
+The time machine
+10
+
+In which science would you expect to come across the Witch of Agnesi?
+Mathematics
+10
+
+In which sea do eels spawn?
+Sargasso
+10
+
+In which sea do sea eels lay their eggs?
+Sargasso sea
+10
+
+In which sea would you find the island of Bornholm?
+Baltic sea
+10
+
+In which season are coyote pups usually born?
+Spring
+10
+
+In which series of adventure stories and films are John Clayton and Jane Porter the leading characters?
+Tarzan
+10
+
+In which series would you find Mr Legge,Miss Booth and Mrs Wallace?
+Grange hill
+10
+
+In which Shakespeare play are the lines 'There are more things in Heaven and Earth, Horatio, Than are dreamt of in your philosophy.'?
+Hamlet
+10
+
+In which Shakespeare play are the lines 'What's in a name. That which we call a rose, By any other name would smell as sweet.'?
+Romeo and juliet
+10
+
+In which Shakespeare play do Katherine and her sister Bianca appear?
+Taming of the shrew
+10
+
+In which Shakespeare play do Toby Belch and Andrew Aguecheek appear?
+Twelfth night
+10
+
+In which Shakespeare play would you find Constable Elbow?
+Measure for measure
+10
+
+In which shakespeare play would you find the line: 'this royal throne of kings'?
+King richard ii
+10
+
+In which Shakespeare play would you find the lines: 'This royal throne of kings, this sceptred isle, this earth of 'majesty, this other Eden'?
+King richard ii
+10
+
+In which Shakespeare play would you find the song, 'Who is Sylvia'?
+Two gentlemen of verona
+10
+
+In which Shakespeare. play does Lancelot Gobbo appear?
+The merchant of venice
+10
+
+In which ship did Captain Scott sail to the Antarctic on his ill-fated expedition of 1910 to 1912?
+Terra nova
+10
+
+In which ship did John Cabot sail to the New World in 1497?
+Mathew
+10
+
+In which ship did scott amundsen sail to the antarctic?
+Discovery
+10
+
+In which song did 10cc say they`d had an eyeful of the tower in France?
+Life Is A Minestrone
+10
+
+In which song did Glen Campbell go 'ridin' out on a horse in a star-spangled rodeo'?
+Rhinestone cowboy
+10
+
+In which song did hall and oates tell you to watch out for that sharkey girl?
+Man eater
+10
+
+In which South African town were over sixty people murdered by the police, during a campaign against the Pass laws in March 1960?
+Sharpeville
+10
+
+In which south American country does the plateau of borborema lie?
+Brazil
+10
+
+In which South American country is duelling legal if both protagonists are blood donars?
+Uruguay
+10
+
+In which South/Central American country is the active volcano Arenal?
+Costa rica
+10
+
+In which South/Central American country is the active volcano Cotopaxi?
+Ecuador
+10
+
+In which spencer tracy film was a teacher accused of teaching the theory of evolution?
+Inherit the wind
+10
+
+In which sphere of industry or commerce is the name of Arthur Maiden famous?
+Advertising
+10
+
+In which sport are terms 'spare' and 'gutter' used?
+Tenpin bowling
+10
+
+In which sport can you score strikes and spares?
+Ten pin bowling
+10
+
+In which sport could you perform a 'cross buttock', a 'flying mare' or an 'Irish whip'?
+Wrestling
+10
+
+In which sport did Harold Sakata, who played Oddjob in the Bond films, win an Olympic silver medal?
+Weight lifting
+10
+
+In which sport do they compete for the Iroquois Cup?
+Lacrosse
+10
+
+In which sport do you find hazard chases, a grille and a winning gallery?
+Real tennis
+10
+
+In which sport does a player address the ball?
+Golf
+10
+
+In which sport does the term 'to win hands down' originate?
+Horse racing
+10
+
+In which sport is mick hte miller a famous name?
+Greyhound racing
+10
+
+In which sport is the admiral's cup competed for?
+Yachting
+10
+
+In which sport is the America's Cup awarded?
+Sailing
+10
+
+In which sport is the davis cup played for?
+Tennis
+10
+
+In which sport is the Melbourne Cup awarded?
+Horse racing
+10
+
+In which sport is the term 'love' used?
+Tennis
+10
+
+In which sport is the term 'wishbone' used?
+Football
+10
+
+In which sport might you see a googly?
+Cricket
+10
+
+In which sport might you see an axel-Paulsen and a double lutz?
+Ice skating
+10
+
+In which sport or game is the term 'rook' used?
+Chess
+10
+
+In which sport to competitors encounter hairpins?
+Motor racing
+10
+
+In which sport was Argentinian Juan Fangio associated?
+Motor racing
+10
+
+In which sport was Daley Thompson an Olympic champion?
+Athletics
+10
+
+In which sport was Knut Rockne a famous coach?
+American football
+10
+
+In which sport was mary peters an olympic gold medalist?
+Athletics
+10
+
+In which sport would a player find himself sitting in a penalty box?
+Hockey
+10
+
+In which sport would you compete for the Grand Challenge Cup?
+Rowing
+10
+
+In which sport would you find turkeys and spares?
+Ten pin bowling
+10
+
+In which sport would you find, in a team of ten, a cover point, a goalkeeper, and a third home?
+Lacrosse
+10
+
+In which sport would you perform a snatch?
+Weightlifting
+10
+
+In which sport would you see a dolphin bent knee, a walk over front and a catalina?
+Synchronized swimming
+10
+
+In which sport would you use a pommel horse?
+Gymnastics
+10
+
+In which sport/game are the terms 'pin', 'fork' and 'skewer' used?
+Chess
+10
+
+In which sport/game is a 'hole-in-one' possible?
+Golf
+10
+
+In which sport/game is the America's cup awarded?
+Sailboat racing
+10
+
+In which sport/game is the cy young trophy awarded?
+Baseball
+10
+
+In which sport/game is the davis cup awarded?
+Tennis
+10
+
+In which sport/game is the term 'hang ten' used?
+Surfing
+10
+
+In which sport/game is the term 'love' used?
+Tennis
+10
+
+In which sport/game is the term 'rook' used?
+Chess
+10
+
+In which sport/game is the term 'wishbone' used?
+Football
+10
+
+In which sport/game would you find a 'slapshot'?
+Hockey
+10
+
+In which sporting activity are the manoeuvres Fliffus, Miller, Adolph and Barani executed?
+Trampolining
+10
+
+In which state are the principal headwaters of the Missouri river?
+Montana
+10
+
+In which state did both Kennedy and Johnson die?
+Texas
+10
+
+In which state does the mighty mississippi river begin?
+Minnesota
+10
+
+In which state is Cape Hatteras?
+North Carolina
+10
+
+In which state is Cornell University?
+New york
+10
+
+In which state is Detroit?
+Michigan
+10
+
+In which state is Mount McKinley, the highest mountain in North America?
+Alaska
+10
+
+In which state is Temple University?
+Pennsylvania
+10
+
+In which State is the Little Bighorn, scene of Custer's last stand?
+Montana
+10
+
+In which state is Yale University?
+Connecticut
+10
+
+In which state of Australia is the coastal region of Swanland?
+Western Australia
+10
+
+In which state of the u.s.a. would you find mount rushmore?
+South dakota
+10
+
+In which state was Homer born?
+North Carolina
+10
+
+In which state were the most u.s. president born?
+Virginia 
+10
+
+In which state would you find the geographical centre of the contiguous united states of America?
+Kansas
+10
+
+In which state would you find the Jack Daniels distillery?
+Tennessee
+10
+
+In which Suffolk castle was Mary Tudor proclaimed Queen?
+Framlingham
+10
+
+In which team sport does every player play every position?
+Volleyball
+10
+
+In which television series do the characters doctor carter and doctor benton appear?
+E r
+10
+
+In which television series do the characters doctor green and doctor lewis appear?
+E r
+10
+
+In which theater was abe lincoln shot?
+Ford's theater
+10
+
+In which three famous historical places did yanni perform at (alphabetically)?
+Acropolis forbidden city taj mahal
+10
+
+In which tongue did Jesus speak?
+Aramaic
+10
+
+In which town did Albert Spaggiari carry out the worlds biggest bank robbery?
+Nice
+10
+
+In which town did F.W. Woolworth open his first store in 1879?
+Utica
+10
+
+In which town did the first U S congress meet in 1789?
+New york
+10
+
+In which town does the comic hero Desperate Dan live?
+Cactusville
+10
+
+In which town in the US did the Gunfight at the OK Corral take place?
+Tombstone, arizona
+10
+
+In which town is the British Army's main prison, known to all soldiers, past and present, as The Glasshouse?
+Colchester
+10
+
+In which town or city in the north-west is the Ashton memorial?
+Lancaster
+10
+
+In which town or city in the north-west is the Rylands Library?
+Manchester
+10
+
+In which town or city is the national Museum for Photography?
+Bradford
+10
+
+In which town or city was the novelist Sir Waiter Scott born?
+Edinburgh
+10
+
+In which town was Tom Browns school?
+Rugby
+10
+
+In which town would you find the Great Western Railway Museum?
+Swindon
+10
+
+In which track event do you get wet even if it's not raining?
+Steeplechase
+10
+
+In which trade are composing frames and sticks used?
+Printing
+10
+
+In which traditional pantomime does Dandini appear?
+Cinderella
+10
+
+In which trials were former Nazi leaders tried as war criminals?
+Nuremburg trials
+10
+
+In which tunnel between france and Italy died more then 40 people because of a fire?
+Mont blanc tunnel
+10
+
+In which Turkish town was St Paul born?
+Tarsus
+10
+
+In which tv series are joey potter, pacey witter, dawson leary and Jennifer lindley?
+Dawson's creek
+10
+
+In which tv series did Clint eastwood star?
+Rawhide
+10
+
+In which tv series did michael Douglas first make his mark?
+The streets of san francisco
+10
+
+In which Tv series did Nick Nolte play Tom Jordache?
+Rich man,poor man
+10
+
+In which tv series do james van der beek, katie holmes, joshua jackson and michelle williams play?
+Dawson's creek
+10
+
+In which tv series does courtney cox play monica geller?
+Friends
+10
+
+In which tv series does fred savage play kevin arnold?
+The wonder years
+10
+
+In which TV soap would you find Reverend Ashley Thomas?
+Emmerdale
+10
+
+In which two counties is Curling most popular?
+Canada and Scotland
+10
+
+In which U S state do the most bald eagles live?
+Alaska
+10
+
+In which U.K. town or city is Napier University based?
+Edinburgh
+10
+
+In which U.K. town or city is Robert Gordon University based?
+Aberdeen
+10
+
+In which u.s city does the boeing aerospace company have its headquarters?
+Seattle
+10
+
+In which U.S. state is Fort Knox?
+Kentucky
+10
+
+In which unusual place did Sarah Bernhardt take to sleeping?
+Coffin
+10
+
+In which us city is Carnegie Hall?
+New york
+10
+
+In which US city is the Sears tower?
+Chicago
+10
+
+In which US City is the TV programme' Ali McBeal' based?
+Boston
+10
+
+In which US city was Elvis born?
+Tupelo
+10
+
+In which US city was the first skyscraper built?
+Chicago
+10
+
+In which us city were the first electric traffic lights installed?
+Cleveland, oh
+10
+
+In which us state are the black hills?
+North dakota
+10
+
+In which US State is Mount St Helens?
+Washington state
+10
+
+In which us state is new orleans?
+Louisiana
+10
+
+In which US state is Quantico, home to an FBI training and research facility and a similar one for the Marine Corps?
+Maryland
+10
+
+In which US state is the city of Minneapolis?
+Minnesota
+10
+
+In which US state is the Great Smoky Mountains National Park?
+Tennessee
+10
+
+In which US state is the Lowell Observatory?
+Arizona
+10
+
+In which us state is the painted desert located?
+Arizona
+10
+
+In which US state is the Pentagon?
+Virginia
+10
+
+In which US state is the Petrified Forest located?
+Arizona
+10
+
+In which US state is the Shenandoah National Park?
+Virginia
+10
+
+In which US state was Davy Crockett born?
+Tennessee
+10
+
+In which US state was the world's first 'silicon valley'?
+California
+10
+
+In which US state would you find Tulsa?
+Oklahoma
+10
+
+In which US TV soap opera were the 'Barnes Family'?
+Dallas
+10
+
+In which USA state is Frankfort the capital?
+Kentucky
+10
+
+In which USA state is Raleigh the capital?
+North carolina
+10
+
+In which Walt Disney film is princess aurora?
+Sleeping beauty
+10
+
+In which war did the Battle of Jutland take place?
+First world war
+10
+
+In which war did the battle of Sedan take place?
+Franco-prussian
+10
+
+In which war did the Lancastrians fight the Yorkists?
+The wars of the roses
+10
+
+In which war did the poet Wilfred Owen fight?
+World War one
+10
+
+In which war did the Royalists fight the Parliamentarians?
+English civil war
+10
+
+In which war did Ulysses Grant & Robert Lee fight on the same side?
+Mexican
+10
+
+In which war did ulysses grant and robert lee fight on the same side?
+Mexican war
+10
+
+In which war was th ebattle of Verdun?
+World war i
+10
+
+In which war was the 'battle of isandlwana'?
+Zulu war
+10
+
+In which war was the Victoria Cross medal first awarded?
+Crimean War
+10
+
+In which war were the battles of Bull Run & Gettysburg?
+American civil war
+10
+
+In which war were the most americans killed in?
+Civil war
+10
+
+In which weight category did john conteh fight for the world title?
+Light heavyweight
+10
+
+In which Welsh county is Beddgelert?
+Gwynedd
+10
+
+In which Welsh town is the Royal Mint?
+Llantrisant
+10
+
+In which western film did the character will munny appear?
+Unforgiven
+10
+
+In which wine producing country would you find the Padthaway region?
+Australia
+10
+
+In which woody allen film was allen's character visited by the ghost of humphrey bogart?
+Play it again sam
+10
+
+In which year did a military coup overthrow President Allende of Chile?
+1973
+10
+
+In which year did Alexander Graham Bell invent the telephone?
+1876
+10
+
+In which year did Andy Warhol die?
+1987
+10
+
+In which year did Bette Davis die?
+1989
+10
+
+In which year did both China and Japan launch their first satellites?
+1970
+10
+
+In which year did Britain's coinage go decimal?
+1971
+10
+
+In which year did captain cook first sight the coast of Australia?
+1770
+10
+
+In which year did Charles de Gaulle die?
+1970
+10
+
+In which year did colour tv start and was francis chichester knighted?
+1967
+10
+
+In which year did Columbus set sail for his famous journey?
+1492
+10
+
+In which year did Crossroads hit our screens?
+1964
+10
+
+In which year did Fidel Castro overthrow General Batista in Cuba?
+1959
+10
+
+In which year did Gordon Richards ride his first Derby winner?
+1953
+10
+
+In which year did Great Britain first apply for membership of the Common Market?
+1961
+10
+
+In which year did Halley's Comet last pass round the sun?
+1986
+10
+
+In which year did heinz first make tomato ketchup?
+1876
+10
+
+In which year did hong kong revert to chinese rule?
+1997
+10
+
+In which year did it become illegal to beat your sernants to death in the Mississippi basin area?
+1985
+10
+
+In which year did James Brady try to assassinate Roanald reagan?
+1981
+10
+
+In which year did john hinkley try to assassinate roanald reagan?
+1981
+10
+
+In which year did Judy Garland first follow the 'Yellow Brick Road'?
+1939
+10
+
+In which year did Lenin die?
+1924
+10
+
+In which year did Lester Piggott ride his first Derby winner?
+1954
+10
+
+In which year did mark spitz win 7 olympic gold medals?
+1972
+10
+
+In which year did melvyn bragg first present the south bank show?
+1978
+10
+
+In which year did Michelangelo finish painting the Sistine Chapel?
+1512
+10
+
+In which year did Mussolini invade Ethiopia (Abyssinia)?
+1935
+10
+
+In which year did Nelson die?
+1805
+10
+
+In which year did prohibition end in the USA?
+1933
+10
+
+In which year did Queen Elizabeth & Prince Philip marry?
+1947
+10
+
+In which year did Red Rum win his last Grand National?
+1977
+10
+
+In which year did robbie williams leave take that?
+1995
+10
+
+In which year did Roger Bannister run the first sub-four minute mile?
+1954
+10
+
+In which year did shergar win the derby?
+1981
+10
+
+In which year did Sir Winston Churchill die?
+1965
+10
+
+In which year did small faces' steve marriott die?
+1991
+10
+
+In which year did the airship Hindenburg explode and crash?
+1937
+10
+
+In which year did the American Civil War end?
+1865
+10
+
+In which year did the battle of the little bighorn take place?
+1876
+10
+
+In which year did the battle of the nile take place?
+1798
+10
+
+In which year did the cannes film festival first take place?
+1946
+10
+
+In which year did the Confederate forces surrender, to end the U.S. Civil War?
+1865
+10
+
+In which year did the following occur: Green Bay Packers won their first Superbowl, Barbra Streisand played to 135,000 people in Central Park?
+1967
+10
+
+In which year did the following occur: Martina Navratilova defected to the west; Emperor Haile Salassie died?
+1975
+10
+
+In which year did the Hindenburg explode and crash?
+1937
+10
+
+In which year did the last main-line steam train leave Liverpool Lime Street station?
+1968
+10
+
+In which year did the mir space station go into space?
+1986
+10
+
+In which year did the Pilgrim Fathers sail for the Americas?
+1620
+10
+
+In which year did the play, the mousetrap , open in london, and king farouk of egypt abdicated?
+1952
+10
+
+In which year did the Soviet Union launch the first man-made satellite, Sputnik 1?
+1957
+10
+
+In which year did the Spanish Civil War end?
+1939
+10
+
+In which year did the st. valentine's day massacre take place in Chicago?
+1929
+10
+
+In which year did the sydney harbour bridge open?
+1932
+10
+
+In which year did the u.s recognize the ussr?
+1933
+10
+
+In which year did the union of Great Britain and Ireland come into force?
+1801
+10
+
+In which year did the USSR collapse?
+1992
+10
+
+In which year did the world's first launderette open?
+1934
+10
+
+In which year did the zulu wars take place?
+1879
+10
+
+In which year did Yuri Gagarin become the first man in space?
+1961
+10
+
+In which year is it now generally believed that jesus was born?
+Four bc
+10
+
+In which year the Mormons was first settle in Nevada?
+1894
+10
+
+In which year this century were there 3 popes?
+1978
+10
+
+In which year was 'Operation Desert Storm'?
+1991
+10
+
+In which year was Apollo 13 launched?
+1970
+10
+
+In which year was aspirin invented?
+1899
+10
+
+In which year was Diana, Princess of Wales born?
+1961
+10
+
+In which year was Dorando Pietri disqualified from the Olympic Marathon?
+1908
+10
+
+In which year was gandhi's famous march to the sea?
+1928
+10
+
+In which year was harvard university founded?
+1636
+10
+
+In which year was Japanese emperor hirohito born?
+1901
+10
+
+In which year was jfk shot?
+1963
+10
+
+In which year was king faisal assassinated?
+1975
+10
+
+In which year was Leon Trotsky killed?
+1940
+10
+
+In which year was Louis the Sixteenth of France executed?
+1793
+10
+
+In which year was nato formed and the 'comet' air liner made its maiden flight?
+1949
+10
+
+In which year was prohibition repealed in the USA?
+1933
+10
+
+In which year was rasputin assassinated?
+1916
+10
+
+In which year was teletext introduced into britain?
+1973
+10
+
+In which year was th eold age pension introduced?
+1909
+10
+
+In which year was the 'walkman' invented?
+1979
+10
+
+In which year was the 'Yom Kippur' war?
+1973
+10
+
+In which year was the automatic toaster invented?
+1927
+10
+
+In which year was the Battle of Copenhagen, where Nelson attacked the Danish fleet?
+1801
+10
+
+In which year was the Battle of Corunna?
+1809
+10
+
+In which year was the battle of hastings?
+1066
+10
+
+In which year was the Battle of the Alamo?
+1836
+10
+
+In which year was the Berlin Wall built?
+1961
+10
+
+In which year was the chernobyl disaster?
+1986
+10
+
+In which year was the first artificial satellite launched?
+1957
+10
+
+In which year was the first ever fatality from legionnaires disease?
+1976
+10
+
+In which year was the first pantomime produced in Britain?
+1717
+10
+
+In which year was the first person killed in a powered plane crash?
+1907
+10
+
+In which year was the Gulf War?
+1991
+10
+
+In which year was the infamous Salem witch trials held?
+1692
+10
+
+In which year was the Israeli commando raid on Entebbe?
+1976
+10
+
+In which year was the liner Queen Elizabeth 2 launched?
+1967
+10
+
+In which year was the maiden flight of the space shuttle?
+1981
+10
+
+In which year was the poet Wilfred owen killed?
+World war I
+10
+
+In which year was the sculptor and painter Alberto Giacommetti born?
+1901
+10
+
+In which year was the silicon chip invented?
+1975
+10
+
+In which year was the St Lawrence Seaway completed?
+1959
+10
+
+In which year was the Statue of Liberty given to America?
+1884
+10
+
+In which year was the US space station Skylab destroyed?
+1979
+10
+
+In which year was the US space station Skylab launched?
+1973
+10
+
+In which year was the vw beetle first introduced?
+1945
+10
+
+In which year were 'lego' bricks launched?
+1958
+10
+
+In which year were audio cassette tapes first marketed?
+1963
+10
+
+In which year were Old Age Pensions introduced in the UK?
+1909
+10
+
+In which year were Premium Bonds first sold in Britain?
+1956
+10
+
+In which year were the first of the Dead Sea Scrolls discovered?
+1947
+10
+
+In which year were the infamous Pendle witch trials held?
+1612
+10
+
+In which year were the Monkees formed?
+1966
+10
+
+In which year were the olympic games held in antwerp?
+1920
+10
+
+In which year were the olympic games held in st. louis?
+1904
+10
+
+In which year will the olympics be held in athens again?
+2004
+10
+
+In which year, in World War Two, did Germany invade Denmark?
+1940
+10
+
+IN WHICH YEAR. The worlds first test tube baby born in UK?
+1978
+10
+
+IN WHICH YEAR. William Harvey discovered the circulation of blood?
+1628
+10
+
+In whose honour was the high level computer language Ada named?
+Augusta ada king
+10
+
+In wich year was formed in Germany, the disco band Boney M?
+1976
+10
+
+In World War 2, where was the defensive line known as The Gin Drinkers Line?
+Hong kong
+10
+
+In wwii, of what was heinrich himmler the head?
+Gestapo
+10
+
+In wwii, when did Russia declare war on Japan?
+1945
+10
+
+In wwii, who was the head of the gestapo?
+Heinrich himmler
+10
+
+In years past, spermaceti oil - from the sperm whale - was used as ____ in Rolls-Royce automobiles
+Transmission oil
+10
+
+In yoga how is the lotus position performed?
+Sitting cross-legged
+10
+
+In Yorkshire dialect what does to caffle mean?
+To hesitate
+10
+
+In zoology, what order does a turtle belong to?
+Chelonia
+10
+
+In____ , 20% of all publications sold are comic books
+Japan
+10
+
+In____ , Christmas is celebrated with fireworks
+Brazil
+10
+
+In____ , kids as young as 15 can be jailed for cheating on their finals
+Bangladesh
+10
+
+In____ , six drops make a dash
+Cooking
+10
+
+In____ , the colour of mourning is violet
+Turkey
+10
+
+In____ , they sell toupees for dogs
+Tokyo
+10
+
+In-the film world, whose real name is Melvin Kaminsky?
+Mel brooks
+10
+
+Inanna is the sumerian goddess of ____
+Love, fertility and war
+10
+
+Inches who at buckingham palace wears bearskins?
+Guards
+10
+
+Independence who played george costanza on 'seinfeld'?
+Jason alexander
+10
+
+India and Pakistan were fighting about a county...what county?
+Kashmir
+10
+
+India became independent in what year?
+1947
+10
+
+India has a Bill of Rights for?
+Cows
+10
+
+Indian song withimprovised usually topical words?
+Calypso
+10
+
+Indiana is known as ____
+Hoosier state
+10
+
+Indiana was the name given to the Indiana Territory by the United States Congress. It means?
+Land of Indians
+10
+
+Indianapolis is the capital of ____
+Indiana
+10
+
+Indians where is sand creek?
+Colorado
+10
+
+Indonesia is the world's largest producer of?
+Liquefied natural gas
+10
+
+Indonesian method of cloth design using wax?
+Batik
+10
+
+Induction, compression, ignition and exhaust are the main elements of what?
+4 stroke engine cycle
+10
+
+Industrial Claus Larsen is the only member of both LeatherStrip & this band?
+Klute
+10
+
+Industrial Name of Die Krupps' album of Metallica remixes?
+A tribute to metallica
+10
+
+Industrial The real name of Skinny Puppy vocalist Nivek Ogre?
+Kevin ogilvie
+10
+
+Inert gases?
+Argon
+10
+
+Infectious virus disease of the central nervous system, sometimes resulting in paralysis?
+Poliomyelitis
+10
+
+Inflammation of the gums?
+Gingivitis
+10
+
+Inflammatory disorder of the mucous membrane of the nose; nasal catarrh?
+Rhinitis
+10
+
+Information from a reliable source is said to come from where?
+Horse's mouth
+10
+
+Ingrown toe nails are____
+Hereditary
+10
+
+Inky & dinky were the nephews of what comic book cat?
+Felix the cat
+10
+
+Inland sea, lying between southeastern Europe & Asia minor?
+Black sea
+10
+
+Inlet of the Atlantic Ocean, southeastern New York, at the mouth of the Hudson River?
+New york bay
+10
+
+Insects take in oxygen through their ____?
+Spiracles
+10
+
+Instead of what does the royal family use rose petals?
+Confetti
+10
+
+Institution for young offenders having a tough quasi-military regime?
+Boot camp
+10
+
+Institution founded in 1705 by Peter the Great?
+Moscow university
+10
+
+Instrument for measuring radio activity?
+Geiger counter
+10
+
+Instrument for measuring wind force?
+Anemometer
+10
+
+Instrument measuring atmospheric pressure?
+Barometer
+10
+
+Instrument that records, on paper or film, wave patterns that are equivalent to the oscillations of an electric voltage, or that converts mechanical oscillations into an equivalent electric current before recording them on paper or film in the form of wave patterns?
+Oscillograph
+10
+
+Instrument that utilizes the phenomenon of interference of light waves for the ultraprecise measurement of wavelengths of light itself, of small distances, & of certain optical phenomena?
+Interferometer
+10
+
+Instrument used to measure electric current?
+Ammeter
+10
+
+Instrument with windbag for pumping air through reeded pipes?
+Bagpipes
+10
+
+Instrumental: how many pedals does a grand piano have?
+Three
+10
+
+Instruments made from tea chests and washboards were a feature of which specific type of music?
+Skiffle
+10
+
+Insulin is commonly used to treat which condition?
+Diabetes
+10
+
+Insulin is produced in the ____
+Pancreas
+10
+
+Intelligence: Who founded the SAS?
+David Stirling
+10
+
+Intense aerial bombing is called what?
+Saturation
+10
+
+Interesting Fact - More people are killed by donkeys every year than are killed in ____
+Plane crashes
+10
+
+Internal Organs?
+Stomach
+10
+
+International airport of malaysia?
+Klia
+10
+
+International airport of the Netherlands?
+Schiphol
+10
+
+International capitals: Australia?
+Canberra
+10
+
+International capitals: Belarus?
+Minsk
+10
+
+International capitals: Burma?
+Rangoon
+10
+
+International capitals: Costa Rica?
+San jose
+10
+
+International capitals: India?
+New delhi
+10
+
+International capitals: Venezuela?
+Caracas
+10
+
+International geophysical program, initiated in 1984, for surveying the deep ocean floor & its resources?
+Ocean drilling program 4
+10
+
+International toy fair 'g.i joe was introduced at the annual American international toy fair in 1963, 1964 or 1967?
+1964
+10
+
+Internet domains: identify the country: es?
+Spain
+10
+
+Internet domains: identify the country: il?
+Israel
+10
+
+Into what bay does the Ganges River flow?
+Bay of bengal
+10
+
+Into what bay does the golden gate strait lead?
+San francisco bay
+10
+
+Into what kind of animal was Pinocchio temporarily turned?
+A donkey
+10
+
+Into what ocean does the Zambezi river flow?
+Indian
+10
+
+Into what sea does the mackenzie river flow?
+Beaufort sea
+10
+
+Into what sea does the river Volga flow?
+Caspian
+10
+
+Into where does the 53rd weather reconnaissance squadron fly?
+Tropical storms and hurricanes
+10
+
+Into which bay does the ganges river flow?
+Bay of bengal
+10
+
+Into which body of water does the river danube flow?
+Blacksea
+10
+
+Into which ocean does the Zambezi river flow into?
+Indian
+10
+
+Into which of the Great Lakes do the waters of Niagara flow?
+Ontario
+10
+
+Introduced in Switzerland in 1938, the first brand of instant coffee?
+Nescafe
+10
+
+Inventions: the whistling teakettle, invented in 1921 in what country?
+Germany
+10
+
+Inventions: who invented the reflecting telescope?
+Isaac newton
+10
+
+Inventions: who is recognized as the creator of blue jeans?
+Levi Strauss
+10
+
+Inventor of the air-conditioning unit?
+William carrier
+10
+
+Inventor of the barometer?
+Torricelli
+10
+
+Inventor of the battery?
+Volta
+10
+
+Inventor of the denim jeans?
+Levi strauss
+10
+
+Inventor of the dynamo?
+Michael faraday
+10
+
+Inventor of the first automatic machine gun?
+Richard gatling
+10
+
+Inventor of the kodak camera?
+George eastman
+10
+
+Inventor of the method of coordinate geometry?
+Descartes
+10
+
+Inventor of the microscope?
+Zacharias janssen
+10
+
+Inventor of the telescope(full name)?
+Galileo galilei
+10
+
+Inventor of the television?
+Baird
+10
+
+Inventor of x-ray, and first physics nobel prize winner?
+Roentgen
+10
+
+Inventors: Who invented 'bifocal' lenses for eyeglasses?
+Benjamin Franklin
+10
+
+Inventors: Who invented the most common projection for world maps?
+Gerardus Mercator
+10
+
+Inventors: who was the inventor of dynamite?
+Alfred nobel
+10
+
+Investigation of physical, chemical, & biological conditions at the bottom of the ocean, for scientific & commercial purposes?
+Deep sea exploration
+10
+
+Involuntary audible spasm of respiratory organ?
+Hiccup
+10
+
+IRC Networks?
+Efnet
+10
+
+Ireland has the highest per capita consumption of ____
+Tea
+10
+
+Ireland's River Shannon flows into which ocean?
+Atlantic
+10
+
+Irene was the greek goddess of ____
+Peace
+10
+
+Irian Jaya is the name for the western part of which island?
+New guinea
+10
+
+Irish-born English scientist, who was an early proponent of the scientific method and a founder of modern chemistry?
+Boyle
+10
+
+Iron block on which metals are worked?
+Anvil
+10
+
+Iron deficiency causes the most common form of ____
+Anaemia
+10
+
+Ironically, jimmy angel's plane crashed near this place in 1937?
+Angel falls
+10
+
+Irregular line drawn on the map of the pacific ocean, near, & in many places coincident with, the 180th meridian?
+International date line
+10
+
+Is a 'light-year' a measure of time or distance?
+Distance
+10
+
+Is a baseball or a softball heavier?
+Baseball
+10
+
+Is a benign tumour usually dangerous?
+No
+10
+
+Is a blue moon the first or second full moon in a month?
+Second
+10
+
+Is a coconut a fruit or a nut?
+A fruit
+10
+
+Is a computer itself called 'hardware' or 'software'?
+Hardware
+10
+
+Is a dog's normal temperature higher or lower than a human's?
+Higher
+10
+
+Is a person's mandible above or below the tongue?
+Below
+10
+
+Is a piccolo larger or smaller than a flute?
+Smaller
+10
+
+Is argon in its natural state a liquid, a solid or a gas?
+Gas
+10
+
+Is kelso racecourse a flat or jump course?
+Jump
+10
+
+Is someone suffered from halitosis, what would the problem be?
+Bad breath
+10
+
+Is South America or Australia closer to the Antarctic?
+South America
+10
+
+Is talcum powder animal, mineral or vegetable?
+Mineral
+10
+
+Is the 'bell lap' the first or the last lap of a race?
+Last
+10
+
+Is the arctic circle near the north or the south pole?
+North pole
+10
+
+Is the maximum lifespan of a rabbit 10, 15 or 20 years?
+Ten
+10
+
+Is the product of greece and the greek colonies from about 1100b bc to the 1st century bc?
+Greek art and architecture
+10
+
+Is the seahorse a fish?
+Yes
+10
+
+Is the thumb considered to be a finger?
+Yes
+10
+
+Is the universe supposed to be getting bigger or smaller?
+Bigger
+10
+
+Is the very centre of a hurricane stormy or calm?
+Calm
+10
+
+ISBN stands for?
+International standard book number
+10
+
+Island infectious virus disease of the central nervous system, sometimes resulting in paralysis?
+Poliomyelitis
+10
+
+Island republic, in the north Atlantic Ocean, about 300 km (about 185 mi) east of Greenland & about 1000 km (about 620 mi) west of Norway?
+Iceland
+10
+
+Island, British Isles, the westernmost & second largest of the group, in the north Atlantic ocean, & separated from Great Britain by Saint Georges Channel on the southeast, the Irish Sea on the east, & the North Channel on the northeast?
+Ireland
+10
+
+Island, south western Alaska, largest island of the Kodiak Archipelago, in the gulf of Alaska?
+Kodiak
+10
+
+Island, southeastern New York, in New York Bay, the site of the Statue of Liberty?
+Liberty island
+10
+
+Island, southern Indonesia, one of the Lesser Sunda Islands, in the Indian Ocean?
+Bali
+10
+
+Islands what is ice cube's real name?
+O'shea jackson
+10
+
+Israel Baline, born in Temum, Russia, on 1lth May 1898, became famous under what name?
+Irving Berlin
+10
+
+Israel occupied the Golan Heights. Whose territory was it?
+Syria's
+10
+
+Israel's equivalant to the dollar is ____
+Shekel
+10
+
+Issac Asimov is the only author to have a book in every ____ -decimal category
+Dewey
+10
+
+Istanbul straddles the border between which two continents?
+Asia & Europe
+10
+
+It can be a sphere, the globe, or an eyeball?
+Orb
+10
+
+It can take as long as ____ hours to hard-boil an ostrich egg
+Four
+10
+
+It costs more to send someone to reform school than it does to send them to?
+Eton
+10
+
+It has been estimated that the typical American will spend an average of ____ years of his/her life reading newspapers
+Two
+10
+
+It has been estimated that there are something like ____ ____ million cats in the U.S
+23
+10
+
+It is a criminal offence to drive around in a dirty car in?
+Russia
+10
+
+It is believed that millions of years ago the earth's entire landmass was one supercontinent called Panagea. Panagea is a Greek word which means what?
+All Earth
+10
+
+It is commonly called the funny bone, where is it?
+Elbow
+10
+
+It is estimated that ____ light bulbs are manufactured each year in the United States
+1.8 billion
+10
+
+It is estimated that a single toad may catch and eat as many as ____ insects in the course of a summer
+10,000
+10
+
+It is estimated that at any one time, ____ of the world's population are drunk
+0.7%
+10
+
+It is estimated that at any one time, 0.7% of the world's population are____
+Drunk
+10
+
+It is estimated that manatees live a maximum of ____ years
+Sixty
+10
+
+It is estimated that millions of trees are planted by forgetful____
+Squirrels
+10
+
+It is estimated that millions of trees in the world are accidentally planted by ____ who bury nuts and then forget where they hid them
+Squirrels
+10
+
+It is estimated that the average person living in North America opens the fridge ____ times daily
+22
+10
+
+It is estimated that you will spend a whole year of your life looking for ____
+Lost objects
+10
+
+It is illegal to be a prostitute in Siena,Italy, if your name is?
+Mary
+10
+
+It is illegal to eat ____ while bathing in California
+Oranges
+10
+
+It is illegal to frown at ____ in Bladworth, Saskatchewan
+Cows
+10
+
+It is illegal to hunt ____ in the state of Arizona
+Camels
+10
+
+It is illegal to play tennis in the streets of?
+Cambridge
+10
+
+It is physically impossible for ____ to look up in the sky
+Pigs
+10
+
+It is physically impossible for pigs to do what?
+Look up into the sky
+10
+
+It is said that caffeine is a proof positive remedy for waking up in the morning, however, there is something else that is more efficient? What is it?
+Apples
+10
+
+It is the region where most of electrons are apt to be found?
+Orbital
+10
+
+It is what carotenes are converted in the human body?
+Vitamin a
+10
+
+It means to peddle one's wares by calling out, perhaps like a bird of prey?
+Hawking
+10
+
+it only takes a ____ to get a fire going
+Spark
+10
+
+It requires ____ muscles to raise your eyebrows
+Thirty
+10
+
+It runs through 12 countries of the world what is it?
+The equator
+10
+
+It snowed in the Sahara desert on 18 February?
+1979
+10
+
+It takes ____ head of cattle to produce one pound of adrenaline
+12,000
+10
+
+It takes ____ minutes for light to get from the sun to earth
+8.5
+10
+
+It takes ____ minutes to cool hot chocolate into a Hershey's kiss
+Eighteen
+10
+
+It takes ____ to hardboil an ostrich egg
+Four hours
+10
+
+It takes ____ watts to run an electric toaster
+1,100
+10
+
+It takes 12,000 head of cattle to produce one pound of____
+Adrenaline
+10
+
+It takes 3,000 cows to supply the nfl with enough leather for a year's supply of ____
+Footballs
+10
+
+It takes 8.5 minutes for light to get from the ____ to earth
+Volcanic
+10
+
+It takes a lobster approximately ____ years to grow to be one pound
+Seven
+10
+
+It takes a sloth ____ weeks to digest the food it eats
+Two
+10
+
+It takes about ____ hours for a snake to digest one frog
+50
+10
+
+It takes about ____ hours for a snake to digest one frog
+Fifty
+10
+
+It takes about a half a gallon of water to cook macaroni, and about a ____ to clean the pot
+Gallon
+10
+
+It takes about a half a gallon of water to cook____ , and about a gallon to clean the pot
+Macaroni
+10
+
+It takes approximately ____ venom extractions from the coral snake to fill a 1-pint container
+69,000
+10
+
+It takes how long to cool hot chocolate into a Hershey's Kiss?
+28 minutes
+10
+
+It takes how many muscles to frown?
+43
+10
+
+It takes more than ____ peanuts to make one 12-ounce jar of peanut butter
+500
+10
+
+It takes one fifteen-to-twenty-year-old tree to produce ____ paper grocery bags
+700
+10
+
+It takes the insect-eating ____ Flytrap plant only half a second to shut its trap on its prey
+Venus
+10
+
+It took Henry Ford's Motor Company seven years to manufacture 1 million automobiles. One hundred thirty-two working days after this figure was reached (in 1924), the company had made ____ more cars
+9,000,000
+10
+
+It was a marvelous night when who recorded 'moondance' in 1970?
+Van morrison
+10
+
+It was considered unfashionable for Venetian women, during the Renaissance to have anything but ____ ____ hair
+Silvery blonde
+10
+
+It was Greek to me is a line from which Shakespearean play?
+Julius caesar
+10
+
+It was King Edward II of England (1324) who decreed the ____ to be equal to three barleycorns end to end
+Inch
+10
+
+It was once against the law to have a pet dog in a city in____
+Iceland
+10
+
+It was once against the law to slam your car door in a city in____
+Switzerland
+10
+
+It was quite common for the men of Ancient Greece to exercise in public ____
+Naked
+10
+
+It was reported in 1990 that former President ____'s autobiography, A Life, was a financial catastrophe. Publisher Simon and Schuster had paid the former actor-U.S. leader $7 million in advance for his autobiography and a collection of his speeches. Of the 500,000 copies produced, nearly 300,000 were returned to the publisher, forcing them to revise their advance-payment policy
+Ronald reagan
+10
+
+It was the custom in Ancient Rome for the men to place their right hand on their testicles when taking an oath. The modern term ____ is derived from this tradition
+Testimony
+10
+
+It would require an average of ____ hummingbirds to weigh in at 1 ounce
+Eighteen
+10
+
+It would take more than ____ years to drive a car to the sun
+150
+10
+
+It would take more than 150 years to drive a car to the____
+Sun
+10
+
+It's a 'homicidal' phrase for achieving two goals with a single effort?
+Killing two birds with one stone
+10
+
+It's against the law to burp, or sneeze in a certain church in?
+Omaha, nebraska
+10
+
+It's been estimated that an opera singer burns an average of more than ____ calories per minute during a performance
+Two
+10
+
+It's cold outside: what's the better known identity of minus 273.15 degrees celsius?
+Absolute zero
+10
+
+It's common knowledge that crystal gayle and loretta lynn are sisters. who is the other singing sister?
+Peggy sue
+10
+
+It's impossible to get water out of a ____ tire
+Rimless
+10
+
+It's impossible to get water out of a ____ tyre
+Rimless
+10
+
+It's impossible to have ____ eyes
+Grey
+10
+
+It's impossible to sneeze with your eyes____
+Open
+10
+
+It's metallica now, but what band's name originally appeared on beavis's t-shirt?
+Slayer
+10
+
+It's not over till the ____ sings
+Fat lady
+10
+
+It's rumored that sucking on a ____ ____ will cause a breathalyzer to read 0
+Copper penny
+10
+
+It's rumored that sucking on a copper penny will cause a breathalyzer to read____
+Zero
+10
+
+It's the soul mass transit system. Who said it?
+Don Cornelius 
+10
+
+Italian: variety of cabbage with a green flower head?
+Broccoli
+10
+
+Italy's equivalant to the dollar is ____
+Lira
+10
+
+Its Not Kansas: Imagined location of the 1956 novel by Grace Metalious?
+Peyton place
+10
+
+Its Not Kansas: Sarawak is a real Malaysian state in ____
+Borneo
+10
+
+Its Not Kansas: The island of Greek legend which supposedly sank into the ocean?
+Atlantis
+10
+
+Its Not Kansas: Timbuktu is a real town in central ____
+Mali
+10
+
+Ivan the terrible claimed to have 'deflowered thousands of virgins and butchered a similar number of resulting?
+Offspring
+10
+
+Ixchel is the mayan goddess of ____
+Earth and moon
+10
+
+Ixchel is the mayan patroness of ____
+Pregnant women
+10
+
+J worthington foulfellow was the fox in what disney cartoon?
+Pinocchio
+10
+
+Jabez stone sold this to the Devil?
+His soul
+10
+
+Jack haley played the tin man in 1939's the wizard of oz. the tin man had a 'name'. what was it?
+Hickory twicker
+10
+
+Jack Merridew is a character in which novel, first published in 1954?
+Lord of the flies
+10
+
+Jack Nicholson and Jessica Lange starred in the remake of the film 'The Postman Always Rings Twice' in what year?
+1981
+10
+
+Jack what is the world's deepest lake?
+Lake baikal
+10
+
+Jackals have one more pair of ____ than dogs or wolves
+Chromosomes
+10
+
+Jackals have one more pair of chromosomes than ____ or wolves
+Dogs
+10
+
+Jackals have one more pair of chromosomes than dogs or____
+Wolves
+10
+
+Jackdaws and magpies belong to which group of birds?
+Crows
+10
+
+Jackrabbits are powerful jumpers. A 20-inch adult can leap ____ feet in a single bound
+Twenty
+10
+
+Jacks what's an egg that floats on water?
+Very old
+10
+
+Jackson is the capital of ____
+Mississippi
+10
+
+Jacqueline du Pre was a soloist on which instrument?
+Cello
+10
+
+Jacques Cousteau made his name in underwater exploration. What was the name of his scientific survey ship?
+Calypso
+10
+
+Jahangir, a 17th-century Indian Mughal ruler, had 5,000 women in his harem and 1,000 ____. He also owned 12,000 elephants
+Young boys
+10
+
+Jakarta is the capital of ____
+Indonesia
+10
+
+James Abbott McNeill were the first names of which artist?
+Whistler
+10
+
+James Bond: how does james bond like his martinis?
+Shaken not stirred
+10
+
+James Bond: what is goldfinger's first name?
+Auric
+10
+
+James Bond: what james bond story does the climax occur aboard the orient express?
+From Russia with love
+10
+
+James Bond: what was the first james bond film?
+Dr. no
+10
+
+James Bond: Who tells james bond where to go?
+M
+10
+
+James Brooke an ex employee of the east India Company ruled which independent state on the island of Borneo between 1841 and 1946?
+Sarawak
+10
+
+James Cagney won an oscar for his part in which musical?
+Yankee doodle dandy
+10
+
+James dean bradfield is the lead singer with which pop group?
+Manic street preachers
+10
+
+James Hargreaves' invention revolutionised the cotton textiles industry. What was it?
+Spinning jenny
+10
+
+James hepburn, the fourth earl of bothwell, died in 1578, who did he marry in 1567?
+Mary queen of scots
+10
+
+James honeyman-scott was a member of what group before his death?
+Pretenders
+10
+
+James hunt was disqualified after winning which grand prix?
+1976 British
+10
+
+James i succeeded to the throne of England in which year?
+1603
+10
+
+James l succeeded to the throne of England in which year?
+1603
+10
+
+James O'Barr authored this graphic novel which was made into a movie?
+The crow
+10
+
+James stewart starred in hitchcock's rear window, who was his female co-star?
+Grace kelly
+10
+
+James taylor slowed things down when he re-did which hit first released by jimmy jones in january of 1960?
+Handyman
+10
+
+Jamestown is the capital and chief port of which atlantic island?
+St. helena
+10
+
+Jane asher's (Paul mccartney's 60's girlfriend) brother was in what early 60's group?
+Peter & gordon
+10
+
+Janis joplin started her career with which group backing her up?
+Big brother
+10
+
+January is National ____ month
+Soup
+10
+
+Japan did not have an organized chess federation until ____
+1968
+10
+
+Japan what is the capital of kenya?
+Nairobi
+10
+
+Japan's equivalant to the dollar is ____
+Yen
+10
+
+Japanese Electronics company, worlds second biggest computer manufacturer behind IBM?
+Fujitsu
+10
+
+Japanese mattress used as a bed?
+Futon
+10
+
+Japanese profesional hostess and entertainer?
+Geisha
+10
+
+Japheth, shem and ham were sons of which biblical man?
+Noah
+10
+
+Jason Robards won the Oscar for Best Supporting Actor in 1976 and in 1977. Name either of the films. all the presidents men?
+Julia
+10
+
+Java is part of what country?
+Indonesia
+10
+
+Javelinas are very noisy animals among each other and squeal, snort, woof, and click their teeth to?
+Communicate
+10
+
+Jazz musician Bud Powell was best known for playing what instrument?
+Piano
+10
+
+Jean Harlow was the first actress to appear on the cover of ____ magazine
+Life
+10
+
+Jean Valjean is the central character in which novel?
+Les miserables
+10
+
+Jefferson city is the capital of what state?
+Missouri
+10
+
+Jefferson how did leonardo da vinci's alarm clock wake a sleeper?
+Rubbing the feet
+10
+
+Jefferson what can be tulip, balloon or flute?
+Wine glasses
+10
+
+Jello biafra is the principal singer-songwriter for what irreverent san francisco punk band?
+The dead kennedys
+10
+
+Jeopardy whose father boxed for the iranian olympic team?
+Andre agassi
+10
+
+Jeremy Thorpes successor as leader of the Liberal Party?
+David steel
+10
+
+Jergens lotion was created in 1880, 1885 or 1900?
+1880
+10
+
+Jergens lotion was created in what year?
+1880
+10
+
+Jerome napoleon bonaparte died in 1942, 1945 or 1949?
+1945
+10
+
+Jerome napoleon bonaparte died in 1945 of injuries sustained from tripping over his ____
+Dog's leash
+10
+
+Jerry Lee Lewis had Great ____ Of Fire
+Balls!balls
+10
+
+Jesse Owens is associated with what sport?
+Athletics
+10
+
+Jesus Christ died at what age?
+33
+10
+
+Jet lag was once called ____ lag, before there were jets
+Boat
+10
+
+Jewish patriarch, father of isaac?
+Abraham
+10
+
+Jill St. John, ____ , Diana Ross, Carol Burnett and Cher have all worn braces as adults
+Jack klugman
+10
+
+Jill St. John, Jack Klugman, ____ , Carol Burnett and Cher have all worn braces as adults
+Diana ross
+10
+
+Jill St. John, Jack Klugman, Diana Ross, ____ and Cher have all worn braces as adults
+Carol burnett
+10
+
+Jill St. John, Jack Klugman, Diana Ross, Carol Burnett and ____ have all worn braces as adults
+Cher
+10
+
+Jimi Hendrix, Janis Joplin, and Jim Morrison were all ____ years old when they died
+27
+10
+
+Jimmy carter once thought he saw a ufo, what was it?
+Venus
+10
+
+Jimmy Carter's family grew goober peas in Georgia. What's their more familiar name?
+Peanuts
+10
+
+Jimmy clanton sang about which goddess with an earthly flair in 1962?
+Venus in blue jeans
+10
+
+Jimmy Connors won the men's doubles at Wimbledon in the 1970s with which partner?
+Ilie nastase
+10
+
+Jingoism is over-excessive ____
+Nationalism
+10
+
+joan priednieks somerset, uk, grew a celery plant that measured ____ tall in 1998
+9 feet
+10
+
+Jodie Foster directed the film 'Little Man Tate' in what year?
+1991
+10
+
+Jodie foster won the oscar for best actress in 1988 for which film?
+The accused
+10
+
+Joe jackson looked mighty good on which 1979 album?
+Look sharp
+10
+
+Joe jones was 'talking' about his girlfriend in which september 1960 hit?
+You talk too much
+10
+
+Joe Louis became World Champion in which year?
+1937
+10
+
+Joe Shuster brought this comic-book hero to life...?
+Superman
+10
+
+Johann Gutenberg was famous for inventing what in 1455?
+The printing press
+10
+
+John ____ has entered over 5000 contests...and never won anything
+Bellavia
+10
+
+John & Alice Clayton, Tarzan's parents, were better known as ____
+Lord & lady greystoke
+10
+
+John augustus larson invented what in 1921?
+Lie detector
+10
+
+John Bellavia has entered over ____ contests...and never won anything
+5000
+10
+
+John Cassidy wrote what book?
+Juggling for the complete klutz
+10
+
+John D. Rockefeller gave away over US$ ____ during his lifetime
+500,000,000
+10
+
+John F. Kennedy was one of how many children?
+Nine
+10
+
+John F. Kennedy's rocking chair was auctioned off for____
+$442,00
+10
+
+John Garfield and Lana Turner starred in the film 'The Postman Always Rings Twice' what year was it released?
+1945
+10
+
+John Glenn, the American who first orbited the Earth, was showered with ____ tonnes of ticker tape when he got back
+3,529
+10
+
+John Hancock was the only one of ____ signers of the Declaration of Independence who actually signed it on July
+Fifty
+10
+
+John Harmon is the hero in which Dickens novel?
+Our mutual friend
+10
+
+John Harmon is the hero of which Dickens novel?
+Our mutual friend
+10
+
+John lennon and yoko ono marry in gibralter on march 20th and honeymoon in?
+Paris
+10
+
+John lennon once visited which country artist in his las vegas dressing room and kissed his feet. who was he?
+Jerry lee lewis
+10
+
+John lennon's middle name was____
+Winston
+10
+
+John Lilburne was a leader of which group?
+Levellers
+10
+
+John McClane was fighting terrorists in a skyrise in which eighties movie?
+Die Hard
+10
+
+John Paul Getty, once the richest man in the world, had a ____ in his mansion
+Payphone
+10
+
+John Quincy Adams took his last skinnydip in the ____ on his seventy-ninth birthday
+Potomac
+10
+
+John stafford smith composed the tune of which national anthem?
+Star spangled banner
+10
+
+John Wetteland was a hero in which sporting event in 1996?
+World Series
+10
+
+John Winthrop introduced the fork to the American dinner table for the first time on 25 June?
+1630
+10
+
+Johnny and the moondogs was the original name of which pop group?
+The Beatles
+10
+
+Johnny Carson was born in____ , Iowa and grew up in Norfolk, Nebraska
+Corning
+10
+
+Johnny Depp made his first big screen appearance in which movie?
+Nightmare on elm street
+10
+
+johnny got his gun_?
+Dalton trumbo
+10
+
+Johnny marr was famously the guitarist with which influential group?
+The smiths
+10
+
+Johnny rivers sang 'secret ____ man'
+Agent
+10
+
+Johnson who married george harrison's former wife?
+Eric clapton
+10
+
+Jokes: Confuscious Says:  A girl's best ____ is her 'lie'ability
+Asset
+10
+
+Jokes: Confuscious Says:  A streaker is someone who is ____ for his work
+Unsuited
+10
+
+Jokes: Confuscious Says:  Baseball all wrong____man with ____ balls can't walk
+Four
+10
+
+Jokes: Confuscious Says:  Even the greatest of ____ is helpless in middle of desert
+Whales
+10
+
+Jokes: Confuscious Says:  Girls who rides ____, peddles ass all over town
+Bicycle
+10
+
+Jokes: Confuscious Says:  He who ____ in another man's well often catches crab
+Fishes
+10
+
+Jokes: Confuscious Says:  He who ____ in church, sits in own pew
+Farts
+10
+
+Jokes: Confuscious Says:  He who ____ without a handkerchief takes matters into his own hands
+Sneezes
+10
+
+Jokes: Confuscious Says:  He who eats too many ____, sits on toilet many moons
+Prunes
+10
+
+Jokes: Confuscious Says:  Man who ____ a girl with no bust has right to feel low down
+Marries
+10
+
+Jokes: Confuscious Says:  Man who drop watch in ____, bound to have shitty time
+Toilet
+10
+
+Jokes: Confuscious Says:  Man who fight with wife all day, get no ____ at night
+Piece
+10
+
+Jokes: Confuscious Says:  Man who gets kicked in ____, left holding the bag
+Testicles
+10
+
+Jokes: Confuscious Says:  Man who go to bed with ____ wake up with smelly finger
+Itchy butt
+10
+
+Jokes: Confuscious Says:  Man who go to bed with sex on mind wake up with ____ in hand
+Solution
+10
+
+Jokes: Confuscious Says:  Man who have hand in pocket not just jingling ____
+Change
+10
+
+Jokes: Confuscious Says:  Man who have head up ass, have ____ outlook on life
+Shitty
+10
+
+Jokes: Confuscious Says:  Man who kisses girl's ____, gets crack in face
+Behind
+10
+
+Jokes: Confuscious Says:  Man who lay ____ on hill not on level
+Girl
+10
+
+Jokes: Confuscious Says:  Man who lay woman on ground, get ____ on earth
+Peace
+10
+
+Jokes: Confuscious Says:  Man who leap off cliff jump to ____
+Conclusion
+10
+
+Jokes: Confuscious Says:  Man who live in ____, dress in basement
+Glass house
+10
+
+Jokes: Confuscious Says:  Man who run behind car get ____
+Exhausted
+10
+
+Jokes: Confuscious Says:  Man who wants pretty nurse, must be ____
+Patient
+10
+
+Jokes: Confuscious Says:  Man with holes in ____, feels cocky all day
+Pocket
+10
+
+Jokes: Confuscious Says:  Man with tight ____ is pressing his luck
+Trousers
+10
+
+Jokes: Confuscious Says:  Nail on board is not good as ____ on bench
+Screw
+10
+
+Jokes: Confuscious Says:  Secretary not permanent, till ____ on desk
+Screwed
+10
+
+Jokes: Confuscious Says:  Seven days on ____ make one hole weak
+Honeymoon
+10
+
+Jokes: Confuscious Says:  Sleepy man who stand in front of car get ____
+Tired
+10
+
+Jokes: Confuscious Says:  Squirrel who ____ up woman's leg not find nuts
+Runs
+10
+
+Jokes: Confuscious Says:  Support bacteria ____ it's the only ____ some people have!
+Culture
+10
+
+Jokes: Confuscious Says:  Virginity like ____, one prick, all gone
+Balloon
+10
+
+Jokes: Confuscious Says:  Woman who ____ on inner-spring this spring, gets off-spring next spring
+Springs
+10
+
+Jokes: Confuscious Says:  Woman who cooks beans and ____ in same pot very unsanitary
+Peas
+10
+
+Jokes: Confuscious Says:  Woman who dance while wearing jock strap have make believe ____
+Ballroom
+10
+
+Jokes: Confuscious Says:  Woman who fly plane ____ have crackup
+Upside down
+10
+
+Jokes: Confuscious Says:  Woman who spends much time on bedspring, may have ____
+Offspring
+10
+
+Joni mitchells hit from ladies of the canyon album says what came and took away her old man?
+Big yellow taxi
+10
+
+Jonquil is a shade of which colour?
+Yellow
+10
+
+Joseph & Etienne Montigolfier, inventers of the hot air balloon, first believed that their balloon didnt rise due to hot air but an invisible gas given off by fire. What did they name this gas?
+Montigolfier gas
+10
+
+Joseph Adams served as the minister at Newington for how many years?
+68
+10
+
+Joseph and etienne montigolfier, inventers of the hot air balloon, first believed that their balloon didn't rise due to hot air but an invisible gas given off by fire. what did they name this gas?
+Montigolfier gas
+10
+
+Jr how many tunes blared from the 1948 wurlitzer model 1100 jukebox?
+Twenty four
+10
+
+Juan Ponce de Leon landed on the shores of northeast Florida in April of 1513. What was he looking for?
+The Fountain of Youth
+10
+
+Juan What type of animal is a wallaby?
+Kangaroo
+10
+
+JUBILEE 2002: Hosted by Jamie Theakston, starring rock stars from across the ages, what was it called?
+Party at the palace
+10
+
+JUBILEE 2002: How did the Queen travel to church on her Jubilee Day?
+Gold state coach
+10
+
+JUBILEE 2002: Who/what did a ceremonial flypast along the mall?
+Concorde and the red arrows
+10
+
+Judd nelson, ally sheedy, demi moore, and molly ringwald were members of what 80s hollywood in-group?
+Brat pack
+10
+
+Judge dredd, future law enforcer, judges over which city?
+Megacity one
+10
+
+Judy garland made her show business debut under what name?
+Baby frances
+10
+
+Julie Nixon, daughter of ____ married David Eisenhower, son of Dwight Eisenhower
+Richard nixon
+10
+
+Julie nixon, daughter of richard nixon married David eisenhower, son of____
+Dwight eisenhower
+10
+
+Julie Nixon, daughter of Richard Nixon married____ , son of Dwight Eisenhower
+David eisenhower
+10
+
+Juliet 'i melt with you' was which band's signature hit released on their 'after the snow' album in 1982?
+Modern English
+10
+
+Juliet binoche won an academy award for best supporting actress in which film?
+The English patient
+10
+
+Juliette binoch won an academy award for best supporting role in which film?
+English patient
+10
+
+Juliette binoche won an academy award for best supporting actress in which film?
+The English patient
+10
+
+Julius Caesar & Napoleon Bonaparte both suffered from what?
+Epilepsy
+10
+
+Julius Caesar wore a laurel wreath to cover the onset of?
+Baldness
+10
+
+July 2002, name of the American balloonist to complete the first solo circumnavigation of the globe?
+Steve fossett
+10
+
+June Allyson played the part of 'Jo' in the 1949 version of Emily Dickenson's 'Little Women' Who portrayed 'Jo' in the original 1932 film?
+Katherine Hepburn
+10
+
+June of 1968, Dr Benjamin Spock is arrested for aiding & counseling ____
+Draft evaders
+10
+
+Juneau is the capital of ____
+Alaska
+10
+
+Juneau is the capital of what state?
+Alaska
+10
+
+Junior embassy officail?
+Attache
+10
+
+junk Food & Drink: British: fish and ____
+Chips
+10
+
+junk Food & Drink: contorted bread sticks with salt crystals on the outside?
+Pretzel
+10
+
+junk Food & Drink: coors, budweiser, miller, samuel adams, old milwaukee?
+Beer
+10
+
+Junk Food & Drink: Donut-shaped roll made with no yeast; flavors include onion, raisin, garlic, ses?
+Bagel
+10
+
+junk Food & Drink: flavourful product mixed with your own sugar and water; a kid's favourite?
+Kool aid
+10
+
+Junk Food & Drink: Folgers, Nescafe, Sanka, Eight O'Clock, Brothers, Taster's Choice?
+Coffee
+10
+
+junk Food & Drink: former u.s. president george bush's favorite junk food?
+Pork rinds
+10
+
+junk Food & Drink: fried yeast product with a hole in the middle; usually glazed or frosted?
+Donut
+10
+
+junk Food & Drink: frozen dairy product in various flavors like chocolate, vanilla, strawberry?
+Ice cream
+10
+
+Junk Food & Drink: Orange, elongated puffy things with a cheese flavoring?
+Cheetos
+10
+
+junk Food & Drink: orville reddenbacher, jiffy pop, movietime?
+Popcorn
+10
+
+Junk Food & Drink: Oscar Meyer, Armour, Sigmans, Ball Park?
+Hot dogs
+10
+
+junk Food & Drink: peter pan, jif, skippy?
+Peanut butter
+10
+
+junk Food & Drink: puffy white soft pillows of sugar; good raw or roasted over a campfire?
+Marshmallows
+10
+
+junk Food & Drink: spun sugar on a stick; often found at carnivals?
+Cotton candy
+10
+
+junk Food & Drink: the manufacturer of twinkies?
+Hostess
+10
+
+junk Food & Drink: this product comes in a little box with a sailor on it?
+Cracker jacks
+10
+
+Jupiter is ____ kilometres in diameter
+143,000
+10
+
+Jupiter is ____ miles in diameter
+89,000
+10
+
+Jupiter is ____ million kilometres from the Sun
+778
+10
+
+Jupiter is the Roman name for which god of Greek mythology?
+Zeus
+10
+
+Jupiter was the roman god of ____
+Light and sky
+10
+
+Just after the first moon walk, Pan-American Airlines announced that they were willing to take enquires about future commercial flights to the moon. They received ____ requests almost immediately
+80,000
+10
+
+Just for fun: what us state contains the counties of macon and bacon?
+Georgia
+10
+
+Justitia is the roman goddess of ____
+Justice
+10
+
+K-mart. Definately. Definately K-mart?
+Rainman
+10
+
+Kabul is the capital of ____
+Afghanistan
+10
+
+Kalium. is the Latin name for which element?
+Potassium
+10
+
+Kampala is the capital of ____
+Uganda
+10
+
+Kappelkoff is the real surname of which actress?
+Doris day
+10
+
+Karl landsteiner was awarded the nobel prize for his findings in the field of haematology, what was his discovery?
+Human blood groups
+10
+
+Karl Landsteiner won a Nobel prize in 1930 for which medical discovery?
+Blood groups
+10
+
+Karoke means empty orchestra in____
+Japanese
+10
+
+Kate Jackson, Jaclyn Smith and Farrah Fawcett were?
+Charlie's Angels
+10
+
+Kate Winslet and her film director husband Jim Threapleton have split. In happier times, what did they choose for their wedding banquet?
+Bangers and mash
+10
+
+Kate winslet in which film did leonardo dicaprio and kate winslet play 'jack' and 'rose'?
+Titanic
+10
+
+Katmandu is the capital of ____
+Nepal
+10
+
+Keats Who was the first astronaut to return to space?
+Gus grissom
+10
+
+Kelper is slang for an inhabitant of which island group?
+The falklands
+10
+
+Kelsey grammar sings and plays the theme song for which tv show?
+Frasier
+10
+
+Kelts,alevins and grilse are all forms of what?
+Salmon
+10
+
+Ken thompson & dennis ritchie, colleagues at bell labs, teamed up & wrote the second version of which operating system?
+Unix
+10
+
+Kenny g is the best-selling ____
+Saxophonist
+10
+
+Kenny rogers sang someone who cares for what film?
+Fools
+10
+
+Keratitis is an inflammation of the cornea which may lead to ____
+Blindness
+10
+
+Kerimski Church in Finland is the world's biggest church made of____
+Wood
+10
+
+Kermit the Frog has ____ points on his collar around his neck
+Eleven
+10
+
+Kermit the frog is____
+Left-handed
+10
+
+Ketchup is excellent for cleaning brass, especially ____ or corroded brass
+Tarnished
+10
+
+Khartoum is the capital of ____
+Sudan
+10
+
+Khrushchev what was the sequel to 'going my way'?
+The bells of st mary's
+10
+
+Khu-fu is more commonly known as?
+Cheops
+10
+
+Kids Favourite Pokemon?
+Pikachu
+10
+
+kids in the hall: bruce instructed kevin how to be a fan of this band?
+The doors
+10
+
+kids in the hall: bruce wished that this dead celebrity could be his landlord?
+Elvis
+10
+
+kids in the hall: dave foley has a positive attitude toward this female body process?
+Menstruation
+10
+
+kids in the hall: the kids discovered this to be the cause of cancer?
+Bruce mcculloch
+10
+
+Kids in the Hall: This character visits people standing in long lines?
+Flying pig
+10
+
+kids in the hall: this kid argued that nudity was the key to popularity?
+Mark mckinney
+10
+
+kids in the hall: underling to mc simon milligan?
+Hecubus
+10
+
+kids in the hall: usually spotted wearing a towel?
+Paul bellini
+10
+
+Killer tomatoes what album holds the world record for copies sold?
+Thriller
+10
+
+Killers ____ serial and otherwise ____ full names
+Charles Manson
+10
+
+Killing a person painlessly especially one suffering from an incurable disease?
+Euthanasia
+10
+
+Killing for reasons of mercy is known as?
+Euthanasia
+10
+
+Killing ones wife?
+Uxoricide
+10
+
+Kim dae-jung was awarded the nobel peace prize for working towards reconciliation, of which country was he president?
+South korea
+10
+
+Kind of Afro American dance music originally from Southern Louisiana?
+Zydeco
+10
+
+Kind of mild pale Welsh cheese?
+Caerphilly
+10
+
+Kind of skin inflammation?
+Eczema
+10
+
+Kind of Swiss cheese with holes in?
+Gruyere
+10
+
+Kind of white heron?
+Egret
+10
+
+King Faisal was assassinated in 1975. Of which country was he king?
+Saudi arabia
+10
+
+King farouk the ,first of egypt, spent his exiled years mainly in which country?
+Monaco
+10
+
+King Farouk the First of Egypt was overthrown in 1952 and spent his exiled years mainly in which country, of which he became a citizen?
+Monaco
+10
+
+King Francis I of France is reported to have paid master artist Leonardo da Vinci 4,000 gold crowns for his masterpiece ____ but the king did not get immediate possession. Da Vinci kept the painting hanging on a wall of his chateau to the day he died
+Mona lisa
+10
+
+King George III suffered from a disease known as Porphyria which caused his urine to be what colour?
+Purple
+10
+
+King George III was declared violently insane in ____, 9 years before he died
+1811
+10
+
+King Louis the XIV was also referred to as the '____' King
+Sun
+10
+
+King Ludwig of Bavaria was patron of which composer?
+Wagner
+10
+
+King Tut's tomb contained ____ coffins. The third coffin was made from 2,500 pounds of gold. And in today's market is worth approximately $13,000,000
+Four
+10
+
+King Tut's tomb contained FOUR coffins. The third coffin was made from ____ pounds of gold. And in today's market is worth approximately $13,000,000
+2,500
+10
+
+King Tut's tomb contained FOUR coffins. The third coffin was made from 2,500 pounds of____ . And in today's market is worth approximately $13,000,000
+Gold
+10
+
+Kingston the capital of ____
+Jamaica
+10
+
+Kinsey millhone is a recurring character in this author's series of novels?
+Sue grafton
+10
+
+Kinshasa is the capital of ____
+Zaire
+10
+
+Kirk Douglas was in which of the armed services in WWII?
+Navy
+10
+
+Kitchen Appliances?
+Microwave
+10
+
+Kitchen utensils used for stirring?
+Fork
+10
+
+Kiwi eggs, when not completely white, are tinged with?
+Green
+10
+
+Kiwis are the only birds that hunt by the sense of ____
+Smell
+10
+
+Kleenex tissues were originally used as ____ in gas masks
+Filters
+10
+
+Kneeling cushion in church?
+Hassock
+10
+
+Knife, clown and pencil are types of ____
+Fish
+10
+
+Knowledgeable folks know that a 'cete' is a group of these carnivores?
+Badgers
+10
+
+Known as 'England's Darling' who led a resistance against William the Conqueror, on the Isle of Ely in 1070?
+Hereward the wake
+10
+
+Known as 'The Ace of Aces', who was the leading American fighter pilot of World War One?
+Eddie rickenbacker
+10
+
+Known as 'the Butcher of Lyons', name the World War Two Gestapo chief who was captured in South America and tried in Lyons in 1987?
+Klaus barbie
+10
+
+Known by their initials: journalist and essayist Henry louis?
+H. l. mencken
+10
+
+Known by their initials: maine retailer leon leonwood?
+L l bean
+10
+
+Known by their initials: singer kathryn dawn?
+K.d. lang
+10
+
+Koalas never drink____ . They get fluids from the eucalyptus leaves they eat
+Water
+10
+
+Kong what member of ac/dc died in 1980?
+Bon scott
+10
+
+Kool-aid was a deadly cocktail for the inhabitants of a temple in which guyanese town?
+Jonestown
+10
+
+Kos,delphi and patras are part of what country?
+Greece
+10
+
+Kotex was first manufactured as____ , during WW
+Bandages
+10
+
+Kr is the chemical symbol for which element?
+Krypton
+10
+
+Krone, yuan and ringgit are all units of what?
+Currency
+10
+
+Kuala lumpur is the capital of ____
+Malaysia
+10
+
+Kudzu is not indigenous to the South, but in that climate it can grow up to ____ inches a day
+Six
+10
+
+Kwame Nkrumah was the first president of which country?
+Ghana
+10
+
+L is the roman numeral for what number?
+Fifty
+10
+
+L'eggs is the best-selling ____ in America
+Panty hose
+10
+
+La paz is the capital of ____
+Bolivia
+10
+
+La Paz, Bolivia, is the highest large city in the world at how many feet above sea-level?
+11,900
+10
+
+La Picardy is a region of which European country?
+France
+10
+
+La Sila lies in which region of Italy?
+Calabria
+10
+
+La Who played the title role In the film The Madness of King George?
+Nigel hawthorne
+10
+
+Label for person whose i.q is 110-120?
+Superior
+10
+
+Label for person whose i.q is 80-90?
+Dull
+10
+
+Ladys delight is more commonly called what?
+The violet
+10
+
+Lagos is the capital of ____
+Nigeria
+10
+
+Lake Baikal is the ____ lake in the world
+Deepest
+10
+
+Lake Eyre, Australia's lowest point , is in which state?
+South Australia
+10
+
+Lake in southwestern Nicaragua, the largest lake in central America?
+Nicaragua lake
+10
+
+Lake Nyasa forms most of which country's eastern border?
+Malawi
+10
+
+Lake Tana, the source of the Blue Nile, lies in which country?
+Ethiopia
+10
+
+Lake Tanganyika was first sighted in 1858 by John Speke and which other English explorer?
+Sir richard burton
+10
+
+Lake titicaca lies in which two countries?
+Bolivia and peru
+10
+
+Lake Vanern is the largest lake in which country?
+Sweden
+10
+
+Lake, central north America, bordered on the north by the Canadian province of Ontario & on the south by the state of New York?
+Lake ontario
+10
+
+Lamb where were the 1956 summer olympics?
+Melbourne
+10
+
+Lampedusa is a small island lying between malta and the coast of which north african country?
+Tunisia
+10
+
+Lancelot where is 'the breadbasket of Russia'?
+Ukraine
+10
+
+Land Animals: Any and every spermologist knows that the cheetah is the world's fastest mammal, but only the best can name number two?
+Pronghorn Antelope
+10
+
+Land Animals: Insects and Spiders are the most abundant animal class. Which class holds the number two spot?
+Crustaceans
+10
+
+Land Animals: This animal has the longest gestation period, at 660 days?
+African Elephant
+10
+
+Land locked country in NW Asia,capital Yerevan?
+Armenia
+10
+
+Land measure, 4840 sq yards?
+Acre
+10
+
+Landing on leyte in 1944, this general proclaimed 'i have returned'?
+Gen. Douglas macarthur
+10
+
+Lang Martin balanced ____ golf balls vertically without adhesive at Charlotte, NC on 9 February 1980
+Seven
+10
+
+Language: 17th Century: A Swedish philologist claimed that in the garden of eden, adam spoke ____
+Danish
+10
+
+Language: 17th Century: A Swedish philologist claimed that in the garden of eden, god spoke ____
+Swedish
+10
+
+Language: 17th Century: A Swedish philologist claimed that in the garden of eden, the serpent spoke ____
+French
+10
+
+Language: Afrikaans developed from which language?
+Dutch
+10
+
+Language: Aussie Slang: 'ave a Gander?
+Have a look
+10
+
+Language: Aussie Slang: Aerial ping pong?
+Aussie rules football
+10
+
+Language: Aussie Slang: Aggro?
+Upset about something
+10
+
+Language: Aussie Slang: Amber fluid?
+Beer
+10
+
+Language: Aussie Slang: Ankle biter?
+Young child
+10
+
+Language: Aussie Slang: Arse over tit?
+Fall over
+10
+
+Language: Aussie Slang: Arvo?
+Afternoon
+10
+
+Language: Aussie Slang: Bagged someone?
+Critisise someone
+10
+
+Language: Aussie Slang: Balls up?
+Terrible mistake
+10
+
+Language: Aussie Slang: Barbie or B.B.Q?
+Barbecue cooking
+10
+
+Language: Aussie Slang: Battler?
+Someone who works hard
+10
+
+Language: Aussie Slang: Beanie?
+Ski hat
+10
+
+Language: Aussie Slang: Beauty?
+Something has gone really well
+10
+
+Language: Aussie Slang: Bewdy?
+Good or the best
+10
+
+Language: Aussie Slang: Beyond the Black stump?
+Far from the city
+10
+
+Language: Aussie Slang: Big note?
+Make yourself out to be important
+10
+
+Language: Aussie Slang: Billabong?
+A waterhole
+10
+
+Language: Aussie Slang: Billy cart?
+A cart built by a child
+10
+
+Language: Aussie Slang: Billy?
+Container used to make a cup of tea
+10
+
+Language: Aussie Slang: Bingle?
+Car accident
+10
+
+Language: Aussie Slang: Biscuit?
+Cookie
+10
+
+Language: Aussie Slang: Blimey?
+Surprised by something
+10
+
+Language: Aussie Slang: Bloke?
+Australian male
+10
+
+Language: Aussie Slang: Bloods worth Bottling!?
+Someone has done you a good deed
+10
+
+Language: Aussie Slang: Bloody oath?
+Agree with someone
+10
+
+Language: Aussie Slang: Blotto?
+Someone being drunk
+10
+
+Language: Aussie Slang: Blowies?
+Blow flies
+10
+
+Language: Aussie Slang: Blowing your dough?
+Spending all your money
+10
+
+Language: Aussie Slang: Bludger?
+Someone who is lazy
+10
+
+Language: Aussie Slang: Blue ass fly?
+Someone doing something very fast
+10
+
+Language: Aussie Slang: Blue Heeler?
+Police
+10
+
+Language: Aussie Slang: Bluey?
+A nickname for someone with red hair
+10
+
+Language: Aussie Slang: Bo-peep?
+Have a look at something
+10
+
+Language: Aussie Slang: Bob's your uncle?
+Something that has worked out well
+10
+
+Language: Aussie Slang: Bombed out?
+Unsuccessful or drunk
+10
+
+Language: Aussie Slang: Bonzer?
+Excellent
+10
+
+Language: Aussie Slang: Boomer?
+Kangaroo
+10
+
+Language: Aussie Slang: Booze bus?
+Van used by police to random test motorists for alcohol
+10
+
+Language: Aussie Slang: Booze?
+Alcohol
+10
+
+Language: Aussie Slang: Bottler of an idea?
+Great idea
+10
+
+Language: Aussie Slang: Brekky?
+Breakfast
+10
+
+Language: Aussie Slang: Brown-eye?
+Moon someone
+10
+
+Language: Aussie Slang: Buckley's chance?
+Not a chance
+10
+
+Language: Aussie Slang: Bugger?
+Rogue
+10
+
+Language: Aussie Slang: Builders bum?
+Top of the buttocks exposed above pants
+10
+
+Language: Aussie Slang: Bull dust?
+A lie
+10
+
+Language: Aussie Slang: Bunyip?
+Mythical outback creature
+10
+
+Language: Aussie Slang: Bush telegraph?
+The town gossip network
+10
+
+Language: Aussie Slang: Bushed?
+Lost or tired
+10
+
+Language: Aussie Slang: Cactus?
+Somethings had it
+10
+
+Language: Aussie Slang: Carked it?
+Someones died
+10
+
+Language: Aussie Slang: Cheeky?
+Someone who teases in a fun way
+10
+
+Language: Aussie Slang: Cheesed off?
+Fed up with something
+10
+
+Language: Aussie Slang: Chew the fat?
+Have a good talk together
+10
+
+Language: Aussie Slang: Chewy?
+Chewing gum
+10
+
+Language: Aussie Slang: Chinwag?
+Having a conversation
+10
+
+Language: Aussie Slang: Chocker?
+Something is full
+10
+
+Language: Aussie Slang: Chook?
+A chicken, rooster or hen
+10
+
+Language: Aussie Slang: Chunder?
+Vomit
+10
+
+Language: Aussie Slang: Clod hoppers?
+Your feet
+10
+
+Language: Aussie Slang: Cobber?
+A friend
+10
+
+Language: Aussie Slang: Cobberdobber?
+Someone who dobs in a mate
+10
+
+Language: Aussie Slang: Cockie?
+Farmer
+10
+
+Language: Aussie Slang: Coldie?
+A cold beer
+10
+
+Language: Aussie Slang: Cooee?
+Call for greeting someone at a distance in the bush
+10
+
+Language: Aussie Slang: Corroboree?
+Aboriginal festival dance
+10
+
+Language: Aussie Slang: Cot case?
+A drunk or exhausted person
+10
+
+Language: Aussie Slang: Couch potato?
+A person who spends all their time watching television
+10
+
+Language: Aussie Slang: Cozzie?
+Swimming costume
+10
+
+Language: Aussie Slang: Crapper?
+Toilet
+10
+
+Language: Aussie Slang: Crook?
+Feeling ill or a criminal
+10
+
+Language: Aussie Slang: Cuppa?
+Have cup of tea or coffee
+10
+
+Language: Aussie Slang: Dacks?
+Trousers or shorts
+10
+
+Language: Aussie Slang: Damper?
+Flour and water bread mix cooked in the coals of a camp fire
+10
+
+Language: Aussie Slang: Dead marine?
+Empty beer bottle
+10
+
+Language: Aussie Slang: Deadset?
+Without a doubt
+10
+
+Language: Aussie Slang: Digger?
+Australian soldier
+10
+
+Language: Aussie Slang: Dijeridu?
+Aboriginal wind musical instrument
+10
+
+Language: Aussie Slang: Dilly Dally?
+Someone that taking there time to go someone where
+10
+
+Language: Aussie Slang: Dinki-di?
+Something good from a Australia or originating from downunder
+10
+
+Language: Aussie Slang: Do the lolly?
+To get very angry
+10
+
+Language: Aussie Slang: Dodgy?
+Something suspicious and underhanded is going on
+10
+
+Language: Aussie Slang: Donk?
+Engine in a car, boat or motor bike
+10
+
+Language: Aussie Slang: Drongo?
+Someone who is stupid
+10
+
+Language: Aussie Slang: Dropped your bundle?
+To lose control of the situation
+10
+
+Language: Aussie Slang: Dry as a dead dingo's donger?
+Drought or very dry climate
+10
+
+Language: Aussie Slang: Duck's Guts?
+Something that is interesting
+10
+
+Language: Aussie Slang: Dunny?
+Toilet
+10
+
+Language: Aussie Slang: Earbashing?
+Someone talking to you for a long time
+10
+
+Language: Aussie Slang: Eat a horse, and chase the jockey?
+You are very very hungry
+10
+
+Language: Aussie Slang: Esky?
+Portable ice box
+10
+
+Language: Aussie Slang: Fair crack of the whip!?
+Give me a fair go
+10
+
+Language: Aussie Slang: Fair dinkum?
+Honest, genuine
+10
+
+Language: Aussie Slang: Fair enough?
+Agree, acceptable
+10
+
+Language: Aussie Slang: Fat chance?
+Little to no chance of something happening
+10
+
+Language: Aussie Slang: Fella?
+Person or a male
+10
+
+Language: Aussie Slang: Fibber?
+Someone who tell lies
+10
+
+Language: Aussie Slang: Five finger discount?
+Shoplifting
+10
+
+Language: Aussie Slang: Flog?
+To sell something
+10
+
+Language: Aussie Slang: Footy?
+Ozzie rules football
+10
+
+Language: Aussie Slang: Fossick?
+Search for something
+10
+
+Language: Aussie Slang: Fruit cake?
+Mentally unstable
+10
+
+Language: Aussie Slang: Full as a boot?
+Drunk
+10
+
+Language: Aussie Slang: Full as a goog?
+Either full of food or alcohol
+10
+
+Language: Aussie Slang: Full of it?
+Someone telling a load of garbage
+10
+
+Language: Aussie Slang: G 'day?
+A freindly welcome
+10
+
+Language: Aussie Slang: Garbo?
+Garbage collector
+10
+
+Language: Aussie Slang: Get nicked?
+To get caught
+10
+
+Language: Aussie Slang: Go off like a bucket of prawns in the hot sun?
+To create a commotion
+10
+
+Language: Aussie Slang: Goer?
+Something or someone that works well
+10
+
+Language: Aussie Slang: Gone round the bend?
+Gone crazy or mental
+10
+
+Language: Aussie Slang: Gone to the dogs?
+Something or someplace that is no longer any good
+10
+
+Language: Aussie Slang: Good on ya Mate!?
+Well done
+10
+
+Language: Aussie Slang: Grog?
+Alcohol
+10
+
+Language: Aussie Slang: Grot?
+Person who is very dirty or untidy
+10
+
+Language: Aussie Slang: Grouse?
+Something is great,terrific
+10
+
+Language: Aussie Slang: Gutful?
+More than enough
+10
+
+Language: Aussie Slang: Hair of the dog?
+Have another drink of alcohol to try and get rid of a hangover
+10
+
+Language: Aussie Slang: Hang on a tick?
+Wait for minute
+10
+
+Language: Aussie Slang: Happy as a pig in mud?
+Very happy
+10
+
+Language: Aussie Slang: Having a Blue?
+Having a fight or argument
+10
+
+Language: Aussie Slang: Hit the deck?
+To duck or put ones head down
+10
+
+Language: Aussie Slang: Holy-dooly?
+An expression of surprise
+10
+
+Language: Aussie Slang: Hoo-roo?
+Saying goodbye to someone
+10
+
+Language: Aussie Slang: Hoon?
+A show-off with limited intelligence
+10
+
+Language: Aussie Slang: Howzat?
+Asking someone how something is
+10
+
+Language: Aussie Slang: In the Nick?
+Naked
+10
+
+Language: Aussie Slang: In your dreams?
+Telling someone that it isn't going to happen
+10
+
+Language: Aussie Slang: Jack-in-the-box?
+Someone who can not sit still
+10
+
+Language: Aussie Slang: Jarmies?
+Pyjamas
+10
+
+Language: Aussie Slang: Jigged?
+Its broken or no long useful
+10
+
+Language: Aussie Slang: Jigging?
+Truanting from school
+10
+
+Language: Aussie Slang: Jocks?
+Male underpants
+10
+
+Language: Aussie Slang: Jumbuck?
+Sheep
+10
+
+Language: Aussie Slang: Just down the road?
+Could be just down the road or it could be 20 km's away
+10
+
+Language: Aussie Slang: Kick in?
+To help out with money
+10
+
+Language: Aussie Slang: Kick the bucket?
+To die
+10
+
+Language: Aussie Slang: Kip?
+Short rest or sleep
+10
+
+Language: Aussie Slang: Kiwi?
+Someone who lives in new zealand
+10
+
+Language: Aussie Slang: Knackers?
+Male testicles
+10
+
+Language: Aussie Slang: Knock-off?
+To steal
+10
+
+Language: Aussie Slang: Knock?
+To critisise
+10
+
+Language: Aussie Slang: Knocker?
+Someone who makes derogatory remarks
+10
+
+Language: Aussie Slang: Lav or Lavvy?
+Outdoor tiolet
+10
+
+Language: Aussie Slang: Like a hornet in a bottle?
+Furious
+10
+
+Language: Aussie Slang: Lingo?
+Language
+10
+
+Language: Aussie Slang: Lippie?
+Lipstick
+10
+
+Language: Aussie Slang: Liquid amber?
+Beer
+10
+
+Language: Aussie Slang: Loaded?
+Extremely wealthy
+10
+
+Language: Aussie Slang: Lolly?
+Money
+10
+
+Language: Aussie Slang: M'oath?
+On my oath
+10
+
+Language: Aussie Slang: Macca's?
+Mcdonald's
+10
+
+Language: Aussie Slang: Mad as a cut snake?
+Crazy
+10
+
+Language: Aussie Slang: Manchester?
+Household linen
+10
+
+Language: Aussie Slang: Mate?
+Friend
+10
+
+Language: Aussie Slang: Matilda?
+A blanket roll carried by a swagman
+10
+
+Language: Aussie Slang: Middie?
+285 ml beer glass
+10
+
+Language: Aussie Slang: Missus?
+Your wife
+10
+
+Language: Aussie Slang: Mozzie?
+Mosquito
+10
+
+Language: Aussie Slang: Mucking around?
+Playing around stupidly
+10
+
+Language: Aussie Slang: Mug?
+You fool
+10
+
+Language: Aussie Slang: Mulga?
+Rough country
+10
+
+Language: Aussie Slang: Nackered?
+Absolutely exhausted or very tied
+10
+
+Language: Aussie Slang: Never Never?
+Mythical place in the outback
+10
+
+Language: Aussie Slang: Nick off?
+Go away
+10
+
+Language: Aussie Slang: Nick?
+Steal something
+10
+
+Language: Aussie Slang: Nifty?
+Stylish
+10
+
+Language: Aussie Slang: No-hoper?
+An incompetent person
+10
+
+Language: Aussie Slang: Noggin'?
+Head or brains
+10
+
+Language: Aussie Slang: Not the full Quid?
+Short on brains
+10
+
+Language: Aussie Slang: Nulla-nulla?
+Wooden club used by aborigines
+10
+
+Language: Aussie Slang: Ocker?
+Stereotype Australian that likes beer, sport women and uncultured
+10
+
+Language: Aussie Slang: Off the beaten Track?
+Seldom used roads
+10
+
+Language: Aussie Slang: Oldies?
+Parents
+10
+
+Language: Aussie Slang: Out house?
+Toilet
+10
+
+Language: Aussie Slang: Outback?
+Remote part of Australia
+10
+
+Language: Aussie Slang: Oz?
+Australia
+10
+
+Language: Aussie Slang: Paddock?
+Grazing field for sheep and cattle
+10
+
+Language: Aussie Slang: Pat-malone?
+You are on your own
+10
+
+Language: Aussie Slang: Pester?
+Annoy or bother someone
+10
+
+Language: Aussie Slang: Pommy or Pom?
+English person
+10
+
+Language: Aussie Slang: Poo tickets?
+Toilet paper
+10
+
+Language: Aussie Slang: Possie?
+Great position
+10
+
+Language: Aussie Slang: Postie?
+Mail delivery person
+10
+
+Language: Aussie Slang: Pot hole?
+Hole in the road
+10
+
+Language: Aussie Slang: Pot?
+285 ml glass of beer
+10
+
+Language: Aussie Slang: Prang?
+Automotive crash
+10
+
+Language: Aussie Slang: Prezzies?
+Gifts
+10
+
+Language: Aussie Slang: Pub?
+Place for buying and drinking alcohol
+10
+
+Language: Aussie Slang: Pull your head in?
+Tell someone to mind their own business
+10
+
+Language: Aussie Slang: Pull your socks up?
+Try harder
+10
+
+Language: Aussie Slang: Push-bike?
+Bicycle
+10
+
+Language: Aussie Slang: Rack off?
+Told to go away angrily
+10
+
+Language: Aussie Slang: Rafferty's Rules?
+Something with no rules at all
+10
+
+Language: Aussie Slang: Raining cats'n'dogs?
+Heavy storm & rain
+10
+
+Language: Aussie Slang: Ratbag?
+Not a nice person
+10
+
+Language: Aussie Slang: Reckon?
+Opinion
+10
+
+Language: Aussie Slang: Ridgie didge?
+True or genuine article
+10
+
+Language: Aussie Slang: Righto?
+Okay or that's right
+10
+
+Language: Aussie Slang: Ring-in?
+Substitute
+10
+
+Language: Aussie Slang: Rip off?
+To have been cheated
+10
+
+Language: Aussie Slang: Rip snorter?
+Something is great
+10
+
+Language: Aussie Slang: Ripper?
+It's really great
+10
+
+Language: Aussie Slang: Road train?
+Multi-trailered semi truck
+10
+
+Language: Aussie Slang: Sacked?
+Put off from work
+10
+
+Language: Aussie Slang: Sanga?
+Sandwich
+10
+
+Language: Aussie Slang: Schooner?
+Large beer glass
+10
+
+Language: Aussie Slang: Servo?
+Service station for cars
+10
+
+Language: Aussie Slang: She'll be right!?
+Everything will be ok
+10
+
+Language: Aussie Slang: Sheila?
+Woman
+10
+
+Language: Aussie Slang: Shonky?
+Poor quality
+10
+
+Language: Aussie Slang: Shoot through?
+To leave in a hurry
+10
+
+Language: Aussie Slang: Shout?
+Usually means buy some friends a beer at the pub, after your turn then it is theirs
+10
+
+Language: Aussie Slang: Shove off!?
+Told to get lost in a angry way
+10
+
+Language: Aussie Slang: Sickie?
+A day taken off work not necessarily from illness
+10
+
+Language: Aussie Slang: Skip?
+Australian born
+10
+
+Language: Aussie Slang: Skite?
+Bragger
+10
+
+Language: Aussie Slang: Snag?
+Sausage
+10
+
+Language: Aussie Slang: Sparkie?
+Electrician
+10
+
+Language: Aussie Slang: Spit the dummie?
+End result from getting upset about something
+10
+
+Language: Aussie Slang: Spud?
+Potato
+10
+
+Language: Aussie Slang: Squatter?
+Someone who lives on someone else's land or house with out permission
+10
+
+Language: Aussie Slang: Stickybeak?
+Someone can not mind their own business
+10
+
+Language: Aussie Slang: Stone the crows!?
+Shocked at something
+10
+
+Language: Aussie Slang: Stone the crows?
+Exclamation of amazement
+10
+
+Language: Aussie Slang: Strewth?
+Shock at something
+10
+
+Language: Aussie Slang: Stubby?
+Small bottle of beer
+10
+
+Language: Aussie Slang: Stuffed?
+Very tired
+10
+
+Language: Aussie Slang: Stunded mullet?
+To describe someone who has a surprised look on their face
+10
+
+Language: Aussie Slang: Suss it out?
+Check something out
+10
+
+Language: Aussie Slang: Swag?
+Canvas bag or cover that you keep all your belonging and bedroll in, to protect it from the weather when camping out
+10
+
+Language: Aussie Slang: Swagman?
+A man who travels around the country on foot
+10
+
+Language: Aussie Slang: Ta or Tar?
+Thanks
+10
+
+Language: Aussie Slang: Tax?
+To steal
+10
+
+Language: Aussie Slang: Tea?
+Evening meal
+10
+
+Language: Aussie Slang: The John?
+The toilet
+10
+
+Language: Aussie Slang: The Nuddy?
+Naked
+10
+
+Language: Aussie Slang: Thongs?
+Sandals made from rubber
+10
+
+Language: Aussie Slang: Thunder box?
+Toilet
+10
+
+Language: Aussie Slang: Tinnie?
+Can of beer or a aluminum boat
+10
+
+Language: Aussie Slang: Too right!?
+Something is absolutely right & correct
+10
+
+Language: Aussie Slang: True blue?
+Totally Australian
+10
+
+Language: Aussie Slang: Tucker?
+Food
+10
+
+Language: Aussie Slang: Tuckerbag?
+A bag for storing food in the bush
+10
+
+Language: Aussie Slang: Turn it up?
+Take a look at yourself for a moment
+10
+
+Language: Aussie Slang: Two-up?
+Traditional Australian heads or tails gambling game with two coins originally played by the diggers in the war
+10
+
+Language: Aussie Slang: undees?
+Underpants
+10
+
+Language: Aussie Slang: Up shit creek?
+Things are going wrong for you
+10
+
+Language: Aussie Slang: Up your nose?
+Something that annoys you
+10
+
+Language: Aussie Slang: Up yourself?
+Full of yourself
+10
+
+Language: Aussie Slang: Veg-out?
+To relax
+10
+
+Language: Aussie Slang: Vegies?
+Vegetables
+10
+
+Language: Aussie Slang: Wag?
+Skip school, truency
+10
+
+Language: Aussie Slang: Walkabout?
+Go for a long walk, aboriginals used this period for spiritual enlightenment
+10
+
+Language: Aussie Slang: Wally?
+Someone who keeps making mistakes
+10
+
+Language: Aussie Slang: Wanker?
+A male that is really stupid but they think they are the greatest
+10
+
+Language: Aussie Slang: Waterhole?
+Pub or hotel
+10
+
+Language: Aussie Slang: White pointer?
+Great white shark
+10
+
+Language: Aussie Slang: Whopper?
+Something surprisingly big
+10
+
+Language: Aussie Slang: Winge?
+Complain and carry on unnecessarily
+10
+
+Language: Aussie Slang: Woomera stick?
+Used by aborigines to throw spears
+10
+
+Language: Aussie Slang: Woop woop?
+Somewhere a long way from civilization
+10
+
+Language: Aussie Slang: Wowser?
+A killjoy
+10
+
+Language: Aussie Slang: Wrapped?
+Excited about something good that has happened
+10
+
+Language: Aussie Slang: Yabbie?
+Freshwater Australian crayfish
+10
+
+Language: Aussie Slang: Yakka?
+Hard work
+10
+
+Language: Aussie Slang: Yarn?
+A story that can be true or fictional
+10
+
+Language: Aussie Slang: Yobbo?
+Stupid or uncultivated person
+10
+
+Language: Aussie Slang: Yonks?
+A long period of time
+10
+
+Language: Aussie Slang: Zebra crossing?
+Painted white lines on the black road used as a pedestrain crossing on a roadway
+10
+
+Language: Aussie Slang: Zits?
+Acne
+10
+
+Language: Aussie Slang: Zonked?
+Really really tired
+10
+
+Language: Derived from Dutch and used in South Africa?
+Afrikaans
+10
+
+Language: Francophone Quebeckers speak?
+Quebecois
+10
+
+Language: From what Irish words is 'Dublin' derived?
+Dubh linn
+10
+
+Language: From what language is the term 'finito'?
+Italian
+10
+
+Language: In the Philippines, ____ means Hello
+Mabuhay
+10
+
+Language: In the philippines, mabuhay means____
+Hello
+10
+
+Language: Language of the Pathans?
+Pushtu
+10
+
+Language: Many Meanings: Fuel, vapor, flattulence, helium. What is it?
+Gas
+10
+
+Language: Mardi Gras is French for ____
+Fat tuesday
+10
+
+Language: Merging the words 'melt' and 'weld' created which word?
+Meld
+10
+
+Language: Multiple Meanings: Drinking utensils or sight-enhancers?
+Glasses
+10
+
+Language: Multiple Meanings: Slamming your hands together quickly, or a venereal disease?
+Clap
+10
+
+Language: Of the gypsies?
+Romany
+10
+
+Language: Other than Germany, whose official language is German?
+Austria
+10
+
+Language: Subject, verb and object are parts of a ____
+Sentence
+10
+
+Language: The word rodent comes from the Italian 'rodere', which means?
+Gnaw
+10
+
+Language: This animal is found at the beginning of an (English) encyclopedia?
+Aardvark
+10
+
+Language: Type of Alphabet used in Russian, Bulgarian, Serbian etc?
+Cyrillic
+10
+
+Language: Type the English alphabet?
+Abcdefghijklmnopqrstuvwxyz
+10
+
+Language: What city's name is derived from the words 'dubh linn'?
+Dublin
+10
+
+Language: What does 'alma mater' mean in English?
+Bountiful mother
+10
+
+Language: What does 'majuba' mean?
+Place of rock pigeons
+10
+
+Language: What does 'shogun' mean in English?
+Military governor
+10
+
+Language: What does the Irish 'dubh linn' mean?
+Black pool
+10
+
+Language: What does the word 'karate' translate to in English?
+Open hand
+10
+
+Language: What is 'blackpool' in Irish?
+Dubh linn
+10
+
+Language: What is 'bountiful mother' in Latin?
+Alma mater
+10
+
+Language: What is 'military governor' in Japanese?
+Shogun
+10
+
+Language: What is the English word for 'fiesta'?
+Festival
+10
+
+Language: What is the Israeli 'knesset'?
+Parliament
+10
+
+Language: What is the language of Hungary?
+Magyar
+10
+
+Language: What is the literal meaning of 'pince-nez'?
+Pinch nose
+10
+
+Language: What is the meaning of the Mercedes Benz motto 'Das beste oder nichts'?
+The best or nothing
+10
+
+Language: What is the official language of Austria?
+German
+10
+
+Language: What is the Old English word for 'sneeze'?
+Fneasan
+10
+
+Language: What is the only English word formed by the first three letters of the alphabet?
+Cab
+10
+
+Language: What is the Spanish word for 'festival'?
+Fiesta
+10
+
+Language: What kind of words are mine, your, his, her, our, and their?
+Possessive pronouns
+10
+
+Language: What letter ends all Japanese words not ending with a vowel?
+N
+10
+
+Language: What ONE word fits ____hood; ____hole; ____date
+Man
+10
+
+Language: What ONE word fits ____stream; ____hill; ____pour
+Down
+10
+
+Language: What two words make the word 'meld'?
+Melt and weld
+10
+
+Language: What was the language of ancient India?
+Sanskrit
+10
+
+Large 3 sided S.American nut?
+Brazil
+10
+
+Large amphibious broad tailed rodent?
+Beaver
+10
+
+Large brown seed with edible white lining enclosing milky juice?
+Coconut
+10
+
+Large dog of a breed of wolfhound?
+Alsatian
+10
+
+Large extinct flightless bird?
+Dodo
+10
+
+Large gland behind the stomach?
+Pancreas
+10
+
+Large group of naturally occurring & synthetic lipids, or fat-soluble chemicals, with a great diversity of physiological activity?
+Steroids
+10
+
+Large rich eloborate cake?
+Gateau
+10
+
+Large shop selling many different types of goods?
+Megastore
+10
+
+Large South American constrictor snake?
+Anaconda
+10
+
+Large voracious tropical sea fish?
+Barracuda
+10
+
+Large wicker en-cased bottle?
+Demijohn
+10
+
+Largest artery in the body?
+Aorta
+10
+
+Largest body of fresh water in the world, in east central north America, bounded on the north & east by Ontario, on the south by Michigan & Wisconsin, & on the northwest by Minnesota?
+Lake superior
+10
+
+Largest custard-pie fight - on april 11, 2000, 3,312 custard pies were thrown in three minutes by ____ people, london, uk
+20
+10
+
+Largest easter egg hunt on march 20, 1999, Easter fair at kooyong, victoria, Australia. How many solid chocolate eggs were hidden?
+150000
+10
+
+Largest flower in the world?
+Rafflesia
+10
+
+Largest internal organ of vertebrates, weighing 3-4 pounds?
+Liver
+10
+
+Largest island of the continental united states, southeastern New York?
+Long island
+10
+
+Largest living land mammal, what during the pleistocene epoch roamed every landmass except Australia & Antarctica?
+Elephant
+10
+
+Largest moon of jupiter and cupbearer to zeus?
+Ganymede
+10
+
+Largest, rarest, and most powerful anthropoid ape?
+Gorilla
+10
+
+Larry flynt publishes which men's magazine?
+Hustler
+10
+
+Larry Fortensky was one of this much-married actress's husbands.Who is she?
+Elizabeth taylor
+10
+
+Lassa fever is named after the village in which it was first detected in 1969, where is lassa?
+Nigeria
+10
+
+Last name of the man that invented the point bidding system in bridge?
+Tet
+10
+
+Last name of the man who created famous jeweled & enameled eggs?
+Faberge
+10
+
+Last names of the two men who invented spectrum analysis?
+Bunsen and kirchhoff
+10
+
+Lateral line & dorsal fin are parts of a(n) ____
+Fish
+10
+
+latin American dance with gliding steps?
+Tango
+10
+
+Latin: And you, Brutus?
+Et tu brute
+10
+
+Latin: Great charter?
+Magna carta
+10
+
+Latin: Nourishing mother?
+Alma mater
+10
+
+Latin: Something for something?
+Quid pro quo
+10
+
+Latin: That is?
+Id est
+10
+
+Latin: Time is?
+Hora
+10
+
+Latin: What means without limit, an infinite extend?
+Ad infinitum
+10
+
+Latour is first division,Montrose second division and Palmer third division,what are the divisions?
+Classifications of wine
+10
+
+Laughing gas and dental anesthetic is also known as?
+Nitrous oxide
+10
+
+Laurie london was just 13 when she recorded which classic religious-type ballad in 1957?
+He's got the whole world in his hands
+10
+
+Law: In which country was it once against the law to slam your car door?
+Switzerland
+10
+
+Law: What is an accident against which ordinary skill and foresight could not stop?
+Act of providence
+10
+
+Law: What's an antecedent claim?
+Preexisting claim
+10
+
+Lawn game with hoops, wooden balls and mallets?
+Croquet
+10
+
+Lazy susans are named after who?
+Thomas edison's daughter
+10
+
+Leaders of the Anglo saxons?
+Horsa & hengist
+10
+
+Leading Arab astronomer & mathematician of his time?
+Al battani
+10
+
+Leaflike part of a fern or palm?
+Frond
+10
+
+Leaflike part of plant growing before flower?
+Bract
+10
+
+Leaks can be costly. A leak of only one drop per second wastes about ____ ____ litres of water per year
+Ten thousand
+10
+
+Leanne rhimes made a cameo apperance in what movie?
+Coyote Ugly
+10
+
+Leap year was introduced with which calendar?
+Julian calendar
+10
+
+Leatherjackets are the larvae of which insect?
+Cranefly
+10
+
+Leaves forming the protective case of a flower bud?
+Calyx
+10
+
+Lee Harvey Oswald's body tag was auctioned off for____
+$6,600
+10
+
+Lee Majors played in what Television series?
+The Fall Guy
+10
+
+Lee Marvin won his only Best Actor Oscar for the dual role of Kid Sheleen and Tim Strawn in which film?
+Cat ballou
+10
+
+Lee Where were the Toltecs from?
+Mexico
+10
+
+Left-handed people are ____ percent more likely to sample a forkful of food from the plates of fellow diners than are right-handed people
+Twenty
+10
+
+Legendary city of gold in south America?
+El dorado
+10
+
+Legendary King with the golden touch?
+Midas
+10
+
+Legendary lover of Leander?
+Hero
+10
+
+Legendary nymph who loved Narcissus?
+Echo
+10
+
+Leif Erikson was the first European to set foot on North America in the year ____ . NOT Colombus
+1000
+10
+
+Lemons contain more ____ than strawberries do
+Sugar
+10
+
+Lemons have more sugar than____
+Oranges
+10
+
+Length of a beard an average man would grow if he never shaved is ____ feet
+27.5
+10
+
+Length: 220 yards = 1 ____
+Furlong
+10
+
+Lenin what country is the world's biggest coffee exporter?
+Brazil
+10
+
+Lennie baker, saxophone for sha na na, was once a member of this 50's group?
+Danny and the juniors
+10
+
+Lenny Kravitz's mother played the part of Helen on the____
+Jeffersons
+10
+
+Lentigines is the medical term for what?
+Freckles
+10
+
+Leo Hirschfield named a new candy after his daughter, Clara. What is the name of that candy?
+Tootsie Roll
+10
+
+Leonardo da Vinci could write with one hand and ____ with the other at the same time
+Draw
+10
+
+Leonardo Da Vinci invented the?
+Scissors
+10
+
+Leonardo da Vinci played the?
+Viola
+10
+
+Leonardo da Vinci spent ____ years painting the Mona Lisa's lips
+Twelve
+10
+
+Leonardo Michelangelo Raphael How many squares are on a Shogi (Japanese chess) board?
+Eighty one
+10
+
+Leonine refers to what kind of animal?
+Lion
+10
+
+Leporine refers to what kind of animal?
+Rabbit
+10
+
+Les Paul and charlie christian were exponents of which musical instrument?
+Guitar
+10
+
+Less than ____ of Nestle's sales are for chocolate
+3%
+10
+
+Less than ____ of the population donates blood
+7%
+10
+
+Less than 1% of the ____ Islands are inhabited
+Caribbean
+10
+
+Less than 3% of Nestle's sales are for____
+Chocolate
+10
+
+Less than 7% of the population donates____
+Blood
+10
+
+Less than two percent of the water on Earth is____
+Fresh
+10
+
+Let's play blue's clues: what's the name of blue's pinkish dog friend?
+Magenta
+10
+
+Lets you laugh at the weather' is the advertising slogan for which coat company?
+London Fog
+10
+
+Letterman who did David letterman pay four cartons of marlboro to be on his show?
+Miss
+10
+
+Letters on a keyboard?
+Typewriter
+10
+
+Li Hung-chang is the ____ of Chop Suey
+Father
+10
+
+Libra, the Scales, is the only ____ symbol in the zodiac
+Inanimate
+10
+
+Libreville is the capital of which African country?
+Gabon
+10
+
+Licking what uses one tenth of a calorie?
+Stamp
+10
+
+Life on Earth probably developed in an oxygen-free atmosphere. Even today there are microorganisms that can live only in the absence of____
+Oxygen
+10
+
+Life on the mississippi was the autobiography of which American author?
+Mark twain
+10
+
+Life on the planet earth first evolved where?
+In the sea
+10
+
+Light brown cane sugar?
+Demerara
+10
+
+Light is ____ ____ radiation
+Electro magnetic
+10
+
+Light silvery metallic element?
+Aluminium
+10
+
+Light stick held by painter to support and steady the hand?
+Maulstick
+10
+
+Light Venetian canal boat?
+Gondola
+10
+
+Light-sensitive organ of vision in animals?
+Eye
+10
+
+Light, colorless fluid obtained from the fractional distillation of petroleum?
+Benzine
+10
+
+Lightest inflammable gas known?
+Hydrogen
+10
+
+Lighting strikes the Earth about ____ times a second
+200
+10
+
+Lightning strikes about ____ times per minute on this planet
+6,000
+10
+
+Lightweight tropical American wood used for making models?
+Balsa
+10
+
+Like a lady in 'the simpsons', sideshow bob's criminal number is the same as what character in 'les miserables'?
+Jean valjean
+10
+
+Like Dionysus, their master ____ are spirits of wild life
+Satyrs and centaurs
+10
+
+Like eggs benedict, eggs sardou is topped with this creamy sauce?
+Hollandaise sauce
+10
+
+Like fingerprints, what other print is individual?
+Tongue
+10
+
+Like what can a fully ripened cranberry be dribbled?
+Basketball
+10
+
+Lilac Time is a film which tells the life story and uses the music of which composer?
+Franz schubert
+10
+
+Lima is the capital of ____
+Peru
+10
+
+Lima is the capital of this country?
+Peru
+10
+
+Lime-flint, lead-flint and jena are all types of what?
+Glass
+10
+
+Line of hereditary rulers?
+Dynasty
+10
+
+Linguistics: What language family do Hungarian, Finnish and Estonian belong to?
+Finno-Ugric
+10
+
+Linn's Stamp News is the world's largest weekly newspaper for ____ collectors
+Stamp
+10
+
+Linz, Austria is a leading port on which river?
+The danube
+10
+
+Lioness in Born Free?
+Elsa
+10
+
+Lions have been exported to ____ by Windsor Safari Park in England
+Africa
+10
+
+Liquid food of oatmeal boiled in milk or water?
+Gruel
+10
+
+Liquid substance that dissolves or breaks down another substance into a more elementary form & is usually present in greater quantity than that substance?
+Solvent
+10
+
+Liquid that circulates in plants, as distinguished from liquid plant products, such as turpentine & perfume oils, that must be extracted from plant tissues?
+Sap
+10
+
+Liquids that solidify when exposed to air, & are used to cover surfaces for decorative & protective purposes?
+Paint & varnish
+10
+
+Lisbon is a variety of which type of garden vegetable?
+Onion
+10
+
+Lisbon is the capital of ____
+Portugal
+10
+
+The city of Lisbon lies on which river?
+Tagus
+10
+
+Litearture: What's the nationality of agatha christie's detective hercule poirot?
+Belgian
+10
+
+Literature: ____ Anthony, prolific sci-fi and fantasy author
+Piers
+10
+
+Literature: ____ is the magic phrase in ali baba and the forty thieves
+Open sesame
+10
+
+Literature: 'Four legs good, two legs bad' is a quotation from which novel?
+Animal farm
+10
+
+Literature: 'Frodo. Gandalf and Bilbo Baggins are all characters from what?
+The lord of the rings
+10
+
+Literature: 'I sing of arms and the man' is the first line of which famous work?
+The aeneid
+10
+
+Literature: 'Pip' is the hero in which novel by Charles Dickens?
+Great expectations
+10
+
+Literature: 'Riotous Assembly' was the first novel by which author?
+Tom sharpe
+10
+
+Literature: 'the 900 days' is a chronicle about what group's siege of leningrad?
+Nazi
+10
+
+Literature: 'the 900 days' is a chronicle of the nazi siege of what city?
+Leningrad
+10
+
+Literature: 1950s: across the river and into the trees?
+Hemingway
+10
+
+Literature: 1950s: andersonville?
+Mackinlay kantor
+10
+
+Literature: 1950s: Author: a death in the family?
+James agee
+10
+
+Literature: 1950s: Author: Atlas Shrugged?
+Ayn rand
+10
+
+Literature: 1950s: Author: By Love Possessed?
+James gould couzzens
+10
+
+Literature: 1950s: Author: From Here to Eternity?
+James jones
+10
+
+Literature: 1950s: Author: On the Road?
+Jack kerouac
+10
+
+Literature: 1950s: Author: Sieze the Day?
+Saul bellow
+10
+
+Literature: 1950s: Author: The Caine Mutiny?
+Herman wouk
+10
+
+Literature: 1950s: Author: The Last Hurrah?
+Edwin oconner
+10
+
+Literature: 1950s: Author: The Mandarians?
+Simone debeauvoir
+10
+
+Literature: 1950s: D H Lawrence novel was the center of a legal row over obscenity?
+Lady chatterleys lover
+10
+
+Literature: 1950s: William Goldings 1955 novel about boys stranded on an island?
+Lord of the flies
+10
+
+Literature: 1960s: Author: Goodbye, Columbus?
+Phillip roth
+10
+
+Literature: 1960s: Author: Night?
+Elie wiesel
+10
+
+Literature: 1960s: Author: Rabbit, Run?
+John updike
+10
+
+Literature: 1960s: Author: Slaughterhouse-Five?
+Kurt vonnegut
+10
+
+Literature: 1960s: Author: The Painted Bird?
+Jerzy kosinski
+10
+
+Literature: 1960s: What 1960 novel by harper lee was prefaced with the Charles lamb quotation 'lawyers, i suppose, were children once'?
+To kill a mockingbird
+10
+
+Literature: 1960s: What 1968 book by norman mailer won both the pulitzer prize and national book award in 1969?
+Armies of the night
+10
+
+Literature: 1970s: Author: A Book of Common Prayer?
+Joan didion
+10
+
+Literature: 1970s: Author: born on the fourth of july?
+Ron kovic
+10
+
+Literature: 1970s: Author: Deliverance?
+James dickey
+10
+
+Literature: 1970s: Author: Falconer?
+John cheever
+10
+
+Literature: 1970s: Author: far tortuga?
+Peter matthiessen
+10
+
+Literature: 1970s: Author: India: A Wounded Civilization?
+V. s. naiPaul
+10
+
+Literature: 1970s: Author: JR?
+William gaddis
+10
+
+Literature: 1970s: Author: Losing Battles?
+Eudora welty
+10
+
+Literature: 1970s: Author: One Hundred Years of Solitude?
+Gabriel garcia marquez
+10
+
+Literature: 1970s: Author: orsinian tales?
+Ursula leguin
+10
+
+Literature: 1970s: Author: Rabbit Redux?
+John updike
+10
+
+Literature: 1970s: Author: Ragtime?
+E. l. doctorow
+10
+
+Literature: 1970s: Author: Roots?
+Alex haley jr
+10
+
+Literature: 1970s: Author: something happened?
+Joseph heller
+10
+
+Literature: 1970s: Author: the friends of eddie coyle?
+George v. higgins
+10
+
+Literature: 1970s: Author: The Summer before the Dark?
+Doris lessing
+10
+
+Literature: 1970s: Author: The Uses of Enchantment?
+Bruno bettleheim
+10
+
+Literature: 1984, novel The Camomile Lawn, was written by whom?
+Mary wesley
+10
+
+Literature: 1990s: Author: Awarded the Premio Cervantes in Dec. 1993?
+Miguel delibes
+10
+
+Literature: 1990s: In 1992 What British actor penned the autobiography 'what's it all about'?
+Michael caine
+10
+
+Literature: 1990s: In 1992, what line of children's books celebrated its 50th anniversary?
+Little golden books
+10
+
+Literature: 1990s: In 1992, who hit the bestseller list yet again with wlt: a radio romance?
+Garrison keillor
+10
+
+Literature: 1990s: Who detailed her romance with bill clinton in the 1992 December Penthouse?
+Gennifer flowers
+10
+
+Literature: 2000s: Which actor has written an autobiography entitled Lucky Man:A Memoir?
+Michael J Fox
+10
+
+Literature: a big whang of a novel by julie edwards. (aka julie andrews)?
+Last of the really great whangdoodles
+10
+
+Literature: A biography written by the subject is called a ____
+Autobiography
+10
+
+Literature: A book entitled The Contemplative mans recreation is concerned with which pastime?
+Angling
+10
+
+Literature: A classic childrens' novel filled with wordplay. (also a cartoon movie)?
+Phantom tollbooth
+10
+
+Literature: a novel about a small boy on other planets?
+The little prince
+10
+
+Literature: A pseudonym of Rene Raymond, novelist known for No orchids for Miss Blandish?
+James hadley chase
+10
+
+Literature: according to erma bombeck, this is the second oldest profession?
+Motherhood
+10
+
+Literature: According to the Brothers Grimm, how tall was Tom Thumb?
+Five and a half inches
+10
+
+Literature: Agatha Christie's elderly female crimesolver?
+Miss marple
+10
+
+Literature: Alex Haley novel in which he traces his lineage back to Africa?
+Roots
+10
+
+Literature: alexander ripley's sequal to gone with the wind?
+Scarlett
+10
+
+Literature: All I Really Need To Know I Learned in ____
+Kindergarten
+10
+
+Literature: Anna quindlen was the basis of which novel?
+One true thing
+10
+
+Literature: Anna Tellwright is the title character in a book by which author?
+Arnold bennett
+10
+
+Literature: Anne Rice writes about these bloodsuckers?
+Vampires
+10
+
+Literature: arthur hailey's novel of the auto industry?
+Wheels
+10
+
+Literature: As what did H.G. Wells refer to Adolf Hitler?
+A certifiable lunatic
+10
+
+Literature: At which school did Mr Chips teach latin?
+Brookfield
+10
+
+Literature: Author:  1990s: A Return to Love?
+Marianne williamson
+10
+
+Literature: Author:  1990s: Attack of the Deranged Mutant Killer Monster Snow Goons?
+Bill watterson
+10
+
+Literature: Author:  1990s: Dolores Claiborne?
+Stephen King
+10
+
+Literature: Author:  1990s: I Can't Believe I Said That?
+Kathie lee gifford
+10
+
+Literature: Author:  1990s: More Wealth Without Risk?
+Charles givens
+10
+
+Literature: Author:  1990s: Sam Walton?
+Sam walton
+10
+
+Literature: Author:  1990s: The Firm?
+John grisham
+10
+
+Literature: Author:  1990s: The Pelican Brief?
+John grisham
+10
+
+Literature: Author:  1990s: You Just Don't Understand?
+Deborah tannen
+10
+
+Literature: Author: 'a thing of beauty is a joy forever'?
+John keats
+10
+
+Literature: Author: A Dolls House?
+Ibsen
+10
+
+Literature: Author: A Farewell to Arms?
+Ernest hemingway
+10
+
+Literature: Author: a prayer for owen meany?
+Irving
+10
+
+Literature: Author: A Study in Scarlet?
+Sir arthur conan doyle
+10
+
+Literature: Author: a swiftly tilting planet, a wind in the door?
+Lengle
+10
+
+Literature: Author: Alice in wonderland (pen name)?
+Lewis carroll
+10
+
+Literature: Author: Anatomy of a Murder?
+Robert traver
+10
+
+Literature: Author: Arrowsmith?
+Sinclair lewis
+10
+
+Literature: Author: Australian Fantasy writer who wrote the axis trilogy and the wayfarer redemption?
+Sara douglass
+10
+
+Literature: Author: Author of 'Coming of Age in Samoa', the mostly widely read book in the field of anthropology?
+Margaret mead
+10
+
+Literature: Author: Author of gulliver's travels?
+Jonathan swift
+10
+
+Literature: Author: Author of such children books as the enchanted wood, famous five?
+Enid blyton
+10
+
+Literature: Author: Author Richard Bach is known for which 'flighty' novel?
+Jonathan Livingston Seagull
+10
+
+Literature: Author: born in 1933 - he wrote the power of one and april fool's day?
+Bryce courtenay
+10
+
+Literature: Author: Brighton rock?
+Greene
+10
+
+Literature: Author: broca's brain?
+Carl sagan
+10
+
+Literature: Author: Buffalo Girls?
+Larry mcmurtry
+10
+
+Literature: Author: Catch-22, No Laughing Matter, God Knows?
+Joseph heller
+10
+
+Literature: Author: Congo, The Terminal Man?
+Michael crichton
+10
+
+Literature: Author: daisy miller?
+Henry james
+10
+
+Literature: Author: Darkness at Noon?
+Arthur koestler
+10
+
+Literature: Author: Deadly Rich, Ballerina, The Privileged Lives?
+Stewart
+10
+
+Literature: Author: Diana?
+Andrew morton
+10
+
+Literature: Author: diplomacy?
+Henry kissinger
+10
+
+Literature: Author: Dracula?
+Bram stoker
+10
+
+Literature: Author: dragonsdawn?
+Anne mccaffrey
+10
+
+Literature: Author: Every Living Thing?
+Herriot
+10
+
+Literature: Author: Exit Earth?
+Caidin
+10
+
+Literature: Author: Exodus?
+Uris
+10
+
+Literature: Author: Fear Of Flying, How To Save Your Own Life. What First Name?
+Jong
+10
+
+Literature: Author: Fear Of Flying, How To Save Your Own Life?
+Jong
+10
+
+Literature: Author: gift of the magi?
+O. Henry
+10
+
+Literature: Author: He created Tarzan of the Apes?
+Edgar Rice Burroughs
+10
+
+Literature: Author: he won a Pulitzer prize for 'profiles in courage'?
+John Fitzgerald Kennedy
+10
+
+Literature: Author: Hideaway?
+Dean koontz
+10
+
+Literature: Author: how to win friends and influence people?
+Dale carnegie
+10
+
+Literature: Author: I Robot?
+Isaac asimov
+10
+
+Literature: Author: I, The Jury?
+Mickey spillane
+10
+
+Literature: Author: illusions: the adventures of a reluctant messiah?
+Richard bach
+10
+
+Literature: Author: In cold blood?
+Truman capote
+10
+
+Literature: Author: intruder in the dust, a rose for emily?
+Faulkner
+10
+
+Literature: Author: Invisible Man?
+Ralph ellison
+10
+
+Literature: Author: Jewels?
+Danielle steel
+10
+
+Literature: Author: Last of the Mohicans?
+James fenimore cooper
+10
+
+Literature: Author: last of the really great whangdoodles?
+Andrews
+10
+
+Literature: Author: Look Homeward Angel?
+Thomas wolfe
+10
+
+Literature: Author: Maine, The Beans Of Egypt?
+Chute
+10
+
+Literature: Author: Marjorie Morningstar?
+Herman wouk
+10
+
+Literature: Author: Me?
+Katharine hepburn
+10
+
+Literature: Author: Men to Match My Mountains?
+Irving stone
+10
+
+Literature: Author: Moll Flanders?
+Daniel defoe
+10
+
+Literature: Author: of Matilda,James and the Giant Peach and Willy Wonka?
+Roald Dahl
+10
+
+Literature: Author: one flew over the cuckoo's nest?
+Kesey
+10
+
+Literature: Author: One Police Plaza, 1984 best-seller?
+Caunitz
+10
+
+Literature: Author: picture of dorian gray?
+Oscar wilde
+10
+
+Literature: Author: Presumed Innocent?
+Scott turow
+10
+
+Literature: Author: prizzi's honor?
+Richard condon
+10
+
+Literature: Author: rabbit redux?
+Updike
+10
+
+Literature: Author: Red Storm Rising?
+Clancy
+10
+
+Literature: Author: Steppe, Juxtaposition, Fractal Mode?
+Piers anthony
+10
+
+Literature: Author: Tekwar?
+William shatner
+10
+
+Literature: Author: The 7 Habits of Highly Effective People?
+Stephen covey
+10
+
+Literature: Author: The Diary of Adam and Eve (short story)?
+Mark twain
+10
+
+Literature: Author: The Doom that Came to Sarnath and other short stories?
+Hp lovecraft
+10
+
+Literature: Author: The Drifters, Tales Of The South Pacific, Toko-ri?
+James michener
+10
+
+Literature: Author: The Godfather?
+Mario puzo
+10
+
+Literature: Author: the great and secret show, weaveworld, imajica?
+Barker
+10
+
+Literature: Author: The Great And Secret Show, Weaveworld, Imajica?
+Clive barker
+10
+
+Literature: Author: The Gunslinger?
+Stephen King
+10
+
+Literature: Author: the hot rock?
+Donald e. westlake
+10
+
+Literature: Author: the lords of discipline?
+Pat conroy
+10
+
+Literature: Author: the mouse that roared?
+Leonard wibberley
+10
+
+Literature: Author: the name of the rose?
+Umberto eco
+10
+
+Literature: Author: the ninja, the miko, the jian, angel eyes?
+Lustbader
+10
+
+Literature: Author: The novels Black Heart and Sirens were written by him?
+Eric van lustbader
+10
+
+Literature: Author: The Old Man and the Sea?
+Ernest hemingway
+10
+
+Literature: Author: The Onion Field, The New Centurions. What First Name?
+Wambaugh
+10
+
+Literature: Author: The Prince of Tides?
+Conroy
+10
+
+Literature: Author: the puppet masters?
+Robert heinlein
+10
+
+Literature: Author: The Rise and Fall of the Third Reich?
+William shirer
+10
+
+Literature: Author: The Satanic Verses?
+Rushdie
+10
+
+Literature: Author: the secret sharer?
+Joseph conrad
+10
+
+Literature: Author: The Sword Of Shannara, Magic Kingdom For Sale ____ Sold
+Terry brooks
+10
+
+Literature: Author: The Third Man?
+Graham greene
+10
+
+Literature: Author: The Turn Of The Screw?
+James
+10
+
+Literature: Author: the twits?
+Roald dahl
+10
+
+Literature: Author: the wizard of earthsea?
+Ursula leguin
+10
+
+Literature: Author: This Perfect Day?
+Ira levin
+10
+
+Literature: Author: Time Enough For Love?
+Robert a. heinlein
+10
+
+Literature: Author: Tom Browns Schooldays?
+Thomas Hughes
+10
+
+Literature: Author: Tom Jones?
+Henry fielding
+10
+
+Literature: Author: two years before the mast?
+Richard Henry dana
+10
+
+Literature: Author: War and Remembrance?
+Herman wouk
+10
+
+Literature: Author: What was Eric Segal's novel?
+Love Story
+10
+
+Literature: Author: Where the Sidewalk Ends?
+Shel silverstein
+10
+
+Literature: Author: Which writer's first novel, published in 1948, was Never Love a Stranger - his 23rd and latest, published in 1997, is Tycoon?
+Harold robbins
+10
+
+Literature: Author: White Fang?
+Jack london
+10
+
+Literature: Author: Who created anna karenina?
+Leo tolstoy
+10
+
+Literature: Author: Who created Cass Timberlane?
+Sinclair lewis
+10
+
+Literature: Author: Who created cheri?
+Colette
+10
+
+Literature: Author: Who created Dodsworth?
+Sinclair lewis
+10
+
+Literature: Author: Who created Dracula?
+Bram stoker
+10
+
+Literature: Author: Who created frankenstein?
+Mary shelley
+10
+
+Literature: Author: Who created Henry Esmond?
+William thackery
+10
+
+Literature: Author: Who created Humbert Humbert?
+Vladimir nabokov
+10
+
+Literature: Author: Who created jane eyre?
+Charlotte bronte
+10
+
+Literature: Author: Who created Natasha Rostova?
+Leo tolstoy
+10
+
+Literature: Author: Who created Nostromo?
+Joseph conrad
+10
+
+Literature: Author: Who created Rebecca?
+Daphne dumaurier
+10
+
+Literature: Author: Who wrote - Man was born free and everywhere he is in chains?
+Jean jacques rousseau
+10
+
+Literature: Author: Who wrote 'a clockwork orange'?
+Anthony burgess
+10
+
+Literature: Author: Who wrote 'across the river and into the trees'?
+Ernest hemmingway
+10
+
+Literature: Author: Who wrote 'andromeda strain'?
+Michael crichton
+10
+
+Literature: Author: Who wrote 'beach music'?
+Pat conroy
+10
+
+Literature: Author: Who wrote 'Bliss was it in that dawn to be alive, but to be young was very heaven'?
+William wordsworth
+10
+
+Literature: Author: Who wrote 'born free', 'living free' and 'forever free'?
+Joy adamson
+10
+
+Literature: Author: Who wrote 'crime and punishment' and 'the brothers kamarazov'?
+Fyodor dostoevsky
+10
+
+Literature: Author: Who wrote 'crime and punishment'?
+Fedor dostoevsky
+10
+
+Literature: Author: Who wrote 'cruel shoes'?
+Steve martin
+10
+
+Literature: Author: Who wrote 'don quixote'?
+Cervantes
+10
+
+Literature: Author: Who wrote 'Ender's Game'?
+Orson Scott Card
+10
+
+Literature: Author: Who wrote 'for whom the bell tolls'?
+Ernest hemingway
+10
+
+Literature: Author: Who wrote 'Foxy Lady'?
+Jimi hendrix
+10
+
+Literature: Author: Who wrote 'from the earth to the moon'?
+Jules verne
+10
+
+Literature: Author: Who wrote 'Heart of Darkness'?
+Conrad
+10
+
+Literature: Author: Who wrote 'How to Win Friends and Influence People'?
+Dale carnegie
+10
+
+Literature: Author: Who wrote 'i, claudius'?
+Robert graves
+10
+
+Literature: Author: Who wrote 'la traviata'?
+Guiseppe verdi
+10
+
+Literature: Author: Who wrote 'moon river' with Henry mancini?
+John mercer
+10
+
+Literature: Author: Who wrote 'moon river' with john mercer?
+Henry mancini
+10
+
+Literature: Author: Who wrote 'Neither a borrower nor a lender be'?
+William shakespeare
+10
+
+Literature: Author: Who wrote 'No man is an island...never send to know for whom the bell tolls; it tolls for thee'?
+Donne
+10
+
+Literature: Author: Who wrote 'Octopus's Garden'?
+Ringo starr
+10
+
+Literature: Author: Who wrote 'psycho'?
+Alfred hitchcock
+10
+
+Literature: Author: Who wrote 'salesman in beijing', which was published in 1984?
+Arthur miller
+10
+
+Literature: Author: Who wrote 'shogun'?
+James clavell
+10
+
+Literature: Author: Who wrote 'sleepers'?
+Lorenzo carcaterra
+10
+
+Literature: Author: Who wrote 'The Ascent of Man'?
+Jacob bronowski
+10
+
+Literature: Author: Who wrote 'the birds'?
+Alfred hitchcock
+10
+
+Literature: Author: Who wrote 'The Camomile Lawn'?
+Mary wesley
+10
+
+Literature: Author: Who wrote 'the day of the jackal'?
+Frederick forsyth
+10
+
+Literature: Author: Who wrote 'the dragons of eden'?
+Carl sagan
+10
+
+Literature: Author: Who wrote 'the godfather'?
+Mario puzo
+10
+
+Literature: Author: Who wrote 'the grapes of wrath'?
+John steinbeck
+10
+
+Literature: Author: Who wrote 'the grinch who stole christmas'?
+Dr seuss
+10
+
+Literature: Author: Who wrote 'the happy prince'?
+Oscar wilde
+10
+
+Literature: Author: Who wrote 'The Hitch-Hikers Guide to the Galaxy'?
+Douglas adams
+10
+
+Literature: Author: Who wrote 'the hobbit'?
+J.r.r tolkien
+10
+
+Literature: Author: Who wrote 'the iliad'?
+Homer
+10
+
+Literature: Author: Who wrote 'the invisible man'?
+H.g wells
+10
+
+Literature: Author: Who wrote 'the joy of sex'?
+Alex comfort
+10
+
+Literature: Author: Who wrote 'the kitchen god's wife'?
+Amy tan
+10
+
+Literature: Author: Who wrote 'the prince and the pauper'?
+Mark twain
+10
+
+Literature: Author: Who wrote 'the scarlatti inheritance'?
+Robert ludlum
+10
+
+Literature: Author: Who wrote 'the sun also rises'?
+Ernest hemingway
+10
+
+Literature: Author: Who wrote 'The Wind in the Willows'?
+Kenneth Grahame
+10
+
+Literature: Author: Who wrote 'The Wizard of Oz'?
+Frank Baum
+10
+
+Literature: Author: Who wrote 'unsafe at any speed'?
+Ralph nader
+10
+
+Literature: Author: Who wrote 'xanth'?
+Piers anthony
+10
+
+Literature: Author: Who wrote 101 Uses for a Dead Cat?
+Simon bond
+10
+
+Literature: Author: Who wrote 1919?
+John de passos
+10
+
+Literature: Author: Who wrote 1985?
+Anthony burgess
+10
+
+Literature: Author: Who wrote 42nd Parallel?
+John de passos
+10
+
+Literature: Author: Who wrote A Boring Story?
+Anton chekhov
+10
+
+Literature: Author: Who wrote A Brave New World?
+Aldous huxley
+10
+
+Literature: Author: Who wrote A Bridge to Far?
+Cornelius ryan
+10
+
+Literature: Author: Who wrote A Christmas Carol?
+Charles dickens
+10
+
+Literature: Author: Who wrote A Clockwork Orange?
+Anthony burgess
+10
+
+Literature: Author: Who wrote A Farewell to Arms?
+Ernest hemingway
+10
+
+Literature: Author: Who wrote A French Lieutenants Woman?
+John fowles
+10
+
+Literature: Author: Who wrote A History of English Speaking Peoples?
+Winston churchill
+10
+
+Literature: Author: Who wrote a man of the people?
+Chinua achebe
+10
+
+Literature: Author: Who wrote a piano piece inspired by Hartmanns painting of the witch Baba-Yagas hut?
+Modest mussorgsky
+10
+
+Literature: Author: Who wrote a poem about his raven?
+Edgar allen poe
+10
+
+Literature: Author: Who wrote a poem about Vasari and painting the Sistine Chapel?
+Michaelangelo
+10
+
+Literature: Author: Who wrote A Prayer for Owen Meany?
+John irving
+10
+
+Literature: Author: Who wrote A Red Badge of Courage?
+Stephen crane
+10
+
+Literature: Author: Who wrote A Room with a View?
+E m forster
+10
+
+Literature: Author: Who wrote a series of novels about C.I.A. analyst, Jack Ryan?
+Tom clancy
+10
+
+Literature: Author: Who wrote A Time to Kill?
+John grisham
+10
+
+Literature: Author: Who wrote a total of 54 western romances?
+Zane grey
+10
+
+Literature: Author: Who wrote A View for the Bridge?
+Arthur miller
+10
+
+Literature: Author: Who wrote about his experiences in professional football in the book 'Paper Lion'?
+George Plimpton
+10
+
+Literature: Author: Who wrote about nils holgersson?
+Lagerlof
+10
+
+Literature: Author: Who wrote About Samuel Johnson?
+James boswell
+10
+
+Literature: Author: Who wrote Absolom Xl?
+William faulkner
+10
+
+Literature: Author: Who wrote Alice's Adventures in Wonderland?
+Lewis carroll
+10
+
+Literature: Author: Who wrote an ode to the railway bridge over the Tay and a lament when it collapsed?
+William mcgonagall
+10
+
+Literature: Author: Who wrote and directed the 1977 film 'Annie Hall'?
+Woody allen
+10
+
+Literature: Author: Who wrote and sang 'Where do you go to my lovely'?
+Peter sarstedt
+10
+
+Literature: Author: Who wrote Andromeda Strain?
+Michael creighton
+10
+
+Literature: Author: Who wrote Animal Farm?
+George orwell
+10
+
+Literature: Author: Who wrote Anne of Green Gables?
+L m montgomery
+10
+
+Literature: Author: Who wrote Anthem?
+Ann rand
+10
+
+Literature: Author: Who wrote Around the World in Eighty Days?
+Jules verne
+10
+
+Literature: Author: Who wrote Arrowsmith?
+Sinclair lewis
+10
+
+Literature: Author: Who wrote Art of Love?
+Ovid
+10
+
+Literature: Author: Who wrote As I Lay Dying?
+William faulkner
+10
+
+Literature: Author: Who wrote At Freddies?
+Penelope fitzgerald
+10
+
+Literature: Author: Who wrote Atlas Shrugged?
+Ayn rand
+10
+
+Literature: Author: Who wrote auld lang syne?
+Robert burns
+10
+
+Literature: Author: Who wrote Babbitt?
+Sinclair lewis
+10
+
+Literature: Author: Who wrote Bedside Showjumping?
+Harvey smith
+10
+
+Literature: Author: Who wrote Beloved?
+Toni morrison
+10
+
+Literature: Author: Who wrote Big Green Book?
+Robert graves
+10
+
+Literature: Author: Who wrote Big Money?
+John de passos
+10
+
+Literature: Author: Who wrote Billy Budd?
+Herman melville
+10
+
+Literature: Author: Who wrote Bobok?
+Fydor dostoyevsky
+10
+
+Literature: Author: Who wrote Born Free?
+Joy adamson
+10
+
+Literature: Author: Who wrote Brideshead Revisited?
+Evelyn waugh
+10
+
+Literature: Author: Who wrote Bridget Jones' Diarv?
+Helen fielding
+10
+
+Literature: Author: Who wrote Brief History of Time?
+Stephen hawkings
+10
+
+Literature: Author: Who wrote Brocas Brain?
+Carl sagan
+10
+
+Literature: Author: Who wrote Burmese Days?
+George orwell
+10
+
+Literature: Author: Who wrote Cakes and Ale?
+W somerset maugham
+10
+
+Literature: Author: Who wrote Call of Wild?
+Jack london
+10
+
+Literature: Author: Who wrote Cantebury Tales?
+Geoffrey chaucer
+10
+
+Literature: Author: Who wrote Captain Courageous?
+Rudyard Kipling
+10
+
+Literature: Author: Who wrote Cardinal of the Kremlin?
+Tom clancy
+10
+
+Literature: Author: Who wrote Carrie?
+Stephen King
+10
+
+Literature: Author: Who wrote Catch 22?
+Joseph heller
+10
+
+Literature: Author: Who wrote Catcher in the Rye?
+J d salinger
+10
+
+Literature: Author: Who wrote Centennial?
+James mitchener
+10
+
+Literature: Author: Who wrote Chronicles of Narnia?
+Cs lewis
+10
+
+Literature: Author: Who wrote Cider with Rosie?
+Laurie lee
+10
+
+Literature: Author: Who wrote Citizen Kane?
+Orson welles
+10
+
+Literature: Author: Who wrote Citizen of the Galaxy?
+Robert heinlein
+10
+
+Literature: Author: Who wrote Clear and Present Danger?
+Tom clancy
+10
+
+Literature: Author: Who wrote Collector's Choice?
+John Paul getty
+10
+
+Literature: Author: Who wrote Counte of Monte Christo?
+Alexander dumas
+10
+
+Literature: Author: Who wrote Crime and Punishment?
+Fydor dostoyevsky
+10
+
+Literature: Author: Who wrote Cry the Beloved Country?
+Alan paton
+10
+
+Literature: Author: Who wrote Cunning Man?
+Robertson davies
+10
+
+Literature: Author: Who wrote Daisy Millers?
+Henry james
+10
+
+Literature: Author: Who wrote Das Capital?
+Karl marx
+10
+
+Literature: Author: Who wrote das kapital?
+Karl marx
+10
+
+Literature: Author: Who wrote David Copperfield?
+Charles dickens
+10
+
+Literature: Author: Who wrote Death Comes for the Archbishop?
+Willa cather
+10
+
+Literature: Author: Who wrote Death of a Salesman?
+Arthur miller
+10
+
+Literature: Author: Who wrote Debt of Honour?
+Tom clancy
+10
+
+Literature: Author: Who wrote Deerslayer?
+James fenimore cooper
+10
+
+Literature: Author: Who wrote Deptford Mice Trilogy?
+Robert jarvis
+10
+
+Literature: Author: Who wrote Deptford Trilogy?
+Robertson davies
+10
+
+Literature: Author: Who wrote Devil's Dictionary?
+Ambrose pierce
+10
+
+Literature: Author: Who wrote Don Quixote?
+Cervantes
+10
+
+Literature: Author: Who wrote Door into Summer?
+Robert heinlein
+10
+
+Literature: Author: Who wrote Double Star?
+Robert heinlein
+10
+
+Literature: Author: Who wrote Dr. Zhivago?
+Boris pasternak
+10
+
+Literature: Author: Who wrote Dragon's Egg?
+Robert forward
+10
+
+Literature: Author: Who wrote Dragons of Eden?
+Carl sagan
+10
+
+Literature: Author: Who wrote Dubliners?
+James Joyce
+10
+
+Literature: Author: Who wrote Dung Beetle?
+Hans christian andersen
+10
+
+Literature: Author: Who wrote East of Eden?
+John steinbeck
+10
+
+Literature: Author: Who wrote El Gringo?
+Carlos fuentes
+10
+
+Literature: Author: Who wrote Elmer Gantry?
+Sinclair lewis
+10
+
+Literature: Author: Who wrote Embraced by the Light?
+Betty j eadie
+10
+
+Literature: Author: Who wrote Enders Game?
+Orson scott card
+10
+
+Literature: Author: Who wrote Evangeline?
+Longfellow
+10
+
+Literature: Author: Who wrote Every Living Thing?
+James herriot
+10
+
+Literature: Author: Who wrote Fahrenheit 451?
+Ray bradbury
+10
+
+Literature: Author: Who wrote Far From the Madding Crowd?
+Thomas Hardy
+10
+
+Literature: Author: Who wrote Father Brown Mysteries?
+Gilbert keith chesterton
+10
+
+Literature: Author: Who wrote Fear of 50?
+Erica jong
+10
+
+Literature: Author: Who wrote Fear of Flying?
+Erica jong
+10
+
+Literature: Author: Who wrote Female Eunoch?
+Germaine greer
+10
+
+Literature: Author: Who wrote Fifth Business?
+Robertson davies
+10
+
+Literature: Author: Who wrote Finnegan's Wake in 1939?
+James joyce
+10
+
+Literature: Author: Who wrote Finnegans Wake?
+James Joyce
+10
+
+Literature: Author: Who wrote Fire next Time?
+James a baldwin
+10
+
+Literature: Author: Who wrote Firestarter?
+Stephen King
+10
+
+Literature: Author: Who wrote Flauberts Parrot and England, England?
+Julian barnes
+10
+
+Literature: Author: Who wrote Flowers in the Attic?
+V c andrews
+10
+
+Literature: Author: Who wrote Flying?
+Charles de lint
+10
+
+Literature: Author: Who wrote For Whom the Bells Toll?
+Ernest hemingway
+10
+
+Literature: Author: Who wrote Frankenstein?
+Mary shelley
+10
+
+Literature: Author: Who wrote From Here to Eternity?
+James Joyce
+10
+
+Literature: Author: Who wrote From this Moment On?
+Cole porter
+10
+
+Literature: Author: Who wrote Gai-jim?
+James clavell
+10
+
+Literature: Author: Who wrote generation x?
+Douglas coupland
+10
+
+Literature: Author: Who wrote Golden Bowls?
+Henry james
+10
+
+Literature: Author: Who wrote Gone with the Wind?
+Margaret mitchell
+10
+
+Literature: Author: Who wrote Good Earth?
+Pearl s buck
+10
+
+Literature: Author: Who wrote goodbye mr chips?
+James hilton
+10
+
+Literature: Author: Who wrote Gravitys Rainbow?
+Thomas pyncheon
+10
+
+Literature: Author: Who wrote Greenmantle?
+Charles de lint
+10
+
+Literature: Author: Who wrote Guilty Pleasures?
+Laurell k hamilton
+10
+
+Literature: Author: Who wrote Gullivers travels?
+Jonathon swift
+10
+
+Literature: Author: Who wrote Handmaid's Tale?
+Margaret attwood
+10
+
+Literature: Author: Who wrote Hard Times?
+Charles dickens
+10
+
+Literature: Author: Who wrote Heart Is a Lonely Hunter?
+Carson mccullers
+10
+
+Literature: Author: Who wrote Heart of Darkness?
+Joseph conrad
+10
+
+Literature: Author: Who wrote Heart of the Matter?
+Graham green
+10
+
+Literature: Author: Who wrote Henderson the Rain King?
+Saul bellow
+10
+
+Literature: Author: Who wrote High Wind in Jamaica?
+Richard hughes
+10
+
+Literature: Author: Who wrote his Journal of the Plague Year at the age of five?
+Defoe
+10
+
+Literature: Author: Who wrote Hitchikers Guide to the Galaxy?
+Douglas adams
+10
+
+Literature: Author: Who wrote horror tales such as The fall of the House of Usher?
+Edgar allan poe
+10
+
+Literature: Author: Who wrote Hotel?
+Arthur hailey
+10
+
+Literature: Author: Who wrote House of 7 Gables?
+Nathanial lewis
+10
+
+Literature: Author: Who wrote House of Seven Gables?
+Nathanial hawthorne
+10
+
+Literature: Author: Who wrote How to Win Friends and Influence People?
+Dale carnegie
+10
+
+Literature: Author: Who wrote Hunchback of Notre Dame?
+Victor hugo
+10
+
+Literature: Author: Who wrote Hunt for Red October?
+Tom clancy
+10
+
+Literature: Author: Who wrote I Am Legend?
+Richard matt
+10
+
+Literature: Author: Who wrote I Claudius?
+Robert graves
+10
+
+Literature: Author: Who wrote I Robot?
+Isaac asimov
+10
+
+Literature: Author: Who wrote Ice Palace?
+Edna furber
+10
+
+Literature: Author: Who wrote Iceman Cometh?
+Eugene oneill
+10
+
+Literature: Author: Who wrote If Only They Could Talk?
+James herriot
+10
+
+Literature: Author: Who wrote Il Principe&?
+Niccolo macchiavelli
+10
+
+Literature: Author: Who wrote Illusions?
+Richard bach
+10
+
+Literature: Author: Who wrote Imajica?
+Barker
+10
+
+Literature: Author: Who wrote In Cold Blood?
+Truman capote
+10
+
+Literature: Author: Who wrote Incarnations of Immortality?
+Piers antony
+10
+
+Literature: Author: Who wrote Interview with a Vampire?
+Anne rice
+10
+
+Literature: Author: Who wrote Invisible Man?
+Ralph ellison
+10
+
+Literature: Author: Who wrote Invitation to a Beheading?
+Vladimir nabokov
+10
+
+Literature: Author: Who wrote Ironweed?
+William Kennedy
+10
+
+Literature: Author: Who wrote Islands in the Stream?
+Ernest hemingway
+10
+
+Literature: Author: Who wrote It Should't Happen to a Vet?
+James herriot
+10
+
+Literature: Author: Who wrote It?
+Stephen King
+10
+
+Literature: Author: Who wrote Ivanhoe?
+Sir walter scott
+10
+
+Literature: Author: Who wrote Jane Eyre?
+Charlotte bronte
+10
+
+Literature: Author: Who wrote Jaws?
+Peter benchley
+10
+
+Literature: Author: Who wrote Joy of Collecting?
+John Paul getty
+10
+
+Literature: Author: Who wrote just one novel called savrola?
+Winston churchill
+10
+
+Literature: Author: Who wrote Keep the home fires burning?
+Ivor novello
+10
+
+Literature: Author: Who wrote Kim?
+Rudyard Kipling
+10
+
+Literature: Author: Who wrote King Arthur?
+Thomas malory
+10
+
+Literature: Author: Who wrote La Marseillaise?
+Captain Claude Rouget de Lisle
+10
+
+Literature: Author: Who wrote Lady with Lapdog?
+Anton chekhov
+10
+
+Literature: Author: Who wrote Last of the Mohicans?
+James fenimore cooper
+10
+
+Literature: Author: Who wrote Les Miserables?
+Victor hugo
+10
+
+Literature: Author: Who wrote Let Sleeping Vets Lie?
+James herriot
+10
+
+Literature: Author: Who wrote Leviathan?
+Thomas hobbes
+10
+
+Literature: Author: Who wrote Light in August?
+William faulkner
+10
+
+Literature: Author: Who wrote Lightning?
+Dean Koontz
+10
+
+Literature: Author: Who wrote Little Country?
+Charles de lint
+10
+
+Literature: Author: Who wrote Little Men?
+Louisa may alcott
+10
+
+Literature: Author: Who wrote Little Women?
+Louisa may alcott
+10
+
+Literature: Author: Who wrote Lodore?
+Mary shelley
+10
+
+Literature: Author: Who wrote Lolita?
+Vladimir nabokov
+10
+
+Literature: Author: Who wrote Lonesome Dove?
+Larry mcmurtry
+10
+
+Literature: Author: Who wrote Long Goodbye?
+Raymond chandler
+10
+
+Literature: Author: Who wrote Lord Jim?
+Joseph conrad
+10
+
+Literature: Author: Who wrote Lord of the Flies?
+William golding
+10
+
+Literature: Author: Who wrote Lord Of The Rings?
+J.r.r. tolkien
+10
+
+Literature: Author: Who wrote love is all around?
+Reg presley
+10
+
+Literature: Author: Who wrote Madame Bovary?
+Gustav flaubert
+10
+
+Literature: Author: Who wrote Main Street?
+Sinclair lewis
+10
+
+Literature: Author: Who wrote Maltese Falcon?
+Dashiell hammett
+10
+
+Literature: Author: Who wrote man and superman?
+George bernard shaw
+10
+
+Literature: Author: Who wrote Man in the Iron Mask?
+Alexander dumas
+10
+
+Literature: Author: Who wrote Mansfield Park?
+Jane austen
+10
+
+Literature: Author: Who wrote Marlow?
+Arthur conan doyle
+10
+
+Literature: Author: Who wrote Martian Chronicles?
+Ray bradbury
+10
+
+Literature: Author: Who wrote Mask?
+Dean Koontz
+10
+
+Literature: Author: Who wrote Mein Kampf?
+Adolf hitler
+10
+
+Literature: Author: Who wrote Memory and Dreams?
+Charles de lint
+10
+
+Literature: Author: Who wrote Microserfs?
+Douglas coupland
+10
+
+Literature: Author: Who wrote Middlemarch?
+George elliot
+10
+
+Literature: Author: Who wrote Midnight Children?
+Salman rushdie
+10
+
+Literature: Author: Who wrote Millengro?
+Charles de lint
+10
+
+Literature: Author: Who wrote Misfits?
+Arthur miller
+10
+
+Literature: Author: Who wrote Miss Marple?
+Agatha christie
+10
+
+Literature: Author: Who wrote Mission Earth?
+L ron hubbard
+10
+
+Literature: Author: Who wrote Moby Dick?
+Herman Melville
+10
+
+Literature: Author: Who wrote Moll Flanders?
+Daniel defoe
+10
+
+Literature: Author: Who wrote Moon Is a Harsh Mistress?
+Robert heinlein
+10
+
+Literature: Author: Who wrote Moonheart?
+Charles de lint
+10
+
+Literature: Author: Who wrote most of the new testament books?
+Paul
+10
+
+Literature: Author: Who wrote Mountain Greenery?
+Rodgers and hart
+10
+
+Literature: Author: Who wrote Movable Feast?
+Ernest hemingway
+10
+
+Literature: Author: Who wrote Mulengro?
+Charles de lint
+10
+
+Literature: Author: Who wrote Murders of Rue Morgue?
+Edgar allan poe
+10
+
+Literature: Author: Who wrote My Antonia?
+Willa cather
+10
+
+Literature: Author: Who wrote My Favourite Hero?
+James Joyce
+10
+
+Literature: Author: Who wrote My Friend Flicka?
+Mary o'hara
+10
+
+Literature: Author: Who wrote Mythago Wood?
+Robert holdstock
+10
+
+Literature: Author: Who wrote Naked Lunch?
+William s burroughs
+10
+
+Literature: Author: Who wrote Necroscope?
+Lumley
+10
+
+Literature: Author: Who wrote Never Bet the Devil on Your Head?
+Edgar allan poe
+10
+
+Literature: Author: Who wrote Night Chills?
+Dean Koontz
+10
+
+Literature: Author: Who wrote Nightwork?
+Irwin shaw
+10
+
+Literature: Author: Who wrote Nore Dame de Paris?
+Victor hugo
+10
+
+Literature: Author: Who wrote Nostromo?
+Joseph conrad
+10
+
+Literature: Author: Who wrote Nothing Lasts Forever?
+Sidney sheldon
+10
+
+Literature: Author: Who wrote O Pioneer!?
+Willa cather
+10
+
+Literature: Author: Who wrote ode to a nightingale?
+Keats
+10
+
+Literature: Author: Who wrote Of Human Bondage?
+W somerset maugham
+10
+
+Literature: Author: Who wrote Old Curiousity Shop?
+Charles dickens
+10
+
+Literature: Author: Who wrote On the Beach?
+Neville shute
+10
+
+Literature: Author: Who wrote On the Road?
+Jack Kerouac
+10
+
+Literature: Author: Who wrote One Flew over the Cuckoo's Nest?
+Ken Kesey
+10
+
+Literature: Author: Who wrote One of Ours?
+Willa cather
+10
+
+Literature: Author: Who wrote Other Side of Midnight?
+Sidney sheldon
+10
+
+Literature: Author: Who wrote Pale Fire?
+Vladimir nabokov
+10
+
+Literature: Author: Who wrote Parades End?
+Ford madox ford
+10
+
+Literature: Author: Who wrote Paradise Lost?
+John milton
+10
+
+Literature: Author: Who wrote Patriot Games?
+Tom clancy
+10
+
+Literature: Author: Who wrote Pelican Brief?
+John grisham
+10
+
+Literature: Author: Who wrote Peter Pan?
+James m barrie
+10
+
+Literature: Author: Who wrote Pilgrims Progress?
+John bunyan
+10
+
+Literature: Author: Who wrote Point Counterpoint?
+Aldous huxley
+10
+
+Literature: Author: Who wrote Portnoy's Complaint?
+Philip roth
+10
+
+Literature: Author: Who wrote Portrait of a Ladys?
+Henry james
+10
+
+Literature: Author: Who wrote Pride and Prejudice?
+Jane austen
+10
+
+Literature: Author: Who wrote Principia Mathernatica. with Alfred North Whitehead, between 1910 and 1913?
+Bertrand russell
+10
+
+Literature: Author: Who wrote Psycho a country song whose narrator kills four people and a puppy?
+Leon payne
+10
+
+Literature: Author: Who wrote Psycho?
+Richard bloch
+10
+
+Literature: Author: Who wrote Puppet Masters?
+Robert heinlein
+10
+
+Literature: Author: Who wrote Rainbow?
+D h lawrence
+10
+
+Literature: Author: Who wrote Rainmaker?
+John grisham
+10
+
+Literature: Author: Who wrote Rebecca?
+Daphne du maurier
+10
+
+Literature: Author: Who wrote Red Storm Rising?
+Tom clancy
+10
+
+Literature: Author: Who wrote Rip van Winkle?
+Washington irving
+10
+
+Literature: Author: Who wrote Rob Roy?
+Sir walter scott
+10
+
+Literature: Author: Who wrote Roots?
+Arthur hailey
+10
+
+Literature: Author: Who wrote Russia House?
+John le carre
+10
+
+Literature: Author: Who wrote Sahara?
+Clive cussler
+10
+
+Literature: Author: Who wrote Sailing Alone Around the World?
+Joshua slocum
+10
+
+Literature: Author: Who wrote Satanic Verses?
+Salman rushdie
+10
+
+Literature: Author: Who wrote Secret Sharer?
+Joseph conrad
+10
+
+Literature: Author: Who wrote Sense and Sensibility?
+Jane austen
+10
+
+Literature: Author: Who wrote Sheltering Sky?
+Paul bowles
+10
+
+Literature: Author: Who wrote Shock Wave?
+Clive cussler
+10
+
+Literature: Author: Who wrote Silas Marner?
+George elliot
+10
+
+Literature: Author: Who wrote Simon Templar?
+Leslie charteris
+10
+
+Literature: Author: Who wrote Single and Single?
+John le carre
+10
+
+Literature: Author: Who wrote Slay Ride?
+Dick francis
+10
+
+Literature: Author: Who wrote Snow White and the Seven Dwarfs?
+The brothers grimm
+10
+
+Literature: Author: Who wrote Someplace to Be Flying?
+Charles de lint
+10
+
+Literature: Author: Who wrote Something Wicked this Way Comes?
+Ray bradbury
+10
+
+Literature: Author: Who wrote Sometimes a Great Notion?
+Ken Kesey
+10
+
+Literature: Author: Who wrote Song of Solomon?
+Toni morrison
+10
+
+Literature: Author: Who wrote Sons and Lovers?
+D h lawrence
+10
+
+Literature: Author: Who wrote sons and lovers?
+D.h. lawrence
+10
+
+Literature: Author: Who wrote Sound and the Fury?
+William faulkner
+10
+
+Literature: Author: Who wrote Sparkling Cyanide and Death on the Nile?
+Agatha christie
+10
+
+Literature: Author: Who wrote Starquake?
+Robert forward
+10
+
+Literature: Author: Who wrote Starship Troopers?
+Robert heinlein
+10
+
+Literature: Author: Who wrote Storm Warning?
+Jack higgins
+10
+
+Literature: Author: Who wrote Stranger in a Strange Land?
+Robert heinlein
+10
+
+Literature: Author: Who wrote Strangers?
+Dean Koontz
+10
+
+Literature: Author: Who wrote Study in Scarlet?
+Arthur conan doyle
+10
+
+Literature: Author: Who wrote Submarine?
+Tom clancy
+10
+
+Literature: Author: Who wrote Sum of All Fears?
+Tom clancy
+10
+
+Literature: Author: Who wrote Sun Also Rises?
+Ernest hemingway
+10
+
+Literature: Author: Who wrote Swallows and Amazons?
+Arthur ransome
+10
+
+Literature: Author: Who wrote Tai-pen?
+James clavell
+10
+
+Literature: Author: Who wrote Tale of Two Cities?
+Charles dickens
+10
+
+Literature: Author: Who wrote Tender Is the Night?
+F scott fitzgerald
+10
+
+Literature: Author: Who wrote Terra Nostra?
+Carlos fuentes
+10
+
+Literature: Author: Who wrote Testament?
+John grisham
+10
+
+Literature: Author: Who wrote that the female of the species is more deadly that the male?
+Rudyard Kipling
+10
+
+Literature: Author: Who wrote the 'Aeneid'?
+Virgil
+10
+
+Literature: Author: Who wrote the 'dragonriders of pern' series?
+Anne mcaffrey
+10
+
+Literature: Author: Who wrote the 'father brown' crime stories?
+G k chesterton
+10
+
+Literature: Author: Who wrote the 'Odyssey'?
+Homer
+10
+
+Literature: Author: Who wrote the 'pledge of allegiance' to the flag of the united states?
+Francis bellamy
+10
+
+Literature: Author: Who wrote the 'salem witchcraft trials'?
+Arthur miller
+10
+
+Literature: Author: Who wrote the 'The Dam Busters March' for the 1954 film of that name?
+Eric coates
+10
+
+Literature: Author: Who wrote the 'waverley novels'?
+Walter scott
+10
+
+Literature: Author: Who wrote the 1955 play Long Day's Journey into Night?
+Eugene o'neill
+10
+
+Literature: Author: Who wrote the 1958 play Five Finger Exercise?
+Peter shaffer
+10
+
+Literature: Author: Who wrote the 1977 TV mini-series Roots?
+Alex Haley 
+10
+
+Literature: Author: Who wrote the 1996 best selling book 'It Takes A Village'?
+Hilary Clinton
+10
+
+Literature: Author: Who wrote The Age of Reason?
+Thomas paine
+10
+
+Literature: Author: Who wrote The Ambassadors?
+Henry james
+10
+
+Literature: Author: Who wrote the autobiographical book my family and other animals in 1956?
+Gerald durrell
+10
+
+Literature: Author: Who wrote the autobiography 'Managing My Life'?
+Sir alex ferguson
+10
+
+Literature: Author: Who wrote The Bad Child's Book of Beasts, first published in 1896?
+Hilaire belloc
+10
+
+Literature: Author: Who wrote the ballad Paul Reveres Ride?
+Henry wadsworth longfellow
+10
+
+Literature: Author: Who wrote the baroque conserto grosso?
+Johann sebastian bach
+10
+
+Literature: Author: Who wrote the Battenburg Concertos?
+J s bach
+10
+
+Literature: Author: Who wrote The Bear?
+William faulkner
+10
+
+Literature: Author: Who wrote the best selling book on which the film 'Jurassic Park was based'?
+Michael crichton
+10
+
+Literature: Author: Who wrote the best selling novel polo?
+Jilly cooper
+10
+
+Literature: Author: Who wrote The birthday Party?
+Harold Pinter
+10
+
+Literature: Author: Who wrote The Black Cat?
+Edgar allan poe
+10
+
+Literature: Author: Who wrote the book 'Animal Farm'?
+Orwell
+10
+
+Literature: Author: Who wrote the book 'Jaws'?
+Peter benchley
+10
+
+Literature: Author: Who wrote the book 'Portrait of a Lady'?
+Henry james
+10
+
+Literature: Author: Who wrote the book 'Something Happened'?
+Joseph heller
+10
+
+Literature: Author: Who wrote the book 'the client'?
+Grisham
+10
+
+Literature: Author: Who wrote the book 'The Lion, The Witch and The Wardrobe'?
+C.s. lewis
+10
+
+Literature: Author: Who wrote the book 'The Origin of Species'?
+Charles Darwin
+10
+
+Literature: Author: Who wrote the book 'Zen and the Art of Motorcvcle Maintenance'?
+Robert persig
+10
+
+Literature: Author: Who wrote the book coral island?
+R. m. ballantyne
+10
+
+Literature: Author: Who wrote the book Jurasic Park?
+Crichton
+10
+
+Literature: Author: Who wrote the book Longitude, about John Harrison's invention of the chronometer?
+Dava sobel
+10
+
+Literature: Author: Who wrote the book of proverbs?
+Solomon
+10
+
+Literature: Author: Who wrote the book on which Donizetti based his opera Lucia di Lammermoor?
+Sir walter scott
+10
+
+Literature: Author: Who wrote the book on which the Oscar winning film 'The Godfather' was based?
+Mario puzo
+10
+
+Literature: Author: Who wrote the book the Jewel in the Crown?
+Paul scott
+10
+
+Literature: Author: Who wrote the booker prize-winning novel oscar and lucinda?
+Peter carey
+10
+
+Literature: Author: Who wrote the Booker Prize-winning novel The Old Devils?
+Kingsley amis
+10
+
+Literature: Author: Who wrote the books on which the television series The Darling lands of May was based?
+H e bates
+10
+
+Literature: Author: Who wrote the brandenburg concertos?
+J s bach
+10
+
+Literature: Author: Who wrote The Chamber?
+John grisham
+10
+
+Literature: Author: Who wrote the children's novel The Secret Garden?
+Francis hodgson burnett
+10
+
+Literature: Author: Who wrote the children's novel The Story of Doctor Doolittle?
+Hugh lofting
+10
+
+Literature: Author: Who wrote the children's story Badjelly the Witch?
+Spike milligan
+10
+
+Literature: Author: Who wrote the childrens book the borrowers?
+Mary norton
+10
+
+Literature: Author: Who wrote the childrens classic 'The Borrowers'?
+Mary norton
+10
+
+Literature: Author: Who wrote the childrens work 'Peter and the Wolf'?
+Sergei prokofiev
+10
+
+Literature: Author: Who wrote the choral work the Messiah?
+George frederick handel
+10
+
+Literature: Author: Who wrote the classic novel' Anne of Green Gables'?
+L m montgomery
+10
+
+Literature: Author: Who wrote The Client?
+John grisham
+10
+
+Literature: Author: Who wrote the color purple?
+Alice walker
+10
+
+Literature: Author: Who wrote the crime fiction books 'Black Notice' and 'Point of Origin'?
+Patricia cornwell
+10
+
+Literature: Author: Who wrote the crime fiction books 'Blind Date' and 'Staring at the Light'?
+Francis fyfield
+10
+
+Literature: Author: Who wrote The Cruel Sea?
+Nicholas monsarrat
+10
+
+Literature: Author: Who wrote The Deliverance?
+James dickey
+10
+
+Literature: Author: Who wrote The Eagle Has Landed?
+Jack higgins
+10
+
+Literature: Author: Who wrote the Earth's children series?
+Jean manuel
+10
+
+Literature: Author: Who wrote the English patient?
+Michael ondaatje
+10
+
+Literature: Author: Who wrote the epic poem Paradise ost?
+John milton
+10
+
+Literature: Author: Who wrote The Exorcist?
+William peter blatty
+10
+
+Literature: Author: Who wrote the fairy story Hansel and Gretel?
+Brothers grimm
+10
+
+Literature: Author: Who wrote the famous hardy boys mystery series?
+Franklin w. dixon
+10
+
+Literature: Author: Who wrote the famous mirc program?
+Khaled mardam-bey
+10
+
+Literature: Author: Who wrote the famous poem daffodils?
+William wordsworth
+10
+
+Literature: Author: Who wrote The Firm?
+John grisham
+10
+
+Literature: Author: Who wrote the first detective story ever published?
+Poe
+10
+
+Literature: Author: Who wrote the first draft of the US constitution?
+Jefferson
+10
+
+Literature: Author: Who wrote The Fountainhead?
+Ayn rand
+10
+
+Literature: Author: Who wrote The Godfather?
+Mario puzo
+10
+
+Literature: Author: Who wrote The Great Gatsby?
+F scott fitzgerald
+10
+
+Literature: Author: Who wrote the great gothic classic, the mysteries of udolpho?
+Ann radcliffe
+10
+
+Literature: Author: Who wrote The Ground Beneath Her Feet?
+Salman rushdie
+10
+
+Literature: Author: Who wrote the history of mr polly?
+H g wells
+10
+
+Literature: Author: Who wrote the hit musical West Side Story?
+Leonard bernstein
+10
+
+Literature: Author: Who wrote the horror story The Pit and the Pendulum?
+Edgar allan poe
+10
+
+Literature: Author: Who wrote the Hunchback of Notre Dame?
+Victor hugo
+10
+
+Literature: Author: Who wrote the hunt for red october?
+Tom clancy
+10
+
+Literature: Author: Who wrote the ipcress file?
+Len deighton
+10
+
+Literature: Author: Who wrote the James Bond novel Colonel Sun under the pseudnym Robert Markham?
+Kingsley amis
+10
+
+Literature: Author: Who wrote The Jungle Book?
+Rudyard Kipling
+10
+
+Literature: Author: Who wrote The Jungle?
+Upton Sinclair
+10
+
+Literature: Author: Who wrote The Just So Stories?
+Rudyard Kipling
+10
+
+Literature: Author: Who wrote The Last Tycoon?
+F scott fitzgerald
+10
+
+Literature: Author: Who wrote the little prince?
+Antoine de saint-exupery
+10
+
+Literature: Author: Who wrote the lord of the rings (full name)?
+John ronald reuel tolkien
+10
+
+Literature: Author: Who wrote The Lottery?
+Shirley jackson
+10
+
+Literature: Author: Who wrote the love poem beginning with 'how do i love thee let me count the ways'?
+Elizabeth barrett browning
+10
+
+Literature: Author: Who wrote the lyrics to Andrew Lloyd Webbers Starlight Express?
+Richard stilgoe
+10
+
+Literature: Author: Who wrote the lyrics to my fair lady?
+Alan jay lerner
+10
+
+Literature: Author: Who wrote the magician's nephew?
+C s lewis
+10
+
+Literature: Author: Who wrote The Magus?
+John fowles
+10
+
+Literature: Author: Who wrote The Moneychangers?
+Arthur hailey
+10
+
+Literature: Author: Who wrote The Monkees hit I'm a Believer?
+Neil diamond
+10
+
+Literature: Author: Who wrote The Moviegoer?
+Walker percy
+10
+
+Literature: Author: Who wrote the music for Carmen?
+Georges bizet
+10
+
+Literature: Author: Who wrote the music for local hero?
+Mark knopfler
+10
+
+Literature: Author: Who wrote the music for the 1948 film 'Scott of the Antarctic' and made a symphony out of it?
+Vaughan williams
+10
+
+Literature: Author: Who wrote the music for walk on by for dionne warwick?
+Burt bacharach
+10
+
+Literature: Author: Who wrote the music to west side story?
+Leonard bernstein
+10
+
+Literature: Author: Who wrote the musical 'cats'?
+Andrew lloyd webber
+10
+
+Literature: Author: Who wrote the musical porgy and bess?
+George gershwin
+10
+
+Literature: Author: Who wrote The Mystery of Marie Roget?
+Edgar allan poe
+10
+
+Literature: Author: Who wrote the myth series?
+Robert asprin
+10
+
+Literature: Author: Who wrote the name of the rose?
+Umberto eco
+10
+
+Literature: Author: Who wrote the neverending story?
+Michael ende
+10
+
+Literature: Author: Who wrote The Night of the Iguana?
+Tennessee williams
+10
+
+Literature: Author: Who wrote the nonsense poem The Jabberwocky?
+Lewis carroll
+10
+
+Literature: Author: Who wrote the novel ' Anna of the Five Towns'?
+Arnold bennett
+10
+
+Literature: Author: Who wrote the novel 'King Solomon's Mines'?
+H rider haggard
+10
+
+Literature: Author: Who wrote the novel 'Les Miserables'?
+Victor hugo
+10
+
+Literature: Author: Who wrote the novel 'Little Women'?
+Louisa may alcott
+10
+
+Literature: Author: Who wrote the novel 'Orlando'?
+Virginia woolf
+10
+
+Literature: Author: Who wrote the novel 'The Call of the Wild'?
+Jack london
+10
+
+Literature: Author: Who wrote the novel 'The Magic Mountain'?
+Thomas mann
+10
+
+Literature: Author: Who wrote the novel 'The Picture of Dorian Grey'?
+Oscar wilde
+10
+
+Literature: Author: Who wrote the novel 'The Strange Case of Dr. Jekyll and Mr Hyde'?
+Stevenson
+10
+
+Literature: Author: Who wrote the novel 'The Van'?
+Roddy doyle
+10
+
+Literature: Author: Who wrote the novel Enigma in 1995, about the wartime German coding machines?
+Robert harris
+10
+
+Literature: Author: Who wrote the novel Jonathan Livingston Seagull?
+Richard Bach
+10
+
+Literature: Author: Who wrote the novel Steppenwolf?
+Herman hesse
+10
+
+Literature: Author: Who wrote the novel The Last of the Mohicans, first published in 1820?
+James fenimore cooper
+10
+
+Literature: Author: Who wrote the novel the Valley of the Dolls?
+Jaqueline susann
+10
+
+Literature: Author: Who wrote the novel which the movie apocalypse now was based on?
+Joesph conrad
+10
+
+Literature: Author: Who wrote the novel' The Turn of the Screw'?
+Henry james
+10
+
+Literature: Author: Who wrote the novels 'From Here to Eternity', 'The Pistol' and 'The Thin Red Line'?
+James jones
+10
+
+Literature: Author: Who wrote the novels 'The Naked and the Dead', 'The Deer Park' and 'The Executioner's Song'?
+Norman mailer
+10
+
+Literature: Author: Who wrote the novels on which the films 'carrie' and 'the shining' were based?
+Stephen King
+10
+
+Literature: Author: Who wrote the Nutcracker Suite?
+Tchaikovsky
+10
+
+Literature: Author: Who wrote The Old Man and the Sea?
+Ernest hemingway
+10
+
+Literature: Author: Who wrote the opera 'carmen'?
+George bizet
+10
+
+Literature: Author: Who wrote the opera 'don pasquale'?
+Gaetano donizetti
+10
+
+Literature: Author: Who wrote the opera 'i pagliacci'?
+Ruggiero leoncavallo
+10
+
+Literature: Author: Who wrote the opera 'Pogy and Bess'?
+George gershwin
+10
+
+Literature: Author: Who wrote the opera 'rigoletto'?
+Guiseppe verdi
+10
+
+Literature: Author: Who wrote the opera 'samson and delilah'?
+Camille saint-saens
+10
+
+Literature: Author: Who wrote the opera 'the flying dutchman'?
+Richard wagner
+10
+
+Literature: Author: Who wrote the opera Carmen?
+Bizet
+10
+
+Literature: Author: Who wrote the opera Fortinbras?
+Schubert
+10
+
+Literature: Author: Who wrote the opera La Traviata?
+Verdi
+10
+
+Literature: Author: Who wrote the opera madame butterfly?
+Puccini
+10
+
+Literature: Author: Who wrote the opera Pagliacci?
+Leoncavallo
+10
+
+Literature: Author: Who wrote the opera Rodelinda?
+Handel
+10
+
+Literature: Author: Who wrote the opera the Snow Maiden?
+Rimsky-korsakov
+10
+
+Literature: Author: Who wrote the opera Tosca?
+Puccini
+10
+
+Literature: Author: Who wrote the opera: The Merry Widow?
+Franz lehar
+10
+
+Literature: Author: Who wrote the opera' The Turn of the Screw'?
+Benjamin britten
+10
+
+Literature: Author: Who wrote the original sherlock holmes stories?
+Sir arthur conan doyle
+10
+
+Literature: Author: Who wrote The Partner?
+John grisham
+10
+
+Literature: Author: Who wrote The Pirates of Penzance?
+Gilbert & sullivan
+10
+
+Literature: Author: Who wrote The Plague Dogs?
+Richard adams
+10
+
+Literature: Author: Who wrote the play 'Chips with Everything'?
+Arnold wesker
+10
+
+Literature: Author: Who wrote the play 'Rosencrantz and Guildenstein' are dead?
+Tom stoppard
+10
+
+Literature: Author: Who wrote the play 'Under Milk Wood'?
+Dylan thomas
+10
+
+Literature: Author: Who wrote the play all my sons in 1947?
+Arthur miller
+10
+
+Literature: Author: Who wrote the play Heartbreak House?
+George bernard shaw
+10
+
+Literature: Author: Who wrote the play Look Back in Anger?
+John osborne
+10
+
+Literature: Author: Who wrote the poem 'Hudibras'?
+Samuel butler
+10
+
+Literature: Author: Who wrote the poem 'mending wall'?
+Robert frost
+10
+
+Literature: Author: Who wrote the poem 'the waste land'?
+T s eliot
+10
+
+Literature: Author: Who wrote the poem Anthem for Doomed Youth?
+Wilfred owen
+10
+
+Literature: Author: Who wrote the poem beginning with 'this is my letter to the world'?
+Emily dickinson
+10
+
+Literature: Author: Who wrote the poem goblin market?
+Christina rossetti
+10
+
+Literature: Author: Who wrote the poem that this line comes from 'water, water everywhere nor any drop to drink'?
+Samuel coleridge
+10
+
+Literature: Author: Who wrote the poem the lady of shallot?
+Alfred lord tennyson
+10
+
+Literature: Author: Who wrote the poem to see a world?
+William blake
+10
+
+Literature: Author: Who wrote the poem, the lines were composed a few miles above, tintern abbey?
+William wordsworth
+10
+
+Literature: Author: Who wrote the psalms?
+David
+10
+
+Literature: Author: Who wrote the Rama Series?
+Arthur c clarke
+10
+
+Literature: Author: Who wrote the razor's edge?
+Somerset maugham
+10
+
+Literature: Author: Who wrote The Recognition?
+William gaddis
+10
+
+Literature: Author: Who wrote The Red Shoes?
+Hans christian anderson
+10
+
+Literature: Author: Who wrote the rights of man?
+Thomas paine
+10
+
+Literature: Author: Who wrote The Rime of the Ancient Mariner?
+Samuel Taylor Coleridge
+10
+
+Literature: Author: Who wrote the robocomm computer program?
+Dan parsons
+10
+
+Literature: Author: Who wrote The Runaway Jury?
+John grisham
+10
+
+Literature: Author: Who wrote the Russian novel 'The Brothers Karamazov'?
+Dostoevsky
+10
+
+Literature: Author: Who wrote the satanic verses, and was condemned to death by the ayatollah khomeini?
+Salman rushdie
+10
+
+Literature: Author: Who wrote The Scarlett Letter?
+Nathanial hawthorne
+10
+
+Literature: Author: Who wrote the science fiction book The Midwich Cuckoos?
+John wyndham
+10
+
+Literature: Author: Who wrote the science fiction books Consider Her Ways and Chocky?
+John wyndham
+10
+
+Literature: Author: Who wrote the screenplay for day of the dolphin?
+Buck Henry
+10
+
+Literature: Author: Who wrote The Secret Diary of Adrian Mole?
+Sue townsend
+10
+
+Literature: Author: Who wrote the semi-autobiographical novel 'Of Human Bondage?
+Somerset maughan
+10
+
+Literature: Author: Who wrote the shining and pet cemetary?
+Stephen King
+10
+
+Literature: Author: Who wrote the shining?
+Stephen King
+10
+
+Literature: Author: Who wrote the shinning and pet cemetary?
+Stephen King
+10
+
+Literature: Author: Who wrote the sign of four and the valley of fear?
+Conan doyle
+10
+
+Literature: Author: Who wrote The Snopes Trilogy?
+William faulkner
+10
+
+Literature: Author: Who wrote the song 'Anything Goes'?
+Cole porter
+10
+
+Literature: Author: Who wrote the song 'See My Baby Jive'?
+Roy wood
+10
+
+Literature: Author: Who wrote the song 'There's no business like show business'?
+Irving Berlin
+10
+
+Literature: Author: Who wrote the song of songs?
+Solomon
+10
+
+Literature: Author: Who wrote The Stand?
+Stephen King
+10
+
+Literature: Author: Who wrote The Stars Look Down and Hatter's Castle?
+A j cronin
+10
+
+Literature: Author: Who wrote the Summa Theologica?
+Thomas aquinas
+10
+
+Literature: Author: Who wrote the supernatural tale the turn of the screw?
+Henry james
+10
+
+Literature: Author: Who wrote the Swiss family robinson?
+J r wyss
+10
+
+Literature: Author: Who wrote the tao of pooh?
+Benjamin hoff
+10
+
+Literature: Author: Who wrote the thriller jurassic park?
+Michael crichton
+10
+
+Literature: Author: Who wrote the thriller the name of the rose?
+Umberto eco
+10
+
+Literature: Author: Who wrote The Town?
+William faulkner
+10
+
+Literature: Author: Who wrote The Ugly Duckling?
+Hans christian anderson
+10
+
+Literature: Author: Who wrote the unbearable lightness of being?
+Milan kundera
+10
+
+Literature: Author: Who wrote the uncle remus tales?
+Joel chandler harris
+10
+
+Literature: Author: Who wrote the utopian novel Woman on the Edge of Time?
+Marge piercy
+10
+
+Literature: Author: Who wrote the vampire series that featured lestat as the main character?
+Anne
+10
+
+Literature: Author: Who wrote the water babies?
+Charles kingsley
+10
+
+Literature: Author: Who wrote the words of the hymn 'amazing grace'?
+John newton
+10
+
+Literature: Author: Who wrote the words that are engraved on the Statue of Liberty?
+Emma lazarus
+10
+
+Literature: Author: Who wrote the words to the American presidential official song, 'Hail to the chief'?
+Sir Walter Scott
+10
+
+Literature: Author: Who wrote the words to the popular victorian ballad Come into the garden Maud?
+Tennyson
+10
+
+Literature: Author: Who wrote the world according to garp?
+John irving
+10
+
+Literature: Author: Who wrote the young lions and rich man, poor man?
+Irwin shaw
+10
+
+Literature: Author: Who wrote Third Man?
+Graham green
+10
+
+Literature: Author: Who wrote Thorn Birds?
+Colleen mccullough
+10
+
+Literature: Author: Who wrote Three men in a boat?
+Jerome k jerome
+10
+
+Literature: Author: Who wrote Three Musketeers?
+Alexander dumas
+10
+
+Literature: Author: Who wrote Through the Looking Glass?
+Lewis carroll
+10
+
+Literature: Author: Who wrote Timberlaine?
+Sinclair lewis
+10
+
+Literature: Author: Who wrote Tinker Tailor Soldier Spy?
+John le carre
+10
+
+Literature: Author: Who wrote To Kill a Mockingbird?
+Harper lee
+10
+
+Literature: Author: Who wrote Tobacco Road?
+Erskine caldwell
+10
+
+Literature: Author: Who wrote tom jones?
+Henry fielding
+10
+
+Literature: Author: Who wrote Town like Alice?
+Neville shute
+10
+
+Literature: Author: Who wrote Trader?
+Charles dickens
+10
+
+Literature: Author: Who wrote Travels?
+Marco polo
+10
+
+Literature: Author: Who wrote Tropic of Cancer?
+Henry miller
+10
+
+Literature: Author: Who wrote Trustee in the Toolroom?
+Neville shute
+10
+
+Literature: Author: Who wrote Ulysses?
+James Joyce
+10
+
+Literature: Author: Who wrote under the pen name of George Eliot?
+Marian evans
+10
+
+Literature: Author: Who wrote Under the Volcano?
+Malcolm lowry
+10
+
+Literature: Author: Who wrote USA Trilogy?
+John de passos
+10
+
+Literature: Author: Who wrote V?
+Thomas pyncheon
+10
+
+Literature: Author: Who wrote Vanity Fair?
+William thackeray
+10
+
+Literature: Author: Who wrote Vet in Harness?
+James herriot
+10
+
+Literature: Author: Who wrote Watchers?
+Dean Koontz
+10
+
+Literature: Author: Who wrote Watership Down?
+Richard adams
+10
+
+Literature: Author: Who wrote Way of All Flesh?
+Samuel butler
+10
+
+Literature: Author: Who wrote We the Living?
+Ayn rand
+10
+
+Literature: Author: Who wrote Wheel of Time Series?
+Robert Jordan
+10
+
+Literature: Author: Who wrote Where the Air Clears?
+Carlos fuentes
+10
+
+Literature: Author: Who wrote whisky galore?
+Compton mackenzie
+10
+
+Literature: Author: Who wrote Wild Sargasso Sea?
+Jean rhys
+10
+
+Literature: Author: Who wrote Wind in the Willows?
+Kenneth graham
+10
+
+Literature: Author: Who wrote Wings of the Doves?
+Henry james
+10
+
+Literature: Author: Who wrote Winnie the Pooh?
+Aa milne
+10
+
+Literature: Author: Who wrote Without Remorse?
+Tom clancy
+10
+
+Literature: Author: Who wrote Wizard of Oz?
+L frank baum
+10
+
+Literature: Author: Who wrote Women in Love?
+D h lawrence
+10
+
+Literature: Author: Who wrote World According to Garp?
+John irving
+10
+
+Literature: Author: Who wrote Wuthering Heights?
+Emily bronte
+10
+
+Literature: Author: Who wrote'Chopsticks'?
+Arthur de lulli
+10
+
+Literature: Author: Working?
+Studs terkel
+10
+
+Literature: Author: Zorba the Greek?
+Nikos kazantzakis
+10
+
+Literature: award for childrens' literature?
+Newberry award
+10
+
+Literature: Before coming a full time author, what was the profession of Frederick Forsyth?
+Journalist
+10
+
+Literature: Before he won over countess Lyndon, what was Barry Lyndon's name?
+Redmond barry
+10
+
+Literature: Behind Shakespeare, who is the second most published author of all time?
+Charles Dickens 
+10
+
+Literature: Belgium's most famous detective?
+Hercule poirot
+10
+
+Literature: Ben Hurs rival in the great chariot race?
+Messala
+10
+
+Literature: Births: What famous writer was born may 25, 1803?
+Ralph waldo emerson
+10
+
+Literature: British novelist best known for The Cruel Sea?
+Nicholas monsarrat
+10
+
+Literature: British writer best known for his memoirs Cider with Rosie and as I walked out one Midsummer morning?
+Laurie lee
+10
+
+Literature: British writer known for The Ipcress file,Funeral in Berlin?
+Len Deighton
+10
+
+Literature: Brother Cadfael belonged to which order of monks?
+Benedictine
+10
+
+Literature: Bury My Heart at ____ ____ by Brown
+Wounded knee
+10
+
+Literature: Caliph Harun al-Rashid of Baghdad featured in which series of eastern stories?
+-- Answer metadata begin
+{
+    "answers": ["The arabian nights", "A Thousand and One Arabian Nights"]
+}
+-- Answer metadata end
+10
+
+Literature: camoes wrote in this language?
+Portuguese
+10
+
+Literature: Captain Hook, Tiger Lily, and Tinker Bell are characters in what story?
+Peter pan
+10
+
+Literature: Cervantes is from this country?
+Spain
+10
+
+Literature: Character in David Copperfield?
+Uriah heep
+10
+
+Literature: Chesterton's sleuth?
+Father brown
+10
+
+Literature: Childrens' series that is really a religious allegory. (C.S. Lewis)?
+Chronicles of narnia
+10
+
+Literature: Clive Barker: Calhoun Mooney discovers the Fugue while chasing what (Weaveworld)?
+A pigeon
+10
+
+Literature: Clive Barker: Gentle used to be The Maestro ____ (Imajica)
+Sartori
+10
+
+Literature: Clive Barker: how many more books of blood were released in the uk than in the us?
+3
+10
+
+Literature: Clive Barker: Name of the books released in the US that was a Book of Blood in the UK?
+Cabal
+10
+
+Literature: Clive Barker: to the seerkind, normal people are known as ____ (weaveworld)
+Cuckoos
+10
+
+Literature: Clive Barker: What did the Nuncio transform Tommy-Ray into (Books of the Art)?
+The death boy
+10
+
+Literature: Clive Barker: what is the dream sea (the books of the art)?
+Quiddity
+10
+
+Literature: Clive Barker: what was randolf jaffe transformed into by the nuncio (books of the art)?
+The jaff jaff
+10
+
+Literature: Clive Barker: Who is Hapexamendios' son on Earth, eventually leads to his death (Imajica)?
+Gentle
+10
+
+Literature: Clive Barker: Who is the God of the Imajica?
+Hapexamendios
+10
+
+Literature: Clive Barker: Who possesses the coat of lights (Weaveworld)?
+Shadwell
+10
+
+Literature: Clive Barker: Whose body is Raul tranfered into (Books of the Art)?
+Tesla bombeck
+10
+
+Literature: Complete the title of the Charles Dickens novel 'Martin?
+Chuzzlewit
+10
+
+Literature: Complete the title of the Umberto Eco book 'The Name of the...?
+Rose
+10
+
+Literature: Contemporary: Author: another country, go tell it on the mountain?
+James baldwin
+10
+
+Literature: Contemporary: Author: Being There, The Painted Bird?
+Jerry kosinski
+10
+
+Literature: Contemporary: Author: Clear and Present Danger, Red Storm Rising?
+Tom clancy
+10
+
+Literature: Contemporary: Author: Fear of Flying, How to Save Your Own Life?
+Erica jong
+10
+
+Literature: Contemporary: Author: Half Moon Street, The Mosquitoe Coast?
+Paul theroux
+10
+
+Literature: Contemporary: Author: journey to ixtlan, a separate reality, the teachings of don juan?
+Carlos castaneda
+10
+
+Literature: Contemporary: Author: King used this penname to write Thinner and The Long Walk, et al?
+Richard bachman
+10
+
+Literature: Contemporary: Author: Maia, The Plague Dogs, and Watership Down?
+Richard adams
+10
+
+Literature: Contemporary: Author: The Bell Jar?
+Sylvia plath
+10
+
+Literature: Contemporary: Author: The Crying of Lot 49, and V?
+Thomas pynchon
+10
+
+Literature: Contemporary: Author: The French Lieutenant's Woman, The Collector?
+John fowles
+10
+
+Literature: Contemporary: Author: The Great Train Robbery, The Terminal Man, The Andromeda Strain?
+Michael crichton
+10
+
+Literature: Contemporary: Author: The Hotel New Hampshire, The World According to Garp?
+John irving
+10
+
+Literature: Contemporary: Author: The Odessa File, The Fourth Protocol?
+Frederick forsyth
+10
+
+Literature: Contemporary: Author: various short stories including the mangler, quitters, inc., & trucks?
+Stephen King
+10
+
+Literature: Contemporary: Author: Washington d.c., myra breckinridge?
+Gore vidal
+10
+
+Literature: Contemporary: Author: Won the Pulitzer Prize for The Cancer Ward?
+Alexander solzhenitsyn
+10
+
+Literature: Crusoe met his future servant & companion on this day of the week?
+Friday
+10
+
+Literature: Daniel defoes first novel was published in which year?
+1719
+10
+
+Literature: Dario Fo won the Nobel Prize for Literature in which year?
+1997
+10
+
+Literature: Deaths: How did Virginia Woolf die?
+Committed suicide
+10
+
+Literature: dick gregory called his autobiography this derogatory slang word?
+Nigger
+10
+
+Literature: Difficult detective stories for children, but excellent?
+The complete sherlock holmes
+10
+
+Literature: Don Vito's (the Godfather) last name?
+Corleone
+10
+
+Literature: donald trump's books all start with this word?
+Trump
+10
+
+Literature: Dorothea Brooke is the central character in which classic?
+Middlemarch
+10
+
+Literature: Douglas Adams is famous for writing what?
+The hitchhiker's guide to the galaxy
+10
+
+Literature: Dr. Seuss wrote this book: The Cat in the____
+Hat
+10
+
+Literature: Edgar Allen Poe wrote a famous poem about his animal?
+Raven
+10
+
+Literature: Edgar Allen Poe wrote a famous poem about this animal?
+Raven
+10
+
+Literature: empedocles, socrates, isocrates, lucion are of this nationality?
+Greek
+10
+
+Literature: English dramatist and poet famous for plays such as Tamburlaine the Great, Dr Faustus?
+Christopher Marlowe
+10
+
+Literature: English Romantic poet of Don Juan?
+Byron
+10
+
+Literature: Family name of Meg, Jo and Amy in Louisa May Alcotts book Little Women?
+March
+10
+
+Literature: Feb 2002, latest Joan Collins novel?
+Star Quality
+10
+
+Literature: French writer (Le Pere Goriot, La Comedie Humaine)?
+Honore de Balzac
+10
+
+Literature: french writer whose works include Les Miserables?
+Vicotr hugo
+10
+
+Literature: From Russia, with love?
+Fleming
+10
+
+Literature: From what source did Aldous Huxley take the title of his 1936 novel Eyeless in Gaza?
+Samson agonistes
+10
+
+Literature: From whom did the animals seize the farm in Animal farm?
+Mr Jones
+10
+
+Literature: hat hans christian andersen fairy tale character is immortalized in a famous statue in copenhagen's harbor?
+The little mermaid
+10
+
+Literature: her dog had no bone?
+Old mother hubbard
+10
+
+Literature: His Way was a Kitty Kelly unauthorized biography of him?
+Frank sinatra
+10
+
+Literature: hitchhiker's guide: a mind-boggingly stupid, but very very ravenous, animal?
+Ravenous bugblatter beast of traal
+10
+
+Literature: Hitchhiker's Guide: About the most massively useful thing a hitchhiker can have?
+Towel
+10
+
+Literature: Hitchhiker's Guide: every time he was reincarnated, he ended up being killed by arthur dent?
+Agrajag
+10
+
+Literature: Hitchhiker's Guide: Ford Prefect's home was a small planet somewhere in the vicinity of ____
+Betelgeuse
+10
+
+Literature: Hitchhiker's Guide: He especially liked designing the crinkly bits in fjords?
+Slartibartfast
+10
+
+Literature: Hitchhiker's Guide: if you stick it in your ear,it acts as a translator by feeding on brain energy?
+Babel fish
+10
+
+Literature: hitchhiker's guide: most worlds in the galaxy have invented a drink which sounds like this?
+Gin & tonic
+10
+
+Literature: Hitchhiker's Guide: Name of the Paranoid Android?
+Marvin
+10
+
+Literature: Hitchhiker's Guide: Name of the Restaurant at the End of the Universe?
+Milliways
+10
+
+Literature: Hitchhiker's Guide: The company motto of the hugely successful Sirius Cybernetics Corporation?
+Share and enjoy
+10
+
+Literature: Hitchhiker's Guide: the latest revision of the hitchhiker's guide has this to say about the earth:?
+Mostly harmless
+10
+
+Literature: Hitchhiker's Guide: The most savage psychic torture a sentient being can undergo?
+Total perspective vortex
+10
+
+Literature: hitchhiker's guide: the names of the two white mice?
+Benjy & frankie
+10
+
+Literature: Hitchhiker's Guide: the planet vacated by over fifteen million hairdressers, tv producers, etc?
+Golgafrincham
+10
+
+Literature: hitchhiker's guide: the total perspective vortex was powered by a piece of this (specific):?
+Fairy cake
+10
+
+Literature: Hitchhiker's Guide: they write the third worst poetry in the universe?
+Vogons
+10
+
+Literature: hitchhiker's guide: unbeknownst to many, the president's job is not to wield power, but to...?
+Draw attention away from it
+10
+
+Literature: Hitchhiker's Guide: Vastly hyperintelligent pandimensional beings appear in our dimension as this?
+Mice
+10
+
+Literature: Hitchhiker's Guide: what race writes the third worst poetry in the universe?
+Vogons
+10
+
+Literature: Hitchhiker's Guide: Words inscribed in large, letters on the cover of the Hitchhiker's Guide?
+Dont panic
+10
+
+Literature: Hitchhiker's Guide: wowbagger the infinitely prolonged goal is to do this to everybody?
+Insult
+10
+
+Literature: Homer wrote this account of the Trojan war?
+The iliad
+10
+
+Literature: Homer's Iliad describes the siege of where?
+Troy
+10
+
+Literature: Homer's odyssey consisted of how many books?
+24
+10
+
+Literature: Homers Iliad tells of the siege of which city?
+Troy
+10
+
+Literature: How is Samuel Clemens better known?
+Mark Twain
+10
+
+Literature: how many attended the march hare's tea party?
+Four
+10
+
+Literature: How many books are there in Anne Rice's vampire series?
+Five
+10
+
+Literature: How many lines are in a sonnet?
+14
+10
+
+Literature: How many lines are in a sonnet?
+Fourteen
+10
+
+Literature: How many stories did enid blyton publish in 1959?
+59
+10
+
+Literature: Hunter S Thompson wrote about 'Fear and Loathing' in which city?
+Las vegas
+10
+
+Literature: In 'A Christmas Carol', how many ghosts visited Scrooge?
+Four
+10
+
+Literature: In 'A Christmas Carol', what was the name of the miser?
+Ebenezer Scrooge
+10
+
+Literature: In 'a christmas carol', what was the name of the miser?
+Scrooge
+10
+
+Literature: In 'Alice In Wonderland', who never stopped sobbing?
+Mock Turtle
+10
+
+Literature: In 'alice in wonderland', with what were the words 'eat me' written on the cake?
+Currants
+10
+
+Literature: In 'Pilgrim's Progress' this is Christian's ultimate destination?
+Celestial city
+10
+
+Literature: In 'Romeo and Juliet', who gave a long monologue about Queen Mab?
+Mercutio
+10
+
+Literature: In 'Romeo and Juliet', who said 'I have a faint cold, fear thrills through my veins'?
+Juliet
+10
+
+Literature: In 'Romeo and Juliet', who says 'make the bridal bed in that dim monument where Tybalt lies?
+Juliet
+10
+
+Literature: In 'Romeo and Juliet', who says 'what must be must be'?
+Juliet
+10
+
+Literature: in childrens lit, how many chronicles of Narnia did CS Lewis write?
+Seven
+10
+
+Literature: In Cosmos this astronomer expounds upon billions and billions of years?
+Carl sagan
+10
+
+Literature: In George Orwells 1984 what is Britain called?
+Airstrip one
+10
+
+Literature: In Goethes Faust, the evil spirit to whom Faust sells his soul?
+Mephistopheles
+10
+
+Literature: In hich famous childrens book what was Cedric Errols title?
+Lord fauntleroy
+10
+
+Literature: In legend what was the name of King Arthur's sword?
+Excalibur
+10
+
+Literature: In one of Donald Horne's novels, as what was Australia dubbed?
+The lucky country
+10
+
+Literature: In one of Donald Horne's novels, which was 'the lucky country'?
+Australia
+10
+
+Literature: In Shakespeare who gives his sons the advice neither a borrower nor a lender be?
+Polonius
+10
+
+Literature: In shakespeares play who told Macbeth that he would eventually become king?
+The three witches
+10
+
+Literature: In Swifts Gullivers Travels what is the name of the land of giants?
+Brobdingnag
+10
+
+Literature: In Terry Pratchett's Discworld series, what was the name of Death's apprentice?
+Mort
+10
+
+Literature: In the 1982 childrens book The BFG by Roald Dahl what does BFG stand for?
+Big friendly giant
+10
+
+Literature: In the anglo-saxon poem, who killed grendel?
+Beowolf
+10
+
+Literature: In the book '1984', who is watching?
+Big brother
+10
+
+Literature: In the book Goodbye Mister Chips, what subject did Mr. Chipping teach?
+Latin
+10
+
+Literature: In the book treasure island which character owns the spyglass inn?
+Long john silver
+10
+
+Literature: In the Brother's Grimm version of Snow White and the Seven Dwarfs, what was the heroine's name?
+Snowdrop
+10
+
+Literature: In the childrens book Wind in the Willows, which animal befriended Rat,Mole and Toad?
+Mister badger
+10
+
+Literature: In the Dickens' novel 'Great Expectations' what was the Christian name of the convict 'Magwitch'?
+Abel
+10
+
+Literature: In the Dr Seuss books, which elephant hatched an egg?
+Horton
+10
+
+Literature: In the famous Beckett play, for whom were Vladimir and estragon waiting?
+Godot
+10
+
+Literature: In the famous childrens book, what was Cedric Errol's title?
+Lord fauntleroy
+10
+
+Literature: In the Famous Five books, what is the name of the dog?
+Timmy
+10
+
+Literature: In the famous newspaper article, 'Yes, Virginia, there is a Santa Claus', what was the surname of little Virginia?
+O'Hanlon
+10
+
+Literature: In the famous story who was Passepartouts master?
+Phileas Fogg
+10
+
+Literature: In the fictional tale, who fought with quarterstaffs on a log bridge?
+-- Answer metadata begin
+{
+    "answers": ["Robin hood and little john", " Robin Hood & Little John", "Robin Hood, Little John"]
+}
+-- Answer metadata end
+10
+
+Literature: In the Harry Potter books, who or what is Hedwig?
+Harry's pet owl
+10
+
+Literature: In the kama-sutra, the art of which game is recommened for women to study?
+Chess
+10
+
+Literature: In The Merchant of Venice, how much money did Antonio borrow from Shylock?
+3,000 ducats
+10
+
+Literature: In the original story, of what were cinderella's slippers actually made?
+Fur
+10
+
+Literature: In the PG Wodehouse novels what was Jeeves Christian name?
+Reginald
+10
+
+Literature: In The Pilgrim's Progress, which city of Christian's final destination?
+Celestial city
+10
+
+Literature: In the Sherlock Holmes stories, of what subject was professor Moriarty a professor?
+Mathematics
+10
+
+Literature: In the Tarzan stories what was the name of Tarzans monkey friend?
+Nkima
+10
+
+Literature: In Thomas Hardy's Jude the Obscure which city did he call Christminster?
+Oxford
+10
+
+Literature: In Treasure Island, who apart from JimHawkins narrates part of the story?
+Dr Livesey
+10
+
+Literature: In Treasure Island, who gets black spot from Blind Pew?
+Billy Bones
+10
+
+Literature: In what book is jean valjean?
+Les miserables
+10
+
+Literature: In which area did Thomas Hardy set his novels?
+Wessex
+10
+
+Literature: In which book did four ghosts visit Scrooge?
+A Christmas Carol
+10
+
+Literature: In which book did people find Shangri-La?
+The Lost horizon
+10
+
+Literature: In which book did the heroine serve as governess to the ward of the mysterious and moody edward rochester?
+Jane eyre
+10
+
+Literature: In which book is Scheherazade a story teller?
+Arabian Nights
+10
+
+Literature: In which classic novel did Inspector Javert hunt down Jean Valjean?
+Les miserables
+10
+
+Literature: In which country was Salman Rushdie born?
+India
+10
+
+Literature: In which Daphne du Maurier novel was Mrs Danvers the housekeeper at Manderlay?
+Rebecca
+10
+
+Literature: in which Dickens novel does the midwife Sarah Gamp appear?
+Martin chuzzlewit
+10
+
+Literature: In which novel by George Eliot is Eppie Cass adopted by a miser whose gold has been stolen by her father?
+Silas marner
+10
+
+Literature: In which novel did Michael Henchard sell his wife for 5 guineas?
+The mayor of Casterbridge
+10
+
+Literature: In which novel do Athos,Porthos and Aramis all appear?
+Vicomte de Bragelonne
+10
+
+Literature: In which novel does Angela Quested accuse a local doctor of rape?
+A passage to India
+10
+
+Literature: In which play does Gwendolyn Fairfax love Jack Worthing, who was found in a handbag as a baby?
+The importance of being earnest#
+10
+
+Literature: In which series of books would you find the fortress of Salamandastron?
+Redwall
+10
+
+Literature: In which Shakespeare play do Beatrice and Benedick apeear?
+Much ado about nothing
+10
+
+Literature: In which story does Bob Cratchit have a crippled son called Tiny Tim?
+A christmas carol
+10
+
+Literature: James Bond: To who is Miss Moneypenny secretary?
+M
+10
+
+Literature: jean anouilh's play about Henry ii's problem with the archbishop of canterbury?
+Becket
+10
+
+Literature: Jimmy Buffett: Name one of the novels Jimmy Buffett published?
+Tales from margaritaville
+10
+
+Literature: john naisbitt's 10 letter book of 10 year trends?
+Megatrends
+10
+
+Literature: Judy Blume's first childrens' best seller?
+The tales of a fourth grade nothing
+10
+
+Literature: lake wobegon is located in this state?
+Minnesota
+10
+
+Literature: Last name of the author 'Roots'?
+Haley
+10
+
+Literature: Last name of the author: 'Doctor Zhivago'?
+Pasternak
+10
+
+Literature: Last name of the author: 'Goldfinger'?
+Fleming
+10
+
+Literature: Last name of the author:'Dune'?
+Herbert
+10
+
+Literature: Last name of the author:'The Mirror Cracked'?
+Christie
+10
+
+Literature: Last name of the Jacob and Wilhelm brothers?
+Grimm
+10
+
+Literature: lawson's book about a mouse and a famous historic figure. (franklin)?
+Ben and me
+10
+
+Literature: Leo Argyle, Rachel Argyle and Donald Craig are all characters from which Agatha Christie novel?
+Ordeal of innocence
+10
+
+Literature: Leonard Wibberly on the Duchy of Grand Fenwick?
+The mouse that roared
+10
+
+Literature: Little boys are made of frogs, ____, and puppy-dogs tails
+Snails
+10
+
+Literature: Little girls are made of sugar, spice, and ____ ____
+Everything nice
+10
+
+Literature: Lloyd Alexander's classic feline tale?
+Time cat
+10
+
+Literature: Lord of the Rings: According to the LOR poem, where do shadows lie?
+In the land of mordor
+10
+
+Literature: Lord of the Rings: frodo is chosen to deliver the ring into the heart of what?
+Mount doom
+10
+
+Literature: Lord of the Rings: from whom did bilbo obtain the ring?
+Gollum
+10
+
+Literature: Lord of the Rings: gandalf's elven name?
+Mithrandir
+10
+
+Literature: Lord of the Rings: What did Frodo title Bilbo's diary?
+The downfall of the lord of the rings and the return of the king
+10
+
+Literature: Lord of the Rings: what is the name of gandalf's horse?
+Shadowfax
+10
+
+Literature: Lord of the Rings: What is the name of Gandalf's ring?
+Narya the great
+10
+
+Literature: Lord of the Rings: What were the last words spoken in LOR?
+Well im back
+10
+
+Literature: Lord of the Rings: who had decieved the lord of rohan for a number of years?
+Wormtongue
+10
+
+Literature: Lord of the Rings: Who is Elrond's daughter?
+Arwen
+10
+
+Literature: Marin Cruz Smith's first mystery took place in this Moscow park?
+Gorky park
+10
+
+Literature: men against the sea was part two of this trilogy?
+Bounty
+10
+
+Literature: millie's book was barked to her?
+Barbara bush
+10
+
+Literature: Name of a barrister in Dickens Pickwick Papers?
+Serjeant Buzfuz
+10
+
+Literature: Name of Edith Wharton's heroine in The House of Mirth?
+Bart
+10
+
+Literature: Name of the book about the Watergate scandal written by Washington Post reporters Bernstein and Woodward?
+All the Presidents Men
+10
+
+Literature: Name of the cat in the satirical H Allen Smith novel where the cat inherited a baseball team?
+Rhubarb
+10
+
+Literature: Name of the central character in Middlemarch?
+Dorothea Brooke
+10
+
+Literature: Name That Celebrity: Author of The Hobbit and The Lord of the Rings?
+J.r.r. tolkien
+10
+
+Literature: Name the Belgian crime writer who created 'Inspector Maigret'?
+Georges simenon
+10
+
+Literature: Name the British novelist, a successful member of the Bloomsbury Group, who drowned herself in 1942?
+Virginia woolf
+10
+
+Literature: Name the Character: also know as mistress betty this English adventuress is a creation of defoe?
+Moll flanders
+10
+
+Literature: Name the Character: American expatriate who joins the loyalists in 'for whom the bell tolls'?
+Robert jordan
+10
+
+Literature: Name the Character: He is an orphan and the unwanted ward of his sister in 'Great Expectations'?
+Philip pirrip
+10
+
+Literature: Name the Character: in Melville's 'Moby Dick' he hails from the south sea island of kovovoko?
+Queequeg
+10
+
+Literature: Name the Character: the boy who will not grow up?
+Peter pan
+10
+
+Literature: Name the Character: The ever sobbing animal in 'Alice in Wonderland'?
+Mock turtle
+10
+
+Literature: Name the Character: the invisible man in h.g. wells's novel?
+Griffin
+10
+
+Literature: Name the Character: This impecunious man is always 'waiting for something to turn up'?
+Wilkins micawber
+10
+
+Literature: Name the little elephant in books by jean de brunhoff?
+Babar
+10
+
+Literature: Name the principal horse in George Orwells Animal Farm?
+Boxer
+10
+
+Literature: Name the Shakespeare play from this ultra short plot summary: Urged on by his wife, a man murders his king in order to take his place?
+Macbeth
+10
+
+Literature: Nathaniel west novel?
+The day of the locust
+10
+
+Literature: New England state mentioned in a Mark Twain title, he also lived there?
+Connecticut
+10
+
+Literature: Nobels: 1950s: Russian author who won the Nobel Prize for literature in 1958?
+Boris pasternak
+10
+
+Literature: noble house can be found in this British colony?
+Hong kong
+10
+
+Literature: Novel by Laurie Lee?
+Cider with rosie
+10
+
+Literature: Novel by Mrs Henry Wood, heroine Lady Isabel Vane?
+East Lynne
+10
+
+Literature: NOvel written by Charles Reade as a sequel to his Love me little, love me long?
+Hard cash
+10
+
+Literature: Novelist famous for Jamaica Inn,rebecca?
+Daphne Du Maurier
+10
+
+Literature: Old Moore's Almanac was founded in what year?
+1699
+10
+
+Literature: On what book was 'Three Days Of The Condor' based?
+Six Days Of The Condor
+10
+
+Literature: Original Titles: 1805 by Leo Tolstoy?
+War and peace
+10
+
+Literature: Original Titles: A Daughter of the D'Ubervilles by Thomas Hardy?
+Tess of the dubervilles
+10
+
+Literature: Original Titles: Arms and the Covenant by Winston Churchill?
+While England slept
+10
+
+Literature: Original Titles: Beauty and Ashes by Somerset Maugham?
+Of human bondage
+10
+
+Literature: Original Titles: Ernest Pontifex by Samuel Butler?
+The way of all flesh
+10
+
+Literature: Original Titles: Great White by Peter Benchley?
+Jaws
+10
+
+Literature: Original Titles: The Neon Wilderness by Nelson Algren?
+The man with the golden arm
+10
+
+Literature: Original Titles: The Whale by Herman Melville?
+Moby dick
+10
+
+Literature: Original Titles: Trimalchio in West Egg by F. Scott Fitzgerald?
+The great gatsby
+10
+
+Literature: p.l. travers's most famous literary creation (first and last name)?
+Mary poppins
+10
+
+Literature: Pamela Lyndon Travers, pen name P. L. Travers - wrote her famous children's book ____ in 1934
+Mary poppins
+10
+
+Literature: Pen name of Charles Lutwidge Dodgson?
+Lewis carroll
+10
+
+Literature: Play by Dylan Thomas about a welsh seaside village?
+Under milk wood
+10
+
+Literature: Poem of 14 lines?
+Sonnet
+10
+
+Literature: Poem or song narrating popular story?
+Ballad
+10
+
+Literature: Poems: Author: a dream deferred?
+Langston hughes
+10
+
+Literature: Poems: Author: daddy?
+Sylvia plath
+10
+
+Literature: Poems: Author: dulce et decorum est?
+Wilfred owen
+10
+
+Literature: Poems: Author: in just-?
+E.e. cummings
+10
+
+Literature: Poems: Author: Kubla Kahn?
+Samuel taylor coleridge
+10
+
+Literature: Poems: Author: Morns abed and daylight slumber?
+Houseman
+10
+
+Literature: Poems: Author: self-portrait in a convex mirror?
+John ashberry
+10
+
+Literature: Poems: Author: The best laid schemes o' mice an' men gang aft a-gley,?
+Burns
+10
+
+Literature: Poems: Author: Underneath this stone doth lie?
+Jonson
+10
+
+Literature: Poet and novelist whose first novel was Lucky Jim?
+Sit kingsley amis
+10
+
+Literature: Poet Henry wadsworth longfellow was the first American to have what installed in his house, in 1840?
+Plumbing
+10
+
+Literature: Poet Robert Frost & the white mountains, both call this state home?
+New hampshire
+10
+
+Literature: Pulitzer prize winning novelist who authored 'the grapes of wrath'?
+John steinbeck
+10
+
+Literature: reminiscences, the longest one word title, was written by this general?
+Douglas macarthur
+10
+
+Literature: Rockwell's book of disgusting eating habits of small boys?
+How to eat fried worms
+10
+
+Literature: roots begins when he comes to America as a slave?
+Kunta kinte
+10
+
+Literature: Sallust, Livy, Tacitus are of this nationality?
+Roman
+10
+
+Literature: Sci-Fi: Author: Author of lord valentine's castle?
+Robert silverberg
+10
+
+Literature: Sci-Fi: Author: Author of �Big Sky River� and �Tides Of Light�?
+Gregory benford
+10
+
+Literature: Sci-Fi: Author: creator of the dune series?
+Frank herbert
+10
+
+Literature: Sci-Fi: Author: creator of the meg & timothy series?
+Madeleine lengle
+10
+
+Literature: Sci-Fi: Author: creator of the narnia series?
+C.s. lewis
+10
+
+Literature: Sci-Fi: Author: creator of the neuromancer series?
+William gibson
+10
+
+Literature: Sci-Fi: Author: Creator of the Stainless Steel Rat series?
+Harry harrison
+10
+
+Literature: Sci-Fi: Author: creator of the valentine series?
+Robert silverberg
+10
+
+Literature: Sci-Fi: Author: �Friday�?
+Robert heinlein
+10
+
+Literature: Sci-Fi: Author: �godbody�?
+Clifford simak
+10
+
+Literature: Sci-Fi: Author: �The Day Of The Triffids�?
+John wyndham
+10
+
+Literature: Sci-Fi: Charles Platt novel where human personalities are stored in computers?
+Silicon man
+10
+
+Literature: Sci-Fi: H.G. Wells novel where earth is invaded by martians?
+War of the worlds
+10
+
+Literature: Sci-Fi: in 2061, dr. floyd's ship first lands on this object?
+Halleys comet
+10
+
+Literature: Sci-Fi: In Lord Valentine's Castle, Sleet's hair turned white during one of these?
+Nightmare
+10
+
+Literature: Sci-Fi: in lord valentine's castle, valentine's profession until his memory returns?
+Juggler
+10
+
+Literature: Sci-Fi: l. ron hubbard began writing this series but died before finishing?
+Mission earth
+10
+
+Literature: Sci-Fi: name the child who became a magician's apprentice in feist's magician?
+Pug
+10
+
+Literature: Sci-Fi: Piers Anthony's series about death, time, war, evil, fate, etc.?
+Incarnations of immortality
+10
+
+Literature: Sci-Fi: publisher who used to write sci-fi short stories, lester ____ ____
+Del rey
+10
+
+Literature: Sci-Fi: The aliens in Mission Earth used one of these to power cities?
+Black hole
+10
+
+Literature: Sci-Fi: The geometric name of Madeline L'Engles time-space wrinkle?
+Tesseract
+10
+
+Literature: Sci-Fi: the mystical leaders of the invading force in magician?
+Great ones
+10
+
+Literature: Sci-Fi: The name of the invaluable spice in Dune?
+Melange
+10
+
+Literature: Sci-Fi: The number of Rama spacecraft to reach the solar system?
+Three
+10
+
+Literature: Sequel to Steinbeck's Sweet Thursday?
+Cannery row
+10
+
+Literature: she loves Hamlet in Shakespeares play?
+Ophelia
+10
+
+Literature: sherlock holmes: 'the five orange pips' saw holmes oppose this racist organization?
+Ku klux klan
+10
+
+Literature: Sherlock Holmes: According to Holmes he was the second most dangerous man in London?
+Col sebastian moran
+10
+
+Literature: Sherlock Holmes: Dr Watson took part in the British army campaign in this country?
+Afghanistan
+10
+
+Literature: Sherlock Holmes: For Holmes she is always 'the woman'?
+Irene adler
+10
+
+Literature: sherlock holmes: he is the 'most indispensible man in England' according to holmes?
+Mycroft holmes
+10
+
+Literature: sherlock holmes: he is the founder member of the 'diogenes club' in london?
+Mycroft holmes
+10
+
+Literature: Sherlock Holmes: Holmes and Moriarty fought at which famous falls?
+Reichenbach
+10
+
+Literature: Sherlock Holmes: Holmes first met Dr Watson in this year?
+1881
+10
+
+Literature: sherlock holmes: holmes made his first appearance in 1887 in this novel?
+A study in scarlet
+10
+
+Literature: sherlock holmes: name the team that holmes uses to do the legwork for him?
+Baker street irregulars
+10
+
+Literature: sherlock holmes: the number of adventures that are related by holmes himself?
+2
+10
+
+Literature: sherlock holmes: to where does holmes finally retire?
+Sussex downs
+10
+
+Literature: Sherlock Holmes: What is Professor Moriarty's first name?
+James
+10
+
+Literature: sherlock holmes: what is the last book of holmes stories?
+Case book of sherlock holmes
+10
+
+Literature: Sherlock Holmes' assistant?
+Watson
+10
+
+Literature: Shirley Jackson thriller about Eleanor Vance's adventures in a haunted house?
+Haunting of hill house
+10
+
+Literature: Short Stories: Author: A Good Man is Hard to Find?
+Flannery oconnor
+10
+
+Literature: Short Stories: Author: Barn Burning?
+William faulkner
+10
+
+Literature: Short Stories: Author: Harrison Bergeron?
+Kurt vonnegut
+10
+
+Literature: Short Stories: Author: Strawberry Ice Cream Soda?
+Irwin shaw
+10
+
+Literature: Short Stories: Author: Young Man Axelbrod?
+Sinclair lewis
+10
+
+Literature: steinbeck's horse book?
+The red pony
+10
+
+Literature: Stephen King: 'Pet ____'
+Cemetery
+10
+
+Literature: Stephen King: 'Salem's ____'
+Lot
+10
+
+Literature: Stephen King: 'The Dead ____'
+Zone
+10
+
+Literature: Stephen King: early novel turned screenplay starring arnold schwartzenegger?
+The running man
+10
+
+Literature: Stephen King: eventually causes the demise of the dark man in the stand?
+Nuclear bomb
+10
+
+Literature: Stephen King: has written 5 books under what pseudonym?
+Richard bachman
+10
+
+Literature: Stephen King: Kings literary foray into the medieval fantasy genre?
+Eyes of the dragon
+10
+
+Literature: Stephen King: maine city which king calls his home?
+Bangor
+10
+
+Literature: Stephen King: Movie modeled after an old comic book series?
+Creepshow
+10
+
+Literature: Stephen King: name of the evil clown in it?
+Pennywise
+10
+
+Literature: Stephen King: Name of the killer car?
+Christine
+10
+
+Literature: Stephen King: Name of the town where Abigail Freemantle lives in The Stand? (2 words)?
+Hemingford home
+10
+
+Literature: Stephen King: Name of the zombie cat in Pet Semetary?
+Church
+10
+
+Literature: Stephen King: novel co-written with peter straub?
+The talisman
+10
+
+Literature: Stephen King: novel featuring a writer held captive by a psychopathic fan?
+Misery
+10
+
+Literature: Stephen King: Short story featuring a home-made, magic computer?
+Word processor of the gods
+10
+
+Literature: Stephen King: short story featuring a tiger in a grade-school bathroom?
+Here there be tygers
+10
+
+Literature: Stephen King: what trail of harold's does stu redmen follow cross country in the stand?
+Snickers bar wrappers
+10
+
+Literature: Stephen King: where the good guys settle in the stand? (city state)?
+Boulder colorado
+10
+
+Literature: Ted Hughes poet laureate died in which year?
+1998
+10
+
+Literature: the ayatollah khomeni put a $1 million bounty on his head?
+Salman rushdie
+10
+
+Literature: The Bell Jar was the only novel of which American poet?
+Sylvia plath
+10
+
+Literature: The Devil promised 24 years of happiness to this doctor in Marlowe's play?
+Faustus
+10
+
+Literature: The first horror novel to reach the top, it became a Linda Blair movie?
+The exorcist
+10
+
+Literature: The Greek title of the Book of Revelation?
+Apocalypse
+10
+
+Literature: The Hardy Boys and ____
+Nancy Drew
+10
+
+Literature: The job in Men at Work?
+Baseball
+10
+
+Literature: The Little Prince was the work of this author?
+Antoine de saint-exupery
+10
+
+Literature: The only #1 best selling novel in the us to be published anonymously?
+Inner shrine
+10
+
+Literature: the parsifal ____ by ludlum
+Mosaic
+10
+
+Literature: the place where gulliver found a race of tiny people?
+Lilliput
+10
+
+Literature: The push me pull you appears in which stories?
+Doctor dolittle
+10
+
+Literature: The sequal to Love Story?
+Olivers story
+10
+
+Literature: the shortest bestselling title, by either hepburn or king?
+Me
+10
+
+Literature: The subject of which 1964 novel by illiam Golding is the building of a medieval cathedral?
+The spire
+10
+
+Literature: The Thorn Birds takes place in this country?
+Australia
+10
+
+Literature: The wolf impersonated her in Little Red Riding Hood?
+Grandmother
+10
+
+Literature: The works of Mrs Darrell Waters have been translated into 128 languages, who was she?
+Enid Blyton
+10
+
+Literature: This author wrote about the fictional 'march girls'?
+Louisa alcott
+10
+
+Literature: this book by richard rhodes won the pulitzer prize?
+Making of the atomic bomb
+10
+
+Literature: This event prompted Mailer to write The Naked and the Dead?
+Pearl harbor
+10
+
+Literature: This girl hid from the Nazis in Amsterdam?
+Anne frank
+10
+
+Literature: This Shakespearean king was the actual king of Scotland for 17 years?
+Macbeth
+10
+
+Literature: Tool that Mike Mulligan used. (Seuss)?
+Steam shovel
+10
+
+Literature: Trespassing animals disliked by Betsy in Dickens David Copperfield?
+Donkeys
+10
+
+Literature: trinity takes place in this country?
+Ireland
+10
+
+Literature: TV/Film: sherlock holmes: this adventure of holmes has the most film versions?
+Hound of the baskervilles
+10
+
+Literature: Unfinished poetic work by Geoffrey Chaucer begun around 1387?
+The canterbury tales
+10
+
+Literature: US poet and essayist?
+Ralph waldo emerson
+10
+
+Literature: what aesop animal assumed the grapes he couldn't reach were sour anyway?
+The fox
+10
+
+Literature: what are the first three words in the bible?
+In the beginning
+10
+
+Literature: what beautiful youth pined for the love of his reflection?
+Narcissus
+10
+
+Literature: what book is subtitled the preservation of favoured races in the struggle for life?
+The origin of species
+10
+
+Literature: What book is the film Blade Runner based on?
+Do Androids Dream of Electric Sheep
+10
+
+Literature: what category of writing are the hugo and nebula awards given for?
+Science fiction
+10
+
+Literature: What Charlotte wrote in her web to save the swine?
+Some pig
+10
+
+Literature: what colour was Alexandre Dumas' tulip?
+Black
+10
+
+Literature: What controversial book did Germaine Greer write?
+The Female Eunuch
+10
+
+Literature: what cornelius ryan book chronicles the events of d-day?
+The longest day
+10
+
+Literature: what detective retired to become a beekeeper?
+Sherlock holmes
+10
+
+Literature: What did Sherlock Holmes keep in the toe of a Persian slipper?
+Pipe tobacco
+10
+
+Literature: What Dr Seuss character steals Christmas?
+Grinch
+10
+
+Literature: what drug did sherlock holmes take at the start of his career?
+Cocaine
+10
+
+Literature: What is Louisa May Alcotts most famous book?
+Little Women
+10
+
+Literature: what is the most commonly-used punctuation mark?
+The comma
+10
+
+Literature: What is the name of Arthur Ransomes famous childrens book published in 1931?
+Swallows and amazons
+10
+
+Literature: What is the name of Jean Elliotts poetic lament for the scots killed at the battle of Flodden in 1513?
+Flow'rs o' the forest
+10
+
+Literature: What is the second best-selling book of all time?
+Quotations from the Works of Chairman Mao Tse-Tung
+10
+
+Literature: what joel chandler harris book tells the stories of br'er fox and br'er rabbit?
+Uncle remus
+10
+
+Literature: what language is stern magazine published in?
+German
+10
+
+Literature: What links the following Mein Kampf,Pilgrims Progress and History of the World?
+Written in prison
+10
+
+Literature: what little marcella found in her grandmothers attic (by johnny gruelle)?
+Raggedy ann
+10
+
+Literature: What novel begins with the sentence, 'In my younger and more vulnerable years, my father gave me some advice that I've been turning over in my mind ever since.'?
+The Great Gatsby
+10
+
+Literature: What novel by geoffrey household was about an attempt to kill hitler?
+Rogue male
+10
+
+Literature: What novel centres on the romances of Ursula and Gudrun Brangwen?
+Women in love
+10
+
+Literature: What novel contains the line 'who promoted major major?'?
+Catch-22
+10
+
+Literature: What novel did Daphne du Mauruer write about Cornish Shipwreckers?
+Jamaica inn
+10
+
+Literature: What novel opens with 'the great fish moved silently through the night water'?
+Jaws
+10
+
+Literature: What novel recounts john blackthorne's adventures in 16th century Japan?
+Shogun
+10
+
+Literature: What novel was alexandra ripley hired to pen a sequel to?
+Gone with the wind
+10
+
+Literature: What novel was subtitled memoirs of a woman in pleasure?
+Fanny hill
+10
+
+Literature: What novel was the basis for paper moon?
+Addie pray
+10
+
+Literature: What novel was written by mary shelley at the age of 19?
+Frankenstein
+10
+
+Literature: What other name does Stephen King write under?
+Richard bachman
+10
+
+Literature: What publication was subtitled The What's New Magazine?
+Popular science
+10
+
+Literature: what richard adams book includes an account of bigwig's encounter with a fox?
+Watership down
+10
+
+Literature: What Samuel Taylor Coleridge poem tells of a sailor who kills an albatross?
+The Rime of the Ancient Mariner
+10
+
+Literature: What series has Robert Jordan written?
+Wheel of Time
+10
+
+Literature: What Shakespearean play features the line: A plague on both your houses?
+Romeo and juliet
+10
+
+Literature: What shakespearean play refers to the date of epiphany?
+Twelfth Night
+10
+
+Literature: what sort of creature was tarka?
+Otter
+10
+
+Literature: What story features flopsy, mopsy and cottontail?
+Peter Rabbit
+10
+
+Literature: What subject did 'Mr. Chips' teach?
+Latin
+10
+
+Literature: what tom wolfe book is about the mercury astronauts?
+The right stuff
+10
+
+Literature: What trilogy did J.R.R. Tolkien write?
+Lord of the Rings
+10
+
+Literature: What type of novels were written by Zane Grey?
+Westerns
+10
+
+Literature: What US presidential mother wrote an autobiography titled Times to Remember?
+Rose Kennedy
+10
+
+Literature: what vladimir nabokov novel features professor humbert in love with a twelve year old girl?
+Lolita
+10
+
+Literature: What was Andrew Motions first poem as poet laureate?
+An epithalamium
+10
+
+Literature: What was H.G Wells' first novel?
+The Time Machine
+10
+
+Literature: What was John Dawkins nickname in Oliver Twist?
+The artful dodger
+10
+
+Literature: what was lady chatterley's first name?
+Constance
+10
+
+Literature: What was Lestat's last name?
+De Lioncourt
+10
+
+Literature: what was lost and regained by poet john milton?
+Paradise
+10
+
+Literature: what was Mark Twain's real name?
+Samuel langhorne clemens
+10
+
+Literature: What was the name of Beatrix Potters hedgehog laundress?
+Mrs tiggy winkle
+10
+
+Literature: What was the name of David Copperfields old nurse?
+Peggotty
+10
+
+Literature: What was the name of Mother Goose's son?
+Jack
+10
+
+Literature: what was the pen name of English novelist mary ann evans?
+George eliot
+10
+
+Literature: What was the pen name of the 19th century author Maria Louisa de la Ramee?
+Ouida
+10
+
+Literature: What was the pseudonym of Amandine Aurore Lucie Dupin,Baronne Dudevant?
+George sand
+10
+
+Literature: What were the dolls in the novel 'Valley Of The Dolls'?
+Pills
+10
+
+Literature: What were the two cities in 'A Tale Of Two Cities'?
+London and Paris
+10
+
+Literature: What word is Isaac Asimov famous for coining?
+Robotics
+10
+
+Literature: what writer is copenhagen's little mermaid a memorial to?
+Hans christian andersen
+10
+
+Literature: What's Penthouse's sister publication for women?
+Viva
+10
+
+Literature: what's the name of the little people in frank baum's the wonderful wizard of oz?
+Munchkins
+10
+
+Literature: what's the name of the old gray donkey in winnie-the-pooh?
+Eeyore
+10
+
+Literature: where does ray bradbury's chronicles take place?
+Mars
+10
+
+Literature: where would you arrive by going second to the right and straight on till morning?
+Never-never land
+10
+
+Literature: Which 14th century write told the story of pilgrims travelling to Canterbury?
+Geoffrey chaucer
+10
+
+Literature: Which 1954 play by Brendan Behan was about life in an Irish Prison on the eve of an execution?
+The quare fellow
+10
+
+Literature: Which 20th novel, made into a film, concerns the friendship of a teacher called Fielding and a doctor called Aziz?
+A passage to India
+10
+
+Literature: Which adventure novel featured Gagool,Twala and Umbopa?
+King Solomon's mines
+10
+
+Literature: Which American wrote Astoria, The legend of sleepy hollow and Bracebridge Hall?
+Washington Irving
+10
+
+Literature: which author penned the hunchback of notre dame?
+Victor hugo
+10
+
+Literature: which author penned the maltese falcon?
+Dashiell hammett
+10
+
+Literature: Which book by Harriet Beecher Stowe was subtitled Life among the lowly?
+Uncle toms cabin
+10
+
+Literature: Which book by James Joyce takes palce on a single Dublin day in June 1904?
+Ulysses
+10
+
+Literature: Which book by Peter Wright did Margaret Thatcher try to supress?
+Spycatcher
+10
+
+Literature: Which book caused a minor controversy in 1997 when a survey of Waterstone's customers voted it the best book of the twentieth century?
+Lord of the rings
+10
+
+Literature: Which book co written by Peter Wright did the government try to ban in 1986?
+Spycatcher
+10
+
+Literature: Which book contains the service of the mass for the whole year?
+Missal
+10
+
+Literature: Which book did Mark Chapman read while waiting to be arrested after the murder of John Lennon?
+The Catcher in the Rye
+10
+
+Literature: Which book featured the miser Scrooge?
+A Christmas Carol
+10
+
+Literature: Which book features the love affair of Connie and mellors?
+Lady chatterleys lover
+10
+
+Literature: Which book first featured the character Felix Leiter?
+Casino royale
+10
+
+Literature: Which book has to do with instructions about sacrificial worship?
+Leviticus
+10
+
+Literature: Which book is the story of moses to be found?
+Exodus
+10
+
+Literature: Which book of the bible tells of goliath's slaying by David?
+Samuel
+10
+
+Literature: Which book of the bible tells of the death of moses?
+Deuteronomy
+10
+
+Literature: Which book of words has a latin name that means 'treasure'?
+Thesaurus
+10
+
+Literature: Which book opens with the words - Of late years an abundant shower of curates has fallen upon the north of England?
+Shirley
+10
+
+Literature: Which book opens with the words-the primroses were over?
+Watership down
+10
+
+Literature: Which book starts Marley was dead?
+A christmas carol
+10
+
+Literature: Which book won the booker of bookers in 1993?
+Midnight's children
+10
+
+Literature: Which book written by Edith Holden became a best seller recently, well after her death?
+The country diary of an edwardian lady
+10
+
+Literature: Which book written by Isaac Newton is regarded as the greatest single work of science?
+Principia mathematica
+10
+
+Literature: Which British poet died in greece in 1824?
+Byron
+10
+
+Literature: Which British poet is revered as a hero in Greece?
+Byron
+10
+
+Literature: Which character rode a horse called Rosinante?
+Don Quixote
+10
+
+Literature: Which characters main opponent was Von Stalheim?
+Biggles
+10
+
+Literature: Which classic of English Literature centres around theGordon riots of 1780?
+Barnaby Rudge
+10
+
+Literature: Which controversial writer wrote Time for a Tiger and The kingdom of the Wicked?
+Anthony burgess
+10
+
+Literature: Which country was Stephen King born in?
+Usa
+10
+
+Literature: Which criminal was made into a romantic figure in the novel Rookwood?
+Dick Turpin
+10
+
+Literature: Which detective story writer created the amateur detective Albert Campion?
+Margery allingham
+10
+
+Literature: which dickens novel takes place during the french revolution?
+A tale of two cities
+10
+
+Literature: Which duo first appeared in The man with two left feet?
+Bertie Wooster and Jeeves
+10
+
+Literature: Which ex soldier wrote The seven pillars of Wisdom?
+T E Lawrence
+10
+
+Literature: Which famous adventure story was originally called The Sea Cook?
+Treasure Island
+10
+
+Literature: Which famous novel has the characters the Cheeryble brothers,Mulberry Hawk, Madeline Bray and Newman Noggs?
+Nicholas Nickleby
+10
+
+Literature: Which famous writers first major publication was a biology textbook?
+H G Wells
+10
+
+Literature: Which fantasy novel published in 1937 has an alterantive title There and Back again?
+The hobbit
+10
+
+Literature: Which film is based on Conrads Heart of Darkness?
+Apocalypse now
+10
+
+Literature: Which German scholar sold his soul to the devil in return for power and kmowledge?
+Faust
+10
+
+Literature: Which is the longest part written by Shakespeare, at 11,610 words?
+Hamlet
+10
+
+Literature: Which is the only book written by Margaret Mitchell?
+Gone With The Wind
+10
+
+Literature: Which John Steinbeck novel deals with the Joad family's move from Oklahoma dustbowl to California?
+The grapes of wrath
+10
+
+Literature: Which New Zealand writer created Roderick Alleyn of Scotland Yard?
+Ngaio Marsh
+10
+
+Literature: Which Noel Coward play features Elyot and Amanda?
+Private Lives
+10
+
+Literature: Which novel by h g wells describes the invasion of earth by martians?
+The war of the worlds
+10
+
+Literature: Which novel by Jane Austen features the Woodhouse family?
+Emma
+10
+
+Literature: Which novel by Louis de Bernieres is set in Cephalonia?
+Captain corelli's mandolin
+10
+
+Literature: Which novel by michael crichton was the number one best-selling paperback in 1993?
+Jurassic park
+10
+
+Literature: Which novel did Ernest Hemingway say that all modern American literature comes from?
+Huckleberry finn
+10
+
+Literature: Which novel features Major Major and Milo Mindbender?
+Catch 22
+10
+
+Literature: Which novel features Room 101?
+1984
+10
+
+Literature: Which novel finds Milo Minderbinder elected as mayor of half a dozen Italian cities?
+Catch 22
+10
+
+Literature: Which novel of the Russian Revolution did Boris Pasternak write?
+Dr zhivago
+10
+
+Literature: Which novel preceded Paradise Regained?
+Paradise lost
+10
+
+Literature: Which novel starts it is a truth universally acknowleged that a single man in possession of a good fortune must be in want of a wife?
+Pride and prejudice
+10
+
+Literature: Which novel was the character svengali from?
+Trilby
+10
+
+Literature: Which novel was the subject of a famous 1960's trial?
+Lady chatterley's lover
+10
+
+Literature: Which novel, when broadcast in America, was believed by many people to be a real news report, and it caused widespread panic?
+The war of the worlds
+10
+
+Literature: Which novelist born in 1886 had the initials H.G?
+Wells
+10
+
+Literature: Which novelist created Crown Prosecutor Helen West?
+Frances fyfield
+10
+
+Literature: Which novelist created pathologist Kay Scarpetta?
+Patricia cornwell
+10
+
+Literature: Which novelist died of typhoid after drinking water in paris?
+Arnold bennett
+10
+
+Literature: Which novelist explained how the rhino got his skin,the camel his hump and the leopard his spots?
+Rudyard kipling
+10
+
+Literature: Which novelist gave their name to a slang word for 2000 pounds?
+Jeffrey archer
+10
+
+Literature: Which novelist wrote The guns of Navarone,Ice Station Zebra and Where eagles Dare?
+Alistair maclean
+10
+
+Literature: Which novelist wrote tilly trotter and the glass virgin?
+Catherine cookson
+10
+
+Literature: Which of Mr Pickwicks friends married Arabella Allen?
+Nathaniel winkle
+10
+
+Literature: Which poet is buried in Grasmere churchyard?
+Wordsworth
+10
+
+Literature: Which poet wrote The Borderers and The Prelude?
+William Wordsworth
+10
+
+Literature: Which religious prisoner wrote his autobiography Grace Abounding and also began the allegory about Christians journey to the celestial city while in prison?
+John bunyan
+10
+
+Literature: Which Rosemary Sutcliffe novel concerned a Roman legion?
+The scarlet pimpernel
+10
+
+Literature: Which Russian poet had african blood and died in a duel?
+Pushkin
+10
+
+Literature: Which science fiction writer in his 1972 book The Lost Worlds of 2001 wrote -Any sufficiently advanced technology is indistinguishable from magic?
+Arthur c clarke
+10
+
+Literature: Which Scottish writer resurrected the caddish Harry Flashman from Tom Browns schooldays in a series of Flashman Novels?
+George macdonald fraser
+10
+
+Literature: Which Shakespeare play features Petruchio,Katharina and Bianca?
+The taming of the shrew
+10
+
+Literature: Which shakespearean character ahs a dog called Crab which he describes as the sourest natured dog that lives?
+Launce
+10
+
+Literature: Which Tennesee Williams play is about a Sicilian-American woman?
+The Rose Tattoo
+10
+
+Literature: Which term for Ireland was first used by Dr Drennan in his poem Erin?
+Emerald isle
+10
+
+Literature: Which three writers used the pseudonyms Currer,Ellis and Acton Bell?
+Charlotte,emily and anne bronte
+10
+
+Literature: Which Tolstoy heroine threw herself under a train?
+Anna Karenina
+10
+
+Literature: Which Trojans story is told in the Aeneid by Virgil?
+Aeneas
+10
+
+Literature: Which US Playwright wrote The Odd couple?
+Neil Simon
+10
+
+Literature: Which US poetess married Ted Hughes and committed suicide aged 31?
+Sylvia Plath
+10
+
+Literature: Which welsh language poet wrote The Gododdin in about AD600?
+Aneirin
+10
+
+Literature: Which writer created the lost world of Pellucidar, lost city of Opar, John Carter, Warlord of Mars and Carson of Venus?
+Edgar rice burroughs
+10
+
+Literature: Which writer married Annabel Lee and died of alcohol?
+Edgar Allan Poe
+10
+
+Literature: Who created 'Horton' the elephant?
+Dr. Seuss
+10
+
+Literature: Who created 'Maudie Frickett'?
+Jonathan Winters
+10
+
+Literature: Who created 'The Saint'?
+Leslie Charteris
+10
+
+Literature: who created nicole in tender is the night?
+F. scott fitzgerald
+10
+
+Literature: Who created Sherlock Holmes?
+Sir Arthur Conan Doyle
+10
+
+Literature: Who created the naval charcter Hornblower?
+C S Forester
+10
+
+Literature: Who did author Leslie Charteris create?
+The Saint
+10
+
+Literature: Who did Macduff kill?
+Macbeth
+10
+
+Literature: Who dubbed Australia 'the lucky country'?
+Donald Horne
+10
+
+Literature: who found ms. magazine?
+Gloria steinem
+10
+
+Literature: Who is associated with the address 221B Baker Street, London?
+Sherlock Holmes
+10
+
+Literature: Who is the fourth Musketeer?
+D'Artagnan
+10
+
+Literature: Who is the hero of Captain W E Johns best known stories?
+Biggles
+10
+
+Literature: Who is the heroine of Shakespeares As you like it?
+Rosalind
+10
+
+Literature: Who is the leading character of a story that features a fairy called Tinkerbell?
+Peter Pan
+10
+
+Literature: who is the subject of irving stone's the origin?
+Charles darwin
+10
+
+Literature: Who killed Macbeth in Shakespeares play?
+Macduff
+10
+
+Literature: Who killed Macbeth?
+Macduff
+10
+
+Literature: Who left The weir of Hermiston unfinished?
+Robert louis stevenson
+10
+
+Literature: who maintained law and order in noddy's toyland?
+Mr. plod
+10
+
+Literature: who penned the purloined letter?
+Edgar allen poe
+10
+
+Literature: Who said 'But, soft! what light through yonder window breaks'?
+Romeo
+10
+
+Literature: Who set stories in the imaginary county of Barsetshire?
+Anthony Trollope
+10
+
+Literature: Who shot achilles' in the heel?
+Paris
+10
+
+Literature: Who slew the monster Grendel in an old poem?
+Beowulf
+10
+
+Literature: who solves the crime in death on the nile?
+Hercule poirot
+10
+
+Literature: Who stated, 'In spite of everything, I still believe that people are really good at heart'?
+Anne Frank
+10
+
+Literature: Who tells stories about Brer Rabbit?
+Uncle remus
+10
+
+Literature: who turned all he touched into gold?
+King midas
+10
+
+Literature: Who was Becky Thatchers boyfriend?
+Tom sawyer
+10
+
+Literature: who was minnehaha's husband?
+Hiawatha
+10
+
+Literature: Who was Sherlock Holmes' house keeper and landlady?
+Mrs Hudson
+10
+
+Literature: Who was the author of 'Dracula'?
+Bram Stoker
+10
+
+Literature: Who was the bully in Tom Browns Schooldays?
+Flashman
+10
+
+Literature: Who was the guzzling and greedy giant created by Rabelais?
+Gargantua
+10
+
+Literature: Who was the human companion of Willow?
+Mad Mardigan
+10
+
+Literature: Who was the incurable optimist in David Copperfield?
+Mr micawber
+10
+
+Literature: Who was the tallest of Robin Hood's men?
+Little John
+10
+
+Literature: Who was the wife of King Arthur?
+Guinevere
+10
+
+Literature: Who was the wizard who assisted Arthur in the legends?
+Merlin
+10
+
+Literature: Who was Winnie the Pooh's neighbour?
+Piglet
+10
+
+Literature: Who won the Booker Prize for The Old Devils?
+Kingsley amis
+10
+
+Literature: Who wrote '1984'?
+George Orwell
+10
+
+Literature: Who wrote 'A Christmas Carol'?
+Charles Dickens
+10
+
+Literature: Who wrote 'A Tale Of Two Cities'?
+Charles Dickens
+10
+
+Literature: Who wrote 'Alice In Wonderland'?
+Lewis Carroll
+10
+
+Literature: Who wrote 'Don Quixote'?
+Cervantes
+10
+
+Literature: Who wrote 'Gone With The Wind'?
+Margaret Mitchell
+10
+
+Literature: Who wrote 'little lamb, who made thee'?
+William Blake
+10
+
+Literature: Who wrote 'Psycho'?
+Robert Bloch
+10
+
+Literature: Who wrote 'The Birds'?
+Daphne du Maurier
+10
+
+Literature: Who wrote 'The Female Eunuch'?
+Germaine Greer
+10
+
+Literature: Who wrote 'The Hobbit'?
+J.R.R. Tolkien
+10
+
+Literature: Who wrote 'The Rose Tattoo'?
+Tennessee Williams
+10
+
+Literature: Who wrote 'The Time Machine'?
+H.G. Wells
+10
+
+Literature: Who wrote 'Valley Of The Dolls'?
+Jacqueline Susann
+10
+
+Literature: Who wrote 'Weird Harold and Fat Albert'?
+Bill Cosby
+10
+
+Literature: Who wrote A handful of Dust, Vile Bodies and Decline and Fall?
+Evelyn waugh
+10
+
+Literature: Who wrote All quiet on the Western Front?
+Erich Remarque
+10
+
+Literature: Who wrote An ideal Husband?
+Oscar wilde
+10
+
+Literature: Who wrote Arms and the Man?
+George Bernard Shaw
+10
+
+Literature: Who wrote Brighton rock?
+Graham Greene
+10
+
+Literature: Who wrote chitty chitty bang bang?
+Ian fleming
+10
+
+Literature: Who wrote Dr Zhivago?
+Boris Pasternak
+10
+
+Literature: Who wrote Fair stood the wind for France?
+H E Bates
+10
+
+Literature: Who wrote Finnegans wake?
+James Joyce
+10
+
+Literature: Who wrote Frenchmans Creek and My cousin Rachel?
+Daphne du maurier
+10
+
+Literature: Who wrote Journey to the centre of the earth?
+Jules Verne
+10
+
+Literature: Who wrote Kublai Khan?
+Samuel taylor coleridge
+10
+
+Literature: who wrote marjorie morningstar?
+Herman wouk
+10
+
+Literature: Who wrote Marys Little Lamb?
+Sarah Josepha Hale
+10
+
+Literature: Who wrote Mill on the Floss?
+George Elliot
+10
+
+Literature: Who wrote Ode to the West Wind?
+Shelley
+10
+
+Literature: Who wrote the 'Dragonriders Of Pern' series?
+Anne McCaffrey
+10
+
+Literature: Who wrote the 'Father Brown' crime stories?
+G.K. Chesterton
+10
+
+Literature: Who wrote the 'Myth' series?
+Robert Asprin
+10
+
+Literature: Who wrote the 'Noddy' books?
+Enid Blyton
+10
+
+Literature: Who wrote the Belgariad?
+Leigh and David Eddings
+10
+
+Literature: Who wrote the book Schindlers Ark?
+Thomas kenneally
+10
+
+Literature: Who wrote the boys stories Stalky & Co?
+Rudyard Kipling
+10
+
+Literature: Who wrote the childrens Mr Men series?
+Roger Hargreaves
+10
+
+Literature: Who wrote The Count of Monte Cristo?
+Alexandre Dumas
+10
+
+Literature: Who wrote The Day of the Jackal?
+Frederick Forsyth
+10
+
+Literature: Who wrote the Discworld series?
+Terry Pratchett
+10
+
+Literature: Who wrote the epic poem Odyssey?
+Homer
+10
+
+Literature: Who wrote the first essays in English?
+Francis Bacon
+10
+
+Literature: Who wrote the Forsyte Saga?
+John Galsworthy
+10
+
+Literature: Who wrote The French Lieutenants Woman?
+John Fowles
+10
+
+Literature: Who wrote The Good Companions?
+J B Priestley
+10
+
+Literature: Who wrote The History of Mr Polly?
+H G Wells
+10
+
+Literature: Who wrote the novel Kipps?
+H G Wells
+10
+
+Literature: Who wrote the novel The Card?
+Arnold bennett
+10
+
+Literature: Who wrote the poem Maud?
+Tennyson
+10
+
+Literature: who wrote the scarlatti inheritance?
+Rober ludlum
+10
+
+Literature: Who wrote the shortest ever letter?
+Victor Hugo
+10
+
+Literature: Who wrote the Three Musketeers?
+Alexandre dumas
+10
+
+Literature: Who wrote the vampire series that featured Lestat as the main character?
+Anne Rice
+10
+
+Literature: Who wrote To the lighthouse and Mrs dalloway?
+Virginia Woolf
+10
+
+Literature: Who wrote Tropic of Cancer and Tropic of Capricorn?
+Henry Miller
+10
+
+Literature: who wrote: 'rose is a rose is a rose is a rose'?
+Gertrude stein
+10
+
+Literature: Who's last words were 'Thus with a kiss I die'?
+Romeo
+10
+
+Literature: who's the only us president to have won a pulitzer prize?
+John f kennedy
+10
+
+Literature: Whom did Sherlock Holmes refer to as THE Woman?
+Irene Adler
+10
+
+Literature: Whom does Viola love in Twelfth Night?
+Duke Orsino
+10
+
+Literature: Whose plays were published in the First Folio?
+Shakespeare
+10
+
+Literature: wieland, herder, lesoing, schilling are from this country?
+Germany
+10
+
+Literature: With which of his novels did michael odantje jointly win the booker prize?
+The English patient
+10
+
+Literature: With whom did Jenny live according to a controversial childrens book?
+Eric and martin
+10
+
+Literature: Wizard Of Oz: In the book, the inhabitants of the land of the west?
+Winkies
+10
+
+Literature: Writers. Question Value: 300.XX: The Silence of the Lambs?
+Thomas harris
+10
+
+Literature: wrote the teachings of don juan: a yaqui way of knowledge?
+Castaneda
+10
+
+Literature: Zorro was the secret identity of what wealthy landowner?
+Don Diego de la Vega
+10
+
+Literature: �Humbert Humbert' is a character in which book?
+Lolita
+10
+
+LITRATURE: What is the title of Chestertons poem - with monstrous head and sickening cry and ears like errant wings?
+The donkey
+10
+
+Litterature: Homer wrote this account of the Trojan War?
+Iliad
+10
+
+Little Jimmy Osmond topped the charts with 'Long Haired Lover from...?
+Liverpool
+10
+
+Little round chocolate candies are known as _andms?
+M
+10
+
+Live Aid was to benefit which starving country?
+Ethopia
+10
+
+Liverpool M.P. William Huskisson, who died in 1839, was the first person in the world to die by what method?
+He was hit by a train
+10
+
+LIVING WORLD: Found in the Fens, the Swallowtail is Britains largest native ewhat?
+Butterfly
+10
+
+LIVING WORLD: Mulberry leaves are the staple food of which animal?
+Silkworm
+10
+
+Livingroom furniture?
+Sofa
+10
+
+Liz Taylor, Bruce Springsteen and Frank Sinatra all converted to this religion?
+Judaism
+10
+
+Lizard able to change colour for camouflage?
+Chameleon
+10
+
+Loafers, espadrilles and brogues are all types of what?
+Footwear
+10
+
+Lobster like freshwater crustacean?
+Crayfish
+10
+
+Lobsters have blue?
+Blood
+10
+
+Located in northern Arizona, established as a national monument in 1908 & as a national park in 1919?
+Grand canyon national park
+10
+
+Lockjaw is another name for which disease?
+Tetanus
+10
+
+Logo is dervied from the greek word meaning what?
+Word
+10
+
+Loincloth worn by male Hindus?
+Dhoti
+10
+
+London boasts the oldest public museum in the world, founded in 1753. Which is it?
+The British Museum
+10
+
+London residence of the Arch bishop of Canterbury?
+Lambeth palace
+10
+
+London, to whom is the Cross at Charing Cross a memorial?
+Eleanor of castile
+10
+
+Londons red double decker buses are painted with which other colour running in a horizontal stripe round the middle?
+Cream
+10
+
+Long ago, the people of ____ believed that if they threw beautiful young women into a volcano it would stop erupting
+Nicaragua
+10
+
+Long before starship, which group hit the san francisco scene?
+Jefferson airplane
+10
+
+Long billed wading bird with a musical cry?
+Curlew
+10
+
+Long case clock are the proper name for what?
+Grandfather clocks
+10
+
+Long What was Dorothy's aunt's name in The Wizard of Oz?
+Aunt em
+10
+
+Loose thick usually cotton trousers worn for sports or leisurewear?
+Sweatpants
+10
+
+Lord byron had a ____ foot
+Club
+10
+
+Lorne Green had one of his nipples bitten off by an ____ while host of Lorne Green's Wild Kingdom
+Alligator
+10
+
+Los Angeles and San Francisco become ____ inches closer together each year because they are on opposite sides of the San Andreas fault
+2.5
+10
+
+Los Angeles's full name is El Pueblo de Nuestra Senora la Reina de los Angeles de Porciuncula ____and can be abbreviated to ____ of its size: L.A
+63%
+10
+
+Lots of us had C-64s or Vic-20s, made by this company:?
+Commodore
+10
+
+Lottery commence in britain?
+1994
+10
+
+Louis IV of France had a stomach the size of ____ regular stomachs
+Two
+10
+
+Louis Pasteur developed a vaccine for what?
+Rabies
+10
+
+Louis XIV ____ once a year
+Bathed
+10
+
+Louis XIV had forty personal wigmakers and almost ____ wigs
+1000
+10
+
+louis, 1 think this is the beginning of a beautiful friendship are the last words of which film?
+Casablanca
+10
+
+Louisa May Alcott, author of the classic Little Women, hated____ . She only wrote the book because her publisher asked her to
+Kids
+10
+
+Louisiana is another state, that bears the mark of Robert Cavelier Sieur de La Salle. The first European to descend the Mississippi River to the delta, this French explorer named the area La Louisianne after who in 1682?
+Louis XIV of France
+10
+
+Love in bloom was the theme song of this comedy show?
+Jack benny show
+10
+
+Lowest member of the British nobility?
+Baron
+10
+
+Luanda is the capital of ____
+Angola
+10
+
+Lucifer is latin for?
+Light bringer
+10
+
+Luis Marcus, a San Francisco cosmetic manufacturer invented which popular hair accessory?
+The bobbypin
+10
+
+Luke Skywalker's last name was changed at the last minute from ____ in order to make it less violent
+Starkiller
+10
+
+Luke Vandervelde is the new head of which retail business?
+Marks & spencer
+10
+
+Lunar revolutionary who hated the handle `Why not'?
+Wyoming knott
+10
+
+Lusaka is the capital of ____
+Zambia
+10
+
+Lyndon B. Johnson was the first president of the United States to wear ____ lenses
+Contact
+10
+
+Lyrics: A week without you but I forget two weeks without you and I still haven't gotten over you yet?
+Vacation The Go-Go's
+10
+
+Lyrics: And mama always told me be careful what you do don't go around breaking young girls' hearts?
+Billie Jean Michael Jackson
+10
+
+Lyrics: Before I put another notch in my lipstick case you better make sure you put me in my place!?
+Hit Me With Your Best Shot Pat Benatar
+10
+
+Lyrics: By now the fighting will be close at hand?
+Silent Running On Dangerous Ground Mike and the Mechanics 
+10
+
+Lyrics: can you hear them they talk about us telling lies well that's no surprise?
+Our lips are sealed
+10
+
+Lyrics: Can you hear them? They talk about us telling lies well that's no surprise?
+Our Lips Are Sealed The Go-Go's
+10
+
+Lyrics: do you ever dream of me do you ever see the letters that i write?
+Nikita
+10
+
+Lyrics: Do you ever dream of me? Do you ever see the letters that I write?
+Nikita Elton John 
+10
+
+Lyrics: Don't drink Don't smoke what do ya do?
+Goody Two Shoes Adam Ant
+10
+
+Lyrics: don't drink don't smoke what do ya do?
+Goody two shoes
+10
+
+Lyrics: Get to know the feeling of liberation and relief [or release]?
+Don't Dream It's Over Crowded House 
+10
+
+Lyrics: get to know the feeling of liberation and relief or release?
+Don't dream it's over
+10
+
+Lyrics: He's licking his lips he's ready to win on the hunt tonight for love at first sting?
+Rock You Like a Hurricane Scorpions
+10
+
+Lyrics: I have a picture pinned to my wall?
+Hold Me Now The Thompson Twins
+10
+
+Lyrics: I knew right from the beginning that you would end up winnin' I knew right from the start you'd put an arrow through my heart?
+Round and Round Ratt
+10
+
+Lyrics: I know a good thing must come to an end but it's hard to take losing a friend?
+I Know There's Something Going On Frida
+10
+
+Lyrics: i know a guy who's tough but sweet. he's so fine he can't be beat?
+I want candy
+10
+
+Lyrics: i know you're not mine anymore-anyway-anytime?
+I keep forgettin
+10
+
+Lyrics: I never meant to be so bad to you. One thing I said that I would never do?
+Heat of the Moment Asia
+10
+
+Lyrics: I tried my imagination but I was disturbed?
+867-5309/Jenny Tommy Tutone
+10
+
+Lyrics: I was a high school loser never made it with a lady 'til the boys told me somethin I missed?
+Walk This Way Run-D.M.C. w/ Aerosmith
+10
+
+Lyrics: i'll kick you out of my home if you don't cut that hair?
+Fight for your right to party
+10
+
+Lyrics: I'm gonna buy me a one way ticket nothin's gonna hold me back. Your love's like a slow train comin and I can feel it comin down the track- whoah?
+When The Going Gets Tough Billy Ocean
+10
+
+Lyrics: I'm only lookin' for a fantasy an interlude from reality?
+Tonight Im Yours Rod Stewart
+10
+
+Lyrics: It's time to bring this ship in to the shore and throw away the oars forever?
+Can't Fight This Feeling REO Speedwagon
+10
+
+Lyrics: just like adam and eve 'cept you set me free?
+You dropped a bomb on me
+10
+
+Lyrics: just pick it up and throw it into shape?
+What you need
+10
+
+Lyrics: No April rain no flowers' bloom no wedding Saturday within the month of June?
+I Just Called To Say You Stevie Wonder
+10
+
+Lyrics: now the mist across the window hides the lines?
+Steppin' out
+10
+
+Lyrics: Once upon a time there was light in my life but now there's only love in the dark?
+Total Eclipse of the Heart Bonnie Tyler
+10
+
+Lyrics: Ooh baby do you know what that's worth?
+Heaven Is a Place On Earth Belinda Carlisle
+10
+
+Lyrics: ooh baby do you know what that's worth?
+Heaven is a place on earth
+10
+
+Lyrics: Sailed away to China in a little row boat to find ya you said you had to get your laundry done?
+Break My Stride Matthew Wilder
+10
+
+Lyrics: She got me rappin' to the beat then I knew that she was hot?
+Der Kommissar After The Fire 
+10
+
+Lyrics: she's as heavy as a chevy pure excitement...?
+Misled
+10
+
+Lyrics: So now I'll go the minstrel road without you?
+Take It Easy on Me Little River Band
+10
+
+Lyrics: So when you call up that shrink in Beverly Hills you know the one Dr. everything be all right?
+Let's Go Crazy by Prince
+10
+
+Lyrics: Somebodies callin after somebody somebody turns the corner out of sight. Lookin for somebody somewhere in the night?
+Tender Is the Night by Jackson Browne
+10
+
+Lyrics: Stop walking down my street. Who do you expect to meet?
+Don't Come Around Here No More Tom Petty and the Heartbreakers
+10
+
+Lyrics: strange voices are saying ah what did they say things. i can't understand?
+Cruel summer
+10
+
+Lyrics: Strange voices are saying ah what did they say? Things. I can't understand?
+Cruel Summer Bananarama
+10
+
+Lyrics: That's right here's where the talkin' ends?
+You've Got Another Thing Comin' Judas Priest
+10
+
+Lyrics: The school bell rings you know it's my cue I'm gonna meet the boys on floor number two?
+Smokin' in the Boys' Room by M?tley Cr?e
+10
+
+Lyrics: Tried my imagination but I was disturbed?
+867-5309/Jenny Tommy Tutone
+10
+
+Lyrics: We could dance and party all night and drink some cherry wine?
+We Don't Have To Take Our Clothes Off Jeramine Stewart
+10
+
+Lyrics: Well I like takin' off don't like burnin' out every time you turn it on makes me wanna shout?
+Cool the Engines Boston
+10
+
+Lyrics: Well then close your eyes and know the words are coming from my heart?
+That's What Friends Are For Dionne & Friends 
+10
+
+Lyrics: What does love want me to do?
+Let the Music Play Shannon 
+10
+
+Lyrics: what does love want me to do?
+Let the music play
+10
+
+Lyrics: What else can I do to get closer to you?
+Let It Whip The Dazz Band
+10
+
+Lyrics: where ye goin' what you lookin' for?
+Sister christian
+10
+
+Lyrics: Where ye goin'? What you lookin' for?
+Sister Christian Night Ranger 
+10
+
+Lyrics: Who needs a heart when a heart can be broken?
+What's Love Got To Do With It? Tina Turner
+10
+
+Lyrics: who needs a heart when a heart can be broken?
+What's love got to do with it
+10
+
+Lyrics: Who's gonna block your ears when you scream?
+Drive The Cars
+10
+
+Lyrics: who's gonna block your ears when you scream?
+Drive
+10
+
+Lyrics: With my body and soul I want you more than you'll ever know?
+I've Had TheTime Of My Life Bill Medley and Jennifer Warnes
+10
+
+Lyrics: You tell me that you want me you tell me that you need me you tell me that you love me and I know that I'm right cause I hear it in the night?
+Talking In Your Sleep The Romantics
+10
+
+Lyrics: You're moving in circles won't you dilate?
+Too Shy Kajagoogoo 
+10
+
+Lyrics: you're moving in circles won't you dilate?
+Too shy
+10
+
+M-a-s-h: what are col blake's two favorite outdoor sports?
+Fishing and golf
+10
+
+M-a-s-h: what is nurse dish's first name?
+Maggie
+10
+
+M-a-s-h: what sport was father mulcahy's sister into?
+Basketball
+10
+
+M-a-s-h: where did radar's mother send him when the cat had kittens?
+To the movies
+10
+
+M-a-s-h: who played hawkeye and trapper john in the m-a-s-h movie?
+Elliot gould and donald sutherland
+10
+
+M&M's stands for the last names of ____ Mars, Sr. then candymaker and his associate Bruce Murrie
+Forrest
+10
+
+M&M's stands for the last names of Forrest Mars, Sr. then candymaker and his associate ____ Murrie
+Bruce
+10
+
+M&M's stands for the last names of Forrest Mars, Sr. then candymaker and his associate Bruce____
+Murrie
+10
+
+M&M's stands for the last names of Forrest____ , Sr. then candymaker and his associate Bruce Murrie
+Mars
+10
+
+M&M's were developed so soldiers could eat the candy without getting their fingers____
+Sticky
+10
+
+Macau will be reverted to chinese control after being under which country's rule?
+Portugal
+10
+
+Mace is the outer covering of which common spice?
+Nutmeg
+10
+
+Machine that decreases the volume & increases the pressure of a quantity of air by mechanical means?
+Air compressor
+10
+
+Machine used to separate the fibers of cotton from the seeds?
+Cotton gin
+10
+
+Maclaine how many letters (maximum) can a thoroughbred horse can have in its name?
+Fourteen
+10
+
+Madame Tussard the waxwork founder was born in which city?
+Strasbourg
+10
+
+Made In Canada: City where Motley Crue recorded Dr. Feelgood?
+Vancouver
+10
+
+Made In Canada: City where the big Faith No More/Metallica/Guns'N'Roses riot occured in '91?
+Montreal
+10
+
+Made In Canada: James Labrie's band previous to Dream Theater:?
+Winter rose
+10
+
+Made In Canada: The name of the major copyright corporation in Canada?
+Socan
+10
+
+Made In Canada: The only Canadian band to win Yamaha's International MusicQuest?
+Haywire
+10
+
+Made in the Netherlands, what are Edam and Gouda?
+Cheeses
+10
+
+Madison is the capital of ____
+Wisconsin
+10
+
+Madison is the capital of what US State?
+Wisconsin
+10
+
+Madonna has a tattoo of this persons face on her butt?
+Marilyn Monroe
+10
+
+Madonna has had 8 number 1 's in the UK singles chart, yet her best selling single only reached number 3. Name it?
+Like a virgin
+10
+
+Madonna Songs?
+Bedtime Story
+10
+
+Madrid & Lisbon are both located near this river?
+Tagus river
+10
+
+Madrid and lisbon are both located near which river?
+Tagus river
+10
+
+Madrid is the capital of ____
+Spain
+10
+
+Madrid Missouri who lived at 1313 mockingbird lane?
+Munsters
+10
+
+Mae West was once dubbed 'The statue of____
+Libido
+10
+
+Maersk, Premiair and Sterling are all current airlines from which European country?
+Denmark
+10
+
+Maestro fresh wes hails from what country?
+Canada
+10
+
+MAFIA is an acronym for Morte Alla Francia Italia Anela, or ____
+Death to the french is Italy's cry
+10
+
+MAFIA is an acronym for____ , or Death to the French is Italy's Cry
+Morte alla francia italia anela
+10
+
+Magazine Titles?
+Rolling Stone
+10
+
+Magazine Titles?
+Time
+10
+
+Magazines: John Leonard was one in a long line of editors-in-chief for this magazine?
+Vanity fair
+10
+
+Magazines: Magazine famous for its Norman Rockwell cover paintings?
+Saturday evening post
+10
+
+Magazines: this magazine chronicled the man of bronze and the fabulous five?
+Doc savage
+10
+
+Magazines: This magazine features an obituary on its last page?
+Rolling stone
+10
+
+Magazines: This magazine selects the man of the year?
+Time
+10
+
+Magazines: this magazine used to boast a circulation of 7,777,777?
+Better homes and gardens
+10
+
+Magazines: womens magazine launched by New York in the 70's?
+Ms
+10
+
+Maggots were once used to treat a ____ infection called osteomyelitis
+Bone
+10
+
+Maggots were once used to treat a bone infection called____
+Osteomyelitis
+10
+
+Magic the Dog and Morgan Fairchild have appeared in commercials for which popular clothing store chain?
+Old Navy
+10
+
+Magician David Kotkin managed to change his name to what?
+David Copperfield
+10
+
+Mahatma gandhi was cremated in 1948, 1952 or 1959?
+1948
+10
+
+Major in greek mythology, who was visited by zeus in the form of a swan, and became the mother of helen and pollux?
+Leda
+10
+
+Malaria is traditionally spread by which insect?
+Mosquito
+10
+
+Malaria is transmitted by the female ____ mosquito
+Anopheles
+10
+
+Malaysians protect their babies from disease by bathing the in____
+Beer
+10
+
+Male monkeys lose the ____ on their heads in the same way men do
+Hair
+10
+
+Male voice above normal range?
+Falsetto
+10
+
+Mammal characterized by short, strong legs; elongated feet that are more or less plantigrade (heels touch the ground); & straight, strong toes adapted to burrowing?
+Badger
+10
+
+Mantle what is the official name of michael knight's car?
+Knight Industries 2000
+10
+
+Many a slugabed has been reminded that 'the early bird catches' this?
+The worm
+10
+
+Many ancient mayan ruins are located on which peninsula?
+Yucatan peninsula
+10
+
+Many sailors used to wear ____ earrings so that they could afford a proper burial when they died
+Gold
+10
+
+Marcel ____ had a swordfish at home
+Prousthave
+10
+
+Marcel Prousthave had a ____ at home
+Swordfish
+10
+
+Marconi transmitted radio signals across which ocean?
+Atlantic ocean
+10
+
+Mares' tails are examples of which type of cloud?
+Cirrus
+10
+
+Margaret made a trade with Charles to train the nurses. What did she have to do in return?
+A classical record
+10
+
+Marie curie won nobel prizes in which two categories?
+Physics and chemistry
+10
+
+Marie Osmond has only had one UK hit single as a solo artist name it?
+Paper roses
+10
+
+Marijuana is Spanish for what?
+Mary jane
+10
+
+Marilyn Monroe had six?
+Toes
+10
+
+Marinated limbs of fowl?
+Chicken wings
+10
+
+Marine creature with tusks?
+Walrus
+10
+
+Mariner Chinese: What do you call a Chinese sailing ship?
+Junk
+10
+
+Maritime Trivia - On a ship, what is the line that indicates the maximum load that may be transported?
+Plimsoll Line
+10
+
+Mark David Chapman was famous for what in 1980?
+Shooting John Lennon
+10
+
+Mark dinning released which tear-jerker that went to the top of the charts in november 1959?
+Teen angel
+10
+
+Mark mcguire tied and went on to beat whose record of 61 home runs in one major league season?
+Roger maris
+10
+
+Mark Mishon ate 61 of these in 7 minutes at The Obelix Creperie?
+Pancakes
+10
+
+Mark Twain died at age 75 in ____
+1910
+10
+
+Mark Twain was born on a day in 1835 & he died in 1910, what was in view on both occasions?
+Halleys comet
+10
+
+Mark, rouble and escudo are all types of what?
+Currency
+10
+
+Marley what did actor john wayne win from rudd weatherswax in a poker game?
+Lassie
+10
+
+Marley Who still receives an estimated 25 pieces of junk mail per year at Walden Pond?
+Thoreau
+10
+
+Marley whose likeness is depicted on the purple heart?
+George Washington
+10
+
+Marlon Brando starred in 'Last Tango in Paris' which actress was he tangoing with?
+Maria schneider
+10
+
+Marlon Brando was born in which decade of the century?
+20s
+10
+
+Marmorial is the adjective pertaining to what substance?
+Marble
+10
+
+Marshall Field was the founder, in 1941, of what Chicago paper?
+Chicago sun
+10
+
+Martin British rock-music group that rivaled the popularity of the group's early contemporaries, The Beatles?
+The rolling stones
+10
+
+Martin Luther King Day was declared a national public holiday in the US by which president?
+Ronald Reagan
+10
+
+Martin Luther King was the youngest recipient of what?
+Nobel peace prize
+10
+
+Martin what 1980's tv series starred bruce willis?
+Moonlighting
+10
+
+Martina Navratilova has been on the winning side in the Federation Cup for which two countries?
+Czechoslovakia & USA
+10
+
+Mary and martha lived in this town and so did lazarus, sometimes?
+Bethany
+10
+
+Mary Anne Nichols, Martha Turner, Annie Chapman, Elizabeth Stride, and Catherine Eddowes were London prostitutes who were murdered and dismembered by the notorious ____ in the autumn of 1888. The perpetrator of these chilling atrocities was never found, although many theories as to his/her identity persist to this day
+Jack the ripper
+10
+
+Mary Donaldson was the first woman to hold which post?
+Lord mayor of london
+10
+
+Mary j blige born 11 jan 1971?
+Atlanta, georgia
+10
+
+Mary magdalene is the patron saint of ____
+Prostitutes
+10
+
+Mary Pickford was born in ____
+1893
+10
+
+Mary Queen of Scots belonged to which royal house?
+Stuart
+10
+
+Mary robinson became president of Ireland in which year?
+1990
+10
+
+Mary robinson became president of which country in 1990?
+Ireland
+10
+
+Mary Shelly wrote Frankenstein at the age of____
+Nineteen
+10
+
+Maryland State Quarter depicts the dome of the____, the largest wooden dome in the country built without nails
+Maryland Statehouse
+10
+
+Maseru is the capital of ____
+Lesotho
+10
+
+Maseru is the capital of which african country?
+Lesotho
+10
+
+Mash: name the operator radar talks to on the telephone where did the most powerful earthquake in us history occur during 1811?
+New
+10
+
+Mash: what was radar o'reilly's real first name?
+Walter
+10
+
+Mash: when hawkeye called hollywood, who did he ask for?
+Marilyn monroe
+10
+
+Masked pantomime character in diamond patterned costume?
+Harlequin
+10
+
+Mass murder especially among a particular race or nation?
+Genocide
+10
+
+Massachusetts gained statehood in 1788, and has sent four of her own to become President of the United States?
+John F. Kennedy, Calvin Coolidge, John Adams and John Quincy Adams 
+10
+
+Massacre who was the narrator of the film 'texas chainsaw massacre'?
+John larroquette
+10
+
+Masters & Johnson were famous for books on what topic?
+Human sexuality
+10
+
+Material burned to give fragrant fumes?
+Incense
+10
+
+Material withheld from civilian use in WW II because it was needed to make parachutes?
+Nylon
+10
+
+Material world who played the male lead in the 1965 film entitled the war lord?
+Charlton
+10
+
+Mathematics: 0, 1, 1, 2, 3, 5, 8, 13... is call a ____ series
+Fibonacci
+10
+
+Mathematics: 1 + 9 =?
+10
+10
+
+Mathematics: 1 x 1 =?
+1
+10
+
+Mathematics: 1+1?
+2
+10
+
+Mathematics: 10-5?
+5
+10
+
+Mathematics: 100 zeros after the number 1 is a very very large number called what?
+Googol
+10
+
+Mathematics: 2+1?
+3
+10
+
+Mathematics: 50 + 50 =?
+100
+10
+
+Mathematics: 67 - 48 =?
+19
+10
+
+Mathematics: 7 x 8?
+56
+10
+
+Mathematics: 9 p.m. In military time is how many hours?
+2100
+10
+
+Mathematics: A line drawn from an angle of a triangle to the mid-point of the opposite side is a(n) ____
+Median
+10
+
+Mathematics: A triangle with three equal sides is called ____
+Equilateral
+10
+
+Mathematics: A triangle with two equal sides is called ____
+Isosceles
+10
+
+Mathematics: A U.S. dime is worth ____ cents
+10
+10
+
+Mathematics: A U.S. dime is worth ____ cents
+Ten
+10
+
+Mathematics: Algebra: Define the value of X: -10x - 19 = 19 - 8x?
+-19
+10
+
+Mathematics: Algebra: Define the value of X: -11+10x+11-33=x+2x+100?
+19
+10
+
+Mathematics: Algebra: Define the value of X: -32 = x + 3?
+-35
+10
+
+Mathematics: Algebra: Define the value of X: -6 + 2x + 3x = 29?
+7
+10
+
+Mathematics: Algebra: Define the value of X: 0x + 7 + 5x = 2x + 30 + 40?
+21
+10
+
+Mathematics: Algebra: Define the value of X: 10 - 20x-10=15x-5x+90?
+9
+10
+
+Mathematics: Algebra: Define the value of X: 100x + -89x = 121?
+11
+10
+
+Mathematics: Algebra: Define the value of X: 10x + 3x = 100 + 69?
+13
+10
+
+Mathematics: Algebra: Define the value of X: 10x = 130?
+13
+10
+
+Mathematics: Algebra: Define the value of X: 10x+5+0= 2x - 3x + 60?
+5
+10
+
+Mathematics: Algebra: Define the value of X: 12 = -x + 1?
+-11
+10
+
+Mathematics: Algebra: Define the value of X: 12x + 0 = 144?
+12
+10
+
+Mathematics: Algebra: Define the value of X: 14 = -2x?
+-7
+10
+
+Mathematics: Algebra: Define the value of X: 15 + 5x = 0?
+-3
+10
+
+Mathematics: Algebra: Define the value of X: 17x - 12 = 114 + 3x?
+9
+10
+
+Mathematics: Algebra: Define the value of X: 29 - x = 13?
+16
+10
+
+Mathematics: Algebra: Define the value of X: 2x - 10 = 10 - 3x?
+4
+10
+
+Mathematics: Algebra: Define the value of X: 2x + 6 = 4x - 2?
+4
+10
+
+Mathematics: Algebra: Define the value of X: 2x = 10?
+5
+10
+
+Mathematics: Algebra: Define the value of X: 46 = 47 - x?
+1
+10
+
+Mathematics: Algebra: Define the value of X: 4x + 6 = -10?
+-4
+10
+
+Mathematics: Algebra: Define the value of X: 4x = 16?
+4
+10
+
+Mathematics: Algebra: Define the value of X: 5x+9+5x=30+7x- -15+ + 15?
+17
+10
+
+Mathematics: Algebra: Define the value of X: 6x - 2 + 2x = -2 + 4x + 8?
+2
+10
+
+Mathematics: Algebra: Define the value of X: 99 + 5x = 2000 - 5x - 911?
+99
+10
+
+Mathematics: Algebra: Define the value of X: x - 6 = 9?
+15
+10
+
+Mathematics: Algebra: Define the value of X: x + 3 = 5?
+2
+10
+
+Mathematics: Algebra: Define the value of X: x + 9 = 18 - 2x?
+3
+10
+
+Mathematics: Algebra: Solve it: 14a x 3a - 8a ? 2?
+17
+10
+
+Mathematics: Algebra: Solve it: 3x + 2x?
+5x
+10
+
+Mathematics: Algebra: Solve it: 7y - 2y + 3y?
+8y
+10
+
+Mathematics: An angle greater than 180 degrees and less than 360 degrees is a(n) ____ angle
+Reflex
+10
+
+Mathematics: An angle greater than 90 degrees and less than 180 degrees is said to be ____
+Obtuse
+10
+
+Mathematics: An angle greater than 90 degrees is said to be ____
+Obtuse
+10
+
+Mathematics: An integer that is greater than 1 and is divisible only by itself and 1 is known as a(n) ____
+Prime
+10
+
+Mathematics: Approximately how many inches are there in one meter?
+39
+10
+
+Mathematics: Approximately how many inches are there in one meter?
+Thirty nine
+10
+
+Mathematics: Arc, radius, and sector are parts of a(n) ____
+Circle
+10
+
+Mathematics: How many corners are there in a cube?
+Eight
+10
+
+Mathematics: How many different letters are used in the roman numeral system?
+Seven
+10
+
+Mathematics: How many nickels (5 cents) are there in 2.25?
+Forty five
+10
+
+Mathematics: If you cut through a solid sphere what shape will the flat area be?
+Circle
+10
+
+Mathematics: Name the number system which uses only the symbols 1 and 0?
+The binary system
+10
+
+Mathematics: The angles inside a square total ____ degrees
+360
+10
+
+Mathematics: The mathematical study of properties of lines, angels, etc., is ____
+Geometry
+10
+
+Mathematics: The space occupied by a body is called its ____
+Volume
+10
+
+Mathematics: The square root of 1 is?
+1
+10
+
+Mathematics: Two angles that total 180 degrees are called ____
+Supplementary
+10
+
+Mathematics: What geometric shape has 4 equal sides?
+Square
+10
+
+Mathematics: What is 65% of 60?
+39
+10
+
+Mathematics: what is seventy percent of seventy?
+49
+10
+
+Mathematics: What is the maximum number of integer degrees in a reflex angle?
+Three hundred and fifty nine
+10
+
+Mathematics: What is the maximum number of integer degrees in an acute angle?
+Eighty nine
+10
+
+Mathematics: What is the maximum number of integer degrees in an obtuse angle?
+One hundred and seventy nine
+10
+
+Mathematics: What is the minimum number of integer degrees in a reflex angle?
+One hundred and eighty one
+10
+
+Mathematics: What is the minimum number of integer degrees in an acute angle?
+One
+10
+
+Mathematics: What is the minimum number of integer degrees in an obtuse angle?
+91
+10
+
+Mathematics: What is the only digit that has the same number of letters as its value?
+Four
+10
+
+Mathematics: What is the square root of -1?
+I
+10
+
+Mathematics: What is the square root of 729?
+27
+10
+
+Mathematics: what's a number called if it's equal to the sum of its divisors other than itself?
+Perfect
+10
+
+Mathematics: What's the number ten to the power of 100?
+A googol
+10
+
+Mathematics: Who invented logarithms?
+John Napier
+10
+
+Mathematics: Who proved Fermat's Last Theorem?
+Andrew Wiles
+10
+
+Matt Groening, creator of the Simpsons, incorporated his initials into the drawing of____ . M is his hair and G is his ear. Check it out!
+Homer
+10
+
+Matthew perry plays which character in the television series friends?
+Chandler
+10
+
+Mature ovary in flowering plants, together with all inseparably connected parts of the flower?
+Fruit
+10
+
+Mbabane is the capital of ____
+Swaziland
+10
+
+Mckinley what u.s secretary of state bought Alaska from Russia for 7.2 million dollars?
+Seward
+10
+
+MDMA is another name for which illegal drug?
+Ecstasy
+10
+
+Meaning 'Black Knife' in Gaelic what is the dagger worn in the sock with full Highland Dress?
+Skean dhu
+10
+
+Measured from base to summit, what is the highest mountain?
+Mauna kea
+10
+
+Measurement: 1 mile is how many yards?
+1760
+10
+
+Measurement: 1 pm In military time is how many hours?
+1300
+10
+
+Measurement: 10' of what equals 1' of rain in water content?
+Snow
+10
+
+Measurement: 11 am In military time is how many hours?
+1100
+10
+
+Measurement: 11:37 pm In military time is how many hours?
+2337
+10
+
+Measurement: 15 pounds per square inch equal?
+One atmosphere
+10
+
+Measurement: 1k equals how many bytes?
+1024
+10
+
+Measurement: 220 yards equals one?
+Furlong
+10
+
+Measurement: 3.26 light years equals one ____
+Parsec
+10
+
+Measurement: 5:45 pm In military time is how many hours?
+1745
+10
+
+Measurement: 7:25 pm In military time is how many hours?
+1925
+10
+
+Measurement: A ____ is an actual unit of time for 1/100th of a second
+Jiffy
+10
+
+Measurement: A ____ is the only standard international unit of measure still defined by a physical object, a bar composed of two elements
+Kilogram
+10
+
+Measurement: A ____ measures blood pressure
+Sphygmomanometer
+10
+
+Measurement: A 60-minute cassette contains ____ feet of tape
+565
+10
+
+Measurement: A calorie is a unit of what?
+Heat
+10
+
+Measurement: A stack of $1 dollar bills one-mile high would be worth more than ____ dollars
+-- Answer metadata begin
+{
+    "answers": ["Fourteen million", "14,000,000"]
+}
+-- Answer metadata end
+10
+
+Measurement: In the Celsius scale, what is nought degrees Kelvin, to the nearest whole number?
+Minus 273 degrees
+10
+
+Measurement: In the Gregorian calendar after 10,000 years by how many days will the calendar be wrong by?
+Three
+10
+
+Measurement: Ratio of the mass of a body to its volume, usually expressed as its specific gravity?
+Density
+10
+
+Measurement: The term Sesquibicentennial represents how many years?
+250
+10
+
+Measurement: What instrument measures walking distance?
+Pedometer
+10
+
+Measurement: What is the distance of the Olympic Biathlon?
+20 kilometres
+10
+
+Mechanical device that produces a force, or thrust, along the axis of rotation when rotated in a fluid, gas or liquid?
+Propeller
+10
+
+media what is liverpool's own regional daily paper called?
+Liverpool echo
+10
+
+media which newspaper did the sun replace in 1964?
+Daily herald
+10
+
+Medical examination of a dead human body, including the internal organs, to determine the cause of death or to study pathological changes?
+Autopsy
+10
+
+Medical experts say you should sleep on your right side to improve ____
+Digestion
+10
+
+Medical researchers contend that no disease ever identified has been completely____
+Eradicated
+10
+
+Medical treatment involving needles?
+Acupuncture
+10
+
+Medically, what are lentigenes?
+Freckles
+10
+
+Medicinal root of a plant found in E.Asia and N.America?
+Ginseng
+10
+
+Medieval Jewish mystics practiced rolling in the snow to purge themselves from ____ urges. They were the first snow angels
+Evil
+10
+
+Medieval weapon consisting of an iron or steel spearhead joined to a long pole?
+Pike
+10
+
+Medina is located in what country?
+Saudi arabia
+10
+
+Meeting place for public discussion?
+Forum
+10
+
+Melons are made up of approximately what percentage of water?
+Ninety
+10
+
+Melpomene was the muse of what?
+Tragedy
+10
+
+Melting an ____ in your mouth burns 3 calories
+Ice cube
+10
+
+Member of a fraternity for mutual help with secret rituals?
+Freemason
+10
+
+Member of French Light Infantry corps originally formed of Algerians and retaining their oriental uniform?
+Zouave
+10
+
+Member of male non enclosed religious order?
+Friar
+10
+
+Members of the nazi ss had their blood type tattooed where?
+On their armpits
+10
+
+Members of the phylum rhodophyta, a large group of aquatic plants with approximately 6000 species?
+Red algae
+10
+
+Members of this religion meet in what are called Kingdom Halls?
+Jehovah's Witnesses
+10
+
+Members of which religion might worship in a gurdwara?
+Sikh
+10
+
+Men are 6 times more likely to be struck by ____ than women
+Lighting
+10
+
+Men are ten times more likely to be ____ than women
+Color blind
+10
+
+Men get ____ more often than women
+Hiccups
+10
+
+Men have on average ____% more red blood cells than women
+Ten
+10
+
+Men's Cologne?
+Old Spice
+10
+
+Men's Cologne?
+Stetson
+10
+
+Meniere's disease affects the?
+Hearing
+10
+
+Mentioned in many westerns, which Texan city, situated at the base of the Franklin Mountains, stands on the Rio Grande?
+El paso
+10
+
+Mercury is ____ kilometres in diameter
+4,880
+10
+
+Mercury is ____ miles in diameter
+3,032
+10
+
+Meridians converge at the ____
+Poles
+10
+
+Messina was damaged by an earthquake in what year?
+1908
+10
+
+Metal framework on a vehicle to protect it in the event of a collision with a large animal?
+Bull bar
+10
+
+Meteorologists claim they're right ____ of the time
+85%
+10
+
+Meteorology: If the groundhog sees his shadow on Feb. 2, there will be how many more weeks of bad weather?
+Six
+10
+
+Meteorology: This dry, warm wind flows eastward down the slopes of the Rocky Mountains?
+Chinook
+10
+
+Metonic cycle is a concept in this field?
+Astronomy
+10
+
+Metric crown, metric demy and metric royal are sizes of what?
+Paper
+10
+
+Meursault, the title character in Albert Camus' famous novel The Stranger, had a first name what was mentioned only in Camus' personal journals, what was it?
+Patrice
+10
+
+Mexican (and tex-mex) Dishes ____ yummy!
+Tacos
+10
+
+Mexican (and Tex-Mex) dishes - yummy! - 10?
+Carne asada
+10
+
+Mexican jumping beans jump because of a ____ ____ inside the bean
+Moth larva
+10
+
+Mexican jumping beans jump because of a ____ larva inside the bean
+Moth
+10
+
+Mexico City is sinking at a rate of 6 to 8 inches a year because its built on top of what?
+An underground reservoir
+10
+
+Mexico gave up the state of California with the Treaty of Guadalupe and California became a territory during which war?
+Mexican-American war 
+10
+
+Mexico shares a southern border with Guatamala and which other country?
+Belize
+10
+
+Mexico's equivalant to the dollar is ____
+Peso
+10
+
+Mice, ____ , elephants, giraffes and man all have seven neck vertebra
+Whales
+10
+
+Mice, whales, ____ , giraffes and man all have seven neck vertebra
+Elephants
+10
+
+Mice, whales, elephants, ____ and man all have seven neck vertebra
+Giraffes
+10
+
+Mice, whales, elephants, giraffes and ____ all have seven neck vertebra
+Man
+10
+
+Mice, whales, elephants, giraffes and man all have ____ neck vertebra
+Seven
+10
+
+Mice, whales, elephants, giraffes and man all have seven?
+Neck vertebra
+10
+
+Michael Caine's autobiography is titled?
+What's It All About?
+10
+
+Michael Collins was a famous revolutionary in which country?
+Ireland
+10
+
+Michigan state university is located in what city?
+East lansing
+10
+
+Microsoft CEO Bill Gates, launched his business career in 1969, at age 14 by forming a company named Lakeside Programming Group. Gates and his friend ____ signed an agreement with Computer Center Corporation to report bugs in PDP-10 software, in exchange for computer time
+Paul allen
+10
+
+Military: As a result of their wearing high leather collars to protect their necks from sabres, as what were the first US marines known?
+Leathernecks
+10
+
+Military: Operations above the surface of the earth?
+Air warfare
+10
+
+Military: What do the letters 'SAM' mean in SAM missiles?
+Surface To Air
+10
+
+Military: What is the mascot of the US naval academy?
+Goat
+10
+
+Military: What is the naval equivalent of an army Major?
+Lieutenant Commander
+10
+
+Military: Where is the biggest calibre cannon?
+Kremlin
+10
+
+Military: With which hand do soldiers salute?
+Right
+10
+
+Milk, cheese and meat are good sources of which nutrient needed for a healthy diet?
+Protein
+10
+
+Milo what is the binot-simon scale used to measure?
+Intelligence
+10
+
+Mind your manners: where are wine glasses placed at a table setting?
+To the right
+10
+
+Minerals: a cryptocrystalline variety of quartz of various shades of white, gray, yellow, brown, green, & blue?
+Chalcedony
+10
+
+Minerals: Graphite dust is formed when what is cut with a laser?
+Diamond
+10
+
+Minerals: Minerals that are treasured for their beauty & durability?
+Gemstones
+10
+
+Minerals: the most abundant ore of iron, composed of ferric oxide, fe2o3?
+Hematite
+10
+
+Minerals: What forms when a diamond is cut with a laser?
+Graphite dust
+10
+
+Minerals: What is also known as the 'bishop's stone'?
+Amethyst
+10
+
+Minerals: What is the violet variety of quartz otherwise known as?
+Amethyst
+10
+
+Mining: Approximately how deep are the deepest mines (in km)?
+Four
+10
+
+Mining: In which country is the largest gold refinery?
+South Africa
+10
+
+Mining: What is the deepest mine in the world?
+Western Deep Levels Mine
+10
+
+Mining: What is the name of the largest gold refinery?
+Rand Refinery
+10
+
+Mining: Where are the deepest mines?
+South Africa
+10
+
+Minus ____ degrees Celsius is exactly the same as minus ____ degrees Fahrenheit
+Forty
+10
+
+Mir is the highest point in which mountain range?
+Hindu kush
+10
+
+Miss Scarlet is the only female single character in____
+Clue
+10
+
+Misty for me what statue did dobie gillis mimic while contemplating life and love?
+Rodin's
+10
+
+Mittwoch is what day of the week?
+Wednesday
+10
+
+Mittwoch means Wednesday in what language?
+German
+10
+
+Mixing blue and yellow gives you?
+Green
+10
+
+Mixture, blend alloy of any metal with mercury?
+Amalgam
+10
+
+Mnemosyne, mother of the muses, was the goddess of?
+Memory
+10
+
+Moctuzuma is better known as...?
+Montezuma
+10
+
+Modern ballroom dance, of argentinian origin?
+Tango
+10
+
+Modern Military: Country possessing the Largest armed forces (2,340,000 active troops)?
+China
+10
+
+Modern Military: Country possessing the Smallest armed forces (150 active troops)?
+Antigua and Barbuda
+10
+
+Mogadishu is the capital of ____
+Somalia
+10
+
+Mohican and dreadlocks are both types of what?
+Hairstyle
+10
+
+Moisture, not air causes ____ to dry
+Super glue
+10
+
+Mold is in which now restored Welsh county?
+Flint shire
+10
+
+Moles are able to tunnel through ____ feet of earth in a day
+300
+10
+
+Monaco boasts the highest per capita ownership of ____ in the world. An early 1990s survey put the figure at one for every 65 people
+Rolls royces
+10
+
+Monaco's national ____ is bigger than its army
+Orchestra
+10
+
+Monetary unit of Greece?
+Drachma
+10
+
+Monetary unit of guatemala and bird by the same name?
+Quetzal
+10
+
+Money is made of woven____ , not paper
+Linen
+10
+
+MONEY: What is 2 Grand + A Monkey + A Score ?
+2520
+10
+
+MONEY: What is A Monkey + 2 Ponies ?
+550
+10
+
+MONEY: What is A Ton + A Pony + A Score ?
+145
+10
+
+Mongolia is the largest ____ country
+Landlocked
+10
+
+Mongooses were brought to Hawai'i to kill rats. This plan failed because rats are ____ while the mongoose hunts during the day
+Nocturnal
+10
+
+Monopoly (tm) Properties?
+Baltic
+10
+
+Monopoly (tm) Properties?
+Marvin Gardens
+10
+
+monopoly: cost to buy electric company?
+150
+10
+
+monopoly: cost to buy New York avenue?
+200
+10
+
+monopoly: cost to buy oriental avenue?
+100
+10
+
+monopoly: cost to buy vermont avenue?
+100
+10
+
+monopoly: get out of jail?
+50
+10
+
+Mont dore is the highest point in which french mountain range?
+Massif central
+10
+
+Montana whom did aristotle onasis ditch for jacqueline kennedy?
+Maria callas
+10
+
+Monte corno, at 9554 feet, is the highest point in which Italian mountain range?
+Apennines
+10
+
+Montgomery and rommel directed the forces in which battle?
+Battle of el alamein
+10
+
+Montgomery is the capital of ____
+Alabama
+10
+
+Month named after the Roman god of war?
+March
+10
+
+Months that begin with a Sunday will always have a?
+Friday the 13th
+10
+
+Months?
+January
+10
+
+Montpelier is the capital of ____
+Vermont
+10
+
+Montpelier is the capital of which American state?
+Vermont
+10
+
+MONTPELIER is the capitol of what state?
+Vermont
+10
+
+Montpelier, vermont is the only u.s state capital without a ____
+Mcdonald's
+10
+
+Monty python: the deformed knight had this many heads?
+Three
+10
+
+Monuments: Which man has the most monuments erected in his honour?
+Buddha
+10
+
+Monuments: Which woman has the most monuments erected in her honour?
+Virgin Mary
+10
+
+Moon soo king has represented which country at badminton?
+South korea
+10
+
+Moored in halifax harbour is a replica of this famous schooner?
+Bluenose ii
+10
+
+More ____ money is printed in a year, than real money printed throughout the world
+Monopoly
+10
+
+More bullets were fired in ____ Troopers than in any other movie made
+Starship
+10
+
+More money is spent each year on alcohol and cigarettes than on?
+Life insurance
+10
+
+More money is spent on ____ than on any other hobby
+Gardening
+10
+
+More people are killed by ____ annually than are killed in plane crashes
+Donkeys
+10
+
+More people are killed by ____ than die in a plane crash annually
+Donkeys
+10
+
+More people are killed by donkeys every year than are killed in ____
+Plane crashes
+10
+
+More people are killed each year from ____ than snakes
+Bees
+10
+
+More people speak English in ____ than the United States
+China
+10
+
+More people speak English in ... than in the USA?
+China
+10
+
+More people use ____ toothbrushes than red ones
+Blue
+10
+
+More people use ____ toothbrushes, than red ones
+Blue
+10
+
+More people use blue toothbrushes, than ____ ones
+Red
+10
+
+More redheads are born in ____ than in any other country: 11 percent of its population has red hair
+Scotland
+10
+
+More redheads are born in Scotland than in any other country: what percent of the Scottish population has red hair?
+11%
+10
+
+More than ____ descendants of Johann Sebastian Bach have been cathedral organists
+100
+10
+
+More than ____ of all the countries in the world are north of the equator
+75%
+10
+
+More than 10 percent of all the ____ produced annually in the world is used to de-ice American roads
+Salt
+10
+
+More than 100 descendants of ____ have been cathedral organists
+Johann sebastian bach
+10
+
+More than 100 descendants of Johann Sebastian Bach have been ____ organists
+Cathedral
+10
+
+More than 20 percent of men and 10 percent of women say they've forgotten their ____ at least once
+Wedding anniversary
+10
+
+More than 75% of all the countries in the world are ____ of the equator
+North
+10
+
+More than half the American men surveyed in a recent poll admit to having sex with women they____
+Disliked
+10
+
+More than one half of New Brunswick is surrounded by?
+Water
+10
+
+More then ____ of the world's forest are in Siberia
+25%
+10
+
+More water flows over ____ ____every year than over any other falls on earth
+Niagara falls
+10
+
+Mork and Mindy was a spinoff of what TV show?
+Happy Days
+10
+
+Morphine was given its name in what year?
+1803
+10
+
+Mortuary custom, the art of preserving bodies after death, generally by the use of chemical substances?
+Embalming
+10
+
+Moscow is the capital of ____
+Russia
+10
+
+Most boat owners name their boats. What is the most popular boat name requested?
+Obsession
+10
+
+Most common of all minerals, composed of silicon dioxide, or silica, sio2?
+Quartz
+10
+
+Most digital watches have lcd displays, what does lcd mean?
+Liquid crystal display
+10
+
+Most dust particles in your house are made from?
+Dead skin
+10
+
+most expensive house built hearst castle at san simeon, California, usa was built between 1922-39 for a total cost of more than us$?
+30 million
+10
+
+Most fossils are found in this type of rock?
+Sedimentary
+10
+
+Most gemstones contain several elements. Except the diamond which is all what?
+Carbon
+10
+
+Most humans can guess someone's sex with ____ percent accuracy just by smelling their breath
+95
+10
+
+Most lipstick contains?
+Fish scales
+10
+
+Most men do this each morning, using a razor?
+Shave
+10
+
+Most men have what every hour to hour & a half during sleep?
+Erections
+10
+
+Most of the border between Canada and the USA runs along which line of latitude?
+49th
+10
+
+Most people blink about ____ times a day
+25,000
+10
+
+Most people have lost fifty per cent of their taste buds by the time they reach the age of?
+Sixty
+10
+
+Most people wear a watch on their ____ wrist
+Left
+10
+
+Most powerful chess piece?
+Queen
+10
+
+Most reported cases of poltergeist activity, reveals that one or more ____ is present
+Adolescents
+10
+
+Most salad dressings derive the majority of their calories from____
+Fat
+10
+
+Most successful single of the 90's?
+Everything i do i do it for you/bryan adams
+10
+
+Mother the car what's the name of garfield's teddy bear?
+Pooky
+10
+
+Mother what is the real name of the painting 'whistler's mother'?
+Arrangement in
+10
+
+Motley crue covered 'smokin' in the boys room' on which album released in 1985?
+Theatre of pain
+10
+
+Mount Athos is famous for its many monasteries of which religion?
+Greek orthodox
+10
+
+Mount citlalteptl is the tallest mountain in which latin country?
+Mexico
+10
+
+Mount Dashan is in which African country?
+Ethiopia
+10
+
+Mount Mitchell is the highest peak in which mountain range?
+Appalachians
+10
+
+Mount Rushmore state?
+South dakota
+10
+
+Mount Stuart lies at the centre of which country?
+Australia
+10
+
+Mount usborne, at 2,312 feet, is the highest peak in which British dependency?
+Falkland islands
+10
+
+Mount Vesuvius is near which Italian city?
+Naples
+10
+
+Mount victoria is the highest peak of which island country?
+Fiji
+10
+
+Mountain Climbing - Who conquered the Matterhorn in 1865?
+Edward Whymper
+10
+
+Mountain peak, south central Asia, in the Himalayas, on the frontier of Nepal & Tibet, the highest peak in the world?
+Mount everest
+10
+
+Mountains are formed by a process called?
+Orogeny
+10
+
+Mr Boddy is the murder victim in what board game?
+Clue/cluedo
+10
+
+Mr Wizard debuts, making simple scientific phenomena fascinating for kids of?
+All ages
+10
+
+Mr. Peanut was invented in what year?
+1916
+10
+
+Mrs Tiggie Winkle appears in what series of books?
+The Tales Of Beatrix Potter
+10
+
+Mrs. Nicky Bove ate 125 of these at the Great Escargot Eating Contest?
+Snails
+10
+
+Mt vernon, Washington grows more tulips than the entire country of ____
+Holland
+10
+
+Mucal invader, is there no end to you ____
+Oozing
+10
+
+Much loved by Scrabble players, what kind of creature is a zebu?
+Ox
+10
+
+Much of the current we use today is in ac/dc form, its popularity and practicality was attributed to this person?
+Tesla
+10
+
+Mungo Scott travelled the River Niger in what year?
+1795
+10
+
+Murcia is a region in which european country?
+Spain
+10
+
+Murphy's oil soap is the chemical most commonly used to clean____
+Elephants
+10
+
+Mustard, ketchup and onions on a hotdog are all ____
+Condiments
+10
+
+Mustardseed is a character from which Shakespeare play?
+A midsummer nights dream
+10
+
+my answer is the name of the syndicated daily column of what minister?
+Billy graham
+10
+
+My dad was a big kid,a big RICH KID. What show was I on?
+Silver Spoons
+10
+
+Myositis affects the ____
+Muscles
+10
+
+Mythology, who blinded Polyphemus?
+Ulysses
+10
+
+Mythology: Animals: Animal's body that the griffin has?
+Lion
+10
+
+Mythology: Apollo was the Greek god of ____
+Prophecy and archery
+10
+
+Mythology: Assyrian: The god that created all the other gods?
+Asshur
+10
+
+Mythology: Babylonian: the god of heaven?
+Anu
+10
+
+Mythology: Celtic: The place the heroes went to in death?
+Avalon
+10
+
+Mythology: Celtic: trjstan's lover?
+Isolde
+10
+
+Mythology: Chinese: the monkey god was captured in?
+Buddha's palm
+10
+
+Mythology: Creature with the head and arms of a man, and the body and legs of a horse?
+Centaur
+10
+
+Mythology: Daughter of Agammemnon and Clytemnestra, this mythological character watched the murders of both her father and his lover, the doomed prophet Cassandra?
+Electra
+10
+
+Mythology: Dionysus was the greek god of ____
+Wine
+10
+
+Mythology: Egyptian: He was the sun god?
+Amen Ra
+10
+
+Mythology: Egyptian: The god of the Dead?
+Anubis
+10
+
+Mythology: Ferryman of the styx?
+Charon
+10
+
+Mythology: Greek - what was the name of the place of punishment and perpetual torment in the underworld?
+Tartarus
+10
+
+Mythology: Greek: Aesculapius was the greek god of?
+Medicine
+10
+
+Mythology: Greek: Amphityron was said to be a prince of which city?
+Thebes
+10
+
+Mythology: Greek: Andromache was the wife of which Greek hero?
+Hector
+10
+
+Mythology: Greek: Female warriors who had their own country?
+Amazons
+10
+
+Mythology: Greek: First he was known as a sender of plagues, then as the god of healing?
+Apollo
+10
+
+Mythology: Greek: Giant that supported the universe on his shoulders?
+Atlas
+10
+
+Mythology: Greek: God killed by a boar at the request of Aphrodite?
+Adonis
+10
+
+Mythology: Greek: He led the Greeks to Troy?
+Agamemnon
+10
+
+Mythology: Greek: She showed Theseus how to escape from the labyrinth?
+Ariadne
+10
+
+Mythology: Greek: Son of Zeus and the nymph Aegina?
+Aeacus
+10
+
+Mythology: Greek: The giant Antaeus was killed by strangulation by which Greek hero?
+Heracles
+10
+
+Mythology: Greek: The goddess of love?
+Aphrodite
+10
+
+Mythology: Greek: The goddess of mischief?
+Ate
+10
+
+Mythology: Greek: The goddess of nature?
+Artemis
+10
+
+Mythology: Greek: The men who sailed to Colchis to fetch the golden fleece?
+Argonauts
+10
+
+Mythology: Greek: The river god?
+Alpheus
+10
+
+Mythology: Greek: What was Ulysses' dog called?
+Argus
+10
+
+Mythology: Greek: who was turned into a stag and hunted by his own dogs for watching Artemis bathe?
+Actaeon
+10
+
+Mythology: Hindu: The god of fire?
+Agni
+10
+
+Mythology: In Egyptian mythology, what is the life force called?
+Ka
+10
+
+Mythology: In Egyptian mythology, who is known as the god of the desert?
+Ash
+10
+
+Mythology: In Egyptian mythology, who is the god of the underworld?
+Osiris
+10
+
+Mythology: In Egyptian mythology, who was Horus' mother?
+Isis
+10
+
+Mythology: In Egyptian mythology, who was Isis the wife of?
+Osiris
+10
+
+Mythology: In English mythology, who caused the death of the Lady of Shallot?
+Sir Lancelot
+10
+
+Mythology: In greek and roman mythology, what food of the gods was said to make immortal anyone who ate it?
+Ambrosia
+10
+
+Mythology: In greek mythology what did atlanta want to do until she was defeated in a footrace?
+Remain unmarried
+10
+
+Mythology: In Greek mythology who did Athena turn into a spider?
+Arachne
+10
+
+Mythology: In Greek mythology, how many heads did Hydra have?
+Nine
+10
+
+Mythology: In Greek mythology, into what did Athena turn Arachne?
+Spider
+10
+
+Mythology: In Greek mythology, the riddle of what did Oedipus solve?
+Sphinx
+10
+
+Mythology: In Greek mythology, what animal is associated with Athena?
+Owl
+10
+
+Mythology: In Greek mythology, what did Daedalus construct for Minos?
+Labyrinth
+10
+
+Mythology: In Greek mythology, what was Minos the king of?
+Crete
+10
+
+Mythology: In Greek mythology, where did Perseus kill his grandfather?
+Larrisan games
+10
+
+Mythology: In Greek mythology, who did Jocasta marry?
+Oedipus
+10
+
+Mythology: In Greek mythology, who did Minos hire to construct the labyrinth?
+Daedalus
+10
+
+Mythology: In Greek mythology, who had nine heads?
+Hydra
+10
+
+Mythology: In Greek mythology, who hired Daedalus to construct the labyrinth?
+Minos
+10
+
+Mythology: In Greek mythology, who ruled over the island of Samos?
+Polycrates
+10
+
+Mythology: In Greek mythology, who solved the riddle of the Sphinx?
+Oedipus
+10
+
+Mythology: In Greek mythology, who turned Arachne into a spider?
+Athena
+10
+
+Mythology: In Greek mythology, who was Jason's wife?
+Medea
+10
+
+Mythology: In Greek mythology, who was Medea's husband?
+Jason
+10
+
+Mythology: In Greek mythology, who was the only mortal gorgon?
+Medusa
+10
+
+Mythology: In Greek mythology, who was the son of Peleus and Thetis?
+Achilles
+10
+
+Mythology: In Greek mythology, who were Achilles' parents?
+Peleus and Thetis
+10
+
+Mythology: Ishtar is the babylonian goddesss of ____
+Love and fertility
+10
+
+Mythology: Name Santa Claus' Reindeer?
+Donner
+10
+
+Mythology: Neptune was the Roman god of the ____
+Sea
+10
+
+Mythology: Norse: Collective name for the Gods and Goddesses of Scandinavia?
+Aesir
+10
+
+Mythology: Norse: father of thor?
+Odin
+10
+
+Mythology: Norse: god of mischief and brother of thor?
+Loki
+10
+
+Mythology: Norse: Norse god of thunder?
+Thor
+10
+
+Mythology: Norse: place where norse gods resided?
+Asgard
+10
+
+Mythology: Norse: queen of the norse gods and odin's wife?
+Freya
+10
+
+Mythology: Norse: The giant of the seashore?
+Aegir
+10
+
+Mythology: Norse: The home of the Norse gods?
+Asgard
+10
+
+Mythology: Norse: what killed baldur?
+Mistletoe
+10
+
+Mythology: Norse: winged creatures that carried the dead to valhalla?
+Valkyries
+10
+
+Mythology: Persephone was the Greek goddess of ____
+Spring
+10
+
+Mythology: Poseidon was the Greek god of the ____
+Sea
+10
+
+Mythology: Race of female warriors?
+Amazons
+10
+
+Mythology: Roman - what is the name for the god of fire and metal working?
+Vulcan
+10
+
+Mythology: Roman: The roman god of love?
+Amor
+10
+
+Mythology: the judgement of the dead which Egyptian god weighed the heart?
+Thoth
+10
+
+Mythology: The sea gods had a three-pronged spear called a(n) ____
+Trident
+10
+
+Mythology: This Greek mountain was known as the home of the gods?
+Olympus
+10
+
+Mythology: Venus, Aphrodite and Hathor are all goddesses of what?
+Love
+10
+
+Mythology: What egyptian object is also known as 'the key to the Nile'?
+Ankh
+10
+
+Mythology: What has no reflection, no shadow, and can't stand the smell of garlic?
+Vampire
+10
+
+Mythology: What mythical Scottish town appears for one day every 100 years?
+Brigadoon
+10
+
+Mythology: What was supposed to flow in the veins of the Greek Gods?
+Ichor
+10
+
+Mythology: What's heaven to fallen Norse warriors?
+Valhalla
+10
+
+Mythology: Where did Robin Hood supposedly live?
+Sherwood forest
+10
+
+Mythology: Where does Nessie live?
+Loch Ness
+10
+
+Mythology: Where in the heck is 'nessie' purported to live?
+Loch ness, Scotland
+10
+
+Mythology: Which ancient continent is said to be submerged?
+Atlantis
+10
+
+Mythology: Which Norse god had the Valkyries as handmaidens?
+Odin
+10
+
+Mythology: Which Titan had snakes for hair?
+Medusa
+10
+
+Mythology: Who are santa's reindeer, in alphabetical order?
+Blitzen, comet, dancer, dasher, prancer and vixen
+10
+
+Mythology: Who created the round table?
+Merlin
+10
+
+Mythology: Who did the Norse god Odin have as handmaidens?
+Valkyries
+10
+
+Mythology: Who is the greek equivalent of the roman god Cupid?
+Eros
+10
+
+Mythology: Who is the greek equivalent of the roman god Diana?
+Artemis
+10
+
+Mythology: Who is the greek equivalent of the roman god Discordia?
+Eris
+10
+
+Mythology: Who is the greek equivalent of the roman god Juno?
+Hera
+10
+
+Mythology: Who is the greek equivalent of the roman god Jupiter?
+Zeus
+10
+
+Mythology: Who is the greek equivalent of the roman god Mars?
+Ares
+10
+
+Mythology: Who is the greek equivalent of the roman god Mercury?
+Hermes
+10
+
+Mythology: Who is the greek equivalent of the roman god Minerva?
+Athena
+10
+
+Mythology: Who is the greek equivalent of the roman god Neptune?
+Poseidon
+10
+
+Mythology: Who is the greek equivalent of the roman god Pluto?
+Hades
+10
+
+Mythology: Who is the greek equivalent of the roman god Venus?
+Aphrodite
+10
+
+Mythology: Who is the greek equivalent of the roman god Vesta?
+Hestia
+10
+
+Mythology: Who is the greek equivalent of the roman god Vulcan?
+Hephaistos
+10
+
+Mythology: Who is the Greek messenger god?
+Hermes
+10
+
+Mythology: Who is the mother of Apollo and Artemis?
+Leto
+10
+
+Mythology: Who is the Norse god of justice?
+Forseti
+10
+
+Mythology: Who is the Norse god of lightning?
+Odin
+10
+
+Mythology: Who is the Norse god of mischief?
+Loki
+10
+
+Mythology: Who is the Norse god of poetry?
+Bragi
+10
+
+Mythology: Who is the Norse god of the sky and thunder?
+Thor
+10
+
+Mythology: Who is the Norse god of thunder and war?
+Thor
+10
+
+Mythology: Who is the Norse Watchman of the Gods?
+Heimdall
+10
+
+Mythology: Who ruled the seas in Greek mythology?
+Poseidon
+10
+
+Mythology: Who was Ancient Egyptian goddess of fertility, love and beauty?
+Bastet
+10
+
+Mythology: Who was Ancient Egyptian moon god?
+Khonsu
+10
+
+Mythology: Who was Hercules' father?
+Zeus
+10
+
+Mythology: Who was Hercules' stepmother?
+Hera
+10
+
+Mythology: who was telemachus' father?
+Odysseus
+10
+
+Mythology: Who was the ancient Egyptian goddess of the sky and queen of heaven?
+Hathor
+10
+
+Mythology: Who was the Greek god of fire?
+Hephaestus
+10
+
+Mythology: Who was the Greek god of prophecy and archery?
+Apollo
+10
+
+Mythology: Who was the Greek god of wine?
+Dionysus
+10
+
+Mythology: Who was the Greek goddess of spring?
+Persephone
+10
+
+Mythology: Who was the roman goddess of love, beauty and fertility?
+Venus
+10
+
+Mythology: Who was the son of saturn and ops, and the husband of juno?
+Jupiter
+10
+
+Mythology: Who was the Sun god of ancient Egypt?
+Ra
+10
+
+Mythology: Who was the Swedish god of skiing, bowshooting & hunting?
+Ull
+10
+
+Mythology: Who was the third king of israel?
+Solomon
+10
+
+Mythology: Who was the three-headed, dog-like monster of Greek Mythology, guarding the underworld?
+Cerberus
+10
+
+Mythology: Who, in Egyptian mythology, is the god of the dead?
+Anubis
+10
+
+Mythology: Winged horse in Greek mythology?
+Pegasus
+10
+
+Mythology: Youth who fell in love with his own reflection?
+Narcissus
+10
+
+Mythology: Zeus is to Jupiter as Mercury is to ____
+Hermes
+10
+
+Mythology: Zeus' father, Cronus, was also known to the Romans as ____
+Saturn
+10
+
+N'Djamena is the capital of which African country?
+Chad
+10
+
+Na is the chemical symbol for which element?
+Sodium
+10
+
+Nadine Gordimer was awarded the Nobel Prize for literature in which year?
+1991
+10
+
+Nairobi is the capital of what country?
+Kenya
+10
+
+Naked means to be unprotected-nude means____
+Unclothed
+10
+
+Name 1 of the 3 well-known female sex symbols in myra breckinridge?
+Farrah fawcett
+10
+
+Name 10 CC's first UK No 1?
+Rubber bullets
+10
+
+Name a Canadian university offering forestry studies?
+Laval
+10
+
+Name a flattened, wingless insect that lives on warm-blooded animals?
+Louse
+10
+
+Name a mainland South American country where cars are normally driven on the left hand side of the road?
+Guyana
+10
+
+Name all five New Kids On The Block?
+Danny Donny Jordan Joe Jon
+10
+
+Name an Egyptian queen who was the lover of Mark Antony?
+Cleopatra
+10
+
+Name angelica huston's father?
+John
+10
+
+Name applied originally to naturally occurring esters of fatty acids & monohydric alcohols, but now applied to both natural & manufactured products resembling these esters?
+Wax
+10
+
+Name applied to a ship to indicate that it is a very fast sailer?
+Clipper
+10
+
+Name applied to any craft having twin hulls?
+Catamaran
+10
+
+Name applied to any plant that retains its foliage through two or more consecutive seasons?
+Evergreen
+10
+
+Name applied to several types of skin eruptions characterized by formation of blisters?
+Herpes
+10
+
+Name beaver cleaver's brother?
+Wally
+10
+
+Name both of the cities to represent a letter in the phonetic alphabet?
+Lima & quebec
+10
+
+Name Buck Rodgers' pal?
+TWIKI
+10
+
+Name captain smollett's ship in treasure island?
+Hispaniola
+10
+
+Name Changes: Her real name is Sheila Escovedo?
+Sheila e
+10
+
+Name cheech's cousin in the movie 'cheech & chong's up in smoke'. (hint- portrayed by tom skerritt)?
+Strawberry
+10
+
+Name Dolly Parton's Smokey Mountain theme park?
+Dollywood
+10
+
+Name either of the churches that merged in 1972 to form the United Reformed Church?
+Presbyterian
+10
+
+Name for a large seawater aquarium for keeping sea animals?
+Oceanarium
+10
+
+Name for an idler in fashionable society?
+Lounge lizard
+10
+
+Name Fruit?
+Apple
+10
+
+Name given to a fine woollen cloth?
+Barethea
+10
+
+Name given to a person who will eat no food of animal origin?
+Vegan
+10
+
+Name given to large merchant sailing ship?
+Wind jammer
+10
+
+Name given to that part of north America first seen in or about 986 by bjarni herjlfsson, who was driven there by a storm during a voyage from Iceland to greenland?
+Vinland
+10
+
+Name given to the religious of Iran?
+Ayatollah
+10
+
+Name Jacues Cousteau's research ship?
+Calypso
+10
+
+Name of a mechanical model that reproduces the movements of the planets?
+An orrery
+10
+
+Name of a perfume made of orris,spices,civet and musk and named after the Italian family that created it?
+Frangipani
+10
+
+Name of cosette's mother in les miserables?
+Fantine
+10
+
+Name of monaco's ruling house?
+Grimaldi
+10
+
+Name of one of the early supermodels, nicknamed The Shrimp?
+Jean Shrimpton
+10
+
+Name of scale used to judge the brightness of stars?
+Hertzprung-russel diagram
+10
+
+Name of the 2 athletes celebrated in Chariots of Fire?
+Harold abrahams and Eric liddell
+10
+
+Name of the band of Vince de la Cruz,Kimberley Rew,Alex Cooper and Katrina Leskaniel?
+Katrina and the waves
+10
+
+Name of the brewery which supplies the rovers return?
+Newton and ridley
+10
+
+Name of the capital of the Newfoundland province (Canada)?
+St john's
+10
+
+Name of the capital of the Nova Scotia province (Canada)?
+Halifax
+10
+
+Name of the character who sings 'castle on a cloud' in les miserables?
+Cosette
+10
+
+Name of the city Japanese immigrants settled in California's rural areas in the early 1900s?
+Little Tokyo 
+10
+
+Name of the decorative style of the 1920 and 30s?
+Art deco
+10
+
+Name of the dinosaur with jagged plates on its back?
+Stegosaurus
+10
+
+Name of the educationalist who rewrote the rules of educating young children?
+Maria montessori
+10
+
+Name of the far right Dutch politician shot dead in the Netherlands in May 2002?
+Pim Fortuyn
+10
+
+Name of the first cloned sheep?
+Dolly
+10
+
+Name of the form of dance which originated in the US- disjointed robotic movements and spinning on your head?
+Break dancing
+10
+
+Name of the four Inns of Court of London?
+Grays inn
+10
+
+Name of the Gallic tribe inhabiting the Ile de la cite in Paris at the end of the 3rd century?
+Parisii
+10
+
+Name of the German ww2 military code?
+Enigma
+10
+
+Name of the German wwii military code?
+Enigma
+10
+
+Name of the glass that is poured onto molten tin to achieve a perfect finish and avoid grinding, invented by Pilkington?
+Float glass
+10
+
+Name of the greek goddess of retribution?
+Nemesis
+10
+
+Name of the highest volcano in the world?
+Cerro aconcagua
+10
+
+name of the holes in a ships sides at deck level to let the water out?
+Scuppers
+10
+
+Name of the indigenous people of Jamaica?
+Arawaks
+10
+
+Name of the largest city in new Mexico?
+Albuquerque
+10
+
+Name of the machine that selects the Premium Bonds?
+Ernie
+10
+
+Name of the river over which the romans believed they had to travel to get to the afterlife?
+River styxx
+10
+
+Name of the saturn probe launched in 1998, amid controversy over its nuclear fuel?
+Cassini-huygens
+10
+
+Name of the space program designed to place a man on the moon & return him safely to earth?
+Apollo
+10
+
+Name of the violin soloist who travel's with yanni's orchestra?
+Karen briggs
+10
+
+Name one Federalist US President?
+John adams Washington
+10
+
+Name one of the 3 movies that ingrid bergman won an oscar for?
+Gaslight
+10
+
+Name one of the 3 movies that ingrid bergman won an oscar for?
+Murder on the orient express
+10
+
+Name one of the bilboard ads Homer stops to read on the first of the month. (Homie the Clown)?
+This year give her English Muffins, Best in the West BBQ sauce, Clown school 
+10
+
+Name one of the birds which Noah released from the Ark?
+Raven or dove
+10
+
+Name one of the countries to join the Commonwealth in 1995.cameroon?
+Mozambique
+10
+
+Name one of the three Bronte sisters?
+Anne
+10
+
+Name one of the three most common names in china?
+Chang
+10
+
+Name one of the two capitals of the republic of South Africa?
+Cape town
+10
+
+Name one of the two types of techniques used in the high jump?
+Fosbury flop
+10
+
+Name people to be awarded the Victoria Cross twice?
+Noel chev asse
+10
+
+Name the 2 democratic republics which existed in 1800?
+France and the usa
+10
+
+Name the 3-headed dog that guards Hades?
+Cerberus
+10
+
+Name the airline which was the first to provide air sickness bags?
+Pitcairn Airlines
+10
+
+Name the American president assassinated in 1901 in buffalo, New York state?
+William mckinley
+10
+
+Name the American space shuttle, its crew including a teacher, which exploded killing all on board after lift-off?
+Challenger
+10
+
+Name the ancient region that corresponds roughly to modern day tuscany?
+Etruria
+10
+
+Name the apostle who replaced judas iscariot?
+Matthias
+10
+
+Name the Austrian physicist who gave his name to a unit of relative velocity?
+ERNST MACH
+10
+
+Name the author of 'the pumphouse gang'?
+Tom wolfe
+10
+
+Name the author of gone with the wind?
+Margaret mitchell
+10
+
+Name the author of the book this movie was based on: 'the silence of the lambs'?
+Thomas harris
+10
+
+Name the best medical school in the world?
+Johns hopkins
+10
+
+Name the biggest hit for the animals in 1964?
+House of the rising sun
+10
+
+Name the bird in prokofiev's, 'peter and the wolf'?
+Sasha
+10
+
+Name the black agricultural chemist (b.1864-d.1943) known for agronomical innovations in the southern US?
+George Washington carver
+10
+
+Name the British King who supposedly lost his jewels in The Wash?
+King john
+10
+
+Name the British nuclear submarine that sank the General Belgrano?
+Hms conqueror
+10
+
+Name the British painter who is the grandson of sigmund freud?
+Lucian freud
+10
+
+Name the British winner of the second Nobel Prize for Medicine in 1902?
+Sir ronald ross
+10
+
+Name the chauffeur of the car in which the princess of wales died?
+Henri Paul
+10
+
+Name the chess playing computer designed by Ken Thompson?
+Belle
+10
+
+Name the chief port of Iraq?
+Basra
+10
+
+Name the church, believed to be the site of Christ's crucifixion?
+The church of the holy sepulchre
+10
+
+Name the city where 'romeo and juliet' takes place?
+Verona
+10
+
+Name the classic dish of mussels cooked in white wine with garlic and onion?
+Moules mariniere
+10
+
+Name the clothing wrinkle remover that sounds like a kind of metal?
+Iron
+10
+
+Name the clown from Stephen King's 'It'?
+Pennywise the clown
+10
+
+Name the cocktail which consists of scotch and drambuie?
+Rusty nail
+10
+
+Name the cold south-west wind which blows from the Andes across the South American pampas to the Atlantic Ocean?
+Pampero
+10
+
+Name the company which manufactured the first electric toothbrush?
+Squibb
+10
+
+Name the computer developed fromTuring's bombes at Bletchley Park to decode the German Enigma codes during World War 2?
+Colossus
+10
+
+Name the computer which beat World Chess Champion Garry Kasparov in 1997?
+Deep blue
+10
+
+Name the condiment which is excellent for cleaning brass?
+Ketchup
+10
+
+Name the condition of the mind that leads to a need to steal things?
+Kleptomania
+10
+
+Name the control centre beneath Derby House in Liverpool where the Battle of the Atlantic was plotted during World War 2?
+Western approaches
+10
+
+Name the delivery service operated between Missouri and California starting in 1860?
+Pony express
+10
+
+Name the desert located in south-east California?
+Mojave
+10
+
+Name the director of the film 'American beauty'?
+Sam mendes
+10
+
+Name the Disney cartoon in which the character 'Belle' appears?
+Beauty and the Beast
+10
+
+Name the distinctive crumbly white low fat Greek cheese?
+Feta
+10
+
+Name the duo who had a hit with everybody wants to rule the world?
+Tears for fears
+10
+
+Name the eating disorder that suppresses the urge to eat causing the sufferer to lose huge ammounts of weight?
+Anorexia
+10
+
+Name the Egyptian god with the head of a jackal, or dog?
+Anubis
+10
+
+Name the eighties sitcom in which Bob Ueker was upstaged by an obese butler regularly?
+Mr. Belvedere
+10
+
+Name the English king who met King Francis 1st of France on the Field of the Cloth of Gold?
+Henry vii
+10
+
+Name the English PM?
+Tony Blair
+10
+
+Name the English ship on which Benedict Arnold fled to England in 1870?
+Vulture 
+10
+
+Name the European hit, now an animated series about underwater people?
+The snorks
+10
+
+Name the famous London department store that began as a small grocery store?
+Harrod's
+10
+
+Name the famous millionaire who went down with the titanic?
+Astor
+10
+
+Name the famous musketeers?
+Athos
+10
+
+Name the fat, rich detective with a passion for beer, food and orchids?
+Nero wolfe
+10
+
+Name the female British climber while killed trying to climb K2 in 1995?
+Alison hargreaves
+10
+
+Name the female Broadway columnist who was a regular panelist on the T.V. show, What's My Line?
+Dorothy Kilgallen
+10
+
+Name the female comedy star who once had a show on Fox, that had a pop hit in the early eighties?
+Tracy Ullman
+10
+
+Name the female version of the jewish bar mitzvah, celebrating a girl reaching the age of thirteen?
+Bat mitzvah
+10
+
+Name the fifth largest of the Channel Islands?
+Herm
+10
+
+Name the film: 1939 Family/Fantasy/Adventure/Musical, Judy Garland, Frank Morgan, Ray Bolger, Jack Haley, Bert Lahr, Billie Burke, Margaret Hamilton?
+The Wizard of Oz
+10
+
+Name the film: 1946 Drama/Fantasy, James Stewart, Donna Reed, Lionel Barrymore, Thomas Mitchell?
+It's A Wonderful Life
+10
+
+Name the film: 1958 Comedy/Romance, Clark Gable, Doris Day, Gig Young, Mamie Van Doren, Marion Ross?
+Teacher's Pet
+10
+
+Name the film: 1960 Crime/Adventure, Frank Sinatra, Dean Martin, Sammy Davis Jr. Peter Lawford, Angie Dickinson, Joey Bishop?
+Ocean's Eleven
+10
+
+Name the film: 1965 Music/Family, Julie Andrews, Christopher Plummer, Eleanor Parker, Heather Menzies, Angela Cartwright?
+The Sound of Music
+10
+
+Name the film: 1967 Comedy/Romance, Anne Bancroft, Dustin Hoffman, Katharine Ross, William Daniels?
+The Graduate
+10
+
+Name the film: 1968 Action/Sci-fi, Charlton Heston, Roddy McDowall, Kim Hunter, Maurice Evans?
+Planet of the Apes
+10
+
+Name the film: 1968 Comedy, Lucille Ball, Henry Fonda, Van Johnson, Tim Matheson, Tom Bosley?
+Yours, Mine and Ours
+10
+
+Name the film: 1969 Western, Paul Newman, Robert Redford, Katharine Ross, Strother Martin?
+Butch Cassidy and the Sundance Kid
+10
+
+Name the film: 1971 Action/Thriller, Clint Eastwood, Harry Guardino, Reni Santoni, John Vernon?
+Dirty Harry
+10
+
+Name the film: 1972 Crime/Drama, Marlon Brando, Al Pacino, Diane Keaton, Robert Duvall?
+The Godfather
+10
+
+Name the film: 1973 Crime/Comedy, Paul Newman, Robert Redford, Robert Shaw, Charles Durning, Ray Walston?
+The Sting
+10
+
+Name the film: 1973 Drama/Horror, Ellyn Burstyn, Max von Sydow, Lee J. Cobb, Linda Blair, Jason Miller?
+The Exorcist
+10
+
+Name the film: 1974 Action/Thriller/Drama, Steve McQueen, Paul Newman, William Holden, Faye Dunaway, O.J. Simpson, Robert Wagner?
+The Towering Inferno
+10
+
+Name the film: 1974 Comedy/Horror, Gene Wilder, Peter Boyle, Marty Feldman, Madeline Kahn, Cloris Leachman, Teri Garr?
+Young Frankenstein
+10
+
+Name the film: 1974 Comedy/Western, Cleavon Little, Gene Wilder, Slim Pickens, Alex Karras, Mel Brooks, Harvey Korman, Madeline Kahn?
+Blazing Saddles
+10
+
+Name the film: 1975 Comedy/Horror/Musical/Sci-Fi, Tim Curry, Susan Sarandon, Barry Bostwick, Richard O'Brien, Meat Loaf?
+The Rocky Horror Picture Show
+10
+
+Name the film: 1975 Thriller, Roy Scheider, Robert Shaw, Richard Dreyfuss, Lorraine Gary?
+Jaws
+10
+
+Name the film: 1976 Action/Drama, Sylvester Stallone, Talia Shire, Burt Young, Carl Weathers, Burgess Meredith?
+Rocky
+10
+
+Name the film: 1977 Action, Robert Shaw, Bruce Dern, Marthe Keller?
+Black Sunday
+10
+
+Name the film: 1977 Comedy/Action, Burt Reynolds, Sally Field, Jerry Reed, Mike Henry, Paul Williams, Pat McCormick?
+Smokey and the Bandit
+10
+
+Name the film: 1977 Comedy/Romance, Woody Allen, Diane Keaton, Tony Roberts, Carol Kane, Paul Simon, Shelley Duvall?
+Annie Hall
+10
+
+Name the film: 1977 Drama/Musical/Comedy/Romance, John Travolta, Karen Lynn Gorney, Barry Miller, Joseph Cali, Paul Pape, Donna Pescow?
+Saturday Night Fever
+10
+
+Name the film: 1977 Sci-fi, Mark Hamill, Harrison Ford, Carrie Fisher, Peter Cushing, Alec Guinness?
+Star Wars
+10
+
+Name the film: 1977 Sci-fi, Richard Dreyfuss, Melinda Dillon, Francois Truffaut, Teri Garr?
+Close Encounters of the Third Kind
+10
+
+Name the film: 1978 Action/Fantasy/Family/Adventure/Sci-Fi, Marlon Brando, Gene Hackman, Christopher Reeve, Ned Beatty , Jackie Cooper, Margot Kidder?
+Superman
+10
+
+Name the film: 1978 Comedy, John Belushi, Tim Matheson, John Vernon, Verna Bloom, Tom Hulce, Mary Louise Weller?
+Animal House
+10
+
+Name the film: 1978 Comedy/Musical/Romance, John Travolta, Olivia Newton-John, Stockard Channing, Jeff Conaway, Didi Conn?
+Grease
+10
+
+Name the film: 1979 Action/War, Marlon Brando, Robert Duvall, Martin Sheen, Frederic Forrest?
+Apocalypse Now
+10
+
+Name the film: 1979 Sci-fi/Horror, Tom Skerritt, Sigourney Weaver, Veronica Cartwright, Harry Dean Stanton, Yaphet Kotto?
+Alien
+10
+
+Name the film: 1980 Action/Comedy/Musical, John Belushi, Dan Aykroyd, James Brown, Cab Calloway, Ray Charles, Aretha Franklin?
+The Blues Brothers
+10
+
+Name the film: 1980 Comedy, Chevy Chase, Rodney Dangerfield, Ted Knight, Michael O'Keefe, Bill Murray, Sarah Holcombe?
+Caddyshack
+10
+
+Name the film: 1980 Comedy, Jane Fonda, Lily Tomlin, Dolly Parton, Dabney Coleman, Elizabeth Wilson?
+Nine to Five
+10
+
+Name the film: 1980 Comedy, Robery Hays, Julie Hagerty, Lloyd Bridges, Leslie Nielsen, Robert Stack, Peter Graves, Kareem Abdul-Jabbar?
+Airplane
+10
+
+Name the film: 1980 Drama, Donald Sutherland, Mary Tyler Moore, Judd Hirsch, Timothy Hutton, M. Emmett Walsh?
+Ordinary People
+10
+
+Name the film: 1981 Comedy, Bill Murray, Harold Ramis, Warren Oates, Sean Young, John Candy, John Laroquette?
+Stripes
+10
+
+Name the film: 1981 Comedy/Romance, Dudley Moore, Liza Minnelli, John Gielgud, Geraldine Fitzgerald, Jill Eikenberry?
+Arthur
+10
+
+Name the film: 1981 Drama, George C Scott, Timothy Hutton, Ronny Cox, Sean Penn, Tom Cruise?
+Taps
+10
+
+Name the film: 1982 Action/Adventure, Harrison Ford, Karen Allen, Paul Freeman, John Rhys-Davies, Denholm Elliott?
+Raiders of the Lost Ark
+10
+
+Name the film: 1982 Action/Sci-fi, William Shatner, Leonard Nimoy, DeForest Kelley, James Doohan, Walter Koenig, George Takei, Paul Winfield, Ricardo Montalban?
+Star Trek: The Wrath of Khan
+10
+
+Name the film: 1982 Comedy/Drama/Romance, Richard Gere, Debra Winger, David Keith, Robert Loggia, Lisa Blount, Lisa Eilbacher, Lou Gossett Jr?
+An Officer and a Gentleman
+10
+
+Name the film: 1982 Drama, Henry Fonda, Katharine Hepburn, Jane Fonda, Doug McKeon, Dabney Coleman?
+On Golden Pond
+10
+
+Name the film: 1982 Family/Sci-Fi/Adventure/Fantasy, Henry Thomas, Drew Barrymore, Robert MacNaughton, Dee Wallace-Stone?
+E.T. the Extra-Terrestrial
+10
+
+Name the film: 1982 Horror/Thriller, JoBeth Williams, Craig T. Nelson, Beatrice Straight, Dominique Dunne, Heather O'Rourke?
+Poltergeist
+10
+
+Name the film: 1983 Comedy, Tom Cruise, Rebecca De Mornay, Joe Pantoliano, Richard Masur, Bronson Pinchot?
+Risky Business
+10
+
+Name the film: 1983 Comedy/Drama, Shirley Maclaine, Jack Nicholson, Debra Winger, Danny DeVito, Jeff Daniels, John Lithgow?
+Terms of Endearment
+10
+
+Name the film: 1983 Drama/Comedy, Tom Berenger, Glenn Close, Jeff Goldblum, Kevin Kline, Meg Tilly, Mary Kay Place?
+The Big Chill
+10
+
+Name the film: 1983 Drama/Romance/Musical, Jennifer Beals, Michael Nouri, Lilia Skala, Sunny Johnson, Kyle T. Heffner?
+Flashdance
+10
+
+Name the film: 1984 Action/Adventure/Romance, Michael Douglas, Kathleen Turner, Danny DeVito, Zack Norman?
+Romancing the Stone
+10
+
+Name the film: 1984 Adventure/Sci-fi, Arnold Schwarzenegger, Linda Hamilton, Michael Biehn, Paul Winfield?
+The Terminator
+10
+
+Name the film: 1984 Comedy/Sci-fi/Fantasy, Bill Murray, Dan Aykroyd, Sigourney Weaver, Harold Ramis, Rick Moranis, Annie Potts?
+Ghostbusters
+10
+
+Name the film: 1984 Drama, Kevin Bacon, Lori Singer, John Lithgow, Dianne Wiest, Chris Penn, Sarah Jessica Parker?
+Footloose
+10
+
+Name the film: 1985 Adventure/Family, Sean Astin, Josh Brolin, Jeff Cohen, Corey Feldman, Kerri Green, Martha Plimpton, Jonathan Ke Quan?
+The Goonies
+10
+
+Name the film: 1985 Comedy/Sci-Fi/Drama/Fantasy, Don Ameche, Wilford Brimley, Hume Cronyn, Brian Dennehy, Tahnee Welch, Steve Guttenberg?
+Cocoon
+10
+
+Name the film: 1985 Drama, Danny Glover, Whoopi Goldberg, Margaret Avery, Oprah Winfrey, Rae Dawn Chong?
+The Color Purple
+10
+
+Name the film: 1985 Family/Adventure/Comedy/Sci-Fi, Michael J. Fox, Christopher Lloyd, Lea Thompson, Crispin Glover, Thomas F. Wilson?
+Back to the Future
+10
+
+Name the film: 1986 Action/Drama/Romance, Tom Cruise, Kelly McGillis, Val Kilmer, Anthony Edwards, Tom Skerritt?
+Top Gun
+10
+
+Name the film: 1986 Action/Drama/War, Tom Berenger, Willem Dafoe, Charlie Sheen, Forest Whitaker, Francesco Quinn?
+Platoon
+10
+
+Name the film: 1986 Adventure/Comedy/Romance, Paul Hogan, Linda Kozlowski, John Mellon, David Gulpilil?
+Crocodile Dundee
+10
+
+Name the film: 1986 Adventure/Drama, Wil Wheaton, River Phoenix, Corey Feldman, Jerry O'Connell?
+Stand by Me
+10
+
+Name the film: 1986 Comedy, Danny DeVito, Bette Midler, Judge Reinhold, Helen Slater, Bill Pullman?
+Ruthless People
+10
+
+Name the film: 1987 Action/Crime/Drama, Kevin Costner, Sean Connery, Charles Martin Smith, Andy Garcia, Robert De Niro?
+The Untouchables
+10
+
+Name the film: 1987 Comedy/Family, Tom Selleck, Steve Guttenberg, Ted Danson, Nancy Travis, Margaret Colin?
+Three Men and a Baby
+10
+
+Name the film: 1987 Comedy/Horror, Jack Nicholson, Cher, Susan Sarandon, Michelle Pfeiffer, Veronica Cartwright?
+The Witches of Eastwick
+10
+
+Name the film: 1987 Comedy/Romance, Cher, Nicolas Cage, Vincent Gardenia, Olympia Dukakis, Danny Aiello?
+Moonstruck
+10
+
+Name the film: 1987 Crime/Comedy, Mel Gibson, Danny Glover, Gary Busey, Mitch Ryan?
+Lethal Weapon
+10
+
+Name the film: 1987 Drama/Horror/Thriller, Michael Douglas, Glenn Close, Anne Archer, Ellen Hamilton Latzen, Fred Gwynne?
+Fatal Attraction
+10
+
+Name the film: 1987 Fantasy / Family / Adventure / Comedy / Romance, Cary Elwes, Mandy Patinkin, Chris Sarandon, Christopher Guest, Andre the Giant, Robin Wright?
+The Princess Bride
+10
+
+Name the film: 1988 Action/Thriller, Bruce Willis, Bonnie Bedelia, Reginald VelJohnson, Alan Rickman, James Shigeta?
+Die Hard
+10
+
+Name the film: 1988 Comedy, Eddie Murphy, Arsenio Hall, James Earl Jones, John Amos, Madge Sinclair?
+Coming to America
+10
+
+Name the film: 1988 Comedy/Drama, Dustin Hoffman, Tom Cruise, Valeria Golino, Bonnie Hunt?
+Rain Man
+10
+
+Name the film: 1988 Comedy/Romance, Harrison Ford, Melanie Griffith, Sigourney Weaver, Alec Baldwin, Joan Cusack?
+Working Girl
+10
+
+Name the film: 1989 Action/Thriller/Crime/Fantasy, Michael Keaton, Jack Nicholson, Kim Basinger, Robert Wuhl, Pat Hingle?
+Batman
+10
+
+Name the film: 1989 Comedy/Drama, Dianne Wiest, Steve Martin, Mary Steenburgen, Jason Robards, Rick Moranis, Tom Hulce?
+Parenthood
+10
+
+Name the film: 1989 Comedy/Romance, Billy Crystal, Meg Ryan, Carrie Fisher, Bruno Kirby?
+When Harry Met Sally
+10
+
+Name the film: 1989 Drama, Morgan Freeman, Jessica Tandy, Dan Aykroyd, Patti LuPone, Esther Rolle?
+Driving Miss Daisy
+10
+
+Name the film: 1989 Drama, Sally Field, Dolly Parton, Shirley Maclaine, Daryl Hannah, Olympia Dukakis, Julia Roberts, Tom Skerritt?
+Steel Magnolias
+10
+
+Name the film: 1989 Horror/Thriller, Nicole Kidman, Billy Zane, Sam Neill, Rod Mullinar?
+Dead Calm
+10
+
+Name the film: 1990 Action/Adventure/Sci-Fi/Thriller, Arnold Schwarzenegger, Rachel Ticotin, Sharon Stone, Ronny Cox, Michael Ironside?
+Total Recall
+10
+
+Name the film: 1990 Action/Crime, Warren Beatty, Glenne Headly, Al Pacino, Madonna, Dustin Hoffman?
+Dick Tracy
+10
+
+Name the film: 1990 Action/Thriller, Sean Connery, Alec Baldwin, Scott Glenn, Sam Neill, James Earl Jones?
+The Hunt for Red October
+10
+
+Name the film: 1990 Comedy/Romance, Julia Roberts, Richard Gere, Ralph Bellamy, Jason Alexander, Laura San Giacomo?
+Pretty Woman
+10
+
+Name the film: 1990 Comedy/Romance/Thriller, Patrick Swayze, Demi Moore, Whoopi Goldberg, Tony Goldwyn?
+Ghost
+10
+
+Name the film: 1990 Crime/Drama, Robert De Niro, Ray Liotta, Joe Pesci, Lorraine Bracco, Paul Sorvino?
+Goodfellas
+10
+
+Name the film: 1990 Crime/Thriller, Harrison Ford, Brian Dennehy, Raul Julia, Bonnie Bedelia, Greta Sccchi?
+Presumed Innocent
+10
+
+Name the film: 1991 Action/Drama, Susan Sarandon, Geena Davis, Harvey Keitel, Michael Madsen, Brad Pitt?
+Thelma and Louise 
+10
+
+Name the film: 1991 Adventure/Comedy, Billy Crystal, Daniel Stern, Bruno Kirby, Helen Slater, Jack Palance?
+City Slickers
+10
+
+Name the film: 1991 Comedy/Sports, Russell Crowe, Hank Azaria, Mary McCormack, Burt Reynolds, Colm Meaney?
+Mystery, Alaska
+10
+
+Name the film: 1991 Drama, Kathy Bates, Mary Stuart Masterson, Mary-Louise Parker, Jessica Tandy, Cicely Tyson?
+Fried Green Tomatoes
+10
+
+Name the film: 1991 Drama/Romance, Nick Nolte, Barbra Streisand, Blythe Danner, Kate Nelligan, Melinda Dillon?
+The Prince of Tides
+10
+
+Name the film: 1991 Family/Comedy, Steve Martin, Diane Keaton, Kimberly Williams, Kieran Culkin, Martin Short?
+Father of the Bride
+10
+
+Name the film: 1991 Thriller/Crime/Horror, Jodie Foster, Anthony Hopkins, Scott Glenn, Anthony Heald, Don Brockett?
+The Silence of the Lambs
+10
+
+Name the film: 1992 Comedy, Joe Pesci, Ralph Macchio, Marisa Tomei, Mitchell Whitfield?
+My Cousin Vinny
+10
+
+Name the film: 1992 Comedy, Mike Myers, Dana Carvey, Rob Lowe, Tia Carrere, Brian Doyle-Murray, Lara Flynn Boyle?
+Wayne's World
+10
+
+Name the film: 1992 Comedy/Crime, Whoopi Goldberg, Maggie Smith, Kathy Najimy, Harvey Keitel, Wendy Makkena?
+Sister Act
+10
+
+Name the film: 1992 Comedy/Drama, Tom Hanks, Geena Davis, Madonna, Lori Petty, Rosie O'Donnell?
+A League of Their Own
+10
+
+Name the film: 1992 Drama, Craig Sheffer, Brad Pitt, Tom Skerritt, Brenda Blethyn?
+A River Runs Through It
+10
+
+Name the film: 1992 Drama, Tom Cruise, Jack Nicholson, Demi Moore, Kevin Bacon, Kiefer Sutherland?
+A Few Good Men
+10
+
+Name the film: 1992 Mystery/Crime/Thriller, Michael Douglas, Sharon Stone, George Dzundza, Jeanne Tripplehorn, Wayne Knight?
+Basic Instinct
+10
+
+Name the film: 1992 Sci-fi, Harrison Ford, Rutger Hauer, Sean Young, Edward James Olmos, M. Emmet Walsh?
+Blade Runner
+10
+
+Name the film: 1993 Action/War, Liam Neeson, Ben Kingsley, Ralph Fiennes, Caroline Goodall, Jonathan Sagall?
+Schindler's List
+10
+
+Name the film: 1993 Action/Western, Kurt Russell, Val Kilmer, Sam Elliott, Bill Paxton, Powers Boothe?
+Tombstone
+10
+
+Name the film: 1993 Adventure/Action/Thriller, Sylvester Stallone, John Lithgow, Janine Turner, Michael Rooker?
+Cliffhanger
+10
+
+Name the film: 1993 Comedy, Jack Lemmon, Walter Matthau, Ann-Margret, Burgess Meredith, Kevin Pollak?
+Grumpy Old Men
+10
+
+Name the film: 1993 Comedy/Drama, Johnny Depp, Leonardo DiCaprio, Juliette Lewis, Mary Steenburgen?
+What's Eating Gilbert Grape
+10
+
+Name the film: 1993 Comedy/Family/Drama, Robin Williams, Sally Field, Pierce Brosnan, Harvey Fierstein, Polly Holliday?
+Mrs. Doubtfire
+10
+
+Name the film: 1993 Comedy/Romance, Tom Hanks, Meg Ryan, Bill Pullman, Ross Malinger, Rosie O'Donnell, Rita Wilson?
+Sleepless in Seattle
+10
+
+Name the film: 1993 Drama/Mystery, Julia Roberts, Denzel Washington, Sam Shepard, John Heard, John Lithgow?
+The Pelican Brief
+10
+
+Name the film: 1993 Drama/Romance, Robert Redford, Demi Moore, Woody Harrelson, Oliver Platt, Billy Bob Thornton?
+Indecent Proposal
+10
+
+Name the film: 1993 Fantasy/Comedy/Romance, Bill Murray, Andie MacDowell, Chris Elliott, Brian Doyle Murray?
+Groundhog Day
+10
+
+Name the film: 1993 Horror/Sci-Fi/Adventure/Thriller/Action, Sam Neill, Laura Dern, Jeff Goldblum, Richard Attenborough, Wayne Knight?
+Jurassic Park
+10
+
+Name the film: 1993 Thriller/Drama, Tom Cruise, Jeanne Tripplehorn, Gene Hackman, Hal Holbrook, Wilford Brimley, Ed Harris?
+The Firm
+10
+
+Name the film: 1994 Action/Adventure/Comedy, Arnold Schwarzenegger, Jamie Lee Curtis, Tom Arnold, Bill Paxton, Tia Carrere?
+True Lies
+10
+
+Name the film: 1994 Action/Thriller, Harrison Ford, Willem Dafoe, Anne Archer, Joaquim de Almeida, Henry Czerny?
+Clear and Present Danger
+10
+
+Name the film: 1994 Action/Thriller, Keanu Reeves, Sandra Bullock, Joe Morton, Jeff Daniels, Dennis Hopper?
+Speed
+10
+
+Name the film: 1994 Comedy/Adventure, Jim Carrey, Jeff Daniels, Lauren Holly, Mike Starr, Charles Rocket?
+Dumb & Dumber
+10
+
+Name the film: 1994 Crime/Thriller/Action/Drama, Tim Roth, John Travolta, Samuel L. Jackson, Uma Thurman, Ving Rhames?
+Pulp Fiction
+10
+
+Name the film: 1994 Drama/Comedy, Tom Hanks, Robin Wright, Gary Sinise, Sally Field, Mykelti Williamson?
+Forrest Gump
+10
+
+Name the film: 1996 Action/Sci-fi, Will Smith, Bill Pullman, Jeff Goldblum, Mary McDonnell, Judd Hirsch?
+Independence Day
+10
+
+Name the film: 1996 Comedy/Drama/Romance, Tom Cruise, Cuba Gooding Jr., Renee Zellweger, Kelly Preston, Jerry O'Connell?
+Jerry Maguire
+10
+
+Name the film: 1996 Crime/Thriller/Drama/Mystery, Morgan Freeman, Brad Pitt, Kevin Spacey, Gwyneth Paltrow?
+Se7en
+10
+
+Name the film: 1996 Drama, Tom Hanks, Bill Paxton, Kevin Bacon, Gary Sinise, Ed Harris, Kathleen Quinlan?
+Apollo 13
+10
+
+Name the film: 1996 Drama/Thriller, Matthew McConaughey, Sandra Bullock, Samuel L. Jackson, Kevin Spacey, Oliver Platt?
+A Time To Kill
+10
+
+Name the film: 1997 Action/Adventure/Thriller, Pierce Brosnan, Jonathan Pryce, Judi Dench, Teri Hatcher, Desmond Llewelyn?
+Tomorrow Never Dies
+10
+
+Name the film: 1997 Action/Thriller, John Travolta, Nicolas Cage, Joan Allen, Harve Presnell?
+Face/Off
+10
+
+Name the film: 1997 Action/Thriller, Nicolas Cage, Monica Potter, John Cusack, Steve Buscemi, John Malkovich?
+Con Air
+10
+
+Name the film: 1997 Action/Thriller/Adventure, Harrison Ford, Gary Oldman, Glenn Close, Wendy Crewson, Liesel Matthews?
+Air Force One
+10
+
+Name the film: 1997 Comedy, Jim Carrey, Maura Tierney, Justin Cooper, Cary Elwes, Jennifer Tilly?
+Liar Liar
+10
+
+Name the film: 1997 Comedy, Mike Myers, Elizabeth Hurley, Michael York, Robert Wagner, Seth Green?
+Austin Powers: International Man of Mystery
+10
+
+Name the film: 1997 Comedy/Romance, Julia Roberts, Dermot Mulroney, Cameron Diaz, Rupert Everett, M. Emmet Walsh?
+My Best Friend's Wedding
+10
+
+Name the film: 1997 Drama, Robin Williams, Matt Damon, Ben Affleck, Minnie Driver?
+Good Will Hunting
+10
+
+Name the film: 1997 Drama/Romance, Leonardo DiCaprio, Kate Winslet, Billy Zane, Kathy Bates, Bill Paxton?
+Titanic
+10
+
+Name the film: 1997 Romance/Drama, Jack Nicholson, Helen Hunt, Greg Kinnear, Cuba Gooding Jr?
+As Good As It Gets
+10
+
+Name the film: 1997 Sci-fi/Comedy, Tommy Lee Jones, Will Smith, Linda Fiorentino, Vincent D'Onofrio, Rip Torn?
+Men in Black
+10
+
+Name the film: 1998 Action/Drama, Tom Hanks, Edward Burns, Tom Sizemore, Matt Damon?
+Saving Private Ryan
+10
+
+Name the film: 1998 Action/Romance/Sci-fi, Bruce Willis, Billy Bob Thornton, Ben Affleck, Liv Tyler, Steve Buscemi?
+Armageddon
+10
+
+Name the film: 1998 Comedy/Drama, Eddie Murphy, Jeff Goldblum, Kelly Preston, Robert Loggia, Jon Cryer?
+Holy Man
+10
+
+Name the film: 1998 Comedy/Romance, Cameron Diaz, Matt Dillon, Ben Stiller, Chris Elliott?
+There's Something About Mary
+10
+
+Name the film: 1998 Drama/Fantasy, Nicolas Cage, Meg Ryan, Andre Braugher, Dennis Franz, Colm Feore?
+City of Angels
+10
+
+Name the film: 1998 Drama/Romance, Robert Redford, Kristin Scott Thomas, Sam Neill, Dianne Wiest, Scarlett Johnson?
+The Horse Whisperer
+10
+
+Name the film: 1998 Fantasy/Romance, Brad Pitt, Anthony Hopkins, Claire Forlani, Jake Weber?
+Meet Joe Black
+10
+
+Name the film: 1998 Romance/Comedy, Gwyneth Paltrow, Geoffrey Rush, Tom Wilkinson, Joseph Fiennes?
+Shakespeare in Love
+10
+
+Name the film: 1999 Action/Thriller, Tommy Lee Jones, Ashley Judd, Benjamin Weir, Jay Brazeau, Bruce Greenwood?
+Double Jeopardy
+10
+
+Name the film: 1999 Action/Thriller/Sci-fi, Keanu Reeves, Laurence Fishburne, Carrie-Anne Moss, Hugo Weaving, Gloria Foster?
+The Matrix
+10
+
+Name the film: 1999 Adventure/Action/Horror, Brendan Fraser, Rachel Weisz, John Hannah, Arnold Vosloo?
+The Mummy
+10
+
+Name the film: 1999 Comedy/Romance, Julia Roberts, Hugh Grant, Richard McCabe, Rhys Ifans, James Dreyfus?
+Notting Hill
+10
+
+Name the film: 1999 Comedy/Romance, Julia Roberts, Richard Gere, Joan Cusack, Hector Elizondo, Rita Wilson?
+Runaway Bride
+10
+
+Name the film: 1999 Drama, Tobey Maguire, Charlize Theron, Delroy Lindo, Paul Rudd, Michael Caine?
+The Cider House Rules
+10
+
+Name the film: 1999 Drama, Tom Hanks, David Morse, Bonnie Hunt, Michael Clarke Duncan?
+The Green Mile
+10
+
+Name the film: 1999 Drama/Fantasy/Sports, Kevin Costner, Amy Madigan, James Earl Jones, Ray Liotta, Burt Lancaster?
+Field of Dreams
+10
+
+Name the film: 1999 Drama/Sports, Al Pacino, Cameron Diaz, Dennis Quaid, James Woods, Jamie Foxx, LL Cool J?
+Any Given Sunday
+10
+
+Name the film: 1999 Drama/Thriller, Matt Damon, Gwyneth Paltrow, Jude Law, Cate Blanchett?
+The Talented Mr. Ripley
+10
+
+Name the film: 1999 Drama/Thriller, Tom Cruise, Nicole Kidman, Madison Eginton, Jackie Sawiris?
+Eyes Wide Shut
+10
+
+Name the film: 1999 Drama/Thriller/Horror, Bruce Willis, Toni Collette, Haley Joel Osment, Olivia Williams, Donnie Wahlberg?
+The Sixth Sense
+10
+
+Name the film: 1999 Family/Comedy/Fantasy, Michael J. Fox (voice), Geena Davis, Hugh Laurie, Jonathan Lipnicki, Nathan Lane (voice)?
+Stuart Little
+10
+
+Name the film: 2000 Action/Sci-fi, Hugh Jackman, Patrick Stewart, Ian Mckellen, Famke Janssen, Halle Berry, Rebecca Romijn-Stamos?
+X-Men
+10
+
+Name the film: 2000 Adventure/Drama, Tom Hanks, Helen Hunt, Nick Searcy, Chris Noth?
+Cast Away
+10
+
+Name the film: 2000 Adventure/Drama/Action, George Clooney, Mark Wahlberg, Diane Lane, Karen Allen, Mary Elizabeth Mastrantonio?
+The Perfect Storm
+10
+
+Name the film: 2000 Adventure/Sci-fi, Clint Eastwood, Tommy Lee Jones, Donald Sutherland, James Garner?
+Space Cowboys
+10
+
+Name the film: 2000 Comedy, Mel Gibson, Helen Hunt, Marisa Tomei, Alan Alda?
+What Women Want
+10
+
+Name the film: 2000 Comedy, Robert De Niro, Ben Stiller, Teri Polo, Blythe Danner, Owen Wilson?
+Meet the Parents
+10
+
+Name the film: 2000 Drama, Robert De Niro, Cuba Gooding Jr., Charlize Theron, Aunjanue Ellis?
+Men of Honor 
+10
+
+Name the film: 2000 Drama/Action, Russell Crowe, Joaquin Phoenix, Oliver Reed, Richard Harris, Connie Neilsen?
+Gladiator
+10
+
+Name the film: 2001 Action/Adventure, Angelina Jolie, Jon Voight, Iain Glen, Noah Taylor, Daniel Craig?
+Lara Croft: Tomb Raider
+10
+
+Name the film: 2001 Adventure/Horror/Fantasy, Brendan Fraser, Rachel Weisz, John Hannah, Arnold Vosloo, Dwayne (The Rock) Johnson?
+The Mummy Returns
+10
+
+Name the film: 2001 Animated/Romance/Comedy, VOICES of Mike Myers, Eddie Murphy, Cameron Diaz, John Lithgow?
+Shrek
+10
+
+Name the film: 2001 Crime/Adventure, George Clooney, Brad Pitt, Julia Roberts, Matt Damon, Andy Garcia, Carl Reiner, Elliott Gould?
+Ocean's Eleven
+10
+
+Name the film: 2001 Crime/Thriller, John Travolta, Hugh Jackman, Halle Berry, Don Cheadle, Sam Shepard?
+Swordfish
+10
+
+Name the film: 2001 Drama/Romance, Russell Crowe, Jennifer Connelly, Ed Harris, Christopher Plummer, Judd Hirsch?
+A Beautiful Mind
+10
+
+Name the film: 2001 Drama/Sci-fi, Haley Joel Osment, Jude Law, Frances O'Connor, Brenda Gleeson, William Hurt?
+Artificial Intelligence
+10
+
+Name the film: 2001 Drama/War, Ben Affleck, Josh Hartnett, Kate Beckinsale, William Lee Scott?
+Pearl Harbour
+10
+
+Name the film: 2001 Fantasy/Adventure, Elijah Wood, Ian McKellen, Viggo Mortensen, Sean Astin, Cate Blanchett?
+Lord of the Rings: The Fellowship of the Ring
+10
+
+Name the film: 2001 Fantasy/Adventure, Richard Harris, Maggie Smith, Daniel Radcliffe, Robbie Coltrane, Alan Rickman?
+Harry Potter and the Sorceror's Stone
+10
+
+Name the film: 2002 Action/Fantasy/Sci-Fi/Thriller/Crime/Drama/Mystery, Tom Cruise, Colin Farrell, Samantha Morton, Max von Sydow, Lois Smith?
+Minority Report
+10
+
+Name the film: 2002 Action/Sci-fi, Tobey Maguire, Willem Dafoe, Kirsten Dunst, James Franco, Cliff Robertson?
+Spider-Man
+10
+
+Name the film: 2002 Comedy, Mike Myers, Beyonce Knowles, Michael Caine, Seth Green, Verne Troyer, Michael York?
+Austin Powers in Goldmember
+10
+
+Name the film: 2002 Comedy/Romance, Adam Sandler, Winona Ryder, John Turturro, Steve Buscemi, Conchata Ferrell?
+Mr. Deeds
+10
+
+Name the film: 2002 Drama/Sci-fi/Fantasy, Mel Gibson, Joaquin Phoenix, Cherry Jones, Rory Culkin, M. Night Shyamalan?
+Signs
+10
+
+Name the first automobile racetrack in America?
+Indianapolis motor speedway
+10
+
+Name the first byrd's album?
+Mr tambourine man
+10
+
+Name the first element, alphabetically?
+Actinium
+10
+
+Name the first full length color cartoon talking picture?
+Snow White and the Seven Dwarfs
+10
+
+Name the first king to ever make an official visit to communist china?
+Juan carlos
+10
+
+Name the first live supertramp lp?
+Paris
+10
+
+Name the first manned mission to orbit the moon?
+Apollo 8
+10
+
+Name the first manned spacecraft to be launched into orbit for the second time?
+Columbia
+10
+
+Name the first president of the American red cross?
+Clara barton
+10
+
+Name the first ship from which Gulliver was shipwrecked in 'Gulliver's Travels'?
+Antelope
+10
+
+Name the first state of the U S A?
+Delaware
+10
+
+Name the first successful us hydroplane built in 1911?
+Flying fish
+10
+
+Name the first woman to race in the indianapolis 500?
+Janet guthrie
+10
+
+Name the Florida governor who was also a us president?
+Jackson
+10
+
+Name the former topless model who inherited $300 million from her late husband J. Howard Marshall II?
+Anna nicole smith
+10
+
+Name the four states in the USA that start with the letter A?
+Alabama, Arizona, arkansas, Alaska
+10
+
+Name the fourth book of the Old Testament?
+Numbers
+10
+
+Name the French artist who died in 1863, famous for his painting Liberty Guiding the People?
+Delacroix
+10
+
+Name the french blue-veined cheese that is ripened in limestone caves?
+Roquefort
+10
+
+Name the French boxer who was World Heavyweight Champion from 1920 to 1922, best remembered for his title fight with Jack Dempsey in 1921?
+Georges carpentier
+10
+
+Name the French dance from Offenbach's opera Orpheus In The Underworld?
+Can-can
+10
+
+Name the French salad containing tuna, anchovies, french beans and hard boiled eggs?
+Salade nicoise
+10
+
+Name the German winner of the first Nobel Prize for Physics in 1901?
+Wilhelm rontgen
+10
+
+Name the giant who had 100 eyes who was made to guard Heifer IO?
+Argus
+10
+
+Name the god of the beginning and the end?
+Janus
+10
+
+Name the Gold Medal winner in the Men's High Jump at the 1968 Olympic Games?
+Dick fosbury
+10
+
+Name the Gold Medal winner in the Men's Long Jump at the 1964 Olympic Games?
+Lynn davies
+10
+
+Name the Greek dish using aubergines and minced lamb?
+Moussaka
+10
+
+Name the Greek equivalent of the Roman god Juno?
+Hera
+10
+
+Name the Greek equivalent of the Roman god Saturn?
+Cronos
+10
+
+Name the group that did the song-turned-pop-culture-icon 'stairway to heaven'?
+Led zeppelin
+10
+
+Name the group that organist barry andrews left xtc to join?
+League of gentlemen
+10
+
+Name the heaviest breed of domestic dog?
+St. Bernard
+10
+
+name the hero of The Hobbit?
+Bilbo baggins
+10
+
+Name the Hindu god with the head of an elephant?
+Ganesh
+10
+
+Name the honolulu detective whose favourite foe was 'wo fat'?
+Steve mcgarrett
+10
+
+Name the image set up by Aaron while Moses was on Mount Sinai?
+The golden calf
+10
+
+Name the implement that removes water from your windshield on your car?
+Wiper
+10
+
+Name the Indian triangular pastries stuffed with meat or vegetables?
+Samosas
+10
+
+Name the individual, who in 1980, set out to run across Canada to raise money for cancer?
+Terry Fox
+10
+
+Name the inventor of the Richter scale?
+Charles richter
+10
+
+Name the Italian dish made from pasta squares filled with meat?
+Ravioli
+10
+
+Name the Italian President of the Christian Democrats and five times Prime Minister, who was kidnapped and murdered by the Red Brigade guerrillas in 1978?
+Aldo moro
+10
+
+Name the Italian-born American inventor whose form of hydrotherapy has become a popular facility in home or hotel?
+Candido jacuzzi
+10
+
+Name the Japanese Stock Exchange Index?
+Nikkei
+10
+
+Name the last men on the Moon (last name only)?
+Cernan and schmitt
+10
+
+Name the last state to ratify the us constitution?
+Rhode island
+10
+
+Name the man who developed the first practical pneumatic tyre?
+John dunlop
+10
+
+Name the mathematician credited with developing an algebra for symbolic logic?
+George boole
+10
+
+Name the minister who was hanged at Salem, Massachusetts for witchcraft?
+George burroughs
+10
+
+Name the missing pac-man ghost, Iinky, Pinky, Blinky & ____
+Clyde
+10
+
+Name the monarch who holds the record of the longest reign in world history?
+Ramses ii
+10
+
+Name the month in the French Republican calendar which is also the title of a novel by Emile Zola?
+Germinal
+10
+
+Name the moody blues first lp?
+Lose your money
+10
+
+Name the most north-easterly of the 48 contiguous U S states?
+Maine
+10
+
+Name the most popular sport in Britain?
+Darts
+10
+
+Name the muscle at the front of the shoulder and above the biceps which serve to raise the arm laterally?
+Deltoid
+10
+
+Name the nevil shute novel set in post-ww3 Australia that became a 1959 film starring gregory peck and ava gardner?
+On the beach
+10
+
+Name the north african spicy dish of steamed semolina served with meat stew?
+Cous cous
+10
+
+Name the number one 2002 album released by cold play?
+A rush of blood to the head
+10
+
+Name the NYC club where Blondie and the Ramones got their start?
+CBGBs
+10
+
+Name the old type of window which housed cords attached to counterweights in order to hold it open at any height?
+Sash
+10
+
+Name the olympic ice sport in which the players do not wear skates?
+Curling
+10
+
+Name the only animal whose main source of food is the porcupine?
+Fisher
+10
+
+Name the only animal with retractable horns?
+Snail
+10
+
+Name the only bird that can swim but can't fly?
+Penguin
+10
+
+Name the only country with a national dog?
+Holland
+10
+
+Name the only English word with three dots in a row?
+Hijinks
+10
+
+Name the only film made by the monkees?
+Head
+10
+
+Name the only flexible murder weapon in the game Clue/Cluedo?
+Rope
+10
+
+Name the only major Greek God whose Roman counterpart has the same name?
+Apollo
+10
+
+Name the only mythical creature featured in the Chinese calender?
+Dragon
+10
+
+Name the only nfl team with no logo on its helmets?
+Cleveland browns
+10
+
+Name the only nhl player to play over 80 games in an 80 game season?
+Brad marsh
+10
+
+Name the only number one single for boy george and the culture club?
+Karma chameleon
+10
+
+Name the only president to be married for the first time while in office?
+Grover cleveland
+10
+
+Name the only senator whose parents had also served in the senate?
+Russell long
+10
+
+Name the only sisters to both win acting oscars?
+Joan fontaine and olivia de haviland
+10
+
+Name the only state with an official grass?
+South dakota
+10
+
+Name the only two mammals with hymens?
+Humans and horses
+10
+
+Name the only two species that have sex for pleasure?
+Humans and dolphins
+10
+
+Name the only war to end on the same day that the us draft ended?
+Vietnam war
+10
+
+Name the only woman suspect in the game of Clue/Cluedo who isnt married?
+Miss scarlett
+10
+
+Name the only woman to win 2 Nobel prizes?
+Marie curie
+10
+
+Name the oppressive hot dry wind on the north coast of Africa, that comes from the Sahara during the spring and summer?
+Sirocco
+10
+
+Name the organisation for which jim bergerac worked?
+Bureau des etrangers
+10
+
+Name the organs that are involved in a triple transplant?
+Heart lungs and liver
+10
+
+Name the original comic strip Bill The Cat appeared in?
+Bloom County
+10
+
+Name the painting medium which involves the use of egg yolks?
+Tempera
+10
+
+Name the painting that features a non-smiling farmer with his pitchfork standing next to his non-smiling wife?
+American gothic
+10
+
+Name the performer that inadvertently became a Broadway star as a result of a guest appearance on the T.V. show, What's My Line?
+Pearl Bailey
+10
+
+Name the person from the game tomb raider?
+Lara croft
+10
+
+Name the person who was never a beatle. pete best , stuart sutcliffe , mike stoller, george harrison?
+Mike stoller
+10
+
+Name the philistine giant whom David slew?
+Goliath
+10
+
+Name the plant that translates from the latin as 'fair lady'?
+Bella donna
+10
+
+Name the player who has hit the most home runs in one season (70)?
+Mark mcgwire
+10
+
+name the poet: a red, red rose?
+Robert burns
+10
+
+name the poet: a valediction: forbidding mourning?
+John donne
+10
+
+name the poet: on his blindness?
+John milton
+10
+
+name the poet: ozymandias?
+Percy bysshe shelley
+10
+
+name the poet: song: to cynthia?
+Ben jonson
+10
+
+name the poet: the book of nightmares?
+Galway kinnell
+10
+
+name the poet: the branch will not break?
+James wright
+10
+
+name the poet: the rape of a lock?
+Alexander pope
+10
+
+name the poet: ulysses?
+Lord tennyson
+10
+
+name the poet: variation of a theme by william carlos williams?
+Kenneth koch
+10
+
+Name the police staion in tv's the bill?
+Sun hill
+10
+
+Name the popular child's game when you would hear the familiar phrase 'all-y, all-y in free'?
+Hide 'n' seek
+10
+
+Name the port at the mouth of the River Seine?
+Le havre
+10
+
+Name the primeval supercontinent which split into Gondwanaland and Laurasia between 250 and 300 million years ago?
+Pangaea
+10
+
+Name the private residence of the English monarch in Scotland?
+Balmoral castle
+10
+
+Name the product that was advertised by the song, 'My Sharona'?
+Sirocco Automobiles
+10
+
+name the queen who tells the stories of One Thousand and One Nights?
+Scheherezade
+10
+
+Name the road tunnel that runs under the Hudson River from New York City to Jersey City?
+Holland
+10
+
+Name the Rock guitarist who was ordered to perform a benefit concert for the Canadian National Institute for the Blind after being charged with drug possession?
+Keith Richards
+10
+
+Name the Roman equivalent of the Greek goddess Nike?
+Victoria
+10
+
+Name the ruling family of the Austro-Hungarian Empire in 1914?
+Habsburg
+10
+
+Name the Scottish Island author George Orwell was residing on when he wrote the novel 'Animal Farm'?
+Jura
+10
+
+Name the sea between korea and china?
+Yellow sea
+10
+
+Name the sea north of Murmansk, Russia?
+Barents sea
+10
+
+Name the sea west of Alaska?
+Bering sea
+10
+
+Name the seaport of Tokyo?
+Yokohama
+10
+
+Name the second-largest continent after Asia?
+Africa
+10
+
+Name the seven dwarfs?
+Doc
+10
+
+Name the ship in which sir ernest shackleton sailed to the antarctic?
+Endurance
+10
+
+Name the ship lost off Zuyder Zee in 1799 from which a famous item was salvaged in 1858?
+Lutine
+10
+
+Name the singer who won the 1998 Eurovision Song Contest with the song Diva?
+Dana international
+10
+
+Name the sitcom that featured Judd Hirsch, Andy Kaufman, Tony Danza and Danny Devito?
+Taxi
+10
+
+Name the skipper in `20,000 leagues under the sea'?
+Captain nemo
+10
+
+Name the small fried cakes made from chick peas, eaten in the middle east?
+Falafel
+10
+
+Name the South African author of 'Cry, the Beloved Country'?
+Alan paton
+10
+
+Name the state in which bill clinton was born?
+Arkansas
+10
+
+Name the strait joining the Atlantic Ocean and the Mediterranean Sea?
+Strait of gibraltar
+10
+
+Name the stretch of water which lies between new brunswick, maine and nova scotia?
+Bay of fundy
+10
+
+Name the sugar babes album?
+Angels with dirty faces
+10
+
+Name the sweet's only number 1 hit?
+Blockbuster
+10
+
+Name the swimmer who became a hollywood star in the 1940's and 50s in films such as bathing beauty and neptune's daughter?
+Esther williams
+10
+
+Name the Swiss magnate whose European hotels were known as high-class lodgings?
+Cesar Ritz
+10
+
+Name the theory which proposed that a person's mental development could be measured by a skull examination?
+Phrenology
+10
+
+Name the three children on kate and ali?
+Jenny,chip and emma 
+10
+
+Name the three gorgons alphabetically?
+Euryale medusa nemesis 
+10
+
+Name the three graces, signifying brilliance, joy and bloom?
+Aglaia euphrosyne thalia
+10
+
+Name the three largest countries in the world in order?
+Russia, Canada, china
+10
+
+Name the three main bands featured on the cartoon series 'jem' during it's entire 3 year run?
+Jem and the holograms,the misfits,the stingers
+10
+
+Name the three south American countries that the equator crosses?
+Columbia
+10
+
+Name the title which, together with Berlin Game and London Match completes Len Deighton's trilogy?
+Moscow set
+10
+
+Name the toy that consisted of color pencils and plastic which you would put in the oven to create?
+Shrinky Dinks
+10
+
+Name the traditional Jewish dish of stuffed fish cooked in a broth?
+Gefilte fish
+10
+
+Name the treaty of 1929 which recognised Papal authority within the Vatican City?
+Lateran treaty
+10
+
+Name the TV show which featured an average housewife teamed up with a secret agent?
+Scarecrow and Ms. King
+10
+
+Name the twins on the thundercats?
+Wily kit and wily kat
+10
+
+Name the two artists that received 1.5m at the 1983 'us' festival?
+David bowie & van halen
+10
+
+Name the two festive islands that lie in the pacific ocean?
+Christmas & easter islands
+10
+
+Name the two flower pot men?
+Bill and ben
+10
+
+Name the two giant stars in the constellation of Orion?
+Rigel and betelgeuse
+10
+
+Name the two main families on Soap?
+The Tates and The Campbells
+10
+
+Name the two mammals which lay eggs?
+Duck billed platypus and spiny anteater
+10
+
+Name the two national parks in wyoming?
+Yellowstone and grand teton
+10
+
+Name the two Ross brothers who are both TV and radio presenters?
+Jonathon and Paul
+10
+
+Name the two sisters who were part of all saints?
+Natalie & nicole appleton
+10
+
+Name the two sons of king duncan of Scotland. (macbeth) and?
+Malcolm donaldbain
+10
+
+Name the two species that cannot walk backwards?
+Emus and Kangaroos
+10
+
+Name the U.S.S.R. leader with a birthmark on his forehead?
+Gorbachev
+10
+
+Name the Unix network file system developed at CMU?
+Andrew
+10
+
+Name the US state with the smallest population?
+Alaska
+10
+
+Name the variety of brassica , whose thickened stem, resembling a turnip, is eaten as a vegetable?
+Kohlrabi
+10
+
+Name the ventriloquist who gave us Lamb Chop?
+Shar Lewis
+10
+
+Name the wife of King Ahab, who Jehu ordered to be thrown to her death from a window?
+Jezebel
+10
+
+Name the wife who survived Henry VIII?
+Catherine parr
+10
+
+Name the world tallest tree?
+Coastal redwood
+10
+
+Name the world's 3 largest oceans, in order of size:?
+Pacific atlantic Indian
+10
+
+Name the world's first nuclear powered merchant ship?
+Savannah
+10
+
+Name the Wright brothers 1903 plane?
+Flyer
+10
+
+Name the Year: -BC- Traditional date of the foundation of Rome?
+753
+10
+
+Name the Year: ?1 coin introduced in United Kingdom?
+1983
+10
+
+Name the Year: .C. Cleopatra died?
+30 B
+10
+
+Name the Year: .C. Julius Caesar slain?
+44 B
+10
+
+Name the Year: .C. Roman forces under Julius Caesar invaded Britain?
+55 B
+10
+
+Name the Year: 'Baby M', famed surrogate, born in?
+1986
+10
+
+Name the Year: 'Marvelous' Marvin Hagler (in New Jersey), boxer, born in?
+1952
+10
+
+Name the Year: 'Pepe Le Pew' debuts in his first cartoon?
+1945
+10
+
+Name the Year: (AUSTRIA) Wolfgang Amadeus Mozart, composer, dies aged 37?
+1791
+10
+
+Name the Year: (Bahamas) Bahamas achieves internal self-government & cabinet responsibility?
+1964
+10
+
+Name the Year: (England) Ben Kingsley, Scarborough, actor, born in?
+1943
+10
+
+Name the Year: (England) Britain recognizes Communist government of China?
+1950
+10
+
+Name the Year: (England) Catherine of Aragon 1st wife of England's King Henry VIII, dies?
+1536
+10
+
+Name the Year: (England) Charles Babbage, mathematician and developer of the speedometer, born in?
+1791
+10
+
+Name the Year: (England) EMI records drop punk rock group Sex Pistols?
+1977
+10
+
+Name the Year: (England) F. Scott Fitzgerald, author, died?
+1940
+10
+
+Name the Year: (England) John Flamsteed observes Uranus but doesn't realize it's undiscovered?
+1690
+10
+
+Name the Year: (England) King Henry VIII of England married his 4th wife, Anne of Cleves?
+1540
+10
+
+Name the Year: (England) Planet Uranus was discovered by Sir William Herschel?
+1781
+10
+
+Name the Year: (England) Richard II, Bordeaux, France, king of England (1377-99), born in?
+1367
+10
+
+Name the Year: (England) Rowan Atkinson, comedian/actor (Never Say Never Again, Mr. Bean, Blackadder), born in?
+1956
+10
+
+Name the Year: (England) Syd Barrett, rocker (Pink Floyd-The Wall), born in?
+1946
+10
+
+Name the Year: (France) Calais, last English possession in France, retaken by French?
+1558
+10
+
+Name the Year: (FRANCE) Claude Monet, imperssionist painter, dies?
+1926
+10
+
+Name the Year: (France) Ether first used as an anasthetic in childbirth?
+1845
+10
+
+Name the Year: (France) Gerard Depardieu, actor, born in?
+1948
+10
+
+Name the Year: (France) Henri Matisse, impressionist painter, born in?
+1869
+10
+
+Name the Year: (France) Jacques Montgolfier, aeronaut (1st pioneer balloonist), born in?
+1745
+10
+
+Name the Year: (France) Joan of Arc, Domremy, martyr, born in?
+1412
+10
+
+Name the Year: (Geneva, Switzerland) China and Austria added to Leauge of Nations?
+1920
+10
+
+Name the Year: (Germany) Hugo Junkers completes the first all metal airplane?
+1915
+10
+
+Name the Year: (Germany) Louis III, last king of Bavaria (1913-18), born in?
+1845
+10
+
+Name the Year: (Germany) Marlene Dietrich, actress, born in?
+1901
+10
+
+Name the Year: (Ireland) Martial Law Declared?
+1920
+10
+
+Name the Year: (Italy) Alessandro de' Medici of Florence, assassinated?
+1537
+10
+
+Name the Year: (Italy) Galileo discovers 1st 3 Jupiter satellites, Io, Europa & Ganymede?
+1610
+10
+
+Name the Year: (Italy) Giovanni Cassini discovers Rhea, a satellite of Saturn?
+1672
+10
+
+Name the Year: (Italy) Jose Greco, dancer, born in?
+1918
+10
+
+Name the Year: (Japan) Emperor Hirohito of Japan, dies at 87 after 62-year reign?
+1989
+10
+
+Name the Year: (Lebanon) Khalil Gibran, mystic poet (The Prophet, Broken Wings), born in?
+1883
+10
+
+Name the Year: (Messina, Italy) Earthquake (nearly 80,000 died)?
+1908
+10
+
+Name the Year: (Romania) Dr Petru Groza premier of Romania, dies at 74?
+1958
+10
+
+Name the Year: (Russia) Boris Godunov seizes the Russian throne on death of Feodore I?
+1598
+10
+
+Name the Year: (Scotland) Richard Arkwright, invented spinning frame?
+1732
+10
+
+Name the Year: (UK) King George V crowned Emperor of India and founds New Dehli to replace Calcutta as the capital?
+1911
+10
+
+Name the Year: (US) Gugliemo Marconi sends the first wireless message across the Atlantic?
+1911
+10
+
+Name the Year: (USA) 1st battery to convert radioactive energy to electrical announced?
+1951
+10
+
+Name the Year: (USA) 1st performance of the Beach Boys?
+1961
+10
+
+Name the Year: (USA) Charles Addams, cartoonist (New Yorker, Addams Family), born in?
+1912
+10
+
+Name the Year: (USA) Coffee Percolator invented?
+1865
+10
+
+Name the Year: (USA) Denzel Washington, actor, born in?
+1954
+10
+
+Name the Year: (USA) Edison gives 1st public demonstration of his incandescent lamp?
+1879
+10
+
+Name the Year: (USA) For the 1st time a ball drops at Times Square to signal the new year?
+1907
+10
+
+Name the Year: (USA) Gypsy Rose Lee, stripper, born in?
+1914
+10
+
+Name the Year: (USA) Ira Gershwin, composer, born in?
+1896
+10
+
+Name the Year: (USA) Joesph Smith, founder of the Mormon church, born in?
+1805
+10
+
+Name the Year: (USA) John Denver singer, born in?
+1943
+10
+
+Name the Year: (USA) John Steinbeck, author, died?
+1968
+10
+
+Name the Year: (USA) Nicolas Cage, actor (The Rock, Face/Off), born in?
+1964
+10
+
+Name the Year: (USA) Patent for reducing zinc ore granted to Samuel Wetherill?
+1857
+10
+
+Name the Year: (USA) Plane broke height altitude record at 11474 feet?
+1910
+10
+
+Name the Year: (USA) Pres Truman announces development of the hydrogen bomb?
+1953
+10
+
+Name the Year: (USA) President Truman officially proclaims end of WW-II?
+1946
+10
+
+Name the Year: (USA) Ratification of UN Charter completed?
+1945
+10
+
+Name the Year: (USA) Richard Clayderman, pianist, born in?
+1953
+10
+
+Name the Year: (USA) Robert Englund, actor (V, Nightmare on Elm Street), born in?
+1949
+10
+
+Name the Year: (USA) Rube Goldberg, inventor and cartoonist, dies?
+1971
+10
+
+Name the Year: (USA) Rutan and Yeager make first around-the-world flight without refueling?
+1986
+10
+
+Name the Year: (USA) Samuel Morse made 1st public demonstration of telegraph?
+1838
+10
+
+Name the Year: (USA) Theodore Roosevelt dies at his home in Oyster Bay, NY, at 60?
+1919
+10
+
+Name the Year: (USA) Tom Mix silent screen cowboy actor, born in?
+1880
+10
+
+Name the Year: (USA) Transistor invented by Bardeen, Brattain and Shockley in Bell Labs?
+1947
+10
+
+Name the Year: (USA) Val Kilmer, actor, born in?
+1959
+10
+
+Name the Year: (USA) Walt Disney born?
+1901
+10
+
+Name the Year: (Vietnam) Vietnamese forces capture Phnom Penh from Khmer Rouge?
+1979
+10
+
+Name the Year: (Wales) Anthony Hopkins, actor, born in?
+1937
+10
+
+Name the Year: (Yugoslavia) Alexander I establishes a royal dictatorship in Yugoslavia?
+1929
+10
+
+Name the Year: 10 suffragists arrested as they picket the White House?
+1917
+10
+
+Name the Year: 10,000 Chinese soldiers are blocked by 100,000 citizens protecting students demonstrating for democracy in Tiananmen Square, Beijing?
+1989
+10
+
+Name the Year: 10,000 die in an earthquake in western Iran?
+1962
+10
+
+Name the Year: 10th modern Olympic games opens in Los Angeles?
+1932
+10
+
+Name the Year: 11 Israeli athletes are slain at Munich Olympics?
+1972
+10
+
+Name the Year: 113 killed in Eastern Boeing 727 crash at JFK airport?
+1975
+10
+
+Name the Year: 11th Amendment of American Constitution ratified, Judicial powers construed?
+1798
+10
+
+Name the Year: 12 nations sign a treaty for scientific peaceful use of Antarctica?
+1959
+10
+
+Name the Year: 1211-kg great white shark becomes largest fish ever caught on a rod?
+1959
+10
+
+Name the Year: 135 acre Disney's MGM studio officially opens to the public?
+1989
+10
+
+Name the Year: 14 US Communist Party leaders convicted of sedition?
+1949
+10
+
+Name the Year: 140,000 attend Atlanta Pop Festival featuring Led Zepplin and Janis Joplin?
+1969
+10
+
+Name the Year: 14th recorded perihelion passage of Halley's Comet?
+760
+10
+
+Name the Year: 156-day strike against Westinghouse ended?
+1956
+10
+
+Name the Year: 175-kph winds cause blackout in London, much of southern England?
+1987
+10
+
+Name the Year: 18-month-old Jessica McClure is rescued 58 hours after she fell 22 feet into a well shaft in Midland, TX?
+1987
+10
+
+Name the Year: 18th Space Shuttle Mission (Discovery 5) returns to Earth?
+1985
+10
+
+Name the Year: 18th Summer Olympic Games opened in Tokyo?
+1964
+10
+
+Name the Year: 19 year old Pete Sampras beats Andre Agassi to win the US Open?
+1990
+10
+
+Name the Year: 19th amendment passes ____ women's suffrage granted (about time!)
+1920
+10
+
+Name the Year: 19th modern Olympic games opens in Mexico City?
+1968
+10
+
+Name the Year: 1st 33 1/3 rpm recording released (Beethoven's 5th)?
+1934
+10
+
+Name the Year: 1st 4 engine aircraft built & flown (Igor Sikorsky-Russia)?
+1913
+10
+
+Name the Year: 1st abdication of Napoleon; he is exiled to Elba?
+1814
+10
+
+Name the Year: 1st all Australian women's US Open final, (Margaret Court beats Yvonne Goolagong)?
+1973
+10
+
+Name the Year: 1st all-glass windowless structure in US completed, Toledo, Ohio?
+1936
+10
+
+Name the Year: 1st all-talking motion picture shown, in NY?
+1928
+10
+
+Name the Year: 1st American marathon ran, John J McDermott wins in 2:55:10 (Boston)?
+1897
+10
+
+Name the Year: 1st ascent of Mt. Erebus, Antarctica?
+1908
+10
+
+Name the Year: 1st attempt at motion pictures (used 12 cameras, each taking 1 picture) done to see if all 4 of a horse's hooves leave the ground?
+1878
+10
+
+Name the Year: 1st auto to exceed 100 mph (161 kph), A.G. MacDonald, Daytona Beach?
+1905
+10
+
+Name the Year: 1st baby born on Alcatraz Island?
+1970
+10
+
+Name the Year: 1st BASIC program run on a computer (Dartmouth)?
+1964
+10
+
+Name the Year: 1st British jet fighter used in combat (Gloster Meteor)?
+1944
+10
+
+Name the Year: 1st Canadian parliament opens in Kingston, Ontario?
+1841
+10
+
+Name the Year: 1st color photograph of Earth from outer space?
+1959
+10
+
+Name the Year: 1st color video recording on magnetic tape presented, Charlotte North Carolina, USA?
+1958
+10
+
+Name the Year: 1st commercial computer, UNIVAC 1, enters service at Census Bureau?
+1951
+10
+
+Name the Year: 1st commercial flight across the Pacific, Pan Am?
+1937
+10
+
+Name the Year: 1st commercial jet plane, BOAC Comet?
+1952
+10
+
+Name the Year: 1st commercially produced synthetic rubber manufactured?
+1931
+10
+
+Name the Year: 1st commercially-made ice cream sold (NY)?
+1786
+10
+
+Name the Year: 1st controlled nuclear chain reaction (University of Chicago)?
+1942
+10
+
+Name the Year: 1st documented case of a robot killing a human in US?
+1984
+10
+
+Name the Year: 1st Doughnut created?
+1847
+10
+
+Name the Year: 1st Dutch settlers arrive (from NJ), to colonize Manhattan Island?
+1610
+10
+
+Name the Year: 1st earthquake recorded in US, at Plymouth, Mass?
+1638
+10
+
+Name the Year: 1st edition of Peter Roget's Thesaurus published?
+1852
+10
+
+Name the Year: 1st electric blanket manufactured; sold for US$39.50?
+1946
+10
+
+Name the Year: 1st English child born in the New World (Virginia Dare)?
+1587
+10
+
+Name the Year: 1st English Parliament called into session by Earl of Leicester?
+1265
+10
+
+Name the Year: 1st English Parliament formally convened (some authorities)?
+1265
+10
+
+Name the Year: 1st Ferris wheel premieres (Chicago's Columbian Exposition)?
+1893
+10
+
+Name the Year: 1st flight of the autogiro (Juan de la Cierva, Madrid Spain)?
+1923
+10
+
+Name the Year: 1st French Republic declared?
+1792
+10
+
+Name the Year: 1st human heart transplant performed (Dr Christian Barnard, S Africa)?
+1967
+10
+
+Name the Year: 1st inoculation (for rabies) of a human being, by Louis Pasteur?
+1885
+10
+
+Name the Year: 1st International Workers Day, according to the 2nd International?
+1889
+10
+
+Name the Year: 1st jet fighter used in combat (Messerschmitt 262)?
+1944
+10
+
+Name the Year: 1st large-scale US Army ground units arrive in South Vietnam?
+1965
+10
+
+Name the Year: 1st Le Mans Grand Prix d'Endurance was run?
+1923
+10
+
+Name the Year: 1st legal off-track betting system begins (OTB-New York)?
+1971
+10
+
+Name the Year: 1st long distance telephone call without operator assistance?
+1951
+10
+
+Name the Year: 1st McDonalds in Russia opens in Moscow, world's biggest McDonalds?
+1990
+10
+
+Name the Year: 1st men on Moon, Neil Armstrong and Edwin Aldrin, Apollo 11?
+1969
+10
+
+Name the Year: 1st merry-go-round seen at a fair (Philippapolis, Turkey)?
+1620
+10
+
+Name the Year: 1st military use of trained dolphins (US Navy in Persian Gulf)?
+1987
+10
+
+Name the Year: 1st Miss America crowned (Margaret Gorman of Washington DC)?
+1921
+10
+
+Name the Year: 1st modern Olympic Games officially opens in Athens?
+1896
+10
+
+Name the Year: 1st Mother's Day held (Phila)?
+1908
+10
+
+Name the Year: 1st newspaper cartoon strip?
+1875
+10
+
+Name the Year: 1st nonhuman primate (baboon) conceived in a lab dish, San Antonio?
+1983
+10
+
+Name the Year: 1st of 3 massacres by Sikh extremists takes place in India?
+1987
+10
+
+Name the Year: 1st opium war-2 British frigates engage several Chinese junks?
+1839
+10
+
+Name the Year: 1st parachute wedding?
+1940
+10
+
+Name the Year: 1st parlimentary election in newly reunified Germany?
+1990
+10
+
+Name the Year: 1st permanent artificial heart successfully implanted (U of Utah) in retired dentist Barney Clark; lived 112 days with the Jarvic-7 heart?
+1982
+10
+
+Name the Year: 1st permanent settlement in US forms (St Augustine, Florida)?
+1565
+10
+
+Name the Year: 1st public demonstration of ice made by refrigeration?
+1850
+10
+
+Name the Year: 1st quadrophonic concert (Pink Floyd in London)?
+1977
+10
+
+Name the Year: 1st running of the Indianapolis 500?
+1911
+10
+
+Name the Year: 1st Spanish settlement in New World founded by Columbus?
+1492
+10
+
+Name the Year: 1st Spanish settlement in Philippines, Cebu City, forms?
+1565
+10
+
+Name the Year: 1st stored computer program run, on Manchester Mark I?
+1948
+10
+
+Name the Year: 1st successful separation of Siamese twins?
+1953
+10
+
+Name the Year: 1st successful test flight of a Saturn V?
+1967
+10
+
+Name the Year: 1st sun-powered automobile demonstrated, Chicago, Ill?
+1955
+10
+
+Name the Year: 1st TRS-80 computer sold?
+1977
+10
+
+Name the Year: 1st US-to-Australia flight lands (Sir Charles Kingford-Smith)?
+1928
+10
+
+Name the Year: 1st use of seeing eye dog?
+1938
+10
+
+Name the Year: 1st western pop star to tour the USSR-Elton John?
+1979
+10
+
+Name the Year: 1st woman to fly solo from England to Australia takes-off (Amy Johnson)?
+1930
+10
+
+Name the Year: 1st written record of Scotch Whiskey appears in Exchequer Rolls of Scotland. Friar John Cor is the distiller?
+1495
+10
+
+Name the Year: 1st Zeppelin air raid over England?
+1915
+10
+
+Name the Year: 1st zeppelin raid (on Paris)?
+1916
+10
+
+Name the Year: 2 French balloonists die in world's 1st fatal aviation accident?
+1785
+10
+
+Name the Year: 2 killed, many dazed when lightning strikes Ascot racetrack, England?
+1955
+10
+
+Name the Year: 2 million gallons of molasses flood Boston, USA, drowning 21?
+1919
+10
+
+Name the Year: 2 Skylab 3 astronauts walk in space for a record 7 hours?
+1973
+10
+
+Name the Year: 2,000 die from Union Carbide poison gas emission in Bhopal, India?
+1984
+10
+
+Name the Year: 2,500 US marines invade Nicaragua; US remains until 1925?
+1912
+10
+
+Name the Year: 20,000 attend the Human Be-In, SF?
+1967
+10
+
+Name the Year: 200 die as train derails near Tcherny, Russia?
+1882
+10
+
+Name the Year: 200,000 gays march for civil rights in Washington?
+1987
+10
+
+Name the Year: 20th Space Shuttle Mission - Discovery 6 is launched?
+1985
+10
+
+Name the Year: 21st Space Shuttle Mission - Atlantis 1 is launched?
+1985
+10
+
+Name the Year: 21st Space Shuttle Mission - Atlantis 1 returns to Earth?
+1985
+10
+
+Name the Year: 22nd Space Shuttle Mission - Challenger 9 returns to Earth?
+1985
+10
+
+Name the Year: 22nd Space Shuttle Mission, Challenger 9, is launched carrying eight crewmen (2 Germans, 1 Dutch)?
+1985
+10
+
+Name the Year: 23rd Space Shuttle Mission - Atlantis 2 is launched?
+1985
+10
+
+Name the Year: 241 US Marines and sailors die in a terrorist suicide attack on their barracks in Beriut?
+1983
+10
+
+Name the Year: 24th Space Shuttle Mission - Columbia 7 is launched?
+1986
+10
+
+Name the Year: 25,000 die in Iranian Earthquake?
+1990
+10
+
+Name the Year: 25,000 women marched in NYC, demanding the right to vote?
+1915
+10
+
+Name the Year: 250 miners die in a fire at St. Paul Mine at Cherry, Ill?
+1909
+10
+
+Name the Year: 250,000 protesters peacefully demonstrate against Vietnam War?
+1969
+10
+
+Name the Year: 25th Olympic Summer games opens in Barcelona, Spain?
+1992
+10
+
+Name the Year: 26th Olympic Summer games closes in Atlanta, Georgia?
+1996
+10
+
+Name the Year: 26th Olympic Summer games opens in Atlanta, Georgia?
+1996
+10
+
+Name the Year: 26th Space Shuttle mission, Discovery 7 launched?
+1988
+10
+
+Name the Year: 28 former Jap leaders indicted in Tokyo as war criminals?
+1946
+10
+
+Name the Year: 28 nations, at war with Axis, pledge no separate peace?
+1942
+10
+
+Name the Year: 29 year old French woman gives birth to sextuplets in Paris?
+1989
+10
+
+Name the Year: 2nd abdication of Napoleon (after Waterloo)?
+1815
+10
+
+Name the Year: 2nd Balkan War ends, Treaty of Bucharest, Bulgaria loses?
+1913
+10
+
+Name the Year: 2nd Council of Constantinople (5th ecumenical council) opens?
+553
+10
+
+Name the Year: 2nd French empire established; Louis Napoleon becomes emperor?
+1852
+10
+
+Name the Year: 2nd modern Olympic games opens in Paris (lasted 5 months)?
+1900
+10
+
+Name the Year: 2nd Republic of Austria forms?
+1945
+10
+
+Name the Year: 3 cosmonauts die as Soyuz XI depressurizes during reentry?
+1971
+10
+
+Name the Year: 3 members of 2 Live Crew acquitted on obsenity charges in Florida?
+1990
+10
+
+Name the Year: 31st recorded perihelion passage of Halley's Comet?
+2061
+10
+
+Name the Year: 33 years after Soviet tanks crushed the Prague Spring, Hungary declares itself a republic?
+1989
+10
+
+Name the Year: 35 die in rioting between British & Italians at European Cup Football?
+1985
+10
+
+Name the Year: 39 German states unite under the Act of Confederation?
+1815
+10
+
+Name the Year: 4 Dutch television crew members were shot dead in El Salvador?
+1982
+10
+
+Name the Year: 4 students at Kent State University killed by Ohio National Guard during anti-war protest?
+1970
+10
+
+Name the Year: 4,500 people die when a pair of earthquakes struck NW Algeria?
+1980
+10
+
+Name the Year: 400 people mostly children killed in a gas explosion in Texas?
+1937
+10
+
+Name the Year: 41 Pilgrims signed a compact aboard Mayflower?
+1620
+10
+
+Name the Year: 41 suffragists are arrested in front of the White House?
+1917
+10
+
+Name the Year: 4th French republic established?
+1946
+10
+
+Name the Year: 4th modern Olympic games opens in London?
+1908
+10
+
+Name the Year: 5,000 drown in a storm at Ganges Delta region in India?
+1941
+10
+
+Name the Year: 5.9 earthquake in New England/Canada; last one was in 1855?
+1982
+10
+
+Name the Year: 500 Marseillaisian men sing France's national anthem for 1st time?
+1792
+10
+
+Name the Year: 582 die in aviation's worst disaster KLM 747 crashes into Pan Am 747 on a foggy runway?
+1977
+10
+
+Name the Year: 5th modern Olympic games opens in Stockholm?
+1912
+10
+
+Name the Year: 5th Space Shuttle Mission - Columbia 5 is launched (first commercial flight)?
+1982
+10
+
+Name the Year: 6,000 Armenians massacred by Turks in Kurdistan?
+1894
+10
+
+Name the Year: 6th space shuttle mission, Challenger 1 launched?
+1983
+10
+
+Name the Year: 7 top NY Mafia bosses sentenced to 100 years in prison each?
+1987
+10
+
+Name the Year: 7th modern Olympic games opens in Antwerp?
+1920
+10
+
+Name the Year: 7th recorded perihelion passage of Halley's Comet?
+218
+10
+
+Name the Year: 7th Shuttle Mission (Challenger 2) launched. Sally Ride is the first U.S. woman in space?
+1983
+10
+
+Name the Year: 7th Space Shuttle Mission (Challenger 2) returns to Earth?
+1983
+10
+
+Name the Year: 8 of the 9 planets aligned for the first time in 400 years?
+1962
+10
+
+Name the Year: 800 people killed as Kamikaze attacked USS Franklin off Japan?
+1945
+10
+
+Name the Year: 8th and last crusade is launched?
+1270
+10
+
+Name the Year: 8th recorded perihelion passage of Halley's Comet?
+295
+10
+
+Name the Year: 9 hostages and 28 prisoners die in take over a Attica State Prison?
+1971
+10
+
+Name the Year: 9-year-old Edward VI succeeds Henry VIII as king of England?
+1547
+10
+
+Name the Year: 9,000 scientists of 43 nations petition UN for nuclear test ban?
+1958
+10
+
+Name the Year: 9th modern Olympic games opens in Amsterdam?
+1928
+10
+
+Name the Year: 9th Olympic Games closes in Amsterdam?
+1928
+10
+
+Name the Year: 9th Winter Olympic games open in Innsbruck, Austria?
+1964
+10
+
+Name the Year: A 20-cent coin was authorized by U.S. Congress (It only lasted 3 years)?
+1875
+10
+
+Name the Year: A general election results in a hung Parliament in the UK. James MacDonald, of the UK Labor Party wins the follow-up election next year?
+1923
+10
+
+Name the Year: A Hatfield marries a McCoy, ending a long feud in W. VA?
+1891
+10
+
+Name the Year: A hotel in Boston becomes the first to have indoor plumbing?
+1869
+10
+
+Name the Year: A London pedestrian walks 20 miles backward and 20 miles forward in 8 hours?
+1838
+10
+
+Name the Year: A mail carrier in Edmond, Okla., shot 14 fellow workers dead?
+1986
+10
+
+Name the Year: A new war government takes office in France?
+1793
+10
+
+Name the Year: A. Bonar Law (C), British prime minister (1922-23), born in?
+1858
+10
+
+Name the Year: A.J. Cronin, English author, born in?
+1896
+10
+
+Name the Year: Aaron Burr, duelist, born in?
+1756
+10
+
+Name the Year: Abbas I Shah of Persia (1588-1629), dies at 57?
+1629
+10
+
+Name the Year: Abbie Hoffman, inventor of LSD?
+1936
+10
+
+Name the Year: Abdul-Aziz ibn Sa'ud founder of Saudi Arabia, dies (born c 1880)?
+1953
+10
+
+Name the Year: Abdullah Ibn Hussein, Jordan's King, assassinated in Jerusalem, born in?
+1951
+10
+
+Name the Year: Abolhassan Bani-Sadr was installed as president of Iran?
+1980
+10
+
+Name the Year: Abolitionist Elijah Lovejoy murdered by mob at Alton, Ill?
+1837
+10
+
+Name the Year: About midday, near-total darkness descends on much of New England to this day it's cause is still unexplained?
+1780
+10
+
+Name the Year: Abraham De Moivre French mathematician (De Moivre's theorem), born in?
+1667
+10
+
+Name the Year: Abraham Lincoln was elected to his second term as President?
+1864
+10
+
+Name the Year: Abraham Lincoln, 16th President (1861-1865), born in?
+1802
+10
+
+Name the Year: Abu Dhabi, Ajman, Dubai, Fujeira, Sharjah & Umm ak Qiwain form the United Arab Emirates?
+1971
+10
+
+Name the Year: Academy Awards ceremony telecast for the first time?
+1953
+10
+
+Name the Year: Academy of Motion Picture Arts & Sciences forms?
+1927
+10
+
+Name the Year: According to Shakespeare, this is Romeo and Juliet's wedding day?
+1302
+10
+
+Name the Year: According to South Africa, Venda gained independence. Not recognized as an independent country outside of South Africa?
+1979
+10
+
+Name the Year: Ace Frehley Bronx NY, heavy metal rocker (Kiss), born in?
+1951
+10
+
+Name the Year: Achsah Young becomes 1st woman known to be executed as a witch (MA)?
+1647
+10
+
+Name the Year: Act of Uniformity requires English to accept book of Common Prayer?
+1662
+10
+
+Name the Year: Actor Natalie Wood drowns off Santa Catalina, Calif., at 43?
+1981
+10
+
+Name the Year: Actor Tyrone Power dies of a heart attack at 44?
+1958
+10
+
+Name the Year: Actors Hume Cronyn and Jessica Tandy are married?
+1942
+10
+
+Name the Year: Ada Lovelace (future first computer programmer) meets Charles Babbage?
+1833
+10
+
+Name the Year: Adam Ant [Stuart Goddard], punk rocker (If I Strip For You), born in?
+1954
+10
+
+Name the Year: Adam Smith (in Kirkcaldy, Scotland), economist, born in?
+1723
+10
+
+Name the Year: Adelaide, South Australia founded?
+1836
+10
+
+Name the Year: Adlai E. Stevenson, statesman, born in?
+1900
+10
+
+Name the Year: Admiral Chester Nimitz, in charge of Pacific Fleet in WWII, born in?
+1885
+10
+
+Name the Year: Admiral R.E. Byrd makes first South Pole flight?
+1929
+10
+
+Name the Year: Adolf Hitler (in Braunau, Austria), dictator of Nazi Germany, born in?
+1889
+10
+
+Name the Year: Adolf Hitler and wife Eva Braun commit suicide?
+1945
+10
+
+Name the Year: Adolf Hitler named German Chancellor?
+1933
+10
+
+Name the Year: Adolph Hitler opens Berlin Olympic Games?
+1936
+10
+
+Name the Year: Adolph Sutro SF mayor, built Cliff House, railways, tunnels, born in?
+1830
+10
+
+Name the Year: Adrian IV only English pope (1154-59), dies (birth date unknown)?
+1159
+10
+
+Name the Year: Afghanistan revolution (National Day)?
+1978
+10
+
+Name the Year: Agnes Moorehead actress (Endora-Bewitched), dies at 67?
+1974
+10
+
+Name the Year: Agustin I de Iturbide, emperor of Mexico (1822-23), born in?
+1783
+10
+
+Name the Year: Akbar, Indian Mughal emperor (1556-1605), born in?
+1542
+10
+
+Name the Year: Akira Kurosawa, movie director, born in?
+1910
+10
+
+Name the Year: Al Capone convicted of tax evasion, sentenced to 11 years in prison?
+1931
+10
+
+Name the Year: Al Capone, Crime Boss, born in?
+1899
+10
+
+Name the Year: Al Hirt, trumpet player?
+1922
+10
+
+Name the Year: Al Jarreau, singer, born in?
+1940
+10
+
+Name the Year: Al Jolson jazz singer/silent film actor (Mamie, Swanee), born in?
+1886
+10
+
+Name the Year: Al Martino, singer, born in?
+1927
+10
+
+Name the Year: Al Oerter, US discus thrower, born in?
+1936
+10
+
+Name the Year: Al Pacino NYC, actor (Godfather, Carlito's Way), born in?
+1940
+10
+
+Name the Year: Al Rosen, baseball player and executive, born in?
+1924
+10
+
+Name the Year: Al Unser, auto racer (Indianapolis 500-1970, 71), born in?
+1939
+10
+
+Name the Year: Alamo is besieged by Santa Anna, entire garrison eventually killed?
+1836
+10
+
+Name the Year: Alan Alda NYC, actor (Hawkeye Pierce-MASH), born in?
+1936
+10
+
+Name the Year: Alan Alexander Milne author (Winnie-the-Pooh), born in?
+1882
+10
+
+Name the Year: Alan B. Shepard, Jr., first American in space (Freedom 7, Apollo 14)?
+1923
+10
+
+Name the Year: Alan Bates, actor, born in?
+1934
+10
+
+Name the Year: Alan Turing mathematician pioneer in computer theory (Turing Machine), born in?
+1912
+10
+
+Name the Year: Alaric sacks Rome?
+0410
+10
+
+Name the Year: Albania becomes a kingdom, with Zogu I as king?
+1928
+10
+
+Name the Year: Albania becomes a republic?
+1924
+10
+
+Name the Year: Albania liberated from Nazi control (National Day)?
+1944
+10
+
+Name the Year: Albert Ascoli Italian developed anti-tuberculosis vaccine, dies?
+1957
+10
+
+Name the Year: Albert Einstein (in Ulm, Germany), scientist, born in?
+1879
+10
+
+Name the Year: Albert Einstein arrives in the US, a refugee from Nazi Germany?
+1933
+10
+
+Name the Year: Albert Einstein, scientist, born in?
+1879
+10
+
+Name the Year: Albert Finney, actor (Oliver, The Twelve Chairs)?
+1936
+10
+
+Name the Year: Albert Hofmann, Swiss chemist, discoverer of LSD, born in?
+1906
+10
+
+Name the Year: Albert Schweitzer, doctor/humanitarian/organist (Nobel 1952), born in?
+1875
+10
+
+Name the Year: Alberto Salazar, marathon runner, born in?
+1958
+10
+
+Name the Year: Albrecht D?rer N?rnberg Germany, Renaissance painter/print maker, born in?
+1471
+10
+
+Name the Year: Albrecht von Haller, the father of experimental physiology?
+1708
+10
+
+Name the Year: Alcatraz federal pen in San Francisco Bay was closed?
+1963
+10
+
+Name the Year: Aldous Huxley, author (Brave New World), born in?
+1894
+10
+
+Name the Year: Aleister Crowley, occultist dies at 74?
+1947
+10
+
+Name the Year: Aleksandr Borodin, Russian composer?
+1833
+10
+
+Name the Year: Aleksandr Pushkin, poet, novelist, dramatist, killed in a duel?
+1837
+10
+
+Name the Year: Alessandro Manzoni, poet, born in?
+1785
+10
+
+Name the Year: Alessandro Scarlatti, Palermo Italy, composer (Tigrane), born in?
+1660
+10
+
+Name the Year: Alexander Alekhine of Russia, world chess champion (1927-46)?
+1892
+10
+
+Name the Year: Alexander Bell in New York calls Thomas Watson in San Francisco?
+1915
+10
+
+Name the Year: Alexander Calder, sculptor (mobiles, stabiles), born in?
+1898
+10
+
+Name the Year: Alexander Dubcek, head of Czech Communist Party (1968-69)?
+1921
+10
+
+Name the Year: Alexander Godunov, composer?
+1949
+10
+
+Name the Year: Alexander Graham Bell files an application for a patent for the telephone?
+1876
+10
+
+Name the Year: Alexander Graham Bell received a patent for his telephone?
+1876
+10
+
+Name the Year: Alexander Graham Bell, inventor of the telephone, born in?
+1847
+10
+
+Name the Year: Alexander Hamilton, the first Secretary of the US Treasury, born in?
+1755
+10
+
+Name the Year: Alexander I, tsar of Russia (1801-25), born in?
+1777
+10
+
+Name the Year: Alexander II Tsar of Russia (1855-81), born in?
+1818
+10
+
+Name the Year: Alexander III the Great, king of Macedonia, emperor?
+0357
+10
+
+Name the Year: Alexander Nevsky of Novgorod defeats Teutonic Knights?
+1242
+10
+
+Name the Year: Alexander Pope England, poet, born in?
+1688
+10
+
+Name the Year: Alexander S Pushkin Russia, writer (Eugene Onegin), born in?
+1799
+10
+
+Name the Year: Alexander VI divides non-Christian world between Spain & Portugal?
+1493
+10
+
+Name the Year: Alexandra Kollontai of Russia becomes 1st woman ambassador?
+1924
+10
+
+Name the Year: Alexandre Dumas, France, author (3 Musketeers), born in?
+1802
+10
+
+Name the Year: Alexandre Dumas, playwright/novelist (Camille), born in?
+1824
+10
+
+Name the Year: Alexandrine-Pieternella-Fran?oise Tinn, explored the White Nile, born in?
+1835
+10
+
+Name the Year: Alexei Kosygin, Soviet Premier, born in?
+1904
+10
+
+Name the Year: Alfonso VI of Castile captured Toledo, Spain, and brought the Moorish center of science into Christian hands?
+1085
+10
+
+Name the Year: Alfonso X (the Wise), king of Castile and Leon (1252)?
+1221
+10
+
+Name the Year: Alfonso X Spanish king (Castile & Leon), dies at 62?
+1284
+10
+
+Name the Year: Alfred Bernhard Nobel (in Stockholm, Sweden), created dynamite and Peace Prizes, born in?
+1833
+10
+
+Name the Year: Alfred Butts, inventor of the game 'Scrabble', born in?
+1899
+10
+
+Name the Year: Alfred Hitchcock dies in Calif at 80?
+1980
+10
+
+Name the Year: Alfred Hitchcock director (Psycho), dies at 80, born in?
+1980
+10
+
+Name the Year: Alfred Hitchcock knighted ____ Good Evening
+1980
+10
+
+Name the Year: Alfred Hitchcock, London, director (Psycho, Birds, Rear Window), born in?
+1899
+10
+
+Name the Year: Alfred Kinsey entomologist/sexologist (Kinsey Report), born in?
+1894
+10
+
+Name the Year: Alfred Krupp, German arms merchant, born in?
+1812
+10
+
+Name the Year: Alfred Lord Tennyson, poet laureate of England, born in?
+1809
+10
+
+Name the Year: Alfred Nobel dies; Swedish Nobel Prize ceremony on this date?
+1896
+10
+
+Name the Year: Alfred Nobel establishes Nobel prize?
+1895
+10
+
+Name the Year: Alfred Nobel invents dynamite?
+1867
+10
+
+Name the Year: Algeria gained independence after 132 years of French rule?
+1962
+10
+
+Name the Year: Algerian Revolution against French ends (Algeria gained independence on 5th July)?
+1962
+10
+
+Name the Year: Alice Cooper, musician, born in?
+1948
+10
+
+Name the Year: Alleged Nazi Kurt Waldheim elected pres of Austria?
+1986
+10
+
+Name the Year: Allen Funt, voyuer, 'Candid Camera' creator, born in?
+1914
+10
+
+Name the Year: Allen Ginsberg, poet, born in?
+1926
+10
+
+Name the Year: Allied forces invade North Africa?
+1942
+10
+
+Name the Year: Allied forces liberate Luxembourg from Nazis?
+1944
+10
+
+Name the Year: Allies invade Italy?
+1943
+10
+
+Name the Year: Allies refuse Japan's surrender offer to retain Emperor Hirohito?
+1945
+10
+
+Name the Year: Allies turned back Germans in WW I's Battle of Verdun?
+1916
+10
+
+Name the Year: Aloys Senefelder, inventor of lithography?
+1771
+10
+
+Name the Year: Alyassa Milano, actor (Who's the Boss)?
+1972
+10
+
+Name the Year: Ambose Bierce, cynic?
+1842
+10
+
+Name the Year: Ambrose Bierce Ohio, writer (The Devils Dictionary), born in?
+1842
+10
+
+Name the Year: Amedeo Avogadro, made famous by picking 6.022 x 10 ^ 23?
+1776
+10
+
+Name the Year: Amelia Earhart completes transcontinental flight?
+1932
+10
+
+Name the Year: Amelia Earhart flies from Hawaii to California (non-stop, of course)?
+1935
+10
+
+Name the Year: Amelia Earhart is first woman to cross the Atlantic?
+1928
+10
+
+Name the Year: Amelia Earhart is first woman to make solo crossing of the Atlantic?
+1932
+10
+
+Name the Year: America's first auto race starts; 6 cars, 55 miles, winner averages a blazing 7 MPH?
+1895
+10
+
+Name the Year: American and Filipino forces overwhelmed by Japanese at Bataan?
+1942
+10
+
+Name the Year: American Express founded?
+1850
+10
+
+Name the Year: American forces launched the invasion of Okinawa during WW II?
+1945
+10
+
+Name the Year: American Indian Movement occupy Wounded Knee in South Dakota?
+1973
+10
+
+Name the Year: American network ABC begins the tradition of Saturday morning kid shows?
+1950
+10
+
+Name the Year: American poet Emily Dickinson died?
+1886
+10
+
+Name the Year: American Republican Party formed at Ripon, Wisconsin?
+1854
+10
+
+Name the Year: American Society for the Prevention of Cruelty to Animals organized?
+1866
+10
+
+Name the Year: American suffragist Susan B. Anthony died?
+1906
+10
+
+Name the Year: American swimmer Mark Spitz becomes the first athlete to win seven olympic gold medals?
+1972
+10
+
+Name the Year: Amerigo Vespucci, explorer and namesake of America (lucky they didn't call it Vespuccia)?
+1454
+10
+
+Name the Year: Amilcar Cabral, worked for independence of Portuguese Africa, born in?
+1921
+10
+
+Name the Year: Amnesty International Anniversary?
+1961
+10
+
+Name the Year: Amundsen of Norway reaches the south pole?
+1911
+10
+
+Name the Year: Anatoly Karpov, USSR retains world chess championship?
+1981
+10
+
+Name the Year: Anders Celsius, scientist, invented centigrade temperature scale?
+1701
+10
+
+Name the Year: Andie MacDowell Gaffney SC, actress (Greystroke, Green Card), born in?
+1958
+10
+
+Name the Year: Andre Agassi U.S., tennis pro (US & French Open finalist-1990), born in?
+1970
+10
+
+Name the Year: Andre Michelin, France, industrialist/tire manufacturer (Michelin), born in?
+1853
+10
+
+Name the Year: Andre-Gustave Citroen, French automaker, born in?
+1878
+10
+
+Name the Year: Andre-Jacques Garnerin makes the first parachute jump from a balloon (Paris, France)?
+1797
+10
+
+Name the Year: Andre-Marie Ampere France, discovered electromagnetism, born in?
+1775
+10
+
+Name the Year: Andrea Doria, Genovese statesman, admiral?
+1466
+10
+
+Name the Year: Andrei Tarkovski, Russian director (Stalker), dies at 54?
+1986
+10
+
+Name the Year: Andres Bello, Venezuelan diplomat, author, humanist?
+1781
+10
+
+Name the Year: Andres Segovia Spanish guitarist, dies at 94?
+1987
+10
+
+Name the Year: Andres Segovia, guitarist, born in?
+1894
+10
+
+Name the Year: Andrew Carnegie, steel industrialist, library builder?
+1835
+10
+
+Name the Year: Andrew Lloyd Webber, composer (Evita, Cats, J.C. Superstar), born in?
+1948
+10
+
+Name the Year: Andrew S. Hallidie, inventor of the Cable Car, born in?
+1836
+10
+
+Name the Year: Andy Bell, rocker (Erasure), born in?
+1964
+10
+
+Name the Year: Andy Gibb singer, Australia?
+1958
+10
+
+Name the Year: Andy Griffith Mount Airy NC, actor (Andy Griffith Show, Matlock), born in?
+1926
+10
+
+Name the Year: Andy Taylor, guitarist with Duran Duran, born in?
+1961
+10
+
+Name the Year: Andy Warhol, artist, movie producer?
+1930
+10
+
+Name the Year: Angela Bowie reveals that ex husband David slept with Mick Jagger?
+1990
+10
+
+Name the Year: Angela Lansbury, actor (Sweeney Todd; Murder, She Wrote)?
+1925
+10
+
+Name the Year: Angie Dickinson (in Kulm, ND), actor?
+1931
+10
+
+Name the Year: Anglican Bishop Desmond Tutu named Nobel Peace Prize winner?
+1984
+10
+
+Name the Year: Anglo-Egyptian country of Sudan forms?
+1899
+10
+
+Name the Year: Anita Ekberg, Sweden, actress (La Dolce Vita, War and Peace), born in?
+1931
+10
+
+Name the Year: Anjelica Huston, actress, born...?
+1951
+10
+
+Name the Year: Ann Peebles Missouri, soul singer (I Can't Stand the Rain), born in?
+1947
+10
+
+Name the Year: Ann Ward Radcliffe, English Gothic novelist (The Italian), born in?
+1764
+10
+
+Name the Year: Anna Pavlova, St Petersburg Russia, ballerina/choreographer, born in?
+1882
+10
+
+Name the Year: Anna Taylor, first to go over Niagara Falls in a barrel and live?
+1901
+10
+
+Name the Year: Anne Bancroft AKA Mrs Mel Brooks, Bronx, actress (Graduate), born in?
+1931
+10
+
+Name the Year: Anne Boleyn wife of Henry VIII, beheaded?
+1536
+10
+
+Name the Year: Anne Frank, 15, (Diary of Anne Frank) is arrested by Nazis?
+1944
+10
+
+Name the Year: Annette Bening, actress (Bugsy, Valmont), born in?
+1958
+10
+
+Name the Year: Annette Funichello (in Utica, NY), mouseketeer, actor, born in?
+1942
+10
+
+Name the Year: Annette O'Toole (in Houston, TX), actor, born in?
+1952
+10
+
+Name the Year: Anni-Frid (in Lyngsdtad, Sweden), singer (ABBA)?
+1945
+10
+
+Name the Year: Annie Oakley, frontierswoman (Buffalo Bill's Wild West), born in?
+1860
+10
+
+Name the Year: Announcement of discovery of atomic element 102 - nobelium?
+1957
+10
+
+Name the Year: Ansel Adams, knows how to handle a camera, born in?
+1902
+10
+
+Name the Year: Antarctica discovered by U.S. Navy Captain Nathaniel B. Palmer?
+1820
+10
+
+Name the Year: Anthony Herman Gerard Fokker, Dutch aircraft pioneer?
+1890
+10
+
+Name the Year: Anthony Quayle England, actor (Anne of 1000 Days, Lawrence of Arabia), born in?
+1913
+10
+
+Name the Year: Anthony Quinn, Mexico, actor (Zorba the Greek, Lawrence of Arabia), born in?
+1915
+10
+
+Name the Year: Antiwar protest marches begin in 20 US cities (US-Iraq)?
+1990
+10
+
+Name the Year: Anton Bruckner (in Austria), Wagner disciple?
+1824
+10
+
+Name the Year: Anton Checkov (in Russia), writer, born in?
+1860
+10
+
+Name the Year: Anton Pavlovich, Chekhov Russia, writer (Cherry Orchard), born in?
+1860
+10
+
+Name the Year: Antonin Dvorak, Nelahozeves, Czechoslovakia, composer (New World Symphony), born in?
+1841
+10
+
+Name the Year: Antoninus Pius, Roman Emperor?
+0086
+10
+
+Name the Year: Antonio Egas Moniz, Portuguese lobotomist (Nobel 1949)?
+1874
+10
+
+Name the Year: Antonio Salieri Italy, composer (Tatare), born in?
+1750
+10
+
+Name the Year: Antonio Stradivari, violin maker, dies?
+1737
+10
+
+Name the Year: Anwar El Sadat, president of Egypt, born in?
+1918
+10
+
+Name the Year: Anwar Sadat assassinated?
+1981
+10
+
+Name the Year: Anwar Sadat became 1st Egyptian president to officially visit the US?
+1975
+10
+
+Name the Year: Anwar Sadat elected president of Egypt, succeeding Gamal Abdel Nasser?
+1970
+10
+
+Name the Year: Apollo 10 returns to Earth?
+1969
+10
+
+Name the Year: Apollo 11, first manned ship to land on the moon, is launched?
+1969
+10
+
+Name the Year: Apollo 12 is launched?
+1969
+10
+
+Name the Year: Apollo 12 returns to Earth?
+1969
+10
+
+Name the Year: Apollo 13 launched to Moon; unable to land, returns in 6 days?
+1970
+10
+
+Name the Year: Apollo 13 limps back safely, Beech-built oxygen tank no help?
+1970
+10
+
+Name the Year: Apollo 13's Beech-built oxygen tank explodes?
+1970
+10
+
+Name the Year: Apollo 15 launched to the Moon?
+1971
+10
+
+Name the Year: Apollo 15 returns to Earth?
+1971
+10
+
+Name the Year: Apollo 16 astronauts explore the surface of the moon?
+1972
+10
+
+Name the Year: Apollo 16 takes off for the Moon?
+1972
+10
+
+Name the Year: Apollo 17 returns to Earth?
+1972
+10
+
+Name the Year: Apollo 9 is launched?
+1969
+10
+
+Name the Year: Apollo 9 returns to Earth?
+1969
+10
+
+Name the Year: Apollo/Soyuz, the first US/USSR linkup in space?
+1969
+10
+
+Name the Year: Apple Computer incorporated?
+1977
+10
+
+Name the Year: Apple Computer ships its 1st Apple II?
+1977
+10
+
+Name the Year: Apple records closes down (Beatles first record company)?
+1975
+10
+
+Name the Year: Approx 2,000 students begin hunger strike in Tiananmen Square, China?
+1989
+10
+
+Name the Year: Archduke Ferdinand & wife Sofia of Austria assassinated (starts WW I)?
+1914
+10
+
+Name the Year: Aretha Franklin (in Detroit, MI), singer, born in?
+1942
+10
+
+Name the Year: Aretha Franklin arrested in Detroit for creating a disturbance?
+1969
+10
+
+Name the Year: Arganat Comm publishes report concerning the Yom Kippur War?
+1974
+10
+
+Name the Year: Argentina complains to UN about Israeli illicit transfer of Eichman?
+1960
+10
+
+Name the Year: Argentina declared its independence from Spain. (Argentinian Independance Day)?
+1816
+10
+
+Name the Year: Argentina declares independence from Napoleonic Spain (Natl Day)?
+1810
+10
+
+Name the Year: Argentina seized the disputed Falkland (Malvinas) Islands from Britain?
+1982
+10
+
+Name the Year: Argentina surrenders to Britain on S Georgia near Falkland Island?
+1982
+10
+
+Name the Year: Argentine pres. Isabel Peron was deposed by her country's military?
+1976
+10
+
+Name the Year: Aristotle Onassis, Greece, rich shipping magnate, born in?
+1906
+10
+
+Name the Year: Armand Assante, actor (Q&A, Judge Dredd)?
+1949
+10
+
+Name the Year: Armenia votes on whether to remain in the Soviet Union?
+1991
+10
+
+Name the Year: Armistice Day ____ WW I ends (at 11AM on Western Front)
+1918
+10
+
+Name the Year: Armistice divides Vietnam into two countries?
+1954
+10
+
+Name the Year: Armistice signed ending Korean War?
+1953
+10
+
+Name the Year: Armistice talks to end the Korean conflict began at Kaesong?
+1951
+10
+
+Name the Year: Army launched US's third successful satellite Explorer III?
+1958
+10
+
+Name the Year: Army of England's Protestant King William III defeats Roman Catholic King James II in Battle of the Boyne in Ireland?
+1690
+10
+
+Name the Year: Arnold Palmer golfer (PGA Golfer of the Year 1960, 1962), born in?
+1929
+10
+
+Name the Year: Arnold Schoenberg, composer, born in?
+1874
+10
+
+Name the Year: Arnold Schwarzenegger, Austria, actor (Commando, Terminator, Twins, Batman and Robin), born in?
+1947
+10
+
+Name the Year: Arnold Toynbee, historian, born in?
+1889
+10
+
+Name the Year: Around the World Autombile Race ends in Paris?
+1908
+10
+
+Name the Year: Arrest of burglars starts the Watergate affair?
+1972
+10
+
+Name the Year: Art Blakey, jazz drummer (Jazz Messengers), born in?
+1919
+10
+
+Name the Year: Art Carney, actor (Honeymooners, Harold and Maude)?
+1918
+10
+
+Name the Year: Art Garfunkel, singer/actor (Sounds of Silence, Carnal Knowledge), born in?
+1942
+10
+
+Name the Year: Arther C Clarke proposes relay satellites in geosynchronous orbit?
+1945
+10
+
+Name the Year: Arthur C. Clarke, science-fiction author (2001, Childhood's End), born in?
+1917
+10
+
+Name the Year: Arthur Earl Balfour (C), British PM (1902-05), born in?
+1848
+10
+
+Name the Year: Arthur Miller, playwright (Death of a Salesman, The Crucible), born in?
+1915
+10
+
+Name the Year: Arthur Mitchell, dancer, dance company director, born in?
+1934
+10
+
+Name the Year: Arthur Murray, dance instructor, born in?
+1895
+10
+
+Name the Year: Arthur Murray, dance instructor, dies at 95?
+1991
+10
+
+Name the Year: Arthur Penn, stage and film director, born in?
+1922
+10
+
+Name the Year: Arthur Rimbaud, France, poet/adventurer (Illuminations), born in?
+1854
+10
+
+Name the Year: Arthur Schlesinger, Jr., historian, born in?
+1917
+10
+
+Name the Year: Arthur Wellesley General/Duke of Wellington, dies at 83?
+1852
+10
+
+Name the Year: Arthur Wellsley Duke of Wellington, British PM (C) (1828-30), born in?
+1769
+10
+
+Name the Year: Artificial heart recipient Murray P. Haydon died in Louisville, KY?
+1986
+10
+
+Name the Year: Arturo Toscanini (in Italy), conductor, born in?
+1867
+10
+
+Name the Year: As he vowed, General Douglas MacArthur returned to the Philippines?
+1945
+10
+
+Name the Year: Asaph Hall discovers Mars' moon Phobos?
+1877
+10
+
+Name the Year: Asaph Hall discovers Mars's moon Deimos?
+1877
+10
+
+Name the Year: Asaph Hall, astronomer, discovered the moons of Mars, Phobos and Deimos, born in?
+1829
+10
+
+Name the Year: Assorted Russian republics form together to found the Union of Soviet Socialist Republics?
+1922
+10
+
+Name the Year: Asteroid 54, Kalypso discovered (named for goddess of silence)?
+1858
+10
+
+Name the Year: Astrological Harmonic Convergence ____ Dawn of New Age
+1987
+10
+
+Name the Year: At 10:35AM, for 12 seconds, first sustained motorized aircraft flight (36 meters) by Wright Brothers at Kitty Hawk, NC?
+1903
+10
+
+Name the Year: At approx. 1:00 am Baghdad local time, allied forces attacked, beginning Gulf War?
+1991
+10
+
+Name the Year: At Montgomery, Alabama, the Confederate States are organized?
+1861
+10
+
+Name the Year: At Waynesborough, Gen. Early's army is defeated?
+1865
+10
+
+Name the Year: Atahualpa last Incan King of Peru, murdered by Spanish conquerors?
+1533
+10
+
+Name the Year: Atlanta pharmacist John Styth Pemberton invents Coca Cola?
+1886
+10
+
+Name the Year: Atom Bomb dropped on Hiroshima by the 'Enola Gay' (Pacific Time)?
+1945
+10
+
+Name the Year: Atomic fusion (thermonuclear) bomb dropped from plane-Bikini Atoll?
+1956
+10
+
+Name the Year: Attempting to rid area of Palestine guerrillas Israel invades Lebanon?
+1978
+10
+
+Name the Year: Audie Murphy Kingston Tx, WWII hero/actor (Destry, Joe Butterfly), born in?
+1924
+10
+
+Name the Year: Audrey Hepburn (Hepburn-Ruston Edda van Heemstra), Brussels, Belguim (Breakfast at Tiffany's, My Fair Lady), born in?
+1929
+10
+
+Name the Year: August Ferdinand Mobius, mathematician, inventor of Mobius strip?
+1790
+10
+
+Name the Year: Auguste Lumiere, made 1st movie (Workers Leaving Lumiere Factory), born in?
+1862
+10
+
+Name the Year: Auguste Rodin, sculptor (Kiss)?
+1840
+10
+
+Name the Year: Australia defeats US for tennis' Davis Cup?
+1959
+10
+
+Name the Year: Australia grants self-government to Papua New Guinea?
+1973
+10
+
+Name the Year: Australia II won the America's Cup yacht race?
+1983
+10
+
+Name the Year: Australia takes control of the Cocos Islands?
+1955
+10
+
+Name the Year: Australia's 1st amateur radio satellite (Oscar 5) launched?
+1970
+10
+
+Name the Year: Australian Antarctic Territory created?
+1936
+10
+
+Name the Year: Australian Pat Cash wins Wimbledon, upsets #1 seed Ivan Lendl?
+1987
+10
+
+Name the Year: Australian Rules Football is created?
+1866
+10
+
+Name the Year: Australian wombat dies in London Zoo at 26; oldest known marsupial?
+1906
+10
+
+Name the Year: Austria annexes Bosnia and Herzegovina?
+1908
+10
+
+Name the Year: Austria becomes a republic?
+1918
+10
+
+Name the Year: Austria regains full independence after 4-power occupation?
+1955
+10
+
+Name the Year: Austrian Archduke Maximilian became emperor of Mexico?
+1864
+10
+
+Name the Year: Austro-Hungarian Empire disolves?
+1918
+10
+
+Name the Year: Author Geoffrey Chaucer dies in London?
+1400
+10
+
+Name the Year: Auto speed record set ____ 63 kph
+1898
+10
+
+Name the Year: Ava Gardner, actress, born in?
+1922
+10
+
+Name the Year: Axis forces in North Africa surrender?
+1943
+10
+
+Name the Year: Ayatollah Khomeini (86) dies from complications due to surgery leading to days of loud, hysterical mourning?
+1989
+10
+
+Name the Year: Ayatollah Ruhollah Khomeini Iran's spiritual leader, born in?
+1900
+10
+
+Name the Year: Azerbaijan SSR joins the USSR (1st time)?
+1920
+10
+
+Name the Year: Aztec calendar stone discovered in Mexico City?
+1790
+10
+
+Name the Year: B. B. King, singer, musician, born in?
+1925
+10
+
+Name the Year: B.C. 1st known prediction of a solar eclipse?
+585
+10
+
+Name the Year: B.C. Assyrians record total solar eclipse event on clay tablet?
+763
+10
+
+Name the Year: B.C. Athenians defeat second Persian invasion of Greece at Marathon?
+490
+10
+
+Name the Year: B.C. Cicero, Roman statesman, born in?
+106
+10
+
+Name the Year: B.C. Confucius (as celebrated in Taiwan), born in?
+551
+10
+
+Name the Year: B.C. Gautama Buddha (as celebrated in Japan-Kambutsue), born in?
+563
+10
+
+Name the Year: B.C. Julius Caesar, Roman emperor?
+100
+10
+
+Name the Year: B.C. Noah's ark grounded, Mt Ararat (calculated date)?
+2348
+10
+
+Name the Year: B.C. Persia defeats Spartan king Leonidas at Thermopylae?
+480
+10
+
+Name the Year: B.C. Plato (Aristocles), philosopher/writer, Athens, born in?
+427
+10
+
+Name the Year: B.C. Pompey (Gnaeus Pompeius Magnus) Rome, warrior, born in?
+106
+10
+
+Name the Year: B.C. Universe created at 8:00 PM, according to the 1650 pronouncement of Anglican archbishop James Usher?
+4004
+10
+
+Name the Year: Bab (Bah '? prophet) executed in Tabriz, Iran?
+1850
+10
+
+Name the Year: Babe Ruth hits 40th of 60 homers?
+1927
+10
+
+Name the Year: Baby Fae, who received a baboon's, heart died at a California medical center?
+1984
+10
+
+Name the Year: Bah'i New Year?
+1844
+10
+
+Name the Year: Baha'Ullah (Mirza Husayn Ali), founded Baha'i faith?
+1817
+10
+
+Name the Year: Bahamas became independent after 3 centuries of British rule?
+1973
+10
+
+Name the Year: Bahrain gained independence from Britain?
+1971
+10
+
+Name the Year: Ballet introduced to the U.S. at Bowery Theatre, New York City?
+1827
+10
+
+Name the Year: Bangladesh windstorm kills 17,000?
+1965
+10
+
+Name the Year: Bank of California opens its doors?
+1867
+10
+
+Name the Year: Bank robbery in Beirut nets $20-50 million (record)?
+1976
+10
+
+Name the Year: Bao Dai's Republic of Vietnam gained independence from France?
+1949
+10
+
+Name the Year: Barbados gained independence from Britain (National Day)?
+1966
+10
+
+Name the Year: Barbara Bain (in Chicago, IL), actor (Mission Impossible, Space: 1999), born in?
+1934
+10
+
+Name the Year: Barbara Eden (in Arizona), actor (I dream of Jeannie), born in?
+1934
+10
+
+Name the Year: Barbara Feldon (in Pittsburgh, PA), actor (Get Smart's 99), born in?
+1941
+10
+
+Name the Year: Barbara Hale, (in Dekalb, IL), actor (Perry Mason), born in?
+1922
+10
+
+Name the Year: Barbara Hale, actor (Perry Mason), born in?
+1922
+10
+
+Name the Year: Barbara Hershey (in Atlanta, Georgia), actress, born in?
+1948
+10
+
+Name the Year: Barbara Hershey (in Atlanta, Georgia), born in?
+1948
+10
+
+Name the Year: Barbara Hutton, actress?
+1912
+10
+
+Name the Year: Barbara Stanwyck, actor?
+1907
+10
+
+Name the Year: Barbra Streisand (in Brooklyn, NY), singer, actress, profile, born in?
+1942
+10
+
+Name the Year: Barings Bank disaster. Nick Leeson loses billions of Pounds Sterling in offshore investments, ruining Barings Bank?
+1995
+10
+
+Name the Year: Barney Clark, 1st to receive a permanent artificial heart, born in?
+1921
+10
+
+Name the Year: Barnum and Bailey's Greatest Show on Earth opens in Madison Square Garden in New York City?
+1881
+10
+
+Name the Year: Baroness de Laroche of Paris becomes first licensed female pilot?
+1910
+10
+
+Name the Year: Barry Manilow, singer, jingle writer (Like a Good Neighbor...)?
+1946
+10
+
+Name the Year: Barry White, singer, born in?
+1944
+10
+
+Name the Year: Bartolomeu Dias discovers Cape of Good Hope?
+1497
+10
+
+Name the Year: Baseball legend Babe Ruth died in New York at the age of 53?
+1948
+10
+
+Name the Year: Basketball rules first published?
+1892
+10
+
+Name the Year: Bastille Day-citizens of Paris storm Bastille prison?
+1789
+10
+
+Name the Year: Batman Comics hit the street?
+1939
+10
+
+Name the Year: Battle for Khafji in Saudia Arabia(begins)?
+1991
+10
+
+Name the Year: Battle of Agincourt, Welsh longbow defeats the armored knight?
+1415
+10
+
+Name the Year: Battle of Aisne begins between Germans and French during WW I?
+1914
+10
+
+Name the Year: Battle of Alcantara, Spain defeats Portugal?
+1580
+10
+
+Name the Year: Battle of Alcazarquivir, Morrocans defeat Portugese?
+1578
+10
+
+Name the Year: Battle of Alcolea, causes Queen Isabella II of Spain to flee to France?
+1868
+10
+
+Name the Year: Battle of Amiens ends in WW I, Allies beat Germans?
+1918
+10
+
+Name the Year: Battle of Angora (Ankara)-Tatars defeat Turkish Army?
+1402
+10
+
+Name the Year: Battle of Auray, English forces defeat French at Brittany?
+1364
+10
+
+Name the Year: Battle of Boyac ; Bolivar defeats Spanish in Colombia?
+1819
+10
+
+Name the Year: Battle of Britain began as Germany launched air attacks?
+1940
+10
+
+Name the Year: Battle of Chattanooga begins?
+1863
+10
+
+Name the Year: Battle of Corinth ends?
+1862
+10
+
+Name the Year: Battle of Dupplin Moor (in Scotland)?
+1332
+10
+
+Name the Year: Battle of Dupplin Moor; Scottish dynastic battle?
+1332
+10
+
+Name the Year: Battle of Eniwetok Atoll (U.S. victory on Feb 22)?
+1944
+10
+
+Name the Year: Battle Of Falkirk, Scotland?
+1746
+10
+
+Name the Year: Battle of Flodden Fields; English defeat James IV of Scotland?
+1513
+10
+
+Name the Year: Battle of France begins in WW II?
+1940
+10
+
+Name the Year: Battle of Hastings, in which William the Conqueror wins England?
+1066
+10
+
+Name the Year: Battle of Las Navas de Tolosa; end of Moslem power in Spain?
+1212
+10
+
+Name the Year: Battle of Midway begins. First naval battle won in the air?
+1942
+10
+
+Name the Year: Battle of Midway turning point in war in Pacific began?
+1942
+10
+
+Name the Year: Battle of Poltava; Russians defeat Swedes?
+1709
+10
+
+Name the Year: Battle of Puebla; Mexicans defeat Maximilian's forces (Cinco de Mayo)?
+1867
+10
+
+Name the Year: Battle of San Jacinto, in which Texas wins independence from Mexico?
+1836
+10
+
+Name the Year: Battle of Sekigahara sets Tokugawa clan as Japan's rulers (shoguns)?
+1600
+10
+
+Name the Year: Battle of Somme, ends?
+1918
+10
+
+Name the Year: Battle of the Ages-Heavyweight champ Evander Hollyfield beats 42 year old George Foreman?
+1991
+10
+
+Name the Year: Battle of the Bulge begins?
+1944
+10
+
+Name the Year: Battle of Vertieres, in which Haitians defeat French?
+1803
+10
+
+Name the Year: Battle of Waterloo ____ British and Prussians defeat Napoleon
+1815
+10
+
+Name the Year: Bavaria proclaims itself a republic?
+1918
+10
+
+Name the Year: BBC began domestic radio service?
+1922
+10
+
+Name the Year: BC Alexander of Macedon defeats Persian army at Gaugamela?
+331
+10
+
+Name the Year: BC Aristotle dies of indigestion?
+322
+10
+
+Name the Year: BC Babylon falls to Cyrus the Great of Persia?
+539
+10
+
+Name the Year: BC Euripides, ancient Greek playwright (Trojan Women) (or 480 BC), born in?
+484
+10
+
+Name the Year: BC Phidippides runs first marathon, to announce the victory of Sparta over Persia?
+490
+10
+
+Name the Year: Beatle John Lennon married Yoko Ono in Gibraltar?
+1969
+10
+
+Name the Year: Beatle Paul McCartney married Linda Eastman in London?
+1969
+10
+
+Name the Year: Beatle Ringo Starr marries actress Barbara Bach?
+1981
+10
+
+Name the Year: Beatle's Shea Stadium concert?
+1965
+10
+
+Name the Year: Beatles 1st appearance in Billboard Chart (I Want to Hold Your Hand-#35)?
+1964
+10
+
+Name the Year: Beatles meet Rolling Stones for 1st time?
+1963
+10
+
+Name the Year: Beatles receive their 1st silver disc (Please Please Me)?
+1963
+10
+
+Name the Year: Beatles release Please Please Me & Ask Me Why?
+1963
+10
+
+Name the Year: Beatles replace Pete Best with Ringo Starr?
+1962
+10
+
+Name the Year: Beatles second appearance on Ed Sullivan?
+1964
+10
+
+Name the Year: Beatles sign a petition in The Times to legalize marijuana?
+1967
+10
+
+Name the Year: Beatles' Helter Skelter is played at the Charles Manson trial?
+1971
+10
+
+Name the Year: Beatles' Second album goes #1 & stays #1 for for 5 weeks?
+1964
+10
+
+Name the Year: Beatles' third appearance on Ed Sullivan?
+1964
+10
+
+Name the Year: Beatrix Potter England, children's author (Tale of Peter Rabbit), born in?
+1866
+10
+
+Name the Year: Bechuanaland gained independence from England, becomes Botswana?
+1966
+10
+
+Name the Year: Beethoven's Ninth Symphony presented for first time?
+1824
+10
+
+Name the Year: Beijing students take over Tiananmen Square in China?
+1989
+10
+
+Name the Year: Bela Lugosi, horror actor (Dracula, Body Snatcher), born in?
+1884
+10
+
+Name the Year: Belgium annexes Congo Free State?
+1908
+10
+
+Name the Year: Belgium gained independence from Netherland, Leopold I made king?
+1831
+10
+
+Name the Year: Belgium revolts against Netherlands?
+1830
+10
+
+Name the Year: Belinda Carlisle, (GoGos lead singer, Heaven on Earth), born in?
+1958
+10
+
+Name the Year: Belize gained independence from Britain (National Day)?
+1981
+10
+
+Name the Year: Bell labs announces 1st solar battery (NYC)?
+1954
+10
+
+Name the Year: Bell Labs tests coaxial cable for TV use?
+1936
+10
+
+Name the Year: Belle Starr, entertainer of the wild west, born in?
+1848
+10
+
+Name the Year: Ben Vereen, dancer, actor, singer, born in?
+1946
+10
+
+Name the Year: Benazir Bhutto 1st female leader of a Moslem nation (Pakistan), born in?
+1953
+10
+
+Name the Year: Benazir Bhutto named 1st female PM of a Moslem country (Pakistan)?
+1988
+10
+
+Name the Year: Benedict XV, 258th Roman Catholic pope (1914-22)?
+1854
+10
+
+Name the Year: Benelux treaty signed by Belgium, Netherlands & Luxembourg?
+1958
+10
+
+Name the Year: Benigno Aquino, Jr., Philippine opposition leader; assassinated?
+1932
+10
+
+Name the Year: Benin (Dahomey) gained independence from France?
+1960
+10
+
+Name the Year: Benito Juarez, Mexician leader, born in?
+1806
+10
+
+Name the Year: Benito Mussolini (Il Duce) becomes premier of Italy?
+1922
+10
+
+Name the Year: Benito Mussolini (Il Duce), Italian facist dictator?
+1883
+10
+
+Name the Year: Benito Mussolini dismissed as premier of Italy during WW II?
+1943
+10
+
+Name the Year: Benito Mussolini Fascist leader & mistress captured, tried, & shot?
+1945
+10
+
+Name the Year: Benito Mussolini founded his Fascist movement in Milan, Italy?
+1919
+10
+
+Name the Year: Benito Mussolini takes control of Italy's government?
+1922
+10
+
+Name the Year: Benjamin Britten, English composer?
+1913
+10
+
+Name the Year: Benjamin Disraeli, British Statesman, born in?
+1804
+10
+
+Name the Year: Benjamin Franklin, famous kite flyer, statesman, wit, born in?
+1706
+10
+
+Name the Year: Benjamin Kubelski (AKA Jack Benny), actor, comedian, born in?
+1894
+10
+
+Name the Year: Benjamin Spock, pediatrician/author (Common Sense Book of Baby Care), born in?
+1903
+10
+
+Name the Year: Benny Goodman the clarinet playing King of Swing, dies in NY at 77?
+1986
+10
+
+Name the Year: Benny Goodman, bandleader, king of swing, born in?
+1909
+10
+
+Name the Year: Benny Hill, Southampton England, comedian (Benny Hill Show), born in?
+1924
+10
+
+Name the Year: Berlin Wall opens in East Germany?
+1989
+10
+
+Name the Year: Bernadette Peters (in Queens, New York), actress, Tony winner, born in?
+1948
+10
+
+Name the Year: Bernard MacFadden, publisher (Physical Culture, True Romances), born in?
+1868
+10
+
+Name the Year: Bernardo O'Higgins, won independence for Chile, born in?
+1778
+10
+
+Name the Year: Bertolt Brecht, born in?
+1898
+10
+
+Name the Year: Bertrand Russell England, mathematician/philosopher (Nobel 1950), born in?
+1872
+10
+
+Name the Year: Beryl Burton UK, won record (7) women's cycling titles, born in?
+1937
+10
+
+Name the Year: Betsy Johnson fashion designer (1971 Winnie Award), born in?
+1942
+10
+
+Name the Year: Bette Davis dies at 81?
+1989
+10
+
+Name the Year: Bette Davis Lowell Mass, famous eyes (Of Human Bondage, Jezebel), born in?
+1908
+10
+
+Name the Year: Bette Midler, singer/actress (Do You Want to Dance?), born in?
+1945
+10
+
+Name the Year: Betty Boop debutes in Max Fleischer's animated cartoon Dizzy Dishes?
+1930
+10
+
+Name the Year: Betty Boop, animation, created?
+1930
+10
+
+Name the Year: Betty Cuthbert Australia 100m/200m/400m dash (Olympic-gold-1956, 64) , born in?
+1938
+10
+
+Name the Year: Betty Grable (in St. Louis, MO), actor?
+1916
+10
+
+Name the Year: Bhadwan Shree Rajneesh, Indian guru, dies at 58?
+1990
+10
+
+Name the Year: Bicycle with a back-pedal brake patented?
+1889
+10
+
+Name the Year: Big earthquake in Long Beach (W.C. Fields was making a movie when it struck and the cameras kept running)?
+1933
+10
+
+Name the Year: Big Tea Party in Boston Harbor. Indians welcome. British unwelcome?
+1773
+10
+
+Name the Year: Bilbo Baggins (in Shire Reconning), born in?
+1290
+10
+
+Name the Year: Bill Bixby, SF Calif, actor (Incredible Hulk, My Favorite Martian), born in?
+1934
+10
+
+Name the Year: Bill Clinton elected US President?
+1992
+10
+
+Name the Year: Bill Haley Mich, (andthe Comets-Rock Around the Clock), born in?
+1925
+10
+
+Name the Year: Bill Murray Evanston Ill, comedian (SNL, What About Bob, Stripes), born in?
+1950
+10
+
+Name the Year: Billie Holiday, blues singer?
+1915
+10
+
+Name the Year: Billie Jean King (in California), tennis pro?
+1943
+10
+
+Name the Year: Billy Crystal, comedian, born in?
+1947
+10
+
+Name the Year: Billy Dee Williams, actor (Star Wars, Batman)?
+1937
+10
+
+Name the Year: Billy Idol, rocker (White Wedding)?
+1955
+10
+
+Name the Year: Billy Jean King beats Bobby Riggs in battle-of-sexes tennis match?
+1973
+10
+
+Name the Year: Billy Joel (in the Bronx, NY), singer, pianoman?
+1949
+10
+
+Name the Year: Billy the Kid (William H. Bonney), criminal?
+1859
+10
+
+Name the Year: Billy Wilder movie director (Some Like It Hot, Apartment, Stalag 17), born in?
+1906
+10
+
+Name the Year: Bing Crosby (claimed this to be his Birthdate: True Date May 3 1903), crooner/actor (Going My Way), born in?
+1904
+10
+
+Name the Year: Bing Crosby dies in Madrid, Spain?
+1977
+10
+
+Name the Year: BINGO invented by Edwin S Lowe?
+1929
+10
+
+Name the Year: Birth of Charles W. Fry, the English musician who, along with his three sons, formed the first Salvation Army brass band?
+1837
+10
+
+Name the Year: Bjorn Borg, tennis player, born in?
+1956
+10
+
+Name the Year: Bjorn Ulvaeus, rock vocalist/guitarist (ABBA), born in?
+1945
+10
+
+Name the Year: Black Friday ____ Wall Street panics after Gould and Fisk attempt to corner gold
+1869
+10
+
+Name the Year: Blaise Pascal, mathematician, born in?
+1623
+10
+
+Name the Year: Blake Edwards, writer/director (Breakfast at Tiffany's), born in?
+1922
+10
+
+Name the Year: Blizzard struck the northeastern United States. 400 people died?
+1888
+10
+
+Name the Year: Bloody coup overthrows government of South Yemen?
+1986
+10
+
+Name the Year: Bo Derek (in Long Beach, CA), actor? (10; Tarzan, Ape Man)?
+1956
+10
+
+Name the Year: Bob Crane actor (Hogan's Heroes), murdered at 59?
+1978
+10
+
+Name the Year: Bob Crane Waterbury Ct, actor (Hogan's Heroes), born in?
+1928
+10
+
+Name the Year: Bob Dylan cancels appearance on Ed Sullivan?
+1963
+10
+
+Name the Year: Bob Dylan walks off Ed Sullivan Show?
+1963
+10
+
+Name the Year: Bob Dylan's 1st appearance at Folk City, Greenwich Village?
+1911
+10
+
+Name the Year: Bob Dylan's 1st NY performance?
+1961
+10
+
+Name the Year: Bob Hope makes his first TV appearance?
+1950
+10
+
+Name the Year: Bob Hoskins, Suffolk, England, actor (Brazil, Who Framed Roger Rabbit?), born in?
+1942
+10
+
+Name the Year: Bob Marley reggae singer, dies at 36 of brain & lung cancer?
+1981
+10
+
+Name the Year: Bob Newhart Oak Park Ill, actor/comedian (Bob Newhart Show), born in?
+1929
+10
+
+Name the Year: Bobby Brown, singer, born in?
+1969
+10
+
+Name the Year: Bobby Brown, singer, married to Whitney Houston, born in?
+1969
+10
+
+Name the Year: Bobby Fischer, chess player, born in?
+1943
+10
+
+Name the Year: Bobby Sands IRA activists dies in his 66th day of his hunger strike?
+1981
+10
+
+Name the Year: Bobby Unser, auto racer, born in?
+1934
+10
+
+Name the Year: Body of assassinated Indian PM Indira Gandhi cremated?
+1984
+10
+
+Name the Year: Body of Dr. Josef Mengele, Nazi war criminal, located and exhumed?
+1985
+10
+
+Name the Year: Body of JFK moved from a temporary grave to a permanent memorial?
+1967
+10
+
+Name the Year: Boeing 767 sets nonstop commercial flight distance record, Seattle, U.S.A. to Narobi, Kenya?
+1990
+10
+
+Name the Year: Bolivia gained independence from Spain (National Day)?
+1825
+10
+
+Name the Year: Bolshevik revolution begins?
+1917
+10
+
+Name the Year: Bolsheviks overthrew Russian govt in St Petersburg?
+1914
+10
+
+Name the Year: Bomb explodes in U.S. Capitol, causing heavy damage but no injuries?
+1983
+10
+
+Name the Year: Bombs planted by Irish Republican Army explode in 2 London parks?
+1982
+10
+
+Name the Year: Bond (U.S.) and Lassell (England) independently discover Hyperion?
+1848
+10
+
+Name the Year: Bonnie and Clyde shot in Louisana ambush?
+1934
+10
+
+Name the Year: Bonnie Raitt (in Los Angeles, CA), guitarist, singer?
+1949
+10
+
+Name the Year: Bono aka Paul Hauson, rocker (U2), born in?
+1960
+10
+
+Name the Year: Boris Karloff, actor (Frankenstein, Isle of the Dead)?
+1887
+10
+
+Name the Year: Boris Spassky, chess player, born in?
+1937
+10
+
+Name the Year: Boris Yegorov, Soviet cosmonaut (Voskhod 1)?
+1937
+10
+
+Name the Year: Borman and Lovell Splash down in Atlantic. Ends two week Gemini VII flight?
+1965
+10
+
+Name the Year: Borman, Lovell and Anders first men to orbit moon?
+1968
+10
+
+Name the Year: Botswana gained independence from Britain (National Day)?
+1966
+10
+
+Name the Year: Bourbon Whiskey is first distilled from corn by Reverend Elijah Craig in Bourbon County, Kentucky?
+1789
+10
+
+Name the Year: Bowling ball invented?
+1862
+10
+
+Name the Year: Brasilia becomes the capital of Brazil?
+1960
+10
+
+Name the Year: Brazil abolishes slavery?
+1888
+10
+
+Name the Year: Brazil beats Italy 4-1 in Football's 9th World Cup at Mexico City?
+1970
+10
+
+Name the Year: Brazil beats Sweden 5-2 in Football's 6th World Cup at Stockholm?
+1958
+10
+
+Name the Year: Brazil declares independence from Portugal (National Day)?
+1822
+10
+
+Name the Year: Brenda Vaccaro (in Brooklyn, NY) actor (Midnight Cowboy)?
+1939
+10
+
+Name the Year: Brian Dennehy, actor (Silverado, Cocoon, Gorky Park), born in?
+1940
+10
+
+Name the Year: Brian Eno, singer, songwriter, born in?
+1948
+10
+
+Name the Year: Brian Jones founder of the Rolling Stones, drowns?
+1969
+10
+
+Name the Year: Brian Jones of the Rolling Stones drowns to death at 25?
+1969
+10
+
+Name the Year: Brian Keith, actor?
+1921
+10
+
+Name the Year: Brian Mulroney, Prime Minister of Canada, born in?
+1939
+10
+
+Name the Year: Brian Mydland, keyboardist (Grateful Dead), dies at 38?
+1990
+10
+
+Name the Year: Brigham Young marries number 27, his final wife?
+1868
+10
+
+Name the Year: Brightest known super-nova (Crab Nebula) starts shining (23 days)?
+1054
+10
+
+Name the Year: Brigitte Nielsen actress (Red Sonja, Rocky IV, Domino), born in?
+1963
+10
+
+Name the Year: Britain abolishes slavery in colonies; 700,000 slaves freed?
+1833
+10
+
+Name the Year: Britain annexes Cyprus?
+1914
+10
+
+Name the Year: Britain arrested Indian nationalist Mohandas K. Gandhi?
+1942
+10
+
+Name the Year: Britain bans broadcast interviews with IRA members?
+1988
+10
+
+Name the Year: Britain celebrates golden jubilee of Queen Victoria?
+1887
+10
+
+Name the Year: Britain declares war against Holland?
+1780
+10
+
+Name the Year: Britain declares war on Germany. France follows 6 hours later quickly joined by Australia, New Zealand, South Africa and Canada?
+1939
+10
+
+Name the Year: Britain ends suspects right to remain silent in crackdown on IRA?
+1988
+10
+
+Name the Year: Britain evacuated New York, their last military position in U.S?
+1783
+10
+
+Name the Year: Britain grants independence to the crown colony of Cyprus?
+1960
+10
+
+Name the Year: Britain grants internal self-government to Swaziland?
+1967
+10
+
+Name the Year: Britain grants Royal Letters Patent to New Zealand?
+1917
+10
+
+Name the Year: Britain introduced the concept of voting by secret ballot?
+1872
+10
+
+Name the Year: Britain invades Egypt?
+1882
+10
+
+Name the Year: Britain occupies the Cape of Good Hope?
+1806
+10
+
+Name the Year: Britain opened its offensive on the Western front during WW I?
+1918
+10
+
+Name the Year: Britain proclaims protectorate over kingdom of Tonga?
+1900
+10
+
+Name the Year: Britain's House of Commons voted to nationalize steel industry?
+1948
+10
+
+Name the Year: Britain's Princess Anne marries a commoner, Capt. Mark Phillips?
+1973
+10
+
+Name the Year: Britain's Princess Elizabeth, marries Duke Philip Mountbatten in London's Westminster Abbey?
+1947
+10
+
+Name the Year: Britain's Queen Elizabeth and Prince Philip visit the White House?
+1957
+10
+
+Name the Year: Britain's Queen Victoria crowned in Westminster Abbey?
+1838
+10
+
+Name the Year: Britian and US signed treaty on seal hunting in Bering Sea?
+1892
+10
+
+Name the Year: British aircraft carrier Ark Royal sank in Mediterranean?
+1941
+10
+
+Name the Year: British and French defeat Russians at Alma, in the Crimea?
+1854
+10
+
+Name the Year: British and French workers meet in English Channel's tunnel (Chunnel)?
+1990
+10
+
+Name the Year: British annex Natal (South Africa)?
+1900
+10
+
+Name the Year: British arrest Irish nationalist Daniel O'Connell for conspiracy?
+1843
+10
+
+Name the Year: British Broadcasting Corp. began transmitting overseas?
+1932
+10
+
+Name the Year: British Broadcasting Corporation (BBC) established?
+1922
+10
+
+Name the Year: British complete miracle of Dunkirk by evacuating 300,000 troops?
+1940
+10
+
+Name the Year: British Empire Day?
+1945
+10
+
+Name the Year: British Guiana gained independence, takes the name Guyana?
+1966
+10
+
+Name the Year: British House of Commons passes Irish Home Rule?
+1914
+10
+
+Name the Year: British humor magazine `Punch' first published?
+1841
+10
+
+Name the Year: British naval forces raid Nazi occupied French port of St. Nazaire?
+1942
+10
+
+Name the Year: British New Hebrides becomes independent and takes name Vanuatu?
+1980
+10
+
+Name the Year: British PM Chamberlain visits Hitler at Berchtesgarden?
+1938
+10
+
+Name the Year: British Royal family changes its name from Hanover to Windsor?
+1917
+10
+
+Name the Year: British troops capture Addis Ababa Ethiopia?
+1944
+10
+
+Name the Year: British troops intervened militarily in Northern Ireland?
+1969
+10
+
+Name the Year: British under Adm Horatio Nelson beat French at Battle of Nile?
+1798
+10
+
+Name the Year: Brooke Shields (in New York City), actor, model, born in?
+1965
+10
+
+Name the Year: Brooklyn's Clarence Birdseye puts the first individually packaged frozen foods on sale, in Springfield, Mass?
+1930
+10
+
+Name the Year: Brooklyn's last day as a city, it incorporates into NYC (1/1/1898)?
+1897
+10
+
+Name the Year: Bruce Willis, actor (Moonlighting, Die Hard), born in?
+1955
+10
+
+Name the Year: Brunei gains complete independence from Britain?
+1983
+10
+
+Name the Year: Bruno Hauptmann, convicted Lindbergh baby killer, executed?
+1936
+10
+
+Name the Year: BSD UNIX 3.0 released?
+1980
+10
+
+Name the Year: Buckingham Palace announces separation of Princess Margaret?
+1976
+10
+
+Name the Year: Buddy Ebsen, actor (Beverly Hillbillies, Barnaby Jones), born in?
+1908
+10
+
+Name the Year: Buddy Holly singer (Peggy Sue, That'll Be the Day), born in?
+1936
+10
+
+Name the Year: Budweiser rocket car reaches 1190 kph (record for wheeled vehicle)?
+1979
+10
+
+Name the Year: Buffalo Bill Cody presents 1st wild west show, North Platte, Nebraska, U.S.A...?
+1883
+10
+
+Name the Year: Building of the Berlin Wall begins?
+1961
+10
+
+Name the Year: Bulgaria declares independence from Turkey, Ferdinand I becomes Tsar?
+1908
+10
+
+Name the Year: Bulgaria liberated from Nazi control (National Day)?
+1944
+10
+
+Name the Year: Burgess Meredith, actor (Batman, Rocky)?
+1908
+10
+
+Name the Year: Burl Ives Hunt Ill, folk singer/actor (Cat on a Hot Tin Roof), born in?
+1909
+10
+
+Name the Year: Burmese National Day?
+1948
+10
+
+Name the Year: Burt Bacharach composer (I'll Never Fall in Love Again), born in?
+1929
+10
+
+Name the Year: Burt Lancaster NYC, actor (From Here to Eternity, Elmer Gantry), born in?
+1913
+10
+
+Name the Year: Burt Reynolds, actor, born in?
+1936
+10
+
+Name the Year: Burt Ward LA Calif, actor (Robin-Batman T.V. Show), born in?
+1945
+10
+
+Name the Year: Burundi and Rwanda gain independence from Belgium (National Days)?
+1962
+10
+
+Name the Year: Bush and Gorbachev meet in Helsinki and urge Iraq to leave Kuwait?
+1990
+10
+
+Name the Year: Butch Cassidy, famous entrepreneur?
+1866
+10
+
+Name the Year: By 2/3 majority, Panamanians vote to approve the new Canal treaties?
+1977
+10
+
+Name the Year: By a vote of 37-12, Israel becomes 59th member of UN?
+1949
+10
+
+Name the Year: By treaty of Lyons, French cede Naples to Ferdinand of Aragon?
+1504
+10
+
+Name the Year: C Battle of Actium; Octavian defeats Mark Antony and becomes Emperor Augustus?
+31 B
+10
+
+Name the Year: C Cleopatra 7th and most famous queen of Egypt, commits suicide?
+30 B
+10
+
+Name the Year: C Octavian (Augustus Caesar), first Roman emperor, born in?
+63 B
+10
+
+Name the Year: C Virgil (Publius Vergilius Maro) (Mantua, Italy), poet (Aeneid), born in?
+70 B
+10
+
+Name the Year: C.S. Forester, historical novelist, created Horatio Hornblower?
+1899
+10
+
+Name the Year: C.S.A. President Jefferson Davis is inaugurated at Montgomery, AL?
+1861
+10
+
+Name the Year: Calagary Flames become 1st NHL team to play in USSR, win 4-2?
+1989
+10
+
+Name the Year: Calais reoccupied by Allies?
+1944
+10
+
+Name the Year: California University makes the Dead Sea Scrolls public?
+1991
+10
+
+Name the Year: Calvin Coolidge, 30th US President, died?
+1933
+10
+
+Name the Year: Calvin Klein, clothes designer?
+1942
+10
+
+Name the Year: Cambodia (now Kampuchea) gained independence within French Union?
+1953
+10
+
+Name the Year: Camera exposure meter patented, W. N. Goodwin?
+1932
+10
+
+Name the Year: Cammie Lusko LA Calif, Guinness' World Strongest Woman, born in?
+1958
+10
+
+Name the Year: Camp David peace treaty between Israel and Egypt?
+1979
+10
+
+Name the Year: Canada's North West Mounted Police force (The Mounties) first established?
+1873
+10
+
+Name the Year: Canadian Army troops arrive in North Africa?
+1943
+10
+
+Name the Year: Canadian Football League plays first game (Winnipeg 29, Edmonton 21)?
+1958
+10
+
+Name the Year: Candice Bergen (in Beverly Hills), actor (Murphy Brown)?
+1946
+10
+
+Name the Year: Cape Cod was discovered by the English navigator Batholomew Gosnold?
+1602
+10
+
+Name the Year: Cape Verde Is gain independence after 500 years of Portuguese rule?
+1975
+10
+
+Name the Year: Capt Cook arrives in New South Wales?
+1770
+10
+
+Name the Year: Capt James Cook stumbles over Sandwich Islands (Hawaiian Islands)?
+1778
+10
+
+Name the Year: Capt. Cook passes through Bering Strait?
+1778
+10
+
+Name the Year: Captain Cook discovers Maui (in the Sandwich Islands)?
+1778
+10
+
+Name the Year: Captain Cook runs aground on Australian Great Barrier Reef?
+1770
+10
+
+Name the Year: Captain Kidd is hanged in London after convicted of piracy and murder?
+1701
+10
+
+Name the Year: Caracalla [Marcus Aureiius Antoniius], Roman emperor, dies?
+217
+10
+
+Name the Year: Caracalla Roman emperor (211-17), born in?
+188
+10
+
+Name the Year: Caravaggio Italy, painter (or 1573), born in?
+1573
+10
+
+Name the Year: Cardinal A Jean de Plessicide de Richelieu, King Louis XIII of France's chief minister, born in?
+1585
+10
+
+Name the Year: Cardinal Albino Luciani of Venice becomes Pope John Paul I?
+1978
+10
+
+Name the Year: Cardinal Giacome della Chiesa becomes Pope Benedict XV?
+1914
+10
+
+Name the Year: Cardinal Jules Mazarin, the chief minister of France, died?
+1661
+10
+
+Name the Year: Cardinal Montini elected Pope Paul VI, 262nd head of RC Church?
+1963
+10
+
+Name the Year: Cardinal Thomas Wolsey adviser to England's King Henry VIII, died?
+1530
+10
+
+Name the Year: Cargo airlines first licensed by US Civil Aeronautics Board?
+1949
+10
+
+Name the Year: Carl Friedrich Gauss, one of the greatest mathematician of all time?
+1777
+10
+
+Name the Year: Carl Lewis duplicates Jesse Owens' 1936 feat, wins 4 Olym track golds?
+1984
+10
+
+Name the Year: Carl Lewis runs 100m in 9.86 seconds?
+1991
+10
+
+Name the Year: Carl Lewis US, olympic track and field star (Gold-1984, 1988), born in?
+1961
+10
+
+Name the Year: Carl Lewis wins gold medal in 100-meter dash at LA Summer Olympics?
+1984
+10
+
+Name the Year: Carl Ritter, cofounder of modern science of geography, born in?
+1779
+10
+
+Name the Year: Carl Sagan, NYC, astronomer/author/professor (Cosmos, Broca's Brain), born in?
+1934
+10
+
+Name the Year: Carlos Saavedra Lamas, Argentine jurist (Nobel Peace Prize 1936)?
+1878
+10
+
+Name the Year: Carlos Salinas de Gortari elected president of Mexico?
+1988
+10
+
+Name the Year: Carlos Santana Mexico, musician (Santana-Black Magic Woman), born in?
+1947
+10
+
+Name the Year: Carnegie Hall opens in NYC with Tchaikovsky as guest conductor?
+1891
+10
+
+Name the Year: Carol Channing, actress (Gentlemen Prefer Blondes), born in?
+1921
+10
+
+Name the Year: Carole Bayer Sager (in New York), wife of Burt Bachrach, born in?
+1947
+10
+
+Name the Year: Carolyn Jones actress (Morticia-Addams Family), dies at 54 of cancer?
+1983
+10
+
+Name the Year: Carolyn Jones Amarillo Texas, actress (Morticia-Addams Family), born in?
+1929
+10
+
+Name the Year: Carrie Fisher (in Beverly Hills), actor (Star Wars, Blues Brothers), born in?
+1956
+10
+
+Name the Year: Carry Nation, scourge of barkeepers and drinkers?
+1846
+10
+
+Name the Year: Cary Elwes, actor (Glory, Princess Bride, Robin Hood - Men In Tights), born in?
+1962
+10
+
+Name the Year: Cary Grant actor (Arsenic & Old Lace, North by Northwest), born in?
+1904
+10
+
+Name the Year: Cary Grant, dies in Davenport, Iowa, at 82?
+1986
+10
+
+Name the Year: Casey Jones, locomotive engineer, born in?
+1864
+10
+
+Name the Year: Casey Kasem Detroit, radio personality (American Top 40), born in?
+1932
+10
+
+Name the Year: Cassini reports seeing a satellite orbiting Venus?
+1686
+10
+
+Name the Year: Cassius Clay (aka Muhammad Ali) has first Madison Square Garden fight?
+1967
+10
+
+Name the Year: Cassius Clay beats Sonny Liston for the heavyweight championship?
+1964
+10
+
+Name the Year: Cassius Clay captures the olympic light heavyweight gold medal?
+1960
+10
+
+Name the Year: Cat Stevens aka Yusuf Islam, rocker (Peace Train, Father and Son), born in?
+1947
+10
+
+Name the Year: Catherine de Medici, Queen of France, died?
+1589
+10
+
+Name the Year: Catherine Deneuve (in Paris, France), (Repulsion), born in?
+1943
+10
+
+Name the Year: Catherine II (the Great) empress of Russia (1762-96), born in?
+1729
+10
+
+Name the Year: Catherine of Aragon, first wife of Henry VIII, born in?
+1485
+10
+
+Name the Year: Catholic countries switch to Gregorian calendar cut 10 prior days?
+1582
+10
+
+Name the Year: Cavern Club opens on Matthews Street in England?
+1957
+10
+
+Name the Year: Cease fire between Iran and Iraq takes effect after 8 years of war?
+1988
+10
+
+Name the Year: Cecil B deMille Mass, directed God (10 Commandments), born in?
+1881
+10
+
+Name the Year: Cecil Blount de Mille, producer (10 Commandments), dies 77?
+1959
+10
+
+Name the Year: Celluloid patented by John Wesley Hyatt, Albany, NY?
+1869
+10
+
+Name the Year: Central African Rep made autonomous member of French Commonwealth (Nat'l Day)?
+1958
+10
+
+Name the Year: Central African Republic and Chad proclaim independence from France?
+1960
+10
+
+Name the Year: Cesar Franck (in Belgium), composer, born in?
+1822
+10
+
+Name the Year: Cesar Romero, actor who played the Joker in the TV version of Batman, born in?
+1907
+10
+
+Name the Year: Ceylon (now Sri Lanka) gained independence from Britain?
+1948
+10
+
+Name the Year: Ceylon becomes Republic of Sri Lanka as its constitution is ratified?
+1972
+10
+
+Name the Year: Chad declares independence?
+1960
+10
+
+Name the Year: Chai Kai-shek leader (Taiwan), dies?
+1975
+10
+
+Name the Year: Chaim Herzog elected president of Israel?
+1983
+10
+
+Name the Year: Chaim Weizmann 1st pres of Israel, dies at 57?
+1952
+10
+
+Name the Year: Chaim Weizmann becomes the first Israeli president?
+1949
+10
+
+Name the Year: Chaim Weizmann, Israeli statesman?
+1874
+10
+
+Name the Year: Challenger astronauts complete 1st in space satellite repair?
+1984
+10
+
+Name the Year: Challenger crew perform a spacewalk - first by US in 9 years?
+1983
+10
+
+Name the Year: Chardonnet, France inventor (rayon), born in?
+1839
+10
+
+Name the Year: Charlemagne German emperor, dies at 71?
+814
+10
+
+Name the Year: Charlemagne, emperor (Holy Roman Empire), born in?
+742
+10
+
+Name the Year: Charles A. Beard, American historian?
+1874
+10
+
+Name the Year: Charles A. Lindburgh, 'Lucky Lindy', born in?
+1902
+10
+
+Name the Year: Charles Addams cartoonist (Addams Family), dies at 76 of heart attack?
+1988
+10
+
+Name the Year: Charles and M.N. Roberts ascend 2,000' in a hydrogen balloon?
+1783
+10
+
+Name the Year: Charles Aznavour Paris France, singer (Monsieur Carnavel), born in?
+1924
+10
+
+Name the Year: Charles Babbage, English inventor (calculating machine), born in?
+1792
+10
+
+Name the Year: Charles Barkley, Star player for the Pheonix Suns and Houston Rockets basketball teams, born in?
+1963
+10
+
+Name the Year: Charles Boycott, estate manager in Ireland, caused boycotts, born in?
+1832
+10
+
+Name the Year: Charles Bronson Penns, actor (Death Wish, Dirty Dozen), born in?
+1922
+10
+
+Name the Year: Charles Bukowsky (in Andernanch, Germany), poet, writer, born in?
+1920
+10
+
+Name the Year: Charles Darwin, evolutionist, born in?
+1809
+10
+
+Name the Year: Charles de Gaulle becomes premier of France?
+1958
+10
+
+Name the Year: Charles de Gaulle says 'Vive le Quebec libre! Long live free Quebec!'?
+1967
+10
+
+Name the Year: Charles de Gaulle, pres of France (1958-69), general?
+1890
+10
+
+Name the Year: Charles DeGaulle French pres, dies at 79?
+1970
+10
+
+Name the Year: Charles Dickens (in England), author, born in?
+1812
+10
+
+Name the Year: Charles Dickens, author, dies in England?
+1870
+10
+
+Name the Year: Charles Dudley Warner, US newspaperman, author, born in?
+1829
+10
+
+Name the Year: Charles Duryea takes 1st American-made auto out for a spin?
+1892
+10
+
+Name the Year: Charles Edward Pickering, pioneer American spectroscopist, born in?
+1846
+10
+
+Name the Year: Charles Fabry, discovered the ozone layer in the upper atmosphere, born in?
+1867
+10
+
+Name the Year: Charles Ferdinand Dowd US, standardized time zones, born in?
+1825
+10
+
+Name the Year: Charles Funk of Funk & Wagnalls Encyclopaedias, dies at 76?
+1957
+10
+
+Name the Year: Charles Graham of N. Y. was granted a patent for artificial teeth?
+1822
+10
+
+Name the Year: Charles Henry Dow, co-founder of Dow Jones, first editor of the Wall Street Journal?
+1851
+10
+
+Name the Year: Charles I King of England, Scotland, and Ireland ascends to throne?
+1625
+10
+
+Name the Year: Charles I, king of England (1625-49); later executed by Parliament?
+1600
+10
+
+Name the Year: Charles II (the Bald) king of France (843-77), emperor (875-77), born in?
+823
+10
+
+Name the Year: Charles II grants a charter to establish Royal Society in London?
+1662
+10
+
+Name the Year: Charles II king of England (1660-85), born in?
+1630
+10
+
+Name the Year: Charles II, last Habsburg king of Spain (1665-1700)?
+1661
+10
+
+Name the Year: Charles III [The Simple], king of France (893-923), born in?
+879
+10
+
+Name the Year: Charles III king of Spain (1759-88), born in?
+1760
+10
+
+Name the Year: Charles IV, king of Spain (1788-1808)?
+1748
+10
+
+Name the Year: Charles Kowal discovers Leda, 13th satellite of Jupiter?
+1974
+10
+
+Name the Year: Charles Lamb (in England), writer, born in?
+1775
+10
+
+Name the Year: Charles Lindbergh, died at his home in Hawaii at the age of 72?
+1974
+10
+
+Name the Year: Charles Lutwidge Dodgson (you may know him as Lewis Carroll), born in?
+1832
+10
+
+Name the Year: Charles Macintosh of Scotland begins selling raincoats (Macs)?
+1823
+10
+
+Name the Year: Charles Messier catalogs M41 (galactic cluster in Canis Major)?
+1765
+10
+
+Name the Year: Charles Messier observes the Crab Nebula and begins catalog?
+1758
+10
+
+Name the Year: Charles Perrault France, lawyer/writer (Mother Goose), born in?
+1628
+10
+
+Name the Year: Charles Phillip Arthur George Windsor, Prince of Wales?
+1948
+10
+
+Name the Year: Charles Proteus Steinmetz, electronics pioneer, born in?
+1865
+10
+
+Name the Year: Charles Richter, Earthquakes seismologist (Richter scale), born in?
+1900
+10
+
+Name the Year: Charles Rocket clearly says a four-letter word on Saturday Night Live?
+1981
+10
+
+Name the Year: Charles Schultz, Peanuts Creator?
+1922
+10
+
+Name the Year: Charles Sturt, England, explorered Australia, born in?
+1795
+10
+
+Name the Year: Charles V (the Wise), king of France (1364-80), born in?
+1338
+10
+
+Name the Year: Charles VI [the Well-Beloved], king of France (1380-1422), born in?
+1368
+10
+
+Name the Year: Charles VI, Holy Roman emperor (1711-40)?
+1685
+10
+
+Name the Year: Charles VII, Holy Roman emperor (1742-45), born in?
+1697
+10
+
+Name the Year: Charles VIII king of France (1483-98), invaded Italy, born in?
+1470
+10
+
+Name the Year: Charles Wesley, cofounder of Methodist movement?
+1707
+10
+
+Name the Year: Charles X, king of France (1824-30); deposed, born in?
+1757
+10
+
+Name the Year: Charles X, Versailles, France, Duke of Prussia, born in?
+1757
+10
+
+Name the Year: Charley Pride, singer, born in?
+1939
+10
+
+Name the Year: Charlie Byrd, guitarist, born in?
+1925
+10
+
+Name the Year: Charlie Chaplin, actor, comedian, movie director, born in?
+1889
+10
+
+Name the Year: Charlie Sheen, actor (Wall St, Platoon), born in?
+1965
+10
+
+Name the Year: Charlotte Bronte, Tornton England, novelist (Jane Eyre), born in?
+1816
+10
+
+Name the Year: Charlotte Rampling (in England), actress, born in?
+1946
+10
+
+Name the Year: Charlotte Rampling (in England), born in?
+1946
+10
+
+Name the Year: Charlotte, grand duchess of Luxembourg (1919-64), born in?
+1896
+10
+
+Name the Year: Charlton Heston, actor (Ten Commandments, Ben Hur, Planet of the Apes)?
+1923
+10
+
+Name the Year: Che Guevara executed in Bolivia?
+1967
+10
+
+Name the Year: Cher, rocker/actress (I got you babe, Jack Lalane, Mask), born in?
+1946
+10
+
+Name the Year: Cheryl Tiegs (in Minnesota), model and actor, born in?
+1957
+10
+
+Name the Year: Chester F. Carlson, invented xerography, born in?
+1906
+10
+
+Name the Year: Chester Gould, cartoonist (gave Dick Tracy a job)?
+1900
+10
+
+Name the Year: Chet Atkins Luttrell Tenn, guitarist (Me & My Guitar), born in?
+1924
+10
+
+Name the Year: Chet Baker jazz trumpeter fell to death out of a hotel window at 59?
+1988
+10
+
+Name the Year: Chevy Chase, comedian, actor (SNL, Vacation, Fletch, Caddyshack), born in?
+1943
+10
+
+Name the Year: Chiang Kai-Shek becomes president of China?
+1928
+10
+
+Name the Year: Chiang Kai-shek took the oath of office as president of China?
+1943
+10
+
+Name the Year: Chicago Bulls win their first NBA championship in a 4-1 series against the Los Angeles Lakers?
+1991
+10
+
+Name the Year: Chile declares independence from Spain (National Day)?
+1810
+10
+
+Name the Year: Chile's President, Salvador Allende, deposed in a military coup?
+1973
+10
+
+Name the Year: China announces its population at 1 billion people plus?
+1982
+10
+
+Name the Year: China becomes world's 5th nuclear power?
+1964
+10
+
+Name the Year: China cedes Hong Kong to the British?
+1841
+10
+
+Name the Year: China cedes Taiwan to Japan under Treaty of Shimonoseki?
+1895
+10
+
+Name the Year: China declares martial law in Beijing?
+1989
+10
+
+Name the Year: China declares war on Germany and Austria at start of WW I?
+1917
+10
+
+Name the Year: China enters Korean conflict?
+1950
+10
+
+Name the Year: China leases Hong Kong's new territories to Britain for 99 years?
+1898
+10
+
+Name the Year: China regains sovereignty of Hong Kong?
+1997
+10
+
+Name the Year: China Revolutionaries under Sun Yat-sen overthrew Manchu dynasty?
+1911
+10
+
+Name the Year: Chinese and North Koreans capture Seoul, South Korea?
+1951
+10
+
+Name the Year: Chinese government puts down student democracy protest in Beijing ... thousands die in Tiananmen Square?
+1989
+10
+
+Name the Year: Chinese Ming dynasty occupies Taiwan?
+1661
+10
+
+Name the Year: Chinese republic proclaimed in Tibet?
+1912
+10
+
+Name the Year: Chinese revolutionary leader Sun Yat-sen died?
+1925
+10
+
+Name the Year: Chinese troops crossed the 38th Parallel in Korea?
+1950
+10
+
+Name the Year: Ching-Kao Chiang president of Taiwan, dies at 81?
+1988
+10
+
+Name the Year: cholars' calculate this as the date that Jesus of Nazareth was crucified by Roman troops in Jerusalem?
+30 S
+10
+
+Name the Year: Chop suey invented in NYC by chef of visiting Chinese Ambassador?
+1896
+10
+
+Name the Year: Chris Chubbock, newscaster, shoots self on air?
+1974
+10
+
+Name the Year: Chris Young Penn, actor (Bryce Lynch-Max Headroom, Great Outdoors), born in?
+1971
+10
+
+Name the Year: Chrissie Hynde, rocker (Pretenders), born in?
+1950
+10
+
+Name the Year: Christiaan Huygens discovers Martian south polar cap?
+1642
+10
+
+Name the Year: Christian Dior, Normandy France, fashion designer (long-skirted look), born in?
+1905
+10
+
+Name the Year: Christian Doppler, discovered Doppler Effect (color shift)?
+1803
+10
+
+Name the Year: Christian II of Denmark & Norway defeats the Swedes at Lake Asunde?
+1520
+10
+
+Name the Year: Christian Lacroix, French couturier, born in?
+1950
+10
+
+Name the Year: Christian V became King of Denmark and Norway?
+1670
+10
+
+Name the Year: Christie Brinkley, model, born in?
+1954
+10
+
+Name the Year: Christie Hefner, daughter of Hugh Hefner?
+1952
+10
+
+Name the Year: Christine Jorgensen, pioneer transsexual, born in?
+1926
+10
+
+Name the Year: Christopher Colombus explorer, dies in poverty in Spain at 55?
+1506
+10
+
+Name the Year: Christopher Columbus discovered the island of Trinidad?
+1498
+10
+
+Name the Year: Christopher Columbus discovers Puerto Rico?
+1493
+10
+
+Name the Year: Christopher Columbus learns of maize (corn) from the Indians of Cuba?
+1492
+10
+
+Name the Year: Christopher Columbus signs contract with Spain to find the Indies?
+1492
+10
+
+Name the Year: Christopher Hornsrud chosen PM of Norway at age 101?
+1928
+10
+
+Name the Year: Christopher Lloyd, actor (Taxi, Star Trek III, Back to the Future, Addams Family), born in?
+1938
+10
+
+Name the Year: Christopher Reeve, actor (Superman, Somewhere in Time), born in?
+1952
+10
+
+Name the Year: Christopher Wilder, FBI's 'most wanted man' accidentally killed self?
+1984
+10
+
+Name the Year: Chrysanthemums are introduced into England from China?
+1790
+10
+
+Name the Year: Chubby Check (musician) born?
+1941
+10
+
+Name the Year: Chuck Berry, St Louis, USA, rocker (Roll over Beethoven), born in?
+1926
+10
+
+Name the Year: Chuck Connors, actor (The Rifleman), born in?
+1924
+10
+
+Name the Year: Chuck Jones animator (Bugs Bunny, Daffy Duck), born in?
+1912
+10
+
+Name the Year: Chuck Mangione, jazz musician, composer?
+1940
+10
+
+Name the Year: Chuck Yeager pilots the world's first supersonic flight (Mach 1.015 at 12,800 m) at Muroc, CA?
+1947
+10
+
+Name the Year: Churchill resigns as Britain's PM?
+1945
+10
+
+Name the Year: Cincinnati jury acquits art gallery of obsentity (Mappelthorpe photos)?
+1990
+10
+
+Name the Year: Cindy Williams (in Van Nuys, CA), actor (Laverne and Shirley), born in?
+1948
+10
+
+Name the Year: Cities of Constantinople and Angora changed to Istanbul and Ankara?
+1930
+10
+
+Name the Year: City of Lichfield, England established?
+1553
+10
+
+Name the Year: City of Quebec founded by Samuel de Champlain?
+1608
+10
+
+Name the Year: Civil War Battle of Chickamauga, near Chattanooga, Tenn, ended?
+1863
+10
+
+Name the Year: Clara Maass army nurse sacrificied her life at 25 to prove that the mosquito carries yellow fever?
+1901
+10
+
+Name the Year: Clara Wieck Schumann, German pianist, composer, born in?
+1819
+10
+
+Name the Year: Clarence Birdseye markets frozen peas?
+1952
+10
+
+Name the Year: Clarence Darrow, lawyer, born in?
+1857
+10
+
+Name the Year: Clarence Nash, the voice of Donald Duck, died?
+1985
+10
+
+Name the Year: Clark Gable, actor (didn't give a damn about Scarlet O'Hara)?
+1901
+10
+
+Name the Year: Claude Debussy (in France), composer (La Mer, Clair de lune), born in?
+1862
+10
+
+Name the Year: Claude Helvetius born, French philosopher?
+1715
+10
+
+Name the Year: Claude Levi-Strauss, Belgian social anthropologist?
+1908
+10
+
+Name the Year: Claude Monet, impressionist painter?
+1840
+10
+
+Name the Year: Claude Rains London, actor (Invisible Man, Casablanca), born in?
+1889
+10
+
+Name the Year: Claudia Schiffer Rheinbach Germany, super model (Elle, Rolling Stone), born in?
+1970
+10
+
+Name the Year: Claus Von Bulow accused of murdering his wife, born in?
+1926
+10
+
+Name the Year: Clement Clarke Moore, American author ('Twas the Night Before Xmas)?
+1779
+10
+
+Name the Year: Clement III 1st antipope (1084-1100), dies (birth date unknown)?
+1100
+10
+
+Name the Year: Clement IX Pistoia, Italy, 238th Roman Catholic pope (1667-69), born in?
+1600
+10
+
+Name the Year: Clement Studebaker, automobile pioneer, born in?
+1831
+10
+
+Name the Year: Clement V pope (1305-14) who moved papacy to Avignon, dies?
+1314
+10
+
+Name the Year: Clint Eastwood elected mayor of Carmel, California. It made his day?
+1986
+10
+
+Name the Year: Clint Eastwood, actor (Dirty Harry, Heartbreak Ridge, City Heat), born in?
+1930
+10
+
+Name the Year: Clive Barker, novelist (Hell Raiser)?
+1952
+10
+
+Name the Year: Coca-Cola is created (it had cocaine at the time)?
+1886
+10
+
+Name the Year: Coelacanth, a fish thought to have been extinct for 65 million years caught of the coast of South Africa?
+1938
+10
+
+Name the Year: Col. John Nixon gave first public reading of American Decleration of Independence?
+1776
+10
+
+Name the Year: Col. Tom Parker Elvis Presley's manager, born in?
+1909
+10
+
+Name the Year: Coleman Hawkins, virtually created the tenor saxophone for jazz?
+1904
+10
+
+Name the Year: Colley Cibber, English dramatist, poet laureate (Love's Last Shift)?
+1671
+10
+
+Name the Year: Colombia declared independence from Spain?
+1810
+10
+
+Name the Year: Colombian troops ends 27-hour siege of Bogota's Palace of Justice?
+1985
+10
+
+Name the Year: Colorado militia kills 150 peaceful Cheyenne Indians?
+1864
+10
+
+Name the Year: Columbia grants Panama independence?
+1903
+10
+
+Name the Year: Columbus arrives in Cuba?
+1492
+10
+
+Name the Year: Columbus left Spain on his 4th and final trip to the New World?
+1502
+10
+
+Name the Year: Columbus sights the isle of San Salvador?
+1492
+10
+
+Name the Year: Comet Halley's closest approach to Earth?
+1910
+10
+
+Name the Year: Commercial TV begins in England?
+1955
+10
+
+Name the Year: Commonwealth Day?
+1958
+10
+
+Name the Year: Communist coup is crushed in USSR in 2 days?
+1991
+10
+
+Name the Year: Communist Labor Party of America formed in Chicago?
+1919
+10
+
+Name the Year: Communists take over Czechoslovakia?
+1948
+10
+
+Name the Year: Comoros proclaimed a French colony?
+1912
+10
+
+Name the Year: Composer Franz Josef Hayden died in Vienna, Austria?
+1809
+10
+
+Name the Year: Composer Ludwig van Beethoven died in Vienna?
+1827
+10
+
+Name the Year: Composer Sergei Rachmaninoff died?
+1943
+10
+
+Name the Year: Comte de Lambert of France sets airplane altitude record of 300 m?
+1909
+10
+
+Name the Year: Confederaci?n Granadina (now Colombia) forms?
+1858
+10
+
+Name the Year: Congo (Brazzaville) gained independence from France (Nat'l Day)?
+1960
+10
+
+Name the Year: Congo Free State established by King Leopold II of Belgium?
+1885
+10
+
+Name the Year: Congress approved daylight saving time?
+1918
+10
+
+Name the Year: Congress creates the Territory of Nevada?
+1861
+10
+
+Name the Year: Congress decided US flag is 13 red and white stripes and 20 stars?
+1818
+10
+
+Name the Year: Congress outlawed polygamy?
+1882
+10
+
+Name the Year: Congress passes Tonkin Resolution, official start of Vietnam war?
+1964
+10
+
+Name the Year: conjunction of Sun, Mercury, Venus, Mars, Jupiter, Saturn & Moon?
+2000
+10
+
+Name the Year: Connie Stevens (in Brooklyn, NY), singer?
+1938
+10
+
+Name the Year: Conrad Aiken, American poet, short story writer, critic, born in?
+1899
+10
+
+Name the Year: Constantine?
+1583
+10
+
+Name the Year: Constantinople (later Istanbul) founded?
+330
+10
+
+Name the Year: Constantinople falls to Muhammad II (Turks); ends Byzantine Empire. Also considered the end of the Middle Ages?
+1453
+10
+
+Name the Year: Constantius II, Roman emperor (337-61), born in?
+317
+10
+
+Name the Year: Constitution of Tunisia promulgated (National Day)?
+1959
+10
+
+Name the Year: Construction began on 1st private thorium-uranium nuclear reactor?
+1958
+10
+
+Name the Year: Construction begins on Disneyland?
+1954
+10
+
+Name the Year: Construction of Cologne Cathedral is begun?
+1248
+10
+
+Name the Year: Construction of Cologne Cathedral is completed?
+1880
+10
+
+Name the Year: Construction of the Brooklyn Bridge begins?
+1870
+10
+
+Name the Year: Construction on Berlin Wall begins in East Germany?
+1961
+10
+
+Name the Year: Continuous moving assembly line introduced by Ford (1 car every 2.5 minutes)?
+1913
+10
+
+Name the Year: Copernicus formally installed as canon of Frauenberg Cathedral?
+1501
+10
+
+Name the Year: Copernicus makes his 1st observations of Saturn?
+1514
+10
+
+Name the Year: Corbin Bernsen North Hollywood Calif, actor (Arnie Becker-LA Law), born in?
+1954
+10
+
+Name the Year: Cornelius Otto Jansen of France, Roman Catholic reform leader?
+1585
+10
+
+Name the Year: Cornerstone for the Statue of Liberty laid?
+1884
+10
+
+Name the Year: Cornerstone is laid for Tycho Brahe's Uraniborg observatory?
+1579
+10
+
+Name the Year: Cornerstone laid for Lincoln Memorial in Washington, DC?
+1915
+10
+
+Name the Year: Coronation of Queen Elizabeth II in Westminster Abbey?
+1953
+10
+
+Name the Year: Corpernicus' DE REVOLUTIONIBUS placed on Catholic Forbidden index?
+1616
+10
+
+Name the Year: Cosmonaut Gagarin, first man to orbit earth died in a plane crash?
+1968
+10
+
+Name the Year: Cosmonaut Gherman Titov circles Earth for a full day in Vostok 2?
+1961
+10
+
+Name the Year: Cosmonaut Komarov is first to die in space aboard Soyuz 1?
+1967
+10
+
+Name the Year: Cosmonaut Popovich in space first time 2, manned craft in space?
+1962
+10
+
+Name the Year: Cosmonaut Svetlana Savitskaya became 1st woman to walk in space?
+1984
+10
+
+Name the Year: Cosmonauts Popov and Ryumin set space endurance record of 184 days?
+1980
+10
+
+Name the Year: Cosmonauts Titov and Strekalov are saved from exploding Soyuz T-10?
+1983
+10
+
+Name the Year: Costa Rica, El Salvador, Guatemala, Honduras and Nicaragua gain independence?
+1821
+10
+
+Name the Year: Count Alessandro Giuseppe Antonio Anastasio Volta, invented the electric battery, born in?
+1745
+10
+
+Name the Year: Count Basie jazz piano great, dies at 79?
+1984
+10
+
+Name the Year: Count Ferdinand Graf von Zeppelin, inventor, born in?
+1838
+10
+
+Name the Year: Count Ferdinand von Zeppelin's 1st airship LZ-1, flies?
+1900
+10
+
+Name the Year: Coup overthrows Emperor Haile Selassie in Ethiopia (National Day)?
+1974
+10
+
+Name the Year: Courtney Cox Birmingham Ala, actress (Monica on Friends), born in?
+1964
+10
+
+Name the Year: Cracow declared a free republic?
+1815
+10
+
+Name the Year: Crete unites with Greece?
+1908
+10
+
+Name the Year: Crew of Soyuz 29 returns to Earth aboard Soyuz 31?
+1978
+10
+
+Name the Year: Crystal Gayle (in Kentucky), singer, born in?
+1951
+10
+
+Name the Year: Cuban missile crisis began as JFK becomes aware of missiles in Cuba?
+1962
+10
+
+Name the Year: Curtis Mayfield, musician, born in?
+1942
+10
+
+Name the Year: Cybill Shepherd (in Memphis, TN), actress (Moonlighting, Sybil), born in?
+1950
+10
+
+Name the Year: Cyclone kills estimated 300,000 in Bangladesh?
+1970
+10
+
+Name the Year: Cyd Charisse (in Amarillo, Texas), actor, dancer, born in?
+1921
+10
+
+Name the Year: Cyrano de Bergerac French dramatist/novelist, dies in Paris?
+1655
+10
+
+Name the Year: Cyrano de Bergerac, writer, born in?
+1619
+10
+
+Name the Year: Czechoslovak National Day?
+1945
+10
+
+Name the Year: Czechoslovakia declares independence from Austria?
+1918
+10
+
+Name the Year: D-Day. Invasion of Europe; Allies storm Normandy, France?
+1944
+10
+
+Name the Year: D.D. Palmer of Davenport, Iowa, becomes the first Chiropractor?
+1895
+10
+
+Name the Year: Dabney Coleman, actor, born in?
+1933
+10
+
+Name the Year: Dalai Lama, religious leader, born in?
+1935
+10
+
+Name the Year: Dale Carnegie, author (How to Win Friends and Influence People)?
+1888
+10
+
+Name the Year: Dame Agatha Christie mystery writer (Murder on the Orient Express), born in?
+1890
+10
+
+Name the Year: Dame Margaret Rutherford, England, actress (Murder Most Foul), born in?
+1892
+10
+
+Name the Year: Dame Margot Fonteyn England, ballerina (partner of Nureyev), born in?
+1919
+10
+
+Name the Year: Dame Nellie Melba, Australian Opera Singer, reveals secret of her now famous toast?
+1901
+10
+
+Name the Year: Dan Aykroyd, Ottawa Canada, comedian/actor (SNL, Dragnet), born in?
+1952
+10
+
+Name the Year: Dan Haggerty, actor (Grizzly Adams)?
+1941
+10
+
+Name the Year: Dan Marino NFL quarterback (Miami Dolphins), born in?
+1961
+10
+
+Name the Year: Dan Quayle, U.S. Vice-president (1989-1992), alleged twit, born in?
+1947
+10
+
+Name the Year: Dana Carvey, comedian (Sat Night Live, Wayne's World), born in?
+1955
+10
+
+Name the Year: Dana Delaney, actress, born in?
+1957
+10
+
+Name the Year: Dana Plato (in Maywood, CA)?
+1964
+10
+
+Name the Year: Danes defeat Saxons at Battle of Assandun (Ashingdon)?
+1016
+10
+
+Name the Year: Daniel Bernoulli, Basel, Switzerland, mathematician, born in?
+1700
+10
+
+Name the Year: Daniel Boone frontiersman/explorer, born in?
+1734
+10
+
+Name the Year: Daniel Burnham, American architect, built skyscrapers?
+1846
+10
+
+Name the Year: Daniel J. Travanti, actor (Hill Street Blues)?
+1940
+10
+
+Name the Year: Daniel Ortega Saavedra, president of Nicaragua (1984- )?
+1945
+10
+
+Name the Year: Danny Bonaduce actor (Danny-Partridge Family) (1959 approx), born in?
+1959
+10
+
+Name the Year: Danny DeVito, actor (Taxi, Ruthless People, Twins), director (War of the Roses)?
+1944
+10
+
+Name the Year: Danny Kaye Bkln NY, UNICEF/comedian/actor (Danny Kaye Show), born in?
+1913
+10
+
+Name the Year: Dante Alighieri Day?
+1583
+10
+
+Name the Year: Daphne du Maurier novelist (Rebecca, The Parasites), born in?
+1907
+10
+
+Name the Year: Darius Milhaud, composer?
+1872
+10
+
+Name the Year: Darwin returns to England aboard the HMS Beagle?
+1836
+10
+
+Name the Year: Dave Stewart, rocker (Eurythmics-Here Comes the Rain Again), born in?
+1952
+10
+
+Name the Year: David Ben-Gurion founding father of Israel dies in Tel Aviv at 87?
+1973
+10
+
+Name the Year: David Bowie releases his 1st record (Can't Help Thinking About Me)?
+1966
+10
+
+Name the Year: David Bowie, musician, actor, born in?
+1947
+10
+
+Name the Year: David Byrne Dunbartin Scotand, rocker (Talking Heads-Psycho Killer) , born in?
+1952
+10
+
+Name the Year: David Carradine, actor (Kung fu, Death Race 2000), born in?
+1940
+10
+
+Name the Year: David Cassidy, Shirley Jones' kid on TV and real life, born in?
+1950
+10
+
+Name the Year: David Faustino, actor (Married With Children's Bud Bundy), born in?
+1974
+10
+
+Name the Year: David Frost, pundit?
+1939
+10
+
+Name the Year: David Geffen, record company president, born in?
+1943
+10
+
+Name the Year: David Hasselhoff, actor, born in?
+1952
+10
+
+Name the Year: David Hume England, empiricists (Treatise of Human Nature), born in?
+1711
+10
+
+Name the Year: David Lee Roth, rocker, born in?
+1955
+10
+
+Name the Year: David Letterman, late night television talk show host, born in?
+1947
+10
+
+Name the Year: David Lynch, director (Dune, Eraserhead), born in?
+1946
+10
+
+Name the Year: David McCallum, actor (Ilya Kuryakin in Man from U.N.C.L.E.), born in?
+1933
+10
+
+Name the Year: David Niven, actor, born in?
+1910
+10
+
+Name the Year: David O Selznick Gone With the Wind's producer, dies at 63?
+1965
+10
+
+Name the Year: David O Selznick Pittsburgh Pa, producer (Gone With the Wind), born in?
+1902
+10
+
+Name the Year: David Rappaport 3'11' actor (wizard), shoots himself at 38?
+1990
+10
+
+Name the Year: David Russell Lange PM (L) New Zealand, born in?
+1942
+10
+
+Name the Year: Davidson Black, Canada, doctor of anatomy (identified Peking Man), born in?
+1884
+10
+
+Name the Year: Davy Crockett US, frontiersman/adventurer/politician, born in?
+1786
+10
+
+Name the Year: Daylight meteor seen from Utah to Canada. Only known case of a meteor entering the Earth's atmosphere and leaving it again?
+1966
+10
+
+Name the Year: Dean Martin, singer, actor?
+1917
+10
+
+Name the Year: Dean of St Paul's Cathedral perfects a way to bottle beer?
+1568
+10
+
+Name the Year: Death of Dante Alighieri, author of the Divine Comedy?
+1321
+10
+
+Name the Year: Death of Tomas de Torquemada, inquisitor who burned 10,000 people?
+1498
+10
+
+Name the Year: Debbie Reynolds (in El Paso, TX), actor, dancer, born in?
+1932
+10
+
+Name the Year: Deborah Harry singer (Blondie) actress (Videodrome, Hairspray), born in?
+1945
+10
+
+Name the Year: Deborah Harry, rocker (Blondie-Heart of Glass), born in?
+1945
+10
+
+Name the Year: Deborah Kerr (in Helensburg, Scotland), actor (King and I, Night of the Iguana)?
+1921
+10
+
+Name the Year: Debra Winger (in Columbus, Ohio), actor, born in?
+1955
+10
+
+Name the Year: Decca awards Bing Crosby a 2nd platinum disc for selling 300 million?
+1970
+10
+
+Name the Year: Decca signs the Rolling Stones on advice of Beatle George Harrison?
+1963
+10
+
+Name the Year: Declaration of Independence is read aloud to Gen. George Washington's troops in New York?
+1776
+10
+
+Name the Year: Declaration of Independence-US gained independence from Britain (U.S. Independence Day)?
+1776
+10
+
+Name the Year: DeForest Kelley Atlanta Ga, actor (Dr Leonard McCoy-Star Trek), born in?
+1920
+10
+
+Name the Year: DeForest Kelly actor (Dr McCoy-Star Trek), born in?
+1920
+10
+
+Name the Year: Dem. Rep of Germany (East) formed (National Day)?
+1949
+10
+
+Name the Year: Demi Moore, actor (Ghost)?
+1963
+10
+
+Name the Year: Demolition began in NYC for new permanent headquarters of the UN?
+1947
+10
+
+Name the Year: Deng Xiao Peng, Chinese leader, born in?
+1904
+10
+
+Name the Year: Denise Nichols (in Detroit, MI)?
+1944
+10
+
+Name the Year: Denmark becomes a constitutional monarchy?
+1849
+10
+
+Name the Year: Dennis Gabor, inventor of holography (3D laser photography), born in?
+1900
+10
+
+Name the Year: Dennis Hopper actor (True Grit, Blue Velvet, Easy Rider), born in?
+1936
+10
+
+Name the Year: Dennis Quaid, actor, born in?
+1954
+10
+
+Name the Year: Dentist William T. Morton demonstrated the effectiveness of ether?
+1846
+10
+
+Name the Year: Deposed Shah of Iran arrived in NY for medical treatment?
+1979
+10
+
+Name the Year: Desi Arnaz actor (Ricky Ricardo-I Love Lucy), dies at 69?
+1986
+10
+
+Name the Year: Desi Arnaz, famous Cuban, bandleader, born in?
+1917
+10
+
+Name the Year: Desmond Tutu installed to lead south African Anglican Church?
+1986
+10
+
+Name the Year: Desmond Tutu, Anglican Archbishop of South Africa (Nobel Peace Prize 1982), born in?
+1931
+10
+
+Name the Year: Destructive eruption of Vesuvius?
+1759
+10
+
+Name the Year: Deusdedit III begins his reign as Catholic Pope?
+672
+10
+
+Name the Year: Deutsches Museum, Munich, first Walther Bauersfeld's Zeiss Planetarium?
+1923
+10
+
+Name the Year: Diana Ladd?
+1932
+10
+
+Name the Year: Diana Rigg Doncaster England, actress (Emma Peel-Avengers, Hospital), born in?
+1938
+10
+
+Name the Year: Diana Ross (in Detroit, Michigan), singer (The Supremes), born in?
+1944
+10
+
+Name the Year: Diane Keaton (in Los Angeles, CA), actor, born in?
+1946
+10
+
+Name the Year: Dick Clark, America's oldest teenager (American Bandstand)?
+1929
+10
+
+Name the Year: Dick Sargent Carmel Calif, actor (Darrin-Bewitched), born in?
+1933
+10
+
+Name the Year: Digging begins to link England and France under the English Channel?
+1987
+10
+
+Name the Year: Digital Equipment Corp introduces the PDP-11 minicomputer?
+1970
+10
+
+Name the Year: Digital Equipment Corp. founded?
+1957
+10
+
+Name the Year: Diligenti quintuplets born in Buenos Aires, Argentina?
+1943
+10
+
+Name the Year: Dimout regulations implemented in San Francisco?
+1942
+10
+
+Name the Year: Diner's Club issues its 1st credit cards?
+1950
+10
+
+Name the Year: Dirk Bogarde, actor, born in?
+1922
+10
+
+Name the Year: Disaster on USSR launch pad killed missle expert Nedelin and team (unconfirmed); USSR claims he was killed in plane crash?
+1960
+10
+
+Name the Year: Disney Co. founded?
+1923
+10
+
+Name the Year: Disneyland opens its doors in rural Orange County?
+1955
+10
+
+Name the Year: Divine (Harris Glenn Milstead) film actor, born in?
+1945
+10
+
+Name the Year: Dizzy Gillespie, trumpeter, a creator of modern jazz, born in?
+1917
+10
+
+Name the Year: Djibouti National Day?
+1977
+10
+
+Name the Year: Dmitri Shostakovich, Russian composer, born in?
+1906
+10
+
+Name the Year: Dodge Morgan sailed solo nonstop around the world in 150 days?
+1986
+10
+
+Name the Year: Dolly Parton, country singer (Dolly, 9 to 5), born in?
+1946
+10
+
+Name the Year: Dolph Lundgren actor, born in?
+1959
+10
+
+Name the Year: Dom DeLuise Bkln NY, comedian, actor (End, Cannonball Run, Fatso), born in?
+1933
+10
+
+Name the Year: Dom Pedro crowned emperor of Brazil?
+1822
+10
+
+Name the Year: Dom Pedro II, Emperor of Brazil, deposed; republic proclaimed?
+1889
+10
+
+Name the Year: Dom Perignon invents champagne?
+1693
+10
+
+Name the Year: Dominican Order of Friars confirmed by the Pope?
+1216
+10
+
+Name the Year: Dominican Republic gains it's independence?
+1844
+10
+
+Name the Year: Dominion of Canada formed (New Brunswick, Nova Scotia, Ontario and Quebec)?
+1867
+10
+
+Name the Year: Don Adams actor, secret agent 86 (Get Smart), born in?
+1926
+10
+
+Name the Year: Don Ameche, actor (Cocoon, Trading Places), born in?
+1908
+10
+
+Name the Year: Don Henley, musician (Eagles), born in?
+1945
+10
+
+Name the Year: Don Knotts Morgantown WV, actor (Amdy Griffth Show, 3's Company), born in?
+1924
+10
+
+Name the Year: Don McLean, singer, songwriter (American Pie, Vincent)?
+1945
+10
+
+Name the Year: Donald Duck, famous fowl, born in?
+1934
+10
+
+Name the Year: Donald Sutherland, actor (M-A-S-H), born in?
+1934
+10
+
+Name the Year: Donald Trump master builder (Trump Towers/Plaza/Castle), born in?
+1946
+10
+
+Name the Year: Donald Wills Douglas, founded an aircraft company?
+1892
+10
+
+Name the Year: Donald Wolf, computer game creator?
+1971
+10
+
+Name the Year: Donald Woods, a banned white editor flees South Africa?
+1977
+10
+
+Name the Year: Donati's comet becomes the 1st to be photographed?
+1858
+10
+
+Name the Year: Donna McKechnie (in Pontiac, Michigan)?
+1942
+10
+
+Name the Year: Donna Reed (in Denison, Iowa), actor, born in?
+1921
+10
+
+Name the Year: Donny Osmond, singer born?
+1957
+10
+
+Name the Year: Donovan (Leitch) Scotland, rock singer (Mellow Yellow), born in?
+1943
+10
+
+Name the Year: Donus ends his reign as Catholic Pope?
+678
+10
+
+Name the Year: Doris Day (in Cincinnatti, Ohio), actor, girl next door, born in?
+1924
+10
+
+Name the Year: Dorothy L Sayers England, novelist (9 Taylors), born in?
+1893
+10
+
+Name the Year: Dorothy Lamour (in New Orleans, LA), actor (Road to Bali), born in?
+1914
+10
+
+Name the Year: Douglas Fairbanks, first and greatest of Hollywood's swashbucklers, born in?
+1883
+10
+
+Name the Year: Douglas Fairbanks, Jr, actor (Ghost Story) born?
+1909
+10
+
+Name the Year: Douglas Hyde (a protestant) becomes 1st president of Eire?
+1938
+10
+
+Name the Year: Douglas MacArthur US general (Pacific theater-WW II), dies at 84?
+1964
+10
+
+Name the Year: Dow Jones closes above 1,000 for first time (1003.16)?
+1972
+10
+
+Name the Year: Dr C. Long first used ether as an anesthetic during a minor operation?
+1842
+10
+
+Name the Year: Dr Carl Gustav Jung, founded analytic psychology, born in?
+1875
+10
+
+Name the Year: Dr Howard T Engstrom Boston, a designer of Univac computer, born in?
+1902
+10
+
+Name the Year: Dr John F Mahoney developed pencillin treatment of syphillis, born in?
+1889
+10
+
+Name the Year: Dr Spock indicted on draft law violations?
+1968
+10
+
+Name the Year: Dr Verwoerd South African PM, assassinated in assembly?
+1966
+10
+
+Name the Year: Dr. Albert Sabin, polio vaccine discoverer?
+1906
+10
+
+Name the Year: Dr. Albert Schweitzer received Nobel Peace Prize for 1952?
+1953
+10
+
+Name the Year: Dr. Christiaan Barnard, performed first human heart transplantation?
+1922
+10
+
+Name the Year: Dr. Christian Barnard performs the second successful heart transplant?
+1968
+10
+
+Name the Year: Dr. Denton Cooley implants first temporary artificial heart?
+1969
+10
+
+Name the Year: Dr. Frederick Banting, co-discoverer of insulin, knighted?
+1934
+10
+
+Name the Year: Dr. Jonas Salk announced a new vaccine against polio?
+1953
+10
+
+Name the Year: Dr. Jonas Salk, who made polio a fear of the past?
+1914
+10
+
+Name the Year: Dr. Joseph Guillotin, guess what he invented, born in?
+1738
+10
+
+Name the Year: Dr. Martin Luther King Jr shot to death in Memphis, Tennessee?
+1968
+10
+
+Name the Year: Dr. Priestly discovers oxygen?
+1774
+10
+
+Name the Year: Dr. Sam Sheppard freed after 9 years in jail, by a jury?
+1966
+10
+
+Name the Year: Dr. William Cosby, comedian, actor?
+1937
+10
+
+Name the Year: Drew Barrymore, actress, member of the Barrymore clan, born in?
+1975
+10
+
+Name the Year: Drogheda, Ireland falls to Puritan troops; inhabitants massacred?
+1649
+10
+
+Name the Year: Duchess of Windsor, famous divorcee, born in?
+1886
+10
+
+Name the Year: Dudley Moore actor (10, Arthur, Bedazzled, 6 Weeks), born in?
+1935
+10
+
+Name the Year: Duke Ellington bandleader (Take the A Train), born in?
+1899
+10
+
+Name the Year: Duke of Windsor [King Edward VIII of England] (briefly in 1936), born in?
+1894
+10
+
+Name the Year: Dumitru Prunariu, first Rumanian space traveler (on board Soyuz 40), born in?
+1952
+10
+
+Name the Year: Dumont's first TV Broadcast for home reception, NY city?
+1930
+10
+
+Name the Year: During the Korean War, United Nations forces recaptured Seoul?
+1951
+10
+
+Name the Year: During World War I Germany launched the Somme Offensive,?
+1918
+10
+
+Name the Year: During World War II, US forces crossed the Rhine River?
+1945
+10
+
+Name the Year: During WW I British and German fleets fought the Battle of Jutland?
+1916
+10
+
+Name the Year: During WW II Allied bombers began 4 days of raids over Germany?
+1945
+10
+
+Name the Year: During WW II, Britain launches major offensive at El Alamein, Egypt?
+1942
+10
+
+Name the Year: During WW II, German planes destroyed most of Coventry, England?
+1940
+10
+
+Name the Year: During WWII Germany completed their occupation of France?
+1942
+10
+
+Name the Year: Dustin Hoffman, actor, born in?
+1937
+10
+
+Name the Year: Dutch and French agree to divide St. Maarten, Leeward Islands?
+1648
+10
+
+Name the Year: Dutch govt refuses to turn over ex-kaiser of Germany to the allies?
+1920
+10
+
+Name the Year: Dwight D. Eisenhower, the 34th president, died in Washington at age 78?
+1969
+10
+
+Name the Year: Dwight Lyman Moody, evangelist, born in?
+1837
+10
+
+Name the Year: Dylan Thomas author-poet, dies in NY at 39?
+1953
+10
+
+Name the Year: Dylan Thomas, Swansea, Wales, poet (Child's Christmas in Wales), born in?
+1914
+10
+
+Name the Year: e e cummings, poet, born in?
+1894
+10
+
+Name the Year: e. e. cummings poet, dies at 67?
+1962
+10
+
+Name the Year: E. Kidner opens the first cooking school, in Great Britain?
+1784
+10
+
+Name the Year: E.B. White writer (Charlotte's Web, Elements of Style), born in?
+1899
+10
+
+Name the Year: Eadweard Muybridge, pioneered study of motion in photography, born in?
+1830
+10
+
+Name the Year: Earl of Moray, regent of Scotland, assassinated; civil war breaks out?
+1570
+10
+
+Name the Year: Earl S Tupper invented Tupperware, born in?
+1907
+10
+
+Name the Year: Eartha Kitt born (in South Carolina)?
+1928
+10
+
+Name the Year: Earthquake destroys central Managua, Nicaragua?
+1972
+10
+
+Name the Year: Earthquake gives San Francisco the shakes?
+1957
+10
+
+Name the Year: Earthquake in California?
+1994
+10
+
+Name the Year: Earthquake in Kobe?
+1995
+10
+
+Name the Year: Earthquake kills 250,000 in Antioch, Syria?
+526
+10
+
+Name the Year: Earthquake strikes Alaska, 8.4 on the Richter scale, 100 killed?
+1964
+10
+
+Name the Year: East Berlin opens its borders?
+1989
+10
+
+Name the Year: East German border guards shot and kill Peter Fechter, 18, attempting to cross Berlin Wall into western sector?
+1962
+10
+
+Name the Year: East German workers began building the Berlin Wall?
+1961
+10
+
+Name the Year: East Germans begin their flight to the west (via Hungary and Czech)?
+1989
+10
+
+Name the Year: East Germany drops the communist monopoly from its constitution?
+1989
+10
+
+Name the Year: East Pakistan proclaimed independence taking the name Bangladesh?
+1971
+10
+
+Name the Year: Ebenezer Butterick inventor (tissue paper dress pattern), born in?
+1826
+10
+
+Name the Year: EC recognises Slovenian and Croatian independence?
+1992
+10
+
+Name the Year: Echo I, first passive satellite launched?
+1960
+10
+
+Name the Year: Ecuador and Iraq join the United Nations?
+1945
+10
+
+Name the Year: Ecuador becomes independent?
+1922
+10
+
+Name the Year: Ecuador declares independence from Spain (National Day)?
+1809
+10
+
+Name the Year: Ed Asner, actor (Lou Grant)?
+1929
+10
+
+Name the Year: Ed Begley, Jr., actor (St. Elsewhere, Real Genius, Spinal Tap), born in?
+1949
+10
+
+Name the Year: Ed McMahon, #1 second banana, famed announcer, sweepstakes harbinger, born in?
+1923
+10
+
+Name the Year: Ed Sullivan TV host (Ed Sullivan Show), dies at 73?
+1974
+10
+
+Name the Year: Eddie Fisher, actor, born in?
+1928
+10
+
+Name the Year: Eddie Murphy, comedian, actor, born in?
+1961
+10
+
+Name the Year: Eddie Rabbitt, singer?
+1941
+10
+
+Name the Year: Eddie Rickenbacker, aviator, born in?
+1890
+10
+
+Name the Year: Eden Phillpotts, English novelist, poet, playwright?
+1862
+10
+
+Name the Year: Edgar Allan Poe, Boston, author (Pit & the Pendulum), born in?
+1809
+10
+
+Name the Year: Edgar Allen Poe dies in Baltimore at 40?
+1849
+10
+
+Name the Year: Edgar Degas, French impressionist painter, born in?
+1834
+10
+
+Name the Year: Edgar Rice Burroughs, novelist (Tarzan, John Carter Of Mars Saga), born in?
+1875
+10
+
+Name the Year: Edison Pele, Football player extraordinaire, born in?
+1940
+10
+
+Name the Year: Edmond Hoyle games expert, dies (birth date unknown)?
+1769
+10
+
+Name the Year: Edmund Halley (in London), sky watcher, namesake of Halley's Comet, born in?
+1656
+10
+
+Name the Year: Edmund Halley genius eclipsed by Newton, dies at 86?
+1742
+10
+
+Name the Year: Edmund Halley receives MA from Queen's College, Oxford?
+1678
+10
+
+Name the Year: Edna St. Vincent Millay, poet, born in?
+1892
+10
+
+Name the Year: Edouard Manet, France, Impressionist painter, born in?
+1832
+10
+
+Name the Year: Edouard Manet, French painter, born in?
+1832
+10
+
+Name the Year: Eduardo Barrios, Chilean novelist (The Love-Crazed Boy)?
+1884
+10
+
+Name the Year: Edvard Grieg, Bergen Norway, composer, born in?
+1843
+10
+
+Name the Year: Edward Furlong Pasedina Calif, actor (John Connor-Terminator 2), born in?
+1977
+10
+
+Name the Year: Edward G. Gibson, astronaut (Skylab 4)?
+1936
+10
+
+Name the Year: Edward Gibbon England, historian (Decline & Fall of Roman Empire), born in?
+1737
+10
+
+Name the Year: Edward Gibson England, historian (Decline & Fall of the Roman Emp), born in?
+1737
+10
+
+Name the Year: Edward H. White II, astronaut (Gemini 4)?
+1930
+10
+
+Name the Year: Edward Heath (C), British prime minister (1970-74), born in?
+1916
+10
+
+Name the Year: Edward II king of England (1307-1327), dies at 43?
+1327
+10
+
+Name the Year: Edward II, king of England (1307-27), born in?
+1284
+10
+
+Name the Year: Edward III, king of England (1327-77)?
+1312
+10
+
+Name the Year: Edward IV, king of England (1461-70, 1471-83), born in?
+1442
+10
+
+Name the Year: Edward Jenner England, physician, started vaccination, born in?
+1749
+10
+
+Name the Year: Edward Jenner's smallpox vaccination is introduced?
+1799
+10
+
+Name the Year: Edward John Trelawney, English traveler, author?
+1792
+10
+
+Name the Year: Edward Lear England, landscape painter, writer of nonsense verse, born in?
+1812
+10
+
+Name the Year: Edward Teller, Budapest, Hungary, fathered H-bomb (Manhattan Project), born in?
+1908
+10
+
+Name the Year: Edward the black prince, prince of Wales (1343-1376), born in?
+1330
+10
+
+Name the Year: Edward Thompson US archeologist who explored Mayan ruins, born in?
+1856
+10
+
+Name the Year: Edward VI king of England (1547-53), born in?
+1537
+10
+
+Name the Year: Edward VII of England crowned after death of his mother Victoria?
+1902
+10
+
+Name the Year: Edward VII, king of England (1901-10), born in?
+1841
+10
+
+Name the Year: Edward VIII, Duke of Windsor married Wallis Warfield Simpson in France?
+1937
+10
+
+Name the Year: Edward Woodward England, actor (Breaker Morant, Equalizer), born in?
+1930
+10
+
+Name the Year: Edwin Armstrong, radio pioneer (invented FM)?
+1890
+10
+
+Name the Year: Edwin Booth, American actor?
+1833
+10
+
+Name the Year: Edwin Budding of England signs an agreement for manufacture of his invention, the lawn mower?
+1830
+10
+
+Name the Year: Edwin Drake, drilled first productive oil well in US, born in?
+1819
+10
+
+Name the Year: Edwin Hubble, US astronomer, discoverer of galaxies, red shift?
+1889
+10
+
+Name the Year: Edwin Land, founded instant photography (Polaroid), born in?
+1909
+10
+
+Name the Year: EE Barnard at Lick discovers Amalthea, 5th Jupiter moon?
+1892
+10
+
+Name the Year: EEC Anniversary?
+1950
+10
+
+Name the Year: Efrem Zimbalist, Jr., actor (77 Sunset Strip, The Untouchables)?
+1923
+10
+
+Name the Year: Egypt and Morocco troops land in Saudi Arabia to prevent Iraqi invasion?
+1990
+10
+
+Name the Year: Egypt proclaimed a republic?
+1953
+10
+
+Name the Year: Egypt seizes Suez Canal?
+1956
+10
+
+Name the Year: Egyptian Pres Anwar Sadat first meeting with President Jimmy Carter?
+1977
+10
+
+Name the Year: Egyptian President Anwar Sadat arrives in Israel?
+1977
+10
+
+Name the Year: Egyptian President Anwar Sadat became first Arab leader to address Israel's Knesset?
+1977
+10
+
+Name the Year: Egyptian president Nassar closes Straits of Tiran to Israel?
+1967
+10
+
+Name the Year: Egyptian President Sadat formally accepts invitation to visit Israel?
+1977
+10
+
+Name the Year: Eighteenth Space Shuttle Mission - Discovery 5 is launched?
+1985
+10
+
+Name the Year: Einstein's Theory of General Relativity presented?
+1916
+10
+
+Name the Year: Eisenhower and Italian Marshal Pietro Badoglio sign an armistice?
+1943
+10
+
+Name the Year: Eisenhower orders US troops to desegregate Little Rock schools?
+1957
+10
+
+Name the Year: Ejnar Hertzsprung, Danish astronomer (Hertzsprung-Russell diagram), born in?
+1873
+10
+
+Name the Year: Ejnar Hertzsprung, Danish astrophysicist dies at 94?
+1967
+10
+
+Name the Year: El Salvador's 1st battle against Spain for independence?
+1811
+10
+
+Name the Year: Elbridge Gerry, 5th VP, gov. of Mass., invented gerrymandering, born in?
+1744
+10
+
+Name the Year: Electric neon sign patented?
+1915
+10
+
+Name the Year: Element 103, lawrencium, first produced in Berkeley, California lab?
+1961
+10
+
+Name the Year: Element 98 - californium announced?
+1950
+10
+
+Name the Year: Element mendelevium announced - element 101?
+1955
+10
+
+Name the Year: Eleventh Space Shuttle Mission - Challenger 5 is launched?
+1984
+10
+
+Name the Year: Eleventh Space Shuttle Mission - Challenger 5 returns to Earth?
+1984
+10
+
+Name the Year: Eli Whitney applies for patent for the cotton gin?
+1793
+10
+
+Name the Year: Eli Whitney received patent for cotton gin?
+1794
+10
+
+Name the Year: Elias Howe (in Spencer, Mass), sewing machine inventor, born in?
+1819
+10
+
+Name the Year: Elias Howe patents the sewing machine?
+1846
+10
+
+Name the Year: Elie Wiesel, author (Souls on Fire), Nazi hunter (Nobel 1986)?
+1928
+10
+
+Name the Year: Eliot Ness untouchable (FBI agent-Chicago), born in?
+1903
+10
+
+Name the Year: Elizabeth Alexandra Mary Windsor II, queen of England (1952- ), born in?
+1926
+10
+
+Name the Year: Elizabeth Ann Seton of New York was beatified. She was sainted in 1975?
+1963
+10
+
+Name the Year: Elizabeth Barrett Browning, poet, born in?
+1806
+10
+
+Name the Year: Elizabeth I ascends English throne upon death of Queen Mary?
+1558
+10
+
+Name the Year: Elizabeth I crowned queen of England in Westminster Abbey?
+1559
+10
+
+Name the Year: Elizabeth II becomes queen of Great Britain?
+1952
+10
+
+Name the Year: Elizabeth Taylor (in London, England), actress, had many husbands, born in?
+1932
+10
+
+Name the Year: Elizabeth Taylor weds for the 8th time (Larry Fortensky)?
+1991
+10
+
+Name the Year: Elizabeth, empress of Russia (to Peter the Great and Catherine I)?
+1709
+10
+
+Name the Year: Ella Fitzgerald, singer, born in?
+1918
+10
+
+Name the Year: Ellis Island (NYC) opens as a US immigration depot?
+1890
+10
+
+Name the Year: Ellis Island Historical Site opens on Eliis Island, NYC?
+1990
+10
+
+Name the Year: Elmer A Sperry inventor (gyrocompass), born in?
+1860
+10
+
+Name the Year: Elton John becomes 1st pop star to perform in Israel?
+1979
+10
+
+Name the Year: Elton John, singer, born in?
+1947
+10
+
+Name the Year: Elvis and Priscilla Presley divorce after 6 years?
+1973
+10
+
+Name the Year: Elvis Costello [Declan Patrick McManus], rocker (Allison), born in?
+1954
+10
+
+Name the Year: Elvis Presley appears on a Frank Sinatra TV special?
+1960
+10
+
+Name the Year: Elvis Presley appears on national TV for 1st time (Ed Sullivan)?
+1956
+10
+
+Name the Year: Elvis Presley records his first two singles at Sun Record Studios?
+1954
+10
+
+Name the Year: Elvis Presley was inducted into the Army in Memphis, Tenn?
+1958
+10
+
+Name the Year: Elvis Presley, dies of heart ailment at Graceland at age 42 . . . or goes into hiding. (Your Choice.)?
+1977
+10
+
+Name the Year: Elvis Presley, singer, born in?
+1935
+10
+
+Name the Year: Emanuel Ungaro, fashion designer, born in?
+1933
+10
+
+Name the Year: Emiliano Zapata, Mexican revolutionary, peasant leader?
+1879
+10
+
+Name the Year: Emilio Estevez actor (Breakfast Club, Young Guns)?
+1962
+10
+
+Name the Year: Emilio Estevez actor (Young Guns), born in?
+1962
+10
+
+Name the Year: Emily Bronte, novelist (Wuthering Heights), born in?
+1818
+10
+
+Name the Year: Emily Dickinson (in Amherst, Mass), poet, born in?
+1830
+10
+
+Name the Year: Emily Dickinson, poet, born in?
+1830
+10
+
+Name the Year: Emily Post authority on social behavior, writer (Etiquette), born in?
+1872
+10
+
+Name the Year: Emma Lazarus, whose poem was inscribed on the Statue of Liberty, born in?
+1849
+10
+
+Name the Year: Emmett Kelly, circus clown (Weary Willie) born?
+1898
+10
+
+Name the Year: Emmylou Harris (in Alabama), singer, born in?
+1948
+10
+
+Name the Year: Emperor Haile Selassie (Ethiopia) visits Kingston Jamaica?
+1966
+10
+
+Name the Year: Emperor Hirohito of Japan (1926-89), born in?
+1901
+10
+
+Name the Year: Emperor Napoleon married by proxy to Archduchess Marie Louise?
+1810
+10
+
+Name the Year: Empress Maria Theresa, Austria (Wife of Napolean), born in?
+1717
+10
+
+Name the Year: Empress of China sets sail on first New York to China route?
+1784
+10
+
+Name the Year: En route to Halley's Comet, USSR's Vega 2 drops lander on Venus?
+1985
+10
+
+Name the Year: End of USSR experimental calendar?
+1940
+10
+
+Name the Year: England & France declare war on Emperor Charles V of Spain?
+1528
+10
+
+Name the Year: England and colonies adopt Gregorian calendar, 11 days disappear, rioting ensues?
+1752
+10
+
+Name the Year: England beats West Germany 4-2 for Football's 8th World Cup in London?
+1966
+10
+
+Name the Year: England becomes 6th nation to have a satellite (Prospero) in orbit?
+1971
+10
+
+Name the Year: England passes Act of Grace, forgiving followers of James II?
+1690
+10
+
+Name the Year: England's House of Commons detroyed in a blitz?
+1941
+10
+
+Name the Year: England's King Henry VIII 6-month marriage to Anne of Cleves annulled?
+1540
+10
+
+Name the Year: England's King Henry VIII weds Catherine Parr (6th and last wife)?
+1543
+10
+
+Name the Year: England's King Richard I (the Lion-Hearted) crowned in Westminster?
+1189
+10
+
+Name the Year: England's King Richard III crowned?
+1483
+10
+
+Name the Year: English defeat French at Battle of Blenheim?
+1704
+10
+
+Name the Year: English defeat French at Battle of Poitiers?
+1356
+10
+
+Name the Year: English defeat Scots at Battle of Falkirk?
+1298
+10
+
+Name the Year: English explorer Henry Hudson enters the Hudson River?
+1609
+10
+
+Name the Year: English fleet attacks the Spanish armada?
+1588
+10
+
+Name the Year: English fleet defeats Spanish armada?
+1588
+10
+
+Name the Year: English king Ethelred II launches massacre of Danish settlers?
+1002
+10
+
+Name the Year: English longbows defeat French in Battle of Crecy?
+1346
+10
+
+Name the Year: English Parliament adopts Bill of Rights after Cromwell's Revolution?
+1689
+10
+
+Name the Year: English standing army first founded?
+1645
+10
+
+Name the Year: English, Dutch and Austrians defeat French in Battle of Malplaquet?
+1709
+10
+
+Name the Year: Enrico Caruso (in Italy), singer, born in?
+1873
+10
+
+Name the Year: Enrico Fermi, Italy, nuclear physicist, born in?
+1901
+10
+
+Name the Year: Enver Hoxha, post-war leader of Albania?
+1908
+10
+
+Name the Year: Enzo Ferrari, car designer and manufacturer, born in?
+1898
+10
+
+Name the Year: Episcopal Church approves ordination of women as priests and bishop?
+1976
+10
+
+Name the Year: Equatorial Guinea gained independence from Spain (National Day)?
+1968
+10
+
+Name the Year: Eric Burdon rocker (Animals-House of the Rising Sun), born in?
+1941
+10
+
+Name the Year: Eric Burdon, rocker (Animals-House of the Rising Sun)?
+1941
+10
+
+Name the Year: Eric Clapton, guitarist, singer, born in?
+1945
+10
+
+Name the Year: Eric Drummond 1st Secretary-General of League of Nations (1919-33), born in?
+1876
+10
+
+Name the Year: Eric Morecambe comedian (Morecambe & Wise), dies at 58?
+1984
+10
+
+Name the Year: Erich Warsitz makes first jet-propelled flight (in a Heinkel He-178)?
+1939
+10
+
+Name the Year: Erich Weiss (aka Harry Houdini), escapist?
+1874
+10
+
+Name the Year: Erich Weiss, better known as Magician Harry Houdini, dies?
+1926
+10
+
+Name the Year: Erik Estrada, actor, born in?
+1949
+10
+
+Name the Year: Erika Eleniak, actress (Under Siege, Beverly Hillbillies), born in?
+1969
+10
+
+Name the Year: Erle Stanley Gardner, writer, created Perry Mason, born in?
+1889
+10
+
+Name the Year: Ernest Hausen of Wisconsin sets chicken-plucking record-4.4 sec...?
+1939
+10
+
+Name the Year: Ernest Hemingway shot himself to death in Ketchum, Idaho?
+1961
+10
+
+Name the Year: Ernest Hemmingway, author, (Nobel 1954), born in?
+1899
+10
+
+Name the Year: Ernest Lord Rutherford England, physicist; discovered atomic nucleus, born in?
+1871
+10
+
+Name the Year: Ernesto Teodoro Moneta, Italian journalist (Nobel Peace Prize 1907)?
+1833
+10
+
+Name the Year: Erno Rubik Budapest, inventor (Rubik's cube), born in?
+1944
+10
+
+Name the Year: Ernst Heinkel demonstrates 800-kph rocket plane to Hitler?
+1939
+10
+
+Name the Year: Errol Flynn actor (Captain Blood, Robin Hood, Against All Flags), born in?
+1909
+10
+
+Name the Year: Errol Walton Barrow, PM of Barbados (DLP) (1966-76, 1986-?), born in?
+1920
+10
+
+Name the Year: ERTS 1 (Earth Resources Technology Satellite), later called LANDSAT, launched to start its multi-spectral scans of Earth?
+1972
+10
+
+Name the Year: Erwin Rommel, German field marshall, brilliant tactician?
+1891
+10
+
+Name the Year: Erwin Schrodinger Austria, physicist (had a cat), born in?
+1887
+10
+
+Name the Year: Estee Lauder CEO (Estee Lauder's cosmetics), born in?
+1908
+10
+
+Name the Year: Estelle Getty NYC, actress (Sophia Petrillo-Golden Girls), born in?
+1924
+10
+
+Name the Year: Esther Williams (in Inglewood, CA), actor, swimmer?
+1923
+10
+
+Name the Year: Esther Williams, swimmer, actor, born in?
+1923
+10
+
+Name the Year: Ethel Merman stage & screen actress (Anything Goes, Call Me Madam), born in?
+1908
+10
+
+Name the Year: Eugene Ionesco, French dramatist (Rhinoceros)?
+1912
+10
+
+Name the Year: Eugene O'Neill, playwright (Desire Under the Elms) (Nobel 1936)?
+1888
+10
+
+Name the Year: European community proposes a boycott of Iraq?
+1990
+10
+
+Name the Year: European Space Agency launches Giotto Sattelite to Halley's Comet?
+1985
+10
+
+Name the Year: Eva Gabor (Budapest, Hungary), actress (Green Acres), born in?
+1921
+10
+
+Name the Year: Eva Peron, Argentine first lady, born in?
+1919
+10
+
+Name the Year: Evander Hollyfield, 2-time Heavyweight boxing champ, born in?
+1962
+10
+
+Name the Year: Everlasting League forms, basis of Swiss Confederation (Nat'l Day)?
+1291
+10
+
+Name the Year: Excelsior diamond (blue-white 995 carats) discovered?
+1893
+10
+
+Name the Year: Experimental reactor kills three in Idaho Falls, Idaho?
+1961
+10
+
+Name the Year: Explorer VI reveals an intense radation belt around the Earth?
+1959
+10
+
+Name the Year: Explosive eruption blows 1.2 km off the top of volcano Papandayan, Java, kills 3,000?
+1772
+10
+
+Name the Year: Ezra Daggett & nephew Thomas Kensett patent food storage in tin cans?
+1825
+10
+
+Name the Year: Ezra Pound (in Hailey, Idaho)?
+1885
+10
+
+Name the Year: F. Murray Abraham, actor (Amadeus, Name of the Rose), born in?
+1940
+10
+
+Name the Year: F. Scott Fitzgerald (in St. Paul, MN), writer (Great Gatsby), born in?
+1896
+10
+
+Name the Year: Fabian Gottlieb von Bellinghausen 1st to circumnavigate Antarctica, born in?
+1778
+10
+
+Name the Year: Facsimile high-speed radio transmission demonstrated, Washington DC?
+1948
+10
+
+Name the Year: Fahd becomes king of Saudi Arabia when King Khalid dies at 69?
+1982
+10
+
+Name the Year: Faisal II, King of Iraq, born in?
+1935
+10
+
+Name the Year: Fanny Burney, England, author (Camille, Evelina), born in?
+1752
+10
+
+Name the Year: Farrah Fawcett-Major (in Texas), actress (Charlie's Angels), born in?
+1947
+10
+
+Name the Year: Fatal Apollo I fire kills Grissom, Chaffee, and White?
+1967
+10
+
+Name the Year: Fats Domino, singer, born in?
+1928
+10
+
+Name the Year: Fats Waller jazz pianist, composer (Ain't Misbehavin'), born in?
+1904
+10
+
+Name the Year: Fay Wray Alberta Canada, actress-King Kong's main squeeze, born in?
+1907
+10
+
+Name the Year: Fay Wray, actress (King Kong), born in?
+1907
+10
+
+Name the Year: Faye Dunaway, actress (Chinatown, Bonnie & Clyde), born in?
+1941
+10
+
+Name the Year: FBI arrests John A Walker Jr, convicted of spying for USSR?
+1985
+10
+
+Name the Year: FBI captures 8 Nazi saboteurs from a sub off NY's Long Island?
+1942
+10
+
+Name the Year: FDR appoints Gen Eisenhower supreme commander of Allied forces?
+1943
+10
+
+Name the Year: FDR grants future independence to the Philippines?
+1934
+10
+
+Name the Year: FDR orders any Axis ship found in American waters be shot on sight?
+1941
+10
+
+Name the Year: Federal Bureau of Investigation established?
+1908
+10
+
+Name the Year: Federal jury found Lynette Fromme guilty of attempted assassination?
+1975
+10
+
+Name the Year: Federal Republic of [West] Germany created under 3-power occupation?
+1949
+10
+
+Name the Year: Federal Voting Rights Act guarantees black voting rights?
+1965
+10
+
+Name the Year: Federation Internationale de Football Association (FIFA), Football's World governing body forms?
+1904
+10
+
+Name the Year: Federation of Mali (& Senegal) becomes independent of France?
+1960
+10
+
+Name the Year: Federico Fellini Italian director (Satyricon, La Dolce Vita), born in?
+1920
+10
+
+Name the Year: Felix Bloch, U.S. physicist (Nobel 1952), born in?
+1905
+10
+
+Name the Year: Felix the Cat, cartoon character, born in?
+1917
+10
+
+Name the Year: Felix Wankel, Germany, inventor (Wankel rotary-piston engine), born in?
+1902
+10
+
+Name the Year: Ferdinand de Lesseps, French diplomat, built Suez Canal?
+1805
+10
+
+Name the Year: Ferdinand Foch, believed to be the leader responsible for Allies winning World War I?
+1851
+10
+
+Name the Year: Ferdinand Magellan world traveler, killed by Filipino natives?
+1521
+10
+
+Name the Year: Ferdinand Marcos deposed president of Phillipines, dies?
+1989
+10
+
+Name the Year: Ferdinand Marcos Philippines Pres (1965-86), born in?
+1917
+10
+
+Name the Year: Ferdinand VI, king of Spain (1746-59), born in?
+1713
+10
+
+Name the Year: Fess Parker, actor (Davy Crockett, Gunsmoke), born in?
+1925
+10
+
+Name the Year: Fidel Castro announces there will be no more elections in Cuba?
+1961
+10
+
+Name the Year: Fidel Castro became Premier of Cuba?
+1959
+10
+
+Name the Year: Fidel Castro declares he's a Marxist, & will lead Cuba to Communism?
+1961
+10
+
+Name the Year: Fidel Castro leads attack on Moncada Barracks, begins Cuban Revolution?
+1953
+10
+
+Name the Year: Fidel Castro makes a speech on Cuban pirate radio Rebelde?
+1958
+10
+
+Name the Year: Fidel Castro siezes power in Cuba?
+1959
+10
+
+Name the Year: Fidel Castro, Cuban political leader (1959-?), born in?
+1927
+10
+
+Name the Year: Field Marshal Viscount Montgomery of Alamein (in Moville, Ireland)?
+1887
+10
+
+Name the Year: Fifteenth Space Shuttle Mission - Discovery 3 returns to Earth?
+1985
+10
+
+Name the Year: Fifth Space Shuttle Mission - Columbia 5 returns to Earth?
+1982
+10
+
+Name the Year: Fiji gained independence from Britain (National Day)?
+1970
+10
+
+Name the Year: Final European scheduled run of the Orient Express (94 years)?
+1977
+10
+
+Name the Year: Finland awarded 1940 Olympic games after Japan withdraws?
+1938
+10
+
+Name the Year: Finland declares war on the U.S.S.R?
+1941
+10
+
+Name the Year: Finland enters WW II against Russia?
+1941
+10
+
+Name the Year: Finland surrendered to the Soviet Union during World War II?
+1940
+10
+
+Name the Year: Fire of Moscow?
+1812
+10
+
+Name the Year: First air conditioned automobile (Packard) exhibited, Chicago, IL?
+1939
+10
+
+Name the Year: First airplane flight from the deck of a ship?
+1910
+10
+
+Name the Year: First airplane flight in Europe?
+1906
+10
+
+Name the Year: First airplane flight to Los Angeles from San Francisco?
+1914
+10
+
+Name the Year: First airplane to exceed 1800 mph - HA Hanes, Palmdale Ca?
+1955
+10
+
+Name the Year: First all solid propellant rocket put into orbit from Wallops Island, VA?
+1961
+10
+
+Name the Year: First all-color television station to televise live local programs?
+1986
+10
+
+Name the Year: First ambassador to Canada, Ray Atherton, nominated?
+1943
+10
+
+Name the Year: First American expeditionary force to land in Africa (WW II)?
+1942
+10
+
+Name the Year: First American offensive in Pacific in WW2, Guadalcanal, Solomon Is?
+1942
+10
+
+Name the Year: First American pilot to shoot down German fighter plane, SF Junkin?
+1942
+10
+
+Name the Year: First American satellite to reach moon launched from Cape Canaveral?
+1962
+10
+
+Name the Year: First American school for the deaf (Hartford, Connecticut)?
+1817
+10
+
+Name the Year: First and only live murder on TV - Jack Ruby shoots Lee Harvey Oswald?
+1963
+10
+
+Name the Year: First animals fired into space and rescued, Cape Canaveral?
+1959
+10
+
+Name the Year: First animated cartoon is copyrighted?
+1906
+10
+
+Name the Year: First Artificial heart recipient Dr. Barney Clark died after 112 days?
+1983
+10
+
+Name the Year: First astronauts - selection announced by NASA?
+1959
+10
+
+Name the Year: First atomic blast, Trinity Site, Alamogordo, New Mexico?
+1945
+10
+
+Name the Year: First atomic explosion witnessed by troops, NM?
+1951
+10
+
+Name the Year: First atomic power clock exhibited ____ New York City
+1956
+10
+
+Name the Year: First atomic reactor for research and development, Richland, Wa?
+1960
+10
+
+Name the Year: First Automated return of lunar sample by Luna 16?
+1970
+10
+
+Name the Year: First automobile to exceed 400 mph, John Cobb, Bonneville Salt Flats?
+1947
+10
+
+Name the Year: First automobile/airplane combination tested, Santa Monica, Ca?
+1937
+10
+
+Name the Year: First aviator to bail out at supersonic speed - G. F. Smith?
+1955
+10
+
+Name the Year: First B-29 bombing raid one plane lost; engine failure?
+1944
+10
+
+Name the Year: First balloon crossing of Pacific completed (Double Eagle V)?
+1981
+10
+
+Name the Year: First black player in National Basketball Association, Fort Wayne, IN?
+1950
+10
+
+Name the Year: First blood bank established, Chicago, IL?
+1937
+10
+
+Name the Year: First Boeing 737 rolls out?
+1967
+10
+
+Name the Year: First book published, Johann Guttenberg's Bible?
+1452
+10
+
+Name the Year: First broadcast by a 'ham' operator ____ Einar Dessau of Denmark
+1909
+10
+
+Name the Year: First Cable Car is patented by Andrew S. Hallidie?
+1871
+10
+
+Name the Year: First child born in aircraft, Miami, Fl?
+1929
+10
+
+Name the Year: First civilian to exceed speed of sound ____ H. H. Houver at Edwards Air Force Base, CA
+1948
+10
+
+Name the Year: First color network telecast in compatible color Boston, MA?
+1953
+10
+
+Name the Year: First color TV demonstration NY city?
+1929
+10
+
+Name the Year: First commercial coal pipeline placed in operation?
+1957
+10
+
+Name the Year: First commercially designed helicopter tested at Bridgeport, CT?
+1946
+10
+
+Name the Year: First computer chess tournament?
+1970
+10
+
+Name the Year: First Davis Cup tennis matches, held in Boston. The U.S. defeats Britain?
+1900
+10
+
+Name the Year: First drinking straw is patented by M.C. Stone in Washington, D.C?
+1888
+10
+
+Name the Year: First drive-in theatre opens, in Camden, New Jersey?
+1933
+10
+
+Name the Year: First electric burglar alarm is installed in Boston, Mass?
+1858
+10
+
+Name the Year: First electric power generated from atomic energy sold commercially?
+1955
+10
+
+Name the Year: First electric railway opens at Berlin Trades Exposition?
+1879
+10
+
+Name the Year: First electric razor marketed by Schick, Inc?
+1931
+10
+
+Name the Year: First electric watch introduced at Lancaster, PA?
+1957
+10
+
+Name the Year: First electronic wrist watch placed on sale, NY city?
+1960
+10
+
+Name the Year: First Emmy Awards are given out?
+1949
+10
+
+Name the Year: First flight Junkers F13 advanced monoplane airliner?
+1919
+10
+
+Name the Year: First FM radio transmission?
+1940
+10
+
+Name the Year: First FORTRAN computer program run?
+1954
+10
+
+Name the Year: First German ship in WW2 captured by US ship (Busko)?
+1941
+10
+
+Name the Year: First guided missile destroyer launched, the Dewey, Bath, Me?
+1958
+10
+
+Name the Year: First helicopter licensed for commercial use - New York City?
+1946
+10
+
+Name the Year: First helicopter transatlantic flight began?
+1952
+10
+
+Name the Year: First house with built-in bomb shelter exhibited, Pleasant Hills, Pa?
+1959
+10
+
+Name the Year: First Human Rights Day?
+1949
+10
+
+Name the Year: First hydrogen device exploded at Eniwetok Atoll in the Pacific?
+1952
+10
+
+Name the Year: First hydrogen-filled balloon ascent (unmanned)?
+1783
+10
+
+Name the Year: First In-flight movie is shown (on TWA)?
+1961
+10
+
+Name the Year: First Income Tax imposed?
+1799
+10
+
+Name the Year: First indoor swimming pool opens at Goodman's Fields, London?
+1742
+10
+
+Name the Year: First infra-red photograph, Rochester, NY?
+1931
+10
+
+Name the Year: First instant develop camera demonstrated in NY City by E. H. Land?
+1947
+10
+
+Name the Year: First interment in US National Cemetary at Presidio?
+1852
+10
+
+Name the Year: First Israeli election?
+1949
+10
+
+Name the Year: First Italian Parliament met at Turin?
+1860
+10
+
+Name the Year: First Japanese ambassador to the U.S?
+1860
+10
+
+Name the Year: First jazz record in United States is cut?
+1917
+10
+
+Name the Year: First jet plane combat victor in Korea - RJ Brown?
+1950
+10
+
+Name the Year: First jet propelled airplane tested?
+1942
+10
+
+Name the Year: First known ascent in a hot-air balloon, by Father Bartolomeu de Gusmao of Portugal (indoors!)?
+1709
+10
+
+Name the Year: First known auto race?
+1895
+10
+
+Name the Year: First known photo of Loch Ness monster (or whatever) is taken?
+1933
+10
+
+Name the Year: First landing by an airplane at geographic North Pole?
+1952
+10
+
+Name the Year: First lion to be seen in America was exhibited in Boston?
+1716
+10
+
+Name the Year: First live, nationally televised, Presidential news conference (JFK)?
+1961
+10
+
+Name the Year: First Lt. William L. Calley, Jr. found guilty in the MyLai massacre?
+1971
+10
+
+Name the Year: First major tidal power plant opened at Rance estuary, France?
+1966
+10
+
+Name the Year: First man-powered flight (Bryan Allen in Gossamer Condor)?
+1977
+10
+
+Name the Year: First manned balloon flight across Pacific Ocean ended?
+1981
+10
+
+Name the Year: First manned rocket flight (by auto maker Fritz von Opel)?
+1939
+10
+
+Name the Year: First Meteor photograph?
+1885
+10
+
+Name the Year: First meteorite known to have struck a woman - Sylacauga, Alabama?
+1954
+10
+
+Name the Year: First mobile electric power plant delivered, Philadelphia PA?
+1944
+10
+
+Name the Year: First Mormon temple was dedicated in Kirtland, Ohio?
+1836
+10
+
+Name the Year: First motion picture shown in NY City?
+1894
+10
+
+Name the Year: First motorcycle race, Manhattan Beach, N.Y?
+1899
+10
+
+Name the Year: First museum devoted exclusively to atomic energy, Oak Ridge, TN?
+1949
+10
+
+Name the Year: First New York City subway line was opened to the public?
+1870
+10
+
+Name the Year: First New York to Paris auto race (via Alaska and Siberia) begins. George Schuster wins after 88 days behind the wheel?
+1908
+10
+
+Name the Year: First Nobel Peace Prizes (to Jean Henri Dunant, Frederic Passy)?
+1901
+10
+
+Name the Year: First non-stop, round-the-world airplane flight completed?
+1949
+10
+
+Name the Year: First North Pole jet crossing?
+1951
+10
+
+Name the Year: First nylon parachute jump Hartford Ct Adeline Gray?
+1942
+10
+
+Name the Year: First official St. Patrick's Day?
+1753
+10
+
+Name the Year: First oil drill seagoing rig placed in service?
+1955
+10
+
+Name the Year: First partition of Poland, between Austria, Prussia and Russia?
+1772
+10
+
+Name the Year: First passenger to fly commercially around the world in less than 100 hours?
+1953
+10
+
+Name the Year: First pineapples planted in Hawaii?
+1813
+10
+
+Name the Year: First plastic lens for cataract patients fitted, Philadelphia, PA?
+1952
+10
+
+Name the Year: First postcards are issued in Vienna?
+1869
+10
+
+Name the Year: First practical rectangular TV tube announced ____ Toledo, Oh
+1949
+10
+
+Name the Year: First printing press in America?
+1639
+10
+
+Name the Year: First professional golf tournament held?
+1916
+10
+
+Name the Year: First protestant ministry society in New England?
+1644
+10
+
+Name the Year: First public announcement about Walt Disney World?
+1965
+10
+
+Name the Year: First public demonstration of television?
+1926
+10
+
+Name the Year: First public display of the telephone at the Philedelphia Exhibition?
+1876
+10
+
+Name the Year: First public game of basketball?
+1892
+10
+
+Name the Year: First published reference to the game of Poker describes it as a Mississippi riverboat game?
+1834
+10
+
+Name the Year: First radar signal to moon, Belmar, NJ?
+1946
+10
+
+Name the Year: First radio-assisted rescue at sea?
+1909
+10
+
+Name the Year: First radio-telescope news messages transmitted from U.S. to England?
+1923
+10
+
+Name the Year: First radioactive substance produced synthetically (radium E)?
+1936
+10
+
+Name the Year: First recorded bicycle race, 2 kilometers in Paris?
+1868
+10
+
+Name the Year: First regular steam train passenger service starts?
+1830
+10
+
+Name the Year: First reported sighting of Flying Saucers, near Mt. Rainier, Washington by Kenneth Arnold of Boise, Idaho?
+1947
+10
+
+Name the Year: First rocket air mail flight, Greenwood Lake, NY?
+1935
+10
+
+Name the Year: First rocket to exceed 150 mile altitude - White Sands, NM?
+1954
+10
+
+Name the Year: First rocket to intercept an airplane, White Sands, NM?
+1951
+10
+
+Name the Year: First rocket to reach outer space launched at White Sands, NM?
+1949
+10
+
+Name the Year: First rocket with nuclear warhead fired, Yucca Flat, Nevada?
+1957
+10
+
+Name the Year: First round-the-world trip by a woman on a bicycle (took 15 months)?
+1895
+10
+
+Name the Year: First round-the-world trip by yacht (Cornelius Vanderbilt)?
+1853
+10
+
+Name the Year: First self-propelled locomotive on rails demonstrated, in Wales?
+1804
+10
+
+Name the Year: First self-sustaining nuclear chain reaction demonstrated in one of the squash court under Stagg Field, University of Chicago?
+1942
+10
+
+Name the Year: First settlement established by the English in Australia. AUSTRALIA DAY !?
+1788
+10
+
+Name the Year: First shipload of Chinese immigrants arrives in San Francisco, CA?
+1848
+10
+
+Name the Year: First shipment of canned pineapple from Hawaii?
+1895
+10
+
+Name the Year: First Soviet liquid rocket attains altitude of 261 ft?
+1933
+10
+
+Name the Year: First Space Shuttle - Columbia 1 returns to Earth?
+1981
+10
+
+Name the Year: First speed-boat to exceed 200 miles per hour (D.M. Campbell, pilot)?
+1955
+10
+
+Name the Year: First submarine captured and boarded on high seas - U 505?
+1944
+10
+
+Name the Year: First successful helicopter flight, Stratford, Ct?
+1940
+10
+
+Name the Year: First successful oil well drilled near Titusville, Penn?
+1859
+10
+
+Name the Year: First Sunday football game in Philadelphia (previously illegal)?
+1933
+10
+
+Name the Year: First synthetic detergent for home use marketed?
+1933
+10
+
+Name the Year: First synthetic rubber tire exhibited Akron, OH?
+1940
+10
+
+Name the Year: First Tape Recorder is sold?
+1948
+10
+
+Name the Year: First Teddy Bear introduced in America. Made by Morris and Rose Michtom, Russian immigrants?
+1903
+10
+
+Name the Year: First telecast of atomic explosion?
+1951
+10
+
+Name the Year: First telegraph company in Hawaii opens?
+1901
+10
+
+Name the Year: First Telephone book is issued, in New Haven, Conn?
+1878
+10
+
+Name the Year: First telephone exchange in San Francisco opens with 18 phones?
+1878
+10
+
+Name the Year: First telephone installed in the White House?
+1929
+10
+
+Name the Year: First televised tennis match?
+1928
+10
+
+Name the Year: First thermonuclear bomb detonated - Marshall Islands?
+1952
+10
+
+Name the Year: First transatlantic jet passenger trip?
+1950
+10
+
+Name the Year: First transatlantic radio broadcast?
+1925
+10
+
+Name the Year: First transatlantic round-trip air flight?
+1936
+10
+
+Name the Year: First transatlantic telephone cable goes into operation?
+1956
+10
+
+Name the Year: First transcontinental telegram sent?
+1861
+10
+
+Name the Year: First treaty signed by female ambassador - Eugenie Anderson?
+1951
+10
+
+Name the Year: First typesetting machine (photo engraving) used at Quincy, Mass?
+1954
+10
+
+Name the Year: First ultra high frequency (UHF) television station, Portland, OR?
+1952
+10
+
+Name the Year: First underground atomic explosion, Frenchman Flat, Nevada?
+1951
+10
+
+Name the Year: First underground railway opens in London?
+1863
+10
+
+Name the Year: First US ambassador to the USSR (W.C. Bullitt)?
+1933
+10
+
+Name the Year: First US lunar orbiter?
+1966
+10
+
+Name the Year: First US Presidential airplane christened?
+1954
+10
+
+Name the Year: First vaudeville theater opens?
+1883
+10
+
+Name the Year: First video recording on magnetic tape televised coast-to-coast?
+1956
+10
+
+Name the Year: First wartime conscription law in US went into effect?
+1863
+10
+
+Name the Year: First Wimbledon tennis championships held?
+1877
+10
+
+Name the Year: First Winter Olympics held at Lake Placid, NY?
+1932
+10
+
+Name the Year: First Women's Rights Convention. Seneca Falls, NY ... featuring the introduction of the first Bloomers?
+1848
+10
+
+Name the Year: First X-ray moving picture process demonstrated?
+1951
+10
+
+Name the Year: Fish, rock vocalist (Marillon), born in?
+1958
+10
+
+Name the Year: Five year truce between England and Scotland began?
+1491
+10
+
+Name the Year: Flamsteed sees solar eclipse, first known astronomical observation?
+1662
+10
+
+Name the Year: Flavius Ricimer general of the Western Roman Empire, kingmaker, born in?
+472
+10
+
+Name the Year: Flemish woman introduces practice of starching linen into England?
+1553
+10
+
+Name the Year: Flight 255 out of Metro Airport in Detroit crashes just miniutes after take off, killing all but one small child?
+1987
+10
+
+Name the Year: Florence Bascom US, 1st American woman PhD, born in?
+1862
+10
+
+Name the Year: Florence Henderson (in Indiana), actress (Alice in The Brady Bunch), born in?
+1934
+10
+
+Name the Year: Florence Nightingale Florence, Italy, nurse (Crimean War), born in?
+1820
+10
+
+Name the Year: Florenz Ziegfeld staged first `Follies' on the roof of the NY Theater?
+1907
+10
+
+Name the Year: Florenz Ziegfeld, of Follies fame, born in?
+1869
+10
+
+Name the Year: Flush toilet is patented by Mr. Thomas Crapper (honest!!)?
+1861
+10
+
+Name the Year: Folk-rock begins, Dylan uses electricity at Newport Folk Festival?
+1965
+10
+
+Name the Year: Football Association forms in England, standardizing Football?
+1863
+10
+
+Name the Year: For one second this afternoon, the time is 12:34:56, 7-8-90?
+1990
+10
+
+Name the Year: Ford Motor Co. introduced the Edsel! (Oh boy !)?
+1957
+10
+
+Name the Year: Ford Motor Company cancels the Edsel?
+1959
+10
+
+Name the Year: Ford Motor Company manufactures its 10 millionth automobile?
+1924
+10
+
+Name the Year: Formal reunification of North & South Vietnam?
+1976
+10
+
+Name the Year: Formosus ends his reign as Catholic Pope?
+896
+10
+
+Name the Year: Forrester issued a patent for computer core memory?
+1956
+10
+
+Name the Year: Fort Sumter, SC, shelled by Confederate troops under General Beauregard. The American Civil War begins?
+1861
+10
+
+Name the Year: Four planes take off on first successful around-the-world flight?
+1926
+10
+
+Name the Year: Four-wheeled roller skates patented by James Plimpton of New York?
+1863
+10
+
+Name the Year: Fourteenth Space Shuttle Mission - Discovery 2 is launched?
+1984
+10
+
+Name the Year: Fourteenth Space Shuttle Mission - Discovery 2 returns to Earth?
+1984
+10
+
+Name the Year: Fourth Space Shuttle Mission (Columbia 4) launched?
+1982
+10
+
+Name the Year: Fox TV network premiers showing Married With Children & Tracey Ullman?
+1987
+10
+
+Name the Year: France & Spain agree to donate arms to American rebels?
+1776
+10
+
+Name the Year: France and Algerian rebels agreed to a truce?
+1962
+10
+
+Name the Year: France announce it will send 4,000 troops to the Persian Gulf?
+1990
+10
+
+Name the Year: France asks Germany for terms of surrender in WW II?
+1940
+10
+
+Name the Year: France became world's 5th thermonuclear power?
+1968
+10
+
+Name the Year: France cedes Roussillon & Cerdogne to Spain by treaty of Barcelona?
+1493
+10
+
+Name the Year: France declares war on Austria, Prussia & Sardinia?
+1792
+10
+
+Name the Year: France grants Mauritania independence?
+1960
+10
+
+Name the Year: France grants Togo independence (Natl Day)?
+1960
+10
+
+Name the Year: France issues first driving licenses, including a required test?
+1893
+10
+
+Name the Year: France launches first satellite, a 92-pound A1 capsule?
+1965
+10
+
+Name the Year: France proclaims a protectorate over Chad?
+1900
+10
+
+Name the Year: France recognizes the independance of the 13 US colonies?
+1777
+10
+
+Name the Year: France recognizes Tunisia's independence?
+1956
+10
+
+Name the Year: France, the U.S.S.R., Great Britain, and the U.S. signed away their control over a partitioned Germany?
+1990
+10
+
+Name the Year: France's Protestant King Henri IV converts to Roman Catholic?
+1593
+10
+
+Name the Year: Frances Drake completres circumnavigation of the world?
+1581
+10
+
+Name the Year: Francie Larrieu, track runner?
+1952
+10
+
+Name the Year: Francis Bacon, England, statesman/essayist (Novum Organum), born in?
+1561
+10
+
+Name the Year: Francis Ford Coppola, director?
+1939
+10
+
+Name the Year: Francis Gary Powers convicted of spying by USSR (U-2 incident)?
+1960
+10
+
+Name the Year: Francis I forced to give up claims in Burgundy, Italy & Flanders?
+1526
+10
+
+Name the Year: Francis II, king of France (1559-60), born in?
+1544
+10
+
+Name the Year: Francisco de Zurbarin, Spanish Baroque painter?
+1598
+10
+
+Name the Year: Francisco Jose de Goya, artist, born in?
+1746
+10
+
+Name the Year: Francisco Madero, Mexican revolutionary, president (1911-13)?
+1873
+10
+
+Name the Year: Francois Coty, perfumemaker, born in?
+1874
+10
+
+Name the Year: Francois Ren, de Chateaubriand, French poet, novelist, statesman?
+1768
+10
+
+Name the Year: Francois-Andre Philidor, France, chess champion/musician, born in?
+1726
+10
+
+Name the Year: Francoise duc de la Rochefoucald Paris France, writer (Memoires), born in?
+1613
+10
+
+Name the Year: Frank Capra director (It's a Wonderful Life), dies at 94?
+1991
+10
+
+Name the Year: Frank Capra movie director (Its a Wonderful Life, Arsenic & Old Lace), born in?
+1897
+10
+
+Name the Year: Frank Herbert, sci-fi writer (Dune), born in?
+1920
+10
+
+Name the Year: Frank Nelson Doubleday, publisher and founder of Doubleday and Co., born in?
+1862
+10
+
+Name the Year: Frank Oz Heresford England, puppeteer (Sesame St, Muppet Show), born in?
+1944
+10
+
+Name the Year: Frank Thring, Australian actor (El Cid, Ben-Hur), dies at 68?
+1994
+10
+
+Name the Year: Frankie Avalon, singer (Four Seasons), born in?
+1940
+10
+
+Name the Year: Frankie Laine, singer, born in?
+1913
+10
+
+Name the Year: Frankie Valli, seasonal singer, born in?
+1947
+10
+
+Name the Year: Franklin D. Rooseveldt dies of a cerebral hemorrhage in Warm Springs, Ga?
+1945
+10
+
+Name the Year: Franklin D. Roosevelt and Winston S. Churchill signed the Atlantic Charter?
+1941
+10
+
+Name the Year: Franklin D. Roosevelt, 32nd President (1933-1945) in New Hyde Park NY, born in?
+1882
+10
+
+Name the Year: Franz Josef I becomes emperor of Austria and King of Hungary?
+1848
+10
+
+Name the Year: Franz Josef II, prince of Liechtenstein (1938- ), born in?
+1906
+10
+
+Name the Year: Franz Kafka, Czechoslavakia, author (Metamorphosis, Trial, Amerika), born in?
+1883
+10
+
+Name the Year: Franz Liszt (in Hungary), Romantic composer, virtuoso pianist, born in?
+1811
+10
+
+Name the Year: Franz Peter Schubert, Lichtenthal Austria, composer (Unfinished Symphony), born in?
+1797
+10
+
+Name the Year: Fred Astaire actor/dancer, dies at Century City Hospital in LA at 88?
+1987
+10
+
+Name the Year: Fred Astaire Omaha Neb, tap dancer/actor (Easter Parade, Swingtime), born in?
+1899
+10
+
+Name the Year: Fred Gwynne, actor (The Munsters), writer, born in?
+1926
+10
+
+Name the Year: Fred Haise, astronaut (Apollo 13)?
+1933
+10
+
+Name the Year: Freddie Mercury, singer, born in?
+1946
+10
+
+Name the Year: Frederic A. Bartholdi, sculptor who created the Statue of Liberty, born in?
+1834
+10
+
+Name the Year: Frederic Chopin, composer, born in?
+1810
+10
+
+Name the Year: Frederic Chopin, pianist, composer, born in?
+1810
+10
+
+Name the Year: Frederick I the Warlike, elector of Saxony, born in?
+1370
+10
+
+Name the Year: Frederick II king of Denmark, dies?
+1588
+10
+
+Name the Year: Frederick III Innsbruck Austria, German Emperor (1440-1493), born in?
+1415
+10
+
+Name the Year: Frederick Krupp, Arms manufacturer, born in?
+1854
+10
+
+Name the Year: Frederick R Spofforth Australia, cricketer (Demon), born in?
+1853
+10
+
+Name the Year: Frederick VI Danish king (1808-39); lost Norway to Sweden (1814), born in?
+1768
+10
+
+Name the Year: Frederick William I, king of Prussia, born in?
+1688
+10
+
+Name the Year: Free black commission of Philadelphia petitioned Congress to abolish slavery?
+1800
+10
+
+Name the Year: French agents sink Greenpeace's Rainbow Warrior in New Zealand?
+1985
+10
+
+Name the Year: French army revolts in Algeria?
+1961
+10
+
+Name the Year: French fortress of Verdun captured by Germans?
+1940
+10
+
+Name the Year: French manufacturer debuts 1st folding umbrella (Paris)?
+1715
+10
+
+Name the Year: French navy at Toulon scuttled its ships and submarines to prevent them from falling into hands of Nazis?
+1942
+10
+
+Name the Year: French president Georges Pompidou died in Paris?
+1974
+10
+
+Name the Year: French republic proclaimed?
+1870
+10
+
+Name the Year: French revolutionary writer Jean Paul Marat murdered by Charlotte Corday?
+1793
+10
+
+Name the Year: French-Egyptian forces under Napolean I beat Turks at Battle of Abukir?
+1799
+10
+
+Name the Year: Fridtjof Nansen, Norwegian Arctic explorer, humanitarian (Nobel 1922), born in?
+1861
+10
+
+Name the Year: Friedrich Engels, Marx's collaborator?
+1820
+10
+
+Name the Year: Friedrich Nietzsche philosopher, dies in Weimar, Germany?
+1900
+10
+
+Name the Year: Friedrich Nietzsche, philosopher, Ubermensch, born in?
+1844
+10
+
+Name the Year: Frits Zernike, inventor of phase-contrast microscope (Nobel 1953)?
+1888
+10
+
+Name the Year: Fritz Leiber, writer, born in?
+1910
+10
+
+Name the Year: Friz Freleng animator (Bugs Bunny-Emmy 1982), born in?
+1906
+10
+
+Name the Year: Frontenac becomes governor of New France (Canada)?
+1672
+10
+
+Name the Year: Frontiersman Daniel Boone died in Missouri at the age of 85?
+1820
+10
+
+Name the Year: Funeral for Japan's Emperor Hirohito costs his government $80-billion dollars, attracts all major world leaders?
+1989
+10
+
+Name the Year: Funeral of Pope Paul VI?
+1978
+10
+
+Name the Year: Funeral services held in Moscow for leader Konstantin Chernenko?
+1985
+10
+
+Name the Year: Funeral services held in Moscow's Red Square for Leonid I. Brezhnev?
+1982
+10
+
+Name the Year: Fyodor Dostoevsky, author?
+1918
+10
+
+Name the Year: Fyodor Dostoyevsky (in Russia), author (Crime and Punishment)?
+1821
+10
+
+Name the Year: G. Gordon Liddy, tough guy, Watergate celebrity?
+1930
+10
+
+Name the Year: Gabon gained independence from France (National Day)?
+1960
+10
+
+Name the Year: Gabriel Daniel Fahrenheit, invented the thermometer?
+1686
+10
+
+Name the Year: Gabriela Sabatini, tennis professional, raqueteer, born in?
+1970
+10
+
+Name the Year: Galba, Roman emperor, killed by Praetorian guard in the Forum, Rome?
+69
+10
+
+Name the Year: Galileo demonstrates his 1st telescope to Venetian lawmakers?
+1609
+10
+
+Name the Year: Galileo Galilei discovers Callisto, 4th satellite of Jupiter?
+1610
+10
+
+Name the Year: Galileo Galilei, astronomer, born in?
+1564
+10
+
+Name the Year: Galileo may have unknowingly viewed undiscovered planet Neptune?
+1613
+10
+
+Name the Year: Galileo passes within 600 miles of asteroid Ida?
+1993
+10
+
+Name the Year: Galileo perfects the telescope?
+1621
+10
+
+Name the Year: Gamal Abdel Nasser, President of Egypt (1954-1971?), born in?
+1918
+10
+
+Name the Year: Gambian National Day?
+1965
+10
+
+Name the Year: Garfield, famous cat (big fat hairy deal), born in?
+1978
+10
+
+Name the Year: Garros sets world altitude record of 4,250 m (13,944 ft)?
+1911
+10
+
+Name the Year: Garth Brooks, C&W singer, born in?
+1962
+10
+
+Name the Year: Gary Coleman, actor, born in?
+1968
+10
+
+Name the Year: Gary Cooper, 2 time Academy award winning actor, dies at 60?
+1961
+10
+
+Name the Year: Gary Cooper, actor (High Noon, The Plainsman), born in?
+1901
+10
+
+Name the Year: Gary Glitter [Paul Gadd] England, rocker (Rock & Roll Part II), born in?
+1944
+10
+
+Name the Year: Gary Kasparov (USSR) becomes World Chess Champion at age of 22?
+1985
+10
+
+Name the Year: Gary Player (in South Africa), golfer?
+1935
+10
+
+Name the Year: Gary Snyder beat poet (Rip Rap & Cold Mountain Poems), born in?
+1930
+10
+
+Name the Year: Gavin MacLeod, actor (Love Boat, Mary Tyler Moore Show), born in?
+1930
+10
+
+Name the Year: Geena Davis, actress (Beetlejuice, Fly), born in?
+1957
+10
+
+Name the Year: Gemini 10 launched?
+1966
+10
+
+Name the Year: Gemini 3 launched, first US 2-man space flight?
+1965
+10
+
+Name the Year: Gemini 5 returned after 12 days, 7 hours, 11 minutes, 53 seconds?
+1965
+10
+
+Name the Year: Gemini IV is launched. Ed White first American to walk in space?
+1965
+10
+
+Name the Year: Gemini IV returns to Earth?
+1965
+10
+
+Name the Year: Gemini IX is launched?
+1966
+10
+
+Name the Year: Gemini IX returns to Earth?
+1966
+10
+
+Name the Year: Gemini VI returns to Earth?
+1965
+10
+
+Name the Year: Gemini VIII is launched?
+1966
+10
+
+Name the Year: Gemini X returns to Earth?
+1966
+10
+
+Name the Year: Gemini XI is launched?
+1966
+10
+
+Name the Year: Gemini XI returns to Earth?
+1966
+10
+
+Name the Year: Gemini XII launched on four-day flight (the final Gemini flight)?
+1966
+10
+
+Name the Year: Gemini XII returns to Earth?
+1966
+10
+
+Name the Year: Gen George C. Marshall named special U.S. envoy to China?
+1945
+10
+
+Name the Year: Gen Omar Bradley last 5-star general, dies in NY at 88?
+1981
+10
+
+Name the Year: Gen Stonewall Jackson dies from wounds received at Chancellorsville?
+1863
+10
+
+Name the Year: Gen. Douglas MacArthur born, he did return!?
+1880
+10
+
+Name the Year: Gen. Douglas MacArthur left Bataan for Australia?
+1942
+10
+
+Name the Year: Gen. Douglas MacArthur named commander-in-chief, UN forces in Korea?
+1950
+10
+
+Name the Year: Gen. Eisenhower declared German defenses on Western Front broken?
+1945
+10
+
+Name the Year: Gen. Maxwell D. Taylor, former US Army chief of staff?
+1901
+10
+
+Name the Year: Gene Autry, singer/actor/Calif Angels owner, born in?
+1907
+10
+
+Name the Year: Gene Hackman, actor (Target, Uncommon Valor), born in?
+1930
+10
+
+Name the Year: Gene Kelly, dancer, actor, singer in the rain, born in?
+1912
+10
+
+Name the Year: Gene Roddenberry suggests 16 names including Kirk for Star Trek Captain?
+1965
+10
+
+Name the Year: Gene Simmons Queens, NY, rocker (KISS), born in?
+1949
+10
+
+Name the Year: Gene Tunney defeats Jack Dempsey for world heavyweight boxing title?
+1926
+10
+
+Name the Year: Gene Wilder, comedic actor, born in?
+1935
+10
+
+Name the Year: General Augustin de Iturbide crowned Augustin I, 1st emperor of Mexico?
+1822
+10
+
+Name the Year: Geneva Convention signed, by 12 nations?
+1864
+10
+
+Name the Year: Genghis Khan Mongol conqueror, died?
+1227
+10
+
+Name the Year: Gennadi M. Strekalov, Soviet cosmonaut (Soyuz T-3, T-8, T-11)?
+1940
+10
+
+Name the Year: Geo Ligowsky patents device to throw clay pigeons for trapshooters?
+1880
+10
+
+Name the Year: Geoffrey Plantagenet France, conquered Normandy, born in?
+1113
+10
+
+Name the Year: Georg Philipp Telemann, leading German late-baroque composer, born in?
+1681
+10
+
+Name the Year: Georg Simon Ohm, scientist, born in?
+1787
+10
+
+Name the Year: George Bernard Shaw, Dublin Ireland, dramatist (Pygmalion-Nobel 1925), born in?
+1856
+10
+
+Name the Year: George Burns [Nathan Birnbaum], NYC, actor/comedian (Oh God), born in?
+1896
+10
+
+Name the Year: George Bush becomes the first sitting vice-president of the U.S. in 150 years to win a presidential election?
+1988
+10
+
+Name the Year: George Canning (C) British PM (1827), born in?
+1770
+10
+
+Name the Year: George Eastman (at Waterville, NY), inventor of the Kodak camera?
+1854
+10
+
+Name the Year: George Eastman patents first rollfilm camera and registers Kodak?
+1888
+10
+
+Name the Year: George Eastman patents paper-strip photographic film?
+1884
+10
+
+Name the Year: George Eliot (in England), novelist (Silas Marner)?
+1819
+10
+
+Name the Year: George Foreman, boxer, born in?
+1949
+10
+
+Name the Year: George Frideric Handel, Baroque composer in Germany, born in?
+1685
+10
+
+Name the Year: George Gershwin composer (American in Paris), dies at 38?
+1937
+10
+
+Name the Year: George Gershwin, (in Brooklyn, NY), composer (Rhapsody in Blue), born in?
+1898
+10
+
+Name the Year: George Grant wins patent for his golf tee?
+1899
+10
+
+Name the Year: George Grenville, British prime minister (1763-65), born in?
+1712
+10
+
+Name the Year: George H. Gallop, pollster (what's your opinion?)?
+1901
+10
+
+Name the Year: George Harrison sings the lumberjack song with Monty Python?
+1976
+10
+
+Name the Year: George Harrison, singer (Beatles), born in?
+1943
+10
+
+Name the Year: George Herbert Walker Bush, former President of the United States, born in?
+1924
+10
+
+Name the Year: George Herman 'Babe' Ruth, born in?
+1895
+10
+
+Name the Year: George II king of England (1727-60), born in?
+1683
+10
+
+Name the Year: George II returns to Greece and regains monarchy?
+1935
+10
+
+Name the Year: George III ascends the British throne?
+1760
+10
+
+Name the Year: George III of England, king, born in?
+1738
+10
+
+Name the Year: George IV king of England (1820-30), born in?
+1762
+10
+
+Name the Year: George Lucas director (Star Wars), born in?
+1944
+10
+
+Name the Year: George Macdonald, Scottish novelist (Lilith), born in?
+1824
+10
+
+Name the Year: George Mifflin Dallas (D), 11th Vice President (1845-49), born in?
+1792
+10
+
+Name the Year: George Orwell, author (Animal Farm, 1984), dies in London at 46?
+1950
+10
+
+Name the Year: George Orwell, British novelist, dies in London at 46?
+1950
+10
+
+Name the Year: George Peppard, actor (Breakfast at Tiffany's, Blue Max, A-Team)?
+1928
+10
+
+Name the Year: George S. Patton, U.S. military leader?
+1885
+10
+
+Name the Year: George Sanders, actor (Mr Freeze-Batman TV series), dies at 65?
+1972
+10
+
+Name the Year: George Santayana, philosopher, poet, humanist, born in?
+1863
+10
+
+Name the Year: George Sax inventor (the saxophone), born in?
+1846
+10
+
+Name the Year: George Segal, actor, banjo player, born in?
+1934
+10
+
+Name the Year: George Steinbrenner, NY Yankees owner/ship builder/horse owner, born in?
+1930
+10
+
+Name the Year: George VI's coronation in Great Britain?
+1936
+10
+
+Name the Year: George Washington creates the Order of the Purple Heart?
+1782
+10
+
+Name the Year: George Washington resigned as US Army's commander-in-chief?
+1783
+10
+
+Name the Year: George Washington, father figure for U.S., President (1789-1796), born in?
+1732
+10
+
+Name the Year: George Wendt, actor (Cheers), born in?
+1949
+10
+
+Name the Year: Georges Bizet, composer?
+1838
+10
+
+Name the Year: Georges Claude, inventor of the neon light, born in?
+1870
+10
+
+Name the Year: Georges Seurat France, painter/pointillist (Grande Jatte), born in?
+1859
+10
+
+Name the Year: Georgia becomes a protectorate of tsarist Russia?
+1783
+10
+
+Name the Year: Georgia Tech defeats Cumberland College 222-0 in gridiron (record)?
+1915
+10
+
+Name the Year: Georgian Social Democratic Republic declared independence from Russia?
+1918
+10
+
+Name the Year: Gerald P. Carr, US astronaut (Skylab 4), born in?
+1932
+10
+
+Name the Year: Geraldine Page (in Kirksville, MO), actor (Trip to Bountiful)?
+1924
+10
+
+Name the Year: Geraldo Rivera opens Al Capone's vault on TV & finds nothing?
+1986
+10
+
+Name the Year: Gerhardus Mercator, geographer & map maker?
+1512
+10
+
+Name the Year: Gerhart Hauptmann, German writer (Before Dawn) (Nobel 1912)?
+1862
+10
+
+Name the Year: Germaine Greer, Melbourne, Australia, feminist/author (Female Eunich), born in?
+1939
+10
+
+Name the Year: German airship Graf Zeppelin ends a round-the-world flight?
+1929
+10
+
+Name the Year: German battleship Tirpitz was sunk off Norway?
+1944
+10
+
+Name the Year: German Chancellor Willy Brandt visits Israel?
+1972
+10
+
+Name the Year: German Democratic Republic accepts the Deutsche Mark as its currency?
+1990
+10
+
+Name the Year: German Empire proclaimed by Kaiser Wilhelm I?
+1871
+10
+
+Name the Year: German Field Marshal Erwin Rommel commits suicide rather than face trial for his part in an attempt to overthrow Hitler?
+1944
+10
+
+Name the Year: German forces occupied Brussels, Belgium, during World War I?
+1914
+10
+
+Name the Year: German Kingdom of Westphalia abolished?
+1813
+10
+
+Name the Year: German Reichstag granted Adolf Hitler dictatorial powers?
+1933
+10
+
+Name the Year: German rocket engineers begin work in U.S?
+1945
+10
+
+Name the Year: German rocket engineers begin work in USSR?
+1946
+10
+
+Name the Year: German scientist Robert Koch discovered bacillus cause of TB?
+1882
+10
+
+Name the Year: German SS kills 25,000 Jews in Minsk, Belorussia?
+1942
+10
+
+Name the Year: German U-boats begin harassing shipping on US east coast?
+1942
+10
+
+Name the Year: Germans begin punching holes in the Berlin Wall?
+1989
+10
+
+Name the Year: Germans defeat Russians in Battle of Tannenberg?
+1914
+10
+
+Name the Year: Germans scuttle their own fleet?
+1919
+10
+
+Name the Year: Germany annexes Sudetenland (1/3 of Czechoslovakia)?
+1938
+10
+
+Name the Year: Germany begins dropping incendiary bombs on London (WW II)?
+1940
+10
+
+Name the Year: Germany blitzes Conventry, England?
+1941
+10
+
+Name the Year: Germany completed annexation of Czechoslovakia's Sudetenland?
+1938
+10
+
+Name the Year: Germany declares war on Belgium; Britain declares war on Germany?
+1914
+10
+
+Name the Year: Germany declares war on Russia in WW I?
+1914
+10
+
+Name the Year: Germany declares war on Soviet Union during WW II?
+1941
+10
+
+Name the Year: Germany invades Austria?
+1938
+10
+
+Name the Year: Germany invades Belgium and declares war on France in WW I?
+1914
+10
+
+Name the Year: Germany invades Norway and Denmark in WW II?
+1940
+10
+
+Name the Year: Germany occupies Brussels, Belgium & begins invasion of France?
+1940
+10
+
+Name the Year: Geronimo, Apache Indian Chief, died?
+1909
+10
+
+Name the Year: Geronimo, Apache Indian, finally surrenders ending last major US-Indian war?
+1886
+10
+
+Name the Year: Gertrude Stein, writer, born in?
+1874
+10
+
+Name the Year: Ghana becomes a republic?
+1960
+10
+
+Name the Year: Gherman S. Titov, second Russian in space aboard Vostok 2?
+1961
+10
+
+Name the Year: Gherman Titov USSR, 1st man to spend a day in space (Vostok 2), born in?
+1935
+10
+
+Name the Year: Giacomo Matteotti Italian socialist deputy, assassinated by fascists?
+1924
+10
+
+Name the Year: Giacomo Puccini Italy, operatic composer (Madama Butterfly), born in?
+1858
+10
+
+Name the Year: Giant fireball impacts in Central Siberia (Tunguska Event)?
+1908
+10
+
+Name the Year: Gibraltar votes 12,138 to 44 to remain British?
+1967
+10
+
+Name the Year: Gideon Society established to place bibles in hotels?
+1899
+10
+
+Name the Year: Gilbert claims Newfoundland (first English colony in North America)?
+1583
+10
+
+Name the Year: Gilda Radner comedienne (Sat Night Live), dies at 42 of cancer?
+1989
+10
+
+Name the Year: Gilda Radner Detroit, comedienne (Saturday Night Live), born in?
+1946
+10
+
+Name the Year: Gillette patents 1st disposable razor?
+1901
+10
+
+Name the Year: Gina Lollobrigida, Subiaco Italy, actress (Trapeze, Falcon Crest), born in?
+1927
+10
+
+Name the Year: Giovanni Cassini discovers Iapetus, satellite of Saturn?
+1671
+10
+
+Name the Year: Giovanni Domenico Cassini discovered 4 satellites of Saturn?
+1625
+10
+
+Name the Year: Girl Guides (Girl Scouts) founded in Savanah, Ga?
+1912
+10
+
+Name the Year: Giuseppe Arcimboldo 1st surrealist painter, dies (birth date unkn)?
+1593
+10
+
+Name the Year: Giuseppe Garibaldi, unified Italy, born in?
+1807
+10
+
+Name the Year: Giuseppe Piazzi, discovered first asteroid, Ceres?
+1746
+10
+
+Name the Year: Giuseppe Piazzi, discoverer of first asteroid, dies?
+1826
+10
+
+Name the Year: Giuseppe Sarto elected Pope Pius X?
+1903
+10
+
+Name the Year: Giuseppe Verdi, composer of operas (Rigoletto, Aida, Otello), born in?
+1813
+10
+
+Name the Year: Gladys Knight, singer, born in?
+1944
+10
+
+Name the Year: Glenda Jackson, actor (Hopscotch), born in?
+1936
+10
+
+Name the Year: Glenn Close (in Greenwich, Connecticut), actor, born in?
+1947
+10
+
+Name the Year: Glenn Shorrock vocalist (Little River Band-Help Is On Its, Way), born in?
+1944
+10
+
+Name the Year: Gloria Estefan released from the hospital after her accident?
+1990
+10
+
+Name the Year: Gloria Estefan, Cuba, singer, born in?
+1957
+10
+
+Name the Year: Gloria Gaynor Newark NJ, disco singer (I Will Survive), born in?
+1949
+10
+
+Name the Year: Gloria Steinem (in Toledo, OH), feminist, former Playboy bunny, born in?
+1934
+10
+
+Name the Year: Gloria Vanderbilt, fashion designer (Don't my jeans look great!), born in?
+1924
+10
+
+Name the Year: Goddard demonstrates tube-launched solid propellant rockets?
+1918
+10
+
+Name the Year: Gold fields discovered in Australia?
+1851
+10
+
+Name the Year: Gold is discovered on Klondike River?
+1896
+10
+
+Name the Year: Gold ownership legalized in Australia?
+1976
+10
+
+Name the Year: Golda Meir became prime minister of Israel?
+1969
+10
+
+Name the Year: Golda Meir, Israeli leader, born in?
+1898
+10
+
+Name the Year: Golden Gate Bridge ground-breaking ceremony held at Crissy Field?
+1933
+10
+
+Name the Year: Golden Gate International Exposition closes (first closure)?
+1939
+10
+
+Name the Year: Golden Gate International Exposition opens on Treasure Island (built for the occasion) in San Francisco Bay?
+1939
+10
+
+Name the Year: Goldie Hawn (in Washington, DC), actor (Butterflies Are Free, Foul Play, Private Benjamin)?
+1945
+10
+
+Name the Year: Goodyear patents vulcanization of rubber?
+1844
+10
+
+Name the Year: Gorbachev resigns as head of USSR Communist Party?
+1991
+10
+
+Name the Year: Gordon Cooper Jr., astronaut, born in?
+1927
+10
+
+Name the Year: Gordon Lightfoot, folksinger?
+1938
+10
+
+Name the Year: Gottlieb Daimler receives German patent for a motorcycle?
+1885
+10
+
+Name the Year: Gottlieb Daimler, automobile pioneer, born in?
+1834
+10
+
+Name the Year: Gottlob Frege, German mathematician, logician, philosopher?
+1848
+10
+
+Name the Year: Gough Whitlam (ALP) Australia, PM (1972-75), born in?
+1916
+10
+
+Name the Year: Grace Kelly (in Philadelphia, PA), actor, Princess of Monaco?
+1929
+10
+
+Name the Year: Grace Kelly marries Prince Rainier of Monaco (civil ceremony)?
+1956
+10
+
+Name the Year: Grace Kelly princess of Monaco, dies at 52 in a car crash?
+1982
+10
+
+Name the Year: Grace Lee Whitney, actor (Star Trek), born in?
+1930
+10
+
+Name the Year: Grace Slick (in Chicago, IL), singer (Jefferson Airplane/Starship)?
+1939
+10
+
+Name the Year: Gracie Allen, Mrs George Burns/comedian (Burns and Allen), born in?
+1902
+10
+
+Name the Year: Graf Zeppelin II, world's largest airship, makes maiden flight?
+1938
+10
+
+Name the Year: Graham Chapman, member of the Monty Python team, dies from cancer?
+1989
+10
+
+Name the Year: Graham Greene, prolific English novelist (Brighton Rock)?
+1904
+10
+
+Name the Year: Grateful Dead members busted on LSD charges?
+1970
+10
+
+Name the Year: Grateful Dead's Bob Weir & Mickey Hart are arrested for incitement?
+1980
+10
+
+Name the Year: Great Brink's robbery in Boston, $28 million?
+1950
+10
+
+Name the Year: Great Britain imposed direct rule over Northern Ireland?
+1972
+10
+
+Name the Year: Great Britain takes Gibraltar from Spain?
+1704
+10
+
+Name the Year: Great Britain via treaty grants Saudi Arabia's kingdom independence?
+1927
+10
+
+Name the Year: Great Fire of London starts; destroys St. Paul's Church?
+1666
+10
+
+Name the Year: Great London Fire begins in Pudding Lane. 80% of London is destroyed?
+1666
+10
+
+Name the Year: Great Mauna Loa eruption (volcano in Hawaii)?
+1867
+10
+
+Name the Year: Great panic occurs in Europe over the close approach of a comet?
+1679
+10
+
+Name the Year: Great Train Robbery in England?
+1963
+10
+
+Name the Year: Great Train Robbery; 7 men make off with $98,000 in cash?
+1868
+10
+
+Name the Year: Greece gains it's independence?
+1821
+10
+
+Name the Year: Greek Pres George Papadopoulos ousted in a bloodless military coup?
+1973
+10
+
+Name the Year: Greenwich Observatory is damaged by World War II flying bomb?
+1944
+10
+
+Name the Year: Greg Norman, golfer, born in?
+1955
+10
+
+Name the Year: Gregor Mendel, geneticist who discovered laws of heredity, born in?
+1822
+10
+
+Name the Year: Gregorian calendar introduced in Italy, other Catholic countries?
+1582
+10
+
+Name the Year: Gregory Hines, actor, dancer, born in?
+1946
+10
+
+Name the Year: Gregory Peck La Jolla Calif, actor (To Kill a Mockingbird, MacArthur), born in?
+1916
+10
+
+Name the Year: Gregory XIII, pope, born in?
+1583
+10
+
+Name the Year: Greta Garbo (in Stockholm, Sweden), actor (Ninotchka, Grand Hotel), born in?
+1905
+10
+
+Name the Year: Grigori Rasputin, Russian monk?
+1871
+10
+
+Name the Year: Griswold Lorillard wears the first dinner jacket to the Autumn Ball in Tuxedo Park. Thus the name 'tuxedo.'?
+1886
+10
+
+Name the Year: Groucho Marx, comedian?
+1895
+10
+
+Name the Year: Groucho Marx, died in Los Angeles at the age of 86?
+1977
+10
+
+Name the Year: Groucho, Chico and Harpo's final TV appearance together?
+1959
+10
+
+Name the Year: Ground breaking for Disneyland, the Magic Kingdom, in Anaheim, CA?
+1954
+10
+
+Name the Year: Ground broken for Suez Canal?
+1859
+10
+
+Name the Year: Groundbreaking in Washington, D.C., for Vietnam Veterans Memorial?
+1982
+10
+
+Name the Year: Guerrillas battle with government forces in El Salvador?
+1989
+10
+
+Name the Year: Guggenheim Museum, designed by Frank Lloyd Wright, opens in New York?
+1959
+10
+
+Name the Year: Guglielmo Marconi Bologna Italy, inventor (radio) (Nobel 1909), born in?
+1874
+10
+
+Name the Year: Guglielmo Marconi patents the radio?
+1898
+10
+
+Name the Year: Guided tours of Alcatraz (by Park Service) begin?
+1972
+10
+
+Name the Year: Guillaume Apollinaire, French poet?
+1880
+10
+
+Name the Year: Guillermo Valencia, Colombian poet, translator, statesman, born in?
+1873
+10
+
+Name the Year: Guillotine 1st used, executes highwayman Nicolas J Pelletier?
+1792
+10
+
+Name the Year: Guinea votes for independence from France?
+1958
+10
+
+Name the Year: Guinea-Bissau gained independence from Portugal?
+1974
+10
+
+Name the Year: Guitarist Eric Clapton marries Patti Boyd?
+1979
+10
+
+Name the Year: Guitarist Stevie Ray Vaughn dies in a helicopter accident?
+1990
+10
+
+Name the Year: Gunpowder Plot; Catholics try to blow up English Parliament. Plot uncovered & leader Guy Fawkes hanged?
+1605
+10
+
+Name the Year: Gunter Grass, German novelist, poet (The Tin Drum)?
+1927
+10
+
+Name the Year: Gustav Hertz, German quantum physicist (Nobel 1925), born in?
+1887
+10
+
+Name the Year: Gustav Kirchoff, discoverer of the laws of spectroscopy, dies?
+1887
+10
+
+Name the Year: Gustav Klimt, Austria, Art Nouveau painter, born in?
+1862
+10
+
+Name the Year: Gustavus II Adolphus, king who made Sweden a major power (1611-32)?
+1594
+10
+
+Name the Year: Gutenberg Day?
+1584
+10
+
+Name the Year: Guy de Maupassant (in France), writer, born in?
+1850
+10
+
+Name the Year: Gypsy Rose Lee (in Seattle, WA), stripper, born in?
+1914
+10
+
+Name the Year: Gypsy Rose Lee stripper/actress, dies at 56?
+1970
+10
+
+Name the Year: Gypsy Rose Lee, burlesque entertainer born?
+1914
+10
+
+Name the Year: H. Ross Perot, billionaire, founder of EDS, owner of one of three original copies of the Magna Carta, attempted to run for US Presidency?
+1930
+10
+
+Name the Year: H.H. Asquith (Liberal), British prime minister (1908-16), born in?
+1852
+10
+
+Name the Year: H.L. Mencken, satirist, critic, dies in Baltimore at 75?
+1956
+10
+
+Name the Year: H(erbert) G(eorge) Wells Bromley, England (War of the Worlds), born in?
+1866
+10
+
+Name the Year: Haakon VII Charlottenlund Denmark, King of Norway, born in?
+1872
+10
+
+Name the Year: Haakon VII king of Norway, dies, Olaf succeeds him?
+1957
+10
+
+Name the Year: Habib Bourguiba, 1st president of Tunisia, born in?
+1902
+10
+
+Name the Year: Haile Selassie, emperor of Ethiopia (1930-74), founder of the Rastafarian religion?
+1892
+10
+
+Name the Year: Hal Holbrook, actor, born in?
+1925
+10
+
+Name the Year: Hal Wallis movie producer (Maltese Falcon, Barefoot in the Park), born in?
+1899
+10
+
+Name the Year: Halley's Comet makes closest approach to Earth this trip, 63 M km?
+1986
+10
+
+Name the Year: Halley's Comet passes 29th recorded perihelion at 87.9 million km?
+1910
+10
+
+Name the Year: Hamburger created by Louis Lassing in Connecticut?
+1900
+10
+
+Name the Year: Hamburger invented?
+1889
+10
+
+Name the Year: Hana Mandlikova, tennis player, born in?
+1962
+10
+
+Name the Year: Hank Aaron tied Babe Ruth's home-run record by hitting his 714th?
+1974
+10
+
+Name the Year: Hank Ketcham, cartoonist (Dennis the Menace), born in?
+1920
+10
+
+Name the Year: Hans Christian Andersen, danish storyteller, born in?
+1805
+10
+
+Name the Year: Hans Christian Oersted, physicist, chemist?
+1777
+10
+
+Name the Year: Hans Lippershey offers the Dutch government a new invention ____ the telescope
+1608
+10
+
+Name the Year: Hard Rock Cafe opens in Las Vegas Nevada?
+1990
+10
+
+Name the Year: Hardhat diving suit patented by Leonard Norcross, Dixfield, Maine?
+1834
+10
+
+Name the Year: Harland Sanders, Kentucky Fried Chicken founder/colonel, born in?
+1890
+10
+
+Name the Year: Harlow Shapley discoverer of the Sun's position in the galaxy, dies?
+1972
+10
+
+Name the Year: Harold MacMillan becomes British PM?
+1957
+10
+
+Name the Year: Harold Pinter, playwright, born in?
+1930
+10
+
+Name the Year: Harold Wilson resigns as British PM?
+1976
+10
+
+Name the Year: Harold Wilson, former British Prime Minister, born in?
+1916
+10
+
+Name the Year: Harper Lee author (To Kill a Mockingbird), born in?
+1926
+10
+
+Name the Year: Harpo Marx comedian (Marx Bros), dies at 75?
+1964
+10
+
+Name the Year: Harriet Quimby flies the English Channel, first woman to do so?
+1912
+10
+
+Name the Year: Harrison Ford actor (Star Wars, Indiana Jones, Frantic), born in?
+1942
+10
+
+Name the Year: Harry A. Blackmun, U.S. Supreme Court justice?
+1908
+10
+
+Name the Year: Harry Belafonte, entertainer, born in?
+1927
+10
+
+Name the Year: Harry Belefonte calypso singer (The Banana Boat Song), born in?
+1927
+10
+
+Name the Year: Harry Froboess dives 110 m from airship into Bodensee & survives?
+1936
+10
+
+Name the Year: Harry Morgan (in Detroit, MI), actor (Dragnet, MASH), born in?
+1915
+10
+
+Name the Year: Harry S Truman Missouri, 33rd US President (D) (1945-1949), born in?
+1884
+10
+
+Name the Year: Harry Truman, 33rd US Pres (1945-53), dies in KC Mo at 88?
+1972
+10
+
+Name the Year: Harvard College, first US college founded?
+1636
+10
+
+Name the Year: Harvard Observatory takes first photograph of a star (Vega)?
+1850
+10
+
+Name the Year: Harvard University was named for clergyman John Harvard?
+1639
+10
+
+Name the Year: Harvey Korman, actor, born in?
+1927
+10
+
+Name the Year: Hassan II, king of Morocco (1961- ), born in?
+1929
+10
+
+Name the Year: Hawaii becomes a U.S. territory?
+1900
+10
+
+Name the Year: Hay-Bunau-Varilla Treaty, gives US exclusive canal rights through Panama?
+1903
+10
+
+Name the Year: Hayley Mills (in London, England), actor, born in?
+1946
+10
+
+Name the Year: Haymarket riot in Chicago; bomb kills 7 policemen?
+1886
+10
+
+Name the Year: Head of El Salvadoran Human Rights Comm assassinated by death squads?
+1987
+10
+
+Name the Year: Heathen religions banned in Poland?
+1387
+10
+
+Name the Year: Heather Locklear, actor, born...?
+1961
+10
+
+Name the Year: Heavyweight champ, Rocky Marciano, retires undefeated from boxing?
+1956
+10
+
+Name the Year: Hedy Lamarr, actress (Ecstacy, Samson and Delilah), born in?
+1913
+10
+
+Name the Year: Heinrich Himmler, Nazi SS leader?
+1900
+10
+
+Name the Year: Heinrich Schwabe discoverer of 11-year sunspot cycle, dies?
+1875
+10
+
+Name the Year: Helen Gurly Brown in Portland Maine, publisher (Cosmopolitan), born in?
+1922
+10
+
+Name the Year: Helen Hunt LA Calif, actress (Mad About You), born in?
+1963
+10
+
+Name the Year: Helen Keller blind & deaf, dies at 87?
+1968
+10
+
+Name the Year: Helen Keller, blind-deaf author-lecturer?
+1880
+10
+
+Name the Year: Helen Mirren [Eleni Mironova], England, actress (Prime Suspect), born in?
+1946
+10
+
+Name the Year: Helen Reddy (in Melbourne, Australia), singer (I am Woman)?
+1941
+10
+
+Name the Year: Hendrik Antoon Lorentz, Dutch physicist (Nobel 1902)?
+1853
+10
+
+Name the Year: Henre de Toulouse-Lautrec (in France), painter?
+1864
+10
+
+Name the Year: Henri Dutrochet, discovered & named process of osmosis?
+1776
+10
+
+Name the Year: Henrik Ibsen (in Norway), author, born in?
+1828
+10
+
+Name the Year: Henry Bliss becomes 1st automobile fatality?
+1899
+10
+
+Name the Year: Henry Cavendish, English physicist, chemist?
+1731
+10
+
+Name the Year: Henry David Thoreau jailed for tax resistance?
+1846
+10
+
+Name the Year: Henry David Thoreau published `Walden'?
+1854
+10
+
+Name the Year: Henry Engelhard Steinway, piano maker, born in?
+1797
+10
+
+Name the Year: Henry Fonda (in Grand Island, Nebraska), actor, born in?
+1905
+10
+
+Name the Year: Henry Ford announces the five day work week?
+1926
+10
+
+Name the Year: Henry Ford II, businessman?
+1917
+10
+
+Name the Year: Henry Ford introduces assembly line for cars?
+1914
+10
+
+Name the Year: Henry Ford patents a method of constructing plastic auto bodies?
+1942
+10
+
+Name the Year: Henry Ford stops producing Model T car (begins Model A)?
+1927
+10
+
+Name the Year: Henry Ford, Michigan, USA, auto maker (Ford), born in?
+1863
+10
+
+Name the Year: Henry Hudson discovers Manhattan island?
+1609
+10
+
+Name the Year: Henry II King of England (1154-89), dies at 56?
+1189
+10
+
+Name the Year: Henry III, Holy Roman emperor (1046-56)?
+1017
+10
+
+Name the Year: Henry III, king of England (1216-72)?
+1207
+10
+
+Name the Year: Henry IV, Holy Roman emperor (1036-1106)?
+1050
+10
+
+Name the Year: Henry John Heinz, founded a prepared-foods company, born in?
+1844
+10
+
+Name the Year: Henry Kendall Australian poet, dies of tuberculosis at 43?
+1882
+10
+
+Name the Year: Henry L. Mencken, newspaperman, critic, Baltimore's son, born in?
+1880
+10
+
+Name the Year: Henry Mancini, composer, flutist, born in?
+1924
+10
+
+Name the Year: Henry Morgan is first to take off shirt on TV?
+1946
+10
+
+Name the Year: Henry Norris Russell, astronomer (Hertzsprung-Russell diagram)?
+1877
+10
+
+Name the Year: Henry Stanley journalist/explorer (found Livingston in Africa), born in?
+1841
+10
+
+Name the Year: Henry V, king of England (1413-22), born in?
+1387
+10
+
+Name the Year: Henry VII king of England (1485-1509), born in?
+1457
+10
+
+Name the Year: Henry VIII ascended to the throne of England?
+1509
+10
+
+Name the Year: Henry VIII becomes King of England?
+1509
+10
+
+Name the Year: Henry VIII declares himself head of English Church?
+1535
+10
+
+Name the Year: Henry VIII King of England (1509-47), dies at 55?
+1547
+10
+
+Name the Year: Henry VIII of England (1509-47), born in?
+1491
+10
+
+Name the Year: Henry VIII, King of England (1509-47), born in?
+1491
+10
+
+Name the Year: Henry Wadsworth Longfellow (in Portland, Maine), poet, born in?
+1807
+10
+
+Name the Year: Henry Winkler, actor (Happy Days as the Fonz)?
+1945
+10
+
+Name the Year: Herbert Hoover 31st president of US, dies in NY at 90?
+1964
+10
+
+Name the Year: Herbie Hancock, musician, born in?
+1940
+10
+
+Name the Year: Hermann Broch, Austrian novelist (Sleepwalkers, Bewitchment)?
+1886
+10
+
+Name the Year: Hernando De Soto claims the US state of Florida for Spain?
+1539
+10
+
+Name the Year: Hernando de Soto discovers Mississippi River?
+1541
+10
+
+Name the Year: High-denomination banknotes withdrawn in USSR?
+1991
+10
+
+Name the Year: Highest velocity wind ever recorded on Mt Washington, 231 mph?
+1934
+10
+
+Name the Year: Hillary & Tenzing become 1st humans to reach top of Mt Everest?
+1953
+10
+
+Name the Year: Hindenburg takes office as president of Germany?
+1925
+10
+
+Name the Year: Hirohito enthroned as Emperor of Japan?
+1928
+10
+
+Name the Year: Hiroshima Peace Day ____ atom bomb dropped on Hiroshima by the 'Enola Gay' (at 8:15 EDT)
+1945
+10
+
+Name the Year: Hitler and Stalin sign the Soviet-German non-agression treaty. Hitler got peace in the east; Stalin got a piece of Europe?
+1939
+10
+
+Name the Year: Hitler announces he has no intention of war with Britain and France?
+1939
+10
+
+Name the Year: Hitler breaks Treaty of Versailles by sending troops to Rhineland?
+1936
+10
+
+Name the Year: Ho Chi Minh North Vietnamese president, dies?
+1969
+10
+
+Name the Year: Ho Chi Minh trail blazer/leader of Vietnam (1946, 1969), born in?
+1890
+10
+
+Name the Year: Holly Hunter, actor, born in?
+1958
+10
+
+Name the Year: Home rule introduced to Kalaallit Nunaat (Greenland)?
+1979
+10
+
+Name the Year: Homing pigeon completes 11,000 km trip (Namibia-London) in 55 days?
+1845
+10
+
+Name the Year: Honduras declares independence of Central American Federation?
+1838
+10
+
+Name the Year: Hong Kong was proclaimed a sovereign territory of Britain?
+1841
+10
+
+Name the Year: Honor Blackman (in London, England), actor (The Avengers), born in?
+1929
+10
+
+Name the Year: Honore de Balzac France, novelist (Pere Goriot), born in?
+1799
+10
+
+Name the Year: Hopalong Cassidy becomes first network western?
+1949
+10
+
+Name the Year: Hope Emerson, actress (I Married Joan, Peter Gunn), dies at 62?
+1960
+10
+
+Name the Year: Horace Greeley, editor (told young men to go west), born in?
+1811
+10
+
+Name the Year: Horatio Nelson Burnham Thorpe, Britain, naval hero at Trafalgar, born in?
+1758
+10
+
+Name the Year: Houdini escapes chains underwater at Aquatic Park in 57 seconds?
+1907
+10
+
+Name the Year: House Judiciary Committee begin formal hearings on Nixon impeachment?
+1974
+10
+
+Name the Year: House of Wax, first feature-length 3-D movie, released in New York?
+1953
+10
+
+Name the Year: Howard Carter discovers the tomb of Tutankhamen?
+1922
+10
+
+Name the Year: Howard Carter finds the Pharoah Tutankhamun?
+1923
+10
+
+Name the Year: Howard Carter, Egyptologist who found King Tutankhamen?
+1873
+10
+
+Name the Year: Howard Hughes reclusive billionaire, dies at 72?
+1976
+10
+
+Name the Year: Howard Hughes, reclusive billionaire/inventor, born in?
+1905
+10
+
+Name the Year: Howard Jones, musician, born in?
+1955
+10
+
+Name the Year: Howard Nemerov, poet, born in?
+1916
+10
+
+Name the Year: Howard Staunton world chess champion, designer of chess pieces, dies?
+1874
+10
+
+Name the Year: Howie Mandel, actor (St Elsewhere, Walk Like a Man), comedian?
+1955
+10
+
+Name the Year: Hua Guo-feng succeeds Mao Tse-tung as chairman of Communist Party?
+1976
+10
+
+Name the Year: Hubble space telescope is placed into orbit by shuttle Discovery?
+1990
+10
+
+Name the Year: Hubert Gautier engineer, wrote 1st book on bridge building, born in?
+1660
+10
+
+Name the Year: Hugh Hefner, publisher of Playboy, made bunnies famous, born in?
+1926
+10
+
+Name the Year: Hugo Gernsback, responsible for science fiction becoming an independent literary form, born in?
+1884
+10
+
+Name the Year: Hulk Hogan [Terry Bollea], Ga, WWF heavyweight champion (1984-89), born in?
+1953
+10
+
+Name the Year: Humphrey Bogart actor, dies at 57?
+1957
+10
+
+Name the Year: Humphrey Bogart, actor (Casablanca, Caine Mutiny, African Queen), born in?
+1899
+10
+
+Name the Year: Humphrey Bogart, actor, born in?
+1899
+10
+
+Name the Year: Hundreds killed in anti-French rioting in Morocco and Algeria?
+1955
+10
+
+Name the Year: Hungarian National Day?
+1945
+10
+
+Name the Year: Hungarian Republic crushed by Austria and Russia?
+1849
+10
+
+Name the Year: Hungary appeals for UN assistance against Soviet invasion?
+1956
+10
+
+Name the Year: Hungary liberated from Nazi occupation (National Day)?
+1945
+10
+
+Name the Year: Hunter S. Thompson, gonzo journalist?
+1949
+10
+
+Name the Year: Husain ibn 'Ali, Shi'i religious leader, enters martyrdom?
+680
+10
+
+Name the Year: Hussein I, king of Jordan (1953- )?
+1935
+10
+
+Name the Year: Hussein proclaimed king of Jordan?
+1952
+10
+
+Name the Year: Hyman L. Lipman of Philadelphia patented a pencil with an attached eraser?
+1858
+10
+
+Name the Year: I.O.C. votes Mexico City to host 1968 Olympics?
+1963
+10
+
+Name the Year: Ian Curtis musician (Joy Division), dies?
+1980
+10
+
+Name the Year: Ian Fleming writer (James Bond), dies at 80?
+1969
+10
+
+Name the Year: Ian Fleming, writer (James Bond series)?
+1908
+10
+
+Name the Year: IBM announces System 370 computer?
+1970
+10
+
+Name the Year: Iceberg twice the size of Rhode Island sighted in Antarctic?
+1987
+10
+
+Name the Year: Iceland becomes independent state under the Danish crown?
+1918
+10
+
+Name the Year: Iggy Pop [James Osterberg], Mich, rocker (Lust For Life, Search and Destroy), born in?
+1947
+10
+
+Name the Year: Ignace Jan Paderewski, Polish composer, pianist, patriot?
+1860
+10
+
+Name the Year: Igor Sikorsky developed a working helicopter, born in?
+1889
+10
+
+Name the Year: Igor Stravinsky, composer (Firebird Suite, The Rite of Spring)?
+1882
+10
+
+Name the Year: Il Bronzino, Florentine painter?
+1503
+10
+
+Name the Year: Iman model/David Bowie's wife/actress (Star Trek VI), born in?
+1955
+10
+
+Name the Year: Imelda Marcos former 1st lady (Philipines)/shoe collector, born in?
+1930
+10
+
+Name the Year: In accordance with Camp David, Israel completes Sinai withdrawl?
+1982
+10
+
+Name the Year: In Fatima Portugal, a Spanish priest with a bayonet is stopped prior to his attempt to attack Pope John Paul II?
+1982
+10
+
+Name the Year: In Hawaii, the Great Mahele (division of lands) is signed?
+1848
+10
+
+Name the Year: In occupied Rome the Nazis executed more than 300 civilians?
+1944
+10
+
+Name the Year: In Poland, Germans Nazi troops massacred the Jews in the Warsaw Ghetto?
+1943
+10
+
+Name the Year: In Victoria, helmetless bike riding becomes illegal?
+1990
+10
+
+Name the Year: In which year did britain abolish the death penalty for murder?
+1965
+10
+
+Name the Year: Inaugural AIDS awareness day?
+1991
+10
+
+Name the Year: Independence of Poland proclaimed by Jozef Pilsudski?
+1918
+10
+
+Name the Year: India adopts a constitution as a British Commonwealth Republic?
+1949
+10
+
+Name the Year: India and Pakistan granted independence within British Commonwealth after some 200 years of British rule?
+1947
+10
+
+Name the Year: India annexes Portuguese colonies of Goa, Damao and Diu?
+1961
+10
+
+Name the Year: India becomes a republic ceaseing to be a British dominion. Indian Republic Day Celebrated?
+1950
+10
+
+Name the Year: India files suit against Union Carbide over Bhopal disaster?
+1985
+10
+
+Name the Year: Indian princess Pocahontas marries English colonist John Rolfe?
+1614
+10
+
+Name the Year: Indianapolis 500 car race run for first time. Winning driver Ray Harroun takes it with a blazing 75 mph?
+1911
+10
+
+Name the Year: Indians sell Manhattan Island for $24 in cloth & buttons?
+1626
+10
+
+Name the Year: Indira Gandhi resigned as prime minister of India?
+1977
+10
+
+Name the Year: Indira Gandhi, Indian prime minister (1966-77, 1980-84)?
+1917
+10
+
+Name the Year: Indonesia declares independence from Netherlands (National Day)?
+1945
+10
+
+Name the Year: Indonesia takes control of Irian Jaya (west New Guinea) from Netherlands?
+1963
+10
+
+Name the Year: Industrialist John D. Rockfeller died in Ormond Beach, FL?
+1937
+10
+
+Name the Year: Ingmar Bergman, Uppsala Sweden, director (Cries and Whispers), born in?
+1918
+10
+
+Name the Year: Ingrid Bergman Sweden, actress (Casablanca, Cactus Flower), born in?
+1915
+10
+
+Name the Year: Inigo Lopez, Marques de Santillana, Spanish poet, born in?
+1398
+10
+
+Name the Year: Innocent IX, 230th Roman Catholic pope (1591), born in?
+1519
+10
+
+Name the Year: Innocent XI 240th Roman Catholic pope (1676-89), born in?
+1611
+10
+
+Name the Year: Innocent XIII, 244th Roman Catholic pope (1721-24), born in?
+1655
+10
+
+Name the Year: Intel Corporation is incorporated?
+1968
+10
+
+Name the Year: Intel introduces 32-bit 80386 microcomputer chip?
+1985
+10
+
+Name the Year: Intelsat communications satellite launched?
+1973
+10
+
+Name the Year: International Atomic Energy Agency established by UN?
+1957
+10
+
+Name the Year: International Committee of the Red Cross is founded (Nobel 1917, 1944, 1963)?
+1863
+10
+
+Name the Year: International Monetary Fund began operations?
+1947
+10
+
+Name the Year: International War Crimes Tribunal opens trial of Nazi leaders in Nuremberg?
+1945
+10
+
+Name the Year: International Women's Day?
+1945
+10
+
+Name the Year: Intl Olympic Committee votes admission to West Germany & Japan in '52?
+1950
+10
+
+Name the Year: IRA bombs hotel where Margaret Thatcher is staying?
+1984
+10
+
+Name the Year: Ira Gershwin, lyricist, dies in Beverly Hills, Cal, at 86?
+1983
+10
+
+Name the Year: Ira Levin, author (Rosemary's Baby, Sleuth, This Perfect Day)?
+1929
+10
+
+Name the Year: Iran agrees to resume dimplomatic ties with Iraq?
+1990
+10
+
+Name the Year: Iran proclaimed an Islamic Republic following the fall of the Shah?
+1979
+10
+
+Name the Year: Iranian PM Jaafar Sharif-Emami resigns to Shah Mohammed Reza Pahlavi?
+1978
+10
+
+Name the Year: Iraq accepts Bush's offer for talks?
+1990
+10
+
+Name the Year: Iraq declares Kuwait it's 19th province?
+1990
+10
+
+Name the Year: Iraq invades and occupies Kuwait?
+1990
+10
+
+Name the Year: Iraq President Saddam Hussein says he is ready to resolve the Gulf crisis if Israel withdraws from occupied territories?
+1990
+10
+
+Name the Year: Iraq pulls out of talks with Kuwait?
+1990
+10
+
+Name the Year: Iraqi army overthrows monarchy; republic replaces Hashemite dynasty?
+1958
+10
+
+Name the Year: Iraqi Pres Saddam Hussein urges Arabs to rise against the West?
+1990
+10
+
+Name the Year: Iraqi troops seize part of Iran in a border dispute; war begins?
+1980
+10
+
+Name the Year: Iraqi troops seized Iranian territory in a border dispute?
+1980
+10
+
+Name the Year: Iraqi troops surround US and other embassies in Kuwait City?
+1990
+10
+
+Name the Year: Ireland divided into two parts, each with its own parliament?
+1920
+10
+
+Name the Year: Irene Cara (in New York), actor, dancer, singer, born in?
+1959
+10
+
+Name the Year: Iris Murdoch, Irish novelist?
+1919
+10
+
+Name the Year: Irish Free State forms?
+1922
+10
+
+Name the Year: Irish Republic comes into existence?
+1949
+10
+
+Name the Year: IRS reveals Jimmy Carter paid no taxes in 1976?
+1977
+10
+
+Name the Year: Irving Berlin [Isadore Balin], Temun, Russia, composer (White Xmas), born in?
+1888
+10
+
+Name the Year: Isaac Asimov, scientist-writer, born in?
+1920
+10
+
+Name the Year: Isaac Hayes, composer, musician, born in?
+1942
+10
+
+Name the Year: Isaac Kauffman Funk US, publisher (Funk and Wagnalls), born in?
+1839
+10
+
+Name the Year: Isaac Newton receives MA from Trinity College, Cambridge?
+1668
+10
+
+Name the Year: Isaac Newton's PRINCIPIA published by Royal Society in England?
+1687
+10
+
+Name the Year: Isaac Watts (in England), writer and preacher, born in?
+1674
+10
+
+Name the Year: Isabella Rossellini, actor (Blue Velvet)?
+1952
+10
+
+Name the Year: Isamu Noguchi, sculptor?
+1904
+10
+
+Name the Year: Isolation of pituitary hormone announced?
+1937
+10
+
+Name the Year: Israel & Lebanon sign a peace treaty?
+1983
+10
+
+Name the Year: Israel & West Germany exchange letters beginning diplomatic relations?
+1965
+10
+
+Name the Year: Israel acquires 4 of the 7 dead sea scrolls?
+1955
+10
+
+Name the Year: Israel and Syria sign an agreement concerning the Golan Heights?
+1974
+10
+
+Name the Year: Israel and Syria stop fighting in Lebanon?
+1982
+10
+
+Name the Year: Israel announced capture of Nazi Adolf Eichmann in Argentina?
+1960
+10
+
+Name the Year: Israel attacks targets in southern Lebanon?
+1982
+10
+
+Name the Year: Israel Bak created 1st hebrew printing press, dies?
+1874
+10
+
+Name the Year: Israel captures Wailing Wall?
+1967
+10
+
+Name the Year: Israel destroys alleged Iraqi plutonium production facility?
+1981
+10
+
+Name the Year: Israel formally signs Sinai accord with Egypt?
+1975
+10
+
+Name the Year: Israel invades Lebanon to drive out the PLO?
+1982
+10
+
+Name the Year: Israel launches rescue of 103 Air France crew and passengers being held at Entebbe Airport in Uganda by pro-Palestinian hijackers?
+1976
+10
+
+Name the Year: Israel shoots down 13 Syrian MIG-21s?
+1973
+10
+
+Name the Year: Israel signs an agreement with European Economic Market?
+1975
+10
+
+Name the Year: Israel, Syria, Jordan, Iraq, and Egypt begin Six-Day War?
+1967
+10
+
+Name the Year: Israel's cabinet approved diplomatic relations with West Germany?
+1965
+10
+
+Name the Year: Israel's General Moshe Dayan dies at 66?
+1981
+10
+
+Name the Year: Israel's parliament approved a peace treaty with Egypt?
+1979
+10
+
+Name the Year: Israeli forces began pouring into west Beirut?
+1982
+10
+
+Name the Year: Israeli forces withdraw from the Sinai Penisula?
+1957
+10
+
+Name the Year: Israeli hmuel Yosef Agnon wins Nobel Prize for literature?
+1966
+10
+
+Name the Year: Israeli paratroopers drop into the Sinai to open Straits of Tiran?
+1956
+10
+
+Name the Year: Israeli soldiers capture Adolf Eichmann in Buenos Aires?
+1960
+10
+
+Name the Year: Israeli troops reach the Suez Canal for the first time?
+1956
+10
+
+Name the Year: It was made legal in Scotland for women to propose to men?
+1288
+10
+
+Name the Year: Italian composer Giacomo Puccini died in Brussels?
+1924
+10
+
+Name the Year: Italian Jesuit Niccolo Zucchi, 1st to see 2 belts on Jupiter surface?
+1630
+10
+
+Name the Year: Italian King Umberto I assassinated?
+1900
+10
+
+Name the Year: Italian people chooses republic over monarchy (National Day)?
+1946
+10
+
+Name the Year: Italian Somalia gained independence, unites with Somali Republic?
+1960
+10
+
+Name the Year: Italo Marchiony granted patent for the ice cream cone?
+1903
+10
+
+Name the Year: Italy annexed Ethiopia?
+1936
+10
+
+Name the Year: Italy annexes Rome and the Papal States; Rome made Italian capital?
+1870
+10
+
+Name the Year: Italy attacks Turkey, takes Tipoli & Cyrenaica?
+1911
+10
+
+Name the Year: Italy beats Czechoslovakia 2-1 (OT) in Football's 2nd World Cup at Rome?
+1934
+10
+
+Name the Year: Italy beats West Germany 3-1 for Football's 12th World Cup in Madrid?
+1982
+10
+
+Name the Year: Italy declared war on Austria-Hungary in World War I?
+1915
+10
+
+Name the Year: Italy declares war against Germany during WW I?
+1916
+10
+
+Name the Year: Italy declares war on former ally Germany?
+1943
+10
+
+Name the Year: Italy invaded by Attila the Hun?
+452
+10
+
+Name the Year: Italy surrenders to the allies in WW II?
+1943
+10
+
+Name the Year: Ivan III (the Great) grand prince of Russia, born in?
+1440
+10
+
+Name the Year: Ivan IV (the Terrible) 1st tsar of Russia (1533-84), born in?
+1530
+10
+
+Name the Year: Ivan IV the Terrible crowned 1st tsar of Russia?
+1547
+10
+
+Name the Year: Ivan Lendl, retired tennis player, born in?
+1960
+10
+
+Name the Year: Ivan Lendl, retired tennis player, born. In 1975 Israeli Prime Minister Yitzhak Rabin met with President Carter?
+1960
+10
+
+Name the Year: Ivan Lendl, tennis player, born in?
+1960
+10
+
+Name the Year: Ivan Pavlov, Russia, physiologist/pioneer in psychology, born in?
+1849
+10
+
+Name the Year: Ivan Turgenev, Russia, novelist/poet/playwright (Fathers and Sons), born in?
+1818
+10
+
+Name the Year: Ivo Andric, Yugoslav novelist (Bridge on the Drina) (Nobel '61), born in?
+1892
+10
+
+Name the Year: Ivory Coast, Dahomey, Upper Volta and Niger declare independence?
+1960
+10
+
+Name the Year: Izaac Walton, fisherman, writer (Compleat Angler), born in?
+1593
+10
+
+Name the Year: J Edgar Hoover Mr FBI, born in?
+1895
+10
+
+Name the Year: J. Arthur Rank, USA filmmaker, born in?
+1888
+10
+
+Name the Year: J. Frank Duryea, with his brother, invented first auto built and operated in the US?
+1869
+10
+
+Name the Year: J. Robert Oppenheimer, Manhattan Project physicist, born in?
+1904
+10
+
+Name the Year: J.R.R. Tolkien, linguist, author (The Hobbit, Lord of the Rings), born in?
+1892
+10
+
+Name the Year: J.W. Goodrich introduces rubber galoshes to the public?
+1824
+10
+
+Name the Year: Jack Benny (Violin) and Richard Nixon (Piano) play their famed duet?
+1959
+10
+
+Name the Year: Jack Cade's Rebellion-Kentishmen revolt against King Henry VI?
+1450
+10
+
+Name the Year: Jack Dempsey, boxer (The Manassa Mauler)?
+1895
+10
+
+Name the Year: Jack Klugman Phila (Oscar-Odd Couple, Quincy, Goodbye Columbus), born in?
+1922
+10
+
+Name the Year: Jack Lemmon, actor, born in?
+1925
+10
+
+Name the Year: Jack London, writer (Call of the Wild), born in?
+1876
+10
+
+Name the Year: Jack Nicholson, actor (One Flew Over the Cuckoo's Nest, The Shining), born in?
+1937
+10
+
+Name the Year: Jack Nicklaus, golfer (Player of Yr 1967,72,73,75,76), born in?
+1940
+10
+
+Name the Year: Jack Palance, actor (Believe It...Or Not), born in?
+1920
+10
+
+Name the Year: Jack Ruby, assassin of Lee Harvey Oswald, died?
+1964
+10
+
+Name the Year: Jack the Ripper kills last victim?
+1888
+10
+
+Name the Year: Jack Thompson Australia, actor (Breaker Morant), born in?
+1940
+10
+
+Name the Year: Jack Warden, actor (Verdict, Brian's Song), born in?
+1920
+10
+
+Name the Year: Jack Webb, actor (Dragnet, The D.I.), born in?
+1920
+10
+
+Name the Year: Jackie Gleason, Comedian, born in?
+1916
+10
+
+Name the Year: Jackie Joyner-Kersee, runner, born in?
+1962
+10
+
+Name the Year: Jackie Milburn, English Football star (Newcastle United)?
+1924
+10
+
+Name the Year: Jackie Stewart, race-car driver, Ford spokesperson, born in?
+1939
+10
+
+Name the Year: Jackson Pollack abstract artist (Lavender Mist), born in?
+1912
+10
+
+Name the Year: Jackson Pollock abstract artist, dies in auto accident (East Hampton)?
+1956
+10
+
+Name the Year: Jaclyn Smith, actress (Charlie's Angel, Nightkill), born in?
+1947
+10
+
+Name the Year: Jacob Fussell, Baltimore dairyman, sets up 1st ice-cream factory?
+1851
+10
+
+Name the Year: Jacob Grimm (in Germany), storyteller?
+1785
+10
+
+Name the Year: Jacobite Scottish Highlanders defeat royal force at Killiecrankie?
+1689
+10
+
+Name the Year: Jacqueline Kennedy marries Aristotle Onassis?
+1968
+10
+
+Name the Year: Jacqueline Kennedy's 1st public appearance (TV) since assassination?
+1964
+10
+
+Name the Year: Jacqueline Lee Bouvier Kennedy Onassis 1st lady (1961-63), born in?
+1929
+10
+
+Name the Year: Jacqueline Susann, writer (Valley of the Dolls), born in?
+1921
+10
+
+Name the Year: Jacques Cartier French explorer, dies (birth date unknown)?
+1557
+10
+
+Name the Year: Jacques Tati actor/director, dies of pulmonary embolism?
+1982
+10
+
+Name the Year: Jacques Tati, director (Traffic, Playtime, My Uncle), born in?
+1908
+10
+
+Name the Year: Jacques Yves Cousteau (in France), marine explorer, born in?
+1910
+10
+
+Name the Year: Jakob Bohme, German philosophical mystic, dies (birth date unknown)?
+1624
+10
+
+Name the Year: Jamaica gained independence from Britain?
+1962
+10
+
+Name the Year: James A Bailey circus showman (Barnum & Bailey), dies at 58?
+1906
+10
+
+Name the Year: James A. Naismith, inventor of basketball?
+1861
+10
+
+Name the Year: James Anthony Bailey, Detroit, U.S.A., circus impresario (Barnum and Bailey), born in?
+1847
+10
+
+Name the Year: James Boswell (in Scotland), Samuel Johnson's biographer, born in?
+1740
+10
+
+Name the Year: James Bridger, scout, fur trader, mountain man par excellance, born in?
+1804
+10
+
+Name the Year: James Brown, singer (I Feel Good . . . HEH!), born in?
+1933
+10
+
+Name the Year: James Cagney died at his farm in Stanfordville, NY, at age 86?
+1986
+10
+
+Name the Year: James Cagney, actor, born in?
+1900
+10
+
+Name the Year: James Callaghan, former British Prime Minister, born in?
+1912
+10
+
+Name the Year: James Christy's discovery of Pluto's moon Charon announced?
+1978
+10
+
+Name the Year: James Clavell, author (Shogun, Tai Pan, King Rat, Noble House, Whirlwind), born in?
+1924
+10
+
+Name the Year: James Coburn Laurel Nebr, actor (Our Man Flint, Magnificent Seven), born in?
+1928
+10
+
+Name the Year: James Cook, captain/explorer, discovered Sandwich Islands and led First Fleet to Australia, born in?
+1728
+10
+
+Name the Year: James Dean, actor (Rebel Without a Cause), born in?
+1931
+10
+
+Name the Year: James Dean, actor, born in?
+1928
+10
+
+Name the Year: James Dean, actor, died in a car crash (born Feb 08, 1931)?
+1955
+10
+
+Name the Year: James Earl Jones, actor, narrator, voice of Darth Vader, born in?
+1931
+10
+
+Name the Year: James Garner, actor (Maverick movies and series, etc.)?
+1928
+10
+
+Name the Year: James Hetfield heavy metal rocker (Metallica), born in?
+1963
+10
+
+Name the Year: James Hilton, hotel magnate (Hilton Hotels), born in?
+1900
+10
+
+Name the Year: James I king of England (1603-25), dies at 92?
+1658
+10
+
+Name the Year: James II king of England (1685-88), dies at 68?
+1701
+10
+
+Name the Year: James II, king of England (1685-88), born in?
+1633
+10
+
+Name the Year: James Ingram. actor, born in?
+1956
+10
+
+Name the Year: James J. Jeans, astrophysicist, dies on his 69th birthday?
+1946
+10
+
+Name the Year: James J. Jeans, cosmologist and astrophysicist, born in?
+1877
+10
+
+Name the Year: James Jesse Strang, America's only crowned king (king of the Mormons), born in?
+1813
+10
+
+Name the Year: James Joyce novelist, dies in Zurich, Switzerland, at 58?
+1941
+10
+
+Name the Year: James Joyce, writer, born in?
+1882
+10
+
+Name the Year: James M. Barrie (in Scotland), Author (Peter Pan)?
+1860
+10
+
+Name the Year: James Mason actor, dies at 75 of a heart attack?
+1984
+10
+
+Name the Year: James Michener, writer, born in?
+1907
+10
+
+Name the Year: James Pike, clergyman, born in?
+1913
+10
+
+Name the Year: James Prescott Joule, physicist, born in?
+1818
+10
+
+Name the Year: James Ritty patents the first cash register, to combat stealing by bartenders in his Dayton, Ohio saloon?
+1879
+10
+
+Name the Year: James Taylor, singer, songwriter, born in?
+1948
+10
+
+Name the Year: James van Allen discovers radiation belt around Earth?
+1958
+10
+
+Name the Year: James Van Allen, discovered Van Allen radiation belts, born in?
+1914
+10
+
+Name the Year: James VI signs the 2nd Confession of Faith in Scotland?
+1581
+10
+
+Name the Year: James Watt, Scotland, inventor (steam engine), born in?
+1736
+10
+
+Name the Year: Jamie Lee Curtis (in Los Angeles, CA), actor, (Halloween, Trading Places, True Lies), Tony Curtis and Janet Leigh's daughter?
+1958
+10
+
+Name the Year: Jan Luyts, Dutch scholar, physicist, mathematician, astronomer, born in?
+1655
+10
+
+Name the Year: Jan Vermeer (in Holland), painter (Procuress, The Astronomer)?
+1632
+10
+
+Name the Year: Jane Austen (in England), novelist (Pride and Prejudice), born in?
+1775
+10
+
+Name the Year: Jane Pauley (in Indianapolis, IN), newcaster for CNN?
+1950
+10
+
+Name the Year: Jane Russell, actress full-figured gal (The Outlaw), born in?
+1921
+10
+
+Name the Year: Jane Seymour [Joyce Frankenberg], Middlesex England, actress (Dr Quinn, East of Eden, Lassiter), born in?
+1951
+10
+
+Name the Year: Jane Seymour, third wife of Henry VIII, dies?
+1537
+10
+
+Name the Year: Janet Jackson, singer, Michael's sister, born in?
+1966
+10
+
+Name the Year: Janet Leigh, actress, She's in the shower (Psycho), born in?
+1927
+10
+
+Name the Year: Janis Joplin dies at age 27?
+1970
+10
+
+Name the Year: Janis Joplin, bluesy rock singer (Down on Me), born in?
+1943
+10
+
+Name the Year: Japan admitted to the United Nations?
+1956
+10
+
+Name the Year: Japan announces willingness to surrender to Allies provided the status of Emperor Hirohito remained unchanged?
+1945
+10
+
+Name the Year: Japan defeats China in Battle of Ping Yang?
+1894
+10
+
+Name the Year: Japan launches its first satellite in to space?
+1966
+10
+
+Name the Year: Japan receives League of Nations mandate over Pacific islands?
+1920
+10
+
+Name the Year: Japan surrenders ending WW II (US date, 9/2 in Japan)?
+1945
+10
+
+Name the Year: Japanese and Chinese troops clash, which will become the asian theatre of WW II?
+1937
+10
+
+Name the Year: Japanese bomb Pearl Harbour. The USA join Allies in fighting the Axis forces soon after?
+1941
+10
+
+Name the Year: Japanese forces in the Philippines surrender to Allies?
+1945
+10
+
+Name the Year: Japanese forces on Okinawa surrender to US during WW II?
+1945
+10
+
+Name the Year: Japanese forces retreated in the World War II Battle of Midway?
+1942
+10
+
+Name the Year: Japanese forces surrender to U.S. forces ending World War II?
+1945
+10
+
+Name the Year: Japanese in S Korea, Taiwan, China, Indochina surrender to Allies?
+1945
+10
+
+Name the Year: Japanese Junko Tabei became first woman to reach Mt Everest's summit?
+1975
+10
+
+Name the Year: Japanese occupied Manila?
+1942
+10
+
+Name the Year: Japanese premier Tojo sentenced to death by war crimes tribunal?
+1948
+10
+
+Name the Year: Jaqueline Bisset (in England), actor (Deep), born in?
+1941
+10
+
+Name the Year: Jason Alexander (George in Seinfeld), born in?
+1959
+10
+
+Name the Year: Jason Priestley Vancouver BC, actor (Brandon-Beverly Hills 90210), born in?
+1969
+10
+
+Name the Year: Javier Perez de Cuellar, Lima, Peru, 5th secretary-general of UN (1982-1996), born in?
+1920
+10
+
+Name the Year: Jawaharlal Nehru, first Indian PM (1947-64), made fashion statement?
+1889
+10
+
+Name the Year: Jay Forrester patents computer core memory?
+1951
+10
+
+Name the Year: Jay Leno New Rochelle, comedian (Tonight Show host), born in?
+1950
+10
+
+Name the Year: Jay Wright Forrester invented random-access magnetic core memory?
+1918
+10
+
+Name the Year: Jayne Mansfield actress, dies in a car crash at 34?
+1967
+10
+
+Name the Year: Jayne Mansfield Bryn Mawr Pa, actress (Guide for the Married Man), born in?
+1932
+10
+
+Name the Year: Jazz drummer Art Blakey dies?
+1990
+10
+
+Name the Year: Jean Baptiste Lully, French composer, musician?
+1632
+10
+
+Name the Year: Jean Cocteau France, writer/artist/film maker (Le Potamak), born in?
+1889
+10
+
+Name the Year: Jean d'Alembert, French mathematician, scientist, philosopher?
+1717
+10
+
+Name the Year: Jean Genet, French novelist and playwright (The Blacks)?
+1910
+10
+
+Name the Year: Jean Harlow, sex goddess of the 30s, born in?
+1911
+10
+
+Name the Year: Jean Henri Dunant Switzerland, founded Red Cross, YMCA (Nobel 1901), born in?
+1828
+10
+
+Name the Year: Jean Moulin hero of the French Resistance during WW II, born in?
+1899
+10
+
+Name the Year: Jean Perrin, French physicist, studied Brownian motion (Nobel 1926)?
+1870
+10
+
+Name the Year: Jean Phillippe Rameau, French composer (baptized), born in?
+1683
+10
+
+Name the Year: Jean Piaget, pioneer developmental psychologist, born in?
+1896
+10
+
+Name the Year: Jean Pilftre de Rozier makes captive-balloon ascent?
+1783
+10
+
+Name the Year: Jean Rey, of Belgium, president of European Commission (1967-70)?
+1902
+10
+
+Name the Year: Jean Simmons, London England, actress (Thorn Birds, Guys & Dolls), born in?
+1926
+10
+
+Name the Year: Jean-Claude Van Damme, Belgium, actor (Kickboxer, No Retreat)?
+1958
+10
+
+Name the Year: Jean-Francois Champollion, deciphered Egyptian hieroglyphics?
+1790
+10
+
+Name the Year: Jean-Loup Chritien, first French traveler in space (on Soyuz T-6), born in?
+1938
+10
+
+Name the Year: Jean-Paul Marat, philosopher?
+1743
+10
+
+Name the Year: Jean-Paul Sartre, France, philosopher/writer (Nobel 1964; declined), born in?
+1905
+10
+
+Name the Year: Jean-Rene Lacoste France, tennis champ/alligator shirt designer, born in?
+1905
+10
+
+Name the Year: Jeff Beck, musician?
+1944
+10
+
+Name the Year: Jeff Buckley (singer, son of Tim Buckley)?
+1966
+10
+
+Name the Year: Jeff Goldblum, actor (The Fly, Silverado, Buckaroo Bonzai, ID4), born in?
+1952
+10
+
+Name the Year: Jennifer Beals (in Chicago), actor (Flashdance)?
+1963
+10
+
+Name the Year: Jeremy Irons, English actor (French Lieutenant's Woman), born in?
+1948
+10
+
+Name the Year: Jerome Kern, Broadway composer, born in?
+1885
+10
+
+Name the Year: Jerry Falwell televangelist, Moral Majority head, born in?
+1933
+10
+
+Name the Year: Jerry Garcia SF, rocker (Grateful Dead), born in?
+1942
+10
+
+Name the Year: Jerry Hall Mesquite Tx, model, born in?
+1956
+10
+
+Name the Year: Jerry Lee Lewis, singer (Great Balls of Fire, Breathless), born in?
+1935
+10
+
+Name the Year: Jerry Lewis, French god, American humanitarian, comedian, actor, born in?
+1926
+10
+
+Name the Year: Jerry Mathers, Sioux City Iowa, actor (Beaver-Leave It To Beaver), born in?
+1948
+10
+
+Name the Year: Jerry Seinfeld comedian (Seinfeld), born in?
+1954
+10
+
+Name the Year: Jesse James commits the 1st train robbery?
+1873
+10
+
+Name the Year: Jesse James Missouri, outlaw, born in?
+1847
+10
+
+Name the Year: Jesse James shot dead in St. Joseph Mo. by Robert Ford?
+1882
+10
+
+Name the Year: Jesse Owens equals or breaks 6 world records in one hour?
+1935
+10
+
+Name the Year: Jesse Owens won his fourth gold medal of the Berlin Olympics?
+1936
+10
+
+Name the Year: Jesse Owens, athlete, spoiled Hitler's Olympic plans in 1936, born in?
+1913
+10
+
+Name the Year: Jessica Lange Cloquet Minnesota, actress (King Kong, Tootsie) , born in?
+1949
+10
+
+Name the Year: Jessica Tandy (in London, England), actor (Driving Miss Daisy, Cocoon), born in?
+1909
+10
+
+Name the Year: Jews attack Nazi occupation forces at Warsaw Ghetto?
+1943
+10
+
+Name the Year: Jews in the Warsaw Ghetto begin resistance of Nazis?
+1943
+10
+
+Name the Year: JFK and Nixon clashed in 4th and final pres debate?
+1960
+10
+
+Name the Year: JFK imposes naval blockade on Cuba, beginning missile crisis?
+1962
+10
+
+Name the Year: Jigme Dori Wangchuck, king of Bhutan, dies?
+1972
+10
+
+Name the Year: Jigme Singye Wangchuk, king of Bhutan (1972- )?
+1955
+10
+
+Name the Year: Jill Ireland (in London, England), actor, born in?
+1936
+10
+
+Name the Year: Jim Backus actor (Magoo, Gilligan's Island), dies at 76 of pneumonia?
+1989
+10
+
+Name the Year: Jim Bakker, televangelist, con-man, born in?
+1939
+10
+
+Name the Year: Jim Belushi, Chicago Ill, comedian (Sat Night Live, Trading Places), born in?
+1954
+10
+
+Name the Year: Jim Davis cartoonist (Garfield), born in?
+1945
+10
+
+Name the Year: Jim Jones, reverend, poisoned over 100 in Guyana, born in?
+1931
+10
+
+Name the Year: Jim Morrison rocker (Doors), dies of heart failure in Paris?
+1971
+10
+
+Name the Year: Jim Nabors, actor (Gomer Pyle, USMC; Mayberry RFD), singer, born in?
+1932
+10
+
+Name the Year: Jim Thorpe, Olympic athlete, born in?
+1886
+10
+
+Name the Year: Jim Weaver, Oregon Representative (D)?
+1927
+10
+
+Name the Year: Jimi Hendrix & Peter Townshend wage a battle of guitars?
+1969
+10
+
+Name the Year: Jimi Hendrix, guitarist?
+1942
+10
+
+Name the Year: Jimmy Connors, tennis player, born in?
+1952
+10
+
+Name the Year: Jimmy Connors, tennis player?
+1952
+10
+
+Name the Year: Jimmy Dorsey, bandleader, born in?
+1904
+10
+
+Name the Year: Jimmy Durante NYC, comedian (Jimmy Durante Show), dies at 86?
+1980
+10
+
+Name the Year: Jimmy Durante, comedian, born in?
+1893
+10
+
+Name the Year: Jimmy Hoffa, missing labor leader, born in?
+1913
+10
+
+Name the Year: Jimmy Smits, actor (L.A. Law), born in?
+1956
+10
+
+Name the Year: Jimmy Stewart, actor (Mr Smith Goes to Wash, Wonderful Life), born in?
+1908
+10
+
+Name the Year: Joan Baez (in Staten Island, NY), folk singer, born in?
+1941
+10
+
+Name the Year: Joan Collins (in London), actor, born in?
+1933
+10
+
+Name the Year: Joan Crawford, actor, dearest mommy (No wire hangers, ever!), born in?
+1904
+10
+
+Name the Year: Joan of Arc burned at the stake in Rouen, France at age 19?
+1431
+10
+
+Name the Year: Joan of Arc captured by Burgundians who sold her to the English?
+1430
+10
+
+Name the Year: Joan of Arc leads Orleans, France, to victory over English?
+1429
+10
+
+Name the Year: Joan of Arc was canonized in Rome?
+1920
+10
+
+Name the Year: Joan Rivers (in Brooklyn, NY), comedian?
+1936
+10
+
+Name the Year: Joan Sutherland, opera star?
+1926
+10
+
+Name the Year: Joanna Kerns, actress, born in?
+1953
+10
+
+Name the Year: Joanna Lumley, Kashmir India, actress (Absolutely Fabulous, The Avengers), born in?
+1946
+10
+
+Name the Year: Joanne Woodward (in Thomasville, GA), actress, wife of Paul Newman, born in?
+1930
+10
+
+Name the Year: Jodie Foster (in Los Angeles, CA), actor (Silence of the Lambs, Nell, The Accused)?
+1962
+10
+
+Name the Year: Joe Cocker England, rock musician (You can leave your hat on), born in?
+1944
+10
+
+Name the Year: Joe Engle in X-15 reaches 80 km?
+1965
+10
+
+Name the Year: Joe Frazier, boxer, born in?
+1944
+10
+
+Name the Year: Joe Kittinger completes first solo balloon crossing of Atlantic?
+1984
+10
+
+Name the Year: Joe Walker in X-15 reaches 105 km?
+1963
+10
+
+Name the Year: Joe Walker in X-15 test plane reaches 106 km (67 miles), straight up?
+1963
+10
+
+Name the Year: Johann Galle and Heinrich d'Arrest find the planet Neptune?
+1846
+10
+
+Name the Year: Johann Lambert, Swiss mathematician, proved pi is irrational?
+1728
+10
+
+Name the Year: Johann Lukas Schonlein, helped establish scientific medicine?
+1793
+10
+
+Name the Year: Johann Nikolaus Forkel, musicologist and first biographer of Bach, born in?
+1749
+10
+
+Name the Year: Johann Sebastian Bach (in Eisenach, Germany), composer, born in?
+1685
+10
+
+Name the Year: Johann Sebastian Bach German composer (Art of the Fugue), dies at 65?
+1750
+10
+
+Name the Year: Johann Strauss the Younger, composer, Waltz King?
+1825
+10
+
+Name the Year: Johann Strauss, composer, born in?
+1804
+10
+
+Name the Year: Johannes Brahms, composer, born in?
+1833
+10
+
+Name the Year: Johannes Kepler, planetary law-maker, dies?
+1630
+10
+
+Name the Year: John & Yoko begin their 2nd bed-in (Queen Elizabeth Hotel, Montreal)?
+1969
+10
+
+Name the Year: John and Yoko guest-host The Mike Douglas Show for the entire week?
+1972
+10
+
+Name the Year: John Arbuthnot Scottish writer (Alexander Pope), born in?
+1667
+10
+
+Name the Year: John Astin, actor (Gomez in TV Addams Family), born in?
+1930
+10
+
+Name the Year: John B. Meyenberg of St Louis patented evaporated milk?
+1884
+10
+
+Name the Year: John Backus, inventor (FORTRAN computer language), born in?
+1924
+10
+
+Name the Year: John Barrymore, actor, born in?
+1882
+10
+
+Name the Year: John Boyd Dunlop, developed the pneumatic rubber tire, born in?
+1840
+10
+
+Name the Year: John Brunner, British sci-fi author (Sheep Look Up), born in?
+1934
+10
+
+Name the Year: John Bunyan, English cleric, author (Pilgrim's Progress)?
+1628
+10
+
+Name the Year: John Burroughs, founded what later became the Burroughs Corporation, born in?
+1837
+10
+
+Name the Year: John Candy, actor (Second City TV, Splash, Blues Brothers)?
+1950
+10
+
+Name the Year: John Carpenter, director/composer (Halloween, The Thing), born in?
+1948
+10
+
+Name the Year: John Chapman 'Johnny Appleseed' died in Allen County, Ind?
+1847
+10
+
+Name the Year: John Chapman, alias Johnny Appleseed, born in?
+1774
+10
+
+Name the Year: John Cleese comedian/actor (Monty Python, Fawlty Towers), born in?
+1939
+10
+
+Name the Year: John Coltrane, saxophonist, born in?
+1926
+10
+
+Name the Year: John Constable (in England), painter, born in?
+1776
+10
+
+Name the Year: John Cougar Mellencamp, singer, born in?
+1951
+10
+
+Name the Year: John D Rockefeller Jr philanthropist, dies at 86?
+1960
+10
+
+Name the Year: John D. Rockefeller, financier, born in?
+1839
+10
+
+Name the Year: John Dean begins testifying before the Senate Watergate Committee?
+1973
+10
+
+Name the Year: John Deere, pioneer manufacturer of agricultural implements, born in?
+1804
+10
+
+Name the Year: John Dillinger one of America's Most Wanted, born in?
+1903
+10
+
+Name the Year: John Dillinger shot and killed in Chicago movie theatre?
+1934
+10
+
+Name the Year: John Dryden, first poet laureate of England (Absalom and Achitophel), born in?
+1631
+10
+
+Name the Year: John Ehrlichman, Former Nixon White House aide, born in?
+1925
+10
+
+Name the Year: John Entwistle, rocker (The Who), born in?
+1944
+10
+
+Name the Year: John F. Kennedy, Jr?
+1960
+10
+
+Name the Year: John Fitch granted a US patent for his working steamboat?
+1791
+10
+
+Name the Year: John Fitzgerald Kennedy, 35th U.S. President (1961-1963), born in?
+1917
+10
+
+Name the Year: John Flamsteed observes Uranus for 6th time?
+1715
+10
+
+Name the Year: John Flamsteed, first astronomer royal of England, born in?
+1646
+10
+
+Name the Year: John Glenn aboard Friendship 7, is first American to orbit the Earth?
+1962
+10
+
+Name the Year: John Goodman actor (Roseanne, Everyone's All American), born in?
+1952
+10
+
+Name the Year: John Hampson patents venetian blind?
+1841
+10
+
+Name the Year: John Harvard, English clergyman, scholar, founder of Harvard U?
+1607
+10
+
+Name the Year: John Harvey Kellogg, English Corn Flake inventor?
+1852
+10
+
+Name the Year: John Hathaway completes a bicycle tour of every continent in the world and cycling 50,600 miles?
+1976
+10
+
+Name the Year: John Heard, actor, born in?
+1945
+10
+
+Name the Year: John Heathcoat, invented lace-making machinery, born in?
+1783
+10
+
+Name the Year: John Hurt, England, actor (Elephant Man, Alien, Midnight Express), born in?
+1940
+10
+
+Name the Year: John Huston, film director, writer, actor, born in?
+1906
+10
+
+Name the Year: John II Byzantine emperor, dies in an accident?
+1143
+10
+
+Name the Year: John II ends his reign as Catholic Pope?
+535
+10
+
+Name the Year: John III ends his reign as Catholic Pope?
+574
+10
+
+Name the Year: John Jacob Astor, merchant, born in?
+1763
+10
+
+Name the Year: John Keats, Romantic poet?
+1795
+10
+
+Name the Year: John Kenneth Galbraith, economist, born in?
+1908
+10
+
+Name the Year: John L. Sullivan wins by KO in 75 rounds in last bareknuckle bout?
+1889
+10
+
+Name the Year: John Landis actor (American Werewolf in London), born in?
+1950
+10
+
+Name the Year: John Landis director (Twilight Zone), born in?
+1950
+10
+
+Name the Year: John Larroquette, actor (Night Court, Star Trek III)?
+1937
+10
+
+Name the Year: John Lennon (15) & Paul McCartney (13) meet for the 1st time as Lennon's rock group The Quarrymen perform at a church dinner?
+1956
+10
+
+Name the Year: John Lennon takes delivery of his psychedelic painted Rolls Royce?
+1967
+10
+
+Name the Year: John Lennon, rocker/Beatle, born in?
+1940
+10
+
+Name the Year: John Lithgow, actor (Harry and the Hendersons, 3rd Rock From The Sun), born in?
+1945
+10
+
+Name the Year: John Logie Baird, Scotland, inventor (father of TV), born in?
+1888
+10
+
+Name the Year: John Loudon McAdam created macadam road surface (asphalt), born in?
+1756
+10
+
+Name the Year: John Mayall, blues singer?
+1933
+10
+
+Name the Year: John Maynard Keynes (in Cambridge, England), another economist, born in?
+1883
+10
+
+Name the Year: John McEnroe, tennis player, brat, born in?
+1959
+10
+
+Name the Year: John Milton, poet and puritan (Paradise Lost) born?
+1608
+10
+
+Name the Year: John Montague 4th Earl of Sandwich, inventor of sandwich, born in?
+1718
+10
+
+Name the Year: John Paul II becomes 1st pope to visit a communist country (Poland)?
+1979
+10
+
+Name the Year: John Phillip Souza, march king (Stars and Stripes Forever, etc)?
+1854
+10
+
+Name the Year: John Presper Eckert, co-inventor of first electronic computer (ENIAC), born in?
+1919
+10
+
+Name the Year: John Reed, journalist who reported on Mexican, Russian revolutions, born in?
+1887
+10
+
+Name the Year: John Ringling North, circus director?
+1903
+10
+
+Name the Year: John Steinbeck, writer, born in?
+1902
+10
+
+Name the Year: John Stuart Mill philosopher/political economist/Utilitarian, born in?
+1806
+10
+
+Name the Year: John T Scopes arrested for teaching evolution in Tennessee?
+1925
+10
+
+Name the Year: John Travolta, actor, born in?
+1954
+10
+
+Name the Year: John Updike, poet and novelist, born in?
+1932
+10
+
+Name the Year: John W. Dean tells Watergate Committee about Nixon's `enemies list'?
+1973
+10
+
+Name the Year: John W. Young, astronaut (Gemini 3, 10, Apollo 10, 16, STS-1, 9), born in?
+1930
+10
+
+Name the Year: John Weissmuller, actor (Tarzan)/100m swimmer (Olympic-gold-1924, 28), born in?
+1904
+10
+
+Name the Year: John Wilkes Booth assassin of Abraham Lincoln, born in?
+1838
+10
+
+Name the Year: John Wilkes Booth, Abraham Lincoln's assassin, is shot dead?
+1865
+10
+
+Name the Year: John Wycliffe English religious reformer, bible translator, dies?
+1384
+10
+
+Name the Year: John XXIII (born Angelo Roncalli near Bergamo, Italy), 261st pope (1958-63)?
+1881
+10
+
+Name the Year: John XXIII encyclical On peace in truth, justice, charity & liberty?
+1963
+10
+
+Name the Year: John Young & Charles Duke explores Moon (Apollo 16)?
+1972
+10
+
+Name the Year: Johnny Carson, pundit (Tonight Show), born in?
+1925
+10
+
+Name the Year: Johnny Cash, singer, The Man in Black, born in?
+1932
+10
+
+Name the Year: Johnny Mathis, singer?
+1935
+10
+
+Name the Year: Johnny Ramone, rock guitarist, born in?
+1951
+10
+
+Name the Year: Johnny Rotten [John Lydon], rocker (Sex Pistols-God Save the Queen), born in?
+1956
+10
+
+Name the Year: Johnny Rotten & Joan Collins appear together on BBC's Juke Box Jury?
+1979
+10
+
+Name the Year: Johnny Weismuller actor (Tarzan, Jungle Jim), dies in Acapulco at 79?
+1984
+10
+
+Name the Year: Jon Voight, Yonkers, NY, actor (Deliverance, Midnight Cowboy), born in?
+1938
+10
+
+Name the Year: Jonathan Pollard spy for Israel pleads guilty?
+1986
+10
+
+Name the Year: Jonathan Swift, satirist (Gulliver's Travels, A Modest Proposal)?
+1667
+10
+
+Name the Year: Joni Mitchell, singer?
+1943
+10
+
+Name the Year: Joost van den Vondel, Dutch poet, dramatist?
+1587
+10
+
+Name the Year: Jordan gained independence from Britain (Natl Day)?
+1946
+10
+
+Name the Year: Jordan's King Hussein marries Elizabeth Halaby, 26-yr-old American?
+1978
+10
+
+Name the Year: Jose Feliciano, singer/songwriter (Light my Fire), born in?
+1945
+10
+
+Name the Year: Jose Miguel Carrera, president of Chile (1811-14), born in?
+1785
+10
+
+Name the Year: Jose Raul Capablanca of Cuba, world chess champion (1921-27)?
+1888
+10
+
+Name the Year: Jose' Santos Zelaya (L), ruler of Nicaragua (1893-1910)?
+1853
+10
+
+Name the Year: Josef Stalin died?
+1953
+10
+
+Name the Year: Josef Stalin, Russian dictator, born in?
+1879
+10
+
+Name the Year: Joseph Caspar Mezzofanti, Cardinal/linguist (understood 70 languages), born in?
+1774
+10
+
+Name the Year: Joseph Doherty & 3 other IRA men arrested for murder?
+1980
+10
+
+Name the Year: Joseph Farwell Glidden, inventor (1st coml useable barbed wire), born in?
+1813
+10
+
+Name the Year: Joseph Hansom of London receives patent for Hansom cabs?
+1834
+10
+
+Name the Year: Joseph Jaques Montgolfier becomes the first to fly (10 minute) in a hot-air balloon?
+1783
+10
+
+Name the Year: Joseph Kittinger parachutes from a balloon at 31,330 m (record)?
+1960
+10
+
+Name the Year: Joseph McCarthy commie hunting senator, dies at 47?
+1957
+10
+
+Name the Year: Joseph Norman Lockyer discovered Helium/founded Nature magazine, born in?
+1836
+10
+
+Name the Year: Joseph Priestly (father of soda pop) invents carbonated water?
+1733
+10
+
+Name the Year: Joseph Pulitzer, awarded newspaper prizes, born in?
+1847
+10
+
+Name the Year: Josiah Wedgewood, English pottery designer, manufacturer?
+1730
+10
+
+Name the Year: Journalist Terry Anderson is abducted in Lebanon by pro-Iranian terrorists?
+1985
+10
+
+Name the Year: Juan Carlos I, King of Spain, born in?
+1938
+10
+
+Name the Year: Juan Peron becomes dictator of Argentina?
+1945
+10
+
+Name the Year: Juan Peron, president of Argentina (1946-55, 1973-74), born in?
+1895
+10
+
+Name the Year: Juan-Manuel Fangio, wins his last auto World Championship at 46?
+1957
+10
+
+Name the Year: Judd Hirsch, actor (Taxi), born in?
+1935
+10
+
+Name the Year: Judy Collins, singer (Send in the Clowns, Clouds), born in?
+1939
+10
+
+Name the Year: Judy Garland singer/actress, dies in London at 47?
+1969
+10
+
+Name the Year: Judy Garland, singer/actress, dies at 48 of an alcohol overdose?
+1969
+10
+
+Name the Year: Jules Leotard performs the first Flying Trapeze circus act in Paris. He also designed the garment that bears his name?
+1859
+10
+
+Name the Year: Jules Romains, French novelist, dramatist, poet (Men of Good Will)?
+1885
+10
+
+Name the Year: Jules Verne (in France), author who pioneered what later became science fiction, born in?
+1828
+10
+
+Name the Year: Jules Verne dies in Amiens at 76 years old?
+1905
+10
+
+Name the Year: Julia Louis-Dreyfus NYC, comedienne (SNL, Steinfeld, Day by Day), born in?
+1961
+10
+
+Name the Year: Julian Lennon, musician, son of John Lennon, born in?
+1963
+10
+
+Name the Year: Juliana becomes queen of the Netherlands?
+1948
+10
+
+Name the Year: Julie Andrews, actor, singer (Sound of Music, Mary Poppins, S.O.B.)?
+1935
+10
+
+Name the Year: Juliet Mills (in London, England)?
+1941
+10
+
+Name the Year: Julio Iglesias, singer, born in?
+1941
+10
+
+Name the Year: Julius & Ethel Rosenberg, atomic spies, sentenced to death?
+1951
+10
+
+Name the Year: Julius III Counter-Reformation pope (1550-55), born in?
+1487
+10
+
+Name the Year: Junko Tabei Japan, 1st woman to climb Mount Everest, born in?
+1939
+10
+
+Name the Year: Jury finds John Wayne Gacy guilty of murders of 33 men and boys?
+1980
+10
+
+Name the Year: Jury in Dallas found Jack Ruby guilty of murdering Lee Harvey Oswald?
+1964
+10
+
+Name the Year: Just past midnight, a sharp jolt causes Lake Merced to drop 30 feet?
+1852
+10
+
+Name the Year: Justine Bateman (in Rye, NY), actress (Family Ties), born in?
+1966
+10
+
+Name the Year: K. L. Harding discovers Juno, third known asteroid?
+1804
+10
+
+Name the Year: Kahlil Gibran, philosopher, born in?
+1883
+10
+
+Name the Year: Kaiser Wilhelm II abdicates after German defeat in WW I?
+1918
+10
+
+Name the Year: Kakuei Tanaka Japanese PM convicted of bribe-taking, born in?
+1918
+10
+
+Name the Year: Kapiolani defies Pele (Hawaiian volcano goddess) and lives?
+1824
+10
+
+Name the Year: Karen Carpenter (in Connecticut), drummer for the Carpenters, singer, born in?
+1950
+10
+
+Name the Year: Karen Foster Lufkin Tx, playmate (Oct, 1989), born in?
+1965
+10
+
+Name the Year: Karen Silkwood killed in a car crash?
+1974
+10
+
+Name the Year: Karl Branting, Swedish statesman, diplomat (Nobel Peace Prize 1921)?
+1860
+10
+
+Name the Year: Karl Ferdinand von Grafe, helped create modern plastic surgery, born in?
+1787
+10
+
+Name the Year: Karl Freidrich Benz automobile engineer (Mercedes), dies?
+1929
+10
+
+Name the Year: Karl Jansky, discoverer of cosmic radio emissions in 1932, born in?
+1905
+10
+
+Name the Year: Karl Marx philospher (Communist Manifesto, Das Kapital), born in?
+1818
+10
+
+Name the Year: Karl Marx, author of the Communist Manifesto, born in?
+1818
+10
+
+Name the Year: Karl Marx, founder of Communism, died?
+1883
+10
+
+Name the Year: Karl Nessler demonstrates the first 'permanent wave' for hair, in London?
+1906
+10
+
+Name the Year: Karl Wilhelm Siemens inventor (laid undersea cables), born in?
+1823
+10
+
+Name the Year: Katanga becomes part of the Democratic Republic of the Congo?
+1962
+10
+
+Name the Year: Kate Bush, England, singer/songwriter (Babushka, Running Up That Hill), born in?
+1958
+10
+
+Name the Year: Kate Jackson (in Alabama), actor (Charley's Angels, Making Love), born in?
+1948
+10
+
+Name the Year: Katherine Hepburn (in Connecticut), actor (African Queen, On Golden Pond)?
+1909
+10
+
+Name the Year: Kathleen Quinlan (in Mill Valley, CA), actor (Twilight Zone)?
+1954
+10
+
+Name the Year: Kathleen Turner, actress, born in?
+1954
+10
+
+Name the Year: Katie Pierson vocals/guitarist (B-52's-Rock Lobster, Love Shack), born in?
+1948
+10
+
+Name the Year: Keenen Ivory Wayans comedian (In Living Color), born in?
+1958
+10
+
+Name the Year: Keith Haring Kutztown Pa, graffiti artist (Vanity Fair, Paris Review), born in?
+1958
+10
+
+Name the Year: Keith Richard, guitarist (Rolling Stones)?
+1943
+10
+
+Name the Year: Kelly McGillis, actress, born in?
+1957
+10
+
+Name the Year: Kemal Atarok 1st pres of Turkey, dies?
+1938
+10
+
+Name the Year: Ken Howard, actor, director, born in?
+1944
+10
+
+Name the Year: Ken Rosewall, Sydney, Australia, tennis star (US Open 1956), born in?
+1934
+10
+
+Name the Year: Kenneth Grahame, author (The Wind in the Willows), born in?
+1859
+10
+
+Name the Year: Kenneth Warby sets world speed record on water (514 kph)?
+1978
+10
+
+Name the Year: Kenny Rogers singer (Lady) actor (Coward of the County), born in?
+1938
+10
+
+Name the Year: Kenyan Independance Day?
+1964
+10
+
+Name the Year: Kevin Bacon, actor, born in?
+1958
+10
+
+Name the Year: Kevin Costner actor (Fandango, Silverado, Bull Durham), born in?
+1955
+10
+
+Name the Year: Kevin Kline, actor, born in?
+1947
+10
+
+Name the Year: Key Largo Coral Reef Preserve established (first underwater park)?
+1960
+10
+
+Name the Year: Khmer Republic (Cambodia) declares independence?
+1970
+10
+
+Name the Year: Khrushchev becomes First Secretary of the Communist Party?
+1953
+10
+
+Name the Year: Khrushchev claims to have a 100-megaton nuclear bomb?
+1963
+10
+
+Name the Year: Kiki Dee (in Yorkshire, England), singer, born in?
+1947
+10
+
+Name the Year: Kilauea Volcano's most spectacular eruption (in Hawaii)?
+1959
+10
+
+Name the Year: Kim Alexis (in Lockport, NY), Sports Illustrated swimsuit covergirl?
+1960
+10
+
+Name the Year: Kim Cattrall, Liverpool England, actress (Mannequin, Star Trek VI), born in?
+1956
+10
+
+Name the Year: Kim Novak (in Chicago, Illinois), actress, born in?
+1933
+10
+
+Name the Year: King Alexander I & Queen Dragia of Serbia are assassinated?
+1903
+10
+
+Name the Year: King Alfred the Great, dies?
+901
+10
+
+Name the Year: King Camp Gillette, inventor of the safety razor, born in?
+1855
+10
+
+Name the Year: King Charles IX orders massacre of thousands of French Protestants?
+1572
+10
+
+Name the Year: King Faisal II PM of Iraq, assassinated at Baghdad?
+1958
+10
+
+Name the Year: King George V of Britain dies, succeeded by Edward VIII?
+1936
+10
+
+Name the Year: King George V of England crowned?
+1911
+10
+
+Name the Year: King Henry VIII and Catherine of Aragon marriage declared null and void by the newly formed Church of England?
+1533
+10
+
+Name the Year: King Henry VIII of England orders bowling lanes to be built at Whitehall, in London?
+1520
+10
+
+Name the Year: King John signs Magna Carta at Runnymede, England?
+1215
+10
+
+Name the Year: King Kong 1st televised?
+1956
+10
+
+Name the Year: King Louis XVI caught trying to escape French Revolution?
+1791
+10
+
+Name the Year: King Ludwig II of Bavaria drowns?
+1886
+10
+
+Name the Year: King of Denmark cedes Norway to King of Sweden by treaty of Kiel?
+1814
+10
+
+Name the Year: King of Naples flees before the advancing French armies?
+1799
+10
+
+Name the Year: King Tut's Tomb is discovered in Egypt?
+1922
+10
+
+Name the Year: King Victor Emmanual III of Italy, becomes Emperor of Ethiopia?
+1963
+10
+
+Name the Year: King William III of Orange?
+1650
+10
+
+Name the Year: King William IV of England, dies?
+1837
+10
+
+Name the Year: King Zog of Albania marries Countess Geraldine of Hungary?
+1938
+10
+
+Name the Year: Kingdom of Italy annexes Venetia?
+1866
+10
+
+Name the Year: Kingdom of Saudi Arabia formed (National Day)?
+1932
+10
+
+Name the Year: Kiribati (Gilbert and Ellice Is.) gained independence from Britain?
+1979
+10
+
+Name the Year: Kirk Douglas, actor (Gunfight at the OK Corral, 7 Days in May)?
+1918
+10
+
+Name the Year: Kirstie Alley, actress (Cheers, Star Trek II), born in?
+1955
+10
+
+Name the Year: Kiss performs their 1st concert?
+1976
+10
+
+Name the Year: Kissinger and Le Duc Tho jointly awarded Nobel peace prize?
+1973
+10
+
+Name the Year: Konrad Lorenz, zoologist, ethologist, writer (Nobel 1973)?
+1903
+10
+
+Name the Year: Konstantin Tsiolkovsky, pioneer in rocket and space research, born in?
+1857
+10
+
+Name the Year: Korea declares independence from China, asks for Japanese aid?
+1894
+10
+
+Name the Year: Korean Boeing 747 strays into Siberia and is shot down by a Soviet jet?
+1983
+10
+
+Name the Year: Korean boxer Duk Koo Kim fatally injured when KOed by Ray Mancini?
+1982
+10
+
+Name the Year: Korean Conflict begins; North Korea invades South Korea?
+1950
+10
+
+Name the Year: Korean Hangual alphabet devised?
+1446
+10
+
+Name the Year: Kosygin and Brezhnev replace Soviet premier Nikita Krushchev?
+1964
+10
+
+Name the Year: Krakatoa began erupting with increasingly large explosions?
+1883
+10
+
+Name the Year: Krakatoa, west of Java, blew apart; top that, St. Helens!?
+1883
+10
+
+Name the Year: Kris Kristofferson singer/actor (Amerika, Millenium), born in?
+1936
+10
+
+Name the Year: Krzysztof Penderecki, Polish composer (Hiroshima Threnody)?
+1933
+10
+
+Name the Year: Kurt Russell, actor, born in?
+1951
+10
+
+Name the Year: Kurt Vonnegut, Jr., author (Slaughterhouse Five, Sirens of Titan)?
+1922
+10
+
+Name the Year: Kwame Nkrumah president of Ghana, dies at 62?
+1972
+10
+
+Name the Year: La Paz, Bolivia is founded?
+1548
+10
+
+Name the Year: Ladies Home Journal begins publication?
+1883
+10
+
+Name the Year: Lady Astor sworn-in as 1st female member of British Parliament?
+1919
+10
+
+Name the Year: Lady Diane Spencer (Princess Di), born in?
+1961
+10
+
+Name the Year: Lady Godiva takes a ride through Coventry?
+1678
+10
+
+Name the Year: LaGuardia Airport opened in New York City?
+1939
+10
+
+Name the Year: Lana Turner (in Wallace, Idaho), actress, born in?
+1920
+10
+
+Name the Year: Lana Wood (in Santa Monica, CA), actress, born in?
+1946
+10
+
+Name the Year: Landslide in Huancavelica Province Peru creates a natural dam?
+1974
+10
+
+Name the Year: Laos accepts constitution for parliamentary democracy?
+1947
+10
+
+Name the Year: Laos becomes associated state within French Union?
+1949
+10
+
+Name the Year: Laos gains full independence from France?
+1953
+10
+
+Name the Year: Laos gains its independence?
+1954
+10
+
+Name the Year: Laos People's Democratic Republic founded (National Day)?
+1975
+10
+
+Name the Year: Larry Bird beats out Magic Johnson for NBA rookie of year?
+1980
+10
+
+Name the Year: Larry Flint, publisher (Hustler)?
+1942
+10
+
+Name the Year: Larry Flynt paid hitman $1M to kill Hefner, Guccione and Sinatra?
+1988
+10
+
+Name the Year: Larry Hagman Fort Worth Tx, actor (I Dream of Jeannie, JR-Dallas), born in?
+1931
+10
+
+Name the Year: Larry Hagman, actor, born in?
+1931
+10
+
+Name the Year: Lars Ulrich, Danish/US heavy metal drummer (Metallica-Kill 'em All), born in?
+1963
+10
+
+Name the Year: Last Americans evacuated from Saigon?
+1974
+10
+
+Name the Year: Last bare knuckle champion John L. Sullivan KOs Paddy Ryan in Miss?
+1882
+10
+
+Name the Year: Last Czar of Russia, Nicholas II, crowned?
+1896
+10
+
+Name the Year: Last day of Julian calendar in Alaska?
+1867
+10
+
+Name the Year: Last day of Julian calendar in Britain, British colonies?
+1752
+10
+
+Name the Year: Last day of Julian civil calendar (in parts of Bulgaria)?
+1920
+10
+
+Name the Year: Last Judy Garland-Mickey Rooney movie released (Girl Crazy)?
+1943
+10
+
+Name the Year: Last US troops leave Vietnam, 9 yrs after the Tonkin Resolution?
+1973
+10
+
+Name the Year: Later that day, Jim Henson, creator of the Muppets, dies from pneumonia and complications?
+1990
+10
+
+Name the Year: Latvia declares independence from Russia?
+1918
+10
+
+Name the Year: Latvia's parliment votes 138-0 (1 abstention) for Independence?
+1990
+10
+
+Name the Year: Launch of Mariner 2 which makes first Venus flyby?
+1962
+10
+
+Name the Year: Launch of Mariner V for Venus fly-by?
+1967
+10
+
+Name the Year: Launch of Voskhod 1, 1st 3 man crew (Komarov, Feokistov, Yegorov)?
+1964
+10
+
+Name the Year: Laura Branigan singer (Gloria), born in?
+1957
+10
+
+Name the Year: Lauren Bacall (in Staten Island, NY), actor, whistler (Dark Passage, Key Largo, Always), born in?
+1924
+10
+
+Name the Year: Lauren Hutton (in South Carolina), model, actor (American Gigolo, Lassiter)?
+1943
+10
+
+Name the Year: Laverne Andrews (in Minneapolis, MN), singer (Andrew Sisters)?
+1915
+10
+
+Name the Year: Lawrence Welk, bandleader, bubble maker, born in?
+1903
+10
+
+Name the Year: LBJ sets up Warren comm to investigate assassination of JFK?
+1963
+10
+
+Name the Year: Leadbelly, blues 12 string guitarist (Rock Island Line), born in?
+1888
+10
+
+Name the Year: League of Nations assembles for last time?
+1946
+10
+
+Name the Year: League of Nations established?
+1920
+10
+
+Name the Year: League of Nations holds first meeting, in Geneva?
+1920
+10
+
+Name the Year: League of Nations went out of business, replaced by the U.N?
+1946
+10
+
+Name the Year: Lebanese magazine Ash Shirra reveals secret US arms sales to Iran?
+1986
+10
+
+Name the Year: Lebanese Shiite Moslem gunmen hijack TWA 847 after Athens' takeoff?
+1985
+10
+
+Name the Year: Lebanon and Syria are made independent?
+1945
+10
+
+Name the Year: Lebanon gained independence from France (National Day)?
+1943
+10
+
+Name the Year: Lech Walesa wins the Nobel Peace Prize?
+1983
+10
+
+Name the Year: Lech Walesa, Popowo Poland, leads Polish Solidarity (Nobel 1983), born in?
+1943
+10
+
+Name the Year: Led Zepplin's Debut Album released?
+1969
+10
+
+Name the Year: Lee De Forest (in Council Bluffs, Iowa), invented the Audion vacuum tube (radio tube)?
+1873
+10
+
+Name the Year: Lee Harvey Oswald announces in Moscow he will never return to U.S?
+1959
+10
+
+Name the Year: Lee Harvey Oswald, JFK's assassin, born in?
+1939
+10
+
+Name the Year: Lee Horsley, actor, born in?
+1955
+10
+
+Name the Year: Lee Marvin dies in Tucson, Ariz at 63?
+1987
+10
+
+Name the Year: Lee Marvin, actor, born in?
+1924
+10
+
+Name the Year: Lee Trevino, golfer (US Open 1968,71), born in?
+1939
+10
+
+Name the Year: Leipzig Observatory discovers short-period (6.2 yrs) Comet d'Arrest?
+1861
+10
+
+Name the Year: Lenin returns to Russia to start Bolshevik Revolution?
+1917
+10
+
+Name the Year: Lenny Bruce comedian, arrested on obsenity charges, born in?
+1925
+10
+
+Name the Year: Lenny Bruce comedian, dies of a morphine overdose?
+1966
+10
+
+Name the Year: Lens to provide zoom effects patented (F.G. Back)?
+1948
+10
+
+Name the Year: Leo Sayer [Gerard], England, singer (When I Need Love), born in?
+1948
+10
+
+Name the Year: Leo Tolstoy Russia, novelist (War and Peace, Anna Karenina), born in?
+1828
+10
+
+Name the Year: Leo XIII, 257th Roman Catholic pope (1878-1903), born in?
+1810
+10
+
+Name the Year: Leon Trotsky assassinated in Mexico City by agents of Stalin?
+1940
+10
+
+Name the Year: Leon Trotsky dies of wounds inflicted by an assailant the day before?
+1940
+10
+
+Name the Year: Leon Trotsky expelled from Russia?
+1929
+10
+
+Name the Year: Leon Trotsky, Russian Communist theorist, Bolshevik?
+1879
+10
+
+Name the Year: Leon Trotsky, Russian revolutionary (pres of 1st Soviet), born in?
+1879
+10
+
+Name the Year: Leonard Bernstein conductor/composer/pianist/egotist, born in?
+1918
+10
+
+Name the Year: Leonard Cohen, Montreal, singer/songwriter (Death of Ladies Man), born in?
+1934
+10
+
+Name the Year: Leonard Nimoy, actor, director, born in?
+1931
+10
+
+Name the Year: Leonardo Da Vinci artist/scientist, dies at 67?
+1519
+10
+
+Name the Year: Leonid Brezhnev (in Ukraine), Soviet statesman, in the Ukraine?
+1906
+10
+
+Name the Year: Leonid Brezhnev named president of USSR?
+1977
+10
+
+Name the Year: Leonid Brezhnev, Soviet 1st sectretary, dies of a heart attack at 75?
+1982
+10
+
+Name the Year: Leonid D. Kizim, Soviet cosmonaut (Soyuz T-3, T-10, T-15), born in?
+1941
+10
+
+Name the Year: Leopold I Emperor of Holy Roman Empire, dies at 64?
+1705
+10
+
+Name the Year: Leopold I, Emperor of Holy Roman Empire, born in?
+1640
+10
+
+Name the Year: Leroy Deans awarded first Order of Purple Heart in Korea?
+1950
+10
+
+Name the Year: Leslie Ann Warren (in New York City), actor, born in?
+1946
+10
+
+Name the Year: Leslie-Anne Down (in London, England), actor, born in?
+1954
+10
+
+Name the Year: Lesotho (Basutoland) gained independence from Britain (National Day)?
+1966
+10
+
+Name the Year: Levi Eshkol dies, Golda Meir becomes premier of Israel?
+1969
+10
+
+Name the Year: Levi Strauss markets blue jeans with copper rivets, price $13.50 doz?
+1874
+10
+
+Name the Year: Lewis Carroll creates Alice in Wonderland for Alice P Liddell?
+1862
+10
+
+Name the Year: Lewis Carroll writer (Alice in Wonderland), dies at 65?
+1898
+10
+
+Name the Year: Li Hung Chang, chinese statesman, born in?
+1823
+10
+
+Name the Year: Li Ta-chao cofounder with Mao Tse-tung of Chinese Communist Party, born in?
+1888
+10
+
+Name the Year: Liberia declares independence?
+1847
+10
+
+Name the Year: Liberia was proclaimed an independent republic?
+1847
+10
+
+Name the Year: Liberius begins his reign as Catholic Pope?
+352
+10
+
+Name the Year: Libyan revolution, Col Moammar Gadhafi deposes King Idris?
+1969
+10
+
+Name the Year: Lie detector first used in court at Portage, WI?
+1935
+10
+
+Name the Year: Lighthouse established on Alcatraz Island?
+1854
+10
+
+Name the Year: Lillehammer, Norway upsets Anchorage to host 1994 Winter olympics?
+1988
+10
+
+Name the Year: Lillian Gish, silent film and stage actor (Birth of a Nation), born in?
+1896
+10
+
+Name the Year: Lin Yi-t'ang, Chinese writer (My Country and My People), born in?
+1895
+10
+
+Name the Year: Lincoln Deachey performs first airplane loop-the-loop?
+1913
+10
+
+Name the Year: Linda Blair, St Louis Mo, actress (Exorcist, Chained Heat, Savage St), born in?
+1959
+10
+
+Name the Year: Linda Eastman McCartney, singer, born in?
+1942
+10
+
+Name the Year: Linda Evans, actor (Dynasty), born in?
+1942
+10
+
+Name the Year: Linda Ronstadt (in Tucson, Arizona), singer?
+1946
+10
+
+Name the Year: Lindbergh turned over $50,000 as ransom for kidnapped son?
+1932
+10
+
+Name the Year: Lindburgh lands in Paris, after 1st solo air crossing of Atlantic?
+1927
+10
+
+Name the Year: Lindsay Wagner LA Ca, actress (Bionic Woman, Paper Chase, Nighthawks), born in?
+1949
+10
+
+Name the Year: Lionel Barrymore actor (A Free Soul, David Cooperfield, Dr Kildaire), born in?
+1878
+10
+
+Name the Year: Lisa Bonet (in San Francisco, CA), actor (Cosby Show)?
+1967
+10
+
+Name the Year: Lisa Marie Presley, actress?
+1968
+10
+
+Name the Year: Lithauania, Estonia and Latvia hold their 1st joint session?
+1990
+10
+
+Name the Year: Lithuania seize & annex the country of Memel?
+1923
+10
+
+Name the Year: Lithuanian SSR is accepted into the USSR?
+1940
+10
+
+Name the Year: Little Richard gets a star on Hollywood's walk of fame?
+1990
+10
+
+Name the Year: Liv Ullman (in Tokyo, Japan), actor (Cries and Whispers), born in?
+1939
+10
+
+Name the Year: Live Aid, a rock concert in London, Phila, Moscow and Sydney?
+1985
+10
+
+Name the Year: Liverpool's Cavern Club, the home of the Beatles, reopens?
+1984
+10
+
+Name the Year: Liza Minnelli (in Los Angeles, CA), singer, actor, born in?
+1946
+10
+
+Name the Year: Lloyd Bridges, actor (Sea Hunt, Roots, Flying High), born in?
+1913
+10
+
+Name the Year: Lloyd Cole, guitar/vocals (& the Commotions-Rattlesnakes), born in?
+1961
+10
+
+Name the Year: Lolita, by Vladimir Nabokov, published?
+1958
+10
+
+Name the Year: Lon Chaney Jr actor (Hawkeye, Pistols 'n' Petticoats), dies at 67?
+1973
+10
+
+Name the Year: Lon Chaney, actor, man of a thousand faces, born in?
+1883
+10
+
+Name the Year: London Gazette, oldest surviving journal, is founded?
+1865
+10
+
+Name the Year: Lord Cecil of Chelwood, UK, helped form League of Nations (early version of the UN), born in?
+1864
+10
+
+Name the Year: Lord Chesterfield letter writer; introduced Gregorian calendar (1752), born in?
+1694
+10
+
+Name the Year: Lord George Gordon Noel Byron, England, romantic poet (Don Juan), born in?
+1788
+10
+
+Name the Year: Lord Kitchener retakes Sudan for Britain?
+1898
+10
+
+Name the Year: Lord Oliver Cromwell British king (1653-58), dies at 59?
+1658
+10
+
+Name the Year: Lord Robert Baden-Powell, founder of the Boy Scouts, born in?
+1857
+10
+
+Name the Year: Lord Snowdon, photographer, born in?
+1930
+10
+
+Name the Year: Loretta Lynn (in Kentucky), Ms. Country Music, coal miner's daughter, born in?
+1935
+10
+
+Name the Year: Loretta Swit (in Passaic, NJ), actor (MASH)?
+1937
+10
+
+Name the Year: Lorne Greene actor (Bonanza, Battlestar Galactica), dies at 72?
+1987
+10
+
+Name the Year: Lorne Greene, actor (Bonanza, Battlestar Galactica), born in?
+1915
+10
+
+Name the Year: Los Angeles founded in the Valley of Smokes (Indian Name)?
+1781
+10
+
+Name the Year: Los Angeles Railway (with 5 streetcar lines) forced to close?
+1945
+10
+
+Name the Year: Lou Diamond Philips, actor, born in?
+1962
+10
+
+Name the Year: Louis B Mayer, Minsk Russia, motion-picture executive (MGM), born in?
+1885
+10
+
+Name the Year: Louis Braille, developed reading system for the blind?
+1809
+10
+
+Name the Year: Louis Comfort Tiffany, glassmaker, born in?
+1848
+10
+
+Name the Year: Louis I (the Great), king of Hungary (1342-82), Poland (1370-82)?
+1326
+10
+
+Name the Year: Louis IX, king of France (1226-70), born in?
+1214
+10
+
+Name the Year: Louis Lumiere with brother Auguste made 1st motion picture in 1895, born in?
+1864
+10
+
+Name the Year: Louis Pasteur dies?
+1895
+10
+
+Name the Year: Louis Pasteur, French bacteriologist, born in?
+1822
+10
+
+Name the Year: Louis Reard's bikini swimsuit design debuts at Paris fashion show?
+1946
+10
+
+Name the Year: Louis VIII [Coeur-de-Lion] king of France (1223-26), born in?
+1187
+10
+
+Name the Year: Louis Waterman begins experiments that invent the fountain pen?
+1883
+10
+
+Name the Year: Louis X (the Stubborn), king of France (1314-16)?
+1289
+10
+
+Name the Year: Louis XI king of France (1461-83), born in?
+1423
+10
+
+Name the Year: Louis XI king of France (1461-83), dies at 60?
+1483
+10
+
+Name the Year: Louis XIII, king of France (1610-43), born in?
+1601
+10
+
+Name the Year: Louis XIV crowned King of France?
+1654
+10
+
+Name the Year: Louis XIV revokes Edict of Nantes, outlaws Protestantism, hastens onset of French Revolution?
+1685
+10
+
+Name the Year: Louis XIV the great, king of France (1643-1715), born in?
+1638
+10
+
+Name the Year: Louis XIV the great, king of France (1643-1715), dies at 76?
+1715
+10
+
+Name the Year: Louis XVI French king, beheaded by French revolutionaries?
+1793
+10
+
+Name the Year: Louis XVI, king of France (1774-92); guillotined, born in?
+1754
+10
+
+Name the Year: Louis XVIII, first post-revolutionary king of France (1814-24)?
+1755
+10
+
+Name the Year: Louis-Jacques-Mande Daguerre, developed a method of photography?
+1789
+10
+
+Name the Year: Louisa May Alcott, author (Little Women)?
+1832
+10
+
+Name the Year: Louise Brooks, silent screen star (American Venus, Pandora's Box)?
+1906
+10
+
+Name the Year: Lt Col Oliver North began public testimony at Iran-Contra hearing?
+1987
+10
+
+Name the Year: Luciano Pavarotti Moderna Italy, operatic tenor (Oh Giorgio), born in?
+1935
+10
+
+Name the Year: Lucille Ball (in New York, NY), comedian, actor, born in?
+1911
+10
+
+Name the Year: Lucille Ball comedienne/actress dies at 78 of a massive heart attack?
+1989
+10
+
+Name the Year: Ludvig Baron Holberg, a founder of Danish & Norwegian literature, born in?
+1684
+10
+
+Name the Year: Ludwig II mad king of Bavaria (1864-86), born in?
+1845
+10
+
+Name the Year: Ludwig III crowned king of Bavaria?
+1913
+10
+
+Name the Year: Ludwig von Beethoven (in Bonn, Germany), composer, born in?
+1770
+10
+
+Name the Year: Luigi Pulci, Italian poet (Morgante), born in?
+1432
+10
+
+Name the Year: Lulu, Glasgow, Scotland, singer/actress (To Sir With Love), born in?
+1948
+10
+
+Name the Year: Luna 1 launched by USSR; first spacecraft to impact on the moon?
+1959
+10
+
+Name the Year: Luna 1(USSR) launched?
+1959
+10
+
+Name the Year: Luna 10, first lunar orbiter?
+1966
+10
+
+Name the Year: Luna 16 lands on Moon's Mare Fecunditatis, drills core sample?
+1970
+10
+
+Name the Year: Luna 16 leaves the Moon?
+1970
+10
+
+Name the Year: Luna 9, first lunar landing?
+1966
+10
+
+Name the Year: Lunar Orbiter 1 takes first photograph of earth from the moon?
+1966
+10
+
+Name the Year: Luxembourg gained independence?
+1867
+10
+
+Name the Year: Lynda Carter Phoenix Az, Miss USA/actress (Wonder Woman, Billie Jo)?
+1951
+10
+
+Name the Year: Lyndon B. Johnson, 36th President (1963-1969)?
+1908
+10
+
+Name the Year: Lynn Redgrave (in London, England), actor, political activist, born in?
+1943
+10
+
+Name the Year: Lynne Cox swims 4.3 km from US to USSR in 4? C (39? F) Bering Sea?
+1987
+10
+
+Name the Year: M. C. Garlow becomes the first aviator to fly a million miles in a jet airplane?
+1959
+10
+
+Name the Year: M. L. Byrn of New York patented a corkscrew?
+1860
+10
+
+Name the Year: M. Scott Carpenter aboard Aurora 7 is launched?
+1962
+10
+
+Name the Year: Macbeth, King of Scotland, slain by the son of King Duncan?
+1057
+10
+
+Name the Year: Mack Sennett, created Keystone Kops, born in?
+1880
+10
+
+Name the Year: Madagascar gained independence from France (National Day)?
+1960
+10
+
+Name the Year: Madame Marie Sklodowska Curie, discovered radium (Nobel 1903, 1911)?
+1867
+10
+
+Name the Year: Madonna (Ciccone) (in Bay City, MI), singer, actor?, born in?
+1958
+10
+
+Name the Year: Mae West dies at age 88?
+1980
+10
+
+Name the Year: Mae West, actress, born in?
+1892
+10
+
+Name the Year: Magellan begins crossing the Pacific Ocean?
+1520
+10
+
+Name the Year: Magellan starts first successful circumnavigation of the world?
+1519
+10
+
+Name the Year: Magellan's ship set sail to circumnavigate the Earth?
+1519
+10
+
+Name the Year: Mahatma Gandhi India's pacifist, assassinated?
+1948
+10
+
+Name the Year: Mahatma Gandhi's 1st arrest, campaigning for Indian rights in S Africa?
+1914
+10
+
+Name the Year: Mahatma K. Ghandi (at Porbandar, Kathiawad, India), pacifist?
+1869
+10
+
+Name the Year: Mahlon Loomis receives patent for wireless ... the radio is born?
+1872
+10
+
+Name the Year: Mahmud I Ottoman sultan, fought Austrians and Russians, born in?
+1696
+10
+
+Name the Year: Main span of San Francisco's Golden Gate Bridge joined?
+1936
+10
+
+Name the Year: Maj. Dale R. Buis and Master Sgt. Chester M. Ovnand first American soldiers to be killed during the Vietnam War?
+1959
+10
+
+Name the Year: Major streets lit by coal gas for first time?
+1854
+10
+
+Name the Year: Malawi (then Nyasaland) gained independence from Britain (Natl Day)?
+1964
+10
+
+Name the Year: Malawi becomes a republic?
+1966
+10
+
+Name the Year: Malaya (Malaysia) gained independence from Britain (National Day)?
+1957
+10
+
+Name the Year: Malcolm McDowell, actor, born in?
+1943
+10
+
+Name the Year: Malcolm McLaren founded rock group (Sex Pistols-God Save the Queen), born in?
+1947
+10
+
+Name the Year: Malcolm X assassinated?
+1965
+10
+
+Name the Year: Malcolm X Omaha NB, assassinated leader of black muslims, born in?
+1925
+10
+
+Name the Year: Mali (without Senegal) gained independence from France (National Day)?
+1960
+10
+
+Name the Year: Malta gained independence from Britain?
+1964
+10
+
+Name the Year: Mance Lipscomb, blues musician, born in?
+1895
+10
+
+Name the Year: Manchester Massacre; English police charge unemployed demonstrators?
+1819
+10
+
+Name the Year: Manfred Freiherr von Richthofen [the Red Baron], German WW I ace, born in?
+1892
+10
+
+Name the Year: Manfred Mann, musician, born in?
+1940
+10
+
+Name the Year: Manuel Quezon, first president of Philippine Commonwealth (1935-42), born in?
+1878
+10
+
+Name the Year: Mao Tse-Tung, Chinese communist party chairman (1949-76), dies at 82?
+1976
+10
+
+Name the Year: Marcel Duchamp painter (Nude Descending a Staircase), born in?
+1887
+10
+
+Name the Year: Marcel Marceau, mime, born in?
+1923
+10
+
+Name the Year: Marcel Proust, French novelist (Remembrance of Things Past), born in?
+1871
+10
+
+Name the Year: Marcello Mastroianni actor (La Dolce Vita), born in?
+1924
+10
+
+Name the Year: March by civil rights demonstrators was broken up in Selma, Alabama?
+1965
+10
+
+Name the Year: Marcus Aurelius 16th Roman emperor (161-80), philosopher, born in?
+121
+10
+
+Name the Year: Marcus Garvey dies at 52 in London England?
+1941
+10
+
+Name the Year: Marcus Garvey, began back-to-Africa movement among US blacks, born in?
+1887
+10
+
+Name the Year: Marcus Whitman, missionary?
+1802
+10
+
+Name the Year: Margaret Dumont, actress-Marx Brothers' foil, born in?
+1889
+10
+
+Name the Year: Margaret Dupont tennis champion, born in?
+1918
+10
+
+Name the Year: Margaret Hamilton, actor (Wizard of Oz ____ Wicked Witch of the West) born
+1902
+10
+
+Name the Year: Margaret Hamilton, actor (Wizard of Oz), played Wicked Witch of the West, born in?
+1902
+10
+
+Name the Year: Margaret Jones of Charlestown became the first person tried and executed for witchcraft in colonial Massachusetts?
+1649
+10
+
+Name the Year: Margaret Lockwood actress (Lady Vanishes), born in?
+1916
+10
+
+Name the Year: Margaret Mitchell, author (Gone With the Wind)?
+1900
+10
+
+Name the Year: Margaret Owen sets world typing speed record of 170 wpm for 1 min?
+1918
+10
+
+Name the Year: Margaret Sanger opens the first public birth control clinic (Brooklyn, NY)?
+1916
+10
+
+Name the Year: Margaret Smith Court, Australian tennis pro?
+1942
+10
+
+Name the Year: Margaret Thatcher becomes prime minister of England?
+1979
+10
+
+Name the Year: Margaret Thatcher, (Tory) British PM (1979-90), Iron Lady, born in?
+1925
+10
+
+Name the Year: Margarine is patented in Paris, for use in the French Navy?
+1869
+10
+
+Name the Year: Margaux Hemingway (in Portland, Oregon), actress, daughter of Ernest, born in?
+1955
+10
+
+Name the Year: Margot Kidder (in Yellowknife), actor (Superman), born in?
+1948
+10
+
+Name the Year: Maria Callas American-born prima donna dies in Paris at 53?
+1977
+10
+
+Name the Year: Maria Mitchell discovers a non-naked-eye comet?
+1847
+10
+
+Name the Year: Maria Shriver & Arnold Schwarzenegger marry?
+1986
+10
+
+Name the Year: Maria Shriver, Newscaster, married to Arnold Schartznegger?
+1955
+10
+
+Name the Year: Maria Theresa became ruler of Austria, Hungary and Bohemia?
+1740
+10
+
+Name the Year: Marie and Pierre Curie isolated the radioactive element radium?
+1902
+10
+
+Name the Year: Marie Antoinette beheaded in France?
+1793
+10
+
+Name the Year: Marie Antoinette executed?
+1793
+10
+
+Name the Year: Marie Antoinette married the future King Louis XVI of France?
+1770
+10
+
+Name the Year: Marie Curie, discoverer of radium?
+1867
+10
+
+Name the Year: Marie-Antoinette Queen of France, born in?
+1755
+10
+
+Name the Year: Marie, queen consort of Ferdinand I of Rumania, born in?
+1875
+10
+
+Name the Year: Mariel Hemingway (in Ketchum, Idaho), actor (Star 80, Manhattan, Personal Best)?
+1961
+10
+
+Name the Year: Marilyn Monroe [Norma Jean Baker], actress (Some Like It Hot), born in?
+1926
+10
+
+Name the Year: Marilyn Monroe dies at age 36?
+1962
+10
+
+Name the Year: Marilyn Monroe marries baseball star Joe DiMaggio?
+1954
+10
+
+Name the Year: Marilyn Vos Savant St Louis Mo, writer/world's highest IQ (Guinness), born in?
+1946
+10
+
+Name the Year: Mariner 10, Mercury flyby?
+1974
+10
+
+Name the Year: Mariner 2 launched for first planet flyby (Venus)?
+1962
+10
+
+Name the Year: Mariner 2 launched to Venus; flyby mission?
+1962
+10
+
+Name the Year: Mariner 4 launched. First spacecraft to fly by Mars?
+1964
+10
+
+Name the Year: Mariner 5 makes fly-by of Venus?
+1967
+10
+
+Name the Year: Mariner 7 flies past Mars?
+1969
+10
+
+Name the Year: Mariner 9 launched?
+1971
+10
+
+Name the Year: Mariner 9, first orbit of another planet, first orbit of Mars?
+1971
+10
+
+Name the Year: Mariner I launched to Mars falls into Atlantic Ocean?
+1962
+10
+
+Name the Year: Marines land on Iwo Jima?
+1945
+10
+
+Name the Year: Mario A Gianini creator of the maraschino cherry, dies?
+1957
+10
+
+Name the Year: Mario Puzo, author (Godfather), born in?
+1921
+10
+
+Name the Year: Marion Ross (in Minnesota), actor (Played Mrs. Cunningham in Happy Days)?
+1928
+10
+
+Name the Year: Maris hits his 50th of 61 homers?
+1961
+10
+
+Name the Year: Mark David Chapman assassin of John Lennon, born in?
+1955
+10
+
+Name the Year: Mark Hamill, actor (Star Wars), born in?
+1952
+10
+
+Name the Year: Mark Knopfler guitar/vocals (Dire Straits), born in?
+1949
+10
+
+Name the Year: Mark Rothko, painter, born in?
+1903
+10
+
+Name the Year: Mark Russell, raconteur, born in?
+1932
+10
+
+Name the Year: Mark Spitz, swimmer, born in?
+1950
+10
+
+Name the Year: Mark Twain [Samuel Langhorne Clemens], author, dies in Redding Conn?
+1910
+10
+
+Name the Year: Marlo Thomas (in Detroit, Michigan), actor (That Girl)?
+1938
+10
+
+Name the Year: Marlon Brando, actor (The Godfather, Last Tango in Paris), born in?
+1924
+10
+
+Name the Year: Marquis de Sade, 1st known sadist, writer (Justine), born in?
+1740
+10
+
+Name the Year: Mars 2, Mars landing. First crash landing on Mars?
+1971
+10
+
+Name the Year: Mars 3 launched. First spacecraft to soft land on Mars?
+1971
+10
+
+Name the Year: Marshall Islands (in the Pacific) become self-governing?
+1979
+10
+
+Name the Year: Martha Place of Brooklyn, became first woman to die by electrocution?
+1899
+10
+
+Name the Year: Martin Gardner, Scientific American math and puzzles columnist, born in?
+1914
+10
+
+Name the Year: Martin Landau, actor (Mission Impossible, Space 1999, Tucker), born in?
+1934
+10
+
+Name the Year: Martin Luther King Jr arrested in Atlanta sit-in?
+1960
+10
+
+Name the Year: Martin Luther King, Jr. begins march from Selma to Montgomery, Ala?
+1965
+10
+
+Name the Year: Martin Luther posts his 95 Theses, begins Protestant Reformation?
+1517
+10
+
+Name the Year: Martin Luther publicly burned papal edict demanding that he recant?
+1520
+10
+
+Name the Year: Martin Luther, Eisleben, Germany, founded Protestantism, born in?
+1483
+10
+
+Name the Year: Martin Luther, protestant reformer?
+1699
+10
+
+Name the Year: Martin Scorsese, director (Mean Streets, NY, NY)?
+1942
+10
+
+Name the Year: Martin Sheen actor (Men At Work, Wall St), born in?
+1940
+10
+
+Name the Year: Martina Navratilova, Prague, Czech Republic, tennis champion (Wimbeldon 1989,79,82-87), born in?
+1956
+10
+
+Name the Year: Marvin Gaye gets a star on Hollywood's walk of fame?
+1990
+10
+
+Name the Year: Marvin Gaye shot to death by his father Marvin Gaye Sr in LA?
+1984
+10
+
+Name the Year: Marvin Hamlisch, US composer/pianist (The Sting, Chorus Line), born in?
+1944
+10
+
+Name the Year: Marvin Minsky, artificial intelligence guru, born in?
+1932
+10
+
+Name the Year: Mary Ann Nicholls a 42-year-old prostitute, was found stabbed to death in London, 1st of at least five murders by Jack the Ripper?
+1888
+10
+
+Name the Year: Mary Ashton Livermore, American reformer, women's suffrage leader?
+1821
+10
+
+Name the Year: Mary Celeste sails from NY to Genoa; found abandoned 4 weeks later?
+1872
+10
+
+Name the Year: Mary Queen of Scots executed?
+1587
+10
+
+Name the Year: Mary Queen of Scots thrown into Lochleven Castle prison?
+1567
+10
+
+Name the Year: Mary Tyler Moore, Brooklyn, actress (Mary Tyler Moore, Ordinary People), born in?
+1937
+10
+
+Name the Year: Mary Wilson, singer (Supremes), born in?
+1944
+10
+
+Name the Year: Mary Wollstonecraft Shelley London England, author (Frankenstein), born in?
+1797
+10
+
+Name the Year: Mata Hari executed by firing squad outside of Paris?
+1917
+10
+
+Name the Year: Mata Hari, dancer, courtesan, spy, born in?
+1876
+10
+
+Name the Year: Matsuo Basho greatest Japanese haiku poet, dies?
+1694
+10
+
+Name the Year: Matt Dillon, actor, born in?
+1964
+10
+
+Name the Year: Matt Frewer, actor (Doctor Doctor, Max Headroom), born in?
+1959
+10
+
+Name the Year: Matthew Broderick, actor (Project X, Ladyhawk), born in?
+1959
+10
+
+Name the Year: Matthew Modine, actor, born in?
+1959
+10
+
+Name the Year: Maud Adams (in Sweden), born in?
+1946
+10
+
+Name the Year: Maureen O'Hara, actress (Miracle on 34th St), born in?
+1921
+10
+
+Name the Year: Maurice Chevalier, actor, singer (Gigi), ultimate Frenchman, born in?
+1888
+10
+
+Name the Year: Maurice Ravel (in Cibourne, France), composer (Bollero), born in?
+1875
+10
+
+Name the Year: Maurice Ravel, composer (Bolero), born in?
+1875
+10
+
+Name the Year: Mauritania gained independence from France (National Day)?
+1960
+10
+
+Name the Year: Max Factor Jr CEO (Max Factor Cosmetics), born in?
+1904
+10
+
+Name the Year: Max Roach, jazz drummer, born in?
+1925
+10
+
+Name the Year: Max von Sydow, actor, born in?
+1929
+10
+
+Name the Year: Maya Plisetkaya, prima ballerina?
+1925
+10
+
+Name the Year: Mayflower Compact signed by Pilgrims in Providencetown, MA harbor?
+1620
+10
+
+Name the Year: Mayflower departs from Plymouth, England with 102 pilgrims?
+1620
+10
+
+Name the Year: Mayflower sets sail from Southampton with 102 Pilgrims?
+1620
+10
+
+Name the Year: Maytag invented the washing machine?
+1857
+10
+
+Name the Year: McLean Stevenson, actor (MASH)?
+1929
+10
+
+Name the Year: Medal of Freedom awarded posthumously to Rev Martin Luther King Jr?
+1977
+10
+
+Name the Year: Mehmed VI, last sultan of Ottoman Empire (1918-22), born in?
+1861
+10
+
+Name the Year: Mel Brooks comedian/actor/director (Blazing Saddles, Spaceballs), born in?
+1926
+10
+
+Name the Year: Mel Gibson, actor, born in?
+1956
+10
+
+Name the Year: Mel Smith author/comedian, born in?
+1952
+10
+
+Name the Year: Melanie Griffith & Don Johnson remarry?
+1989
+10
+
+Name the Year: Melanie Griffith, actor, born in?
+1957
+10
+
+Name the Year: Melvil Dewey, created the Dewey Decimal System for libraries?
+1851
+10
+
+Name the Year: Menachem Begin, Israeli PM (1977-83) (Nobel 1978), born in?
+1913
+10
+
+Name the Year: Menelik II King of Ethiopia (1896-1913), born in?
+1844
+10
+
+Name the Year: Menelik II, Emperor of Ethiopia, died?
+1913
+10
+
+Name the Year: Mercury 5 launches a chimp (Ham/Enos)?
+1961
+10
+
+Name the Year: Merle Haggard, musician?
+1937
+10
+
+Name the Year: Merle Haggard, singer, born in?
+1937
+10
+
+Name the Year: Merle Oberon (in Tasmania), born in?
+1911
+10
+
+Name the Year: Merle Oberon dies at age 68?
+1979
+10
+
+Name the Year: Meryl Streep NJ, actress (French Lieutenant's Woman, Sophie's Choice), born in?
+1949
+10
+
+Name the Year: Meteor falls near Estherville, Iowa?
+1879
+10
+
+Name the Year: Meteorites fall in L'Aigle, France?
+1803
+10
+
+Name the Year: Meuse-Argonne offensive against the Germans began during WWI?
+1918
+10
+
+Name the Year: Mexican radio station erronously reports Mike Tyson dies in car crash?
+1988
+10
+
+Name the Year: Mexico becomes a republic?
+1824
+10
+
+Name the Year: Mexico first declares independence from Spain (National Day)?
+1810
+10
+
+Name the Year: Mexico sells U.S. Texas, California, New Mexico and Arizona?
+1848
+10
+
+Name the Year: Mexico took control of foreign-owned oil properties on its soil?
+1938
+10
+
+Name the Year: Mexico's deposed emperor Maximilian is executed?
+1867
+10
+
+Name the Year: Mia Farrow (in Los Angeles, CA), actress, born in?
+1945
+10
+
+Name the Year: Michael Adams in X-15 reaches altitude of 80 km?
+1967
+10
+
+Name the Year: Michael Andretti Indy-car racer/Auto Hall of Fame (elected 1986), born in?
+1962
+10
+
+Name the Year: Michael Caine, actor, born in?
+1933
+10
+
+Name the Year: Michael Collins, astronaut (Gemini 10, Apollo 11)?
+1930
+10
+
+Name the Year: Michael Crawford England, Broadway star (Phantom of the Opera), born in?
+1942
+10
+
+Name the Year: Michael Crichton, author (Andromeda Strain, Jurrasic Park, Rising Sun), born in?
+1942
+10
+
+Name the Year: Michael Douglas, actor, producer, born in?
+1944
+10
+
+Name the Year: Michael Faraday discovered principle of electric motor, born in?
+1791
+10
+
+Name the Year: Michael Fish British TV weatherman, born in?
+1944
+10
+
+Name the Year: Michael Hutchence, Australia, rocker (Inxs-I Need You Tonight), born in?
+1960
+10
+
+Name the Year: Michael J Fox, Edmonton, Canada, actor (Family Ties, Back to the Future, Spin City), born in?
+1961
+10
+
+Name the Year: Michael Jackson attempts to buy Elephant Man's remains?
+1987
+10
+
+Name the Year: Michael Jackson buys ATV Music (including the rights to every Beatle song) for $47 million?
+1985
+10
+
+Name the Year: Michael Jackson, singer, born in?
+1958
+10
+
+Name the Year: Michael Jordan, gravity-defying hoopster, born in?
+1963
+10
+
+Name the Year: Michael Keaton, actor (Pacific Heights, Batman, Multiplicity), born in?
+1951
+10
+
+Name the Year: Michael Landon actor (Bonanza, Highway to Heaven), dies at 54 from cancer?
+1991
+10
+
+Name the Year: Michael Landon, actor?
+1936
+10
+
+Name the Year: Michael Palin comedian (Monty Python, Fish Called Wanda), born in?
+1943
+10
+
+Name the Year: Michael Stipe (REM Lead Singer), born in?
+1960
+10
+
+Name the Year: Michael Winslow, actor/comedian (Police Academy), born in?
+1960
+10
+
+Name the Year: Michael York, actor (Three Musketeers), born in?
+1942
+10
+
+Name the Year: Michelangelo, Renaissance artist, born in?
+1475
+10
+
+Name the Year: Michelle Pfeiffer Calif, actress (Batman Returns, Married to the Mob), born in?
+1958
+10
+
+Name the Year: Michelle Pfeiffer, U.S. actress (Batman Returns), born in?
+1958
+10
+
+Name the Year: Mick Fleetwood, musician?
+1942
+10
+
+Name the Year: Mick Jagger, Rolling Stone singer, born in?
+1943
+10
+
+Name the Year: Mick Jones rocker (The Clash, Big Audio Dynamite), born in?
+1955
+10
+
+Name the Year: Mickey Mantle announces his retirement?
+1969
+10
+
+Name the Year: Mickey Mantle, NY Yankee home run slugger, born in?
+1931
+10
+
+Name the Year: Mickey Mouse, cartoon character, sired by Walt Disney's pen?
+1928
+10
+
+Name the Year: Mickey Rooney, actor (too many credits to mention), born in?
+1920
+10
+
+Name the Year: Mickey Spillane, mystery writer, born in?
+1918
+10
+
+Name the Year: Miguel de Cervantes, novelist (Don Quixote), born in?
+1547
+10
+
+Name the Year: Miguel DeCervantes Saavedra, author (The Man Of LaMancha), born in?
+1547
+10
+
+Name the Year: Miguel Hidalgo father of Mexican independence, born in?
+1753
+10
+
+Name the Year: Miguel Indurain of Spain wins the Tour de France bicycle race?
+1991
+10
+
+Name the Year: Miguel Vasquez makes first public quadruple somersault on trapeze?
+1982
+10
+
+Name the Year: Mike Tyson hires Donald Trump as an advisor?
+1988
+10
+
+Name the Year: Mike Tyson is accused of raping a Miss Black America contestant?
+1991
+10
+
+Name the Year: Mikhail Baryshnikov, ballet dancer, actor, born in?
+1948
+10
+
+Name the Year: Mikhail Gorbachev resigns as head of the Soviet Union?
+1991
+10
+
+Name the Year: Miles Davis jazz musician, dies at 65 from pneumonia?
+1991
+10
+
+Name the Year: Miles Davis trumpeter; pioneered cool jazz (Porgy & Bess), born in?
+1926
+10
+
+Name the Year: Millionaire Howard Hughes sets transcontinental air record (7h28m25s)?
+1937
+10
+
+Name the Year: Milton Friedman, economist, born in?
+1912
+10
+
+Name the Year: Milton Hinkes (AKA Soupy Sales), comedian, born in?
+1926
+10
+
+Name the Year: Milton S. Hershey, US chocolate manufacturer, philanthropist, born in?
+1857
+10
+
+Name the Year: Mobs in Paris attack the palace of Louis XVI?
+1792
+10
+
+Name the Year: Modern Olympics Anniversary. (First modern Olympiad)?
+1896
+10
+
+Name the Year: Modest Moussorgsky, composer, born in?
+1839
+10
+
+Name the Year: Mohammad Reza Pahlavi Aryamehr, Shah of Iran (1941-79), born in?
+1919
+10
+
+Name the Year: Mohammed Ali, boxer?
+1942
+10
+
+Name the Year: Mohammed V King of Morocco (1953, 1955-61), born in?
+1909
+10
+
+Name the Year: Mohammed Zia Ul-Haq, Pakistani president and US ambassador killed in plane crash?
+1988
+10
+
+Name the Year: Mohandas Gandhi began 200-mile march protesting British salt tax?
+1930
+10
+
+Name the Year: Mohandas K. Gandhi sentenced in India to six years' imprisonment?
+1922
+10
+
+Name the Year: Moise Tshombe, president of Katanga, then premier of the Congo (Zaire), born in?
+1919
+10
+
+Name the Year: Moli?re, France, dramatist (Tartuffe, Les Misanthrope), baptized?
+1622
+10
+
+Name the Year: Moliere, French Dramatist, died?
+1673
+10
+
+Name the Year: Molly Ringwald (in Los Angeles, CA), actress (Pretty in Pink), born in?
+1968
+10
+
+Name the Year: Monarchy in Tunisa abolished in favor of a republic?
+1957
+10
+
+Name the Year: Monarchy overthrown in Egypt (National Day)?
+1952
+10
+
+Name the Year: Mongolia gained independence from China (National Day)?
+1921
+10
+
+Name the Year: Monica Seles tennis star (French Open-1990), born in?
+1973
+10
+
+Name the Year: Monica Seles wins the US Open?
+1991
+10
+
+Name the Year: Montgomery (Br) defeats Rommel (Ger) in battle of Alamein (WW II)?
+1942
+10
+
+Name the Year: Montgomery Clift actor, dies at 45?
+1966
+10
+
+Name the Year: Morgan Fairchild (in Dallas, TX), actress, born in?
+1950
+10
+
+Name the Year: Morgan Freeman actor (Driving Mrs Daisy), born in?
+1937
+10
+
+Name the Year: Morocco gains its independence?
+1956
+10
+
+Name the Year: Morrissey, (Steven Patrick) British rocker (The Smiths & solo artist), born in?
+1959
+10
+
+Name the Year: Mort Sahl comedian/political satirist/beatnik (Big Party)?
+1927
+10
+
+Name the Year: Moses Mendelssohn, philosopher, critic, Bible translator, born in?
+1729
+10
+
+Name the Year: Moshe Dayan Israeli general/politician, born in?
+1915
+10
+
+Name the Year: Moss Hart, playwright, born in?
+1904
+10
+
+Name the Year: Most Arab oil producing nations end US embargo?
+1974
+10
+
+Name the Year: Mother Frances Xavier Cabrini canonized as 1st American saint?
+1946
+10
+
+Name the Year: Mother Teresa of Calcutta (Nobel 1979)?
+1910
+10
+
+Name the Year: Mother Teresa of India was awarded the Nobel Peace Prize?
+1979
+10
+
+Name the Year: Motion Picture Association of America adopts film rating system?
+1968
+10
+
+Name the Year: Mount Etna erupts in Sicily Italy?
+1971
+10
+
+Name the Year: Mount St Helens blows its top in Washington State?
+1980
+10
+
+Name the Year: Mr T [Lawrence Tero], Chicago, actor, (A-Team, Rocky III, T & T), born in?
+1952
+10
+
+Name the Year: Mrs. Elizabeth Blackwell becomes first woman physician in U.S...?
+1849
+10
+
+Name the Year: Mrs. Kennedy gives the TV audience a tour of the White House?
+1962
+10
+
+Name the Year: Mt Palomar Observatory first to detect Halley's comet on 13th return?
+1982
+10
+
+Name the Year: Mt Vesuvius erupts, buries Pompeii and Herculaneum?
+79
+10
+
+Name the Year: Mt Vesuvius erupts?
+1834
+10
+
+Name the Year: MTV premiers at 12:01 AM?
+1981
+10
+
+Name the Year: Muddy Waters [McKinley Morganfield], guitarist (Hoochie Coochie Man), born in?
+1915
+10
+
+Name the Year: Muhammad Ali beats WBA heavyweight champion Leon Spinks?
+1978
+10
+
+Name the Year: Muhammad Ali convicted of refusing induction into armed services?
+1967
+10
+
+Name the Year: Muhammad Ali KOs George Foreman in 8th round in Kinshasa, Zaire?
+1974
+10
+
+Name the Year: Muhammad Ali talks a despondent 21 year old out of committing suicide?
+1981
+10
+
+Name the Year: Muhammad ibn Hazm, historian, jurist, writer of Islamic Spain?
+994
+10
+
+Name the Year: Muhammed Ali, boxer who floats like a butterfly, stings like a bee, born in?
+1942
+10
+
+Name the Year: Munich Agreement-forces Czechoslovakia to give territory to Germany?
+1938
+10
+
+Name the Year: Mussolini forms cabinet in Italy?
+1922
+10
+
+Name the Year: Mutiny on HMS Bounty?
+1789
+10
+
+Name the Year: N. Korea reports 100% election turnout, 100% vote for Workers' Party?
+1962
+10
+
+Name the Year: N. Vietnam agreed to meet US reps to set up preliminary peace talks?
+1968
+10
+
+Name the Year: N.A.S.A. launch Apollo 8 to fly around the moon?
+1968
+10
+
+Name the Year: N.E. Guerin of New York receives a patent for his cork filled life preserver?
+1841
+10
+
+Name the Year: N.Y. Highlander (Yankees) tickets first go on sale?
+1903
+10
+
+Name the Year: N.Y. Yankees purchase 20 acres in the Bronx for Yankee Stadium?
+1921
+10
+
+Name the Year: Nadia Comaneci (in Romania), Olympic gymnist?
+1961
+10
+
+Name the Year: Nancy Sinatra Jersey City, singer, (These boots were made for walking), born in?
+1940
+10
+
+Name the Year: Nancy Wilson (in San Francisco, CA), singer (Heart), born in?
+1954
+10
+
+Name the Year: Napolean I defeats Austria at Battle of Abensberg, Bavaria?
+1809
+10
+
+Name the Year: Napoleon became Emperor of France?
+1804
+10
+
+Name the Year: Napoleon becomes 1st French emperor, placing crown on his own head?
+1804
+10
+
+Name the Year: Napoleon becomes dictator (1st consul) of France?
+1799
+10
+
+Name the Year: Napoleon begins his retreat from Moscow?
+1812
+10
+
+Name the Year: Napoleon Bonaparte (Corsica), resident of Elba (Emperor of France 1804-13, 1814-15), born in?
+1769
+10
+
+Name the Year: Napoleon Bonaparte captured?
+1815
+10
+
+Name the Year: Napoleon Bonaparte married Josephine de Beauharnais?
+1796
+10
+
+Name the Year: Napoleon captures Alexandria, Egypt?
+1798
+10
+
+Name the Year: Napoleon defeats Russians & Austrians at Austerlitz?
+1805
+10
+
+Name the Year: Napoleon enters Paris, beginning his Hundred Days rule?
+1815
+10
+
+Name the Year: Napoleon III captured at Sedan?
+1870
+10
+
+Name the Year: Napoleon occupies Moscow?
+1812
+10
+
+Name the Year: Napoleon's retreat from Russia begins?
+1812
+10
+
+Name the Year: NASA announced the start of the space shuttle program?
+1972
+10
+
+Name the Year: NASA announces first seven astronauts with The Right Stuff?
+1959
+10
+
+Name the Year: NASA civilian pilot Neil A Armstrong takes X-15 to 54,600 m?
+1962
+10
+
+Name the Year: NASA confirmed Voyager 2's discovery of 3 more moons of Neptune designated temporarily 1989 N2, 1989 N3 and 1989 N24?
+1989
+10
+
+Name the Year: NASA launch Pioneer III?
+1958
+10
+
+Name the Year: NASA launches Intelsat V?
+1983
+10
+
+Name the Year: NASA launches its first Orbital Geophysical Observatory (OGO-1)?
+1964
+10
+
+Name the Year: NASA's Marshall Space Flight Center in Huntsville, Ala., dedicated by President Dwight D. Eisenhower?
+1960
+10
+
+Name the Year: Nat King Cole, entertainer, father of Natalie, born in?
+1919
+10
+
+Name the Year: Natal (in South Africa) is made a British colony?
+1843
+10
+
+Name the Year: Natalia Maskarova (in Lenningrad), ballerina?
+1940
+10
+
+Name the Year: Natalie Cole (in Los Angeles, CA), singer, born in?
+1950
+10
+
+Name the Year: Natalie Wood [Natasha Gurdin], SF, (Gypsy, Rebel Without a Cause), born in?
+1938
+10
+
+Name the Year: Nathan Birnbaum (aka George Burns), entertainer, actor, dies at 100 years old?
+1996
+10
+
+Name the Year: Nathan Briggs, New Hampshire, gets patent for the washing machine?
+1794
+10
+
+Name the Year: Nation of Zimbabwe founded (formerly Rhodesia)?
+1980
+10
+
+Name the Year: National Baseball League formed with 8 teams?
+1876
+10
+
+Name the Year: National Geographic Society founded (Washington, DC)?
+1888
+10
+
+Name the Year: National Geographic Society founded in Washington, DC?
+1888
+10
+
+Name the Year: National Security Act establishes the CIA?
+1947
+10
+
+Name the Year: National Socialist (Nazi) Party formed in Germany?
+1919
+10
+
+Name the Year: Nationalist Chinese leader Chiang Kai-Shek died at the age of 87?
+1975
+10
+
+Name the Year: Nauru gained independence from Australia (1982 pop 8,421)?
+1968
+10
+
+Name the Year: Nautilus, 1st atomic powered submarine launched?
+1954
+10
+
+Name the Year: Navigator Henry Hudson discovered the island of Manhattan?
+1609
+10
+
+Name the Year: Nazi blitz conquest of France began by crossing Muese River?
+1940
+10
+
+Name the Year: Nazi concentration camp at Buchenwald liberated by US 80th Division?
+1945
+10
+
+Name the Year: Nazi General Von Keitel surrenders to Russian Marshal Zhukov near Berlin?
+1945
+10
+
+Name the Year: Nazi Germany began persecution of Jews boycotting Jewish businesses?
+1933
+10
+
+Name the Year: Nazi Hermann Goering poisons himself in prison?
+1946
+10
+
+Name the Year: Nazi Himmler committed suicide while in prison at Luneburg, Germany?
+1945
+10
+
+Name the Year: Nazim Pasha, Turkey's PM assassinated?
+1913
+10
+
+Name the Year: Nazis force 4.5 mil Warsaw Jews to live in walled ghetto?
+1940
+10
+
+Name the Year: NBC forms first full sized symphony orchestra exclusively for radio?
+1937
+10
+
+Name the Year: Neil Armstrong steps on the Moon at 2:56:15 AM (GMT)?
+1969
+10
+
+Name the Year: Neil Armstrong, X-15 pilot, first moonwalker (Gemini 8, Apollo 11), born in?
+1930
+10
+
+Name the Year: Neil Finn rocker (Split Enz-I Got You, Crowded House), born in?
+1958
+10
+
+Name the Year: Neil Simon, playwright (Odd Couple, Plaza Suite, Biloxi Blues), born in?
+1927
+10
+
+Name the Year: Neil Young, singer/songwriter?
+1945
+10
+
+Name the Year: Nelson Mandela begins a long jail term in South Africa?
+1964
+10
+
+Name the Year: Nelson Mandela meets Chief Buthelezi in Durban?
+1991
+10
+
+Name the Year: Nelson Mandela recieves a BA from University of South Africa?
+1989
+10
+
+Name the Year: Nelson Mandela, South African civil rights leader & politician, born in?
+1918
+10
+
+Name the Year: Nelson Mandella, human rights activist, former political prisoner?
+1918
+10
+
+Name the Year: Neptune becomes outermost planet (Pluto moves closer)?
+1979
+10
+
+Name the Year: Neptune's moon Triton discovered by William Lassell?
+1846
+10
+
+Name the Year: Netherlands & Denmark liberated from Nazi control?
+1945
+10
+
+Name the Year: Netherlands grants Surinam independence (Natl Day)?
+1975
+10
+
+Name the Year: Netherlands recognizes US?
+1782
+10
+
+Name the Year: Nevada legalized gambling?
+1931
+10
+
+Name the Year: Nevado del Ruiz volcano erupts in Colombia, kills 25,000?
+1985
+10
+
+Name the Year: Neville Chamberlain, English PM and statesman, born in?
+1869
+10
+
+Name the Year: New Nicaraguan constituion takes effect?
+1987
+10
+
+Name the Year: New Orleans elects first black mayor, Ernest `Dutch' Morial?
+1977
+10
+
+Name the Year: New socialist constitution of East Germany takes effect?
+1968
+10
+
+Name the Year: New York City becomes the capitol of the United States?
+1788
+10
+
+Name the Year: New York City traffic regulation creates the first one-way street?
+1791
+10
+
+Name the Year: New Zealand claims Ross Dependency in Antarctica?
+1923
+10
+
+Name the Year: New Zealand Day?
+1840
+10
+
+Name the Year: Ngo Dinh Diem proclaims Vietnam a republic with himself as president?
+1955
+10
+
+Name the Year: Nguyen Van Thieu president of South Vietnam, born in?
+1923
+10
+
+Name the Year: Nia Peeples born?
+1961
+10
+
+Name the Year: Niagara Falls stops flowing ____ for 1 day ____ because of an ice jam
+1848
+10
+
+Name the Year: Nicaragua becomes 1st nation to formally accept UN Charter?
+1945
+10
+
+Name the Year: Nicaragua holds first free elections in 56 years; Sandinistas win 63%?
+1984
+10
+
+Name the Year: Nicaragua Liberation Day; Sandinistas take over from Somoza?
+1979
+10
+
+Name the Year: Niccolo Paganini, Genoa, Italy, composer/violin virtuoso (Princess Lucca), born in?
+1782
+10
+
+Name the Year: Nicholas I Russia, Tsar (1825-55), born in?
+1796
+10
+
+Name the Year: Nicholas II last Russian tsar (1894-1917), born in?
+1868
+10
+
+Name the Year: Nicholas Rimsky-Korsakov, composer, born in?
+1844
+10
+
+Name the Year: Nick Nolte, actor, born in?
+1940
+10
+
+Name the Year: Nicolas Appert, inventor of food canning, bouillon tablet, born in?
+1752
+10
+
+Name the Year: Nicolas-Jacque Conte inventor (modern pencil), born in?
+1755
+10
+
+Name the Year: Nicolas-Joseph Cugnot, designed and built first automobile, born in?
+1725
+10
+
+Name the Year: Nicolaus Copernicus (in Poland), astronomer, born in?
+1473
+10
+
+Name the Year: Nicolo Amati, Italy, violin maker (Stradivari and Guarneri), born in?
+1596
+10
+
+Name the Year: Niels Bohr, physicist, expanded quantum physics (Nobel 1922), born in?
+1885
+10
+
+Name the Year: Nigel Hawthorne actor (Tartuffe, Pope John Paul II (Sir Humphrey Appleby in Yes Minister), Richard III), born in?
+1929
+10
+
+Name the Year: Niger gains autonomy within French Community (National Day)?
+1958
+10
+
+Name the Year: Niger gained independence from France?
+1960
+10
+
+Name the Year: Nigeria gained independence from Britain (National Day)?
+1960
+10
+
+Name the Year: Nikita Khrushchev became Soviet premier and first secretary of Communist Party?
+1958
+10
+
+Name the Year: Nikita Khrushchev dies of a heart attack at 77?
+1971
+10
+
+Name the Year: Nikola Tesla, physicist who developed alternating current and radio, born in?
+1856
+10
+
+Name the Year: Nikolai Andrianov, USSR, gymnist (Olympic-gold-1972, 76, 80), born in?
+1952
+10
+
+Name the Year: Nikolai N. Rukavishnikov, Soviet cosmonaut (Soyuz 10, 16, 33), born in?
+1932
+10
+
+Name the Year: Nina Simone (in Tyron, NC), born in?
+1933
+10
+
+Name the Year: Nineteenth Space Shuttle Mission - Challenger 8 is launched?
+1985
+10
+
+Name the Year: Nineteenth Space Shuttle Mission - Challenger 8 returns to Earth?
+1985
+10
+
+Name the Year: Ninth Space Shuttle Mission - Columbia 6 is launched?
+1983
+10
+
+Name the Year: Nixon & Haldeman agree to use CIA to cover up Watergate?
+1972
+10
+
+Name the Year: Nixon announces resignation of Haldeman, Ehrlichman, et al?
+1973
+10
+
+Name the Year: Noah Webster, lexicographer?
+1758
+10
+
+Name the Year: Norbert Wiener, inventor of cybernetics, absentminded-professor?
+1894
+10
+
+Name the Year: Norman Lockyer, editor of NATURE, discoverer of helium in sun, dies?
+1920
+10
+
+Name the Year: Norman Parkinson, England, fashion photographer (Harper's Bazaar), born in?
+1913
+10
+
+Name the Year: Norman Rockwell, artist, born in?
+1894
+10
+
+Name the Year: North and South Korea joins the UN?
+1991
+10
+
+Name the Year: North Atlantic Treaty Organization (NATO) established?
+1949
+10
+
+Name the Year: Northern Rhodesia becomes part of Federation of Rhodesia & Nyasaland?
+1953
+10
+
+Name the Year: Northern Territory of Australia becomes self-governing?
+1978
+10
+
+Name the Year: Northern Territory passes from New South Wales to South Australia?
+1863
+10
+
+Name the Year: Nostradamus French astrologer/physician/prophet, dies in Salon?
+1566
+10
+
+Name the Year: Novelist and critic Virginia Woolf died?
+1941
+10
+
+Name the Year: Nuclear accident at Three Mile Island near Middletown, PA?
+1979
+10
+
+Name the Year: Nuclear Test Ban Treaty signed?
+1963
+10
+
+Name the Year: Nuremberg Laws deprives German Jews of citizenship and makes the swastika the official symbol of Nazi Germany?
+1935
+10
+
+Name the Year: NY Yankees purchase Babe Ruth from the Red Sox?
+1920
+10
+
+Name the Year: NY's Penn Station opens as world's largest railway terminal?
+1910
+10
+
+Name the Year: NYC experiences 25 hr black-out?
+1977
+10
+
+Name the Year: NYC welcomes home Gen John J Pershing and 25,000 WW I soldiers?
+1919
+10
+
+Name the Year: Nylon patented by W. H. Carothers?
+1937
+10
+
+Name the Year: Nylon stockings go on sale in the U.S. for the first time?
+1939
+10
+
+Name the Year: Nylon stockings on sale for the first time in the United States?
+1940
+10
+
+Name the Year: O.J. Simpson gains 273 yards for Buffalo vs. Detroit?
+1976
+10
+
+Name the Year: Oahu Railway begins public service in Hawaii?
+1889
+10
+
+Name the Year: OAO 1, the 1st orbiting astronomical observatory, launched?
+1966
+10
+
+Name the Year: October Revolution overthrows Russian Provisional Government?
+1917
+10
+
+Name the Year: Ogden Nash poet/TV panelist (Masquerade Party), dies at 68?
+1971
+10
+
+Name the Year: Ogden Nash, American humorous poet (I'm a Stranger Here Myself), born in?
+1902
+10
+
+Name the Year: Oil tanker Exxon Valdez runs aground in Alaska's Prince William Sound ____ causes world's worst oil spill
+1989
+10
+
+Name the Year: OJ Simpson acquitted for double murder of his Ex-wife Nicole Brown Simpson and Ronald Goldman?
+1995
+10
+
+Name the Year: Olaus Roemer, first to accurately measured speed of light, born in?
+1644
+10
+
+Name the Year: Olav V, King of Norway (1957), born in?
+1903
+10
+
+Name the Year: Oldest exactly dated printed book (c. 3 years after Gutenberg)?
+1457
+10
+
+Name the Year: Ole Evinrude inventor (outboard marine engine), born in?
+1877
+10
+
+Name the Year: Oleg Cassini Paris France, fashion designer for Jackie Kennedy, born in?
+1913
+10
+
+Name the Year: Olga Korbut (in Russia), gymnast, born in?
+1955
+10
+
+Name the Year: Oliver Cromwell, Puritan lord protector of England (1653-58), born in?
+1599
+10
+
+Name the Year: Oliver Evans, pioneered the high-pressure steam engine, born in?
+1755
+10
+
+Name the Year: Oliver Fisher Winchester, rifle maker?
+1810
+10
+
+Name the Year: Oliver Hardy Harlem Ga, comedy team member (Laurel & Hardy), born in?
+1892
+10
+
+Name the Year: Oliver North, arms dealer, born in?
+1943
+10
+
+Name the Year: Oliver Stone NYC, director (Wall St, Good Morning Vietnam, Platoon), born in?
+1946
+10
+
+Name the Year: Oliver Wendell Holmes, famous Supreme Court Justice, born in?
+1841
+10
+
+Name the Year: Olivia d'Abo, London England, actress, born in?
+1967
+10
+
+Name the Year: Olivia Newton-John (in Cambridge, England), singer, born in?
+1948
+10
+
+Name the Year: Omar Sharif, actor (Tamarind Seed, Dr. Zhivago), born in?
+1932
+10
+
+Name the Year: Only one day after the U.N. decrees Israel's right to exist, Jewish settlements are attacked?
+1947
+10
+
+Name the Year: OPEC cut oil prices for the first time in 23 years?
+1983
+10
+
+Name the Year: Operation Desert Storm begins. US & 27 allies attack Iraq for occupying Kuwait (US times)?
+1991
+10
+
+Name the Year: Opium exempted from federal tariff duty?
+1832
+10
+
+Name the Year: Oprah Winfrey, actress/TV host (Color Purple), born in?
+1953
+10
+
+Name the Year: Orangeman's Day ____ Battle of the Boyne, Protestant victory in Ireland
+1689
+10
+
+Name the Year: Orbiter 1 Launched to moon?
+1966
+10
+
+Name the Year: Orenthal James (O.J.) Simpson, NFL running back (Buffalo Bills), born in?
+1947
+10
+
+Name the Year: Orson Welles, actor (Citizen Kane), director, genius, born in?
+1915
+10
+
+Name the Year: Orville Redenbacher, popcorn king?
+1907
+10
+
+Name the Year: Orville Wright, an aviator, born in?
+1871
+10
+
+Name the Year: Oscar (Fingal O'Flahertie Wills) Wilde (Dublin, Ireland), author (Picure of Dorian Gray), wit, dandy?
+1854
+10
+
+Name the Year: Oscar Arias Sanchez, president of Costa Rica (1986- ) (Nobel 1987), born in?
+1941
+10
+
+Name the Year: Oscar de la Renta, designer, born in?
+1932
+10
+
+Name the Year: Oscar Hammerstein II, lyricist who worked with Richard Rodgers?
+1895
+10
+
+Name the Year: Oscar Hammerstein patents first practical cigar-rolling machine?
+1883
+10
+
+Name the Year: Oscar Torp, Norwegian premier, dies?
+1959
+10
+
+Name the Year: Otis Redding, Georgia, rocker (Sitting on the Dock of the Bay), born in?
+1941
+10
+
+Name the Year: Otto Hahn, co-discoverer of nuclear fission, born in?
+1879
+10
+
+Name the Year: Otto I (the Great), German king, Holy Roman emperor (962-73)?
+912
+10
+
+Name the Year: Otto von Bismarck, statesman, born in?
+1815
+10
+
+Name the Year: Otto von Guericke, invented the air pump?
+1602
+10
+
+Name the Year: Outer Mongolia and Mauritania become the 102nd and 103rd members of UN?
+1961
+10
+
+Name the Year: Owen K. Garriott, astronaut (Skylab 3, STS-9)?
+1930
+10
+
+Name the Year: Ozzie and Harriet Nelson married?
+1935
+10
+
+Name the Year: Ozzy Osbourne heavy metal musician, born in?
+1948
+10
+
+Name the Year: P.D. James mystery writer (Cover Her Face), born in?
+1920
+10
+
+Name the Year: P.T. Barnum & his circus begin 1st tour of US?
+1835
+10
+
+Name the Year: Pablo Picasso artist, dies near Mougins, France, at 91?
+1973
+10
+
+Name the Year: Pablo Picasso, doodler (Guernica) (or 10-05)?
+1881
+10
+
+Name the Year: Pacific and Atlantic mix as engineers blow Gamboa Dam, opening the Panama Canal?
+1913
+10
+
+Name the Year: Pacific Stock Exchange formally opens?
+1875
+10
+
+Name the Year: Pacific Stock Exchange opens (as the Local Security Board)?
+1882
+10
+
+Name the Year: Pacific SW Airlines Boeing 727 and a Cessna private plane collide?
+1978
+10
+
+Name the Year: Pakistan became independent within the British Commonwealth?
+1956
+10
+
+Name the Year: Pakistan gained independence from Britain rule?
+1947
+10
+
+Name the Year: Palestinian Liberation Organization leaves Lebanon?
+1982
+10
+
+Name the Year: Pam Dawber Detroit, actress (Mindy-Mork and Mindy), born in?
+1951
+10
+
+Name the Year: Pamela Anderson, Ladysmith BC, Canada, (Home Improvement, Baywatch), born in?
+1967
+10
+
+Name the Year: Pamela Sue Martin (in Connecticut), actor (Dallas), born in?
+1954
+10
+
+Name the Year: Pan Am places $525,000,000 order for 25 Boeing 747's?
+1966
+10
+
+Name the Year: Papal States annexed by France?
+1809
+10
+
+Name the Year: Papua New Guinea gained independence from Australia (National Day)?
+1975
+10
+
+Name the Year: Paris evacuated before the German advance?
+1940
+10
+
+Name the Year: Paris liberated from Nazi occupation?
+1944
+10
+
+Name the Year: Park Chung-hee South Korean President is assassinated?
+1979
+10
+
+Name the Year: Parker Brothers launches game of Monopoly?
+1935
+10
+
+Name the Year: Parliament Act reduces power of House of Lords?
+1911
+10
+
+Name the Year: Parthenon destroyed in war between Turks and Venetians?
+1687
+10
+
+Name the Year: Passage of Earth through tail of Halley's Comet causes near-panic?
+1910
+10
+
+Name the Year: Pat Benatar, singer, born in?
+1953
+10
+
+Name the Year: Pat Cash tennis player (Wimbeldon 1987), born in?
+1965
+10
+
+Name the Year: Pat Morrow (in Los Angeles), actor (Peyton Place), born in?
+1945
+10
+
+Name the Year: Patent filed in US for H-Bomb?
+1946
+10
+
+Name the Year: Patent granted for a process of making color photographs?
+1863
+10
+
+Name the Year: Patent granted for the thimble?
+1684
+10
+
+Name the Year: Patent granted on the electric range?
+1859
+10
+
+Name the Year: Patricia Hearst convicted of armed robbery?
+1976
+10
+
+Name the Year: Patricia Morison, actor (Peyton Place), born in?
+1914
+10
+
+Name the Year: Patrick Duffy, actor, born in?
+1949
+10
+
+Name the Year: Patrick McGoohan, actor, director (The Prisoner, Silver Streak), born in?
+1928
+10
+
+Name the Year: Patrick Stewart actor (Capt Picard-Star Trek Next Generation), born in?
+1940
+10
+
+Name the Year: Patrick Swayze Houston Tx, actor/dancer (Dirty Dancing, Ghost), born in?
+1952
+10
+
+Name the Year: Patsy Cline Va, country singer (Walkin' After Midnight), born in?
+1932
+10
+
+Name the Year: Patsy Cline, Cowboy Copus, and Hawkshaw Hawkins die in a plane crash?
+1963
+10
+
+Name the Year: Patti Labelle, singer?
+1944
+10
+
+Name the Year: Patty LaBelle, singer?
+1944
+10
+
+Name the Year: Paul Carrack rocker (Squeeze/Ace-How Long), born in?
+1951
+10
+
+Name the Year: Paul Cezanne, France, impressionist painter (Bathers), born in?
+1839
+10
+
+Name the Year: Paul Doumer Pres of France, assassinated by Russia's Paul Gargalov?
+1932
+10
+
+Name the Year: Paul Gauguin, French post-impressionist painter, born in?
+1848
+10
+
+Name the Year: Paul Hindemith (in Germany), composer?
+1895
+10
+
+Name the Year: Paul Hogan & Linda Koslowski wed in Byron Bay, Eastern Australia?
+1990
+10
+
+Name the Year: Paul Joseph Goebbels, Nazi propagandist, born in?
+1897
+10
+
+Name the Year: Paul Julius, Baron von Reuter, founded Reuters news service, born in?
+1816
+10
+
+Name the Year: Paul Klee, Swiss abstract painter?
+1879
+10
+
+Name the Year: Paul McCartney announces the formation of his group Wings?
+1971
+10
+
+Name the Year: Paul McCartney, musician (Wings, Beatles)?
+1942
+10
+
+Name the Year: Paul Newman born, actor, racer, popcorn and salad dressing mogul?
+1925
+10
+
+Name the Year: Paul Osborn, playwright?
+1901
+10
+
+Name the Year: Paul Schaeffer, musician (Saturday Night Live, David Letterman), actor (This Is Spinal Tap), Thunder Bay, Ont?
+1949
+10
+
+Name the Year: Paul Simon, singer (Kodachrome, Graceland), born in?
+1942
+10
+
+Name the Year: Paul Stanley, rock guitarist (KISS), born in?
+1952
+10
+
+Name the Year: Paul VI, 262nd Roman Catholic pope (1963-78), born in?
+1897
+10
+
+Name the Year: Paul Von Hindenburg becomes chief-of-General-Staff in Germany?
+1916
+10
+
+Name the Year: Paul von Hindenburg elected first German president (Hitler was the second)?
+1932
+10
+
+Name the Year: Paul Weller guitar (Jam-This is the Modern World, Style Council), born in?
+1958
+10
+
+Name the Year: Paul Williams, singer, composer, actor, born in?
+1940
+10
+
+Name the Year: Paul Zindel, playwright, born in?
+1936
+10
+
+Name the Year: Paula Abdul, singer, born in?
+1962
+10
+
+Name the Year: Paulette Goddard, born in?
+1911
+10
+
+Name the Year: Paulina Porizkova, Sports Illustrated swimsuit covergirl, actress, born in?
+1965
+10
+
+Name the Year: Pauline Collins, London England, actress (Shirley Valentine), born in?
+1940
+10
+
+Name the Year: Peabo Bryson, singer, born in?
+1951
+10
+
+Name the Year: Peace of Utrecht; France cedes Maritime provinces to Britain?
+1713
+10
+
+Name the Year: Peace protocol ends Spanish-American War, signed?
+1898
+10
+
+Name the Year: Pedro I 1st emperor of Brazil (1822-31), king of Portugal, born in?
+1798
+10
+
+Name the Year: Pennsylvania granted to William Penn by King Charles II?
+1682
+10
+
+Name the Year: Penny Marshall (in New York City), actor (Laverne and Shirley), born in?
+1943
+10
+
+Name the Year: People's Democratic Republic of Korea proclaimed?
+1948
+10
+
+Name the Year: People's Rep of China proclaimed (National Day)?
+1949
+10
+
+Name the Year: Peoples Rebulic of China proclaimed?
+1949
+10
+
+Name the Year: Percy Bysshe Shelley England, romantic poet (Adonais), born in?
+1792
+10
+
+Name the Year: Perry Como singer/TV (Perry Como Show, What did Delaware?), born in?
+1912
+10
+
+Name the Year: Peru declares independence from Spain (National Day)?
+1821
+10
+
+Name the Year: Pete Knight in X-15 reaches 85 km about Earth?
+1967
+10
+
+Name the Year: Peter Carl Goldmark, developed color TV & LP records, born in?
+1906
+10
+
+Name the Year: Peter Cook, British actor, comedian?
+1937
+10
+
+Name the Year: Peter Cushing England, actor (Hound of the Baskervilles), born in?
+1913
+10
+
+Name the Year: Peter Falk, actor (Colombo, Princess Bride, In-Laws), born in?
+1927
+10
+
+Name the Year: Peter Fonda, actor, son of Henry, born in?
+1940
+10
+
+Name the Year: Peter Gabriel, rocker (Genesis-Against All Odds), born in?
+1950
+10
+
+Name the Year: Peter Graves, actor (Mission Impossible, Airplane), born in?
+1926
+10
+
+Name the Year: Peter Henry Emerson, 1st to promote photography as an independent art, born in?
+1856
+10
+
+Name the Year: Peter Ilich Tchaikovsky, composer, born in?
+1840
+10
+
+Name the Year: Peter Ilyich Tchaikovsky, Russian composer (1812 Overture), born in?
+1840
+10
+
+Name the Year: Peter O'Toole Ireland, actor (Lord Jim, Beckett, Lawrence of Arabia), born in?
+1932
+10
+
+Name the Year: Peter Roget, thesaurus fame, inventor (slide rule, pocket chessboard), born in?
+1779
+10
+
+Name the Year: Peter Sellers England, actor (Pink Panther, Being There, Goon Show), born in?
+1925
+10
+
+Name the Year: Peter Sellers, comedian and actor, dies at 54?
+1980
+10
+
+Name the Year: Peter Tosh reggae singer shot dead at 43 in Jamacia?
+1988
+10
+
+Name the Year: Peter Tosh, Jamaica, reggae musician, born in?
+1944
+10
+
+Name the Year: Peter Townsend singer (Who-Tommy), born in?
+1945
+10
+
+Name the Year: Peter Ustinov, actor (Fiddler on the Roof, Death on the Nile), born in?
+1921
+10
+
+Name the Year: Peter Weiss, German dramatist, novelist (Marat/Sade)?
+1916
+10
+
+Name the Year: Petula Clark (in England), singer?
+1932
+10
+
+Name the Year: Phil Collins, England, singer/drummer (Genesis-Against All Odds), born in?
+1951
+10
+
+Name the Year: Phil Collins, musician (Genesis), actor (Buster), born in?
+1941
+10
+
+Name the Year: Phil Hartman comedian (SNL, Newsradio, Simpsons (Voice of Troy McLure)), born in?
+1948
+10
+
+Name the Year: Phil Lynott, Thin Lizzy Lead Singer, died?
+1986
+10
+
+Name the Year: Phil Ochs rock producer, dies?
+1976
+10
+
+Name the Year: Philip Glass, composer (Einstein on the Beach), born in?
+1937
+10
+
+Name the Year: Philip I (the Handsome), first Habsburg king of Spain (1506), born in?
+1478
+10
+
+Name the Year: Philip II Augustus 1st great Capetian king of France (1179-1223), born in?
+1165
+10
+
+Name the Year: Philip II king of Spain (1556-98) & Portugal (1580-98), born in?
+1527
+10
+
+Name the Year: Philip IV king of Spain & Portugal (1621-65), born in?
+1605
+10
+
+Name the Year: Philip John Noel-Baker, statesman, disarmament advocate (Nobel '59)?
+1889
+10
+
+Name the Year: Philip the Good Duke of Burgundy, born in?
+1396
+10
+
+Name the Year: Philip V, first Bourbon king of Spain (1700-46)?
+1683
+10
+
+Name the Year: Philippe Petit walks tightrope strung between the twin towers of the World Trade Center, New York?
+1974
+10
+
+Name the Year: Philippine legislature accepts US proposal for independence?
+1934
+10
+
+Name the Year: Philippine nationalists declared their independence from Spain. Phillipine Independance day?
+1898
+10
+
+Name the Year: Philippines gained independence from US?
+1946
+10
+
+Name the Year: Philippines President Ferdinand E. Marcos flees in defeat, takes up residence in Hawaii with wife Imelda?
+1986
+10
+
+Name the Year: Phineas Taylor Barnum Bethel Conn, circus promoter (Barnum and Bailey), born in?
+1810
+10
+
+Name the Year: Phyllis Diller, comedian, born in?
+1917
+10
+
+Name the Year: Phyllis George (in Denton, Texas), commentator, former Miss America?
+1949
+10
+
+Name the Year: Physical Review publishes 1st paper to deal with black holes?
+1939
+10
+
+Name the Year: Pianist & statesman Ignace Paderewski becomes 1st premier of Poland?
+1919
+10
+
+Name the Year: Pierce Brosnan (in Israel), actor (current James Bond), born in?
+1952
+10
+
+Name the Year: Pierre Cardin, Paris, France, fashion designer (Unisex), born in?
+1922
+10
+
+Name the Year: Pilftre de Rozier and Marquis d'Arlandes make first free balloon flight?
+1783
+10
+
+Name the Year: Pilgrims reach Cape Cod on the Mayflower?
+1620
+10
+
+Name the Year: Pilgrims set sail from Plymouth England to the New World?
+1620
+10
+
+Name the Year: Pineapple introduced to Hawaii?
+1813
+10
+
+Name the Year: Pioneer 1 launched; first spacecraft launched by NASA?
+1958
+10
+
+Name the Year: Pioneer 10 becomes 1st man-made object to leave Solar System?
+1983
+10
+
+Name the Year: Pioneer 10 launched. First to traverse asteroid belt, leave system?
+1972
+10
+
+Name the Year: Pioneer 10 passes Jupiter (1st fly-by of an outer planet)?
+1973
+10
+
+Name the Year: Pioneer 11 launched. First spacecraft to flyby Saturn?
+1973
+10
+
+Name the Year: Pioneer 11 makes 1st fly-by of Saturn, discovers new moon, rings?
+1979
+10
+
+Name the Year: Pioneer 11 transmitted images of Saturn and its rings?
+1978
+10
+
+Name the Year: Pioneer Venus 2 drops 5 probes into atmosphere of Venus?
+1978
+10
+
+Name the Year: Pioneer-Venus 2 Multi-probe launched to Venus?
+1978
+10
+
+Name the Year: Pizarro seizes Incan emperor Atahualpa?
+1532
+10
+
+Name the Year: Placido Domingo, Madrid Spain, opera tenor, born in?
+1941
+10
+
+Name the Year: Planet Pluto discovered by Clyde W. Tombaugh?
+1930
+10
+
+Name the Year: Playwright Eugene O'Neill dies in Boston at 65?
+1953
+10
+
+Name the Year: PLO's first hijacking of an El Al plane?
+1968
+10
+
+Name the Year: Pluto again becomes the outermost planet?
+1999
+10
+
+Name the Year: PM Tojo, 6 other Japanese hung for war crimes by US?
+1948
+10
+
+Name the Year: PM Winston Churchill announced that Britain had its own atomic bomb?
+1952
+10
+
+Name the Year: Poet Walt Whitman died in Camden, New Jersey?
+1892
+10
+
+Name the Year: Poland proclaims independence from Russia after WW I?
+1918
+10
+
+Name the Year: Poland's Solidarity labor union founded?
+1980
+10
+
+Name the Year: Police find 219 grains of cannabis resin in John and Yoko's apartment?
+1968
+10
+
+Name the Year: Polish airliner crash kills all 87 aboard (22 are US amateur boxers)?
+1980
+10
+
+Name the Year: Polish Army captures Vilno, Lithuania from Soviet Army?
+1919
+10
+
+Name the Year: Polish Cardinal Karol Wojtyla elected supreme pontiff-Pope John Paul II?
+1978
+10
+
+Name the Year: Polish constitution adopted (National Day)?
+1952
+10
+
+Name the Year: Ponce de Leon arrives in Puerto Rico?
+1508
+10
+
+Name the Year: Pony Express begins service, from St. Joseph, Missouri?
+1860
+10
+
+Name the Year: Poon Lim found after being adrift 133 days?
+1943
+10
+
+Name the Year: Popcorn is introduced by an Indian named Quadequina to the English colonists at their first Thanksgiving dinner?
+1630
+10
+
+Name the Year: Pope Clement VII excommunicated England's King Henry VIII?
+1533
+10
+
+Name the Year: Pope Hilarius, born in?
+1584
+10
+
+Name the Year: Pope John Paul I dies after 33 days as pope?
+1978
+10
+
+Name the Year: Pope John Paul II 264th Roman Catholic pope (1978- ), born in?
+1918
+10
+
+Name the Year: Pope John Paul II becomes 1st pope to visit Ireland?
+1979
+10
+
+Name the Year: Pope John Paul II began 5 day visit to West Germany?
+1980
+10
+
+Name the Year: Pope John Paul II gets out of hospital after attempt on life?
+1981
+10
+
+Name the Year: Pope John Paul II is 1st Pope to visit the White House?
+1979
+10
+
+Name the Year: Pope John Paul II met Rome's Chief Rabbi Elio Toaff at Rome synagogue?
+1986
+10
+
+Name the Year: Pope John Paul II proclaimed Rev. M Kolbe, who volunteered to die in place of another inmate at Auschwitz concentration camp, a saint?
+1982
+10
+
+Name the Year: Pope John Paul II shot, wounded by assailant in St Peter's Square?
+1981
+10
+
+Name the Year: Pope John XXIII convenes 21st Roman Catholic ecumenical council, Vatican II, in Rome?
+1962
+10
+
+Name the Year: Pope Julius II excommunicates Italian state of Venice?
+1509
+10
+
+Name the Year: Pope Paul II deposed and excommunicated King Henry VIII?
+1535
+10
+
+Name the Year: Pope Paul III excommunicated England's King Henry VIII?
+1538
+10
+
+Name the Year: Pope Paul III, born in?
+1468
+10
+
+Name the Year: Pope Paul VI (Giovanni Battista Montini) succeeds John XXIII?
+1963
+10
+
+Name the Year: Pope Paul VI encyclical On the regulation of birth?
+1968
+10
+
+Name the Year: Pope Paul VI makes 19th-cent bishop John Neumann first US male saint?
+1977
+10
+
+Name the Year: Pope Paul VI proclaims Jews not collectively guilty for crucifixion?
+1965
+10
+
+Name the Year: Pope Paul VI visits Jordan and Israel?
+1964
+10
+
+Name the Year: Pope Paul VI wounded in chest during a visit to Philippines by a dagger-wielding Bolivian painter disguised as a priest?
+1970
+10
+
+Name the Year: Pope Pius X canonized a saint?
+1954
+10
+
+Name the Year: Pope Pius XII ex-communicated Argentine President Juan Peron?
+1955
+10
+
+Name the Year: Pope Pius XII was crowned in ceremonies at the Vatican?
+1939
+10
+
+Name the Year: Pope Stephen II elected to succeed Zacharias, died 2 days later?
+1752
+10
+
+Name the Year: Pope Urban II preaches first Crusade?
+1095
+10
+
+Name the Year: Pope's authority declared void in England?
+1536
+10
+
+Name the Year: Portugal grants Angola independence (Natl Day)?
+1975
+10
+
+Name the Year: Portugal overthrows monarchy, proclaims republic?
+1910
+10
+
+Name the Year: Portugal regained independence after 60 years of Spanish rule?
+1640
+10
+
+Name the Year: Portugese President Sidonio Paes is assassinated?
+1918
+10
+
+Name the Year: Portuguese defeat Castilians at Aljubarrota, retain independence?
+1385
+10
+
+Name the Year: Portuguese rebels seize cruise ship Santa Maria?
+1961
+10
+
+Name the Year: Post Hospital at Presidio renamed Letterman General Hospital?
+1911
+10
+
+Name the Year: Potsdam Conference (Roostevelt, Stalin, Churchill) holds first meeting?
+1945
+10
+
+Name the Year: Power plant at Niagara Falls begins operation?
+1896
+10
+
+Name the Year: Pravda announces high-level Chernobyl staff fired for stupidity?
+1986
+10
+
+Name the Year: Pres Bush is hospitalized for erratic heartbeat?
+1991
+10
+
+Name the Year: Pres Eisenhower suffered a heart attack on vacation in Denver?
+1955
+10
+
+Name the Year: Pres Harry S Truman formally ends state of war with Germany?
+1951
+10
+
+Name the Year: Pres Jackson orders 1st use of US troops to suppress a labor dispute?
+1834
+10
+
+Name the Year: Pres Jimmy Carter pardons almost all Vietnam War draft evaders?
+1977
+10
+
+Name the Year: Pres Reagan meets with Pope John Paul II and Queen Elizabeth?
+1982
+10
+
+Name the Year: Pres Reagan was elected to a second term, winning 49 states?
+1984
+10
+
+Name the Year: Pres Truman orders US troops into Korea?
+1950
+10
+
+Name the Year: Pres William McKinley assassinated by Leon Czologosz in Buffalo, New York?
+1901
+10
+
+Name the Year: Pres. Eisenhower signs into law National Aeronautics and Space Administration (NASA) and Space Act of 1958?
+1958
+10
+
+Name the Year: Pres. Reagan greeted predecessors Jimmy Carter, Gerald R. Ford and Richard Nixon before their trip to Egypt for Anwar Sadat's funeral?
+1981
+10
+
+Name the Year: Pres. Reagan shot and wounded by John W. Hinckley Jr?
+1981
+10
+
+Name the Year: Pres. Theodore Roosevelt (first American) awarded Nobel Peace Prize?
+1906
+10
+
+Name the Year: Pres. Truman ordered the Air Force and Navy into the Korean conflict?
+1950
+10
+
+Name the Year: Pres. Wilson asked Congress to declare war against Germany?
+1917
+10
+
+Name the Year: Present constitution of Liechtenstein comes into effect?
+1921
+10
+
+Name the Year: President Abraham Lincoln shot in Ford's Theatre by J.W. Booth?
+1865
+10
+
+Name the Year: President Andrew Johnson formally declared the Civil War over?
+1866
+10
+
+Name the Year: President Bush announces DOUBLING of US forces in Gulf?
+1990
+10
+
+Name the Year: President FDR signed into law the Lend-Lease Bill?
+1941
+10
+
+Name the Year: President Galtieri resigns in Argentina?
+1982
+10
+
+Name the Year: President Harry Truman seizes steel industry to avoid a strike?
+1952
+10
+
+Name the Year: President Jimmy Carter welcomes Shah of Iran?
+1977
+10
+
+Name the Year: President John Kennedy assasinated in Dallas; Lee Harvey Oswald is assumed to have been the assasin?
+1963
+10
+
+Name the Year: President Jose Antonio Remon of Panama assassinated?
+1955
+10
+
+Name the Year: President Lincoln delivers his famous address at Gettysburg, PA?
+1863
+10
+
+Name the Year: President McKinley asks for Spanish-American War declaration?
+1898
+10
+
+Name the Year: President Nixon agrees to turn over White House tape recordings?
+1973
+10
+
+Name the Year: President Nixon and Chinese Premier Chou En-lai issued the Shanghai Communique?
+1972
+10
+
+Name the Year: President Nixon visits China?
+1972
+10
+
+Name the Year: President Reagan signs a bill establishing Martin Luther King day?
+1983
+10
+
+Name the Year: President Richard Nixon resigns in the wake of the Watergate scandal?
+1974
+10
+
+Name the Year: President Truman announced atomic bomb secret shared with Britain and Canada?
+1945
+10
+
+Name the Year: President Truman asked Congress to formally end the state of war with Germany?
+1951
+10
+
+Name the Year: President-elect Eisenhower visits Korea to assess the war?
+1952
+10
+
+Name the Year: Prince Albert of Monaco, born in?
+1958
+10
+
+Name the Year: Prince Andrew, Second eldest son of HRH Queen Elizabeth II, born in?
+1960
+10
+
+Name the Year: Prince Edward of England, royalty, born in?
+1964
+10
+
+Name the Year: Prince Henry Charles Albert David of Wales, 3rd in British sucession, born in?
+1984
+10
+
+Name the Year: Prince Ito of Japan is assassinated by a Korean?
+1909
+10
+
+Name the Year: Prince Philip Mountbatten, Greece, current Duke of Edinburgh, born in?
+1921
+10
+
+Name the Year: Prince Rainier of Monaco, born in?
+1923
+10
+
+Name the Year: Prince Willem-Alexander of the Netherlands, heir apparent, born in?
+1967
+10
+
+Name the Year: Prince William of Wales, second in line to English throne (Son of Prince Charles), born in?
+1982
+10
+
+Name the Year: Prince, musician, born in?
+1958
+10
+
+Name the Year: Princess Anne of England, born in?
+1950
+10
+
+Name the Year: Princess Caroline Louise Marguerite of Monaco, born in?
+1957
+10
+
+Name the Year: Princess Caroline of Monaco, born in?
+1958
+10
+
+Name the Year: Princess Grace of Monaco dies at 52 in a car crash?
+1982
+10
+
+Name the Year: Princess Ingeborg of Sweden, born in?
+1878
+10
+
+Name the Year: Princess Margaret England (Sister of Queen Elizabeth II), born in?
+1930
+10
+
+Name the Year: Princess Sarah 'Fergie' Ferguson, the Duchess of York, born in?
+1959
+10
+
+Name the Year: Princess Stephanie of Monaco?
+1965
+10
+
+Name the Year: Princess Victoria Ingrid Alicia Desirie, heir apparent of Sweden?
+1977
+10
+
+Name the Year: Principality of Liechtenstein created within Holy Roman Empire?
+1719
+10
+
+Name the Year: Priscilla & Elvis Presley wed?
+1967
+10
+
+Name the Year: Priscilla Presley, actor, wife of Elvis?
+1945
+10
+
+Name the Year: Prisoners revolt at Alcatraz, 5 die?
+1946
+10
+
+Name the Year: Production announced-first pilot plant to produce man-made diamonds?
+1955
+10
+
+Name the Year: Provisional government of Russia established, Republic proclaimed?
+1917
+10
+
+Name the Year: PTL leader Jim Bakker resigns?
+1987
+10
+
+Name the Year: Publius Helvius Pertinax Roman emperor (193 AD), born in?
+126
+10
+
+Name the Year: Puerto Rico Discovery Day?
+1582
+10
+
+Name the Year: Pumping begins to build Treasure Island, San Francisco?
+1936
+10
+
+Name the Year: Pyotr I. Klimuk, Soviet cosmonaut (Soyuz 13, 18, 30), born in?
+1942
+10
+
+Name the Year: Qatar declares independence from Britain?
+1971
+10
+
+Name the Year: Qatar regains complete independence from Britain?
+1971
+10
+
+Name the Year: Queen Elizabeth I England, (1558-1603) daughter of Henry VIII, born in?
+1533
+10
+
+Name the Year: Queen Isabella I, funded Christopher Columbus, born in?
+1451
+10
+
+Name the Year: Queen Liliuokalani, last queen of Hawaii (1891-93)?
+1838
+10
+
+Name the Year: Queen Mary I, first reigning queen of Great Britain, born in?
+1516
+10
+
+Name the Year: Queen Mother Wilhelmina Netherlands (1890-1948), born in?
+1880
+10
+
+Name the Year: Queen Victoria at 18 ascends British throne following death of uncle King William IV. She ruled for 63 years until 1901?
+1837
+10
+
+Name the Year: Queen Victoria, Britain's Queen, dies at 82?
+1901
+10
+
+Name the Year: Queen Victoria, British ruler?
+1819
+10
+
+Name the Year: Quincy Jones, composer, conductor, born in?
+1933
+10
+
+Name the Year: R Buckminster Fuller inventor/philosopher, dies in LA at 87?
+1983
+10
+
+Name the Year: R. Buckminster Fuller, architect, inventor, philosopher, inventor of the geodesic dome?
+1895
+10
+
+Name the Year: Radar first bounced off sun, Stanford California?
+1959
+10
+
+Name the Year: Radio arrives in the White House?
+1922
+10
+
+Name the Year: Radio Prague (Czech) at 12:50 AM announces a soviet led invasion?
+1968
+10
+
+Name the Year: Radio Shack announces their color computer 2 (the Coco2)?
+1983
+10
+
+Name the Year: Railroad transportation is born with first track in England?
+1825
+10
+
+Name the Year: Rajan Mahadevan recites 31,811 digits of pi from memory?
+1981
+10
+
+Name the Year: rajan, 13th Roman emperor (98-117), conqueror of Ctesiphon, born in?
+53 T
+10
+
+Name the Year: Rajiv Gandhi Indian Prime Minster, assassinated?
+1991
+10
+
+Name the Year: Rajiv Gandhi, PM of India (1984-1991), born in?
+1944
+10
+
+Name the Year: Ralph J. Bunche, a founder and diplomat of UN (Nobel 1950), born in?
+1904
+10
+
+Name the Year: Ralph Waldo Emerson US, essayist/philosopher, born in?
+1803
+10
+
+Name the Year: Randolph Hearst newspaper publisher, born in?
+1915
+10
+
+Name the Year: Randolph Scott, actor, born in?
+1903
+10
+
+Name the Year: Randy Newman, singer (Raindrops), songwriter?
+1943
+10
+
+Name the Year: Randy Travis country singer (Always & Forever), born in?
+1959
+10
+
+Name the Year: Ranger 7 launched toward the Moon; sent back 4308 TV pictures?
+1964
+10
+
+Name the Year: Ranjitsinhji Vibhaji India, cricketer/politician, born in?
+1872
+10
+
+Name the Year: Ransom Eli Olds, auto (Oldsmobile) and truck (REO) manufacturer, born in?
+1864
+10
+
+Name the Year: Raquel Welch Chic (Myra Breckenridge, 1,000,000 BC, 100 Rifles), born in?
+1940
+10
+
+Name the Year: Raul Alfonsin, President of Argentina, born in?
+1927
+10
+
+Name the Year: Raul Julia, actor (Gomez in the Addams Family), born in?
+1940
+10
+
+Name the Year: Ray Bolger actor/dancer (Scarecrow in Wizard of Oz), dies at 82?
+1987
+10
+
+Name the Year: Ray Bradbury, science fiction author (Fahrenheit 451), born in?
+1920
+10
+
+Name the Year: Ray Charles, entertainer extraordinaire, born in?
+1930
+10
+
+Name the Year: Ray Kroc founder of MacDonalds/owner San Diego Padres, dies at 82?
+1984
+10
+
+Name the Year: Ray Kroc Illinois, founder of MacDonalds/baseball team owner (San Diego Padres), born in?
+1902
+10
+
+Name the Year: Ray Parker Jr rocker (Ghostbusters theme), born in?
+1954
+10
+
+Name the Year: Raymond Poincar, French prime minister (1912), president, born in?
+1860
+10
+
+Name the Year: RC Carrington and R Hodgson make 1st observation of solar flare?
+1859
+10
+
+Name the Year: RCA manufactures the first COLOR television set?
+1954
+10
+
+Name the Year: Reagan administration exceeds SALT II arms limitations for first time?
+1986
+10
+
+Name the Year: Reba McEntire, singer, born in?
+1955
+10
+
+Name the Year: Rebecca De Mornay actress (The Hand That Rocker The Cradle), born in?
+1962
+10
+
+Name the Year: Record 23,000 start in a marathon (Mexico City)?
+1986
+10
+
+Name the Year: Record for a throw-and-return boomerang toss is set (121m)?
+1986
+10
+
+Name the Year: Red Buttons, comedian, actor, born in?
+1919
+10
+
+Name the Year: Red Cross Anniversary?
+1864
+10
+
+Name the Year: Redd Foxx, actor (Sanford and Son), comedian, born in?
+1922
+10
+
+Name the Year: Reichstag building in Berlin was set afire, Nazis blame Communists?
+1933
+10
+
+Name the Year: Religion of Islam (submission) founded in Mecca?
+570
+10
+
+Name the Year: Rembrandt van Rijn, Dutch painter?
+1606
+10
+
+Name the Year: Rene Magritte, painter (This is Not a Pipe)?
+1898
+10
+
+Name the Year: Renoir, painter, born in?
+1841
+10
+
+Name the Year: Representatives of Israel and Egypt open talks in Washington?
+1978
+10
+
+Name the Year: Republic Day in Sierra Leone?
+1989
+10
+
+Name the Year: Republic of Cameroon declared as constitution is ratified?
+1972
+10
+
+Name the Year: Republic of Iceland proclaimed at Thingvallir, Iceland?
+1944
+10
+
+Name the Year: Republic of Ireland gains consultative role in Northern Ireland?
+1985
+10
+
+Name the Year: Republic of Korea (South Korea) proclaimed (National Day)?
+1948
+10
+
+Name the Year: Republic of Korea founded?
+1948
+10
+
+Name the Year: Republic of Maldives gained independence from Britain (Nat'l Day)?
+1965
+10
+
+Name the Year: Republic of Rwanda proclaimed?
+1961
+10
+
+Name the Year: Republic of the Congo becomes Republic of Zaire?
+1971
+10
+
+Name the Year: Republic of Upper Volta becomes Burkina Fasso (National Day)?
+1984
+10
+
+Name the Year: Republican calendar replaces Gregorian calendar in France?
+1793
+10
+
+Name the Year: Republican Convention in New Orleans select Bush-Quayle ticket?
+1988
+10
+
+Name the Year: Republicans start convention at the Cow Palace, San Francisco?
+1956
+10
+
+Name the Year: Rev Dr Martin Luther King Jr Atlanta, dreamer (Nobel 1964), born in?
+1929
+10
+
+Name the Year: Rev Jim Jones leads 911 people in suicide in Jonestown, Guyana?
+1978
+10
+
+Name the Year: Rev Martin Luther King Sr, dies in Atlanta at 84?
+1984
+10
+
+Name the Year: Rev. William Archibald Spooner, invented 'spoonerisms' (ie When you get you bords wackwards and you can't palk troperly.), born in?
+1844
+10
+
+Name the Year: Revolution broke out in Mexico, led by Francisco I. Madero?
+1910
+10
+
+Name the Year: Revolution by workers and students in Guatemala?
+1944
+10
+
+Name the Year: Revolution in France replaces Charles X with Louis Philippe?
+1830
+10
+
+Name the Year: Revolution in Mexico overthrows President Diaz?
+1911
+10
+
+Name the Year: Revolution in the Seychelles Islands?
+1977
+10
+
+Name the Year: Rex Harrison England, actor (My Fair Lady, Cleopatra), born in?
+1908
+10
+
+Name the Year: Rex Harrison, actor?
+1908
+10
+
+Name the Year: Rhodesia proclaimed independence from Britain by PM Ian D. Smith?
+1965
+10
+
+Name the Year: Ricardo Montalban, actor (Fantasy Island, Star Trek II)?
+1920
+10
+
+Name the Year: Rich Little (in Canada), impressionist?
+1938
+10
+
+Name the Year: Richard Bonynge, Sydney Australia, conductor (Australian Orchestra Sydney-1976), born in?
+1930
+10
+
+Name the Year: Richard Brinsley Sheridan, playwright (Rivals, School for Scandal)?
+1632
+10
+
+Name the Year: Richard Burton, Wales, actor (Cleopatra, Virginia Woolf), born in?
+1925
+10
+
+Name the Year: Richard Byrd and crew flies over the South Pole?
+1929
+10
+
+Name the Year: Richard Carpenter, musician (Carpenters), born in?
+1946
+10
+
+Name the Year: Richard Crenna, actor?
+1927
+10
+
+Name the Year: Richard Cromwell, lord protector of England (1658-59)?
+1626
+10
+
+Name the Year: Richard Dreyfuss, actor (Jaws, Close Encounters of the Third Kind), born in?
+1947
+10
+
+Name the Year: Richard E. Byrd, polar explorer?
+1888
+10
+
+Name the Year: Richard F Attenborough environmentalist/zoologist/filmmaker (BBC), born in?
+1926
+10
+
+Name the Year: Richard Gere Phila Pa, actor (Breathless, Cotton Club), born in?
+1949
+10
+
+Name the Year: Richard Greene Plymouth England, actor (Adv of Robin Hood), born in?
+1918
+10
+
+Name the Year: Richard H. Truly, U.S. astronaut (STS-2, 8)?
+1937
+10
+
+Name the Year: Richard I [Richard the Lion Hearted], King of England (1189-99), born in?
+1157
+10
+
+Name the Year: Richard III slain at Bosworth Field - Last of the Plantagenets?
+1485
+10
+
+Name the Year: Richard III usurps English throne?
+1483
+10
+
+Name the Year: Richard Jordan Gatling, US inventor of hand-cranked machine gun, born in?
+1818
+10
+
+Name the Year: Richard M. Nixon, 37th President (1968-1974), born in?
+1913
+10
+
+Name the Year: Richard Martin of London takes out the first life insurance policy, on William Gibbons. The premium is 383 pounds?
+1583
+10
+
+Name the Year: Richard Nixon first American president to visit China?
+1972
+10
+
+Name the Year: Richard Pryor, comedian/actor (Lady Sings the Blues, Stir Crazy), born in?
+1940
+10
+
+Name the Year: Richard Roose boiled to death for trying to poison an archbishop?
+1531
+10
+
+Name the Year: Richard Strauss (in Germany), composer, born in?
+1864
+10
+
+Name the Year: Richard Wagner Leipsig Germany, composer (Ring, Flying Dutchman, Ride of the Valkries), born in?
+1813
+10
+
+Name the Year: Richard Wright rocker (Pink Floyd-The Wall), born in?
+1945
+10
+
+Name the Year: Richard Wright, American author (Native Son, Uncle Tom's Children)?
+1908
+10
+
+Name the Year: Richie Sambora guitarist (Bon Jovi-You Give Love a Bad Name), born in?
+1959
+10
+
+Name the Year: Rick James, musician?
+1952
+10
+
+Name the Year: Ricki Lake actress (Hairspray, Ricki Lake Show), born in?
+1968
+10
+
+Name the Year: Rickie Lee Jones (in Chicago), singer?
+1954
+10
+
+Name the Year: Ringo Starr, Beatles' drummer, born in?
+1940
+10
+
+Name the Year: Riot in San Francisco celebrating end of World War II?
+1945
+10
+
+Name the Year: Riots in Argentina after Falklands/Malvinas defeat?
+1982
+10
+
+Name the Year: Rita Hayworth (in New York), actor, alzheimer victim, born in?
+1919
+10
+
+Name the Year: Rita Hayworth actress, dies at 68 of Alzheimer's disease?
+1987
+10
+
+Name the Year: Rita Rudner comedienne, born in?
+1955
+10
+
+Name the Year: Ritchie Valens, singer (Donna, La Bamba), born in?
+1941
+10
+
+Name the Year: River Phoenix, born in?
+1970
+10
+
+Name the Year: River Rhine (Germany) polluted by chemical spill?
+1986
+10
+
+Name the Year: RMS Titanic sets sail for its first and last voyage?
+1912
+10
+
+Name the Year: Roald Amundsen, Norwegian explorer, discoverer of South Pole?
+1872
+10
+
+Name the Year: Rob Lowe, actor, famous for home-made movies, born in?
+1964
+10
+
+Name the Year: Rob Reiner, actor, director (All in the Family, Spinal Tap), born in?
+1945
+10
+
+Name the Year: Robert 'Evel' Knievel, motorcycle daredevil, born in?
+1938
+10
+
+Name the Year: Robert A Heinlein sci-fi writer, dies of heart failure at 80?
+1988
+10
+
+Name the Year: Robert A Heinlein, sci-fi author (Stranger in a Strange Land), born in?
+1907
+10
+
+Name the Year: Robert Altman, director (MASH), born in?
+1925
+10
+
+Name the Year: Robert Blake, actor (Little Rascals, Baretta), born in?
+1933
+10
+
+Name the Year: Robert Bridges, poet laureate of England (The Testament of Beauty), born in?
+1844
+10
+
+Name the Year: Robert Browning, poet, born in?
+1812
+10
+
+Name the Year: Robert Burns Scottish poet, dies?
+1796
+10
+
+Name the Year: Robert Burns, Scottish poet, born in?
+1759
+10
+
+Name the Year: Robert Crumb cartoonist (Father Time), born in?
+1943
+10
+
+Name the Year: Robert Culp, actor (I Spy), born in?
+1930
+10
+
+Name the Year: Robert De Niro, actor (Bang the Drum Slowly, Taxi Driver), born in?
+1943
+10
+
+Name the Year: Robert Duvall, actor, born in?
+1931
+10
+
+Name the Year: Robert E Lee General of the Confederate Army, dies at 63?
+1870
+10
+
+Name the Year: Robert Emmett's insurrection in Dublin?
+1803
+10
+
+Name the Year: Robert Flaherty, father of the documentary film, born in?
+1884
+10
+
+Name the Year: Robert Frost (in San Francisco, CA), poet, born in?
+1875
+10
+
+Name the Year: Robert Fulton, built first commercial steamboat?
+1765
+10
+
+Name the Year: Robert Fulton, inventor, born in?
+1765
+10
+
+Name the Year: Robert Goddard, rocketry pioneer, died?
+1945
+10
+
+Name the Year: Robert Goulet (in Canada), singer, actor?
+1933
+10
+
+Name the Year: Robert Greene Elizabethan dramatist (Friar Bacon), born in?
+1558
+10
+
+Name the Year: Robert J.L. Hawke (Labor), prime minister of Australia (1983-1991) born?
+1929
+10
+
+Name the Year: Robert Kennedy (in Brookline, Mass), Democratic Senator from New York, U.S. Attorney General; later assassinated?
+1925
+10
+
+Name the Year: Robert Lord Clive, founded British empire in India, born in?
+1755
+10
+
+Name the Year: Robert Louis Stevenson (in Scotland), writer (Treasure Island)?
+1850
+10
+
+Name the Year: Robert Ludlum spy novelist (Bourne Identity), born in?
+1927
+10
+
+Name the Year: Robert Mitchum, actor, born in?
+1917
+10
+
+Name the Year: Robert Redford Calif, actor (Sting, Candidate, Natural, Great Gatsby), born in?
+1937
+10
+
+Name the Year: Robert Runcie, archbishop of Canterbury?
+1921
+10
+
+Name the Year: Robert Smith rock guitarist/vocalist (Cure), born in?
+1959
+10
+
+Name the Year: Robert Stack LA Calif, actor (Eliot Ness-Untouchables, Airplane), born in?
+1919
+10
+
+Name the Year: Robert the Bruce Scotland, King (1328-1329), born in?
+1274
+10
+
+Name the Year: Robert Vaughn, actor (Man from U.N.C.L.E)?
+1932
+10
+
+Name the Year: Robert Wagner, actor, born in?
+1930
+10
+
+Name the Year: Robert Zimmerman (a.k.a. Bob Dylan) (in Minnesota), folk singer?
+1941
+10
+
+Name the Year: Roberta Flack (in North Carolina), singer, born in?
+1940
+10
+
+Name the Year: Robespierre and 22 other terrorists executed to thunderous cheers?
+1794
+10
+
+Name the Year: Robin Williams Chicago Ill, comedian (Mork and Mindy, Awakenings), born in?
+1952
+10
+
+Name the Year: Robinson Crusoe is shipwrecked (according to Defoe)?
+1659
+10
+
+Name the Year: Robinson Crusoe leaves his island after 28 years (as per Defoe)?
+1686
+10
+
+Name the Year: Robinson Crusoe, according to Daniel Defoe?
+1627
+10
+
+Name the Year: Rock Hudson (in Winnetka, Ill), actor (Pillow Talk, A Farewell to Arms, McMillan and Wife)?
+1925
+10
+
+Name the Year: Rocker Alice Cooper falls of stage in Vancouver, breaks 6 ribs?
+1975
+10
+
+Name the Year: Rocker Chubby Checker arrest for marijuana pocession?
+1970
+10
+
+Name the Year: Rocky Graziano boxer, dies at 71, of heart failure?
+1990
+10
+
+Name the Year: Rocky Graziano, pugilist, born in?
+1922
+10
+
+Name the Year: Rocky Marciano former heavyweight champ, dies in a plane crash?
+1964
+10
+
+Name the Year: Rocky Marciano, heavyweight champion boxer (1952-56), born in?
+1923
+10
+
+Name the Year: Rod Laver, tennis player, born in?
+1938
+10
+
+Name the Year: Rod Serling writer/host (Twilight Zone, Night Gallery), dies at 60?
+1975
+10
+
+Name the Year: Rod Steiger, actor, born in?
+1925
+10
+
+Name the Year: Rod Stewart, singer, born in?
+1945
+10
+
+Name the Year: Rodolphe Kreutzer, French composer, virtuoso violinist?
+1766
+10
+
+Name the Year: Roger Bannister breaks the 4 min mile in 3:59:4?
+1954
+10
+
+Name the Year: Roger Moore, actor, (The Saint, numerous James Bond movies), born in?
+1926
+10
+
+Name the Year: Roger Taylor rock drummer (Duran Duran), born in?
+1960
+10
+
+Name the Year: Roger Waters, (Pink Floyd-The Wall), born in?
+1943
+10
+
+Name the Year: Roger Waters, singer (Pink Floyd), born in?
+1947
+10
+
+Name the Year: Rohini 1, first Indian satellite, is launched?
+1980
+10
+
+Name the Year: Rolling Stones 1st tour (opening act for Bo Diddley and Everly Bros)?
+1963
+10
+
+Name the Year: Roman Polanski director (Knife in the Water, Repulsion, Macbeth), born in?
+1933
+10
+
+Name the Year: Rome liberated from the Fascist armies of Mussolini?
+1944
+10
+
+Name the Year: Rome overrun by Visigoths, symbolized fall of Western Roman Empire?
+410
+10
+
+Name the Year: Rommel takes Tobruk in North Africa?
+1942
+10
+
+Name the Year: Romulus Augustulus, last Roman emperor in west, is deposed?
+476
+10
+
+Name the Year: Ron Howard, actor (Mayberry RFD, Happy Days, American Graffiti), director (Splash, Cocoon, Backdraft), born in?
+1954
+10
+
+Name the Year: Ron Kovic disabled vietnam vet (Born on 4th of July was based on his life), born in?
+1946
+10
+
+Name the Year: Ron Perlman, actor, born in?
+1950
+10
+
+Name the Year: Ronald Reagan is knighted by Queen Elizabeth?
+1989
+10
+
+Name the Year: Ronald Reagan, 40th President (1981-1989), born in?
+1911
+10
+
+Name the Year: Roosevelt establishes diplomatic relations with the Soviet Union?
+1933
+10
+
+Name the Year: Roosevelt, Churchill and Stalin met at Tehran?
+1943
+10
+
+Name the Year: Roosevelt, Churchill, and Stalin began a conference at Yalta?
+1945
+10
+
+Name the Year: Ropert L Ripley cartoonist (Believe It or Not), dies at 55 in NY?
+1949
+10
+
+Name the Year: Rose Kennedy, Mother of a President, an Attorney General, and a Senator, born in?
+1890
+10
+
+Name the Year: Roseanne Barr Arnold Salt Lake City, comedienne/TV star (Roseanne), born in?
+1952
+10
+
+Name the Year: Rosemary DeCamp (in Arizona)?
+1910
+10
+
+Name the Year: Rotary Club is founded by four men in Chicago?
+1905
+10
+
+Name the Year: Rouben Mamoulian, movie director, born in?
+1897
+10
+
+Name the Year: Rowan Atikinson (Comedian), born in?
+1956
+10
+
+Name the Year: Roy Emerson Australia, tennis player (Wimbeldon '64, '65), born in?
+1936
+10
+
+Name the Year: Roy Lichtenstein, Pop art painter; painted comic book panels, born in?
+1923
+10
+
+Name the Year: Roy Orbison, musician, born in?
+1936
+10
+
+Name the Year: Roy Scheider Orange NJ, actor (All That Jazz, Jaws), born in?
+1935
+10
+
+Name the Year: Royal Air Force established in Britain?
+1918
+10
+
+Name the Year: Royal Bank of Canada took over the Quebec Bank?
+1917
+10
+
+Name the Year: Royal Flying Corps established in England?
+1912
+10
+
+Name the Year: Royal Greenwich Observatory established in England by Charles II?
+1675
+10
+
+Name the Year: Rubber is patented?
+1813
+10
+
+Name the Year: Rube Goldberg who made the easy outrageously difficult, born in?
+1883
+10
+
+Name the Year: Rudolf Diesel, invented an engine, born in?
+1858
+10
+
+Name the Year: Rudolf Hess, Hitler's Deputy Fuhrer, only prisoner at Spandau, born in?
+1895
+10
+
+Name the Year: Rudolf Nureyev, ballet star, born in?
+1938
+10
+
+Name the Year: Rudolph Hess, Nazi, dies at 93, after 46 years in Spandau Prison?
+1987
+10
+
+Name the Year: Rudolph Valentino, silent film star, sheik?
+1895
+10
+
+Name the Year: Rudyard Kipling author, dies in Burwash, England?
+1936
+10
+
+Name the Year: Ruins of Mashkan-shapir (occupied 2050-1720 BC) found in Iraq?
+1989
+10
+
+Name the Year: Rumania liberated from Nazi occupation (Romanian National Day)?
+1944
+10
+
+Name the Year: Russell L. (Rusty) Schweickart, astronaut (Apollo 9)?
+1935
+10
+
+Name the Year: Russia cedes Livonia & Estonia to Poland, loses access to the Baltic?
+1582
+10
+
+Name the Year: Russia lands unmanned remote-controlled vehicle on Moon?
+1970
+10
+
+Name the Year: Russia launches first Soyuz mission?
+1967
+10
+
+Name the Year: Russia launches second and final Voshkoid. The first spacewalk is made by Aleksei Leonov?
+1965
+10
+
+Name the Year: Russia proclaimed a republic by Alexander Kerensky?
+1917
+10
+
+Name the Year: Russia publicly acknowledges a test detonation of a hydrogen bomb?
+1953
+10
+
+Name the Year: Russia shoots down Francis Gary Powers' U-2 spy plane over Sverdlovsk?
+1960
+10
+
+Name the Year: Russia takes Berlin?
+1945
+10
+
+Name the Year: Russian calendar adjusted so Russian New Year occurs on January 1st, instead of September 1st?
+1699
+10
+
+Name the Year: Russian cruisers Variag and Korietz sunk off Korean coast by Japanese?
+1904
+10
+
+Name the Year: Rutger Hauer, actor (Blade Runner, Ladyhawke, Osterman Weekend), born in?
+1944
+10
+
+Name the Year: Ruth Gordon (in Mass.), actor (Rosemary's Baby, Harold and Maude)?
+1896
+10
+
+Name the Year: Rwanda & Burundi become independent?
+1962
+10
+
+Name the Year: Ryan O'Neal, actor, born in?
+1941
+10
+
+Name the Year: S?ren Kierkegaard Denmark, philosopher, founded Existentialism, born in?
+1813
+10
+
+Name the Year: S.S. Ceylon begins first round-the-world cruise from Liverpool?
+1881
+10
+
+Name the Year: S.S. Strathleven arrives in London with first successful shipment of frozen mutton from Australia?
+1880
+10
+
+Name the Year: Sabra Starr finishes longest recorded belly dance (100 hrs)?
+1977
+10
+
+Name the Year: Sack of Rome - End of the Renaissance?
+1527
+10
+
+Name the Year: Sadat pledges to regain arab terrority from Israel?
+1977
+10
+
+Name the Year: Saddam Hussein declares America can't beat Iraq?
+1990
+10
+
+Name the Year: Saddam Hussein president of Iraq (1979- ), born in?
+1937
+10
+
+Name the Year: Saddam says Israel will be Iraq's 1st target?
+1990
+10
+
+Name the Year: Saddam threatens to hit Israel with a new missile?
+1990
+10
+
+Name the Year: Saidi, great Persian poet (Orchard, Rose Garden) dies?
+1292
+10
+
+Name the Year: Salk polio vaccine safe and effective; four billion dimes marched?
+1955
+10
+
+Name the Year: Sally Field (in Pasadena, CA), actor (Flying Nun, Norma Rae)?
+1946
+10
+
+Name the Year: Sally Jesse Raphael TV talk show host (Sally), born in?
+1943
+10
+
+Name the Year: Sally Kellerman, Long Beach Cal, actress (MASH, Back to School), born in?
+1936
+10
+
+Name the Year: Salvador Allende Gossens elected president of Chile?
+1970
+10
+
+Name the Year: Salvador Dali, Spain, surrealist artist (Crucifixion), born in?
+1904
+10
+
+Name the Year: Salvador Dali, Spanish surrealist painter, dies in Spain at 84?
+1989
+10
+
+Name the Year: Salvatore Quasimodo, Italian poet, critic, translator (Nobel 1959), born in?
+1901
+10
+
+Name the Year: Sam Elliott, actor, born in?
+1944
+10
+
+Name the Year: Sam Houston elected president of the Republic of Texas?
+1836
+10
+
+Name the Year: Sam Melville, actor, born in?
+1940
+10
+
+Name the Year: Samuel Beckett, playwright, born in?
+1906
+10
+
+Name the Year: Samuel Clemens (a.k.a. Mark Twain) (at Hannibal, MO), author (Tom Sawyer, Huckleberry Finn)?
+1835
+10
+
+Name the Year: Samuel Colt, invented the Colt Revolver (made men equal), born in?
+1814
+10
+
+Name the Year: Samuel F.B. Morse completes 1st telegraph line?
+1844
+10
+
+Name the Year: Samuel F.B. Morse, the developer of the electric telegraph, died?
+1872
+10
+
+Name the Year: Samuel Goldwyn, pioneer filmmaker?
+1882
+10
+
+Name the Year: Samuel Johnsons Dictionary standardises English spelling?
+1755
+10
+
+Name the Year: Samuel Kanyon Doe president of Liberia, assassinated?
+1990
+10
+
+Name the Year: Samuel Pepys reports on first blood transfusion (between dogs)?
+1666
+10
+
+Name the Year: Samuel S. McClure, organizer of the first news syndicate, born in?
+1857
+10
+
+Name the Year: Samuel Taylor Coleridge (in England), poet, born in?
+1772
+10
+
+Name the Year: San Francisco Bay's Golden Gate Bridge opens?
+1937
+10
+
+Name the Year: San Francisco Mayor George Moscone and City Supervisor Harvey Milk shot by Dan White?
+1978
+10
+
+Name the Year: Sandra Bernhard, actress, born in?
+1955
+10
+
+Name the Year: Sandro Botticelli, Italian painter (Birth of Venus), born in?
+1444
+10
+
+Name the Year: Santiago, Chile founded?
+1541
+10
+
+Name the Year: Santo Domingo (Dominican Rep) proclaims independence from Spain?
+1821
+10
+
+Name the Year: Sao Tome Principe gained independence from Portugal (Nat'l Day)?
+1975
+10
+
+Name the Year: Sara Gilbert, actress (Melissa-Roseanne), born in?
+1974
+10
+
+Name the Year: Sara Teasdale, poet?
+1884
+10
+
+Name the Year: Sarah Moore Grimke, American antislavery, women's rights advocate?
+1792
+10
+
+Name the Year: Sardines were first canned, in Eastport, Maine?
+1876
+10
+
+Name the Year: Saudi Prince Faisal Ibn Mussed Abdul Aziz beheaded in Riyadh shopping center parking lot for killing his uncle the king?
+1975
+10
+
+Name the Year: Scotch tape 1st marketed by 3-M Company?
+1928
+10
+
+Name the Year: Scotland Yard formed in London?
+1829
+10
+
+Name the Year: Scotland, under King Robert I, defeats England?
+1314
+10
+
+Name the Year: Scott Bakula, actor (Quantum Leap, The Invaders), born in?
+1954
+10
+
+Name the Year: Scott Hamilton Toledo, figure skating champion (Olympic-gold-1984), born in?
+1958
+10
+
+Name the Year: Scottish settlers arrive at Pictou, Nova Scotia (Canada)?
+1773
+10
+
+Name the Year: Sculptor August Rodin died in Meudon, France?
+1917
+10
+
+Name the Year: Sean Connery actor (James Bond, Man Who Would Be King), born in?
+1930
+10
+
+Name the Year: Sean MacBride Ireland, commander of Irish Republican Army, dies at 83?
+1988
+10
+
+Name the Year: Sean Penn, actor, born in?
+1960
+10
+
+Name the Year: Second French Republic was proclaimed?
+1848
+10
+
+Name the Year: Second Space Shuttle Mission - Columbia 2 is launched. First time a spacecraft is launched twice?
+1981
+10
+
+Name the Year: Second Space Shuttle Mission, Columbia 2, returns to Earth?
+1981
+10
+
+Name the Year: Second test of the Space Shuttle Enterprise?
+1977
+10
+
+Name the Year: Security Council Resol 338 - a cease fire to the Yom Kippur War?
+1973
+10
+
+Name the Year: Seismic sea waves created by the Krakatoa eruption create a rise in the English Channel 32 hrs after the explosion?
+1883
+10
+
+Name the Year: Semi-automatic rifles adopted by US army?
+1936
+10
+
+Name the Year: Sen. Robert F. Kennedy assassinated at the Ambassador Hotel in Los Angeles (by Sirhan Sirhan) after winning the Democratic Primary?
+1968
+10
+
+Name the Year: Senegal gained independence from France?
+1960
+10
+
+Name the Year: Senegalese National Day begins?
+1960
+10
+
+Name the Year: Sergei Kirov Josef Stalin's collaborator, assassinated in Leningrad?
+1934
+10
+
+Name the Year: Sergei Rachmaninoff (in Novgorod Province, Russia), composer, born in?
+1873
+10
+
+Name the Year: Sergio Mendes, artist, born in?
+1941
+10
+
+Name the Year: Seve Ballesteros, golfer, born in?
+1957
+10
+
+Name the Year: Seventeenth Space Shuttle Mission - Challenger 7 returns to Earth?
+1985
+10
+
+Name the Year: Severe earthquake at 7:53 a.m., centered in Hayward, Calif?
+1868
+10
+
+Name the Year: Severe earthquake in New England?
+1727
+10
+
+Name the Year: Sex Pistols' final concert (Winterland, SF)?
+1978
+10
+
+Name the Year: Seychelles gained independence from Britain?
+1976
+10
+
+Name the Year: Seymour Cray inventor (Cray I computer), born in?
+1925
+10
+
+Name the Year: Sgt. Alvin York single-handedly kills 25, captures 132 Germans?
+1918
+10
+
+Name the Year: Shah Mohammed Reza Pahavala of Iran, dies in Cairo at 60?
+1980
+10
+
+Name the Year: Shah Mohammed Reza Pahlevi of Iran flees Iran for Egypt?
+1979
+10
+
+Name the Year: Shah of Iran crowns himself after 26 years on Peacock Throne?
+1967
+10
+
+Name the Year: Shane Warne takes a hat-trick v England at cricket MCG?
+1994
+10
+
+Name the Year: Shari Lewis (in Bronx, NY), puppeteer (Lambchop), born in?
+1934
+10
+
+Name the Year: Shaun Cassidy, singer, born in?
+1958
+10
+
+Name the Year: Sheena Easton Glasgow Scotland, singer/Jack LaLane spokesperson, born in?
+1959
+10
+
+Name the Year: Shelley Long (in Fort Wayne, IN), actor, born in?
+1949
+10
+
+Name the Year: Shigeki Tanaka, survivor of Hiroshima A-bomb, wins Boston Marathon?
+1951
+10
+
+Name the Year: Shigeru Yoshida Japanese PM (most of 1946-54), born in?
+1878
+10
+
+Name the Year: Shirley Bassey (in Wales), born in?
+1937
+10
+
+Name the Year: Shirley Bassey (Singer), born in?
+1937
+10
+
+Name the Year: Shirley MacLaine (in Richmond, Virginia), actor (in this life), born in?
+1934
+10
+
+Name the Year: Shirley Temple (in Santa Monica, CA), child actor, born in?
+1928
+10
+
+Name the Year: Shmuel Agnon, Israeli novelist (Day Before Yesterday) (Nobel 1966), born in?
+1888
+10
+
+Name the Year: Sholem Asch, Yiddish novelist, playwright (Three Cities)?
+1880
+10
+
+Name the Year: Shozo Fujii judo champion, born in?
+1950
+10
+
+Name the Year: Shultz warns US will withdraw from UN if they vote to exclude Israel?
+1982
+10
+
+Name the Year: Siam renames itself Thailand?
+1949
+10
+
+Name the Year: Siamese twins Chang and Eng Bunker, arrived in Boston to be exhibited?
+1829
+10
+
+Name the Year: Sid Vicious [John Beverly], bassist (Sex Pistols), born in?
+1957
+10
+
+Name the Year: Sidney Poitier became first black man to win Oscar for best actor?
+1964
+10
+
+Name the Year: Siege of Leningrad by Nazi troops began during WW II?
+1941
+10
+
+Name the Year: Sierra Leone becomes a republic (Natl Day)?
+1971
+10
+
+Name the Year: Sigmund Freud, cigar smoker, psychiatrist, born in?
+1856
+10
+
+Name the Year: Sigourney Weaver (in Los Angeles), actor (Aliens, GhostBusters), born in?
+1949
+10
+
+Name the Year: Silver jubilee of Queen Elizabeth celebrated with fireworks?
+1977
+10
+
+Name the Year: Simon Bolivar named president of Peru?
+1823
+10
+
+Name the Year: Simon Bolivar, freed 6 Latin American republics from Spanish rule, born in?
+1783
+10
+
+Name the Year: Simon de Montfort, English baron, dies in battle?
+1265
+10
+
+Name the Year: Simon Le Bon, rocker (Duran Duran), born in?
+1958
+10
+
+Name the Year: Simone De Beauvoir, writer, born in?
+1908
+10
+
+Name the Year: Singapore gained independence from Malaysia (National Day)?
+1965
+10
+
+Name the Year: Singer Nat Cole attacked on stage of Birmingham theater by whites?
+1956
+10
+
+Name the Year: Singer Otis Redding dies in plane crash at 26?
+1967
+10
+
+Name the Year: Sino-Portuguese treaty recognizes Portugal's control of Macao?
+1887
+10
+
+Name the Year: Siobhan Fahey rocker (Bananarama), born in?
+1957
+10
+
+Name the Year: Sioux Indian leader Sitting Bull, surrenders to federal troops?
+1881
+10
+
+Name the Year: Siouxsie [Susan Ballion], (Siouxsie & the Bandshee-Wild Thing), born in?
+1957
+10
+
+Name the Year: Sir Alec Guiness, thespian (credits-too-numerous-to-mention), born in?
+1914
+10
+
+Name the Year: Sir Alexander Fleming, cashed in on penicillin (Nobel 1954), born in?
+1881
+10
+
+Name the Year: Sir Ambrose Fleming, inventor of the diode?
+1849
+10
+
+Name the Year: Sir Apirana Turupa Ngata Kawaka NZ, Maori political/cultural leader, born in?
+1874
+10
+
+Name the Year: Sir Arthur Conan Doyle UK, brought Sherlock Holmes to life twice, born in?
+1859
+10
+
+Name the Year: Sir Arthur Sullivan, London, England, of Gilbert & Sullivan fame, born in?
+1842
+10
+
+Name the Year: Sir Austen Chamberlain, British foreign secretary (Nobel 1925)?
+1863
+10
+
+Name the Year: Sir Benjamin Lee, Baronet Guinness, Irish brewer, Dublin mayor?
+1798
+10
+
+Name the Year: Sir Bob Geldof pop musician (Boomtown Rats, Band Aid), born in?
+1951
+10
+
+Name the Year: Sir Charles Lyell, geologist?
+1797
+10
+
+Name the Year: Sir Christopher Wren, England, astronomer/great architect, born in?
+1632
+10
+
+Name the Year: Sir Edmond Halley, astronomer, first to calculate a comet's orbit?
+1656
+10
+
+Name the Year: Sir Edmund Barton 1st PM of Australia (1900-03), born in?
+1849
+10
+
+Name the Year: Sir Edmund Hillary one of 1st 2 men to scale Mt Everest, born in?
+1919
+10
+
+Name the Year: Sir Edmund Hillary reached South Pole overland?
+1958
+10
+
+Name the Year: Sir Ernest Shackleton, Antarctic explorer, died aboard his ship?
+1922
+10
+
+Name the Year: Sir Francis Drake English navigator, dies at about 50?
+1595
+10
+
+Name the Year: Sir Francis Drake lands on the coast of California?
+1579
+10
+
+Name the Year: Sir Frank Dyson, proved Einstein right about light bent by gravity, born in?
+1868
+10
+
+Name the Year: Sir Georg Solti, conductor, born in?
+1912
+10
+
+Name the Year: Sir Henry Havelock British soldier (War in Afghanistan 1838-39), born in?
+1795
+10
+
+Name the Year: Sir Henry Royce, one of the founders of Rolls-Royce, born in?
+1863
+10
+
+Name the Year: Sir Humphrey Davy of London patents the miner's safety lamp?
+1815
+10
+
+Name the Year: Sir Humphry Davy, discovered several chemical elements?
+1778
+10
+
+Name the Year: Sir Isaac Newton died in London?
+1727
+10
+
+Name the Year: Sir Issac Newton, scientist, discovered laws of gravity?
+1643
+10
+
+Name the Year: Sir John Gielgud, actor, singer, born in?
+1904
+10
+
+Name the Year: Sir John Hawkins, wrote first history of music in English, born in?
+1719
+10
+
+Name the Year: Sir Julian Huxley London, biologist/philosopher, Darwin's Bulldog, born in?
+1887
+10
+
+Name the Year: Sir Julius Benedict, composer?
+1804
+10
+
+Name the Year: Sir Laurence Olivier acting great, dies at 82?
+1989
+10
+
+Name the Year: Sir Martin Ryle, British radio astronomer, astronomer royal 1972-82, born in?
+1918
+10
+
+Name the Year: Sir Max Beerbohm England, caricaturist/writer/wit (Saturday Review), born in?
+1872
+10
+
+Name the Year: Sir Noel Coward, playwright, born in?
+1899
+10
+
+Name the Year: Sir Richard Attenborough actor/director (Gandhi, Young Winston), born in?
+1923
+10
+
+Name the Year: Sir Richard Burton, explorer, born in?
+1821
+10
+
+Name the Year: Sir Richard Hadlee Christchurch, NZ, New Zealand Cricket Legend, born in?
+1951
+10
+
+Name the Year: Sir Robert Walpole (Whig), British prime minister, 1721-42?
+1676
+10
+
+Name the Year: Sir Rowland Hill introduced 1st adhesive postage stamp (1840)?
+1795
+10
+
+Name the Year: Sir Samuel Cunard, founded first regular Atlantic steamship line?
+1787
+10
+
+Name the Year: Sir Stamford Raffles 1st lands in Singapore?
+1819
+10
+
+Name the Year: Sir Stamford Raffles founded Singapore, born in?
+1781
+10
+
+Name the Year: Sir Thomas Beecham, English composer, founded London Philharmonic, born in?
+1879
+10
+
+Name the Year: Sir Thomas Herriot introduces potatoes to England, from Colombia?
+1586
+10
+
+Name the Year: Sir Thomas Lipton tea magnate (Lipton Tea), born in?
+1850
+10
+
+Name the Year: Sir Thomas More executed in England for treason?
+1535
+10
+
+Name the Year: Sir Thomas More went on trial in England charged with treason?
+1535
+10
+
+Name the Year: Sir Thomas Pope, English politician, benefactor, dies at about 52?
+1559
+10
+
+Name the Year: Sir W.S. Gilbert, playwright (of Gilbert and Sullivan fame)?
+1836
+10
+
+Name the Year: Sir Walter Raleigh brings 1st tobacco to England from Virginia?
+1586
+10
+
+Name the Year: Sir Walter Raleigh is executed in London?
+1618
+10
+
+Name the Year: Sir Walter Scott, Scottish novelist, poet (Lady of Lake, Ivanhoe), born in?
+1771
+10
+
+Name the Year: Sir Watson-Watt granted a patent for RADAR?
+1935
+10
+
+Name the Year: Sir William Blackstone, English jurist (Blackstone's Commentaries), born in?
+1723
+10
+
+Name the Year: Sir William Herschel discovers Saturn's moon Enceladus?
+1789
+10
+
+Name the Year: Sir William Herschel, astronomer discovered Uranus?
+1738
+10
+
+Name the Year: Sir William Parry, British Arctic explorer?
+1790
+10
+
+Name the Year: Sir Winston Churchill (C), Brit. PM (1940-45, 1951-55) (Nobel 1953)?
+1874
+10
+
+Name the Year: Six Persian Gulf nations double their oil prices?
+1973
+10
+
+Name the Year: Sixth Space Shuttle Mission - Challenger 1 returns to Earth?
+1983
+10
+
+Name the Year: Skylab 4 and its crew are launched into earth orbit (The final Skylab mission)?
+1973
+10
+
+Name the Year: Skylab 4's astronauts land?
+1974
+10
+
+Name the Year: Skylab launched, the 1st Space Station?
+1973
+10
+
+Name the Year: Slave trade abolished in DC, but slavery allowed to continue?
+1850
+10
+
+Name the Year: Slavery is abolished in the US territories?
+1862
+10
+
+Name the Year: Slavery outlawed in England?
+1772
+10
+
+Name the Year: Slaves revolt in Haiti (later suppressed)?
+1790
+10
+
+Name the Year: Smokey Robinson, singer, born in?
+1940
+10
+
+Name the Year: Society of Jesus (Jesuits) founded by Ignatius Loyola?
+1540
+10
+
+Name the Year: Solidarity grants legal status in Poland?
+1989
+10
+
+Name the Year: Solomon Is gained independence from Britain (National Day)?
+1978
+10
+
+Name the Year: Somerset Maugham, poet, born in?
+1874
+10
+
+Name the Year: Son of Sam shot to death 20-year-old Stacy Moskowitz?
+1977
+10
+
+Name the Year: Sonny and Cher resumes on TV despite real life divorce?
+1976
+10
+
+Name the Year: Sophia Loren (in Rome, Italy), actor (Desire Under the Elms, Black Orchid)?
+1934
+10
+
+Name the Year: Sophia, regent of Russia (1682-89), born in?
+1657
+10
+
+Name the Year: South Africa became an independent republic?
+1961
+10
+
+Name the Year: South Africa begins implementing apartheid; no mixed marriages?
+1949
+10
+
+Name the Year: South Africa begins trial of Nelson Mandela and 8 others on conspiracy?
+1963
+10
+
+Name the Year: South Africa elects a nationalist govt with apartheid policy?
+1948
+10
+
+Name the Year: South Africa passes Group Areas Act segregating races?
+1950
+10
+
+Name the Year: South African Bishop Desmond Tutu received his Nobel Peace Prize?
+1984
+10
+
+Name the Year: South African prisoner Nelson Mandela sees his wife for 1st time in 22 years?
+1984
+10
+
+Name the Year: South African women demonstrate against pass laws?
+1956
+10
+
+Name the Year: South Carolina passes Ordinance of Nullification?
+1832
+10
+
+Name the Year: South Korea liberated from Japanese rule. (Liberation Day in South Korea), born in?
+1945
+10
+
+Name the Year: South Korean boxer Duk Koo Kim was legally declared dead?
+1982
+10
+
+Name the Year: South Korean President Park Chung-Hee escaped an assassination?
+1974
+10
+
+Name the Year: South Korean voters overwhelmingly approved a new constitution?
+1987
+10
+
+Name the Year: South Pole first reached, by Norwegian Roald Amundsen?
+1911
+10
+
+Name the Year: Soviet author Alexander I. Solzhenitsyn awarded Nobel Prize for Lit?
+1970
+10
+
+Name the Year: Soviet Luna 3, 1st successful photographic spacecraft, impacts Moon?
+1959
+10
+
+Name the Year: Soviet Lunik 2 becomes first human-made object to crash on moon?
+1959
+10
+
+Name the Year: Soviet Mars 3 is 1st to soft land on Mars?
+1971
+10
+
+Name the Year: Soviet novelist Boris Pasternak, wins Nobel Prize for Literature?
+1958
+10
+
+Name the Year: Soviet Party Congress unanimously approves a resolution removing Josef Stalin's body from Lenin's tomb in Red Square?
+1961
+10
+
+Name the Year: Soviet Premier Alexei Kosygin resigns, due to illness?
+1980
+10
+
+Name the Year: Soviet Premier Alexei Kosygin suffered a fatal heart attack at 76?
+1980
+10
+
+Name the Year: Soviet Premier Khrushchev arrives in US to begin a 13-day visit?
+1959
+10
+
+Name the Year: Soviet space station Salyut 6 launched into Earth orbit?
+1977
+10
+
+Name the Year: Soviet spacecraft Venera 9 lands on Venus?
+1975
+10
+
+Name the Year: Soviet troops enter Berlin?
+1945
+10
+
+Name the Year: Soviet troops invade Czechoslovakia during WW II?
+1944
+10
+
+Name the Year: Soviet troops invade Yugoslavia?
+1944
+10
+
+Name the Year: Soviet Union agrees to allow teaching of Hebrew?
+1988
+10
+
+Name the Year: Soviet Union and Saudi Arabia restore diplomatic ties?
+1990
+10
+
+Name the Year: Soviet Union annexes Estonia, Latvia, Lithuania?
+1940
+10
+
+Name the Year: Soviet Union conducts secret test of its 1st hydrogen bomb?
+1953
+10
+
+Name the Year: Soviet Union invades Poland during WW II?
+1939
+10
+
+Name the Year: Soviet Union launches Phobos 1 to probe Martian moon (unsuccessful)?
+1988
+10
+
+Name the Year: Soviet unmanned Space Shuttle completes 2 day test, lands just 8 miles from launch site in central Asia?
+1988
+10
+
+Name the Year: Soviet Venera 4 becomes the 1st probe to send data back from Venus?
+1967
+10
+
+Name the Year: Soviet-German treaty agree on 4th partition of Poland (WW II) and gives Lithuania to the USSR?
+1939
+10
+
+Name the Year: Soviets announce they broke the long Nazi siege of Leningrad?
+1943
+10
+
+Name the Year: Soviets blockades Berlin from the west?
+1948
+10
+
+Name the Year: Soviets launch first unmanned Space Shuttle in two-day test?
+1988
+10
+
+Name the Year: Soyuz 12 is launched?
+1973
+10
+
+Name the Year: Soyuz 13 launched into earth orbit for 8 days?
+1973
+10
+
+Name the Year: Soyuz 14 is launched?
+1974
+10
+
+Name the Year: Soyuz 15 carries 2 cosmonauts to space station Salyut 3?
+1974
+10
+
+Name the Year: Soyuz 17 is launched?
+1975
+10
+
+Name the Year: Soyuz 18B is launched?
+1975
+10
+
+Name the Year: Soyuz 19 and Apollo 18 launched; rendezvous 2 days later?
+1975
+10
+
+Name the Year: Soyuz 22 returns to Earth?
+1976
+10
+
+Name the Year: Soyuz 23 launched to Salyut 6, but return without docking?
+1976
+10
+
+Name the Year: Soyuz 23 returns to Earth?
+1976
+10
+
+Name the Year: Soyuz 24 is launched?
+1977
+10
+
+Name the Year: Soyuz 24 returns to Earth?
+1977
+10
+
+Name the Year: Soyuz 26 carries 2 cosmonauts to Salyut 6 space station?
+1977
+10
+
+Name the Year: Soyuz 26 returns to Earth?
+1978
+10
+
+Name the Year: Soyuz 28 is launched?
+1978
+10
+
+Name the Year: Soyuz 28 returns to Earth?
+1978
+10
+
+Name the Year: Soyuz 30 is launched?
+1978
+10
+
+Name the Year: Soyuz 30 spacecraft touches down in Soviet Kazakhstan?
+1978
+10
+
+Name the Year: Soyuz 31 is launched?
+1978
+10
+
+Name the Year: Soyuz 33 returns to Earth?
+1979
+10
+
+Name the Year: Soyuz 35 is launched?
+1980
+10
+
+Name the Year: Soyuz 37 crew returns to Earth aboard Soyuz 36?
+1980
+10
+
+Name the Year: Soyuz 37 ferries 2 cosmonauts (1 Vietnamese) to Salyut 6?
+1980
+10
+
+Name the Year: Soyuz 38 carries 2 cosmonauts (1 Cuban) to Salyut 6 space station?
+1980
+10
+
+Name the Year: Soyuz 38 returns to Earth?
+1980
+10
+
+Name the Year: Soyuz 39 is launched - First Monoglian in space?
+1981
+10
+
+Name the Year: Soyuz 39 returns to Earth?
+1981
+10
+
+Name the Year: Soyuz 8 is launched?
+1969
+10
+
+Name the Year: Soyuz 9 returns to Earth?
+1970
+10
+
+Name the Year: Soyuz T-10 is launched?
+1984
+10
+
+Name the Year: Soyuz T-12 carries 3 cosmonauts to space station Salyut 7?
+1984
+10
+
+Name the Year: Soyuz T-2 is launched?
+1980
+10
+
+Name the Year: Soyuz T-5 returns to Earth, 211 days after take-off?
+1982
+10
+
+Name the Year: Soyuz T-6 is launched?
+1982
+10
+
+Name the Year: Soyuz T-7 returns to Earth?
+1982
+10
+
+Name the Year: Soyuz T-9 is launched?
+1983
+10
+
+Name the Year: Soyuz T-9 returns to Earth, 149 days after take-off?
+1983
+10
+
+Name the Year: Space Mountain opens (Disneyland)?
+1975
+10
+
+Name the Year: Space shuttle astronauts snared a satellite first space salvage?
+1984
+10
+
+Name the Year: Space shuttle Atlantis makes second flight, carries 7 (1 Mexican)?
+1985
+10
+
+Name the Year: Space shuttle Enterprise makes 1st atmospheric flight?
+1977
+10
+
+Name the Year: Space Shuttle STS 37 (Atlantis 8) launched?
+1991
+10
+
+Name the Year: Spain abolishes slavery in Cuba?
+1886
+10
+
+Name the Year: Spain became the 16th member of North Atlantic Treaty Organization?
+1982
+10
+
+Name the Year: Spain ceded Florida to the United States?
+1821
+10
+
+Name the Year: Spain cedes Guam to US?
+1898
+10
+
+Name the Year: Spain cedes the Falkland Islands to Britain?
+1771
+10
+
+Name the Year: Spain declares war on U.S., rejecting ultimatum to withdraw from Cuba?
+1898
+10
+
+Name the Year: Spain grants Dominican Rep independence?
+1844
+10
+
+Name the Year: Spain's Gen. Francisco Franco dies in Madrid at 82?
+1975
+10
+
+Name the Year: Spanish Armada sails to overthrow England's Queen Elizabeth I?
+1588
+10
+
+Name the Year: Spanish Armada sets sail for Lisbon, bound to England?
+1588
+10
+
+Name the Year: Spanish Civil War began as Gen. Francisco Franco led uprising?
+1936
+10
+
+Name the Year: Spanish Civil War end as Madrid fell to Francisco Franco?
+1939
+10
+
+Name the Year: Spanish conquerors captured Mexico City from Aztecs?
+1521
+10
+
+Name the Year: Spanish navigator Juan de Elcano returns to Spain, completes 1st circumnavigation of globe, expedition begins under Ferdinand Magellan?
+1522
+10
+
+Name the Year: Spanish-American War begins?
+1898
+10
+
+Name the Year: Spanish-American War ends ____ U.S. acquires Guam, Puerto Rico, the Phillipines, and Cuba from Spain
+1898
+10
+
+Name the Year: Spanish-American War ends?
+1900
+10
+
+Name the Year: Spanky McFarland, actor, little rascal?
+1928
+10
+
+Name the Year: Speech by Khrushchev blasting Stalin made public?
+1956
+10
+
+Name the Year: Spencer Perceval (Tory), British PM (1809-12)?
+1762
+10
+
+Name the Year: Spencer Tracy actor (Father's Little Dividend, Adam's Rib), born in?
+1900
+10
+
+Name the Year: Spencer Tracy actor (Guess Who's Coming to Dinner), born in?
+1900
+10
+
+Name the Year: Spike Lee, director, actor (She's Gotta Have It, Jungle Fever), born in?
+1957
+10
+
+Name the Year: Spinach growers of Crystal City, TX, erect a statue of Popeye?
+1937
+10
+
+Name the Year: Spokeswoman for Rock Hudson confirmed he had AIDS?
+1985
+10
+
+Name the Year: Sputnik 1 destroyed on reentry?
+1958
+10
+
+Name the Year: Sputnik 5 carries 3 dogs into orbit (later recovered alive)?
+1960
+10
+
+Name the Year: St Adrian III begins his reign as Catholic Pope?
+884
+10
+
+Name the Year: St Agapitus I begins his reign as Catholic Pope?
+535
+10
+
+Name the Year: St Benedict II ends his reign as Catholic Pope?
+685
+10
+
+Name the Year: St Boniface IV ends his reign as Catholic Pope?
+615
+10
+
+Name the Year: St Celestine I ends his reign as Catholic Pope?
+432
+10
+
+Name the Year: St Christopher-Nevis gained independence from Britain (Nat'l Day)?
+1983
+10
+
+Name the Year: St Colette abbess/reformer (Poor Clares), born in?
+1381
+10
+
+Name the Year: St Eugene I begins his reign as Catholic Pope?
+654
+10
+
+Name the Year: St Gregory I begins his reign as Catholic Pope?
+590
+10
+
+Name the Year: St Gregory II begins his reign as Catholic Pope?
+715
+10
+
+Name the Year: St Gregory VII, pope (1073-85), dies (birth date unknown)?
+1085
+10
+
+Name the Year: St Hormisdas begins his reign as Catholic Pope?
+514
+10
+
+Name the Year: St John I begins his reign as Catholic Pope?
+523
+10
+
+Name the Year: St John I ends his reign as Catholic Pope?
+526
+10
+
+Name the Year: St Leo II begins his reign as Catholic Pope?
+682
+10
+
+Name the Year: St Leo II ends his reign as Catholic Pope?
+683
+10
+
+Name the Year: St Nicholas I (the Great), pope (858-67) dies?
+867
+10
+
+Name the Year: St Patrick - the patron saint of Ireland - died in Saul?
+461
+10
+
+Name the Year: St Paul I begins his reign as Catholic Pope?
+757
+10
+
+Name the Year: St Paul I ends his reign as Catholic Pope?
+767
+10
+
+Name the Year: St Petersburg, Russia changes name to Petrograd?
+1914
+10
+
+Name the Year: St Pius X, 257th Roman Catholic pope (1903-14), born in?
+1835
+10
+
+Name the Year: St Pontianus begins his reign as Catholic Pope?
+230
+10
+
+Name the Year: St Sava, son of Serbia's king, dies?
+1237
+10
+
+Name the Year: St Sergius I ends his reign as Catholic Pope?
+701
+10
+
+Name the Year: St Stephen I begins his reign as Catholic Pope?
+254
+10
+
+Name the Year: St Vincent and the Grenadines becomes independent of UK (Nat'l Day)?
+1979
+10
+
+Name the Year: St Vincent and the Grenadines gains associated status with Britain?
+1969
+10
+
+Name the Year: St. Augustine of Hippo (in Numidia, Algeria)?
+354
+10
+
+Name the Year: St. Clare of Assissi declared patron saint of television?
+1958
+10
+
+Name the Year: St. David's Day?
+1753
+10
+
+Name the Year: St. Edward the Confessor, died?
+1066
+10
+
+Name the Year: St. Frances Xavier Cabrini (Mother Cabrini), first US saint?
+1850
+10
+
+Name the Year: St. Francis Xavier, missionary?
+1506
+10
+
+Name the Year: St. George's Day?
+1753
+10
+
+Name the Year: St. Ignatius of Loyola, founder of the Society of Jesus died in Rome?
+1556
+10
+
+Name the Year: St. Louis Police try a new investigation method - fingerprints?
+1904
+10
+
+Name the Year: St. Patrick's Day first celebrated in New York City, at the Crown and Thistle Tavern?
+1756
+10
+
+Name the Year: St. Philip of Moscow martyred by Ivan the Terrible?
+1569
+10
+
+Name the Year: St. Thorfinn, Norwegian Bishop, Died?
+1285
+10
+
+Name the Year: St. Valentine's Day Massacre in Chicago, 7 gangsters killed by rivals disguised as cops (The Night Chicago Died)?
+1929
+10
+
+Name the Year: St. Vladimir's Day?
+1918
+10
+
+Name the Year: Stan Freberg, writer, producer, comedian, cartoon-voice, born in?
+1926
+10
+
+Name the Year: Stan Laurel comedian (Laurel & Hardy), born in?
+1895
+10
+
+Name the Year: Stanislaw Lem, Polish science-fiction writer, born in?
+1921
+10
+
+Name the Year: Stanley Kubrick, director (2001, Dr Strangelove, Lolita), born in?
+1928
+10
+
+Name the Year: Star in Cygnus goes nova becoming 4th brightest in sky?
+1975
+10
+
+Name the Year: Star of India and other jewels are stolen in NY?
+1964
+10
+
+Name the Year: Start of Islamic calendar?
+638
+10
+
+Name the Year: Start of USSR experimental calender?
+1929
+10
+
+Name the Year: Statue of Liberty arrived in NYC aboard the French ship `Isere'?
+1885
+10
+
+Name the Year: Statue of Liberty presented to US in Paris?
+1884
+10
+
+Name the Year: Stefan Edberg, Sweden, tennis player (Wimbeldon 1988), born in?
+1966
+10
+
+Name the Year: Stefanie Powers (in Hollywood, CA), actor (Hart to Hart)?
+1942
+10
+
+Name the Year: Steffi Graf, West Germany, tennis player (Grand Slam 1988), born in?
+1969
+10
+
+Name the Year: Stephane Beacham, actrss, born in?
+1947
+10
+
+Name the Year: Stephanie Zimbalist NYC, actress (Remington Steele, Centennial), born in?
+1956
+10
+
+Name the Year: Stephen Crane, poet (Red Badge of Courage)?
+1871
+10
+
+Name the Year: Stephen II ends his reign as Catholic Pope?
+757
+10
+
+Name the Year: Stephen IV begins his reign as Catholic Pope?
+816
+10
+
+Name the Year: Stephen King suspense writer (Shining, Kujo), born in?
+1947
+10
+
+Name the Year: Stephen Sondheim, composer, lyricist (West Side Story, A Little Night Music), born in?
+1930
+10
+
+Name the Year: Steve Jones runs Chicago Marathon in world record 2 h 8 m 5 s?
+1984
+10
+
+Name the Year: Steve McQueen, actor?
+1930
+10
+
+Name the Year: Steve Ptacek in Solar Challenger makes first solar-powered flight?
+1980
+10
+
+Name the Year: Steve Tyler, Aerosmith's lead singer, born in?
+1948
+10
+
+Name the Year: Steve Winwood England, rocker (A Higher Love), born in?
+1948
+10
+
+Name the Year: Steve Wozniak cofounded Apple Computer, born in?
+1950
+10
+
+Name the Year: Steven Jobs, co-founder of Apple Computer, born in?
+1955
+10
+
+Name the Year: Steven Spielberg, director (Jaws, Raiders of the Lost Ark, etc.)?
+1947
+10
+
+Name the Year: Stevie Nicks Phoenix Az, rocker (Fleetwood Mac-Bella Donna), born in?
+1946
+10
+
+Name the Year: Stevie Nicks, rocker (Fleetwood Mac), born in?
+1948
+10
+
+Name the Year: Stevie Wonder, singer/songwriter (You are The Sunshine of My Love), born in?
+1950
+10
+
+Name the Year: Stewart Copeland, drummer (Police), composer?
+1952
+10
+
+Name the Year: Sting, musician (Police), actor (Dune)?
+1951
+10
+
+Name the Year: Stockard Channing (in New York), born in?
+1944
+10
+
+Name the Year: Stones at Stonehenge, England, sold at auction for ?6,600?
+1915
+10
+
+Name the Year: Sue Press is 1st woman golfer to hit consecutive holes-in one?
+1977
+10
+
+Name the Year: Suez Canal reopens (after 6 Day War caused it to close)?
+1975
+10
+
+Name the Year: Sugar Ray Leonard regains WBC welterweight championship?
+1980
+10
+
+Name the Year: Sultan of Brunei promulgates a constitution?
+1959
+10
+
+Name the Year: Sultan of Turkey Abdul Hamid II is overthrown?
+1909
+10
+
+Name the Year: Summer Olympics opened in Munich, West Germany?
+1972
+10
+
+Name the Year: Summer Olympics opens in London?
+1948
+10
+
+Name the Year: Sun Yat-sen, father of modern China (ROC and PRC)?
+1866
+10
+
+Name the Year: Superman Comics launched?
+1938
+10
+
+Name the Year: Supernova observed by Chinese and Japanese astronomers?
+1181
+10
+
+Name the Year: Supernova seen in Cassiopia?
+1181
+10
+
+Name the Year: Supersonic Concorde, 1st commercial flights, by Britain & France?
+1976
+10
+
+Name the Year: Supreme Court backs the one-man-one-vote apportionment of seats in state legislatures?
+1962
+10
+
+Name the Year: Supreme Court Justice Potter Stewart retires. (replaced by Sandra Day O'Connor first woman on the high court)?
+1981
+10
+
+Name the Year: Supreme Court overturns draft evasion conviction of Muhammad Ali?
+1971
+10
+
+Name the Year: Supreme Court unanimously rules Nixon must turn over Watergate tapes?
+1974
+10
+
+Name the Year: Surrogate Baby M case begins in Hackensack, NJ?
+1987
+10
+
+Name the Year: Susan 'Tuesday' Weld (in New York City), actor?
+1943
+10
+
+Name the Year: Susan B. Anthony fined $100 for attempting to vote for President?
+1873
+10
+
+Name the Year: Susan B. Anthony, Woman's suffaregette, born in?
+1820
+10
+
+Name the Year: Susan Dey, actor (First Love, LA Law), born in?
+1952
+10
+
+Name the Year: Susan Hayward dies at age 56?
+1975
+10
+
+Name the Year: Susan Sarandon (in New York City), actor (Great Waldo Pepper)?
+1946
+10
+
+Name the Year: Susan Sontag NYC, author/film director (1966 Pol Award), born in?
+1933
+10
+
+Name the Year: Susannah York (in London, England), actress, born in?
+1941
+10
+
+Name the Year: Suzannah York, actress, born in?
+1941
+10
+
+Name the Year: Suzanne Vega rocker (My Name is Luka), born in?
+1959
+10
+
+Name the Year: Suzi Quatro (in Detroit, Michigan), musician, born in?
+1950
+10
+
+Name the Year: Svetlana Alliluyeva (Josef Stalin's daughter) defects in NYC?
+1967
+10
+
+Name the Year: Svetlana Savitskaya accompanies Vladimir Dzhanibekov on EVA outside Salyut 7, becoming first woman to walk in space?
+1984
+10
+
+Name the Year: Svetlana Stalina, daughter of Josef Stalin, born in?
+1926
+10
+
+Name the Year: Swaziland gained independence from Britain (National Day)?
+1968
+10
+
+Name the Year: Sweden's constitution adopted?
+1809
+10
+
+Name the Year: Sydney General Post Office opens?
+1874
+10
+
+Name the Year: Sydney Greenstreet actor (Maltese Falcon), dies at 74?
+1954
+10
+
+Name the Year: Sydney Poitier, actor, born in?
+1924
+10
+
+Name the Year: Sylvester Stallone NYC, actor/director (Rocky, Rambo, Cobra), born in?
+1946
+10
+
+Name the Year: Synthetic rubber first produced?
+1930
+10
+
+Name the Year: Syzygy: 8 of 9 planets aligned on same side of sun?
+2161
+10
+
+Name the Year: T. E. Lawrence, writer (aka Lawrence of Arabia), born in?
+1888
+10
+
+Name the Year: T. H. White, writer, born in?
+1915
+10
+
+Name the Year: T.E. Lawrence (of Arabia) dies in a motorcycle crash?
+1935
+10
+
+Name the Year: T.S. Eliot, Anglican, playwright (Waste Land) (Nobel 1948), born in?
+1888
+10
+
+Name the Year: Taj Mahal NYC, singer/songwriter (The Real Thing), born in?
+1942
+10
+
+Name the Year: Takamiyama [Jesse Kuhaulua] Hawaii, 1st non-Japanese sumo champion, born in?
+1944
+10
+
+Name the Year: Talia Shire, actor (Rocky (as Adrian))?
+1943
+10
+
+Name the Year: Talleyrand, French statesman and diplomat, born in?
+1754
+10
+
+Name the Year: Tallulah Bankhead, Huntsville Ala, actress (Lifeboat, Die Die Darling), born in?
+1903
+10
+
+Name the Year: Tancredo Neves becomes 1st elected president of Brazil in 21 years?
+1985
+10
+
+Name the Year: Tanganyika & Zanzibar unite to form Tanzania (Tanzanian Union Day)?
+1964
+10
+
+Name the Year: Tanganyika becomes independent within the British Commonwealth?
+1961
+10
+
+Name the Year: Tanganyika gained independence from Britain?
+1961
+10
+
+Name the Year: Tanganyika granted full internal self-government by Britain?
+1961
+10
+
+Name the Year: Tape measure enclosed in a circular case patented?
+1868
+10
+
+Name the Year: Tarzan of the Apes, according to Edgar Rice Burroughs' novel?
+1888
+10
+
+Name the Year: Taufa'ahau Tupou IV, king of Tonga (1965-?), born in?
+1918
+10
+
+Name the Year: Ted Cassidy Pittsburgh, actor (Lurch-Addams Family), dies at 46?
+1979
+10
+
+Name the Year: Ted Danson, SD Calif, actor (Sam Malone-Cheers, 3 Men & a Baby), born in?
+1947
+10
+
+Name the Year: Ted Hughes, English poet laureate (1984- ), born in?
+1930
+10
+
+Name the Year: Ted Turner manages an Atlanta Braves game?
+1977
+10
+
+Name the Year: Ted Turner's Cable News Network (CNN) begins broadcasting?
+1980
+10
+
+Name the Year: Teenager fires 6 blanks at Queen Elizabeth II?
+1981
+10
+
+Name the Year: Teiichi Igarashi Japan, climed Mt Fuji at age 99, born in?
+1886
+10
+
+Name the Year: Telescope maker Alvin Clark discovers dwarf companion of Sirius?
+1862
+10
+
+Name the Year: Television is first demonstrated by John Logie Baird in London?
+1926
+10
+
+Name the Year: Telly Savalas Garden City NJ, actor (Acapulco, Kojak), born in?
+1924
+10
+
+Name the Year: Telstar, first geosynchronous communications satellite, launched?
+1962
+10
+
+Name the Year: Ten Nazi leaders hanged as war criminals after Nuremberg trials?
+1946
+10
+
+Name the Year: Tennessee law prohibits teaching of evolution?
+1925
+10
+
+Name the Year: Tennessee Williams (in Columbus, Miss.), playwright, born in?
+1911
+10
+
+Name the Year: Tennis is 1st mentioned in an English sporting magazine?
+1793
+10
+
+Name the Year: Tens of thousands of people in Peru died in an earthquake?
+1970
+10
+
+Name the Year: Tenth Space Shuttle Mission - Challenger 4 is launched?
+1984
+10
+
+Name the Year: Tenth Space Shuttle Mission - Challenger 4 returns to Earth?
+1984
+10
+
+Name the Year: Terrence Trent D'Arby, musician, born in?
+1962
+10
+
+Name the Year: Territory of Guam created?
+1950
+10
+
+Name the Year: Terry Thomas England, actor (It's a Mad, Mad, Mad, Mad World), born in?
+1911
+10
+
+Name the Year: Texas declares its independence from Mexico?
+1836
+10
+
+Name the Year: The 'Orient Express' begins its first run, linking Turkey to Europe by rail?
+1883
+10
+
+Name the Year: The 17th Olympic games close in Rome?
+1960
+10
+
+Name the Year: The Alamo falls. (Remember it!)?
+1836
+10
+
+Name the Year: The Allies, along with Free France declare war on Japan?
+1941
+10
+
+Name the Year: The Arab oil embargo begins. It will last until March, 1974?
+1973
+10
+
+Name the Year: The assault on Anzio begins?
+1944
+10
+
+Name the Year: The Battle of Britain began as Nazi forces attacked by air?
+1940
+10
+
+Name the Year: The Beatles have their last recording session at EMI studios?
+1970
+10
+
+Name the Year: The Berlin Blockade and Berlin Airlift begin?
+1948
+10
+
+Name the Year: The British parliament voted for the abolition of death penalty?
+1969
+10
+
+Name the Year: The Bulgarian Government adopts a Communist Constitution?
+1947
+10
+
+Name the Year: The city of Sydney inaugurates steam motor tram route?
+1879
+10
+
+Name the Year: The crew of Soyuz 32 returns to Earth aboard Soyuz 34?
+1979
+10
+
+Name the Year: The Cullinan diamond, the world's largest, is found?
+1905
+10
+
+Name the Year: The dirigible Hindenburg explodes in flames at Lakehurst, NJ?
+1937
+10
+
+Name the Year: The Eastman Film Company manufactured the first commercial motion picture film?
+1885
+10
+
+Name the Year: The Equal Rights Amendment goes down to defeat?
+1982
+10
+
+Name the Year: The fab fours' first recording session under the name Beatles (they were formerly the Silver Beatles)?
+1962
+10
+
+Name the Year: The final episode of TV show MASH?
+1983
+10
+
+Name the Year: The first armored car is introduced?
+1920
+10
+
+Name the Year: The first auto repair shop opens in Boston, MA?
+1899
+10
+
+Name the Year: The first baseball game played in enclosed field in San Francisco, at 25th and Folsom?
+1868
+10
+
+Name the Year: The first beauty contest is held, in Spa, Belgium. The winner is an 18 year old girl from the West Indies?
+1888
+10
+
+Name the Year: The first commercial jet transport airplane built in US is tested (Boeing 707)?
+1954
+10
+
+Name the Year: The first dishwashing machine is marketed in Chicago?
+1889
+10
+
+Name the Year: The first guided missile launched from nuclear powered submarine is launched from the USS Halibut?
+1960
+10
+
+Name the Year: The first Jewish film and TV festival?
+1976
+10
+
+Name the Year: The first jukebox is installed, at a saloon in San Francisco?
+1889
+10
+
+Name the Year: The first newsboy in the US hired (Barney Flaherty), by the NY Sun?
+1833
+10
+
+Name the Year: The first one-way streets are established ____ in London
+1617
+10
+
+Name the Year: The first patent is granted for a fire escape ... a wicker basket on a pully and a chain, designed by a London watchmaker?
+1766
+10
+
+Name the Year: The first practical typewriter is finished by Italian Pellegrini Turri. He built it for a blind friend?
+1808
+10
+
+Name the Year: The first Spanish ship, 'San Carlos', enters San Francisco bay?
+1775
+10
+
+Name the Year: The first telephone call made by Alexander Graham Bell?
+1876
+10
+
+Name the Year: The flag of Israel is adopted?
+1948
+10
+
+Name the Year: The Fork is introduced to American dining by Gov. Winthrop?
+1630
+10
+
+Name the Year: The French philosopher Voltaire died?
+1778
+10
+
+Name the Year: The Gold Coast gained independence and takes the name Ghana?
+1957
+10
+
+Name the Year: The Holland Tunnel, first underwater vehicular tunnel, opened between New York and New Jersey?
+1927
+10
+
+Name the Year: The Hubble space telescope is brought on-line. Unfortunately, its mirror is slightly warped?
+1990
+10
+
+Name the Year: The Ice Cream Cone is invented?
+1904
+10
+
+Name the Year: The ill-fated revolt in Communist Hungary starts ____ The Prague Spring. It was later crushed by Soviet tanks
+1956
+10
+
+Name the Year: The Juliana, the first steam-powered ferryboat, begins operation?
+1811
+10
+
+Name the Year: The Louvre, in Paris, was opened to the public?
+1793
+10
+
+Name the Year: The match is patented?
+1836
+10
+
+Name the Year: The Mayflower departs from Plymouth, England with 102 pilgrims headed for the 'New World'?
+1620
+10
+
+Name the Year: The Mayflower sets sail from Plymouth with 102 Pilgrims?
+1620
+10
+
+Name the Year: The ocean liner Queen Elizabeth was launched at Glasgow?
+1938
+10
+
+Name the Year: The official news agency of the Soviet Union TASS was established?
+1925
+10
+
+Name the Year: The Panama Canal opened to traffic?
+1914
+10
+
+Name the Year: The Panama Canal opens for use?
+1913
+10
+
+Name the Year: The passing of Norton I, Emperor of the US, Protector of Mexico?
+1880
+10
+
+Name the Year: The pencil is invented?
+1895
+10
+
+Name the Year: The Prince of Wales, later to become King Edward VII, becomes the first British royalty to visit the United States?
+1860
+10
+
+Name the Year: The Queen of the Sandwich Islands (Hawaii) arrives in New York City, the first queen to visit the United States?
+1860
+10
+
+Name the Year: The Reshef - Israel's missile boat - is unveiled?
+1973
+10
+
+Name the Year: The RMS Titanic strikes an iceberg at 11:40 p.m?
+1912
+10
+
+Name the Year: The Roman politician, Cicero, is slain?
+43BC
+10
+
+Name the Year: The Salvation Army of England sends group to U.S. to begin welfare and religious activity here?
+1888
+10
+
+Name the Year: The soapie General Hospital tapes its 7,000th episode?
+1990
+10
+
+Name the Year: The Soviet Union invaded Austria during World War II?
+1945
+10
+
+Name the Year: The Soviet Union invades Finland over a border dispute?
+1939
+10
+
+Name the Year: The Soviet Union launched Sputnik III?
+1958
+10
+
+Name the Year: The Suez Canal opens?
+1869
+10
+
+Name the Year: The typewriter is patented?
+1829
+10
+
+Name the Year: The U.S. Navy launched the Vanguard 1 satellite?
+1958
+10
+
+Name the Year: The U.S. State Department starts requiring photographs for passports?
+1914
+10
+
+Name the Year: The UN Security Council voted 14-0, with the US abstaining, to condemn Israel's declaration that all of Jersualem was its capital?
+1980
+10
+
+Name the Year: The United Nations gets approval from the U.S. government for issuing postage stamps?
+1950
+10
+
+Name the Year: The US imposes an embargo on exports to Cuba?
+1960
+10
+
+Name the Year: The US-Canada border defined by the Webster-Ashburton Treaty?
+1842
+10
+
+Name the Year: The Uzbek SSR forms?
+1924
+10
+
+Name the Year: The Verrazanno Narrows Bridge (Brooklyn to Staten Island) opens, becoming the world's longest suspension bridge?
+1964
+10
+
+Name the Year: The wedding of Prince Charles and Lady Diana Spencer?
+1981
+10
+
+Name the Year: The yacht 'America' wins the first Royal Yacht Squadron Cup, now known as the America's Cup, at a regatta in England?
+1851
+10
+
+Name the Year: The Young Men's Christian Association founded in London?
+1844
+10
+
+Name the Year: Theodor Herzl, founded Zionist movement, born in?
+1840
+10
+
+Name the Year: Theodore Giesl (Dr. Seuss), author, born in?
+1904
+10
+
+Name the Year: Theodore Roosevelt 26th President of US (1901-09) (Nobel 1906), born in?
+1858
+10
+
+Name the Year: Theodore Roosevelt is shot in the chest in Milwaukee while campaigning for President with the Bull Moose Party?
+1912
+10
+
+Name the Year: Theophilus Van Kannel of Philadelphia receives a patent for his revolving door ____ described as a storm door structure
+1888
+10
+
+Name the Year: Third partition of Poland, between Austria, Prussia and Russia?
+1795
+10
+
+Name the Year: Third Space Shuttle Mission - Columbia 3 is launched?
+1982
+10
+
+Name the Year: Third Space Shuttle Mission - Columbia 3 returns to Earth?
+1982
+10
+
+Name the Year: Third test of the Space Shuttle Enterprise?
+1977
+10
+
+Name the Year: Thomas A Edison patents Kinetoscope, (produces moving pictures)?
+1887
+10
+
+Name the Year: Thomas Alva Edison (in New Jersey), inventor who lit up your life, born in?
+1847
+10
+
+Name the Year: Thomas Alva Edison inventor, dies in West Orange, NJ, at 84?
+1931
+10
+
+Name the Year: Thomas Alva Edison patents the phonograph?
+1878
+10
+
+Name the Year: Thomas Aquinas Day?
+1583
+10
+
+Name the Year: Thomas Beckett, archbishop, assassinated by 4 knights of King Henry II?
+1170
+10
+
+Name the Year: Thomas Cromwell King Henry VIII's chief minister, executed?
+1540
+10
+
+Name the Year: Thomas Davenport, invented the first commercially successful electric motor, born in?
+1802
+10
+
+Name the Year: Thomas Edison commercially perfects the light bulb?
+1879
+10
+
+Name the Year: Thomas Edison granted patent for an electric incandescent lamp?
+1880
+10
+
+Name the Year: Thomas Edison invents the Edisonphone, a sound recording device?
+1877
+10
+
+Name the Year: Thomas Edison patents motion picture camera?
+1891
+10
+
+Name the Year: Thomas Edison says Americans prefer silent movies over talkies?
+1926
+10
+
+Name the Year: Thomas Edison shows his 1st motion picture?
+1889
+10
+
+Name the Year: Thomas H. Gallaudet, pioneer of educating the deaf, born in?
+1787
+10
+
+Name the Year: Thomas Hardy, England, poet/novelist (Mayor of Casterbridge), born in?
+1840
+10
+
+Name the Year: Thomas Henry Huxley scientist/humanist/Darwinist, born in?
+1825
+10
+
+Name the Year: Thomas Paine publishes his first 'American Crisis' essay?
+1776
+10
+
+Name the Year: Thomas Paine, political essayist (Common Sense, Age of Reason), born in?
+1737
+10
+
+Name the Year: Thomas Selfridge becomes 1st fatality of powered flight?
+1908
+10
+
+Name the Year: Thomas Stearns (T.S.) Eliot, poet, died?
+1965
+10
+
+Name the Year: Thor Heyerdahl crosses the Atlantic on reed raft 'Ra'?
+1970
+10
+
+Name the Year: Thor Heyerdahl Norway, anthropologist/explorer (Kon Tiki, Aku-Aku), born in?
+1914
+10
+
+Name the Year: Thousands opposing Vietnam War tried to storm the Pentagon?
+1967
+10
+
+Name the Year: Three Japanese PFL terrorists kill 24, wound 72 at Tel Aviv's Lydda airport?
+1972
+10
+
+Name the Year: Three-man crew of Skylab II make safe splashdown in Pacific after 59 days?
+1973
+10
+
+Name the Year: Tibet abolishes serfdom?
+1959
+10
+
+Name the Year: Tibet is made an autonomous region of China?
+1965
+10
+
+Name the Year: Tide turns in Battle of Britain in WW II, RAF beats Luftwaffe?
+1940
+10
+
+Name the Year: Time magazine first published?
+1923
+10
+
+Name the Year: Timothy Dalton, actor, James Bond #4, born in?
+1956
+10
+
+Name the Year: Timothy Hutton, actor, born in?
+1960
+10
+
+Name the Year: Timothy Leary, psychologist, drug testing advocate, born in?
+1920
+10
+
+Name the Year: Tina Louise, actor (Gilligan's Island), born in?
+1934
+10
+
+Name the Year: Tina Turner (in Brownsville, Texas), singer, actor?
+1941
+10
+
+Name the Year: Tiny Tim, singer, born in?
+1930
+10
+
+Name the Year: Tippi Hedren Minnesota, actress (The Birds), born in?
+1935
+10
+
+Name the Year: TIROS I (Television and Infra-Red Observation Satellite) launched to improve weather prediction?
+1960
+10
+
+Name the Year: Titania & Oberon, moons of Uranus, discovered by William Herschel?
+1787
+10
+
+Name the Year: Tokyo incendiary raids, using B-29's, damage Imperial Palace?
+1945
+10
+
+Name the Year: Tokyo is opened for foreign trade?
+1867
+10
+
+Name the Year: Tom Berenger, actor, born in?
+1950
+10
+
+Name the Year: Tom Bosley, actor (Happy Days, Murder She Wrote)?
+1927
+10
+
+Name the Year: Tom Brokaw, journalist, born in?
+1940
+10
+
+Name the Year: Tom Cruise, Syracuse, New York, actor (Risky Business, Color of Money, Rainman), born in?
+1962
+10
+
+Name the Year: Tom Hanks, actor, born in?
+1956
+10
+
+Name the Year: Tom Jones, singer, born in?
+1940
+10
+
+Name the Year: Tom Petty, Florida, USA, singer, born in?
+1953
+10
+
+Name the Year: Tom Poston, comedian, actor (Newhart), born in?
+1921
+10
+
+Name the Year: Tom Selleck, actor (Lance-Rockford Files, Magnum PI), born in?
+1945
+10
+
+Name the Year: Tom Skerritt Detroit Mich, actor (Ryan's Four, Alien, Big Bad Mama), born in?
+1933
+10
+
+Name the Year: Tom Watson, Golfer?
+1949
+10
+
+Name the Year: Tomato is proven nonpoisonous?
+1820
+10
+
+Name the Year: Tommy Dorsey, band leader?
+1905
+10
+
+Name the Year: Tommy Lee drummer of Motley Crue marries Heather Locklear?
+1986
+10
+
+Name the Year: Tommy Lee Jones actor (Volcano, Batman Forever, Under Siege), born in?
+1946
+10
+
+Name the Year: Tony Curtis [Real Name Bernard Schwartz], Bronx New York, actor (Some Like it Hot), born in?
+1925
+10
+
+Name the Year: Tony Curtis, actor, born in?
+1925
+10
+
+Name the Year: Tony Randall, actor (The Odd Couple), born in?
+1920
+10
+
+Name the Year: Tony Sheridan and Beatles produce My Bonnie and The Saints?
+1962
+10
+
+Name the Year: Tortoise reportedly given to Tonga's king by Capt. Cook (1773), dies?
+1966
+10
+
+Name the Year: Total solar eclipse captured on a daguerreotype photograph?
+1851
+10
+
+Name the Year: Total solar eclipse is seen in Hawaii?
+1991
+10
+
+Name the Year: Townsend Speakman 1st sells fruit-flavored carbonated drinks (Phila)?
+1807
+10
+
+Name the Year: Traci Lords, actress, born in?
+1968
+10
+
+Name the Year: Transatlantic cable laid-Pres Buchanan spoke to Queen Victoria?
+1866
+10
+
+Name the Year: Transatlantic phone service begins between New York and London?
+1926
+10
+
+Name the Year: Transistor as a substitute for Radio tubes announced (Bell Labs)?
+1948
+10
+
+Name the Year: Transit of Earth as seen from Mars?
+2084
+10
+
+Name the Year: Transit of Venus (between Earth and Sun) will occur?
+2012
+10
+
+Name the Year: Transkei gained independence, not recognized outside of South Africa?
+1976
+10
+
+Name the Year: Travelers cheque patented?
+1891
+10
+
+Name the Year: Treaty banning atmospheric nuclear tests signed by US, UK, USSR?
+1963
+10
+
+Name the Year: Treaty of Aix-la-Chapelle, ends War of Austrian Succession?
+1748
+10
+
+Name the Year: Treaty of Aix-la-Chapelle, ends War of Devolution?
+1668
+10
+
+Name the Year: Treaty of Baden-French retain Alsace, Austria gets right bank of Rhine?
+1714
+10
+
+Name the Year: Treaty of Bardo, Tunisia becomes a French protectorate?
+1881
+10
+
+Name the Year: Treaty of Dardanelles was concluded between Britain and France?
+1809
+10
+
+Name the Year: Treaty of London constitutes Belgium an independent kingdom?
+1839
+10
+
+Name the Year: Treaty of Paris ends the French and Indian War?
+1763
+10
+
+Name the Year: Treaty of Paris ratifies; Spain cedes Puerto Rico to US?
+1899
+10
+
+Name the Year: Treaty of Shimonoseki signed, ends first Sino-Japanese War (1894-95)?
+1895
+10
+
+Name the Year: Treaty of Versailles and League of Nations rejected by U.S. Senate?
+1919
+10
+
+Name the Year: Treaty of Versailles ending WW I signed?
+1919
+10
+
+Name the Year: Trial of Mary, Queen of Scots, for conspiracy against Queen Elizabeth I, begins?
+1586
+10
+
+Name the Year: Trinidad and Tobago becomes a republic?
+1976
+10
+
+Name the Year: Trinidad and Tobago gain independence from Britain (National Day)?
+1962
+10
+
+Name the Year: Tripoli (Libya) passes from Turkish to Italian control?
+1912
+10
+
+Name the Year: Trotsky expelled from Soviet CP; Stalin becomes undisputed dictator?
+1927
+10
+
+Name the Year: Truman Capote author (In Cold Blood), dies?
+1984
+10
+
+Name the Year: Truman Capote, a short short story writer (In Cold Blood)?
+1924
+10
+
+Name the Year: Truman, Stalin and Churchill final Allied summit meeting of WWII?
+1945
+10
+
+Name the Year: Trygve Lie, first Secretary-General of UN (1946-52)?
+1896
+10
+
+Name the Year: Tsar Ivan IV defeats the False Dmitri, who claims to be the true tsar?
+1604
+10
+
+Name the Year: Tsar Nicholas II grants Russia a constitution?
+1905
+10
+
+Name the Year: Turkestan ASSR established in Russian SFSR?
+1921
+10
+
+Name the Year: Turkey cedes the island of Crete to the Egyptians?
+1832
+10
+
+Name the Year: Turkey declared in remnants of the Ottoman Empire?
+1921
+10
+
+Name the Year: Turkey invades Cyprus?
+1974
+10
+
+Name the Year: Turkey is proclaimed to have a republican government?
+1923
+10
+
+Name the Year: Turkey makes peace with Armenia?
+1921
+10
+
+Name the Year: Turkey switches from Arabic to Roman alphabet?
+1928
+10
+
+Name the Year: Turkish fleet defeated by Spanish and Italians in Battle of Lepanto?
+1571
+10
+
+Name the Year: Turkish siege of Malta broken by Maltese and Knights of St John?
+1565
+10
+
+Name the Year: Turks conquer Cairo?
+1517
+10
+
+Name the Year: TV game show scandal investigation starts?
+1958
+10
+
+Name the Year: Twiggy (Leslie Hornby) (in England), model, actor (Blues Brothers), born in?
+1949
+10
+
+Name the Year: Two workers killed in accident testing space shuttle Columbia?
+1981
+10
+
+Name the Year: Tyne Daly (in Madison, WI), actress (Cagney and Lacey), born in?
+1946
+10
+
+Name the Year: Tyrone Power actor (Mark of Zorro, Alexander's Ragtime Band), born in?
+1913
+10
+
+Name the Year: U. Thant, Burma, 3rd UN sec-genl (1962-72), born in?
+1909
+10
+
+Name the Year: U.N. General Assmebly allows for a Jewish state in Palestine?
+1947
+10
+
+Name the Year: U.S. 15th Amendment passes, guarantees right to vote regardless of race?
+1870
+10
+
+Name the Year: U.S. and Britain invade Sicily in WWII?
+1943
+10
+
+Name the Year: U.S. and Canada begin the use of standard time zones (standard time zones established by the railroads in both countries)?
+1883
+10
+
+Name the Year: U.S. and Philippine forces recaptured Corregidor?
+1945
+10
+
+Name the Year: U.S. Atomic Energy Commission confirmed?
+1947
+10
+
+Name the Year: U.S. backed Bay of Pigs invasion in Cuba. Ended in failure?
+1961
+10
+
+Name the Year: U.S. breaks relations with Cuba?
+1961
+10
+
+Name the Year: U.S. casts first veto in UN Security Council (Support England)?
+1970
+10
+
+Name the Year: U.S. Congress authorizes smallest U.S. silver coin, the 3-cent piece?
+1851
+10
+
+Name the Year: U.S. Congress backs war in Gulf?
+1991
+10
+
+Name the Year: U.S. Congress established Grand Canyon National Park in Arizona?
+1919
+10
+
+Name the Year: U.S. declares martial law in Dominican Republic?
+1916
+10
+
+Name the Year: U.S. ends participation in multinational peace force in Lebanon?
+1984
+10
+
+Name the Year: U.S. fighter jets force Egyptian plane carrying hijackers of Italian ship Achille Lauro to land in Italy, gunmen were placed in custody?
+1985
+10
+
+Name the Year: U.S. forces invade Korea by crossing the 38th parallel?
+1950
+10
+
+Name the Year: U.S. invades Nicaragua, later overthrows President Zelaya?
+1909
+10
+
+Name the Year: U.S. launches Pioneer Venus probe?
+1978
+10
+
+Name the Year: U.S. Navy frigate USS Constitution, Old Ironsides, launched in Boston?
+1797
+10
+
+Name the Year: U.S. Patent system established?
+1790
+10
+
+Name the Year: U.S. presented with oldest known copy of the Magna Carta?
+1976
+10
+
+Name the Year: U.S. President Johnson orders a halt to all bombing of North Vietnam?
+1968
+10
+
+Name the Year: U.S. receives rights to Pearl Harbor, on Oahu, Hawaii?
+1887
+10
+
+Name the Year: U.S. recognized Franco govt in Spain at end of the Spanish civil war?
+1939
+10
+
+Name the Year: U.S. Securities and Exchange Commission imposes a record $100 million penalty against inside-trader Ivan Boesky?
+1986
+10
+
+Name the Year: U.S. Senate rejects the Treaty of Versailles for second time?
+1920
+10
+
+Name the Year: U.S. sent 20,000 troops to the Mexican border?
+1911
+10
+
+Name the Year: U.S. sprinter, Jesse Owens sets 100 meter record at 10.2 seconds?
+1936
+10
+
+Name the Year: U.S. sub locates missing hydrogen bomb in Mediterranean?
+1966
+10
+
+Name the Year: U.S. Supreme Court struck down segregation of races on public buses?
+1956
+10
+
+Name the Year: U.S. Supreme Court unanimously upheld the 19th Amendment (woman's right to vote)?
+1922
+10
+
+Name the Year: U.S. Viking 2 goes into Martian orbit after an 11-month flight from Earth?
+1976
+10
+
+Name the Year: U.S. Voyager I takes the first space photograph of the earth and moon together?
+1977
+10
+
+Name the Year: U.S. wins Battle of Bismark Sea over Japan?
+1943
+10
+
+Name the Year: U.S.'s First automobile seat belt legislation is enacted in Illinois?
+1955
+10
+
+Name the Year: Uganda abolishes traditional tribal kingdoms, becomes a republic?
+1967
+10
+
+Name the Year: Uganda asks UN to condemn Israeli hostage rescue raid on Entebbe?
+1976
+10
+
+Name the Year: Uganda becomes a republic within the British Commonwealth?
+1963
+10
+
+Name the Year: Ugandan dictator Idi Amin overthrown; Tanzania takes Kampala?
+1979
+10
+
+Name the Year: UK grants Sierra Leone independence?
+1961
+10
+
+Name the Year: Ukraine declares independence from the USSR?
+1991
+10
+
+Name the Year: Ukraine proclaimed a free republic (German puppet)?
+1918
+10
+
+Name the Year: Ukranian people vote for independence?
+1991
+10
+
+Name the Year: Umberto II king of Italy (1946), born in?
+1904
+10
+
+Name the Year: UN announces Earth population has hit 3 billion?
+1962
+10
+
+Name the Year: UN Educational, Scientific, and Cultural Organization formed. (UNESCO)?
+1946
+10
+
+Name the Year: UN forces entered Pyongyang, the capital of North Korea?
+1950
+10
+
+Name the Year: UN Gen Assembly unanimously approves Convention on Genocide?
+1948
+10
+
+Name the Year: UN General Assembly admits Mainland China and expels Taiwan?
+1971
+10
+
+Name the Year: UN General Assembly adopts Universal Declaration on Human Rights?
+1948
+10
+
+Name the Year: UN General Assembly condemns South Africa for apartheid?
+1961
+10
+
+Name the Year: UN General Assembly meets for first time?
+1946
+10
+
+Name the Year: UN Secretary General Javier Perez de Cuellar meets with Saddam Hussein in Baghdad?
+1991
+10
+
+Name the Year: UN Secretary-General U Thant dies in NY of cancer at 65?
+1974
+10
+
+Name the Year: UN Security Council demanded Argentina withdraw from Falkland Islands?
+1982
+10
+
+Name the Year: UN Security Council issues formal cease fire with Iraq declaration?
+1991
+10
+
+Name the Year: UN Security council passes resolution 242, declaring that Israel must give back land won in the 6 day war?
+1967
+10
+
+Name the Year: UN Security Council unanimously condemns 'acts of hostage-taking'?
+1985
+10
+
+Name the Year: UN set up temporary HQ at Hunter College in the Bronx?
+1946
+10
+
+Name the Year: UN troops in Korean War recaptured South Korean capital of Seoul?
+1950
+10
+
+Name the Year: UN turns over Eritrea to Ethiopia?
+1952
+10
+
+Name the Year: UN's deadline for Iraq to withdraw from Kuwait passes - (they don't)?
+1991
+10
+
+Name the Year: UN's WHO announces first global effort to combat AIDS?
+1986
+10
+
+Name the Year: UN's World Health Organization forms?
+1948
+10
+
+Name the Year: Union of South Africa becomes a dominion?
+1910
+10
+
+Name the Year: Union of South Africa was founded?
+1910
+10
+
+Name the Year: Union of Soviet Socialist Republics formed?
+1923
+10
+
+Name the Year: Union of Utrecht signed, forming protestant Dutch Republic?
+1579
+10
+
+Name the Year: United Airlines 747 jet rips open in flight from Honolulu to New Zealand, 9 passengers sucked out of plane, many injuries?
+1989
+10
+
+Name the Year: United Kingdom of Libya gained independence from Italy via the UN?
+1951
+10
+
+Name the Year: United Nations Charter goes into effect?
+1945
+10
+
+Name the Year: United Nations Charter hearing?
+1955
+10
+
+Name the Year: United Nations founded at San Francisco?
+1945
+10
+
+Name the Year: United Nations General Assembly convenes in New York for first time in Flushing Meadow?
+1946
+10
+
+Name the Year: University of Texas at Arlington becomes the first accredited school to offer a course in belly dancing?
+1973
+10
+
+Name the Year: Unmanned Gemini 1 launched?
+1964
+10
+
+Name the Year: Unmanned Mercury test explodes on launch pad?
+1961
+10
+
+Name the Year: Unsuccessful uprising of Macedonians against Turkey?
+1903
+10
+
+Name the Year: Uprising against French occupation begins in Madrid?
+1808
+10
+
+Name the Year: Uranium atom 1st split, Columbia University?
+1939
+10
+
+Name the Year: Urbain J.J. Leverrier, codiscoverer of Neptune, dies?
+1877
+10
+
+Name the Year: Ursula Andress (in Switzerland), actor, born in?
+1936
+10
+
+Name the Year: Uruguay beats Argentina 4-2 for Football's 1st World Cup in Montevideo?
+1930
+10
+
+Name the Year: Uruguay declares independence from Brazil (National Day)?
+1825
+10
+
+Name the Year: Uruguay joined the United Nations?
+1945
+10
+
+Name the Year: US & Iran sign agreement to release 52 American hostages?
+1981
+10
+
+Name the Year: US 1st army begins battle of Aachen?
+1944
+10
+
+Name the Year: US 7th army captured German city of Nuremberg?
+1945
+10
+
+Name the Year: US actress Grace Kelly marries Monaco's Prince Rainier III?
+1956
+10
+
+Name the Year: US Airmail begins between Wash DC, Philadelphia and New York?
+1918
+10
+
+Name the Year: US Ambassador tells Iraq, US won't take sides in Iraq-Kuwait dispute?
+1990
+10
+
+Name the Year: US and Canada sign the Migratory bird treaty?
+1916
+10
+
+Name the Year: US and Libya clash in the Gulf of Sidra?
+1986
+10
+
+Name the Year: US and North Vietnam signed a cease-fire agreement?
+1973
+10
+
+Name the Year: US and Panama agree to resume diplomatic relations?
+1964
+10
+
+Name the Year: US and USSR sign $10 billion grain pact?
+1983
+10
+
+Name the Year: US and USSR sign Lend-Lease agreement during World War II?
+1942
+10
+
+Name the Year: US Apollo 15 lands on Mare Imbrium on the Moon?
+1971
+10
+
+Name the Year: US appeals to International Court on hostages in Iran?
+1980
+10
+
+Name the Year: US Army accepts delivery of 1st military airplane?
+1909
+10
+
+Name the Year: US Army turned over Long Bihn base to South Vietnamese army?
+1972
+10
+
+Name the Year: US began its heaviest bombing of North Vietnam?
+1972
+10
+
+Name the Year: US begins air drops to Kurdish refugees in Northern Iraq?
+1991
+10
+
+Name the Year: US bombers staged 1st independent raid on Europe attack Rouen, France?
+1942
+10
+
+Name the Year: US declares war on Germany (WWI)?
+1917
+10
+
+Name the Year: US denounces Soviet blockade of Berlin?
+1948
+10
+
+Name the Year: US Dept of Justice offers $25,000 reward for Dillinger, dead or alive?
+1934
+10
+
+Name the Year: US diplomats find at least 40 secret mics in the Moscow embassy?
+1964
+10
+
+Name the Year: US drops atom bomb on Bikini atoll (4th atomic explosion)?
+1946
+10
+
+Name the Year: US drops second atomic bomb on Japan destroying part of Nagasaki. An estimated 74,000 people died. The original target was Kokura?
+1945
+10
+
+Name the Year: US explodes world's first hydrogen bomb at Eniwetok Atoll?
+1952
+10
+
+Name the Year: US forces defeat Japanese at Iwo Jima?
+1945
+10
+
+Name the Year: US forces land in Iceland to forestall Nazi invasion?
+1941
+10
+
+Name the Year: US forces land on Corregidor (complete conquest on March 3)?
+1945
+10
+
+Name the Year: US gives Britain 50 destroyers in exchange for Newfoundland base lease?
+1940
+10
+
+Name the Year: US House of Representatives begins TV broadcasts of its day-to-day business. C-SPAN is born?
+1979
+10
+
+Name the Year: US invades Grenada, a country with 1/2000 its population?
+1983
+10
+
+Name the Year: US Lab detects high-temperature microwave radiation from Venus?
+1956
+10
+
+Name the Year: US launches 1st artificial satellite, Explorer 1?
+1958
+10
+
+Name the Year: US launches Mariner 3 toward Mars; no data returned?
+1964
+10
+
+Name the Year: US liberates Nazi concentration camp in Dachau, Germany?
+1945
+10
+
+Name the Year: US Marines attack shores of Tripoli?
+1805
+10
+
+Name the Year: US Marines landed in Nicaragua to protect US citizens?
+1896
+10
+
+Name the Year: US Marines raise flag on Iwo Jima, famous photo and statue?
+1945
+10
+
+Name the Year: US missile shot down an incoming missile in space for 1st time?
+1984
+10
+
+Name the Year: US Navy destroys 41 Japanese ships in the Battle of South China Sea?
+1945
+10
+
+Name the Year: US Navy is created?
+1775
+10
+
+Name the Year: US officially submits to jurisdiction of World Court?
+1946
+10
+
+Name the Year: US Ranger 7 transmits the 1st lunar close-up photos before impact. Takes 4,316 pictures before crashing on moon?
+1964
+10
+
+Name the Year: US recalls William Bowdler, ambassador to South Africa?
+1977
+10
+
+Name the Year: US sells Hawk anti-aircraft missiles to Israel?
+1962
+10
+
+Name the Year: US Skylab enters atmosphere over Australia and disintegrates?
+1979
+10
+
+Name the Year: US space probe Voyager I approaches 77,000 miles of Saturn?
+1980
+10
+
+Name the Year: US Surveyor III lands on Moon?
+1967
+10
+
+Name the Year: US Syncom 2, 1st geosynchronous communications satellite, launched?
+1963
+10
+
+Name the Year: US takes formal possession of Alaska from Russia ($7.2 million)?
+1867
+10
+
+Name the Year: US trial of former Panamanian leader Manuel Noriega begins?
+1991
+10
+
+Name the Year: US troops captured Aachen, first large German city to fall (WW II)?
+1944
+10
+
+Name the Year: US troops occupy Lebanon, stay 3 months?
+1958
+10
+
+Name the Year: US troops withdraw from Korea after WW II?
+1949
+10
+
+Name the Year: US warships destroy 2 Iranian oil platforms in Persian Gulf?
+1987
+10
+
+Name the Year: US-Soviet effort free 2 grey whales from frozen Arctic?
+1988
+10
+
+Name the Year: US, Australia and New Zealand sign ANZUS treaty?
+1951
+10
+
+Name the Year: US, Japan, UK & France sign a treaty aimed at controlling naval build-up in the Pacific Ocean?
+1921
+10
+
+Name the Year: US, Russia and England sign nuclear test ban treaty?
+1963
+10
+
+Name the Year: US's first commercial radio, 8MK (later WWJ), Detroit began daily broadcasting?
+1920
+10
+
+Name the Year: US's Magellan spacecraft lands on Venus?
+1990
+10
+
+Name the Year: US/UK launch of Ariel satellite; 1st international payload?
+1962
+10
+
+Name the Year: US/USSR signed an agreement to discuss joint space efforts?
+1970
+10
+
+Name the Year: USA beats Finland and wins the Olympic Gold Medal (4-2)?
+1980
+10
+
+Name the Year: USA beats the Russians in Olympic Hockey (4-3)?
+1980
+10
+
+Name the Year: USA declares war on the Prussian-Hungarian forces, joining World War One on the side of the Allies?
+1917
+10
+
+Name the Year: Using phone lines TV was sent from Washington DC to New York City?
+1927
+10
+
+Name the Year: USSR adopts experimental calendar?
+1923
+10
+
+Name the Year: USSR announces it will not participate in LA Summer Olympics?
+1984
+10
+
+Name the Year: USSR announces plan for 2-yr manned mission to Mars?
+1989
+10
+
+Name the Year: USSR announces successful test of intercontinental ballistic missile?
+1957
+10
+
+Name the Year: USSR calendar conversion?
+1918
+10
+
+Name the Year: USSR detonates its 1st atomic bomb?
+1949
+10
+
+Name the Year: USSR fires defense minister, Marshal Georgi Zhukov (Zhukov lead USSR into Berlin during WW2)?
+1957
+10
+
+Name the Year: USSR frees dissident Andrei Sakharov from internal exile?
+1986
+10
+
+Name the Year: USSR Kosmos 186 and 188 make first automatic docking. Also, Venera 13 is launched?
+1967
+10
+
+Name the Year: USSR launches 1st intercontinental multistage ballistic missile?
+1957
+10
+
+Name the Year: USSR launches Luna 11 for orbit around Moon?
+1966
+10
+
+Name the Year: USSR launches Luna 16; returns samples from lunar Sea of Fertility?
+1970
+10
+
+Name the Year: USSR launches Mars 2, 1st spacecraft to crash land on Mars?
+1971
+10
+
+Name the Year: USSR launches Mars 6?
+1973
+10
+
+Name the Year: USSR launches Sputnik 2 with a dog (Laika), 1st animal in orbit?
+1957
+10
+
+Name the Year: USSR launches Sputnik I, the first artificial earth satellite?
+1957
+10
+
+Name the Year: USSR launches Zond 2 towards Mars?
+1964
+10
+
+Name the Year: USSR Luna 3 sent back first photos of Moon's far side?
+1959
+10
+
+Name the Year: USSR Pres Mikhail S Gorbachev meets Pope John Paul II at the Vatican?
+1989
+10
+
+Name the Year: USSR recognizes independence of the 3 Baltic republics (Estonia, Lithuania and Latvia)?
+1991
+10
+
+Name the Year: USSR recovered 2 dogs; 1st living organisms to return from space?
+1960
+10
+
+Name the Year: USSR releases US journalist Nicholas Daniloff confined on spy charges?
+1986
+10
+
+Name the Year: USSR Venera 10 made day Venus landing?
+1975
+10
+
+Name the Year: USSR's Kosmos 186 and 188 complete the 1st automatic docking?
+1967
+10
+
+Name the Year: USSR's Phobos II enters Martian orbit?
+1989
+10
+
+Name the Year: USSR's Sputnik 5 launched with 2 dogs?
+1960
+10
+
+Name the Year: Uta Hagen, born in?
+1919
+10
+
+Name the Year: V-E Day; Germany signs unconditional surrender, WW II ends in Europe?
+1945
+10
+
+Name the Year: V-J Day; formal surrender of Japan aboard USS Missouri?
+1945
+10
+
+Name the Year: Valentina Tereshkova (in Russia), cosmonaut, first woman in space, born in?
+1937
+10
+
+Name the Year: Valentina Tereshkova, first woman in space, returns to earth?
+1963
+10
+
+Name the Year: Valentinian III Roman emperor (425-55), born in?
+419
+10
+
+Name the Year: Valentino, Milan Italy, fashion designer (Jacquline Kennedy Onasis), born in?
+1932
+10
+
+Name the Year: Valeri V. Ryumin, Soviet cosmonaut (Soyuz 25, 32), born in?
+1939
+10
+
+Name the Year: Valerie Harper (in Sufferin, NY), actor (Mary Tyler Moore Show, Rhoda), born in?
+1940
+10
+
+Name the Year: Van Morrison Belfast, singer (Here Comes the Night), born in?
+1945
+10
+
+Name the Year: Vanessa Redgrave (in London, England), actor, born in?
+1937
+10
+
+Name the Year: Vanessa Williams (in Millwood, NY), first black Miss America, born in?
+1963
+10
+
+Name the Year: Vanity [Dee Dee Williams], singer/actress (Action Jackson), born in?
+1965
+10
+
+Name the Year: Vanna White (in South Carolina), game show hostess (Wheel of Fortune), born in?
+1957
+10
+
+Name the Year: Vasco da Gama Portuguese navigator dies in Cochin, India?
+1524
+10
+
+Name the Year: Vasco Nuez de Balboa is the first European to see the Pacific Ocean?
+1513
+10
+
+Name the Year: Vatican City (world's Smallest Country) is made an enclave of Rome?
+1929
+10
+
+Name the Year: Vatican City becomes a soverign state?
+1929
+10
+
+Name the Year: Venera 2 launched by Soviet Union toward Venus?
+1965
+10
+
+Name the Year: Venera 3 launched. (Later, the first man-made object to land on another planet when it crashed into Venus.)?
+1965
+10
+
+Name the Year: Venera 3, Venus landing?
+1966
+10
+
+Name the Year: Venera 5 launched. First successful landing on another planet?
+1969
+10
+
+Name the Year: Venera 5, Venus landing. First successful landing on another planet?
+1969
+10
+
+Name the Year: Venera 7 launched by USSR for soft landing on Venus?
+1970
+10
+
+Name the Year: Venera 9, first craft to orbit the planet Venus launched?
+1975
+10
+
+Name the Year: Venetian senate examines Galileo Galilei's telescope?
+1609
+10
+
+Name the Year: Venezuela, 1st South American country to gain independence from Spain?
+1811
+10
+
+Name the Year: Vera Miles, actor, born in?
+1930
+10
+
+Name the Year: Verney Cameron is first European to cross equatorial Africa from sea to sea?
+1875
+10
+
+Name the Year: Veronica Hamel (in Philadelphia, PA), actor (Hill Street Blues)?
+1943
+10
+
+Name the Year: Veronica Lake actress, dies at 58?
+1973
+10
+
+Name the Year: Veronica Lake, actress?
+1919
+10
+
+Name the Year: Very Large Array (VLA) radio telescope network dedicated?
+1980
+10
+
+Name the Year: Victor Borge, pianist, comedian, born in?
+1909
+10
+
+Name the Year: Victor Emmanuel II, the King of Italy, born in?
+1820
+10
+
+Name the Year: Victor Hugo, French author, born in?
+1802
+10
+
+Name the Year: Victoria Cross established to acknowledge bravery?
+1856
+10
+
+Name the Year: Victoria Principal (in Japan), actor (Dallas), born in?
+1950
+10
+
+Name the Year: Victoria Principal, actress, born in?
+1951
+10
+
+Name the Year: Victoria Woodhull becomes 1st woman nominated for US president?
+1872
+10
+
+Name the Year: Videotapes released showing sunken remains of the Titanic?
+1986
+10
+
+Name the Year: Vietnam declares independence from France (National Day)?
+1945
+10
+
+Name the Year: Vietnam War Memorial dedicated in Washington, DC?
+1982
+10
+
+Name the Year: Viking 1 launched toward orbit around Mars, soft landing?
+1975
+10
+
+Name the Year: Viking 2 goes into orbit around Mars?
+1976
+10
+
+Name the Year: Viking 2 launched toward orbit around Mars, soft landing?
+1975
+10
+
+Name the Year: Viking 2 soft lands on Mars (Utopia), returns photos?
+1976
+10
+
+Name the Year: Vincent Price St Louis Mo, actor (The Fly, Laura), born in?
+1911
+10
+
+Name the Year: Vincent Van Gogh, artist who always lent an ear, born in?
+1853
+10
+
+Name the Year: Violent bread riots at Montreal?
+1875
+10
+
+Name the Year: Virginia Madsen Chicago Ill, actress (Dune, Highlander, Class), born in?
+1961
+10
+
+Name the Year: Virginia Mayo (in St Louis, MO)?
+1920
+10
+
+Name the Year: Virginia McMath (a.k.a. Ginger Rogers), dancer, actor?
+1911
+10
+
+Name the Year: Virginia Woolf, author, born in?
+1882
+10
+
+Name the Year: Viscount Dunrossil, Scotland, Governor General of Australia (1959-61), born in?
+1893
+10
+
+Name the Year: Viscount Goderich (Tory), British PM (1827-28)?
+1782
+10
+
+Name the Year: Vitus Bering, Dutch navigator and explorer, died?
+1741
+10
+
+Name the Year: Vivian Blaine, actor (Guys and Dolls)?
+1923
+10
+
+Name the Year: Vivian Leigh Scarlet in Gone with the Wind, dies at 53?
+1967
+10
+
+Name the Year: Vivien Leigh, actress (Gone With Wind), born in?
+1913
+10
+
+Name the Year: Vladimir Horowitz, pianist?
+1904
+10
+
+Name the Year: Vladimir Ilyich Lenin, Russian leader, dies of a stroke at 54?
+1924
+10
+
+Name the Year: Vladimir Mayakovsky, Soviet Georgia, poet (Ode to Revolution), born in?
+1893
+10
+
+Name the Year: Vladimir Mayakovsky, Soviet poet, born in?
+1893
+10
+
+Name the Year: Vladimir Remek, first Czechoslovakian space traveler (Soyuz 28), born in?
+1948
+10
+
+Name the Year: Vladislav N. Volkov, Soviet cosmonaut (Soyuz 7, 11)?
+1935
+10
+
+Name the Year: Volcanic eruption in Cameroon releases poison gas, killing 2,000?
+1986
+10
+
+Name the Year: Volcano eruptions on Tristan de Cunha (South Atlantic)?
+1961
+10
+
+Name the Year: Volstead Act passed by U.S. Congress, starting Prohibition?
+1919
+10
+
+Name the Year: Voltaire, thinker?
+1694
+10
+
+Name the Year: Voluntary Euthanasia Society publishes how-to-do-it suicide guide?
+1979
+10
+
+Name the Year: Voyager 2 begins a flyby of the planet Neptune?
+1989
+10
+
+Name the Year: Voyager 2 discovers 2 partial rings of Neptune?
+1989
+10
+
+Name the Year: Voyager 2 encounters Saturn?
+1981
+10
+
+Name the Year: Voyager 2 launched for fly-by of Jupiter, Saturn, Uranus, Neptune. It carries a record containing greetings?
+1977
+10
+
+Name the Year: Voyager 2 makes its closest approach to Neptune (0400 GMT)?
+1989
+10
+
+Name the Year: Voyager 2, first Uranus flyby?
+1986
+10
+
+Name the Year: Voyager 2's closest approach to Saturn (63,000 miles/100,000 km)?
+1981
+10
+
+Name the Year: Voyager I's closest approach to Jupiter?
+1979
+10
+
+Name the Year: Voyager II flies past Jupiter?
+1979
+10
+
+Name the Year: Voyager's closest approach to Saturn enroute to Uranus and Neptune?
+1981
+10
+
+Name the Year: W. C. Fields, actor, Philadelphian, born in?
+1879
+10
+
+Name the Year: W. K. Kellogg, founded a cereal company?
+1860
+10
+
+Name the Year: W.C. Fields [Claude William Dukenfield], actor (Bank Dick), born in?
+1880
+10
+
+Name the Year: Waffle iron invented?
+1869
+10
+
+Name the Year: Wagner's opera Tannhauser performed for 1st time?
+1845
+10
+
+Name the Year: Wally Schirra, astronaut, born in?
+1923
+10
+
+Name the Year: Walt Disney Art School created?
+1932
+10
+
+Name the year: Walt Disney dies, Hastings Banda becomes Malawi's first President, and Nelson's pillar in O'Connell Street, History: What year is Dublin blown up?
+1966
+10
+
+Name the Year: Walt Disney starts 1st job as an artist; $40 week with KC Slide Co...?
+1920
+10
+
+Name the Year: Walt Disney World's 100-millionth guest?
+1979
+10
+
+Name the Year: Walt Disney World's 200-millonth guest?
+1985
+10
+
+Name the Year: Walt Whitman (in West Hills, NY), poet, born in?
+1819
+10
+
+Name the Year: Walter Chrysler, founded a car company, born in?
+1875
+10
+
+Name the Year: Walter Koenig Chicago Ill, actor (Chekov-Star Trek), born in?
+1938
+10
+
+Name the Year: Walter Matthau, actor (Odd Couple, Bad News Bears, Hopscotch)?
+1920
+10
+
+Name the Year: Walter Percy Chrysler founded the Chrysler Corporation?
+1925
+10
+
+Name the Year: Walter Reed, who proved mosquitoes transmit yellow fever, born in?
+1851
+10
+
+Name the Year: Walter Susskind, Praha (Prague) Czechoslovakia, conductor, born in?
+1913
+10
+
+Name the Year: Walther Bauersfeld, invented first modern projection planetarium?
+1919
+10
+
+Name the Year: Waltz introduced into English ballrooms. Most observers consider it disgusting & immoral. No wonder it caught on!?
+1812
+10
+
+Name the Year: War broke out in Indochina as Ho Chi Minh attacked the French?
+1946
+10
+
+Name the Year: War of 1812 begins as US declares war against Britain?
+1812
+10
+
+Name the Year: War of the Reform (Mexico); Liberals establish capital at Vera Cruz?
+1858
+10
+
+Name the Year: Warren Beatty, actor, ladies man, born in?
+1937
+10
+
+Name the Year: Warren Commission found that Lee Harvey Oswald acted alone?
+1964
+10
+
+Name the Year: Warsaw Pact forces enter Czechoslovakia to end reform movement?
+1968
+10
+
+Name the Year: Washington and his troops cross the Delaware River?
+1776
+10
+
+Name the Year: Washington Irving, writer (Rip Van Winkle, Legend of Sleepy Hollow), born in?
+1783
+10
+
+Name the Year: Washington lays cornerstone of the Executive Mansion (White House)?
+1792
+10
+
+Name the Year: Wayne Gretzky born, hockey player?
+1961
+10
+
+Name the Year: Wayne Newton, singer, born in?
+1942
+10
+
+Name the Year: Weekly airmail route starts between Australia and the United Kingdom?
+1934
+10
+
+Name the Year: Wembley Stadium opens-Bolton Wanderers vs West Ham United (FA Cup)?
+1923
+10
+
+Name the Year: Wenceslas II king of Bohemia and Poland (1278-1305), born in?
+1271
+10
+
+Name the Year: Wendell Stanley, biochemist, first to crystallize a virus (Nobel '46), born in?
+1904
+10
+
+Name the Year: Werner von Braun, rocket scientist, born in?
+1912
+10
+
+Name the Year: Wernher von Braun named head of German liquid-fuel rocket program?
+1932
+10
+
+Name the Year: West begins Berlin Airlift to get supplies around Soviet blockade?
+1949
+10
+
+Name the Year: West Germany beats Hungary 3-2 for Football's 5th World Cup in Bern?
+1954
+10
+
+Name the Year: West Germany beats Neth 2-1 for Football's 10th World Cup in Munich?
+1974
+10
+
+Name the Year: West Germany joins North Atlantic Treaty Organization (NATO)?
+1954
+10
+
+Name the Year: West Germany was proclaimed?
+1949
+10
+
+Name the Year: When was the great plague of London?
+1665
+10
+
+Name the Year: Whitney Houston, singer, born in?
+1963
+10
+
+Name the Year: Whitsunday Term Day?
+1753
+10
+
+Name the Year: Wilbur Wright, of aeroplane fame, born in?
+1867
+10
+
+Name the Year: Wild Bill Hickok cowboy, born in?
+1837
+10
+
+Name the Year: Wild Bill Hickok shot dead (from behind) by Jack McCall while poker. He held a pair of Aces and a pair of 8's?
+1876
+10
+
+Name the Year: Wilfred Burchett, Australian Communist, journalist, writer, born in?
+1911
+10
+
+Name the Year: Wilhelm Beer, first to map Mars?
+1797
+10
+
+Name the Year: Wilhelm Friedemann Bach, composer, son of J.S. Bach?
+1710
+10
+
+Name the Year: Wilhelm Karl Grimm, story teller, born in?
+1786
+10
+
+Name the Year: Wilhelm Olbers, discoverer of asteroids Pallas and Vesta, born in?
+1758
+10
+
+Name the Year: Wilhelm Ostwald, German physical chemist (Nobel 1909)?
+1853
+10
+
+Name the Year: Wilhelm Rintgen discovers x-rays?
+1895
+10
+
+Name the Year: Willard Scott, weatherman, original Ronald McDonald, born in?
+1934
+10
+
+Name the Year: Willem Dafoe, actor, born in?
+1955
+10
+
+Name the Year: Willem Drees PM of Netherland (1948-58), born in?
+1886
+10
+
+Name the Year: William A. Anders, astronaut (Apollo 8), born in?
+1933
+10
+
+Name the Year: William A. Fowler, US astrophysicist (Nobel 1983), born in?
+1911
+10
+
+Name the Year: William Beaumont, surgeon, studied digestion?
+1785
+10
+
+Name the Year: William Blake, poet (Songs of Innocence and Experience)?
+1757
+10
+
+Name the Year: William Bligh nasty ship's captain and New South Wales governor (HMS Bounty), born in?
+1754
+10
+
+Name the Year: William Bond obtains first photograph of moon through a telescope?
+1849
+10
+
+Name the Year: William Booth founded Salvation Army in London?
+1865
+10
+
+Name the Year: William Booth, founder of the Salvation Army, born in?
+1829
+10
+
+Name the Year: William Bundy invents the first timecard clock?
+1888
+10
+
+Name the Year: William Butler Yeats Irish poet, dies in France at 73?
+1939
+10
+
+Name the Year: William Christopher, actor (Father Mulcahy-MASH), born in?
+1932
+10
+
+Name the Year: William Cowper, English poet?
+1731
+10
+
+Name the Year: William Crapo Durant incorporates General Motors?
+1908
+10
+
+Name the Year: William Edward Boeing, founded aircraft company?
+1881
+10
+
+Name the Year: William Gilbert Grace, Victorian England's greatest cricketer?
+1848
+10
+
+Name the Year: William Golding, English novelist (Lord of the Flies) (Nobel 1983), born in?
+1911
+10
+
+Name the Year: William H. Seward, who bought Alaska at $0.02/acre, born in?
+1801
+10
+
+Name the Year: William Handy, blues musician, established the popularity of the blues in band music?
+1873
+10
+
+Name the Year: William Hanna, animator (Hanna-Barbera), born in?
+1910
+10
+
+Name the Year: William Henry Harrison dies of pneumonia and becomes the first U.S. president to die in office?
+1841
+10
+
+Name the Year: William Herschel discovered Uranus, dies at 85?
+1822
+10
+
+Name the Year: William Herschel discovers 1st binary star, Xi Ursae Majoris?
+1780
+10
+
+Name the Year: William Herschel discovers Mimas, satellite of Saturn?
+1789
+10
+
+Name the Year: William Huggins discoverer of stellar nature of Andromeda, dies?
+1910
+10
+
+Name the Year: William I The Conqueror, King of England and Duke of Normandy, dies?
+1087
+10
+
+Name the Year: William IV king of England (1830-37), born in?
+1765
+10
+
+Name the Year: William James, Philospher, born in?
+1842
+10
+
+Name the Year: William Lassell discovers Ariel and Umbriel, satellites of Unranus?
+1851
+10
+
+Name the Year: William Makepeace Thackeray, Victorian novelist (Vanity Fair)?
+1811
+10
+
+Name the Year: William Morris (in England), artist and poet?
+1834
+10
+
+Name the Year: William Morris first uses ether in the first tooth extraction under anesthesia at Charlestown, Mass?
+1846
+10
+
+Name the Year: William of Holland Holy Roman emperor, dies at about 28?
+1256
+10
+
+Name the Year: William of Ockham forced to flee from Avignon by Pope John XXII?
+1328
+10
+
+Name the Year: William Parson, third Earl of Rosse and maker of large telescopes dies?
+1865
+10
+
+Name the Year: William Pitt the Elder (Whig), British PM (1756-61, 1766-68)?
+1708
+10
+
+Name the Year: William Schroeder, becomes second to receive Jarvik-7 artificial heart?
+1984
+10
+
+Name the Year: William Seward Burroughs inventor (recording adding machine), born in?
+1855
+10
+
+Name the Year: William Shakespeare, bard, born in?
+1564
+10
+
+Name the Year: William Shatner, actor (Star Trek, T.J. Hooker), author (Tek War), born in?
+1931
+10
+
+Name the Year: William the Conqueror lands in England?
+1066
+10
+
+Name the Year: William Thomson, Lord Kelvin, engineer/mathematician/physicist, born in?
+1824
+10
+
+Name the Year: William Walker filibuster, president of Nicaragua (1856-57), born in?
+1824
+10
+
+Name the Year: William Webster, FBI director, born in?
+1924
+10
+
+Name the Year: William Wordsworth (in England), poet?
+1770
+10
+
+Name the Year: Willie Nelson, singer, actor?
+1933
+10
+
+Name the Year: Willis Haviland Carrier, developed air-conditioning equipment?
+1876
+10
+
+Name the Year: Willis Reed, basketball player?
+1942
+10
+
+Name the Year: Willy Brandt (SD), chancellor of West Germany (1969-74) (Nobel '71)?
+1913
+10
+
+Name the Year: Wilt Chamberlain NBA great center (LA Laker, 5 time MVP), born in?
+1936
+10
+
+Name the Year: Winston Churchill knighted by Queen Elizabeth II?
+1953
+10
+
+Name the Year: Winston Churchill resigns as British PM, Anthony Eden succeeds him?
+1955
+10
+
+Name the Year: Winston Churchill succeeds Neville Chamberlain as British PM?
+1940
+10
+
+Name the Year: Wladziu Valentino Liberace, pianist, born in?
+1919
+10
+
+Name the Year: Wolfe defeats Montcalm on Plains of Abraham; Canada becomes English?
+1759
+10
+
+Name the Year: Wolfgang Amadeus Mozart, musical prodigy, composer, born in?
+1756
+10
+
+Name the Year: Women get the vote in Turkey?
+1934
+10
+
+Name the Year: Women in France allowed to vote for the first time?
+1945
+10
+
+Name the Year: Women's Equality Day?
+1973
+10
+
+Name the Year: Woodrow Wilson holds the first Presidential Press Conference?
+1913
+10
+
+Name the Year: Woodstock festival begins in New York?
+1969
+10
+
+Name the Year: Woodstock Music and Art Fair opened in New York State?
+1969
+10
+
+Name the Year: Woody Allen [Allen Stuart Konigsberg] (Zelig, Annie Hall, Manhattan Murder Mystery), born in?
+1935
+10
+
+Name the Year: Woody Harrelson, actor?
+1961
+10
+
+Name the Year: Work on Golden Gate Bridge begins, on Marin County side?
+1933
+10
+
+Name the Year: World Food Day?
+1945
+10
+
+Name the Year: World Health Organization is established?
+1948
+10
+
+Name the Year: World War II ends in Europe. Nazis surrender to General Eisenhower at Reims, France?
+1945
+10
+
+Name the Year: World's first commercial cheese factory is established in Switzerland?
+1815
+10
+
+Name the Year: World's first nuclear powered ship, USS Nautilus?
+1955
+10
+
+Name the Year: World's largest gold nugget (215 kg) found in New South Wales?
+1872
+10
+
+Name the Year: World's largest office building, Pentagon, completed?
+1943
+10
+
+Name the Year: Worldwide Red Cross organized in Geneva?
+1863
+10
+
+Name the Year: Worst nuclear disaster, Chernobyl USSR, 31 die?
+1986
+10
+
+Name the Year: Wrestler Antonino Rocca dies at 49?
+1975
+10
+
+Name the Year: Writer Oscar Wilde is arrested?
+1895
+10
+
+Name the Year: WW I Battle of Verdun begins?
+1916
+10
+
+Name the Year: WW I Peace Congress opens in Versailles, France?
+1919
+10
+
+Name the Year: WW II Gestapo official Adolf Eichmann hung in Israel?
+1962
+10
+
+Name the Year: WW II Pacific peace treaty takes effect?
+1952
+10
+
+Name the Year: WW II starts, Germany invades Poland, takes Danzig?
+1939
+10
+
+Name the Year: Wynton Marsalis, New Orleans La, jazz trumpeter (Grammy 1983), born in?
+1961
+10
+
+Name the Year: Yakut ASSR formed in Russian SFSR?
+1922
+10
+
+Name the Year: Yalta Conference agreed that Russia would enter WWII against Japan?
+1945
+10
+
+Name the Year: Yamaoka Tesshu Japanese swordsman, master of kendo, born in?
+1836
+10
+
+Name the Year: Yannick Noah France, tennis player (French 1983), born in?
+1960
+10
+
+Name the Year: Yasuhiro Nakasone elected PM of Japan succeeding Zenko Suzuki?
+1982
+10
+
+Name the Year: Yehudi Menuhin, violinist, born in?
+1916
+10
+
+Name the Year: Yellow fever vaccine for humans announced?
+1932
+10
+
+Name the Year: Yemen Arab Republic proclaimed (National Day)?
+1962
+10
+
+Name the Year: Yen Jo-chu, Chinese scholar of Ch'ing dynasty?
+1636
+10
+
+Name the Year: Yevgeny V Khrunov USSR, cosmonaut (Soyuz 5), born in?
+1933
+10
+
+Name the Year: Yitzhak Rabin replaces resigning Prime Minister Golda Meir?
+1974
+10
+
+Name the Year: Yo-Yo Ma, cellist, born in?
+1955
+10
+
+Name the Year: Yoko Ono (in Tokyo, Japan), singer, wife of John Lennon, born in?
+1933
+10
+
+Name the Year: Yom Kippur War begins as Syria and Egypt attack Israel?
+1973
+10
+
+Name the Year: Yom Kippur War ends - Israel 65 miles from Cairo, 26 from Damascus?
+1973
+10
+
+Name the Year: Yosemite Valley is discovered in California?
+1851
+10
+
+Name the Year: Yuan Shik-K'ai elected the first President of the Republic of China?
+1912
+10
+
+Name the Year: Yugoslav Republic Day?
+1945
+10
+
+Name the Year: Yugoslavia adopts new constitution, becomes a federal republic?
+1946
+10
+
+Name the Year: Yugoslavia elects it's 1st president (Marshal Tito)?
+1953
+10
+
+Name the Year: Yul Brynner actor (King and I, 10 Commandments), born in?
+1920
+10
+
+Name the Year: Yuri A. Gagarin becomes first man to orbit Earth aboard Vostok 1?
+1961
+10
+
+Name the Year: Yuri A. Gagarin, first man in orbit?
+1961
+10
+
+Name the Year: Yuri Gagarin, first man into space, born in?
+1934
+10
+
+Name the Year: Yuri N. Glazkov, Soviet cosmonaut (Soyuz 24)?
+1939
+10
+
+Name the Year: Yuri P. Artyukhin, Soviet cosmonaut (Soyuz 14), born in?
+1930
+10
+
+Name the Year: Yuri V. Andropov succeeds Leonid Brezhnev?
+1982
+10
+
+Name the Year: Yuri V. Malyshev, Soviet cosmonaut (Soyuz T-2, T-11)?
+1941
+10
+
+Name the Year: Yves Montand actor (Lets Make Love, Z), dies at 70?
+1991
+10
+
+Name the Year: Yves Montand actor, dies at 70 from a heart attack?
+1991
+10
+
+Name the Year: Yves Montand, France, actor/singer (Z, Napoleon), born in?
+1921
+10
+
+Name the Year: Yves Saint-Laurent fashion designer (Opium, Obsession), born in?
+1936
+10
+
+Name the Year: Yvonne De Carlo, Vancouver BC, actress (Lily Munster in the Munsters), born in?
+1922
+10
+
+Name the Year: YWCA is founded in New York City?
+1870
+10
+
+Name the Year: Zaire (then Belgian Congo) gained independence from Belgium?
+1960
+10
+
+Name the Year: Zambia (N. Rhodesia) gained independence from Britain (National Day)?
+1964
+10
+
+Name the Year: Zanzibar gained independence from Britain?
+1963
+10
+
+What year was Zero Mostel (actor in Fiddler on the Roof) born in?
+1915
+10
+
+What year was Zsa Zsa Gabor (in Budapest), actress, ex-con, born in?
+1919
+10
+
+Name the Year: Zsa Zsa Gabor begins a 3 day jail sentence for slapping a cop?
+1990
+10
+
+Name the Year: Zulfiqar Ali Bhutto former Pakistani president, hanged in Pakistan?
+1979
+10
+
+Name the year. South African police kill 56 people in Shatpeville, Israeli intelligence agents capture Adolf Eichmann, and Nigeria gains its independence?
+1960
+10
+
+What job did Alan Paton have?
+Author
+10
+
+What job did Barbara Jordan have?
+Congresswoman
+10
+
+What job did barry commoner have?
+Scientist
+10
+
+What job did billie jean king have?
+Tennis
+10
+
+What job did Billy Sunday have?
+Evangelist
+10
+
+What job did Chuck Yeager have?
+Pilot
+10
+
+What job did Claude Pepper have?
+Senator
+10
+
+What job did David Dinkins have?
+Nyc mayor
+10
+
+What job did don king have?
+Fight promoter
+10
+
+What job did ellen goodman have?
+Columnist
+10
+
+What job did Garry Trudeau have?
+Cartoonist
+10
+
+What job did Gorgeous George have?
+Wrestler
+10
+
+What job did h.l. mencken have?
+Journalist
+10
+
+What job did harold stassen have?
+Mayor
+10
+
+What job did Helen Gurley Brown have?
+Publisher
+10
+
+What job did Jane Addams have?
+Social worker
+10
+
+What job did Jane Goodall have?
+Naturalist
+10
+
+What job did Jane Pauley have?
+News
+10
+
+What job did jean-pierre rampal have?
+Flautist
+10
+
+What job did june allyson have?
+Actress
+10
+
+What job did Manuel Noriega have?
+Dictator
+10
+
+What job did Mark Rothko have?
+Painter
+10
+
+What job did Martha Graham have?
+Dancer
+10
+
+What job did marvin mitchelson have?
+Divorce lawyer
+10
+
+What job did Masters and Johnson researched this have?
+Sex
+10
+
+What job did Pat Buchanan have?
+Politician
+10
+
+What job did Rupert Murdoch have?
+Publisher
+10
+
+What job did Sandra Day O'Conner have?
+Supreme court
+10
+
+What job did swifty lazar have?
+Hollywood agent
+10
+
+What job did Wernher von Braun have?
+Rocket scientist
+10
+
+Name three of the seven Duffs?
+Surly, Remorseful, Tipsy, or Queasy
+10
+
+Name three planets with rings?
+Jupiter,saturn,uranus
+10
+
+Name two of the nuclear plant workers who had to watch the bee?
+Homer and Bernie 
+10
+
+Name types of insect belonging to the order Hymenoptera?
+Ant
+10
+
+In US politics, who are the four Kennedy brothers?
+John, Robert, Ted & Joe
+10
+
+Name Woody Allen's black and white romantic study of his home town?
+Manhattan
+10
+
+Named after a European country, which strait lies between Iceland and Greenland?
+Denmark strait
+10
+
+Named for an Al Capp comic strip character, on which holiday do women ask men to dances?
+Sadie Hawkins Day
+10
+
+Named for its abundance of plant life, this inlet was the site of captain cook's first landing in Australia?
+Botany bay
+10
+
+Names for numbers: 1 followed by 42 zeroes =?
+Tredecillion
+10
+
+Names for numbers: 1 followed by 48 zeroes =?
+Quindecillion
+10
+
+Names for numbers: one followed by 18 zeros?
+Quintillion
+10
+
+Names formed from the initial letters of other words?
+Acronyms
+10
+
+Nancy Cartwright and Yeardley Smith provide the voices for which brother & sister on TV?
+-- Answer metadata begin
+{
+    "answers": ["Bart & Lisa Simpson", "Bart and Lisa Simpson"]
+}
+-- Answer metadata end
+10
+
+Nanotechnology has produced a guitar no bigger than a ____
+Blood cell
+10
+
+Nantucket Island is part of which American state?
+Massachusetts
+10
+
+Napolean had his boots worn by ____ to break them in before he wore them
+Servants
+10
+
+Napolean's last battle?
+Waterloo
+10
+
+Napoleon bonaparte died in 1942, 1945 or 1949?
+1945
+10
+
+Napoleon bonaparte died in 1945 of injuries sustained from tripping over his ____
+Dog's leash
+10
+
+Napoleon drew his battle plans in a?
+Sand pit
+10
+
+Napoleon had connections with three islands, he was imprisoned on elba and died on st. helena, where was he born?
+Corsica
+10
+
+Napoleon was a fearless soldier, but he had a manic phobia of?
+Cats
+10
+
+Napthalene is commonly found in what household item?
+Mothballs
+10
+
+Narcotics were prohibited in the u.s in 1905, 1909 or 1914?
+1909
+10
+
+Narrow strip of cloth attached to a string round waist for covering genitals?
+G-string
+10
+
+Nashville is the capital of what American State?
+Tennessee
+10
+
+Nassau is the capital of?
+Bahamas
+10
+
+National Anthems: At your feet, two oceans roar for your noble mission?
+Panama
+10
+
+National Anthems: Fellow Slavs, the spirit of your ancient breed triumphs?
+Yugoslavia
+10
+
+National Anthems: The hope of 2000 years, To be a free people in our land, the land of ____
+Israel
+10
+
+National Anthems: The United Provinces of the South, their throne full of dignity opened?
+Argentina
+10
+
+National Anthems: Yes,we love this country,as it arises rugged, storm-scarred, above the water?
+Norway
+10
+
+Native americans never actually ate turkey; killing such a timid bird was thought to indicate____
+Laziness
+10
+
+Native Americans never actually ate____ ; killing such a timid bird was thought to indicate laziness
+Turkey
+10
+
+Native Americans: he was chiricahua apache chief (1829-1909)?
+Geronimo
+10
+
+Native Americans: lakota medicine man and chief was considered the last sioux to surrender to the u.s. government?
+Chief sitting bull
+10
+
+Native Americans: Native Americans used beads as currency. What was it called?
+Wampum
+10
+
+Native Americans: north American indians ate watercress to dissolve what in the bladder?
+Gravel
+10
+
+Native Americans: the 2nd largest Indian tribe in the united states with more than 200,000 tribal members is the?
+Cherokee nation
+10
+
+Native Americans: trail used in the cruel relocation of American indians around 1838?
+Trail of tears
+10
+
+Natives of New Zealand are called what?
+Maoris
+10
+
+Nato is short for?
+North atlantic treaty organization
+10
+
+Nature: A calm ocean region near the equator?
+Doldrum
+10
+
+Nature: A coral island consisting of a ring of rock enclosing a central lagoon is a(n) ____
+Atoll
+10
+
+Nature: A great wave resulting from an earthquakes is called a (an) ____
+Tsunami
+10
+
+Nature: A hot spring which shoots steam into the air is a ____
+Geyser
+10
+
+Nature: A relationship between two different types of organism which live together for their mutual benefit?
+Symbiosis
+10
+
+Nature: During pregnancy, how many times its normal size does the human uterus expand?
+500
+10
+
+Nature: Natural formations that are reminiscent of something else, such as camel rock in new Mexico, are known as?
+Simulacra
+10
+
+Nature: Natural The remains of prehistoric organisms that have been preserved in rocks are called ____
+Fossil
+10
+
+Nature: Naturally occurring community of flora and fauna adapted to the conditions in which they occur?
+Biome
+10
+
+Nature: Naturally occurring oily, bituminous liquid composed of various organic chemicals?
+Petroleum
+10
+
+Nature: Naturally occurring sand & gravel mix, used in making concrete?
+Ballast
+10
+
+Nature: The world's worst epidemic, killing an estimated 75,000,000 people between 1347-1351 in Europe and Asia?
+Black Death
+10
+
+Nature: What has approximately 1/4 pound of salt in every gallon?
+Seawater
+10
+
+NATURE:Larva of the cranefly?
+Leatherjacket
+10
+
+Naval escort vessel?
+Frigate
+10
+
+Navy ranks: stars a 'commodore' has?
+1
+10
+
+Navy ranks: stars a 'rear admiral' has?
+2
+10
+
+Navy ranks: stars an admiral has?
+4
+10
+
+Nazi secret police?
+Gestapo
+10
+
+Ndjamena is the capital of ____
+Chad
+10
+
+Near to which town were jaffa oranges first cultivated?
+Jaffa
+10
+
+Near which German town would you find fredrick the great's retreat, shloss sanssouci?
+Potsdam
+10
+
+Near-sighted model, Grace Robin was the first to show off contact lenses in?
+1930
+10
+
+Nearly a quarter of all human bones can be found in the?
+Feet
+10
+
+Nearly a third of all bottled drinking water purchased in the US is contaminated with ____
+Bacteria
+10
+
+Nebraska what is the mascot of the u.s naval academy?
+Goat
+10
+
+Neck-ties were first worn in what country?
+Croatia
+10
+
+Needlework of hooked yarn producing lacy patterned fabric?
+Crochet
+10
+
+Negatives what is the term for the union of two dissimilar sexual cells or gametes to form a new individual?
+Fertilisation
+10
+
+Negligee derives from the French word meaning?
+Neglected
+10
+
+Negligence derives from the French word meaning?
+Neglected
+10
+
+Negotiations conducted by a mediator who travels countries at brief intervals?
+Shuttle diplomacy
+10
+
+Neil diamond wrote this song which was covered by tony tribe?
+Red red wine
+10
+
+Nephrite is a variety of which substance?
+Jade
+10
+
+Neptune is ____ million kilometres from the Sun
+4,500
+10
+
+Nervous as a long tailed cat in a room full of ____
+Rocking chairs
+10
+
+Ness What are panatelas?
+Cigars
+10
+
+Nest of wasps?
+Vespiary
+10
+
+NetHack: Carrying this corpse protects you from being petrified by a cockatrice?
+Lizard
+10
+
+nethack: never put this wand in your bag of holding!?
+Cancellation
+10
+
+NetHack: The genre of games which NetHack belongs to is called that?
+Roguelike games
+10
+
+NetHack: This beast can help you identify your gems?
+Unicorn
+10
+
+nethack: this tool will instantly get your pets around you?
+Magic whistle
+10
+
+nethack: wizards always start the game with this weapon?
+Athame
+10
+
+nethack: you can always buy these items in minetown?
+Candles
+10
+
+nethack: you cannot enter shops while carrying this tool?
+Pick-axe
+10
+
+Neture: What do oak trees grow from?
+Acorns
+10
+
+Never to much was a hit for which soul singer?
+Luther vandross
+10
+
+New Amerykah is the title of a 2008 R&B album by an artist with what last name?
+Badu
+10
+
+New Orleans first mardi gras celebration was held in what year?
+1826
+10
+
+New Orleans: These buildings bordering Jackson Square are the oldest apt bldgs. in the US?
+Pontalba apartments
+10
+
+New Orleans: This is the largest housing project in the US____ located in New Orleans
+Desire housing project
+10
+
+New Orleans: This open air market in the Vieux Carre is more like a huge garage sale?
+The french market
+10
+
+New year's eve, or december 31st, is dedicated to which saint?
+St sylvester
+10
+
+New York City contains ____ kilometres of shoreline
+920
+10
+
+New York was once?
+New amsterdam
+10
+
+New York's Central Park opened in?
+1876
+10
+
+New york's first St. Patrick's day parade was held on what date?
+March 17, 1762
+10
+
+New York's Saratoga Springs is home to the ____ Hall of Fame
+Horse Racing
+10
+
+New Zealand was discovered by whom?
+Abel tasman
+10
+
+New Zealand was the first country to give women the vote, in 1893. In 1902, which country was 2nd?
+Australia
+10
+
+New Zealand's first hospital was opened in?
+1843
+10
+
+New Zealand's National Day, the 6th February, is named after a Treaty of 1840. What is the day called?
+Waitangi day
+10
+
+New zealand's rugby team is know as the ____
+All blacks
+10
+
+Newcastle residents are called?
+Novocastrians
+10
+
+Newkirk c3p0 is the first character to speak in which film?
+Star wars
+10
+
+NEWS 2002: Name of the defeated French Prime Minister who announced his retirement from politics following the success of the far-right in the presidential elections?
+Lionel Jospin
+10
+
+NEWS 2002: Name the first man to appear on the cover of Marie Claire?
+David Beckham
+10
+
+NEWS 2002: The arts, Name of the autobiographical musical by Boy George?
+Taboo
+10
+
+NEWS 2002: What is the Queen celebrating this year?
+Golden Jubilee
+10
+
+NEWS 2002: Which French politician caused shock waves across Europe by coming second in the first round of the French Presidential elections?
+Jean-Marie Le Pen
+10
+
+NEWS 2002: Which tv company went into receivership after its ?178.5million deal with the Football League hit trouble?
+ITV Digital
+10
+
+NEWS 2002: Who succeeded William Hague as leader of the Conservative party?
+Iain Duncan Smith
+10
+
+Newton's tome on the explanation of physical laws is the?
+Principia mathematica
+10
+
+NFL Teams (name, not city) 10?
+Lions
+10
+
+NFL teams (names not cities)?
+Bengals
+10
+
+Nhl goalie who had the most penalty shots scored on him in 1990-91 (2)?
+Jacques cloutier
+10
+
+NHL teams (just the name, not the city)?
+Kings
+10
+
+NHL teams (just the name, not the city)?
+Redwings
+10
+
+Nicholson what u.s president's home is located in columbia, tennessee?
+James polk
+10
+
+Nick name of William F Cody?
+Buffalo bill
+10
+
+Nick of Major Frank Burns (Larry Linville) in the T.V. Sitcom MASH?
+Ferret face
+10
+
+Nickname of the vancouver team who won the stanley cup in 1914-1915?
+Millionaires
+10
+
+Nicole's number one won the Eurovision Song Contest for which country?
+Germany
+10
+
+Nicosia is the capital of which island?
+Cyprus
+10
+
+Nicotinic acid is listed on breakfast cereal boxes as?
+Niacin
+10
+
+Night live to where did jackie gleason move his 1960's variety series?
+Miami
+10
+
+Night of the Hunter was the only film directed by which actor?
+Charles laughton
+10
+
+Niklaus Wirth developed which programming language in 1968?
+Pascal
+10
+
+Nine pennies weigh exactly how much?
+One ounce
+10
+
+Ninetails,pikachu,vileplume & weepinbell are all types of what?
+Pokemon
+10
+
+Ninety eight per cent of the weight of water is made up from?
+Oxygen
+10
+
+Ninth planet from the sun & outermost known member of the solar system?
+Pluto
+10
+
+Nitroglycerin is used to relieve what pain?
+Angina
+10
+
+Nitroglycerin was developed by?
+Ascanio sobrero
+10
+
+No piece of square dry paper can be folded more than ____ times in half
+Seven
+10
+
+No rain has ever been recorded falling in the Atacama desert in?
+Chile
+10
+
+No stopwatch was used for the first two shows of this program that aired October 8 and October 15, 1968. Can you name the program?
+60 Minutes
+10
+
+Nobel laureate and leader of the opposition in her country. husband died in mid-1999?
+Aung san suu-kyi
+10
+
+Nobel: 1970s: Famous mother who won the nobel prize in 1979?
+Teresa
+10
+
+Nobel: Austrian physicist and nobel laureate, best known for his mathematical studies of the wave mechanics of orbiting electrons?
+Schrodinger
+10
+
+Nobleman between a marquis and viscount?
+Earl
+10
+
+Non dairy creamer is ____
+Flammable
+10
+
+North America's first underwater telegraph cables were laid by ____
+Frederick grisborne
+10
+
+North American Indian, Sitting Bull, died on 15th December of which year>?
+1890
+10
+
+North American Indians ate Watercress to dissolve gravel and stones in the ____
+Bladder
+10
+
+North American Indians used the teepee as their nomadic dwelling, however, what was the name of the their permanent living accommodation called?
+Longhouses
+10
+
+North American tribe, of the iroquoian linguistic family and the southeast culture area?
+Cherokee
+10
+
+North Americans spend much of their summer leisure time going to Garage Sales. What is a garage sale known as in Britain?
+A Boot Sale
+10
+
+North Sea Jazz festival is held in what country?
+Holland
+10
+
+Northern most & western most state of the U S, & the largest state of the union?
+Alaska
+10
+
+Nose prints are used to identify?
+Dogs
+10
+
+Nostradamus was famous for making what?
+Predictions
+10
+
+Not harmful to the environment?
+Eco-friendly
+10
+
+Nouakchott is the capital of ____
+Mauritania
+10
+
+Nova scotia is the new name for which Canadian province?
+Acadia
+10
+
+November of 1963 saw the introduction of this new device, from at&t?
+Touch tone phone
+10
+
+Now in modern Tanzania, which port is the historic meeting place of Stanley and Livingstone in 1871?
+Ujiji
+10
+
+Nuclear membrane, cytoplasm, and nucleus are parts of a ____
+Cell
+10
+
+Nuku'alofa is the capital of ____
+Tonga
+10
+
+Numerology: how do you write the number 99 (ninety nine) in roman numerals?
+Xcix
+10
+
+Nunaat island, southern indonesia, one of the lesser sunda islands, in the Indian ocean?
+Bali
+10
+
+Nungatta National Park is nearest what large Australian city?
+Brisbane
+10
+
+Nursery Rhymes: In the song 'Skip To My Lou', in what beverage are the flies?
+Buttermilk
+10
+
+Nursery Rhymes: Jack and Jill went up a ____ to fetch a pail of water
+Hill
+10
+
+Nursery Rhymes: Name the nursery rhyme mother whos last name is that of a bird?
+Goose
+10
+
+Nursery Rhymes: Where did Little Miss Muffet sit?
+On her tuffet
+10
+
+Nursery Rhymes: Who is Mother Goose's son?
+Jack
+10
+
+Nursery Rhymes: Who sat on her tuffet?
+Little Miss Muffet
+10
+
+Nylon was invented simultaneously at these two cities?
+New york london
+10
+
+Oakley what are large snow bumps known as in skiing terms?
+Moguls
+10
+
+Oaks of dodona what did the white house have before it had an indoor bathroom?
+Telephone
+10
+
+Oasis were great fans of which British group?
+Beatles
+10
+
+Oberon is a moon of which planet?
+Uranus
+10
+
+Obsessive desire to lose weight by dieting?
+Anorexia nervosa
+10
+
+Obsidian, used by American Indians for tools, weapons and ornaments, is dark ____ glass
+Volcanic
+10
+
+October 2002, name of the TV presenter who caused a rumpus with her autobiography Honest?
+Ulrika jonsson
+10
+
+Of all canadians, ____ percent rely on groundwater for domestic use
+26
+10
+
+Of sin, cos or tan, which graph is not differentiable at all points?
+Tan
+10
+
+Of the 15,000-odd known species of orchids in the world, 3,000 of them can be found in ____
+Brazil
+10
+
+Of the 262 men who have held the title of pope, how many have died by violence?
+33
+10
+
+Of the 266 men who have been pope, how many have died violently?
+Thirty three
+10
+
+Of the 266 popes, how many died violently?
+Thirty three
+10
+
+Of the seven colours of the rainbow which is the middle one?
+Green
+10
+
+Of the Somme With what acid do nettles cause irritation?
+Formic acid
+10
+
+Of the twenty brightest stars in the sky, what one is the furthest north?
+Capella
+10
+
+Of the two chipmunks, Chip and Dale, ____ has the black nose
+Chip
+10
+
+Of these three bond films, which was the first to be released the man with the golden gun, live and let die or the spy who loved me?
+Live and let die
+10
+
+Of waterloo Common name for the family comprising a peculiar group of spiny, fleshy plants native to America?
+Cactus
+10
+
+Of what are 'smores' made?
+Graham crackers, marshmallow and chocolate
+10
+
+Of what are an arc, radius and sector a part?
+Circle
+10
+
+Of what are corolla, filament and stigma a part of?
+Flower
+10
+
+Of what are dartboards made?
+Horsehairs
+10
+
+Of what are epidermal cells, palisade cells and veins a part?
+Leaf
+10
+
+Of what are Syrah, Merlot and Pinot Noir favourites?
+Grapes
+10
+
+Of what are the central processing units of modern computers mostly composed?
+Silicone
+10
+
+Of what are throat, foxing and platform parts?
+Shoe
+10
+
+Of what are walrus tusks made?
+Ivory
+10
+
+Of what battle was a horse named Comanche the only losing survivor?
+Battle of little big horn
+10
+
+Of what building did Galile? drop his balls?
+The leaning tower of Pisa
+10
+
+Of what continent is cyprus a part?
+Asia
+10
+
+Of what country did Napoleon make his brother, Jerome, king?
+Westphalia
+10
+
+Of what country did Napoleon make his brother, Louis, king?
+Holland
+10
+
+Of what country is Holger Danske the national hero?
+Denmark
+10
+
+Of what country is Lagos the capital?
+Nigeria
+10
+
+Of what country is samsoe is the national cheese?
+Denmark
+10
+
+Of what country is the monetary unit the rupee?
+India
+10
+
+Of what country is Tripoli capital?
+Libya
+10
+
+Of what country was nebuchadnezzar king?
+Assyria
+10
+
+Of what did aristotle say all things were made up?
+Air, earth, fire, water
+10
+
+Of what did israel acquire 4 out of 7 in 1955?
+Dead sea scrolls
+10
+
+Of what did robert the bruce, king of Scotland, die in 1329?
+Leprosy
+10
+
+Of what did Sir Francis Drake die?
+Dysentry
+10
+
+Of what do baby robins eat 14 feet of every day?
+Earthworms
+10
+
+Of what do you use one tenth if you lick a stamp?
+Calorie
+10
+
+Of what does a bicaudal cow have two?
+Tails
+10
+
+Of what does a human being lose an average of 40 to 100 per day?
+Hairs
+10
+
+Of what does a Poker Full House consist?
+Three of a kind and a pair
+10
+
+Of what element is the sun mostly composed?
+Hydrogen
+10
+
+Of what form of artistic expression is Caedmon the first named British exponent?
+Poetry
+10
+
+Of what has alberta, Canada been completely free since 1905?
+Rats
+10
+
+Of what has Ry Cooder only one,that most men have two?
+Eye
+10
+
+Of what is '9' the billionth digit?
+Pi
+10
+
+Of what is 'soweto' in south africa an abbreviation?
+South west township
+10
+
+Of what is 16% of human body weight made up?
+Skin
+10
+
+Of what is a Queen Alexandra Birdwing the worlds largest variety?
+Butterfly
+10
+
+Of what is a rhinocerous horn made?
+Hair
+10
+
+Of what is a smuck a group?
+Jellyfish
+10
+
+Of what is agrostology the study?
+Grasses
+10
+
+Of what is cetology a study?
+Whales
+10
+
+Of what is dendrology the study?
+Trees
+10
+
+Of what is lake victoria the source?
+White nile
+10
+
+Of what is mycology the study?
+Fungi
+10
+
+Of what is pedology the study?
+Soil
+10
+
+Of what is petrology the study?
+Rocks
+10
+
+Of what is st clare patron saint of?
+Television
+10
+
+Of what is the word 'fortnight' a contraction?
+Fourteen nights
+10
+
+Of what metal are meteorites composed?
+Iron
+10
+
+Of what mineral is limestone composed of?
+Calcite
+10
+
+Of what modern mammal is the Mastodon an early relative?
+Elephant
+10
+
+Of what nutrient is egg white composed?
+Protein
+10
+
+Of what origin is 'spanakopita'?
+Greek
+10
+
+Of what planet is 'io' a moon?
+Jupiter
+10
+
+Of what planet is titan a moon?
+Saturn
+10
+
+Of what species is the firefly a member?
+Beetle
+10
+
+Of what substance are teeth made?
+Enamel
+10
+
+Of what was charlie chaplain's cane made?
+Bamboo
+10
+
+Of what was charlie chaplin's cane made?
+Bamboo
+10
+
+Of what was john bentham one of the founders?
+Utilitarianism
+10
+
+Of what was napoleon terrified?
+Cats
+10
+
+Of what was snow white's coffin made?
+Glass
+10
+
+Of what was the first lightbulb filament made?
+Cotton
+10
+
+Of what was the greek Goddess Nyx the personification?
+Night
+10
+
+Of what was vadim viktorovich bakatin the last chairman?
+K.g.b
+10
+
+Of what were ancient egyptian pillows made?
+Stone
+10
+
+Of which academy is a goat the mascot?
+U.s naval academy
+10
+
+Of which african country is lilongwe the capital?
+Malawi
+10
+
+Of which ancient country was Akhenaten a ruler?
+Egypt
+10
+
+Of which Australian band, still rocking after 20 years, is angus young the brains?
+Ac/dc
+10
+
+Of which British politician was it said 'He delivers all his statements as though auditioning for the speaking clock'?
+John major
+10
+
+Of which co star did tony curtis say its like kissing hitler?
+Marilyn monroe
+10
+
+Of which country does the group of about 100 islands, known variously as the Spice Islands, the Moluccas, Maluku and Pulau Seribu, form part?
+Indonesia
+10
+
+Of which country is Amharic an official language?
+Ethiopia
+10
+
+Of which country is constanta the major port city?
+Rumania
+10
+
+Of which country is Khartoum the capital?
+The sudan
+10
+
+Of which country is Maseru the capital?
+Lesotho
+10
+
+Of which country is the flame flower a native?
+South africa
+10
+
+Of which country is the flower the French Marigold a native?
+Mexico
+10
+
+Of which country is voodoo the national religious folk cult?
+Haiti
+10
+
+Of which country was achmed sukarno president from 1945 - 1962?
+Indonesia
+10
+
+Of which country was Admiral Miklos Horthy the political leader during World War 2?
+Hungary
+10
+
+Of which country was Anastasio Somoza president during the 1960s and '70s?
+Nicaragua
+10
+
+Of which country was Andreas Papandreou prime minister?
+Greece
+10
+
+Of which country was Antonio Salazar once dictator?
+Portugal
+10
+
+Of which country was Anwar Sadat the president?
+Egypt
+10
+
+Of which country was faisal, assassinated in 1975, king?
+Saudi arabia
+10
+
+Of which country was Henry the Navigator a prince in the 1400s?
+Portugal
+10
+
+Of which country was louis philippe the last king?
+France
+10
+
+Of which country was Salvador Allende president?
+Chile
+10
+
+Of which country were nasser and king farouk heads of state?
+Egypt
+10
+
+Of which family are watermelons a member?
+Cucumbers
+10
+
+Of which family is the tamaraw, one of the world's rarest animals?
+Buffalo
+10
+
+Of which fruit is 'Red Gauntlet' a variety?
+Strawberry
+10
+
+Of which island group is viti levu, the largest?
+Fiji
+10
+
+Of which Londaon Palace is the Banqueting House the only surviving part?
+The palace of whitehall
+10
+
+Of which metal is azurite the ore?
+Copper
+10
+
+Of which metal is sperrylite the ore?
+Platinum
+10
+
+Of which people was Genghis Kahn a war leader?
+The Mongols
+10
+
+Of which people was William Tell a national hero?
+The Swiss
+10
+
+Of which planet is luna the moon?
+Earth
+10
+
+Of which precious stone is aquamarine a variety?
+Beryl
+10
+
+Of which ship was miles standish captain?
+Mayflower
+10
+
+Of which Spanish province is Santander the capital city?
+Cantabria
+10
+
+Of which Spanish province is Seville the capital city?
+Andalucia
+10
+
+Of which State was Jimmy Carter Governor before he became president?
+Georgia
+10
+
+Of who did the u.s postal service print 500 million stamps in 1993?
+Elvis presley
+10
+
+Of who was atahualpa king?
+Incas
+10
+
+Of who was eva braun the mistress?
+Adolf hitler
+10
+
+Of who was oedipus king?
+Thebes
+10
+
+Of who were castor and pollux the twin sons?
+Zeus and leda
+10
+
+Of whom was Diana Prince the alter ego?
+Wonderwoman
+10
+
+Of whom was it said by Gerald Ford, 'He doesn't dye his hair - he's just prematurely orange'?
+Ronald reagan
+10
+
+Off of what countries coast do you find the great barrier reef?
+Australia
+10
+
+Off the coast of which Australian state is the Great Barrier Reef?
+Queensland
+10
+
+Off what coast was 'prison island'?
+French guiana
+10
+
+Off what country lies the island of Zanzibar?
+Tanzania
+10
+
+Offa's Dyke divided which 2 countries?
+England And Wales
+10
+
+Offered a new pen to write with, 97% of all people will write what?
+Their own name
+10
+
+Office what is the name of the film in which steven segal's character dies?
+Executive decision
+10
+
+Officers how many British officers were forced by Indian troops into the black hole of calcutta?
+One hundred and forty six
+10
+
+Officers in which army were given copies of 'les miserables'?
+Confederate army
+10
+
+Official scrutiny of accounts?
+Audit
+10
+
+Official taxis in london are usually what colour?
+Black
+10
+
+Official taxis in New York are what colour?
+Yellow
+10
+
+Officially recorded as sustaining a fart for 2 mins 42 seconds was ____ Clemmens of London
+Bernard
+10
+
+Often drunk, this liquid is normally harvested from female cows?
+Milk
+10
+
+Often made around a campfire, what has graham crackers, marshmallow and chocolate?
+Smores
+10
+
+Often seen on warning signs, what two words are combined for form the term 'Hazmat'?
+Hazardous material
+10
+
+Ogdensburg, New York is the only city in the U S situated on what river?
+St lawrence river
+10
+
+Ogdensburg, New York is the only city in the United States situated what river?
+St lawrence
+10
+
+Oh no, Beta. Who said it?
+Snake
+10
+
+Oklahoma city is the capital of ____
+Oklahoma
+10
+
+Old fashioned word for a prostitute?
+Harlot
+10
+
+Old maps show Terra Australis Incognita, what was it?
+Unknown southern continent
+10
+
+Old pointed cavalry weapon?
+Lance
+10
+
+Oliver Reed had an eagle tattooed on this part of his anatomy?
+His penis
+10
+
+Oliver's Story was the sequel to which best-seller by Erich Segal?
+Love story
+10
+
+On 'dragnet', who did Harry morgan play?
+Officer bill gannon
+10
+
+On 'dragnet', who played officer bill gannon?
+Harry morgan
+10
+
+On 'speaking in tongues' which group was 'burning down the house' in 1983?
+Talking heads
+10
+
+On 'the flintstones' what was the name of the futuristic rock band?
+Wayouts
+10
+
+On 'the flintstones' who are bambam's parents?
+Barney and betty rubble
+10
+
+On 'the lucy show', who played vivian bagley?
+Vivian vance
+10
+
+On 'the roseanne show', as what was David jacob known?
+D.j
+10
+
+On 'the roseanne show', who was d.j?
+David jacob
+10
+
+On 9 February ____, soap rationing began in Britain
+1942
+10
+
+On a 'qwerty' keyboard, what is the extreme left-hand letter on the bottom row?
+Z
+10
+
+On a 'qwerty' keyboard, what is the extreme left-hand letter on the middle row of letters?
+A
+10
+
+On a 'qwerty' keyboard, what is the letter in between the B and the C key?
+V
+10
+
+On a 'qwerty' keyboard, what is the letter in between the D and the G key?
+F
+10
+
+On a 'qwerty' keyboard, what is the letter in between the J and the L key?
+K
+10
+
+On a 'qwerty' keyboard, what is the letter in between the W and the R key?
+E
+10
+
+On a bingo card of 90 numbers, there are approximately ____ ways to make B-I-N-G-O
+44,000,000
+10
+
+On a chemical what does a skull and cross-bone mean?
+Toxic
+10
+
+On a cluedo board how many rooms are there?
+9
+10
+
+On a compass what do the initials NEbE stand for?
+North-east by east
+10
+
+On a dartboard, what number is on top?
+Twenty
+10
+
+On a darts board what number is directly opposite 10?
+Fourteen
+10
+
+On a dice, what is on the opposite side of the '5'?
+Two
+10
+
+On a German white wine what does the word 'Spatlese' (pronounced 'shpate-laser') signify?
+Late picked
+10
+
+On a hallmark, which metal is indicated by a Lion passant in England and a lion rampant in Scotland?
+Sterling silver
+10
+
+On a human body, hair grows out of pits in the skin. What are these pits called?
+Follicles
+10
+
+On a london underground map, what colour is the district line?
+Green
+10
+
+On a map, how is a parallel also known?
+Latitude
+10
+
+On a Monopoly Board, what colour is Regent Street?
+Green
+10
+
+On a monopoly board, what lies between st Charles place and states ave?
+Electric company
+10
+
+On a music score what name is given to the key and meter (or time) signs at the beginning of a composition?
+Signature
+10
+
+On a pack of cards which way does the king of clubs face?
+Right
+10
+
+On a ship, what is the plimsoll line?
+Loading line
+10
+
+On airwolf, what instrument does hawke play?
+Cello
+10
+
+On an analogue clock, what number faces 4?
+10
+10
+
+On august 26 1990, after finishing an encore jam featuring Eric clapton, buddy guy and robert cray, whose helicopter crashed on his way from wisconsin to Chicago?
+Stevie ray vaughan
+10
+
+On average, an iceberg weighs ____ tons
+20,000,000
+10
+
+On average, elephants sleep for about ____ per day
+Two hours
+10
+
+On average, people fear spiders more than they do?
+Death
+10
+
+On average, there are 333 squares of ____ on a roll
+Toilet paper
+10
+
+On average, which game takes the longest to play?
+Football
+10
+
+On Beverly Hills 90210 What was the name of Brandon's first car?
+Mondale
+10
+
+ON Beverly Hills 90210,where did the Walshes live before they moved to Beverly Hills?
+Minnesota
+10
+
+On boy meets world,what is the crazy older brother's name?
+Eric
+10
+
+On cars gb stands for what country?
+Great britain
+10
+
+On Children's TV who has friends called Wendy, Muck and Scoop?
+Bob the builder
+10
+
+On clothing labels what is the meaning of a symbol consisting of a circle within a square crossed out?
+Do not tumble dry
+10
+
+On clothing, what does the symbol of a circle crossed-out indicate?
+Do not dry clean
+10
+
+On clothing, what does the symbol of a circle inside a square indicate?
+Can be tumble dried
+10
+
+On december 1, 1917, who opened boys town, a farm village for wayward boys, near omaha, nebraska?
+Father edward flanagan
+10
+
+On december 1, 1990, workers from france and England met in what structure in the middle of the English channel?
+Chunnel
+10
+
+On Diff'rent Strokes,what pet did Arnold keep in his room?
+Goldfish
+10
+
+On Different Strokes,who got kidnapped?
+Sam
+10
+
+On every episode of the a-team, mr t is deathly afraid of?
+Flying
+10
+
+On FRIENDS what was the name of Ross's monkey?
+Marcel
+10
+
+On friends,what did phoebe promise to give chandler if he never smoked again?
+$7,000
+10
+
+On Friends,what did Phoebe promise to give Chandler if her never smoked again?
+$7,000
+10
+
+On Full House Uncle Jesse had a last name before it became Katsopolis what was it?
+Cochran
+10
+
+On full house, what was jesse's real first name?
+Nick
+10
+
+On Full House,what was Jesse's REAL first name?
+Hermes
+10
+
+On George Martin's farewell album In My Life, which actor sings the title song?
+Sean connery
+10
+
+On German pottery, which factory's mark was from 1724 a pair of crossed swords?
+Meissen
+10
+
+On get smart, who was seldom called by his name thaddeus?
+Chief
+10
+
+On gilligan's island, what was ginger's last name?
+Grant
+10
+
+On Happy Days,what animal did Fonzie jump his motorcycle over?
+A shark
+10
+
+On hee haw, what was edgar owen's nickname?
+Buck
+10
+
+On how many continents must a sport be played regularly before it is accepted into the olympics?
+Five
+10
+
+On international automobile license plates, what country is represented by the letter e?
+Spain
+10
+
+On irc, how do you ask age, sex, location?
+A/s/l
+10
+
+On irc, what is a/s/l?
+Age, sex, location
+10
+
+On january 1, 1993, this european nation split into two separate sides?
+Czechoslovakia
+10
+
+On january 17th 1920, the volstead act, the legislation implementing prohibition, took effect. that just so happened to be the 21st birthday of a man whose name would be tied intimately with the prohibition era, namely?
+Al capone
+10
+
+On July 16 1969, when Neil Armstrong, Edwin Aldrin, and Michael Collins took off on our first expedition to the surface of the moon, they were carried by a?
+Saturn V Launch Vehicle
+10
+
+On June 16, 1456, King Charles VII of France annulled a judgment of heresy against ____, 25 years after she had been burnt at the stake
+Joan of arc
+10
+
+ON june 21 2001 a total eclipse will be seen in...?
+South Africa
+10
+
+On Laverne & Shirley,what was Laverne's favorite drink?
+Milk and Pepsi
+10
+
+On Leonardo Da Vinci's painting 'The Last Supper'how many people are depicted?
+13
+10
+
+On Little House on the Prairie,what was Laura's horse's name?
+Bunny 
+10
+
+On little house on the prairie,what was the original name for the school teacher?
+Miss beatle 
+10
+
+On Little House on the Prarie,what was the original name for the school teacher?
+Miss Beatle 
+10
+
+On maps, what is the 'you are here' arrow?
+Ideo locator
+10
+
+On maps, what is the technical name for the 'you are here' arrow?
+Ideo locator
+10
+
+On March 29, 1848, Niagara Falls stopped flowing for 30 hours because of what?
+Ice jam
+10
+
+On March 29, 1848, Niagara Falls stopped flowing for 30 hours. What caused this?
+Ice jam blocking the niagara river
+10
+
+On mash, what was walter 'radar' o'reilley's home town?
+Ottumwa,iowa
+10
+
+On mash,what was the name of bj's wife?
+Peg.
+10
+
+On May 16, 1991, Queen ____ became the first British monarch in history to address Congress during her U.S. tour
+Elizabeth ii
+10
+
+On mr ed, what was wilbur's last name?
+Post
+10
+
+On MTV's Blame Game what is the name of the Judge?
+Judge Reed
+10
+
+On my three sons, which character did william demarest play?
+Uncle charley
+10
+
+On night Court what was Bull's IQ?
+181
+10
+
+On Night Court,who was Harry's idol?
+Mel Torme
+10
+
+On november 26, 1941, what did president roosevelt declare will always be celebrated on the fourth thursday in november?
+Thanksgiving
+10
+
+On One Day at a Time,what were the two daughter's names?
+Barbara and Julie 
+10
+
+On petticoat junction, what was the name of the train?
+Cannonball
+10
+
+On porter waggoner's tv show, who was his first singing partner?
+Norma jean
+10
+
+On Punky Brewster,how was she abandoned by her mother?
+Her mother went in to the grocery store and never came out.
+10
+
+On Saved By The Bell,what was the name of the beach club that the gang worked at?
+Malibu Sands Beach Club
+10
+
+On the 11th day of christmas, my true love gave to me?
+Eleven pipers piping
+10
+
+On the andy williams show, what did the bear like to eat?
+Cookies
+10
+
+On the banks of which mighty river did a Spanish explorer spot a group of native female warriors in the 1540s?
+The amazon
+10
+
+On the beaufort scale what is the minimum speed of a hurricane (mph)?
+78
+10
+
+On the body what is a calcaneium?
+Heel bone
+10
+
+On the border between Brazil and which other south American country would you find the itaipu dam?
+Paraguay
+10
+
+On the border of which two states are the smoky mountains?
+Tennessee and north carolina
+10
+
+On the bullwinkle show, what was boris's last name?
+Badenov
+10
+
+On the cartoon show 'the jetsons', how old is judy?
+Fifteen
+10
+
+On the chinese calendar, 1998 is the year of the ____
+Tiger
+10
+
+On the chinese calendar, the year 2000 will be the year of the what?
+Dragon
+10
+
+On the coast of which modern country did the Phoenicians live?
+Lebanon
+10
+
+On The Drew Carey Show what foreign country did Mimi send Drew to?
+China
+10
+
+On the fahrenheit scale, how many degrees are there between freezing point and boiling point?
+One hundred and eighty
+10
+
+On the fahrenheit scale, there are 180 degrees between boiling point and ____
+Freezing point
+10
+
+On the fahrenheit scale, there are 180 degrees between freezing point and ____
+Boiling point
+10
+
+On the London Underground, one station has adifferent name on two of its platforms. They are?
+Bank & monument
+10
+
+On the muppet show, who is the commanding officer of the starship swinetrek?
+Captain link hogthrob
+10
+
+On the old kids' show winky dink & you, what was woofer?
+Dog
+10
+
+On the shore of which lake are Chicago & Milwaukee?
+Lake michigan
+10
+
+On the shores of which lake are Chicago and Milwaukee?
+Lake michigan
+10
+
+On the show cheers, what was the name of the restaurant above the bar?
+Melvilles
+10
+
+On the show friends what is phoebes twin sisters name?
+Ursulla
+10
+
+On the show FRIENDS what was Phoebes twin sisters name?
+Eursela
+10
+
+On the show Kight Rider,what was the name of K.I.T.T.s evil double?
+K.A.R.R.
+10
+
+On The Simpsons, baby Maggie's first words we gurgled by who?
+Elizabeth Taylor
+10
+
+On the simpsons, who is mr. burns' assistant?
+Waylon smithers
+10
+
+On the skull and crossbones flag, what kind of bones are the crossbones?
+Femurs
+10
+
+On the stone temples of ____ in southern India, there are more than 30 million carved images of gods and goddesses
+Madura
+10
+
+On the stress scale, what rates the highest?
+Retirement
+10
+
+On the T.V. series MASH, Corporal Klinger hailed from which Midwestern city?
+Toledo
+10
+
+On the T.V. show 'The Beverley Hillbillies', what was the street address of the Clampett Mansion?
+518 Crestview Drive
+10
+
+On the tv show 'seinfeld', what is kramer's first name?
+Cosmo
+10
+
+On the TV show 'The Simpsons', What color is Marge Simpson's hair?
+Blue
+10
+
+On the tv show 'the simpsons', what is the name of the school janitor?
+Willie
+10
+
+On the tv show m-a-s-h, what object was stolen out of Henry blake's office using a helicopter?
+Desk
+10
+
+On This Day: 01 April 1970 ____ release hoax they are having dual sex change operations
+-- Answer metadata begin
+{
+    "answers": ["John & Yoko", "John Lennon & Yoko Ono", "John Lennon and Yoko Ono"]
+}
+-- Answer metadata end
+10
+
+On This Day: 01 August 1960 Benin (Dahomey) gained independence from ____
+France
+10
+
+On This Day: 01 August 1971 George Harrison's concert for ____ takes place in NYC
+Bangladesh
+10
+
+On This Day: 01 December 1970 Independent People's Republic of ____ becomes the People's Democratic Republic of Yemen
+South yemen
+10
+
+On This Day: 01 December 1973 Australia grants self-government to ____
+Papua new guinea
+10
+
+On This Day: 01 December 1973 Jack ____ becomes 1st golfer to earn $2M in a year
+Nicklaus
+10
+
+On This Day: 01 February 1960 Extreme right-wing rebels in ____ surrender
+Algiers
+10
+
+On This Day: 01 February 1970 Stalled commuter train rammed by express in____ , 139 die
+Argentina
+10
+
+On This Day: 01 February 1970 West-Germany & ____ sign gas contract
+Ussr
+10
+
+On This Day: 01 January 1960 ____ plays 1st of many free concerts behind bars
+Johnny cash
+10
+
+On This Day: 01 January 1960 Bank of ____ issues new franc, worth 20?
+France
+10
+
+On This Day: 01 January 1960 Cameroon (French Cameroon) gained independence from ____
+France
+10
+
+On This Day: 01 January 1960 Montserrat adopts ____
+Constitution
+10
+
+On This Day: 01 January 1970 Revised ____ for Western (RC) Church goes into effect
+Calendar
+10
+
+On This Day: 01 January 1971 ____ advertisements banned on TV
+Cigarette
+10
+
+On This Day: 01 January 1972 People's Republic of China performs ____ at Lop Nor People's Rebulic of China
+Nuclear test
+10
+
+On This Day: 01 January 1973 47th Australian Women's Tennis Margaret Court beats ____ (64 75)
+Goolagong
+10
+
+On This Day: 01 January 1973 Britain, Ireland & Denmark become 7th-9th members of ____ Market
+Common
+10
+
+On This Day: 01 January 1973 West ____ Economic Community formed (Benin, Ivory Coast, Mali, Mauritania, Niger, Senegal, Upper Volta)
+African
+10
+
+On This Day: 01 January 1975 Haldeman, Ehrlichman, Mitchell & Mardian convicted of ____ crime
+Watergate
+10
+
+On This Day: 01 January 1975 Sweden adopts ____
+Constitution
+10
+
+On This Day: 01 July 1960 ____ becomes a republic
+Ghana
+10
+
+On This Day: 01 June 1975 ____ replaces Mick Taylor as Rolling Stone guitarist
+Ron woods
+10
+
+On This Day: 01 March 1970 End of US commercial ____ hunting
+Whale
+10
+
+On This Day: 01 March 1970 Kreisky's social-democrats win ____ parliamentary election
+Austrian
+10
+
+On This Day: 01 March 1970 White government of Rhodesia declares independence from ____
+Britain
+10
+
+On This Day: 01 March 1974 George ____ announces his concert tour of US in November
+Harrison
+10
+
+On This Day: 01 March 1974 Ian & Greg ____ make 264 partnership vs New Zealand cricket at Wellington
+Chappell
+10
+
+On This Day: 01 March 1975 17th Grammy Awards: I Honestly Love You, Marvin ____ wins
+Hamlisch
+10
+
+On This Day: 01 May 1960 ____ shoots down Francis Gary Powers' U-2 spy plane over Sverdlovsk
+Russia
+10
+
+On This Day: 01 October 1960 Nigeria gained independence from ____ (National Day)
+Britain
+10
+
+On This Day: 01 October 1971 Walt Disney World in____ , Florida opens
+Orlando
+10
+
+On This Day: 01 October 1975 ____ grants internal self-government to Seychelles
+Britain
+10
+
+On This Day: 01 September 1971 Qatar declares independence from ____
+Britain
+10
+
+On This Day: 01 September 1972 ____ (US) defeats Boris Spassky (USSR) for world chess title
+Bobby fischer
+10
+
+On This Day: 02 April 1972 ____ Academy Awards presented
+44th
+10
+
+On This Day: 02 April 1972 Prime Minister Begin visits ____
+Cairo
+10
+
+On This Day: 02 February 1960 Michale Eufemia sinks 625 balls in ____ without a miss
+Pool match
+10
+
+On This Day: 02 February 1971 ____ ousts Milton Obote to become dictator of Uganda
+Idi amin
+10
+
+On This Day: 02 January 1960 John Reynolds sets age of solar system at ____ years
+4,950,000,000
+10
+
+On This Day: 02 January 1960 Roger Sessions' 4th ____ premieres
+Symphony
+10
+
+On This Day: 02 January 1960 Senator____ , announces his candidacy for President
+John f kennedy
+10
+
+On This Day: 02 January 1971 A barrier collapses at Ibrox Park football ground at end of a Football match in Glasgow____ , killing 66
+Scotland
+10
+
+On This Day: 02 January 1972 Mariner 9 begins mapping ____
+Mars
+10
+
+On This Day: 02 January 1974 55 MPH speed limit imposed by Richard ____
+Nixon
+10
+
+On This Day: 02 January 1974 Worst fire in ____ history destroys 1.2 million acres
+Argentine
+10
+
+On This Day: 02 January 1975 US Department of Interior designates ____ a threatened species
+Grizzly bear
+10
+
+On This Day: 02 March 1970 ____ becomes independent republic
+Rhodesia
+10
+
+On This Day: 02 March 1970 Supreme Court ruled ____ can not be penalized after 5 years
+Draft evaders
+10
+
+On This Day: 02 March 1972 Pioneer 10 launched for ____ flyby
+Jupiter
+10
+
+On This Day: 02 March 1974 Greg ____ makes 247 vs New Zealand, 410 minutes, 29 fours 1 six
+Chappell
+10
+
+On This Day: 02 May 1960 Harry ____ 's 2nd Carnegie Hall performance
+Belafonte
+10
+
+On This Day: 02 May 1974 Former Vice President ____ is disbarred
+Spiro agnew
+10
+
+On This Day: 02 May 1975 ____ records closes down
+Apple
+10
+
+On This Day: 02 October 1972 Aeroflot Il-18 crashes near ____ resort of Sochi, kills 105
+Black sea
+10
+
+On This Day: 03 April 1974 148 ____ are reported over an area covering a dozen states
+Tornadoes
+10
+
+On This Day: 03 April 1975 ____ stripped of world chess title for refusing to defend
+Bobby fischer
+10
+
+On This Day: 03 August 1960 Niger gained independence from ____
+France
+10
+
+On This Day: 03 August 1971 Paul McCartney announces the formation of his group ____
+Wings
+10
+
+On This Day: 03 August 1974 Guitarist Jeff Baxter quits ____ & joins Doobie Brothers
+Steely dan
+10
+
+On This Day: 03 December 1972 Convair 990A charter crashes in ____ Canary Island, 155 die
+Tenerife
+10
+
+On This Day: 03 December 1973 Pioneer 10 passes ____ 1st fly-by of an outer planet)
+Jupiter
+10
+
+On This Day: 03 January 1974 Arias Navarro succeeds Carrero Blanco as premier of ____
+Spain
+10
+
+On This Day: 03 January 1974 Burma accepts its ____
+Constitution
+10
+
+On This Day: 03 July 1970 200,000 attend ____ Pop Festival
+Atlanta
+10
+
+On This Day: 03 March 1971 South African Broadcasting Corp lifts its ban on the ____
+Beatles
+10
+
+On This Day: 03 March 1971 Winnie ____ sentenced to 1 year in jail in South Africa
+Mandela
+10
+
+On This Day: 03 March 1974 George Foreman KOs ____
+Ken norton
+10
+
+On This Day: 03 March 1974 World's worst air disaster, Turkish DC-10 crashes in ____ 246 die)
+Paris france
+10
+
+On This Day: 03 March 1975 Linda McCartney is charged in US with possession of ____
+Marijuana
+10
+
+On This Day: 03 May 1971 Nixon administration arrests ____ anti-war protesters in 3 days
+13,000
+10
+
+On This Day: 03 November 1970 Salvador Allende inaugurated as President of ____
+Chile
+10
+
+On This Day: 04 April 1975 ____ is arrested for burning his girlfriend's clothes
+Steve miller
+10
+
+On This Day: 04 August 1970 Jim ____ arrested for drunkenness
+Morrison
+10
+
+On This Day: 04 August 1971 US launches 1st ____ into lunar orbit from manned spacecraft
+Satellite
+10
+
+On This Day: 04 December 1974 Dutch DC-8 charter crashes in ____ killing 191 Moslem pilgrims
+Sri lanka
+10
+
+On This Day: 04 February 1970 US performs ____ test at Nevada Test Site
+Nuclear
+10
+
+On This Day: 04 February 1971 British car maker ____ declared itself bankrupt
+Rolls royce
+10
+
+On This Day: 04 February 1974 ____ Nim Chimsky signs his 1st word, at 21/2 months
+Chimpanzee
+10
+
+On This Day: 04 February 1974 Gas rationing ends in ____
+Netherlands
+10
+
+On This Day: 04 February 1974 Patricia ____ 19), daughter of publisher Randolph Hearst kidnapped by Symbionese Liberation Army
+Hearst
+10
+
+On This Day: 04 January 1960 European Free Trade Association forms in ____
+Stockholm
+10
+
+On This Day: 04 January 1970 ____ ends hosting weekly documentary
+Walter cronkite
+10
+
+On This Day: 04 January 1970 ____ last recording session at EMI studios
+Beatles
+10
+
+On This Day: 04 January 1971 Dr Melvin H Evans inaugurated as 1st elected Governor of ____ Islands
+Virgin
+10
+
+On This Day: 04 July 1960 America's new 50-star flag honoring ____ statehood unfurled
+Hawaiian
+10
+
+On This Day: 04 June 1970 Tonga gained independence from ____ (National Day)
+Britain
+10
+
+On This Day: 04 March 1960 Lucille Ball files divorce from ____
+Desi arnaz
+10
+
+On This Day: 04 March 1972 ____ & USSR signs cooperation treaty
+Libya
+10
+
+On This Day: 04 March 1974 Harold ____ replaces resigning Ed Heath as British premier
+Wilson
+10
+
+On This Day: 04 September 1972 US swimmer ____ becomes 1st athlete to win 7 olympic gold medals
+Mark spitz
+10
+
+On This Day: 05 April 1971 Mount ____ erupts in Sicily Italy
+Etna
+10
+
+On This Day: 05 April 1974 Then tallest building, ____ opens in NYC 110 stories)
+World trade center
+10
+
+On This Day: 05 August 1973 ____ launches Mars 6
+Ussr
+10
+
+On This Day: 05 February 1974 Maximum speed on ____ reduced to 100 kph
+Autobahn
+10
+
+On This Day: 05 January 1960 Continental League, a proposed third____ , gets an assurance of congressional support from New York Senator Kenneth Keating
+Major league
+10
+
+On This Day: 05 January 1971 1st one-day international, Australia vs ____ at the MCG
+England
+10
+
+On This Day: 05 January 1971 Harlem ____ lose 100-99 to New Jersey Reds, ending 2,495-game win streak
+Globetrotters
+10
+
+On This Day: 05 January 1972 NASA announces development of ____
+Space shuttle
+10
+
+On This Day: 05 January 1973 Mali & Niger break diplomatic relations with ____
+Israel
+10
+
+On This Day: 05 January 1973 Netherlands recognizes ____ Democratic Republic
+German
+10
+
+On This Day: 05 July 1970 Air Canada DC-8 crashes 7 miles from ____ 's airport killing 109
+Toronto
+10
+
+On This Day: 05 July 1973 ____ begins issuing their own postage stamps
+Isle of man
+10
+
+On This Day: 05 June 1975 ____ reopens (after 6 Day War caused it to close)
+Suez canal
+10
+
+On This Day: 05 March 1960 ____ ends 2-year hitch in US Army
+Elvis presley
+10
+
+On This Day: 05 May 1970 US performs nuclear test at ____ test Site
+Nevada
+10
+
+On This Day: 05 September 1960 Cassius ____ captures the olympic light heavyweight gold medal
+Clay
+10
+
+On This Day: 05 September 1972 11 Israeli athletes are slain at ____
+Munich olympics
+10
+
+On This Day: 06 April 1973 Pioneer 11 launched toward Jupiter & ____
+Saturn
+10
+
+On This Day: 06 February 1971 1st time a golf ball is hit on the ____ (by Alan Shepard)
+Moon
+10
+
+On This Day: 06 February 1974 Dutch speed limit set at 100 km due to ____
+Oil crisis
+10
+
+On This Day: 06 June 1971 Soyuz 11 takes 3 ____ to Salyut 1 space station
+Cosmonauts
+10
+
+On This Day: 06 June 1975 British voters decide to remain in ____ Market
+Common
+10
+
+On This Day: 06 March 1972 Jack Nicklaus passes ____ as golf's all-time money winner
+Arnold palmer
+10
+
+On This Day: 06 March 1974 An Italian loses a record $1,920,000 at roulette in ____
+Monte carlo
+10
+
+On This Day: 06 May 1960 England's Princess ____ marries Antony Armstrong-Jones (Lord Snowdon)
+Margaret
+10
+
+On This Day: 06 May 1960 President ____ signs Civil Rights Act of 1960
+Eisenhower
+10
+
+On This Day: 06 May 1960 Students attack Dutch embassy in ____
+Djakarta
+10
+
+On This Day: 06 May 1970 Yuchiro Miura of Japan skis down Mount ____
+Everest
+10
+
+On This Day: 06 November 1975 1st appearance of the ____
+Sex pistols
+10
+
+On This Day: 06 October 1973 Yom Kippur War begins as Syria & Egypt attack ____
+Israel
+10
+
+On This Day: 06 September 1972 ____ appear on Jerry Lewis Muscular Dystrophy Telethon
+John & yoko
+10
+
+On This Day: 07 August 1970 1st computer ____ tournament
+Chess
+10
+
+On This Day: 07 December 1972 Phillippine 1st lady Imelda ____ stabbed & wounded by an assailant
+Marcos
+10
+
+On This Day: 07 February 1960 Old handwriting found in at____ , near the Dead Sea
+Qumran
+10
+
+On This Day: 07 February 1970 US female ____ championship won by Janet Lynn
+Figure skating
+10
+
+On This Day: 07 February 1970 US male ____ championship won by Tim Wood
+Figure skating
+10
+
+On This Day: 07 February 1971 Women win the right to vote in ____
+Switzerland
+10
+
+On This Day: 07 February 1974 Grenada gained independence from ____ (National Day)
+Britain
+10
+
+On This Day: 07 January 1972 Iberian Airlines crashes into 800' peak on island of____ , 104 die
+Ibiza
+10
+
+On This Day: 07 January 1973 US poet James Merrill wins ____ Prize
+Bollingen
+10
+
+On This Day: 07 January 1974 Dutch rations ____
+Gasoline
+10
+
+On This Day: 07 January 1975 ____ fans riot before Boston concert, causing $30,000 damage
+Led zeppelin
+10
+
+On This Day: 07 July 1960 USSR shoots down a US aircraft over ____ sea
+Barents
+10
+
+On This Day: 07 July 1972 Billie Jean King beats Evonne ____ to win Wimbeldon
+Goolagong
+10
+
+On This Day: 07 June 1970 The Who's Tommy is performed at NY's ____
+Lincoln center
+10
+
+On This Day: 07 June 1971 Soviet Soyuz 11 crew completes 1st transfer to orbiting ____
+Salyut
+10
+
+On This Day: 07 June 1972 German Chancellor Willy Brandt visits ____
+Israel
+10
+
+On This Day: 07 March 1971 Egypt refuses to renew the ____ ceasefire
+Suez
+10
+
+On This Day: 07 March 1973 Sheik Mujib ur-Rahman's Awami League wins election in ____
+Bangladesh
+10
+
+On This Day: 07 March 1974 1st general striking in ____
+Ethiopia
+10
+
+On This Day: 07 May 1960 Leonid ____ replaces Kliment Voroshilov as President of USSR
+Brezhnev
+10
+
+On This Day: 07 November 1970 Race riots in Daytona Beach ____
+Florida
+10
+
+On This Day: 08 August 1960 Ivory Coast declares ____
+Independence
+10
+
+On This Day: 08 February 1971 South Vietnamese troops invade ____
+Laos
+10
+
+On This Day: 08 February 1973 Senate names 7 members to investigate ____ scandal
+Watergate
+10
+
+On This Day: 08 February 1975 1800 Unification church couples' wed in ____
+Korea
+10
+
+On This Day: 08 January 1971 29 pilot ____ beach themselves & die at San Clemente Island CA
+Whales
+10
+
+On This Day: 08 January 1973 Greg ____ 's best Test bowling, 5-61 vs Pakistan at SCG
+Chappell
+10
+
+On This Day: 08 January 1973 Secret peace talks between US & ____ resumed near Paris
+North vietnam
+10
+
+On This Day: 08 January 1973 USSR launches ____ 21 for Moon landing
+Luna
+10
+
+On This Day: 08 January 1974 ____ photographed
+Loch ness monster
+10
+
+On This Day: 08 June 1975 2 passenger trains collided near ____ Germany killing 35
+Munich
+10
+
+On This Day: 08 June 1975 USSR launches Venera 9 for ____ landing
+Venus
+10
+
+On This Day: 08 March 1971 Joe Frazier beats ____ at Madison Square Garden (New York NY)in 15, retains heavyweight boxing title
+Muhammad ali
+10
+
+On This Day: 08 March 1972 1st ____ flown over Britain in 20 years (Europa)
+Airship
+10
+
+On This Day: 08 March 1972 1st flight of the ____ blimp
+Goodyear
+10
+
+On This Day: 08 March 1973 Paul & Linda McCartney are fined ?100 for growing ____
+Cannabis
+10
+
+On This Day: 08 March 1974 Charles ____ Airport opens in Paris France
+De gaulle
+10
+
+On This Day: 08 May 1960 USSR & ____ resume diplomatic relations
+Cuba
+10
+
+On This Day: 08 May 1971 ____ beats Muhammad Ali at Madison Square Garden
+Joe frazier
+10
+
+On This Day: 08 May 1972 Sabena aircraft at Lod International, Tel Aviv, captured by ____
+Palestinians
+10
+
+On This Day: 08 May 1974 Canadian Government of ____ falls
+Trudeau
+10
+
+On This Day: 08 September 1974 Pres ____ pardons former Pres R Nixon of all federal crimes
+Gerald ford
+10
+
+On This Day: 09 April 1970 ____ announces official split of the Beatles
+Paul mccartney
+10
+
+On This Day: 09 April 1972 Jack ____ wins Masters golf tournament
+Nicklaus
+10
+
+On This Day: 09 August 1960 Race riot in Jacksonville ____
+Florida
+10
+
+On This Day: 09 August 1972 Rockwell receives NASA contract to construct the ____
+Space shuttle
+10
+
+On This Day: 09 August 1973 ____ launches Mars 7
+Ussr
+10
+
+On This Day: 09 August 1973 Henry McCullough & Denny Seiwell quit ____
+Wings
+10
+
+On This Day: 09 February 1971 Quake in ____ Valley kills 65 & causes over $1/2 billion damage
+San fernando
+10
+
+On This Day: 09 January 1960 Building of Aswan dam in____ , begins
+Egypt
+10
+
+On This Day: 09 January 1970 Constitution of ____ enacted
+Singapore
+10
+
+On This Day: 09 January 1972 Billionaire Howard ____ said Clifford Irving's biography is a fake
+Hughes
+10
+
+On This Day: 09 January 1972 Passenger ship ____ destroyed by fire
+Queen elizabeth
+10
+
+On This Day: 09 January 1975 Australia beat ____ by 171 runs in 4th Test to regain Ashes
+England
+10
+
+On This Day: 09 July 1972 1st tour of Paul McCartney & ____ (France)
+Wings
+10
+
+On This Day: 09 June 1972 ____ signs a record deal with Columbia
+Bruce springsteen
+10
+
+On This Day: 09 June 1974 Supergroup Blind ____ 's (Clapton, Windwood, Baker) 1st concert
+Faith
+10
+
+On This Day: 09 May 1960 ____ becomes a member of the British Commonwealth
+Nigeria
+10
+
+On This Day: 09 May 1960 US is 1st country to use the ____ pill legally
+Birth control
+10
+
+On This Day: 09 May 1970 100,000s demonstrate against ____ War
+Vietnam
+10
+
+On This Day: 09 May 1971 Friends of Earth return 1500 non-returnable bottles to ____
+Schweppes
+10
+
+On This Day: 09 October 1970 Khmer Republic (Cambodia) declares ____
+Independence
+10
+
+On This Day: 09 October 1973 Elvis & ____ Presley divorce after 6 years
+Priscilla
+10
+
+On This Day: 09 October 1975 Emperor ____ of Japan visits SF
+Hirohito
+10
+
+On This Day: 09 October 1975 Soviet dissident Andrei Sakharov wins ____ Prize
+Nobel peace
+10
+
+On This Day: 09 September 1971 John Lennon & ____ appear on the Dick Cavett Show (ABC-TV)
+Yoko ono
+10
+
+On This Day: 09 September 1975 ____ 2 launched toward orbit around Mars, soft landing
+Viking
+10
+
+On This Day: 10 April 1960 Arnold ____ wins his 2nd Masters golf tournament
+Palmer
+10
+
+On This Day: 10 August 1960 ____ 13 launched into orbit; returned 1st object from space
+Discoverer
+10
+
+On This Day: 10 February 1971 Royal Albert Hall bans scheduled concert featuring Frank ____
+Zappa
+10
+
+On This Day: 10 February 1974 Iran/____ border fight breaks out
+Iraqi
+10
+
+On This Day: 10 January 1960 Bollingen Prize for ____ awarded to Delmore Schwartz
+Poetry
+10
+
+On This Day: 10 January 1971 Bollingen Prize for ____ awarded to Richard Wilbur
+Poetry
+10
+
+On This Day: 10 July 1973 Bahamas gain independence after 300 yrs of ____ rule (Nat'l Day)
+British
+10
+
+On This Day: 10 June 1973 ____ launches Radio Astronomy Explorer 49 into lunar orbit
+Nasa
+10
+
+On This Day: 10 March 1960 USSR agrees to stop ____
+Nuclear testing
+10
+
+On This Day: 10 March 1973 Morocco adopts ____
+Constitution
+10
+
+On This Day: 10 March 1974 Christian Democrats win ____ parliamentary election
+Belgium
+10
+
+On This Day: 10 May 1972 Overloaded South ____ bus plunges into reservoir, killing 77
+Korean
+10
+
+On This Day: 10 November 1971 US table tennis team arrived in ____
+China
+10
+
+On This Day: 10 November 1975 PLO leader Yasser ____ addresses UN in NYC
+Arafat
+10
+
+On This Day: 10 October 1970 Fiji gained independence from ____ (National Day)
+Britain
+10
+
+On This Day: 10 October 1975 Liz Taylor's ____ marriage (re-marries Richard Burton)
+6th
+10
+
+On This Day: 10 September 1960 Running barefoot, Ethiopian Abebe Bikila wins ____ Olympic marathon
+Rome
+10
+
+On This Day: 10 September 1973 Muhammad Ali defeats ____
+Ken norton
+10
+
+On This Day: 10 September 1974 Guinea-Bissau gained independence from ____
+Portugal
+10
+
+On This Day: 11 April 1960 1st ____ satellite launched (Tiros 1)
+Weather
+10
+
+On This Day: 11 August 1960 Chad declares ____
+Independence
+10
+
+On This Day: 11 August 1974 Lee ____ wins PGA championship
+Trevino
+10
+
+On This Day: 11 February 1970 ____ becomes 4th nation to put a satellite (Osumi) in orbit
+Japan
+10
+
+On This Day: 11 February 1970 ____ pays ?1,344 fines for 96 protesting the South African rugby team playing in Scotland
+John Lennon
+10
+
+On This Day: 11 February 1973 1st one-day international for Pakistan & ____
+New zealand
+10
+
+On This Day: 11 February 1975 Margaret Thatcher defeats Edward ____ for Conservative leadership
+Heath
+10
+
+On This Day: 11 January 1960 Chad declares independence from ____
+France
+10
+
+On This Day: 11 January 1960 Lamar Clark sets pro boxing record of 44 consecutive ____
+Knockouts
+10
+
+On This Day: 11 January 1972 East-Pakistan becomes independent state of ____
+Bangladesh
+10
+
+On This Day: 11 January 1973 Trial of the ____ burglars begins in Washington DC
+Watergate
+10
+
+On This Day: 11 July 1960 Ivory Coast, Dahomey, Upper Volta & Niger declare ____
+Independence
+10
+
+On This Day: 11 March 1960 ____ launched into solar orbit between Earth & Venus
+Pioneer 5
+10
+
+On This Day: 11 March 1974 Mount Etna in ____ erupts
+Sicily
+10
+
+On This Day: 11 March 1975 ____ military coup under General Spinola fails
+Portugal
+10
+
+On This Day: 11 May 1960 Israeli soldiers capture Adolf ____ in Buenos Aires
+Eichmann
+10
+
+On This Day: 11 May 1972 ____ says his phone is tapped by FBI on Dick Cavett Show
+John lennon
+10
+
+On This Day: 11 May 1975 ____ signs an agreement with European Economic Market
+Israel
+10
+
+On This Day: 11 November 1975 Angola gained independence from ____ (National Day)
+Portugal
+10
+
+On This Day: 11 September 1960 The 17th Olympic games close in ____
+Rome
+10
+
+On This Day: 11 September 1973 Chile's President, Salvador____ , deposed in a military coup
+Allende
+10
+
+On This Day: 12 April 1970 Yankees dedicate plaques to Mickey Mantle & Joe ____
+Dimaggio
+10
+
+On This Day: 12 August 1960 Echo 1, 1st ____ satellite, is launched
+Communications
+10
+
+On This Day: 12 December 1970 Small Astronomy Satellite Explorer 42 launched to study ____
+X-rays
+10
+
+On This Day: 12 December 1975 Sara Jane Moore pled guilty to trying to kill President ____
+Gerald ford
+10
+
+On This Day: 12 February 1960 Chinese army kills 12 ____ soldiers
+Indian
+10
+
+On This Day: 12 January 1970 Boeing ____ makes its maiden voyage
+747
+10
+
+On This Day: 12 July 1960 Congo, Chad & Central African Republic declare ____
+Independence
+10
+
+On This Day: 12 July 1960 Echo I, 1st passive ____ launched
+Satellite
+10
+
+On This Day: 12 July 1960 USSR's Sputnik 5 launched with 2 ____
+Dogs
+10
+
+On This Day: 12 July 1970 Janis ____ debuts in Kentucky
+Joplin
+10
+
+On This Day: 12 March 1971 Rolling Stone ____ marries Bianca P?rez Morena de Macias
+Mick jagger
+10
+
+On This Day: 12 May 1960 ____ appears on a Frank Sinatra special
+Elvis presley
+10
+
+On This Day: 12 May 1971 Rolling Stone ____ weds Bianca Macias at St Tropez Town Hall
+Mick jagger
+10
+
+On This Day: 12 October 1972 Mariner 9 takes pictures of ____ north pole
+Martian
+10
+
+On This Day: 12 October 1973 Nixon nominates ____ to replace Spiro Agnew as VP
+Gerald ford
+10
+
+On This Day: 12 September 1970 ____ launches Luna 16; returns samples from lunar Sea of Fertility
+Ussr
+10
+
+On This Day: 13 April 1960 ____ 1B, 1st navigational satellite, placed in Earth orbit
+Transit
+10
+
+On This Day: 13 April 1960 ____ becomes the 4th nuclear nation exploding an A-Bomb in Sahara
+France
+10
+
+On This Day: 13 April 1970 ____ launched to Moon; unable to land, returns in 6 days
+Apollo 13
+10
+
+On This Day: 13 April 1975 Jack ____ wins his 5th Masters golf tournament
+Nicklaus
+10
+
+On This Day: 13 December 1974 Malta becomes a ____
+Republic
+10
+
+On This Day: 13 February 1960 ____ performs 1st nuclear test at Reggane Proving Grounds Algeria
+France
+10
+
+On This Day: 13 February 1971 12,000 South Vietnamese troops cross into ____
+Laos
+10
+
+On This Day: 13 February 1974 Dissident Nobel writer Alexander Solzhenitsyn expelled from ____
+Ussr
+10
+
+On This Day: 13 February 1975 ____ premier Denktash proclaims Turkish-Cypriot Federation
+Cyprus
+10
+
+On This Day: 13 March 1973 Syria adopts ____
+Constitution
+10
+
+On This Day: 13 May 1960 1st launch of Delta ____ launching vehicle; it failed
+Satellite
+10
+
+On This Day: 13 November 1960 ____ marries Swedish actress May Britt
+Sammy davis jr
+10
+
+On This Day: 13 November 1970 Cyclone kills estimated 300,000 in Chittagong ____
+Bangladesh
+10
+
+On This Day: 13 November 1971 Mariner 9, 1st to orbit another ____ (Mars)
+Planet
+10
+
+On This Day: 13 October 1972 Aeroflot Il-62 crashes in large pond outside____ , 176 die
+Moscow
+10
+
+On This Day: 13 October 1972 Uruguay to Chile plane crashes in ____ Mountain, 12/23 rescue)
+Andes
+10
+
+On This Day: 13 September 1970 ____ announces System 370 computer
+Ibm
+10
+
+On This Day: 14 August 1971 Bahrain proclaims independence after 110 years of ____ rule
+British
+10
+
+On This Day: 14 August 1971 British begin internment without trial in ____ Ireland
+Northern
+10
+
+On This Day: 14 August 1973 US bombs ____
+Cambodia
+10
+
+On This Day: 14 February 1960 Marshal Ayub Khan elected President of ____
+Pakistan
+10
+
+On This Day: 14 February 1971 Richard ____ installs secret taping system in White House
+Nixon
+10
+
+On This Day: 14 January 1960 Tuindorp-Oostzaan in Northern____ , flooded
+Amsterdam
+10
+
+On This Day: 14 January 1960 US Army promoted ____ to Sergeant
+Elvis presley
+10
+
+On This Day: 14 January 1973 Grateful Dead bass player, Phil Lesh, busted for ____ in California
+Drugs
+10
+
+On This Day: 14 January 1975 ____ breaks trade agreement with US
+Ussr
+10
+
+On This Day: 14 July 1973 Phil Everly storms off stage declaring an end to the ____
+Everly brothers
+10
+
+On This Day: 14 March 1971 South Vietnamese troops flee ____
+Laos
+10
+
+On This Day: 14 March 1971 The Rolling Stones leave England for ____ to escape taxes
+France
+10
+
+On This Day: 14 March 1973 Liam Cosgrave appointed president of ____
+Ireland
+10
+
+On This Day: 14 May 1960 USSR launch 1st (unmanned) space ____
+Capsule
+10
+
+On This Day: 14 May 1973 ____ launched, the 1st Space Station
+Skylab
+10
+
+On This Day: 14 May 1973 US Supreme court approves equal rights to ____ in military
+Females
+10
+
+On This Day: 14 May 1975 French press reports massive deportation from ____
+Cambodia
+10
+
+On This Day: 14 November 1973 Britain's Princess ____ marries commoner, Capt Mark Phillips
+Anne
+10
+
+On This Day: 14 September 1973 ____ shoots down 13 Syrian MIG-21s
+Israel
+10
+
+On This Day: 15 April 1971 ____ Academy Awards presented
+43rd
+10
+
+On This Day: 15 April 1974 Military coup in ____
+Niger
+10
+
+On This Day: 15 August 1960 ____ is sighted by 3 California patrolmen
+Ufo
+10
+
+On This Day: 15 August 1971 Bahrain gained independence from ____
+Britain
+10
+
+On This Day: 15 August 1973 Black ____ kills 3 wounds 55 Athens
+September
+10
+
+On This Day: 15 August 1974 South ____ President Park Chung-Hee escapes assassination
+Korean
+10
+
+On This Day: 15 February 1970 Nationalists disrupt UN session on ____
+Congo
+10
+
+On This Day: 15 February 1971 After 1200 years Britain abandons 12-shilling system for ____
+Decimal
+10
+
+On This Day: 15 January 1972 Heavyweight ____ KOs Terry Daniels
+Joe frazier
+10
+
+On This Day: 15 January 1973 Pope Paul VI has an audience with Golda ____ at Vatican
+Meir
+10
+
+On This Day: 15 January 1973 President ____ suspends all US offensive action in North Vietnam
+Nixon
+10
+
+On This Day: 15 January 1975 ____ signs accord for Angola's independence
+Portugal
+10
+
+On This Day: 15 March 1970 Expo '70 opens in Osaka, ____
+Japan
+10
+
+On This Day: 15 March 1971 ____ make their debut on the Internet
+Chatrooms
+10
+
+On This Day: 15 March 1972 ____ airliner hit mountain in Sheikdom of Oman killing 112
+Danish
+10
+
+On This Day: 15 March 1972 Assassination attempt on Governor ____ of Alabama
+George wallace
+10
+
+On This Day: 15 March 1972 NASA selects 3 part configuration for ____
+Space shuttle
+10
+
+On This Day: 15 May 1960 ____ 4 launched into Earth orbit; later recovery failed
+Sputnik
+10
+
+On This Day: 15 May 1970 ____ performs nuclear test at Muruora Island
+France
+10
+
+On This Day: 15 May 1970 South-Africa excluded from ____ play
+Olympic
+10
+
+On This Day: 15 May 1972 Bus plunges into ____ River killing 50 pilgrims (Minia Egypt)
+Nile
+10
+
+On This Day: 15 November 1972 Small Astronomy Satellite Explorer 48 launched to study ____
+Gamma rays
+10
+
+On This Day: 15 September 1970 Decca awards ____ a 2nd platinum disc for selling 300 million
+Bing crosby
+10
+
+On This Day: 16 April 1972 2 giants ____ arrive in the US, from China
+Pandas
+10
+
+On This Day: 16 August 1960 Britain grants independence to crown colony of ____
+Cyprus
+10
+
+On This Day: 16 August 1960 Republic of the ____ (Zaire) forms
+Congo
+10
+
+On This Day: 16 December 1970 1st successful landing on ____ (USSR)
+Venus
+10
+
+On This Day: 16 December 1971 Pakistan army surrenders to Indian army in ____
+Bangladesh
+10
+
+On This Day: 16 December 1973 ____ becomes 1st NFLer to rush 2,000 yard in a season
+O.j. simpson
+10
+
+On This Day: 16 February 1960 US ____ submarine USS Triton set off on underwater round-world trip
+Nuclear
+10
+
+On This Day: 16 February 1973 West Indies vs Australia at____ , 1st time since 1955 without Sobers
+Kingston
+10
+
+On This Day: 16 January 1970 Colonel Kadhaffi becomes premier of ____
+Libya
+10
+
+On This Day: 16 June 1970 Race riots in ____ Florida
+Miami
+10
+
+On This Day: 16 March 1970 New English ____ published
+Bible
+10
+
+On This Day: 16 March 1972 ____ are served with deportation papers
+John & yoko
+10
+
+On This Day: 16 May 1974 Helmut ____ becomes West German chancellor
+Schmidt
+10
+
+On This Day: 16 May 1975 ____ TKOs Ron Lyle in 11 for heavyweight boxing title
+Muhammad ali
+10
+
+On This Day: 16 November 1973 ____ 4 launched into Earth orbit
+Skylab
+10
+
+On This Day: 16 October 1970 Anwar ____ elected president of Egypt, succeeding Gamal Abdel Nasser
+Sadat
+10
+
+On This Day: 16 September 1973 Buff Bill OJ ____ rushes 250 yards 2 TDs), beating NE Pats 31-13
+Simpson
+10
+
+On This Day: 16 September 1975 Papua New Guinea gained independence from ____ (National Day)
+Australia
+10
+
+On This Day: 17 April 1960 American Samoa sets up a ____ government
+Constitutional
+10
+
+On This Day: 17 April 1975 Khmer Rouge captures____ , Cambodia (Kampuchea Natl Day)
+Phnom penh
+10
+
+On This Day: 17 August 1970 Venera 7 launched by USSR for soft landing on ____
+Venus
+10
+
+On This Day: 17 August 1973 Lee Trevino's 1st ____
+Hole-in-one
+10
+
+On This Day: 17 December 1971 Cease-fire between India & Pakistan in ____
+Kashmir
+10
+
+On This Day: 17 December 1971 Radio ____ begins transmitting
+Bangladesh
+10
+
+On This Day: 17 December 1972 New line of control agreed to in Kashmir between India & ____
+Pakistan
+10
+
+On This Day: 17 February 1970 Jeffrey McDonald slices up his ____
+Wife & daughter
+10
+
+On This Day: 17 February 1970 Joni Mitchell's final ____ (Royal Albert Hall)
+Concert
+10
+
+On This Day: 17 February 1971 ____ regains cricket Ashes with a 2-0 series win
+England
+10
+
+On This Day: 17 February 1974 49 die in stampede for seats at Football match, Cairo, ____
+Egypt
+10
+
+On This Day: 17 January 1960 Mickey Wright wins LPGA Sea Island Women's ____ Invitational
+Golf
+10
+
+On This Day: 17 January 1972 Section of Memphis' Highway 51 South renamed ____ Blvd
+Elvis presley
+10
+
+On This Day: 17 January 1973 City of Amsterdam decides to support ____
+Hanoi
+10
+
+On This Day: 17 January 1973 New Philippine constitution names ____ president for life
+Marcos
+10
+
+On This Day: 17 July 1974 ____ is ordered to leave the US in 60 days
+John lennon
+10
+
+On This Day: 17 July 1974 1st ____ studio in UK is open by the Moody Blues
+Quadrophonic
+10
+
+On This Day: 17 July 1975 ____ & Maureen Cox divorce
+Ringo starr
+10
+
+On This Day: 17 June 1972 5 arrested for burglarizing Democratic Party HQ at ____
+Watergate
+10
+
+On This Day: 17 March 1973 Queen Elizabeth II opens new London ____
+Bridge
+10
+
+On This Day: 17 March 1973 St Patrick's Day marchers carry 14 coffins commemorating ____
+Bloody sunday
+10
+
+On This Day: 17 May 1971 Washington State bans ____
+Sex discrimination
+10
+
+On This Day: 17 May 1975 ____ punches a restaurant window, gets 20 stitches
+Mick jagger
+10
+
+On This Day: 17 November 1970 Russia lands Lunokhod 1 unmanned remote-controlled vehicle on ____
+Moon
+10
+
+On This Day: 18 December 1972 US began its heaviest bombing of North ____
+Vietnam
+10
+
+On This Day: 18 February 1960 8th Winter ____ games open in Squaw Valley CA
+Olympics
+10
+
+On This Day: 18 February 1974 NASA launches Italian satellite ____ C-2 235/843 km)
+San marcos
+10
+
+On This Day: 18 February 1975 2nd American ____ Award
+Music
+10
+
+On This Day: 18 February 1975 Italy broadens ____ law
+Abortion
+10
+
+On This Day: 18 January 1960 US & Japan sign joint ____ treaty
+Defense
+10
+
+On This Day: 18 January 1974 Israel & ____ sign weapons accord
+Egypt
+10
+
+On This Day: 18 June 1972 BEA Trident crashes after takeoff from ____ killing 118
+Heathrow
+10
+
+On This Day: 18 March 1970 Mail service paralyzed by 1st major postal ____
+Strike
+10
+
+On This Day: 18 March 1975 Kurds end fight against ____ army
+Iraqi
+10
+
+On This Day: 18 May 1971 President ____ rejects 60 demands of Congressional Black Caucus
+Nixon
+10
+
+On This Day: 18 May 1973 Russian party leader ____ visits West Germany
+Brezhnev
+10
+
+On This Day: 18 May 1974 India becomes 6th nation to explode an ____
+Atomic bomb
+10
+
+On This Day: 18 November 1960 Copyright office issues its 10 millionth ____
+Registration
+10
+
+On This Day: 18 September 1974 Hurricane Fifi strikes ____ with 110 mph winds, 5,000 die
+Honduras
+10
+
+On This Day: 18 September 1975 Heiress/bank robber Patricia Campbell ____ captured by FBI in SF
+Hearst
+10
+
+On This Day: 19 April 1971 ____ Salyut 1 launched; 1st manned lab in orbit
+Ussr
+10
+
+On This Day: 19 April 1971 Russia launches its 1st ____ space station
+Salyut
+10
+
+On This Day: 19 April 1971 Sierra ____ becomes a republic (Natl Day)
+Leone
+10
+
+On This Day: 19 April 1975 India launches 1st ____ with help of USSR
+Satellite
+10
+
+On This Day: 19 August 1960 Sputnik 5 carries 2 dogs, 3 ____ into orbit (later recovered alive)
+Mice
+10
+
+On This Day: 19 December 1971 NASA launches ____ 4 F-3 for COMSAT Corp
+Intelsat
+10
+
+On This Day: 19 February 1960 Protest strike in Poznan ____
+Poland
+10
+
+On This Day: 19 February 1970 USSR launches ____ 52 & Molniya 1-13 communications satellite
+Sputnik
+10
+
+On This Day: 19 February 1974 1st American ____ Award
+Music
+10
+
+On This Day: 19 January 1960 Eisenhower & Premier Kishi sign US-Japanese ____ pact
+Security
+10
+
+On This Day: 19 January 1970 Dutch ____ says he is in favor of married priest
+Bishop
+10
+
+On This Day: 19 January 1970 UCLA fires Angela Davis for being a ____
+Communist
+10
+
+On This Day: 19 January 1971 Beatles' ____ is played at the Charles Manson trial
+Helter skelter
+10
+
+On This Day: 19 January 1974 ____ government of Leburton falls
+Belgium
+10
+
+On This Day: 19 July 1974 David ____ 's Diamond Dog tour ends in NYC
+Bowie
+10
+
+On This Day: 19 March 1970 West German chancellor & East German premier Willy ____ meet
+Brandt
+10
+
+On This Day: 19 March 1972 India & ____ sign friendship treaty
+Bangladesh
+10
+
+On This Day: 19 March 1974 Jefferson ____ begins their 1st tour
+Starship
+10
+
+On This Day: 19 May 1975 Junko Tabei is 1st woman to climb to the top of Mount ____
+Everest
+10
+
+On This Day: 19 October 1960 ____ arrested in Atlanta sit-in
+Martin luther king jr
+10
+
+On This Day: 19 October 1960 ____ grants Mauritania independence
+France
+10
+
+On This Day: 19 October 1960 The US imposes an embargo on exports to ____
+Cuba
+10
+
+On This Day: 20 April 1970 US troops invade ____
+Cambodia
+10
+
+On This Day: 20 August 1975 ____ 1 launched toward orbit around Mars, soft landing
+Viking
+10
+
+On This Day: 20 December 1972 President ____ halts bombing of North Vietnam & announces peace talks
+Nixon
+10
+
+On This Day: 20 December 1975 Constitution of Democratic Republic of ____ comes into force
+Madagascar
+10
+
+On This Day: 20 February 1971 Major General Idi Amin Dada appoints himself President of ____
+Uganda
+10
+
+On This Day: 20 February 1974 Cher files for separation from husband ____
+Sonny bono
+10
+
+On This Day: 20 January 1960 CIA oks ____ to produce a new U-2 aircraft (Oxcart)
+Lockheed
+10
+
+On This Day: 20 January 1960 Patrice Lumumba sentenced to 6 months in ____
+Belgian Congo
+10
+
+On This Day: 20 January 1960 Riot curtails third day's play at Port-Of-Spain West Indies vs ____
+England
+10
+
+On This Day: 20 January 1960 US female ____ championship won by Carol Heiss
+Figure skating
+10
+
+On This Day: 20 January 1960 US male ____ championship won by David Jenkins
+Figure skating
+10
+
+On This Day: 20 January 1971 ____ meets Yoko Ono's parents in Japan
+John lennon
+10
+
+On This Day: 20 January 1971 Dennis ____ takes 5-84 in his 1st Test bowl, vs England
+Lillee
+10
+
+On This Day: 20 January 1972 Pakistan withdraws from the ____
+Commonwealth
+10
+
+On This Day: 20 January 1973 ____ plays their 1st show (Coventry Club in Queens NY)
+Kiss
+10
+
+On This Day: 20 January 1974 USSR performs ____ at Eastern Kazakstan/Semipalatinsk USSR
+Nuclear test
+10
+
+On This Day: 20 July 1960 1st submerged submarine to fire ____ missile (George Washington)
+Polaris
+10
+
+On This Day: 20 July 1960 USSR recovered 2 dogs; 1st living ____ to return from space
+Organisms
+10
+
+On This Day: 20 July 1970 1st baby born on ____ Island
+Alcatraz
+10
+
+On This Day: 20 July 1974 Turkey invades ____
+Cyprus
+10
+
+On This Day: 20 June 1975 Cher, just 4 days after divorcing Sonny Bono marries ____
+Gregg allman
+10
+
+On This Day: 20 March 1970 ____ wins its 8th straight world hockey championship
+Ussr
+10
+
+On This Day: 20 March 1972 19 mountain climbers killed on Japan's ____ during an avalanche
+Mount fuji
+10
+
+On This Day: 20 March 1972 North Vietnamese troops enter ____
+South vietnam
+10
+
+On This Day: 20 May 1970 100,000 march in ____ supporting US policies in Vietnam
+New york
+10
+
+On This Day: 20 May 1970 2 die in a NYC ____ accident
+Subway
+10
+
+On This Day: 20 May 1971 36 hospitalized during ____ concert; after drinking LSD apple juice
+Grateful dead
+10
+
+On This Day: 20 May 1971 US ____ 9 1st satellite to orbit Mars launched
+Mariner
+10
+
+On This Day: 20 November 1975 Dahomey becomes ____
+Benin
+10
+
+On This Day: 20 October 1973 ____ oil embargo begins
+Opec
+10
+
+On This Day: 20 October 1974 Muhammad Ali KOs ____ in 8th round in Kinshasa, Za?re
+George foreman
+10
+
+On This Day: 20 September 1960 ____ premiers 1st prime time animation show)
+Flintstones
+10
+
+On This Day: 20 September 1970 ____ 16 lands on Moon's Mare Fecunditatis, drills core sample
+Luna
+10
+
+On This Day: 20 September 1972 Police find ____ growing on Paul & Linda McCartney's farm
+Cannabis
+10
+
+On This Day: 20 September 1973 Billie ____ beats Bobby Riggs in battle-of-sexes tennis match
+Jean king
+10
+
+On This Day: 21 April 1960 ____ becomes the capital of Brazil
+Brasilia
+10
+
+On This Day: 21 August 1971 Dave Scott becomes 1st person to drive a ____ on the Moon
+Car
+10
+
+On This Day: 21 August 1972 1st hot air balloon flight over the ____
+Alps
+10
+
+On This Day: 21 December 1970 Congress authorizes the ____ dollar coin
+Eisenhower
+10
+
+On This Day: 21 December 1970 Paul McCartney files a ____ to dissolve the Beatles
+Lawsuit
+10
+
+On This Day: 21 December 1971 UN Security Council chooses Kurt ____ as 4th secretary general
+Waldheim
+10
+
+On This Day: 21 December 1972 Soviet Union signs a separate peace with ____
+East Germany
+10
+
+On This Day: 21 December 1973 Israel, Egypt, Syria, Jordan, US & USSR meet in ____
+Geneva
+10
+
+On This Day: 21 February 1973 Israeli fighters shoot ____ aircraft down, killing 108
+Libyan
+10
+
+On This Day: 21 February 1974 ____ forces leave western Suez
+Israeli
+10
+
+On This Day: 21 February 1974 Yugoslavia adopts ____
+Constitution
+10
+
+On This Day: 21 January 1960 Little Joe 4 suborbital ____ test reaches 16 km
+Mercury
+10
+
+On This Day: 21 January 1970 Grateful Dead members busted on ____ charges
+Lsd
+10
+
+On This Day: 21 January 1972 Aretha ____ sings at Mahalia Jackson's funeral
+Franklin
+10
+
+On This Day: 21 January 1972 Birenda, becomes leader of ____
+Nepal
+10
+
+On This Day: 21 January 1972 Military coup ousts civilian government of ____
+Ghana
+10
+
+On This Day: 21 January 1974 McDonald's founder ____ buys San Diego Padres
+Ray kroc
+10
+
+On This Day: 21 July 1960 The country of Katanga forms in ____
+Africa
+10
+
+On This Day: 21 July 1973 USSR launches ____ for fly-by 2600 km) of the red planet
+Mars 4
+10
+
+On This Day: 21 March 1972 Official ____ Fan Club closes down
+Beatles
+10
+
+On This Day: 21 March 1974 Attempt made to kidnap Princess ____ in London's Pall Mall
+Anne
+10
+
+On This Day: 21 March 1975 ____ ends monarchy after 3000 years
+Ethiopia
+10
+
+On This Day: 21 May 1970 ____ performs nuclear test at Novaya Zemlya USSR
+Ussr
+10
+
+On This Day: 21 May 1974 Israel & ____ sign an agreement concerning Golan Heights
+Syria
+10
+
+On This Day: 21 November 1975 Linda McCartney ____ in US are dropped
+Drug charges
+10
+
+On This Day: 21 October 1970 Caledonian Airways takes over British ____ Airways
+United
+10
+
+On This Day: 21 September 1972 ____ declares martial law in the Philippines
+Marcos
+10
+
+On This Day: 22 April 1971 ____ 10 launched
+Soyuz
+10
+
+On This Day: 22 April 1974 Barbara Walters becomes news co-anchor of the ____
+Today show
+10
+
+On This Day: 22 February 1971 Lieutenant General Hafiz al-Assad becomes President of ____
+Syria
+10
+
+On This Day: 22 February 1974 ____ police shoot at demonstrators
+Ethiopian
+10
+
+On This Day: 22 January 1960 French President ____ escapes attempt by General Massu
+De gaulle
+10
+
+On This Day: 22 January 1960 Paul Pender beats Sugar Ray Robinson for ____ boxing title
+Middleweight
+10
+
+On This Day: 22 January 1970 1st commercial Boeing 747 flight (Pan Am), New York to ____ in 61/2 hours
+London
+10
+
+On This Day: 22 January 1973 George ____ TKOs Joe Frazier in 2 for heavyweight boxing title
+Foreman
+10
+
+On This Day: 22 January 1975 Landsat 2, an Earth Resources ____ Satellite, launched
+Technology
+10
+
+On This Day: 22 July 1972 Venera 8 makes soft landing on ____
+Venus
+10
+
+On This Day: 22 March 1960 1st patent for____ , granted to Arthur Schawlow & Charles Townes
+Lasers
+10
+
+On This Day: 22 March 1971 ____ performs nuclear test at Eastern Kazakhstan/Semipalitinsk USSR
+Ussr
+10
+
+On This Day: 22 May 1970 ____ terrorists kill 9 children & 3 adults on a school bus
+Arab
+10
+
+On This Day: 22 May 1970 France performs nuclear test at ____ Island
+Muruora
+10
+
+On This Day: 22 May 1972 ____ becomes Republic of Sri Lanka as its constitution is ratified
+Ceylon
+10
+
+On This Day: 22 May 1972 US President ____ begins visit Moscow
+Nixon
+10
+
+On This Day: 22 May 1973 President Nixon confesses his role in ____ cover-up
+Watergate
+10
+
+On This Day: 22 September 1973 ____ , sworn in as America's 1st Jewish Secretary of State
+Henry kissinger
+10
+
+On This Day: 23 December 1972 16 plane crash survivors rescued after 70days, survived by ____
+Cannibalism
+10
+
+On This Day: 23 December 1972 Earthquake destroys central Managua, ____
+Nicaragua
+10
+
+On This Day: 23 December 1973 6 Persian Gulf nations double their ____
+Oil prices
+10
+
+On This Day: 23 February 1970 ____ becomes a republic (National Day)
+Guyana
+10
+
+On This Day: 23 February 1971 George ____ is fined & his driving license is suspended for 1 year as a result of several speeding tickets and a dispute with the police
+Harrison
+10
+
+On This Day: 23 January 1970 ____ 's 1st amateur radio satellite (Oscar 5) launched (California)
+Australia
+10
+
+On This Day: 23 January 1970 Dolle Mina burns her ____ in Amsterdam
+Bra
+10
+
+On This Day: 23 January 1970 US launches 2nd generation ____ satellite, ITOS 1
+Weather
+10
+
+On This Day: 23 January 1970 US performs ____ test at Nevada Test Site
+Nuclear
+10
+
+On This Day: 23 January 1972 Entire population of ____ under 24 hour house arrest
+Istanbul
+10
+
+On This Day: 23 June 1970 Rocker Chubby ____ arrest for marijuana pocession
+Checker
+10
+
+On This Day: 23 June 1972 Nixon & Haldeman agree to use CIA to cover up ____
+Watergate
+10
+
+On This Day: 23 June 1975 Rocker ____ falls off stage in Vancouver, breaks 6 ribs
+Alice cooper
+10
+
+On This Day: 23 March 1960 ____ (8) fails to reach Earth orbit
+Explorer
+10
+
+On This Day: 23 March 1970 US performs ____ test at Nevada Test Site
+Nuclear
+10
+
+On This Day: 23 March 1971 USSR performs ____ nuclear test
+Underground
+10
+
+On This Day: 23 March 1972 ____ breaks 93 bones after successfully clearing 35 cars
+Evil knievel
+10
+
+On This Day: 23 May 1971 Rock group Iron ____ disbands
+Butterfly
+10
+
+On This Day: 23 May 1974 ____ performs nuclear test at Nevada Test Site
+Great britain
+10
+
+On This Day: 23 November 1960 Tiros 2, a ____ satellite is launched
+Weather
+10
+
+On This Day: 23 September 1973 Former Argentine President Juan ____ returns to power
+Peron
+10
+
+On This Day: 24 April 1970 ____ becomes a republic within the Commonwealth
+Gambia
+10
+
+On This Day: 24 December 1970 9 Jews are convicted in ____ of hijacking a plane
+Lenningrad
+10
+
+On This Day: 24 February 1960 US beats ____ in Olympics hockey finals round, 9-1
+Germany
+10
+
+On This Day: 24 February 1974 Pakistan officially recognizes ____
+Bangladesh
+10
+
+On This Day: 24 January 1960 Algeria uprises against French President ____
+De gaulle
+10
+
+On This Day: 24 March 1972 Great Britain imposes direct rule over ____
+Northern Ireland
+10
+
+On This Day: 24 March 1975 ____ TKOs Chuck Wepner in 15 to retain the heavyweight boxing title
+Muhammad ali
+10
+
+On This Day: 24 May 1960 1 millionth ____ telephone installed
+Dutch
+10
+
+On This Day: 24 May 1970 Peter Green quits ____ to join a religious cult
+Fleetwood mac
+10
+
+On This Day: 24 May 1974 ____ Show, last airs on NBC-TV
+Dean martin
+10
+
+On This Day: 24 October 1973 ____ sues US govt to admit the FBI is tapping his phone
+John lennon
+10
+
+On This Day: 24 October 1973 ____ War ends, Israel 65 miles from Cairo, 26 from Damascus
+Yom kippur
+10
+
+On This Day: 24 September 1960 1st nuclear-powered____ , launches (USS Enterprise)
+Aircraft carrier
+10
+
+On This Day: 25 April 1960 1st submerged ____ of Earth completed (Triton)
+Circumnavigation
+10
+
+On This Day: 25 April 1974 Dictator Ant?nio Salazar overthrown in ____
+Portugal
+10
+
+On This Day: 25 August 1960 17th summer olympics opens in ____
+Rome
+10
+
+On This Day: 25 December 1974 ____ virtually destroys Darwin Australia
+Cyclone tracy
+10
+
+On This Day: 25 January 1971 Charles ____ & 3 women followers convicted of Tate-LaBianca murders
+Manson
+10
+
+On This Day: 25 January 1971 Military coup in ____ under General Idi Amin Dada
+Uganda
+10
+
+On This Day: 25 January 1974 B?lent Ecevit forms government in ____
+Turkey
+10
+
+On This Day: 25 January 1974 Christian ____ transplants 1st human heart without removal of old
+Barnard
+10
+
+On This Day: 25 July 1973 ____ launches Mars 5
+Ussr
+10
+
+On This Day: 25 July 1973 George Harrison pays ?1,000,000 tax on his ____ concert & album
+Bangladesh
+10
+
+On This Day: 25 June 1975 Mozambique gained independence from ____ (National Day)
+Portugal
+10
+
+On This Day: 25 March 1960 1st guided missile launched from ____ powered sub (Halibut)
+Nuclear
+10
+
+On This Day: 25 March 1970 ____ makes its 1st supersonic flight (700 MPH/1,127 KPH)
+Concorde
+10
+
+On This Day: 25 March 1975 Faisal ibn Abd al-Aziz, king of ____ 1964-75), shot by nephew
+Saudi-arabia
+10
+
+On This Day: 25 May 1972 Heavyweight ____ KOs Ron Stander
+Joe frazier
+10
+
+On This Day: 25 November 1960 1st atomic ____ for research & development, Richland Wa
+Reactor
+10
+
+On This Day: 25 November 1973 Bloodless military coup ousts Greek President George ____
+Papadopoulos
+10
+
+On This Day: 25 November 1975 ____ grants Surinam independence (National Day)
+Netherlands
+10
+
+On This Day: 25 October 1960 1st electronic ____ placed on sale, NYC
+Wrist watch
+10
+
+On This Day: 25 September 1973 3-man crew of Skylab II make safe splashdown in ____ after 59 days
+Pacific
+10
+
+On This Day: 26 April 1974 Landslide in Huancavelica Province ____ creates a natural dam
+Peru
+10
+
+On This Day: 26 August 1972 Summer Olympics open in____ , West Germany
+Munich
+10
+
+On This Day: 26 December 1973 2 Skylab 3 astronauts ____ for a record 7 hours
+Walk in space
+10
+
+On This Day: 26 February 1960 Soviet premier Khrushchev voices support for ____
+Indonesia
+10
+
+On This Day: 26 February 1960 USA's David Jenkins wins the ____ for men's figure skating
+Olympics gold
+10
+
+On This Day: 26 February 1975 1st televised ____ transplant (Today Show)
+Kidney
+10
+
+On This Day: 26 January 1971 Charles ____ convicted of murder
+Manson
+10
+
+On This Day: 26 January 1972 Stewardess Vesna Vulovic survives 10,160m fall without ____
+Parachute
+10
+
+On This Day: 26 June 1960 ____ gained independence from France (National Day)
+Madagascar
+10
+
+On This Day: 26 June 1974 Liz Taylor's ____ divorce (Richard Burton)
+5th
+10
+
+On This Day: 26 June 1975 Indian PM Indira ____ declares a state of emergency
+Gandhi
+10
+
+On This Day: 26 March 1960 ____ executes 30 after attack on President Kassem
+Iraq
+10
+
+On This Day: 26 March 1970 500th ____ announced by the US since 1945
+Nuclear explosion
+10
+
+On This Day: 26 March 1971 Bangladesh (East Pakistan) declares its ____
+Independence
+10
+
+On This Day: 26 May 1971 Soviet Union's____ , TU-144, makes its 1st appearance
+Concorde
+10
+
+On This Day: 26 May 1972 Nixon & ____ signs SALT accord
+Brezhnev
+10
+
+On This Day: 26 May 1973 Bahrain adopts it's ____
+Constitution
+10
+
+On This Day: 26 May 1974 During a ____ concert in London a 14 year old is trampled
+David cassidy
+10
+
+On This Day: 26 October 1975 Anwar ____ became 1st Egyptian president to officially visit the US
+Sadat
+10
+
+On This Day: 26 September 1960 1st of 4 TV debates ____ & Kennedy took place (Chicago)
+Nixon
+10
+
+On This Day: 26 September 1960 Longest speech in UN history (4 hrs, 29 mins, by____ )
+Fidel castro
+10
+
+On This Day: 26 September 1973 ____ flies from Washington DC to Paris in 3h33m
+Concorde
+10
+
+On This Day: 27 April 1960 ____ grants Togo independence (Natl Day)
+France
+10
+
+On This Day: 27 April 1960 1st atomic powered electric-drive ____ launched (Tullibee)
+Submarine
+10
+
+On This Day: 27 April 1972 NYC Mayor John Lindsey appeals that ____ not be deported
+John lennon
+10
+
+On This Day: 27 April 1974 Pan Am 707 crashes into mountains of____ , killing 107
+Bali
+10
+
+On This Day: 27 February 1960 Oil pipe line from ____ to Ruhrgebied opens
+Rotterdam
+10
+
+On This Day: 27 February 1973 American Indian Movement occupy Wounded Knee in South ____
+Dakota
+10
+
+On This Day: 27 February 1973 Pope ____ publishes constitution motu proprio Quo aptius
+Paul vi
+10
+
+On This Day: 27 January 1973 US & Vietnam sign____ , ending longest US war & military draft
+Cease-fire
+10
+
+On This Day: 27 June 1960 British Somaliland becomes part of ____
+Somalia
+10
+
+On This Day: 27 March 1970 ____ performs nuclear test at Eastern Kazakhstan/Semipalitinsk USSR
+Ussr
+10
+
+On This Day: 27 March 1972 Venera 8 launched to ____
+Venus
+10
+
+On This Day: 27 March 1973 Jerry Garcia (Grateful Dead) stopped for speeding & ____ possession
+Lsd
+10
+
+On This Day: 27 May 1960 Military coup overthrows democratic government of ____
+Turkey
+10
+
+On This Day: 27 November 1970 Pope ____ wounded in chest during a visit to Philippines by a dagger-wielding Bolivian painter disguised as a priest
+Paul vi
+10
+
+On This Day: 27 November 1971 Soviet ____ becomes 1st spacecraft to crash land on Mars
+Mars 2
+10
+
+On This Day: 28 April 1974 Last Americans evacuated from ____
+Saigon
+10
+
+On This Day: 28 December 1974 More than 5,200 people killed in ____ earthquake
+Pakistan
+10
+
+On This Day: 28 February 1960 8th winter ____ games close at Squaw Valley CA
+Olympics
+10
+
+On This Day: 28 February 1960 US wins Olympics hockey gold medal by defeating ____ 9-4
+Czechoslovakia
+10
+
+On This Day: 28 February 1960 Winter ____ at Squaw Valley CA closes
+Olympics
+10
+
+On This Day: 28 February 1970 ____ permitted to cross Golden Gate Bridge
+Bicycles
+10
+
+On This Day: 28 February 1974 ____ Party wins British parliamentary election
+Labour
+10
+
+On This Day: 28 January 1960 1st ____ bounced off Moon, Washington DC
+Photograph
+10
+
+On This Day: 28 January 1960 Goon Show's ____ on BBC
+Final episode
+10
+
+On This Day: 28 January 1970 Lubom?r Strougal succeeds Cernik as premier of ____
+Czechoslovakia
+10
+
+On This Day: 28 June 1971 Supreme Court overturns draft evasion conviction of ____
+Muhammad ali
+10
+
+On This Day: 28 June 1975 Golfer ____ is struck by lightning at Western Open (Ill)
+Lee trevino
+10
+
+On This Day: 28 March 1960 ____ factory explodes burying 20 firefighters (Glasgow Scotland)
+Scotch
+10
+
+On This Day: 28 March 1970 1,086 die when 7.3 ____ destroys 254 villages (Gediz Turkey)
+Earthquake
+10
+
+On This Day: 28 March 1972 ____ performs nuclear test at Eastern Kazakhstan/Semipalitinsk USSR
+Ussr
+10
+
+On This Day: 28 May 1971 USSR ____ launched, 1st spacecraft to soft land on Mars
+Mars 3
+10
+
+On This Day: 28 November 1960 Mauritania gained independence from ____ (National Day)
+France
+10
+
+On This Day: 28 October 1970 US/USSR sign an agreement to discuss joint ____ efforts
+Space
+10
+
+On This Day: 28 October 1971 England becomes 6th nation to have a ____ (Prospero) in orbit
+Satellite
+10
+
+On This Day: 28 September 1974 1st lady Betty Ford undergoes a radical ____
+Mastectomy
+10
+
+On This Day: 29 April 1975 US Forces pull out of ____
+Vietnam
+10
+
+On This Day: 29 December 1972 Eastern Tristar Jumbo Jet crashes near ____ killing 101
+Everglades
+10
+
+On This Day: 29 February 1960 1st____ , featuring bunnies, opens in Chicago
+Playboy club
+10
+
+On This Day: 29 February 1960 Earthquake kills 1/3 of Agadir ____ population 12,000) in 15 seconds
+Morocco
+10
+
+On This Day: 29 January 1970 USSR performs ____ test at Eastern Kazakstan/Semipalatinsk USSR
+Nuclear
+10
+
+On This Day: 29 June 1970 US ends 2 month military offensive into ____
+Cambodia
+10
+
+On This Day: 29 June 1972 USSR launches ____ 2 into earth orbit (549/200,000 km)
+Prognoz
+10
+
+On This Day: 29 March 1971 Conrad Van Emde Boas becomes West Europe's 1st ____ professor
+Sexology
+10
+
+On This Day: 29 March 1971 Development of a serum hepatitis ____ for children announced
+Vaccine
+10
+
+On This Day: 29 March 1973 Last US troops leave____ , 9 years after Tonkin Gulf Resolution
+Vietnam
+10
+
+On This Day: 29 May 1974 ____ is brought under direct rule from Westminster
+Northern Ireland
+10
+
+On This Day: 29 November 1975 Kilauea Volcano erupts in ____
+Hawaii
+10
+
+On This Day: 29 October 1960 Muhammad Ali's (Cassius Clay's) 1st professional fight, beats Tunney ____ in 6
+Hunsaker
+10
+
+On Three's Company, what is the name 'Chrissy' is short for?
+Christmas
+10
+
+On Three's Company, what is the name?
+Christmas
+10
+
+On Three's Company,what city did the trio live in?
+Santa Monica
+10
+
+On three's company,what was Chrissy's father's ocupation?
+A Reverend
+10
+
+On Three's Company,what was Jack's retaurant that he opened and was head chef ?
+Jack's Bistro
+10
+
+On Three's Company,what's the first name of Mr. Furley's (landlord) tight wad brother who owned the building?
+Bart
+10
+
+On TV what was the name of the Beverly Hillbillies bank manager?
+Mr drysdale
+10
+
+On TV which character runs the Woolpack pub in 'Emmerdale'?
+Bernice blackstock
+10
+
+On TV which pub is Del Boy's local?
+Nag's head
+10
+
+On what circuit was the 1965 south african grand prix?
+East london
+10
+
+On what continent did the incas live?
+South America
+10
+
+On what continent is kilimanjaro on?
+Africa
+10
+
+On what continent is Mt. Everest?
+Asia
+10
+
+On what continent would you find an echidna?
+Australia
+10
+
+On what continent would you find ash trees?
+North America
+10
+
+On what date did America become an independant nation?
+July 4th 1776
+10
+
+On what date did the united states declare war on Germany and Italy?
+December 11, 1941
+10
+
+On what date does St Andrew's Day fall?
+30th november
+10
+
+On what date does St George's day fall?
+23rd april
+10
+
+On what date is Boxing day In Canada?
+Dec 26
+10
+
+On what date is national sovereignty day/children's day celebrated in turkey?
+Apr 23
+10
+
+On what date is Thanksgiving Day celebrated in Canada?
+October 12
+10
+
+On what date is Veteran's Day celebrated in the US?
+Nov 11
+10
+
+On what date is Victoria Day in Canada?
+May 18
+10
+
+On what date was D-Day?
+June 6, 1944
+10
+
+On what date was singapore admitted to the un general assembly?
+September 21 1965
+10
+
+On what date was singapore declared independent from malaysia (e.g. december 31st 9999)?
+August 9th 1965
+10
+
+On what day did Cyclone Tracy hit and destroy Darwin, Australia?
+Christmas day
+10
+
+On what day of the week did the Second World War begin?
+Sunday
+10
+
+On what day of the year does grouse shooting end?
+December 10th
+10
+
+On what day was mother teresa awarded the nobel peace prize?
+October 17, 1979
+10
+
+On what do honeybees have a type of hair?
+Eyes
+10
+
+On what does an artist support his canvas?
+Easel
+10
+
+On what does the firefly depend to find mates?
+Sight
+10
+
+On what game in 1994 did norman schwarzkopf post the highest score?
+Celebrity jeopardy
+10
+
+On what game show, hosted by Peter Tomarken, would contestants lose all their money if they got a 'whammy'?
+Press You Luck
+10
+
+On what hill is singapore's registry of marriages situated?
+Fort canning
+10
+
+On what is an 'octothorpe' found?
+Telephone
+10
+
+On what is the mona lisa painted?
+Wood
+10
+
+On what island did the greek civilization begin?
+Crete
+10
+
+On what island is the u.s naval base, guantanamo?
+Cuba
+10
+
+On what island was the bbc programme castaway 2000 filmed?
+Taransay
+10
+
+On what Japanese city was the second atomic bomb dropped during world war ii?
+Nagasaki
+10
+
+On what large island are birds of paradise primarily found?
+New guinea
+10
+
+On what material does a topiarist work?
+Hedges and shrubs
+10
+
+On what might you serve bearnaise sauce?
+Grilled meat
+10
+
+On what moor did ian brady and myra hindley dispose of their child victims?
+Saddleworth moor
+10
+
+On what mountain are four presidents' faces carved?
+Mount rushmore
+10
+
+On what number is the decimal system based?
+Ten
+10
+
+On what number is the sexagesimal system based?
+Sixty
+10
+
+On what object would you find a barb,a shaft and a quill?
+A feather
+10
+
+On what offshore island is Kennedy International Airport located?
+Long island
+10
+
+On what part of the body are campers prone to being bitten by vampire bats?
+Big toe
+10
+
+On what peninsula are Spain & Portugal located?
+The iberian peninsula
+10
+
+On what plain is stonehenge?
+Salisbury plain
+10
+
+On what river is London, England?
+Thames
+10
+
+On what river is rome built?
+Tiber
+10
+
+On what river is the city of cincinnati located?
+Ohio river
+10
+
+On what river will you find kew gardens?
+Thames
+10
+
+On what scale are there 180 degrees between freezing point & boiling point?
+Fahrenheit scale
+10
+
+On what sea is the port of Marseilles?
+Mediterranean
+10
+
+On what show did Dano get to book the bad guy?
+Hawaii 5-0
+10
+
+On what show did rosanne rosanna-dana help give the news?
+Saturday night live
+10
+
+On what show was 'run d.m.c' the first rap group?
+American bandstand
+10
+
+On what show would you find Gary Gnu?
+The Great Space Coaster
+10
+
+On what show would you see the clinkers?
+Shields & yarnell
+10
+
+On what side of the road do the Japanese drive?
+Left
+10
+
+On what soap was the robot sico featured?
+Days of our lives
+10
+
+On what street did dennis the menace live?
+Elm street
+10
+
+On what street in new rochelle did rob and laura petrie live?
+Bonnie meadow way
+10
+
+On what surface are the tennis matches played in wimbledon?
+Grass
+10
+
+On what tower being built to reach the heavens, was work stopped because of a confusion of languages?
+Babel
+10
+
+On what was the declaration of independence written?
+Hemp paper
+10
+
+On what was the world's first adhesive used?
+Postage stamp
+10
+
+On what were the ten commandments written?
+Stone tablets
+10
+
+On what would you perform a randolph?
+Trampoline
+10
+
+On which aircraft carrier did the Duke of York serve during the Falklands War?
+Hms hermes
+10
+
+On which album did janis joplin belt out the porgy and bess tune 'summertime'?
+Cheap thrills
+10
+
+On which Athens hill top would you find the Parthenon?
+The acropolis
+10
+
+On which caribbean island are the blue mountains?
+Jamaica
+10
+
+On which caribbean island did voodoo originate?
+Haiti
+10
+
+On which circuit is Motor racing's Grand Prix D'Endurance run?
+Le mans
+10
+
+On which city did Charles Darrow base his original game of Monopoly?
+Atlantic city
+10
+
+On which city estate are europes highest residential towers?
+The barbican
+10
+
+On which continent are the Iguaca waterfalls?
+South America
+10
+
+On which continent did citrus originate?
+Asia
+10
+
+On which continent is the country of South Korea?
+Asia
+10
+
+On which continent is the Limpopo River?
+Africa
+10
+
+On which continent would you be standing if you were visiting the Republic of Surinam?
+South America
+10
+
+On which day are Hot Cross Buns traditionally eaten?
+Good Friday
+10
+
+On which day are the most collect calls made?
+Father's day
+10
+
+On which day of the week are US elections always held?
+Tuesday
+10
+
+On which day of the week is the moslem sabbath?
+Friday
+10
+
+On which day of the year would you 'firstfoot'?
+January 1st
+10
+
+On which Far eastern island did Mick Jagger marry Jerry Hall?
+Bali
+10
+
+On which farm did Worzel Gummidge live?
+Scatterbrook
+10
+
+On which farm site is johannesburg?
+Randjieslaagte
+10
+
+On which fictional street does 'Freddy Kruger' live out a nightmare?
+Elm street
+10
+
+On which finger is the wedding ring worn in Germany and France?
+Third finger of the right hand
+10
+
+On which game show would you find carroll merril?
+Lets make a deal
+10
+
+On which great lake are buffalo and cleveland?
+Lake erie
+10
+
+On which ground did Brian Lara score 501 not out?
+Edgbaston
+10
+
+On which hawaiian island is waikiki beach?
+Oahu
+10
+
+On which island are the Troodos mountains?
+Cyprus
+10
+
+On which island is it a criminal offence to shout 'ship ahoy' when there is no ship in sight?
+Picarn island
+10
+
+On which island is the capital of Hawaii?
+Oahu
+10
+
+On which island is the Sir Garfield Sober Sports Stadium?
+Barbados
+10
+
+On which island is the volcanic mountain Big Ben?
+Heard island
+10
+
+On which island is wall street?
+Manhattan
+10
+
+On which islands are the world's largest species of tortoise found?
+Galapagos islands
+10
+
+On which kids' weekday program would you find cosmo allegretti?
+Captain kangaroo
+10
+
+On which label did johnny mathis begin recording?
+Columbia
+10
+
+On which label would you have found goombay dance band and abba?
+Epic
+10
+
+On which major river are The Owen Falls dam?
+Nile
+10
+
+On which Mediterranean island did the mythical creature the Minotaur live?
+Crete
+10
+
+On which Mediterranean island was Napoleon Bonaparte born?
+Corsica
+10
+
+On which mode of transportation would you find a plimsoll line?
+A ship
+10
+
+On which motorway are the Michael Wood and Gordano service areas?
+M5
+10
+
+On which motorway are the Trowell and Woodhall service areas?
+M1
+10
+
+On which mountain did moses receive the ten commandments?
+Mount sinai
+10
+
+On which mountain did noah's ark run aground?
+Mount ararat
+10
+
+On which mountain near Troy did the Judgement of Paris in Greek Legend take place?
+Mount ida
+10
+
+On which night is Top Of The Pops?
+Friday
+10
+
+On which object would you find a crown, a waist, a sound-bow and a clapper?
+Bell
+10
+
+On which of the canary island would you find the holiday destination of corralejo?
+Fuerteventura
+10
+
+On which other animals does the pill work?
+Gorillas
+10
+
+On which planet would you find the Caloris Basin?
+Mercury
+10
+
+On which planet would you find the Red Spot?
+Jupiter
+10
+
+On which planet, other than earth, did a man made object first land?
+Mars
+10
+
+On which popular game board would you find 225 squares?
+Scrabble
+10
+
+On which racecourse is the Kentucky Derby run?
+Churchill downs
+10
+
+On which racecourse is the Lincoln Handicap run?
+Doncaster
+10
+
+On which river does Amsterdam stand?
+Amstel
+10
+
+On which river does Balmoral Castle stand?
+Dee
+10
+
+On which river does Berlin stand?
+Spree
+10
+
+On which river does durham stand?
+The wear
+10
+
+On which river does Melbourne stand?
+Yarra
+10
+
+On which river does melbourne, Australia, stand?
+Yarra
+10
+
+On which river does St. Petersburg in Russia stand?
+Neva
+10
+
+On which river does the city of oporto stand?
+Douro
+10
+
+On which river does the u.s. capital Washington d.c. stand?
+Potomac
+10
+
+On which river does Washington DC stand?
+Potomac
+10
+
+On which river is 'Three Men in a Boat' set?
+Thames
+10
+
+On which river is linz, Austria a leading port?
+Danube
+10
+
+On which river is london located?
+Thames
+10
+
+On which river is the city of Florence situated?
+Arno
+10
+
+On which river is the city of Mandalay situated?
+Irrawaddy
+10
+
+On which river is the grand coulee dam?
+Columbia river
+10
+
+On which river is the kariba dam situated?
+Zambesi
+10
+
+On which river is Warsaw to be found?
+Vistula
+10
+
+On which Saint's day was the battle of Agincourt fought in 1415?
+St crispin
+10
+
+On which scale are there 180 degrees between freezing point and boiling point?
+Fahrenheit scale
+10
+
+On which scale is the hardness of minerals measured?
+The mohs scale
+10
+
+On which Scottish island is the malt whisky, Talisker, produced?
+Skye
+10
+
+On which series would you find linc hayes, julie barnes & pete cochran?
+Mod squad
+10
+
+On which shakespeare play was the film forbidden planet loosely based?
+The tempest
+10
+
+On which ship did Sir Francis Drake receive his knighthood?
+The golden hind
+10
+
+On which show were we introduced to ernestine the operator?
+Laugh in
+10
+
+On which side of the Berlin wall was the Brandenburg Gate?
+The east side
+10
+
+On which side of the road do cars drive in Canada?
+Right
+10
+
+On which side of the road do the Japanese drive?
+Left
+10
+
+On which Spanish costa would you find the resort of Alicante?
+Costa blanca
+10
+
+On which street is heartbreak hotel?
+Lonely street
+10
+
+On which subject did richard strauss write 'gay viennese ballet'?
+Whipped cream
+10
+
+On which subject did Richard Strauss write a 'Gay Viennese Ballet'?
+Whipped cream
+10
+
+On which Suffolk river does Ipswich stand?
+Orwell
+10
+
+On which temperature scale does water freeze at 0 degrees and boil at 80 degrees?
+Reaumur
+10
+
+On which tv show did mork first appear?
+Happy days
+10
+
+On which U. S. river is the Grand Coulee Dam?
+Columbia
+10
+
+On which West Yorkshire river does Halifax stand?
+Calder
+10
+
+On who is the novel 'one true thing' based?
+Anna quindlen
+10
+
+On who's estate does thomas magnum live?
+Robin masters
+10
+
+On who's show did carol burnett rise to prominence?
+Gary moore
+10
+
+On who's show would you see the German character, keeglefarven?
+Red buttons
+10
+
+On whose death did Shelley write his elegy Adonais?
+Keats
+10
+
+On whose feast day did Good King Wenceslas look out?
+St stephen's
+10
+
+On whose life is the film 'The Music Lovers', based?
+Tchaikovsky
+10
+
+On whose novel was the tv mini series Lace based?
+Shirley conran
+10
+
+On whose shoulders did the Old Man of the Sea hoist himself?
+Sinbad the Sailor's
+10
+
+On wings, what were the names of the 2 airlines at the airport?
+Sandpiper air and aeromass
+10
+
+Once a year on this island, millions of red crabs make a journey to the ocean, then return inland. Which island?
+Christmas Island
+10
+
+Once married to Ted Hughes, which American poet committed suicide in 1963?
+Sylvia plath
+10
+
+Once used to make women appear slender, these undergarments were actually known to cause skeletal damage?
+Corsets
+10
+
+One drive 64 km/hr ...How many Mph am I driving?
+40
+10
+
+One For The Spoon Buffs - Approximately how many spoons are there in the New Jersey Spoon Museum?
+5400
+10
+
+One gram of 2,4 d, a common household herbicide can contaminate ____ litres of drinking water
+Ten million
+10
+
+One gram of pcbs can make up to ____ litres of water unsuitable for freshwater aquatic life
+One billion
+10
+
+One hit wonders aneka got to no 1 in 1981 name the song?
+Japanese boy
+10
+
+One Hit Wonders: What was the only hit song for the band 'It's a Beautiful Day'?
+White
+10
+
+One in every ____ Americans has appeared on television
+Four
+10
+
+One light year is equivalent to how many million kilometres?
+9,460,000
+10
+
+One light year is equivalent to how many million miles?
+5,912,500
+10
+
+One Liners: Did you hear that the Polish Hockey Team died?
+Drowned in spring training
+10
+
+One Liners: Did you hear the one about the two feminists?
+Thats not funny!
+10
+
+one liners: how many californians to screw in a light bulb?one to do it and four to...?
+Share the experience
+10
+
+one liners: knock knock/who's there/oj/oj who?
+You can be on the jury
+10
+
+one liners: this bum told me he hadnt had a bite in days, so ____ ____ ____?
+I bit him
+10
+
+One Liners: Waiter! What's this fly doing in my soup?
+The backstroke
+10
+
+One Liners: What do ghosts have for dessert?
+I scream
+10
+
+One Liners: What do you call 500 lawyers at the bottom of the ocean?
+A pretty good start
+10
+
+one liners: when she sits around the house?
+She really sits around the house
+10
+
+one liners: why did the chicken cross the road?
+To get to the other side
+10
+
+One need only be 16 to do what (without parental consent) in Georgia?
+Marry
+10
+
+One of a native American people now living chiefly in Oklahoma and North Carolina?
+Cherokee
+10
+
+One of a set of posts supporting a stair handrail?
+Baluster
+10
+
+One of ferdinand magellen vessels completed the first circumnavigation of the world in which year?
+1522
+10
+
+One of Queen Victoria's wedding gifts was a 3 metre diameter, half tonne?
+Cheese
+10
+
+One of the earliest centers of urban civilization, in the area of modern iraq and eastern syria between the tigris and euphrates rivers?
+Mesopotamia
+10
+
+One of the five main senses, by which sound waves are perceived by the ear in vertebrate animals?
+Hearing
+10
+
+One of the five special senses (sense organs) by what odors are perceived?
+Smell
+10
+
+One of the hard protuberances that grows from the foreheads or snouts of various hoofed mammals, such as rhinoceroses, deer, giraffes, goats, & cattle?
+Horn
+10
+
+One of the majors at Brigham University- ____ dancing
+Ballroom
+10
+
+One of the many Tarzans, Karmuela Searlel, was mauled to death on the set by a?
+Elephant
+10
+
+One of the planets in the solar system, the second in distance from the sun?
+Venus
+10
+
+One of the reasons marijuana is illegal today is because cottongrowers in the 30s lobbied against ____ farmers - they saw it as competition
+Hemp
+10
+
+One of the smallest living mammals in the world is known as a ____
+Shrew
+10
+
+One of the so called simple machines in ancient times is the wheel and the?
+Axel
+10
+
+One of the world's great estuaries, divides Maryland into two parts?
+Chesapeake Bay
+10
+
+One of the worst fires in American history gutted the 26-storey MGM Grand Hotel in the 1980's In which town was the hotel situated?
+Las Vegas
+10
+
+One of the worst fires in American history gutted the twenty-six storey MGM Grand Hotel in 1988. In which city was the hotel situated?
+Las vegas
+10
+
+One of the worst hotel fires in history erupts at the ____ in san juan
+Dupont plaza hotel
+10
+
+One of Willa Cather's most famous works is 'Death Comes For The ____'
+Archbishop
+10
+
+One out of every three British males between the ages of 17 and 35 was killed in ____
+World war i
+10
+
+One pound of tea can make how many cups of the beverage?
+300
+10
+
+One quarter of the bones in your body are in your?
+Feet
+10
+
+One ragweed plant can release approximately how many grains of pollen?
+One
+10
+
+One square inch of human skin contains ____ sweat glands
+625
+10
+
+One thousandth of a second is a____
+Millisecond
+10
+
+one ton of locusts, a fraction of a swarm, can eat the same amount of food in one day as around ____ people
+2500
+10
+
+One who belongs to a class that exercises power by virtue of its wealth?
+Plutocrat
+10
+
+One who fought professionally in roman arenas was a ____
+Gladiator
+10
+
+One who greatly admires England or the English?
+Anglophile
+10
+
+One who tells fortunes by the stars is a(n) ____
+Astrologer
+10
+
+One word in this question is mispelled. what is it's correct spelling peptidoglycan, euphrates, cytokinesis, atrioventricular?
+Misspelled
+10
+
+One-term (or less) presidents (last name only)?
+Harrison
+10
+
+One-two-three-hop - which dance was introduced to Paris in 1843?
+The Polka
+10
+
+Oneirology is a study and interpretation of what?
+Dreams
+10
+
+Onions get their distinctive smell by soaking up ____ from the soil
+Sulfur
+10
+
+Only ____ mosquitoes bite
+Female
+10
+
+Only 14% of americans say they've done this with the opposite sex, what is it?
+Skinny dipping
+10
+
+Only male canaries can?
+Sing
+10
+
+Only one Canadian Province has declared itself officially bilingual. Which province is it?
+New Brunswick
+10
+
+Only one person in ____ will live to be 116 or older
+Two billion
+10
+
+Only one person in two billion will live to be ____ or older
+116
+10
+
+Only one satellite has been ever been destroyed by a meteor ____ the European Space Agency's ____ in 1993
+Olympus
+10
+
+Only one satellite has been ever been destroyed by a meteor ____ the European Space Agency's ____
+Olympus
+10
+
+Only the ____ nightingale sings
+Male
+10
+
+Only three countries have both atlantic and mediterranean coasts france Spain and what other?
+Morocco
+10
+
+Open embroidery on usually white cotton or linen?
+Broderie anglaise
+10
+
+Open in the early 20th century, what was used to treat epilepsy?
+Rattlesnake venom
+10
+
+Opening in 1972, the action in which musical takes place at rydell high school?
+Grease
+10
+
+Opperman what is the capital of iowa?
+Des moines
+10
+
+Oral refers to what part of the body?
+Mouth
+10
+
+Orange who wrote 'a clockwork orange'?
+Anthony burgess
+10
+
+Oranges and lemons, the bells of ____
+St clements
+10
+
+Oranges cease to ____ after picking
+Ripen
+10
+
+Oranges, lemons, watermelons, & tomatoes are all what?
+Berries
+10
+
+Order of insects containing more than 100,000 species, including ants, bees, wasps, sawflies, chalcids, & ichneumons?
+Hymenoptera
+10
+
+Organ of the digestive system?
+Stomach
+10
+
+Organic chemical compounds containing a group of two nitrogen atoms attached to each other?
+Diazo compounds
+10
+
+Organic chemistry is the study of materials that must contain what?
+Carbon
+10
+
+Organisation founded by Chad Varah?
+Samaritans
+10
+
+Oriental detective of Earl Derr Biggers?
+Charlie chan
+10
+
+Orienteering originated in?
+Sweden
+10
+
+Original inhabitants of new zealand, of polynesian stock?
+Maori
+10
+
+Orlando is the capital of ____
+Florida
+10
+
+Ornamental hanging light fittings with holders for several candles or electric light bulbs?
+Chandeliers
+10
+
+Ortho- and recto- in latin both mean?
+Straight
+10
+
+Oscar Monet painted in this style?
+Impressionism
+10
+
+Oseoporosis primarily affects?
+Bones
+10
+
+Osiris was the egyptian god of ____
+Underworld and vegetation
+10
+
+Oslo is the capital of ____
+Norway
+10
+
+Other than in london, where is nelson's column?
+Great yarmouth
+10
+
+Other than martha Washington, which two women have been represented on u.s currency?
+Pocahontas and susan b anthony
+10
+
+Other than meat, what is also known as a leg of mutton?
+A kind of sleeve
+10
+
+Other than pocahontas, which two women have been represented on u.s currency?
+Susan b anthony and martha Washington
+10
+
+Other than susan b anthony, which two women have been represented on u.s currency?
+Martha Washington and pocahontas
+10
+
+Other than the U.K. and Eire, name two European countries where cars are driven on the left hand side of the road?
+Cyprus and malta
+10
+
+Ottawa is the capital of ____
+Canada
+10
+
+Otter when a player hits a double in darts, what can he do?
+Start scoring
+10
+
+Otto Stich was president of which country in 1988 and 1994?
+Switzerland
+10
+
+Ouagadougou is the capital of ____
+Burkino faso
+10
+
+Our eyes are always the same size from birth, but our ____ and ____ never stop growing
+Nose & ears
+10
+
+Our galaxy is commonly known as the ____
+Milky Way
+10
+
+Our galaxy is commonly known called ____
+The Milky Way
+10
+
+Out of 220 registered premiership footballers at the start of this season how many were not British?
+117
+10
+
+Out of what did the ancient celts make the jack-o-lantern?
+Turnips
+10
+
+Out of what is paper money made?
+Linen
+10
+
+Outside poland, where is the largest polish population?
+Chicago
+10
+
+Outside which building in London was Charles I executed?
+The banqueting house
+10
+
+Outside which building was john lennon shot?
+Dakota building
+10
+
+Outside which government building were the first traffic lights used in 1868?
+Houses of parliament
+10
+
+Outside which london building were traffic lights first installed?
+Houses of parliament
+10
+
+Over ____ birds a year die from smashing into windows
+10,000
+10
+
+Over ____ different languages are spoken throughout what used to be known as the Soviet Union
+200
+10
+
+Over ____ left handed people a year are killed from using products made for right handed people
+2500
+10
+
+Over 2500 people are killed annually from using products intended for ____
+Right-handed people
+10
+
+Over 400 films have been made based on the plays of which famous writer?
+Shakespeare
+10
+
+Over here we have a current account with a bank, what do the Americans call it?
+Checking account
+10
+
+Over where does the uvula dangle?
+Tongue
+10
+
+Over which 13-year-old girl did riots between christians and muslims break out in 1950?
+Maria hertogh
+10
+
+Over which country did king gustav v reign?
+Sweden
+10
+
+Over which Indian building are aircraft banned from flying?
+Taj mahal
+10
+
+Over which islands did britain and argentina fight in 1982?
+Falkland islands
+10
+
+Over which islands does the Spanish flag fly?
+Canary islands
+10
+
+Overhead metal bar strengthening the frame of a vehicle and protecting the occupants if it overturns?
+Roll bar
+10
+
+Ovine refers to what kind of animal?
+Sheep
+10
+
+Owls are one of the only birds who can see which colour?
+Blue
+10
+
+Owls are the only birds that can see what colour?
+Blue
+10
+
+Owls have eyeballs that are ____ in shape, because of this, they cannot move their eyes
+Tubular
+10
+
+Own it all is the advertising slogan for which board game?
+Monopoly
+10
+
+Oxide film that forms on bronze or copper?
+Patina
+10
+
+Oxygen, carbon, hydrogen and nitrogen make up ____% of the human body
+90
+10
+
+Pablo picasso was abandoned by the midwife just after his birth because she though he was stillborn. by who was he saved?
+An uncle
+10
+
+Pacing & trotting are the two types of ____ racing
+Harness
+10
+
+Paco rabanne is born in what country?
+Spain
+10
+
+Paganini played what instrument?
+Violin
+10
+
+Paint by number: what Italian artist painted birth of venus?
+Botticelli
+10
+
+Painting in water colour on fresh plaster?
+Fresco
+10
+
+Painting of inanimate objects?
+Still life
+10
+
+Pair of briefs consisting of small panels connected with strings?
+Tanga
+10
+
+Palaeontology is the study of what?
+Fossil remains
+10
+
+Palermo is the capital of which island?
+Sicily
+10
+
+Pampas grass is a native plant of which continent?
+South America
+10
+
+Pan is the greek god of ____
+Shepherds and flocks
+10
+
+Pancake mix was introduced in 1763, 1791 or 1812?
+1791
+10
+
+Pancho was whose faithful sidekick?
+Cisco kid's
+10
+
+Pandas bleat, elephants trumpet, monkeys chatter & bark. What do kangaroos do?
+Cluck
+10
+
+Pandas spend about ____ hours a day eating bamboo
+Twelve
+10
+
+Pantelleria, ustica and lampedusa are all islands belonging to which country?
+Italy
+10
+
+Papal ambassador?
+Nuncio
+10
+
+Papeete is the capital of which overseas area of France?
+French polynesia
+10
+
+Paper Lace told Billy not to be a hero in which year?
+1974
+10
+
+Paper money was first used in?
+China
+10
+
+Paper towels were invented when paper intended to be used to make ____ ____ was made too thick and wrinkled for it's intended purpose
+Toilet paper
+10
+
+Paper was invented in China in?
+100 a d
+10
+
+Paper was invented in the early second century by a chinese ____
+Eunuch
+10
+
+Parallel lines made to appear not parallel by short oblique intersecting lines?
+Zollner lines
+10
+
+Parallel of latitude at 2327' south of the equator, delineating the southernmost point at what the sun can appear directly overhead at noon?
+Tropic of capricorn
+10
+
+Parchment was made from?
+Goat skin
+10
+
+Parenthetical Titles: (Darling Boy)?
+Beautiful boy
+10
+
+Parenthetical Titles: (Every Time You Leave)?
+Fading like a flower
+10
+
+Parenthetical Titles: (If I Had A Photograph Of You)?
+Wishing
+10
+
+Parenthetical Titles: (Live At Glasgow)?
+Coming up
+10
+
+Parenthetical Titles: (Man In Motion)?
+St elmos fire
+10
+
+Parenthetical Titles: (Shake, Shake, Shake)?
+Shake your booty
+10
+
+Parenthetical Titles: (This Bird Has Flown)?
+Norwegian wood
+10
+
+Parenthetical Titles: (Worlds Apart)?
+Separate ways
+10
+
+Paris is the administrative centre of which French region?
+Ile de france
+10
+
+Paris is the capital of ____
+France
+10
+
+Parliament what is the capital of bulgaria?
+Sofia
+10
+
+Part of a city occupied by a minority group?
+Ghetto
+10
+
+Part of a plant that serves primarily as the plants food-making organ in a process called photosynthesis?
+Leaf
+10
+
+Part of a theatre for the audience?
+Auditorium
+10
+
+Part of a womans dress, above the waist?
+Bodice
+10
+
+Particles of sand or stone mixed with cement to make concrete?
+Aggregate
+10
+
+Particularly fond of dahlias and chrysanthemums, which garden insect has the scientific name forficula auricularia?
+Earwig
+10
+
+Parton what is the official birthplace of country music?
+Bristol
+10
+
+Paso what did welch's grape juice become a favorite substitute for when the 18th amendment passed?
+Wine
+10
+
+Passport endorsement?
+Visa
+10
+
+Pasta Dishes?
+Spaghetti
+10
+
+Pasteur & ____ proved germs cause diseases
+Koch
+10
+
+Pasteur developed a vaccine for rabies in which year?
+1885
+10
+
+Patsy cline is the most noted with pop-country crossovers. which other singer should not be overlooked for her hits 'break it to me gently' and 'fool no. 1'?
+Brenda lee
+10
+
+Patterson what do you call a person that stuffs dead animals?
+Taxidermist
+10
+
+Patty + Selma's pet?
+Jub jub 
+10
+
+Paul heaton fron the beautiful south used to belong to which band?
+He housemartins
+10
+
+Paul hewson is the real name of which popular singer?
+Bono
+10
+
+Paul Keating was elected prime minister of Australia in which year?
+1991
+10
+
+Paul mccartney & george harrison attend ringo starr's and ____ wedding
+Barbara bach
+10
+
+Paul McCartney's mother was a?
+Midwife
+10
+
+Paul newman has starred in three movies bearing one word titles starting with h. name them in alphabetical order?
+Harper hombre hud
+10
+
+Paul Newman married which actress?
+Joanne woodward
+10
+
+Paul Revere was a?
+Dentist
+10
+
+Pavarotti popularized Nessun dorma but what does it mean?
+None shall sleep
+10
+
+Pax is the roman goddess of ____
+Peace
+10
+
+Peace treaty that signified the end of world war i?
+The treaty of versailles
+10
+
+Peanuts are used in the production of?
+Dynamite
+10
+
+Peanuts are what?
+Beans
+10
+
+Pearls melt in?
+Vinegar
+10
+
+Pears are a member of which family?
+Rose
+10
+
+Pedals were added to the bicycle in?
+1839
+10
+
+Pegasus, Kibris and Onur are all current airlines from which European country?
+Turkey
+10
+
+Penguins can jump over ____ feet
+Six
+10
+
+Penicillin causes about ____ deaths in the United States every year
+300
+10
+
+Penicillin is derived from what?
+Mould
+10
+
+Penicillium roquefortii effects these foods by ripening them as it rots them?
+Blue cheeses
+10
+
+Pennsylvania was the first colony to legalize____
+Witchcraft
+10
+
+People eaters what tools are used to crewel?
+Needles
+10
+
+People from Manchester, England are called what?
+Mancunians
+10
+
+People in ____ read more books than people anywhere else in the world per capita
+Iceland
+10
+
+People in Siberia often buy ____ frozen on a stick
+Milk
+10
+
+People with which disease were cared for by Father de Veuster on the Hawaiian island of Molokai?
+Leprosy
+10
+
+people: American author best known for Moby Dick?
+Herman melville
+10
+
+people: American dramatist whose plays include death of a salesman and the crucible?
+Arthur miller
+10
+
+people: American movie director whose films include e.t. and jaws?
+Spielberg
+10
+
+people: American psychologist known for his experiments with hallucinogenics in the 60s?
+Timothy leary
+10
+
+People: Anthony Quinn played him in a 1964 movie?
+Zorba the greek
+10
+
+people: bernard ____ was an industrial and economic advisor during wwi and wwii
+Baruch
+10
+
+people: burmese diplomat, secretary general to the united nations 1962-1972?
+U thant
+10
+
+people: clare booth ____ was a playright, diplomat, and us rep
+Luce
+10
+
+People: Czar of Russia, 1682-1725, instituted a beard tax?
+Peter the great
+10
+
+people: director of the fbi who lived from 1895-1972?
+J. edgar hoover
+10
+
+people: Dutch post-impressionist painter, lived 1853-1890?
+Van gogh
+10
+
+People: English king more interested in fighting crusades than ruling England?
+Richard the lionhearted
+10
+
+people: first female cabinet member?
+Oveta hobby
+10
+
+people: he is an American lawyer and consumer advocate?
+Ralph nader
+10
+
+People: He made Prussia into a European power; composed some music still played?
+Frederick the great
+10
+
+PEOPLE: Hebrew patriarch from whom all jews trace their decent?
+Abraham
+10
+
+People: His dog Snert says voof instead of woof?
+Hagar the horrible
+10
+
+People: In 1570 his army destroyed Novgorod and he had thousands executed?
+Ivan the terrible
+10
+
+People: Last of the Hebrew prophets?
+John the baptist
+10
+
+People: Red Skelton's hobo character?
+Freddy the freeloader
+10
+
+people: the first name of the American statistician who established the gallup poll?
+George
+10
+
+People: They had an album and a song entitled 'All the Young Dudes'?
+Mott the hoople
+10
+
+people: tina turners first charted record with ike turner was this song?
+Fool in love
+10
+
+People: Weak English king, ruled 978-1016?
+Ethelred the unready
+10
+
+Pepper's lonely hearts club band Energy waves produced by the oscillation or acceleration of an electric charge. Electromagnetic waves have both electric and magnetic components?
+Electromagnetic radiation
+10
+
+Pepsin, lactase and amylase are types of what?
+Enzymes
+10
+
+Per a 1995 poll, 3.9 percent of the women surveyed said they don't wear ____
+Underwear
+10
+
+Per capita, Canada has more ____ shops than any other country
+Doughnut
+10
+
+Per the Beatles, how many holes does it take to fill the Albert Hall?
+4,000
+10
+
+Percent in which county are all ten of England's highest peaks?
+Cumbria
+10
+
+Percent what was the final destination of the first u.s. paddle wheel steamboat, what departed from pittsburgh?
+New orleans
+10
+
+Performing Arts: : From a play by which greek comedy dramatist does the expression Cloud cuckoo land come?
+Aristophanes
+10
+
+Performing Arts: : From which play,first performed in 1956 was the term Angry young men derived?
+Look back in anger
+10
+
+Performing Arts: : George Bernard Shaws play Arms and the Man was made into which operetta in 1894?
+The chocolate soldier
+10
+
+Performing Arts: : In a Midsummers Nights Dream, whose head did Puck turn into that of an ass?
+Bottom
+10
+
+Performing Arts: : In the theatrical world, what name is given to the financial backer of a stage production?
+Angel
+10
+
+Performing Arts: : In traditional English drama, who was Columbines lover?
+Harlequin
+10
+
+Performing Arts: : In what sphere was Karsh of Ottawa famous?
+Photography
+10
+
+Performing Arts: : In which European art galleries are the 2 versions of Leonardo Da Vincis Virgin of the Rocks?
+The louvre & the national gallery
+10
+
+Performing Arts: : In which Gilbert and Sullivan operetta does Pooh Bah appear?
+The mikado
+10
+
+Performing Arts: : In which Puccini opera is a seamstress named Mimi the heroine?
+La boheme
+10
+
+Performing Arts: : Of which theatre is Alan Ayckbourn artistic director?
+The stephen joseph theatre
+10
+
+Performing Arts: : What form of entertainment sprang out of the old Commedia dell'arte?
+Pantomime
+10
+
+Performing Arts: : What is a closet drama?
+One for reading
+10
+
+Performing Arts: : What term was given to dramatists whose work attacked the values of the establishment?
+Angry young men
+10
+
+Performing Arts: : What was the former name of the Royal Ballet?
+Sadlers wells ballet
+10
+
+Performing Arts: : What was the name of Stravinskys first ballet which was first performed in 1910, which he shortened into a suite as it was too long and patchy?
+The firebird
+10
+
+Performing Arts: : What was the name of the Jew of Malta in the play by Christopher Marlowe?
+Barabas
+10
+
+Performing Arts: : What was the name of the town in which Gilbert and Sullivans The Mikado set?
+Titipu
+10
+
+Performing Arts: : Which ballet dancers 1998 autobiography was entitled Life in Dance?
+Darcey bussell
+10
+
+Performing Arts: : Which comedian made his operatic debut in The Mikado?
+Jasper carrott
+10
+
+Performing Arts: : Which dups theatrical performances were called At the drop of a hat?
+Flanders and swann
+10
+
+Performing Arts: : Which English poet and dramatist was jailed for murder after killing the actor Gabriel Spencer in a duel in 1598?
+Ben jonson
+10
+
+Performing Arts: : Which form of dancing features charaters from the Robin Hood stories,along with Bavian the fool, Malkin the Clown and a hobby horse?
+Morris dancing
+10
+
+Performing Arts: : Which former ballet dancer was the first director of the Royal Ballet which she had founded in 1931?
+Dame ninette de valois
+10
+
+Performing Arts: : Which playwright was arrested for homosexuality in 1895?
+Oscar wilde
+10
+
+Performing Arts: : Which theatre in London did Bernard Miles found in 1951 and name after a tavern destroyed in the Great Fire of London?
+The mermaid
+10
+
+Performing Arts: : Which was the last ballet directed by Rudolf Nureyev in 1992?
+La bayadere
+10
+
+Performing Arts: : Who was principal conductor of the Halle Orchestra from 1949 - 1970?
+Sir john barbirolli
+10
+
+Performing Arts: 18th Century: 18th century French dance?
+Gavotte
+10
+
+Performing Arts: 1960s: Completed in 1966, which is the world's largest opera house?
+Metropolitan in New York
+10
+
+Performing Arts: Adrienne Barbeau and Barry Bostwick were stars of this long-running musical?
+Grease
+10
+
+Performing Arts: American prima ballerina with the Ballet Russe de Monte Carlo & NYC ballet?
+Maria tallchief
+10
+
+Performing Arts: appear in 4 Shakespearian plays; Julius Caesar, Richard III, Hamlet and Macbeth?
+Ghosts
+10
+
+Performing Arts: British choreographer of Sadler's Wells (now Royal) Ballet?
+Sir frederick ashton
+10
+
+Performing Arts: British playwright (This is where we came in, Invisible friends)?
+Alan Ayckbourn
+10
+
+Performing Arts: Cuban dancer & choreographer soloed withe American Ballet Theater and Broadway?
+Alicia alonso
+10
+
+Performing Arts: Famous musical based on the legend of Pygmalion and Galatea?
+My fair lady
+10
+
+Performing Arts: Founder of the Dance Theater of Harlem, first black classical dance company?
+Arthur mitchell
+10
+
+Performing Arts: French creator of modern classical ballet, he created Sleeping Beauty?
+Marius petipa
+10
+
+Performing Arts: From which Shakespeare play is this line taken: To be or not to?
+Hamlet
+10
+
+Performing Arts: Greatest ballerina of her generation, she is noted for her role in Dying Swan?
+Anna pavlova
+10
+
+Performing Arts: In 'Romeo and Juliet', about what was Mercutio's long monologue?
+Queen Mab
+10
+
+Performing Arts: In the opera 'don giovanni', who was leporello?
+Servant
+10
+
+Performing Arts: In the opera 'La Traviata', what does La Traviata mean?
+The fallen woman
+10
+
+Performing Arts: In the opera 'La Traviata', what was Violetta's occupation?
+Courtesan
+10
+
+Performing Arts: In the opera, what kind of factory did carmen work in?
+Cigarette factory
+10
+
+Performing Arts: In the original version of 'romeo and juliet', who played juliet?
+Robert Goffe
+10
+
+Performing Arts: in what opera did cherubino serve count almaviva?
+Marriage of figaro
+10
+
+Performing Arts: Known for Western Symphony and the ballets The Chase and Irish Fantasy?
+Jacques damboise
+10
+
+Performing Arts: Member and director of the Royal Danish Ballet, known for Swan Lake and Giselle?
+Erik bruhn
+10
+
+Performing Arts: Music: Who composed the opera 'Eugene Onegin'?
+Tchaikovsky
+10
+
+Performing Arts: Music: Who composed the opera 'Macbeth'?
+Verdi
+10
+
+Performing Arts: Music: Who composed the opera buffo the golden cockerel in 1909?
+Rimsky-korsakov
+10
+
+Performing Arts: Music: Who composed the opera I Pagliacci?
+Leoncavallo
+10
+
+Performing Arts: Music: Who composed the opera Lakme and the ballet Coppelia?
+De libes
+10
+
+Performing Arts: Music: Who composed the opera Lakme?
+Delibes
+10
+
+Performing Arts: Music: Who composed the opera Lulu?
+Alban berg
+10
+
+Performing Arts: Music: Who composed the opera the flying dutchman in 1843?
+Richard wagner
+10
+
+Performing Arts: Music: Who composed the opera tosca?
+Puccini
+10
+
+Performing Arts: Music: Who composed the orchestral suite the planets?
+Gustav holst
+10
+
+Performing Arts: Noel Coward's play, Private Lives was based on what taboo subject?
+Divorce & adultery
+10
+
+Performing Arts: Noel Coward's play, The Vortex, was based on what taboo subject?
+Drugs
+10
+
+Performing Arts: Shakespeare: In which work by Shakespeare do the Earls of Pembroke,Essex & Salisbury and the Lord Bigot appear?
+The life and death of King John
+10
+
+Performing Arts: Shakespeare: In which work do Leontes,King of Sicilia and Mansillius, the yound prince appear?
+The winter's tale
+10
+
+Performing Arts: Shakespeare: Name the Moor of Venice?
+Othello
+10
+
+Performing Arts: The Crucible is a play set during which trials?
+Salem witchcraft trials
+10
+
+Performing Arts: This American owned his own company and choreographed for the New York Opera?
+Robert joffrey
+10
+
+Performing Arts: Three of Shakespeare's plays contain a ghost - Hamlet is one, name the others?
+Macbeth and julius caesar
+10
+
+Performing Arts: what is the setting for the Opera Billy Budd?
+Warship
+10
+
+Performing Arts: Which theatre staged the musical Cats from 1981 - 2002?
+New London Theatre
+10
+
+Performing Arts: Who is the Big Yin?
+Billy Connolly
+10
+
+Performing Arts: Who wrote the play �Our Town'?
+Thornton Wilder
+10
+
+Performing Arts:What anthony shaffer two man play opens in the living room of andrew wykes norman manor house?
+Sleuth
+10
+
+Perfume from the fruit of a dwarf orange tree?
+Bergamot
+10
+
+Perhaps Canada's tallest tree, the Sitka spruce is called?
+Carmanah giant
+10
+
+Period from birth to approximately 18 months of age?
+Infancy
+10
+
+Period where a person reaches sexual maturity?
+Puberty
+10
+
+Periodic movements of animals from one place to another is called (____)
+Migration
+10
+
+Periodic table: what is np?
+Neptunium
+10
+
+Persian, siameses and abyssinian are types fo what?
+Cats
+10
+
+Person aged from 40 to 49?
+Quadragenarian
+10
+
+Person aged from 50 to 59?
+Quinquagenarian
+10
+
+Person appointed to administer the funds of a society or company?
+Treasurer
+10
+
+Person of erratic mind, mixture of genius and fool?
+Mattoid
+10
+
+Person who believes that knowledge of a Supreme Being is impossible?
+Agnostic
+10
+
+Person who studies ceremonies particularly magical or religious ones?
+Ritualist
+10
+
+Person who throws gloom over social enjoyment?
+Party-pooper
+10
+
+Person who undertakes commercial venture?
+Entrepreneur
+10
+
+Person with an uncontrollableand recurring urge to drink alcohol?
+Dipsomaniac
+10
+
+Perspiration is odorless. What causes body odor?
+Bacteria
+10
+
+Pete townsend , john entwistle , roger daltery name the 4th member?
+Keith moon
+10
+
+Peter gabriel and phil collins split from this group?
+Genesis
+10
+
+Peter hook and bernard sumner are members of which Manchester band who reformed in 2001?
+New order
+10
+
+Peter Lorre was born in what year?
+1904
+10
+
+Peter Sellers had a top ten hit in 1960 with which other film star?
+Sophia loren
+10
+
+peter the great was leader of this country?
+Russia
+10
+
+Petrography is concerned with what?
+Rocks
+10
+
+Pets: anoles are commonly sold as ____ in pet stores
+Chameleons
+10
+
+Petula clark sings 'if you're feeling sad and lonely, there's a service i can render'. what is it?
+Call me
+10
+
+Phalanges are bones found in a human what?
+Toes
+10
+
+Phil Collins won an Oscar for Best Original Song in 2000. In which film?
+Tarzan
+10
+
+Philip k dick's novel 'do androids dream of electric sleep' was made into what film?
+Blade runner
+10
+
+Philip Pirrip is the main character in which Charles Dickens novel?
+Great expectations
+10
+
+Philosophy: The last line of which document is 'working men of all countries, unite!'?
+Communist Manifesto
+10
+
+Philosophy: What is the name of the belief that many gods exist, but only one should be worshipped?
+Monolatry
+10
+
+Phineas barnum opened his circus in what year?
+1871
+10
+
+Phnom-penh is the capital of ____
+Cambodia
+10
+
+Phobos and deimos are moons of which planet?
+Mars
+10
+
+Phobos is a moon of which planet?
+Mars
+10
+
+Phoenix is the capital city of which US state?
+Arizona
+10
+
+Phoenix is the capital of ____
+Arizona
+10
+
+phonetic radio call signs: chingada?
+Charlie hotel India november golf alpha delta alpha
+10
+
+phonetic radio call signs: crouch?
+Charlie romeo oscar uniform charlie hotel
+10
+
+phonetic radio call signs: drksky?
+Delta romeo kilo sierra kilo yankee
+10
+
+phonetic radio call signs: ear?
+Echo alpha romeo
+10
+
+phonetic radio call signs: mach?
+Mike alpha charlie hotel
+10
+
+phonetic radio call signs: mrtyrone?
+Mike romeo tango yankee romeo oscar november echo
+10
+
+phonetic radio call signs: nathan?
+November alpha tango hotel alpha november
+10
+
+phonetic radio call signs: nztca?
+November zulu tango charlie alpha
+10
+
+phonetic radio call signs: sabi?
+Sierra alpha bravo India
+10
+
+phonetic radio call signs: spinner?
+Sierra papa India november november echo romeo
+10
+
+phonetic radio call signs: sturm?
+Sierra tango uniform romeo mike
+10
+
+Phrases: Bated ____
+Breath
+10
+
+Phrases: Blushing ____
+Bride
+10
+
+Phrases: Free as ____ ____
+A bird
+10
+
+Phrases: In seventh ____
+Heaven
+10
+
+Phrases: None the worse ____ ____
+For wear
+10
+
+Phrases: Who said 'Everything must either be or not be, whether in the present or in the future'?
+Aristotle
+10
+
+Phrases: Who said 'Give me a firm place to stand and I will move the Earth'?
+Archimedes
+10
+
+Phrases: Who said 'The greater our knowledge increases, the more our ignorance unfolds'?
+John F. Kennedy
+10
+
+Phrases: Who said 'The way of the warrior is the resolute acceptance of death'?
+Miyamoto Musashi
+10
+
+Phylum or superphylum of common but inconspicuous, often microscopic worms?
+Aschelminthes
+10
+
+Physcrophilia is the sexual arousal by?
+Cold
+10
+
+Physical or behavioral resemblance of one species to another to benefit itself or, in effect, sometimes both species?
+Mimicry
+10
+
+Physics: At what angle above the horizon must the sun be to create a rainbow (in degrees)?
+Forty
+10
+
+Physics: In the equation E=MC2, what does the C stand for?
+Speed of light
+10
+
+Physics: The energy which a body possesses by virtue of its motion is called ____
+Kinetic
+10
+
+Physics: The force that brings moving bodies to a halt is ____
+Friction
+10
+
+Physics: The pivot point of a lever is called the ____
+Fulcrum
+10
+
+Physics: The process of water changing to water vapor is known as ____
+Evaporation
+10
+
+Physics: The rate of change of velocity is known as ____
+Acceleration
+10
+
+Physics: The visible spectrum of light ranges from red to ____
+Violet
+10
+
+Physics: True Or False- Contrary to popular belief, a lightbulb actually absorbs darkness?
+False
+10
+
+Physics: Two 1.5 volt batteries, when connected in series, produces ____ volts
+3
+10
+
+Physics: Water freezes at ____ degrees Celcius
+0
+10
+
+Physics: Water freezes at ____ degrees Celcius
+Zero
+10
+
+Physics: Water freezes at ____ degrees Fahrenheit
+32
+10
+
+Physics: Waves 'break' when their height is how much more than the depth of the water?
+Seven tenths
+10
+
+Physics: What are the units of measurement for Energy?
+Joule
+10
+
+Physics: What are the units of measurement for Force?
+Newton
+10
+
+Physics: What are the units of measurement for Frequency?
+Hertz
+10
+
+Physics: What are the units of measurement for Power?
+Watt
+10
+
+Physics: What are the units of measurement for Pressure?
+Pascal
+10
+
+Physics: What device is used to measure weather pressure?
+Barometer
+10
+
+Physics: What device was used to determine a ship's latitude?
+Sextant
+10
+
+Physics: What has superseded Newtonian mechanics of the atomic scale?
+Quantum mechanics
+10
+
+Physics: What is measured by a Geiger counter?
+Radioactivity
+10
+
+Physics: What is the formal name for when a substance breaks down on heating?
+Thermal Decomposition
+10
+
+Physics: What is the luminous intensity of light measured in?
+Candela
+10
+
+Physics: What is the name for 0.1 Newtons?
+Dyne
+10
+
+Physics: What is the name given to elementary particles originating in the sun and other stars, that continuously rain down on the earth?
+Cosmic rays
+10
+
+Physics: What is the second derivative of distance?
+Acceleration
+10
+
+Physics: What scale is used to measure wind speed?
+Beaufort
+10
+
+Physics: When light waves pass from one medium into another they change direction. This is called ____
+Refraction
+10
+
+Physics: Which scale is based on the speed of sound?
+Mach
+10
+
+Physics: Work done, equals force multiplied by ____
+Distance
+10
+
+Physiological systems that enable organisms to live in harmony with the rhythms of nature, such as the cycles of day & night & of the seasons?
+Biological clocks
+10
+
+Pickled herrings were invented in what year?
+1375
+10
+
+Picture representing word or syllable?
+Heiroglyph
+10
+
+Picturesque cave?
+Grotto
+10
+
+Pieces of vegetable coated in seasoned flour and deep fried?
+Pakora
+10
+
+Pienaar what gender is a snail?
+Hermaphrodite
+10
+
+Piercing of holes other than the ear lobes?
+Body piercing
+10
+
+Pierre boulle's novel monkey planet was the basis for what 1968 movie?
+Planet of the apes
+10
+
+Pigs, walruses & light-colored horses can get a ____
+Sunburn
+10
+
+Pigs, walruses, and light-colored horses can be?
+Sunburned
+10
+
+Pinatubo The application of science to law?
+Forensic science
+10
+
+Pinball: 1992 Bally machine based upon a British childrens TV series?
+Dr. who
+10
+
+pinball: 1994 data east game based on the pinball-themed broadway play?
+Tommy
+10
+
+pinball: all pinball machines are made near this city, the pinball capital of the world?
+Chicago
+10
+
+pinball: in the addams family, this ai-enabled flipper will make the shot for you?
+Thing
+10
+
+Pinball: Pinball fanatics on the Internet read this Usenet group?
+Rec.games.pinball
+10
+
+Pinball: Slash, a big pinball fan, co-designed this 1994 Data East game?
+Guns n roses
+10
+
+pinball: this 1976 bally machine featured elton john on the backglass?
+Captain fantastic
+10
+
+pinball: this 1988 lawlor game has a vertical playfield instead of a normal backglass?
+Banzai run
+10
+
+pinball: this mammoth 1979 atari game featured a pool-ball sized pinball?
+Hercules
+10
+
+pinball: this world champion pinball player became a programmer for data east?
+Lyman sheats
+10
+
+Pinchbeck is an alloy of copper and what else?
+Zinc
+10
+
+Pink elephants? In regions of India where the soil is red, elephants take on a permanent pink tinge because they regularly spray dust over their bodies to protect themselves against ____
+Insects
+10
+
+Pink floyd followed up 'dark side of the moon' with which release in 1975, whose title sounds like a note on a postcard?
+Wish you were here
+10
+
+Pinocchio is Italian meaning what?
+Pine eyes
+10
+
+Pistols were first used in the Olympic games shooting events in?
+1984
+10
+
+Pitcairn Island was settled by crew members of which ship?
+Bounty
+10
+
+Pitchblende is an ore of which metal?
+Uranium
+10
+
+Pitcher w. a. cummings introduced what to baseball in 1866?
+Curve ball
+10
+
+Pitches with what is charcoal and saltpetre mixed to make gunpowder?
+Sulphur
+10
+
+Place of shelter for ships?
+Harbour
+10
+
+Place the following musical terms in order of increasing speed Lento, Largo, Andante, Allegro and Presto?
+Lento, largo, andante, allegro and presto
+10
+
+Place where weapons are made or stored?
+Arsenal
+10
+
+Plane figure with 7 sides and angles?
+Heptagon
+10
+
+PLANTS:By what name is the flower convallaria better known?
+Lily of the Valley
+10
+
+PLANTS:Edible subterranean fungus?
+Truffle
+10
+
+PLANTS:What do coconut, date and sago all have in common?
+Types of palm
+10
+
+Plashing is the term to describe the collecting of what kind of nut?
+Walnut
+10
+
+Plastic wrapping material in sheets containing numerous air filled bladders?
+Bubble wrap
+10
+
+Plato founded the academy in athens in 398 bc, 387 bc or 364 bc?
+387 bc
+10
+
+Pleurisy is effects which organ?
+The lungs
+10
+
+Plus fours, the type of trousers much loved by golfers, are an example of which type of men's fashion?
+Knickerbockers
+10
+
+Pluto is ____ kilometres in diameter
+6,000
+10
+
+Pluto is ____ miles in diameter
+3,728
+10
+
+Plutonium was developed by deuteron bombardment of uranium-238 in a?
+Cyclotron
+10
+
+Poisonous substance especially a pesticide?
+Biocide
+10
+
+Pokemon: Every Eevee evolution has been owned by a main or recurring character in the anime except for one, which one is it?
+Jolteon
+10
+
+Pokemon: Excluding dual type Pokemon. What three types of Pokemon has Ash never officially caught?
+Steel, psychic and ghost
+10
+
+Pokemon: Generation 1 legendaries?
+Articuno
+10
+
+Pokemon: Generation 2 legendaries?
+Lugia
+10
+
+Pokemon: Generation 3 legendaries?
+Regice
+10
+
+Pokemon: Generation 4 legendaries?
+Azelf
+10
+
+Pokemon: Generation 5 legendaries?
+Victini
+10
+
+Pokemon: How many badges could you obtain in the Orange League?
+Four
+10
+
+Pokemon: How many badges do you need to enter the Pokemon League?
+Eight
+10
+
+Pokemon: How old was Ash when he started his journey?
+10
+10
+
+Pokemon: Name the first two Pokemon we see Brock use?
+Geodude and Onyx
+10
+
+Pokemon: What are the final evolutions of Nidoran?
+Nidoking and Nidoqueen
+10
+
+Pokemon: What fully evolved Pokemon can't learn any TMs?
+Wobbufet
+10
+
+Pokemon: What is the final evolution of Bulbasaur?
+Venasaur
+10
+
+Pokemon: What is the final evolution of Charmander?
+Charizard
+10
+
+Pokemon: What is the final evolution of Dratini?
+Dragonite
+10
+
+Pokemon: What is the final evolution of Pidgey?
+Pidgeot
+10
+
+Pokemon: What is the final evolution of Squirtle?
+Blastoise
+10
+
+Pokemon: What is the name of the lady who operates the various Pokemon centres?
+Nurse Joy
+10
+
+Pokemon: What is the name of the resident police officer?
+Officer Jenny
+10
+
+Pokemon: What is the only legendary Pokemon that Ash has never encountered?
+Raikou
+10
+
+Pokemon: What is the only Pokemon in Generation 3 thats name begins with the letter i?
+Illumise
+10
+
+Pokemon: What item of Mistys did Ash break when the two first mer?
+Bicycle
+10
+
+Pokemon: What town is Ash from?
+Pallet town
+10
+
+Pokemon: What type of Pokemon does Misty specialise in?
+Water
+10
+
+Pokemon: What was the first fire type Pokemon Ash caught?
+Charmander
+10
+
+Pokemon: What was the first flying type Pokemon that Ash caught?
+Pidgey
+10
+
+Pokemon: Which city does Brock come from?
+Pewter City
+10
+
+Pokemon: Who are the gym leaders in Opelucid City?
+Drayden and Iris
+10
+
+Pokemon: Who are the gym leaders in Striation City?
+Cilan, Chili and Cress
+10
+
+Pokemon: Who does Meowth evolve into?
+Persian
+10
+
+Pokemon: Who is the gym leader in Azalea Town?
+Buggsy
+10
+
+Pokemon: Who is the gym leader in Blackthorn City?
+Clair
+10
+
+Pokemon: Who is the gym leader in Canalive City?
+Byron
+10
+
+Pokemon: Who is the gym leader in Castelia City?
+Burgh
+10
+
+Pokemon: Who is the gym leader in Celdaon City?
+Erika
+10
+
+Pokemon: Who is the gym leader in Cerulean City?
+Misty
+10
+
+Pokemon: Who is the gym leader in Cianwood City?
+Chuck
+10
+
+Pokemon: Who is the gym leader in Cinnabr Island?
+Blaine
+10
+
+Pokemon: Who is the gym leader in Dewford Town?
+Brawly
+10
+
+Pokemon: Who is the gym leader in Drigtveilt City?
+Clay
+10
+
+Pokemon: Who is the gym leader in Ecruteak City?
+Morty
+10
+
+Pokemon: Who is the gym leader in Eterna City?
+Gardenia
+10
+
+Pokemon: Who is the gym leader in Fortree City?
+Winona
+10
+
+Pokemon: Who is the gym leader in Fuchsia City?
+Koga
+10
+
+Pokemon: Who is the gym leader in Goldenrod City?
+Whitney
+10
+
+Pokemon: Who is the gym leader in Hearthome City?
+Fantina
+10
+
+Pokemon: Who is the gym leader in Icirrus City?
+Brycen
+10
+
+Pokemon: Who is the gym leader in Lavaridge Town?
+Flannery
+10
+
+Pokemon: Who is the gym leader in Magogany Town?
+Pryce
+10
+
+Pokemon: Who is the gym leader in Mauville City?
+Wattson
+10
+
+Pokemon: Who is the gym leader in Mistralton City?
+Skyla
+10
+
+Pokemon: Who is the gym leader in Mossdeep City?
+Tate and Liza
+10
+
+Pokemon: Who is the gym leader in Nacrene City?
+Lenora
+10
+
+Pokemon: Who is the gym leader in Nimbasa City?
+Elesa
+10
+
+Pokemon: Who is the gym leader in Olivine City?
+Jasmine
+10
+
+Pokemon: Who is the gym leader in Oreburgh City?
+Roark
+10
+
+Pokemon: Who is the gym leader in Pastoria City?
+Crasher Wake
+10
+
+Pokemon: Who is the gym leader in Petalburg City?
+Norman
+10
+
+Pokemon: Who is the gym leader in Pewter City?
+Brock
+10
+
+Pokemon: Who is the gym leader in Rustburo City?
+Roxanne
+10
+
+Pokemon: Who is the gym leader in Saffron City?
+Sabrina
+10
+
+Pokemon: Who is the gym leader in Snowpoint City?
+Candice
+10
+
+Pokemon: Who is the gym leader in Sootopolis City?
+Wallace
+10
+
+Pokemon: Who is the gym leader in Sunnyshore City?
+Volkner
+10
+
+Pokemon: Who is the gym leader in Veilstone City?
+Maylene
+10
+
+Pokemon: Who is the gym leader in Vermilion City?
+Lt. Surge
+10
+
+Pokemon: Who is the gym leader in Violet City?
+Falkner
+10
+
+Pokemon: Who is the gym leader in Viridian City?
+Giovanni
+10
+
+Pokemon: Who is the mascot of Pokemon?
+Pikachu
+10
+
+Pokemon: Who is the Professor in Kanto?
+Professor Oak
+10
+
+Pokemon: Who were Ash's first two traveling companions?
+Brock and Misty
+10
+
+Poland has its only coastline on which sea?
+Baltic
+10
+
+Poland: As of 1999, Poland was the _th largest country in Europe. (+/- 1)?
+Nine
+10
+
+Poland: If you write 3 4 + 9 2 - instead of (3+4)x(9-2), you are using?
+Reverse polish notation
+10
+
+Poland: In his short career, he composed 58 mazurkas, 27 etudes, 26 preludes et al?
+Chopin
+10
+
+Poland: This famous woman scientist won two Nobel prizes in physics & chemistry?
+Curie
+10
+
+Poland: True or False: There are bisons living in Polish forests?
+True
+10
+
+Polar bears can run as fast as ____ km/h
+Forty
+10
+
+Policy of acceding to the demands of a potentially hostile country in the hope of maintaining peace?
+Appeasement
+10
+
+Policy of seeking to recover lost territory?
+Revanchism
+10
+
+Polio is also known as ____
+Infantile paralysis
+10
+
+Polish & German jews are known as?
+Ashkenazi jews
+10
+
+Politics: For what does O.P.E.C. stand?
+The organization of petroleum exporting countries
+10
+
+Politics: He was elected President of France, in 1981?
+Francios Mitterrand
+10
+
+Politics: He was elected President of France, in 1981?
+Mitterrand
+10
+
+Politics: In England, what is the Speaker of the House not allowed to do?
+Speak
+10
+
+Politics: is Romania a unicameral or a bicameral republic?
+Bicameral
+10
+
+Politics: Name Ronald Reagan's first wife?
+Wyman
+10
+
+Politics: Of which island do Ireland, Britain, Iceland and Norway dispute ownership?
+Rockall
+10
+
+Politics: System in which total power is vested in a single individual or a group of rulers?
+Absolutism
+10
+
+Politics: UK Ministers: Who was the Prime Minister of Britain between 1766 and 1768?
+William Pitt
+10
+
+Politics: UK Ministers: Who was the Prime Minister of Britain between 1841 and 1846?
+Sir Robert Peel
+10
+
+Politics: UK Ministers: Who was the Prime Minister of Britain between 1874d 1880?
+Benjamin Disraeli
+10
+
+Politics: UK Ministers: Who was the Prime Minister of Britain between 1916 and 1922?
+David Lloyd George
+10
+
+Politics: UK Ministers: Who was the Prime Minister of Britain between 1964 and 1970?
+Harold Wilson
+10
+
+Politics: UK Ministers: Who was the Prime Minister of Britain between 1970 and 1974?
+Edward Heath
+10
+
+Politics: What does Israel call its parliament?
+Knesset
+10
+
+Politics: What is PLO an abbreviation for?
+Palestine Liberation Organization
+10
+
+Politics: What type of government does Thailand have?
+Monarchy
+10
+
+Politics: Which island do the nationalist Chinese occupy?
+Taiwan
+10
+
+Politics: Which nation calls its parliament 'The Knesset'?
+Israel
+10
+
+Politics: Who succeeded Charles de Gaulle as president of France?
+Georges Pompidour
+10
+
+Pollsters say that ____ of dog and cat owners carry pictures of their pets in their wallets
+40%
+10
+
+Polyhymnia was the muse of what?
+Sacred poetry
+10
+
+Polyp, fish, worm, plant, crab, mollusk, and plankton in symbiotic relationship, make up what?
+Coral reef
+10
+
+Pooley's guide is used by amateurs and professionals in which profession and hobby?
+Flying
+10
+
+Poor whites in Florida and georgia are called 'crackers' because of the name of their principal staple food which is what?
+Cracked corn
+10
+
+Pop a 12 ounce can of soda pop contains the equivalent of how many teaspoons of sugar?
+Nine
+10
+
+popular name for the Weat German guerrilla group?
+Bader-Meinhoff Gang
+10
+
+Port au prince is the capital of ____
+Haiti
+10
+
+Port said lies on which waterway?
+The suez canal
+10
+
+Portable underwater breathing apparatus?
+Aqualung
+10
+
+Portugals old currency?
+Escudo
+10
+
+Postage stamps were first introduced in to britain in what year?
+1840
+10
+
+Potentially dangerous to human life on earth, what is filtered out by the ozone layer?
+Ultra violet radiation
+10
+
+Powdered red pepper?
+Cayenne
+10
+
+Powdered Tea was once used as a snuff to stop bleeding ____
+Noses
+10
+
+Powdered wood formed by the activity of a woodworm?
+Frass
+10
+
+Power Tools?
+Skill Saw
+10
+
+Practice of driving recklessly in a stolen car?
+Hotting
+10
+
+Prague is the capital of ____
+Czechoslovakia
+10
+
+Premises used for prostitution?
+Brothel
+10
+
+Premnium bond selector?
+Ernie
+10
+
+Present lucasian professor of mathematics and author of a brief history of time?
+Stephen hawkings
+10
+
+President clinton's campaign song 'don't stop' by fleetwood mac, was off which album recorded years earlier?
+Rumors
+10
+
+President fd roosevelt appeared in the 1943 comedy princess o'rourke as what?
+Himself
+10
+
+President Kaunda of ____ once threatened to resign if his fellow countrymen didn't stop drinking so much alcohol
+Zambia
+10
+
+president known to have sex with his mistress nan britton in the white house,?
+Warren harding
+10
+
+President Lincoln proclaimed the first national thanksgiving day in what year?
+1863
+10
+
+President roosevelt had a landslide victory in 1932, who did he defeat?
+Herbert hoover
+10
+
+President six u.s presidents never had ____
+Children
+10
+
+President who resigned over watergate?
+Nixon
+10
+
+Presidential pets?
+Socks
+10
+
+Presidents named John or James (last name only)?
+Adams
+10
+
+Presidents U.S. President, Woodrow ____
+Wilson
+10
+
+Presidents who have been shot or shot at (last name only)?
+Reagan
+10
+
+Presidents who have died in office (last name only)?
+Lincoln
+10
+
+Presley elvis presley appeared on how many stamps in 1993?
+Five hundred million
+10
+
+Press Hybrid offspring of the jackass (male ass) and the mare, much used and valued in many parts of the world as a beast of burden?
+Mule
+10
+
+Previous to having their own flag, Canada flew the flag of?
+Britain
+10
+
+Prince Andrew married Sarah Ferguson at Westminster Abbey in what year of the 1980s?
+1986
+10
+
+Prince George of England and his brother, Prince Albert Victor, witnessed this legendary ghost ship in 1881?
+The Flying Dutchman
+10
+
+Princess Ann was the only competitor at the 1976 Montreal Olympics that did not have to undergo a ____ test
+Sex
+10
+
+Princess Anne has appeared on which television quiz show?
+A question of sport
+10
+
+Princess Bride: Domingo Montoya's profession?
+Swordmaker
+10
+
+princess bride: fezzik is played by this big guy?
+Andre the giant
+10
+
+Princess Bride: Life is ____, Highness!
+Pain
+10
+
+princess bride: man with the dead father?
+Montoya
+10
+
+Princess Bride: Montoya's original workplace?
+Greenland
+10
+
+Princess Bride: Number of years that Inigo has searched for Roga?
+Twenty
+10
+
+Princess Bride: Roberts' profession?
+Pirate
+10
+
+Princess Bride: Roga's first name?
+Tyrone
+10
+
+princess bride: the little kid is played by this actor?
+Savage
+10
+
+princess bride: vizzini's homeland?
+Sicily
+10
+
+princess bride: wesley's first profession?
+Farm boy
+10
+
+Princess Victoria, Duchess of Vastergotland, is the heir presumptive to the throne of which European country?
+Sweden
+10
+
+Princeton University is in which state?
+New jersey
+10
+
+Principal artery of the body that carries oxygenated blood to most other arteries in the body?
+Aorta
+10
+
+Prior to 1857, how could a divorce be obtained in England?
+Act of parliament
+10
+
+Prior to 1960, what was the capital of Brazil?
+Rio de janeiro
+10
+
+Prior to 1998 who was the last non-American to win the U.S. Masters golf championship?
+Nick faldo
+10
+
+Prior to David Coulthard this year, who was the last British driver to win the Monaco Grand Prix?
+Jackie stewart
+10
+
+Prior to migration a goose will consume the equivalent of up to ____ percent of its body weight per day, accumulating large amounts of fat
+25
+10
+
+Prior to their 1999 UK number 1 hit 'Maria', which record was Blondie's last number 1 in the UK singles chart?
+The tide is high
+10
+
+Process by what an organism becomes better adapted to exist in an environment different from the one to what it was indigenous?
+Acclimatization
+10
+
+Process by which the body uses sugar for energy?
+Sugar metabolism
+10
+
+Process of heat treatment by what glass & certain metals & alloys are rendered less brittle & more resistant to fracture?
+Annealing
+10
+
+Process of printing developed in 1798 by the German map inspector aloys senefelder?
+Lithography
+10
+
+Produced by the decomposition of dead plants and animals in the mud, ____ gas can often be seen bubbling up from the bottom of ponds.
+Methane
+10
+
+Produced by thomas dolby, which album did joni mitchell release in 1985?
+Dog eat dog
+10
+
+Product of a chicken, come in styles poached, broiled or fried to name a few?
+Egg
+10
+
+Products What was the only nation to register zero births in 1983?
+Vatican City
+10
+
+Profession concerned with vision problems & eye health?
+Optometry
+10
+
+Progressive opacity of eye lens?
+Cataract
+10
+
+Prometheus' brother and pandora's husband?
+Epimetheus
+10
+
+Promise of future benefits e.g. pensions or share options for those who stay with a company?
+Golden handcuffs
+10
+
+Promotion of friendly relations between countries?
+Bridge-building
+10
+
+Property of a fluid that tends to prevent it from flowing when subjected to an applied force?
+Viscosity
+10
+
+Proportional to their weight, men are stronger than____
+Horses
+10
+
+Proposed in 1944, a 'spat' was a unit of distance equal to 1012 metres (ten to the power twelve metres), for use in what science?
+Astronomy
+10
+
+Prosthetics deals with the making of ____
+Artificial limbs
+10
+
+PROVERB: Still waters...?
+Run deep
+10
+
+Proverb: the early bird ____
+Catches the worm
+10
+
+Proverb: two wrongs ____
+Dont make a right
+10
+
+Proverbially, what is rubbed into the wound to make things worse?
+Salt
+10
+
+PROVERBS:A bad workman...?
+Blames his tools
+10
+
+PROVERBS:A barking dog...?
+Never bites
+10
+
+PROVERBS:A blind mans wife needs no...?
+Paint
+10
+
+PROVERBS:Adversity makes...?
+Strange bedfellows
+10
+
+PROVERBS:After dinner rest a while, after supper...?
+Walk a mile
+10
+
+PROVERBS:An army marches...?
+On its stomach
+10
+
+PROVERBS:Appearances are...?
+Deceptive
+10
+
+PROVERBS:April showers bring forth...?
+May flowers
+10
+
+PROVERBS:As you bake, so shall you...?
+Brew
+10
+
+PROVERBS:Bad news...?
+Travels fast
+10
+
+PROVERBS:Beauty is only...?
+Skin deep
+10
+
+PROVERBS:Better to be envied than ____
+Pitied
+10
+
+PROVERBS:Birds of a feather...?
+Flock together
+10
+
+PROVERBS:The bigger they are...?
+The harder they fall
+10
+
+Providence is the capital of what state?
+Rhode island
+10
+
+Prowse What foreign country's phone book is alphabetized by first name?
+Iceland
+10
+
+Psephology comes from the Greek word psephos, which means?
+Pebble
+10
+
+Psephology, the study of elections comes from the greek word psephos meaning what?
+Pebbles
+10
+
+Pseudonyms: 36-inch tall Charles Sherwood was better known as ____
+General tom thumb
+10
+
+Pseudonyms: As who is Vincent Furnier known?
+Alice Cooper
+10
+
+Pseudonyms: Born Ferdinand Joseph La Menthe, claimed he invented jazz?
+Jelly roll morton
+10
+
+Pseudonyms: By what name do we know actor Herbert Charles angelo kuchacevich de schluderpacheru?
+Herbert lom
+10
+
+Pseudonyms: By what name do we know Marion Michael Morrison?
+John wayne
+10
+
+Pseudonyms: By what name is Rose Louise Hovick better known?
+Gypsy Rose Lee
+10
+
+Pseudonyms: By what name is the 16th century painter Domenikos Theotokopoulos better known?
+El greco
+10
+
+Pseudonyms: By which name is Vera Welch better known?
+Vera Lynn
+10
+
+Pseudonyms: By which name was the boxer Walker Smith better known?
+Sugar Ray Robinson
+10
+
+Pseudonyms: comedian John Marwood Cheese?
+John Cleese
+10
+
+Pseudonyms: Edson Arantes do Nascimento?
+Pele
+10
+
+Pseudonyms: hich American writer was born Samuel Langhorne Clemens?
+Mark twain
+10
+
+Pseudonyms: How was Gertrud margarete Zelle better known in wwii?
+Mata hari
+10
+
+Pseudonyms: Punk musician, Simon Ritchie, by what name is he better known?
+Sid Vicious
+10
+
+Pseudonyms: singer Henry John Deutchendorf?
+John Denver
+10
+
+Pseudonyms: singer James Jewel Osterburg?
+Iggy Pop
+10
+
+Pseudonyms: singer Janis Fink?
+Janis Joplin
+10
+
+Pseudonyms: spooky actor William Pratt?
+Boris Karloff
+10
+
+Pseudonyms: Under which name did Nigel John Davies shape the early career of Twiggy?
+Justin de villeneuve
+10
+
+Pseudonyms: Walker Smith?
+Sugar Ray Robinson
+10
+
+Pseudonyms: What is Alice Cooper's real name?
+Vincent Furnier
+10
+
+Pseudonyms: What is Alice Coopers real name?
+Vincent furnier
+10
+
+Pseudonyms: What is Conway Twitty's real name?
+Harold Lloyd Jenkins
+10
+
+Pseudonyms: What is Harold Lloyd Jenkins' stage name?
+Conway Twitty
+10
+
+Pseudonyms: What is the stage name of entertainer Robert Davies?
+Jasper carrot
+10
+
+Pseudonyms: What is Wynonna Judd's real name?
+Christina Clair Ciminella
+10
+
+Pseudonyms: What name is john lyndon better know?
+Johnny rotten
+10
+
+Pseudonyms: Which British actor of Dutch descent was born derek Van den Bogaerd?
+Dirk bogarde
+10
+
+Pseudonyms: Which comedian was born Nathan Birnbaum?
+George burns
+10
+
+Pseudonyms: Which novelist was born Mary Ann Evans?
+George eliot
+10
+
+Pseudonyms: Which Oscar winning actress was born Susan Tomaling in 1946 and is known by her former married name?
+Susan sarandon
+10
+
+Pseudonyms: Which punk star was born John Richie?
+Sid vicious
+10
+
+Pseudonyms: Which singer/actor was born Dino Crocetti in 1917?
+Dean martin
+10
+
+Pseudonyms: Who has written books under the name Barbara Vine?
+P d james
+10
+
+Pseudonyms: Who is Allen Stewart Konigsberg?
+Woody Allen
+10
+
+Pseudonyms: Who is Anne Mae Bullock better known as?
+Tina Turner
+10
+
+Pseudonyms: Who is Christina Claire Ciminella otherwise known as?
+Wynonna Judd
+10
+
+Pseudonyms: Who is Terry Nelhams better known as?
+Adam Faith
+10
+
+Pseudonyms: Who was born Joe Yule?
+Mickey Rooney
+10
+
+Pseudonyms: Who was Vladimir I Ulyanov?
+Lenin
+10
+
+Psychology: Approximately how many dreams does a person have every year?
+1460
+10
+
+Psychology: Of what did Sigmund Freud have a morbid fear?
+Ferns
+10
+
+Psychology: Who wrote 'Sexual Behavior In The Human Male' in 1948?
+Alfred Kinsey
+10
+
+Psychology: With what branch of medicine is Franz Mesmer associated?
+Hypnotism
+10
+
+Published in 1952, The Old Man and the Sea earned which American author the Nobel Prize for literature the following year?
+Ernest Hemingway
+10
+
+Publishing: What actor was the first man to appear on the cover of McCall's in more than 100 years of publication, in July, 1978?
+John Travolta
+10
+
+Puff The Magic Dragon lived in which land?
+Honalee
+10
+
+Pulkovo airport serves which Russian city?
+Leningrad
+10
+
+Pulp, crown and root are parts of a ____
+Tooth
+10
+
+Pulp, crown, & root are parts of a(n) ____
+Tooth
+10
+
+Pungent crystalline substance used in medicine and mothballs?
+Camphor
+10
+
+Punt, coracle and kayaks are all types of what?
+Boat
+10
+
+Purina how often do chimpanzees build new sleeping nests?
+Nightly
+10
+
+Pussycat sings 'i've been crying today, threw my memories away, something died as i cried for my ____'
+Broken souvenirs
+10
+
+Pussycat sings 'you're lost every night and your mommy's worried and your daddy's uptight...'. what's the song title?
+Teenage queenie
+10
+
+Put the 5 vowels in order!?
+AEIOU
+10
+
+Put up your dukes: what boxer was hailed by hitler as a paragon of teutonic manhood?
+Max schmeling
+10
+
+puzzles: a butt holder or trash in pig latin?
+Ashtray
+10
+
+Puzzles: A tangelo is a cross between a tangerine and a?
+Pomelo
+10
+
+puzzles: a tigon mom?
+Lion
+10
+
+puzzles: alive is to parasite as dead is to?
+Saprophyte
+10
+
+Puzzles: C-D+I-L+M-V+X to Caesar?
+Dlvi
+10
+
+puzzles: film is to oscar as mystery novel is to?
+Edgar
+10
+
+Puzzles: Heller's Catch / Number of Confederate States?
+Two
+10
+
+puzzles: what is the acronym for agitatsiya propaganda?
+Agitprop
+10
+
+Puzzles: What is the acronym for fliegerabwehrkanonen?
+Flak
+10
+
+Pyongyang is the capital of ____
+North korea
+10
+
+Pyrotechnics means a display of what?
+Fireworks
+10
+
+Pyrotechnics pertains to what?
+The Art of Fire 
+10
+
+Q is the only letter in the alphabet that does not appear in the name of any of the ____
+United states
+10
+
+QANTAS, the name of the airline, is an acronym for...?
+Queensland and northern territory aerial services
+10
+
+Qms is an acronym for what?
+Queue management system
+10
+
+Quantum Leap: How many degrees does Sam have, including one in ancient languages?
+Six
+10
+
+Quart bottle or vessel for wine?
+Flagon
+10
+
+Quarter pint measure?
+Gill
+10
+
+Quasimodo lived in what church?
+Notre Dame
+10
+
+Quayle-isms:The sitcom Murphy Brown got even with Dan Quayle's insults by mocking his spelling of what word?
+Potato
+10
+
+Quayle-isms:which sitcom was the target of Dan Quayle's criticism?
+Murphy Brown
+10
+
+Quebec and newfoundland are the only two Canadian provinces which do not allow ____
+Personalised licence plates
+10
+
+Queen Berengaria never came to England, although she was married to the King. Which King?
+Richard the first
+10
+
+Queen Elizabeth I passed a law which forced everyone except for the rich to wear a flat cap on?
+Sundays
+10
+
+Queen Victoria lost her husband, Albert, when he was 42. How did he die?
+Typhoid
+10
+
+Queen Victoria was a carrier of which disease that was responsible for the death of her son, Leopold?
+Haemophilia
+10
+
+Queen Victoria was one of the first women ever to use ____ to combat pain during childbirth
+Chloroform
+10
+
+Quercus is the generic name for which tree?
+Oak
+10
+
+Quick !All of the numbers on your keyboard!!?
+1
+10
+
+Quick quick Acronyms: ty?
+Thank you
+10
+
+Quick quick Acronyms: wd?
+Well done
+10
+
+Quick quick Acronyms: yw?
+You're welcome
+10
+
+Quick! Quick! There are ____ seconds in a minute
+Sixty
+10
+
+Quick! Quick!: How is the state of Mississippi spelled?
+Mississippi
+10
+
+Quick! Quick!: Name the circular plastic media you put in a CD-ROM drive?
+Cd
+10
+
+Quick! Quick!: On a standard computer keyboard, this is the letter just to the right of Z?
+X
+10
+
+Quick! Quick!: The longest key on your keyboard is the ____ bar
+Space
+10
+
+Quick! Quick!: The season ____ comes right after Spring
+Summer
+10
+
+Quick! Quick!: There are ____ seconds in a minute
+60
+10
+
+Quick! Quick!: This is required to make all electric things work?
+Electricity
+10
+
+Quick! Quick!: What color is a blue crayon?
+Blue
+10
+
+Quick! Quick!: What color is a green crayon?
+Green
+10
+
+Quick! Quick!: What color is a red crayon?
+Red
+10
+
+Quick! Quick!: What company makes Microsoft Windows 2000?
+Microsoft
+10
+
+Quick! Quick!: Whats radar spelled backwards?
+Radar
+10
+
+Quick! Quick!: Whats the abbreviation for United States of America?
+Usa
+10
+
+Quinine is an alkaloid extract of the bark of the ____ tree
+Cinchona
+10
+
+Quinine is an alkaloid extract of the bark of which tree?
+Cinchona tree
+10
+
+Quinine is obtained from what part of an evergreen tree?
+Dried bark
+10
+
+quite a year for plums_?
+Bailey white
+10
+
+Quito is the capital of ____
+Ecuador
+10
+
+Quotations: 'Do not follow where the path may lead. Go instead where there is no path and leave a trail.'?
+George Bernard Shaw
+10
+
+Quotations: 'Do one thing at a time, and do that one thing as if your life depended on it.'?
+Eugene Grace
+10
+
+Quotations: 'Doctors can bury their mistakes, Architects can only advise their clients to plant vines.'?
+Frank Lloyd Wright
+10
+
+Quotations: He's dead, Jim?
+Mccoy
+10
+
+Quotations: I'll make him an offer, he don't refuse?
+Don vito corleone
+10
+
+Quotations: I'm the only Western reporter here in Baghdad?
+Peter arnett
+10
+
+Quotations: It's almost Funny Five time?
+Dr. demento
+10
+
+Quotations: It's the economy, stupid?
+Carville
+10
+
+Quotations: May the bird of paradise bite you on the bippy?
+Karnak
+10
+
+Quotations: My wife wears a good Republican cloth coat?
+Richard nixon
+10
+
+Quotations: Open channel D?
+Solo
+10
+
+Quotations: You're soaking in it?
+Madge
+10
+
+Quoted from President Bill Clinton?
+I did not have sex with that woman
+10
+
+Quotes: A great many people think they are thinking when they are merely rearranging their prejudices?
+William James 
+10
+
+Quotes: A little inaccuracy saves a world of explanation?
+CE Ayres
+10
+
+Quotes: A stand can be made against invasion by an army; no stand can be made against invasion by an idea?
+Victor Hugo
+10
+
+Quotes: All paid employments absorb and degrade the mind?
+Aristotle
+10
+
+Quotes: Are you now, or have you ever been, a member of the Communist party?
+Joseph mccarthy
+10
+
+Quotes: Arise!Awake! And stop not till the goal is reached?
+Swami vivekananda
+10
+
+Quotes: Dancing is a perpendicular expression of a horizontal desire?
+George bernard shaw
+10
+
+Quotes: Experience enables you to recognize a mistake when you make it again?
+Franklin P Jones
+10
+
+Quotes: Few people know how to be old Who by?
+La rochefoucauld
+10
+
+Quotes: Finish this quote :Its time to vote off?
+The Weakest Link
+10
+
+Quotes: How do I love thee?
+Elizabeth browning
+10
+
+Quotes: I don't want to achieve immortality through my work, I want to achieve it through not dying?
+Woody Allen
+10
+
+Quotes: If you've seen one redwood, you've seen them all?
+Reagan
+10
+
+Quotes: In his private heart no man much respects himself?
+Mark Twain
+10
+
+Quotes: No one ever went broke underestimating the inteligence of the American public?
+P.t.barnum
+10
+
+Quotes: Take the A Train?
+Duke ellington
+10
+
+Quotes: The trouble with being punctual is that nobody's there to appreciate it?
+Franklin P Jones 
+10
+
+Quotes: To my embarrassment I was born in bed with a lady?
+Wilson Mizner
+10
+
+Quotes: Twas the night before Christmas, and all through the house...?
+Moore
+10
+
+Quotes: War is hell?
+William sherman
+10
+
+Quotes: �He means well' is ____ unless he does well. - Plautus
+Useless
+10
+
+QVC, launched in the UK in 1993 by BskyB, what does it stand for?
+Quality,value,convenience
+10
+
+R kelly sings 'if i can see it then i can do it, if i just believe it, there's nothing to it' what's the song title?
+I believe i can fly
+10
+
+Ra is the chemical symbol for which element?
+Radium
+10
+
+Rabbits like ____
+Licorice
+10
+
+Rabbits love this black stuff?
+Licorice
+10
+
+Racehorses have been known to wear out new ____ in one race
+Shoes
+10
+
+Rachael was the wife of ____
+Jacob
+10
+
+Racing who was the second male actor to refuse a best actor oscar?
+Marlon brando
+10
+
+Radar is an example of a ____ word
+Palindromic
+10
+
+Radiation Military operations above the surface of the earth?
+Air warfare
+10
+
+Radical political group responsible for the October Crisis of 1970 (Init.)?
+Flq
+10
+
+Radical Russian marxists are known as?
+Bolsheviks
+10
+
+Radioactive carbon, used for dating fossils?
+Carbon 14
+10
+
+Radioactive hydrogen isotope of atomic mass 3 & symbol 1h3 or t?
+Tritium
+10
+
+Raiders what is the oakland raiders' motto?
+Commitment to excellence
+10
+
+Railings on a balcony are called a...?
+Baulstrade
+10
+
+Railway with two cars connected by a wire cable wound around a drum at the top of a steep hill?
+Funicular railway
+10
+
+Rainfall is measured with a?
+Ombrometer
+10
+
+raison d'etre means?
+Reason for existence
+10
+
+Ralph and Carolyn Cummins had ____ children between 1952 and 1966, all were born on the 20 February
+Five
+10
+
+Ralph Freeman designed which Australian landmark?
+Sydney harbour bridge
+10
+
+Ralph's incompetent dad?
+Chief wiggum
+10
+
+Ramon Mercador assassinated whom?
+Leon trotsky
+10
+
+Ranch what famous building did sir john vanbrugh design?
+Blenheim palace
+10
+
+Rank of a knight between bachelor and baron?
+Banneret
+10
+
+Ranma's father in Ranma 1/2 is transformed into this animal?
+Panda
+10
+
+Rats can swim for a 1/2 mile without resting, and they can tread water for ____ days straight
+Three
+10
+
+Rats multiply so quickly that in 18 months, two rats could have over ____ descendents
+1,000,000
+10
+
+Rats, mice, beavers, and squirrels are all ____
+Rodents
+10
+
+Raw vegetebles served as an hors d'oeuvre are called what?
+Crudites
+10
+
+Ray and Dave Davies were members of what group?
+The kinks
+10
+
+Ray Charles, Stevie Wonder, and Jose Feliciano share what physical characteristic?
+Blindness
+10
+
+Ray saunders built what famous vancouver landmark?
+Gastown steam clock
+10
+
+ray-ban sunglasses sold ____ units worldwide in 1998
+10 million
+10
+
+Reaching number two in the UK charts in 1991, which was the first hit single for Right Said Fred?
+I'm too sexy
+10
+
+Reagan and Nancy Davis What 19th century novelist spent his last days as an inspector at New York's Customs House?
+Herman Melville
+10
+
+Real ____, kept below 55 degrees F, will sweat when brought too quickly to room temperature
+Chocolate
+10
+
+Real gone kid was a top 10 hit for who?
+Deacon blue
+10
+
+Real name of the Supermodel nicknamed The Body?
+Elle Macpherson
+10
+
+Really useless, what is a gibus?
+Collapsible top hat
+10
+
+Reams and quires are units of measure for?
+Paper
+10
+
+Recompense usually for evil done?
+Retribution
+10
+
+Reconnaissance squadron into where does the 53rd weather reconnaissance squadron fly?
+Tropical storms
+10
+
+Recorded Media - Who is the spokesperson for the exercise tapes 'Tae Bo'?
+Billy Blanks
+10
+
+Recycling one glass jar, saves enough energy to watch T.V for ____ hours
+Three
+10
+
+Recycling one glass jar, saves enough energy to watch t.v for ____
+Three hours
+10
+
+Red blood cells are produced in the ____
+Bone marrow
+10
+
+Red means stop, ____ means go
+Green
+10
+
+Reddish-brown colour alluding to hair?
+Auburn
+10
+
+Reeves who produced 'sgt pepper's lonely hearts club band'?
+George martin
+10
+
+Referring of political question to electorate for direct decision by general vote?
+Referendum
+10
+
+Refusal of a group to trade or associate with another group, an individual, an organization, or a nation?
+Boycott
+10
+
+Regional dialect especially in France?
+Patois
+10
+
+Regligion: On which mountain did Moses receive the Ten Commandments?
+Sinai
+10
+
+Regular oval shape?
+Ellipse
+10
+
+Regularly held international conferences of eminent scientists to discuss world problems?
+Pugwash conferences
+10
+
+Rehaven, elberta, desert gold & sunhaven are all varieties of ____
+Peaches
+10
+
+Rejected Authors: Cornhuskers?
+Carl sandburg
+10
+
+Rejected Authors: Lord of the Flies?
+William golding
+10
+
+Rejected Authors: The Good Earth?
+Pearl buck
+10
+
+Rejected Authors: Valley of the Dolls?
+Jacqueline susann
+10
+
+Rejected Authors: Winesburg, Ohio?
+Sherwood anderson
+10
+
+Relating to cookery what are 'lokshen', used in a type of Jewish soup?
+Noodles
+10
+
+Relating to food a Charentais is a variety of what?
+Melon
+10
+
+Relating to food of what is 'lollo biondo' a variety?
+Lettuce
+10
+
+Relating to food what are 'quenelles' type of?
+Dumpling
+10
+
+Relating to food what is 'halloumi'?
+Cypriot cheese
+10
+
+Relating to food what is 'pancetta' a type of?
+Bacon
+10
+
+Relating to food what is another name for 'tamarillo'?
+Tree tomato
+10
+
+Relating to food what is porcini a type of?
+Mushroom
+10
+
+Relating to food what meat is the dish 'saltimbocca' made with?
+Veal
+10
+
+Relating to food, what are 'loquats'?
+Fruit
+10
+
+Relating to food, what is 'Polenta' made from?
+Cornmeal
+10
+
+Relating to or using signals over a range of frequencies?
+Broadband
+10
+
+Relax was a massive hit for which scouse band?
+Frankie goes to hollywood
+10
+
+Religion: A catholic minister is known as a?
+Priest
+10
+
+Religion: According to all four Gospels the precursor of Jesus Christ, born in Judea, the son of the priest Zacharias and Elisabeth, cousin of Mary, the mother of Jesus?
+John the baptist
+10
+
+Religion: According to an old proverb, what is 'the soul of wit'?
+Brevity
+10
+
+Religion: According to genesis 1:20-22, the chicken came before the____
+Egg
+10
+
+Religion: According to Hindu myth, what river once flowed through heaven?
+The ganges
+10
+
+Religion: According to the bible what did god create on the fourth day?
+Land and sea
+10
+
+Religion: According to the Bible, how many pearly gates are there?
+12
+10
+
+Religion: According to the bible, what is the root of all evil?
+-- Answer metadata begin
+{
+    "answers": ["Love of money", "the love of money"]
+}
+-- Answer metadata end
+10
+
+Religion: According to the Bible, what kind of woman had a price above rubies?
+A virtuous woman
+10
+
+Religion: According to the Bible, what substance was used to caulk Noah's ark and to seal the basket in which the infant Moses was set adrift on the Nile?
+Pitch or natural asphalt
+10
+
+Religion: According to the bible, what was man made from?
+Dust
+10
+
+Religion: According to the Bible, what weapons was the Philistine giant Goliath carrying when he was slain by David?
+A sword and a spear
+10
+
+Religion: According to the Buddhist tradition, deceased people who have followed the eightfold path will be freed from the cycle of reincarnation & gain what state of total peace?
+Nirvana
+10
+
+Religion: According to the ceremonial customs of orthodox Judaism, it is officially sundown when you cannot tell the difference between what?
+-- Answer metadata begin
+{
+    "answers": ["A black thread and a red one", "a black and red thread"]
+}
+-- Answer metadata end
+10
+
+Religion: According to the Gospel of Saint John, what 'lay on the other side of the Brook of Cedron'?
+Garden of gethsemane
+10
+
+Religion: According to the Holy Bible, where did Cain go after killing Abel?
+Land of nod
+10
+
+Religion: According to the King James version of the twenty-third psalm, 'yea, though i walk through the valley of the shadow of death, i shall fear no ____'
+Evil
+10
+
+Religion: According to the Muslim calendar, what year began in August 2000?
+1421
+10
+
+Religion: according to the old testament, he planted the first vineyard?
+Noah
+10
+
+Religion: According to the Old Testament, who was the wife of Abraham and mother of Isaac?
+Sarah
+10
+
+Religion: According to the Talmud, who was the first wife of Adam?
+Lilith
+10
+
+Religion: Although not named in the new testament, tradition names the two thieves crucified at the same time as Jesus as?
+Dismas
+10
+
+Religion: Anahita is the persian goddess of ____
+Water, fertility and war
+10
+
+Religion: Animals: To signal the end of the flood which bird brought back a twig to Noah?
+Dove
+10
+
+Religion: Bible: According to the Talmud, what did God do with 7 handfuls of earth brought ot him by the angel Azrael?
+He made adam
+10
+
+Religion: Bible: after cain murdered his brother abel, he 'went out from the presence of the lord, and dwelt in which land?
+Nod
+10
+
+Religion: Bible: after jonah spent time underwater, god sent him here?
+Ninevah
+10
+
+Religion: Bible: Brother of Japheth and Ham?
+Shem
+10
+
+Religion: Bible: David spoke his last words to this person?
+Solomon
+10
+
+Religion: Bible: Doubting apostle?
+Thomas
+10
+
+Religion: Bible: Father of Isaac?
+Abraham
+10
+
+Religion: Bible: From which affliction did the patient Job suffer in the Bible?
+Boils
+10
+
+Religion: Bible: god gave solomon his great wisdom through this?
+Dream
+10
+
+Religion: Bible: Goliath was the champion of which people or tribe?
+Philistines
+10
+
+Religion: Bible: He battled King Og at Edrei?
+Moses
+10
+
+Religion: Bible: how is the decalogue more commonly known?
+Ten commandments
+10
+
+Religion: Bible: How many books of the Bible, generally known as the letters of Paul, are between Romans & Philemon (inclusive)?
+Thirteen
+10
+
+Religion: Bible: How many gospels are there in the bible?
+Four
+10
+
+Religion: Bible: How many people took refuge on Noah's Ark?
+Eight
+10
+
+Religion: Bible: How many suicides are recorded in the bible?
+Seven
+10
+
+Religion: Bible: In the Book of Judges who delivered Israel from the Midianites?
+Gideon
+10
+
+Religion: Bible: In the Hebrew Bible, Judges 16, the Philistine woman who betrays Samson?
+Delilah
+10
+
+Religion: Bible: In the Hebrew Bible, which King of Babylon destroyed Jerusalem?
+Nebuchadnezzar
+10
+
+Religion: Bible: In the Hebrew Bible, who consulted the Witch of Endor?
+King saul
+10
+
+Religion: Bible: In the Hebrew Bible, who was the mighty hunter and son of Cush?
+Nimrod
+10
+
+Religion: Bible: In the Old Testament, from what kind of wood was the Ark of the Covenant made?
+Acacia
+10
+
+Religion: Bible: In the parable of the Good Samaritan, to which city was the Samaritan travelling?
+Jericho
+10
+
+Religion: Bible: In the sermon on the mount who did Jesus warn would appear as wolves in sheeps clothing?
+False prophets
+10
+
+Religion: Bible: In which book is the plague of toads described?
+Exodus
+10
+
+Religion: Bible: in which village did Lazarus live?
+Bethany
+10
+
+Religion: Bible: isaiah and ezekiel foretell this grisly practice?
+Cannibalism
+10
+
+Religion: Bible: name of john the baptist's father?
+Zacharias
+10
+
+Religion: Bible: Name of the Angel who told Mary she was to carry God's son?
+Gabriel
+10
+
+Religion: Bible: noah's ark is supposed to have rested on this mountain after deluge?
+Ararat
+10
+
+Religion: Bible: Second bird to be released from Noahs ark?
+Dove
+10
+
+Religion: Bible: Substance miraculously supplied as food to the Israelites in the wilderness?
+Manna
+10
+
+Religion: Bible: the book of Psalms is attributed to King David, to who is the book of Ecclesiastes attributed?
+Solomon
+10
+
+Religion: Bible: the book of psalms say god has this many chariots?
+20000
+10
+
+Religion: Bible: The brother of Moses, he became the first Jewish high priest?
+Aaron
+10
+
+Religion: Bible: The first five books of the Old testament are together called as?
+Pentateuch
+10
+
+Religion: Bible: The gutsy Razis tossed this at the 500 soldiers send to kill him?
+Intestine
+10
+
+Religion: Bible: The name of Moses' wife?
+Zipporah
+10
+
+Religion: Bible: The name of which book comes form the greek word for origin?
+Genesis
+10
+
+Religion: Bible: the nebuchadnezzar king was of this nation?
+Babylon
+10
+
+Religion: Bible: The slave who became ruler of Babylon because he told a King's dream?
+Daniel
+10
+
+Religion: Bible: The symbol of which apostle is a club, the weapon by which he was killed?
+St jude
+10
+
+Religion: Bible: this part of king saul's belongings was displayed in the temple of dagon?
+His head
+10
+
+Religion: Bible: this person in genesis was raped by his daughters?
+Lot
+10
+
+Religion: Bible: This was Abraham's name before God changed it?
+Abram
+10
+
+Religion: Bible: To what does the adjective diluvial refer?
+The flood
+10
+
+Religion: Bible: To which mountain did Elijah summon Ahab to choose between God and Baal?
+Mount carmel
+10
+
+Religion: Bible: to whom is the book of Lamentations attributed?
+Jeremiah
+10
+
+Religion: Bible: Tower erected by the descendants of Noah (Genesis ii)?
+Babel
+10
+
+Religion: Bible: what did god call the firmament?
+Heaven
+10
+
+Religion: Bible: What instrument did David play?
+Harp
+10
+
+Religion: Bible: What is the fifth book of the New Testament?
+Acts of the Apostles
+10
+
+Religion: Bible: what is the first commandment?
+Thou shalt have no other god before me
+10
+
+Religion: Bible: What is the longest name in the Bible?
+Mahershalalbaz
+10
+
+Religion: Bible: what is the name of the region where Cain went after killing Abel?
+Land of nod
+10
+
+Religion: Bible: what occured on Calvary?
+The Crucifixion of Jesus
+10
+
+Religion: Bible: What took place at Golgotha?
+Christ's crucifixion
+10
+
+Religion: Bible: What was the name given to the chalice used by Christ at the Last Supper and later given to Joseph of Arimathea?
+Holy grail
+10
+
+Religion: Bible: what was the name of the region of natural fertility promised to the Israelites by God?
+Land of milk and honey
+10
+
+Religion: Bible: Which apostle replaced Judas Iscariot?
+St Matthias
+10
+
+Religion: Bible: which book follows the four gospels?
+Acts
+10
+
+Religion: Bible: which chapter immediately follows 1st timothy?
+2nd timothy
+10
+
+Religion: Bible: which city was destroyed on God's command to Joshua and the people of Israel, by walking around it seven times whilst blowing loudly on horns?
+Jericho
+10
+
+Religion: Bible: which city was destroyed on god's command to joshua and the people of israel?
+Jericho
+10
+
+Religion: Bible: Which disciple denied knowing Jesus Christ three times?
+Peter
+10
+
+Religion: Bible: which ethnic group took Samson prisoner in Gaza, resulting in him pushing down the temple of Dagon?
+Philistines
+10
+
+Religion: Bible: which ethnic group took samson prisoner in gaza?
+Philistines
+10
+
+Religion: Bible: Which gospel writer has the lion as his symbol?
+Mark
+10
+
+Religion: Bible: Which idol did the Israelites make when they believed that Moses would not return from Mount Sinai?
+The golden calf
+10
+
+Religion: Bible: Which wife of Ahasuerus of Persia risked her life to save her people from Hamans plot to have them killed?
+Esther
+10
+
+Religion: Bible: who 'went out from the presence of the lord, and dwelt in the land of nod'?
+Cain
+10
+
+Religion: Bible: Who allegedly ordered the slaughter of all the children in Bethlehem?
+King Herod
+10
+
+Religion: Bible: Who annointed Saul and David as Kings of Israel?
+Samuel
+10
+
+Religion: Bible: who authorises the Crucifixion?
+Pontius pilate
+10
+
+Religion: Bible: who built the Golden Calf for the Israelites to worship?
+Aaron
+10
+
+Religion: Bible: Who came from Gath?
+Goliath
+10
+
+Religion: Bible: who cut sampson's hair, taking his strength?
+Delilah
+10
+
+Religion: Bible: who did cain murder?
+Abel
+10
+
+Religion: Bible: who is generally considered responsible for writing most of the Psalms -74 in all?
+King David
+10
+
+Religion: Bible: who is recorded in' Acts' as purchasing a plot of land known as Potter's Field?
+Judas iscariot
+10
+
+Religion: Bible: who is the Book of Proverbs attributed to?
+Solomon
+10
+
+Religion: Bible: who is the Book of Psalms attributed to?
+David
+10
+
+Religion: Bible: who is the sister of lazarus and mary?
+Martha
+10
+
+Religion: Bible: who led 10,000 soldiers into battle against the midianites?
+Gideon
+10
+
+Religion: Bible: who murdered abel?
+Cain
+10
+
+Religion: Bible: who sold his birthright for a mess of potage?
+Esau
+10
+
+Religion: Bible: Who successfully interpreted the Pharoahs dreams?
+Joseph
+10
+
+Religion: Bible: Who tried Jesus and sentenced him to be executed?
+Pontius Pilate
+10
+
+Religion: Bible: who was Abraham's first son?
+Ishmael
+10
+
+Religion: Bible: who was asked to sacrifice his only son?
+Abraham
+10
+
+Religion: Bible: who was credited with killing tens of thousands of the Philistines, when his king was only credited with killing thousands of the Philistines?
+David
+10
+
+Religion: Bible: who was credited with killing tens of thousands of the philistines?
+David
+10
+
+Religion: Bible: Who was King Solomons mother?
+Bathsheba
+10
+
+Religion: Bible: who was responsible for the Hebrew poetry in the book Lamentations?
+Jeremiah
+10
+
+Religion: Bible: who was Sarah's Egyptian servant, the mother of Ishmael?
+Hagar
+10
+
+Religion: Bible: Who was the father of disciples James and John?
+Zebedee
+10
+
+Religion: Bible: who was the mother of Ishmael?
+Hagar
+10
+
+Religion: Bible: who went out from the presence of the Lord, & dwelt in the land of Nod?
+Cain
+10
+
+Religion: Bible: Who were Isaacs two sons?
+Jacob and Esau
+10
+
+Religion: Bible: who wore a coat of many colors?
+Joseph
+10
+
+Religion: Bible: Who wrote The Epistles?
+St Paul
+10
+
+Religion: Bible: who's name was changed to israel?
+Jacob
+10
+
+Religion: Biblical Character: First martyr after the resurrection of Jesus?
+Stephen
+10
+
+Religion: Biblical Character: high priest of israel when samuel was born?
+Eli
+10
+
+Religion: Biblical Character: King of Judah who was wicked before he repented?
+Manasseh
+10
+
+Religion: Biblical Character: married ruth after she followed her mother-in-law into israel?
+Boaz
+10
+
+Religion: Biblical Character: Mother of John the Baptist?
+Elizabeth
+10
+
+Religion: Biblical Character: Non-Jew known to have written part of the New Testament?
+Luke
+10
+
+Religion: Biblical Character: Paul asked him to forgive his runaway slave?
+Philemon
+10
+
+Religion: Biblical Character: the only explorer than joshua who was allowed into the promised land?
+Caleb
+10
+
+Religion: Biblical Character: told peter about jesus?
+Andrew
+10
+
+Religion: Book of the old testament, third of the five biblical books called the pentateuch?
+Leviticus
+10
+
+Religion: Books of the Bible?
+Acts
+10
+
+Religion: Books of the Bible?
+Genesis
+10
+
+Religion: Books of the Bible?
+Peter
+10
+
+Religion: Brahma, Vishnu & Shiva are gods in which religion?
+Hindu
+10
+
+Religion: Buddhism: Zen is the form of Buddhism in which country?
+Japan
+10
+
+Religion: By what name is Siddhartha Gautama better known?
+Buddha
+10
+
+Religion: Cain & Abel were two of the sons of Adam & Eve. Name the third?
+Seth
+10
+
+Religion: China has the largest Buddhist population (107,000,000). Name the countires with the 2nd and 3rd largest Buddhist populations?
+Japan and Thailand
+10
+
+Religion: Christianity has over a billion followers. ____ is next in representation with half this number
+Islam
+10
+
+Religion: Christianity: Festival on January 6th commemorating the visit of the Magi to Christ?
+Epiphany
+10
+
+Religion: Christianity: First preached by arius in the 4th centruy, what term is used for the belief that jesus is not the equal of god?
+Arianism
+10
+
+Religion: Christianity: How long did it take God to create the Universe?
+Six days
+10
+
+Religion: Christianity: How many children did Noah have?
+Three
+10
+
+Religion: Christianity: How many sayings did Jesus say from the cross?
+Seven
+10
+
+Religion: Christianity: How many times did Peter deny Jesus?
+Three
+10
+
+Religion: Christianity: How old was Sarah when she had a child?
+90
+10
+
+Religion: Christianity: Name the three branches of the Methodist church that merged in 1932 to form the current church?
+Wesleyan, primitive, united
+10
+
+Religion: Christianity: On which day was the resurrection of Christ?
+Easter Sunday
+10
+
+Religion: Christianity: What are the first three words of The Bible?
+In the beginning
+10
+
+Religion: Christianity: What two biblical cities did God destroy with fire and brimstone?
+Sodom and Gomorrah
+10
+
+Religion: Christianity: Which two books in the Old Testament list the ten commandments (in order of appearance)?
+Exodus and Deuteronomy
+10
+
+Religion: Christianity: Who killed Goliath?
+David
+10
+
+Religion: Christianity: Who replaced Moses as the prophet of the Israelites?
+Joshua
+10
+
+Religion: Christianity: Whose name did God change to Israel?
+Jacob
+10
+
+Religion: Christians and Muslims believe that Jesus is the?
+Messiah
+10
+
+Religion: Christians that gather in a place called a Meeting House?
+Quakers
+10
+
+Religion: Egyptian and ethiopian christians are called?
+Coptic christians
+10
+
+Religion: Followers of the Unification Church are called ____
+Moonies
+10
+
+Religion: Followers of the unification church are nicknamed ____
+Moonies
+10
+
+Religion: Followers of which religion use prayer wheels?
+Buddhism
+10
+
+Religion: Food & Drink: Bagels are a traditional bread baked by followers of which religion?
+Jewish
+10
+
+Religion: George Fox founded which religious group?
+Quakers
+10
+
+Religion: Guru nanak was the founder of which religion?
+Sikhism
+10
+
+Religion: He led the Israelites out of Egypt?
+Moses
+10
+
+Religion: He led the Mormons to the Great Salt Lake?
+Young
+10
+
+Religion: He was the first King of the Hebrews?
+Saul
+10
+
+Religion: He was the second King of Israel?
+David
+10
+
+Religion: Hinduism: creator of the universe?
+Brahma
+10
+
+Religion: How long did the israelites wander in the desert after the exodus?
+Forty years
+10
+
+Religion: How much time did Jonah spend in the belly of the whale?
+Three days and three nights
+10
+
+Religion: In ancient Egypt which animal was considered sacred?
+Cat
+10
+
+Religion: In China why were kites flown on the ninth day of every month?
+To banish evil
+10
+
+Religion: In Christianity and Judaism, with whom was the first covenant of God?
+Adam & eve
+10
+
+Religion: In the christian calendar, what is the alternative name for the feast of pentecost?
+Whitsun
+10
+
+Religion: In the christian calendar, what is the sunday before easter called?
+Palm sunday
+10
+
+Religion: In the New Testament who was beheaded by Herod at the request of Salome?
+John the baptist
+10
+
+Religion: In the Old Testament, who was Jezebel's husband?
+Ahab, King of Israel
+10
+
+Religion: In the Roman Catholic church, what is a devotion of prayers or services on nine consecutive days called?
+A novena
+10
+
+Religion: In what city does a certain church forbid burping or sneezing?
+Omaha, Nebraska
+10
+
+Religion: In what month is Christmas observed?
+December
+10
+
+Religion: Initiation of Jewish boy at 13?
+Bar mitzvah
+10
+
+Religion: Israel has a Jewish population of 4.8 million people. Which country has more?
+United States
+10
+
+Religion: King Solomon of Israel had about ____ wives as well as hundreds of mistresses
+700
+10
+
+Religion: Mithra is the persian god of ____
+Light
+10
+
+Religion: Muslim religion?
+Islam
+10
+
+Religion: Muslims fast during this month?
+Ramadan
+10
+
+Religion: Name of an ancient persian religion?
+Zoroastrianism
+10
+
+Religion: Name the Apostle who replaced Judas?
+Matthias
+10
+
+Religion: Name the holiest day in the Jewish calendar?
+Yom kippur
+10
+
+Religion: Name the last book of The Old Testament?
+Malachi
+10
+
+Religion: Name the two books of the Bible named after women.?
+Ruth and Esther
+10
+
+Religion: Nepal has a Hindu population of 21.3 million. Which country has more, at 824 million?
+India
+10
+
+Religion: Of the 266 popes, how many died violently?
+33
+10
+
+Religion: On which mountain did Moses receive the Ten Commandments?
+Sinai
+10
+
+Religion: Patron Saints: In 461 St Patrick - the patron saint of ____ - died in Saul
+Ireland
+10
+
+Religion: Patron Saints: Many female children are named 'friday' after which patron saint of oxford?
+St frideswide
+10
+
+Religion: Patron Saints: Saint vladimir is the patron saint of what country?
+Russia
+10
+
+Religion: Patron Saints: St bernard the patron saint of ____
+Skiers
+10
+
+Religion: Patron Saints: St christopher the patron saint ____
+Travellers
+10
+
+Religion: Patron Saints: St Frideswide the patron saint ____
+Oxford
+10
+
+Religion: Patron Saints: St george is the patron saint of England and which other country?
+Portugal
+10
+
+Religion: Patron Saints: St lucia and st vincent belong to which group of islands?
+Windward islands
+10
+
+Religion: Patron Saints: St nicholas is the patron saint of ____
+Children
+10
+
+Religion: Patron Saints: St patrick the patron saint of ____
+Ireland
+10
+
+Religion: Patron Saints: St Patrick, the patron saint of Ireland, was not?
+Irish
+10
+
+Religion: Patron Saints: St Vincent of Saragossa is the patron saint of what?
+Vineyards
+10
+
+Religion: Patron Saints: St. Bernard the patron saint of ____
+Skiers
+10
+
+Religion: Patron Saints: St. Christopher the patron saint of ____
+Travellers
+10
+
+Religion: Patron Saints: Who is the patron saint of children?
+St nicholas
+10
+
+Religion: Patron Saints: Who is the patron saint of domestic missions?
+St francis
+10
+
+Religion: Patron Saints: Who is the patron saint of domestic missions?
+St theresa
+10
+
+Religion: Patron Saints: Who is the patron saint of England?
+St george
+10
+
+Religion: Patron Saints: Who is the patron saint of foreign missions?
+St francis
+10
+
+Religion: Patron Saints: Who is the patron saint of hopeless causes?
+St jude
+10
+
+Religion: Patron Saints: Who is the patron saint of hospitals?
+St camillus
+10
+
+Religion: Patron Saints: Who is the patron saint of housekeepers?
+St anne
+10
+
+Religion: Patron Saints: Who is the patron saint of housewives?
+St anne
+10
+
+Religion: Patron Saints: Who is the patron saint of Hungary?
+Miraculous
+10
+
+Religion: Patron Saints: Who is the patron saint of hunters?
+St hubert
+10
+
+Religion: Patron Saints: Who is the patron saint of immigrants?
+St francis
+10
+
+Religion: Patron Saints: Who is the patron saint of impenitence?
+St barbara
+10
+
+Religion: Patron Saints: Who is the patron saint of impossible Situations?
+St jude
+10
+
+Religion: Patron Saints: Who is the patron saint of insanity?
+St dymphna
+10
+
+Religion: Patron Saints: Who is the patron saint of invalids?
+St roque
+10
+
+Religion: Patron Saints: Who is the patron saint of Ireland?
+St patrick
+10
+
+Religion: Patron Saints: Who is the patron saint of iron workers?
+St sebastian
+10
+
+Religion: Patron Saints: Who is the patron saint of jewelers?
+St luke
+10
+
+Religion: Patron Saints: Who is the patron saint of journalists?
+St francis de sales
+10
+
+Religion: Patron Saints: Who is the patron saint of judges?
+St ives
+10
+
+Religion: Patron Saints: Who is the patron saint of knowledge holy?
+Holy spirit
+10
+
+Religion: Patron Saints: Who is the patron saint of laborers?
+St james
+10
+
+Religion: Patron Saints: Who is the patron saint of lace makers?
+Our lady of loretto
+10
+
+Religion: Patron Saints: Who is the patron saint of latin America?
+St rose of lima
+10
+
+Religion: Patron Saints: Who is the patron saint of lawyers?
+St genesius
+10
+
+Religion: Patron Saints: Who is the patron saint of lawyers?
+St ives
+10
+
+Religion: Patron Saints: Who is the patron saint of lawyers?
+St thomas more
+10
+
+Religion: Patron Saints: Who is the patron saint of lead workers?
+St sebastian
+10
+
+Religion: Patron Saints: Who is the patron saint of leather workers?
+St catherine
+10
+
+Religion: Patron Saints: Who is the patron saint of lepers?
+St vincent de Paul
+10
+
+Religion: Patron Saints: Who is the patron saint of librarians?
+Saint jerome
+10
+
+Religion: Patron Saints: Who is the patron saint of lightning?
+St barbara
+10
+
+Religion: Patron Saints: Who is the patron saint of lithographers?
+St john the evangelist
+10
+
+Religion: Patron Saints: Who is the patron saint of loneliness?
+St rita
+10
+
+Religion: Patron Saints: Who is the patron saint of long life?
+St kevin
+10
+
+Religion: Patron Saints: Who is the patron saint of long life?
+St peter
+10
+
+Religion: Patron Saints: Who is the patron saint of lost articles?
+St anthony
+10
+
+Religion: Patron Saints: Who is the patron saint of lovers?
+St raphael
+10
+
+Religion: Patron Saints: Who is the patron saint of lumbago?
+St lawrence
+10
+
+Religion: Patron Saints: Who is the patron saint of machinists?
+St hubert
+10
+
+Religion: Patron Saints: Who is the patron saint of mariners?
+St brendan
+10
+
+Religion: Patron Saints: Who is the patron saint of mariners?
+St michael
+10
+
+Religion: Patron Saints: Who is the patron saint of mariners?
+Star of the sea
+10
+
+Religion: Patron Saints: Who is the patron saint of married couples?
+St joseph
+10
+
+Religion: Patron Saints: Who is the patron saint of masons?
+St peter
+10
+
+Religion: Patron Saints: Who is the patron saint of mass servers?
+St john berchman
+10
+
+Religion: Patron Saints: Who is the patron saint of mathematicians?
+St hubert
+10
+
+Religion: Patron Saints: Who is the patron saint of medical records librarian?
+St raymond
+10
+
+Religion: Patron Saints: Who is the patron saint of medical technicians?
+St albert
+10
+
+Religion: Patron Saints: Who is the patron saint of medical technologists?
+St albert
+10
+
+Religion: Patron Saints: Who is the patron saint of mental illness?
+St dymphna
+10
+
+Religion: Patron Saints: Who is the patron saint of merchants?
+St francis of assisi
+10
+
+Religion: Patron Saints: Who is the patron saint of miners?
+St barbara
+10
+
+Religion: Patron Saints: Who is the patron saint of missioners?
+St francis
+10
+
+Religion: Patron Saints: Who is the patron saint of monastics?
+St benedict
+10
+
+Religion: Patron Saints: Who is the patron saint of monks?
+St benedict
+10
+
+Religion: Patron Saints: Who is the patron saint of montebanks?
+St genesius
+10
+
+Religion: Patron Saints: Who is the patron saint of mothers?
+St anne
+10
+
+Religion: Patron Saints: Who is the patron saint of mothers?
+St gerard
+10
+
+Religion: Patron Saints: Who is the patron saint of motorcyclists?
+Miraculous
+10
+
+Religion: Patron Saints: Who is the patron saint of motorists?
+St christopher
+10
+
+Religion: Patron Saints: Who is the patron saint of mountain?
+St bernard
+10
+
+Religion: Patron Saints: Who is the patron saint of musicians?
+St Cecile
+10
+
+Religion: Patron Saints: Who is the patron saint of navigators?
+St brendan
+10
+
+Religion: Patron Saints: Who is the patron saint of navigators?
+Star of the sea
+10
+
+Religion: Patron Saints: Who is the patron saint of needle workers?
+St francis of assisi
+10
+
+Religion: Patron Saints: Who is the patron saint of nerves?
+St dymphna
+10
+
+Religion: Patron Saints: Who is the patron saint of net makers?
+St peter
+10
+
+Religion: Patron Saints: Who is the patron saint of never failing hope?
+Our lady of perpetual help
+10
+
+Religion: Patron Saints: Who is the patron saint of New Zealand?
+St francis
+10
+
+Religion: Patron Saints: Who is the patron saint of norway?
+Olaf
+10
+
+Religion: Patron Saints: Who is the patron saint of notaries?
+St ives
+10
+
+Religion: Patron Saints: Who is the patron saint of notaries?
+St luke
+10
+
+Religion: Patron Saints: Who is the patron saint of notaries?
+St mark
+10
+
+Religion: Patron Saints: Who is the patron saint of nurses?
+St camillus
+10
+
+Religion: Patron Saints: Who is the patron saint of nurses?
+St raphael
+10
+
+Religion: Patron Saints: Who is the patron saint of nursing services?
+St elizabeth
+10
+
+Religion: Patron Saints: Who is the patron saint of obstetricians?
+St raymond
+10
+
+Religion: Patron Saints: Who is the patron saint of organ makers?
+St genesius
+10
+
+Religion: Patron Saints: Who is the patron saint of orphans?
+St louise
+10
+
+Religion: Patron Saints: Who is the Patron Saint of painters?
+Saint luke
+10
+
+Religion: Patron Saints: Who is the patron saint of painters?
+St luke
+10
+
+Religion: Patron Saints: Who is the patron saint of paper makers?
+St john the evangelist
+10
+
+Religion: Patron Saints: Who is the patron saint of paratroopers?
+St michael
+10
+
+Religion: Patron Saints: Who is the patron saint of parish priests?
+St john vianney
+10
+
+Religion: Patron Saints: Who is the patron saint of pawn brokers?
+St nicholas
+10
+
+Religion: Patron Saints: Who is the patron saint of peasants?
+St lucy
+10
+
+Religion: Patron Saints: Who is the patron saint of peddlers?
+St lucy
+10
+
+Religion: Patron Saints: Who is the patron saint of pencil makers?
+St thomas aquinas
+10
+
+Religion: Patron Saints: Who is the patron saint of peril at sea?
+St michael
+10
+
+Religion: Patron Saints: Who is the patron saint of Peru?
+St joseph
+10
+
+Religion: Patron Saints: Who is the patron saint of pharmacists?
+St cosmas
+10
+
+Religion: Patron Saints: Who is the patron saint of Philippines?
+St rose of lima
+10
+
+Religion: Patron Saints: Who is the patron saint of philosophers?
+St catherine
+10
+
+Religion: Patron Saints: Who is the patron saint of physicians?
+St luke
+10
+
+Religion: Patron Saints: Who is the patron saint of physicians?
+Sts. cosmas & damian
+10
+
+Religion: Patron Saints: Who is the patron saint of piety?
+Holy spirit
+10
+
+Religion: Patron Saints: Who is the patron saint of pilgrims?
+St james
+10
+
+Religion: Patron Saints: Who is the patron saint of pioneers?
+St joseph
+10
+
+Religion: Patron Saints: Who is the patron saint of plague patients?
+St sebastian
+10
+
+Religion: Patron Saints: Who is the patron saint of plague?
+St roque
+10
+
+Religion: Patron Saints: Who is the patron saint of poisoning?
+St benedict
+10
+
+Religion: Patron Saints: Who is the patron saint of police officers?
+St michael
+10
+
+Religion: Patron Saints: Who is the patron saint of poor?
+St anthony
+10
+
+Religion: Patron Saints: Who is the patron saint of poor?
+St lawrence
+10
+
+Religion: Patron Saints: Who is the patron saint of poor?
+St martin de porres
+10
+
+Religion: Patron Saints: Who is the patron saint of porters?
+St christopher
+10
+
+Religion: Patron Saints: Who is the patron saint of Portugal?
+Miraculous
+10
+
+Religion: Patron Saints: Who is the patron saint of potters?
+St sebastian
+10
+
+Religion: Patron Saints: Who is the patron saint of pregnant women?
+St gerard
+10
+
+Religion: Patron Saints: Who is the patron saint of press?
+St francis de sales
+10
+
+Religion: Patron Saints: Who is the patron saint of press?
+St Paul
+10
+
+Religion: Patron Saints: Who is the patron saint of priests?
+St john vianney
+10
+
+Religion: Patron Saints: Who is the patron saint of prisoners?
+St vincent de Paul
+10
+
+Religion: Patron Saints: Who is the patron saint of prophecy?
+St daniel
+10
+
+Religion: Patron Saints: Who is the patron saint of prostitutes?
+Mary magdalene
+10
+
+Religion: Patron Saints: Who is the patron saint of public relations hospitals?
+St Paul
+10
+
+Religion: Patron Saints: Who is the patron saint of publishers?
+St john the evangelist
+10
+
+Religion: Patron Saints: Who is the patron saint of publishers?
+St Paul
+10
+
+Religion: Patron Saints: Who is the patron saint of racquet makers?
+St sebastian
+10
+
+Religion: Patron Saints: Who is the patron saint of radiologists?
+St michael
+10
+
+Religion: Patron Saints: Who is the patron saint of rape victims?
+St dymphna
+10
+
+Religion: Patron Saints: Who is the patron saint of rheumatism?
+St james
+10
+
+Religion: Patron Saints: Who is the patron saint of runaways?
+St dymphna
+10
+
+Religion: Patron Saints: Who is the patron saint of Russia?
+St andrew
+10
+
+Religion: Patron Saints: Who is the patron saint of Russia?
+St nicholas
+10
+
+Religion: Patron Saints: Who is the patron saint of saddlers?
+St lucy
+10
+
+Religion: Patron Saints: Who is the patron saint of safe journey?
+St raphael
+10
+
+Religion: Patron Saints: Who is the patron saint of sailors?
+St brendan
+10
+
+Religion: Patron Saints: Who is the patron saint of sailors?
+St michael
+10
+
+Religion: Patron Saints: Who is the patron saint of sailors?
+Star of the sea
+10
+
+Religion: Patron Saints: Who is the patron saint of salespeople?
+St lucy
+10
+
+Religion: Patron Saints: Who is the patron saint of scholars?
+St thomas aquinas
+10
+
+Religion: Patron Saints: Who is the patron saint of school student?
+St thomas aquinas
+10
+
+Religion: Patron Saints: Who is the patron saint of schools?
+St thomas aquinas
+10
+
+Religion: Patron Saints: Who is the patron saint of scientists?
+St albert
+10
+
+Religion: Patron Saints: Who is the patron saint of Scotland?
+St andrew
+10
+
+Religion: Patron Saints: Who is the patron saint of scribes?
+St catherine
+10
+
+Religion: Patron Saints: Who is the patron saint of sculptors?
+St luke
+10
+
+Religion: Patron Saints: Who is the patron saint of seafarers?
+St brendan
+10
+
+Religion: Patron Saints: Who is the patron saint of seafarers?
+St michael
+10
+
+Religion: Patron Saints: Who is the patron saint of secretaries?
+St catherine
+10
+
+Religion: Patron Saints: Who is the patron saint of secretaries?
+St genesius
+10
+
+Religion: Patron Saints: Who is the patron saint of secular priests?
+St john vianney
+10
+
+Religion: Patron Saints: Who is the patron saint of seminarians?
+St Charles borromeo
+10
+
+Religion: Patron Saints: Who is the patron saint of servicewomen?
+St joan of arc
+10
+
+Religion: Patron Saints: Who is the patron saint of sheep raisers?
+St raphael
+10
+
+Religion: Patron Saints: Who is the patron saint of ship builders?
+St peter
+10
+
+Religion: Patron Saints: Who is the patron saint of shoemakers?
+St crispin
+10
+
+Religion: Patron Saints: Who is the patron saint of Sicily?
+St nicholas
+10
+
+Religion: Patron Saints: Who is the patron saint of sick poor?
+St martin de porres
+10
+
+Religion: Patron Saints: Who is the patron saint of sick?
+St camillus
+10
+
+Religion: Patron Saints: Who is the patron saint of sickness?
+St camillus
+10
+
+Religion: Patron Saints: Who is the patron saint of singers?
+St gregory
+10
+
+Religion: Patron Saints: Who is the patron saint of single women?
+St andrew
+10
+
+Religion: Patron Saints: Who is the patron saint of skiers?
+St bernard
+10
+
+Religion: Patron Saints: Who is the patron saint of skiers?
+St. Bernard
+10
+
+Religion: Patron Saints: Who is the patron saint of skin diseases?
+St peregrine
+10
+
+Religion: Patron Saints: Who is the patron saint of snake bite?
+St patrick
+10
+
+Religion: Patron Saints: Who is the patron saint of soldiers?
+St george
+10
+
+Religion: Patron Saints: Who is the patron saint of soldiers?
+St joan of arc
+10
+
+Religion: Patron Saints: Who is the patron saint of solitary death?
+St francis of assisi
+10
+
+Religion: Patron Saints: Who is the patron saint of South America?
+St rose of lima
+10
+
+Religion: Patron Saints: Who is the patron saint of speleologists?
+St benedict
+10
+
+Religion: Patron Saints: Who is the patron saint of spiritual directors?
+St Charles borromeo
+10
+
+Religion: Patron Saints: Who is the patron saint of spiritual help?
+St vincent de Paul
+10
+
+Religion: Patron Saints: Who is the patron saint of stained glass workers?
+St mark
+10
+
+Religion: Patron Saints: Who is the patron saint of stationers?
+St peter
+10
+
+Religion: Patron Saints: Who is the patron saint of stenographers?
+St catherine
+10
+
+Religion: Patron Saints: Who is the patron saint of stepparents?
+St thomas more
+10
+
+Religion: Patron Saints: Who is the patron saint of stockbrokers?
+St matthew
+10
+
+Religion: Patron Saints: Who is the patron saint of stomach trouble?
+St Charles borromeo
+10
+
+Religion: Patron Saints: Who is the patron saint of stomach trouble?
+St timothy
+10
+
+Religion: Patron Saints: Who is the patron saint of stone masons?
+St barbara
+10
+
+Religion: Patron Saints: Who is the patron saint of stone masons?
+St sebastian
+10
+
+Religion: Patron Saints: Who is the patron saint of stone workers?
+St stephen
+10
+
+Religion: Patron Saints: Who is the patron saint of storms?
+St barbara
+10
+
+Religion: Patron Saints: Who is the patron saint of sudden death?
+St barbara
+10
+
+Religion: Patron Saints: Who is the patron saint of surgeons?
+St luke
+10
+
+Religion: Patron Saints: Who is the patron saint of surgeons?
+Sts. cosmas & damian
+10
+
+Religion: Patron Saints: Who is the patron saint of swans?
+St sebastian
+10
+
+Religion: Patron Saints: Who is the patron saint of Switzerland?
+St nicholas
+10
+
+Religion: Patron Saints: Who is the patron saint of tanners?
+St james
+10
+
+Religion: Patron Saints: Who is the patron saint of tax collectors?
+St matthew
+10
+
+Religion: Patron Saints: Who is the patron saint of teachers?
+St francis de sales
+10
+
+Religion: Patron Saints: Who is the patron saint of television?
+Saint claire
+10
+
+Religion: Patron Saints: Who is the patron saint of temptation?
+St michael
+10
+
+Religion: Patron Saints: Who is the patron saint of tertiaries?
+St elizabeth
+10
+
+Religion: Patron Saints: Who is the patron saint of theologians?
+St thomas aquinas
+10
+
+Religion: Patron Saints: Who is the patron saint of throat?
+St cecile
+10
+
+Religion: Patron Saints: Who is the patron saint of tongue?
+St catherine
+10
+
+Religion: Patron Saints: Who is the patron saint of toothache?
+St patrick
+10
+
+Religion: Patron Saints: Who is the patron saint of travel?
+St christopher
+10
+
+Religion: Patron Saints: Who is the patron saint of travel?
+St Paul
+10
+
+Religion: Patron Saints: Who is the patron saint of travelers?
+St christopher
+10
+
+Religion: Patron Saints: Who is the patron saint of travellers?
+St christopher
+10
+
+Religion: Patron Saints: Who is the patron saint of truck drivers?
+St christopher
+10
+
+Religion: Patron Saints: Who is the patron saint of tuberculosis?
+St theresa
+10
+
+Religion: Patron Saints: Who is the patron saint of tumors?
+St rita
+10
+
+Religion: Patron Saints: Who is the patron saint of ulcers?
+St Charles borromeo
+10
+
+Religion: Patron Saints: Who is the patron saint of understanding?
+Holy spirit
+10
+
+Religion: Patron Saints: Who is the patron saint of United States?
+Miraculous
+10
+
+Religion: Patron Saints: Who is the patron saint of universal church?
+St joseph
+10
+
+Religion: Patron Saints: Who is the patron saint of vanity?
+St rose of lima
+10
+
+Religion: Patron Saints: Who is the patron saint of veterinarians?
+St james
+10
+
+Religion: Patron Saints: Who is the patron saint of virgins?
+Miraculous
+10
+
+Religion: Patron Saints: Who is the patron saint of virgins?
+St joan of arc
+10
+
+Religion: Patron Saints: Who is the patron saint of vocalists?
+St cecile
+10
+
+Religion: Patron Saints: Who is the patron saint of Wales?
+St. David
+10
+
+Religion: Patron Saints: Who is the patron saint of warehouses?
+St barbara
+10
+
+Religion: Patron Saints: Who is the patron saint of widowers?
+St thomas more
+10
+
+Religion: Patron Saints: Who is the patron saint of widows?
+St elizabeth ann seton
+10
+
+Religion: Patron Saints: Who is the patron saint of widows?
+St louise
+10
+
+Religion: Patron Saints: Who is the patron saint of winemakers?
+St francis
+10
+
+Religion: Patron Saints: Who is the patron saint of wisdom?
+Holy spirit
+10
+
+Religion: Patron Saints: Who is the patron saint of wolves?
+St peter
+10
+
+Religion: Patron Saints: Who is the patron saint of women in labor?
+St anne
+10
+
+Religion: Patron Saints: Who is the patron saint of workers?
+St joseph
+10
+
+Religion: Patron Saints: Who is the patron saint of writers?
+St francis de sales
+10
+
+Religion: Patron Saints: Who is the patron saint of writers?
+St Paul
+10
+
+Religion: Patron Saints: Who is the patron saint of yachtsmen?
+St brendan
+10
+
+Religion: Patron Saints: Who is the patron saint of yachtsmen?
+Star of the sea
+10
+
+Religion: Patron Saints: Who is the patron saint of youth?
+St john berchman
+10
+
+Religion: Patron Saints: Who lived at 1313 mockingbird lane?
+The munsters
+10
+
+Religion: Patron Saints: Whose patron is St Albert?
+Scientists
+10
+
+Religion: Patron Saints: Whose patron is St Andrew?
+Russia
+10
+
+Religion: Patron Saints: Whose patron is St Andrew?
+Scotland
+10
+
+Religion: Patron Saints: Whose patron is St Andrew?
+Single Women
+10
+
+Religion: Patron Saints: Whose patron is St Anne?
+Women In Labor
+10
+
+Religion: Patron Saints: Whose patron is St Anthony?
+Amputees
+10
+
+Religion: Patron Saints: Whose patron is St Anthony?
+Poor
+10
+
+Religion: Patron Saints: Whose patron is St Barbara?
+Ammunition workers
+10
+
+Religion: Patron Saints: Whose patron is St Barbara?
+Architects
+10
+
+Religion: Patron Saints: Whose patron is St Barbara?
+Artillery
+10
+
+Religion: Patron Saints: Whose patron is St Barbara?
+Stone Masons
+10
+
+Religion: Patron Saints: Whose patron is St Barbara?
+Storms
+10
+
+Religion: Patron Saints: Whose patron is St Barbara?
+Sudden Death
+10
+
+Religion: Patron Saints: Whose patron is St Barbara?
+Warehouses
+10
+
+Religion: Patron Saints: Whose patron is St Benedict?
+Poisoning
+10
+
+Religion: Patron Saints: Whose patron is St Benedict?
+Speleologists
+10
+
+Religion: Patron Saints: Whose patron is St Bernard?
+Alpinists
+10
+
+Religion: Patron Saints: Whose patron is St Bernard?
+Skiers
+10
+
+Religion: Patron Saints: Whose patron is St Brendan?
+Sailors
+10
+
+Religion: Patron Saints: Whose patron is St Brendan?
+Seafarers
+10
+
+Religion: Patron Saints: Whose patron is St Camillus?
+Sick
+10
+
+Religion: Patron Saints: Whose patron is St Camillus?
+Sickness
+10
+
+Religion: Patron Saints: Whose patron is St Catherine?
+Artists
+10
+
+Religion: Patron Saints: Whose patron is St Catherine?
+Scribes
+10
+
+Religion: Patron Saints: Whose patron is St Catherine?
+Secretaries
+10
+
+Religion: Patron Saints: Whose patron is St Catherine?
+Stenographers
+10
+
+Religion: Patron Saints: Whose patron is St Catherine?
+Tongue
+10
+
+Religion: Patron Saints: Whose patron is St Cecile?
+Throat
+10
+
+Religion: Patron Saints: Whose patron is St Cecile?
+Vocalists
+10
+
+Religion: Patron Saints: Whose patron is St Charles Borromeo?
+Apple orchards
+10
+
+Religion: Patron Saints: Whose patron is St Charles Borromeo?
+Seminarians
+10
+
+Religion: Patron Saints: Whose patron is St Charles Borromeo?
+Spiritual Directors
+10
+
+Religion: Patron Saints: Whose patron is St Charles Borromeo?
+Stomach Trouble
+10
+
+Religion: Patron Saints: Whose patron is St Charles Borromeo?
+Ulcers
+10
+
+Religion: Patron Saints: Whose patron is St Christopher?
+Porters
+10
+
+Religion: Patron Saints: Whose patron is St Christopher?
+Travel
+10
+
+Religion: Patron Saints: Whose patron is St Christopher?
+Travelers
+10
+
+Religion: Patron Saints: Whose patron is St Christopher?
+Truck Drivers
+10
+
+Religion: Patron Saints: Whose patron is St Daniel?
+Prophecy
+10
+
+Religion: Patron Saints: Whose patron is St David?
+Wales
+10
+
+Religion: Patron Saints: Whose patron is St Dominic?
+Astronomers
+10
+
+Religion: Patron Saints: Whose patron is St Dymphna?
+Rape Victims
+10
+
+Religion: Patron Saints: Whose patron is St Dymphna?
+Runaways
+10
+
+Religion: Patron Saints: Whose patron is St Elizabeth Ann Seton?
+Widows
+10
+
+Religion: Patron Saints: Whose patron is St Elizabeth?
+Tertiaries
+10
+
+Religion: Patron Saints: Whose patron is St Francis de Sales?
+Authors
+10
+
+Religion: Patron Saints: Whose patron is St Francis de Sales?
+Press
+10
+
+Religion: Patron Saints: Whose patron is St Francis de Sales?
+Teachers
+10
+
+Religion: Patron Saints: Whose patron is St Francis de Sales?
+Writers
+10
+
+Religion: Patron Saints: Whose patron is St Francis of Assisi?
+Animals
+10
+
+Religion: Patron Saints: Whose patron is St Francis of Assisi?
+Solitary Death
+10
+
+Religion: Patron Saints: Whose patron is St Francis Xavier?
+Apostleship of payer
+10
+
+Religion: Patron Saints: Whose patron is St Francis Xavier?
+Australia
+10
+
+Religion: Patron Saints: Whose patron is St Francis Xavier?
+Winemakers
+10
+
+Religion: Patron Saints: Whose patron is St Genesius?
+Actors
+10
+
+Religion: Patron Saints: Whose patron is St Genesius?
+Secretaries
+10
+
+Religion: Patron Saints: Whose patron is St George?
+Soldiers
+10
+
+Religion: Patron Saints: Whose patron is St Gerard?
+Pregnant Women
+10
+
+Religion: Patron Saints: Whose patron is St Gregory?
+Singers
+10
+
+Religion: Patron Saints: Whose patron is St Helen?
+Archaeologists
+10
+
+Religion: Patron Saints: Whose patron is St Ives?
+Advocates
+10
+
+Religion: Patron Saints: Whose patron is St James?
+Arthritis
+10
+
+Religion: Patron Saints: Whose patron is St James?
+Pilgrims
+10
+
+Religion: Patron Saints: Whose patron is St James?
+Rheumatism
+10
+
+Religion: Patron Saints: Whose patron is St James?
+Tanners
+10
+
+Religion: Patron Saints: Whose patron is St James?
+Veterinarians
+10
+
+Religion: Patron Saints: Whose patron is St Joan of Arc?
+Servicewomen
+10
+
+Religion: Patron Saints: Whose patron is St Joan of Arc?
+Soldiers
+10
+
+Religion: Patron Saints: Whose patron is St Joan of Arc?
+Virgins
+10
+
+Religion: Patron Saints: Whose patron is St John Berchman?
+Altar servers
+10
+
+Religion: Patron Saints: Whose patron is St John Berchman?
+Youth
+10
+
+Religion: Patron Saints: Whose patron is St John the Evangelist?
+Art dealers
+10
+
+Religion: Patron Saints: Whose patron is St John the Evangelist?
+Asia minor
+10
+
+Religion: Patron Saints: Whose patron is St John the Evangelist?
+Publishers
+10
+
+Religion: Patron Saints: Whose patron is St John Vianney?
+Priests
+10
+
+Religion: Patron Saints: Whose patron is St John Vianney?
+Secular Priests
+10
+
+Religion: Patron Saints: Whose patron is St Joseph?
+Pioneers
+10
+
+Religion: Patron Saints: Whose patron is St Joseph?
+Universal Church
+10
+
+Religion: Patron Saints: Whose patron is St Joseph?
+Workers
+10
+
+Religion: Patron Saints: Whose patron is St Lawrence?
+Poor
+10
+
+Religion: Patron Saints: Whose patron is St Louise?
+Widows
+10
+
+Religion: Patron Saints: Whose patron is St Lucy?
+Saddlers
+10
+
+Religion: Patron Saints: Whose patron is St Lucy?
+Salespeople
+10
+
+Religion: Patron Saints: Whose patron is St Luke?
+Artists
+10
+
+Religion: Patron Saints: Whose patron is St Luke?
+Sculptors
+10
+
+Religion: Patron Saints: Whose patron is St Luke?
+Surgeons
+10
+
+Religion: Patron Saints: Whose patron is St Mark?
+Stained Glass Workers
+10
+
+Religion: Patron Saints: Whose patron is St Matthew?
+Stockbrokers
+10
+
+Religion: Patron Saints: Whose patron is St Matthew?
+Tax Collectors
+10
+
+Religion: Patron Saints: Whose patron is St Michael?
+Police Officers
+10
+
+Religion: Patron Saints: Whose patron is St Michael?
+Radiologists
+10
+
+Religion: Patron Saints: Whose patron is St Michael?
+Sailors
+10
+
+Religion: Patron Saints: Whose patron is St Michael?
+Seafarers
+10
+
+Religion: Patron Saints: Whose patron is St Michael?
+Temptation
+10
+
+Religion: Patron Saints: Whose patron is St Miraculous?
+Portugal
+10
+
+Religion: Patron Saints: Whose patron is St Nicholas?
+Russia
+10
+
+Religion: Patron Saints: Whose patron is St Nicholas?
+Sicily
+10
+
+Religion: Patron Saints: Whose patron is St Nicholas?
+Switzerland
+10
+
+Religion: Patron Saints: Whose patron is St Patrick?
+Snake Bite
+10
+
+Religion: Patron Saints: Whose patron is St Patrick?
+Toothache
+10
+
+Religion: Patron Saints: Whose patron is St Paul?
+Authors
+10
+
+Religion: Patron Saints: Whose patron is St Paul?
+Press
+10
+
+Religion: Patron Saints: Whose patron is St Paul?
+Public Relations Hospitals
+10
+
+Religion: Patron Saints: Whose patron is St Paul?
+Publishers
+10
+
+Religion: Patron Saints: Whose patron is St Paul?
+Travel
+10
+
+Religion: Patron Saints: Whose patron is St Peregrine?
+Skin Diseases
+10
+
+Religion: Patron Saints: Whose patron is St Peter?
+Ship Builders
+10
+
+Religion: Patron Saints: Whose patron is St Peter?
+Stationers
+10
+
+Religion: Patron Saints: Whose patron is St Peter?
+Wolves
+10
+
+Religion: Patron Saints: Whose patron is St Raphael?
+Apothecaries
+10
+
+Religion: Patron Saints: Whose patron is St Raphael?
+Safe Journey
+10
+
+Religion: Patron Saints: Whose patron is St Raphael?
+Sheep Raisers
+10
+
+Religion: Patron Saints: Whose patron is St Rita?
+Tumors
+10
+
+Religion: Patron Saints: Whose patron is St Roque?
+Aids
+10
+
+Religion: Patron Saints: Whose patron is St Roque?
+Plague
+10
+
+Religion: Patron Saints: Whose patron is St Rose of Lima?
+South America
+10
+
+Religion: Patron Saints: Whose patron is St Rose of Lima?
+Vanity
+10
+
+Religion: Patron Saints: Whose patron is St Sebastian?
+Archers
+10
+
+Religion: Patron Saints: Whose patron is St Sebastian?
+Arrowsmiths
+10
+
+Religion: Patron Saints: Whose patron is St Sebastian?
+Athletes
+10
+
+Religion: Patron Saints: Whose patron is St Sebastian?
+Plague Patients
+10
+
+Religion: Patron Saints: Whose patron is St Sebastian?
+Potters
+10
+
+Religion: Patron Saints: Whose patron is St Sebastian?
+Racquet Makers
+10
+
+Religion: Patron Saints: Whose patron is St Sebastian?
+Stone Masons
+10
+
+Religion: Patron Saints: Whose patron is St Sebastian?
+Swans
+10
+
+Religion: Patron Saints: Whose patron is St Stephen?
+Austria
+10
+
+Religion: Patron Saints: Whose patron is St Stephen?
+Stone Workers
+10
+
+Religion: Patron Saints: Whose patron is St Theresa?
+Tuberculosis
+10
+
+Religion: Patron Saints: Whose patron is St Thomas Aquinas?
+Scholars
+10
+
+Religion: Patron Saints: Whose patron is St Thomas Aquinas?
+Schools
+10
+
+Religion: Patron Saints: Whose patron is St Thomas Aquinas?
+Student
+10
+
+Religion: Patron Saints: Whose patron is St Thomas Aquinas?
+Theologians
+10
+
+Religion: Patron Saints: Whose patron is St Thomas More?
+Adopted children
+10
+
+Religion: Patron Saints: Whose patron is St Thomas More?
+Stepparents
+10
+
+Religion: Patron Saints: Whose patron is St Thomas More?
+Widowers
+10
+
+Religion: Patron Saints: Whose patron is St Timothy?
+Stomach Trouble
+10
+
+Religion: Patron Saints: Whose patron is St Vincent de Paul?
+Prisoners
+10
+
+Religion: Patron Saints: Whose patron is St Vincent de Paul?
+Spiritual Help
+10
+
+Religion: Patron Saints: Whose patron is St William?
+Adopted children
+10
+
+Religion: Patron Saints: Whose patron is Sts. Cosmas & Damian?
+Surgeons
+10
+
+Religion: Sephardim are followers of which religion?
+Judaism
+10
+
+Religion: St. John was the only one of the 12 ____ to die a natural death
+Apostles
+10
+
+Religion: The Bible: became the adopted son of mary the mother of jesus?
+John
+10
+
+Religion: The Bible: father of methuselah?
+Enoch
+10
+
+Religion: The Bible: Father-in-law of Moses?
+Jethro
+10
+
+Religion: The Bible: initial co-worker of Paul in his second mission?
+Silas
+10
+
+Religion: The Bible: jew who became queen of another country?
+Esther
+10
+
+Religion: The Bible: pleaded for jesus to heal his dying daughter?
+Jairus
+10
+
+Religion: The Bible: What's the name of the second book in the Bible?
+Exodus
+10
+
+Religion: The Bible: When mentioned together with her husband, she is generally named first?
+Priscilla
+10
+
+Religion: the hindu text which contains bhagavad-gita?
+Mahabharata
+10
+
+Religion: The muslim calendar reckons time from this event (one word)?
+Hegira
+10
+
+Religion: This country has the world's largest Muslim population, at over 182.5 million people?
+Indonesia
+10
+
+Religion: To where do Muslims make pilgrimage?
+Mecca
+10
+
+Religion: What animal is mentioned most frequently in both the New and Old Testaments?
+The Sheep
+10
+
+Religion: What Arab nation has the highest percentage of Christians?
+Lebanon
+10
+
+Religion: What biblical epic was the top-grossing movie of the 1950's?
+The Ten Commandments
+10
+
+Religion: What book did Christians often place on their foreheads to cure insomnia in medieval times?
+The Bible
+10
+
+Religion: What city did Napoleon occupy in 1798, sending Pope Pius VI to the south of France?
+Rome
+10
+
+Religion: What country boasts the largest number of Catholics?
+Brazil
+10
+
+Religion: What does an ecclesiophobic evangelist fear?
+Churches
+10
+
+Religion: What does god create in the first sentence of the bible?
+Heaven and earth
+10
+
+Religion: What follows mass as the most popular activity in U.S. Catholic churches?
+Bingo
+10
+
+Religion: What fruit is depicted in Leonardo's Last Supper, even though it did not arrive in the Holy Land until long after Jesus' death?
+The Orange
+10
+
+Religion: What has been the symbol of Islam since the time of Muhammad?
+There is none
+10
+
+Religion: What is a person who has made a pilgimage to Mecca?
+Hajji
+10
+
+Religion: What is God called in the Muslim faith?
+Allah
+10
+
+Religion: What is the definitive holy book of Islam?
+-- Answer metadata begin
+{
+    "answers": ["Quran", "Koran"]
+}
+-- Answer metadata end
+10
+
+Religion: What is the only domesticated animal not mentioned in the Bible?
+The Cat
+10
+
+Religion: What is there more of in the world- nonreligious people, Hindus or Muslims?
+Nonreligious people
+10
+
+Religion: What language is Jesus believed to have spoken?
+Aramaic
+10
+
+Religion: What name has been shared by the most popes?
+John
+10
+
+Religion: What nation has 1,000 permanent inhabitants and produces no export goods?
+Vatican City
+10
+
+Religion: What nation's Catholics saw the Pope make a triumphant homecoming visit in 1980?
+Poland
+10
+
+Religion: What political movement got its name from the hill in Jerusalem boasting the Temple of Solomon?
+Zionism
+10
+
+Religion: What religion was founded by Guru Nanak?
+Sikhism
+10
+
+Religion: What religion was founded by Lao-tzu?
+Taoism
+10
+
+Religion: What religion was founded by Siddhartha Gautama?
+Buddhism
+10
+
+Religion: What religious movement began with Martin Luther's attack on the sale of indulgences?
+The Reformation
+10
+
+Religion: What religious movement was founded by William Booth?
+Salvation Army
+10
+
+Religion: What Saudi Arabian city was the birthplace of the prophet Muhammad?
+Mecca
+10
+
+Religion: What storied city on the Euphrates River was 55 miles south of Baghdad?
+Babylon
+10
+
+Religion: What symbol did St. Patrick use to explain his theory of the Holy Trinity?
+The Shamrock
+10
+
+Religion: What two countries claim two-thirds of the world's 2,000-plus registered saints?
+Italy and France
+10
+
+Religion: What was the world's principal Christian city before it fell to the Ottoman Turks in 1453?
+Constantinople
+10
+
+Religion: What were the names of the three wise men?
+Balthazar, Caspar and Melchior
+10
+
+Religion: What word appears exactly 773,692 times in the King James Bible?
+Amen
+10
+
+Religion: What's the only 100 percent Christian nation on Earth?
+Vatican City
+10
+
+Religion: Where was Methodism founded?
+Oxford University
+10
+
+Religion: Which city is sacred to Jews, Christians, and Muslims?
+Jerusalem
+10
+
+Religion: Which group of people elect the pope?
+Cardinals
+10
+
+Religion: Which tree do Druids regard sacred?
+Oak
+10
+
+Religion: Which two wicked cities were destroyed by God in Genesis?
+Sodom and Gomorrah
+10
+
+Religion: Who founded Mormonism?
+Joseph smith
+10
+
+Religion: Who founded the People's Temple Commune?
+Jim jones
+10
+
+Religion: Who founded the Salvation Army?
+William Booth
+10
+
+Religion: Who is the Linux operating system named after?
+Linus torvalds
+10
+
+Religion: Who is the persian god of light?
+Mithra
+10
+
+Religion: Who is the persian goddess of water, fertility and war?
+Anahita
+10
+
+Religion: Who is the prophet of Allah?
+Mohammed
+10
+
+Religion: Who ruled rome when christ was born?
+Caesar augustus
+10
+
+Religion: Who was the first pope?
+St. Peter
+10
+
+Religion: Who was the son of Elizabeth and Zechariah?
+John the baptist
+10
+
+Religion: Who was the wife of Moses?
+Zipporah
+10
+
+Religion: Who were the parents of King Solomon?
+David and Bathsheba
+10
+
+Religion: Who wore clothes made of camel's hair?
+John the baptist
+10
+
+ReligionL Meat from animal killed according to Muslim law?
+Halal
+10
+
+Remove forcibly or exile to another country?
+Deport
+10
+
+Renal failure is the failure of which organs?
+Kidneys
+10
+
+Rene descartes & Pierre de Fermat are credited with significant development of ____ theory
+Probability
+10
+
+Rene laennec invented which aid to medicine in 1819?
+Stethoscope
+10
+
+Rennet is used to make...?
+Cheese
+10
+
+Reno The assassination of what country's Archduke led to World War I?
+Austria
+10
+
+Reo speedwagon bust on the scene in 1971, but this chart topper which included the song 'keep on loving you' came off which album in 1982?
+High infidelity
+10
+
+Repetition of the initial letter (generally a consonant) or first sound of several words, marking the stressed syllables in a line of poetry or prose?
+Alliteration
+10
+
+Reporters of which newspaper uncovered the Watergate scandal?
+Washington post
+10
+
+Republic in south eastern Africa, formerly the British protectorate of Nyasaland, bounded on the north by Tanzania, on the east by Lake Nyasa (malawi), on the southeast & south by Mozambique, & on the west by Zambia?
+Malawi
+10
+
+Republic in south western Asia, located on the eastern shore of the Mediterranean Sea?
+Israel
+10
+
+Republic in southeastern Europe, bounded on the north by Austria, on the northeast by Hungary, on the south by Croatia, and on the west by Italy?
+Slovenia
+10
+
+Republic in southern central America, bounded on the north by Nicaragua, on the east by the Caribbean Sea, on the southeast by Panama, & on the southwest & west by the Pacific Ocean?
+Costa rica
+10
+
+Reputed to haunt the White House, who was the first US president to be assassinated?
+Abraham lincoln
+10
+
+Research indicates that ____ are attracted to people who have recently eaten bananas
+Mosquitos
+10
+
+Research indicates that mosquitos are attracted to people who have recently eaten____
+Bananas
+10
+
+Researchers don't know why killer whales like to rub their sensitive stomachs on the bottom of shallow beaches, but they think it may be a form of?
+Grooming
+10
+
+Residential & business district, Manhattan, New York City?
+Harlem
+10
+
+residents of this country use the baht to buy things =)?
+Thailand
+10
+
+Results of a survey show that 76 percent of women make their bed every day, compared to ____ percent of men
+46
+10
+
+retro is latin for what?
+Backward
+10
+
+Rhinitis affects which part of the body?
+The Nose
+10
+
+Rhinoceros horn, when powered, is believed in some countries to increase a persons?
+Sexual potency
+10
+
+Rhinos are in the same family as horses, and are thought to have inspired the myth of the____
+Unicorn
+10
+
+Rhinos are in the same family as____ , and are thought to have inspired the myth of the unicorn
+Horses
+10
+
+Rhoda was a spinoff from what other popular tv show?
+Mary tyler moore show
+10
+
+Rhode Island's providence atheneum was used by a poet to court his sweetheart?
+Edgar allen poe
+10
+
+Ribbons, feathers & rosettes on hats are called:?
+Cockaues
+10
+
+Rice originated from what continent?
+Asia
+10
+
+Rice what was lestat's mother's name?
+Gabrielle
+10
+
+Rich blue-veined Italian cheese?
+Gorgonzola
+10
+
+Rich crescent shaped roll?
+Croissant
+10
+
+Richard Drew came up with this 'sticky' invention in 1929?
+Scotch tape
+10
+
+Richard drew produced an all purpose sticky tape, under what name was it sold in europe?
+Sellotape
+10
+
+Richard Gere was married to which model?
+Cindy crawford
+10
+
+Richard I was the son of which English monarch?
+Henry ii
+10
+
+Richard II died aged ____ in 1400. A hole was left in the side of his tomb so people could touch his royal head, but 376 years later some took advantage of this and stole his ____
+33 & jawbone
+10
+
+Richard iii belonged to which royal house?
+York
+10
+
+Richard M Nixon was the President of the US from 1969-1974 What does the M stand for?
+Milhous
+10
+
+Richard Nixon published a book called ____
+Six crisis
+10
+
+Richard Nixon was the 1st U S president to visit China in february of what year?
+1972
+10
+
+Rickenbacker who gave millions of dollars to britain in 1930?
+Edward s harkness
+10
+
+Ride on time reached no1 1989 for who?
+Black box
+10
+
+Ride'em cowboy: how many seconds must a cowboy stay aboard a rodeo bronc?
+Eight
+10
+
+Right handed people live, on average, ____ years longer than left handed people do
+Nine
+10
+
+Rio de janeiro is the capital of ____
+Argentina
+10
+
+Ripken What planet is farthest from the sun in the Milky Way?
+Pluto
+10
+
+Rising about 100 miles northwest of Valencia and flowing east to the Atlantic, which is the longest river of the Iberian peninsula?
+The tagus
+10
+
+Rising in lesotho and flowing east to the atlantic, which is the longest river in south africa?
+The orange
+10
+
+River in the central U S, the largest & most important river in North America?
+Mississippi
+10
+
+River Providence is the capital of what state?
+Rhode island
+10
+
+River that flows through Maidstone, Chatham and Gillingham... The?
+Medway
+10
+
+Riveting is a method of joining pieces of what?
+Metal
+10
+
+Roads on which trains of freight & passenger cars, drawn by locomotives, travel on tracks formed by pairs of parallel metal rails (locomotive)?
+Railroads
+10
+
+Roald Dahl's children's story Charlie and the Chocolate Factory was made in to a film, what was the title?
+Willie wonka and the chocolate factory
+10
+
+Robert Baden-Powell founded this group in 1907?
+Boy scouts
+10
+
+Robert de Niro won Best Actor Oscar for which film in 1980?
+Raging bull
+10
+
+Robert f kennedy was a senator for what us state?
+New york
+10
+
+Robert fulton invented the submarine in 1800, 1830 or 1860?
+1800
+10
+
+Robert Goddard, Hermann Oberth and Konstantin Tsilovsky were all responsible for what?
+Beginning of Space Age
+10
+
+robert heinlein: character who conquered old age in time enough for love?
+Lazarus long
+10
+
+robert heinlein: editor of astounding sf to whom heinlein made his first sale?
+John campbell
+10
+
+robert heinlein: paradoxical term for his stories about a probable course of events?
+Future history
+10
+
+robert heinlein: rah never owned a farm, but often used this pen name?
+Anson macdonald
+10
+
+robert heinlein: space vehicle named after famous Italian scientist?
+Rocket ship galileo
+10
+
+Roberts in which film was goldie hawn the body double for julia roberts?
+Pretty woman
+10
+
+Robin hood was also known as?
+Robin of loxley
+10
+
+Robodoc is the first robot to help in which common replacemant operation?
+Hip
+10
+
+Rock, the original composition & texture of which has been altered by heat & pressure deep within the earths crust?
+Metamorphic
+10
+
+Rocky Horror Characters?
+Franken Furter
+10
+
+Rod as a symbol of sovereignty?
+Sceptre
+10
+
+Rod Stewarts most recent ex wife?
+Rachel Hunter
+10
+
+Rod, chain and furlong are all units of what?
+Length
+10
+
+Rodgers who discovered the grand canyon?
+Francisco coronado
+10
+
+Rodney dangerfield left what career to return to show business?
+Paint salesman
+10
+
+Roe made the first flight in to Britain in a British plane in which year?
+1909
+10
+
+Rogers what film features the song 'born free'?
+Born free
+10
+
+Roland Orzabel and Curt Smith were better known as what?
+Tears for fears
+10
+
+Rolling Stone's Songs?
+Let It Bleed
+10
+
+Roman Catholic ecclesiatics skull cap?
+Zuchetto
+10
+
+Roman God of love?
+Cupid
+10
+
+Roman numeral lxxii is equivalent to?
+72
+10
+
+Roman numerals: what is equivalent of cc?
+200
+10
+
+Roman numerals: what is equivalent of clx?
+160
+10
+
+Roman numerals: what is equivalent of cm?
+900
+10
+
+Roman numerals: what is equivalent of mdcix?
+1609
+10
+
+Roman numerals: what is equivalent of xix?
+19
+10
+
+Roman numerals: what is equivalent of xl?
+40
+10
+
+Roman numerals: what is equivalent of xviii?
+18
+10
+
+Romanian comunist president shot in december 1989?
+Nicolae ceausescu
+10
+
+Romanian Football team wich won the European Champions League in 1986(in final with CF Barcelona)?
+Steaua bucuresti
+10
+
+Ron howard's directed his first film in 1977. what was it called?
+Grand theft
+10
+
+Ronald reagan's v.p?
+George bush
+10
+
+Ronnie bond drummed with what group?
+Troggs
+10
+
+Room or space immediately under the roof of a house?
+Attic
+10
+
+Room used for meals in monasteries, colleges etc?
+Refectory
+10
+
+Rooms or places of total privacy?
+Sanctums
+10
+
+Roosevelt had a landslide victory over hoover in which year?
+1932
+10
+
+Rose, single, buttercup, & pea are all type of ____ on chickens
+Combs
+10
+
+Rotating metal disc of a record player turntable?
+Platter
+10
+
+Rotating on its axis will not accumulate an accretion of bryophytic vegetation?
+A rolling stone gathers no moss
+10
+
+Rotheim invent the aerosol in 1919, 1926 or 1931?
+1926
+10
+
+Roughly ____ percent of the population of the under-developed world is under 15 years old
+40
+10
+
+Roughly a quarter of the world's people live in?
+China
+10
+
+Roughly how many bananas does the U S consume per year?
+11 billion
+10
+
+Roughly how many stone slabs are there in the Great Pyramid?
+Two million
+10
+
+Round which planet do the moons Ganymede and Callisto orbit?
+Jupiter
+10
+
+Roy Chapman became baseball's first fatality in which year?
+1920
+10
+
+Roy orbison has his second #1 hit with?
+Pretty woman
+10
+
+Roy orbison says 'you have to pick up your feet, you've got a deadline to meet, because you're ____'
+Working for the man
+10
+
+ROYGBIV in a rainbow, what color does the I stand for?
+Indigo
+10
+
+Rubber is an impertinent ingredient in the manufacture of?
+Bubble gum
+10
+
+Rubens is considered to be the supreme master of which style of painting?
+Baroque
+10
+
+Rubies are a red variety of corundum. What name is given to corundum gemstones of any other colour?
+Sapphires
+10
+
+Rudolph valentinos movie premiere was in which year?
+1921
+10
+
+Rudolph, the red-nosed reindeer, was created in what year?
+1939
+10
+
+Rugby's man mountain Jonah Lomu plays for which country?
+New Zealand
+10
+
+Ruler of the ussr during the second world war?
+Josef stalin
+10
+
+Rulers of what ancient civilization were buried in rock-cut tombs in the arid valley of the kings near its capitol of Thebes?
+Egypt
+10
+
+Ruling families: which principality has the house of grimaldi ruled since the middle ages?
+Monaco
+10
+
+Run away to marry secretly?
+Elope
+10
+
+Run off you girls;boys in view helps us remember what?
+Colours of the rainbow
+10
+
+Russian country cottage?
+Dacha
+10
+
+Russian emperors were known as czars; what was the czars wife known as?
+Czarina
+10
+
+Russian triangular musical instrument?
+Balalaika
+10
+
+Rustic or awkward person?
+Bumpkin
+10
+
+Ruthin is in which now restored Welsh county?
+Denbighshire
+10
+
+S is the us mint mark for what city?
+San francisco
+10
+
+S j perelman wrote the screen plays for many of the films starring which zany comedians?
+Marx brothers
+10
+
+S-s-s-snake: The ____ ____, which can grow as long as 4.3m (14ft), is one of the deadliest snakes. In the absence of treatment, its bite has a fatality rate of nearly 100 percent
+Black Mamba
+10
+
+S. American rodent with soft grey fur?
+Chinchilla
+10
+
+S.American cowboy?
+Gaucho
+10
+
+Sable is the heraldic name for which colour?
+Black
+10
+
+Sadat what athlete released the photo book rare air in 1993?
+Michael jordan
+10
+
+Saddam hussein was the leader of ____
+Iraq
+10
+
+Sage mountain on tortola, is the highest point at 1,781 feet, of which British caribbean dependency?
+British virgin islands
+10
+
+Sahara mean ____ in Arabic
+Desert
+10
+
+Saigon is the capital of ____
+South vietnam
+10
+
+Sailors lacking vitamin c would contract which disease?
+Scurvy
+10
+
+Saint and one of the archangels usually represented slaying a dragon?
+Michael
+10
+
+Saint patrick was Ireland's first ____
+Bishop
+10
+
+Saint Paul is the capital of ____
+Minnesota
+10
+
+SaintPaulia is the botanical name for which houseplant?
+African violet
+10
+
+Sakhmet was the egyptian god of ____
+War and divine vengeance
+10
+
+Salad of sliced raw cabbage,carrot and apple?
+Coleslaw
+10
+
+Salad plant, its root can be roasted and ground and used as coffee?
+Chicory
+10
+
+Salem is the capital of which US state?
+Oregon
+10
+
+sales of what men's underwear item plummeted after clark gable revealed he didn't wear ____
+An undershirt
+10
+
+Salt lake city is the capital of what state?
+Utah
+10
+
+Salvador Allende former president of Chile was assassinated in what year?
+1973
+10
+
+Sam cooke belonged to which gospel group before he turned to rock'n'roll?
+Soul stirrers
+10
+
+Samuel Adams Boston Lager is brewed in this US state?
+Pennsylvania
+10
+
+Samuel johnson's dictionary was published in what year?
+1755
+10
+
+Samuel Sewall, John Hathome and William, Stoughton were the presiding judges at which series of 17th Century trials?
+Salem witch trials
+10
+
+San Antonio international airport is in which state?
+Texas
+10
+
+San Francisco lies on which dangerous geological feature?
+San andreas fault
+10
+
+San jose is the capital of ____
+Costa rica
+10
+
+San salvador is the capital of ____
+El salvador
+10
+
+Sandra day o'connor becomes the first woman to be appointed a?
+Supreme court justice
+10
+
+Sanford what presidential candidate from indiana lost to roosevelt in 1940?
+Wendell
+10
+
+Santa Cruz is the capital of which holiday island?
+Tenerife
+10
+
+Santa fe is the capital of what state?
+New Mexico
+10
+
+Santa's reindeer in the order of the song (minus rudolph) are how many?
+Nine
+10
+
+Santa's Reindeer?
+Rudolph
+10
+
+Santas reindeer in the order of the song (minus rudolph) are what?
+Dasher, dancer, prancer, vixen, comet, cupid, donner, blitzen
+10
+
+Sapphire is the birthstone for what month?
+September
+10
+
+Sapphire is the birthstone for which month?
+September
+10
+
+Sarcastic remark, clever saying?
+Quip
+10
+
+Sasheen Little-Feather accepted an Academy Award in 1972 for which actor?
+Marlon Brando
+10
+
+Sashimi is often served with what vegetable?
+Daikon
+10
+
+Satan means?
+Adversary
+10
+
+Saturday is named for which planet?
+Saturn
+10
+
+Saturn is ____ kilometres in diameter
+119,000
+10
+
+Saturn is ____ miles in diameter
+74,000
+10
+
+Saturn is the only planet that is less dense than ____
+Water
+10
+
+Saturn is the roman god of ____
+Agriculture
+10
+
+Saturn takes just over ____ Earth years to circle the Sun
+29
+10
+
+Saying: a bird in the hand is worth two in the?
+Bush
+10
+
+Saying: a penny saved is a penny...?
+Earned
+10
+
+Saying: don't switch horses in...?
+Midstream
+10
+
+Saying: out of sight, out of...?
+Mind
+10
+
+Saying: the road to hell is paved with...?
+Good intentions
+10
+
+Saying: too many cooks spoil the...?
+Broth
+10
+
+Scafell Pike is the highest mountain in?
+England
+10
+
+Scalene, isosceles and equilateral are all types of what?
+Triangles
+10
+
+Scents: Aromatic Indian grass with fragrant roots?
+Vetiver
+10
+
+Scents: Charlie and Jontue manufacturer?
+Revlon
+10
+
+Scents: Fragrant wood used in carved fans?
+Sandalwood
+10
+
+Scents: Good smells for better health?
+Aromatherapy
+10
+
+Scents: Opium pusher?
+Yves st. laurant
+10
+
+Scents: Scent filled orb worn as a pendant?
+Pomander
+10
+
+Scents: Tagalog for flower of flowers?
+Ylang-ylang
+10
+
+Scents: The only orchid used in perfume (and ice cream)?
+Vanilla
+10
+
+Scents: They uncovered a Tresor?
+Lancome
+10
+
+Scents: This flower is distilled into an attar, an oil, and a water?
+Rose
+10
+
+Sci-Fi: Harry Harrison character who is the greatest criminal mind in the universe?
+Stainless steel rat
+10
+
+Sci-Fi: Heinlein novel in which characters zip through alternate dimensions?
+The number of the beast
+10
+
+Sci-Fi: The conquerers of Earth in Battlefield Earth?
+Psychlo
+10
+
+Sci-Fi: The favorite sport of Jettero Heller in Mission Earth?
+Bullet ball
+10
+
+Sci-Fi: The second book of Feist's Magician series?
+Silverthorn
+10
+
+Science: A flat-bottomed conical laboratory flask with a narrow neck is called a(n) ____
+Erlenmeyer flask
+10
+
+Science: A manometer measures the pressure of what?
+Liquids
+10
+
+Science: A phrenologist reads ____
+Skulls
+10
+
+Science: A point to which rays of light converge is called a(n) ____
+Focus
+10
+
+Science: A shallow dish with a cover, used for science specimens is a(n) ____
+Petri dish
+10
+
+Science: A silvery-white metallic element used in falsh bulbs and foreworks?
+Magnesium
+10
+
+Science: Acetylsalicylic acid is more commonly known as ____
+Aspirin
+10
+
+Science: Acid turns Litmus paper which colour?
+Red
+10
+
+Science: Acute febrile virus disease of tropical Africa?
+Lassa fever
+10
+
+Science: Against which disease was the salk vaccine developed?
+Polio
+10
+
+Science: Alchemists preparation for turning metal into gold?
+Elixir
+10
+
+Science: Alkaloid obtained from the plant nux vomica used as a tonic although poisonous?
+Strychnine
+10
+
+Science: An instrument for examining the interior of the eye?
+Ophthalmoscope
+10
+
+Science: Arch, loop and whorl are all parts of what?
+Fingerprints
+10
+
+SCIENCE: Artificial satellite used as a base for scientific and medical research?
+Space station
+10
+
+Science: As what is minus forty celcius the same?
+Minus forty fahrenheit
+10
+
+Science: As what is minus forty fahrenheit the same?
+Minus forty celcius
+10
+
+SCIENCE: Astronomy, a satellite of saturn discovered by Christiaan Huygens in 1655?
+Titan
+10
+
+SCIENCE: Belgian cosmologist, proposed the Big Bang theory?
+Georges Lemaitre
+10
+
+Science: Botany and Zoology combined make up the science of ____
+Biology
+10
+
+SCIENCE: Bright spots of sunlight seen around the edge of the moon just before & after an eclipse?
+Bailys beads
+10
+
+Science: Brightest star in orion?
+Rigel
+10
+
+SCIENCE: British fertility expert?
+Lord Robert Winston
+10
+
+Science: By what chemical process do plants manufacture food?
+Photosynthesis
+10
+
+Science: By what name is acetyl-salicylic acid better known?
+Aspirin
+10
+
+Science: By what name is Lysergic acid diethylamide better known?
+Lsd
+10
+
+Science: Calamine, used to treat stings and burns is a carbonate of which element?
+Zinc
+10
+
+Science: Calciferol is more commonly known as which vitamin?
+Vitamin d
+10
+
+Science: Calcium Carbonate is more commonly known as what?
+Chalk
+10
+
+Science: Cetology is the study of ____
+Whales
+10
+
+Science: Circuits can be wired in series or in ____
+Parallel
+10
+
+Science: Cocci, Spirilla, and Streptococci are types of ____
+Bacteria
+10
+
+Science: Compound of oxygen?
+Oxide
+10
+
+SCIENCE: Computer language?
+BASIC
+10
+
+Science: Consisting of or containing the monovalent group C2h5(5)?
+Ethyl
+10
+
+Science: Contagious disease of birds transmissable to humans in the form of pneumonia?
+Psittacosis
+10
+
+Science: Counting outwards from the sun which is the third planet in our solar system?
+The earth
+10
+
+Science: Cumulus and Cirrus are types of what?
+-- Answer metadata begin
+{
+    "answers": ["Clouds", "cloud"]
+}
+-- Answer metadata end
+10
+
+Science: Dark substance forming the first faeces of new born infant?
+Meconium
+10
+
+Science: Deoxyribonucleic acid is better known as ____
+Dna
+10
+
+Science: Dermatitis affects the ____
+Skin
+10
+
+SCIENCE: Dog star?
+Sirius
+10
+
+Science: Epidermal cells, palisade cells, and veins are parts of a(n) ____
+Leaf
+10
+
+Science: Ethylene glycol is frequently used in automobiles... How?
+Anti-freeze
+10
+
+SCIENCE: Examination of the internal organs & tissues of a dead body to establish the cause of death?
+Postmortem
+10
+
+Science: Field of control systems and communications?
+Cybernetics
+10
+
+Science: For which discovery did immunologist and pathologist Karl Landsteiner win the 1930 Nobel Prize for medicine?
+ABO blood typing system
+10
+
+Science: For which method of three dimensional photography did scientist Dennis Gabor win the Nobel Prize for Physics in 1971?
+Holography
+10
+
+Science: Forked, Sheet, and Ball are types of ____
+Lightning
+10
+
+SCIENCE: formation of living organisms from non living substances?
+Abiogenesis
+10
+
+Science: French physicist and mathematician,developed the rule for determining the direction of the magnetic field associated with an electric current?
+Andre Marie Ampere
+10
+
+Science: From the bark of which tree was aspirin originally obtained?
+Willow
+10
+
+Science: From which American Nobel prize winners Lectures on Physics was the book Six easy pieces taken?
+Richard feynmann
+10
+
+Science: Fullerenes, discovered in 1985, were a new form of which element?
+Carbon
+10
+
+Science: Gas that forms nearly four fifths of air?
+Nitrogen
+10
+
+Science: Growing plants in liquids rather than soil is known as ____
+Hydroponics
+10
+
+Science: He designed the first feasible automobile with an internal combustion engine?
+Benz
+10
+
+Science: He designed the first feasible automobile with an internal combustion engine?
+Karl Freidrich Benz
+10
+
+Science: He transmitted radio signals across the Atlantic in 1901?
+Enrico Marconi
+10
+
+Science: How many beams of light are used to record a holograph?
+Two
+10
+
+Science: How many bits, handled as one unit, constitute a byte?
+Eight
+10
+
+Science: How many degrees does the earth rotate each hour?
+Fifteen
+10
+
+Science: How many of the nine planets have moons?
+Seven
+10
+
+Science: How many times more than the brain does the human body typically weigh?
+Forty
+10
+
+Science: If you suffer from comedones, what have you got?
+Blackheads
+10
+
+Science: In biology which rusiian physiologist was known chiefly for conditioning dogs to salivate upon hearing a bell?
+Ivan petrovich pavlov
+10
+
+Science: In the constellation Gemini, who are the twins?
+Castor and pollux
+10
+
+Science: In what does a rhinologist specialise?
+Human nose
+10
+
+Science: In what was the strength of early lasers measured?
+Gillettes
+10
+
+Science: In which branch of science are monocotyledon and dicotyledon terms?
+Botany
+10
+
+Science: In which constellation is the star Betelgeuse?
+Orion
+10
+
+Science: In which country was the match invented?
+France
+10
+
+Science: In which field would you encounter the Pons Asinorum?
+Geometry
+10
+
+Science: Inert gaseous element, atomic no 18 discovered by Lord Rayleigh and William Ramsey in 1894?
+Argon
+10
+
+Science: Instrument for measuring the force of an earth quake?
+Seismograph
+10
+
+Science: Instrument for measuring the heat radiated from the sun?
+Pyrheliometer
+10
+
+Science: June 2002, name of the asteroid that narrowly missed - by 75000 miles- colliding with the earth?
+2002mn
+10
+
+Science: Lowest melting point of any metal?
+Mercury
+10
+
+Science: Metal added to tin to make bronze?
+Copper
+10
+
+Science: Meteorology is the study of ____
+Weather
+10
+
+Science: MMR the vaccination, what does it stand for?
+Measles, mumps & rubella
+10
+
+Science: Name all the different organelles of a eukaryotic cell?
+Nucleolus
+10
+
+Science: Name given to a positive electrode?
+Anode
+10
+
+Science: Name of the 17th century British surgeon and anatomist who wrote Anatomy of the Human body, texts used by anatomy students for nearly a century?
+William chelsden
+10
+
+Science: Name of the inventor of the stethoscope?
+Dr Rene Laennec
+10
+
+Science: Name of the medical device invented to preserve female patients modesty?
+Stethoscope
+10
+
+Science: Name that planet,a giant ball of hydrogen and helium, appx 480 million miles from earth?
+Jupiter
+10
+
+Science: Name that planet,about the same size as earth, shrouded in thick clouds of carbon dioxide,lashed by sulphuric acid rain?
+Venus
+10
+
+Science: Name that planet,closest to the sun,a rocky moon like planet,surface is hot enough to melt lead?
+Mercury
+10
+
+Science: Name that planet,second largest planet, made mostly of hydrogen gas -would float if put in a big enough bowl!!!!?
+Saturn
+10
+
+Science: Negative electrode?
+Cathode
+10
+
+Science: Nephrology is the study of which organs?
+Kidneys
+10
+
+Science: Nitrous oxide is better known as ____
+Laughing gas
+10
+
+Science: Nuclear membrane, cytoplasm, and nucleus are parts of a(n) ____
+Cell
+10
+
+Science: Of or connected to the lungs?
+Pulmonary
+10
+
+Science: Of what did Aristotle say all things were made up?
+Air, earth, fire, and water
+10
+
+Science: Of what is genetics the study?
+Heredity
+10
+
+Science: One who studies the distribution, conservation and use of the water of the earth and its atmosphere?
+Hydrologist
+10
+
+Science: Opening through which light enters a camera?
+Aperture
+10
+
+SCIENCE: Outgrowth of a plant that contains no vascular tissue and does not develop into a leaf, stem etc?
+Emergence
+10
+
+Science: Paedology is the study of ____
+Soil
+10
+
+Science: Periodic Table: Element, atomic number 1, symbol H?
+Hydrogen
+10
+
+Science: Periodic Table: Element, atomic number 10, symbol Ne?
+Neon
+10
+
+Science: Periodic Table: Element, atomic number 100, symbol Fm?
+Fermium
+10
+
+Science: Periodic Table: Element, atomic number 101, symbol Md?
+Mendelevium
+10
+
+Science: Periodic Table: Element, atomic number 102, symbol No?
+Nobelium
+10
+
+Science: Periodic Table: Element, atomic number 103, symbol Lr?
+Lawrencium
+10
+
+Science: Periodic Table: Element, atomic number 11, symbol Na?
+Sodium
+10
+
+Science: Periodic Table: Element, atomic number 12, symbol MG?
+Magnesium
+10
+
+Science: Periodic Table: Element, atomic number 13, symbol Al?
+Aluminium
+10
+
+Science: Periodic Table: Element, atomic number 14, symbol Si?
+Silicon
+10
+
+Science: Periodic Table: Element, atomic number 15, symbol P?
+Phosphorus
+10
+
+Science: Periodic Table: Element, atomic number 16, symbol S?
+Sulphur
+10
+
+Science: Periodic Table: Element, atomic number 17, symbol Cl?
+Chlorine
+10
+
+Science: Periodic Table: Element, atomic number 18, symbol Ar?
+Argon
+10
+
+Science: Periodic Table: Element, atomic number 19, symbol K?
+Potassium
+10
+
+Science: Periodic Table: Element, atomic number 2, symbol He?
+Helium
+10
+
+Science: Periodic Table: Element, atomic number 20, symbol Ca?
+Calcium
+10
+
+Science: Periodic Table: Element, atomic number 21, symbol Sc?
+Scandium
+10
+
+Science: Periodic Table: Element, atomic number 22, symbol Ti?
+Titanium
+10
+
+Science: Periodic Table: Element, atomic number 23, symbol V?
+Vanadium
+10
+
+Science: Periodic Table: Element, atomic number 24, symbol Cr?
+Chromium
+10
+
+Science: Periodic Table: Element, atomic number 25, symbol Mn?
+Manganese
+10
+
+Science: Periodic Table: Element, atomic number 26, symbol Fe?
+Iron
+10
+
+Science: Periodic Table: Element, atomic number 27, symbol Co?
+Cobalt
+10
+
+Science: Periodic Table: Element, atomic number 28, symbol Ni?
+Nickel
+10
+
+Science: Periodic Table: Element, atomic number 29, symbol Cu?
+Copper
+10
+
+Science: Periodic Table: Element, atomic number 3, symbol Li?
+Lithium
+10
+
+Science: Periodic Table: Element, atomic number 30, symbol Zn?
+Zinc
+10
+
+Science: Periodic Table: Element, atomic number 31, symbol Ga?
+Gallium
+10
+
+Science: Periodic Table: Element, atomic number 32, symbol Ge?
+Germanium
+10
+
+Science: Periodic Table: Element, atomic number 33, symbol As?
+Arsenic
+10
+
+Science: Periodic Table: Element, atomic number 34, symbol Se?
+Selenium
+10
+
+Science: Periodic Table: Element, atomic number 35, symbol Br?
+Bromine
+10
+
+Science: Periodic Table: Element, atomic number 36, symbol Kr?
+Krypton
+10
+
+Science: Periodic Table: Element, atomic number 37, symbol Rb?
+Rubidium
+10
+
+Science: Periodic Table: Element, atomic number 38, symbol Sr?
+Strontium
+10
+
+Science: Periodic Table: Element, atomic number 39, symbol Y?
+Yttrium
+10
+
+Science: Periodic Table: Element, atomic number 4, symbol Be?
+Beryllium
+10
+
+Science: Periodic Table: Element, atomic number 40, symbol Zr?
+Zirconium
+10
+
+Science: Periodic Table: Element, atomic number 41, symbol Nb?
+Niobium
+10
+
+Science: Periodic Table: Element, atomic number 42, symbol Mo?
+Molybdenum
+10
+
+Science: Periodic Table: Element, atomic number 43, symbol Tc?
+Technetium
+10
+
+Science: Periodic Table: Element, atomic number 44, symbol Ru?
+Ruthenium
+10
+
+Science: Periodic Table: Element, atomic number 45, symbol Rh?
+Rhodium
+10
+
+Science: Periodic Table: Element, atomic number 46, symbol Pd?
+Palladium
+10
+
+Science: Periodic Table: Element, atomic number 47, symbol Ag?
+Silver
+10
+
+Science: Periodic Table: Element, atomic number 48, symbol Cd?
+Cadmium
+10
+
+Science: Periodic Table: Element, atomic number 49, symbol In?
+Indium
+10
+
+Science: Periodic Table: Element, atomic number 5, Symbol B?
+Boron
+10
+
+Science: Periodic Table: Element, atomic number 50, symbol Sn?
+Tin
+10
+
+Science: Periodic Table: Element, atomic number 51, symbol Sb?
+Antimony
+10
+
+Science: Periodic Table: Element, atomic number 52, symbol Te?
+Tellurium
+10
+
+Science: Periodic Table: Element, atomic number 53, symbol I?
+Iodine
+10
+
+Science: Periodic Table: Element, atomic number 54, symbol Xe?
+Xenon
+10
+
+Science: Periodic Table: Element, atomic number 55, symbol Cs?
+Caesium
+10
+
+Science: Periodic Table: Element, atomic number 56, symbol Ba?
+Barium
+10
+
+Science: Periodic Table: Element, atomic number 57, symbol La?
+Lanthanum
+10
+
+Science: Periodic Table: Element, atomic number 58, symbol Ce?
+Cerium
+10
+
+Science: Periodic Table: Element, atomic number 59, symbol Pr?
+Praeseodymim
+10
+
+Science: Periodic Table: Element, atomic number 6, symbol C?
+Carbon
+10
+
+Science: Periodic Table: Element, atomic number 60, symbol Nd?
+Neodymium
+10
+
+Science: Periodic Table: Element, atomic number 61, symbol Pm?
+Promethium
+10
+
+Science: Periodic Table: Element, atomic number 62, symbol Sm?
+Samarium
+10
+
+Science: Periodic Table: Element, atomic number 63, symbol Eu?
+Europium
+10
+
+Science: Periodic Table: Element, atomic number 64, symbol Gd?
+Gadolinium
+10
+
+Science: Periodic Table: Element, atomic number 65, symbol Tb?
+Terbium
+10
+
+Science: Periodic Table: Element, atomic number 66, symbol Dy?
+Dysprosium
+10
+
+Science: Periodic Table: Element, atomic number 67, symbol Ho?
+Holmium
+10
+
+Science: Periodic Table: Element, atomic number 68, symbol Er?
+Erbium
+10
+
+Science: Periodic Table: Element, atomic number 69, symbol Tm?
+Thulium
+10
+
+Science: Periodic Table: Element, atomic number 7, symbol N?
+Nitrogen
+10
+
+Science: Periodic Table: Element, atomic number 70, symbol Yb?
+Ytterbium
+10
+
+Science: Periodic Table: Element, atomic number 71, symbol Lu?
+Lutetium
+10
+
+Science: Periodic Table: Element, atomic number 72, symbol Hf?
+Hafnium
+10
+
+Science: Periodic Table: Element, atomic number 73, symbol Ta?
+Tantalum
+10
+
+Science: Periodic Table: Element, atomic number 74, symbol W?
+Tungsten
+10
+
+Science: Periodic Table: Element, atomic number 75, symbol Re?
+Rhenium
+10
+
+Science: Periodic Table: Element, atomic number 76, symbol Os?
+Osmium
+10
+
+Science: Periodic Table: Element, atomic number 77, symbol Ir?
+Iridium
+10
+
+Science: Periodic Table: Element, atomic number 78, symbol Pt?
+Platinum
+10
+
+Science: Periodic Table: Element, atomic number 79, symbol Au?
+Gold
+10
+
+Science: Periodic Table: Element, atomic number 8, symbol O?
+Oxygen
+10
+
+Science: Periodic Table: Element, atomic number 80, symbol Hg?
+Mercury
+10
+
+Science: Periodic Table: Element, atomic number 81, symbol Tl?
+Thallium
+10
+
+Science: Periodic Table: Element, atomic number 82, symbol Pb?
+Lead
+10
+
+Science: Periodic Table: Element, atomic number 83, symbol Bi?
+Bismuth
+10
+
+Science: Periodic Table: Element, atomic number 84, symbol Po?
+Polonium
+10
+
+Science: Periodic Table: Element, atomic number 85, symbol At?
+Astatine
+10
+
+Science: Periodic Table: Element, atomic number 86, symbol Rn?
+Radon
+10
+
+Science: Periodic Table: Element, atomic number 87, symbol Fr?
+Francium
+10
+
+Science: Periodic Table: Element, atomic number 88, symbol Ra?
+Radium
+10
+
+Science: Periodic Table: Element, atomic number 89, symbol Ac?
+Actinium
+10
+
+Science: Periodic Table: Element, atomic number 9, symbol F?
+Fluorine
+10
+
+Science: Periodic Table: Element, atomic number 90, symbol Th?
+Thorium
+10
+
+Science: Periodic Table: Element, atomic number 91, symbol Pa?
+Protactinium
+10
+
+Science: Periodic Table: Element, atomic number 92, symbol U?
+Uranium
+10
+
+Science: Periodic Table: Element, atomic number 93, symbol Np?
+Neptunium
+10
+
+Science: Periodic Table: Element, atomic number 94, symbol Pu?
+Plutonium
+10
+
+Science: Periodic Table: Element, atomic number 95, symbol Am?
+Americium
+10
+
+Science: Periodic Table: Element, atomic number 96, symbol Cm?
+Curium
+10
+
+Science: Periodic Table: Element, atomic number 97, symbol Bk?
+Berkelium
+10
+
+Science: Periodic Table: Element, atomic number 98, symbol Cf?
+Californium
+10
+
+Science: Periodic Table: Element, atomic number 99, symbol Es?
+Einsteinium
+10
+
+Science: Pulp, crown, and root are parts of a(n) ____
+Tooth
+10
+
+SCIENCE: Qualified doctors specialising in the administration of drugs causing the loss of bodily sensation?
+Anaesthetists
+10
+
+Science: Quinine is added to water to make ____
+Tonic water
+10
+
+Science: Samuel Hahnemann was the founder of which branch of alternative medicine?
+Homeopathy
+10
+
+SCIENCE: Scientific study of language?
+Linguistics
+10
+
+SCIENCE: Soft greenish grey rock resembling clay?
+Fullers earth
+10
+
+SCIENCE: Soft, ductile silver- white metallic element?
+Lithium
+10
+
+Science: Sound Navigation Ranging is better known as ____
+Sonar
+10
+
+Science: Sugar found in fruit is known by what name?
+Fructose
+10
+
+Science: Suns rays that turn the body brown?
+Ultra violet
+10
+
+Science: The best conductor of electricity is which metal?
+Silver
+10
+
+Science: The body, in the human body the two major female sex hormones are progeterone and which other?
+Oestrogen
+10
+
+Science: The body, Iodine is necessary for the functioning of which gland?
+Thyroid
+10
+
+Science: The body, the adjective cutaneous refers to what?
+Skin
+10
+
+Science: The Body, what contains the choroid,sclera and fovea?
+The eye
+10
+
+Science: The body, what is affected by osteomyelitis?
+The bones
+10
+
+Science: The body, what is the name of the skin separating the nostrils?
+Columella
+10
+
+Science: The body, what is the popular name for toxaemia?
+Blood poisoning
+10
+
+Science: The body, what part of your body would interest a rhinologist?
+Nose
+10
+
+Science: The body, which acid builds up in the muscles during strenuous exercise?
+Lactic acid
+10
+
+Science: The body, which bone is between your femur and your tibia?
+Patella
+10
+
+Science: The chinese invented this black powder to make fireworks?
+Gunpowder
+10
+
+Science: The curved line between any two points on a circle is referred to as what?
+An arc
+10
+
+SCIENCE: The earth takes less than 24 hours of mean solar time to spin once on its axis, how much less?
+3 minutes 56 seconds
+10
+
+Science: The filament of a regular light bulb is usually made of ____
+Tungsten
+10
+
+SCIENCE: The human body, name given to the vocal apparatus of the larynx?
+Glottis
+10
+
+Science: The instrument used in geometry to measure angles is a(n) ____
+Protractor
+10
+
+Science: The Kelvin scale is used to measure ____
+Temperature
+10
+
+Science: The most sensitive of the senses is what?
+Smell
+10
+
+Science: The name for the Russian equivalent of Skylab is ____
+Salyut
+10
+
+Science: The noise that a jet makes when it breaks the sound barrier?
+Sonic boom
+10
+
+Science: The point on the celestial sphere diametrically opposite the zenith?
+Nadir
+10
+
+Science: The presence of which organic substance is revealed by Benedicts test?
+Glucose
+10
+
+Science: The second nearest planet to the sun visible as a bright morning or evening star?
+Venus
+10
+
+Science: The second space shuttle was named ____
+Challenger
+10
+
+Science: The second space shuttle was named ____
+Columbia
+10
+
+Science: The splitting of spectrum line into several components by magnetic field?
+Zeeman effect
+10
+
+Science: The study of tumours?
+Oncology
+10
+
+Science: The vernal equinox is the beginning of ____
+Spring
+10
+
+Science: These creatures were used to bleed patients in the nineteeth century?
+Leeches
+10
+
+Science: Thin high cloud?
+Cirrus
+10
+
+Science: This is like an airplane but has its propeller on top instead?
+Helicopter
+10
+
+Science: This is the most common element in the universe?
+Hydrogen
+10
+
+Science: This is the reading system used by the blind?
+Braille
+10
+
+Science: This metal is liquid at room temperature?
+Mercury
+10
+
+Science: This Russian scientist used dogs to study conditioned reflexes?
+Ivan Pavlov
+10
+
+Science: This science deals with the motion of projectiles?
+Ballistics
+10
+
+Science: This word describes the force that pulls objects to the middle of the earth?
+Gravity
+10
+
+Science: Titania,Oberon, Miranda and Ariel are all moons of which planet?
+Uranus
+10
+
+Science: To make a car go backwards you have to put it in what gear?
+Reverse
+10
+
+Science: Unit for measuring wavelengths od electromagnetic radiations, named after a Swedish physicist?
+Angstrom
+10
+
+Science: Unit of sound intensity?
+Decibel
+10
+
+Science: US Space programme aimed at a lunar landing?
+Apollo
+10
+
+Science: What are tempel-tuttle and Kohoutek?
+Comets
+10
+
+Science: What are these: Ceres, Juno, Iris, and Flora?
+Asteroids
+10
+
+Science: What branch of science studies the motion of air and the forces acting on objects in air?
+Aerodynamics
+10
+
+Science: What C word defines a substance that speeds a chemical reaction without being consumed?
+Catalyst
+10
+
+Science: What can be Forked, Sheet or ball?
+Lightning
+10
+
+Science: What color does litmus turn when dipped into acid?
+Pink
+10
+
+SCIENCE: What colour is iridium?
+Steel grey
+10
+
+Science: What continent is subjected to the world's largest ozone hole?
+Antarctica
+10
+
+Science: What cooking fuel is produced by heating wood without oxygen?
+Charcoal
+10
+
+Science: What did an IBM 7090 computer calculate to 100,265 decimal places in 1961?
+Pi
+10
+
+Science: What did Lewis E. Waterman invent in 1884?
+Fountain pen
+10
+
+Science: what did Lister use to improve the hygiene of surgical operations?
+Carbolic acid
+10
+
+Science: What did navigators measure using an astrolabe?
+Altitude of stars
+10
+
+Science: What did Wilhelm Roentgen discover in 1895?
+X-rays
+10
+
+SCIENCE: What do we call the scientific study of mountains?
+Orology
+10
+
+Science: What does a meteorologist study?
+Weather
+10
+
+Science: What does breaking the sound barrier cause?
+A sonic boom
+10
+
+Science: What does the 'c' in the equation e=mc^2 stand for?
+Speed of light
+10
+
+Science: What does the Binet test measure?
+Intelligence
+10
+
+Science: What does the Rankine scale measure?
+Temperature
+10
+
+Science: What energy unit is defined as the heat required to raise one kilogram of water by one degree Celsius?
+One Calorie
+10
+
+Science: What explosive cosmic event was seen with the naked eye in 1987, for the first time in 383 years?
+A supernova
+10
+
+Science: What falls from the sky and erodes buildings?
+Acid rain
+10
+
+Science: What founding father was knocked unconscious while attempting to electrocute a turkey?
+Benjamin Franklin
+10
+
+Science: What has a face, hands and wheels?
+Clock
+10
+
+Science: What important compound was found on the moon in 1998?
+Water
+10
+
+Science: What is Acetic Acid more commonly known as?
+Vinegar
+10
+
+Science: What is Deoxyribonucleic acid commonly referred to as?
+DNA
+10
+
+Science: What is known as the Universal solvent?
+Water
+10
+
+Science: What is measured in Criths?
+Mass of gases
+10
+
+Science: What is measured in oktas?
+Cloud cover
+10
+
+Science: What is measured on the PH scale?
+Acidity/alkalinity
+10
+
+Science: What is name applied to the study of soil?
+Paedology
+10
+
+Science: What is Ribonucleic acid commonly referred to as?
+RNA
+10
+
+SCIENCE: What is studied in the science of somatology?
+The body
+10
+
+Science: What is th ecommon name for myocardial infarction?
+Heart attack
+10
+
+Science: What is th epopular name for the constellation Crux?
+Southern cross
+10
+
+Science: What is the antimatter equivalent of the electron?
+Positron
+10
+
+Science: What is the common name for the scapula?
+Shoulder blade
+10
+
+Science: What is the full name for Economy Class Syndrone (DVT)?
+Deep vein thrombosis
+10
+
+Science: What is the lightest known substance?
+Hydrogen
+10
+
+SCIENCE: What is the most distant planet visible with the naked eye?
+Uranus
+10
+
+SCIENCE: What is the most radiation sensitive part of the body?
+The Blood
+10
+
+Science: What is the name for loss of hair?
+Alopecia
+10
+
+Science: What is the name given to metals that dont tarnish in air or water and have a good resistance to acids?
+Noble
+10
+
+SCIENCE: What is the name given to molten rock that is ejected as lava?
+Magma
+10
+
+Science: What is the name of the process by which a solid substance turns into a gas without first becoming a liquid?
+Sublimation
+10
+
+Science: What is the number of blue razor blades a given beam can puncture?
+Gillette
+10
+
+Science: What is the scientific name for brimstone?
+Sulphur
+10
+
+Science: What is the scientific name for earth's outer layer of surface soil or crust?
+Lithosphere
+10
+
+Science: What is the study of flight and control of aircraft?
+Aeronautics
+10
+
+Science: What is the study of prehistoric plants and animals?
+Paleontology
+10
+
+Science: What is the study of the composition of substances and the changes they undergo?
+Chemistry
+10
+
+Science: What is the study of the earth's physical divisions termed?
+Geography
+10
+
+Science: what is the symbol for the element oxygen?
+O
+10
+
+Science: What is the term for mass per unit volume?
+Density
+10
+
+Science: What is the term that refers to the search for the existence of ghosts?
+Eidology
+10
+
+Science: What is varicella better known as?
+Chickenpox
+10
+
+Science: What name is given to a dying star which has exhausted the supply of hydrogen at its centre,become enlarged and begun to burn hydrogen as a fuel?
+Red giant
+10
+
+Science: What O-word describes oxygen with molecules that have three atoms instead of two?
+Ozone
+10
+
+Science: What percentage water is your brain?
+80%
+10
+
+Science: What planet is closest in size to our moon?
+Mercury
+10
+
+SCIENCE: What planet lies between Venus and Mars?
+The earth
+10
+
+Science: What process involves heating an ore to obtain a metal?
+Smelting
+10
+
+Science: What process involves treating rubber with sulfur to harden it?
+Vulcanizing
+10
+
+Science: What remedy of no medicinal value is given to humour a patient?
+Placebo
+10
+
+Science: What scale of zero to 14 is used to measure acidity or alkalinity?
+The pH scale
+10
+
+Science: What science is concerned with matter and energy?
+Physics
+10
+
+Science: What sea creature can have an eye measuring 16 inches across, the largest in the animal kingdom?
+A squid
+10
+
+Science: What species Amazonian electric variety packs a 650 volt wallop?
+The eel
+10
+
+Science: What three terms are represented in Newton's second law of motion F = ma?
+Force, mass, acceleration
+10
+
+Science: What two months contain equinoxes?
+March and September
+10
+
+Science: What type of trees yield the resin used to produce turpentine?
+Pine trees
+10
+
+Science: What unit of electrical power is equal to one joule per second?
+The Watt
+10
+
+Science: What unit of measure do you multiply by .39 to convert it to inches?
+Centimeters
+10
+
+Science: What was Apollo iis landing module called?
+Eagle
+10
+
+Science: What was the first recorded message?
+Mary had a little lamb
+10
+
+Science: What were exterminated from Harvard's bio labs when they were found to be carrying radioactive chemicals into the walls?
+Ants
+10
+
+Science: What's defined as the distance between a lens and its focal point?
+Focal Length
+10
+
+Science: What's removed from water in the process of desalination?
+Salt
+10
+
+Science: What's the base unit of mass in the metric system?
+The kilogram
+10
+
+Science: What's the common name for a cubic decimeter?
+Liter
+10
+
+Science: What's the most malleable metal?
+Gold
+10
+
+Science: What's the only metal that's not a solid at room temperature?
+Mercury
+10
+
+Science: What's the U. S. equivalent of 0.45 kilograms?
+One pound
+10
+
+SCIENCE: When coke burns what dangerous gas is given off?
+Carbon monoxide
+10
+
+Science: When drawing circles what instrument would you use?
+Compass
+10
+
+Science: When Edward Jennerfirst developed the vaccine for smallpox in 1796 from which animal disease did he produce the vaccine?
+Cowpox
+10
+
+Science: When Litmus paper is in contact with Alkaline what colour does it become?
+Blue
+10
+
+Science: Where in the body would you find the fontanelle?
+Skull
+10
+
+Science: where in the heck is the thyroid gland?
+The neck
+10
+
+Science: Where in the human body would you find the scaphoid bone?
+Wrist
+10
+
+Science: where is the human skin the thickest?
+The back
+10
+
+Science: Which branch of mathematics deals with the relationship between the sides and angels of triangles?
+Trigonometry
+10
+
+Science: Which chemical element is found in all proteins?
+Nitrogen
+10
+
+Science: Which chemical element takes its name from the greek word for colour?
+Chromium
+10
+
+Science: Which disease is tested for by the Schich Test?
+Diphtheria
+10
+
+Science: Which drug is obtained from the Yellow Cinchona plant?
+Quinine
+10
+
+Science: Which element has the atomic no 1?
+Hydrogen
+10
+
+Science: Which element is found in bones, teeth and shells?
+Calcium
+10
+
+Science: Which English scientist designed computers in the 1820&30s named the Difference Engine and the Analytical Engine?
+Charles babbage
+10
+
+Science: Which freezes faster - hot or cold water?
+Hot
+10
+
+Science: Which grow upwards Stalactites or Stalagmites?
+Stalagmites
+10
+
+Science: Which handicapped physicist wrote a brief history of time?
+Stephen Hawking
+10
+
+SCIENCE: Which instrument measures the intensity of earth quakes?
+Seismograph
+10
+
+Science: Which is the most prevalent infectious disease to threaten man?
+Malaria
+10
+
+SCIENCE: Which is the nearest galaxy to our own?
+Andromeda
+10
+
+Science: Which metal comes from the ore cinnabar?
+Mercury
+10
+
+Science: Which physical property allows a needle to float on water?
+Surface tension
+10
+
+Science: Which physicist was in charge of the Manhattan Project at Los Alamos to develop the atomic bomb and subsequently promoted the peaceful use of atomic energy?
+Robert oppenheimer
+10
+
+Science: Which principle first enunciated by the German physicist Werner Heisenberg in 1927 attempts to define unpredictability?
+The uncertainty principle
+10
+
+Science: Which Russian chemist first successfully tabulated the elements in ascending order of their atomic weight in his periodic table?
+Dmitri mendeleyev
+10
+
+Science: Which scientist known for his great discoveries also invented the cat flap?
+Sir isaac newton
+10
+
+Science: Which Scottish chemist and physicist invented the vacuum flask?
+James dewar
+10
+
+Science: Which Scottish physicist wrote Treatise on Electricity and Magnetism in 1873?
+James clerk maxwell
+10
+
+Science: Which series of UK satellites were launched by USA from 1962 to 1979?
+Ariel
+10
+
+Science: Which theory of combustion did Antoine Lavoisier demolish in the late 18th century?
+Phlogiston theory
+10
+
+Science: Which was the longest dinosaur?
+Diplodocus
+10
+
+Science: Which will yield the most BTUs of energy____a gallon of oil, a pound of coal or a gallon of gasoline?
+A gallon of oil
+10
+
+Science: Who developed the laws of electrolysis?
+Michael Faraday
+10
+
+Science: Who discovered X-rays?
+Wilhelm Roentgen
+10
+
+Science: Who first transmitted radio signals across the Atlantic?
+Enrico Marconi
+10
+
+SCIENCE: Who first used mercury in a thermometer?
+Daniel Fahrenheit
+10
+
+Science: Who invented dynamite?
+Alfred Nobel
+10
+
+Science: Who is known as the father of genetics?
+Gregor Mendel
+10
+
+Science: Who is known as the father of genetics?
+Mendel
+10
+
+Science: Who produced the Laws of Motion?
+Isaac newton
+10
+
+Science: Who said all things were made up of air, earth, fire, and water?
+Aristotle
+10
+
+Science: Who spoke the first recorded message?
+Thomas Edison
+10
+
+Science: Who was the third man to set foot on the moon?
+Pete conrad
+10
+
+Science: Whose law states that equal volumes of gas contain equal numbers of molecules when at the same temperature and pressure?
+Avogadro
+10
+
+SCIENCE: With what do we measure the wavelength of light?
+Interferometer
+10
+
+Science: X-rays were discovered in 1850, 1895 or 1924?
+1895
+10
+
+SCIENCE: Zymase is a natural catalyst which acts on glucose to create which drug?
+Alcohol
+10
+
+Science:How many moons has the planet Mercury?
+None
+10
+
+Scientists at Oxford University's Imperial Cancer Research Fund found that people who eat ____ daily had 24 percent fewer heart attacks and 32 percent fewer strokes
+Fresh fruit
+10
+
+Scotch mist is a type of what?
+Rain
+10
+
+Scotia What would you call the act of making a mark on a body by burning?
+Branding
+10
+
+Scott Hamilton won Olympic gold for the USA on what surface?
+Ice
+10
+
+Scottish is the language called Gaelic, whereas Irish is actually called?
+Gaeilge
+10
+
+Scottish sailor alexander selkirk became inspiration for what novel?
+Robinson crusoe
+10
+
+Scottish Terrier's name in Disney's 'Lady and the Tramp'?
+Jock
+10
+
+Scottish valley?
+Glen
+10
+
+Sculptors which of the four teenage mutant ninja turtles was named after an artists and/or sculptor that did not occur in the same time period as the other three?
+Donatello
+10
+
+Scurvy is caused by a lack of ____
+Vitamin c
+10
+
+Sea cucumbers are a type of what?
+Animal
+10
+
+Sea World of Florida is in this city?
+Orlando
+10
+
+Sean Connery was the sexiest man in the 20th century according to who?
+New women
+10
+
+Seattle which is the largest theme resort hotel?
+Lost city
+10
+
+Sedimentary and igneous are types of what?
+Rock
+10
+
+Sedimentary rocks are usually formed in ____
+Layers
+10
+
+Sedimentary rocks often contain ____
+Fossils
+10
+
+See spot run: what is the smallest breed of dog?
+Chihuahua
+10
+
+Seeds of SE Asian aromatic plant used as a spice?
+Cardamon
+10
+
+Selene was greek god of what?
+Moon
+10
+
+Selenology is the study of what?
+Moon
+10
+
+Self-centered?
+Egocentric
+10
+
+Selma and Patty's favourite star?
+MacGyver
+10
+
+Selva is another name for what?
+Tropical rain forest
+10
+
+Semaphore is a method of sending signals using what?
+Flags
+10
+
+Sephardim jews are jews from which two countries?
+Spain, Portugal
+10
+
+Sepia is obtained from which sea creature?
+Cuttlefish
+10
+
+September's birthstone?
+Sapphire
+10
+
+Septicaemia is better known as ____
+Blood poisoning
+10
+
+Seretse Khama was the first President of which country?
+Botswana
+10
+
+Sericulture involves raising which animals?
+Silkworms
+10
+
+Series of chemical elements that share similar electron orbital structures and hence similar chemical properties?
+Transition Elements
+10
+
+Serotine, Leislers and Noctule are all varieties of which nianinial?
+Bat
+10
+
+Service where is the largest circulation of sunday papers?
+Los angeles
+10
+
+Set of 25 cards with 5 different symbols used in ESP research?
+Zener cards
+10
+
+Set of written symbols, each representing a given sound or sounds, which can be variously combined to form all the words of a language?
+Alphabet
+10
+
+Seventy percent of house dust is made up of dead ____
+Skin
+10
+
+Severe infant disorder of communication & behavior that develops before the age of three?
+Autism
+10
+
+Sewing term for: Bar, Cord, Core, Filler, Hitch, Mounting, Sinnet?
+Macrame
+10
+
+Sex burns 360 ____ per hour
+Calories
+10
+
+Sexy female anagram: evil lass in erotica?
+Alicia Silverstone
+10
+
+Shah Jahan of India built what famously beautiful building as a memorial to his favorite wife?
+Taj mahal
+10
+
+Shakespeare Plays?
+Romeo And Juliet
+10
+
+Sharp pointed projection on a plant?
+Thorn
+10
+
+Shbat is arabic for what month?
+February
+10
+
+She had the great misfortune of living in Paris during the reign of terror, & she was forced to make death masks of the people who had been guillotined. Later she moved to Britain, & these death masks became the basis of a famous wax museum. She was Madame ____
+Tussaud
+10
+
+She monster with a lion's head, goat's body & serpent's tail?
+Chimera
+10
+
+She overcame her handicaps to become a lecturer and a scholar?
+Helen Keller
+10
+
+She was Sports Illustrated's first female 'Man of the Year'?
+Billie Jean King
+10
+
+She was the country singing sensation that Homer managed?
+Lurleen Lumpkin
+10
+
+She was the daughter of Anne Boleyn & Henry VII?
+Queen elizabeth i
+10
+
+She was the first woman premier of Israel?
+Golda Meir
+10
+
+She was the first woman to fly the atlantic solo?
+Amelia earhart
+10
+
+She was the first woman to swim the English channel?
+Gertrude Caroline Ederle
+10
+
+She won the judgement of Paris?
+Aphrodite
+10
+
+Sheet or ring of rubber to seal joint between metal surfaces?
+Gasket
+10
+
+Shell Oil was developed by Marcus Samuel, what was the original family business?
+Importing sea shells
+10
+
+Shepherd's pie is meat hash covered with a layer of this?
+Mashed potatoes
+10
+
+Sherwood park, Alberta, Canada is the largest ____ in the world
+Hamlet
+10
+
+Ships designed for the various operations involved in modern naval warfare?
+Vessels
+10
+
+Shock treatment for ____ was once administered by electric catfish
+Epilepsy
+10
+
+Shock treatment for epilepsy was once administered by electric____
+Catfish
+10
+
+Shop selling exotic cooked meats and cheeses?
+Delicatessen
+10
+
+Short in stature, long on talent, doug flutie wins the?
+Heisman trophy
+10
+
+Short, high-freuency radio waves lying roughly between very-high-freuency (infrared) waves & conventional radio waves (electromagnetic radiation; radio)?
+Microwaves
+10
+
+Short, simple, descriptive poem idealizing country life?
+Idyll
+10
+
+Show How many tines are in a standard dinner fork?
+Four
+10
+
+Shower what is a tokinese?
+Cat
+10
+
+Shridnar Chillal grew his thumb one 41 inches?
+Fingernail
+10
+
+Shrub with flowers attractive to butterflies?
+Buddleia
+10
+
+SI Units of Frequency?
+Hertz
+10
+
+SI Units of Magnetic Flux?
+Weber
+10
+
+Sidekicks: Astrological twins: Castor?
+Pollux
+10
+
+Sienna is a shade of what colour?
+Brown
+10
+
+Sigmund Freud brought his first sample of ____ for $1.27 per gram
+Cocaine
+10
+
+Sigmund Freud, founder of psychoanalysis, was born in what country?
+Austria
+10
+
+Signal or time after which people must remain indoors?
+Curfew
+10
+
+Signor Bona Slang hung by his nose to arouse the desires of young girls,by what name is he better known?
+Daring young man on the flying trapeze
+10
+
+Silky case spun by larva to protect it as a pupa?
+Cocoon
+10
+
+Similes: As bold as?
+Brass
+10
+
+Similes: As clean as a(n)?
+Whistle
+10
+
+Similes: As clear as a(n)?
+Bell
+10
+
+Similes: As cute as a(n)?
+Button
+10
+
+Similes: as dry as a?
+Bone
+10
+
+Similes: As easy as?
+Pie
+10
+
+Similes: As fit as a(n)?
+Fiddle
+10
+
+Similes: As good as?
+Gold
+10
+
+Similes: As graceful as a(n)?
+Swan
+10
+
+Similes: as happy as a ____
+Clam
+10
+
+Similes: as happy as a?
+Lark
+10
+
+Similes: As large as?
+Life
+10
+
+Similes: As loud as?
+Thunder
+10
+
+Similes: as neat as a?
+Pin
+10
+
+Similes: As pale as a(n)?
+Ghost
+10
+
+Similes: As pleased as?
+Punch
+10
+
+Similes: As pretty as a(n)?
+Picture
+10
+
+Similes: As proud as a(n)?
+Peacock
+10
+
+Similes: as proud as a?
+Peacock
+10
+
+Similes: as quick as a?
+Wink
+10
+
+Similes: As quiet as a(n)?
+Mouse
+10
+
+Similes: as regular as?
+Clockwork
+10
+
+Similes: As right as?
+Rain
+10
+
+Similes: As sick as a(n)?
+Dog
+10
+
+Similes: As sly as a(n)?
+Fox
+10
+
+Similes: As smart as a(n)?
+Whip
+10
+
+Similes: as thin as a?
+Rail
+10
+
+Similes: as tough as?
+Nails
+10
+
+Similes: as white as a?
+Sheet
+10
+
+Similes: drink like a ____
+Fish
+10
+
+Similes: dumb as a box of____
+Rocks
+10
+
+Similes: Fresh as a(n)?
+Daisy
+10
+
+Similes: happy as a ____
+Lark
+10
+
+Similes: slick as____
+Snot
+10
+
+Similes: useless as a screen door on a ____
+Submarine
+10
+
+Similes: you lie like a ____
+Rug
+10
+
+Simon Peter and his brother were both disciples. What was the brother's name?
+Andrew
+10
+
+Sinbad faced this arabian mythical bird of prey name the bird?
+Roc
+10
+
+Since 1514, which of the 12 Livery Companies of London has taken precedence over the others?
+Mercers
+10
+
+Since 1600, 109 species and subspecies of what have become extinct?
+Birds
+10
+
+Since 1978, at least 37 people have died as a result of ____, in an attempt to get free merchandise. More than 100 have been injured
+Shaking vending machines
+10
+
+Since a reorganization in 1979, Libya's Colonel Gadhafi has held no formal position, but continues to rule under what ceremonial title?
+Leader of the Revolution
+10
+
+Since Hindus don't eat beef, the Mcdonald's in New Delhi makes its burgers with what?
+Mutton
+10
+
+Since its introduction in February 1935, more than 150 million ____ board games have been sold worldwide
+Monopoly
+10
+
+Since the beginning of the modern olympics, which are the only 2 countries to compete in them all (list alphabetically)?
+Australia & greece
+10
+
+Since Thomas Jefferson was a widower, who became unofficial first lady during his administration?
+Dolly madison
+10
+
+Since when has instant coffee been around?
+18th century
+10
+
+Since white tigers have pigmented stripes and blue eyes, they are not?
+Albinos
+10
+
+Singapore football's foreign import from Australia, and scorer of a hat-trick in the last malaysia cup final, but was charged with match-fixing and faded away?
+Abbas saad
+10
+
+Singapore football's foreign import from the czech republic, but he was tried for match-fixing and jumped bail, fleeing in acrimony?
+Michal vana
+10
+
+Singapore lies at the end of which peninsula?
+Malayan
+10
+
+Singapore uses the colours blue and yellow at funerals to ward off ____
+Evil spirits
+10
+
+Singapore was a colony of which european power?
+Britain
+10
+
+Singer Sarah Brightman was the second wife of which composer?
+Andrew lloyd webber
+10
+
+Single celled micro-organism?
+Bacterium
+10
+
+Single-celled fungus used to make beer & bread rise?
+Yeast
+10
+
+Singularly speaking, where was George Michael in 1998?
+Outside
+10
+
+Singularly, who was Born In The USA?
+Bruce springsteen
+10
+
+Sir Archibald MacIndoe was a pioneer in which field during WW2?
+Plastic surgery
+10
+
+Sir emest swinton was a British colonel credited with the invention of which weapon?
+Tank
+10
+
+Sir Isaac Newton was obsessed with the?
+Occult and supernatural
+10
+
+Sir Isaac Newton was only ____ ____ years old when he discovered the law of universal gravitation
+23
+10
+
+Sir Paul Mcartneys photographer daughter?
+Mary Mcartney
+10
+
+Sir Richard Marsh was Chairman of British Rail in the 1970s and 1980s. He had earlier been prominent in what field?
+Politics (cabinet minister)
+10
+
+Sir Robert Watson-Watt was a pioneer in which field during WW2?
+Radar
+10
+
+Sir Winston Churchill was born in a ladies' cloakroom after his mother went into labour during a dance at?
+Blenheim palace
+10
+
+Sir Winston Churchill's mother was descended from a?
+Red Indian
+10
+
+Sirocco, mistral and chinook are all types of what?
+Winds
+10
+
+Sister ship of the German battleship bismarck?
+Tirpitz
+10
+
+Six ounces of what contains the minimum daily requirement for vitamin c?
+Orange juice
+10
+
+Six u.s presidents never had ____
+Children
+10
+
+Sixteen pounds is the maximum legal weight of what sporting device?
+Bowling ball
+10
+
+Sixties Tunes: How much did Little Anthony & the Imperials hurt?
+Bad
+10
+
+Sixties Tunes: Three Dog Night night hit about a number?
+One
+10
+
+Sixtieth anniversary is the ____ anniversary
+Diamond
+10
+
+Sixty percent of big-firm executives said the ____ is as important or more important than the r?sum? itself when you're looking for a new job
+Cover letter
+10
+
+Sixty six mhz Italy's equivalant to the dollar is ____
+Lira
+10
+
+Sixty what lives in a fornicary?
+Ants
+10
+
+Ska Probably the first ska band. Led by Tommy McCook, they once backed Marley?
+Skatalites
+10
+
+Ska Sweet sounding Boston band that seduced us with a Simple Song?
+Bim skala bim
+10
+
+Skiing: Japan houses the only ski resort of this type?
+Indoor
+10
+
+Skiing: Skis with these on them supposedly make the initiation of turns easier?
+Caps
+10
+
+Skiing: The Swix company manufactures poles as well as this skiing/racing essential?
+Wax
+10
+
+Skiing: This is the largest company that manufactures skis, boots, & bindings?
+Salomon
+10
+
+Skiing: This Utah resort averages more snow anually than any other in the 48 states?
+Alta
+10
+
+Skill in devising or contriving; inventive talent?
+Ingenuity
+10
+
+Skin is thickest where?
+Back
+10
+
+Skopelos, thasos and andros are all what?
+Greek islands
+10
+
+Skydivers accelerate to a terminal velocity of ____ mph
+120
+10
+
+Slang term for ?25?
+Pony
+10
+
+Slang term for Toronto (Moo)?
+Cowtown
+10
+
+Slang word for ?25?
+Pony
+10
+
+Slang word for huge or enormous?
+Humongous
+10
+
+Slang word meaning aggressively blatent or provocative?
+In-your-face
+10
+
+Slang:A promiscuous woman?
+Slapper
+10
+
+Slang:Person with very short hair or very little?
+Slaphead
+10
+
+Slate is formed by the metamorphosis of what?
+Shale
+10
+
+Slave trading was abolished in the British empire in 1807, 1825 or 1855?
+1807
+10
+
+Slayer of the gorgon & the kraken and husband of andromeda?
+Perseus
+10
+
+Sliced bread was patented by Mrs P. Ride, a mother of 5, on 1 April?
+1954
+10
+
+Slippery when wet was a hit album for what rock band?
+Bon jovi
+10
+
+Slivovitz is a brandy made from what?
+Plums
+10
+
+Sloths spend ____% of their lives asleep
+75
+10
+
+Slowest flying bird?
+American woodcock
+10
+
+Slugs and snails belong to which class of molluscs?
+Gastropods
+10
+
+Small area on a computer screen in which the user is prompted to provide information, select commans etc?
+Dialogue box
+10
+
+Small beetle destructive to the potato?
+Colorado
+10
+
+Small buns made from choux pastry, filled with cream and covered in chocolate are called what?
+Profiteroles
+10
+
+Small chalet on the costa del magnifico...'?
+Twisting by the pool
+10
+
+Small deer with white spotted reddish brown summer coat?
+Fallow
+10
+
+Small flat emblem worn as a sign of office?
+Badge
+10
+
+Small graceful antelope?
+Gazelle
+10
+
+Small hole for passing cord through?
+Eyelet
+10
+
+Small ornamental species of domestic chicken?
+Bantam
+10
+
+Small parrot often kept as a pet?
+Budgerigar
+10
+
+Small piece of bread or pastry with a savoury topping?
+Canape
+10
+
+Small pieces of bread or crackers with a savoury topping are called what?
+Canapes
+10
+
+Small pieces of fried or toasted bread usually served with soup?
+Croutons
+10
+
+Small polecat used in catching rabbits and rats?
+Ferret
+10
+
+Small rectangular instrument played by blowing and sucking air through it?
+Harmonica
+10
+
+Small shell fish clinging to rocks?
+Barnacle
+10
+
+Small terrestrial lizard inhabiting warm regions of the Old World?
+Agama
+10
+
+Small vegetable like a marrow?
+Courgette
+10
+
+Small, active, carnivorous freshwater fish, found in the islands of the southern caribbean sea & in northern south America?
+Guppy
+10
+
+Smallest particle of a substance having the specific chemical properties of that substance?
+Molecule
+10
+
+Smallish lunchtime pizzas from Pizza Hut are called?
+Personal pan
+10
+
+Smallpox is also known as ____
+Variola
+10
+
+Smelling ____ or green apples can help you lose weight
+Bananas
+10
+
+Smelling bananas and/or green apples (smelling, not eating) can help you lose?
+Weight
+10
+
+Smelling bananas or ____ can help you lose weight
+Green apples
+10
+
+Smetana in what novel do we find winston smith living in the nation of oceania and battling doublespeak and the thought police?
+1984
+10
+
+Smew, garganey and shoveler are all types of what bird?
+Duck
+10
+
+Smoke, fog, & mist are all...?
+Aerosols
+10
+
+Smooth barked glossy leaved tree?
+Beech
+10
+
+Smurfs: Failing in his efforts to deceive the smurfs, Gargamel created this smurf?
+Smurfette
+10
+
+Smurfs: Smurfette is the only smurf who has this in front of her house?
+Flower garden
+10
+
+Smurfs: The only mechanical smurf?
+Clockwork smurf
+10
+
+Smurfs: There are this many smurfs?
+101
+10
+
+Smurfs: This character is Yohan's best friend?
+Peewee
+10
+
+Smurfs: This is the color of a smurf that has been bitten by a gnapp?
+Purple
+10
+
+Smurfs: This is the only character in the introductory song who speaks?
+Gargamel
+10
+
+smurfs: this is the youngest of all the smurfs?
+Baby smurf
+10
+
+smurfs: this smurf is the only smurf who wears glasses?
+Brainy smurf
+10
+
+Smurfs: When conducting the orchestra, Papa Smurf stands on this?
+Mushroom
+10
+
+Snails can sleep for ____ without eating
+3 years
+10
+
+Snails have no teeth and no jaws, how do they eat?
+File their food with their tongue
+10
+
+Snails mate only once in their lifetime, but it can take up to ____ hours
+Twelve
+10
+
+Snakes are reptiles. What are frogs?
+Amphibians
+10
+
+Snakes: how does a python kill it's prey?
+By suffocating it
+10
+
+Snakes: two fluid ounces of a this snake's venom is all it takes to kill an elephant or 20 people?
+King cobra
+10
+
+Snooker originated in?
+India
+10
+
+snow crash: name the book's main character?
+Hiro protagonist
+10
+
+snow crash: name the hacker who is infected with snow crash, owner of the black sun:?
+Da5id
+10
+
+snow crash: name the mafia henchman who wields reason:?
+Fisheye
+10
+
+Snow Crash: Nova Sicilia, Narcolombia, Mr. Lee's Greater Hong Kong, etc, are what?
+Franchulatesfranchises
+10
+
+snow crash: what does ng industries specialize in?
+Security
+10
+
+Snow Crash: What does Y.T. stand for?
+Yours truly
+10
+
+Snow Crash: What is Jason Breckenridge's mafia nickname?
+The iron pumper
+10
+
+snow crash: what is the language spoken by taxi drivers?
+Taxilinga
+10
+
+Snow Crash: What is the largest religious franchulate (whole name)?
+Reverend waynes pearly gates
+10
+
+snow crash: what is the name of y.t.'s kourier boyfriend?
+Roadkill
+10
+
+snow crash: what is your image or icon called in the metaverse?
+Avatar
+10
+
+snow crash: what security company arrests y.t. at the beginning of the book?
+Metacops
+10
+
+Snow Crash: Who gives Y.T. his dogtags?
+Uncle enzo
+10
+
+Snow Crash: Who is the head of the mafia?
+Uncle enzo
+10
+
+Snow Crash: Who removes dead avatars from The Black Sun?
+Graveyard daemons
+10
+
+Soap Operas (old and new)?
+General Hospital
+10
+
+Soap was originally made by boiling fat and adding ____ to it
+Lye
+10
+
+Soap what's the capital of illinois?
+Springfield
+10
+
+Sodium barcarbonate is better known as ____
+Baking soda
+10
+
+Sodium Hydroxide is more commonly known as ____
+Lye
+10
+
+Sofia is the capital of ____
+Bulgaria
+10
+
+Soft drinks are American's favorite beverage. Water ranks #2, and milk is #3. The average American drinks about ____ gallons of soft drinks per year
+52
+10
+
+Softball began being played in Chicago in what year?
+1888
+10
+
+Softball is a variation on which game?
+Baseball
+10
+
+Software: Who invented Tetris?
+Alexi Pazhitnov
+10
+
+Solfatara in Southern Italy is a what?
+Volcano
+10
+
+Solidified milk fat, especially cows milk, used principally as a food item?
+Butter
+10
+
+Solzhenitsyn What were Christmas tree icicles originally made from?
+Lead
+10
+
+Some Chinese typewriters have ____ characters
+5,700
+10
+
+Some Eskimos have been known to use ____ to keep their food from freezing
+Refrigerators
+10
+
+Some hotels in Las Vegas have ____ floating in their swimming pools
+Gambling tables
+10
+
+Some moral purists in the Middle Ages believed that women's ____ ought to be covered up because the Virgin Mary had conceived a child through them
+Ears
+10
+
+Some ribbon worms will eat ____ if they cant find any food
+Themselves
+10
+
+Some snakes can take as long as ____ ____ hours to copulate
+24
+10
+
+Some soft drinks are made sweeter by adding?
+Coal
+10
+
+Some very Orthodox Jew refuse to speak Hebrew, believing it to be a language reserved only for the?
+Prophets
+10
+
+Somebody who rings bells?
+Campanologist
+10
+
+Someone able to use both hands equally well?
+Ambidextrous
+10
+
+Someone abstaining from sexual relations?
+Celibate
+10
+
+Someone who grinds their teeth is a?
+Bruxomaniac
+10
+
+Someone who is prejudiced against Jews?
+Anti-semetic
+10
+
+Someone who talks too much is said to 'talk the hind legs?
+Off a donkey
+10
+
+Someone who treats feet and their ailments?
+Chiropodist
+10
+
+Someone with firmly fixed opinions is said to be dyed in what?
+The wool
+10
+
+Something arousing sexual desire?
+Aphrodisiac
+10
+
+Something free of charge?
+Buckshee
+10
+
+Something smaller than an electron, with 1/3 of its charge?
+Quark
+10
+
+Something that containing both letters and numbers?
+Alphanumeric
+10
+
+Somethings gotten hold of my heart was a hit in january 89 for who?
+Marc almond & gene pitney
+10
+
+Somewhere out there is a song from what movie?
+An American tail
+10
+
+Somnus was the roman god of ____
+Sleep
+10
+
+Son of laius, and later, killed his father to marry his mother?
+Oedipus
+10
+
+Sonar is also known by its British name of?
+Asdic
+10
+
+Song title: ticket to ____
+Ride
+10
+
+Song writers: who wrote woodstock?
+Joni mitchell
+10
+
+Songs & Songwriters: What Bob Dylan song introduced Sonny and Cher to the world?
+I Got You, Babe
+10
+
+Sorrowful song or poem?
+Elegy
+10
+
+Sound travels fastest in which form of medium?
+Solid
+10
+
+South africa has mines deeper than any other country in the world, at depths of almost 4 kilometres at the?
+Western deep levels mine
+10
+
+South Africa produces two-thirds of the world's?
+Gold
+10
+
+South Africa's Robben Island takes its name from which creatures?
+Seals
+10
+
+South American gauchos were known to put raw steak under their saddles before starting a day's riding, in order to ____ the meat
+Tenderise
+10
+
+South of Tucson, Arizona, most of the road signs are in what system?
+Metric
+10
+
+South West Africa is the previous name of which country?
+Namibia
+10
+
+Southern comfort is made from a base of bourbon whiskey and flavouring from which fruit?
+Peach
+10
+
+Southpaw to us means a boxer who leads with his right hand; but in which sport did the term originate?
+Baseball
+10
+
+Space for bells in a church tower?
+Belfry
+10
+
+Space satellite was launched in april 1962, named after a character in shakespeare's the tempest?
+Ariel
+10
+
+Spaceman Spiff was a charcter on which eighties cartoon strip?
+Calvin and Hobbes
+10
+
+Spaniard rodrigo diaz de viva was better known as?
+El Cid
+10
+
+Spanish bull fighter?
+Toreador
+10
+
+Spanish dictator Franco nominated whom as his successor?
+Prince juan carlos
+10
+
+Spanish or Italian name for a bar or wine shop?
+Cantina
+10
+
+Spanish word for redhead?
+Pelirrojo
+10
+
+Spasibo is Russian for...?
+Thank you
+10
+
+Speaker's Corner is a feature of which London park?
+Hyde park
+10
+
+Speaking of underwear, what does bvd stand for?
+Bradley, vorhees & day
+10
+
+Spear, apple and pepper are types of which plant?
+Mint
+10
+
+Specialist in psychology?
+Psychologist
+10
+
+Species what country are you stuck in if you're doing hard time at boniato prison?
+Cuba
+10
+
+Specifically, what is the westernmost point in the contiguous u.s?
+Cape alava, Washington
+10
+
+Spectacles protecting the eyes from harm?
+Goggles
+10
+
+Speech disorder characterized by involuntary hesitations & rapid repetitions of speech elements (speech & speech disorders)?
+Stuttering
+10
+
+Spice Girl Mel B's former husband, Jimmy Gulzar, was found guilty of a charge of common assault. What is the name of the couple's daughter?
+Phoenix Chi 
+10
+
+Spiral slide at a funfair?
+Helter-skelter
+10
+
+Spiral staircases in medieval castles are running in what direction?
+Clockwise
+10
+
+Spirit obtained from petroleum and used as a cleaning agent?
+Benzine
+10
+
+Spirit of the times,trend of thought and feeling in a period?
+Zeitgeist
+10
+
+Sport: Olympics: Who swept the men's Alpine skiing events at the 1968 Winter Olympics?
+Jean-Claude Killy
+10
+
+Sports: ____ is used as a center for golf balls and in antifreeze mixtures
+Honey
+10
+
+Sports: (?) Which American became world chess champion in 1972?
+Bobby Fischer
+10
+
+Sports: (2002) Name the last non European driver to win the FormulaOne drivers championship?
+Jacques Villeneuve
+10
+
+Sports: 1950s: who was England's youngest ever footballer till 1998 and possessed one of the most powerful shots in the history of football, but died of his injuries after the fateful 1958 Munich crash?
+Duncan edwards
+10
+
+Sports: 1950s: who was merely a teenager when the fateful 1958 Munich crash occured, survived it, and later became one of England's greatest players, captaining Manchester united to their first european cup trophy?
+Sir bobby charlton
+10
+
+Sports: 1950s: who was the manager of Manchester united on board the fateful plane when it crashed on the munich runway in 1958, and suffered critical injuries, only to make a comeback at the end of the season?
+Sir matt busby
+10
+
+Sports: 1950s: who was the Manchester united captain on board who perished along with seven of his teammates on that tragic day in 1958 in Munich?
+Johnny carey
+10
+
+Sports: 1956, which Manchester City goalie unknowingly completed the FA Cup Final against Birmingham City with a broken neck?
+Bert trautman
+10
+
+Sports: 1965, Which became the first team to play in consecutive League Cup Finals?
+Leicester City
+10
+
+Sports: 1970s: Which horse won the Grand National for the first of three times in 1973?
+Red Rum
+10
+
+Sports: 1976, who lost his British heavyweight title to Joe Bugner in round one?
+Richard Dunn
+10
+
+Sports: 1978 World Cup final. Dick Nanninga of Holland made sporting history,how?
+First sub to score
+10
+
+Sports: 1980s: In 1981, largely thanks to the efforts of Ian Botham and Bob Willis, from whom did the England cricket team snatch a remarkable victory?
+Australia
+10
+
+Sports: 1980s: What puckmaster played as an Aero, Redwing, and a Whaler?
+Gordie howe
+10
+
+Sports: 1980s: Who was the VIP tosser who started the 1985 Baseball World Series?
+Ronald reagan
+10
+
+Sports: 1990s: In 1992, what San Francisco 49ers star was listed as the highest paid?
+Joe montana
+10
+
+Sports: 1990s: In 1992, what Spanish cyclist won his second tour de france?
+Miguel indurain
+10
+
+Sports: 1990s: In 1992, what tennis star made the cover of the magazine longevity?
+Jimmy connors
+10
+
+Sports: 1990s: In 1992, what tennis star played in her 20th wimbledon?
+Martina navratilova
+10
+
+Sports: 1990s: In 1993, this Algerian broke the 8-year old world record for the mile?
+Yabes ondieki
+10
+
+Sports: 1990s: In 1993, this city won the bid for the 2000 Summer Olympics?
+Sydney
+10
+
+Sports: 1990s: In the 1994 Japanese grand prix, whose car hit a marshal?
+Martin brundle
+10
+
+Sports: 1990s: What baseball skipper was named national league manager of the year 1992?
+Jim leyland
+10
+
+Sports: 19th Century: this game (involving a net) was introduced in 1874 as sphairistike?
+Tennis
+10
+
+Sports: 2000s: 2001 world motocross champion?
+Jamie Dobb
+10
+
+Sports: 2000s: 2002, sponsor of the football league?
+Nationwide
+10
+
+Sports: 2000s: 2002, which football club will play at a new stadium called Walkers Bowl next season?
+Leicester City
+10
+
+Sports: 2000s: 2002, which jockey rode Bindaree to victory in this years Grand National?
+Jim Culloty
+10
+
+Sports: 2000s: 2002, who beat Stephen Hendry to win the Embassy World Snooker championship?
+Peter Ebdon
+10
+
+Sports: 2000s: 2002, who is the current chief executive of the Football Association?
+Adam Crozier
+10
+
+Sports: 2000s: 2002, who to date has scored most points for Scotland in Rugby Union internationals?
+Gavin hastings
+10
+
+Sports: 2000s: 2002, winners of the University Boatrace?
+Oxford, dark blues
+10
+
+Sports: 2000s: 2002, Winter Olympics, which team defeated the USA to win the ice hockey gold?
+Canada
+10
+
+Sports: 90 minutes is the regulation length of what field based ball game?
+Football
+10
+
+Sports: A 'featherie' was an early form of' which piece of sports equipment?
+Golf ball
+10
+
+Sports: A bowling pin need only tilt how far in order to fall down (it's a decimal)?
+7.5 degrees
+10
+
+Sports: A forfeited game in ____ is recorded as a 9-0 score. In football it is recorded as a 1-0 score
+Baseball
+10
+
+Sports: A fun winter sport?
+Snowboarding
+10
+
+Sports: A game of hocky starts with a ____
+Bully-off
+10
+
+Sports: A game of pool is referred to as a ____
+Frame
+10
+
+Sports: A game played with rackets and shuttlecock?
+Badminton
+10
+
+Sports: A jogger's heel strikes the ground ____ times per mile
+1,500
+10
+
+Sports: A snooker table has how many pockets?
+Six
+10
+
+Sports: A sporting outsider?
+Underdog
+10
+
+Sports: A ten pin bowling ball has how many holes?
+3
+10
+
+Sports: AFL: West Coast ____
+Eagles
+10
+
+Sports: AFL: Western ____
+Bulldogs
+10
+
+Sports: Against which country was Maradona sent off during the 1982 world Cup finals?
+Brazil
+10
+
+Sports: Alan Cork, with 145 goals holds the all time League scoring record for which football club?
+Wimbledon
+10
+
+Sports: American city where the Suns play basketball?
+Phoenix
+10
+
+Sports: American Football: 1960s: This team won the first super bowl?
+Green bay
+10
+
+Sports: American Football: 1980s: This team destroyed the Redskins in the 1984 superbowl?
+Raiders
+10
+
+Sports: American Football: No nfl team which plays its home games in a domed stadium has ever won a ____
+Super bowl
+10
+
+Sports: American Football: What football player rushed for 2,003 yards in 1973?
+OJ Simpson
+10
+
+Sports: An olympic sized pool has how many lanes?
+8
+10
+
+Sports: Archie moore, was world champion in what sport from 1952-1962?
+Boxing
+10
+
+Sports: As who is Cassius Clay now known?
+Mohammed Ali
+10
+
+Sports: Aston Villas colours?
+Claret and Blue
+10
+
+Sports: At which football ground would you find the Rous and Rookery stands?
+Watford
+10
+
+Sports: At which motor racing venue will you find the Niki LaudaKurve & the Jochen Rindt Kurve?
+A1 Ring, Austria
+10
+
+Sports: At which motor racing venue would you find the Coca Cola Kurve, Ford Kurve and Dunlop Kurve?
+Nurburgring
+10
+
+Sports: At which motor racing venue would you find the Jim Clark Kurve and the Ayrton Senna Kurve?
+Hockenheim
+10
+
+Sports: At which sport was Fred Perry World champion in 1929?
+Table tennis
+10
+
+Sports: Australian john newcombe played in what sport?
+Tennis
+10
+
+Sports: Australian Rules football was originally designed to give ____ something to play during the off season
+Cricketers
+10
+
+Sports: Ayrton Senna died in an accident at which grand prix?
+San Marino
+10
+
+Sports: Badminton: Badminton star Liem Swie King represented which country?
+Indonesia
+10
+
+Sports: Baseball: 1990s: Hall of Famer and 2nd baseman for Pennant-winning 1941 Brooklyn Dodgers who died in the early 90s?
+Billy herman
+10
+
+Sports: Baseball: An American league player to win the triple crown?
+Mickey mantle
+10
+
+Sports: Baseball: Baseballer Joe Schlabotnik's greatest fan?
+Charlie brown
+10
+
+Sports: Baseball: bill veeck wanted to move his st louis browns to this city in 1953?
+Los angeles
+10
+
+Sports: Baseball: both ted williams (1938) and yaz (1960) played minor league ball here?
+Minneapolis
+10
+
+Sports: Baseball: hank aaron received more of what than any other person?
+Personal mail
+10
+
+Sports: Baseball: star Joe Dimaggio married which actress?
+Marilyn monroe
+10
+
+Sports: Baseball: Teams (name, no city)?
+Yankees
+10
+
+Sports: Baseball: The Atlanta ____
+Braves
+10
+
+Sports: Baseball: The Baltimore ____
+Orioles
+10
+
+Sports: Baseball: The Boston ____
+Red Sox
+10
+
+Sports: Baseball: the Boston Red____
+Sox
+10
+
+Sports: Baseball: The Chicago ____
+Cubs
+10
+
+Sports: Baseball: The Cleveland ____
+Indians
+10
+
+Sports: Baseball: The Florida ____
+Marlins
+10
+
+Sports: Baseball: The Houston ____
+Astros
+10
+
+Sports: Baseball: The Kansas City ____
+Royals
+10
+
+Sports: Baseball: The Milwaukee ____
+Brewers
+10
+
+Sports: Baseball: The New York ____
+Mets
+10
+
+Sports: Baseball: The Philadelphia ____
+Phillies
+10
+
+Sports: Baseball: The San Diego ____
+Padres
+10
+
+Sports: Baseball: the st louis ____
+Cardinals
+10
+
+Sports: Baseball: The St. Louis ____
+Cardinals
+10
+
+Sports: Baseball: The Texas ____
+Rangers
+10
+
+Sports: Baseball: The Toronto ____
+Bluejays
+10
+
+Sports: Baseball: who is the career leader in rbis?
+Lou gehrig
+10
+
+Sports: Baseball: who was the last American league player to win the triple crown?
+Mickey mantle
+10
+
+Sports: Baseball: who was the last nl pitcher to win more than 25 games in a single season?
+Sandy koufax
+10
+
+Sports: Baseball: Who wore a cabbage leaf under his cap?
+Babe Ruth
+10
+
+Sports: Basketball: NBA Stars (Past or Present)?
+Clyde Drexler
+10
+
+Sports: Basketball: NBA Stars (Past or Present)?
+Michael Jordan
+10
+
+Sports: Basketball: NBA Teams (ie, Bulls)?
+Celtics
+10
+
+Sports: Basketball: NBA Teams (ie, Bulls)?
+Lakers
+10
+
+Sports: Basketball: The Boston ____
+Celtics
+10
+
+Sports: Basketball: the Chicago ____
+Bulls
+10
+
+Sports: Basketball: The Denver ____
+Nuggets
+10
+
+Sports: Basketball: The Los Angeles ____
+Lakers
+10
+
+Sports: Basketball: the Milwaukee ____
+Bucks
+10
+
+Sports: Basketball: The Seattle ____
+Supersonics
+10
+
+Sports: Basketball: The Utah ____
+Jazz
+10
+
+Sports: Basketball: Which position is usually played by the tallest member on a basketball team?
+Centre
+10
+
+Sports: Before 1850, golf balls were made of leather and were stuffed with____
+Feathers
+10
+
+Sports: Billie Jean King competed in which modern sport?
+Tennis
+10
+
+Sports: Bobby locke was the first south african golfer to win which open?
+-- Answer metadata begin
+{
+    "answers": ["British open", "British"]
+}
+-- Answer metadata end
+10
+
+Sports: Brazilian Formula-1 champ in 81, 83, and 87 (careful)?
+Nelson piquet
+10
+
+Sports: Brian Lara broke the record for the highest first class cricket innings by scoring 501 not out against which county in 1994?
+Durham
+10
+
+Sports: British decathlete,Olympic champion 1980 & 84?
+Daly thompson
+10
+
+Sports: British golfers to have won post war Open championships?
+Fred Daly
+10
+
+Sports: British motor racing World Champion 1992?
+Nigel mansell
+10
+
+Sports: British sprinter, subject of the film Chariots of Fire?
+Harold Abrahams
+10
+
+Sports: By which name is John Sholto-Douglas better known in the boxing world?
+Marquis of Queensberry
+10
+
+Sports: Christine Child won six British titles in the 1970s, in which sport?
+Judo
+10
+
+Sports: Colourful chairman of Fulham F C?
+Mohamed Al fayed
+10
+
+Sports: Cricket, West Indian paceman who captained Gloucestershire?
+Courtney Walsh
+10
+
+Sports: Cricket: 1950s: Which Len captained England as they won the Ashes?
+Hutton
+10
+
+Sports: David Beckhams nickname?
+Goldenballs
+10
+
+Sports: During a bully-off how many times are hockey sticks tapped together?
+3
+10
+
+Sports: English decathlete?
+Daley Thompson
+10
+
+Sports: English football team, nicknamed the baggies?
+West Bromwich Albion
+10
+
+Sports: English ice dance champions?
+Torvill and Dean
+10
+
+Sports: English National Hunt Jockey, champion jockey 1982 and 1986-1992?
+Peter Scudamore
+10
+
+Sports: Female Pentathlon winner at the 1972 Olympics?
+Mary peters
+10
+
+Sports: Female skater who won Olympic gold in 1988?
+Katarina Witt
+10
+
+Sports: First Australian to win the Wimbledon mens singles title?
+Norman Brookes
+10
+
+Sports: First presenter of Match of the Day?
+Ken Wolstenholme
+10
+
+Sports: Football: 'Goldenballs' is also known as who?
+David Beckham
+10
+
+Sports: Football: 1950s: ____ beats Sweden 5-2 in Football's 6th World Cup in 1958 at Stockholm
+Brazil
+10
+
+Sports: Football: 1960s: What was the final score in England's victorious World Cup Final in 1966?
+4-2
+10
+
+Sports: Football: At which club did Rio Ferdinand begin his career?
+West ham
+10
+
+Sports: Football: At which football ground did 52 people die in a fire in May 1985?
+Bradford city
+10
+
+Sports: Football: For which Japanese club did Gary Lineker end his playing career?
+Grampus eight
+10
+
+Sports: Football: From what country was Adriy Shevchenko?
+Ukraine
+10
+
+Sports: Football: From what country was Alessandro Del Piero?
+Italy
+10
+
+Sports: Football: From what country was Bobby Charlton?
+England
+10
+
+Sports: Football: From what country was Carlos Valderrama?
+Colombia
+10
+
+Sports: Football: From what country was David Beckham?
+England
+10
+
+Sports: Football: From what country was Dennis Bergkamp?
+Holland
+10
+
+Sports: Football: From what country was Diego Maradona?
+Argentina
+10
+
+Sports: Football: From what country was Edgar Davids?
+Holland
+10
+
+Sports: Football: From what country was Eric Cantona?
+France
+10
+
+Sports: Football: From what country was Eusebio?
+Portugal
+10
+
+Sports: Football: From what country was Francesco Totti?
+Italy
+10
+
+Sports: Football: From what country was Franz Beckenbauer?
+Germany
+10
+
+Sports: Football: From what country was George Best?
+Northern Ireland
+10
+
+Sports: Football: From what country was Gerd Muller?
+Germany
+10
+
+Sports: Football: From what country was Gianluigi Buffon?
+Italy
+10
+
+Sports: Football: From what country was Hristo Sotichkov?
+Bulgaria
+10
+
+Sports: Football: From what country was Hugo Sanchez?
+Mexico
+10
+
+Sports: Football: From what country was Ian Rush?
+Wales
+10
+
+Sports: Football: From what country was Jay Jay Okocha?
+Nigeria
+10
+
+Sports: Football: From what country was Johann Cruyff?
+Holland
+10
+
+Sports: Football: From what country was Jurgen Klinsman?
+Germany
+10
+
+Sports: Football: From what country was Kenny Dalglish?
+Scotland
+10
+
+Sports: Football: From what country was Lilian Thuram?
+France
+10
+
+Sports: Football: From what country was Luis Enrique?
+Spain
+10
+
+Sports: Football: From what country was Luis Figo?
+Portugal
+10
+
+Sports: Football: From what country was Marco Van Basten?
+Holland
+10
+
+Sports: Football: From what country was Michael Owen?
+England
+10
+
+Sports: Football: From what country was Michael Platini?
+France
+10
+
+Sports: Football: From what country was Oliver Kahn?
+Germany
+10
+
+Sports: Football: From what country was Patric Viera?
+France
+10
+
+Sports: Football: From what country was Pavel Nedved?
+Czech Republic
+10
+
+Sports: Football: From what country was Pele?
+Brazil
+10
+
+Sports: Football: From what country was Raul?
+Spain
+10
+
+Sports: Football: From what country was Rivaldo?
+Brazil
+10
+
+Sports: Football: From what country was Robert Pires?
+France
+10
+
+Sports: Football: From what country was Roberto Baggio?
+Italy
+10
+
+Sports: Football: From what country was Roger Milla?
+Cameroon
+10
+
+Sports: Football: From what country was Romario?
+Brazil
+10
+
+Sports: Football: From what country was Ronaldinho?
+Brazil
+10
+
+Sports: Football: From what country was Ronaldo?
+Brazil
+10
+
+Sports: Football: From what country was Ruud van Nistelrooy?
+Holland
+10
+
+Sports: Football: From what country was Socrates?
+Brazil
+10
+
+Sports: Football: From what country was Zico?
+Brazil
+10
+
+Sports: Football: From what country was Zinedine Zidane?
+France
+10
+
+Sports: Football: Host country of the 10th world Football championship in 1974?
+West Germany
+10
+
+Sports: Football: Host country of the 12th world Football championship in 1982?
+Spain
+10
+
+Sports: Football: Host country of the 13th world Football championship in 1986?
+Mexico
+10
+
+Sports: Football: Host country of the 6th world Football championship in 1958?
+Sweden
+10
+
+Sports: Football: Host country of the 9th world Football championship in 1970?
+Mexico
+10
+
+Sports: Football: How many times was Gary Lineker sent off during his career?
+None
+10
+
+Sports: Football: In what country would you find: Athletic Bilbao, Real Sociedad and F.C Levante?
+Spain
+10
+
+Sports: Football: In what country would you find: Bayer Levekusen, Borussia Monchengladbach and Hannover 96?
+Germany
+10
+
+Sports: Football: In what country would you find: Benfica, FC Porto and Sporting Lisbon?
+Portugal
+10
+
+Sports: Football: In what country would you find: Celtic, Hearts & Hibernian?
+Scotland
+10
+
+Sports: Football: In what country would you find: Everton, Chelsea, Wigan and Tottenham Hotspurs?
+England
+10
+
+Sports: Football: In what country would you find: FC Twente, Ajax and Feyenoord?
+Holland
+10
+
+Sports: Football: In what country would you find: Juventus, Lazio, Palermo and Internazionale?
+Italy
+10
+
+Sports: Football: In what country would you find: Olympiakos and Panathanaikos?
+Greece
+10
+
+Sports: Football: In what country would you find: PSG, Olympique Lyonnais and Marseilla?
+France
+10
+
+Sports: Football: In which year was Ryan Giggs the PFA Young Footballer of The Year?
+1992
+10
+
+Sports: Football: Name scotlands oldest football club?
+Queens park
+10
+
+Sports: Football: Ron Harris made 665 league appearances for which football club between 1962-1980?
+Chelsea
+10
+
+Sports: Football: Scorer of the 'hand of god' goal against England, only to silence the English fans later in the match as he sidewinded past five defenders and slotted the ball past peter shilton?
+Diego maradona
+10
+
+Sports: Football: The Baltimore ____
+Colts
+10
+
+Sports: Football: The Buffalo ____
+Bills
+10
+
+Sports: Football: The Chicago ____
+Bears
+10
+
+Sports: Football: The Cincinnati ____
+Bengals
+10
+
+Sports: Football: The Cleveland ____
+Browns
+10
+
+Sports: Football: The Dallas ____
+Cowboys
+10
+
+Sports: Football: The Denver ____
+Broncos
+10
+
+Sports: Football: The Miami ____
+Dolphins
+10
+
+Sports: Football: The Minnesota ____
+Vikings
+10
+
+Sports: Football: The New Orleans ____
+Saints
+10
+
+Sports: Football: The New York ____
+Cosmos
+10
+
+Sports: Football: The Pittsburgh ____
+Steelers
+10
+
+Sports: Football: The San Diego ____
+Chargers
+10
+
+Sports: Football: The Seattle ____
+Seahawks
+10
+
+Sports: Football: UK: 1950s: Which Billy became the first English football player to win 100 caps?
+Wright
+10
+
+Sports: Football: UK: what is Manchester united's home stadium called?
+Old trafford
+10
+
+Sports: Football: UK: what is Manchester united's nickname?
+Red devils
+10
+
+Sports: Football: UK: what is Manchester united's stadium nicknamed?
+Theatre of dreams
+10
+
+Sports: Football: UK: what is newcastle united's nickname?
+Magpies
+10
+
+Sports: Football: UK: what is norwich city's nickname?
+Canaries
+10
+
+Sports: Football: UK: Which Arsenal manager won six trophies in eight years?
+George graham
+10
+
+Sports: Football: UK: Which club became the first London club to win the league in 1935?
+Arsenal
+10
+
+Sports: Football: UK: Which club first played a league game in 1888?
+Aston villa
+10
+
+Sports: Football: UK: Which club is haunted by former manager Frank Chapman?
+Arsenal
+10
+
+Sports: Football: UK: Which club only won 3 games in the season 1912-1913?
+Arsenal
+10
+
+Sports: Football: UK: Which club only won one game in 1912-1913?
+Arsenal
+10
+
+Sports: Football: UK: Which club paid ?3.5 million for Savo Milosevic in 1995?
+Aston villa
+10
+
+Sports: Football: UK: Which club played at Perry Bar in 1876?
+Aston villa
+10
+
+Sports: Football: UK: Which club received ?5.5 million for David Platt in 1991?
+Aston villa
+10
+
+Sports: Football: UK: Which club was disbanded in 1901?
+Barnet
+10
+
+Sports: Football: UK: Which club was formerly called Dial Square?
+Arsenal
+10
+
+Sports: Football: UK: Which club was formerly called Woolwich Reds?
+Arsenal
+10
+
+Sports: Football: UK: Which club was founded in 1886?
+Arsenal
+10
+
+Sports: Football: UK: who was the first player to score a total of 100 goals in the newly-formed English premier league?
+Alan shearer
+10
+
+Sports: Football: UK: who was the scotsman who guided Manchester united to an unprecedented English league, fa cup and european cup treble, and was later to be knighted on qeii's birthday?
+Sir alex ferguson
+10
+
+Sports: Football: UK: winners of the premiership title 2002?
+Arsenal
+10
+
+Sports: Football: What is the top division in England known as?
+Premier League
+10
+
+Sports: Football: What is the top division in France known as?
+Ligue 1
+10
+
+Sports: Football: What is the top division in Germany known as?
+Bundesliga
+10
+
+Sports: Football: What is the top division in Holland known as?
+Eredivisie
+10
+
+Sports: Football: What is the top division in Italy known as?
+Serie A
+10
+
+Sports: Football: What is the top division in Portugal known as?
+Primeira Liga
+10
+
+Sports: Football: What is the top division in Spain known as?
+La Liga
+10
+
+Sports: Football: What relation, if any, is there between Rio and Les Ferdinand?
+They are cousins
+10
+
+Sports: Football: What team would you find playing at Anfield?
+Liverpool
+10
+
+Sports: Football: What team would you find playing at Celtic Park?
+Celtic
+10
+
+Sports: Football: What team would you find playing at Estadio da Luz?
+Benfica
+10
+
+Sports: Football: What team would you find playing at Estadio do Dragao?
+FC Porto
+10
+
+Sports: Football: What team would you find playing at Estadio Santiago Bernabeu?
+Real Madrid
+10
+
+Sports: Football: What team would you find playing at Frankenstadion?
+Nuremberg
+10
+
+Sports: Football: What team would you find playing at Hampden Park?
+Queens Park
+10
+
+Sports: Football: What team would you find playing at Ibrox Stadium?
+Rangers
+10
+
+Sports: Football: What team would you find playing at Juventus Stadium?
+Juventus
+10
+
+Sports: Football: What team would you find playing at Mercedes-Benz Arena?
+Stuttgart
+10
+
+Sports: Football: What team would you find playing at MMArena?
+Le Mans
+10
+
+Sports: Football: What team would you find playing at Munich Olympiastadion?
+Munich
+10
+
+Sports: Football: What team would you find playing at Nou Camp?
+Barcelona
+10
+
+Sports: Football: What team would you find playing at Old Trafford?
+Manchester United
+10
+
+Sports: Football: What team would you find playing at San Siro?
+Milan
+10
+
+Sports: Football: What team would you find playing at Stade Velodrome?
+Marseille
+10
+
+Sports: Football: What team would you find playing at Stadio Olimpico?
+Roma
+10
+
+Sports: Football: What team would you find playing at Stadium Municipal?
+Toulouse
+10
+
+Sports: Football: What team would you find playing at The Stadium of Light?
+Sunderland
+10
+
+Sports: Football: What team would you find playing at Vicente Calderon Stadium?
+Athletico Madrid
+10
+
+Sports: Football: Which Arsenal forward was given his own chat show on national television in 1998?
+Ian wright
+10
+
+Sports: Football: Which beer sponsored the 1998/99 League Cup?
+Worthington
+10
+
+Sports: Football: Which British star was named European Footballer of The Year in 1968?
+George best
+10
+
+Sports: Football: Which club was Eric Cantona playing for before he joined Manchester United?
+Leeds united
+10
+
+Sports: Football: Which colourful character was European & English footballer of the year in 1968?
+George best
+10
+
+Sports: Football: Which computer tycoon became chairman of Tottenham Hotspur in 1991?
+Alan sugar
+10
+
+Sports: Football: Which country had 2 players sent off in the 1990 World Cup Final?
+Argentina
+10
+
+Sports: Football: Which Dutch club plays in the stadium called 'de kuip'?
+Feyenoord
+10
+
+Sports: Football: Which former England manager would you associate with turnips?
+Graham taylor
+10
+
+Sports: Football: Which former Liverpool player became the player/manager at Swansea in the 1990's?
+Jan molby
+10
+
+Sports: Football: Which former Tottenham keeper went on to become manager of Barnet?
+Ray clemence
+10
+
+Sports: Football: Which goalkeeper became the first player to reach 200 Premiership appearances?
+Neville southall
+10
+
+Sports: Football: which is the first country to win three world cups?
+Brazil
+10
+
+Sports: Football: Which is the only position in Football allowed to handle the ball?
+Goalkeeper
+10
+
+Sports: Football: Which manager was sacked at Chelsea before taking over at Newcastle?
+Ruud gullit
+10
+
+Sports: Football: Which player finished as top-scorer in the Euro '96 Finals?
+Alan shearer
+10
+
+Sports: Football: Which player top-scored for Arsenal with 16 premiership goals during the 1997/98 season?
+Dennis bergkamp
+10
+
+Sports: Football: Which player top-scored for Leeds with 16 premiership goals during the 1997/98 season?
+Jimmy floyd hasselbaink
+10
+
+Sports: Football: Which player was booked for showing the ref a yellow card, when it fell from his pocket during the game, in 1995?
+Paul gascoigne
+10
+
+Sports: Football: Which Premiership club shared Crystal Palace's ground in 1996?
+Wimbledon
+10
+
+Sports: Football: Which team from the North East is supported by Tony Blair?
+Newcastle
+10
+
+Sports: Football: Which team lost both Cup Finals in addition to being relegated from the Premiership in 1997?
+Middlesborough
+10
+
+Sports: Football: Which team were Manchester United playing when Eric Canona aimed his infamous flying kick at a spectator?
+Crystal palace
+10
+
+Sports: Football: which was the first country to host the world cup?
+Uruguay
+10
+
+Sports: Football: which was the first country to win the world cup?
+Uruguay
+10
+
+Sports: Football: Who became the most expensive defender in the world when he signed for Manchester United, for ?10.75m, in April 1998?
+Jaap stam
+10
+
+Sports: Football: Who did Manchester United beat to go through to the 1999 European Cup Final?
+Juventus
+10
+
+Sports: Football: Who did Manchester United buy for ?12.6 million on August 20th 1998?
+Dwight yorke
+10
+
+Sports: Football: Who scored a hat-trick on his league debut in 1988, for Southampton against Arsenal?
+Alan shearer
+10
+
+Sports: Football: Who scored his 250th club goal during the 1999 FA Cup Final?
+Teddy sheringham
+10
+
+Sports: Football: Who was the first player to ever score 5 goals in a Premiership game?
+Andy cole
+10
+
+Sports: Football: Who won the Champions League in 1956?
+Real Madrid
+10
+
+Sports: Football: Who won the Champions League in 1961?
+Benfica
+10
+
+Sports: Football: Who won the Champions League in 1963?
+Milan
+10
+
+Sports: Football: Who won the Champions League in 1964?
+Internazionale
+10
+
+Sports: Football: Who won the Champions League in 1966?
+Real Madrid
+10
+
+Sports: Football: Who won the Champions League in 1967?
+Celtic
+10
+
+Sports: Football: Who won the Champions League in 1968?
+Manchester United
+10
+
+Sports: Football: Who won the Champions League in 1969?
+Milan
+10
+
+Sports: Football: Who won the Champions League in 1970?
+Feyenoord
+10
+
+Sports: Football: Who won the Champions League in 1971?
+Ajax
+10
+
+Sports: Football: Who won the Champions League in 1974?
+Bayern Munich
+10
+
+Sports: Football: Who won the Champions League in 1977?
+Liverpool
+10
+
+Sports: Football: Who won the Champions League in 1979?
+Nottingham Forest
+10
+
+Sports: Football: Who won the Champions League in 1981?
+Liverpool
+10
+
+Sports: Football: Who won the Champions League in 1982?
+Aston Villa
+10
+
+Sports: Football: Who won the Champions League in 1983?
+Hamburg
+10
+
+Sports: Football: Who won the Champions League in 1984?
+Liverpool
+10
+
+Sports: Football: Who won the Champions League in 1985?
+Juventus
+10
+
+Sports: Football: Who won the Champions League in 1986?
+Steaua Bucuresti
+10
+
+Sports: Football: Who won the Champions League in 1987?
+Porto
+10
+
+Sports: Football: Who won the Champions League in 1988?
+PSV Eindhoven
+10
+
+Sports: Football: Who won the Champions League in 1989?
+Milan
+10
+
+Sports: Football: Who won the Champions League in 1991?
+Red Star Belgrade
+10
+
+Sports: Football: Who won the Champions League in 1992?
+Barcelona
+10
+
+Sports: Football: Who won the Champions League in 1993?
+Marseille
+10
+
+Sports: Football: Who won the Champions League in 1994?
+Milan
+10
+
+Sports: Football: Who won the Champions League in 1995?
+Ajax
+10
+
+Sports: Football: Who won the Champions League in 1996?
+Juventus
+10
+
+Sports: Football: Who won the Champions League in 1997?
+Borussia Dortmund
+10
+
+Sports: Football: Who won the Champions League in 1998?
+Real Madrid
+10
+
+Sports: Football: Who won the Champions League in 1999?
+Manchester United
+10
+
+Sports: Football: Who won the Champions League in 2000?
+Real Madrid
+10
+
+Sports: Football: Who won the Champions League in 2001?
+Bayern Munich
+10
+
+Sports: Football: Who won the Champions League in 2002?
+Real MAdrid
+10
+
+Sports: Football: Who won the Champions League in 2003?
+Milan
+10
+
+Sports: Football: Who won the Champions League in 2004?
+Porto
+10
+
+Sports: Football: Who won the Champions League in 2005?
+Liverpool
+10
+
+Sports: Football: Who won the Champions League in 2006?
+Barcelona
+10
+
+Sports: Football: Who won the Champions League in 2007?
+Milan
+10
+
+Sports: Football: Who won the Champions League in 2008?
+Manchester United
+10
+
+Sports: Football: Who won the Champions League in 2009?
+Barcelona
+10
+
+Sports: Football: Who won the Champions League in 2010?
+Internazionale
+10
+
+Sports: Football: Who won the Champions League in 2011?
+Barcelona
+10
+
+Sports: Football: Who won the Euros in 1960?
+Russia
+10
+
+Sports: Football: Who won the Euros in 1964?
+Spain
+10
+
+Sports: Football: Who won the Euros in 1968?
+Italy
+10
+
+Sports: Football: Who won the Euros in 1972?
+Germany
+10
+
+Sports: Football: Who won the Euros in 1976?
+Czechoslovakia
+10
+
+Sports: Football: Who won the Euros in 1980?
+Germany
+10
+
+Sports: Football: Who won the Euros in 1984?
+France
+10
+
+Sports: Football: Who won the Euros in 1988?
+Netherlands
+10
+
+Sports: Football: Who won the Euros in 1992?
+Denmark
+10
+
+Sports: Football: Who won the Euros in 1996?
+Germany
+10
+
+Sports: Football: Who won the Euros in 2000?
+France
+10
+
+Sports: Football: Who won the Euros in 2004?
+Greece
+10
+
+Sports: Football: Who won the Euros in 2008?
+Spain
+10
+
+Sports: Football: Who won the World Cup in 1930?
+Uruguay
+10
+
+Sports: Football: Who won the World Cup in 1934?
+Italy
+10
+
+Sports: Football: Who won the World Cup in 1950?
+Uruguay
+10
+
+Sports: Football: Who won the World Cup in 1954?
+Germany
+10
+
+Sports: Football: Who won the World Cup in 1958?
+Brazil
+10
+
+Sports: Football: Who won the World Cup in 1966?
+England
+10
+
+Sports: Football: Who won the World Cup in 1970?
+Brazil
+10
+
+Sports: Football: Who won the World Cup in 1974?
+Germany
+10
+
+Sports: Football: Who won the World Cup in 1978?
+Argentina
+10
+
+Sports: Football: Who won the World Cup in 1982?
+Italy
+10
+
+Sports: Football: Who won the World Cup in 1986?
+Argentina
+10
+
+Sports: Football: Who won the World Cup in 1990?
+Germany
+10
+
+Sports: Football: Who won the World Cup in 1994?
+Brazil
+10
+
+Sports: Football: Who won the World Cup in 1998?
+France
+10
+
+Sports: Football: Who won the World Cup in 2002?
+Brazil
+10
+
+Sports: Football: Who won the World Cup in 2006?
+Italy
+10
+
+Sports: Football: Who won the World Cup in 2010?
+Spain
+10
+
+Sports: Football: World Cup: In 2002, which team does abdullah sulaiman play for?
+Saudi arabia
+10
+
+Sports: Football: World Cup: In 2002, which team does Celestine Babayaro play for?
+Nigeria
+10
+
+Sports: Football: World Cup: In 2002, which team does christian ziege play for?
+Germany
+10
+
+Sports: Football: World Cup: In 2002, which team does dietmar hamann play for?
+Germany
+10
+
+Sports: Football: World Cup: In 2002, which team does frank leboeuf play for?
+France
+10
+
+Sports: Football: World Cup: In 2002, which team does Fredrik Ljungberg play for?
+Sweden
+10
+
+Sports: Football: World Cup: In 2002, which team does Grabriel Batistuta play for?
+Argentina
+10
+
+Sports: Football: World Cup: In 2002, which team does jason mcateer play for?
+Republic of Ireland
+10
+
+Sports: Football: World Cup: In 2002, which team does Juan Sebastian Veron play for?
+Argentina
+10
+
+Sports: Football: World Cup: In 2002, which team does kasey keller play for?
+Usa
+10
+
+Sports: Football: World Cup: In 2002, which team does luigi di biagio play for?
+Italy
+10
+
+Sports: Football: World Cup: In 2002, which team does mark kinsella play for?
+Republic of Ireland
+10
+
+Sports: Football: World Cup: In 2002, which team does mohammad al-shlhoub play for?
+Saudi arabia
+10
+
+Sports: Football: World Cup: In 2002, which team does muzzy izzet play for?
+Turkey
+10
+
+Sports: Football: World Cup: In 2002, which team does Nicklas Alexandersson play for?
+Sweden
+10
+
+Sports: Football: World Cup: In 2002, which team does Nwankwo Kanu play for?
+Nigeria
+10
+
+Sports: Football: World Cup: In 2002, which team does patrick vieira play for?
+France
+10
+
+Sports: Football: World Cup: In 2002, which team does pierre njanka play for?
+Cameroon
+10
+
+Sports: Football: World Cup: In 2002, which team does rigobert song play for?
+Cameroon
+10
+
+Sports: Football: World Cup: In 2002, which team does roberto carlos play for?
+Brazil
+10
+
+Sports: Football: World Cup: In 2002, which team does ronaldo play for?
+Brazil
+10
+
+Sports: Football: World Cup: In 2002, who was the most capped England player?
+David seaman
+10
+
+Sports: Football: World Cup: In 2002, who was the oldest player in the England squad?
+David seaman
+10
+
+Sports: Football: World Cup: In 2002, who's broken foot kept him out of the England Squad?
+Gary neville
+10
+
+Sports: Football: World Cup: Where was the 1966 world cup hosted?
+England
+10
+
+Sports: Football: World Cup: Where was the 1970 world cup hosted?
+Mexico
+10
+
+Sports: Football: World Cup: Where was the 1974 world cup hosted?
+West Germany
+10
+
+Sports: Football: World Cup: Where was the 1978 world cup hosted?
+Argentina
+10
+
+Sports: Football: World Cup: Where was the 1982 world cup hosted?
+Spain
+10
+
+Sports: Football: World Cup: Where was the 1986 world cup hosted?
+Mexico
+10
+
+Sports: Football: World Cup: Where was the 1990 world cup hosted?
+Italy
+10
+
+Sports: Football: World Cup: Where was the 1994 world cup hosted?
+USA
+10
+
+Sports: Football: World Cup: Where was the 1998 world cup hosted?
+France
+10
+
+Sports: Football: World Cup: Where was the 2002 world cup hosted?
+South Korea and Japan
+10
+
+Sports: Football: World Cup: Where was the 2006 world cup hosted?
+Germany
+10
+
+Sports: Football: World Cup: Where was the 2010 world cup hosted?
+South Africa
+10
+
+Sports: Football: World Cup: Where was the 2014 world cup hosted?
+Brazil
+10
+
+Sports: For what does Real stand in Real Madrids name?
+Royal
+10
+
+Sports: For which club was Marco van asten playing when he was European Footballer of the year 1988,1989 & 1992?
+A C Milan
+10
+
+Sports: Formal game or sports event in which people or teams compete against each other?
+Match
+10
+
+Sports: Former golf club, equiv to the modern No5 or 6 Iron used for approach shots?
+Mashie
+10
+
+Sports: French auto racer, 3 time Formula 1 champ (85-86, 89)?
+Alain prost
+10
+
+Sports: French motor racing driver who won the world championship 1985,86 and 89?
+Alain Prost
+10
+
+Sports: From which famous bridge does the boat race start?
+Putney
+10
+
+Sports: From which sport does the phrase' to win hands down' come?
+Horse racing
+10
+
+Sports: From which team did marlboro switch its backing to mclaren in the 1974 season?
+Brm
+10
+
+Sports: Golf, what is the American name for an albatross?
+Double eagle
+10
+
+Sports: Golf: Three under par on a hole of golf is called a(n) ____
+Albatross
+10
+
+Sports: Golf: which country has the world's highest golf course?
+Peru
+10
+
+Sports: Golf: Who hit the first golf shot on the moon?
+Alan Sheppard
+10
+
+Sports: Golfers warning cry?
+Fore
+10
+
+Sports: Grand National race course?
+Aintree
+10
+
+Sports: He holds the NHL record for the most goals scored during the regular season?
+Wayne gretzky
+10
+
+Sports: He was manager of Liverpool football club 1985-91?
+Kenny dalglish
+10
+
+Sports: he was the first man to run the mile in less than four minutes?
+Roger bannister
+10
+
+Sports: He was the NBA, MVP in 1976, 77, and 80?
+Kareem abdul-jabbar
+10
+
+Sports: Hockey: one of three 20 minute segments making up the game?
+Period
+10
+
+Sports: Hockey: The Boston ____
+Bruins
+10
+
+Sports: Hockey: The Buffalo ____
+Sabres
+10
+
+Sports: Hockey: The Calgary ____
+Flames
+10
+
+Sports: Hockey: The Detroit ____
+Red wings
+10
+
+Sports: Hockey: The Edmonton ____
+Oilers
+10
+
+Sports: Hockey: The Los Angeles ____
+Kings
+10
+
+Sports: Hockey: The Montreal ____
+Canadians
+10
+
+Sports: Hockey: The Pittsburgh ____
+Penguins
+10
+
+Sports: Hockey: The st louis ____
+Blues
+10
+
+Sports: Hockey: The St. Louis ____
+Blues
+10
+
+Sports: Hockey: The Toronto ____
+Maple leafs
+10
+
+Sports: Hockey: The Vancouver ____
+Canucks
+10
+
+Sports: Hockey: what divides the rink laterally into three equal areas?
+Blue line
+10
+
+Sports: Hockey: who won the hart trophy in 1991?
+Brett hull
+10
+
+Sports: Home to Bristol City?
+Ashton Gate
+10
+
+Sports: How many dimples does a golf ball have?
+336
+10
+
+Sports: How many FA Challenge cup trophies have there been?
+Three
+10
+
+Sports: How many feet high is a basketball net?
+Ten
+10
+
+Sports: How many games must you win to win a normal set in tennis?
+Six
+10
+
+Sports: How many innings make up a standard game of baseball?
+Nine
+10
+
+Sports: How many innings must a starting pitcher pitch to get a victory?
+Five
+10
+
+Sports: How many minutes is a major penalty in hockey?
+Five
+10
+
+Sports: How many minutes is each period of hockey?
+-- Answer metadata begin
+{
+    "answers": ["20", "twenty"]
+}
+-- Answer metadata end
+10
+
+Sports: How many Olympic gold medals has Mark Spitz won?
+Nine
+10
+
+Sports: How many pieces are found in a chess set?
+32
+10
+
+Sports: How many players are there on a Football team?
+Eleven
+10
+
+Sports: How many players are there on a water polo team?
+Seven
+10
+
+Sports: How many players in a hurling team?
+Fifteen
+10
+
+Sports: How many players make up a field hockey team?
+Eleven
+10
+
+Sports: How many points are awarded for a safety touch in football?
+Two
+10
+
+Sports: How many points for a brown on a snooker table?
+Four
+10
+
+Sports: How many red balls would you find in snooker?
+15
+10
+
+Sports: How many seams are there on a football (American)?
+Four
+10
+
+Sports: How many sides does a baseball homeplate have?
+Five
+10
+
+Sports: How many sides does a home-plate have?
+Five
+10
+
+Sports: How many stitches are on a regulation baseball?
+108
+10
+
+Sports: How many teams formed the original Football League in 1888?
+Twelve
+10
+
+Sports: If Brazil had won the 1998 tournament, how many times would they have won the Football World Cup?
+Five
+10
+
+Sports: If you were standing in a diamond which sport would you be playing?
+Baseball
+10
+
+Sports: In 1905 which inside forward and goal scorer was transferred from Middlesbrough to Sunderland for a fee of ?1000 which provoked the FA to limit transfer fees to ?350?
+Alf common
+10
+
+Sports: In 1981 which football club manager was quoted in The Sunday Times saying Football is not a matter of life and death, its much more important than that?
+Bill shankly
+10
+
+Sports: In 1983-4 who was the first British footballer to win the european Golden Boot?
+Ian rush
+10
+
+Sports: In 1986, what was the maximum fuel capacity (in litres) imposed in Formula 1 racing?
+195
+10
+
+Sports: In 1997 Graham Souness managed which Italian club for three months?
+Torino
+10
+
+Sports: In 1998,which athlete broke the world record for the mens 10,000 metres twice in 13 days?
+Haile Gebrselaisse
+10
+
+Sports: in April 2000 who were selected as the five greatest cricketers of the 20th century?
+Don bradman
+10
+
+Sports: In baseball, who won their first world series in 1969?
+New York Mets
+10
+
+Sports: In billiards a shot that is pocketed after striking another ball?
+In-off
+10
+
+Sports: In Campania SW Italy on a peninsula between the Bay of Naples and the Gulf of Salerno?
+Sorrento
+10
+
+Sports: In cricket 111 is believed to be unlucky, what is it called?
+Nelson
+10
+
+Sports: In cricket where is a yorker pitched to land?
+On or just inside the crease
+10
+
+Sports: In cricket, who scored Englands first Test century?
+W G Grace
+10
+
+Sports: In golf if a hole is 249 yards long, what par is it?
+Three
+10
+
+Sports: In golf what would you put in your shag bag?
+Practice balls
+10
+
+Sports: In golf where would you keep your practice balls?
+Shag bag
+10
+
+Sports: In hockey, what is the equivalent of a rugby scrum?
+Face-off
+10
+
+Sports: In judo if the referee shouts sono mama what do the players do?
+Freeze
+10
+
+Sports: In judo what does the referee shout to make players freeze?
+Sono-mama
+10
+
+Sports: In motorracing what colour flag denotes Danger no overtaking?
+Yellow
+10
+
+Sports: In rugby, what is the equivalent of a hockey face-off?
+Scrum
+10
+
+Sports: In showjumping what is the penalty for three refusals?
+Elimination
+10
+
+Sports: In showjumping, how many points are incurred for knocking down a fence?
+Four
+10
+
+Sports: In ten-pin bowling, how many points does a perfect game consist of?
+300
+10
+
+Sports: In the 1976 Olympics, who was the only female competitor not to be given a sex test?
+Princess anne
+10
+
+Sports: In the 1980s who was the only non American or european to win the Ladies singles at Wimbledon?
+Evonne Cawley
+10
+
+Sports: In the decathlon, which event comes third on the first day?
+Shot put
+10
+
+Sports: In the English f.a cup, what does 'f.a' mean?
+Football association
+10
+
+Sports: In this team sport each player gets a chance to play every position?
+Volleyball
+10
+
+Sports: In what game would you use the terms suidgers and squopping?
+Tiddlywinks
+10
+
+Sports: In what sport did the word 'crestfallen' originate?
+Cockfighting
+10
+
+Sports: In what sport do you find 'coursing'?
+Greyhound racing
+10
+
+Sports: In what sport is a 'chukka' a period of play?
+Polo
+10
+
+Sports: In what sport is the Heisman trophy awarded?
+American football
+10
+
+Sports: In what sport is the term 'terminal speed' used?
+Drag Racing
+10
+
+Sports: In what year did Torvell & Dean win the world championships?
+1981
+10
+
+Sports: In which city are the US football team The Redskins based?
+Washington
+10
+
+Sports: In which city in North America were the 1976 Summer Olympics held?
+Montreal
+10
+
+Sports: In which city is the Cotton Bowl played?
+Dallas
+10
+
+Sports: In which city is the Hockey Hall of Fame located?
+Toronto
+10
+
+Sports: In which city is the worlds largest indoor games convention held annually?
+London
+10
+
+Sports: In which event did Great Britain win their only Winter Olympic medal(bronze) in 1998 in Japan?
+Four-man bobsleigh
+10
+
+Sports: In which event did Richard Meade win Olympic gold?
+Equestrianism
+10
+
+Sports: In which Scottish town do Morton play their home matches?
+Greenock
+10
+
+Sports: In which Scottish town do Queen of the South play their home matches?
+Dumfries
+10
+
+Sports: In which Scottish town do Raith Rovers play their home matches?
+Kirkcaldy
+10
+
+Sports: In which Scottish town do Ross County play their home matches?
+Dingwall
+10
+
+Sports: In which sport are Peter Nicol and Cassie Campion leading names?
+Squash
+10
+
+Sports: In which sport can you legally perform a body slam or a double leg pick up?
+Judo
+10
+
+Sports: In which sport did Britains Jason Queally win an Olympic gold medal in Sydney 2000?
+Cycling
+10
+
+Sports: In which sport did Phil Read win many World Championships?
+Motor cycling
+10
+
+Sports: In which sport does Hashim Khan excel?
+Squash
+10
+
+Sports: In which sport is the America's Cup awarded?
+Sailing
+10
+
+Sports: In which sport is the Cy Young Trophy awarded?
+Baseball
+10
+
+Sports: In which sport is the Davis Cup awarded?
+Tennis
+10
+
+Sports: In which sport is the macrobertson International Shield contested?
+Croquet
+10
+
+Sports: In which sport is the Thomas Cup contested?
+Badminton
+10
+
+Sports: In which sport is the Uber Cup contested?
+Ladies badminton
+10
+
+Sports: In which sport would you come across the terms?
+Trampolining
+10
+
+Sports: in which sport would you find a hooker in a scrum?
+Rugby
+10
+
+Sports: In which sport would you go to a basho?
+Sumo wrestling
+10
+
+Sports: In which weight category did John Conteh fight?
+Light heavyweight
+10
+
+Sports: In which year did archery in its present form become an olympic sport?
+1972
+10
+
+Sports: In which year did Ian Botham receive his first cap?
+1977
+10
+
+Sports: in which year did Santa Claus win the DerbY?
+1964
+10
+
+Sports: In which year was Baseballs American League formed?
+1900
+10
+
+Sports: In which year was Baseballs National League formed?
+1876
+10
+
+Sports: In which year was basketball invented?
+1891
+10
+
+Sports: In which year was FIFA formed?
+1904
+10
+
+Sports: In which year was the 3rd division added to the football league?
+1920
+10
+
+Sports: In which year was the 4th division added to the football league?
+1958
+10
+
+Sports: In which year was the F A cup instituted?
+1871
+10
+
+Sports: In which year was the F A Cup stolen from a Birmingham shop window?
+1895
+10
+
+Sports: In which year was the F a Cup trophy presented to Lord Kinnaird on completion of 21 years as F A President?
+1910
+10
+
+Sports: In which year was the Federation Internationale de Tir a l'Arc, world governing body of archery formed?
+1931
+10
+
+Sports: In which year was the Football Association fromed?
+1863
+10
+
+Sports: In which year was the football world cup first held?
+1930
+10
+
+Sports: In which year was the International Amateur Athletic Fed formed?
+1913
+10
+
+Sports: In which year was the second division added to the football league?
+1892
+10
+
+Sports: In which year were the first British Archery Championships held?
+1844
+10
+
+Sports: Instituted in 1955, what is the original name of the UEFA cup?
+Inter-cities Fair Cup
+10
+
+Sports: Is parachuting an olympic sport?
+No
+10
+
+Sports: Jamaican test venue?
+Sabina Park
+10
+
+Sports: Jimmy Hill gave up his job as manager of which football club in 1967 to become a tv presenter?
+Coventry city
+10
+
+Sports: June 2002, name of the discgraced South African cricketer killed in a plane crash?
+Hansie cronje
+10
+
+Sports: KAOS, F1 drivers with surnames beginnign with H who have won the world championship?
+Mike Hawthorn
+10
+
+Sports: Lacrosse was the traditional game of this Native American groub of tribes?
+Iroquois
+10
+
+Sports: Left handed play is banned in which sport?
+Polo
+10
+
+Sports: Location of the 2002 F A cup Final?
+Cardiff
+10
+
+Sports: Location of the summer Olympic Games in 1896?
+Athens,Greece
+10
+
+Sports: Location of the summer Olympic Games in 1900?
+Paris,France
+10
+
+Sports: Location of the summer Olympic Games in 1904?
+St Louis,USA
+10
+
+Sports: Location of the summer Olympic Games in 1908?
+London,England
+10
+
+Sports: Location of the summer Olympic Games in 1920?
+Antwerp,Belgium
+10
+
+Sports: Location of the summer Olympic Games in 1924?
+Paris,France
+10
+
+Sports: Location of the summer Olympic Games in 1928?
+Amsterdam,Netherlands
+10
+
+Sports: Location of the summer Olympic Games in 1936?
+Berlin,Germany
+10
+
+Sports: Location of the summer Olympic Games in 1948?
+London,England
+10
+
+Sports: Location of the summer Olympic Games in 1952?
+Helsinki,Finland
+10
+
+Sports: Location of the summer Olympic Games in 1956?
+Melbourne,Australia
+10
+
+Sports: Location of the summer Olympic Games in 1960?
+Rome,Italy
+10
+
+Sports: Location of the summer Olympic Games in 1964?
+Tokyo,Japan
+10
+
+Sports: Location of the summer Olympic Games in 1968?
+MexicoCity,Mexico
+10
+
+Sports: Location of the summer Olympic Games in 1972?
+Munich,West Germany
+10
+
+Sports: Location of the summer Olympic Games in 1976?
+Montreal,Canada
+10
+
+Sports: Location of the summer Olympic Games in 1980?
+Moscow,USSR
+10
+
+Sports: Location of the summer Olympic Games in 1984?
+Los Angeles,USA
+10
+
+Sports: Location of the summer Olympic Games in 1988?
+Seoul,South Korea
+10
+
+Sports: Location of the summer Olympic Games in 1992?
+Barcelona,Spain
+10
+
+Sports: Location of the summer Olympic Games in 1996?
+Atlanta,USA
+10
+
+Sports: Location of the summer Olympic Games in 2000?
+Sydney,Australia
+10
+
+Sports: Location of the summer Olympic Games in` 1912?
+Stockholm,Sweden
+10
+
+Sports: Location of the summer Olympic Games in` 1932?
+Los Angeles,USA
+10
+
+Sports: Loosing finalists in Italia 90?
+Argentina
+10
+
+Sports: Louis is the capital of which island state in the Indian Ocean?
+Mauritius
+10
+
+Sports: March 2002, which 1992 Barcelona Olympic 5000m gold medal winner recently returned to sport after a drugs ban?
+Dieter Baumann
+10
+
+Sports: March 2002, which cricketer has been voted Trinidad & Tobagos sportsman of the year for the fourth time?
+Brian Lara
+10
+
+Sports: May 2002, which driver won this years Monaco Grand Prix?
+David coulthard
+10
+
+Sports: may 29th 1985, 41 people were killed at which stadium tragedy?
+Heysel stadium
+10
+
+Sports: Motor Racing: From which team did Marlboro switch its backing to Mclaren in the 1974 season?
+BRM
+10
+
+Sports: Motor Racing: How many pole positions did Ayrton Senna score?
+65
+10
+
+Sports: Motor Racing: In 1976, James Hunt was disqualified after winning which Grand Prix?
+British
+10
+
+Sports: Motor Racing: Motor racing across country or on unmade roads is called?
+Autocross
+10
+
+Sports: Motor Racing: Name the first automobile racetrack in America?
+Indianapolis Motor Speedway
+10
+
+Sports: Motor Racing: Over what time period is the Le Mans endurance motor race?
+Twenty four hours
+10
+
+Sports: Motor Racing: To which team did Marlboro switch its backing from BRM in the 1974 season?
+Mclaren
+10
+
+Sports: Motor Racing: What colours was the Ferrari Formula 1 car in the 1964 US Grand prix?
+Blue and white
+10
+
+Sports: Motor Racing: What event marked the 1954 french grand prix?
+The return of Mercedes
+10
+
+Sports: Motor Racing: what is the name of the grand prix race track in Germany?
+Hockenheim
+10
+
+Sports: Motor Racing: Where do the Italians host the Grand Prix?
+Monza
+10
+
+Sports: Motor Racing: Which car won the 1953 Italian Grand Prix?
+Maserati
+10
+
+Sports: Motor Racing: Which new engine regulation replaced the 2.5 litre rule at the start of the 1961 season?
+1.5 liter rule
+10
+
+Sports: Motor Racing: Who hosts the Monza Grand Prix?
+Italy
+10
+
+Sports: Motor Racing: Who qualified for pole position in the 1984 Brazilian Grand Prix?
+Elio de Angelis
+10
+
+Sports: Motor Racing: Who was disqualified after winning the 1976 British Grand Prix?
+James Hunt
+10
+
+Sports: Motor Racing: Who was the driver for the Jordan team in the 1998 Grand Prix?
+Damon Hill
+10
+
+Sports: Motor Racing: Who won the 1966 F1 championship?
+Jack Brabham
+10
+
+Sports: Multiple f-1 grand prix championship winner, survivor of a horrific f-1 crash and owner of his own airline is this personality?
+Nikki lauda
+10
+
+Sports: Munich hosted the Olympic games in which year?
+1972
+10
+
+Sports: Name englands most famous steeplechase?
+The grand national
+10
+
+Sports: Name given in golf to a putt short enough to be conceded?
+A gimmie
+10
+
+Sports: Name Lancashires cricket ground?
+Old trafford
+10
+
+Sports: Name of Andre Agassi and Steffi Grafs baby son?
+Jaden gil
+10
+
+Sports: Name of the Argentinian footballer responsible for breaking David Beckhams foot and jeopardising Englands World Cup hopes?
+Aldo Duscher
+10
+
+Sports: Name of the Republic of Irelands coach who famously sent home Roy Keane?
+Mick mccarthy
+10
+
+Sports: Name of the UEFA Cup trophy?
+Henry Delauney Trophy
+10
+
+Sports: Name the British heavyweight who beat Berndt August for the European championship?
+Richard Dunn
+10
+
+Sports: Name the famous Swiss bobsleigh course?
+The Cresta Run
+10
+
+Sports: Name the first English classic horse race run in 1776?
+St leger
+10
+
+Sports: Name the first English club to play 4000 league(Football League and Nationwide League) matches?
+Notts County
+10
+
+Sports: Name the first football team from Holland to win the European Cup?
+Feyenoord
+10
+
+Sports: Name the first team to play in successive Wembley FA Cup finals (1933&34)?
+Manchester City
+10
+
+Sports: Name the first Yorkshire club to win footballs FA Cup?
+Sheffield Wednesday
+10
+
+Sports: Name the footballer who clinched Englands 1966 World cup win?
+Geoff Hurst
+10
+
+Sports: Name the hockey trophy awarded to the player demonstrating the best sportsmanship?
+The lady byng trophy
+10
+
+Sports: Name the Rangers stadium?
+Ibrox
+10
+
+Sports: name the two skills which make up the winter biathlon?
+Cross-country skiing and target shooting
+10
+
+Sports: Nick name of Chicagos American Football Team?
+Bears
+10
+
+Sports: No score in tennis?
+Love
+10
+
+Sports: Old Trafford, home of which football team?
+Manchester United
+10
+
+Sports: Olympics: 1940s: The 1948 Summer Olympics opens in ____
+London
+10
+
+Sports: Olympics: 1980s: In 1984, ____ duplicates Jesse Owens' 1936 feat, wins 4 Olympic track golds
+Carl lewis
+10
+
+Sports: Olympics: 1980s: In 1984, Carl Lewis duplicates ____ ' 1936 feat, wins 4 Olympic track golds
+Jesse owens
+10
+
+Sports: Olympics: 1980s: In 1984, which music accompanied Torvill and Dean's Olympic victory in Sarajevo?
+Ravel's Bolero
+10
+
+Sports: Olympics: 1990s: In 1992, what country topped winter olympics medalists with a total of 26?
+Germany
+10
+
+Sports: Olympics: 1990s: In 1992, what gymnastics coach announced retirement at the Barcelona olympic?
+Bela karolyi
+10
+
+Sports: Olympics: Athens 1896: In the first modern summer Olympic games, how many countries competed?
+Thirteen
+10
+
+Sports: Olympics: Atlanta 1996: How many BRONZE medals were won by Armenia?
+0
+10
+
+Sports: Olympics: Atlanta 1996: How many BRONZE medals were won by Australia?
+21
+10
+
+Sports: Olympics: Atlanta 1996: How many BRONZE medals were won by Azerbaijan?
+0
+10
+
+Sports: Olympics: Atlanta 1996: How many BRONZE medals were won by Belarus?
+8
+10
+
+Sports: Olympics: Atlanta 1996: How many BRONZE medals were won by Brazil?
+9
+10
+
+Sports: Olympics: Atlanta 1996: How many BRONZE medals were won by Burundi?
+0
+10
+
+Sports: Olympics: Atlanta 1996: How many BRONZE medals were won by China?
+12
+10
+
+Sports: Olympics: Atlanta 1996: How many BRONZE medals were won by Costa Rica?
+0
+10
+
+Sports: Olympics: Atlanta 1996: How many BRONZE medals were won by Croatia?
+0
+10
+
+Sports: Olympics: Atlanta 1996: How many BRONZE medals were won by Cuba?
+8
+10
+
+Sports: Olympics: Atlanta 1996: How many BRONZE medals were won by Czech Republic?
+2
+10
+
+Sports: Olympics: Atlanta 1996: How many BRONZE medals were won by Ecuador?
+0
+10
+
+Sports: Olympics: Atlanta 1996: How many BRONZE medals were won by Ethiopia?
+1
+10
+
+Sports: Olympics: Atlanta 1996: How many BRONZE medals were won by Finland?
+1
+10
+
+Sports: Olympics: Atlanta 1996: How many BRONZE medals were won by Hong Kong, China?
+0
+10
+
+Sports: Olympics: Atlanta 1996: How many BRONZE medals were won by Hungary?
+10
+10
+
+Sports: Olympics: Atlanta 1996: How many BRONZE medals were won by Japan?
+5
+10
+
+Sports: Olympics: Atlanta 1996: How many BRONZE medals were won by Kazakhstan?
+4
+10
+
+Sports: Olympics: Atlanta 1996: How many BRONZE medals were won by Kenya?
+3
+10
+
+Sports: Olympics: Atlanta 1996: How many BRONZE medals were won by Latvia?
+0
+10
+
+Sports: Olympics: Atlanta 1996: How many BRONZE medals were won by Moldova?
+1
+10
+
+Sports: Olympics: Atlanta 1996: How many BRONZE medals were won by Poland?
+3
+10
+
+Sports: Olympics: Atlanta 1996: How many BRONZE medals were won by Russia?
+14
+10
+
+Sports: Olympics: Atlanta 1996: How many BRONZE medals were won by Slovakia?
+1
+10
+
+Sports: Olympics: Atlanta 1996: How many BRONZE medals were won by South Africa?
+1
+10
+
+Sports: Olympics: Atlanta 1996: How many BRONZE medals were won by The Netherlands?
+10
+10
+
+Sports: Olympics: Atlanta 1996: How many BRONZE medals were won by Tonga?
+0
+10
+
+Sports: Olympics: Atlanta 1996: How many BRONZE medals were won by Turkey?
+1
+10
+
+Sports: Olympics: Atlanta 1996: How many BRONZE medals were won by Ukraine?
+13
+10
+
+Sports: Olympics: Atlanta 1996: How many BRONZE medals were won by United States of America?
+25
+10
+
+Sports: Olympics: Atlanta 1996: How many BRONZE medals were won by Uzbekistan?
+1
+10
+
+Sports: Olympics: Atlanta 1996: How many GOLD medals were won by Belarus?
+1
+10
+
+Sports: Olympics: Atlanta 1996: How many GOLD medals were won by China?
+14
+10
+
+Sports: Olympics: Atlanta 1996: How many GOLD medals were won by Cuba?
+9
+10
+
+Sports: Olympics: Atlanta 1996: How many GOLD medals were won by Czech Republic?
+4
+10
+
+Sports: Olympics: Atlanta 1996: How many GOLD medals were won by Great Britain?
+1
+10
+
+Sports: Olympics: Atlanta 1996: How many GOLD medals were won by Ireland?
+3
+10
+
+Sports: Olympics: Atlanta 1996: How many GOLD medals were won by Kazakhstan?
+3
+10
+
+Sports: Olympics: Atlanta 1996: How many GOLD medals were won by Moldova?
+0
+10
+
+Sports: Olympics: Atlanta 1996: How many GOLD medals were won by Russia?
+25
+10
+
+Sports: Olympics: Atlanta 1996: How many GOLD medals were won by South Korea?
+7
+10
+
+Sports: Olympics: Atlanta 1996: How many GOLD medals were won by The Netherlands?
+4
+10
+
+Sports: Olympics: Atlanta 1996: How many GOLD medals were won by Turkey?
+4
+10
+
+Sports: Olympics: Atlanta 1996: How many GOLD medals were won by Ukraine?
+9
+10
+
+Sports: Olympics: Atlanta 1996: How many GOLD medals were won by United States of America?
+42
+10
+
+Sports: Olympics: Atlanta 1996: How many GOLD medals were won by Uzbekistan?
+0
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by Algeria?
+3
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by Argentina?
+3
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by Armenia?
+2
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by Australia?
+37
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by Azerbaijan?
+1
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by Belarus?
+15
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by Brazil?
+15
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by Burundi?
+1
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by Canada?
+21
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by China?
+46
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by Costa Rica?
+1
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by Croatia?
+2
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by Cuba?
+25
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by Czech Republic?
+9
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by Ecuador?
+1
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by Finland?
+4
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by France?
+34
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by Georgia?
+2
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by Germany?
+63
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by Great Britain?
+14
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by Greece?
+8
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by Hong Kong, China?
+1
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by Hungary?
+20
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by India?
+1
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by Indonesia?
+3
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by Ireland?
+4
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by Israel?
+1
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by Italy?
+35
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by Jamaica?
+6
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by Japan?
+14
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by Kazakhstan?
+11
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by Latvia?
+1
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by Lithuania?
+1
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by Malaysia?
+2
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by Moldova?
+2
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by Mozambique?
+1
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by New Zealand?
+6
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by Nigeria?
+6
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by North Korea?
+5
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by Norway?
+6
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by Poland?
+14
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by Romania?
+19
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by Russia?
+59
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by Slovakia?
+3
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by South Africa?
+5
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by Spain?
+14
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by Sweden?
+8
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by Switzerland?
+6
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by Thailand?
+2
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by The Netherlands?
+17
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by Tonga?
+1
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by Trinidad and Tobago?
+2
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by Tunisia?
+1
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by Uganda?
+1
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by Ukraine?
+24
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by United States of America?
+98
+10
+
+Sports: Olympics: Atlanta 1996: How many Gold, Silver & Bronze medals (TOTAL) were won by Uzbekistan?
+2
+10
+
+Sports: Olympics: Atlanta 1996: How many SILVER medals were won by Belarus?
+6
+10
+
+Sports: Olympics: Atlanta 1996: How many SILVER medals were won by China?
+20
+10
+
+Sports: Olympics: Atlanta 1996: How many SILVER medals were won by Czech Republic?
+3
+10
+
+Sports: Olympics: Atlanta 1996: How many SILVER medals were won by France?
+6
+10
+
+Sports: Olympics: Atlanta 1996: How many SILVER medals were won by Georgia?
+0
+10
+
+Sports: Olympics: Atlanta 1996: How many SILVER medals were won by Germany?
+17
+10
+
+Sports: Olympics: Atlanta 1996: How many SILVER medals were won by Great Britain?
+8
+10
+
+Sports: Olympics: Atlanta 1996: How many SILVER medals were won by Greece?
+4
+10
+
+Sports: Olympics: Atlanta 1996: How many SILVER medals were won by Hungary?
+3
+10
+
+Sports: Olympics: Atlanta 1996: How many SILVER medals were won by India?
+0
+10
+
+Sports: Olympics: Atlanta 1996: How many SILVER medals were won by Israel?
+0
+10
+
+Sports: Olympics: Atlanta 1996: How many SILVER medals were won by Italy?
+10
+10
+
+Sports: Olympics: Atlanta 1996: How many SILVER medals were won by Mozambique?
+0
+10
+
+Sports: Olympics: Atlanta 1996: How many SILVER medals were won by Poland?
+5
+10
+
+Sports: Olympics: Atlanta 1996: How many SILVER medals were won by Romania?
+6
+10
+
+Sports: Olympics: Atlanta 1996: How many SILVER medals were won by Russia?
+20
+10
+
+Sports: Olympics: Atlanta 1996: How many SILVER medals were won by South Korea?
+15
+10
+
+Sports: Olympics: Atlanta 1996: How many SILVER medals were won by Switzerland?
+3
+10
+
+Sports: Olympics: Atlanta 1996: How many SILVER medals were won by The Netherlands?
+3
+10
+
+Sports: Olympics: Atlanta 1996: How many SILVER medals were won by Trinidad and Tobago?
+0
+10
+
+Sports: Olympics: Atlanta 1996: How many SILVER medals were won by Tunisia?
+0
+10
+
+Sports: Olympics: Atlanta 1996: How many SILVER medals were won by Uganda?
+0
+10
+
+Sports: Olympics: Atlanta 1996: How many SILVER medals were won by Ukraine?
+2
+10
+
+Sports: Olympics: Atlanta 1996: How many SILVER medals were won by United States of America?
+31
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 0 Gold, 0 Silver, 1 Bronze, 1 in Total?
+India
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 0 Gold, 0 Silver, 1 Bronze, 1 in Total?
+Israel
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 0 Gold, 0 Silver, 1 Bronze, 1 in Total?
+Lithuania
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 0 Gold, 0 Silver, 1 Bronze, 1 in Total?
+Mexico
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 0 Gold, 0 Silver, 1 Bronze, 1 in Total?
+Mozambique
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 0 Gold, 0 Silver, 1 Bronze, 1 in Total?
+Tunisia
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 0 Gold, 0 Silver, 1 Bronze, 1 in Total?
+Uganda
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 0 Gold, 0 Silver, 2 Bronze, 2 in Total?
+Georgia
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 0 Gold, 0 Silver, 2 Bronze, 2 in Total?
+Morocco
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 0 Gold, 0 Silver, 2 Bronze, 2 in Total?
+Trinidad and tobago
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 0 Gold, 1 Silver, 0 Bronze, 1 in Total?
+Azerbaijan
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 0 Gold, 1 Silver, 0 Bronze, 1 in Total?
+Bahamas
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 0 Gold, 1 Silver, 0 Bronze, 1 in Total?
+Latvia
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 0 Gold, 1 Silver, 0 Bronze, 1 in Total?
+Philippines
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 0 Gold, 1 Silver, 0 Bronze, 1 in Total?
+Tonga
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 0 Gold, 1 Silver, 0 Bronze, 1 in Total?
+Zambia
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 0 Gold, 1 Silver, 1 Bronze, 2 in Total?
+Malaysia
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 0 Gold, 1 Silver, 1 Bronze, 2 in Total?
+Moldova
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 0 Gold, 1 Silver, 1 Bronze, 2 in Total?
+Uzbekistan
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 0 Gold, 1 Silver, 2 Bronze, 3 in Total?
+Austria
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 0 Gold, 2 Silver, 0 Bronze, 2 in Total?
+Namibia
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 0 Gold, 2 Silver, 0 Bronze, 2 in Total?
+Slovenia
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 0 Gold, 2 Silver, 1 Bronze, 3 in Total?
+Argentina
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 1 Gold, 0 Silver, 0 Bronze, 1 in Total?
+Burundi
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 1 Gold, 0 Silver, 0 Bronze, 1 in Total?
+Costa rica
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 1 Gold, 0 Silver, 0 Bronze, 1 in Total?
+Ecuador
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 1 Gold, 0 Silver, 0 Bronze, 1 in Total?
+Hong kong, china
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 1 Gold, 0 Silver, 0 Bronze, 1 in Total?
+Syria
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 1 Gold, 0 Silver, 1 Bronze, 2 in Total?
+Portugal
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 1 Gold, 0 Silver, 1 Bronze, 2 in Total?
+Thailand
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 1 Gold, 1 Silver, 0 Bronze, 2 in Total?
+Armenia
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 1 Gold, 1 Silver, 0 Bronze, 2 in Total?
+Croatia
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 1 Gold, 1 Silver, 1 Bronze, 3 in Total?
+Indonesia
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 1 Gold, 1 Silver, 1 Bronze, 3 in Total?
+Iran
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 1 Gold, 1 Silver, 1 Bronze, 3 in Total?
+Slovakia
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 1 Gold, 2 Silver, 1 Bronze, 4 in Total?
+Finland
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 1 Gold, 3 Silver, 2 Bronze, 6 in Total?
+Jamaica
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 1 Gold, 4 Silver, 3 Bronze, 8 in Total?
+Kenya
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 1 Gold, 6 Silver, 8 Bronze, 15 in Total?
+Belarus
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 1 Gold, 8 Silver, 5 Bronze, 14 in Total?
+Great britain
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 13 Gold, 10 Silver, 12 Bronze, 35 in Total?
+Italy
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 14 Gold, 20 Silver, 12 Bronze, 46 in Total?
+China
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 14 Gold, 6 Silver, 14 Bronze, 34 in Total?
+France
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 19 Gold, 17 Silver, 27 Bronze, 63 in Total?
+Germany
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 2 Gold, 0 Silver, 1 Bronze, 3 in Total?
+Algeria
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 2 Gold, 0 Silver, 1 Bronze, 3 in Total?
+Ethiopia
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 2 Gold, 1 Silver, 2 Bronze, 5 in Total?
+North korea
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 2 Gold, 1 Silver, 3 Bronze, 6 in Total?
+Nigeria
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 2 Gold, 2 Silver, 2 Bronze, 6 in Total?
+Belgium
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 2 Gold, 2 Silver, 2 Bronze, 6 in Total?
+Norway
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 2 Gold, 4 Silver, 2 Bronze, 8 in Total?
+Sweden
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 25 Gold, 20 Silver, 14 Bronze, 59 in Total?
+Russia
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 3 Gold, 0 Silver, 1 Bronze, 4 in Total?
+Ireland
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 3 Gold, 1 Silver, 1 Bronze, 5 in Total?
+South africa
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 3 Gold, 11 Silver, 7 Bronze, 21 in Total?
+Canada
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 3 Gold, 2 Silver, 1 Bronze, 6 in Total?
+New zealand
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 3 Gold, 3 Silver, 0 Bronze, 6 in Total?
+Switzerland
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 3 Gold, 3 Silver, 9 Bronze, 15 in Total?
+Brazil
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 3 Gold, 4 Silver, 4 Bronze, 11 in Total?
+Kazakhstan
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 3 Gold, 6 Silver, 5 Bronze, 14 in Total?
+Bulgaria
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 3 Gold, 6 Silver, 5 Bronze, 14 in Total?
+Japan
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 4 Gold, 1 Silver, 1 Bronze, 6 in Total?
+Denmark
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 4 Gold, 1 Silver, 1 Bronze, 6 in Total?
+Turkey
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 4 Gold, 3 Silver, 10 Bronze, 17 in Total?
+The Netherlands
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 4 Gold, 3 Silver, 2 Bronze, 9 in Total?
+Czech republic
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 4 Gold, 4 Silver, 0 Bronze, 8 in Total?
+Greece
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 4 Gold, 4 Silver, 6 Bronze, 14 in Total?
+Spain
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 4 Gold, 6 Silver, 9 Bronze, 19 in Total?
+Romania
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 42 Gold, 31 Silver, 25 Bronze, 98 in Total?
+United states of America
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 6 Gold, 5 Silver, 3 Bronze, 14 in Total?
+Poland
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 7 Gold, 15 Silver, 5 Bronze, 27 in Total?
+South korea
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 7 Gold, 3 Silver, 10 Bronze, 20 in Total?
+Hungary
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 7 Gold, 9 Silver, 21 Bronze, 37 in Total?
+Australia
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 9 Gold, 2 Silver, 13 Bronze, 24 in Total?
+Ukraine
+10
+
+Sports: Olympics: Atlanta 1996: This countries medal tally was 9 Gold, 8 Silver, 8 Bronze, 25 in Total?
+Cuba
+10
+
+Sports: Olympics: Barcelona 1992:  How many BRONZE medals were won by Algeria?
+1
+10
+
+Sports: Olympics: Barcelona 1992:  How many BRONZE medals were won by Australia?
+10
+10
+
+Sports: Olympics: Barcelona 1992:  How many BRONZE medals were won by Austria?
+0
+10
+
+Sports: Olympics: Barcelona 1992:  How many BRONZE medals were won by Brazil?
+0
+10
+
+Sports: Olympics: Barcelona 1992:  How many BRONZE medals were won by Bulgaria?
+6
+10
+
+Sports: Olympics: Barcelona 1992:  How many BRONZE medals were won by Canada?
+7
+10
+
+Sports: Olympics: Barcelona 1992:  How many BRONZE medals were won by China?
+13
+10
+
+Sports: Olympics: Barcelona 1992:  How many BRONZE medals were won by Chinese Taipei?
+0
+10
+
+Sports: Olympics: Barcelona 1992:  How many BRONZE medals were won by Cuba?
+11
+10
+
+Sports: Olympics: Barcelona 1992:  How many BRONZE medals were won by Czechoslovakia?
+0
+10
+
+Sports: Olympics: Barcelona 1992:  How many BRONZE medals were won by Estonia?
+1
+10
+
+Sports: Olympics: Barcelona 1992:  How many BRONZE medals were won by Ethiopia?
+2
+10
+
+Sports: Olympics: Barcelona 1992:  How many BRONZE medals were won by Germany?
+27
+10
+
+Sports: Olympics: Barcelona 1992:  How many BRONZE medals were won by Great Britain?
+12
+10
+
+Sports: Olympics: Barcelona 1992:  How many BRONZE medals were won by Greece?
+0
+10
+
+Sports: Olympics: Barcelona 1992:  How many BRONZE medals were won by Hungary?
+7
+10
+
+Sports: Olympics: Barcelona 1992:  How many BRONZE medals were won by Italy?
+8
+10
+
+Sports: Olympics: Barcelona 1992:  How many BRONZE medals were won by Japan?
+9
+10
+
+Sports: Olympics: Barcelona 1992:  How many BRONZE medals were won by Mexico?
+0
+10
+
+Sports: Olympics: Barcelona 1992:  How many BRONZE medals were won by Morocco?
+1
+10
+
+Sports: Olympics: Barcelona 1992:  How many BRONZE medals were won by Namibia?
+0
+10
+
+Sports: Olympics: Barcelona 1992:  How many BRONZE medals were won by New Zealand?
+5
+10
+
+Sports: Olympics: Barcelona 1992:  How many BRONZE medals were won by Poland?
+8
+10
+
+Sports: Olympics: Barcelona 1992:  How many BRONZE medals were won by Romania?
+8
+10
+
+Sports: Olympics: Barcelona 1992:  How many BRONZE medals were won by South Africa?
+0
+10
+
+Sports: Olympics: Barcelona 1992:  How many BRONZE medals were won by South Korea?
+11
+10
+
+Sports: Olympics: Barcelona 1992:  How many BRONZE medals were won by Spain?
+1
+10
+
+Sports: Olympics: Barcelona 1992:  How many BRONZE medals were won by Sweden?
+4
+10
+
+Sports: Olympics: Barcelona 1992:  How many BRONZE medals were won by Switzerland?
+0
+10
+
+Sports: Olympics: Barcelona 1992:  How many BRONZE medals were won by The Netherlands?
+7
+10
+
+Sports: Olympics: Barcelona 1992:  How many BRONZE medals were won by Unified Team 1992?
+29
+10
+
+Sports: Olympics: Barcelona 1992:  How many BRONZE medals were won by United States of America?
+36
+10
+
+Sports: Olympics: Barcelona 1992:  How many BRONZE medals were won by Yugoslavia?
+1
+10
+
+Sports: Olympics: Barcelona 1992:  How many GOLD medals were won by Australia?
+7
+10
+
+Sports: Olympics: Barcelona 1992:  How many GOLD medals were won by Belgium?
+0
+10
+
+Sports: Olympics: Barcelona 1992:  How many GOLD medals were won by Bulgaria?
+3
+10
+
+Sports: Olympics: Barcelona 1992:  How many GOLD medals were won by China?
+16
+10
+
+Sports: Olympics: Barcelona 1992:  How many GOLD medals were won by Cuba?
+14
+10
+
+Sports: Olympics: Barcelona 1992:  How many GOLD medals were won by France?
+8
+10
+
+Sports: Olympics: Barcelona 1992:  How many GOLD medals were won by Germany?
+30
+10
+
+Sports: Olympics: Barcelona 1992:  How many GOLD medals were won by Iran?
+0
+10
+
+Sports: Olympics: Barcelona 1992:  How many GOLD medals were won by Japan?
+3
+10
+
+Sports: Olympics: Barcelona 1992:  How many GOLD medals were won by Romania?
+3
+10
+
+Sports: Olympics: Barcelona 1992:  How many GOLD medals were won by Spain?
+13
+10
+
+Sports: Olympics: Barcelona 1992:  How many GOLD medals were won by The Netherlands?
+2
+10
+
+Sports: Olympics: Barcelona 1992:  How many GOLD medals were won by Unified Team 1992?
+44
+10
+
+Sports: Olympics: Barcelona 1992:  How many GOLD medals were won by United States of America?
+33
+10
+
+Sports: Olympics: Barcelona 1992:  How many GOLD medals were won by Yugoslavia?
+0
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by Argentina?
+1
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by Australia?
+26
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by Austria?
+2
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by Bahamas?
+1
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by Belgium?
+3
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by Brazil?
+3
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by Bulgaria?
+14
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by Canada?
+15
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by China?
+50
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by Chinese Taipei?
+1
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by Croatia?
+3
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by Cuba?
+31
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by Czechoslovakia?
+6
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by Estonia?
+2
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by Ethiopia?
+3
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by Finland?
+5
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by France?
+29
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by Germany?
+76
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by Ghana?
+1
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by Great Britain?
+20
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by Hungary?
+29
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by Indonesia?
+5
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by Iran?
+3
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by Ireland?
+2
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by Israel?
+2
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by Italy?
+19
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by Jamaica?
+4
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by Japan?
+20
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by Kenya?
+8
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by Latvia?
+3
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by Lithuania?
+2
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by Malaysia?
+1
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by Mexico?
+1
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by Mongolia?
+1
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by Morocco?
+3
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by Namibia?
+2
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by New Zealand?
+10
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by Nigeria?
+4
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by North Korea?
+9
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by Norway?
+7
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by Philippines?
+1
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by Poland?
+17
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by Puerto Rico?
+1
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by Qatar?
+1
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by Romania?
+15
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by Slovenia?
+2
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by South Africa?
+2
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by South Korea?
+27
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by Spain?
+21
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by Suriname?
+1
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by Sweden?
+12
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by Switzerland?
+1
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by The Netherlands?
+15
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by Turkey?
+6
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by Unified Team 1992?
+110
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by United States of America?
+103
+10
+
+Sports: Olympics: Barcelona 1992:  How many Gold, Silver & Bronze medals (TOTAL) were won by Yugoslavia?
+2
+10
+
+Sports: Olympics: Barcelona 1992:  How many SILVER medals were won by Argentina?
+0
+10
+
+Sports: Olympics: Barcelona 1992:  How many SILVER medals were won by Bahamas?
+0
+10
+
+Sports: Olympics: Barcelona 1992:  How many SILVER medals were won by Brazil?
+1
+10
+
+Sports: Olympics: Barcelona 1992:  How many SILVER medals were won by Bulgaria?
+5
+10
+
+Sports: Olympics: Barcelona 1992:  How many SILVER medals were won by Canada?
+3
+10
+
+Sports: Olympics: Barcelona 1992:  How many SILVER medals were won by China?
+21
+10
+
+Sports: Olympics: Barcelona 1992:  How many SILVER medals were won by Croatia?
+1
+10
+
+Sports: Olympics: Barcelona 1992:  How many SILVER medals were won by Cuba?
+6
+10
+
+Sports: Olympics: Barcelona 1992:  How many SILVER medals were won by Czechoslovakia?
+2
+10
+
+Sports: Olympics: Barcelona 1992:  How many SILVER medals were won by Denmark?
+1
+10
+
+Sports: Olympics: Barcelona 1992:  How many SILVER medals were won by Estonia?
+0
+10
+
+Sports: Olympics: Barcelona 1992:  How many SILVER medals were won by Ethiopia?
+0
+10
+
+Sports: Olympics: Barcelona 1992:  How many SILVER medals were won by France?
+5
+10
+
+Sports: Olympics: Barcelona 1992:  How many SILVER medals were won by Germany?
+19
+10
+
+Sports: Olympics: Barcelona 1992:  How many SILVER medals were won by Ghana?
+0
+10
+
+Sports: Olympics: Barcelona 1992:  How many SILVER medals were won by Great Britain?
+3
+10
+
+Sports: Olympics: Barcelona 1992:  How many SILVER medals were won by Hungary?
+11
+10
+
+Sports: Olympics: Barcelona 1992:  How many SILVER medals were won by Indonesia?
+2
+10
+
+Sports: Olympics: Barcelona 1992:  How many SILVER medals were won by Italy?
+5
+10
+
+Sports: Olympics: Barcelona 1992:  How many SILVER medals were won by Kenya?
+4
+10
+
+Sports: Olympics: Barcelona 1992:  How many SILVER medals were won by Latvia?
+2
+10
+
+Sports: Olympics: Barcelona 1992:  How many SILVER medals were won by Lithuania?
+0
+10
+
+Sports: Olympics: Barcelona 1992:  How many SILVER medals were won by Malaysia?
+0
+10
+
+Sports: Olympics: Barcelona 1992:  How many SILVER medals were won by Mongolia?
+0
+10
+
+Sports: Olympics: Barcelona 1992:  How many SILVER medals were won by North Korea?
+0
+10
+
+Sports: Olympics: Barcelona 1992:  How many SILVER medals were won by Norway?
+4
+10
+
+Sports: Olympics: Barcelona 1992:  How many SILVER medals were won by Philippines?
+0
+10
+
+Sports: Olympics: Barcelona 1992:  How many SILVER medals were won by Poland?
+6
+10
+
+Sports: Olympics: Barcelona 1992:  How many SILVER medals were won by Puerto Rico?
+0
+10
+
+Sports: Olympics: Barcelona 1992:  How many SILVER medals were won by Qatar?
+0
+10
+
+Sports: Olympics: Barcelona 1992:  How many SILVER medals were won by Romania?
+4
+10
+
+Sports: Olympics: Barcelona 1992:  How many SILVER medals were won by Slovenia?
+0
+10
+
+Sports: Olympics: Barcelona 1992:  How many SILVER medals were won by South Korea?
+5
+10
+
+Sports: Olympics: Barcelona 1992:  How many SILVER medals were won by Spain?
+7
+10
+
+Sports: Olympics: Barcelona 1992:  How many SILVER medals were won by Suriname?
+0
+10
+
+Sports: Olympics: Barcelona 1992:  How many SILVER medals were won by Sweden?
+7
+10
+
+Sports: Olympics: Barcelona 1992:  How many SILVER medals were won by The Netherlands?
+6
+10
+
+Sports: Olympics: Barcelona 1992:  How many SILVER medals were won by Unified Team 1992?
+37
+10
+
+Sports: Olympics: Barcelona 1992:  How many SILVER medals were won by United States of America?
+34
+10
+
+Sports: Olympics: Barcelona 1992:  This countries medal tally was 0 Gold, 0 Silver, 1 Bronze, 1 in Total?
+Argentina
+10
+
+Sports: Olympics: Barcelona 1992:  This countries medal tally was 0 Gold, 0 Silver, 1 Bronze, 1 in Total?
+Bahamas
+10
+
+Sports: Olympics: Barcelona 1992:  This countries medal tally was 0 Gold, 0 Silver, 1 Bronze, 1 in Total?
+Colombia
+10
+
+Sports: Olympics: Barcelona 1992:  This countries medal tally was 0 Gold, 0 Silver, 1 Bronze, 1 in Total?
+Ghana
+10
+
+Sports: Olympics: Barcelona 1992:  This countries medal tally was 0 Gold, 0 Silver, 1 Bronze, 1 in Total?
+Malaysia
+10
+
+Sports: Olympics: Barcelona 1992:  This countries medal tally was 0 Gold, 0 Silver, 1 Bronze, 1 in Total?
+Mongolia
+10
+
+Sports: Olympics: Barcelona 1992:  This countries medal tally was 0 Gold, 0 Silver, 1 Bronze, 1 in Total?
+Pakistan
+10
+
+Sports: Olympics: Barcelona 1992:  This countries medal tally was 0 Gold, 0 Silver, 1 Bronze, 1 in Total?
+Philippines
+10
+
+Sports: Olympics: Barcelona 1992:  This countries medal tally was 0 Gold, 0 Silver, 1 Bronze, 1 in Total?
+Puerto rico
+10
+
+Sports: Olympics: Barcelona 1992:  This countries medal tally was 0 Gold, 0 Silver, 1 Bronze, 1 in Total?
+Qatar
+10
+
+Sports: Olympics: Barcelona 1992:  This countries medal tally was 0 Gold, 0 Silver, 1 Bronze, 1 in Total?
+Suriname
+10
+
+Sports: Olympics: Barcelona 1992:  This countries medal tally was 0 Gold, 0 Silver, 1 Bronze, 1 in Total?
+Thailand
+10
+
+Sports: Olympics: Barcelona 1992:  This countries medal tally was 0 Gold, 0 Silver, 2 Bronze, 2 in Total?
+Slovenia
+10
+
+Sports: Olympics: Barcelona 1992:  This countries medal tally was 0 Gold, 1 Silver, 1 Bronze, 2 in Total?
+Israel
+10
+
+Sports: Olympics: Barcelona 1992:  This countries medal tally was 0 Gold, 1 Silver, 1 Bronze, 2 in Total?
+Yugoslavia
+10
+
+Sports: Olympics: Barcelona 1992:  This countries medal tally was 1 Gold, 0 Silver, 0 Bronze, 1 in Total?
+Switzerland
+10
+
+Sports: Olympics: Barcelona 1992:  This countries medal tally was 44 Gold, 37 Silver, 29 Bronze, 110 in Total?
+Unified team 1992
+10
+
+Sports: Olympics: Barcelona 1992: This countries medal tally was 0 Gold, 1 Silver, 0 Bronze, 1 in Total?
+Chinese taipei
+10
+
+Sports: Olympics: Barcelona 1992: This countries medal tally was 0 Gold, 1 Silver, 0 Bronze, 1 in Total?
+Mexico
+10
+
+Sports: Olympics: Hockey: 1980s: what state gave birth to more than half of the 1980 us olympic hockey team?
+Minnesota
+10
+
+Sports: Olympics: Holland hosted the Olympics in which year?
+1928
+10
+
+Sports: Olympics: how many lanes does an olympic swimming pool have?
+Eight
+10
+
+Sports: Olympics: In ancient Greece, where were the original Olympics held?
+Olympia
+10
+
+Sports: Olympics: London 1908: Forrest Smithson carried this with him while hurdling?
+Bible
+10
+
+Sports: Olympics: London 1948: The 1948 ____ Olympics opens in London
+Summer
+10
+
+Sports: Olympics: Los Angeles 1984: How many BRONZE medals were won by Australia?
+12
+10
+
+Sports: Olympics: Los Angeles 1984: How many BRONZE medals were won by Canada?
+16
+10
+
+Sports: Olympics: Los Angeles 1984: How many BRONZE medals were won by China?
+9
+10
+
+Sports: Olympics: Los Angeles 1984: How many BRONZE medals were won by Colombia?
+0
+10
+
+Sports: Olympics: Los Angeles 1984: How many BRONZE medals were won by Egypt?
+0
+10
+
+Sports: Olympics: Los Angeles 1984: How many BRONZE medals were won by France?
+15
+10
+
+Sports: Olympics: Los Angeles 1984: How many BRONZE medals were won by Great Britain?
+7
+10
+
+Sports: Olympics: Los Angeles 1984: How many BRONZE medals were won by Ireland?
+0
+10
+
+Sports: Olympics: Los Angeles 1984: How many BRONZE medals were won by Italy?
+12
+10
+
+Sports: Olympics: Los Angeles 1984: How many BRONZE medals were won by Ivory Coast?
+0
+10
+
+Sports: Olympics: Los Angeles 1984: How many BRONZE medals were won by Kenya?
+1
+10
+
+Sports: Olympics: Los Angeles 1984: How many BRONZE medals were won by Morocco?
+0
+10
+
+Sports: Olympics: Los Angeles 1984: How many BRONZE medals were won by Netherlands?
+6
+10
+
+Sports: Olympics: Los Angeles 1984: How many BRONZE medals were won by New Zealand?
+2
+10
+
+Sports: Olympics: Los Angeles 1984: How many BRONZE medals were won by Nigeria?
+1
+10
+
+Sports: Olympics: Los Angeles 1984: How many BRONZE medals were won by Pakistan?
+0
+10
+
+Sports: Olympics: Los Angeles 1984: How many BRONZE medals were won by Peru?
+0
+10
+
+Sports: Olympics: Los Angeles 1984: How many BRONZE medals were won by Romania?
+17
+10
+
+Sports: Olympics: Los Angeles 1984: How many BRONZE medals were won by Sweden?
+6
+10
+
+Sports: Olympics: Los Angeles 1984: How many BRONZE medals were won by Syria?
+0
+10
+
+Sports: Olympics: Los Angeles 1984: How many BRONZE medals were won by Thailand?
+0
+10
+
+Sports: Olympics: Los Angeles 1984: How many BRONZE medals were won by United States?
+30
+10
+
+Sports: Olympics: Los Angeles 1984: How many BRONZE medals were won by West Germany?
+23
+10
+
+Sports: Olympics: Los Angeles 1984: How many BRONZE medals were won by Yugoslavia?
+7
+10
+
+Sports: Olympics: Los Angeles 1984: How many GOLD medals were won by Australia?
+4
+10
+
+Sports: Olympics: Los Angeles 1984: How many GOLD medals were won by China?
+15
+10
+
+Sports: Olympics: Los Angeles 1984: How many GOLD medals were won by Denmark?
+0
+10
+
+Sports: Olympics: Los Angeles 1984: How many GOLD medals were won by Great Britain?
+5
+10
+
+Sports: Olympics: Los Angeles 1984: How many GOLD medals were won by Jamaica?
+0
+10
+
+Sports: Olympics: Los Angeles 1984: How many GOLD medals were won by Japan?
+10
+10
+
+Sports: Olympics: Los Angeles 1984: How many GOLD medals were won by New Zealand?
+8
+10
+
+Sports: Olympics: Los Angeles 1984: How many GOLD medals were won by Nigeria?
+0
+10
+
+Sports: Olympics: Los Angeles 1984: How many GOLD medals were won by Norway?
+0
+10
+
+Sports: Olympics: Los Angeles 1984: How many GOLD medals were won by Romania?
+20
+10
+
+Sports: Olympics: Los Angeles 1984: How many GOLD medals were won by Sweden?
+2
+10
+
+Sports: Olympics: Los Angeles 1984: How many GOLD medals were won by United States?
+83
+10
+
+Sports: Olympics: Los Angeles 1984: How many GOLD medals were won by West Germany?
+17
+10
+
+Sports: Olympics: Los Angeles 1984: How many Gold, Silver & Bronze medals (TOTAL) were won by Algeria?
+2
+10
+
+Sports: Olympics: Los Angeles 1984: How many Gold, Silver & Bronze medals (TOTAL) were won by Australia?
+24
+10
+
+Sports: Olympics: Los Angeles 1984: How many Gold, Silver & Bronze medals (TOTAL) were won by Austria?
+3
+10
+
+Sports: Olympics: Los Angeles 1984: How many Gold, Silver & Bronze medals (TOTAL) were won by Belgium?
+4
+10
+
+Sports: Olympics: Los Angeles 1984: How many Gold, Silver & Bronze medals (TOTAL) were won by Brazil?
+8
+10
+
+Sports: Olympics: Los Angeles 1984: How many Gold, Silver & Bronze medals (TOTAL) were won by Cameroon?
+1
+10
+
+Sports: Olympics: Los Angeles 1984: How many Gold, Silver & Bronze medals (TOTAL) were won by Canada?
+44
+10
+
+Sports: Olympics: Los Angeles 1984: How many Gold, Silver & Bronze medals (TOTAL) were won by China?
+32
+10
+
+Sports: Olympics: Los Angeles 1984: How many Gold, Silver & Bronze medals (TOTAL) were won by Colombia?
+1
+10
+
+Sports: Olympics: Los Angeles 1984: How many Gold, Silver & Bronze medals (TOTAL) were won by Denmark?
+6
+10
+
+Sports: Olympics: Los Angeles 1984: How many Gold, Silver & Bronze medals (TOTAL) were won by Dominic Republic?
+1
+10
+
+Sports: Olympics: Los Angeles 1984: How many Gold, Silver & Bronze medals (TOTAL) were won by Egypt?
+1
+10
+
+Sports: Olympics: Los Angeles 1984: How many Gold, Silver & Bronze medals (TOTAL) were won by Finland?
+13
+10
+
+Sports: Olympics: Los Angeles 1984: How many Gold, Silver & Bronze medals (TOTAL) were won by France?
+27
+10
+
+Sports: Olympics: Los Angeles 1984: How many Gold, Silver & Bronze medals (TOTAL) were won by Great Britain?
+19
+10
+
+Sports: Olympics: Los Angeles 1984: How many Gold, Silver & Bronze medals (TOTAL) were won by Greece?
+2
+10
+
+Sports: Olympics: Los Angeles 1984: How many Gold, Silver & Bronze medals (TOTAL) were won by Iceland?
+1
+10
+
+Sports: Olympics: Los Angeles 1984: How many Gold, Silver & Bronze medals (TOTAL) were won by Ireland?
+1
+10
+
+Sports: Olympics: Los Angeles 1984: How many Gold, Silver & Bronze medals (TOTAL) were won by Italy?
+32
+10
+
+Sports: Olympics: Los Angeles 1984: How many Gold, Silver & Bronze medals (TOTAL) were won by Ivory Coast?
+1
+10
+
+Sports: Olympics: Los Angeles 1984: How many Gold, Silver & Bronze medals (TOTAL) were won by Jamaica?
+3
+10
+
+Sports: Olympics: Los Angeles 1984: How many Gold, Silver & Bronze medals (TOTAL) were won by Japan?
+32
+10
+
+Sports: Olympics: Los Angeles 1984: How many Gold, Silver & Bronze medals (TOTAL) were won by Kenya?
+2
+10
+
+Sports: Olympics: Los Angeles 1984: How many Gold, Silver & Bronze medals (TOTAL) were won by Mexico?
+6
+10
+
+Sports: Olympics: Los Angeles 1984: How many Gold, Silver & Bronze medals (TOTAL) were won by Morocco?
+2
+10
+
+Sports: Olympics: Los Angeles 1984: How many Gold, Silver & Bronze medals (TOTAL) were won by Netherlands?
+13
+10
+
+Sports: Olympics: Los Angeles 1984: How many Gold, Silver & Bronze medals (TOTAL) were won by New Zealand?
+11
+10
+
+Sports: Olympics: Los Angeles 1984: How many Gold, Silver & Bronze medals (TOTAL) were won by Nigeria?
+2
+10
+
+Sports: Olympics: Los Angeles 1984: How many Gold, Silver & Bronze medals (TOTAL) were won by Norway?
+3
+10
+
+Sports: Olympics: Los Angeles 1984: How many Gold, Silver & Bronze medals (TOTAL) were won by Pakistan?
+1
+10
+
+Sports: Olympics: Los Angeles 1984: How many Gold, Silver & Bronze medals (TOTAL) were won by Peru?
+1
+10
+
+Sports: Olympics: Los Angeles 1984: How many Gold, Silver & Bronze medals (TOTAL) were won by Portugal?
+3
+10
+
+Sports: Olympics: Los Angeles 1984: How many Gold, Silver & Bronze medals (TOTAL) were won by Puerto Rico?
+2
+10
+
+Sports: Olympics: Los Angeles 1984: How many Gold, Silver & Bronze medals (TOTAL) were won by Romania?
+53
+10
+
+Sports: Olympics: Los Angeles 1984: How many Gold, Silver & Bronze medals (TOTAL) were won by Spain?
+5
+10
+
+Sports: Olympics: Los Angeles 1984: How many Gold, Silver & Bronze medals (TOTAL) were won by Sweden?
+19
+10
+
+Sports: Olympics: Los Angeles 1984: How many Gold, Silver & Bronze medals (TOTAL) were won by Switzerland?
+8
+10
+
+Sports: Olympics: Los Angeles 1984: How many Gold, Silver & Bronze medals (TOTAL) were won by Syria?
+1
+10
+
+Sports: Olympics: Los Angeles 1984: How many Gold, Silver & Bronze medals (TOTAL) were won by Taiwan?
+1
+10
+
+Sports: Olympics: Los Angeles 1984: How many Gold, Silver & Bronze medals (TOTAL) were won by Thailand?
+1
+10
+
+Sports: Olympics: Los Angeles 1984: How many Gold, Silver & Bronze medals (TOTAL) were won by Turkey?
+3
+10
+
+Sports: Olympics: Los Angeles 1984: How many Gold, Silver & Bronze medals (TOTAL) were won by United States?
+174
+10
+
+Sports: Olympics: Los Angeles 1984: How many Gold, Silver & Bronze medals (TOTAL) were won by Venezuela?
+3
+10
+
+Sports: Olympics: Los Angeles 1984: How many Gold, Silver & Bronze medals (TOTAL) were won by West Germany?
+59
+10
+
+Sports: Olympics: Los Angeles 1984: How many Gold, Silver & Bronze medals (TOTAL) were won by Yugoslavia?
+18
+10
+
+Sports: Olympics: Los Angeles 1984: How many Gold, Silver & Bronze medals (TOTAL) were won by Zambia?
+1
+10
+
+Sports: Olympics: Los Angeles 1984: How many SILVER medals were won by Algeria?
+0
+10
+
+Sports: Olympics: Los Angeles 1984: How many SILVER medals were won by Australia?
+8
+10
+
+Sports: Olympics: Los Angeles 1984: How many SILVER medals were won by Brazil?
+5
+10
+
+Sports: Olympics: Los Angeles 1984: How many SILVER medals were won by Cameroon?
+0
+10
+
+Sports: Olympics: Los Angeles 1984: How many SILVER medals were won by Canada?
+18
+10
+
+Sports: Olympics: Los Angeles 1984: How many SILVER medals were won by China?
+8
+10
+
+Sports: Olympics: Los Angeles 1984: How many SILVER medals were won by Dominic Republic?
+0
+10
+
+Sports: Olympics: Los Angeles 1984: How many SILVER medals were won by Finland?
+2
+10
+
+Sports: Olympics: Los Angeles 1984: How many SILVER medals were won by France?
+7
+10
+
+Sports: Olympics: Los Angeles 1984: How many SILVER medals were won by Great Britain?
+11
+10
+
+Sports: Olympics: Los Angeles 1984: How many SILVER medals were won by Iceland?
+0
+10
+
+Sports: Olympics: Los Angeles 1984: How many SILVER medals were won by Italy?
+6
+10
+
+Sports: Olympics: Los Angeles 1984: How many SILVER medals were won by Jamaica?
+1
+10
+
+Sports: Olympics: Los Angeles 1984: How many SILVER medals were won by Japan?
+8
+10
+
+Sports: Olympics: Los Angeles 1984: How many SILVER medals were won by Kenya?
+0
+10
+
+Sports: Olympics: Los Angeles 1984: How many SILVER medals were won by Mexico?
+3
+10
+
+Sports: Olympics: Los Angeles 1984: How many SILVER medals were won by Netherlands?
+8
+10
+
+Sports: Olympics: Los Angeles 1984: How many SILVER medals were won by New Zealand?
+1
+10
+
+Sports: Olympics: Los Angeles 1984: How many SILVER medals were won by Norway?
+1
+10
+
+Sports: Olympics: Los Angeles 1984: How many SILVER medals were won by Portugal?
+0
+10
+
+Sports: Olympics: Los Angeles 1984: How many SILVER medals were won by Romania?
+16
+10
+
+Sports: Olympics: Los Angeles 1984: How many SILVER medals were won by Taiwan?
+0
+10
+
+Sports: Olympics: Los Angeles 1984: How many SILVER medals were won by Turkey?
+0
+10
+
+Sports: Olympics: Los Angeles 1984: How many SILVER medals were won by United States?
+61
+10
+
+Sports: Olympics: Los Angeles 1984: How many SILVER medals were won by Venezuela?
+0
+10
+
+Sports: Olympics: Los Angeles 1984: How many SILVER medals were won by West Germany?
+19
+10
+
+Sports: Olympics: Los Angeles 1984: How many SILVER medals were won by Yugoslavia?
+4
+10
+
+Sports: Olympics: Los Angeles 1984: How many SILVER medals were won by Zambia?
+0
+10
+
+Sports: Olympics: Los Angeles 1984: This countries medal tally was 0 Gold, 0 Silver, 1 Bronze, 1 in Total?
+Cameroon
+10
+
+Sports: Olympics: Los Angeles 1984: This countries medal tally was 0 Gold, 0 Silver, 1 Bronze, 1 in Total?
+Dominic republic
+10
+
+Sports: Olympics: Los Angeles 1984: This countries medal tally was 0 Gold, 0 Silver, 1 Bronze, 1 in Total?
+Iceland
+10
+
+Sports: Olympics: Los Angeles 1984: This countries medal tally was 0 Gold, 0 Silver, 1 Bronze, 1 in Total?
+Taiwan
+10
+
+Sports: Olympics: Los Angeles 1984: This countries medal tally was 0 Gold, 0 Silver, 1 Bronze, 1 in Total?
+Zambia
+10
+
+Sports: Olympics: Los Angeles 1984: This countries medal tally was 0 Gold, 0 Silver, 2 Bronze, 2 in Total?
+Algeria
+10
+
+Sports: Olympics: Los Angeles 1984: This countries medal tally was 0 Gold, 0 Silver, 3 Bronze, 3 in Total?
+Turkey
+10
+
+Sports: Olympics: Los Angeles 1984: This countries medal tally was 0 Gold, 0 Silver, 3 Bronze, 3 in Total?
+Venezuela
+10
+
+Sports: Olympics: Los Angeles 1984: This countries medal tally was 0 Gold, 1 Silver, 0 Bronze, 1 in Total?
+Colombia
+10
+
+Sports: Olympics: Los Angeles 1984: This countries medal tally was 0 Gold, 1 Silver, 0 Bronze, 1 in Total?
+Egypt
+10
+
+Sports: Olympics: Los Angeles 1984: This countries medal tally was 0 Gold, 1 Silver, 0 Bronze, 1 in Total?
+Ireland
+10
+
+Sports: Olympics: Los Angeles 1984: This countries medal tally was 0 Gold, 1 Silver, 0 Bronze, 1 in Total?
+Ivory coast
+10
+
+Sports: Olympics: Los Angeles 1984: This countries medal tally was 0 Gold, 1 Silver, 0 Bronze, 1 in Total?
+Peru
+10
+
+Sports: Olympics: Los Angeles 1984: This countries medal tally was 0 Gold, 1 Silver, 0 Bronze, 1 in Total?
+Syria
+10
+
+Sports: Olympics: Los Angeles 1984: This countries medal tally was 0 Gold, 1 Silver, 0 Bronze, 1 in Total?
+Thailand
+10
+
+Sports: Olympics: Los Angeles 1984: This countries medal tally was 0 Gold, 1 Silver, 1 Bronze, 2 in Total?
+Greece
+10
+
+Sports: Olympics: Los Angeles 1984: This countries medal tally was 0 Gold, 1 Silver, 1 Bronze, 2 in Total?
+Nigeria
+10
+
+Sports: Olympics: Los Angeles 1984: This countries medal tally was 0 Gold, 1 Silver, 1 Bronze, 2 in Total?
+Puerto rico
+10
+
+Sports: Olympics: Los Angeles 1984: This countries medal tally was 0 Gold, 1 Silver, 2 Bronze, 3 in Total?
+Jamaica
+10
+
+Sports: Olympics: Los Angeles 1984: This countries medal tally was 0 Gold, 1 Silver, 2 Bronze, 3 in Total?
+Norway
+10
+
+Sports: Olympics: Los Angeles 1984: This countries medal tally was 0 Gold, 3 Silver, 3 Bronze, 6 in Total?
+Denmark
+10
+
+Sports: Olympics: Los Angeles 1984: This countries medal tally was 0 Gold, 4 Silver, 4 Bronze, 8 in Total?
+Switzerland
+10
+
+Sports: Olympics: Los Angeles 1984: This countries medal tally was 1 Gold, 0 Silver, 0 Bronze, 1 in Total?
+Pakistan
+10
+
+Sports: Olympics: Los Angeles 1984: This countries medal tally was 1 Gold, 0 Silver, 1 Bronze, 2 in Total?
+Kenya
+10
+
+Sports: Olympics: Los Angeles 1984: This countries medal tally was 1 Gold, 0 Silver, 2 Bronze, 3 in Total?
+Portugal
+10
+
+Sports: Olympics: Los Angeles 1984: This countries medal tally was 1 Gold, 1 Silver, 1 Bronze, 3 in Total?
+Austria
+10
+
+Sports: Olympics: Los Angeles 1984: This countries medal tally was 1 Gold, 1 Silver, 2 Bronze, 4 in Total?
+Belgium
+10
+
+Sports: Olympics: Los Angeles 1984: This countries medal tally was 1 Gold, 2 Silver, 2 Bronze, 5 in Total?
+Spain
+10
+
+Sports: Olympics: Los Angeles 1984: This countries medal tally was 1 Gold, 5 Silver, 2 Bronze, 8 in Total?
+Brazil
+10
+
+Sports: Olympics: Los Angeles 1984: This countries medal tally was 10 Gold, 18 Silver, 16 Bronze, 44 in Total?
+Canada
+10
+
+Sports: Olympics: Los Angeles 1984: This countries medal tally was 10 Gold, 8 Silver, 14 Bronze, 32 in Total?
+Japan
+10
+
+Sports: Olympics: Los Angeles 1984: This countries medal tally was 14 Gold, 6 Silver, 12 Bronze, 32 in Total?
+Italy
+10
+
+Sports: Olympics: Los Angeles 1984: This countries medal tally was 15 Gold, 8 Silver, 9 Bronze, 32 in Total?
+China
+10
+
+Sports: Olympics: Los Angeles 1984: This countries medal tally was 17 Gold, 19 Silver, 23 Bronze, 59 in Total?
+West Germany
+10
+
+Sports: Olympics: Los Angeles 1984: This countries medal tally was 2 Gold, 0 Silver, 0 Bronze, 2 in Total?
+Morocco
+10
+
+Sports: Olympics: Los Angeles 1984: This countries medal tally was 2 Gold, 11 Silver, 6 Bronze, 19 in Total?
+Sweden
+10
+
+Sports: Olympics: Los Angeles 1984: This countries medal tally was 2 Gold, 3 Silver, 1 Bronze, 6 in Total?
+Mexico
+10
+
+Sports: Olympics: Los Angeles 1984: This countries medal tally was 20 Gold, 16 Silver, 17 Bronze, 53 in Total?
+Romania
+10
+
+Sports: Olympics: Los Angeles 1984: This countries medal tally was 4 Gold, 2 Silver, 6 Bronze, 13 in Total?
+Finland
+10
+
+Sports: Olympics: Los Angeles 1984: This countries medal tally was 4 Gold, 8 Silver, 12 Bronze, 24 in Total?
+Australia
+10
+
+Sports: Olympics: Los Angeles 1984: This countries medal tally was 5 Gold, 11 Silver, 7 Bronze, 19 in Total?
+Great britain
+10
+
+Sports: Olympics: Los Angeles 1984: This countries medal tally was 5 Gold, 7 Silver, 15 Bronze, 27 in Total?
+France
+10
+
+Sports: Olympics: Los Angeles 1984: This countries medal tally was 5 Gold, 8 Silver, 6 Bronze, 13 in Total?
+Netherlands
+10
+
+Sports: Olympics: Los Angeles 1984: This countries medal tally was 7 Gold, 4 Silver, 7 Bronze, 18 in Total?
+Yugoslavia
+10
+
+Sports: Olympics: Los Angeles 1984: This countries medal tally was 8 Gold, 1 Silver, 2 Bronze, 11 in Total?
+New zealand
+10
+
+Sports: Olympics: Los Angeles 1984: This countries medal tally was 83 Gold, 61 Silver, 30 Bronze, 174 in Total?
+United states
+10
+
+Sports: Olympics: Malcolm Cooper is an Olympic gold medal winner in which sport?
+Shooting
+10
+
+Sports: Olympics: Montreal 1976: How many BRONZE medals were won by Bulgaria?
+7
+10
+
+Sports: Olympics: Montreal 1976: How many BRONZE medals were won by Canada?
+6
+10
+
+Sports: Olympics: Montreal 1976: How many BRONZE medals were won by Cuba?
+3
+10
+
+Sports: Olympics: Montreal 1976: How many BRONZE medals were won by Czechoslovakia?
+4
+10
+
+Sports: Olympics: Montreal 1976: How many BRONZE medals were won by Denmark?
+2
+10
+
+Sports: Olympics: Montreal 1976: How many BRONZE medals were won by East Germany?
+25
+10
+
+Sports: Olympics: Montreal 1976: How many BRONZE medals were won by Finland?
+0
+10
+
+Sports: Olympics: Montreal 1976: How many BRONZE medals were won by France?
+4
+10
+
+Sports: Olympics: Montreal 1976: How many BRONZE medals were won by Hungary?
+13
+10
+
+Sports: Olympics: Montreal 1976: How many BRONZE medals were won by Italy?
+4
+10
+
+Sports: Olympics: Montreal 1976: How many BRONZE medals were won by Monaco?
+0
+10
+
+Sports: Olympics: Montreal 1976: How many BRONZE medals were won by Poland?
+13
+10
+
+Sports: Olympics: Montreal 1976: How many BRONZE medals were won by Romania?
+14
+10
+
+Sports: Olympics: Montreal 1976: How many BRONZE medals were won by South Korea?
+4
+10
+
+Sports: Olympics: Montreal 1976: How many BRONZE medals were won by Soviet Union?
+35
+10
+
+Sports: Olympics: Montreal 1976: How many BRONZE medals were won by Spain?
+0
+10
+
+Sports: Olympics: Montreal 1976: How many BRONZE medals were won by Sweden?
+0
+10
+
+Sports: Olympics: Montreal 1976: How many BRONZE medals were won by Trinidad?
+0
+10
+
+Sports: Olympics: Montreal 1976: How many BRONZE medals were won by United States?
+25
+10
+
+Sports: Olympics: Montreal 1976: How many GOLD medals were won by Australia?
+0
+10
+
+Sports: Olympics: Montreal 1976: How many GOLD medals were won by Canada?
+0
+10
+
+Sports: Olympics: Montreal 1976: How many GOLD medals were won by East Germany?
+40
+10
+
+Sports: Olympics: Montreal 1976: How many GOLD medals were won by France?
+2
+10
+
+Sports: Olympics: Montreal 1976: How many GOLD medals were won by Hungary?
+4
+10
+
+Sports: Olympics: Montreal 1976: How many GOLD medals were won by Italy?
+2
+10
+
+Sports: Olympics: Montreal 1976: How many GOLD medals were won by Netherlands?
+0
+10
+
+Sports: Olympics: Montreal 1976: How many GOLD medals were won by Poland?
+7
+10
+
+Sports: Olympics: Montreal 1976: How many GOLD medals were won by Soviet Union?
+49
+10
+
+Sports: Olympics: Montreal 1976: How many GOLD medals were won by United States?
+34
+10
+
+Sports: Olympics: Montreal 1976: How many GOLD medals were won by West Germany?
+10
+10
+
+Sports: Olympics: Montreal 1976: How many Gold, Silver & Bronze medals (TOTAL) were won by Australia?
+5
+10
+
+Sports: Olympics: Montreal 1976: How many Gold, Silver & Bronze medals (TOTAL) were won by Austria?
+1
+10
+
+Sports: Olympics: Montreal 1976: How many Gold, Silver & Bronze medals (TOTAL) were won by Belgium?
+6
+10
+
+Sports: Olympics: Montreal 1976: How many Gold, Silver & Bronze medals (TOTAL) were won by Bermuda?
+1
+10
+
+Sports: Olympics: Montreal 1976: How many Gold, Silver & Bronze medals (TOTAL) were won by Brazil?
+2
+10
+
+Sports: Olympics: Montreal 1976: How many Gold, Silver & Bronze medals (TOTAL) were won by Bulgaria?
+22
+10
+
+Sports: Olympics: Montreal 1976: How many Gold, Silver & Bronze medals (TOTAL) were won by Canada?
+11
+10
+
+Sports: Olympics: Montreal 1976: How many Gold, Silver & Bronze medals (TOTAL) were won by Cuba?
+13
+10
+
+Sports: Olympics: Montreal 1976: How many Gold, Silver & Bronze medals (TOTAL) were won by Czechoslovakia?
+8
+10
+
+Sports: Olympics: Montreal 1976: How many Gold, Silver & Bronze medals (TOTAL) were won by Denmark?
+3
+10
+
+Sports: Olympics: Montreal 1976: How many Gold, Silver & Bronze medals (TOTAL) were won by East Germany?
+90
+10
+
+Sports: Olympics: Montreal 1976: How many Gold, Silver & Bronze medals (TOTAL) were won by Finland?
+6
+10
+
+Sports: Olympics: Montreal 1976: How many Gold, Silver & Bronze medals (TOTAL) were won by France?
+9
+10
+
+Sports: Olympics: Montreal 1976: How many Gold, Silver & Bronze medals (TOTAL) were won by Great Britain?
+13
+10
+
+Sports: Olympics: Montreal 1976: How many Gold, Silver & Bronze medals (TOTAL) were won by Hungary?
+22
+10
+
+Sports: Olympics: Montreal 1976: How many Gold, Silver & Bronze medals (TOTAL) were won by Iran?
+2
+10
+
+Sports: Olympics: Montreal 1976: How many Gold, Silver & Bronze medals (TOTAL) were won by Italy?
+13
+10
+
+Sports: Olympics: Montreal 1976: How many Gold, Silver & Bronze medals (TOTAL) were won by Jamaica?
+2
+10
+
+Sports: Olympics: Montreal 1976: How many Gold, Silver & Bronze medals (TOTAL) were won by Japan?
+25
+10
+
+Sports: Olympics: Montreal 1976: How many Gold, Silver & Bronze medals (TOTAL) were won by Mexico?
+2
+10
+
+Sports: Olympics: Montreal 1976: How many Gold, Silver & Bronze medals (TOTAL) were won by Monaco?
+1
+10
+
+Sports: Olympics: Montreal 1976: How many Gold, Silver & Bronze medals (TOTAL) were won by Netherlands?
+5
+10
+
+Sports: Olympics: Montreal 1976: How many Gold, Silver & Bronze medals (TOTAL) were won by New Zealand?
+4
+10
+
+Sports: Olympics: Montreal 1976: How many Gold, Silver & Bronze medals (TOTAL) were won by North Korea?
+2
+10
+
+Sports: Olympics: Montreal 1976: How many Gold, Silver & Bronze medals (TOTAL) were won by Norway?
+2
+10
+
+Sports: Olympics: Montreal 1976: How many Gold, Silver & Bronze medals (TOTAL) were won by Poland?
+26
+10
+
+Sports: Olympics: Montreal 1976: How many Gold, Silver & Bronze medals (TOTAL) were won by Portugal?
+2
+10
+
+Sports: Olympics: Montreal 1976: How many Gold, Silver & Bronze medals (TOTAL) were won by Romania?
+27
+10
+
+Sports: Olympics: Montreal 1976: How many Gold, Silver & Bronze medals (TOTAL) were won by South Korea?
+6
+10
+
+Sports: Olympics: Montreal 1976: How many Gold, Silver & Bronze medals (TOTAL) were won by Soviet Union?
+125
+10
+
+Sports: Olympics: Montreal 1976: How many Gold, Silver & Bronze medals (TOTAL) were won by Spain?
+2
+10
+
+Sports: Olympics: Montreal 1976: How many Gold, Silver & Bronze medals (TOTAL) were won by Sweden?
+5
+10
+
+Sports: Olympics: Montreal 1976: How many Gold, Silver & Bronze medals (TOTAL) were won by Switzerland?
+4
+10
+
+Sports: Olympics: Montreal 1976: How many Gold, Silver & Bronze medals (TOTAL) were won by Trinidad?
+1
+10
+
+Sports: Olympics: Montreal 1976: How many Gold, Silver & Bronze medals (TOTAL) were won by United States?
+94
+10
+
+Sports: Olympics: Montreal 1976: How many Gold, Silver & Bronze medals (TOTAL) were won by Venezuela?
+1
+10
+
+Sports: Olympics: Montreal 1976: How many Gold, Silver & Bronze medals (TOTAL) were won by West Germany?
+39
+10
+
+Sports: Olympics: Montreal 1976: How many Gold, Silver & Bronze medals (TOTAL) were won by Yugoslavia?
+8
+10
+
+Sports: Olympics: Montreal 1976: How many SILVER medals were won by Australia?
+1
+10
+
+Sports: Olympics: Montreal 1976: How many SILVER medals were won by Bermuda?
+0
+10
+
+Sports: Olympics: Montreal 1976: How many SILVER medals were won by Bulgaria?
+9
+10
+
+Sports: Olympics: Montreal 1976: How many SILVER medals were won by Canada?
+5
+10
+
+Sports: Olympics: Montreal 1976: How many SILVER medals were won by Cuba?
+4
+10
+
+Sports: Olympics: Montreal 1976: How many SILVER medals were won by France?
+3
+10
+
+Sports: Olympics: Montreal 1976: How many SILVER medals were won by Hungary?
+5
+10
+
+Sports: Olympics: Montreal 1976: How many SILVER medals were won by Italy?
+7
+10
+
+Sports: Olympics: Montreal 1976: How many SILVER medals were won by Japan?
+6
+10
+
+Sports: Olympics: Montreal 1976: How many SILVER medals were won by Netherlands?
+2
+10
+
+Sports: Olympics: Montreal 1976: How many SILVER medals were won by North Korea?
+1
+10
+
+Sports: Olympics: Montreal 1976: How many SILVER medals were won by Romania?
+9
+10
+
+Sports: Olympics: Montreal 1976: How many SILVER medals were won by South Korea?
+1
+10
+
+Sports: Olympics: Montreal 1976: How many SILVER medals were won by Soviet Union?
+41
+10
+
+Sports: Olympics: Montreal 1976: How many SILVER medals were won by Sweden?
+1
+10
+
+Sports: Olympics: Montreal 1976: How many SILVER medals were won by United States?
+35
+10
+
+Sports: Olympics: Montreal 1976: How many SILVER medals were won by West Germany?
+12
+10
+
+Sports: Olympics: Montreal 1976: This countries medal tally was 0 Gold, 0 Silver, 1 Bronze, 1 in Total?
+Austria
+10
+
+Sports: Olympics: Montreal 1976: This countries medal tally was 0 Gold, 0 Silver, 1 Bronze, 1 in Total?
+Bermuda
+10
+
+Sports: Olympics: Montreal 1976: This countries medal tally was 0 Gold, 0 Silver, 2 Bronze, 2 in Total?
+Brazil
+10
+
+Sports: Olympics: Montreal 1976: This countries medal tally was 0 Gold, 1 Silver, 0 Bronze, 1 in Total?
+Monaco
+10
+
+Sports: Olympics: Montreal 1976: This countries medal tally was 0 Gold, 1 Silver, 0 Bronze, 1 in Total?
+Venezuela
+10
+
+Sports: Olympics: Montreal 1976: This countries medal tally was 0 Gold, 1 Silver, 1 Bronze, 2 in Total?
+Iran
+10
+
+Sports: Olympics: Montreal 1976: This countries medal tally was 0 Gold, 1 Silver, 4 Bronze, 5 in Total?
+Australia
+10
+
+Sports: Olympics: Montreal 1976: This countries medal tally was 0 Gold, 2 Silver, 0 Bronze, 2 in Total?
+Portugal
+10
+
+Sports: Olympics: Montreal 1976: This countries medal tally was 0 Gold, 2 Silver, 0 Bronze, 2 in Total?
+Spain
+10
+
+Sports: Olympics: Montreal 1976: This countries medal tally was 0 Gold, 2 Silver, 3 Bronze, 5 in Total?
+Netherlands
+10
+
+Sports: Olympics: Montreal 1976: This countries medal tally was 0 Gold, 3 Silver, 3 Bronze, 6 in Total?
+Belgium
+10
+
+Sports: Olympics: Montreal 1976: This countries medal tally was 0 Gold, 5 Silver, 6 Bronze, 11 in Total?
+Canada
+10
+
+Sports: Olympics: Montreal 1976: This countries medal tally was 1 Gold, 0 Silver, 0 Bronze, 1 in Total?
+Trinidad
+10
+
+Sports: Olympics: Montreal 1976: This countries medal tally was 1 Gold, 0 Silver, 1 Bronze, 2 in Total?
+Mexico
+10
+
+Sports: Olympics: Montreal 1976: This countries medal tally was 1 Gold, 0 Silver, 2 Bronze, 3 in Total?
+Denmark
+10
+
+Sports: Olympics: Montreal 1976: This countries medal tally was 1 Gold, 1 Silver, 0 Bronze, 2 in Total?
+Jamaica
+10
+
+Sports: Olympics: Montreal 1976: This countries medal tally was 1 Gold, 1 Silver, 0 Bronze, 2 in Total?
+North korea
+10
+
+Sports: Olympics: Montreal 1976: This countries medal tally was 1 Gold, 1 Silver, 0 Bronze, 2 in Total?
+Norway
+10
+
+Sports: Olympics: Montreal 1976: This countries medal tally was 1 Gold, 1 Silver, 2 Bronze, 4 in Total?
+Switzerland
+10
+
+Sports: Olympics: Montreal 1976: This countries medal tally was 1 Gold, 1 Silver, 4 Bronze, 6 in Total?
+South korea
+10
+
+Sports: Olympics: Montreal 1976: This countries medal tally was 10 Gold, 12 Silver, 17 Bronze, 39 in Total?
+West Germany
+10
+
+Sports: Olympics: Montreal 1976: This countries medal tally was 2 Gold, 1 Silver, 1 Bronze, 4 in Total?
+New zealand
+10
+
+Sports: Olympics: Montreal 1976: This countries medal tally was 2 Gold, 2 Silver, 4 Bronze, 8 in Total?
+Czechoslovakia
+10
+
+Sports: Olympics: Montreal 1976: This countries medal tally was 2 Gold, 3 Silver, 3 Bronze, 8 in Total?
+Yugoslavia
+10
+
+Sports: Olympics: Montreal 1976: This countries medal tally was 2 Gold, 3 Silver, 4 Bronze, 9 in Total?
+France
+10
+
+Sports: Olympics: Montreal 1976: This countries medal tally was 2 Gold, 7 Silver, 4 Bronze, 13 in Total?
+Italy
+10
+
+Sports: Olympics: Montreal 1976: This countries medal tally was 3 Gold, 5 Silver, 5 Bronze, 13 in Total?
+Great britain
+10
+
+Sports: Olympics: Montreal 1976: This countries medal tally was 34 Gold, 35 Silver, 25 Bronze, 94 in Total?
+United states
+10
+
+Sports: Olympics: Montreal 1976: This countries medal tally was 4 Gold, 1 Silver, 0 Bronze, 5 in Total?
+Sweden
+10
+
+Sports: Olympics: Montreal 1976: This countries medal tally was 4 Gold, 2 Silver, 0 Bronze, 6 in Total?
+Finland
+10
+
+Sports: Olympics: Montreal 1976: This countries medal tally was 4 Gold, 5 Silver, 13 Bronze, 22 in Total?
+Hungary
+10
+
+Sports: Olympics: Montreal 1976: This countries medal tally was 4 Gold, 9 Silver, 14 Bronze, 27 in Total?
+Romania
+10
+
+Sports: Olympics: Montreal 1976: This countries medal tally was 40 Gold, 25 Silver, 25 Bronze, 90 in Total?
+East Germany
+10
+
+Sports: Olympics: Montreal 1976: This countries medal tally was 49 Gold, 41 Silver, 35 Bronze, 125 in Total?
+Soviet union
+10
+
+Sports: Olympics: Montreal 1976: This countries medal tally was 6 Gold, 4 Silver, 3 Bronze, 13 in Total?
+Cuba
+10
+
+Sports: Olympics: Montreal 1976: This countries medal tally was 6 Gold, 9 Silver, 7 Bronze, 22 in Total?
+Bulgaria
+10
+
+Sports: Olympics: Montreal 1976: This countries medal tally was 7 Gold, 6 Silver, 13 Bronze, 26 in Total?
+Poland
+10
+
+Sports: Olympics: Montreal 1976: This countries medal tally was 9 Gold, 6 Silver, 10 Bronze, 25 in Total?
+Japan
+10
+
+Sports: Olympics: Moscow 1980: How many BRONZE medals were won by Bulgaria?
+17
+10
+
+Sports: Olympics: Moscow 1980: How many BRONZE medals were won by Cuba?
+5
+10
+
+Sports: Olympics: Moscow 1980: How many BRONZE medals were won by Czechoslovakia?
+9
+10
+
+Sports: Olympics: Moscow 1980: How many BRONZE medals were won by East Germany?
+42
+10
+
+Sports: Olympics: Moscow 1980: How many BRONZE medals were won by Great Britain?
+9
+10
+
+Sports: Olympics: Moscow 1980: How many BRONZE medals were won by Hungary?
+15
+10
+
+Sports: Olympics: Moscow 1980: How many BRONZE medals were won by Monaco?
+2
+10
+
+Sports: Olympics: Moscow 1980: How many BRONZE medals were won by Poland?
+15
+10
+
+Sports: Olympics: Moscow 1980: How many BRONZE medals were won by Romania?
+13
+10
+
+Sports: Olympics: Moscow 1980: How many BRONZE medals were won by Soviet Union?
+46
+10
+
+Sports: Olympics: Moscow 1980: How many BRONZE medals were won by Tanzania?
+0
+10
+
+Sports: Olympics: Moscow 1980: How many BRONZE medals were won by Zimbabwe?
+0
+10
+
+Sports: Olympics: Moscow 1980: How many GOLD medals were won by Bulgaria?
+8
+10
+
+Sports: Olympics: Moscow 1980: How many GOLD medals were won by East Germany?
+47
+10
+
+Sports: Olympics: Moscow 1980: How many GOLD medals were won by Finland?
+3
+10
+
+Sports: Olympics: Moscow 1980: How many GOLD medals were won by Soviet Union?
+80
+10
+
+Sports: Olympics: Moscow 1980: How many Gold, Silver & Bronze medals (TOTAL) were won by Australia?
+9
+10
+
+Sports: Olympics: Moscow 1980: How many Gold, Silver & Bronze medals (TOTAL) were won by Austria?
+4
+10
+
+Sports: Olympics: Moscow 1980: How many Gold, Silver & Bronze medals (TOTAL) were won by Belgium?
+1
+10
+
+Sports: Olympics: Moscow 1980: How many Gold, Silver & Bronze medals (TOTAL) were won by Brazil?
+4
+10
+
+Sports: Olympics: Moscow 1980: How many Gold, Silver & Bronze medals (TOTAL) were won by Bulgaria?
+41
+10
+
+Sports: Olympics: Moscow 1980: How many Gold, Silver & Bronze medals (TOTAL) were won by Cuba?
+20
+10
+
+Sports: Olympics: Moscow 1980: How many Gold, Silver & Bronze medals (TOTAL) were won by Czechoslovakia?
+14
+10
+
+Sports: Olympics: Moscow 1980: How many Gold, Silver & Bronze medals (TOTAL) were won by Denmark?
+5
+10
+
+Sports: Olympics: Moscow 1980: How many Gold, Silver & Bronze medals (TOTAL) were won by East Germany?
+126
+10
+
+Sports: Olympics: Moscow 1980: How many Gold, Silver & Bronze medals (TOTAL) were won by Ethiopia?
+4
+10
+
+Sports: Olympics: Moscow 1980: How many Gold, Silver & Bronze medals (TOTAL) were won by Finland?
+8
+10
+
+Sports: Olympics: Moscow 1980: How many Gold, Silver & Bronze medals (TOTAL) were won by France?
+14
+10
+
+Sports: Olympics: Moscow 1980: How many Gold, Silver & Bronze medals (TOTAL) were won by Great Britain?
+21
+10
+
+Sports: Olympics: Moscow 1980: How many Gold, Silver & Bronze medals (TOTAL) were won by Greece?
+3
+10
+
+Sports: Olympics: Moscow 1980: How many Gold, Silver & Bronze medals (TOTAL) were won by Guyana?
+1
+10
+
+Sports: Olympics: Moscow 1980: How many Gold, Silver & Bronze medals (TOTAL) were won by Hungary?
+32
+10
+
+Sports: Olympics: Moscow 1980: How many Gold, Silver & Bronze medals (TOTAL) were won by Italy?
+15
+10
+
+Sports: Olympics: Moscow 1980: How many Gold, Silver & Bronze medals (TOTAL) were won by Lebanon?
+1
+10
+
+Sports: Olympics: Moscow 1980: How many Gold, Silver & Bronze medals (TOTAL) were won by Mexico?
+4
+10
+
+Sports: Olympics: Moscow 1980: How many Gold, Silver & Bronze medals (TOTAL) were won by Monaco?
+4
+10
+
+Sports: Olympics: Moscow 1980: How many Gold, Silver & Bronze medals (TOTAL) were won by Netherlands?
+3
+10
+
+Sports: Olympics: Moscow 1980: How many Gold, Silver & Bronze medals (TOTAL) were won by Poland?
+32
+10
+
+Sports: Olympics: Moscow 1980: How many Gold, Silver & Bronze medals (TOTAL) were won by Romania?
+25
+10
+
+Sports: Olympics: Moscow 1980: How many Gold, Silver & Bronze medals (TOTAL) were won by Soviet Union?
+195
+10
+
+Sports: Olympics: Moscow 1980: How many Gold, Silver & Bronze medals (TOTAL) were won by Spain?
+6
+10
+
+Sports: Olympics: Moscow 1980: How many Gold, Silver & Bronze medals (TOTAL) were won by Switzerland?
+2
+10
+
+Sports: Olympics: Moscow 1980: How many Gold, Silver & Bronze medals (TOTAL) were won by Tanzania?
+2
+10
+
+Sports: Olympics: Moscow 1980: How many Gold, Silver & Bronze medals (TOTAL) were won by Yugoslavia?
+9
+10
+
+Sports: Olympics: Moscow 1980: How many Gold, Silver & Bronze medals (TOTAL) were won by Zimbabwe?
+1
+10
+
+Sports: Olympics: Moscow 1980: How many SILVER medals were won by Australia?
+2
+10
+
+Sports: Olympics: Moscow 1980: How many SILVER medals were won by Bulgaria?
+16
+10
+
+Sports: Olympics: Moscow 1980: How many SILVER medals were won by Cuba?
+7
+10
+
+Sports: Olympics: Moscow 1980: How many SILVER medals were won by Czechoslovakia?
+3
+10
+
+Sports: Olympics: Moscow 1980: How many SILVER medals were won by East Germany?
+37
+10
+
+Sports: Olympics: Moscow 1980: How many SILVER medals were won by Guyana?
+0
+10
+
+Sports: Olympics: Moscow 1980: How many SILVER medals were won by Italy?
+3
+10
+
+Sports: Olympics: Moscow 1980: How many SILVER medals were won by Lebanon?
+0
+10
+
+Sports: Olympics: Moscow 1980: How many SILVER medals were won by Netherlands?
+1
+10
+
+Sports: Olympics: Moscow 1980: How many SILVER medals were won by North Korea?
+3
+10
+
+Sports: Olympics: Moscow 1980: How many SILVER medals were won by Soviet Union?
+69
+10
+
+Sports: Olympics: Moscow 1980: How many SILVER medals were won by Spain?
+3
+10
+
+Sports: Olympics: Moscow 1980: How many SILVER medals were won by Sweden?
+3
+10
+
+Sports: Olympics: Moscow 1980: Nadia Comaneci was judged to have given a perfect performance on the asymmetrical bars and which other exercise?
+The beam
+10
+
+Sports: Olympics: Moscow 1980: This countries medal tally was0 Gold, 0 Silver, 1 Bronze, 1 in Total?
+Guyana
+10
+
+Sports: Olympics: Moscow 1980: This countries medal tally was0 Gold, 0 Silver, 1 Bronze, 1 in Total?
+Lebanon
+10
+
+Sports: Olympics: Moscow 1980: This countries medal tally was0 Gold, 0 Silver, 3 Bronze, 3 in Total?
+Jamaica
+10
+
+Sports: Olympics: Moscow 1980: This countries medal tally was0 Gold, 1 Silver, 0 Bronze, 1 in Total?
+Uganda
+10
+
+Sports: Olympics: Moscow 1980: This countries medal tally was0 Gold, 1 Silver, 1 Bronze, 2 in Total?
+Ireland
+10
+
+Sports: Olympics: Moscow 1980: This countries medal tally was0 Gold, 1 Silver, 2 Bronze, 3 in Total?
+Netherlands
+10
+
+Sports: Olympics: Moscow 1980: This countries medal tally was0 Gold, 1 Silver, 3 Bronze, 4 in Total?
+Mexico
+10
+
+Sports: Olympics: Moscow 1980: This countries medal tally was0 Gold, 2 Silver, 0 Bronze, 2 in Total?
+Tanzania
+10
+
+Sports: Olympics: Moscow 1980: This countries medal tally was0 Gold, 2 Silver, 2 Bronze, 4 in Total?
+Monaco
+10
+
+Sports: Olympics: Moscow 1980: This countries medal tally was0 Gold, 3 Silver, 2 Bronze, 5 in Total?
+North korea
+10
+
+Sports: Olympics: Moscow 1980: This countries medal tally was1 Gold, 0 Silver, 0 Bronze, 1 in Total?
+Belgium
+10
+
+Sports: Olympics: Moscow 1980: This countries medal tally was1 Gold, 0 Silver, 0 Bronze, 1 in Total?
+India
+10
+
+Sports: Olympics: Moscow 1980: This countries medal tally was1 Gold, 0 Silver, 0 Bronze, 1 in Total?
+Zimbabwe
+10
+
+Sports: Olympics: Moscow 1980: This countries medal tally was1 Gold, 0 Silver, 2 Bronze, 3 in Total?
+Greece
+10
+
+Sports: Olympics: Moscow 1980: This countries medal tally was1 Gold, 2 Silver, 1 Bronze, 4 in Total?
+Austria
+10
+
+Sports: Olympics: Moscow 1980: This countries medal tally was1 Gold, 3 Silver, 2 Bronze, 6 in Total?
+Spain
+10
+
+Sports: Olympics: Moscow 1980: This countries medal tally was2 Gold, 0 Silver, 0 Bronze, 2 in Total?
+Switzerland
+10
+
+Sports: Olympics: Moscow 1980: This countries medal tally was2 Gold, 0 Silver, 2 Bronze, 4 in Total?
+Brazil
+10
+
+Sports: Olympics: Moscow 1980: This countries medal tally was2 Gold, 0 Silver, 2 Bronze, 4 in Total?
+Ethiopia
+10
+
+Sports: Olympics: Moscow 1980: This countries medal tally was2 Gold, 1 Silver, 2 Bronze, 5 in Total?
+Denmark
+10
+
+Sports: Olympics: Moscow 1980: This countries medal tally was2 Gold, 2 Silver, 5 Bronze, 9 in Total?
+Australia
+10
+
+Sports: Olympics: Moscow 1980: This countries medal tally was2 Gold, 3 Silver, 4 Bronze, 9 in Total?
+Yugoslavia
+10
+
+Sports: Olympics: Moscow 1980: This countries medal tally was2 Gold, 3 Silver, 9 Bronze, 14 in Total?
+Czechoslovakia
+10
+
+Sports: Olympics: Moscow 1980: This countries medal tally was3 Gold, 1 Silver, 4 Bronze, 8 in Total?
+Finland
+10
+
+Sports: Olympics: Moscow 1980: This countries medal tally was3 Gold, 14 Silver, 15 Bronze, 32 in Total?
+Poland
+10
+
+Sports: Olympics: Moscow 1980: This countries medal tally was3 Gold, 3 Silver, 6 Bronze, 12 in Total?
+Sweden
+10
+
+Sports: Olympics: Moscow 1980: This countries medal tally was47 Gold, 37 Silver, 42 Bronze, 126 in Total?
+East Germany
+10
+
+Sports: Olympics: Moscow 1980: This countries medal tally was5 Gold, 7 Silver, 9 Bronze, 21 in Total?
+Great britain
+10
+
+Sports: Olympics: Moscow 1980: This countries medal tally was6 Gold, 5 Silver, 3 Bronze, 14 in Total?
+France
+10
+
+Sports: Olympics: Moscow 1980: This countries medal tally was6 Gold, 6 Silver, 13 Bronze, 25 in Total?
+Romania
+10
+
+Sports: Olympics: Moscow 1980: This countries medal tally was7 Gold, 10 Silver, 15 Bronze, 32 in Total?
+Hungary
+10
+
+Sports: Olympics: Moscow 1980: This countries medal tally was8 Gold, 16 Silver, 17 Bronze, 41 in Total?
+Bulgaria
+10
+
+Sports: Olympics: Moscow 1980: This countries medal tally was8 Gold, 3 Silver, 4 Bronze, 15 in Total?
+Italy
+10
+
+Sports: Olympics: Moscow 1980: This countries medal tally was8 Gold, 7 Silver, 5 Bronze, 20 in Total?
+Cuba
+10
+
+Sports: Olympics: Moscow 1980: This countries medal tally was80 Gold, 69 Silver, 46 Bronze, 195 in Total?
+Soviet union
+10
+
+Sports: Olympics: Number of medals awarded Norway at the 1968 winter olympics?
+13
+10
+
+Sports: Olympics: Number of medals awarded the USSR at the 1972 summer olympics?
+99
+10
+
+Sports: Olympics: Runner paavo nurmi hails from what country?
+Finland
+10
+
+Sports: Olympics: Seoul 1988: How many BRONZE medals were won by East Germany?
+30
+10
+
+Sports: Olympics: Seoul 1988: How many BRONZE medals were won by Indonesia?
+0
+10
+
+Sports: Olympics: Seoul 1988: How many BRONZE medals were won by Japan?
+7
+10
+
+Sports: Olympics: Seoul 1988: How many BRONZE medals were won by Netherland Antilles?
+0
+10
+
+Sports: Olympics: Seoul 1988: How many BRONZE medals were won by Poland?
+9
+10
+
+Sports: Olympics: Seoul 1988: How many BRONZE medals were won by Senegal?
+0
+10
+
+Sports: Olympics: Seoul 1988: How many BRONZE medals were won by United States?
+27
+10
+
+Sports: Olympics: Seoul 1988: How many BRONZE medals were won by USSR?
+46
+10
+
+Sports: Olympics: Seoul 1988: How many BRONZE medals were won by Virgin Islands?
+0
+10
+
+Sports: Olympics: Seoul 1988: How many BRONZE medals were won by West Germany?
+15
+10
+
+Sports: Olympics: Seoul 1988: How many BRONZE medals were won by Yugoslavia?
+5
+10
+
+Sports: Olympics: Seoul 1988: How many GOLD medals were won by Australia?
+3
+10
+
+Sports: Olympics: Seoul 1988: How many GOLD medals were won by Bulgaria?
+10
+10
+
+Sports: Olympics: Seoul 1988: How many GOLD medals were won by China?
+5
+10
+
+Sports: Olympics: Seoul 1988: How many GOLD medals were won by Japan?
+4
+10
+
+Sports: Olympics: Seoul 1988: How many GOLD medals were won by Kenya?
+5
+10
+
+Sports: Olympics: Seoul 1988: How many GOLD medals were won by Poland?
+2
+10
+
+Sports: Olympics: Seoul 1988: How many GOLD medals were won by Romania?
+7
+10
+
+Sports: Olympics: Seoul 1988: How many GOLD medals were won by South Korea?
+12
+10
+
+Sports: Olympics: Seoul 1988: How many GOLD medals were won by United States?
+36
+10
+
+Sports: Olympics: Seoul 1988: How many GOLD medals were won by USSR?
+55
+10
+
+Sports: Olympics: Seoul 1988: How many GOLD medals were won by West Germany?
+11
+10
+
+Sports: Olympics: Seoul 1988: How many Gold, Silver & Bronze medals (TOTAL) were won by Argentina?
+2
+10
+
+Sports: Olympics: Seoul 1988: How many Gold, Silver & Bronze medals (TOTAL) were won by Australia?
+14
+10
+
+Sports: Olympics: Seoul 1988: How many Gold, Silver & Bronze medals (TOTAL) were won by Belgium?
+2
+10
+
+Sports: Olympics: Seoul 1988: How many Gold, Silver & Bronze medals (TOTAL) were won by Brazil?
+6
+10
+
+Sports: Olympics: Seoul 1988: How many Gold, Silver & Bronze medals (TOTAL) were won by Bulgaria?
+35
+10
+
+Sports: Olympics: Seoul 1988: How many Gold, Silver & Bronze medals (TOTAL) were won by Canada?
+10
+10
+
+Sports: Olympics: Seoul 1988: How many Gold, Silver & Bronze medals (TOTAL) were won by China?
+29
+10
+
+Sports: Olympics: Seoul 1988: How many Gold, Silver & Bronze medals (TOTAL) were won by Denmark?
+4
+10
+
+Sports: Olympics: Seoul 1988: How many Gold, Silver & Bronze medals (TOTAL) were won by Djibouti?
+1
+10
+
+Sports: Olympics: Seoul 1988: How many Gold, Silver & Bronze medals (TOTAL) were won by East Germany?
+102
+10
+
+Sports: Olympics: Seoul 1988: How many Gold, Silver & Bronze medals (TOTAL) were won by France?
+16
+10
+
+Sports: Olympics: Seoul 1988: How many Gold, Silver & Bronze medals (TOTAL) were won by Great Britain?
+24
+10
+
+Sports: Olympics: Seoul 1988: How many Gold, Silver & Bronze medals (TOTAL) were won by Greece?
+1
+10
+
+Sports: Olympics: Seoul 1988: How many Gold, Silver & Bronze medals (TOTAL) were won by Hungary?
+23
+10
+
+Sports: Olympics: Seoul 1988: How many Gold, Silver & Bronze medals (TOTAL) were won by Indonesia?
+1
+10
+
+Sports: Olympics: Seoul 1988: How many Gold, Silver & Bronze medals (TOTAL) were won by Iran?
+1
+10
+
+Sports: Olympics: Seoul 1988: How many Gold, Silver & Bronze medals (TOTAL) were won by Italy?
+14
+10
+
+Sports: Olympics: Seoul 1988: How many Gold, Silver & Bronze medals (TOTAL) were won by Kenya?
+9
+10
+
+Sports: Olympics: Seoul 1988: How many Gold, Silver & Bronze medals (TOTAL) were won by Netherland Antilles?
+1
+10
+
+Sports: Olympics: Seoul 1988: How many Gold, Silver & Bronze medals (TOTAL) were won by Netherlands?
+9
+10
+
+Sports: Olympics: Seoul 1988: How many Gold, Silver & Bronze medals (TOTAL) were won by New Zealand?
+13
+10
+
+Sports: Olympics: Seoul 1988: How many Gold, Silver & Bronze medals (TOTAL) were won by Norway?
+5
+10
+
+Sports: Olympics: Seoul 1988: How many Gold, Silver & Bronze medals (TOTAL) were won by Poland?
+16
+10
+
+Sports: Olympics: Seoul 1988: How many Gold, Silver & Bronze medals (TOTAL) were won by Portugal?
+1
+10
+
+Sports: Olympics: Seoul 1988: How many Gold, Silver & Bronze medals (TOTAL) were won by Romania?
+24
+10
+
+Sports: Olympics: Seoul 1988: How many Gold, Silver & Bronze medals (TOTAL) were won by Senegal?
+1
+10
+
+Sports: Olympics: Seoul 1988: How many Gold, Silver & Bronze medals (TOTAL) were won by South Korea?
+33
+10
+
+Sports: Olympics: Seoul 1988: How many Gold, Silver & Bronze medals (TOTAL) were won by Spain?
+4
+10
+
+Sports: Olympics: Seoul 1988: How many Gold, Silver & Bronze medals (TOTAL) were won by Sweden?
+11
+10
+
+Sports: Olympics: Seoul 1988: How many Gold, Silver & Bronze medals (TOTAL) were won by Turkey?
+2
+10
+
+Sports: Olympics: Seoul 1988: How many Gold, Silver & Bronze medals (TOTAL) were won by USSR?
+132
+10
+
+Sports: Olympics: Seoul 1988: How many Gold, Silver & Bronze medals (TOTAL) were won by Virgin Islands?
+1
+10
+
+Sports: Olympics: Seoul 1988: How many Gold, Silver & Bronze medals (TOTAL) were won by West Germany?
+45
+10
+
+Sports: Olympics: Seoul 1988: How many Gold, Silver & Bronze medals (TOTAL) were won by Yugoslavia?
+12
+10
+
+Sports: Olympics: Seoul 1988: How many SILVER medals were won by Australia?
+6
+10
+
+Sports: Olympics: Seoul 1988: How many SILVER medals were won by Bulgaria?
+12
+10
+
+Sports: Olympics: Seoul 1988: How many SILVER medals were won by Canada?
+2
+10
+
+Sports: Olympics: Seoul 1988: How many SILVER medals were won by China?
+11
+10
+
+Sports: Olympics: Seoul 1988: How many SILVER medals were won by Djibouti?
+0
+10
+
+Sports: Olympics: Seoul 1988: How many SILVER medals were won by East Germany?
+35
+10
+
+Sports: Olympics: Seoul 1988: How many SILVER medals were won by Romania?
+11
+10
+
+Sports: Olympics: Seoul 1988: How many SILVER medals were won by United States?
+31
+10
+
+Sports: Olympics: Seoul 1988: How many SILVER medals were won by USSR?
+31
+10
+
+Sports: Olympics: Seoul 1988: How many SILVER medals were won by West Germany?
+14
+10
+
+Sports: Olympics: Seoul 1988: This countries medal tally was 0 Gold, 0 Silver, 1 Bronze, 1 in Total?
+Djibouti
+10
+
+Sports: Olympics: Seoul 1988: This countries medal tally was 0 Gold, 0 Silver, 1 Bronze, 1 in Total?
+Greece
+10
+
+Sports: Olympics: Seoul 1988: This countries medal tally was 0 Gold, 0 Silver, 2 Bronze, 2 in Total?
+Belgium
+10
+
+Sports: Olympics: Seoul 1988: This countries medal tally was 0 Gold, 0 Silver, 2 Bronze, 2 in Total?
+Mexico
+10
+
+Sports: Olympics: Seoul 1988: This countries medal tally was 0 Gold, 1 Silver, 0 Bronze, 1 in Total?
+Chile
+10
+
+Sports: Olympics: Seoul 1988: This countries medal tally was 0 Gold, 1 Silver, 0 Bronze, 1 in Total?
+Costa rica
+10
+
+Sports: Olympics: Seoul 1988: This countries medal tally was 0 Gold, 1 Silver, 0 Bronze, 1 in Total?
+Indonesia
+10
+
+Sports: Olympics: Seoul 1988: This countries medal tally was 0 Gold, 1 Silver, 0 Bronze, 1 in Total?
+Iran
+10
+
+Sports: Olympics: Seoul 1988: This countries medal tally was 0 Gold, 1 Silver, 0 Bronze, 1 in Total?
+Netherland antilles
+10
+
+Sports: Olympics: Seoul 1988: This countries medal tally was 0 Gold, 1 Silver, 0 Bronze, 1 in Total?
+Senegal
+10
+
+Sports: Olympics: Seoul 1988: This countries medal tally was 0 Gold, 1 Silver, 0 Bronze, 1 in Total?
+Virgin islands
+10
+
+Sports: Olympics: Seoul 1988: This countries medal tally was 0 Gold, 1 Silver, 1 Bronze, 2 in Total?
+Argentina
+10
+
+Sports: Olympics: Seoul 1988: This countries medal tally was 0 Gold, 2 Silver, 0 Bronze, 2 in Total?
+Jamaica
+10
+
+Sports: Olympics: Seoul 1988: This countries medal tally was 0 Gold, 2 Silver, 2 Bronze, 4 in Total?
+Switzerland
+10
+
+Sports: Olympics: Seoul 1988: This countries medal tally was 0 Gold, 4 Silver, 7 Bronze, 11 in Total?
+Sweden
+10
+
+Sports: Olympics: Seoul 1988: This countries medal tally was 1 Gold, 0 Silver, 0 Bronze, 1 in Total?
+Austria
+10
+
+Sports: Olympics: Seoul 1988: This countries medal tally was 1 Gold, 0 Silver, 0 Bronze, 1 in Total?
+Portugal
+10
+
+Sports: Olympics: Seoul 1988: This countries medal tally was 1 Gold, 0 Silver, 0 Bronze, 1 in Total?
+Suriname
+10
+
+Sports: Olympics: Seoul 1988: This countries medal tally was 1 Gold, 0 Silver, 2 Bronze, 3 in Total?
+Morocco
+10
+
+Sports: Olympics: Seoul 1988: This countries medal tally was 1 Gold, 1 Silver, 0 Bronze, 2 in Total?
+Turkey
+10
+
+Sports: Olympics: Seoul 1988: This countries medal tally was 1 Gold, 1 Silver, 2 Bronze, 4 in Total?
+Finland
+10
+
+Sports: Olympics: Seoul 1988: This countries medal tally was 1 Gold, 1 Silver, 2 Bronze, 4 in Total?
+Spain
+10
+
+Sports: Olympics: Seoul 1988: This countries medal tally was 1 Gold, 2 Silver, 3 Bronze, 6 in Total?
+Brazil
+10
+
+Sports: Olympics: Seoul 1988: This countries medal tally was 10 Gold, 12 Silver, 13 Bronze, 35 in Total?
+Bulgaria
+10
+
+Sports: Olympics: Seoul 1988: This countries medal tally was 11 Gold, 14 Silver, 15 Bronze, 45 in Total?
+West Germany
+10
+
+Sports: Olympics: Seoul 1988: This countries medal tally was 11 Gold, 6 Silver, 6 Bronze, 23 in Total?
+Hungary
+10
+
+Sports: Olympics: Seoul 1988: This countries medal tally was 12 Gold, 10 Silver, 11 Bronze, 33 in Total?
+South korea
+10
+
+Sports: Olympics: Seoul 1988: This countries medal tally was 2 Gold, 1 Silver, 1 Bronze, 4 in Total?
+Denmark
+10
+
+Sports: Olympics: Seoul 1988: This countries medal tally was 2 Gold, 2 Silver, 5 Bronze, 9 in Total?
+Netherlands
+10
+
+Sports: Olympics: Seoul 1988: This countries medal tally was 2 Gold, 3 Silver, 0 Bronze, 5 in Total?
+Norway
+10
+
+Sports: Olympics: Seoul 1988: This countries medal tally was 2 Gold, 5 Silver, 9 Bronze, 16 in Total?
+Poland
+10
+
+Sports: Olympics: Seoul 1988: This countries medal tally was 3 Gold, 2 Silver, 5 Bronze, 10 in Total?
+Canada
+10
+
+Sports: Olympics: Seoul 1988: This countries medal tally was 3 Gold, 2 Silver, 8 Bronze, 13 in Total?
+New zealand
+10
+
+Sports: Olympics: Seoul 1988: This countries medal tally was 3 Gold, 3 Silver, 2 Bronze, 8 in Total?
+Czechoslovakia
+10
+
+Sports: Olympics: Seoul 1988: This countries medal tally was 3 Gold, 4 Silver, 5 Bronze, 12 in Total?
+Yugoslavia
+10
+
+Sports: Olympics: Seoul 1988: This countries medal tally was 3 Gold, 6 Silver, 5 Bronze, 14 in Total?
+Australia
+10
+
+Sports: Olympics: Seoul 1988: This countries medal tally was 36 Gold, 31 Silver, 27 Bronze, 94 in Total?
+United states
+10
+
+Sports: Olympics: Seoul 1988: This countries medal tally was 37 Gold, 35 Silver, 30 Bronze, 102 in Total?
+East Germany
+10
+
+Sports: Olympics: Seoul 1988: This countries medal tally was 4 Gold, 3 Silver, 7 Bronze, 14 in Total?
+Japan
+10
+
+Sports: Olympics: Seoul 1988: This countries medal tally was 5 Gold, 10 Silver, 9 Bronze, 24 in Total?
+Great britain
+10
+
+Sports: Olympics: Seoul 1988: This countries medal tally was 5 Gold, 11 Silver, 12 Bronze, 29 in Total?
+China
+10
+
+Sports: Olympics: Seoul 1988: This countries medal tally was 5 Gold, 2 Silver, 2 Bronze, 9 in Total?
+Kenya
+10
+
+Sports: Olympics: Seoul 1988: This countries medal tally was 55 Gold, 31 Silver, 46 Bronze, 132 in Total?
+Ussr
+10
+
+Sports: Olympics: Seoul 1988: This countries medal tally was 6 Gold, 4 Silver, 4 Bronze, 14 in Total?
+Italy
+10
+
+Sports: Olympics: Seoul 1988: This countries medal tally was 6 Gold, 4 Silver, 6 Bronze, 16 in Total?
+France
+10
+
+Sports: Olympics: Seoul 1988: This countries medal tally was 7 Gold, 11 Silver, 6 Bronze, 24 in Total?
+Romania
+10
+
+Sports: Olympics: Sydney 2000: How many BRONZE medals were won by Australia?
+17
+10
+
+Sports: Olympics: Sydney 2000: How many BRONZE medals were won by Belarus?
+11
+10
+
+Sports: Olympics: Sydney 2000: How many BRONZE medals were won by Bulgaria?
+2
+10
+
+Sports: Olympics: Sydney 2000: How many BRONZE medals were won by Canada?
+8
+10
+
+Sports: Olympics: Sydney 2000: How many BRONZE medals were won by France?
+11
+10
+
+Sports: Olympics: Sydney 2000: How many BRONZE medals were won by Germany?
+26
+10
+
+Sports: Olympics: Sydney 2000: How many BRONZE medals were won by Kazakhstan?
+0
+10
+
+Sports: Olympics: Sydney 2000: How many BRONZE medals were won by Lithuania?
+3
+10
+
+Sports: Olympics: Sydney 2000: How many BRONZE medals were won by Morocco?
+4
+10
+
+Sports: Olympics: Sydney 2000: How many BRONZE medals were won by Netherlands?
+4
+10
+
+Sports: Olympics: Sydney 2000: How many BRONZE medals were won by New Zealand?
+3
+10
+
+Sports: Olympics: Sydney 2000: How many BRONZE medals were won by Russia?
+28
+10
+
+Sports: Olympics: Sydney 2000: How many BRONZE medals were won by Saudi Arabia?
+1
+10
+
+Sports: Olympics: Sydney 2000: How many BRONZE medals were won by South Africa?
+3
+10
+
+Sports: Olympics: Sydney 2000: How many BRONZE medals were won by South Korea?
+10
+10
+
+Sports: Olympics: Sydney 2000: How many BRONZE medals were won by Taiwan/Republic of China?
+4
+10
+
+Sports: Olympics: Sydney 2000: How many BRONZE medals were won by Trinidad and Tobago?
+1
+10
+
+Sports: Olympics: Sydney 2000: How many BRONZE medals were won by Ukraine?
+10
+10
+
+Sports: Olympics: Sydney 2000: How many BRONZE medals were won by Uruguay?
+0
+10
+
+Sports: Olympics: Sydney 2000: How many BRONZE medals were won by Vietnam?
+0
+10
+
+Sports: Olympics: Sydney 2000: How many GOLD medals were won by Australia?
+16
+10
+
+Sports: Olympics: Sydney 2000: How many GOLD medals were won by Azerbaijan?
+2
+10
+
+Sports: Olympics: Sydney 2000: How many GOLD medals were won by China?
+28
+10
+
+Sports: Olympics: Sydney 2000: How many GOLD medals were won by France?
+13
+10
+
+Sports: Olympics: Sydney 2000: How many GOLD medals were won by Germany?
+13
+10
+
+Sports: Olympics: Sydney 2000: How many GOLD medals were won by Hungary?
+8
+10
+
+Sports: Olympics: Sydney 2000: How many GOLD medals were won by Netherlands?
+12
+10
+
+Sports: Olympics: Sydney 2000: How many GOLD medals were won by Russia?
+32
+10
+
+Sports: Olympics: Sydney 2000: How many GOLD medals were won by Saudi Arabia?
+0
+10
+
+Sports: Olympics: Sydney 2000: How many GOLD medals were won by South Korea?
+8
+10
+
+Sports: Olympics: Sydney 2000: How many GOLD medals were won by Taiwan/Republic of China?
+0
+10
+
+Sports: Olympics: Sydney 2000: How many GOLD medals were won by Ukraine?
+3
+10
+
+Sports: Olympics: Sydney 2000: How many GOLD medals were won by United States of America?
+40
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Algeria?
+5
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Argentina?
+4
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Armenia?
+1
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Australia?
+58
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Azerbaijan?
+3
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Bahamas?
+2
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Barbados?
+1
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Belarus?
+17
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Belgium?
+5
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Brazil?
+12
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Bulgaria?
+13
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Canada?
+14
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Chile?
+1
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by China?
+59
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Costa Rica?
+2
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Cuba?
+29
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Czech Republic?
+8
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Estonia?
+3
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Ethiopia?
+8
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by France?
+38
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Georgia?
+6
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Germany?
+56
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Great Britain?
+28
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Greece?
+13
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Hungary?
+17
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Indonesia?
+6
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Iran?
+4
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Italy?
+34
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Jamaica?
+7
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Japan?
+18
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Kazakhstan?
+7
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Kenya?
+7
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Kuwait?
+1
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Kyrgyzstan?
+1
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Lithuania?
+5
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Macedonia?
+1
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Morocco?
+5
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Netherlands?
+25
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Nigeria?
+3
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by North Korea?
+4
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Norway?
+10
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Romania?
+26
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Russia?
+88
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Saudi Arabia?
+2
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Slovakia?
+5
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by South Korea?
+28
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Spain?
+11
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Sri Lanka?
+1
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Switzerland?
+9
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Taiwan/Republic of China?
+5
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Thailand?
+3
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Turkey?
+5
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Ukraine?
+23
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by United States of America?
+97
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Uruguay?
+1
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Uzbekistan?
+4
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Vietnam?
+1
+10
+
+Sports: Olympics: Sydney 2000: How many Gold, Silver & Bronze medals (TOTAL) were won by Yugoslavia?
+3
+10
+
+Sports: Olympics: Sydney 2000: How many SILVER medals were won by Australia?
+25
+10
+
+Sports: Olympics: Sydney 2000: How many SILVER medals were won by Barbados?
+0
+10
+
+Sports: Olympics: Sydney 2000: How many SILVER medals were won by Belarus?
+3
+10
+
+Sports: Olympics: Sydney 2000: How many SILVER medals were won by Chile?
+0
+10
+
+Sports: Olympics: Sydney 2000: How many SILVER medals were won by Great Britain?
+10
+10
+
+Sports: Olympics: Sydney 2000: How many SILVER medals were won by Greece?
+6
+10
+
+Sports: Olympics: Sydney 2000: How many SILVER medals were won by Hungary?
+6
+10
+
+Sports: Olympics: Sydney 2000: How many SILVER medals were won by Kuwait?
+0
+10
+
+Sports: Olympics: Sydney 2000: How many SILVER medals were won by Kyrgyzstan?
+0
+10
+
+Sports: Olympics: Sydney 2000: How many SILVER medals were won by Macedonia?
+0
+10
+
+Sports: Olympics: Sydney 2000: How many SILVER medals were won by New Zealand?
+0
+10
+
+Sports: Olympics: Sydney 2000: How many SILVER medals were won by Sri Lanka?
+0
+10
+
+Sports: Olympics: Sydney 2000: How many SILVER medals were won by Taiwan/Republic of China?
+1
+10
+
+Sports: Olympics: Sydney 2000: How many SILVER medals were won by United States of America?
+24
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 0 Gold, 0 Silver, 1 Bronze, 1 in Total?
+Armenia
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 0 Gold, 0 Silver, 1 Bronze, 1 in Total?
+Barbados
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 0 Gold, 0 Silver, 1 Bronze, 1 in Total?
+Chile
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 0 Gold, 0 Silver, 1 Bronze, 1 in Total?
+Kuwait
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 0 Gold, 0 Silver, 1 Bronze, 1 in Total?
+Kyrgyzstan
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 0 Gold, 0 Silver, 1 Bronze, 1 in Total?
+Macedonia
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 0 Gold, 0 Silver, 1 Bronze, 1 in Total?
+Sri lanka
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 0 Gold, 0 Silver, 2 Bronze, 2 in Total?
+Costa rica
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 0 Gold, 0 Silver, 2 Bronze, 2 in Total?
+Portugal
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 0 Gold, 0 Silver, 6 Bronze, 6 in Total?
+Georgia
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 0 Gold, 1 Silver, 0 Bronze, 1 in Total?
+Uruguay
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 0 Gold, 1 Silver, 0 Bronze, 1 in Total?
+Vietnam
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 0 Gold, 1 Silver, 1 Bronze, 2 in Total?
+Saudi arabia
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 0 Gold, 1 Silver, 1 Bronze, 2 in Total?
+Trinidad and tobago
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 0 Gold, 1 Silver, 3 Bronze, 4 in Total?
+North korea
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 0 Gold, 1 Silver, 4 Bronze, 5 in Total?
+Morocco
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 0 Gold, 1 Silver, 4 Bronze, 5 in Total?
+Taiwan/republic of china
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 0 Gold, 2 Silver, 2 Bronze, 4 in Total?
+Argentina
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 0 Gold, 2 Silver, 3 Bronze, 5 in Total?
+Belgium
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 0 Gold, 2 Silver, 3 Bronze, 5 in Total?
+South africa
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 0 Gold, 3 Silver, 0 Bronze, 3 in Total?
+Nigeria
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 0 Gold, 4 Silver, 3 Bronze, 7 in Total?
+Jamaica
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 0 Gold, 6 Silver, 6 Bronze, 12 in Total?
+Brazil
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 1 Gold, 0 Silver, 0 Bronze, 1 in Total?
+Cameroon
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 1 Gold, 0 Silver, 0 Bronze, 1 in Total?
+Colombia
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 1 Gold, 0 Silver, 0 Bronze, 1 in Total?
+Mozambique
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 1 Gold, 0 Silver, 1 Bronze, 2 in Total?
+Croatia
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 1 Gold, 0 Silver, 2 Bronze, 3 in Total?
+Estonia
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 1 Gold, 0 Silver, 2 Bronze, 3 in Total?
+Thailand
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 1 Gold, 0 Silver, 3 Bronze, 4 in Total?
+New zealand
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 1 Gold, 1 Silver, 0 Bronze, 2 in Total?
+Bahamas
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 1 Gold, 1 Silver, 1 Bronze, 3 in Total?
+Latvia
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 1 Gold, 1 Silver, 1 Bronze, 3 in Total?
+Yugoslavia
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 1 Gold, 1 Silver, 2 Bronze, 4 in Total?
+Uzbekistan
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 1 Gold, 1 Silver, 3 Bronze, 5 in Total?
+Algeria
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 1 Gold, 2 Silver, 3 Bronze, 6 in Total?
+Mexico
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 1 Gold, 3 Silver, 1 Bronze, 5 in Total?
+Slovakia
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 1 Gold, 3 Silver, 2 Bronze, 6 in Total?
+Indonesia
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 1 Gold, 6 Silver, 2 Bronze, 9 in Total?
+Switzerland
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 11 Gold, 10 Silver, 7 Bronze, 28 in Total?
+Great britain
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 11 Gold, 11 Silver, 7 Bronze, 29 in Total?
+Cuba
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 11 Gold, 6 Silver, 9 Bronze, 26 in Total?
+Romania
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 12 Gold, 9 Silver, 4 Bronze, 25 in Total?
+Netherlands
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 13 Gold, 14 Silver, 11 Bronze, 38 in Total?
+France
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 13 Gold, 17 Silver, 26 Bronze, 56 in Total?
+Germany
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 13 Gold, 8 Silver, 13 Bronze, 34 in Total?
+Italy
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 16 Gold, 25 Silver, 17 Bronze, 58 in Total?
+Australia
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 2 Gold, 0 Silver, 0 Bronze, 2 in Total?
+Slovenia
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 2 Gold, 0 Silver, 1 Bronze, 3 in Total?
+Azerbaijan
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 2 Gold, 0 Silver, 3 Bronze, 5 in Total?
+Lithuania
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 2 Gold, 1 Silver, 0 Bronze, 3 in Total?
+Austria
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 2 Gold, 1 Silver, 1 Bronze, 4 in Total?
+Finland
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 2 Gold, 3 Silver, 1 Bronze, 6 in Total?
+Denmark
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 2 Gold, 3 Silver, 2 Bronze, 7 in Total?
+Kenya
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 2 Gold, 3 Silver, 3 Bronze, 8 in Total?
+Czech republic
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 28 Gold, 16 Silver, 15 Bronze, 59 in Total?
+China
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 3 Gold, 0 Silver, 1 Bronze, 4 in Total?
+Iran
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 3 Gold, 0 Silver, 2 Bronze, 5 in Total?
+Turkey
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 3 Gold, 10 Silver, 10 Bronze, 23 in Total?
+Ukraine
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 3 Gold, 3 Silver, 11 Bronze, 17 in Total?
+Belarus
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 3 Gold, 3 Silver, 5 Bronze, 11 in Total?
+Spain
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 3 Gold, 3 Silver, 8 Bronze, 14 in Total?
+Canada
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 3 Gold, 4 Silver, 0 Bronze, 7 in Total?
+Kazakhstan
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 32 Gold, 28 Silver, 28 Bronze, 88 in Total?
+Russia
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 4 Gold, 1 Silver, 3 Bronze, 8 in Total?
+Ethiopia
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 4 Gold, 3 Silver, 3 Bronze, 10 in Total?
+Norway
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 4 Gold, 5 Silver, 3 Bronze, 12 in Total?
+Sweden
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 4 Gold, 6 Silver, 3 Bronze, 13 in Total?
+Greece
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 40 Gold, 24 Silver, 33 Bronze, 97 in Total?
+United states of America
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 5 Gold, 6 Silver, 2 Bronze, 13 in Total?
+Bulgaria
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 5 Gold, 8 Silver, 5 Bronze, 18 in Total?
+Japan
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 8 Gold, 10 Silver, 10 Bronze, 28 in Total?
+South korea
+10
+
+Sports: Olympics: Sydney 2000: This countries medal tally was 8 Gold, 6 Silver, 3 Bronze, 17 in Total?
+Hungary
+10
+
+Sports: Olympics: the mascot for the 1980 moscow olympic games was a friendly bear named?
+Misha
+10
+
+Sports: Olympics: The Olympic motto 'citius, altius, fortius' means what?
+Faster, higher, stronger
+10
+
+Sports: Olympics: What city hosted the first winter olympics in asia?
+Sapporo, Japan
+10
+
+Sports: Olympics: What distance is the Olympic steeplechase contested over (in metres)?
+-- Answer metadata begin
+{
+    "answers": ["Three thousand", "3000"]
+}
+-- Answer metadata end
+10
+
+Sports: Olympics: What is the Olympic motto in the original Latin?
+Citius, altius, fortius
+10
+
+Sports: Olympics: what is the only host country not to win gold at its own summer olympics?
+Canada
+10
+
+Sports: Olympics: What speed skater won 5 gold medals at the 1980 winter olympics?
+Heiden
+10
+
+Sports: Olympics: Where were the 1956 Summer Olympics held?
+Melbourne, Australia
+10
+
+Sports: Olympics: Where were the 1960 summer Olympics held?
+Rome, Italy
+10
+
+Sports: Olympics: Who did Zola Budd trip in the 1984 Los Angeles Olympics?
+Mary Decker
+10
+
+Sports: Olympics: Who tripped Mary Decker in the 1984 Los Angeles Olympics?
+Zola Budd
+10
+
+Sports: On what type of surface are the tennis matches at Wimbledon played?
+Grass
+10
+
+Sports: On which circuit is motor racings Grand Prix d'Endurance run?
+Le mans
+10
+
+Sports: One of two or more contesting teams or factions?
+Side
+10
+
+Sports: Other than England, which european country took part in the 1996 cricket World Cup?
+Netherlands
+10
+
+Sports: Other than skiing, which sport takes place on a piste?
+Fencing
+10
+
+Sports: Over which course is the Stewards Cup run?
+Goodwood
+10
+
+Sports: Polo consists of 8 periods called what?
+Chukkers
+10
+
+Sports: Popular English jockey with a unique high riding style,champion jockey 11 times between 1960 and 1982?
+Lester Piggott
+10
+
+Sports: Popular in North America what kind of sport is 'birling'?
+Log rolling
+10
+
+Sports: Popular term for Montreal Canadiens hockey club?
+Habs
+10
+
+Sports: Popular venues for which sport are at Romford, Hackney and Wimbledon?
+Greyhound racing
+10
+
+Sports: Ray Wilkins won 22 England Caps whilst playing for which Italian Club?
+A C Milan
+10
+
+Sports: Renamed in 1960, what was the UEFA cup tournaments second name?
+European Fairs Cup
+10
+
+Sports: Royal Porthcawl is one of the Royal golf courses in wales, name the other?
+Royal St Davids
+10
+
+Sports: Rugby League: Auckland ____
+Warriors
+10
+
+Sports: Rugby League: Manly ____
+Sea Eagles
+10
+
+Sports: Rugby was introduced to new zealand in 1867, 1870 or 1888?
+1870
+10
+
+Sports: Scottish town north of Ayr, famous for its golf course?
+Troon
+10
+
+Sports: Sheffield venue for snooker?
+The Crucible Theatre
+10
+
+Sports: Shinguards were introduced into football in which year?
+1839
+10
+
+Sports: Since 1950, motor racings British Grand Prix has been held at Silverstone, Brands Hatch and which other venue?
+Aintree
+10
+
+Sports: Since 1969, who is the only ma apart from Stephen Hendry to have won 4 successive world snooker championships?
+Ray Reardon
+10
+
+Sports: Sir Alf Ramsey lost his first match in charge of England against which country in 1963?
+France
+10
+
+Sports: Snooker star nicknamed the whirlwind?
+Jimmy white
+10
+
+Sports: Sport resembling hang-gliding using a parachute like canopy attached to the body by a harness?
+Paragliding
+10
+
+Sports: Sports that do not use a ball or vehicle (keep it clean!)?
+Badminton
+10
+
+Sports: Sports with balls?
+Bowling
+10
+
+Sports: Sports with balls?
+Football
+10
+
+Sports: Steve Hislop won which trophy several times on a Honda?
+Isle of Man TT trophy
+10
+
+Sports: Tennis: 1980s: he was the first tennis player exceed $10 million in career earnings?
+Ivan lendl
+10
+
+Sports: Tennis: acclaimed as the best swede to step on court since bjorn borg, and arguably the best serve-and-volleyer of all time?
+Stefan edberg
+10
+
+Sports: Tennis: Tennis Players (past and present, last name only)?
+Borg
+10
+
+Sports: Tennis: Tennis Players (past and present, last name only)?
+Graf
+10
+
+Sports: Tennis: what area falls between the baseline & the service line?
+Back court
+10
+
+Sports: Tennis: who is the only person in history to acheive a 'gold slam', i.e. the four grand slams and the olympic gold all in one year?
+Steffi graf
+10
+
+Sports: Tennis: who was nicknamed 'muscles'?
+Ken rosewall
+10
+
+Sports: Tennis: who won the us open in 1989?
+Boris becker
+10
+
+Sports: Tha oldest organised angling club, established 1829?
+The Ellem Club
+10
+
+Sports: The 1976 Summer Olympics were held in this city?
+Montreal
+10
+
+Sports: The All-England club at Wimbledon is often referred to by its post code, what is it?
+S W 19
+10
+
+Sports: The clash of opposing linemen at every down in American Football?
+Scrimmage
+10
+
+Sports: The Eclipse Stakes is the main race run at which race course?
+Sandown park
+10
+
+Sports: The first cricket one-day international was held between England and ____
+Australia
+10
+
+Sports: The Hawthorns, home of which football team?
+West Bromwich Albion
+10
+
+Sports: The Heisman Trophy is awarded to the outstanding college player in qhich sport?
+American football
+10
+
+Sports: The Japanese martial art of fencing is called ____
+Kendo
+10
+
+Sports: The LA Lakers play what sport?
+Basketball
+10
+
+Sports: The last grey horse to win the Grand National did so in 1961, what was the name of the horse?
+Nicolaus Silver
+10
+
+Sports: The Oaks racecourse?
+Epsom
+10
+
+Sports: The person who carries the golfer's clubs is called a(n) ____
+Caddie
+10
+
+Sports: The person who carries the golfer's clubs is called a(n) ____
+Caddy
+10
+
+Sports: The white marks intersecting each five yard line are called ____
+Hash marks
+10
+
+Sports: The winning horse of the 1988 St Leger was bred and ridden by Willie Carson, name the horse?
+Minster son
+10
+
+Sports: This cricketer was known as 'Beefy'?
+Ian Botham
+10
+
+Sports: This is the most coveted trophy in Candian football?
+Grey cup
+10
+
+Sports: This RB won the Heisman at USC in 1968?
+Oj simpson
+10
+
+Sports: This sport allows substitutions without a stoppage in play?
+Hockey
+10
+
+Sports: This Swede was 1988 tennis player of the year, 3 time French Open Champ?
+Mats wilander
+10
+
+Sports: This team won their first World Series in 1969?
+New york mets
+10
+
+Sports: This traditional Japanese wrestling sport takes place in a circular ring?
+Sumo
+10
+
+Sports: Tic-Tac-Toe is based on which game?
+Nine men morris
+10
+
+Sports: To which former umpire have Yorkshire dedicated their new clock high above Headingleys western terraces?
+Dickie bird
+10
+
+Sports: To whom was the second F A Cup trophy presented on his completion of 21 years as F A President?
+Lord Kinnaird
+10
+
+Sports: TV/Film: What annually televised sporting event always brings a mention for Craven Steps?
+The boat race
+10
+
+Sports: Two under par on a hole of golf is called a(n) ____
+Eagle
+10
+
+Sports: Types Of Balls (include Ball)?
+Tennis Ball
+10
+
+Sports: UK basketball - 2002, which team won this years League trophy and National Cup?
+Chester Jets
+10
+
+Sports: US swimmer who won a record seven gold medals at the 1973 Olympic Games?
+Mark Spitz
+10
+
+Sports: Welsh golfer who became the first UK player to win the World Match play Championship in 1987?
+Ian Woosnam
+10
+
+Sports: what are a.c. milan, ajax and real madrid?
+Football clubs
+10
+
+Sports: What are large snow bumps known as in skiing terms?
+Mogul
+10
+
+Sports: What are large snow bumps known as in skiing terms?
+Moguls
+10
+
+Sports: What are the five colours of the traditional archery target?
+Gold
+10
+
+Sports: What are the two basic aids in orienteering?
+Map and compass
+10
+
+Sports: What ball contains 216 stitches?
+Official baseball
+10
+
+Sports: What ball sport has the same name as a vegetable?
+Squash
+10
+
+Sports: What baseball legend appeared as himself in the 1938 movie, Western Rawhide?
+Lou Gehrig
+10
+
+Sports: What baseball manager's eatery was closed due to rat infestation?
+Tommy lasordas
+10
+
+Sports: What baseball pitcher has the most strike-outs?
+Nolan ryan
+10
+
+Sports: What baseball player has the most hits?
+Pete rose
+10
+
+Sports: What baseball player was walked the most times?
+Babe ruth
+10
+
+Sports: What baseball team began playing home gates at Mile High Stadium?
+The Colorado Rockies
+10
+
+Sports: What basketball star played a genie in 'kazaam'?
+Shaquille o'neal
+10
+
+Sports: What basketballer was dubbed the nba's identified flying object?
+Julius erving
+10
+
+Sports: What colour flag is used when a starter brings the horses in line for a race?
+White
+10
+
+Sports: What CR lost in the 1879 FA Cup Final but won in the following year?
+Claoham Rovers
+10
+
+Sports: What describes completing a hole in golf three strokes below par?
+Albatross
+10
+
+Sports: What do runners pass to each other in a relay race?
+Baton
+10
+
+Sports: What do sumo wrestlers throw into the ring before a match?
+Salt
+10
+
+Sports: what do the letters al stand for?
+American league
+10
+
+Sports: What do the letters ERA mean in baseball?
+Earned run average
+10
+
+Sports: what does the bell rung during the 1,500-metre race signify?
+One lap to go
+10
+
+Sports: What does TKO stand for?
+Technical knock out
+10
+
+Sports: What game features the largest ball?
+Earthball
+10
+
+Sports: what golfer had the nickname super mex?
+Lee trevino
+10
+
+Sports: What is a luge?
+Small toboggan
+10
+
+Sports: What is Alex Higgins nickname?
+Hurricane
+10
+
+Sports: What is baseballs equivalent of the cup final?
+The World Series
+10
+
+Sports: What is Daley Thomsons first name?
+Francis
+10
+
+Sports: What is Football star Pele's real name?
+Edson Arantes do Nascimento
+10
+
+Sports: What is Gillian Gilks ganme?
+Badminton
+10
+
+Sports: What is it called when a football team loses possession of the ball due to a misplay?
+Turnover
+10
+
+Sports: what is spaceball played on?
+A trampoline
+10
+
+Sports: What is the Chess ranking system called?
+Elo
+10
+
+Sports: What is the correct name for the high jump event in showjumping?
+Puissance
+10
+
+Sports: What is the English equivalent of an Australian cricketing term bosie?
+Googly
+10
+
+Sports: What is the favourite sport of the kennedy clan?
+Football
+10
+
+Sports: What is the heaviest class of weight-lifting?
+Super heavyweight
+10
+
+Sports: What is the highest possible score under the present score system for a double round in archery?
+2880
+10
+
+Sports: what is the horseshoe pitching equivalent of a bullseye?
+A ringer
+10
+
+Sports: What is the last evet in a decathlon?
+1500 metres
+10
+
+Sports: What is the lightest weight category in boxing?
+Light flyweight
+10
+
+Sports: What is the location of the Football Associaiton in London?
+16 lancaster gate
+10
+
+Sports: What is the maximum number of clubs a golfer may use in a round?
+Fourteen
+10
+
+Sports: What is the maximum number of clubs allowed in a competition in golf?
+Fourteen
+10
+
+Sports: What is the maximum score in archery under the present scoring system for a single round?
+1440
+10
+
+Sports: What is the misshapen ear that boxers often have called?
+Cauliflower ear
+10
+
+Sports: What is the name for a right handers off break delivered with a leg break action?
+Googly
+10
+
+Sports: What is the name given to a rower who competes in an individual event?
+Sculler
+10
+
+Sports: What is the name of Huddersfield Town FC former stadium before the Mcalpine stadium opened in 1994?
+Leeds road
+10
+
+Sports: What is the name of Manchester Uniteds training ground?
+Carrington
+10
+
+Sports: What is the name of the area at Old Trafford where the Manchester United fans gather?
+Stretford End
+10
+
+Sports: What is the name of the board that Baduk is player on?
+Goban
+10
+
+Sports: What is the name of the home ground of York ity FC?
+Bootham crescent
+10
+
+Sports: What is the name of the theme tune to BBCs match of the Day?
+Offside
+10
+
+Sports: What is the regulation height for a pin in tenpin bowling (in inches)?
+Fifteen
+10
+
+Sports: What is the score of a forfeited baseball game?
+9-0
+10
+
+Sports: What is the score of a forfeited softball game?
+7-0
+10
+
+Sports: What is the sport for which Sabina Park is famous?
+Cricket
+10
+
+Sports: What is tiger woods real first name?
+Eldrick
+10
+
+Sports: What is traditioinal Japanese wrestling called?
+Sumo
+10
+
+Sports: What is your sport if you get off on a dock start, a beach start or a scooter start?
+Water skiing
+10
+
+Sports: What is your sport if you lift the Heisman trophy?
+American football
+10
+
+Sports: What name is given to a golf course next to the sea?
+Links
+10
+
+Sports: What nationality is Fomula One driver Pablo Montoya?
+Colombian
+10
+
+Sports: What nationality is Gabriela Sabatini?
+Argentinian
+10
+
+Sports: What nationality was Gottfried Dienst who took charge of 1966 World Cup Final that England won?
+Swiss
+10
+
+Sports: what nationality was tennis star vitas gerulaitis?
+American
+10
+
+Sports: What nationaltiy is the F1 racing driver Mika Hakkinen?
+Finnish
+10
+
+Sports: What number wood is a driver in golf?
+One
+10
+
+Sports: what provides the power in a soap box derby?
+Gravity
+10
+
+Sports: What shadow team driver was killed testing, prior to the 1974 south african grand prix?
+Peter revson
+10
+
+Sports: What sort of athletes do sit spins, axel jumps and flying camels?
+Figure skaters
+10
+
+Sports: What sport are barbells used in?
+Weightlifting
+10
+
+Sports: What sport did James Naismith invent?
+Basketball
+10
+
+Sports: What sport do the Harlem Globetrotters play?
+Basketball
+10
+
+Sports: what sport do you rack your balls in?
+Billiards
+10
+
+Sports: what sport features a 'railroad split'?
+Bowling
+10
+
+Sports: What sport has a hooker in a scrum?
+Rugby
+10
+
+Sports: What sport has sprint, tandem and team pursuit events?
+Cycling
+10
+
+Sports: What sport is played by Steffi Graf?
+Tennis
+10
+
+Sports: What sport is sometimes called 'rugger'?
+Rugby union
+10
+
+Sports: What sport would you helicopter to the Bugaboos for?
+Skiing
+10
+
+Sports: What sport/game is Chris Evert associated with?
+Tennis
+10
+
+Sports: What swimming stroke is named after an insect?
+Butterfly
+10
+
+Sports: What trophy is awarded to the winner of the NHL play-offs?
+Stanley cup
+10
+
+Sports: What trophy is awarded to the winner of the NHL playoffs?
+Stanley Cup
+10
+
+Sports: What was added to football pitches in 1936-7?
+The arc in the penalty area
+10
+
+Sports: What was bullfighter manuel benitez perez's professional name?
+El cordobes
+10
+
+Sports: What was Christopher Deans job before he became a professional ice skater?
+Policeman
+10
+
+Sports: What was football player Dick Lane's nickname?
+Night train
+10
+
+Sports: What was Jack Nicklaus' nickname?
+Golden Bear
+10
+
+Sports: what was kareem abdul-jabbar's name before he became a muslim?
+Lew alcindor
+10
+
+Sports: What was Lester Piggotts first Derby winner?
+Never say die
+10
+
+Sports: What was Mohammed Ali's original name?
+Cassius Clay
+10
+
+Sports: What was the name of the first yacht to win the Americas cup?
+America
+10
+
+Sports: What was the name of the London Inn at which the Football Association was founded on 26 Oct 1863?
+The freemasons tavern
+10
+
+Sports: What was the predessor to the FIFA World Cup trophy called?
+Jules Rimet Trophy
+10
+
+Sports: What was the venue in 1894 for Golfs Open Championship on the first occasion that the event was held on an English course?
+Sandwich
+10
+
+Sports: What was the worst team in major league baseball in 1991?
+Cleveland indians
+10
+
+Sports: What weighs between 37 - 39 gms?
+Table tennis ball
+10
+
+Sports: what were first used by john l sullivan and james j corbett in 1892?
+Boxing gloves
+10
+
+Sports: what's another term for a badminton bird?
+Shuttlecock
+10
+
+Sports: What's the national sport of Japan?
+Sumo wrestling
+10
+
+Sports: What's the nfl penalty for an invalid fair catch signal?
+Five yards
+10
+
+Sports: What's the nickname of Chicago's cuccessful NBA basketball team?
+Bulls
+10
+
+Sports: What's the nickname of the University of Georgia football team?
+Bulldogs
+10
+
+Sports: What's the nickname of wisconsin's football team?
+Badgers
+10
+
+Sports: what's the only major sport that allows substitutions while play is in progress?
+Hockey
+10
+
+Sports: what's the point value of the outer bullseye on a dartboard?
+25
+10
+
+Sports: what's the traditional dish served at wimbledon?
+Strawberries and cream
+10
+
+Sports: what's the world's largest legal bookmaking firm?
+Ladbrokes of london
+10
+
+Sports: When Alf Ramsey became the manager of the English team in 1963 of which league club did he manage?
+Ipswich town
+10
+
+Sports: When did the New York Mets win their first World Series?
+1969
+10
+
+Sports: Where are the racecourses The Rowley Mile and the July course?
+Newmarket
+10
+
+Sports: Where are the U.S. Tennis Open Championships held?
+Flushing meadows, ny
+10
+
+Sports: Where are there horse racing venues called Sha in and Happy valley?
+Hong Kong
+10
+
+Sports: where did the sport of caber-tossing originate?
+Scotland
+10
+
+Sports: Where in Austria did John Curry win his Winter Olympic Gold in 1976?
+Innsbruck
+10
+
+Sports: Where in England would you find a greyhound venue called abbey stadium?
+Swindon
+10
+
+Sports: Where in Rome do Italy play home rugby union internationals?
+Flamingo Stadium
+10
+
+Sports: where in the USA did Robin Cousins win his winter Olympic gold for figure skating in 1980?
+Lake Placid
+10
+
+Sports: Where is Capitol Hill?
+Washington DC
+10
+
+Sports: where is gasoline alley?
+The indianapolis motor speedway
+10
+
+Sports: Where is Kite flying a professional sport?
+Thailand.
+10
+
+Sports: where was golf's first first hole?
+St. andrews, Scotland
+10
+
+Sports: Where was the first British Grand Prix held in 1926?
+Brooklands
+10
+
+Sports: Where was the first three day event held in Britain?
+Badminton
+10
+
+Sports: Where was the fist organised game of Australian Rules Football played?
+Melbourne
+10
+
+Sports: Where were the 1896 Olympics held?
+Athens, Greece
+10
+
+Sports: Where were the 1900 Olympics held?
+Paris, France
+10
+
+Sports: Where were the 1906 Olympics held?
+Athens, Greece
+10
+
+Sports: Where were the 1908 Olympics held?
+London, England
+10
+
+Sports: Where were the 1912 Olympics held?
+Stockholm, Sweden
+10
+
+Sports: Where were the 1920 Olympics held?
+Antwerp, Belgium
+10
+
+Sports: Where were the 1924 Olympics held?
+Paris, France
+10
+
+Sports: Where were the 1928 Olympics held?
+Amsterdam, the Netherlands
+10
+
+Sports: Where were the 1928 Olympics held?
+Amsterdam
+10
+
+Sports: Where were the 1936 Olympics held?
+Berlin, Germany
+10
+
+Sports: Where were the 1948 Olympics held?
+London, England
+10
+
+Sports: Where were the 1952 Olympics held?
+Helsinki, Finland
+10
+
+Sports: Where were the 1956 Olympics held?
+Melbourne, Australia
+10
+
+Sports: Where were the 1960 Olympics held?
+Rome, Italy
+10
+
+Sports: Where were the 1964 Olympics held?
+Tokyo, Japan
+10
+
+Sports: Where were the 1968 Olympics held?
+Mexico City, Mexico
+10
+
+Sports: Where were the 1972 Olympics held?
+Munich, West Germany
+10
+
+Sports: Where were the 1980 Olympics held?
+Moscow, U.S.S.R.
+10
+
+Sports: Where were the 1988 Olympics held?
+Seoul, South Korea
+10
+
+Sports: Where were the 1992 Olympics held?
+Barcelona, Spain
+10
+
+Sports: Where were the 1996 Olympics held?
+Atlanta, USA
+10
+
+Sports: Where were the 2000 Olympics held?
+Sydney, Australia
+10
+
+Sports: Where were the 2004 Olympics held?
+Athens, Greece
+10
+
+Sports: Where were the 2008 Olympics held?
+Beijing, China
+10
+
+Sports: Where were the 2012 Olympics held?
+London, United Kingdom
+10
+
+Sports: Where were the 2016 Olympics held?
+Rio de Janeiro, Brazil
+10
+
+Sports: Which 15 year old took the womens doubles title with Helen Sukova in 1996 at Wimbledon?
+Martina Hingis
+10
+
+Sports: Which 19 year old rugby player made his debut for the All Blacks in 1994 aged 19 years 45 days?
+Jonah Lomu
+10
+
+Sports: Which 1st div football team tackled hooliganism in the 1986-7 season by banning away supporters from their ground?
+Luton town
+10
+
+Sports: Which 2 countries played in Dickie Birds 66th and last test as an umpire?
+India and England
+10
+
+Sports: Which 21 year old Australian golfer won 2002 Qatar Masters in Doha?
+Adam scott
+10
+
+Sports: Which 46 year old won the 1986 US Masters golf title?
+Jack Nicklaus
+10
+
+Sports: which 5 clubs have won European Cup finals at Wembley?
+AC Milan
+10
+
+Sports: which American golfer who has never won the event was runner up on 4 occasions in the US Masters?
+Tom Weiskopf
+10
+
+Sports: Which American man broke the world record for 100 metres in his first race in Europe in 1994?
+Leroy Burrell
+10
+
+Sports: Which American President was once offered professional terms for American football team Chicago Bears?
+President Ford
+10
+
+Sports: which asian city boasts the world's largest bowling alley?
+Tokyo, Japan
+10
+
+Sports: Which Australian was the only golfer to win the Open three times in succession during the 20th century?
+Peter thomson
+10
+
+Sports: Which BA are cricket fans following England?
+Barmy Army
+10
+
+Sports: Which boxer became known as The Punchin Preacher after a ten year absence from the sport during which time he became a church minister?
+George foreman
+10
+
+Sports: Which boxer defeated Frank Bruno at Wembley in 1986 in a WBA world heavyweight title fight?
+Tim Witherspoon
+10
+
+Sports: which boxer is nicknamed the Battersea Bomber?
+Howard eastman
+10
+
+Sports: Which boxer portrayed on film by Robert de Niro was nicknamed The bronx Bull?
+Jake La Motta
+10
+
+Sports: Which boxing legend was nicknamed Homicide Hank?
+Henry Armstrong
+10
+
+Sports: Which British driver finished fourth in 2002 Malaysian Grand Prix?
+Jenson Button
+10
+
+Sports: Which British football team is known as The Bhoys?
+Celtic
+10
+
+Sports: Which British skater won Olympic, European and World titles in 1976?
+John curry
+10
+
+Sports: Which British swimmer was the youngest member of the 1976 Montreal Olympic Team?
+Sharon davies
+10
+
+Sports: Which Briton was World Motor racing champion in 1962 and 1968?
+Graham hill
+10
+
+Sports: Which Briton was World Motor racing Champion in 1969,71 & 73?
+Jackie stewart
+10
+
+Sports: Which car maufacturer designed Chris Boardmans gold medal winning bike?
+Lotus
+10
+
+Sports: Which city has staged the most European Cup football finals?
+London
+10
+
+Sports: Which club did Arsenal defeat in both the FA Cup and the Football League Cup in 1993?
+Sheffield Wednesday
+10
+
+Sports: Which club did Graham Taylor manage to the 4th div championship in 1976?
+Lincoln City
+10
+
+Sports: Which club lost successive FA Cup Finals in 1998 & 1999?
+Newcastle United
+10
+
+Sports: Which colour would seperate the black and red on an archery target?
+Blue
+10
+
+Sports: Which commentator uttered the famous words...They think its all over... it is now.As England won the 1966 World Cup?
+Ken Wolstenholme
+10
+
+Sports: Which company sponsors the London Marathon?
+Flora
+10
+
+Sports: Which country always leads the opening Olympic procession?
+Greece
+10
+
+Sports: Which country did England defeat in a penalty shoot out at Euro 96?
+Spain
+10
+
+Sports: Which country do the All Blacks represent?
+New Zealand
+10
+
+Sports: which country has won Badmintons Thomas Cup most often?
+Indonesia
+10
+
+Sports: Which country won the World Cup of Football in 1982?
+Italy
+10
+
+Sports: Which county won the very first John Player League?
+Lancashire
+10
+
+Sports: Which cricket player holds the world record for the highest individual score in first-class cricket?
+Brian Lara
+10
+
+Sports: Which cricketer played in 78 test matches and also played football for Arsenal?
+Denis Compton
+10
+
+Sports: Which cricketer who also played football for Arsenal and England made a series of Brylcreem ads just after WWii?
+Dennis compton
+10
+
+Sports: Which div one football club used to be called Heaton Norris Rovers?
+Stockport
+10
+
+Sports: Which English bowler took 9 wickets in an innings against south africa in 1994?
+Devon malcolm
+10
+
+Sports: Which English footballer joined Hambury FC in 1977?
+Kevin Keegan
+10
+
+Sports: Which English league football team is nicknamed The Posh?
+Peterborough united
+10
+
+Sports: Which English rugby union club are nick named The Tigers?
+Leicester
+10
+
+Sports: Which European capital will stage the World Athletics championship in 2005?
+Helsinki
+10
+
+Sports: Which exercises are designed to increase oxygen consumption & speed circulation?
+Aerobics
+10
+
+Sports: which famous Italian football team play in red and black striped shirts?
+A C Milan
+10
+
+Sports: Which football club did the Yorkshire Cricket Club share its ground with between 1855 and 1973?
+Sheffield united
+10
+
+Sports: Which football club lost three successive First Div play off semi finals before gaining promotion to the Premier League in 2000?
+Ipswich town
+10
+
+Sports: Which football clubs recording of Blue is the Colour reached no 5 in the charts in 1972?
+Chelsea
+10
+
+Sports: Which football team won the European Championship Cup 3 times in succession from 1974?
+Bayern munich
+10
+
+Sports: Which footballer did Alf Ramsey describe as being ten years ahead of his time?
+Martin peters
+10
+
+Sports: Which footballer was the first for whom an English club paid a ?1 million transfer fee?
+Trevor francis
+10
+
+Sports: Which former British male tennis player is now a presenter on GMTV?
+Andrew Castle
+10
+
+Sports: Which former Conservative Party deputy Chairman became president of the World Professional Billiards and Snooker Association in 1997?
+Lord Archer
+10
+
+Sports: Which former featherweight champion was nicknamed The Clones Cyclone?
+Barry McGuigan
+10
+
+Sports: Which former Gloucestershire and England fast bowler was nicknamed Syd?
+David lawrence
+10
+
+Sports: Which former showjumping televison commentator is uncle of the 2002 Badminton Horse Trials winner Pippa Funnell?
+Raymond brooks-ward
+10
+
+Sports: Which French boxer was World Light Heavyweight champion from 1920-1922 and later fought Jack Dempsey for the World Heavyweight title?
+Georges carpentier
+10
+
+Sports: Which French footballer was elected European footballer of the year on three successive years 1983-85?
+Michel Platini
+10
+
+Sports: Which Frenchman was defeated by Pete Sampras in the singles final at Wimbledon in 1997?
+Cedric Pioline
+10
+
+Sports: Which game has 361 intersections?
+Go
+10
+
+Sports: Which German won the mens singles at Wimbledon in the nineties?
+Michael Stich
+10
+
+Sports: Which golf commentator won the Whyte and Mackay PGA championships in 1957,1962 & 1965?
+Peter Alliss
+10
+
+Sports: Which golfer was the runner up in the world match play championship in 1984 and 1985?
+Bernhard Langer
+10
+
+Sports: Which Grand National Winner in 1991 shared its name with the races sponsors?
+Seagram
+10
+
+Sports: Which greek football club who play in black and white stripes reached the quarter finals of the European cup winners cup in 1974?
+PAOK Salonica
+10
+
+Sports: Which horse race, run over two and threequarter miles on the last day of Royal ascot each year is the longest flat race in Britain?
+Queen Alexandra Stakes
+10
+
+Sports: Which horse that won the 1977 St Leger fir the Queen has the same name aa a town in Scotland?
+Dunfermline
+10
+
+Sports: Which horse won the 1993 Grand National?
+There was no winner
+10
+
+Sports: Which horse won the Derby,St Leger and 2000 Guineas in 1970?
+Nijinsky
+10
+
+Sports: Which Irishman, twice winner of the cross country World Championship in 1978&79 was the first person to be given the Freedom of the city of Waterford?
+John treacy
+10
+
+Sports: Which is Englands longest cycle race?
+The Milk race
+10
+
+Sports: Which is the Canon Football Leagues oldest club, founded in 1862?
+Notts County
+10
+
+Sports: Which is the longest Classic race?
+St leger
+10
+
+Sports: Which is the oldest rugby club in existence?
+Guy's hospital rfc
+10
+
+Sports: Which is the only capital city to host the winter olympics?
+Oslo
+10
+
+Sports: Which Italian goalkeeper went 517 minutes withour conceding a goal in the World Cup final stages in 1990?
+Walter zenga
+10
+
+Sports: which Italian team were killed in a plane crash in 1949?
+Torino
+10
+
+Sports: Which jockey rode 7 winners at Ascot on Sat 28 Sept 1996?
+Frankie dettori
+10
+
+Sports: Which jockey with over 1000 winners in Great Britain rode his last winner on Sir Francis at Brighton in april 2000?
+Walter Swinburn
+10
+
+Sports: Which lake in Hyde Park do members of a local swimming club traditionally take a Christmas day dip?
+The serpentine
+10
+
+Sports: Which manager led both Aston Villa and Manchester City to their first League Cup final success?
+Joe Mercer
+10
+
+Sports: Which motor racing team is named after Indias sacred flower?
+Lotus
+10
+
+Sports: Which Nationwide football league club was formed by the amalgamation of west Herts FC and St Marys FC?
+Watford
+10
+
+Sports: Which new water sport was added to the Olympics in 1984?
+Synchronised swimming
+10
+
+Sports: Which nhl franchise holds the record for the longest unbeaten streak?
+Philadelphia flyers
+10
+
+Sports: which nine clubs won the Football League Cup in the 90s?
+Nottingham forest
+10
+
+Sports: Which one day cricket team are nicknamed The Crusaders?
+Middlesex
+10
+
+Sports: Which owners first winner under National Hunt rules was Monaveen in the Queen Elizabeth Chase at Hurst Park in 1950?
+The Queen Mother
+10
+
+Sports: Which pre war world heavyweight boxing champion was nicknamed The Cinderella Man?
+James J Braddock
+10
+
+Sports: Which pre war world heavyweight boxing champion was nicknamed The Fighting Marine?
+Gene Tunney
+10
+
+Sports: Which quarterback was the first player to be voted Most Valuable Player three times in the Superbowl?
+Joe Montana
+10
+
+Sports: Which Royal golf course in England is sometimes also known as Westwood Ho?
+Royal North Devon
+10
+
+Sports: Which rugby league club palys home matches at Belle Vue?
+Wakefield Trinity Wildcats
+10
+
+Sports: Which rugby league club play home matches at Wilderspool?
+Warrington Wolves
+10
+
+Sports: Which rugby league club plays home matches at Griffin Park?
+London Broncos
+10
+
+Sports: Which rugby player was known as the Peer of Wigan?
+Billy boston
+10
+
+Sports: Which Scottish football club lost in successive FA Cup Finals in 1884 and 1885?
+Queens park
+10
+
+Sports: Which song did the England football World Cup squad take to no 1 in the charts in 1970?
+Back Home
+10
+
+Sports: Which sport allows substitutions without stoppage in play?
+Hockey
+10
+
+Sports: Which sport do the French call Jeu a treize?
+Rugby League
+10
+
+Sports: Which sport featured in the BBCs first television broadcast of a sporting event in 1931?
+Horse racing
+10
+
+Sports: Which sport has 'drop-outs' and 'conversions'?
+Rugby union
+10
+
+Sports: Which sport is enjoyed by the Leander Club?
+Rowing
+10
+
+Sports: Which sport uses stones and brooms?
+Curling
+10
+
+Sports: Which Spurs player scored for both sides in the 1987 FA Cup Final when playing against Coventry City?
+Gary mabbutt
+10
+
+Sports: Which star Portuguese footballer has a tattoo of a little devil on his right ankle?
+Luis figo
+10
+
+Sports: Which Swedish golfer is the son of his countrys best known comedian?
+Jesper Parnevik
+10
+
+Sports: Which swimming stroke is named after an insect?
+Butterfly
+10
+
+Sports: Which Swiss city hosted the 1954 World Cup Final?
+Berne
+10
+
+Sports: which team did Arsenal defeat to earn their place in the 2002 FA Cup final?
+Middlesbrough
+10
+
+Sports: Which team did Chelsea defeat to earn their place in the 2002 FA Cup final?
+Fulham
+10
+
+Sports: Which team were the first winners in 1911 of the present FA Challenge Cup?
+Bradford City
+10
+
+Sports: Which team won seven Formula One constructors championships between 1984 - 1991?
+McLaren
+10
+
+Sports: Which tennis player became British No.1 in 1982?
+Sue baker
+10
+
+Sports: Which tennis star wore denim shorts during matches?
+Andre Agassi
+10
+
+Sports: Which three American venues have staged the Winter Olympics?
+Lake Placid
+10
+
+Sports: Which three England players scored penalties in the famous penalty shoot out against West Germany in the semi final of the 1990 World Cup?
+Gary Lineker
+10
+
+Sports: Which three English clubs won the European Cup winners cup in the 90s?
+Manchester United
+10
+
+Sports: Which two footballers scored goals in Englands 1966 World Cup victory?
+Geoff Hurst and Martin Peters
+10
+
+Sports: Which two players have defeated Goran Ivanisevic in Wimbledon singles finals?
+Pete Sampras and Andre Agassi
+10
+
+Sports: Which two teams lost out on FA Cup final places in 2002?
+Fulham and Middlesbrough
+10
+
+Sports: Which two teams meet in the 2002 FA Cup Final?
+Arsenal and Chelsea
+10
+
+Sports: Which was the first British team to win European Cup?
+Celtic
+10
+
+Sports: Which was the first country to win the World Cup 3 times?
+Brazil
+10
+
+Sports: Which was the first country to win the world cup in its own country?
+Uruguay
+10
+
+Sports: Which was the first English Club to achieve FA Cup and League double?
+Preston North End
+10
+
+Sports: Which Yorkshire cricketer scored his hundredth century at Headingley in 1977 ina test match against Australia?
+Geoffrey boycott
+10
+
+Sports: Whihc British tennis player was married to Chris Evert from 1979-87?
+John lloyd
+10
+
+Sports: Who beat Holland in the 1978 World Cup Final?
+Argentina
+10
+
+Sports: Who became US Masters Champion at only 21?
+Tiger Woods
+10
+
+Sports: Who broke Roger bannisters mile record?
+John Landy
+10
+
+Sports: Who captained Spurs when they did the double in 1961?
+Danny Blanchflower
+10
+
+Sports: Who did 'Tennis World' name rookie of the year in 1974?
+Martina Navratilova
+10
+
+Sports: Who did Roberto Duran fight in 1980 in a famous fight dubbed The brawl in Montreal?
+Sugar ray leonard
+10
+
+Sports: Who did Sammy Mcllroy succeed as manager of Northern Ireland in 2000?
+Lawrie mcmenemy
+10
+
+Sports: Who had the nickname 'Golden Bear'?
+Jack Nicklaus
+10
+
+Sports: Who has played in the most consecutive baseball games?
+Cal Ripken Jr
+10
+
+Sports: Who has scored most tries for South africa in International rugby union matches?
+Joost van der Westhuizen
+10
+
+Sports: Who holds the NHL record for the most goals scored during a regular season?
+Wayne Gretzky
+10
+
+Sports: Who hosted the 1999 cricket World Cup?
+England
+10
+
+Sports: Who in 1974 was the first black golfer to win a tournament on the US PGA tour?
+Le elder
+10
+
+Sports: Who in 1990 was the last golfer to win the US Masters in a play - off?
+Nick Faldo
+10
+
+Sports: Who in 1991 was the first British male tennis player for 17 years to win an ATP tournament when he won in the Korean Open?
+Jeremy Bates
+10
+
+Sports: Who in 1993 became the highest scoring Test batsman of all time?
+Alan border
+10
+
+Sports: Who in 1996, became the first footballer to play in 1000 league games?
+Peter shilton
+10
+
+Sports: Who in 1998, jusst 22 seconds after coming on as substitute, scored Chelseas winning goal in the European Cup Winners Cup Final in Stockholm?
+Gianfranco Zola
+10
+
+Sports: Who invented basketball?
+Dr James Naismith
+10
+
+Sports: Who is Edson Arantes do Nascimento better known as?
+Pele
+10
+
+Sports: Who Leads The Major League Baseball In Career Steals?
+Henderson
+10
+
+Sports: Who leads the national hockey league in all-time playoff penalty minutes?
+Dale hunter
+10
+
+Sports: Who leads the NBA in the 2000-2001 season for most points in a game?
+Iverson
+10
+
+Sports: who lost the British light heavyweight title to Chris Finnegan?
+Johnny Frankham
+10
+
+Sports: Who managed Argentina when they won footballs world cup in 1978 and later took charge of Barcelona?
+Cesar Luis Menotti
+10
+
+Sports: Who married Lucy Heald at the end of 1999?
+Tim henman
+10
+
+Sports: Who play football at Goodison Park?
+Everton
+10
+
+Sports: Who played against the USA in golf's Walker Cup?
+Great Britain
+10
+
+Sports: Who quarterbacked the miami dolphins in 1990-1991?
+Dan marino
+10
+
+Sports: who scored 100 points in a basketball game on march 3, 1962?
+Wilt chamberlain
+10
+
+Sports: Who scored the goal that sent Chelsea to the FA Cup Final 2002?
+John Terry
+10
+
+Sports: Who scored the own goal that gifted Arsenal a place in the 2002 FA Cup Final?
+Gianluca Festa
+10
+
+Sports: Who scored with the hand of God in the semifinal of the worldchampionchip Football in 1993?
+Maradona
+10
+
+Sports: Who spoiled Muhammad Ali's 1980 comeback?
+Larry Holmes
+10
+
+Sports: Who stepped in as England captain whilst David Beckham was resting his broken foot?
+Michael Owen
+10
+
+Sports: who stopped bjorn borg's string of five wimbledon singles titles at five?
+John mcenroe
+10
+
+Sports: Who was Olympic Boxing light heavyweight gold madallist in 1960?
+Cassius Clay
+10
+
+Sports: Who was the 1978 Wimbledon Women's Singles champ?
+Martina navratilova
+10
+
+Sports: Who was the 1990 Wimbledon women's singles runner-up?
+Zina Garrison
+10
+
+Sports: Who was the first batsman to score a century in a cricket World Cup Final,doing so in 1975?
+Clive Lloyd
+10
+
+Sports: Who was the first British Speedway Rider to win the Long Track World Championship?
+Michael Lee
+10
+
+Sports: Who was the first golfer to record two rounds of 63 in different Majors?
+Greg norman
+10
+
+Sports: Who was the first man to win the World Professional Snooker Title at the Crucible?
+John spencer
+10
+
+Sports: Who was the first negro boxer to be world heavyweight champion?
+Jack Johnson
+10
+
+Sports: Who was the first NHL player to score 50 goals in one season?
+Maurice richard 
+10
+
+Sports: Who was the first to win the grand slam of tennis?
+Don Budge
+10
+
+Sports: Who was the first West Indian Cricketer to be knighted?
+Sir Learie Constantine
+10
+
+Sports: Who was the first woman to swim the English channel?
+Gertrude Ederle
+10
+
+Sports: Who was the first woman to win an individual medal in the Olympic Games showjumping event?
+Marion Mould
+10
+
+Sports: Who was the French lawyer who provided the World Cup Trophy in 1930 and after whom it was named in 1946?
+Jules rimet
+10
+
+Sports: Who was the last Briton to win the men's singles at Wimbledon?
+Fred Perry
+10
+
+Sports: Who was the NBA MVP in 1976, 1977 and 1980?
+Kareem Abdul-Jabbar
+10
+
+Sports: Who was the NBA's most valuable player in 1976, 1977 and 1980?
+Kareem Abdul-Jabbar
+10
+
+Sports: Who was the only boxer to knock out Mohammed Ali?
+Larry Holmes
+10
+
+Sports: who was the only swede to hold the world heavyweight boxing championship?
+Ingemar johansson
+10
+
+Sports: Who was the second British runner after Roger Bannister to run a sub four minute mile in 1955?
+Chris Chataway
+10
+
+Sports: Who was the world record holder for the long jump before Ralph Boston took it in 1960?
+Jesse Owens
+10
+
+Sports: Who was voted PFA Player of the Year 2002?
+Ruud van Nistelrooy
+10
+
+Sports: Who was womens Wimbledon champion in 1994?
+Conchita Martinez
+10
+
+Sports: Who was world darts champion 5 times between 1980 and 1986?
+Eric Bristow
+10
+
+Sports: Who were the holders of the FA Cup in 1895 when it was stolen from a Birmingham shop window?
+Aston Villa
+10
+
+Sports: Who won the 1982 Football world cup?
+Italy
+10
+
+Sports: Who won the 2002 London Marathon?
+Paula Radcliffe
+10
+
+Sports: Who won the 2002 malaysian grand prix?
+Ralf Schumacher 
+10
+
+Sports: Who won the first F A Challenge cup in 1872?
+Wanderers
+10
+
+Sports: Who won the marathon in the first modern Olympic Games in 1896?
+Spyridon louis
+10
+
+Sports: Who won the mens shot put at the 1974 Commonwealth Games?
+Geoff Capes
+10
+
+Sports: Who won the Tour de France for the third successive time in 1993?
+Miguel indurain
+10
+
+Sports: Who won theScottish FA Cup 3 times between 1982 and 1984?
+Aberdeen
+10
+
+Sports: Who, in the 1968 European Championships,became the first England footballer to be sent off in an international?
+Alan Mullery
+10
+
+Sports: Whom did New Zealand beat 145-17 in the 1995 Rugby Union World Cup?
+Japan
+10
+
+Sports: Why was Linford Christie disqualified from the Olympic 100 metres final in 1996?
+Two false start
+10
+
+Sports: Winner of the British Open Golf in 1979/1984 & 1988?
+Severiano Ballesteros
+10
+
+Sports: With what did cricketer Mansoor Ali Khan Pataudi frequently play with in his hands?
+Glass eye
+10
+
+Sports: With what sport is Chris Boardman associated?
+Cycling
+10
+
+Sports: With what sport is Gabriela Sabatini associated?
+Tennis
+10
+
+Sports: With what sport is Jack Nicklaus associated?
+Golf
+10
+
+Sports: With which city would you associate the Brough Park greyhound venue?
+Newcastle
+10
+
+Sports: With which country do you associate Petr Korda?
+The czech republic
+10
+
+Sports: With which sport do you associate Bob Falkenberg,Dick Savitt and Ted Schoeder?
+Tennis
+10
+
+Sports: With which sport do you associate James Wattana?
+Snooker
+10
+
+Sports: With which sport is aryton senna identified?
+Grand prix racing
+10
+
+Sports: With which sport is Babe Ruth associated?
+Baseball
+10
+
+Sports: With which sport is Bjorn Borg associated?
+Tennis
+10
+
+Sports: With which sport is Bobby Moore associated?
+Football
+10
+
+Sports: With which sport is Chirs Evert-Lloyd associated?
+Tennis
+10
+
+Sports: With which sport is Chris Evert Lloyd identified?
+Tennis
+10
+
+Sports: With which sport is Greg Norman identified?
+Golf
+10
+
+Sports: With which sport is hans gunter winkler associated?
+Showjumping
+10
+
+Sports: With which sport is Jack Nicklaus associated?
+Golf
+10
+
+Sports: With which sport is Jimmy Connors identified?
+Tennis
+10
+
+Sports: With which sport is Joe Calzaghe associated?
+Boxing
+10
+
+Sports: With which sport is Michael & retti identified?
+Indy cart racing
+10
+
+Sports: With which sport is Michael Andretti identified?
+Indy cart racing
+10
+
+Sports: With which sport is Muhammad Ali associated?
+Boxing
+10
+
+Sports: With which sport is Muhammed Ali associated?
+Boxing
+10
+
+Sports: With which sport is Pele associated?
+Football
+10
+
+Sports: With which sport is Pete Sampras identified?
+Tennis
+10
+
+Sports: With which sport is Siverstone most associated?
+Motor racing
+10
+
+Sports: With which sport is willie mays associated?
+Baseball
+10
+
+Sports: With which sport was the late aga Khan connected?
+Horse racing
+10
+
+Sports: With which sport would you associate Alberto Tomba?
+Skiing
+10
+
+Sports: With which sport would you associate Carl Stonehewer,Scott Nicholls and Tomasz Gollob?
+Speedway
+10
+
+Sports: With which sport would you associate the Harmsworth Trophy?
+Powerboat racing
+10
+
+Sports: World Cup 1978, which Scottish footballer was sent home for taking drugs?
+Willie johnstone
+10
+
+Sports: World Cup 2002, name of the German captain and goalie?
+Oliver kahn
+10
+
+Sports: World Cup 2002, which Brazilian player assumed hero status after scoring the 2 winning goals?
+Ronaldo
+10
+
+Sports: Yorkshire bowler who took 5 for 51 in his test debut against Pakistan in 1954?
+Bob appleyard
+10
+
+Sports: You might 'catch a crab' in which sport?
+Rowing
+10
+
+Sports: You might 'slam dunk' in which sport?
+Basketball
+10
+
+Sports: Yugoslavian tennis player stabbed by a spectator in 1993 during the Hamburg Open?
+Monica Seles
+10
+
+Sports: Zinzan Brooke, John Gallagher and Dick Best have all coached which rugby union club?
+Harlequins
+10
+
+Sports: �soling star' and 'fin' are categories in which sport?
+Yachting
+10
+
+Spread out, the walls of the human intestines would cover an area of about?
+One hundred square feet
+10
+
+Spring bulb with trumpet shaped yellow flowers?
+Daffodil
+10
+
+Springfield is the capital of what state?
+Illinois
+10
+
+Springfield's shrink?
+Dr. Marvin Monroe 
+10
+
+Square cap worn by RC priests?
+Biretta
+10
+
+Square of cloth used to wipe nose?
+Handkerchief
+10
+
+Squid can commit suicide by eating their own?
+Tentacles
+10
+
+Squid, octopus and cuttlefish are all types of what?
+Cephalopods
+10
+
+St petersburg was first known as ____ then leningrad
+Stalingrad
+10
+
+St petersburg was first known as stalingrad and then ____
+Leningrad
+10
+
+St. Francis Xavier University, founded in 1853 is located in what Nova Scotia town?
+Antigonish
+10
+
+Stableman at an inn?
+Ostler
+10
+
+Stadler and Waldorf were critics who appeared in which TV show?
+The muppets
+10
+
+Stage of maturation between childhood & adulthood?
+Adolescence
+10
+
+Stage who made her show business debut under the name of 'baby frances'?
+Judy
+10
+
+Stagecoach and fort apache starred which actor?
+John wayne
+10
+
+Stake put by poker players before receiving cards?
+Ante
+10
+
+Stalingrad who was the only sister on petticoat junction to marry?
+Betty jo
+10
+
+Stanwyck what phenomenon is caused by the gravitational attraction of the moon?
+Tides
+10
+
+Star running back Paul hornung played what college position?
+Quarterback
+10
+
+Star that, by the gravitational effects of its mass, dominates the planetary system that includes the earth?
+Sun
+10
+
+Starliters what's the only video game that became a television show?
+Pac-man
+10
+
+Starr-edwards, carpentier, ball-cage are types of?
+Heart valves
+10
+
+Starting the engine of a car by bypassing the ignition switch?
+Hot-wire
+10
+
+Starved Rock State Park, Crab Orchard & Cahokia Mounds are in what state?
+Illinois
+10
+
+State in the east central U S, bordering the Ohio River?
+Kentucky
+10
+
+State in the east north central U S?
+Michigan
+10
+
+State in the north central U S?
+Missouri
+10
+
+State in the south eastern U S, bordering the Atlantic Ocean?
+South carolina
+10
+
+State in the west north central U S?
+Iowa
+10
+
+State Nicknames: Alabama?
+The heart of dixie
+10
+
+State Nicknames: Hawkeye State?
+Iowa
+10
+
+State Nicknames: Lone Star State?
+Texas
+10
+
+State Nicknames: Mountain State?
+West Virginia
+10
+
+State Nicknames: Yellowhammer State?
+Alabama
+10
+
+State of being forgotten or disregarded?
+Oblivion
+10
+
+Statehood had been proposed many times throughout Hawaii's history, but it was not until 1959 that Hawaii became the?
+50th state of the United States
+10
+
+Station which south American country has both a pacific and atlantic coastline?
+Colombia
+10
+
+Statistically speaking, every day 110 golfers make a what?
+Hole in one
+10
+
+Statistically speaking, the most dangerous job in the United States is that of ____
+Sanitation worker
+10
+
+Statistically, traveling by ____ is the safest means of transportation
+Air
+10
+
+Steenburgen What sheriff claimed to be Walking Tall?
+Buford pusser
+10
+
+Stephens College is in which state?
+Missouri
+10
+
+Steve Jobs and Steve Wozniak are best known as the creators of the ____ computer
+Apple
+10
+
+Steve Jobs and Steve Wozniak designed a popular arcade game for Atari called?
+Breakout
+10
+
+Steve miller released a song about this, which he hoped wouldn't carry him too far away?
+Jet airliner
+10
+
+Stevie Wonder won the 1984 Oscar for Best Song for I Just Called to Say I Love You. For which film was this song written?
+The woman in red
+10
+
+Stew of meat and vegetables seasoned with paprika?
+Goulash
+10
+
+Sticky tape was produced in which year?
+1928
+10
+
+Still running at St. Martin's Theatre, who wrote the play 'The Mousetrap'?
+Agatha christie
+10
+
+Stingy or ungenerous?
+Niggardly
+10
+
+Stock Latin Phrases: A god from a machine?
+Deus ex machina
+10
+
+Stock Latin Phrases: A new order of the ages (Vergil; also on U.S.A. $1 bill)?
+Novus ordo seclorum
+10
+
+Stock Latin Phrases: Not of sound mind?
+Non compos mentis
+10
+
+Stock Latin Phrases: There is no disputing about tastes?
+De gustibus non est disputandum
+10
+
+Stock Latin Phrases: To the stars by hard ways (motto of Kansas)?
+Ad astra per aspera
+10
+
+Stockholm is the capital of ____
+Sweden
+10
+
+Stoicism was founded by?
+Zeno
+10
+
+Stoppered glass container for wine or spirits?
+Decanter
+10
+
+Storehouse or place where vehicles are kept?
+Depot
+10
+
+Strabismus is another name for which affliction?
+Squint
+10
+
+Strabismus is the medical term for which complaint?
+Crossed eyes
+10
+
+Stranger in what prehistoric kingdom does 'alley oop' live?
+Moo
+10
+
+Stranger than strange: what ship was found mysteriously abandoned four weeks after leaving boston for genoa in november, 1872?
+The mary celeste
+10
+
+Strasbourg is the administrative centre of which French region?
+Alsace
+10
+
+Strategic defense of a country against a foreign military attack?
+Defense systems
+10
+
+Strip where is 'the strip' that was designated an official scenic byway?
+Las vegas
+10
+
+Stroking the sole of the foot produces the ____ reflex
+Babinski
+10
+
+Strong shoe used for walking?
+Brogue
+10
+
+Strong spirit distilled from wine or fermented fruit juice?
+Brandy
+10
+
+Strong synthetic fibre?
+Nylon
+10
+
+Stronger how many legs does a crab have?
+Ten
+10
+
+Structure for hanging criminals?
+Gallows
+10
+
+Study of living things and their environment?
+Ecology
+10
+
+Study of organisms of microscopic size, including bacteria, protozoans, viruses, and?
+Microbiology
+10
+
+Study of prehistoric animal & plant life through the analysis of fossil remains?
+Paleontology
+10
+
+Study of the processes by which living cells use, store, & release energy?
+Bioenergetics
+10
+
+Study of the substances found in living organisms, & of the chemical reactions underlying life processes?
+Biochemistry
+10
+
+Stuffed vine or cabbage leaves are called what?
+Dolmades
+10
+
+Stupid Dog Tricks?
+Sit
+10
+
+Stupid things to do ;-): If you look at the sun long enough, you go ____
+Blind
+10
+
+Style of Architecture and design originating in early 18th century?
+Rocco
+10
+
+Substance that is a poor conductor of electricity and that will sustain the force of an electric field passing through it?
+Dielectric
+10
+
+Substance that neutralizes alkalis and turns litmus paper red?
+Acid
+10
+
+Sudden overthrow of government?
+Coup d'etat
+10
+
+Sue randall played this schoolteacher of beaver's in leave it to beaver?
+Miss landers
+10
+
+Sue went to the store and bought $5.25 worth of sodas and $2.80 worth of bread. What will be the subtotal of her bill?
+$8.05
+10
+
+Sugar was first added to chewing gum in ____ . . . by a dentist ( William Semple)
+1869
+10
+
+Sugar,water and white of egg were the only ingredients of what popular victorian childrens treat?
+Barley sugar
+10
+
+Summer Holiday was a sixties hit for who?
+Cliff richard
+10
+
+Summertime: This is the sandy area nearest the ocean?
+Beach
+10
+
+Sun Which US president bought a place in Colorado to ski during vacations?
+Gerald
+10
+
+Sunbeams that shine down through the clouds are called?
+Crepuscular rays
+10
+
+Sung by the bee gees in 1978, the song is called 'stayin' ____'
+Alive
+10
+
+Super glue is used to lift fingerprints from what surfaces?
+Difficult
+10
+
+Superstition says that this birds feathers should never be inside a house?
+Peacock
+10
+
+Superstition says the feathers of which bird shouldn't be used as house decorations?
+Peacock
+10
+
+Supposed paranormal force moving objects at a distance?
+Telekinesis
+10
+
+Sural refers to what part of the body?
+Calf
+10
+
+Surgical pincers?
+Forceps
+10
+
+Surgical removal of the kidney is what?
+Nephrectomy
+10
+
+Surrounding or blocking of a place by an enemy?
+Blockade
+10
+
+Suspension of tiny particles of one substance, called the dispersed phase, in another phase, called the dispersion medium?
+Colloid
+10
+
+Suzy Bogguss is 1 of 3 kids. Was she the oldest,middle,youngest?
+Youngest
+10
+
+Swahili is a combination of African tribal languages?
+Arabic & Portuguese
+10
+
+Swahili is a combination of arabic and ____
+Portuguese
+10
+
+Swahili is a combination of Portuguese and ____
+Arabic
+10
+
+Swedish Sylvia sang Y Viva... where?
+Espana
+10
+
+Sweet opaque jelly of flavoured cornflour and milk?
+Blancmange
+10
+
+Sweet or fermented juice of apples, used as a beverage and for making vinegar?
+Cider
+10
+
+Swelling of tissues due to abnormal fluid accumulation?
+Edema
+10
+
+Symbol si, semimetallic element that is the second most common element on earth, after oxygen?
+Silicon
+10
+
+Symbolic addmission to Christianity and name giving?
+Baptism
+10
+
+Synthetic hormone used to build muscle?
+Anabolic steroid
+10
+
+System of compulsory enrollment of men and women into the armed forces?
+Conscription
+10
+
+System of winds producing fine weather?
+Anticyclone
+10
+
+System what are fields of rice called?
+Paddies
+10
+
+Sysyem used especially in tape recording to reduce hiss?
+Dolby
+10
+
+Taking its name from the adjacent country, which channel lies between mainland Africa and Madagascar?
+Mozambique channel
+10
+
+Talc is a hydrated silicate of which metal?
+Magnesium
+10
+
+Talk about an IQ!: With a weight averaging 7,800kg (17 lbs), this critter boasts having the heaviest brain?
+Sperm Whale
+10
+
+Tall revolving wheel at fairgrounds?
+Ferris
+10
+
+Tallahassee is the capital of ____
+Florida
+10
+
+Tallinn is the capital of which country?
+Estonia
+10
+
+Tanzania is the country that resulted from the union of tanganyika and ____
+Zanzibar
+10
+
+Tanzania is the country that resulted from the union of zanzibar and ____
+Tanganyika
+10
+
+Tarantula's can survive ____ years without food
+Two and a half
+10
+
+Tarlike mixture of hydrocarbons derived from petroleum?
+Bitumen
+10
+
+tarom airlines belong to which country?
+Romania
+10
+
+Tarquin the proud was the last king of where?
+Rome
+10
+
+Tarsus, metatarsus, and phalanges are parts of a ____
+Foot
+10
+
+Tatum O'Neal's ex husband?
+John McEnroe
+10
+
+Technology: List some computer manufacturers?
+Apple
+10
+
+Technology: List some computer manufacturers?
+Epson
+10
+
+Technology: List some computer manufacturers?
+IBM
+10
+
+Technology: What was launched on the 4th December 1996?
+Mars Pathfinder
+10
+
+Technology: What was the Earth's first artificial satellite?
+Sputnik 1
+10
+
+Technology: What was the first lighthouse?
+Pharos of Alexandria
+10
+
+Technology: What was the name of the first plane ever to fly?
+Flyer
+10
+
+Technology: Which was the first manned aircraft to exceed the speed of sound?
+Bell X-1
+10
+
+Technology: Who invented the Hovercraft?
+Sir Christopher Cockerell
+10
+
+Technology: Who invented the Telephone?
+Alexander Graham Bell
+10
+
+Teheran is the capital of ____
+Iran
+10
+
+Teichi igarashi climbed what mountain at the age of 99?
+Mount fuji
+10
+
+Teiichi igarashi climbed what mountain at the age of 99?
+Mount fuji
+10
+
+Temperature at which a liquid congeals into the solid state at a given pressure?
+Freezing point
+10
+
+Temperature when condensation occurs is called the?
+Dew point
+10
+
+Temporary encampment without tents?
+Bivouac
+10
+
+Ten degrees celsius is the equivalent of how many degrees fahrenheit?
+Fifty degrees
+10
+
+Ten Things you see at an Airport (singular)?
+Airplane
+10
+
+Tenth greek letter?
+Kappa
+10
+
+Terlingua, Texas is the annual site of what cook off?
+International chili society
+10
+
+Term applied loosely to any of a number of chemical compounds in the carbohydrate group that are readily soluble in water; are colorless, odorless, & usually crystallizable; & are more or less sweet in taste?
+Sugar
+10
+
+Term applied to a migratory people of southern China?
+Hakka
+10
+
+Term applied to cultivation of plants in nutrient solutions without use of soil?
+Hydroponics
+10
+
+Term applied to the edible portions of domestic mammals such as cattle, calves, sheep, lambs, & swine?
+Meat
+10
+
+Term applied to the group of plant or animal organs that are necessary for or that are accessory to the reproductive processes (reproduction)?
+Reproductive system
+10
+
+Term applied to the profession in which a knowledge of the mathematical & natural sciences, gained by study, experience, & practice, is applied to the efficient use of the materials & forces of nature?
+Engineering
+10
+
+Term applied to the ripened ovule of a seed plant before germination?
+Seed
+10
+
+Term for animals in the class including the scorpions and spiders?
+Arachnid
+10
+
+Term for the role the atmosphere plays in insulating and warming the earth's surface?
+Greenhouse effect
+10
+
+Term indicating the hydrogen ion concentration of a solution, a measure of the solutions acidity?
+Ph
+10
+
+Term meaning `rest' which titled a posthumous RAH retrospective?
+Requiem
+10
+
+Term originally meaning any kind of bird, & later applied chiefly to edible species?
+Fowl
+10
+
+Term popularly applied to a visible growth of fungi or bacteria on wet clothes, food, or other objects?
+Mildew
+10
+
+Term used to designate a crew member for manned space flights of the united states space program?
+Astronaut
+10
+
+Termination of pregnancy before the fetus is capable of independent life?
+Abortion
+10
+
+Terms of endearment won best picture oscar in 1980, 1982 or 1983?
+1983
+10
+
+Terpsichore was the muse of what?
+Dancing
+10
+
+Terry knight was the original producer of what group?
+Grand funk railroad
+10
+
+Test of metal or ore for ingredients and quality?
+Assay
+10
+
+Tests on drugs and poisons determine the ld-50 dose. what does ld stand for?
+Lethal dose
+10
+
+Tet is a three day celebration marking the new year in which country?
+Vietnam
+10
+
+Texas chainsaw massacre, there was a guy in a wheelchair. what was his name?
+Franklin
+10
+
+Texas name the lead singer?
+Harleen spiteri
+10
+
+Thalia was the muse of what?
+Comedy
+10
+
+Thanks for the fab picture Marge, I hung it on me wall. Who said it?
+Ringo Star
+10
+
+Thanksgiving was proclaimed a national holiday in 1863, 1868 or 1892?
+1863
+10
+
+That is your zodiacal sign if you're born on july 15?
+Cancer
+10
+
+The ____ ____ supplies the liver with oxygen
+Hepatic artery
+10
+
+The ____ E. Cheese franchise was created by Atari, a restaurant combining robotic
+Chuck
+10
+
+The ____ got its name from the corruption of the words ' Day's eye'
+Daisy
+10
+
+The ____ has 14,174 teeth (105 rows, 135 teeths in each)
+Garden snail
+10
+
+The ____ hours are matins, lauds, prime, tierce, sext, nones, vespers and compline
+Monastic
+10
+
+The ____ includes the spinal cord and the brain
+Central Nervous System
+10
+
+The ____ Indian language was used successfully as a code by the United States in World War II
+Navajo
+10
+
+The ____ is a fish that can actually walk on land
+Mudskipper
+10
+
+The ____ is born under water
+Hippopotamus
+10
+
+The ____ is illegal as a high school sport in all states except Rhode Island
+Hammerthrow
+10
+
+The ____ is the largest building from ancient Rome that survives intact
+Pantheon
+10
+
+The ____ is the only animal whose evidence is admissible in an American court
+Bloodhound
+10
+
+The ____ is the only mammal that can't jump
+Elephant
+10
+
+The ____ is the U.S. Marine tilt-rotor transport that takes off and lands like a helicopter, but flies like an airplane
+Osprey
+10
+
+The ____ kills more people world wide than all the poisonous snakes combined
+Honeybee
+10
+
+The ____ Ocean covers the world's longest mountain range
+Atlantic
+10
+
+The ____ revolution began in 1905 on 'bloody sunday' when troops fired at demonstrators
+Russian
+10
+
+The ____ sea is not mentioned in the Bible
+Red
+10
+
+The ____ was acquired by King Louis XIV in 1668. It was worn 120 years later by Marie Antoinette and it now resides in the Smithsonian Institution. This beautiful natural blue diamond weighs 44.5 carats today
+Hope diamond
+10
+
+The ____ was wrongly named after what was thought to be its country of origin
+Turkey
+10
+
+The ____ were the first Asian colony to become independent following World War II. Today the country's population is approximately 60,000,000, and is comprised of many ethnicity. Many citizens are of Malay, Chinese, or Spanish descent
+Philippines
+10
+
+The ____, Seventh-century native Mexicans, went into battle with wooden swords so as not to kill their enemies
+Toltecs
+10
+
+The ____burned the White House during the War of 1812
+British 
+10
+
+The ' funny bone' is not a bone but a?
+Nerve
+10
+
+The 'Alligator Pear' is better known as the?
+Avocado
+10
+
+The 'Bay of Pigs' fiasco took place in this country?
+Cuba
+10
+
+The 'canebrake', 'timber' and 'pygmy' are types of what?
+Rattlesnake
+10
+
+The 'Crystal Palace' at the Great Exhibition of 1851, contained ____ square metres of glass
+92,900
+10
+
+The 'frigorifique' was the names of the world's first what?
+Refrigerator ship
+10
+
+The 'green mountain state' is...?
+Vermont
+10
+
+The 'Long John Silver Collection' housed on the Cutty Sark is the nations largest collection of what?
+Ship's figureheads
+10
+
+The 'love apple' is more commonly known as what?
+Tomato
+10
+
+The 'male' part of a flower, which encompasses the filament and the anther is generally termed the what?
+Stamen
+10
+
+The 'purple heart' medal was created in 1668, 1701 or 1782?
+1782
+10
+
+The 'screwdriver' was invented by ____, who used the tool to stir the drink
+Oilmen
+10
+
+The 'sockeye' is a species of which fish?
+Salmon
+10
+
+The 'stickman', 'boxer' and 'shooter' are three of the participants in which casino game?
+Craps or dice
+10
+
+The 'Thing', from the movie of the same name, had ____ blood
+Green
+10
+
+The 'Wife of Bath' is a character from what tale?
+Canterbury tales
+10
+
+The 'windflower' is the common name for which flowering bulb?
+Anemone
+10
+
+The (extinct) tasmanian tiger is formally known as?
+Thylacine
+10
+
+The (you are here arrow) on a map is called the ____ locator
+Ideo
+10
+
+The 10 best U.S. Presidents (last name only)?
+Jefferson
+10
+
+The 10 worst U.S. Presidents (last name only)?
+Harding
+10
+
+The 18th century artist Richard Wilson is known chiefly for his paintings of which mountain in the UK?
+Snowdon
+10
+
+The 1917 Declaration about the establishment of a Jewish state in Palestine was named after which Prime Minister?
+Balfour
+10
+
+The 1948 musical 'Where's Charley' was based on which English farce?
+Charley's aunt
+10
+
+The 1950s saw an upsurge in the popularity of science fiction writing. Which forefather of modern SF wrote his first novel in 1952, called Player Piano?
+Kurt Vonnegut
+10
+
+The 1971 film The Music Lovers was about which composer?
+Pyotr illyich tchaikovsky
+10
+
+The 1976 Olympic Mascot for Montreal, Canada was a beaver. What was the beaver's name?
+Amik
+10
+
+The 1980s band were Scritti...what?
+Politti
+10
+
+The 1982 football strike lasted how many days?
+57
+10
+
+The 1984 winter olympics were held at what site?
+Sarajevo
+10
+
+The 1990 national championship in women's indoor track was won by?
+Texas
+10
+
+The 1991 national championship in women's volleyball was won by?
+Ucla
+10
+
+The 1st buffalo ever born in captivity was born at Chicago's Lincoln Park Zoo in what year?
+1884
+10
+
+The 1st personal computer went on sale in what year?
+1977
+10
+
+The 1st U S federal holiday honoring Martin Luther King, jr. Was in what year?
+1986
+10
+
+The 1st u.s federel penitentiary was completed in 1900, 1906 or 1912?
+1906
+10
+
+The 1st US minimum wage law was instituted in what year?
+1938
+10
+
+The 2 months added when the Roman calendar was expanded from 10 to 12 months?
+January & february
+10
+
+The 25th U S president always wore a red carnation. He was ____ ____
+William mckinley
+10
+
+The 3 largest newspaper circulations are?
+Russian
+10
+
+The aardvark is the first animal listed in a dictionary but what is the second?
+Aardwolf
+10
+
+The aardvark was named by Dutch settlers in Africa, what does its name mean?
+Earth pig
+10
+
+The acol system is used in which game?
+Bridge
+10
+
+The acorn is the fruit of which tree?
+Oak
+10
+
+The act of a vampire turning a human into another vampire of their clan is called the ____
+Embrace
+10
+
+The action of which operetta is centred around Venice and the fictional land of Barataria?
+The gondoliers
+10
+
+The active ingredient in Chinese Bird's nest soup is?
+Saliva
+10
+
+The active ingredient in smelling salts is?
+Ammonia
+10
+
+The addition of what turns a Welsh rarebit into a Buck rarebit?
+Poached egg
+10
+
+The Adelie penguin is native to what continent?
+Antarctica
+10
+
+The Adi Granth is the Holy Book of which religion?
+Sikh
+10
+
+The Admiralty islands are part of which country?
+Papua new guinea
+10
+
+The agen plum first planted in 1856, 1857 or 1858?
+1856
+10
+
+The agen plum was the basis of what giant u.s industry?
+Prunes
+10
+
+The ailment known as conjunctivitis is also referred to by what colourful name pink eye?
+Conjuctivitis
+10
+
+The Alaska highway terminal is in?
+Edmonton
+10
+
+The Albert Canal links Liege with which city?
+Antwerp
+10
+
+The alcohol found in wine, beer & liquor is known as grain alcohol or what?
+Ethanol
+10
+
+The aleutian islands can be found in which ocean?
+Pacific Ocean
+10
+
+The Amayra guides of Bolivia are said to be able to keep pace with a trotting horse for a distance of?
+100 kilometres
+10
+
+The America's Cup left home for the first time to go where?
+Australia
+10
+
+The American flag first flew over a foreign fort in what country?
+Libya
+10
+
+The American name for an academic term?
+Semester
+10
+
+The American pilot Charles Lindbergh received the Service Cross of the German Eagle from ____ ____ in 1938
+Hermann goering
+10
+
+The American Robert Oppenheimmer is best known for the development of what?
+Atom bomb
+10
+
+The American Society for Prevention of Cruelty to Animals (aspca) was formed in what year?
+1866
+10
+
+The American word 'suspenders' is used for which accessory in Britain?
+Braces
+10
+
+The American's held the first election in which colony in 1619?
+Virginia
+10
+
+The Americans refer to them as Potato Chips. What do the British refer to them as?
+Potato Crisps
+10
+
+The Amhara, people inhabit which African country?
+Ethiopia
+10
+
+The amount of carbon in the human body is enough to fill about ____ 'lead' pencils
+9,000
+10
+
+The amount of what substance in granite determines its color?
+Feldspar
+10
+
+The ancient cities of Mohenjo Daro and Harappa were in which country?
+India
+10
+
+The Ancient Egyptians trained ____ to wait at their tables
+Baboons
+10
+
+The ancient greeks played a form of football known to them as ____
+Harpaston
+10
+
+The ancient mesopotamian civilization was cradled in between which two 'life-giving' rivers?
+Euphrates tigris
+10
+
+The ancient town of Luxor stood on which river?
+Nile
+10
+
+The Angel falls in Venezuela are nearly ____ times taller than Niagara falls
+Twenty
+10
+
+The angel of independence in Mexico City was built by who?
+Salvador rivas mercado
+10
+
+The anglo nubian, toggenburg and murcian are breeds of which animal?
+Goat
+10
+
+The aniseed-flavoured drink absinthe contained, originally, an extract of which plant?
+Wormwood
+10
+
+The annual vermont ceramic show is held in what town?
+Essex junction
+10
+
+The anschluss joined which two countries in a union in 1938?
+Germany and Austria
+10
+
+The ant always fall over on its right side when ____
+Intoxicated
+10
+
+The ant always falls over on its right side when?
+Intoxicated
+10
+
+The Aorta is in which organ in the body?
+Heart
+10
+
+The application of chemical principles & techniques to geologic studies, to understand how chemical elements are distributed in the crust, mantle, & core of the earth?
+Geochemistry
+10
+
+The application of science to law?
+Forensic science
+10
+
+The aquatic animal, the Red Sponge, can be broken into a thousand pieces and still ____ itself
+Reconstitute
+10
+
+The architect Edwin Lutyens is best known for his plans for which capital city?
+New delhi
+10
+
+The arrangement of individual characters of a particular typeface into words, sentences, paragraphs, & so on, for the purpose of printing & publishing (printing; type)?
+Typesetting
+10
+
+The art of moving quietly and with extreme care?
+Stealth
+10
+
+the artist Louis daguerre is often credited with the invention of photography but who was his partner whose invention he refined?
+Joseph niepce
+10
+
+The ashes is played between which 2 countries (alphabetical order)?
+Australia England
+10
+
+The ashes of the average cremated person weighs how many pounds?
+Nine
+10
+
+The assassin in the man with the golden gun was played by who?
+Christopher lee
+10
+
+The assassination of what country's Archduke led to World War I?
+Austria
+10
+
+The assault on starfleet by the borg was at?
+Wolf 359
+10
+
+the associated press first began wire service in this city?
+New york
+10
+
+The astronomical entity known as the pleiades is a?
+Star cluster
+10
+
+The Atlanta Braves baseball team has retired # 35 which used to belong to ____
+Phil niekro
+10
+
+The Atlanta Hawks basketball team have retired 23 which used to belong to ____
+Lou hudson
+10
+
+The Atomium is a famous tourist attraction in which city?
+Brussells
+10
+
+The Auricularis muscles are used to move the____
+Ears
+10
+
+The Australian term for extras in cricket are?
+Sundries
+10
+
+The Austrians invented them in the 19th century by hanging them from balloons, what were they?
+Aerial bombs
+10
+
+The author Jules Verne was born in which city?
+Nantes
+10
+
+The author of 'the yearling' and 'cross creek' was ____ ____ ____
+Marjorie kinnan rawlings
+10
+
+The authorities do not allow tourists to take pictures of ____ in Zambia
+Pygmies
+10
+
+The automobile company that makes beetles?
+Volkswagon
+10
+
+The average 6-month accumulation of barnacles on the hull of a ship can produce enough drag to force the vessel to burn ____ percent more fuel than normal when cruising
+-- Answer metadata begin
+{
+    "answers": ["Forty", "40"]
+}
+-- Answer metadata end
+10
+
+The average 60-minute audio cassette tape has ____ feet of tape in it
+562.5
+10
+
+The average adult human has 32 of these?
+Teeth
+10
+
+The average American drinks approximately how many sodas per yer?
+600
+10
+
+The average American will eat 35,000 ____ during their life span
+Cookies
+10
+
+The average American's diet today consists of 55 percent ____
+Junk food
+10
+
+The average American/Canadian drinks about ____ sodas a year
+600
+10
+
+The average American/Canadian will eat about 11.9 pounds of ____ per year
+Cereal
+10
+
+The average automatic dishwasher uses how many litres of water per wash cycle?
+68
+10
+
+The average bank teller loses about how many dollars every year?
+250
+10
+
+The average bra size sold at Frederick's of Hollywood in 1966 was a 34B. Today, it's a ____
+36c
+10
+
+The average chocolate bar has ____ insects' legs in it
+Eight
+10
+
+The average garden variety ____ has 248 muscles in its head
+Caterpillar
+10
+
+The average garden variety caterpillar has ____ muscles in its head
+248
+10
+
+The average human body contains enough ____ to kill all fleas on an average dog
+Sulfur
+10
+
+The average human body contains enough fat to make how many bars of soap?
+7
+10
+
+The average human body contains enough phosphorous to make how many match heads?
+2,000
+10
+
+The average human brain weighs ____ kg
+1.3
+10
+
+The average human eats ____ spiders in their lifetime at night
+Eight
+10
+
+The average human produces how many quarts of spit in a lifetime?
+25,000
+10
+
+The average human uses which muscles most?
+The eye
+10
+
+The average ice berg weighs ____ tons
+20,000,000
+10
+
+The average person falls asleep in?
+Seven minutes
+10
+
+The average person has 1,460 of these each year?
+Dreams
+10
+
+The average person has over ____ dreams a year
+1,460
+10
+
+The average person laughs ____ times a day
+Thirteen
+10
+
+The average porcupine has about ____ quills
+30,000
+10
+
+The average weekly poultry slaughter by TYSON Foods Inc in 1994 was____?
+26,500,000
+10
+
+The B-2 Stealth Bomber is designed to fly undetected by?
+Radar
+10
+
+The baby ruth candy bar was named after which u.s president's daughter?
+Grover cleveland
+10
+
+The background radiation in ____ is twice that of the rest of Great Britain
+Aberdeen
+10
+
+The badger is a memebr of which family of animals?
+Weasel
+10
+
+The Bahamas lie off which US state?
+Florida
+10
+
+The balboa is the unit of currancy in which country?
+Panama
+10
+
+The bald-headed eagle is the national bird of ____
+America
+10
+
+The Balfour Declaration by Great Britain was in what year?
+1917
+10
+
+The band Duran Duran got their name from an astronaut in the 1968 Jane Fonda movie?
+Barbarella
+10
+
+The baptist What New World mammal did Columbus say resembled mermaids?
+The manatee
+10
+
+The Barents Sea is an arm of which ocean?
+Arctic
+10
+
+The base of the great pyramid of Egypt is large enough to cover how many football fields?
+10
+10
+
+The basic ingredients of a ploughmans lunch is bread & what?
+Cheese
+10
+
+The basis of all scientific agriculture, what involves six essential practices: proper tillage; maintenance of a proper supply of organic matter in the soil; maintenance of a proper nutrient supply; control of soil pollution; maintenance of the correct soil acidity; & control of erosion?
+Soil management
+10
+
+The basis of all scientific agriculture, which involves six essential practicesproper tillage; maintenance of a proper supply of organic matter in the soil; maintenance of a proper nutrient supply; control of soil pollution; maintenance of the correct soil acidity; & control of erosion?
+Soil management
+10
+
+The Batavian Republic was set up by France in 1795 in which European country?
+Holland
+10
+
+The batter with the most strikeouts is?
+Reggie jackson
+10
+
+The battle of Austerlitz was fought in Monrovia.In which modern country is it?
+Czechoslovakia
+10
+
+The Battle of Inkerman took place in which war?
+Crimean
+10
+
+The battlefield of Austerlitz is in which modern day country?
+Czech republic
+10
+
+The Bay of Naples and the Gulf of Salerno are inlets of which sea?
+Tyrrhenian
+10
+
+The Bear and the Dragon is the last novel by which writer?
+Tom clancey
+10
+
+The bear is the ____ ____ of bern
+Heraldic emblem
+10
+
+The belcher islands are in what bay?
+Hudson
+10
+
+The bering strait lies between Alaska and ____
+Russia
+10
+
+The bering strait lies between Russia and ____
+Alaska
+10
+
+The Berlin air lift was known as?
+Operation vittles
+10
+
+The Big Crunch is considered the reverse of what event?
+The big bang
+10
+
+The big four television broadcasting networks in the us?
+Nbc cbs abc fox
+10
+
+The biggest beer selling establishment in the world is the Mathaser. In what city, the capital of Bavaria, is the Malthaser located?
+Munich
+10
+
+The biggest bell is the ____, cast in the kremlin in 1733. it weighs 216 tons, but alas, it is cracked and has never been rung
+Tsar kolokol
+10
+
+the biggest butterfly in the world is the queen alexandra's birdwing. it lives in ____, and has a wingspan greater than 11 inches (28 centimeters)
+Papua new guinea
+10
+
+The biggest selling album of all time?
+Thriller
+10
+
+The biological clock is also known as?
+Circadian rhythm
+10
+
+The biro brothers invented the ballpoint pen in 1936, 1938 or 1939?
+1938
+10
+
+The birthplace of Prince Phillip, uke of Edinburgh in 1921?
+Corfu
+10
+
+The birthstone for which month is opal?
+October
+10
+
+The bishop's throne in a cathedral is called a...?
+Cathedra
+10
+
+The bite from which insect caused the death of the poet Rupert Brook?
+Mosquito,
+10
+
+The black country is in which area of England?
+West midlands
+10
+
+The Black Death claimed roughly ____ lives in the thirteenth century
+40,000,000
+10
+
+The black jews of ethiopia are known as?
+Falasha
+10
+
+The Black Prince was the first holder of which Royal title?
+Duke of cornwall
+10
+
+The black widow spider can devour as many as ____ 'mates' in a single day
+Twenty
+10
+
+The blesbok, a South African ____, is almost the same color as grapejuice
+Antelope
+10
+
+The blesbok, a south african antelope, is almost the same color as?
+Grapefruit
+10
+
+The bliss of mrs blossom starred what actress in the title role?
+Shirley maclaine
+10
+
+The blood of a grasshopper is?
+White
+10
+
+The blood of mammals is what color?
+Red
+10
+
+The Blue Mountains are a feature of which Caribbean Island?
+Jamaica
+10
+
+The blue mountains can be found on which caribbean island?
+Jamaica
+10
+
+The Blue Ridge Mountains lie in Virginia and which other state?
+Georgia
+10
+
+The blue whale is the largest animal on earth. how long can it get (in feet)?
+100 feet
+10
+
+The board game monopoly is based upon streets in what u.s. city?
+Atlantic City, New Jersey
+10
+
+The body of an aircraft?
+Fuselage
+10
+
+The body of an insect is divided into how many sections?
+Three
+10
+
+The bones of a ____ weigh less than it's feathers
+A pigeon
+10
+
+The book '1984' written in 1949, 1950 or 1959?
+1949
+10
+
+The book 'One Hundred Years of Solitude' won the Nobel Prize for Literature in what year?
+1982
+10
+
+The book 'Wamyouruijoshou' was the first to use what word?
+Kite
+10
+
+The book by Copernicus, which suggested that the Sun and not the Earth was the centre of the solar system, was banned officially banned by the Papacy until?
+1835
+10
+
+The book called 'the cocktail party' was written by ____
+Ts eliott
+10
+
+The Boomtown Rats were averse to which day of the week?
+Monday
+10
+
+The boondocks J Worthington Foulfellow was the fox in what Disney cartoon?
+Pinocchio
+10
+
+The Bosman ruling was a legal decision relating to which sport?
+Football
+10
+
+The bosphorus links which two seas?
+Black and marmara
+10
+
+The boss is also known as ____
+Bruce springsteen
+10
+
+The Brady Bunch?
+Alice
+10
+
+The brain uses more than ____% of the oxygen used by the human body
+25
+10
+
+The branch of which tree is a symbol of peace?
+Olive
+10
+
+The Braves moved to Atlanta from where?
+Milwaukee
+10
+
+The bridge connecting boston and cambridge via massachusetts avenue is commonly know as the ____
+Harvard bridge
+10
+
+The bridge of sighs were usually crossed by ____
+Prisoners
+10
+
+The British colonial law in India monopolizing salt production provoked whose rebellious march to the sea?
+Mahatma ghandi
+10
+
+The British did not release the body of Napoleon Bonaparte to the French until ____ days after his death
+Twenty
+10
+
+The British Mediterranean Fleet defeated Italian naval forces at which battle in May 1941?
+Cape matapan
+10
+
+The brothers don and phil formed which singing group?
+Everly brothers
+10
+
+The brothers of zeus?
+Hades poisedon
+10
+
+The burrowing boodie of Australia is the only kangaroo in the world that lives ____
+Underground
+10
+
+The busiest muscles in the body are found where?
+Eyelids
+10
+
+The caduceus is the symbol of what profession?
+Medical
+10
+
+The calypso originated on which West Indian island?
+Trinidad
+10
+
+The Canadian air force won the 1948 olympic gold medal for what sport?
+Hockey
+10
+
+The Canadian province of ____ ____ leads the world in exporting lobster, wild blueberries, & christmas trees
+Nova scotia
+10
+
+The Canadian shield is formed of what?
+Maple leaf
+10
+
+The cap and bells formed the insignia of which group of people?
+Jesters
+10
+
+The capital of Romania?
+Bucuresti
+10
+
+The capital of the African country Liberia is named after which American President?
+James Monroe
+10
+
+The cardinal is the state bird of 5, 7 or 9 u.s states?
+Seven
+10
+
+The Cassini division is associated with which planet?
+Saturn
+10
+
+the caterpillar has more than ____ muscles
+2000
+10
+
+The caterpillar is the larval stage of which animal?
+Butterfly
+10
+
+The catfish has over ____ taste buds, that makes the catfish rank #1 for animal having the most taste buds
+27,000
+10
+
+The Caucasus lie between which two stretches of water?
+Black and caspian sea's
+10
+
+The cause of what color fever was discovered in 1900?
+Yellow
+10
+
+The cecum is part of the?
+Large intestine
+10
+
+The cecum is the pouch at the beginning of the...?
+Large intestine
+10
+
+The Cedar Point theme park in Ohio is in this city?
+Sandusky
+10
+
+The celtic queen, Boudicca (Boadicea), allegedly took poison to prevent torture by the Romans after they defeated her rebel forces in battle. Where is she thought to be buried?
+Kings cross station
+10
+
+The centigrade scale is also known as the ____ scale
+Celsius
+10
+
+The chador is a robe worn by women of which religion?
+Islam
+10
+
+The chameleon has a tongue that is ____ times the length of its body
+1.5
+10
+
+The Channel between England and France grows about ____ millimetres each year
+300
+10
+
+The character captain queeg appeared in which film?
+The caine mutiny
+10
+
+The character charley allnut appeared in which film?
+The african queen
+10
+
+The characteristic artistic style of an indivual, school etc?
+Idiom
+10
+
+The characters lister and rimmer appear in which tv sitcom?
+Red dwarf
+10
+
+The characters, farmer boulderwood and sergeant troy appear in which thomas hardy novel?
+Far from the madding crowd
+10
+
+The Charles Bridge and St Vitus' Cathedral are in which European city?
+Prague
+10
+
+The Charleston was indroduced in which year?
+1925
+10
+
+The chemical ____, found in ripe fruit, causes jam to set when cooling
+Pectin
+10
+
+The chemical ethylene glycol is most commonly used as what?
+Antifreeze
+10
+
+The chemical formula for rubidium bromide is rbbr. It is the only chemical formula known to be a what?
+Palindrome
+10
+
+The chemical formula H2O2 refers to what?
+Hydrogen Peroxide
+10
+
+The chemical phenylethylamine, which your brain produces when you fall in love, is found in what food?
+Chocolate
+10
+
+The chicken can travel up to ____ miles per hour
+Nine
+10
+
+The chief food for more than half the people in the world is ____
+Rice
+10
+
+The children's classic Charlotte's Web features a pig, what is he called?
+Wilbur
+10
+
+The childrens story 'The Rose and The Ring' was written by which 19th century novelist?
+William thackeray
+10
+
+The childrens' nursery rhyme 'Ring-a-Ring-a-Roses' actually refers to the Black Death which killed about ____ people in the fourteenth-century
+30,000,000
+10
+
+The chinese almanac is also called the ____
+I ching
+10
+
+The Chinese call fossilized dinosaur teeth 'dragon's teeth' What are they used for?
+Medicines
+10
+
+The Chinese ideograph with two women under one roof means what?
+Trouble
+10
+
+The Chinese used fingerprints as a method of identification as far back as AD?
+700
+10
+
+The Chinese were using aluminum to make things as early as ____ ad
+300
+10
+
+The chinese were using what metal to make things as early as 300 ad?
+Aluminium
+10
+
+The christian calendar, which we use today, was invented by?
+Exiguus
+10
+
+The christian names of the three Bronte sisters?
+Charlotte
+10
+
+The chrysanthemum is the flower for what month?
+November
+10
+
+The Chuck E. ____ franchise was created by Atari, a restaurant combining robotic
+Cheese
+10
+
+The Chuck E. Cheese franchise was created by____ , a restaurant combining ____
+Robotic
+10
+
+The Chuck E. Cheese franchise was created by____ , a restaurant combining robotic
+Atari
+10
+
+The church of santa maria delle grazie is a world heritage site, in which Italian city would you find it?
+Milan
+10
+
+The city of ____ ____ contains a district called 'Hell's Kitchen'
+New york
+10
+
+The city of ____ left the Industrial Promotion Centre standing as a monument the atomic bombing
+Hiroshima
+10
+
+The city of Istanbul straddles two separate continents, ____ & ____
+Europe & asia
+10
+
+The City of London police are reigning Olympic champions for Britain in what sport?
+Tug of War
+10
+
+The city of Mt. Vernon, Washington grows more ____ than the entire country of Holland
+Tulips
+10
+
+The city of Rouen stands on which river?
+Seine
+10
+
+The city of Sheffield stands on the River Sheaf; and on which other, major, river?
+Dublin
+10
+
+The city of Tours stands on which river?
+Loire
+10
+
+The city of winnipeg Manitoba's by-pass is known as ____
+Duff's ditch
+10
+
+The city seal of Liverpool features a cormorant, this is a poor drawing of which bird that was on the original seal?
+Eagle
+10
+
+The city with the most riders in it's subway system is what?
+Moscow
+10
+
+The clash had only one number 1 hit what was it?
+Should i stay or should i go
+10
+
+The Clifton Suspension Bridge spans which river?
+Avon
+10
+
+The closest relative to the spiny anteater is what?
+Platypus
+10
+
+The closest relatives to anteaters are what?
+Sloths & armadillos
+10
+
+The closure of which British nuclear re-processing plant was announced in 1998?
+Dounreay
+10
+
+The CN Tower is in which Canadian city?
+Toronto
+10
+
+The coast line around this lake in North Dakota is longer than the California coastline along the Pacific Ocean?
+Lake Sakakawea
+10
+
+The code name for the allied invasion of Italy in WW II was operation ____
+Avalanche
+10
+
+The coelacanth, once thought to be extinct, is what kind of creature?
+Fish
+10
+
+The coldest temperature ever recorded was ____ deg Celsius, in Siberia
+-70
+10
+
+The collecting of Beer mats is called?
+Tegestology
+10
+
+The collection of poems called barrack room ballads and other verses was written by whom in 1892?
+Rudyard kipling
+10
+
+The color ____ was first used in the Afghan War in 1880 - the color was considered good camouflage
+Khaki
+10
+
+The Color of Money starring Paul Newman was released in this year?
+1986
+10
+
+The color of the blood of an octopus is?
+Bluish green
+10
+
+The colour of what in China indicated a mandarins rank?
+Button on his hat
+10
+
+The commander of the Apollo 11 command module & the first woman shuttle commander share this same last name?
+Collins
+10
+
+The common garden flower TAGETES is a variety of which popular plant?
+Marigold
+10
+
+The common term for a member of the bee genus 'Bombus' is the?
+Bumblebee
+10
+
+The composer Berlioz married Harriet Smithson in which year?
+1833
+10
+
+The compound carotene gives the ____ its colour
+Carrot
+10
+
+The condensed water vapor trail left behind by jets and rockets is called a?
+Contrail
+10
+
+The conqueror Temujin was better known by what name?
+Genghis khan
+10
+
+The constellations canis major and canis minor are said to represent the dogs of the greek hunter?
+Orion
+10
+
+The construction of which famous New York City building was completed in 1931?
+The empire state
+10
+
+The continuous decorative moulding between a wall and the ceiling?
+Cornice
+10
+
+The convex surface of a road?
+Camber
+10
+
+The cortex & medulla are parts of what organ?
+Kidney
+10
+
+The cortex and medulla are parts of what human organ?
+Kidney
+10
+
+The cost of the first pay-toilets installed in England was?
+Tuppence
+10
+
+The cotton mouth is a member of which family?
+Pit viper
+10
+
+The countries of Sarawak and Brunei lie on which island?
+Borneo
+10
+
+The Country Cut-ups was the original name of what country & western music group?
+The Oak Ridge Boys
+10
+
+The country name for which bird is 'merle'?
+Blackbird
+10
+
+The country name for which bird is the 'ruddock'?
+Robin
+10
+
+The country of Benin changed its name from Dahomey in?
+1975
+10
+
+The country of siam was renamed to what in 1939?
+Thailand
+10
+
+The covering on the tip of a shoelace is a(n) ____
+Aglet
+10
+
+The cranial nerves ( clue! -OOOTTAFAGVAH)?
+Olfactory
+10
+
+The crayfish isn't a fish at all - it is related to the?
+Lobster
+10
+
+The creature hirudo medicinalis was used extensively by doctors, what is it?
+Leech
+10
+
+The crocodile is surprisingly fast on land. If pursued by a crocodile, a person should run in a ____ motion, for the crocodile has little or no ability to make sudden changes of direction
+Zigzag
+10
+
+The cruise liner, Queen Elizabeth II, moves only ____ for each gallon of diesel that it burns
+Six inches
+10
+
+The crystalline quartz, Amethyst was once believed to prevent?
+Drunkenness
+10
+
+The cucumber is a ____, not a vegetable
+Fruit
+10
+
+The current line-up of which POP group includes John McVie, Christine McVie, Stevie Nicks and Lindsay Buckingham?
+Fleetwood mac
+10
+
+The Daiquiri cocktail is named after a place in which country?
+Cuba
+10
+
+The Dance of the Sugar Plum Fairy comes from which piece by Tchaikovsky?
+Nutcracker suite
+10
+
+The date of which christian festival was fixed in 325 ad by the council of nicaea?
+Easter
+10
+
+The day after Christmas day?
+Boxing day
+10
+
+The Dead Sea lies on the border of Israel and which other country?
+Jordan
+10
+
+The dead sea scroll was discovered in what year?
+1947
+10
+
+The Death of a Traveling Salesman, was published in 1936. Who was the author?
+Eudora Welty 
+10
+
+The decorations of which English woodcarver adorn the walls of Hampton Court and Windsor Castle?
+Grinling gibbons
+10
+
+The deepest ocean trench in the world?
+Marianas
+10
+
+The democrats nominate Massachusetts governor ____ for president
+Michael dukakis
+10
+
+The desert fox was?
+Erwin rommel
+10
+
+The detective miss marple was created by which writer?
+Agatha christie
+10
+
+The devil?
+Old nick
+10
+
+The diagrammatic representation of subway maps, circuit boards and many other complicated networks is called?
+Topology
+10
+
+The dial tone of a normal telephone is in what key?
+F
+10
+
+The diameter of the Moon is ____ km
+3,476
+10
+
+The diameter of wool is measured in?
+Microns
+10
+
+The digestive juices of crocodiles contain so much ____ that they have dissolved iron spearheads and 6-inch steel hooks that the crocodiles have swallowed
+Hydrochloric acid
+10
+
+The dirt road that General Washington and his soldiers took to fight off General Clinton during the Battle of Monmouth was called the?
+Burlington path
+10
+
+The Dirty Harry franchise ran to five films what was the title of the final 1988 film?
+The dead pool
+10
+
+The discovery of gold in which region of yukon provoked a rush?
+Klondike
+10
+
+The disease Tuberculosis, is best known as ____
+Consumption
+10
+
+The distance around the outside of a circle is its ____
+Circumference
+10
+
+The dodo became extinct in 1581, 1593 or 1681?
+1681
+10
+
+The dodo was native to wich island?
+MauritWhich actress stared in the film 
+10
+
+The dog and the turkey were the only two domesticated animals in ancient?
+Mexico
+10
+
+The dogon are an ____
+African tribe
+10
+
+The dolby sound system was introduced in which year?
+1967
+10
+
+The dollar was established as the official currency of the U S in what year?
+1785
+10
+
+The dome of the rock is a shrine in which middle eastern city?
+Jerusalem
+10
+
+The dot over the letter 'i' is called what?
+Tittle
+10
+
+The Dotmatrix printer was developed for the 1964 Tokyo Olympic Games by the Japanese company?
+Seiko
+10
+
+The double helix is most associated with the structure of what?
+Dna
+10
+
+The drug digitalis is obtained from which plant?
+Foxglove
+10
+
+The duckbill platypus of Australia can store up to ____ worms in its large cheek pouches
+600
+10
+
+The Duke of Beaufort learned a game called Poona in India in the late nineteenth century. What game is Poona known as now?
+Badminton
+10
+
+The duodenum and the jejunum are two of the three sections of the small intestine. Which is the third?
+Ileum
+10
+
+The dust and gas surrounding an active comet's nucleus?
+Coma
+10
+
+The Dutch in general prefer their french fries with?
+Mayonnaise
+10
+
+The early personal computer, the Sinclair ZX80, had ____ of internal memory
+1 kilobyte
+10
+
+The ears of the Asiatic ____ bears are larger than those of other bear species
+Black
+10
+
+The earth doesnt take exactly 24hours to rotate - is it faster or slower?
+Faster
+10
+
+The Earth is pear shaped, the North Pole radius being ____ mm longer than the South Pole radius
+44
+10
+
+The Earth weighs around ____ tons
+6,588,000,000,000,000,000,000,000
+10
+
+The earth's atmosphere and the space beyond is known as ____
+Aerospace
+10
+
+The earth's average velocity orbiting the sun is ____ km per hour
+107,220
+10
+
+The earth's circumference is approximately how many miles?
+24,870
+10
+
+The Earth's core consists primarily of which 2 metals?
+Iron and nickel
+10
+
+The earths atmosphere & the space beyond is known as ____
+Aerospace
+10
+
+the echo and courier satellites transmitted these?
+Telephone
+10
+
+The Ecuadorian poet, Jos? Olmedo, has a statue in his honour in his home country. But, unable to commission a sculptor, due to limited funds, the government brought a second-hand statue ... Of the English poet?
+Lord byron
+10
+
+The Edge plays in what band?
+U2
+10
+
+The edges of a roof that project over the walls?
+Eaves
+10
+
+The Egyptian ____ for 100,000 is a tadpole
+Hieroglyph
+10
+
+The egyptian god Horus has the head of which bird?
+Falcon
+10
+
+The egyptian god horus is usually depicted by what member of the animal kingdom?
+A falcon
+10
+
+The Egyptian godess Bastet was depicted with the head of which creature?
+Cat
+10
+
+The Egyptian hieroglyph for ____ is a tadpole
+100,000
+10
+
+The egyptian hieroglyph for 100,000 is a____
+Tadpole
+10
+
+The Egyptian hieroglyph for 100,000 is what?
+Tadpole
+10
+
+The Eiffel Tower is how many feet high?
+984 feet
+10
+
+The Eiffel Tower receives a fresh coat of paint every ____ years
+Seven
+10
+
+The electric chair was first used in 1890, 1900 or 1910?
+1890
+10
+
+The electric chair was invented by a?
+Dentist
+10
+
+The electric eel is the most shocking animal on Earth - no other animal packs such a big charge. If attacking a large prey, a 9-foot-long eel can discharge about ____ volts
+800
+10
+
+The electrically conducive gaps surrounding nerve endings are?
+Synapses
+10
+
+The elephant can smell water up to how many miles away?
+Three
+10
+
+The elephant is the only mammal that can't?
+Jump
+10
+
+The elevator was invented by?
+Elisha otis
+10
+
+The ELO system is used to rate players of which board game?
+Chess
+10
+
+The Emu gets its name from the ____ word for ostrich
+Portuguese
+10
+
+The energy which a body possesses by virtue of its motion is called ____
+Kinetic energy
+10
+
+The England World Cup team released a song called Back Home in which year?
+1970
+10
+
+The English city of Salisbury stands on which river?
+Avon
+10
+
+The English parliament abolished christmas in 1644, 1645 or 1647?
+1647
+10
+
+The eohippus was an early form of which animal?
+Horse
+10
+
+The era that followed the Mesozoic?
+Cenozoic
+10
+
+The Exosphere merges with the ____
+Ionosphere
+10
+
+The expression checkmate comes from the Arabic expression ?shah mat?, what does it mean?
+The king is dead
+10
+
+The Extensor digiti minimi manus is used to extend the?
+Little finger
+10
+
+The extinct elephant bird was native to which island?
+Madagascar
+10
+
+The extraordinary legal process which orders a jailer to bring the prisoner before the judge immediately is called a writ of____
+Habeas corpus
+10
+
+The eyes have it: what part of the eye continues to grow throughout a person's life?
+The lens
+10
+
+The falketing is the parliament of which country?
+Denmark
+10
+
+The famous 'To be or not to be' speech is in which Shakespeare play?
+Hamlet
+10
+
+The famous bridge at Avignon was built over which river?
+Rhone
+10
+
+The famous last theorem, an = bn = cn, n=2, belonged to?
+Pierre de fermat
+10
+
+The famous last words 'go away... I'm alright' were uttered by whom?
+H.g. wells
+10
+
+The famous Rosetta Stone was found in 1799 near the town of Rosetta in north , on the Nile?
+Egypt
+10
+
+The far side of the moon was first photographed by a Russian satellite in?
+1959
+10
+
+The fastest tectonic movement on earth is 240 mm per year, at the Tonga micro-plate near?
+Samoa
+10
+
+The female side of a family tree is known as the distaff side. what is the male side called?
+Spear
+10
+
+The female version of Homer?
+Mindy Simmons
+10
+
+The fibre sisal is chiefly used to make what?
+Ropes
+10
+
+The fibrous form of several minerals and hydrous silicates of magnesium?
+Asbestos
+10
+
+The first 'talking' film was released in what year?
+1927
+10
+
+The first 18 minutes of which film is in black and white?
+Wizard of oz
+10
+
+The first academy awards were presented in 1927, 1930 or 1941?
+1927
+10
+
+The first American advertisement for tobacco was published in what year?
+1789
+10
+
+The first American satellite was launched in which year?
+1958
+10
+
+The first atom bomb was dropped on which Japanese city?
+Hiroshima
+10
+
+The first atomic submarine, was built in Maine. What was it called?
+The Swordfish
+10
+
+The first automobile to cross the United States took ____ days in 1903 to travel from San Francisco to New York
+52
+10
+
+The first baby born on this ship during its voyage to the New World was named Oceanus Hopkins. The second child born after the ship set anchor was named Peregrine White?
+Mayflower
+10
+
+The first battle in the war of American independence took place where?
+Lexington
+10
+
+The first book in the bible after the gospels?
+Acts of the apostles
+10
+
+The first book of ____ was introduced on april 10, 1924
+Crosswords
+10
+
+The first breakfast cereal was produced in 1893. What was it?
+Shredded wheat
+10
+
+The first city in the world to have a population of over one million was?
+London
+10
+
+The first combined national championship in skiing was held in what year?
+1954
+10
+
+The first commercial flight of the Boeing 747 took place on January 22, 1970. Where did it fly 'from' and 'to'?
+New York London
+10
+
+The first commercial opera house opened in which year?
+1637
+10
+
+The first commercial passenger airplane began flying in?
+1914
+10
+
+The first commercial passenger airplane with a bathroom began flying in?
+1919
+10
+
+The first Corvette rolled off the Chevrolet assembly line in Flint, MI. in what year?
+1953
+10
+
+The first country to host the summer & the winter olympics in the same year?
+France
+10
+
+The first English printer, born around 1422?
+William caxton
+10
+
+The first ever international cricket test match was held between England and ____
+Australia
+10
+
+The first example of which type of brain-teaser appeared in the New York World newspaper in 1913?
+Crossword
+10
+
+The first felt-tip pen to be introduced to the market?
+Pentel
+10
+
+The first five books of the bible are known as?
+Torah (pentauch)
+10
+
+The first internal combustion engine was developed in 1885 by?
+Karl benz
+10
+
+The first international cricket match ever, was held between Canada & ____
+U s a
+10
+
+The first international cricket match ever, was held between Canada and ____
+U.s.a
+10
+
+The first International floodlight football match took place in what year?
+1955
+10
+
+The first known contraceptive was crocodile dung, used by Egyptians in ____ B.C
+2000
+10
+
+The first known contraceptive was crocodile____ , used by Egyptians in 2000 B.C
+Dung
+10
+
+The first known encyclopedias date back to ancient ____
+Greece
+10
+
+The first manned balloon flight was in which year?
+1783
+10
+
+The first mass production began in 1808, what was the product?
+Wooden pulley blocks
+10
+
+The first modern Olympiad was held where?
+Athens
+10
+
+The first Modern Olympics were held in Athens in 1896, where in 1900 were the second games held?
+Paris
+10
+
+The first names of the carpenters. (k r)?
+Karen richard
+10
+
+The first names of the corrs. (a c j s)?
+Andrea caroline jim sharon
+10
+
+The first newspaper horoscopes were published in 1920, 1930 or 1940?
+1930
+10
+
+The first nuclear chain reaction in 1942 by Enrico Fermi & Arthur Compton was achieved in what U S city?
+Chicago
+10
+
+The first nude Playboy centerfold was?
+Marilyn monroe
+10
+
+The first of a successful series of children's books was published in 1952. What was it called?
+The Borrowers
+10
+
+The first parking meter was installed in Oklahoma City, Oklahoma, in?
+1935
+10
+
+The first person to have calculated the value of pi?
+Archimedes
+10
+
+The first person to swim the English channel did so in what year?
+1875
+10
+
+The first postage stamp went on sale in England in 1835, 1838 or 1840?
+1840
+10
+
+The first programmable machine was made in 1808, what was it?
+Loom
+10
+
+The first projection map of the world was by?
+Mercator
+10
+
+The first recorded reference to cricket dates back to?
+1272
+10
+
+The first Russian satellite was launched in which year?
+1957
+10
+
+The first sets of dentures were used in which century?
+Sixteenth
+10
+
+The first shopping mall was opened in 1922, 1932 or 1947?
+1922
+10
+
+The first spaghetti western starring Clint Eastwood was made in what year?
+1964
+10
+
+The first speed limit was set in 1903, 1906 or 1909?
+1903
+10
+
+The first state to ratify the United States Constitution was also the first state to have it's own commemorative state quarter minted?
+Deleware
+10
+
+The first steam engine arrived in America in this year?
+1753
+10
+
+The first successful British/American space satellite was launched in April 1962, named after a character in Shakespeare's The Tempest?
+Ariel
+10
+
+The first taxi with metered fares were operational in?
+1907
+10
+
+The first telephone call was made in what year?
+1876
+10
+
+The first telephone exchange was opened in the u.s in what year?
+1878
+10
+
+The first toilet ever seen on television was on what show?
+Leave It To Beaver
+10
+
+The first trees to move into a newly cleared forest area are called?
+Pioneer species
+10
+
+The first U S marines wore high leather collars to protect their necks from sabres, hence the term ____
+Leathernecks
+10
+
+The first video game was ____, introduced in 1972 by Noel Bushnell, who then created Atari
+Pong
+10
+
+The first washing machine was marketed by Hurley Machine Co in?
+1907
+10
+
+The first woman in europe to use tobacco, she took it in a mixture of snuff - ____ de medici
+Catherine
+10
+
+The fissure of Rolando, would be found in the ____
+Human brain
+10
+
+The five w's of journalism, these items should begin every news story?
+Who what when where why
+10
+
+The flagship known as Queen Anne's Revenge belonged to the famous pirate, Blackbeard. The ship sank in 1718. Blackbeard's real name was ____
+Edward teach
+10
+
+The fleshy muscular organ joined to the hyoid bone is the ____
+Tongue
+10
+
+The fleur de lys is the national flower of ____
+France
+10
+
+The Florida Martins won the World series baseball in this year?
+1997
+10
+
+The flower nasturtium is native to which country?
+Peru
+10
+
+The flowering shrub Philadelphus is better known by what name?
+Mock orange
+10
+
+The fluorescent tube uses ____% of the power to produce an equal amount of light as a tungsten filament bulb
+Twenty
+10
+
+The flying fish has been known to glide up to ____ metres
+90
+10
+
+The Folketing is the parliament of which country?
+Denmark
+10
+
+The followers of John Wycliffe were given what nickname by their enemies?
+Lollards
+10
+
+The food of the Greek & Roman gods?
+Ambrosia
+10
+
+The food tripe is made of?
+Stomachs
+10
+
+The foodstuff 'carambola' is known by what alternative name?
+Starfruit
+10
+
+The football club Galatasaray is based in which country?
+Turkey
+10
+
+The football huddle originated at what university?
+Gallaudet
+10
+
+The force that brings moving bodies to a halt is ____
+Friction
+10
+
+The former Edward viii?
+The Duke of Windsor
+10
+
+The Fort George Point in Belize City was formed by the silt runoff of what hurricane?
+Hattie
+10
+
+The founder of Springfield was?
+Jebidiah Springfield 
+10
+
+The founder of the Mongol Empire took a name that translates as Emperor of all, what is the name?
+Genghis khan
+10
+
+The four main elements of eath's atmosphere are exosphere, ionosphere, stratosphere and ____
+Troposphere
+10
+
+The four seasons took their name from what?
+Bowling alley
+10
+
+The four teenage mutant ninja turtles?
+Michaelangelo
+10
+
+The four throwing events at the olympics are shotput, discus, javelin and ____
+Hammer throw
+10
+
+The fourth planet from the sun is ____
+Mars
+10
+
+The French army were the first to use this type of communication?
+Semaphore
+10
+
+The French National Anthem...La?
+Marseillaise
+10
+
+The French term 'cul-de-sac' literally means what?
+Bottom of the bag
+10
+
+The French territory of Alsace-Lorraine was surrendered to Germany in this war?
+Franco-prussian
+10
+
+The French underground is called what?
+Metro
+10
+
+The french word for paperclip is the same as English and french for which instrument?
+Trombone
+10
+
+The Frenchwoman Jeanne Poisson was better known by which name?
+Madame de pompadour
+10
+
+The Fresh Prince of where was the subject of a sitcom of 140+ shows?
+Bel Air
+10
+
+The front of a building?
+Facade
+10
+
+The Full Name for the explosive T.N.T?
+Trinitrotolune
+10
+
+The funny papers: what kind of dog is marmaduke?
+Great dane
+10
+
+The furthest point from any ocean would be in?
+China
+10
+
+The gallagher brothers are supporters of which football club?
+Manchester city
+10
+
+The Galliard is a 16th century dance originating from which country?
+Italy
+10
+
+The game of badminton is known as what game in India?
+Poona
+10
+
+The game pelota vasca is also known as?
+Jai alai
+10
+
+The gaseous material surrounding the earth and other planets is called the ____
+Atmosphere
+10
+
+The gear which enables the drive wheels of a car to turn a corner while on the same axle?
+Differential gear
+10
+
+The geiger counter was invented in 1913 to measure what?
+Radioactivity
+10
+
+The George Cross was awarded to the entire population of which island?
+Malta
+10
+
+The German Opel family was known for the manufacture of what?
+Cars
+10
+
+The Germans call it Ostsee. What do we call it?
+Baltic sea
+10
+
+The Germans name for their country?
+Deutschland
+10
+
+The ghost of Anne Boleyn might be expected to walk in which London palace?
+Hampton court
+10
+
+The giant panda is native to what continent?
+Asia
+10
+
+The giant squid has the largest ____ in the world
+Eyes
+10
+
+The gift (1982) was a No1 album for which band?
+The jam
+10
+
+The gigantic Badshashi mosque is in which city in Pakistan?
+Lahore
+10
+
+The gingerbread man should not have jumped onto whose back?
+The sly fox
+10
+
+The girl's name Erica is also the Latin word for which plant, another girl's name?
+Heather
+10
+
+The glass snake is actually a ____?
+Lizard
+10
+
+The gluteus maximus muscle is the bulk of the?
+Buttock
+10
+
+The golden state warriors basketball team retired 42 which used to belong to ____
+Nate thurmond
+10
+
+The Golden Temple at Amritsar is sacred to which religion?
+Sikhism
+10
+
+The Goliath frog of West Africa is nearly ____ feet long
+Three
+10
+
+The gorbals is a district of which city?
+Glasgow
+10
+
+The graf zeppelin completed a 19,500 mile trip in what year?
+1929
+10
+
+The grass on the prairie can be eaten up by 27 cattle in 6 weeks. If there are 23 cattle, the grass can be eaten up in 9 weeks. If there are 21 cattle, how many weeks would it take for the grass to be eaten?
+12 weeks
+10
+
+The Great Barrier Reef is how many miles long?
+One thousand two hundred and fifty
+10
+
+The great basin, great victoria and the great sandy are all what?
+Deserts
+10
+
+The great gothic cathedral of Milan was started in 1386, and wasn't completed until what year?
+1805
+10
+
+The Great Lakes are Lake Superior, Lake Erie, Lake Huron, Lake Michigan & Lake?
+Ontario
+10
+
+The Great Pyramid of Giza consists of ____ blocks each weighing 2.5 tons
+2,300,000
+10
+
+The Great Pyramid was built as a tomb for which Egyptian Pharaoh?
+Khufu
+10
+
+The great salt lake lies in which American state?
+Utah
+10
+
+The great warrior ____ died in bed while having sex
+Ghenghis khan
+10
+
+The greatest snowfall ever in a single storm was ____ inches at the Mount Shasta ski bowl in february, 1959
+189
+10
+
+The greatest tank battle of the second world war took place at?
+Kursk
+10
+
+The greatest violin virtuoso of all time was?
+Paganini
+10
+
+The Greek warrior Odysseus played a major role in which war?
+Trojan
+10
+
+The Greek word phosphor translates to what in English?
+Light-bearer
+10
+
+The green leaves of summer' is the theme from which john wayne western?
+The alamo
+10
+
+The groove cut by a saw blade?
+Kerf
+10
+
+The Guarani is the unit of currency in which South American country?
+Paraguay
+10
+
+The Guggenheim Museum in New York is the work of which architect?
+Frank lloyd wright
+10
+
+The Guinness company is famous for making which product?
+Beer
+10
+
+The gulf of panama leads into which ocean?
+Pacific ocean
+10
+
+The Gulfs of Taranto and Corinth are inlets of which sea?
+Ionian sea
+10
+
+The gyrocompass was invented by?
+Elmer sperry
+10
+
+The hamburger was invented in what year?
+1900
+10
+
+The hard piece at the end of a shoelace or piece of clothing is called an____
+Aglet
+10
+
+The Hardy boys & ____
+Nancy drew
+10
+
+The Hawaiian alphabet has how many letters?
+12
+10
+
+The headquarters of the world health organisation (who) can be found in which city?
+Geneva
+10
+
+The heart of giraffe is two feet long, and can weigh as much as ____ ____ pounds
+24
+10
+
+The heaviest tank ever to see action in world war ii, weighing in at 68 tons?
+Koenigstiger
+10
+
+The hebrew word for peace, used as both a greeting and a farewell?
+Shalom
+10
+
+The Heights of Abraham is in which Canadian province?
+Quebec
+10
+
+The highest known score for a single word in competition Scrabble is ____
+392
+10
+
+The highest lifetime yield of milk for a single cow is ____ lbs
+465,224
+10
+
+The highest man-made temperature - ____ million degrees Celsius - was generated at Princeton University in a fusion power experiment in 1978
+70
+10
+
+The highest mountain in North America?
+Mount mckinley
+10
+
+The highest point in Missouri is ____ at 1,772 feet above sea level
+Taum sauk mountian
+10
+
+The highest temperature ever recorded occurred in Libya in 1922. What was the temperature (fahrenehit)?
+136
+10
+
+The highest waterfall in the world, Angel Falls in Venezuela, has a total drop of how many feet?
+3,121
+10
+
+The highjump method of jumping head first and landing on their back is called the?
+Fosbury flop
+10
+
+The hippocampus, amyglada and mammary bodies are?
+Parts of the brain
+10
+
+The hollow part of a pipe or tube?
+Bore
+10
+
+The hood on a monks habit is call a?
+Cowl
+10
+
+The horizontal part of a step?
+Tread
+10
+
+The hottest flame known is produced with carbon subnitride (C4N2), which can generate a temperature of ____?C
+4988
+10
+
+The Hound of the Baskervilles was published in which year?
+1903
+10
+
+The House of Windsor rules England. The Netherlands is ruled by the House of ____
+Orange
+10
+
+The housefly hums in the middle octave, key of?
+F
+10
+
+The Houston Astrodome was opened in what year?
+1965
+10
+
+The human body contains about sixthy thousand miles of ____ ____
+Blood vessels
+10
+
+The human body contains enough carbon to make ____
+900 pencils
+10
+
+The human body contains enough of what to kill all the fleas on an average dog?
+Sulphur
+10
+
+The human body contains enough of what to make 2,200 match heads?
+Phosphorous
+10
+
+The human body contains enough of what to make 900 pencils?
+Carbon
+10
+
+The human body contains enough phosphorous to make ____
+2,200 match heads
+10
+
+The human body contains enough sulphur to kill ____
+All the fleas on a dog
+10
+
+The human body has about sixty thousand miles of ____
+Blood vessels
+10
+
+The human body has enough fat to produce ____ bars of soap
+Seven
+10
+
+The human body has less muscles in it than a?
+Caterpillar
+10
+
+The human body has over 600 what to account for 40% of the body's weight?
+Muscles
+10
+
+The human body transmits nerve impulses at about ____ metres a second
+90
+10
+
+The Human Body: The most common health disorder, affecting both males and females?
+Depression
+10
+
+The human brain is ____% water
+80
+10
+
+The Human Condition: Norway is the country with the best quality of life (per the UN). Name the countries in 2nd and 3rd place?
+Australia and Canada
+10
+
+The human head is a quarter of our total length at birth, but only an eighth of our total length by the time we reach?
+Adulthood
+10
+
+The human heart creates enough pressure to squirt blood how high?
+Thirty feet
+10
+
+The human heart creates enough pressure when it pumps out to the body to squirt blood ____ feet
+Thirty
+10
+
+The human wrist contains more bones than the?
+Ankle
+10
+
+the hundred secret senses_?
+Amy tan
+10
+
+The hundred year war actually lasted how many years?
+116 years
+10
+
+The Huron Indians believed that beards reduced what in a person?
+Intelligence 
+10
+
+The Huron Indians thought the French Canadian men were physically inferior and ugly because of their excessive hairiness. The Indians particularly despised which type of facial hair?
+Beards
+10
+
+The hydrochloric acid in the human stomach is strong enough to dissolve a?
+Nail
+10
+
+The ice cream soda was invented in what year?
+1874
+10
+
+The ideas of Marcus Garvey were behind the foundation of which religion?
+Rastafarianism
+10
+
+The image of what historical person is believed to be on the shroud of turin?
+Jesus
+10
+
+The Imperial Throne of Japan has been occupied by the same family for the last ____ years
+1,300
+10
+
+The Inca civilization was located mainly in which modern country?
+Peru
+10
+
+The Indian god Hanuman is depicted as which animal?
+Monkey
+10
+
+The Indian word for grizzly bear is the name for what Canadian city?
+Kelowna
+10
+
+The Indiana Pacers basketball team retired 35 which used to belong to ____
+Roger brown
+10
+
+The Indonesian capital Jakarta is in which island?
+Java
+10
+
+The indoor theatre at the new globe, being built in london, is named after which historical person?
+Inigo jones
+10
+
+The indoor theatre at the new Globe, being built in London, will be named after which historical person?
+Inigo jones
+10
+
+The infinity character on the keyboard is called a____
+Lemniscate
+10
+
+The ingrediants in a kamikaze are:?
+Vodka triple sec lime juice
+10
+
+The inhabitants of ____ are known as 'Monegasques'
+Monaco
+10
+
+The initial milk that's expressed from a new mother?
+Colostrum
+10
+
+The initials TC stand for which cartoon character?
+Top cat
+10
+
+The inquisition forced this person to recant his belief in the coppernican theory. who was he?
+Galileo
+10
+
+The interior of which continent was explored by Gregory Blaxland in 1813, John Oxley in 1818 and Charles Stuart in 1829-30?
+Australia
+10
+
+The internal diameter of a gun, diameter of a bullet?
+Calibre
+10
+
+The International Atomic Energy Agency and World Health organization are agencies of the?
+United Nations
+10
+
+The international date line is in the?
+Atlantic ocean
+10
+
+The international vehicle registration letters rch denotes which country?
+Chile
+10
+
+The irawaddy runs through which country?
+Myanmar
+10
+
+The Irish name for Ireland?
+Eire
+10
+
+The Irish Province of Connaught contains five counties. Sligo and Galway are two. Name the others.?
+Leitrim, mayo, roscommon
+10
+
+The iron content of which vegetable was overstated due to the incorrect placement of a decimal point?
+Spinach
+10
+
+The iron content of which vegetable was, for years, overstated due to the incorrect placement of a decimal point in U.S. Government's food tables?
+Spinach
+10
+
+The Isis is the upper stretch of which English river?
+Thames
+10
+
+The island nation of ____ is proudly reclaiming its ancient honor of being the birthplace of the Greek goddess of love and beauty, Aphrodite, and now offers a tasteful re-creation of her ancient rites for visitors and locals
+Cyprus
+10
+
+The island of Formosa is now known by which name?
+Taiwan
+10
+
+The island of krakatoa was almost completely destroyed by a volcanic eruption in which year?
+1883
+10
+
+The island of Mauritius lies in which ocean?
+Indian
+10
+
+The island of skorpios was the site of her 1968 wedding?
+Jacqueline kennedy
+10
+
+The island of South Georgia belongs to which country?
+Britain
+10
+
+The Island of Tasmania is part of which country?
+Australia
+10
+
+The Islands of Langerhans won't be found on a map, they're a group of cells located in the?
+Pancreas
+10
+
+The Italian bread focaccia gets its name from the latin word for what?
+Hearth
+10
+
+The Ivor Novello awards are given for achievement in which field?
+Songwriting
+10
+
+The Japanese art of growing miniature trees is called ____
+Bonsai
+10
+
+The Japanese word 'karate' can be translated as?
+Open hand
+10
+
+The Jay belongs to which bird family?
+Crow
+10
+
+The Jefferson's was a spinoff of what show?
+All in the Family
+10
+
+The Jeffersons was a spinoff from what show?
+All in the Family
+10
+
+The Jordanian city Amman was once called what?
+Philadelphia
+10
+
+The judds spent years in nashville shopping demos recorded on a ____
+Cassette recorder
+10
+
+The juice of which berry can be used to prevent and treat urinary tract problems?
+Cranberry
+10
+
+The Kalahari Desert in is which continent?
+Africa
+10
+
+The Kalahari desert is mainly in which country?
+Botswana
+10
+
+The Karakoram mountain range is on which continent?
+Asia
+10
+
+The karyotype describes the number, shape and size of which structures within a cell?
+Chromosomes
+10
+
+The katydid bug hears through holes in its ____ legs
+Hind
+10
+
+The Kikuyu people inhabit which African country?
+Kenya
+10
+
+The Kiss is probably the best known sculpture in a British Gallery -who is it by?
+Auguste rodin
+10
+
+The Kiwi is the only bird with ____ at the end of its bill
+Nostrils
+10
+
+The koala eats the leaves from this tree?
+Eucalyptus
+10
+
+The Korat plateau in Thailand gives its name to what kind of animal?
+Cat
+10
+
+The kriegsmarine was which branch of nazi Germany's armed forces?
+Navy
+10
+
+The Kyber Pass connects which 2 Countries... ??? And ???
+Pakinstan And Afghanistan
+10
+
+The lance ceased to be an official battle weapon in the British Army in?
+1927
+10
+
+The language spoken by the ancient babylonians was which of the following?
+Acadian
+10
+
+The large optics diamond turning machine has severed a single human hair, lenghtwise, how many times?
+3000
+10
+
+The largest ____ bottle is a 170 ft. tall water tower
+Ketchup
+10
+
+The largest annual food fight is held in la tomatina every august - what country?
+Spain
+10
+
+The largest artificial lake in the world is?
+Lake volta
+10
+
+The largest bone in the human body?
+Femur
+10
+
+The largest cell in the human body is the female reproductive cell?
+The ovum
+10
+
+The largest eggs in the world are laid by a?
+Shark
+10
+
+The largest Great White Shark ever caught measured ____ feet
+37
+10
+
+The largest Great White Shark ever caught weighed ____ pounds
+24,000
+10
+
+The largest iceberg recorded ( in 1956 ) was 200 miles long and 60 miles wide, larger that the country of?
+Belgium
+10
+
+The largest internal organ of the human body is?
+Liver
+10
+
+The largest jellyfish in the world has a bell that can reach ____ feet across
+Eight
+10
+
+The largest lake in africa is lake ____
+Victoria
+10
+
+The largest land lizards known are?
+Komodo dragons
+10
+
+The largest muscle in the human body is the?
+Buttock muscle
+10
+
+The largest nerve in our body?
+Sciatic
+10
+
+The largest order of mammals, with about ____ species, is rodents
+1,700
+10
+
+The largest organ of the human body is the?
+Skin
+10
+
+The largest plane every built and flown by howard hughes?
+Spruce goose
+10
+
+The largest shark ever caught with a rod was just less than ____ feet long
+Seventeen
+10
+
+The largest species of seahorse measures ____ inches
+Eight
+10
+
+The largest sundial was constructed in which year?
+1724
+10
+
+The largest tree in the world grows in the U S; which tree is it?
+Redwood tree
+10
+
+The largest tree in the world is nicknamed?
+General sherman
+10
+
+The largest wave ever recorded was near the Japanese Island of Ishigaki in 1971. It was recorded at ____metres high
+85
+10
+
+The larva of which insect is known as a leatherjacket?
+Crane-fly
+10
+
+The larva of which insect is known as the leatherjacket?
+Crane fly
+10
+
+The larvae of flies are called what?
+Maggots
+10
+
+The larygngeal cords are also known as?
+Voice box
+10
+
+The last 12-cylinder car produced in the United States was the 1948 ____
+Lincoln continental
+10
+
+The last day of public operation of the Liverpool Overhead Railway was December the 30th of which year?
+1956
+10
+
+The last descendant of what musical family died on christmas day 1845?
+Bach
+10
+
+The last guillotine execution was in 1967, 1977 or 1984?
+1977
+10
+
+The last incan king of peru was killed in 1501, 1533 or 1601?
+1533
+10
+
+The last line of this document is 'Working men of all countries, unite'?
+Communist Manifesto
+10
+
+The last line of which document is 'working men of all countries, unite'?
+Communist manifesto
+10
+
+The last major American Indian resistance to white settlement was in 1860, 1875 or 1890?
+1890
+10
+
+The last Nascar driver to serve jail time for running moonshine was who?
+Buddy arrington
+10
+
+the last new England state to enter the union?
+Maine
+10
+
+The last of a cat's senses to develop is?
+Sight
+10
+
+The last of the thirteen original British colonies was named after England's King George II in 1733?
+Georgia
+10
+
+The last person to be ____ in France, Hamida Djandoubi, was executed in 1977
+Guillotined
+10
+
+The last remaining tea clipper in the world which was launched in 1869 is kept at Greenwich, what is its name?
+Cutty sark
+10
+
+The last what died on Dec.19,1959, in Franklin, Texas, at the age of 117?
+Civil war veteran
+10
+
+The last word in the bible, in revelations?
+Amen
+10
+
+The latin qed spells out in full as?
+Quod erat demonstrandum
+10
+
+The Latin word, in tota, means what in English?
+Totally
+10
+
+The leader of a pack of wolves is called a ____wolf?
+Alpha
+10
+
+The ledge between a parapet & a moat is a(n)...?
+Berm
+10
+
+The leech has 32 ____
+Brains
+10
+
+The leech will gorge itself up to ____ times its body weight and then just fall off its victim
+Five
+10
+
+The left lung is smaller than the right lung to make room for what?
+Heart
+10
+
+The left lung is smaller than the right lung, to make room for which organ?
+Heart
+10
+
+The left side of the brain is usually responsible for the control of?
+Speech
+10
+
+The legendary joe diamaggio was married to which diva?
+Marilyn monroe
+10
+
+The Lempira is the currency of which country?
+Honduras
+10
+
+The Lempira is the national currency of which country?
+Honduras
+10
+
+The letter c on a water tap in france refers to what?
+Hot water
+10
+
+The Lie Detector was invented by John Augustus Larson in?
+1921
+10
+
+The life expectancy of the average mockingbird is ____ years
+10
+10
+
+The Lipari islands are a group of seven volcanic islands to the northeast of which major island in the Mediterranean Sea?
+Sicily
+10
+
+The lipari islands are to the northeast of which major island in the mediterranean sea?
+Sicily
+10
+
+The lira is the currency of ____
+Turkey
+10
+
+The Little Bighorn, scene of Custer's last stand, is in which US State?
+Montana
+10
+
+The little bit of flesh at the back of the roof of your mouth?
+Uvula
+10
+
+The little lump of flesh just forward of your ear canal, right next to your temple, is called a(n) ____
+Tragus
+10
+
+The Little Shop of Horrors (1986) takes place in what kind of shop?
+Florist shop
+10
+
+The liver is the largest internal organ weighing about ____ kilograms
+10.5
+10
+
+The liver of what is highly intoxicating to eskimos?
+Polar bear
+10
+
+The liver, alimentary canal, and pancreas are part of which system?
+Digestive
+10
+
+The loach, plaice, remora and skate are all types of what?
+Fish
+10
+
+The lombard league was a mediavel coalition of cities in which european country?
+Italy
+10
+
+The long term effect of the sun's radiation on the rotating earth's varied surface & atmosphere?
+Climate
+10
+
+The longest bike weighed how much?
+More than a ton
+10
+
+The longest fence in the world was built to keep out ____
+Dingoes
+10
+
+The longest living land mammal is?
+Homo sapiens
+10
+
+The longest pregnancy of any mammal is?
+Elephant
+10
+
+The longest recorded flight of a chicken is?
+Thirteen seconds
+10
+
+The longest river in western Europe is ____
+The rhine
+10
+
+The longest suspension bridge in the world is the Akashi Kaikyo, located where?
+Japan
+10
+
+The longest time someone has typed on a typewriter continuously is ____ hours, set by Violet Gibson Burns
+264
+10
+
+The longest time someone has typed on a typewriter continuously is 264 hours, set by whom?
+Violet burns
+10
+
+The longest tunnel connects delaware and ____
+New york
+10
+
+The longest tunnel connects New York and ____
+Delaware
+10
+
+The longest tunnel in the world is located in what country?
+Japan
+10
+
+The longmuir brothers were members of which teeny bop band?
+The bay city rollers
+10
+
+The loon, shoebill and grebe are all types of what?
+Birds
+10
+
+The Lord of the Rings_?
+J.r.r. tolkien
+10
+
+The lotus is the national flower of what country?
+India
+10
+
+The lowest elevation in the usa is?
+Death valley
+10
+
+The lowest string on a violin is in which key?
+G major
+10
+
+The lumbar spine consists of how many vertebrae?
+Five
+10
+
+The lungfish can live out of water in a state of suspended animation for ____ years
+Three
+10
+
+The M25 motorway circles which city?
+London
+10
+
+The Mabinogion is a collection of legends from which country?
+Wales
+10
+
+The mad Emperor Caligula once decided to go to war with the Roman God of the sea, Poseidon, and ordered his soldiers to throw their spears into the ____ at random
+Water
+10
+
+The Madeira islands lie in which ocean?
+Atlantic
+10
+
+the magic word?
+Abracadabra
+10
+
+The Magnificent Seven is a version of what 1954 film?
+Seven samurai
+10
+
+The maiden names of which two cartoon characters are slaghoople and mcbricker?
+Wilma flintstone and betty rubble
+10
+
+The main cause of the condition known as Rickets is the lack of what?
+Vitamin D
+10
+
+The main circle and trilithons at stonehenge are built of which rock?
+Sandstone
+10
+
+The main elements of the Exosphere are hydrogen and ____
+Helium
+10
+
+The main square in Venice is named after this saint?
+Mark
+10
+
+The main street in back to the future is also the main street in what other 80's movie?
+Gremlins
+10
+
+The main us army tank of the second world war?
+Sherman
+10
+
+The malleus and the incus are two of the three auditory ossicles. Which is the third?
+Stapes
+10
+
+The Man Who Would be King was released in what year?
+1975
+10
+
+The Maori are native to what country?
+New zealand
+10
+
+The Mariana Trench is the deepest part of which ocean?
+Pacific
+10
+
+The Mariana Trench is the deepest point of the Pacific Ocean to what depth does it reach. Give answer in feet?
+36,160
+10
+
+The marimba is a deeper toned form of which instrument?
+Xylophone
+10
+
+The marine iguana is native to which island group?
+Galapagos
+10
+
+The Marquis of Blandford is heir to which British Peerage?
+Duke of marlborough
+10
+
+The marquis of queensberry rules apply to what sport?
+Boxing
+10
+
+The mascot for the 2nd Canadian Infantry Brigade in WWI later went on to become this beloved children's character?
+Winnie the pooh
+10
+
+The Mason-Dixon line ran between Maryland and which other American State?
+Pennsylvania
+10
+
+The massive skeleton of the African elephant accounts for about ____ percent of the body weight
+Fifteen
+10
+
+The Matami Tribe of West Africa play a version of football, the only difference being that they use a ____ ____ instead of a more normal ball
+Human skull
+10
+
+The mathematical notation for a product is designated by what greek letter?
+Pi
+10
+
+The mathematical notation for a summation is designated by what greek letter?
+Sigma
+10
+
+The mathematical study of properties of lines, angles, etc., Is ____
+Geometry
+10
+
+The maximum flight speed of a Boeing 747-300 jetliner is ____ miles per hour
+583
+10
+
+The MBW Isetta was unveiled at an International Motor Show in London, England in 1955. What was the vehicle fondly dubbed as?
+The Bubble Car
+10
+
+The medical journal the lancet was established in which year?
+1823
+10
+
+The medical name for the voice box is the ____
+Larynx
+10
+
+The medical term for a black eye is?
+Circumorbital haematoma
+10
+
+The meetings of a court, legislature, judicial body etc?
+Sessions
+10
+
+The Mercedes Benz car company is based in which German city?
+Stuttgart
+10
+
+The mersey river runs through ____
+Liverpool
+10
+
+The metal ____ will melt in the heat of your hands
+Gallium
+10
+
+The metal gallium will melt in the heat of your ____
+Hands
+10
+
+The metal part at the end of a pencil is twenty percent?
+Sulfur
+10
+
+The metal part of a lamp that surrounds the bulb and supports the shade is called a?
+Harp
+10
+
+The metallic salt of which metal is added to the mixture in a fireworks rocket to create the color blue?
+Copper
+10
+
+The Middle ear and the Pharynx are joined with the ____ tube
+Eustachian
+10
+
+The midget and the rentpayer are varieties of which vegetable?
+The broad bean
+10
+
+the minimum age for marriage of Italian girls was raised by law what age in 1892?
+12
+10
+
+The minimum number of members required to be legal is known as a?
+Quorum
+10
+
+The minimum wage in 1938 was how many cents per hour?
+25
+10
+
+The Missouri Compromise dealt with this subject?
+Slavery
+10
+
+The Moa bird of New Zealand, which became extinct four hundred years ago, was over ____ feet tall
+Ten
+10
+
+The moaning sound of which animal was used as the sound of the Tornado in the film 'Twister?
+A Camel
+10
+
+The mobo awards were held recently, what does mobo stand for?
+Music of black origin
+10
+
+The model ape used in the 1933 movie ' King Kong ' was ____ inches tall
+Eighteen
+10
+
+The Model T Ford was produced from 1909 until 1927. Which revolutionary innovation was introduced in 1913?
+Mass production
+10
+
+The modern African republic of Tanzania was formed when Tanganyika and which other nation were combined?
+Zanzibar
+10
+
+The Modern Pentathlon event includes the disciplines fencing, cross-country running, riding, shooting and which other event?
+Swimming
+10
+
+The Mojave Desert is mainly in which state?
+California
+10
+
+The mola mola, or ocean sunfish, lays up to how many eggs at one time?
+5 million
+10
+
+The Molly Maguires was a secret organisation operating in which industry in 19th century America?
+Coal mining
+10
+
+The Mona Lisa was painted by whom?
+Leonardo Da Vinci
+10
+
+The monastic hours are matins, ____ , prime, tierce, sext, nones, vespers and compline
+Lauds
+10
+
+The monastic hours are matins, lauds, ____ , tierce, sext, nones, vespers and compline
+Prime
+10
+
+The monastic hours are matins, lauds, prime, ____ , sext, nones, vespers and compline
+Tierce
+10
+
+The monastic hours are matins, lauds, prime, tierce, ____ , nones, vespers and compline
+Sext
+10
+
+The monastic hours are matins, lauds, prime, tierce, sext, ____ , vespers and compline
+Nones
+10
+
+The monastic hours are matins, lauds, prime, tierce, sext, nones, ____ and compline
+Vespers
+10
+
+The monastic hours are matins, lauds, prime, tierce, sext, nones, vespers and____
+Compline
+10
+
+The monastic hours are____ , lauds, prime, tierce, sext, nones, vespers and compline
+Matins
+10
+
+The month when most baby's are born?
+August
+10
+
+The moons of which planet are called Phobos and Deimos after two mythical horses that drew the chariot of the Roman god of war?
+Mars
+10
+
+The most abundant metal in the earths crust is what?
+Aluminium
+10
+
+The most carnivorous of all bears is the ____ bear
+Polar
+10
+
+The most common blood type in the world is ____
+Type o
+10
+
+The most common form of cancer is ____ cancer
+Skin
+10
+
+The most common name in the world is?
+Mohammed
+10
+
+The most famous church in great britain, enshrining many of the traditions of the British people?
+Westminster abbey
+10
+
+The most famous work by Edward Gibbon is on the decline and fall of which empire?
+Roman
+10
+
+The most memorable kiss in a motion picture was in ____, according to 25 percent of those polled
+Gone with the wind
+10
+
+The most northerly point of mainland Africa is in which country?
+Tunisia
+10
+
+The most popular first name in the world is?
+Muhammad
+10
+
+The most prominent of the 12 disciples of Jesus Christ, a leader and missionary in the early church, and traditionally the first bishop of Rome?
+Peter
+10
+
+The most requested photo from the National Archives is Elvis posing with whom?
+Richard Nixon
+10
+
+The most sensitive cluster of nerves is at the base of the ____
+Spine
+10
+
+The most sensitive finger is the?
+Forefinger
+10
+
+The most shoplifted book in the world is ____
+The bible
+10
+
+The Most Trusted Name in Electronics is the advertising slogan for which company?
+RCA
+10
+
+The most venomous of all snakes, known as the ____, has enough venom in one bite to kill more than 200,000 mice
+Taipan
+10
+
+The motor for Alberta, Canada is 'fortis et liber' which is Latin for what?
+Strong and Free
+10
+
+The motto of the Royal Canadian Mounted Police is Maitiens le droit. What does Maitens Le droit mean in English?
+Uphold the right
+10
+
+The motto of which newspaper is All the news that is fit to print?
+The New York times
+10
+
+The motto on the back of the great seal of the usa?
+Annuit coeptis
+10
+
+The moulding around a door or window?
+Architrave
+10
+
+The Mount of Jupiter and the Girdle of Venus are found on the ____
+Palm of your hand
+10
+
+The movie the rose was inspired by what musician's life?
+Janice joplin
+10
+
+The movie, Brian's Song, focused on Brian Piccolo. What football team did Brian Piccolo play for?
+The Chicago Bears
+10
+
+The movies Toy Story and Toy Story 2 were created by Disney and ____
+Pixar
+10
+
+The mullet fish only turns ____ after death
+Red
+10
+
+The murderer Dr. Crippen was medically qualified, but what was he in London?
+A dentist
+10
+
+The muscles of the heart are called the ____
+Myocardium
+10
+
+The muses were the goddesses of poetry and song, how many of them were there?
+Nine
+10
+
+The museum of modern art in New York City hung Matisse's 'Le Bateau' upside down for how long before an art student noticed the error: How many days?
+47
+10
+
+The music for advertisements is also called a ____
+Jingle
+10
+
+The music in Walt Disney's 'Sleeping Beauty' is based upon which composers version of the classic story?
+Tchaikovsky
+10
+
+The musician Stephane Grappelli was famous for playing which instrument?
+Violin
+10
+
+The muzzle of a lion is like a fingerprint ____ no two lions have the same pattern of
+Whiskers
+10
+
+The mythical transformation of a person into a wolf?
+Lycanthropy
+10
+
+The Naira is the currency of which African country?
+Nigeria
+10
+
+The name Australia is derived from the Latin word 'australis' which means ____
+Southern
+10
+
+The name Felicity means what?
+Happiness
+10
+
+The name fo which Soviet espionage organsation made familiar by the James Bond films comes from its motto meaning death to spies?
+Smersh
+10
+
+The name for a person who's forever claiming to be suffering from one illness to another is?
+Hypochondriac
+10
+
+The name for the group of stars which form a hunter with a club and shield is ____
+Orio
+10
+
+The name for this semi precious stone comes from the latin for sea water?
+Aquamarine
+10
+
+The name given to what kind of mechanism is derived from a czech word meaning compusary service?
+Robot
+10
+
+The name Jeep is a derivative of the expression 'G.P.' What doe G.P. mean in military slang?
+General Purpose Vehicle
+10
+
+The name of all the ____ end with the same letter that they start with
+Continents
+10
+
+The name of iran's parliament?
+Majlis
+10
+
+The name of israel's parliament?
+Knesset
+10
+
+The name of Japan's parliament?
+Diet
+10
+
+The name of Rocky Balboa's pet goldfish in the film Rocky?
+Moby Dick
+10
+
+The name of the 2-man capsule built by the americans?
+Gemini
+10
+
+The name of the aztec/toltec god meaning flying serpent?
+Quetzalcoatl
+10
+
+The name of the barrier lowered to block a castles gateway?
+Portcullis
+10
+
+The name of the battleship sent to defend singapore from Japanese attack, only to be sunk?
+Prince of wales
+10
+
+The name of the boy's summer camp setting of 'Adventures of Spin and Marty' segment of the children's TV Series ' the Mickey Mouse Club?
+Triple R Ranch
+10
+
+The name of the British general who surrendered singapore to the Japanese?
+Arthur percival
+10
+
+The name of the dog from 'the grinch who stole christmas' was?
+Max
+10
+
+The name of the famous basalt pillars found on the Northern Ireland's coast?
+The Giants Causeway
+10
+
+The name of the first manned capsule in space?
+Vostok
+10
+
+The name of the ibm computer that sent gary kasparov into deep despair?
+Deep blue
+10
+
+The name of the ill fated space shuttle that exploded shortly after lift off?
+Challenger
+10
+
+The name of the largest city in new Mexico?
+Albuquerque
+10
+
+The name of the little people in Frank Baum's the Wonderful Wizard of Oz?
+Munchkins
+10
+
+The name of the RAF's aerobatics team is?
+Red Arrows
+10
+
+The name of the underworld in greek mythology?
+Tartarus
+10
+
+The name of the wolf companion of Lieutenant John Dunbar (Kevin Costner) in the film 'Dances with Wolves' was?
+Two Socks
+10
+
+The name of what style of painting was taken from, the title of a claude monet work?
+Impressionism
+10
+
+The name of which constellation me 'harp'?
+Lyra
+10
+
+The name of which disease comes from the Italian meaning 'bad air'?
+Malaria
+10
+
+The name of which dog breed is also the name for an animals footprint?
+Pug
+10
+
+The name of which dynasty of English monarchs comes from the yellow flowering broom?
+Plantagenet
+10
+
+The name of which element comes from the Greek for 'stranger'?
+Xenon
+10
+
+The name of which element derives from Greek word for violet coloured?
+Iodine
+10
+
+The name of which game is latin for I play?
+Ludo
+10
+
+The name of which musical instrument is the Italian word for soft?
+Piano
+10
+
+The name of which of the seven hills of Rome is the origin of the word 'palace'?
+Palatine hill
+10
+
+The name of which particle when translated from the greek means cannot be cut?
+The atom
+10
+
+The name of which plant comes from the Greek meaning 'earth-apple'?
+Camomile
+10
+
+The name of which poet is an anagram of toilets?
+T s eliot
+10
+
+The name of which son of Zeus and a nymph has been given to a locking case for bottles of spirits?
+Tantalus
+10
+
+The name singapore means what?
+City of lions
+10
+
+The names of theseven regiments which form the Royal Guard?
+Lifeguards
+10
+
+The names of which cartoon husband and wife pair were used in army slang for pairs of medals which are normally worn together?
+Mutt and jeff
+10
+
+The national anthem of greece is ____ verses long
+158
+10
+
+The National day of Ethiopia, 21st March, commemorates a victory at Adowa in 1896 over which country?
+Italy
+10
+
+The national flag of ____ was designed by Napoleon Bonaparte
+Italy
+10
+
+The national flag of which South American country bears a circle depicting stars in the night sky?
+Brazil
+10
+
+The native inhabitants of Australia are called ____
+Aborigines
+10
+
+The natural process of rock disintegration is better known as ____
+Erosion
+10
+
+The nba record of 100 points by a single person in a game was scored by?
+Wilt chamberlain
+10
+
+The nerve fibres in the squid are ____ times thicker than a humans'
+500
+10
+
+The nest of an eagle or bird of prey is an?
+Eyrie
+10
+
+The new millenium starts on ____
+January 1, 2001
+10
+
+The nickname of ballet star Mikhail Boryshnikov?
+Misha
+10
+
+The Nile crocodile averages about 45 years in the wild, and may live up to ____ years in captivity
+80
+10
+
+The Noddy Stories was written by whom?
+Enid Blyton
+10
+
+The non stick frying pan was spin off from which area of research?
+Space
+10
+
+The Non-Beatles CCR song, perhaps about a woman who is gloating?
+Proud mary
+10
+
+The Non-Beatles Van Halen song, perhaps egging on a potential suicide victim?
+Jump
+10
+
+The normal body temperature in ____ degrees Celsius
+37
+10
+
+The normal body temperature of the Clydesdale horse is ____ degrees Fahrenheit
+101
+10
+
+The normal temperature of a cat is ____ degrees (it's a decimal)
+101.5
+10
+
+The Norse god of light & peace?
+Balder
+10
+
+The norse god of thunder?
+Thor
+10
+
+The North Star is also known as ____
+Polaris
+10
+
+The northern most country claiming part of Antarctica is?
+Norway
+10
+
+The northern part of north America lies within the ____
+Arctic circle
+10
+
+The nose continues to ____ throughout your life
+Grow
+10
+
+The Nova Zemlya Glacier in the (former) USSR is over ____ km long
+400
+10
+
+The now-extinct ancestor of the horse, ____, had a short neck, a pug muzzle, and stood no higher than a medium-sized dog
+Eohippus
+10
+
+The Nuffield Radio Astronomy Laboratories are more usually known by what name?
+Jodrell bank
+10
+
+The numbat, quokka and yapok are all types of what?
+Marsupials
+10
+
+The number of UFO sightings constantly increase when ____ is nearest the Earth
+Mars
+10
+
+The octal number system is based on the number ____
+Eight8
+10
+
+The octopus has a funnel-shaped opening beneath its head through which hit secretes a black fluid when threatened. What is this funnel called?
+Siphon
+10
+
+The Oedipus complex is the sexual love of a son for his mother. What is the equivalent complex of a daughter's sexual love for her father called?
+Electra complex
+10
+
+The Oedipus Complex is the sexual love of a son for his mother. What is the sexual love of a daughter for her father called?
+Electra complex
+10
+
+The official kevin bacon fan club claim they can connect kevin bacon with any other actor or actress in how many steps?
+Three
+10
+
+The okapi is a member of which animal family?
+Giraffe
+10
+
+The old airport of hong kong, kai tek, was replaced by?
+Chek lap kok
+10
+
+The Old English word 'fneosan' means what nowadays?
+To sneeze
+10
+
+The old hindu practice of burning alive a widow is called?
+Suttee
+10
+
+The oldest tree in Britain is a yew in Scotland, how old is it?
+1,500 years
+10
+
+The Olduvai Gorge, famous for its fossils, is in which country?
+Tanzania
+10
+
+The olympic motto 'citius, altius, fortius' means what?
+Faster, higher,
+10
+
+The one-foot measurement is based on one-third of the length of the arm of ____ (1068-1135) of England
+King Henry I
+10
+
+The only actor to receive france's commander of arts and letters award?
+Jerry lewis
+10
+
+The only American state whose name is just one syllable?
+Maine
+10
+
+The only capital letter in the Roman alphabet with exactly one endpoint is?
+P
+10
+
+The only country beside Azerbaijan that starts with a but doesn't end with a?
+Afghanistan
+10
+
+The only diamond mine in north America is located in what state?
+Arkansas
+10
+
+The only domestic animal not mentioned in the Bible is what?
+Cat
+10
+
+The only Italian masterpiece you can drive to work?
+Maserati
+10
+
+The only person ever to decline a Pulitzer Prize for Fiction was Sinclair Lewis for his book?
+Arrowsmith
+10
+
+The only rock that floats in water is what?
+Pumice
+10
+
+The only U S State that ends with 3 consonants?
+Massachusetts
+10
+
+The only us state that celebrates its own independence day?
+Texas
+10
+
+The only white Koala bear in captivity was born in the San Diego Zoo. This Koala bear has white fur, a pink nose & pink eyes. His name is Onya-Birra. What does Onya-Birra mean in the language of the Australian Aboriginees?
+Ghost Boy
+10
+
+The only wild camels in the world are found in?
+Australia
+10
+
+The only woman to pose nude for Sports Illustrated?
+Cathy rigby
+10
+
+The opening part of a window?
+Sash
+10
+
+The opera falstaff was written by whom?
+Verdi
+10
+
+The opera peter grimes was written by whom?
+Benjamin britten
+10
+
+The opossum offspring say in their mothers pouch for the first ____ days
+Sixty
+10
+
+The opposite of 'cross-eyed' is?
+Wall eyed
+10
+
+The opposite sides of a dice cube always add up to?
+Seven
+10
+
+The orang-utan's warning signal to would be aggressors is a loud?
+Belch
+10
+
+The ordinary house-fly beats its wings nearly ____ ____ times a second
+200
+10
+
+The ore bauxite is the chief commercial source of which element?
+Aluminium
+10
+
+The ore pitchblende is the major source of which element?
+Uranium
+10
+
+The organisation RIBA represents which group of people?
+Architects
+10
+
+The organization that maxwell smart challenged was ____
+K.a.o.s.
+10
+
+The original name for the butterfly was?
+Flutterby
+10
+
+The original name of Liquid Paper?
+Mistake Out
+10
+
+The original plan for Disneyland included a land called what?
+Lilliputland
+10
+
+The original source of the dye 'sepia' was the?
+Cuttlefish
+10
+
+The Osprey is also known as the?
+V-22
+10
+
+The Oubangi, Lulonga and Lamami rivers are tributaries of which river?
+River Congo
+10
+
+The pacific ocean accounts for roughly what volume of the world's oceans?
+Half
+10
+
+The Palio, held in Siena, is what kind of race?
+Horse
+10
+
+The Panama canal connects the pacific Ocean and which other body of water?
+Caribbean sea
+10
+
+The Panmunjon talks ended which war?
+Korean
+10
+
+The parachute was invented in 1783 by?
+Louis lenormand
+10
+
+The Paris stock exchange?
+Bourse
+10
+
+The Parthenon in Athens is built in which architectural style?
+Doric
+10
+
+The peace of Aix-la-Chapelle was celebrated by which piece of music?
+Music for the royal fireworks
+10
+
+The Pearl River flows south from which major Chinese city, entering the South China Sea between Hong Kong and Macao?
+Canton
+10
+
+The Pearlettes did an answer song to Gene Chandler's 'Duke Of Earl.' What was its title?
+Duchess Of Earl
+10
+
+The pedal bicycle was invented in which year?
+1839
+10
+
+The penguin is the only bird who can swim, but not?
+Fly
+10
+
+The penny-farthing was an early form of what transportation?
+Bicycle
+10
+
+The Pentagon uses, on average, about 666 rolls of ____ every day
+Toilet paper
+10
+
+The Pentagon, in Arlington, Virginia, has twice as many ____ as is necessary
+Bathrooms
+10
+
+The peridot is which month's birthstone?
+August
+10
+
+The period immediately preceding the invasion of poland is often called?
+The phoney war
+10
+
+The period lasting from Ash Wednesday to Holy Saturday?
+Lent
+10
+
+The person who carries the golfer's clubs is called a(n) ____
+Caddie
+10
+
+The Peter Gabriel song 'in your eyes' was featured in what movie?
+Say Anything
+10
+
+The Phillaphines excists out a lot of islands. How many?
+7000
+10
+
+The phillips head screwdriver was invented where?
+Oregon
+10
+
+The pied piper played his music at this town?
+Hamelin
+10
+
+The pinnacle trophy of the sport of badminton is known as the?
+Thomas cup
+10
+
+The Pinotage grape is a native of which country?
+South africa
+10
+
+The placement of a donkey's eyes in its' heads enables it to see all it's ____ at all times
+Feet
+10
+
+The planet closest to the sun is ____
+Mercury
+10
+
+The planet pluto was discovered in what year?
+1930
+10
+
+The plant Gypsophila Paniculata is grown predominantly for making bouquets what is its more common name?
+Babies breath
+10
+
+The plant life in the oceans make up about what percent of all the greenery on the earth?
+85
+10
+
+The plant Lunaria Annua is grown mainly for its seed cases and used in flower arranging by what name is it more commonly known?
+Honesty
+10
+
+The play 'Our Town' is set where?
+Grover's Corner
+10
+
+The Playboy Magazine was founded by whom?
+Hugh Hefner
+10
+
+The pleistocene epoch of geologic time is more commonly known as?
+The last ice age
+10
+
+The pneumatic tyre was patented by John Dunlop in 1888, what was his profession?
+Veterinary surgeon
+10
+
+The point from which all other measurements are taken?
+Datum point
+10
+
+The point that is directly on the opposite side of the planet?
+Antipodal point
+10
+
+The poison-arrow frog has enough poison to kill about ____ people
+2,200
+10
+
+The poisonous ____ smells like fresh cut cucumbers
+Copperhead
+10
+
+The poisonous copperhead smells like fresh cut____
+Cucumbers
+10
+
+The polar explorer Sir Ranulph Fiennes has a triple barrelled surname. Give the other parts of his surname?
+Twistleton wykeham
+10
+
+The Police Academy film franchise ran to seven films, what was the title of the final 1994 film?
+Police academy: mission to moscow
+10
+
+The Polynesian country of ____ is a 170 square kilometre limestone rock emerging 60 metres from the Pacific
+Niue
+10
+
+The Ponte Vecchio, in Florence crosses which stretch of water?
+Arno
+10
+
+The pop star 'Moby' is the great-grandson ofwhich famous author?
+Herman mel ville
+10
+
+The popular character of ____ was not created by Carolyn Keene, but was actually created by a man named Edward Stratemeyer
+Nancy drew
+10
+
+The popular name for of which rare butterfly comes from the london Borough in which it was first discovered in the UK?
+Camberwell beauty
+10
+
+The popular ski resort of aspen is in which us state?
+Colorado
+10
+
+The population of the entire world in 5000 B.C., according to the National Population Council, was ____
+Five million
+10
+
+The port of Chittagong is in which country?
+Bangladesh
+10
+
+The port of Oran is the second city of which North African country?
+Algeria
+10
+
+The port of Piraeus serves which European capital?
+Athens
+10
+
+The Portuguese capital, Lisbon, stands on which river?
+Tagus
+10
+
+The positive electrode of a battery is called what?
+Anode
+10
+
+The potato arrived in Spain in which year?
+1565
+10
+
+The potent spirit Akvavit is the national drink of which country?
+Denmark
+10
+
+The pound cake got its name from the pound of ____ it contained
+Butter
+10
+
+The powerful ancient composite bow was made from what?
+Horn
+10
+
+The practice of turning less-precious metals into silver or gold is known as?
+Alchemy
+10
+
+The prairie dog is a member of which order of animals?
+Rodent
+10
+
+The praying mantis is the only insect that can do what?
+Turn its head
+10
+
+The praying mantis is the only insect that can turn its?
+Head
+10
+
+The prefix 'thio' in chemical compounds indicates the presence of which element?
+Sulphur
+10
+
+The prefix tetra, used in such words as tetrach, tetrapod, & tetrameter, means what?
+Four
+10
+
+The presence of greater than five digits on the hands or feet is called?
+Polydactylia
+10
+
+The pretzel was invented to comply with an order by whom?
+Charlemagne
+10
+
+The price of greatness is responsibility.' who said this?
+Winston churchill
+10
+
+The prime meridian passes through which English city?
+Greenwich
+10
+
+The Prince of Demons in the new testament was called ____
+Beelzebub
+10
+
+The principal upright of a sailing vessel?
+Mainmast
+10
+
+The principle of uncertainty is also known as ____
+Heisenberg principle
+10
+
+The proceeds from which play still finance a childrens hospital in London?
+Peter pan
+10
+
+The process in which a solid changes directly to a gas is?
+Sublimation
+10
+
+The process of making cow's milk safe for consumption is?
+Pasteurization
+10
+
+The process of removing salt from sea water is known as ____
+Desalination
+10
+
+The process of splitting atoms is called?
+Fission
+10
+
+The process of voting in an election?
+Ballot
+10
+
+The profession of barristers collectively?
+The Bar
+10
+
+The property of matter that causes it to resist any change of its motion in either direction or speed?
+Inertia
+10
+
+The prophet mohammed's flight in the quran is called?
+Hijrah
+10
+
+The prophet popularly regarded as the founder of Islam?
+Mohammed
+10
+
+The protea is the national flower of ____
+South africa
+10
+
+The protection & improvement of the health of the public through community action, primarily by governmental agencies?
+Public health
+10
+
+The protective barrier alongside a staircase or landing?
+Balustrade
+10
+
+The province of Alberta in Canada has been completely free of rats since what year?
+1905
+10
+
+The Province of Quebec was not always known as Quebec. What was the Province's original name?
+Lower Canada
+10
+
+The provincial flower of Nova Scotia is the ____
+Mayflower
+10
+
+The psychic energy-centers of the body are referred to by which Sanskrit word for 'wheel'?
+Chakra
+10
+
+The puma, cougar, lynx & other wildcats are all?
+Catamounts
+10
+
+The Puni, Jari and Xinga rivers are tributaries of which river?
+Amazon
+10
+
+The Puritans forbade the singing of ____ ____, judging them to be out of keeping with the true spirit of Christmas
+Christmas Carols
+10
+
+The pyramids are built of which rock?
+Limestone
+10
+
+The pythagorean theorem applies to what kind of triangle?
+Right
+10
+
+The quality of quartz that allows digital timing of clocks?
+Piezoelectric
+10
+
+The Queen of Spades and Jack of Diamonds combine to form the key combination in which card game?
+Bezique
+10
+
+The rabbit's foot came to be considered a____
+Good luck charm
+10
+
+The rabble, disreputable or undesireable persons?
+Riff raff
+10
+
+The RAF Red.Arrows have used British Aerospace Hawks since 1980. Which aircraft did they use prior to this date?
+Folland gnats
+10
+
+The railway executive, Sir William Cornelius (1843 - 1915), is associated with the construction of which railway?
+The Canadian-pacific
+10
+
+The railway executive, sir william cornelius (1843 - 1915), is associated with the construction of?
+The Canadian-pacific
+10
+
+The raised reflective dots in the middle of highways are called what?
+Botz dots
+10
+
+The rare metal gallium melts at ____ degrees Fahrenheit. It is safe to touch; if you hold a piece of it in your hand and wait, it will melt
+86
+10
+
+The rarest stamp in the world is generally accepted as the 1856 one cent black.Which country issued it?
+British Guiana
+10
+
+The rate of Quadruplets are 1 (set) in every ____ births
+490,000
+10
+
+The Rausing brothers of Sweden became rich from manufacturing which packaging product?
+Tetra pack containers
+10
+
+The real name of the count of monte cristo?
+Edmond dantes
+10
+
+The reason our extremities develop faster than the rest of us is ____ recapitulation
+Cephalacaudal
+10
+
+The rebuilding of the Globe Theatre in London was the 'brainchild' of which American actor, who died before the project was completed?
+Sam wanamaker
+10
+
+The Red and Yellow Seas were named after colours: Name the other two?
+Black and White
+10
+
+The Red Cross was initiated in what year?
+1862
+10
+
+The Red Sea is part of which Ocean?
+Indian Ocean
+10
+
+The rediscovery of whose piano rags made ragtime music popular again in the second half of the century?
+Scott joplin
+10
+
+The refraction of light by ice crystals causes a what to form round the sun?
+Halo
+10
+
+The relative speed of the TRS-80 to the ENIAC is ____:1
+20
+10
+
+The remains of prehistoric organisms that have been preserved in rocks are called ____
+Fossils
+10
+
+The republic of Austria excists since what year?
+1918
+10
+
+The republic of Israel was established when?
+April 23, 1948
+10
+
+The resistance of objects to any change in their speed results from?
+Inertia
+10
+
+The revolving door was invented in 1888, 1908 or 1910?
+1888
+10
+
+The revolving door was invented in?
+1888
+10
+
+The Rialto Bridge is associated with which canal?
+Grand
+10
+
+The richest 10 per cent of the French people are approximately ____ times better off than the poorest 10 per cent
+Fifty
+10
+
+The riksdag is the parliament of which country?
+Sweden
+10
+
+The river Po flows into which sea?
+Adriatic
+10
+
+The river Volga flows into which sea?
+Caspian
+10
+
+The roadrunner, found in the deserts of North America, is a member of which bird family?
+Cuckooo
+10
+
+The roads on the island of Guam are made with what?
+Coral
+10
+
+The roads on the island of Guam are made with?
+Coral
+10
+
+The Roman philosopher Seneca was tutor to which emperor?
+Nero
+10
+
+The Romans built these to convey water?
+Aqueducts
+10
+
+The Romans called it Venta Belgarum. What is it called today?
+Winchester
+10
+
+The Rose Bowl, America's oldest college football contest, is held annually in which city?
+Pasadena
+10
+
+The Rosetta stone was discovered in which country?
+Egypt
+10
+
+The royal collection of which animal is kept at London zoo?
+Goats
+10
+
+the royal family: edward viii's title after his abdication?
+Duke of windsor
+10
+
+the royal family: fergie's father's title?
+Major
+10
+
+The Royal Family: Genetically, the royals are mostly this nationality?
+German
+10
+
+the royal family: prince andrew's title?
+Duke of york
+10
+
+The Royal Family: Prince Charles is 1st in line for the throne; this person is 3rd?
+Henry
+10
+
+the royal family: prince Charles is 1st in line for the throne; this person is 6th?
+Eugenie
+10
+
+the royal family: prince Charles's title?
+Prince of wales
+10
+
+the royal family: prince Charles's younger son?
+Henry
+10
+
+The Royal Family: Prince Philip's royal great-aunt, who died in 1918?
+Alexandra
+10
+
+The Royal Family: Prince William, if/when he becomes king, will have this Roman numeral?
+V
+10
+
+the royal family: queen elizabeth's descriptive phrase for the year 1992?
+Annus horribilis
+10
+
+the royal family: the British press's nickname for prince andrew before his marriage?
+Randy andy
+10
+
+the royal family: the British press's nickname for princess diana before her marriage?
+Shy di
+10
+
+the royal family: the relation princess margaret is to princess anne?
+Aunt
+10
+
+The royal house of the Netherlands is?
+House of orange
+10
+
+The Royal Liverpool Golf Course is not in Liverpool, where is it?
+Hoylake
+10
+
+The royal yacht britannia is now moored in the port area of which city?
+Edinburgh
+10
+
+The Russian revolutionary, Leon Trotsky, was exiled three times and eventually assassinated in which country?
+Mexico
+10
+
+The Russian revolutionary, leon trotsky, was exiled three times in which country?
+Mexico
+10
+
+The Russian sled drawn by 3 horses abreast?
+Troika
+10
+
+The sachem is a chief of what confederation?
+Algonquian confederation
+10
+
+The sacred book of which religion is divided into 114 chapters called Suras?
+Islam
+10
+
+the sailor who fell from grace with the sea_?
+Yukio mishima
+10
+
+The saints Clare and Francis are associated with which Italian town?
+Assisi
+10
+
+The sale of lawn mowers got a great boost when lawn tennis came into vogue in England in?
+1870
+10
+
+The sale of this treat is outlawed in singapore because it is a means of 'tainting an environment free of dirt.'?
+Chewing gum
+10
+
+The Salvation Army was founded in what year?
+1865
+10
+
+The sand on the beaches of Guam is actually?
+Ground coral
+10
+
+The Santa Maria was the ship of which explorer?
+Christopher columbus
+10
+
+The scale used to measure the magnitude of earthquakes?
+Richter
+10
+
+The Scapula is in which part of the body?
+Shoulder blade
+10
+
+The scent of sex in an animal is called?
+Pheromones
+10
+
+The science of creating super micro miniaturizations of objects is called?
+Nanotechnology
+10
+
+The science of life?
+Biology
+10
+
+The science of providing men, equipment and supplies for military operations is called ____
+Logistics
+10
+
+The scientific name for this fruit is ananas cosmosus?
+Pineapple
+10
+
+The scientific word 'quark' was first used in which novel?
+Finnigans wake
+10
+
+The screw was invented after the ____
+Screwdriver
+10
+
+The screwdriver was invented before the ____
+Screw
+10
+
+The sea gods had a three pronged spear called a(n) ____
+Trident
+10
+
+The second Beale code was encoded using what?
+The American Declaration of Independence
+10
+
+The Second Highest Mountain in the World?
+K2
+10
+
+The second largest body in the solar system is ____
+Jupiter
+10
+
+The second largest of the earths four oceans & the most heavily traveled?
+Atlantic ocean
+10
+
+The second longest suspension bridge in the world is the Ismit Bay, located where?
+Turkey
+10
+
+The second space shuttle is named ____
+Challenger
+10
+
+The second tallest mountain on earth?
+K2
+10
+
+The secret police of which country were known as the 'ton ton macoute'?
+Haiti
+10
+
+The septum linguae is found on the?
+Tongue
+10
+
+The seven deadly sins?
+Lust
+10
+
+The seven-branched candlestick called the Menorah is the official state emblem and appears on the president's flag of which country?
+Israel
+10
+
+The seventeen year locust is also know as a ____
+Cicada
+10
+
+The sewing machine was patented in what year?
+1846
+10
+
+The shape of plant collenchyma cells & the shape of the bubbles in beer foam are the same. What are they called?
+Orthotetrachidecahedrons
+10
+
+The shekel is the basic monetary unit of which middle eastern country?
+Israel
+10
+
+The shortest ball player (3ft 7in) ever was?
+Eddie gaedel
+10
+
+The shortest war in history was between ____ in 1896
+Zanzibar & England
+10
+
+The shortest war in history Zanzibar surrendered after ____ minutes
+38
+10
+
+The shortest war on record, between Britain and ____ in 1896, lasted just 38 minutes
+Zanzibar
+10
+
+The shortest war, between Britain & Zanzibar, happened in what year?
+1896
+10
+
+The Siberian ____ accounts for more than 20% of all the worlds trees
+Larch
+10
+
+The Sicilian Specialist by Norman Lewis is a thinly disguised fictional account of which assassination plot?
+J. F. Kennedy
+10
+
+The silk road ran between europe and which country?
+China
+10
+
+The silver phyllis, a boeing 707, belonged to what financier?
+Robert vesco
+10
+
+The Simplon Tunnel runs between which two countries?
+Italy & Switzerland
+10
+
+The sindy doll has been recently released as a stewardess for which airline?
+Virgin
+10
+
+The singer Marie Lawrie is better known as what?
+Lulu
+10
+
+The sinking of the 'Herald of Free Enterprise' was one of Europe's worst shipping disasters, from which port did the ship sail?
+Zeebrugge
+10
+
+The site of Troy is in which modern country?
+Turkey
+10
+
+The six main vitamins?
+A
+10
+
+The skin of which animal is used to make Morocco Leather?
+Goat
+10
+
+The small tree Camellia Sinensis provides us with which digestible product?
+Tea
+10
+
+The smallest bone in the body is the ____
+Stirrup
+10
+
+The smallest building blocks of proteins are?
+Amino acids
+10
+
+The smallest cell in the human body is the?
+Male sperm
+10
+
+The smallest guitar made by Nanotechnology is ____ long, has six strummable strings
+10 micrometers
+10
+
+The smallest trees in the world are Greenland?
+Dwarf willows
+10
+
+The Smithsonian Institute houses this 44 & 1/2 carat, cursed blue diamond?
+Hope diamond
+10
+
+The snake river winds through which gorge?
+Hell's canyon
+10
+
+The son of jerry lewis named his rock band what?
+The playboys
+10
+
+The song ' yes, we have no bananas' was the subject of a law suit in 1923. What musical arrangement was it copyrighted from?
+Handel's Messiah
+10
+
+The sound of which insect was once thought to be an omen of imminent death?
+Death watch beetle
+10
+
+The southern alps are found in which country?
+New zealand
+10
+
+The southern most tip of Africa is not the 'Cape of Good Hope' but?
+Cape agulhas
+10
+
+The Soviet ____ is the first strike fighter with a toilet in it
+Sukhoi-34
+10
+
+The Soviet Sukhoi-34 is the first ____ fighter with a toilet in it
+Strike
+10
+
+The Soviet Sukhoi-34 is the first strike fighter with a ____ in it
+Toilet
+10
+
+The space between two adjacent neurones is called the?
+Synapse
+10
+
+The Space Race - What was the name of the first space shuttle ever built?
+Enterprise
+10
+
+The spaceship voyager found geysers on triton, a moon of which planet?
+Neptune
+10
+
+The Spanish abbreviation for ufo is what?
+Ovnis
+10
+
+The Spanish Inquisition once condemned the entire ____ to death for heresy
+Netherlands
+10
+
+The sperm of a ____ is longer than the sperm of an elephant
+Mouse
+10
+
+The spinning wheel, introduced to Europe in the middle ages, was invented where?
+India
+10
+
+The spiral galaxy nearest ours is the ____ galaxy
+Andromeda
+10
+
+The square root of 1 is?
+1one
+10
+
+The St. Louis gateway arch had a projected death toll while it was being built. How many people died?
+0
+10
+
+The St. Moritz ski resort is in which European country?
+Switzerland
+10
+
+The staple food of blue whales?
+Krill or plankton
+10
+
+The State Duma is the lower house of assembly in the parliament of which country?
+Russia
+10
+
+The state of Florida is bigger than?
+England
+10
+
+The state of Kansas was named after the river?
+The Kansas River 
+10
+
+The State of Michigan derives from the Chippewa words, mici gama. What does 'mici gama' mean?
+Great Water
+10
+
+The state of minnesota borders how many other states?
+5
+10
+
+The State of Nevada has a Spanish meaning. What does Nevada mean?
+Snowclad 
+10
+
+The statue of Eros in Piccadilly Circus commemorates which Victorian reformer?
+Earl of shaftsbury
+10
+
+The Statue of Liberty arrived in New York City in 1885 aboard what French ship?
+Isere
+10
+
+The Statue of Liberty stands on which island?
+Liberty island
+10
+
+The stems and leaves of the tomato plant are?
+Poisonous
+10
+
+The stinking cedar and yellow-wood trees are also known as what?
+Gopher wood
+10
+
+The Stone of Scone is a relic sacred to which country?
+Scotland
+10
+
+The stone what dietary problem were 65 percent of brazilians suffering in 1985?
+Malnutrition
+10
+
+The story of whose return from exile is celebrated by the Hindu festival of Divali?
+Rama and sita
+10
+
+The straits of malacca separate malaysia from which country?
+Indonesia
+10
+
+The stratosphere is higher than the?
+Troposphere
+10
+
+The stress in Hungarian words always falls on what syllable?
+First
+10
+
+The strip of lead which holds the glass in a stained glass window?
+Came
+10
+
+The study and exploration of caves is known as what?
+Speleology
+10
+
+The study of 3-dimensional objects, it sounds like a substantial math course?
+Solid geometry
+10
+
+The study of lighter than air craft such as balloons?
+Aerostatics
+10
+
+The subject of the first printed book in England was?
+Chess
+10
+
+The Sublime Porte was the Court of Government of which Empire?
+Turkish/ottoman
+10
+
+The submarine was invented in 1620 by cornelius drebbel. name his country of origin?
+Netherlands
+10
+
+The suez canal was nationalized in what year?
+1950
+10
+
+The sun has a core temperature of ____ Kelvin
+154,000,000
+10
+
+The sun is ____ times larger than the earth
+330,330
+10
+
+The Super Bowl, and never re-used the commercial?
+Apple
+10
+
+The supersonic Concorde jet made its first trial flight on what date?
+January 1, 1969
+10
+
+The supreme court upholds the 14th amendment and outlaws racial segregation?
+Public schools
+10
+
+The surface area of a human lung is equal to a?
+Tennis court
+10
+
+The surface of the Dead Sea is ____ metres below the surface of the Mediterranean Sea, which is only 75 km away
+400
+10
+
+The Swing riots of 1830-33 concerned which workers?
+Agricultural labourers
+10
+
+The symbols used on a map are explained by the ____
+Legend
+10
+
+The system of racial segregation in south africa was called ____
+Apartheid
+10
+
+The t-34,M-4 and PZ iii were all what?
+Tanks
+10
+
+The tablecloth in da Vinci's Last supper was?
+White
+10
+
+The tail end of the spinal cord?
+Coccyx
+10
+
+The taj mahal is made out of what?
+Marble
+10
+
+The Taj Mahal was built on the southern bank of which river?
+Jumna
+10
+
+The tallest tree in the uk is what type of tree?
+Douglas fir
+10
+
+The tapir is related to the horse and the ____?
+Rhinoceros
+10
+
+The Tarbela Dam in Pakistan stands on which river?
+Indus
+10
+
+The tarzan novels were created by whom?
+Burroughs
+10
+
+The Tehran hostages were released in 1980 after how many days of captivity?
+Four hundred and forty four
+10
+
+The telephone country code 56 would connect you with?
+Chile
+10
+
+The telephone country code 82 would connect you with?
+Korea
+10
+
+The telephone country code 852 would connect you with ____
+Hong kong
+10
+
+The telephone county code 39 would connect you with ____
+Italy
+10
+
+The telephone was invented in which year?
+1876
+10
+
+The Teletubbies have two favourite foods. Name them?
+Tubby toast and tubby custard
+10
+
+The television detective banacek was played by whom?
+George peppard
+10
+
+The temperature at what dew forms is called the?
+Dew point
+10
+
+The temperature at which a liquid gives off a vapour which can be ignited is called it's ____
+Flashpoint
+10
+
+The temperature of the sun has to be achieved to create which potentially useful nuclear reaction?
+Nuclear fusion
+10
+
+The tenth part of a Roman legion consisting of 600 men was known as what?
+A cohort
+10
+
+The tenth sign of the Zodiac?
+Capricorn
+10
+
+The tenth wedding anniversary is commemorated with what?
+Tin
+10
+
+The term 'lupine' refers to which animal?
+Wolf
+10
+
+The term Bicentennial represents how many years?
+200
+10
+
+The term Centennial represents how many years?
+100
+10
+
+The term Quadricentennial represents how many years?
+400
+10
+
+The term Quartocentennial represents how many years?
+25
+10
+
+The term Quincentennial represents how many years?
+500
+10
+
+The term Semicentennial represents how many years?
+50
+10
+
+The term Septiquinquennial represents how many years?
+75
+10
+
+The term Sesquincentennial represents how many years?
+150
+10
+
+The term Sesquiquadricentennial represents how many years?
+450
+10
+
+The term Sesquitercentennial represents how many years?
+350
+10
+
+The term Tercentennial represents how many years?
+300
+10
+
+The Thatcher Ferry Bridge crosses what canal?
+Panama Canal
+10
+
+The theme from top gun was a hit for which european sounding group?
+Berlin
+10
+
+The thickness of what is given an 'swg' rating?
+Wire
+10
+
+The thistle is the national flower of ____
+Scotland
+10
+
+The three number systems commonly used in computers are binary, decimal and ____
+Hexadecimal
+10
+
+The three primary colours are red, yellow and blue. The three secondary colours are?
+Green, orange & purple
+10
+
+The three scorers for Manchester united in the 1968 european cup final, which ended 4-1 in their favour. (b c k)?
+Best charlton kidd
+10
+
+The thyroid cartilage is more commonly known as the ____
+Adam's apple
+10
+
+The Tibetan Mountain people use yak's milk as their form of?
+Currency
+10
+
+the tick: color of the ticks costume?
+Blue
+10
+
+the tick: who has the ability to change the color of his costume?
+Caped chameleon
+10
+
+The timber lining of a door frame?
+Casing
+10
+
+The Timor sea and the Arafura sea are off the north coast of which country?
+Australia
+10
+
+The tip of a rotary mower travels at over ____ km/hr
+200
+10
+
+The tips of fingers & the soles of feet are covered by a thick, tough layer of skin called the what?
+Stratum corneum
+10
+
+The title of which 1961 book and 1970 film has come to mean a no win situation?
+Catch 22
+10
+
+The title of which Moody Blues album is a mnemonic to remember the lines of the treble stave of a sheet of music?
+Every good boy deserves favour
+10
+
+The title of which of Alan Bennetts plays is also the title of one of the Harrow School songs?
+Forty years on
+10
+
+The Tony awards are named for what person?
+Antoinette perry
+10
+
+The top layer of cement render?
+Buttercoat
+10
+
+The top ranking title in sumo wrestling is known as?
+Yokozuna
+10
+
+The top selling debut album of all time was ____ by ____
+Boston boston
+10
+
+The Topkapi Palace was home to which emperors?
+Ottoman
+10
+
+The toronto maple leafs used to be originally called what?
+The toronto arenas
+10
+
+The tower of London, during its lifetime has served many purposes, including a?
+Zoo
+10
+
+The tower over a castle draw bridge is a(n)...?
+Barbican
+10
+
+The town of Beersheba is in which country?
+Israel
+10
+
+The town of Grasse in France is famous for producing what?
+Perfume
+10
+
+The town of Montelimar in France is famous for producing what?
+Nougat
+10
+
+The town of pisa lies in which Italian region?
+Tuscany
+10
+
+The transcendental number 'e' was named after what mathematician?
+Euler
+10
+
+The treatment of disease by chemical substances which are toxic to the causative micro-organisms is called ____
+Chemotherapy
+10
+
+The treatment of which famous mythical ruling, by the artist Max Klinger in 1887, caused a storm of protest from art lovers?
+Judgment of paris
+10
+
+The Treaty of Guadalupe: Hidalgo put an end to this conflict?
+Mexican War
+10
+
+The tree dictated on the Lebanese flag is a?
+Cedar
+10
+
+The Triassic, Jurrasic, and Cretaceous periods make up which era?
+Mesozoic Era
+10
+
+The true seals are a diverse & widely distributed group of mostly marine & ____
+Aquatic mammals
+10
+
+The tune rhapsody in blue was first performed in which year?
+1924
+10
+
+The Turk's consider it considered unlucky to step on a?
+Piece of bread
+10
+
+The twelve months according to George Ellis?
+Snowy
+10
+
+The two airports that serve london?
+Heathrow and gatwick
+10
+
+The two chambered parliament of Iceland?
+Althing
+10
+
+The two highest IQ's ever recorded (on a standard test) both belong to?
+Women
+10
+
+The two lines that connect your top lip to the bottom of your nose are known as the?
+Philtrum
+10
+
+The two obelisks known as Cleopatra's Needles are in London and which other city?
+New york
+10
+
+The Two Ronnies first appeared together in which TV series?
+The frost report
+10
+
+The typical American eats 263 ____ in a year
+Eggs
+10
+
+The typical housefly cruses at ____ km/hr
+Eight
+10
+
+The typical or normal amount, degree?
+Average
+10
+
+The U S has never lost a war in which ____ were used
+Mules
+10
+
+The U S is made up of ____ states
+Fifty
+10
+
+The U S patent was issued to Samuel Hopkins for what?
+Potash
+10
+
+The u.s got its first official currency in 1776, 1785 or 1882?
+1785
+10
+
+The u.s has never lost a war where they used ____
+Mules
+10
+
+The u.s minted a 1787 copper coin with what tongue-in-cheek motto?
+Mind your business
+10
+
+The uffizi is a museum and art gallery in which european city?
+Florence
+10
+
+The UK supermarket chain ASDA is owned by which American retail giant?
+Walmart
+10
+
+The underground executioner is the favorite soap opera of which nation?
+Japan
+10
+
+The underside of a horse's hoof is called a what?
+Frog
+10
+
+The understanding of speech through observation of the lips, tongue and facial expressions is known as ____
+Lip reading
+10
+
+The Underworld in Greek mythology?
+Hades
+10
+
+The United Nations building in New York was designed by whom?
+Le corbusier
+10
+
+The universe what steve martin film had him go from rags to riches to rags?
+The jerk
+10
+
+The uppermost level of the solar atmosphere?
+Corona
+10
+
+The Ural mountains are mainly in which country?
+Russia
+10
+
+The US Congress comprises the Senate and which other house or chamber?
+House of representatives
+10
+
+The US declared war on which country after the bombing of Pearl Harbor?
+Japan
+10
+
+The US state of Florida first saw the cultivation of oranges in?
+1539
+10
+
+The use of astronomical phenomena to predict earthly & human events is called?
+Astrology
+10
+
+The ussr & western allies pull out of ____ ending their 10-year joint ventur
+Austria
+10
+
+The vaccine for ____ was developed in 1798
+Smallpox
+10
+
+The vaccine mmr offers protection against which diseases?
+Measles mumps and rubella
+10
+
+The vagus nerve, one of the major nerves of our body, gets its name from the latin meaning?
+The wanderer
+10
+
+The variety of living organisms in a particular habitat or geographic area?
+Biodiversity
+10
+
+The Venetian island of Murano is particularly associated with the manufacture of which product?
+Glass
+10
+
+The venom of the king cobra is so deadly that one gram of it can kill ____ people
+150
+10
+
+The Venus's flytrap can eat a whole____
+Cheeseburger
+10
+
+The vereves only no 1 was?
+The drugs dont work
+10
+
+The vernal euinox is the beginning of ____
+Spring
+10
+
+The Verrazano Narrows bridge links Brooklyn to which island?
+Staten island
+10
+
+The vertical part of a step?
+Riser
+10
+
+The very first bomb dropped by the Allies on Berlin during World War II killed the only ____ in the Berlin Zoo
+Elephant
+10
+
+The very first bomb dropped by the allies on Berlin during world wwii killed the only ____ in the Berlin zoo
+Elephant
+10
+
+The very first minimum wage law set the minimum hourly pay scale at?
+25 cents per hour
+10
+
+The via appia went from brindisi to ____
+Rome
+10
+
+The via appia went from rome to ____
+Brindisi
+10
+
+The victoria falls seperate zimbabwe from which other country?
+Zambia
+10
+
+The video for which eighties song features nothing but 5 cheerleaders?(Name the artist too)?
+Mickey Toni Basil
+10
+
+The video game character Mario made his debut appearance in?
+Donkey kong
+10
+
+The violet belongs to which genus of flowers?
+Viola
+10
+
+The Virginia opossum have a litter size of up to ____
+22
+10
+
+The Virginia opossum is the only marsupial (pouched mammal) indigenous to ____
+North America
+10
+
+The Vistula flows into which sea?
+Baltic
+10
+
+The volcano Mount Pelee is on which island?
+Martinique
+10
+
+The volga river flows into what sea?
+Caspian sea
+10
+
+The Volkswagen was originally called?
+The Joy Wagon
+10
+
+The volume of the earth's moon is the same as the volume of what ocean?
+Pacific ocean
+10
+
+The Voyage of the Beagle told of which scientist's discoveries?
+Charles Darwin
+10
+
+The Walker Cup is competed for in which sport?
+Golf
+10
+
+The walking ____ can live on land
+Catfish
+10
+
+The wallendas were noted as?
+High wire performers
+10
+
+The warriors tribes of ____ used to hang the testicles of those they killed in battle on the ends of their spears
+Ethiopia
+10
+
+The Washington Post received the 1973 Pulitzer prize for reporting what?
+Watergate scandal
+10
+
+The weight at the end of a pendulum is a(n) ____
+Bob
+10
+
+The Welland Canal links Lake Erie to which other of the Great Lakes?
+Lake ontario
+10
+
+The west what song did elton john and george michael sing as a duet?
+Don't let the sun
+10
+
+The westernmost point in the contiguous U S is where?
+Cape alava, Washington
+10
+
+The wheel was invented in about what year BC?
+3500
+10
+
+The whistling swan has more than ____ feathers on its body
+25,000
+10
+
+The white elephant is the sacred animal of ____
+Thailand
+10
+
+The white house had a telephone before it had an indoor ____
+Bathroom
+10
+
+The white marks intersecting each five yard line are called ____
+Hash marks
+10
+
+The white of our eyes is also called?
+Sclera
+10
+
+The wide wall built along the banks of rivers to stop flooding is a(n) ____
+Levee
+10
+
+The willow ptarmigan is the state bird of ____
+Alaska
+10
+
+The wind what is the best score in blackjack?
+Twenty one
+10
+
+The wingspan of a ____ ____ jet is longer than the Wright Brothers' first flight
+Boeing 747
+10
+
+The winners of the first five european cups?
+Real madrid
+10
+
+The winter olympics were first held in which country?
+France
+10
+
+The Winter Olympics were held in Scandinavia for the first time in 1952. In which city?
+Oslo
+10
+
+The woman of the Brazilin Apinaly Tribe bite their mates eyebrows during?
+Intercourse
+10
+
+The women of an African tribe make themselves more attractive by permanently ____ their faces
+Scaring
+10
+
+The woolly mammoth, extinct since the Ice Age, had tusks almost ____ feet high
+Sixteen
+10
+
+the word gymnasium comes from the greek word gymnazein which means to ____
+Exercise naked
+10
+
+The word taboo is derived from which language?
+Polynesian
+10
+
+The working title of the TV series Dallas was what?
+Houston
+10
+
+The world record speed for ____ is 143.08 mph
+Water skiing
+10
+
+The world's costliest coffee, at $130 a pound , is called what?
+Kopi luwak
+10
+
+The world's fastest reptile (21.7 mph) is a type of what?
+Iguana
+10
+
+The world's fastest reptile (measured on land) is the spiny-tailed iguana of Costa Rica. It has been clocked at nearly ____ miles per hour
+22
+10
+
+The world's largest beer festival was munich's oktoberfest 99. how many people attended?
+7 million
+10
+
+The world's largest delta was created by the river?
+Ganges
+10
+
+The world's largest exporter of sugar is?
+Cuba
+10
+
+The world's largest mammal, the blue whale, weighs ____ tons at birth
+Fifty
+10
+
+the world's largest moth, in terms of overall size, is the ____ ____ (attacus atlas), found natively in indonesia
+Atlas moth
+10
+
+The world's largest omelette was made with ____ eggs
+160000
+10
+
+The world's longest natural gas pipeline is in what country?
+Canada
+10
+
+The world's oldest man-made alloy is?
+Bronze
+10
+
+The world's rarest coffee, Kopi Luwak, comes from which country?
+Indonesia
+10
+
+The world's smallest mammal is the ____ ____ of Thailand, weighing less than a penny
+Bumblebee bat
+10
+
+The world's termites outweigh the world's humans 10 to 1?
+Humans
+10
+
+The world's worst air disaster involved two Boeing 747s colliding on the runway at Tenerife in 1977. Name the two airlines whose planes were involved?
+Pan-am & klm
+10
+
+The world's youngest parents were ____ & 9 years old
+Eight
+10
+
+The worlds first chocolate candy was produced in what year?
+1828
+10
+
+the worlds first drive-in church was in this state?
+Florida
+10
+
+The worlds longest escalator is in Leningrad Metro, ____ metres long
+120
+10
+
+The worlds oldest piece of chewing gum is over ____ years old
+Nine thousand
+10
+
+The worship of a material image that is held to be the abode of a superhuman personality?
+Idolatry
+10
+
+The worst circus fire was in the usa in what year?
+1944
+10
+
+The worst sporting disaster was in hong kong when the stands collapsed at a race course killing 604 people in what year?
+1918
+10
+
+The Wright brothers first powered airplane flight was in what year?
+1903
+10
+
+The wrist, or the wrist bones?
+Carpus
+10
+
+The wristwatch was invented by Louis Cartier in?
+1904
+10
+
+The writer, Rudyard Kipling, only ever used ____ ink
+Black
+10
+
+The ww ii air attack on the ploesti oil field in romania was known as?
+Operation soapsuds
+10
+
+The ww ii projected German invasion of great britain was known as?
+Operation sea lion
+10
+
+The yo yo both the toy & its name originated where?
+Philippines
+10
+
+The young of which animals are called 'brockets'?
+Deer
+10
+
+The young Raphael sketched which famous work by Leonardo da Vinci while it was being painted?
+The mona lisa
+10
+
+The Yucatan peninsula is mainly in which country?
+Mexico
+10
+
+The zeedonk is a cross between which two animals?
+Zebra & donkey
+10
+
+The zeppelin 'The Hindenburg' which exploded in a huge fireball, was filled with?
+Hydrogen
+10
+
+Theatre: What J M Barrie play features John, Michael and Wendy?
+Peter Pan
+10
+
+Theme Parks - Which is the largest theme resort hotel?
+Lost City
+10
+
+Theory holds that the universe began with what event?
+Big bang
+10
+
+There are ____ credit cards for every person in the United States
+Two
+10
+
+There are ____ distinctive types of combs on chickens
+Seven
+10
+
+There are ____ known species of bats
+690
+10
+
+There are ____ known species of starfishes in the world
+1,600
+10
+
+There are ____ muscles and tendons in an elephant's trunk
+40,000
+10
+
+There are ____ phalanges (finger bones) in a human hand
+Fourteen
+10
+
+There are ____ semihemidemisemiquavers in a breve
+256
+10
+
+There are ____ species of parrotsthree hundred and twenty eight
+328
+10
+
+There are ____ white dots in a Pacman arcade game
+240
+10
+
+There are 1,929,770,126,028,800 different colour combinations of this object?
+Rubik's cube
+10
+
+There are 15 peaks in Europe higher than Mont Blanc. In which mountain range are they?
+Caucasus
+10
+
+There are 16 ____ in a cup
+Tablespoons
+10
+
+There are 170,000,000,000,000,000,000,000,000 ways to play the ten opening moves in a game of____
+Chess
+10
+
+There are 2 annual publications devoted to the peerage. One is Burkes Peerage, what is the other?
+Debretts
+10
+
+There are 2 way to give birth...Vaginally and ____
+Casaerean
+10
+
+There are 3 Great pyramids at?
+Giza
+10
+
+There are 318,979,564,000 possible ways of playing just the first four moves on each side in a game of?
+Chess
+10
+
+There are 325 days in a christian year; the rest are called ____
+Lent
+10
+
+There are 45 miles of what in the skin of a human being?
+Nerves
+10
+
+There are 6,272,640 square inches in an ____
+Acre
+10
+
+There are 625 sweat glands in one square inch of human ____
+Skin
+10
+
+There are 625 sweat glands in what area of human skin?
+One square inch
+10
+
+There are 63,360 inches in a ____
+Mile
+10
+
+There are about ____ species of coral known
+5,000
+10
+
+There are about ____ species of owl
+130
+10
+
+There are about 500 different kinds of cone snails around the world. All have a sharp, modified tooth that stabs prey with venom like a harpoon. Most cone snails hunt worms and other snails, but some eat fish. These are the ones most dangerous to people. The nerve toxin that stops a fish is powerful enough to also kill a?
+Human
+10
+
+there are approximately ____ ____ bricks in the empire state building
+Ten million
+10
+
+There are close to ____ known species of frogs, including toads
+4,000
+10
+
+There are fewer than ____ Bactrian camels left in the wild
+1,000
+10
+
+There are five types of simple machines: the ____, the pulley, the inclined plane, the screw, and the wheel and axle
+Lever
+10
+
+There are five types of simple machines: the lever, the ____, the inclined plane, the screw, and the wheel and axle
+Pulley
+10
+
+There are five types of simple machines: the lever, the pulley, the ____, the screw, and the wheel and axle
+Inclined plane
+10
+
+There are five types of simple machines: the lever, the pulley, the inclined plane, the ____, and the wheel and axle
+Screw
+10
+
+There are five types of simple machines: the lever, the pulley, the inclined plane, the screw, and the____
+Wheel and axle
+10
+
+There are hefty pricetags on some Internet domain names. The highest-selling domain name to date, business.com, went for ____ in 1999
+$7.5 million
+10
+
+There are how many miles of nerves in the skin of a human being?
+45
+10
+
+There are more ____ flamingos in the U.S, than real ones
+Plastic
+10
+
+There are more ____ in the world than all other animals together
+Insects
+10
+
+There are more ____ than any other kind of creature in the world
+Beetles
+10
+
+There are more bald eagles in what Canadian province then there are in the whole U S?
+British columbia
+10
+
+There are more statues of ____, Lewis & Clarks female Indian guide, in the U S than any other person
+Sacajewa
+10
+
+There are more than ____ bricks in the Empire State Building
+10 million
+10
+
+There are more than ____ different types of Barbie dolls
+200
+10
+
+There are more than ____ earthquakes throughout the world every year
+Fifty thousand
+10
+
+There are more than ____ satellites orbiting earth solely for the purpose of private communications services, including pagers, telephones, and computers
+200
+10
+
+There are more than ____ species of finches throughout the world
+450
+10
+
+There are no clocks in Las Vegas ____
+Casinos
+10
+
+There are no rivers in?
+Saudi arabia
+10
+
+There are no what in las vegas gambling casinos?
+Clocks
+10
+
+There are no wild deer of any kind in Australia, and the small red deer is the only one found in?
+Africa
+10
+
+There are only how many letters in the Hawaiian alphabet?
+Twelve
+10
+
+There are over ____ dogs in the U.S
+Fifty-eight million
+10
+
+There are over ____ religious denominations in the United States
+200
+10
+
+There are over ____ verses in the Bible
+30,000
+10
+
+There are over 100 million light sensitive cells in the?
+Retina
+10
+
+There are some ____ different species of sea snakes, and all of them are venomous
+Fifty
+10
+
+There are three countries that have both an atlantic and a mediterranean coast, name them?
+France Spain and Morocco
+10
+
+There are three types of rock - metamorphic, sedimentary and ____
+Igneous
+10
+
+There are two perennial vegetables, asparagus & ____
+Rhubarb
+10
+
+There are two years that will look the same when written right side up and upside down. The first is 1961. What is the other?
+6009
+10
+
+There can be only one?
+Highlander
+10
+
+There is a city called ____ in every continent
+Rome
+10
+
+There is a village near the Somme in ____ which is simply called Y
+France
+10
+
+There is a word in the English language with only one vowel, which occurs six times. What is it?
+Indivisibility
+10
+
+There is a word in the English language with only one vowel, which occurs six times?
+Indivisibility
+10
+
+There is actually a word for a 64th note ____ a
+Hemidemisemiquaver
+10
+
+There is enough iron in a human being to make ____
+One small nail
+10
+
+There is more pigment in ____ eyes than blue
+Brown
+10
+
+There is no point in England more than ____ miles from the ocean
+75
+10
+
+There is no single word given to describe the back of the?
+Knee
+10
+
+There is only thought to be 0.5 grams of this naturally occuring element present in the earths crust?
+Astatine
+10
+
+There wasn't a single pony in the 'pony express', only ____
+Horses
+10
+
+There wasn't a single pony in the Pony Express, just?
+Horses
+10
+
+There were no squirrels on Nantucket Island, Massachusetts until what year?
+1989
+10
+
+There were three Kings of England in 1066. Harold and William, of course, and who else?
+Edward the confessor
+10
+
+There were two Old Testament prophets who did not die, who were they?
+Elijah and enoch
+10
+
+These animals were once used to bleed the sick?
+Leeches
+10
+
+These are like fingerprints on cows (no two are identical)?
+Spots
+10
+
+These are the two highest valued letters in 'Scrabble'. 'Q' and ____
+Z
+10
+
+These are the two highest valued letters in scrabble?
+Q & z
+10
+
+These attach muscles to bones or cartilage?
+Tendons
+10
+
+These bacteria spores that I love, commonly grown in feaces?
+Mushroom
+10
+
+These bodies of water have a combined area of 94,230 square miles?
+The great lakes
+10
+
+These come in types like breakfast, pork, lamb, spiced, beef and thick?
+Sausage
+10
+
+These gourmet mushrooms can be identified by their conical shape and hollow inside?
+Morels
+10
+
+These license plates are manufactured by prisoners in the state prison in Concord. What is the slogan on them?
+Live free or die
+10
+
+These marine crustaceans often attach themselves to the hulls of ships?
+Barnacles
+10
+
+These modern items can be seen, worn by some of the chariot racers in Ben Hur?
+Wristwatches
+10
+
+These rabbits are prized for their long, soft fur, used to make very expensive sweaters?
+Angorra
+10
+
+these type of letters were first used by the Italian printer aldo manuzio?
+Italic
+10
+
+They call it puppy love: An American Animal Hospital Association poll showed that ____ percent of dog owners admit that they talk to their dogs on the phone or leave messages on an answering machine while away
+33
+10
+
+They provide insurance and financial services to people in 69 countries?
+Cigna
+10
+
+Thick light bark of S.European oak?
+Cork
+10
+
+Thick, light yellow portion of milk from which butter is made?
+Cream
+10
+
+Thief what hospital established the first us school of nursing?
+Bellevue
+10
+
+Things associated with the First day of School?
+Haircut
+10
+
+Things associated with the first day of school?
+New Shoes
+10
+
+Things found in a desert?
+Sand
+10
+
+Things Found in the Fridge?
+Cheese
+10
+
+Things People Do During a Heatwave (10)?
+Jump in the pool
+10
+
+Things to do on a lazy Sunday?
+Watch football
+10
+
+Things you Can Order From McDonalds (singular)?
+Hamburger
+10
+
+Things you find in a Bathroom?
+Band-aids
+10
+
+Things you find in a Bathroom?
+Toilet Paper
+10
+
+Things you find in a Bathroom?
+Toothpaste
+10
+
+Things you find in a Hospital?
+Doctors
+10
+
+Things you find in a Kitchen?
+Cupboards
+10
+
+Things you find in a Kitchen?
+Spoons
+10
+
+Things you find in a Kitchen?
+Stove
+10
+
+Things you Need a License to Do?
+Hunting
+10
+
+Things, people, places associated with tennis?
+Tennis racquet
+10
+
+Things/people associated with Canada?
+Hockey
+10
+
+Thinker who sang the 1963 hit 'it's my party'?
+Lesley gore
+10
+
+Thinking that its parents were a camel and a leopard, the Europeans once called the animal a 'cameleopard' Today it's called?
+The Giraffe
+10
+
+Third letter of the Greek alphabet?
+Gamma
+10
+
+Thirty three degrees fahrenheit who sang 'islands in the stream' with dolly parton?
+Kenny rogers
+10
+
+Thirty-two percent of computer data loss cases are due to ____ error
+Human
+10
+
+This 1st Lady was valedictorian of her Plains, GA high school class?
+Rosalynn carter
+10
+
+This actor directed himself in the horse whisperer, and matt damon and will smith in the legend of bagger vance?
+Robert redford
+10
+
+This actor was the only person to win an academy award for Best Actor in a movie in which he also directed. Who was he?
+Laurence Olivier
+10
+
+This actress appeared in 'St. Elmo's Fire', 'The Scarlett Letter', and 'Striptease'?
+Demi Moore
+10
+
+This actress go her acting start in the T.V. series, 'Peyton Place' as Alison MacKenzie & then went on to become a famous movie star (who was once married to Woody Allen) Name her?
+Mia Farrow
+10
+
+This African animal kills the most people?
+Crocodile
+10
+
+This african city was built on gold?
+Johannesburg
+10
+
+This Alcatraz inmate was provided with identity 325?
+Alvin karpis
+10
+
+This ancient attempt to transmute base metals into gold was called ____
+Alchemy
+10
+
+This animal can be found in sub Saharan Africa & Gir National Forest in India?
+Lion
+10
+
+This animal is found at the beginning of an encyclopedia?
+Aardvark
+10
+
+This animal is the symbol of the U S Republican party?
+Elephant
+10
+
+This annie hall actress went behind the cameras for the 1995 family drama unstrung heroes?
+Diane keaton
+10
+
+This artificial sweeteners go the ax in 1969?
+Cyclamates
+10
+
+This artist cut off his ear & sent it to his lover, before shooting himself dead in a cornfield?
+Vincent van gogh
+10
+
+This assassin of Julius Caesar was his friend?
+Marcus brutus
+10
+
+This award is the mystery writers equivalent of an Oscar?
+Edgar
+10
+
+This ball-player had 4256 base hits over his 23 year career?
+Pete rose
+10
+
+This band was formed in Germany in 1976 by writer and producer Frank Farian?
+Boney m
+10
+
+This bird can also be found on a chess board?
+Rook
+10
+
+This bird lives in an eyrie?
+Eagle
+10
+
+This branch of physics deals with the general laws governing the motion of material objects?
+Mechanics
+10
+
+This British composer born 1659 wrote the operatta dido and aeneas?
+Henry purcell
+10
+
+This Canadian art-metal trio sings sci-fi themes a lot?
+Rush
+10
+
+This channel is called?
+Triv_uk
+10
+
+This chemical element has the shortest name (3 letters)?
+Tin
+10
+
+This city in southwest Spain was founded by the Phonecians around 1100 BC?
+Cadiz
+10
+
+This city is known as the 'Venice of the orient'?
+Osaka
+10
+
+This city is the home of the Fairy Investigation Society?
+Dublin
+10
+
+This city on the Nile is where you will find the 'valley of the kings' & the temple of karnak, also the site of a tourist massacre in 1997?
+Luxor, egypt
+10
+
+This city was the headquarters of the British East India Company until 1708?
+Bombay
+10
+
+This cluster of stars is also known as the seven sisters?
+The pleiades
+10
+
+This comet appears every 76.3 years?
+Halley's Comet
+10
+
+This composer, singer, actor, writer, pilot, athlete was also a rhodes scholar?
+Kris kristofferson
+10
+
+This country consumes more coca cola per capita than any other?
+Iceland
+10
+
+This country contains the greater lengths of the tigris and euphrates rivers?
+Iraq
+10
+
+This country has the lowest point in south America?
+Argentina
+10
+
+This country occupies the 'horn of Africa'?
+Somalia
+10
+
+This country's name literally means 'the land of rabbits'?
+Spain
+10
+
+This delightfully soft topping, care of your local bovine?
+Cheese
+10
+
+This drink was advertised as brain tonic when first introduced in 1886? What drink were they referring to?
+Coca-Cola
+10
+
+This famous comedy actor was once voted by his classmates, Least Likely To Succeed?
+Robin Williams
+10
+
+This famous female singer was once sacked from Dunk' Donuts for squirting jam at a customer?
+Madonna
+10
+
+This famous heart-throb actor was once voted by his classmates, Least Likely To Succeed?
+Tom Cruise
+10
+
+This famous person was born during a WWII air raid?
+Ringo starr
+10
+
+This feature of Melbourne's Luna Park is classified by the National Trust?
+Mr Moon
+10
+
+This four season's lead singer recorded 'can't take my eyes off you?
+Frankie valli
+10
+
+This french actor appeared in 'The Big Blue' and 'The Professional'?
+Jean Reno
+10
+
+This Frog has 11 points on his collar around his neck?
+Kermit
+10
+
+This frontiersman and politician was killed at the Alamo?
+Davy Crockett
+10
+
+This game show required contestants to match prizes to the numbered squares?
+Concentration
+10
+
+This gemstone is used to symbolize forty years of marriage?
+Ruby
+10
+
+This German admiral (of which a battleship was later named) is famous for organizing and planning the ww1 submarine blockade of the British isles?
+Tirpitz
+10
+
+this greek admiral of darius i sailed upto the the indus river in the 5thc?
+Scylax
+10
+
+This handicapped man formed the x-men?
+Charles xavier
+10
+
+This has been the only year in which there was no Stanley Cup winner?
+1919
+10
+
+This Hungarian Queen ruled 40 years from 1740-1780, and her name would be?
+Maria Theresa
+10
+
+This Indian group ruled in early Peru?
+Incas
+10
+
+This insect can carry 10 times their own weight?
+Ants
+10
+
+This is a type of carpet or a breed of cat?
+Persian
+10
+
+This is a type of small, fried, Indian bread?
+Poori
+10
+
+This is known as 'The Royal Disease'?
+Hemophilia
+10
+
+This is the brains of a personal computer?
+Cpu
+10
+
+This is the bridge with the longest span in the USA?
+Verrazano
+10
+
+This is the longest word that can be made using the letters on only one row of the keyboard?
+Typewriter
+10
+
+This is the name of a fairy in A Midsummer Nights Dream?
+Moth
+10
+
+This is the name of the ship powered by the Infinite Improbability Drive?
+Heart of gold
+10
+
+This is the oldest operating airlines in the world?
+Klm
+10
+
+This is the only animal that can't jump?
+Elephant
+10
+
+This is the only borough of New York City that is not on an island?
+The Bronx
+10
+
+This is the only mammal with four knees?
+The elephant
+10
+
+This is the only word in the song that the smurfs sing?
+La
+10
+
+This is the reading system used by the blind?
+Braille
+10
+
+This is Wonko the Sane's real name?
+John watson
+10
+
+This island country is south of Malaysia?
+Singapore
+10
+
+This island was ulysses' home?
+Ithaca
+10
+
+This large bean shaped lymph gland can expand & contract as needed?
+The spleen
+10
+
+This latin word for 'king' sounds like a man's name?
+Rex
+10
+
+This magic word was in the movie, 'mary poppins'?
+Supercalifragilisticexpialidocious
+10
+
+This man died tragically in 1998. you may remember him from such shows as saturday night live, the simpsons, and newsradio?
+Phil hartman
+10
+
+This marsupial native to Australia feeds on eucalyptus leaves?
+Koala
+10
+
+This means touch me not in Latin?
+Noli me tangere
+10
+
+This military attack took place on Dec 7, 1941?
+Pearl Harbour
+10
+
+This movie was the sequel to the pink panther?
+A shot in the dark
+10
+
+This muscle is the only one not attached at both ends?
+The Tongue
+10
+
+This mysterious explosion occured on June 20, 1908 at Tunguska?
+Great siberian explosion
+10
+
+This Nazi leader had his six children poisoned prior to his own death?
+Joseph Goebbels
+10
+
+This Netherlands Queen ruled 58 years from 1890-1948, and her name would be?
+Wilhelmina
+10
+
+This normally has 4 legs and your butt is parked in it right now?
+Chair
+10
+
+This now-famous woman, was voted by her classmates, to become The Girl Most Likely To Get Her Name In Lights?
+Monica Lewinsky
+10
+
+This order of insects contains the most species?
+Beetles
+10
+
+This part of the human anatomy shares its name with a punctuation mark?
+Colon
+10
+
+This person used to announce cubs baseball in des moines, iowa?
+Ronald reagan
+10
+
+This person used to shower more than 4 times a day- ____ Gable
+Clark
+10
+
+This person was once appointed Special Agent of the Bureau of Narcotics and Dangerous Drugs?
+Elvis presley
+10
+
+This pitcher tossed seven no-hitters in his illustrious career?
+Nolan ryan
+10
+
+This place in Germany is also the name of a (popular) cake?
+Black forest
+10
+
+This planet has an atmosphere that is 98 percent Helium?
+Mercury
+10
+
+This player hit safely in 56 straight games?
+Joe dimaggio
+10
+
+This player's shot accidentally killed a linesman at the US Open tennis 1983?
+Stefan edberg
+10
+
+This pope died in 1471 while being sodomized by a page boy?
+Pope Paul II
+10
+
+This Pope was murdered by an irate hubby who found him on top of his wife?
+Pope John XIII
+10
+
+This pouty french beauty became world cinema's reigning sex symbol after marilyn monroe's death?
+Brigitte bardot
+10
+
+This president wanted the u.s.A. to join the league of nations:?
+Woodrow Wilso
+10
+
+This racist organisation was formed in Tennessee in 1865?
+Ku klux klan
+10
+
+This racist organization was formed in tennessee in 1865?
+The ku klux klan
+10
+
+This radical Agrarian communist organization controlled Cambodia in the 1970s until the Vietnamese removed them from power?
+Khmer rouge
+10
+
+This re opened in 1975 after being closed for 8 years?
+Suez canal
+10
+
+This Roman emperor had his own mother executed, murdered his wife, killed a girl who wouldn't marry him, and then put many Christian's to death after accu?
+Nero
+10
+
+This Roman killed himself after his defeat at Actium?
+Marc antony
+10
+
+This Russian scientist used dogs to study conditioned reflexes?
+Ivan pavlov
+10
+
+This school won the first 5 national championships in women's gymnastics?
+Utah
+10
+
+This singer once broke into Elvis' home Graceland, in the hope of meeting his idol?
+Bruce Springsteen
+10
+
+This small gland attached to the brain exerts a control over growth?
+Pituitary gland
+10
+
+This smurf is the only smurf with blonde hair?
+Smurfette
+10
+
+This software company produced hits such as 'Pagemaker' & 'Illustrator'?
+Adobe
+10
+
+This song by Boney M?
+Brown girl in the ring
+10
+
+This song by the shirelles, fought its way to the top of the pop chart?
+Soldier boy
+10
+
+This song is by which band do you really want to earn me?
+The culture club
+10
+
+This song made everything groovy for the troggs when it became #1?
+Wild thing
+10
+
+This song reached no 1 in the uk and the us for the animals name the song?
+House of the rising sun
+10
+
+This song singed by Boney M?
+Brown girl in the ring
+10
+
+This sorceress daughter of Helios turned Odysseus' men into swine?
+Circe
+10
+
+This South African surgeon led the team that performed the first human heart transplant in 1968?
+Dr. christiaan n. barnard
+10
+
+This space station killed a cow on re entry into earth's atmosphere?
+Skylab
+10
+
+This state makes your heart pound and your senses tingle. The celebration of it symbolizes the intensity of spirit of Louisiana?
+Mardi Gras 
+10
+
+This statue was found on the greek island of melos in 1820?
+The venus de milo
+10
+
+This stone enabled scholars to decipher Egyptian hieroglyphs?
+Rosetta stone
+10
+
+This team won their first World Series in 1969?
+New York MetsMets
+10
+
+This teen was sentenced to a caning in singapore in 1994?
+Michael fay
+10
+
+This teen was sentenced to a public caning in singapore in 1994?
+Michael fay
+10
+
+This term means compulsory enrollment of civilians into the military?
+Conscription
+10
+
+This Tony Award-winning musical is actually a thinly veiled biography of Diana Ross and the Supremes?
+Dreamgirls
+10
+
+This town was close to Ponderosa Ranch?
+Virginia city
+10
+
+This traditional Japanese wrestling sport takes place in a circular ring?
+Sumo wrestling
+10
+
+This tree thrives best in low, moist and rather fertile ground?
+Dogwood
+10
+
+This tree's berries are used to flavour gin?
+Juniper
+10
+
+This type of insect is named after a month?
+June bug
+10
+
+This U S state touches 4 of 5 great lakes?
+Michigan
+10
+
+This U.S. president was fatally shot in 1881?
+James Garfield
+10
+
+This U.S. Secretary of State won the Nobel Peace Prize in 1973?
+Henry Kissinger
+10
+
+This U.S. volcano last erupted in 1914?
+Lassen
+10
+
+This ugly creature has patches of red on his rear end?
+Mandrill
+10
+
+This UK Queen ruled 63 years, from 1837-1901, and her name would be?
+Victoria
+10
+
+This underground cartoonist created Fritz the cat & Mr. Natural?
+Robert crumb
+10
+
+This vegetable is a variety of broccoli?
+Calabrese
+10
+
+This Viatamin protects against night blindness?
+A
+10
+
+This was (until the Alaska purchase) the largest real estate deal in us history?
+The louisiana purchase
+10
+
+This was originally published in the U.S. as _Murder in the Calais Coach?
+Murder on the orient express
+10
+
+This was the sequel to 'Star Wars'?
+The Empire Strikes Back
+10
+
+This was the sequel to 'The Empire Strikes Back'?
+Return of the Jedi
+10
+
+This was the site of worse nuclear accident in history?
+Chernobyl
+10
+
+This woman thought John Lennon to be cute upon first meeting him. Who was she?
+Linda McCartney
+10
+
+This word can refer to either an Irish accent or an Irish shoe?
+Brogue
+10
+
+This word comes from a knight whose lance was free for hire, (i.e. Not pledged to one master)?
+Freelance
+10
+
+This word means 'soggy shrub' in navajo?
+Kemo sabe
+10
+
+This word means 'split personality'?
+Schizophrenia
+10
+
+This word refers to a freshman at a military academy?
+Plebe
+10
+
+This world capital once went by the unique name of By-town?
+Ottawa
+10
+
+This world class model recently crashed in a helicopter?
+Christie brinkley
+10
+
+Thomas cook the travel agent was born in what year?
+1808
+10
+
+Thomas Edison demonstrated the electric light for the first time in what year?
+1879
+10
+
+Thomas Edison, lightbulb inventor, was afraid of the?
+Dark
+10
+
+Thomas Gradgrind and Sissy Jupe appear in which of Charles Dickens' novels?
+Hard times
+10
+
+Thomas keneally's booker prize-winning novel was made into a film, what was the novel called?
+Shindlers' ark
+10
+
+Thomas Magnum's dad was played by what actor?
+Robert Pine
+10
+
+Thomas Savery & Thomas Newcomen invented the...?
+Steam engine
+10
+
+Thomas Wedders, the English circus freak, had a ____ which was seven and a half inches long
+Nose
+10
+
+Thomas Young the Physicist and Egyptologist spoke how many language when he was 14?
+Twelve
+10
+
+Thor is the god of thunder, loki is the god of ____
+Mischief
+10
+
+Thorburn what canal connects lake ontario and lake erie?
+Welland canal
+10
+
+Those such as Pilatre de Rozier and the Marquis d'Arlandes?
+Balloonists
+10
+
+Though formed in the 60's this band became one of the most populas r&b groups of the 80's after 'celebration' hit the charts in late '79?
+Kool and the gang
+10
+
+Though he was dead at the time?
+Bill the Cat
+10
+
+Though it shares the name of a highly poisonous plant, tea made from the needles of the____tree is perfectly safe for consumption
+Hemlock
+10
+
+Thousand after what are the b52 bombers named?
+Fifties hairdo
+10
+
+Thousand four hundred marconi transmitted radio signals across the atlantic in 1901, 1902 or 1903?
+1901
+10
+
+Thousand on what river is liverpool?
+Mersey
+10
+
+Thread made from intestines of sheep used for strings of musical instruments?
+Catgut
+10
+
+Three chemical elements are magnetic, iron, nickel & what?
+Cobalt
+10
+
+Three fourths of household ____ is used to flush the toilet & take baths & showers
+Water
+10
+
+Three hundred million of what die in the human body every minute?
+Cells
+10
+
+Three of the following U S Presidents appeared at one time or another on what's my line which one did not Jimmy Carter, Gerald Ford, Ronald Reagan, George Bush?
+George bush
+10
+
+Through ____ you spend half an hour of your waking day with your eyes closed
+Blinking
+10
+
+Through what Canadian city does the red river run?
+Winnipeg
+10
+
+Through what do insects breathe?
+Spiracles
+10
+
+Through what were dead egyptian pharaohs' brains extracted?
+Nasal passages
+10
+
+Through which English city does the prime meridian pass?
+Greenwich
+10
+
+Through which music magazine did Elton John meet his song writer Bernie Taupin?
+New musical express
+10
+
+Through which volcano did Jules Verne's explorers leave the centre of the Earth?
+Stromboli
+10
+
+Thumper was a rabbit from which film?
+Bambi
+10
+
+Thursday before Easter?
+Maundy Thursday
+10
+
+Tiger bay was her first movie name the actress?
+Hayley mills
+10
+
+Tiger beer is brewed in which Commonwealth country?
+Singapore
+10
+
+Tigers have striped ____, not just striped fur
+Skin
+10
+
+Tim Allerton & Linnet Doyle are characters from which Agatha Christie novel?
+Death on the nile
+10
+
+Tim booth is the lead singer with which band?
+James
+10
+
+Timber cut form coniferous trees?
+Softwood
+10
+
+Time ____ when you're having fun
+Flies
+10
+
+Time ____ when your having fun
+Flies
+10
+
+Time during which a machine esp. computer is out of action or unavailable for use?
+Down time
+10
+
+Time magazine lists the second most powerful person in Washington in 1993?
+Hillary rodham clinton
+10
+
+Time of the season (1969) was done by what group?
+Zombies
+10
+
+Times: What month of the year sees the most babies born in the U.S?
+August
+10
+
+Tinca tinca is the Latin name for which fish?
+Tench
+10
+
+Tippi hedren is best known for her lead role in which film?
+Birds
+10
+
+Tissue or organ of the animal body characterized by the ability to contract, usually in response to a stimulus from the nervous system?
+Muscle
+10
+
+Titan is a moon of which planet?
+Saturn
+10
+
+Titus Oates was the instigator of which historical plot?
+Popish
+10
+
+To 3 decimal places, what is the value of pi?
+3
+10
+
+To a sailor, what is a hawser?
+Rope
+10
+
+To a yachtsman, a fresh breeze is about ____ knots
+Twenty
+10
+
+To be young again, where did ralph take the gang?
+Roller skating
+10
+
+To camber something is to ____ it:
+Curve
+10
+
+To coat metal with a protective layer by electrolysis?
+Anodize
+10
+
+To determine the percentage of alcohol in a bottle of liquor, by how much is proof divided?
+Two
+10
+
+To determine the percentage of alcohol in a bottle of liquor, what is divided by two?
+Proof
+10
+
+To drive out an evil spirit?
+Exorcize
+10
+
+To err is human, to forgive...?
+Divine
+10
+
+to everything there is a season is the subtitle of what 1960 hit?
+Turn turn turn
+10
+
+To extract a tenth from - is a definition of which verb?
+Decimate
+10
+
+To find a 'Glomerulus', you would need to look in what organ of your body?
+Kidney
+10
+
+To find a 'Loop of Henle', you would need to look in what organ of your body?
+Kidney
+10
+
+To find an 'atrium', you would need to look in what organ of your body?
+Heart
+10
+
+To finely sharpen a cutting edge?
+Hone
+10
+
+To give full discretionary power?
+Carte blanche
+10
+
+To grill meat on a rack over charcoal?
+Charbroil
+10
+
+To listen is to 'here' or 'hear'?
+Hear
+10
+
+To make a daguerreotype, an early photograph, required a 15-minute average ____ time
+Exposure
+10
+
+To make all the text align against the left or right margins is called?
+Justification
+10
+
+To make half a kilo of honey, bees must collect nectar from over ____ ____ individual flowers
+Two million
+10
+
+To pack down firmly with repeated blows?
+Tamp
+10
+
+To pass U.S. Army basic training, young female recruits must do 17 pushups in two minutes. Males must do ____ pushups in two minutes
+40
+10
+
+To pick the best from a group?
+Cherry-pick
+10
+
+To ponder is to 'wander' or 'wonder'?
+Wonder
+10
+
+To refuel your car you go to a ____ station
+Petrol
+10
+
+To remove fine shavings of wood with a chisel?
+Pare
+10
+
+To send transatlantic telegraph messages, 3,000 miles of cable were laid under the Atlantic in what year?
+1886
+10
+
+To sratch a line with a pointed tool?
+Score
+10
+
+To the nearest mile, how long is a full marathon race?
+26 miles
+10
+
+To the nearest minute, how long does it take for light to travel from the sun to earth?
+Eight
+10
+
+To the nearest minute, how long does it take sunlight to reach earth?
+Eight
+10
+
+To the nearest one million miles, how far is the sun from the earth?
+Ninety three
+10
+
+To what branch of the indo-european language family do french, Spanish, Italian and Portuguese belong?
+Romance
+10
+
+To what bug was a monument erected in enterprise, alabama?
+Boll weevil
+10
+
+To what can keratitis lead?
+Blindness
+10
+
+To what category of numbers does 'pi'belong?
+Transcendental
+10
+
+To what country did bangladesh belong before it became independent?
+Pakistan
+10
+
+To what country would a hiker go to assail mt ararat?
+Turkey
+10
+
+To what did john lennon change his middle name?
+Ono
+10
+
+To what did Sir Francis Drake change the name of the boat The Pelican?
+The golden hind
+10
+
+To what did the ancient papyrus exporting town of Byblos near present day Beirut give its name?
+The bible
+10
+
+To what did touching the ark of the covenant lead?
+Death
+10
+
+To what do the tendons attach the muscles?
+Bones or cartilage
+10
+
+To what does the original term' cutty sark ' refer?
+Chemise
+10
+
+To what elementary school did 'the brady bunch' go?
+Dixie canyon elementary
+10
+
+To what everday product is flouride commonly added?
+Toothpaste
+10
+
+To what fabric does the French city of Nimes give its name?
+Denim
+10
+
+To what family does the wigeon belong?
+Duck
+10
+
+To what family of plants do the following belong apples, pears, plums, cherries, almonds, peaches and apricots?
+Rose family
+10
+
+To what family of vegetables does the popular zucchini or courgette belong?
+Gourd or squash
+10
+
+To what great civilization/empire do we owe our custom of 60 minutes in an hour?
+Babylonian empire
+10
+
+To what group of elements do cerium, praesiodymium and promethium belong?
+Rare earths
+10
+
+To what instrument family do drums belong?
+Percussion
+10
+
+To what is coal sometimes added for sweetening?
+Softdrinks
+10
+
+To what is the area of a human lung equal?
+Tennis court
+10
+
+To what is the chattanooga aquarium is devoted?
+Freshwater fish
+10
+
+To what is the harvest moon nearest?
+Autumnal equinox
+10
+
+To what language is the gypsy romany language related?
+Sanskrit
+10
+
+To what Scandinavian country would you have to travel to watch the football team Malmo play at home?
+Sweden
+10
+
+To what type of animal does the adjective 'ovine' refer?
+Sheep
+10
+
+To what type of horse do The Oaks and the 1000 Guineas restrict themselves?
+Fillies
+10
+
+To what was Britains school leaving age raised in 1947?
+Fifteen
+10
+
+To what was colonel potter, of 'mash' fame, allergic?
+Tomato juice
+10
+
+To where did jackie gleason move his 1960's variety series?
+Miami
+10
+
+To where in Berkshire did CND march annually from London for many years?
+Aldermaston
+10
+
+To which 16th century seafarer and mayor of Plymouth did Buckland Abbey belong to?
+Sir francis drake
+10
+
+To which animal is the adjective caprine refer?
+Goat
+10
+
+To which artist was Rubens chief assistant?
+Van dyck
+10
+
+To which Berkshire destination did C.N.D. march from London each Easter beginning in the late 1950s?
+Aldermaston
+10
+
+To which bird family does the canary belong?
+Finch
+10
+
+To which British port was the Lusitania heading when it was sunk by a torpedo?
+Liverpool
+10
+
+To which continent do the seychelles belong?
+Africa
+10
+
+To which country are chrysanthemums native?
+Japan
+10
+
+To which country did America lose the coveted America's cup in 1995?
+New zealand
+10
+
+To which country did Butch Cassidy and Sundance escape when things got too hot for them in the states?
+Bolivia
+10
+
+To which country do the Canary Islands belong?
+Portugal
+10
+
+To which country do the Coral Sea Islands belong?
+Australia
+10
+
+To which country do the Galapagos Islands belong?
+Ecuador
+10
+
+To which country does greenland belong?
+Denmark
+10
+
+To which country is the giant salamander indigenous?
+Japan
+10
+
+To which country was the murderer Dr Crippin trying to escape when he was caught?
+Canada
+10
+
+To which elemetary school did tv's 'the brady bunch' go?
+Dixie canyon elementary
+10
+
+To which family of birds does the 'Goldeneye' belong?
+Duck
+10
+
+To which family of birds does the 'Linnet' belong?
+Finch
+10
+
+To which family of birds does the fieldfare belong?
+Thrush
+10
+
+To which family of birds does the robin belong?
+Thrush
+10
+
+To which family of fishes does the Sprat belong?
+Herring
+10
+
+To which family of fishes does the Tuna belong?
+Mackerel
+10
+
+To which god was mount Parnasus sacred?
+Apollo
+10
+
+To which group of islands does Rhodes belong?
+Dodecanese
+10
+
+To which holiday tour operator do the subsidiaries Sovereign and Enterprise belong?
+Britsh airways
+10
+
+To which instrument does an orchestra normally tune?
+Oboe
+10
+
+To which of its games did Hasbro give a red card in January 2000?
+Subbuteo
+10
+
+To which part of the body does the adjective 'pulmonary' refer?
+Lungs
+10
+
+To which part of the body does the adjective 'renal' refer?
+Kidney
+10
+
+To which party did Countess Markievicz, the first female MP belong?
+Sinn fein
+10
+
+To which planet does the moon iapetus belong?
+Saturn
+10
+
+To which plant family (strictly genus) do jonquils and daffodils belong?
+Narcissus
+10
+
+To which S American country does Easter Island belong?
+Chile
+10
+
+To which saint is the cathedral in prague dedicated?
+Saint vitus
+10
+
+To which saint is Westminster Abbey dedicated?
+St Peter
+10
+
+To which team did marlboro switch its backing from brm in the 1974 season?
+Mclaren
+10
+
+To which tina turner song did chris eubank enter the ring?
+Simply the best
+10
+
+To which tree family does the osier belong?
+Willow
+10
+
+To which tune is the battle hymn of the republic sung?
+John brown's body
+10
+
+To which u.s state would you travel to sample authentic cajun cooking?
+Louisiana
+10
+
+To which us city would you travel to see the liberty bell?
+Philadelphia
+10
+
+To which World War I alliance did Turkey and Bulgaria belong to?
+The Central Powers
+10
+
+To who did 'topper' belong?
+Hopalong cassidy
+10
+
+To who did boris spassky lose in the world chess championship?
+Bobby fischer
+10
+
+To who did daniel ellsberg leak the pentagon papers?
+New york times
+10
+
+To who did father damien minister from 1873 to his death?
+Molokai lepers
+10
+
+To who did h.g wells refer to as a certifiable lunatic?
+Adolf hitler
+10
+
+To who did Spain cede Florida?
+Britain
+10
+
+To who did the lady of the lake give excalibur?
+Sir lancelot
+10
+
+To who did the sword excalibur belong?
+King arthur
+10
+
+To who does dino the dinosaur belong?
+Fred flintstone
+10
+
+To who is a polar bear's liver highly intoxicating?
+Eskimos
+10
+
+To whom did Alan Minter lose his world title?
+Marvin hagler
+10
+
+To whom did denmark sell the virgin islands?
+United states
+10
+
+To whom does Starship Enterprise belong?
+The federation
+10
+
+To whom does the island of St Helena belong?
+United kingdom
+10
+
+To whom is Sleeping Beauty betrothed?
+Prince charming
+10
+
+To whom was Marie Antoinette married?
+Louis xvi
+10
+
+To within 3 mph, at what speed in m.p.h. does a wind become a hurricane?
+73
+10
+
+To within 30 feet, how tall is the Eiffel Tower?
+984
+10
+
+Toho film studios produced most of which series of films?
+Godzilla
+10
+
+Toilets in Australia flush ____ clockwise
+Counter
+10
+
+Tokyo is the capital of ____
+Japan
+10
+
+Tom Clancy: What is CIA Agent Clark's real name?
+Kelly
+10
+
+Tom Clancy: What is the only Tom Clancy novel to take place entirely before 1980?
+Without remorse
+10
+
+Tom Clancy: What relation does fighter pilot Robby Jackson have to Jack Ryan, jr?
+Godfather
+10
+
+Tom hallick was the first male host of which show?
+Entertainment tonight
+10
+
+Tom Hanks did the voice acting for which of the Toy Story characters?
+Woody
+10
+
+Tom hanks won best actor oscar in 1993 for which film?
+Philadelphia
+10
+
+Tom hanks won his 2 oscars for best actor in?
+Philadelphia and forrest gump
+10
+
+Tom sawyer was the first novel written on a ____
+Typewriter
+10
+
+Tomblike monument to persons whose remains are elsewhere?
+Cenotaph
+10
+
+Tommy and Bobby are the first names of which TV comedy duo?
+Cannon and ball
+10
+
+Tomography is a scanning technique which uses X-rays for photographing particular slices of the what?
+Body
+10
+
+Tony Curtis was in which of the armed services in WWII?
+Navy
+10
+
+Top 10 20th century presidential candidates who lost (last name only)?
+McGovern
+10
+
+Top 10 first ladies (first and last name)?
+Dolley Madison
+10
+
+Top 10 Presidential body parts in the news (past and present)?
+Gallbladder
+10
+
+Top 10 Presidential kids (first and last name)?
+Chelsea Clinton
+10
+
+Top 10 Presidential slogans, quotes or expressions?
+Bully
+10
+
+Top 10 Sleazeballs in the U.S. Congress (Last name only)?
+Gingrich
+10
+
+Top 10 Special places in the White House?
+Oval Office
+10
+
+Top 10 vice presidents who did NOT become president (first and last name),10?
+Hubert Humphrey
+10
+
+Top 10 vice presidents who later became president (last name only)?
+Nixon
+10
+
+Top ten things Women look for in a Man?
+Money
+10
+
+Top Ten Tools in Christina's toolbox (handy things)?
+Duct Tape
+10
+
+Topeka is the capital of ____
+Kansas
+10
+
+Torme Music: Who recorded Heartbreak Hotel in 1956?
+Elvis presley
+10
+
+Total color blindness is medically know as what?
+Monochromatism
+10
+
+Town in the west bank, near Jerusalem, controlled since 1967 by Israel though administered since 1995 by the Palestinian authority?
+Bethlehem
+10
+
+Toys: 1960s: G.I. joe was introduced at the annual American international toy fair in?
+1964
+10
+
+Toys: 1970s: What was the name given to the brightly coloured inflatable toys which had ears as handles?
+Spacehoppers
+10
+
+Toys: Barbie Dolls: Barbie is actually derived from this German doll, intended as a sexual gag?
+Lilli
+10
+
+Toys: Barbie Dolls: Barbie model with changable hair color?
+Color magic
+10
+
+Toys: Barbie Dolls: Barbie's English friend?
+Stacey
+10
+
+Toys: Barbie Dolls: complete the barbie outfit name: gay ____
+Parisienne
+10
+
+Toys: Barbie Dolls: Complete the Barbie outfit name: Senior ____
+Prom
+10
+
+Toys: Barbie Dolls: complete the barbie outfit name: sorority ____
+Tea
+10
+
+Toys: Barbie Dolls: ken's black friend?
+Brad
+10
+
+Toys: Barbie Dolls: what ken wears when he visits Germany?
+Lederhosen
+10
+
+Toys: Barbie Dolls: Where Barbie goes skiing?
+Sun valley
+10
+
+Toys: Barbie:  sed to drive a Chevrolet Corvette. What was her vehicle of choice after she tired of the Corvette?
+Convertible Mustang
+10
+
+Toys: Barbie: Barbie Doll was based upon a comic strip prostitute named who?
+Lilli
+10
+
+Toys: barbie: barbie variety with suntanned skin?
+Malibu
+10
+
+Toys: Barbie: Barbie's black friend?
+Christie
+10
+
+Toys: Barbie: Barbie's nautical-sounding sister?
+Skipper
+10
+
+Toys: barbie: barbie's tiny twinned brother?
+Todd
+10
+
+Toys: barbie: complete the barbie outfit name: here comes the ____
+Bride
+10
+
+Toys: Barbie: Complete the Barbie outfit name: Senior ____
+Prom
+10
+
+Toys: Barbie: Doll copied from London's top teen model?
+Twiggy
+10
+
+Toys: Barbie: Ken's buddy?
+Allan
+10
+
+Toys: Barbie: Manufacturer of Barbie dolls?
+Mattel
+10
+
+Toys: Barbie: Measurements if she were life size:?
+39-23-33
+10
+
+Toys: Barbie: Model of car Barbie drives?
+Corvette
+10
+
+Toys: Barbie: The first airline Barbie was a stewardess for?
+American
+10
+
+Toys: Barbie: Type of house Barbie lives in?
+Dream
+10
+
+Toys: barbie: what barbie wears when she visits Japan?
+Kimono
+10
+
+Toys: Barbie: What year did Barbie make her debut?
+1959
+10
+
+Toys: Building tool named after Civil War president?
+Lincoln logs
+10
+
+Toys: Design tool for budding Gloria Vanderbilts?
+Fashion plates
+10
+
+Toys: Large plastic animals gobbled marbles in this game?
+Hungry hungry hippos
+10
+
+Toys: leading manufacturer of toy cars?
+Hot wheels
+10
+
+Toys: Little blue cartoon figurines?
+Smurfs
+10
+
+Toys: Mundane toy that involved sticking plastic pieces on scenes?
+Colorforms
+10
+
+Toys: name of barbie's hot pink sports-car?
+Vette
+10
+
+Toys: Once scarce, pudgy dolls that came with their own birth certificates?
+Cabbage patch kids
+10
+
+Toys: Personal merry-go-round guaranteed to make you dizzy?
+Sit n spin
+10
+
+Toys: Plastic vehicle equipped with spin-out brake?
+Big wheel
+10
+
+Toys: talking toy that helped you do well on spelling tests?
+Speak n spell
+10
+
+Toys: These popular block sets included a castle and a fire boat?
+Lego
+10
+
+Toys: Xavier Roberts was the name associated with which eighties toy?
+Cabbage Patch Kids
+10
+
+Toys: You coloured these and then watched them contract in the oven?
+Shrinky dinks
+10
+
+Toys: You inserted sticks into round blocks to build abstractions with these?
+Tinker toys
+10
+
+Toys: you rotated blocks and matched up the colors to solve this puzzle?
+Rubiks cube
+10
+
+Traditionally in what months should you not eat oysters?
+May to august
+10
+
+Traditionally what anniversary is your 55th?
+Emerald
+10
+
+Traditionally, how many colors are considered to be in a rainbow?
+Seven
+10
+
+Traditionally, the engagement ring mounted what type of stone?
+Birthstone
+10
+
+Traditionally, what color are most of the gondola boats in venice, Italy?
+Black
+10
+
+Traditionally, witchetty grubs are eaten by which people?
+Australian aborigines
+10
+
+Traffic jam affecting a whole network of intersecting streets?
+Gridlock
+10
+
+Traffic lights were first used in London in which year?
+1869
+10
+
+Transom, poop and keel are all parts of a what?
+Boat
+10
+
+Transport Name two motor car companies starting with the letter V?
+Volvo and Vauxhall
+10
+
+Transport system in which trains glide above a track, supported by magnetic repulsion?
+Maglev
+10
+
+Transport: 160 cars can drive side by side on the Monumental Axis in____ , the world's widest road
+Brazil
+10
+
+Transport: 1938 marked the introduction of this Volkswagen car?
+Beetle
+10
+
+Transport: 1960s: what was the name of the Wolseley version of the Austin Mini?
+Hornet
+10
+
+Transport: 1960s: Which company made a version of the Austin Mini, called the Elf?
+Riley
+10
+
+Transport: 1970s: In 1974, Production of which iconic car ended after 13 years on the road?
+E-type Jaguar
+10
+
+Transport: 1990s: In 1992, what sports car did chevrolet make its one millionth of?
+Corvette
+10
+
+Transport: combine a van & a car & you get this word?
+Caravan
+10
+
+Transport: First started with ignition keys in?
+1949
+10
+
+Transport: Hkj is the international index mark for vehicles in which country?
+Jordan
+10
+
+Transport: name of honda's variable valve timing system?
+Vtec
+10
+
+Transport: Name the city with the most Roll Royces per capita?
+Hong kong
+10
+
+Transport: ransom eli olds started this company in 1897?
+Oldsmobile
+10
+
+Transport: sister car of the nissan quest?
+Mercury villager
+10
+
+Transport: Sports Cars 10?
+Corvette
+10
+
+Transport: the chrysler concorde, dodge intrepid, and eagle vision are known as...?
+Lh sedans
+10
+
+Transport: the first auto accident on record occurred in this city?
+New york
+10
+
+Transport: The first car with a non-U.S. nameplate to be classified as U.S. domestic?
+Mazda mx-6
+10
+
+Transport: The first double-decker bus was introduced in this city?
+London
+10
+
+Transport: the first power steering was in this car?
+Mercedes-benz
+10
+
+Transport: The first president to ride in an auto; he didn't care for it much?
+Theodore roosevelt
+10
+
+Transport: the most expensive car produced by the chrysler corporation?
+Dodge viper
+10
+
+Transport: The original name for this Pontiac car was the Banshee, for its mythicality?
+Firebird
+10
+
+Transport: The Stutz-Bearcat is this type of car?
+Sports
+10
+
+Transport: volvo's chairman resigned in 1993 in protest of a merger with this automaker?
+Renault
+10
+
+Transport: What car company makes the Colt?
+Mitsubishi
+10
+
+Transport: What car manufacturer also makes airplane engines?
+Rolls royce
+10
+
+Transport: What make of car is a 'Thunderbird'?
+Ford
+10
+
+Transport: What make of car is an 'Espace'?
+Renault
+10
+
+Transport: You park a car, but you ____ a boat
+Dock
+10
+
+Transport: Your car's engine has an anti-pollution device known as the pcv valve. what do those letters stand for?
+Positive crankcase ventilation
+10
+
+Transposition of the letters of a word or phrase to form a new word or phrase?
+Anagram
+10
+
+Transylvania is in which present day country?
+Romania
+10
+
+Trappist monks belong to which order?
+Cistercians
+10
+
+Treasure island, angel island and alcatraz can all be seen from which bridge?
+Golden gate
+10
+
+Treat religious name or subject irreverently?
+Blaspheme
+10
+
+Treatment of disease & correction of deformity or defect by manual & operative procedures, with or without the use of drugs?
+Surgery
+10
+
+Treatment of disease by various approaches?
+Therapy
+10
+
+tree living primate with a pointed snout and long tail native to Madagascar?
+Lemur
+10
+
+Tree with a thin peeling bark the twigs also used for flogging?
+Birch
+10
+
+Trees give off excess water through microscopic holes in leaves called?
+Stomata
+10
+
+Triassic, jurassic, & cretaceous are three periods during which era?
+Mesozoic
+10
+
+Tropical American trees yielding large round fruits that are also known as bottle gourds?
+Calabashes
+10
+
+Troy was the last derby winner for which jockey?
+Willie carson
+10
+
+Troy, this circle is you. Who said it?
+Brad Goodman 
+10
+
+Truck, Canton and Hoist are amongst others parts of what?
+Flag
+10
+
+Trudeau 3399 what sport do you rack your balls in?
+Billiards
+10
+
+True or false are bats blind?
+False
+10
+
+True or false do lionesses have manes?
+False
+10
+
+True or false rainwater is the purest form of water?
+False
+10
+
+True or False: All owls lay white eggs?
+True
+10
+
+True or False: Both Fleet Commanders in the Pacific Theater of World War II Admiral Isoroku Yamamoto for the Japanese, and Admiral Chester Nimitz for theUnited States were each missing 3 fingers as a result of accidents while younger officers onboard ship?
+False, 2
+10
+
+True or false: Football rules allow players to be barefoot?
+True
+10
+
+True or false: gerry and the pacemakers' first three singles reached number one in the uk?
+True
+10
+
+True or False: It takes a week to make a jelly bean?
+True
+10
+
+True or False: Kermit the Frog has 11 points on his collar around his neck?
+True
+10
+
+True or False: No matter where you are in Australia you are never more than 1000 kilometers from the ocean?
+True
+10
+
+True or False: No words in the English language rhyme with orange, silver or purple?
+True
+10
+
+True or false: no words rhyme with month?
+True
+10
+
+True or False: The University of Texas system is the third-largest landowner in the United States?
+True
+10
+
+True or False: There are more Samoans in Los Angeles than on American Samoa?
+True
+10
+
+True or False: You can't tickle yourself?
+True
+10
+
+True or False: You can't trademark surnames?
+True
+10
+
+True or false:crystal skulls affect humans by shutting off their psychic abilities?
+False
+10
+
+True trivia: how many fingers did anne boleyn have?
+Eleven
+10
+
+Truffles & mushrooms are edible ____
+Fungi
+10
+
+Trunk lid name the only president to be married for the first time while in office?
+Grover cleveland
+10
+
+Tsar kolokol in moscow is the world's largest what?
+Bell
+10
+
+Tubular sac attached to the large intestine?
+Appendix
+10
+
+Turkish city and port on the Bosporus?
+Istanbul
+10
+
+Turn on, tune in and...?
+Drop out
+10
+
+Tuscany is a major wine producing region of which country?
+Italy
+10
+
+What is 12 dozen also known as?
+Gross
+10
+
+Twenty two carat gold has ____ parts per thousand pure gold
+916
+10
+
+Twenty-five years after first playing James Bond, Sean Connery won an Oscar. For his part in which film?
+The untouchables
+10
+
+Twisted tightly above a wound, this device is used to halt bleeding by compressing blood vessels?
+Tourniquet
+10
+
+Two 1.5 volt batteries, when connected in series, produces ____ volts
+-- Answer metadata begin
+{
+    "answers": ["Three", "3"]
+}
+-- Answer metadata end
+10
+
+Two countries have names which mean Land of the South, what are they?
+Vietnam and Australia
+10
+
+Two creatures support the Royal Coat of Arms, one is a lion what is the other?
+Unicorn
+10
+
+Two door car with a hard roof and slopping back?
+Coupe
+10
+
+Two former members of what group formed hot tuna?
+Jefferson airplane
+10
+
+Two in every three buyers pays the sticker price for what item without arguing?
+Automobile
+10
+
+Two islands are situated in San Francisco harbour. One is Alcatraz, name the other?
+Angel island
+10
+
+Two men who share a record number of swimming gold medals (11) are?
+Mark spitz and matt biondi
+10
+
+Two objects have struck the earth with enough force to destroy a whole city. Each object, one in 1908 and again in 1947, struck regions of ____. Not one human being was hurt either time
+Siberia
+10
+
+Two of the permanent residents of Fawlty Towers were old ladies. One is Miss Tibbs, what is the name of the other?
+Miss gatsby
+10
+
+Two out of three adults in the United States have?
+Hemorrhoids
+10
+
+Two short words are combined to give the name of which small stand with several shelves or layers for displaying ornaments?
+Whatnot
+10
+
+Two South American countries have no coastline, Bolivia is one what is the other?
+Paraguay
+10
+
+Two things grew on the little nut tree. A silver nutmeg & what else?
+Golden pear
+10
+
+Tylenol, darvon, & aspirin are examples of ____
+Analgesics
+10
+
+Type four now, quickly :-)?
+Four
+10
+
+Type of Dodge also a snake?
+Viper
+10
+
+Type of glazed earthenware?
+Delft
+10
+
+Type of public address loudspeaker system?
+Tannoy
+10
+
+Type of spongiform encaphalopathy affecting human beings and leading to dementia?
+Creutzfeldt-jakob disease
+10
+
+Type the alphabet backwards?
+Tebahpla eht
+10
+
+Types of fingerprints?
+Arch
+10
+
+Types Of Toothpaste?
+Crest
+10
+
+Typically, which type of literary form is an elegy?
+Poem
+10
+
+U S aircraft manufacturer?
+Lockheed
+10
+
+U S aviator, first solo non stop trans atlantic flight?
+Charles Lindbergh
+10
+
+U S captials Arizona?
+Phoenix
+10
+
+U S captials Arkansas?
+Little rock
+10
+
+U S captials Colorado?
+Denver
+10
+
+U S captials Delaware?
+Dover
+10
+
+U S captials Florida?
+Tallahassee
+10
+
+U S captials Kentucky?
+Frankfort
+10
+
+U S captials Louisiana?
+Baton rouge
+10
+
+U S captials Maine?
+Augusta
+10
+
+U S captials Maryland?
+Annapolis
+10
+
+U S captials Montana?
+Helena
+10
+
+U S captials Nebraska?
+Lincoln
+10
+
+U S captials New Hampshire?
+Concord
+10
+
+U S captials North Carolina?
+Raleigh
+10
+
+U S captials Oregon?
+Salem
+10
+
+U S captials Pennsylvania?
+Harrisburg
+10
+
+U S captials Washington?
+Olympia
+10
+
+U S captials Wisconsin?
+Madison
+10
+
+U S captials Wyoming?
+Cheyenne
+10
+
+U S health care programme introduced in 1965 by Johnson?
+Medicaid
+10
+
+U S president, Herbert C. ____
+Hoover
+10
+
+U S President, John Quincy ____
+Adams
+10
+
+U S President, Woodrow ____
+Wilson
+10
+
+U.s president chester alan ____
+Arthur
+10
+
+U.S. Congress met for the very first time in this city?
+New York City
+10
+
+U.S. President, Woodrow ____
+Wilson
+10
+
+U.S. Presidents?
+Eisenhower
+10
+
+Ugly carved figures projecting from roofs of churches, etc are?
+Gargoyles
+10
+
+Ukulele's were first crafted in Hawaii in 1879 by Portuguese immigrants. The Instrument's name means what?
+Jumping flea
+10
+
+Ulna, radius, & clavicle are types of ____
+Bones
+10
+
+Ulna, radius, and clavicle are types of ____
+Bones
+10
+
+Ultramarine is a shade of what colour?
+Blue
+10
+
+Umber, sienna and sepia are all shades of which colour?
+Brown
+10
+
+ummertime This is the sandy area nearest the ocean?
+Beach
+10
+
+Un secretary general killed in a plane crash in africa, in 1961?
+Dag hammarskjold
+10
+
+Uncle what is the name of the cord joining a mother and her unborn child?
+Umbilical
+10
+
+Uncultured or primative person?
+Barbarian
+10
+
+Under the leadership of nasser, this union of egypt and syria was proclaimed on feb 1, 1958?
+United arab republic
+10
+
+Under what circumstances did Lord Castlereagh wound George Canning in 1809?
+A duel
+10
+
+Under what name did 18th Century frenchman Francois-marie Arouet write?
+Voltaire
+10
+
+Under what name did andy mccluskey and Paul humphries enjoy hits with their synthesizer-based pop?
+Orchestral manoeuvres in the dark
+10
+
+Under what name did michael barratt have four number one hits in the 1980s?
+Shakin' stevens
+10
+
+Under what name did Nathan Birnbaum become famous?
+George Burns
+10
+
+Under what name is thomas lanier williams better known?
+Tennessee williams
+10
+
+Under what other name does Stephen King write?
+Richard bachman
+10
+
+Under what pseudonym did William Connor write a column for the Daily Mirror from 1935 until his death in 1967?
+Cassandra
+10
+
+Under what pseudonym does Harry Paterson also write?
+Jack higgins
+10
+
+Under what river does the holland tunnel run?
+Hudson river
+10
+
+Under what structure was the first nuclear reactor built in Chicago?
+Football stadium
+10
+
+Under which rules was boxing standardised?
+Marquise of queensberry
+10
+
+Underground cemetery?
+Catacomb
+10
+
+Undershot, overshot and breastshot are what kinds of mechanical device?
+Waterwheel
+10
+
+Underwear Brands, mens/womens?
+Joe Boxer
+10
+
+Unfriendly, cold and sexually unresponsive?
+Frigid
+10
+
+Unit of measure for energy?
+Joule
+10
+
+Unit of measurement originating in Anglo-saxon England,equal to 220 yards?
+Furlong
+10
+
+Unit of weight measuring fineness of silk and nylon?
+Denier
+10
+
+United States: In the USA, for how many years is a patent good?
+Seventeen
+10
+
+United States: In what year was the first black mayor of Chicago elected?
+1983
+10
+
+United States: What is on a 5000 acre landfill at the head of Jamaica Bay near New York City?
+John F. Kennedy Airport
+10
+
+United States: What is the most popular street name in the US?
+Park Street
+10
+
+United States: What was Jane Wyman Reagan's birth name?
+Sarah Jane Fulks
+10
+
+United States: What was Nancy Davis Reagan's birth name?
+Anne Frances Robbins
+10
+
+United States: What was the Statue Of Liberty originally named?
+Liberty Enlightening The World
+10
+
+United States: Where is Stone Mountain?
+Atlanta
+10
+
+United States: Where were Tommy Lee Jones and Al Gore freshman roommates?
+Harvard University
+10
+
+United States: Which city is a 'player with railroads, and the nation's freight handler'?
+Chicago
+10
+
+United States: Which two cities are known as the twin cities?
+Minneapolis and Saint Paul
+10
+
+United States: Who is the only man to have been both chief justice and president of the US?
+William Taft
+10
+
+United States: Who was Al Gore's freshman roommate at Harvard?
+Tommy Lee Jones
+10
+
+United States: Who was born Anne Frances Robbins?
+Nancy Davis Reagan
+10
+
+United States: Who was born Sarah Jane Fulks?
+Jane Wyman Reagan
+10
+
+United States: Who was the first black mayor of Chicago?
+Harold Washington
+10
+
+United States: Who was Tommy Lee Jones' freshman roommate at Harvard?
+Al Gore
+10
+
+Universal donors have what type of blood?
+O
+10
+
+Unix is a play on words on which '60's operating system?
+Multics
+10
+
+Unlike a zebra or a leopard, this animal comes in both spotted and striped varieties?
+Skunk
+10
+
+Unlike other rna viruses, which viruses (which includes hiv) replicate backwards as dna rather than rna genomes inside their hosts, by means of an enzyme they carry called reverse transcriptase?
+Retroviruses
+10
+
+Unscramble 'topucrem'?
+Computer
+10
+
+Until 1796, there was a state in the United States called Franklin. Today it's known as?
+Tennessee
+10
+
+Until 1796, which state in the U S was known as Franklin?
+Tennessee
+10
+
+Until 1947, what did 'gripe water' contain?
+Opium
+10
+
+Until 1947, what mixture used for calming babies contained opium?
+Gripe water
+10
+
+Until 1985 Pat Simmons talked to us all, who was she?
+Talking clock
+10
+
+Until at least 1980 the country of bhutan had no what?
+Telephones
+10
+
+Until her recent death who held the record as the most prolific living author?
+Barbra cartland
+10
+
+Until the 18th century ____ produced almost all the worlds diamonds
+India
+10
+
+Until the 18th century, who produced almost all the world's diamonds?
+India
+10
+
+Until the dinner plate was introduced in the 15th century, it was customary to eat on what?
+Bread
+10
+
+Until the introduction of the Julian Calender in 1752, New Year's Day fell on which date?
+25 march
+10
+
+Until the late 19th century this country controlled the wild rubber market?
+Brazil
+10
+
+Until when was California a part of Mexico?
+1846
+10
+
+Unu and Ne Win have been leading figures in the post- 1945 history of which country?
+Burma
+10
+
+Up until 1918, transylvania was part of which european country?
+Hungary
+10
+
+Upon his death in 1931, all non essential lights in the U S were turned off for one minute in his honor?
+Thomas edison
+10
+
+Upon which river did Babylon stand?
+Euphrates
+10
+
+Upon which towns streets was Monopoly originally based?
+Atlantic city
+10
+
+Upper house of the US legislature?
+Senate
+10
+
+Urania was the Greek muse of what?
+Astronomy
+10
+
+Urania was the muse of what?
+Astronomy
+10
+
+Uranus is ____ kilometres in diameter
+52,000
+10
+
+Uranus is ____ miles in diameter
+32,000
+10
+
+Uranus is ____ million kilometres from the Sun
+2,870
+10
+
+Uranus' moons are all named after?
+Shakespearean women
+10
+
+Urea is essentially made up of carbon dioxide and which other chemical?
+Ammonia
+10
+
+Uri Geller, the professional psychic was born on December 20 ____
+1946
+10
+
+Urine was once used to?
+Wash clothes
+10
+
+Ursa minor is the name of a group of stars,what does it mean?
+Little bear
+10
+
+US Aeronautics - Where is the Kennedy Space Centre?
+Cape Canaveral, Florida
+10
+
+US astronomer?
+Edwin hubble
+10
+
+Us city nicknames: what city is the city of brotherly love?
+Philadelphia
+10
+
+US HISTORY: What is the birthplace of President Andrew Jackson?
+Hermitage, Tennessee
+10
+
+Us marines fought in peking in 1900 what military campaign?
+Boxer rebellion
+10
+
+US Presidents (Last Names Only)?
+Nixon
+10
+
+US slang: stupid or insignificant person?
+Bozo
+10
+
+US slang:a person who habitually takes the drugs freebase or crack?
+Basehead
+10
+
+US slang:bean-counter?
+Accountant
+10
+
+Us State capitals: alabama?
+Montgomery
+10
+
+Us State capitals: Alaska?
+Juneau
+10
+
+US, Canada and Other Holidays?
+Labor Day
+10
+
+US, Canada and Other Holidays?
+New Year's Day
+10
+
+US, West Germany and Japan not participate in the 1980 Olympic games in Moscow, as a protest because of Soviet activity in which country?
+Afganistan
+10
+
+USA: Geography: Pseudonyms: Chicago, illinois?
+Windy city
+10
+
+USA: Geography: Pseudonyms: hawaii?
+Aloha state
+10
+
+USA: Geography: Pseudonyms: north carolina?
+Tar heel state
+10
+
+USA: Geography: Pseudonyms: North Dakota?
+Sioux state
+10
+
+USA: Geography: Pseudonyms: old towne, maine?
+Canoe city
+10
+
+USA: Geography: Pseudonyms: paris, france?
+City of light
+10
+
+USA: Geography: Pseudonyms: South Dakota?
+Coyote state
+10
+
+USA: Geography: Pseudonyms: tennessee?
+Volunteer state
+10
+
+USA: History: Civil War: Democratic nominee for president in 1864?
+George mcclellan
+10
+
+USA: History: Civil War: Replaced Joseph Hooker as Army of the Potomac commander on June 26, 1863?
+George meade
+10
+
+USA: History: Civil War: Unit formed when 3 divisions were placed under a single command?
+Corps
+10
+
+USA: History: Civil War: USA Colonel who led the famed bayonet charge down Little Round Top?
+Joshua lawrence chamberlain
+10
+
+Usa: name the river that flows through oklahoma and texas?
+Washita
+10
+
+Usa: oklahoma's only national historic site marks the site of general custer's 1868 attack on the village of this Indian chief?
+Chief black kettle
+10
+
+Usa: one of oklahoma's most prominent mountains is?
+Mount scott
+10
+
+USA: Presidents: Has B.Franklin ever been president of the U.S.? (yes/no)?
+No
+10
+
+USA: Presidents: In what year did A.Lincoln die?
+1865
+10
+
+USA: Presidents: In what year did J.F.Kennedy die?
+1963
+10
+
+USA: Presidents: Was Ulysses S. Grant a Republican? (yes/no)?
+Yes
+10
+
+USA: Presidents: What party did Andrew Jackson represent?
+Democrats
+10
+
+USA: Presidents: Who had to resign from the presidency?
+Nixon
+10
+
+USA: Presidents: Who preceded F.D.Roosevelt?
+Hoover
+10
+
+USA: Presidents: Who reigned during the Korean War?
+Eisenhower
+10
+
+USA: Presidents: Who reigned during the War of 1812?
+Madison
+10
+
+USA: Presidents: Who reigned for 4 years, then not and then again 4 years?
+Cleveland
+10
+
+USA: Presidents: Who succeeded Abraham Lincoln?
+Johnson
+10
+
+USA: Presidents: Who succeeded F.D.Roosevelt?
+Truman
+10
+
+USA: Presidents: Who succeeded George Washington?
+Adams
+10
+
+USA: Presidents: Who succeeded James Madison?
+Monroe
+10
+
+USA: Presidents: Who succeeded Jimmy Carter?
+Reagan
+10
+
+USA: Presidents: Who succeeded John Quincy Adams?
+Jackson
+10
+
+USA: Presidents: Who succeeded Richard Nixon?
+Ford
+10
+
+USA: Presidents: Who was Eisenhowers' vice president?
+Nixon
+10
+
+USA: Presidents: Who was John Adams' vice president?
+Jefferson
+10
+
+USA: Presidents: Who was Kennedy's vice president?
+Johnson
+10
+
+USA: Presidents: Who was Nixon's first vice president?
+Agnew
+10
+
+USA: Presidents: Who was president during World War I?
+Wilson
+10
+
+USA: Presidents: Who was president in 1900?
+Mckinley
+10
+
+USA: Presidents: Who was the first Democrat president of this century?
+Wilson
+10
+
+USA: Presidents: Who was the first president of the U.S?
+Washington
+10
+
+USA: Presidents: Who was the last Whig president?
+Fillmore
+10
+
+USA: Presidents: Who was the only Federalist party president?
+Adams
+10
+
+USA: Presidents: Who was the third president of the U.S.A?
+Jefferson
+10
+
+USA: Presidents: Who was vice president under J.Q.Adams and A.Jackson?
+Calhoun
+10
+
+USA: States:  Birmingham is a big city in what state?
+Alabama
+10
+
+USA: States:  Can we find South Carolina at the Eastcoast (yes or no)?
+Yes
+10
+
+USA: States:  Dallas is in what state?
+Texas
+10
+
+USA: States:  District of Columbia is in what city?
+Washington
+10
+
+USA: States:  Duluth is in what state?
+Minnesota
+10
+
+USA: States:  How many colonies founded the U.S.A?
+13
+10
+
+USA: States:  How many states form the U.S. (answer in numbers)?
+50
+10
+
+USA: States:  In what state can we find Atlanta?
+Georgia
+10
+
+USA: States:  In what state can we find Chicago?
+Illinois
+10
+
+USA: States:  In what state can we find Memphis?
+Tennessee
+10
+
+USA: States:  In what state can we find New York?
+New york
+10
+
+USA: States:  In what state can we find Phoenix?
+Arizona
+10
+
+USA: States:  In what state can we find San Francisco?
+California
+10
+
+USA: States:  In what state can we find the largest mountain?
+Alaska
+10
+
+USA: States:  In what state can we find the Mount Rushmore?
+South dakota
+10
+
+USA: States:  In what state is Las Vegas?
+Nevada
+10
+
+USA: States:  Montpelier is the capital of what state?
+Vermont
+10
+
+USA: States:  Near what city do the Mississippi and the Missouri meet?
+St.louis
+10
+
+USA: States:  Omaha is in what state?
+Nebraska
+10
+
+USA: States:  Orlando is in what state?
+Florida
+10
+
+USA: States:  Route 66 connects Los Angeles to...?
+Chicago
+10
+
+USA: States:  What city has the largest number of inhabitants?
+New york
+10
+
+USA: States:  What city is famous for it's car factories?
+Detroit
+10
+
+USA: States:  What is the capital of Minnesota?
+St.Paul
+10
+
+USA: States:  What river is the south border of Texas?
+Rio Grande
+10
+
+USA: States:  What state has no borders on land?
+Hawaii
+10
+
+USA: States:  What state has the largest land mass?
+Alaska
+10
+
+USA: States:  What state has the largest number of inhabitants?
+California
+10
+
+USA: States:  What state has the smallest number of inhabitants?
+Alaska
+10
+
+USA: States:  What state is named after the first president of the USA?
+Washington
+10
+
+USA: States:  What state is the smallest?
+Rhode island
+10
+
+USA: States:  What's Louisiana's largest city?
+New orleans
+10
+
+USA: States:  What's Pennsylvania's largest city?
+Philadelphia
+10
+
+USA: States:  What's the capital of Kansas?
+Topeka
+10
+
+USA: States:  What's the capital of Mississippi?
+Jackson
+10
+
+USA: States:  What's the capital of New york state?
+Albany
+10
+
+USA: States:  What's the capital of Virginia?
+Richmond
+10
+
+USA: States:  What's the capital of Wisconsin?
+Madison
+10
+
+USA: States:  What's the largest city in Colorado?
+Denver
+10
+
+USA: States:  What's the largest city to be found at the Westcoast?
+Los angeles
+10
+
+USA: States:  What's the U.S. northern neighbour country called?
+Canada
+10
+
+USA: States:  What's the U.S. southern neighbour country called?
+Mexico
+10
+
+USA: States:  What's Utah's largest city?
+Salt Lake City
+10
+
+USA: States:  Yellowstone National Park is in what state?
+Wyoming
+10
+
+USA: States: Capitals: hawaii?
+Honolulu
+10
+
+USA: States: Capitals: Idaho?
+Boise
+10
+
+USA: States: Capitals: Minnesota?
+St. Paul
+10
+
+USA: States: Capitals: Virginia?
+Richmond
+10
+
+USA: States: Wyoming was named after what pennsylvania town?
+Wyoming valley
+10
+
+USA: States: Yosemite Park is in which American state?
+California
+10
+
+Usa: theme park in oklahoma city?
+Frontier city
+10
+
+Usa: this oklahoma lake is fed by streams from the wichita mountains?
+Lake lawtonka
+10
+
+Use your head: how often are brain cells replaced?
+Never
+10
+
+Useless trivia:____ , a brink's car guard, was killed when $50,000 worth of quarters crushed on him
+Hrand araklein
+10
+
+Useless trivia:____ , daughter of richard nixon married David eisenhower, son of dwight eisenhower
+Julie nixon
+10
+
+Useless trivia:____ , jack klugman, diana ross, carol burnett and cher have all worn braces as adults
+Jill st. john
+10
+
+Useless trivia:____ , koalas and komodo dragons all have two penises
+Iguanas
+10
+
+Useless trivia:____ , Mexico, zambia, kiribati, fiji and egypt all have birds on their flags
+Dominica
+10
+
+Useless trivia:____ , not caffeine, are more efficient at waking up in the morning
+Apples
+10
+
+Useless trivia:____ , whales, elephants, giraffes and man all have seven neck vertebra
+Mice
+10
+
+Usenet group dedicated to discussion of brewing?
+Rec.crafts.brewing
+10
+
+Using morse code, what is transmitted using 3 dots, 3 dashes and 3 dots?
+Distress signal
+10
+
+Using morse code, what is trasmitting using 3 dots, 3 dashes and 3 dots?
+Distress signal
+10
+
+Ussr how much did David letterman pay to have miss ussr on his show?
+Four cartons
+10
+
+Utah belongs to which group of states?
+Rocky mountain
+10
+
+Uther pendragon was the father of ____
+King arthur
+10
+
+Valence when did the first man walk on the moon?
+1968
+10
+
+Valentina Tereshkova was the first woman to do what in 1963?
+Travel in space
+10
+
+Valentine in an average lifetime, the average American gives flowers 136 times on ____
+Mother's day
+10
+
+Valois wine is produced by which European country?
+Switzerland
+10
+
+Vampire Bats can hear sound frequencies which are over ____ times higher than any picked up by the human ear
+Eight
+10
+
+Vampires: Favourite place to sleep (and it's portable!)?
+Coffin
+10
+
+Vampires: Most effective spot to pierce with a wooden stake?
+Heart
+10
+
+Vampires: Muppet vampire enjoyed doing this?
+Counting
+10
+
+Vampires: Often, a vampire's pallor?
+Pale
+10
+
+Vampires: Substance required for survival?
+Blood
+10
+
+Vampires: These teeth grow especially long in vampires?
+Incisors
+10
+
+Vancouver, BC ____ people, places, things
+Nanaimo Bars
+10
+
+Vancouver, people, places and things?
+Bryan Adams
+10
+
+Vancover Island & British Columbia became one colony in?
+1866
+10
+
+Vanessa Bell was the artist sister of which writer?
+Virginia woolf
+10
+
+Vanilla flavouring is derived from which flower?
+Orchid
+10
+
+Vanilla is the extract of fermented & dried pods of several species of what?
+Orchids
+10
+
+Varietal name applied to two different minerals?
+Alabaster
+10
+
+Various methods used to prevent pregnancy from occurring?
+Birth control
+10
+
+Vasco da gama rounded the cape of good hope in what year?
+1498
+10
+
+Vast region comprising the eastern part of the Asian portion of Russia, bounded on the west by the Ural mountains; on the north by the Arctic Ocean; on the east by the Pacific Ocean; & on the south by China, Mongolia, & Kazakstan?
+Siberia
+10
+
+VCRs: DSS stands for this (Hint:Audio related)?
+Dolby surround sound
+10
+
+vcrs: nth America uses this format of tape?
+Ntsc
+10
+
+vcrs: the standard type of vcr is this (ie beta)?
+Vhs
+10
+
+vcrs: this company produces vcr's with apc(automatic picture control)?
+Sony
+10
+
+vcrs: this standard records at 1/2 normal speed?
+Long play
+10
+
+VCRs: This standard records at normal speed?
+Standard play
+10
+
+vcrs: vcr stands for this?
+Video cassette recorder
+10
+
+VCRs: VCR's with only one audio channel are known as this type?
+Mono
+10
+
+VCRs: VCR's with two audio channel's are known as this type?
+Stereo
+10
+
+Vega mechanical device that produces a force, or thrust, along the axis of rotation when rotated in a fluid, gas or liquid?
+Propeller
+10
+
+Vegetable with green or purple leaves forming a round head?
+Cabbage
+10
+
+Vegetable with greenish flower heads?
+Broccoli
+10
+
+Vegetables?
+Asparagus
+10
+
+Vegetables?
+Eggplant
+10
+
+Vehicle designed for the transportation of the sick or injured?
+Ambulance
+10
+
+Velveteen is made from a mixture of Silk and which other fibre?
+Cotton
+10
+
+Venerated by rastafarians as a God?
+Emperor Haile Selassie
+10
+
+Vermont became the 14th state of the U S in 1791, 1792 or 1793?
+1791
+10
+
+Very hard rain would pour down at the rate of about ____ miles per hour
+Twenty
+10
+
+Very small clouds that look like they have been broken off of bigger clouds are called?
+Scuds
+10
+
+VH is the civil aircraft international prefix for which country?
+Australia
+10
+
+vh1: this sexy swimsuit model hosted a 'body language' special?
+Kathy Ireland
+10
+
+Victor Emmanuel III was the last king of what country?
+Italy
+10
+
+Victor hugo's les miserables contains one of the longest sentences in the french Language: how many words?
+823 words
+10
+
+Victoria is the capital of ____
+Hong kong
+10
+
+Victoria is the capital of the ____
+Seychelles
+10
+
+Victorian women tried to enlarge their breasts by bathing in ____
+Strawberries
+10
+
+Video Games: 'secret of evermore' was entirely produced in which country?
+USA
+10
+
+Video Games: Adventure: Game series by Sierra that's 'fit for a King'?
+Kings quest
+10
+
+Video Games: Adventure: Quotes: ...and finally... FINALLY... nothing much happens. That must be an invalid code. Try again.?
+-- Answer metadata begin
+{
+    "answers": ["Space Quest IV: Roger Wilco and the Time Rippers", "Space Quest 4", "Space Quest IV"]
+}
+-- Answer metadata end
+10
+
+Video Games: Adventure: Quotes: As usual, you've been a real pantload!?
+-- Answer metadata begin
+{
+    "answers": ["Space Quest IV: Roger Wilco and the Time Rippers", "Space Quest 4", "Space Quest IV"]
+}
+-- Answer metadata end
+10
+
+Video Games: Adventure: Quotes: Consider the common graveyard. There, the boundary between the living and the dead, is... indistinct.?
+Loom
+10
+
+Video Games: Adventure: Quotes: Destiny shall draw the Lightning down from Heaven; roll its thunder far across the Sea, to where I wait upon the Shore of Wonder, on the day the Sky is Opened, and the Tree is split asunder.?
+Loom
+10
+
+Video Games: Adventure: Quotes: Don't worry, we'll return your missing abominations back into your protective care before you can read the Koran.?
+-- Answer metadata begin
+{
+    "answers": ["Sam & Max Hit the Road", "Sam and Max Hit the Road", "Sam & Max", "Sam and Max"]
+}
+-- Answer metadata end
+10
+
+Video Games: Adventure: Quotes: Ducks are meant to be eaten. Not heard.?
+Loom
+10
+
+Video Games: Adventure: Quotes: I am Chaos. Join me.?
+Loom
+10
+
+Video Games: Adventure: Quotes: I can hold my breath for ten minutes!?
+The secret of monkey island
+10
+
+Video Games: Adventure: Quotes: I haven't seen that much twine since that night in Tokyo in '68.?
+-- Answer metadata begin
+{
+    "answers": ["Sam & Max Hit the Road", "Sam and Max Hit the Road", "Sam & Max", "Sam and Max"]
+}
+-- Answer metadata end
+10
+
+Video Games: Adventure: Quotes: I like to keep it next to where my heart used to be?
+Grim fandango
+10
+
+Video Games: Adventure: Quotes: I'm not a malefactor, I'm a lagomorph!?
+-- Answer metadata begin
+{
+    "answers": ["Sam & Max Hit the Road", "Sam and Max Hit the Road", "Sam & Max", "Sam and Max"]
+}
+-- Answer metadata end
+10
+
+Video Games: Adventure: Quotes: if a woodchuck could chuck and would chuck some amount of wood, what amount of wood would a woodchuck chuck?
+-- Answer metadata begin
+{
+    "answers": ["Monkey island 2: lechuck's revenge", "monkey island 2", "lechuck's revenge"]
+}
+-- Answer metadata end
+10
+
+Video Games: Adventure: Quotes: If you try to look down my shirt one more time, I'm leaving.?
+-- Answer metadata begin
+{
+    "answers": ["Gabriel Knight: Sins of the Fathers", "Gabriel Knight"]
+}
+-- Answer metadata end
+10
+
+Video Games: Adventure: Quotes: It shone, pale as bone, as I stood there alone. And I thought to myself how the moon, that night, cast its light on my heart's true delight and the reef where her body was strewn.?
+Grim fandango
+10
+
+Video Games: Adventure: Quotes: Run, you pigeons. It's Robert Frost.?
+Grim fandango
+10
+
+Video Games: Adventure: Quotes: Sit! Eat up your stew!?
+Simon the Sorcerer
+10
+
+Video Games: Adventure: Quotes: Sometimes I do stupid stuff, and I don't even know why. As if my body were being controlled by some demented, sadistic puppet master.?
+Day of the Tentacle
+10
+
+Video Games: Adventure: Quotes: The weapons you pick up along the way help. At least they help you do less talking.?
+Full Throttle
+10
+
+Video Games: Adventure: Quotes: Think big, like the Americans. Think of bombs!?
+Indiana Jones and the Fate of Atlantis
+10
+
+Video Games: Adventure: Quotes: This must be that Woodstock place Mom and Dad are always talking about!?
+Day of the Tentacle
+10
+
+Video Games: Adventure: Quotes: Violets are blue. Roses are read. We're coming aboard. Prepare to eat lead.?
+-- Answer metadata begin
+{
+    "answers": ["Monkey island 2: lechuck's revenge", "monkey island 2", "lechuck's revenge"]
+}
+-- Answer metadata end
+10
+
+Video Games: Adventure: Quotes: WARNING: Do not play in or around dumpster. Do not kick dumpster. Do not sleep in dumpster. Usage of this dumpster for the disposal of human remains, may be a violation of local health ordinances.?
+Full Throttle
+10
+
+Video Games: Adventure: Quotes: You make me think somebody already did.?
+The secret of monkey island
+10
+
+Video Games: Adventure: Quotes: You unlock the door. Tada! That's 500 points; you're halfway through the game.?
+Freddy Pharkas, Frontier Pharmacist
+10
+
+Video Games: Adventure: Quotes: You're looking hale and hearty, lil' buddy.?
+-- Answer metadata begin
+{
+    "answers": ["Sam & Max Hit the Road", "Sam and Max Hit the Road", "Sam & Max", "Sam and Max"]
+}
+-- Answer metadata end
+10
+
+Video Games: Advertised briefly as the bloodiest video game in existence?
+Mortal kombat
+10
+
+Video Games: atari competitor that featured better graphics?
+Intellevision
+10
+
+Video Games: CEO of Origin's nickname, also a character in the Ultima series?
+Lord British
+10
+
+Video Games: Company that made Atari games like Kaboom and Megamania?
+Activision
+10
+
+Video Games: Final Fantasy Legend 1-3 are known in Japan as what?
+SaGa 1-3
+10
+
+Video Games: First person shooter with true 3D movement by Interplay?
+Descent
+10
+
+Video Games: Gran Turismo is exclusive to 1 console, what is it?
+Sony Playstation
+10
+
+Video Games: How many buttons (excluding the control pad) did the original NES controller have?
+Four
+10
+
+Video Games: How many fighters are playable in 'Street Fighter II'?
+Eight
+10
+
+Video Games: How many gears do you have in 'Pole Position'?
+Two
+10
+
+Video Games: How many levels are there in Doom II?
+32
+10
+
+Video Games: How much money do you start with in the game 'Wall Street Kid'?
+$500,000
+10
+
+Video Games: If you're killing a goomba, what game are you playing?
+Super Mario Bros
+10
+
+Video Games: In 'Adventure', which castle had a dark maze in it when you played on any but the easiest difficult level?
+The Black Castle
+10
+
+Video Games: In 'Pac-Man' for the Atari 2600, how many points were each pellet worth?
+One
+10
+
+Video Games: In Adventure, which castles require the bridge to explore fully?
+Black and White Castles
+10
+
+Video Games: In Sonic the Hedgehog, the character Knuckles is what species?
+Echidna 
+10
+
+Video Games: In Super Mario Bros. 2, how many extra lives do you get for spinning three 7s on the slot machine?
+Ten
+10
+
+Video Games: in the 'extreme battle' mini-game in 'resident evil 2', what characters are selectable?
+Claire
+10
+
+Video Games: In the computer game 'super mario land', who is mario's sidekick?
+Luigi
+10
+
+Video Games: In the game 'banjo-kazooie' what is the witch's name?
+Gruntilda
+10
+
+Video Games: In the game 'banjo-kazooie' who is tooty's big brother?
+Banjo
+10
+
+Video Games: In the game 'banjo-kazooie', who is banjo's little sister?
+Tooty
+10
+
+Video Games: in the game joust, what animal was your mount?
+An ostritch
+10
+
+Video Games: in the intro movie of 'xenogears', what message appears over and over again on the ship's monitors?
+Ye shall be as gods
+10
+
+Video Games: In the Mystical Ninja series, who is Goemon's sidekick?
+Ebisumaru
+10
+
+Video Games: In the original All-C Saga game, who kills Mandy and Matthew?
+Simetra
+10
+
+Video Games: In the original Kingdom Hearts, who is Sora looking for?
+Kairi
+10
+
+Video Games: In the Sonic the Hedgehog series, what serves as your energy?
+Rings
+10
+
+Video Games: in ultimate mortal kombat 3, what animal does mileena turn into in her animality?
+A skunk
+10
+
+Video Games: In what game did Mario make his first appearance?
+Donkey Kong
+10
+
+Video Games: In what game do you collect Jiggies, Jinjos, and Feathers (amongst other things)?
+Banjo-Kazooie
+10
+
+Video Games: In what series of video games did Master Chief appear?
+Halo
+10
+
+Video Games: In which Mega Man game did Mega Man first gain the ability to charge up his shots?
+Mega Man 4
+10
+
+Video Games: Konami's classic shooter Salamander is better known in the U.S. as what?
+Life Force
+10
+
+Video Games: Lara Croft is a character in which computer game?
+Tomb raider
+10
+
+Video Games: Lucas Arts' very popular space shooter?
+Rebel assault
+10
+
+Video Games: Manjimaru is the main character of which game?
+Kabuki Klash
+10
+
+Video Games: Manufacturer of the 2600 and 5200 video game systems?
+Atari
+10
+
+Video Games: Mario first starred in this game against a giant gorilla?
+Donkey kong
+10
+
+Video Games: Mega Man's traditional nemesis in the Mega Man series is whom?
+Dr. Wily
+10
+
+Video Games: Music: who created the music for n2o- nitrous oxide?
+The crystal method
+10
+
+Video Games: Music: Who is the famed musical director for Square's Final Fantasy series?
+Nobuo Uematsu
+10
+
+Video Games: Name all of the main characters from each Final Fantasy game, in order (Final Fantasy 2 and 4-10 only)?
+Frionel,Cecil,Butz,Terra,Cloud,Squall,Zidane,and Tidus
+10
+
+Video Games: name all of the main characters from each final fantasy game?
+Frionel
+10
+
+Video Games: Name all the playable characters from Final Fantasy VII?
+Cloud
+10
+
+Video Games: Name the final boss from each Final Fantasy game (1-8, in that order)?
+Chaos, Emperor from Hell, Dark Cloud, Zeromus, Deathgyunos, Kefka, Sephiroth, and Ultimecia
+10
+
+Video Games: Nintendo's mascot, Mario, has a last name. What is it?
+Mario
+10
+
+Video Games: Nolan Bushnell, creator of the first arcade game, also founded the video arcade chain now known as what?
+Chuck E. Cheese's
+10
+
+Video Games: On what non-Nintendo console can you find Zelda games?
+Philips CD-I
+10
+
+Video Games: One of the first 3-D screen games, it had a ship resembling the space shuttle?
+Zaxxon
+10
+
+Video Games: One of the first 4-player, speech synthesizer games, featured Valkyrie and Elf?
+Gauntlet
+10
+
+Video Games: One of the most popular in gaming history, featuring the BFG 9000?
+Doom
+10
+
+Video Games: Popular Computer Games?
+Doom
+10
+
+Video Games: Samus Aran is the femme-fatale of which series of games?
+Metroid
+10
+
+Video Games: Sid Meir's revolutionary strategy game of epic proportions?
+Civilization
+10
+
+Video Games: Tetris game where the object is to stack objects on people's heads?
+Hatris
+10
+
+Video Games: The enemy, 'cat-like' race in Wing Commander?
+Kilrathi
+10
+
+Video Games: The Hylians come from what game series?
+The Legend of Zelda
+10
+
+Video Games: The Minus World of Super Mario Bros. is a never-ending version of what stage?
+2-2
+10
+
+Video Games: The Nintendo 64 was titled under what name during production?
+Project Reality
+10
+
+Video Games: The Sega Genesis game about two lost aliens looking for their spaceship was called what?
+ToeJam and Earl
+10
+
+Video Games: This adventure game series stars Roger Wilco?
+Space quest
+10
+
+Video Games: This hugely popular game was created by two brothers, aka Cyan?
+Myst
+10
+
+Video Games: This revolutionary, first person game was set in a Nazi stronghold?
+Wolfenstein 3d
+10
+
+Video Games: Video Games: In the game 'banjo-kazooie', what is gruntilda?
+Witch
+10
+
+Video Games: What alternate dimension does Link find himself in in Majora's Mask?
+Termina
+10
+
+Video Games: What arcade game did Shigeru Miyamoto design Donkey Kong as a replacement for?
+Radarscope
+10
+
+Video Games: What are names of the two brothers in the Double Dragon games?
+Billy and Jimmy
+10
+
+Video Games: What color is the 1-up mushroom in Super Mario Bros.?
+Green
+10
+
+Video Games: What did the letters in ROB (the old NES peripheral) stand for?
+Robotic Operating Buddy
+10
+
+Video Games: What do you need to collect 100 of to get an extra life in Super Mario Bros.?
+Coins
+10
+
+Video Games: What entertainment product did Nintendo make before entering the video game business?
+Playing cards
+10
+
+Video Games: What fuzzy animal does Croc rescue?
+The Gobbos
+10
+
+Video Games: What game mixed both Disney characters with Final Fantasy characters?
+Kingdom Hearts
+10
+
+Video Games: What game takes place on the fantastic island of Koholint?
+Link's Awakening
+10
+
+Video Games: What happened to the innocent residents of the Mushroom Kingdom when Bowser Koopa took over?
+They became bricks and powerup blocks
+10
+
+Video Games: What is Celine Jules's (Star Ocean- The Second Story) favorite food?
+Baby rabbit risotto
+10
+
+Video Games: What is Mario's profession?
+Plumber
+10
+
+Video Games: What is Mario's surname?
+Mario
+10
+
+Video Games: What is Ozzie's hyper sister's name in the original 'All-C Saga' game?
+Treli
+10
+
+Video Games: What is the development team at Nintendo headed by Shigeru Miyamotocalled?
+EAD
+10
+
+Video Games: What is the most powerful whip in 'Castlevania 2'?
+Flame Whip
+10
+
+Video Games: What is the name of the cloud-riding, glasses-wearing koopa in the Super Mario Bros. series?
+Lakitu
+10
+
+Video Games: What is the name of the Playstation controller that uses two analog joysticks?
+Dual Shock
+10
+
+Video Games: what is the name of the star fox team's cocky wingman?
+Falco lombardi
+10
+
+Video Games: What is the name of the video game inspired by the movie Alien?
+Xenophobe
+10
+
+Video Games: What is the signature move of the Bombs in the Final Fantasyseries?
+Exploder
+10
+
+Video Games: What is your character's name in the 'Legend of Zelda' series?
+Link
+10
+
+Video Games: what item's sound effect was removed from smash brothers when it was ported from Japan to the united states?
+The beam sword
+10
+
+Video Games: what member of the original starfox team betrays the group to join starwolf?
+Pigma dengar
+10
+
+Video Games: what new female fighter is introduced in 'virtua fighter 4'?
+Vanessa lewis
+10
+
+Video Games: What object did you need to get to the secret room in Atari's 'Adventure'?
+The dot
+10
+
+Video Games: What special track is unlocked in 'Excite Bike 64' if you finish the tutorial?
+Classic NES Excite Bike
+10
+
+Video Games: What video game made the Golden Gun famous?
+Goldeneye
+10
+
+Video Games: what video game starts out with koma pigs stealing your treasured bracelet?
+Tomba
+10
+
+Video Games: What was Mario's original name?
+Jumpman
+10
+
+Video Games: What was Nintendo's first Arcade game?
+Radarscope
+10
+
+Video Games: What was the first Arcade game ever released?
+Computer Space
+10
+
+Video Games: What was the first cartridge that had a battery backed save feature?
+The Legend of Zelda
+10
+
+Video Games: What was the first game created by Rare?
+Slalom
+10
+
+Video Games: What was the first home console system released by Sega?
+Sega Master System
+10
+
+Video Games: What was the hybrid pinball/video game in the Pac-Man series?
+Baby Pac-Man
+10
+
+Video Games: When was the first 'Final Fantasy' created?
+1987
+10
+
+Video Games: Whenever I smell asphalt, I think of?
+Maureen
+10
+
+Video Games: Which body part is found in Bodley Mansion in 'Castlevania II- Simon's Quest'?
+An eye
+10
+
+Video Games: Which character was introduced in 'Super Street Fighter II'?
+Cammy
+10
+
+Video Games: Which company made the original 'Donkey Kong'?
+Nintendo
+10
+
+Video Games: Who invented Tetris?
+Alexey Pazhitnov
+10
+
+Video Games: Who is Mega Man's creator?
+Dr. Light
+10
+
+Video Games: Who is Mega Man's sister?
+Roll
+10
+
+Video Games: Who is the boss of the SNES game, 'Ranma 1/2- SUPER Hard Battle'?
+Herb
+10
+
+Video Games: Who is the developer at Nintendo responsible for classics like Donkey Kong, Super Mario Bros., and The Legend of Zelda?
+Shigeru Miyamoto
+10
+
+Video Games: Who is the first gym leader you fight in 'Pokemon' for the Game Boy?
+Brock
+10
+
+Video Games: Who is the main character from Final Fantasy IX?
+Zidane Tribal
+10
+
+Video Games: Who is the main character from Final Fantasy VII?
+Cloud Strife
+10
+
+Video Games: Who is the main character from Nintendo's 'Earthbound'?
+Ness
+10
+
+Video Games: Who is the main character in Kingdom Hearts?
+Sora
+10
+
+Video Games: Who is the main character in the 'DeathQuest' series?
+Lucretzia
+10
+
+Video Games: Who is the main character of Final Fantasy VIII?
+Squall Lionheart
+10
+
+Video Games: who is the third opponent in 'super smash brothers'?
+Fox mccloud
+10
+
+Video Games: Who manufactured the first home video game system?
+Magnavox
+10
+
+Video Games: Who programmed Roller Coaster Tycoon?
+Chris Sawyer
+10
+
+Video Games: Who was Sega's mascot?
+Sonic the Hedgehog
+10
+
+Video Games: Who was the main character in the original 'Street Fighter'?
+Ryu
+10
+
+Vienna is the capital of ____
+Austria
+10
+
+Vientiane is the capital of ____
+Laos
+10
+
+Vietnam, laos, cambodia, thailand and malaysia is known by what name?
+Indochina
+10
+
+Vietnam, laos, cambodia, thailand and malaysia, were influenced by who in early times?
+China and India
+10
+
+Vigesimal is which base numbering system?
+Base twenty
+10
+
+Vikings what was the nickname given to the minnesota vikings' defensive unit?
+Purple
+10
+
+Vince Lombardi & Brian Picollo both died in ____
+1970
+10
+
+Vincent Minelli directed which Oscar winning musical in 1958?
+Gigi
+10
+
+Vincent Van Gogh sold exactly one painting while he was alive, what was it?
+Red vineyard at arles
+10
+
+Vinnie Jones is associated with which sport?
+Football
+10
+
+Virago is the name of a publisher of feminist books but what does the word actually mean?
+Loud,violent and bad tempered woman
+10
+
+Virginia woolf what two rivers join forces on the outskirts of st louis?
+Missouri and
+10
+
+Viscous black liquid produced in the destructive distillation of coal to make coke & gas?
+Coal tar
+10
+
+Vissi D'Arte is a famous aria from a Puccini opera in which the eponymous heroine is an opera singer. Name the opera?
+Tosca
+10
+
+Visual representation of individual people, distinguished by references to the subject's character, social position, wealth, or profession?
+Portraiture
+10
+
+Vodka, milk, coca-cola and kahula mixed together makes this?
+Vodka Paralyser
+10
+
+Voiceless it cries, wingless it flutters, toothless it bites, mouthless it mutters?
+The wind
+10
+
+Volcanic lake in Romania:?
+Lake st ana
+10
+
+von ebner's gland may be found in this part of the human body?
+Tongue
+10
+
+Voted best band in the world and best act of the millenium in kerrang magazine in 1999 name the band?
+Black sabbath
+10
+
+War heroine violette bushell was better known by her married surname - what is it?
+Szabo
+10
+
+War: 1950-1953?
+Korean
+10
+
+Warm current of the North Atlantic ocean, flowing in a generally northeastern direction from the straits of Florida to the grand banks, east & south of Newfoundland?
+Gulf stream
+10
+
+Warren harding's v.p?
+Calvin coolidge
+10
+
+Warsaw is the capital of ____
+Poland
+10
+
+Was richmal crompton a man or woman?
+Woman
+10
+
+Was the battle of jutland a land, sea or air battle?
+Sea battle
+10
+
+Watches Brand names?
+Longines
+10
+
+Water containing carbon dioxide under pressure is called ____ ____
+Soda water
+10
+
+Water filled tank, usually with glass sides, in which aquatic plants & animals, particularly fish, are kept?
+Aquarium
+10
+
+Water found below the surface of the land?
+Groundwater
+10
+
+Water freezes at ____ degrees Celcius
+-- Answer metadata begin
+{
+    "answers": ["Zero", "0"]
+}
+-- Answer metadata end
+10
+
+Water in vapor state, used in the generation of power & on a large scale in many industrial processes?
+Steam
+10
+
+Wax colouring stick?
+Crayon
+10
+
+Wax like substance from the sperm whale used in perfumes?
+Ambergris
+10
+
+Way Religious phenomenon in which a message is sent by God (or by a god) to human beings through an intermediary, or prophet?
+Prophecy
+10
+
+Way who lived on bonnie meadow way in new rochelle?
+Rob and laura petrie
+10
+
+Wayne rogers plays this character in house calls?
+Charlie michaels
+10
+
+WD-40 Company products are sold in more than ____ countries around the world
+150
+10
+
+We all know the phrase- the global village, but where is it from?
+The gutenberg galaxy
+10
+
+Weapon consisting of a long, sharp edged or pointed blade fixed in a hilt (a handle that usually has a protective guard at the place where the handle joins the blade)?
+Sword
+10
+
+Weapon resembling a short sword or a dagger, designed to be attached to the muzzle of a rifle or musket?
+Bayonet
+10
+
+Weather: 34-40 knots wind speed signifies what weather condition?
+Gale
+10
+
+Weather: in summer, the average maximum temperature in new zealand ranges between?
+20-30 c
+10
+
+Weather: the highest temperature ever recorded in new zealand was?
+42 c
+10
+
+Weather: the lowest temperature ever recorded in new zealand was?
+-22 c
+10
+
+Weather: what's the boundary between two air masses called?
+A front
+10
+
+Wedding rings are normally worn on what finger of your hand?
+Ring finger
+10
+
+Weight carrying structure that can travel through the air, supported either by its own buoyancy or by the dynamic action of the air against its surfaces?
+Aircraft
+10
+
+Weissmuller what do you call the hollow spaces in the bones surrounding your nose?
+Sinuses
+10
+
+Well known places (start with A)?
+Amsterdam
+10
+
+Well-to-do parents were temporarily resident?
+Florence nightingale
+10
+
+Well, Blow me Down!: What was the name of Popeye's adopted son?
+Swee'Pea
+10
+
+Welsh mercenary bowmen in the medieval period only wore one ____ at a time
+Shoe
+10
+
+Welsh rabbit is a food made from?
+Bread
+10
+
+Were can you find the hanging gardens?
+Babylon
+10
+
+Were ignition keys first used to start cars in 1910, 1936 or 1949?
+1949
+10
+
+Were is pop singer bryan adams from?
+Canada
+10
+
+Western civilization discovered aluminium in 1727, 1787 or 1827?
+1827
+10
+
+Western U.S. States?
+Washington
+10
+
+Western United States?
+Montana
+10
+
+Westminster Abbey was originally a monastery of which order of monks?
+Benedictines
+10
+
+Wha is the highest fence in the grand national?
+The chair
+10
+
+Whales can't swim?
+Backwards
+10
+
+Whales increase in weight 30,000,000,000 times in their first ____ years
+Two
+10
+
+Whare would you find a dog with no legs?
+Where you left him
+10
+
+What '27 baseball team had a crew of heavy hitters called murderer's row?
+New
+10
+
+What 'outlaw's' first hit was luchenbach, texas?
+Waylon jennings
+10
+
+What 'saturday night live' star played in the film 'stripes'?
+Bill murray
+10
+
+What 'Y' usually has 365 but sometimes 366?
+Year
+10
+
+What 'Z' is far-out humour?
+Zany
+10
+
+What % of men did not read a single book last year?
+33%
+10
+
+What 1,300- foot column of basalt do wyoming indians want to keep people from climbing?
+Devil's tower
+10
+
+What 100 plus island group includes palm island and mustique?
+Grenadines
+10
+
+What 10cc song got to nuber 1in 1978?
+Dreadlock holiday
+10
+
+What 10th century ohemian King became a hero at the hands of Victorian hymn writer JM Neale?
+King wenceslas
+10
+
+What 17th century explorer was buried with a pipe and a box of tobacco?
+Sir walter raleigh
+10
+
+What 1839 innovation changed the face of mail delivery?
+The envelope
+10
+
+What 1872 presidential candidate founded the New York tribune in 1841?
+Horace greeley
+10
+
+What 18th century tourist attraction is at the end of berlins Unter den Linden?
+Brandenburg gate
+10
+
+What 1902 children's book continues to sell over 50,000 copies per year?
+The tale of peter rabbit
+10
+
+What 1920's cowboy star rode tony the wonder horse?
+Tom mix
+10
+
+What 1936 quasi-documentary has been known as tell your children, doped youth and love madness?
+Reefer madness
+10
+
+What 1937 movie was seen by 20 million within three months of its release?
+Snow white and the seven dwarfs
+10
+
+What 1942 movie did the song white christmas come from?
+Holiday inn
+10
+
+What 1942 naval engagement saw the sinking of four Japanese aircraft carriers?
+Midway
+10
+
+What 1949 book was a bestseller 35 years later?
+1984
+10
+
+What 1950 film class was nominated for a record 14 oscars and won six?
+All About Eve
+10
+
+What 1954 movie pushed rock 'n' roll into the social mainstream and made for an entire generation of terrified parents?
+The Blackboard Jungle
+10
+
+What 1955 fad was good for New York City fur dealers?
+Coonskin hats
+10
+
+What 1956 film was cecil b. demille's last?
+The ten commandments
+10
+
+What 1960 movie inspired the rash of beach party movies?
+Where the boys are
+10
+
+What 1968-69 tv series did joan blondell star in?
+Here come the brides
+10
+
+What 1968-71 tv series did ken berry star in?
+Mayberry rfd
+10
+
+What 1969 film did glenn campbell appear in?
+True grit
+10
+
+What 1969 john fowles novel centered on abandoned mistress sarah woodruff?
+The french lieutenant's woman
+10
+
+What 1969 sex spoof had a different author for every chapter?
+Naked came the stranger
+10
+
+What 1970 film tells of the soaring relationship of a boy and a kestrel?
+Kes
+10
+
+What 1970 movie hit was banned on military bases?
+Mash
+10
+
+What 1970's tv series gave larry hagman his start?
+I dream of genie
+10
+
+What 1971 series depicted robert powell as a scientific watchdog?
+Doomwatch
+10
+
+What 1972 connoisseur's guide opened with a chapter called starters and included main courses, sauces and pickles, and problems?
+The joy of sex
+10
+
+What 1972 film was shot on location on the chattooga river in the appalachians?
+Deliverance
+10
+
+What 1972 musical saw David essex as jesus christ?
+Godspell
+10
+
+What 1979 tv series did james best appear in?
+Dukes of hazzard
+10
+
+What 1980 vietnam flick was re-released in 1987?
+Apocalypse now
+10
+
+What 1980's tv series starred bruce willis?
+Moonlighting
+10
+
+What 1982 film starred nick nolte and eddie murphy?
+48 hours
+10
+
+What 1982 horror film starred JoBeth Williams as a woman whose youngest child is carried off into a TV set?
+Poltergeist
+10
+
+What 1982 movie stars Henry winkler as a morgue attendant?
+Night shift
+10
+
+What 1988 movie reunited william hurt and kathleen turner?
+Accidental tourist
+10
+
+What 1994 olympic gold-winning figure skater was an orphan?
+Oksana baiul
+10
+
+What 1998 film broke the opening weekend box-office record?
+The waterboy
+10
+
+What 19th century novelist spent his last days as an inspector at New York's Customs House?
+Herman Melville
+10
+
+What 19th century war between Russia and England, turkey, britain and france, was named for a peninsula in the black sea?
+Crimean war
+10
+
+What 19th-century humourist cabled home from europe: 'the report of my death was an exaggeration'?
+Mark twain
+10
+
+What 2 countries border the Dead Sea?
+Israel and jordan
+10
+
+What 2 countries lie closest to Antarctica?
+Argentina and chile
+10
+
+What 2 countries share the Khyber pass?
+Afghanistan and pakistan
+10
+
+What 2 drinks make a spritzer?
+White wine and soda
+10
+
+What 2 products did Frederich Albrecht Winzer extract in one process from coal?
+Gas and coke
+10
+
+What 2 skills make up the winter biathlon?
+Cross country skiing and target shooting
+10
+
+What 2 word title has provided the title for 12 American chart records?
+Hold on
+10
+
+What 2 words do most of the episodes of friedns begin with?
+The one
+10
+
+What 20th century monarch reigned only 325 days?
+Edward viii
+10
+
+What 20th-century American president was so obsessed with secrecy that he often wrote 'burn this' on personal letters?
+Lyndon johnson
+10
+
+What 25 year old ex presidential daughter announced plans to marry in 1993?
+Amy carter
+10
+
+What 265m high peak is located in wyoming?
+Devil's tower
+10
+
+What 38 years old heavyweight couldn't answer the 11th round bell in 1980?
+Muhammad ali
+10
+
+What 42 year old Panamanian boxer won his 89th pro fight in 1993?
+Roberto duran
+10
+
+What 80's cartoon theme song did Ricky Martin sing?
+Rubic-the Amazing Cube
+10
+
+What 80's cartoon was a showcase for 'New Wave' Music videos?
+Kidd Video
+10
+
+What 80's movie did michael keaton squeeze the biggest bucks from?
+Beetlejuice
+10
+
+What 80's Pro-Wrestler was turned into a G.I. Joe character?
+Sgt. Slaughter
+10
+
+What 80's spin off of a 70's tv show did Martin Lawrence play on?
+What's Happening Now
+10
+
+What 80s show is Frasier a spinoff of?
+Cheers! 
+10
+
+What abbreviation come from libra, meaning pound in latin?
+Lb.
+10
+
+What abbreviation comes from libra, meaning pound in Latin?
+Lb
+10
+
+What ability has the silkworm moth lost through domestication?
+Flight
+10
+
+What Aboriginal boxer died in an accident while training for a world title fight?
+Dave Sands
+10
+
+What academic title did nazi propaganda minister josef goebbels hold?
+Doctor
+10
+
+What according tho Edward Young and headmasters the world over,is the thief of time?
+Procrastination
+10
+
+What according to Margaret Thatcher would the government ban from being put into British fridges?
+Chlorofluorocarbons
+10
+
+What acid is produced in the stomach?
+Hydrochloric
+10
+
+What acid is the cause of a nettles sting?
+Formic
+10
+
+What act was called DORA?
+Defence of the realm act
+10
+
+What activity is it helpful to have a green thumb in?
+Gardening
+10
+
+What activity might include the cobra,the camel,the locust and the plough?
+Yoga
+10
+
+What activity other than hopping do kangaroos excel at?
+Biting
+10
+
+What activity traditionally takes place under mistletoe?
+Kissing
+10
+
+What actor authored the 1978 historical book the outlaw trail?
+Robert redford
+10
+
+What actor filled in as a big brother on the Junior camper river-rafting trip?
+Ernest Borgnine 
+10
+
+What actor heartthrob was born michael shalboub in 1932?
+Omar sharif
+10
+
+What actor is one of the world's top professional Bridge players?
+Omar Sharif
+10
+
+What actor or actress from tv's 'cheers' made and appearance in 'the empire strikes back'?
+John ratzenberger
+10
+
+What actor played batman in the first batman movie?
+Keaton
+10
+
+What actor played benson?
+Robert guillaume
+10
+
+What actor played charlie, the border patrol guard, in the border?
+Jack nicholson
+10
+
+What actor played george cooper in my favorite husband?
+Barry nelson
+10
+
+What actor played Harry callahan?
+Clint eastwood
+10
+
+What actor played john wayne's son in red river?
+Montgomery clift
+10
+
+What actor played lt frank ballinger in m squad?
+Lee marvin
+10
+
+What actor played seven roles in no way to treat a lady?
+Rod steiger
+10
+
+What actor played socrates miller in the people's choice?
+Jackie cooper
+10
+
+What actor played the lead in the remake of breathless?
+Richard gere
+10
+
+What actor played the psychopath hitchhiker in the hitcher?
+Rutger hauer
+10
+
+What actor played the title role in monsignor?
+Christopher reeve
+10
+
+What actor played trapper john, md?
+Pernell roberts
+10
+
+What actor plays al bundy on the tv show 'married with children'?
+Oneil
+10
+
+What actor portrayed neil brock in the drama series east side/west side?
+George c scott
+10
+
+What actor portrayed pretty boy floyd in young dillinger?
+Robert conrad
+10
+
+What actor tried his hand at recording with the 1962 entry old rivers?
+Walter brennan
+10
+
+What actor was freshman college roommate to al gore?
+Tommy lee jones
+10
+
+What actor was married to carole lombard between 1939 to 1942?
+Clark gable
+10
+
+What actor was on stage when the 1974 academy awards were streaked?
+David niven
+10
+
+What actor was one of the world's top professional bridge players?
+Omar sharif
+10
+
+What actor's real name is Maurice Micklewhite?
+Michael Caine
+10
+
+What actress and singer is part Armenian,part red Indian, a fromer Ronette and a vogue model?
+Cher
+10
+
+What actress had the role of the mother in six weeks?
+Mary tyler moore
+10
+
+What actress has received the most oscar nominations?
+Hepburn
+10
+
+What actress hold the record for the biggest gap between oscar wins, with 38 years between her best actress and best supporting actress statuette?
+Helen Hayes
+10
+
+What actress made 10million by the age of 10?
+Shirley temple
+10
+
+What actress played jane foster in the series east side/west side?
+Cicely tyson
+10
+
+What actress played jane miller in the good life?
+Donna mills
+10
+
+What actress played Laura and Almonzo's niece on Little House on the Prairie?
+Shannen Doherty 
+10
+
+What actress played mrs margaret williams in the danny thomas show?
+Jean hagen
+10
+
+What actress played rhoda?
+Valerie harper
+10
+
+What actress played sarah in the movie the bible?
+Ava gardner
+10
+
+What actress played the female cop on hill street blues?
+Betty thomas
+10
+
+What actress portrayed cassie cranston in the sitcom it's a living?
+Ann jillian
+10
+
+What actress starred in America gigolo?
+Lauren hutton
+10
+
+What actress starred in haywire?
+Lee remick
+10
+
+What actress starred in playing for time?
+Vanessa redgrave
+10
+
+What actress was born frances ethel gumm?
+Judy garland
+10
+
+What actress wrote the autobiography call me anna?
+Patty duke
+10
+
+What actress's legs were insured for one million dollars?
+Greta garbo
+10
+
+What adjective describes an animal that eats both plants and animals?
+Omnivorous
+10
+
+What adjective is used to describe trees which shed their leaves periodically?
+Deciduous
+10
+
+What adjective means 'of the North wind' or 'of the North'?
+Boreal
+10
+
+What adjective was used to describe the flavour of Beech-Nut Gum?
+Flavorific
+10
+
+What ads stopped being shown on television during the 1970's?
+Cigarette
+10
+
+What aerosmith song was written about vince neil of motley crue?
+Dude looks like a lady
+10
+
+What aesop animal assumed the grapes he couldnt reach were sour anyway?
+Fox
+10
+
+What affectionate nickname did Princess Diana have for Prince Charles?
+Fishface
+10
+
+What african animal kills the most people?
+Crocodile
+10
+
+What african city is built on gold?
+Johannesburg
+10
+
+What African country is alphabetically first?
+Algeria
+10
+
+What african country is home to air ivoire?
+Ivory coast
+10
+
+What African country was founded by freed American slaves in 1847?
+Liberia
+10
+
+What African fly transmits sleeping sickness?
+Tsetse fly
+10
+
+What african mountain is known as the mountain of the cold devils?
+Mount kilimanjaro
+10
+
+What african nation gave independence to eritrea in 1993?
+Ethiopia
+10
+
+What african nation won its independence from ethiopia in 1993?
+Eritrea
+10
+
+What African peak is known as The Mountain of the Cold Devils?
+Kilimanjaro
+10
+
+What African relative of the pig can weigh four tonnes?
+Hippopotamus
+10
+
+What African republic's name was inspired by its thriving elephant tusk trade?
+The Ivory Coast
+10
+
+What age did karen carpenter reach?
+32
+10
+
+What age did mozart become director of concerts for the archbishop of salzburg?
+13
+10
+
+What age does a filly become a mare at?
+Five
+10
+
+What age is adolescence considered to end at?
+Eighteen
+10
+
+What age of exploration began october 4, 1957?
+Space age
+10
+
+What age preceded the iron age?
+Bronze age
+10
+
+What aging male tennis player did Billie Jean King play in a battle of the sexes?
+Bobby Riggs
+10
+
+What aid to cooking was first manufactured by mark gregoire in 1954?
+Non stick pans
+10
+
+What aid to grooming was invented by Col Jacob Schick in 1928?
+Electric razor
+10
+
+What ailing founding father was carted to the Constitutional Convention in a sedan chair carried by four prisoners?
+Benjamin franklin
+10
+
+What airborne predator was the first animal to be put on the endangered species list?
+The peregrine falcon
+10
+
+What airline is Queensland and Northern Territory Aerial Services?
+Qantas
+10
+
+What airline is the westin hotel chain associated with?
+United
+10
+
+What airplane first broke the 'sound barrier'?
+X-1
+10
+
+What airport in uganda was the scene of a rescue drama in 1977?
+Entebbe
+10
+
+What airport is identified by dfw?
+Dallas fort worth
+10
+
+What airport is on the Piccadilly subway line?
+Heathrow
+10
+
+What airport lies across the channel from Rikers Island Penitentiary?
+La guardia
+10
+
+What airport saw Israeli commandos free 103 hostages on July 4th 1976?
+Entebbe
+10
+
+What alabama city is called the cradle of the confederacy?
+Montgomery
+10
+
+What album by george michael won the grammy in 1988?
+Faith
+10
+
+What album got arrowsmith a gold lp in 1975?
+Get your wings
+10
+
+What alcoholic beverage is made from honey and water?
+Mead
+10
+
+What alcoholic drink is distilled from molasses?
+Rum
+10
+
+What Alex Haley manuscript fetched at a 1992 auction?
+The autobiography of malcolm x
+10
+
+What alice cooper album simulated an execution during a song?
+Killer
+10
+
+What alkaloid is derived principally from the bark of the cinchona tree?
+Quinine
+10
+
+What allowed Mexican, andean and some north American indians to hurl their spears a great distance?
+Atlatl
+10
+
+What alloy do copper and tin form?
+Bronze
+10
+
+What alloy do tin and lead form?
+Pewter
+10
+
+What Alpine country's women got the right to vote in 1971?
+Switzerland
+10
+
+What alternative name is given to the barn owl because of its harsh cry?
+Screech owl
+10
+
+What American building is the largest office building in the world?
+Pentagon
+10
+
+What American city did Cadillac found?
+Detroit
+10
+
+What American city is prone to strong winds?
+Chicago
+10
+
+What American dice rolling game can be won with an initial throw of seven or eleven?
+Craps
+10
+
+What American federal holiday falls the second monday in october?
+Columbus day
+10
+
+What American feminist went bust as a silver dollar?
+Susan B. Anthony
+10
+
+What American Indian tribe drank 'tizwin'?
+Apache
+10
+
+What American playwright titled his autobiography Timebends?
+Arthur miller
+10
+
+What American president had a marijuana patch in his backyard?
+George Washington
+10
+
+What American president had the biggest feet?
+George Washington
+10
+
+What American president made the decision to use the atom bomb?
+Harry truman
+10
+
+What American president was a peanut farmer?
+Jimmy carter
+10
+
+What American spoiled Hitler's Aryan dream at the 1936 Olympics?
+Jesse owens
+10
+
+What American sport sees pennant winners playing off in a world series?
+Baseball
+10
+
+What American state capital is found on the island of oahu?
+Honolulu
+10
+
+What American state did English clergyman Roger Williams found?
+Rhode island
+10
+
+What American state has no houseflies?
+Alaska
+10
+
+What American state has the highest per capita personal income?
+Connecticut
+10
+
+What American state is Dodge City in?
+Kansas
+10
+
+What American state is famous for its black hills?
+South dakota
+10
+
+What American state is Memphis in?
+Tennessee
+10
+
+What American state's capital is Indianapolis?
+Indiana
+10
+
+What American tv show centred on the cleaver family?
+Leave it to beaver
+10
+
+What American university provides the setting for love story?
+Harvard
+10
+
+What amphibians do you raise if you run a ranarium?
+Frogs
+10
+
+What anagram of 'English' is at home on the beach?
+Shingle
+10
+
+What ancient greek had the world on his shoulders?
+Atlas
+10
+
+What ancient hunting weapon did the aborigines of Australia employ?
+Boomerang
+10
+
+What ancient man's brain was larger than that of modern man?
+Neanderthal
+10
+
+What ancient measure is the distance from the elbow to the tip of the middle finger?
+Cubit
+10
+
+What ancient measure was the distance from the elbow to the tip of the middle finger?
+Cubit
+10
+
+What ancient middle east kingdom spread to it's greatest extent under king ashurnasirpal in 663 bc?
+Assyria
+10
+
+What ancient middle east kingdom spread to it's greatest extent under?
+King 
+10
+
+What ancient people started mining and smelting coper ore, in 5000 BC?
+The Egyptians
+10
+
+What ancient people were the first to keep records of lunar eclipses?
+The Mesopotamians
+10
+
+What ancient sovereign married two of her brothers?
+Cleopatra
+10
+
+What and where is the longest group of coral reefs in the world?
+Great barrier reef
+10
+
+What anesthetic did wt morton introduce in 1846?
+Ether
+10
+
+What angle do 90 degrees make?
+Right angle
+10
+
+What annually, according to a recent survey of council employees, is the time spent on cigarette breaks by the average smoker?
+Three weeks
+10
+
+What antifungal, which is sometimes used for treating thrush, is named after New York State institute for health?
+Nystatin
+10
+
+What antipodean wonder did Londoners flock to the Lyceum Theatre to see for the first time in 1791?
+First imported live kangeroo
+10
+
+What ape is the best acrobat?
+Gibbon
+10
+
+What apollo lunar landing was canceled after a tank explosion?
+Apollo 13
+10
+
+What apparatus do weavers weave on?
+Loom
+10
+
+What appear when the sun activates your melanocytes?
+Freckles
+10
+
+What apple computer cofounder sponsored the us festival?
+Steve wozniak
+10
+
+What appreciation society calls its members The Sons of the Desert?
+Laurel and hardy society
+10
+
+What Arabian country claims the world's longest water pipeline?
+Saudi arabia
+10
+
+What arabian peninsula nations recently merged under communist leadership?
+Yemen
+10
+
+What arch can you see from the 'place de la concorde'?
+The arc de triomphe
+10
+
+What arch can you see from the place de la Concorde?
+Arch de Triomphe
+10
+
+What architect's story was told in wizard of the dome?
+Buckminster fuller
+10
+
+What are 'carcinogens' liable to cause?
+Cancer
+10
+
+What are 'duck tails', 'flat tops' & 'afros'?
+Haircuts
+10
+
+What are 'electric shadows' to the Chinese?
+Films
+10
+
+What are 'Finnan haddies'?
+Smoked haddock
+10
+
+What are 'Mongrel' cats referred to as?
+Moggies
+10
+
+What are 'rods in pickle'?
+Troubles in store
+10
+
+What are 'snowballs' to a hot-rodder?
+White-walled tires
+10
+
+What are 35% of people using personal ads for dating?
+Married
+10
+
+What are a bat's wings made of?
+Skin
+10
+
+What are a group of gulls called?
+Colony
+10
+
+What are a group of locusts known as?
+Plague
+10
+
+What are a group of magpies called?
+A tittering
+10
+
+What are a group of ostriches called?
+A pride
+10
+
+What are a group of starlings known as?
+Murmuration
+10
+
+What are a group of storks known as?
+Mustering
+10
+
+What are a group of unicorns called?
+Blessing
+10
+
+What are a group of wolves known as?
+A gam
+10
+
+What are a jockey's silks?
+Uniform
+10
+
+What are a tiger's paw prints called?
+Pug marks
+10
+
+What are a tiger's paw prints?
+Pug marks
+10
+
+What are a whales breathing organs called?
+Lungs
+10
+
+What are abadi,courier and garamond?
+Word processing fonts
+10
+
+What are adherents to the Society of Friends called?
+Quakers
+10
+
+What are affected by phylloxera?
+Vines
+10
+
+What are alabaster marbles?
+Alleys
+10
+
+What are Alvin, Simon, and Theodore?
+Chipmunks
+10
+
+What are animals called if they live both on land & in water?
+Amphibians
+10
+
+What are animals that chew the cud called?
+Ruminants
+10
+
+What are animals that live in tree called?
+Arboreal
+10
+
+What are auctioned at Tattersalls?
+Racehorses
+10
+
+What are B&O, Reading, Pennsylvania and Short Line on an American Monopoly board?
+Stations
+10
+
+What are big chunks of ice that have broken off glaciers and drifted into the sea?
+Icebergs
+10
+
+What are billiard,bulldog,zulu and meershaum varieties of?
+Smokers pipes
+10
+
+What are bloaters a type of?
+Fish
+10
+
+What are born with fur and their eyes open?
+Jackrabbits
+10
+
+What are bright regions of the sun's photosphere?
+Facula
+10
+
+What are built & repaired in 'dry dock'?
+Ships
+10
+
+What are Canada's great lakes alphebetically?
+Erie, huron, michigan, ontario, superior
+10
+
+What are cannon & balls first names?
+Tommy & bobby
+10
+
+What are catalogued under the Dewey decimal system?
+Book
+10
+
+What are catalogued under the dewey decimal system?
+Books
+10
+
+What are caught in a kheda?
+Elephants
+10
+
+What are cavicorns?
+Animals with hollow horns
+10
+
+What are chanterelles and morels?
+Mushrooms
+10
+
+What are characterised by patterns such as loops, whorls and arches?
+Fingerprints
+10
+
+What are Cherubim & Seraphim?
+Angels
+10
+
+What are chitterlings?
+Animal intestines
+10
+
+What are chrysolite, beryl, jasper and tourmaline?
+Gems
+10
+
+What are chrysolite, beryl, jasper, and tourmaline?
+Gems
+10
+
+What are cirrus, cumulus and cirrostratus?
+Clouds
+10
+
+What are Cobol, Fortran and Ada types of?
+Computer languages
+10
+
+What are cocci, spirilla and streptococci?
+Bacteria
+10
+
+What are cone bearing trees called?
+Conifers
+10
+
+What are conifers?
+Cone bearing trees
+10
+
+What are conspicuous by their absence in Las Vegas gambling casinos?
+Clocks
+10
+
+What are Covent Garden, La Scala & the Met?
+Opera houses
+10
+
+What are crayons made of?
+Wax
+10
+
+What are daffodils, reesias & hyacinths normally grown from?
+Bulbs
+10
+
+What are dannocks?
+Thick gloves
+10
+
+What are death caps?
+Poisonous fungi
+10
+
+What are dense seawater swamps along coasts of hot countries?
+Mangroves
+10
+
+What are described by the terms rep, challis & foulard?
+Neckties
+10
+
+What are dim sum?
+Chinese snacks
+10
+
+What are dolly parton's working hours?
+9 to 5
+10
+
+What are dolly,dimmer,rocker?
+Types of light switches
+10
+
+What are double sixes called on dice?
+Boxcars
+10
+
+What are drumlins and eskers formed by?
+Glaciers
+10
+
+What are Eastern, Central, Mountain, and Pacific?
+American Time Zones
+10
+
+What are elementary particles originating in the sun and other stars, that continuously rain down on the earth?
+Cosmic rays
+10
+
+What are emblazoned on the jolly roger?
+Skull & crossbones
+10
+
+What are Empire Monkey,Pretty Park, Concept and Melissa?
+Computer viruses
+10
+
+What are English,Orator and Elite?
+Type-faces
+10
+
+What are exploding stars ten billion times more luminous then the sun?
+Supernovae
+10
+
+What are falling stars?
+Meteors
+10
+
+What are FAQs?
+Frequently asked questions
+10
+
+What are fawn or pale brown cows called?
+Jersey
+10
+
+What are feathers made from?
+Keratin
+10
+
+What are feta and portella?
+Cheeses
+10
+
+What are fields of rice called?
+Paddies
+10
+
+What are followers of the Society of Friends called?
+Quakers
+10
+
+What are followers of the Unification Church called?
+Moonies
+10
+
+What are followers of the unification church?
+Moonies
+10
+
+What are fossilised dinosaur droppings?
+Coprolite
+10
+
+What are found in oyster shells?
+Pearls
+10
+
+What are fungal remains in coal?
+Sclerotinite
+10
+
+What are good friends when you are lonely?
+Dreams
+10
+
+What are great waves resulting from earthquakes?
+Tsunami waves
+10
+
+What are Hale & Pace's first names?
+Gareth and Norman
+10
+
+What are half human & half horse figures called?
+Centaurs
+10
+
+What are hills and ridges composed of drifting sand?
+Dunes
+10
+
+What are hiragana and katakana?
+Japanese alphabets
+10
+
+What are horseshoe crabs?
+Spiders and scorpions
+10
+
+What are human thigh bones stronger than?
+Concrete
+10
+
+What are igneous, metamorphic and sedimentary the three classes of?
+Rock
+10
+
+What are inhabitants of naples called?
+Neapolitans
+10
+
+What are iron pyrites often mistaken for?
+Gold
+10
+
+What are jack rabbits?
+Hares
+10
+
+What are Kayobi, Doyobi, and Kinyobi?
+Japanese days of the week
+10
+
+What are Kislev,Teveth, Sivan and Av?
+Months in the jewish calendar
+10
+
+What are knackers to a Norwegian?
+Crisp bread
+10
+
+What are kreplach?
+Jewish ravioli
+10
+
+What are large snow bumps known as in skiing terms?
+Moguls
+10
+
+What are leokocytes more commonly known as?
+White blood cells
+10
+
+What are lime deposits growing up from the floor of a cave called?
+Stalacmites
+10
+
+What are Lincoln Red, Galloway and Welsh Black?
+Cattle
+10
+
+What are listed in the Stanley Gibbons catalogue?
+Postage stamps
+10
+
+What are loose rocks on a mountainside called?
+Scree
+10
+
+What are looser then normal in a double jointed person?
+Ligaments
+10
+
+What are love apples?
+Tomatoes
+10
+
+What are lust, pride, and, envy, sloth, avarice and gluttony collectively known as?
+Seven deadly sins
+10
+
+What are lust, pride, anger, envy, sloth, averice and gluttony?
+Seven deadly sins
+10
+
+What are map makers called?
+Cartographers
+10
+
+What are marbles made from alabaster called?
+Alleys
+10
+
+What are mazurka, fandango and polonaise types of?
+Dances
+10
+
+What are members of the organisation with the acronym RCMP more commonly known as?
+The mounties
+10
+
+What are mentioned in the book of Ezra for the first time in the Bible?
+Coins
+10
+
+What are meteors?
+Falling stars
+10
+
+What are most of the solar system's planets named for?
+Roman gods
+10
+
+What are most of the solar system's plantes named for?
+Roman gods
+10
+
+What are Muharram, Rajab and Safar?
+Months in the muslim calendar
+10
+
+What are mustard and ketchup?
+Condiments
+10
+
+What are nbs des?
+National bureau of standards data encryption standar
+10
+
+What are noctilucent, cirrus, and cirrostratus categories of?
+Clouds
+10
+
+What are non-precious metals called?
+Base metals
+10
+
+What are obstacles like sand traps and ponds called in golf?
+Hazards
+10
+
+What are officers of 46 u.s federal agencies authorised to carry?
+Firearms
+10
+
+What are old boys of Winchester College called?
+Wykehamists
+10
+
+What are Olive Oyl's vital statistics?
+19-19-19
+10
+
+What are ornithophilous flowers?
+Flowers pollinated by birds
+10
+
+What are osiers?
+Branches of willow
+10
+
+What are ovens used for baking clay pots or sculptures called?
+Kilns
+10
+
+What are painted ladies,speckled woods and wall browns?
+Butterflies
+10
+
+What are panatelas?
+Cigars
+10
+
+What are pearls found in?
+Oyster shells
+10
+
+What are people encouraged to kiss under?
+Mistletoe
+10
+
+What are people who collect stamps called?
+Philatelists
+10
+
+What are phalanges?
+Finger bones
+10
+
+What are pillows in south korean inns filled with?
+Wheat husks
+10
+
+What are pot bellies, scandinavians & franklins?
+Stoves
+10
+
+What are pug marks?
+Tiger paw prints
+10
+
+What are pulex irritans?
+Human fleas
+10
+
+What are pyramid, bean, snapper lead and running shot all varieties of?
+Sinkers for Fishing
+10
+
+What are quasi-stellar radio sources better known as?
+Quasars
+10
+
+What are quasi-stellar radio sources?
+Quasars
+10
+
+What are Queenslanders called?
+Banana Benders
+10
+
+What are rain boots called?
+Galoshes
+10
+
+What are rats unable to do, making them extra vulnerable to poison?
+Vomit
+10
+
+What are religious ascetics who practise scourging or mutual whipping for bodily discipline or penance?
+Flagellants
+10
+
+What are Ren and Stimpy's last names?
+Ren Ho?k Stimpy Cadoogan
+10
+
+What are ren and stimpy's last names?
+Ren hoek & stimpy cadoogan
+10
+
+What are repaired in the shop in which Bullman is based?
+Clocks
+10
+
+What are responsible for a lot of the worlds pollution as they produce the largest amount of methane out of all animals?
+Termites
+10
+
+What are ringers and jillaroos?
+Australian cowboys and girls
+10
+
+What are robots called in the movie Star Wars?
+Droids
+10
+
+What are rocks and boulders carried by valley glaciers called?
+Moraine
+10
+
+What are romney marsh, suffolk and swaledale?
+Sheep
+10
+
+What are Romney Marsh, Swaledale and Suffolk types of?
+Sheep
+10
+
+What are Russian astronauts called?
+Cosmonauts
+10
+
+What are Saddlebacks, Middle Whites and Berkshires?
+Pigs
+10
+
+What are scallops?
+Shellfish
+10
+
+What are seraphim and cherubim?
+Ranks of angels
+10
+
+What are sheep if cats are feline?
+Ovine
+10
+
+What are ship captains' special sea maps called?
+Charts
+10
+
+What are siblings?
+Brothers & sisters by blood
+10
+
+What are slicks in auto racing jargon?
+Tires
+10
+
+What are snacks eaten with drinks before a meal?
+Canapes
+10
+
+What are sometimes called the backbone of England?
+Pennines
+10
+
+What are Springfield's two theatres called?
+The Aztec and the Googolplex 
+10
+
+What are squirrel hairs used to make?
+Camel hair brushes
+10
+
+What are Swedish buns?
+Danishes
+10
+
+What are terra cotta objects baked from?
+Clay
+10
+
+What are tested in the Trial of the Pyx ceremony?
+Coins of the realm
+10
+
+What are Texas told to remember?
+The Alamo
+10
+
+What are the 'irons' in horse racing?
+Stirrups
+10
+
+What are the 2 languages spoken in Malta?
+English and maltese
+10
+
+What are the 2 main divisions of chemistry?
+Organic and inorganic
+10
+
+What are the 3 big colleges of the Ivy League (name them alphabetically)?
+Harvard, princeton, yale
+10
+
+What are the 3 big colleges of the Ivy League?
+(name them alphabetically)Harvard, Princeton, Yale
+10
+
+What are the 3 types of swords used in olympic fencing (in alphabetical order, no commas)?
+Epee foil sabre
+10
+
+What are the 4 aristotelian elements?
+Air
+10
+
+What are the 50 days immediately preceding easter known as?
+Quinquagesima
+10
+
+What are the amish also known as?
+Pennsylvania Dutch
+10
+
+What are the annual awards for the best billboards (obies) named after?
+Obelisks
+10
+
+What are the barrels used to age Bordeaux made of?
+Oak
+10
+
+What are the Boyoma and Tugela?
+Waterfalls
+10
+
+What are the bread slots in a toaster called?
+Toast wells
+10
+
+What are the Buckingham Palace guards commonly known as?
+Beefeaters
+10
+
+What are the busiest days for hospital emergency departments?
+Mondays
+10
+
+What are the call letters of Springfield's radio station?
+KBBL 
+10
+
+What are the cherubim and seraphim?
+Angels
+10
+
+What are the christian names of Cannon and Ball?
+Tommy and bobby
+10
+
+What are the christian names of the novelist p d james?
+Phyllis dorothy
+10
+
+What are the clay targets in trap shooting called?
+Pigeons
+10
+
+What are the clouds of magellan?
+Galaxies
+10
+
+What are the colors of the Swedish flag?
+Yellow blue
+10
+
+What are the crushed chick peas used in middle eastern cuisine?
+Hoummous
+10
+
+What are the cutting teeth called?
+Incisors
+10
+
+What are the deepest parts of the oceans?
+Ocean trenches
+10
+
+What are the dots called on dominoes?
+Pips
+10
+
+What are the dots on dominoes?
+Pips
+10
+
+What are the famed hills of South Dakota?
+Black hills
+10
+
+What are the first & middle names of the famous poet E.E. Cummings?
+Edward Estlin
+10
+
+What are the first four words of we are the world?
+There comes a time
+10
+
+What are the first names of the couple in 'cat on a hot tin roof'?
+Brick and maggie
+10
+
+What are the first six words of dicken's a tale of two cities?
+It was the best of times
+10
+
+What are the first three words of the us constitution?
+We the people
+10
+
+What are the flat treeless plains of Argentina called?
+Pampas
+10
+
+What are the following pig,craps and Everest?
+Dice games
+10
+
+What are the four basic methods of calculation in mathematics?
+Addition, subtraction, multiplication, division
+10
+
+What are the four colours of croquet balls?
+Red, yellow, blue, black
+10
+
+What are the four most used languages in North America (In alphabetical order)?
+English French Italian Spanish
+10
+
+What are the four seas named after colours?
+Red sea, white sea, black sea, yellow sea
+10
+
+What are the front cutting teeth called?
+Incisors
+10
+
+What are the fundamental constituents of tissue building drugs?
+Anabolic steroids
+10
+
+What are the grinding teeth called?
+Molars
+10
+
+What are the height and width of a horse measured in?
+Hands
+10
+
+What are the highest-paying odds on a roulette table?
+Thirty Five to One
+10
+
+What are the hole punchings on a postage stamp called?
+Chad
+10
+
+What are the identification letters for Chicago's o'hare airport?
+Ord
+10
+
+What are the ingredients of a daiquiri?
+Rum and lemon
+10
+
+What are the initials 'vcp'?
+Video cassette player
+10
+
+What are the initials 'vcr'?
+Video cassette recorder
+10
+
+What are the initials for deoxyribonucleic acid?
+Dna
+10
+
+What are the islands called in the north of the Netherlands?
+Wadden
+10
+
+What are the largest oceans in order of size?
+Pacific, atlantic, Indian
+10
+
+What are the lime deposits hanging from the ceiling of a cave called?
+Stalactites
+10
+
+What are the longest cells in the human body?
+Neurones
+10
+
+What are the main divisions of a play or opera called?
+Acts
+10
+
+What are the main ingredients of both financiere and perigueux sauces?
+Madeira and truffles
+10
+
+What are the main ingredients of the Irish dish 'colcannon'?
+Green cabbage and potatoes
+10
+
+What are the male organs of a flower called?
+Stamens
+10
+
+What are the membranes enveloping the brain and spinal cord called?
+Meninges
+10
+
+What are the mineral deposits in caves growing upward called?
+Stalagmites
+10
+
+What are the more common terms for the maxilla and mandible?
+Upper and lower jaw
+10
+
+What are the most common initials of superman's friends and enemies?
+L.l.
+10
+
+What are the most repulsive warring creatures in the lord of the rings?
+Orcs
+10
+
+What are the moufflon & bighorn?
+Sheep
+10
+
+What are the names of angelica's parents in the rugrats?
+Drew and charlotte
+10
+
+What are the names of daisy duck's nieces?
+April, may and june
+10
+
+What are the names of Lisa's and Bart's hockey teams?
+Mighty Pigs and the Kwik-E-Mart Gougers 
+10
+
+What are the names of Mickey Mouses' two nephews?
+Ferdy & Mordy
+10
+
+What are the names of the Flanders' children?
+Rod & Todd 
+10
+
+What are the names of the Ninja Turtles in alphabetical order?
+Donatello Leonardo Michelangelo Raphael
+10
+
+What are the names of the Simon brothers from Simon & Simon?
+Rick & AJ
+10
+
+What are the names of the tallest and shortest of Bond henchmen?
+Jaws and Nick Nack
+10
+
+What are the names of the three dimaggio brothers (d v j )?
+Dom vince joe
+10
+
+What are the names of the three little characters on a Kellogg's rice bubbles box?
+Snap, crackle, pop
+10
+
+What are the names of the three wise monkeys (in the order of see no evil, hear no evil, speak no evil)?
+Mizaru, mikazaru, mazaru
+10
+
+What are the names of the two famous disney chipmunks?
+Chip and dale
+10
+
+What are the names of the two stone lions in front of the New York public library?
+Patience & fortitude
+10
+
+What are the natives of Tangier called?
+Tangerines
+10
+
+What are the nine letters on the center row of a standard qwerty keyboard (from left to right)?
+Asdfghjkl
+10
+
+What are the odds for s club 7 according to their hit record?
+2 in a million
+10
+
+What are the odds that a professional golfer will get a hole-in-one?
+One in 15,000
+10
+
+What are the official languages of malta?
+Maltese and English
+10
+
+What are the only 2 poisonous lizards in the world?
+Gila monster & beaded lizard
+10
+
+What are the only animals that copulate face to face?
+Humans
+10
+
+What are the only canines whose hair has a hook (or barb) on each individual follicle?
+Dalmatians
+10
+
+What are the only food that astronauts do not have to treat & dehydrate when flying in space?
+Pecans
+10
+
+What are the only numbers where they are the values of the numbers of factors they have?
+1 & 2
+10
+
+What are the only primes that end in 2 or 5?
+2 & 5
+10
+
+What are the only three nations with Jewish populations over one million?
+Israel, Russia, u.s.a
+10
+
+What are the only two commonly ingested items pure enough to be absorbed into the bloodstream directly through the stomach walls?
+Honey and alcohol
+10
+
+What are the only two landlocked countries in South America (alphabetical order)?
+Bolivia & paraguay
+10
+
+What are the only two London boroughs that start with the letter 'e'?
+Ealing & enfield
+10
+
+What are the only two perennial vegeatbles?
+Rhubarb & asparagus
+10
+
+What are the only two places that dogs have sweat glands?
+Nose and paws
+10
+
+What are the only two poisonous lizards in the world?
+The gila monster and the bearded lizard
+10
+
+What are the Perseids?
+Summer meteor showers
+10
+
+What are the playing pieces of dominoes?
+Bones
+10
+
+What are the primary colors?
+Red, yellow and blue
+10
+
+What are the residents of the island of Lesbos called?
+Lesbosians
+10
+
+What are the rhea and cassowary both types of?
+Flightless birds
+10
+
+What are the roaring forties?
+Winds
+10
+
+What are the sacred Hindu texts called?
+Vedas
+10
+
+What are the sava, drava and soca?
+Rivers
+10
+
+What are the scientists who study dinosaur fossils called?
+Palaeontologists
+10
+
+What are the scientists who study volcanoes called?
+Volcanologists
+10
+
+What are the seed-bearing fruits of pine,cedar and fir trees called?
+Cones
+10
+
+What are the seven letters on the bottom row of a standard qwerty keyboard (from left to right)?
+Zxcvbnm
+10
+
+What are the seven things Sheffield and Rome have in common?
+Hills
+10
+
+What are the siberian prison islands also known as?
+Gulag archipelego
+10
+
+What are the smallest blood-carrying 'tubes' in the human body called?
+Capillaries
+10
+
+What are the smallest blood-carrying 'tubes' in the human body?
+Capillaries
+10
+
+What are the stage names of William Mitchell and John Payne?
+Peter Finch & Jack Thompson
+10
+
+What are the star of africa and cullinan ii?
+Diamonds
+10
+
+What are the stinging cells of a man of war called?
+Nematocysts
+10
+
+What are the surnames of the two men who determined the structure of dna?
+Crick and watson
+10
+
+What are the tallest trees?
+California redwoods
+10
+
+What are the three anatomical parts of an insect?
+Head thorax abdomen
+10
+
+What are the three breeds of dog known as the setter?
+English, gordon, Irish
+10
+
+What are the three capital cities of south africa (c j p)?
+Cape town johannesburg pretoria
+10
+
+What are the three clours in germanys national flag?
+Black red gold
+10
+
+What are the three colors on the German flag?
+Black, red and gold
+10
+
+What are the three colors on the west German flag?
+Black Red and Gold
+10
+
+What are the three colours on a roulette wheel?
+Black, green & red
+10
+
+What are the three great pyramids of egypt?
+Cheops chephren mycernius
+10
+
+What are the three largest countries in order?
+Russia, Canada, china
+10
+
+What are the three main types of greek columns?
+Doric, ionic and corinthian
+10
+
+What are the three operative words on a ouija board?
+Yes no goodbye
+10
+
+What are the trails left in the sky by aircraft composed of?
+Condensed water vapour
+10
+
+What are the transitional periods of the zodiac called?
+Cusps
+10
+
+What are the Twin Cities?
+Minneapolis and St Paul
+10
+
+What are the two basic aids in the sport of orienteering?
+A map and compass
+10
+
+What are the two christian names of HE Bates?
+Herbert ernest
+10
+
+What are the two cities in Charles Dickens 1859 novel 'A Tale Of Two Cities?
+London & paris
+10
+
+What are the two cities in Charles dickens' 1859 novel a tale of two cities?
+London and paris
+10
+
+What are the two ends of a magnet called?
+Poles
+10
+
+What are the two highest consecutive numbers that can be multiplied together to give a number less than 1,000?
+31 & 32
+10
+
+What are the two hottest months at the equator?
+March and september
+10
+
+What are the two kinds of blood corpuscles in vertebrates?
+White and red
+10
+
+What are the two languages of malta?
+English maltese
+10
+
+What are the two largest cities in Scotland?
+Glasgow edinburgh
+10
+
+What are the two main gases that make up our breathable air?
+Oxygen and nitrogen
+10
+
+What are the two main ingredients of a Lyonnaise sauce?
+White wine & onions
+10
+
+What are the two main islands of the Philippines?
+Mindanao & luzon
+10
+
+What are the two official languages of Canada?
+English & french
+10
+
+What are the two primary ingredients in cracker jack?
+Popcorn and
+10
+
+What are the two stone lions in front of the New York public library?
+Patience and fortitude
+10
+
+What are the types of limestone deposits that form from dripping water in calcite?
+Stalactites, stalagmites and helictites
+10
+
+What are the world's tallest trees?
+Coast redwoods
+10
+
+What are the young of a rabbit called?
+Kittens
+10
+
+What are the young of seals called?
+Pups
+10
+
+What are the youngest letters in the English language alphabetically?
+J, v, w
+10
+
+What are there 10 of in a kilometre?
+Hectometres
+10
+
+What are there 100 of to the Drachma in Greece?
+Leptas
+10
+
+What are thribbles and censers?
+Vessels for burning incense
+10
+
+What are tiny cracks in the glaze of pottery?
+Crackle
+10
+
+What are train drivers called in the U.S.A?
+Engineers
+10
+
+What are Trawsfynnydd (Trous-fun-uth) and Wylfa (Wilva) in Wales?
+Nuclear power stations
+10
+
+What are two numbers that have no divisors in common?
+Relatively prime
+10
+
+What are two of the softest minerals?
+Aluminite and talc
+10
+
+What are two people who are both monozygotic?
+Identical twins
+10
+
+What are u doing here - |r|e|a|d|i|n|g|?
+Reading between the lines
+10
+
+What are venomous water moccasins of the pit viper family?
+Cotton mouths
+10
+
+What are voussoirs?
+Wedge shaped blocks
+10
+
+What are Walrus tusks made of?
+Ivory
+10
+
+What are white dwarfs and red giants?
+Stars
+10
+
+What are wrapped in rashers of bacon to make the dish Angels on Horseback?
+Oysters
+10
+
+What are you caught in if a haboob blows up?
+Sandstorm
+10
+
+What are you caught in, if a haboob blows up?
+A sandstorm
+10
+
+What are you doing if you are ledgering?
+Fishing
+10
+
+What are you fi your described as dextral?
+Right handed
+10
+
+What are you forbidden to fly an aeroplane over in India?
+Taj mahal
+10
+
+What are you forbidden to fly an airplane over in India?
+Taj mahal
+10
+
+What are you if you suffer from baker's leg?
+Knock kneed
+10
+
+What are you if you're hirsute?
+Hairy
+10
+
+What are you if your IQ is below 25?
+Idiot
+10
+
+What are you wearing if you have a dogging heel?
+Cowboy boots
+10
+
+What are young eels called?
+Elvers
+10
+
+What are young hares called?
+Leverets
+10
+
+What are young herrings?
+Sardines
+10
+
+What are young rats called?
+Pups
+10
+
+What Argentine Football player was hailed as the world's best when he arrived at the 1982 World Cup?
+Diego Maradona
+10
+
+What argentinian boxer was shot dead outside a nevada brothel in may 1976?
+Oscar bonavena
+10
+
+What army publishes the newspaper The War Cry?
+The Salvation Army
+10
+
+What army publishes the newspaper The War Cry?
+Salvation army
+10
+
+What armys motto is blood and fire?
+Salvation army
+10
+
+What arrives at your table in Madrid if you say 'La cuenta, por favor'?
+Bill
+10
+
+What artery carries blood inside the heart to the heart tissue?
+Coronary artery
+10
+
+What Arthur Miller play recounts his marriage to Marilyn Monroe?
+After the fall
+10
+
+What arthurian knight had the strength of ten because his heart was pure?
+Sir galahad
+10
+
+What artificial organ was first developed by Canada's Gordon Murray?
+Kidney
+10
+
+What artificial sweetener is some 400 times sweeter than sugar?
+Saccharin
+10
+
+What artificial sweeteners got the ax in 1969?
+Cyclamates
+10
+
+What artificial waterway links the black sea to the baltic via leningrad?
+Volga-baltic canal
+10
+
+What artist composed the classical work Tannhauser?
+Wagner
+10
+
+What artist cut off his right ear?
+Vincent van gogh
+10
+
+What artist had the surname Buonarroti?
+Michelangelo
+10
+
+What artist had the surname buonarrotti?
+Michelangelo
+10
+
+What artist was the subject of the book the agony and the ecstasy?
+Michelangelo
+10
+
+What artist's first British hit was the little shoemaker in 1954?
+Petula clark
+10
+
+What artist's surname was van rijn?
+Rembrandt
+10
+
+What artistic term was named after a French finance minister?
+Silhouette
+10
+
+What artists real name is marshall mathers iii?
+Eminem
+10
+
+What as girlschool's most successful album?
+Hit & run
+10
+
+What as the name applied to plays after wwii in which aspects of household life were presented fairly realistically?
+Kitchen-sink dramas
+10
+
+What asian capital boasts the 80,000 seat workers stadium?
+Peking
+10
+
+What Asian city boasts the world's biggest bowling alley?
+Tokyo
+10
+
+What asian country did james michener take readers to in his 1963 novel caravans?
+Afghanistan
+10
+
+What asian country is bordered by the soviet union and china?
+Mongolia
+10
+
+What asian country is home to most speakers of telugu?
+India
+10
+
+What Asian country used to be ruled by a shah?
+Iran
+10
+
+What Asian country was acupuncture first practised in?
+China
+10
+
+What asian politician was in prison when time named him man of the year for 1930?
+Gandhi
+10
+
+What astronaut later went into the wasp-breeding business?
+Scott carpenter
+10
+
+What astronaut soared into history on february 20, 1962?
+John glenn
+10
+
+What astronomer-architect designed the present st. Paul's cathedral in london?
+Christopher wren
+10
+
+What astronomical unit of distance is used for measurements beyond the solar system?
+Parsec
+10
+
+What athlete released the photo book rare air in 1993?
+Michael jordan
+10
+
+What attach skeletal muscles bones?
+Tendons
+10
+
+What attaches the muscles to the bones or cartilage?
+Tendons
+10
+
+What attack did Isoroku Yamamota plan and lead?
+Pearl harbour
+10
+
+What attack was planned & lead by Admiral Isoroku Yamamoto?
+Pearl harbour
+10
+
+What attack was planned and lead by isoroku yamamoto?
+Pearl harbour
+10
+
+What attracted eight and a half million people top Battersea Pleasure Gardens between may and Sept 1951?
+Festival of britain
+10
+
+What attribute did Ralph give to Jesus?
+He had wheels 
+10
+
+What Aussie was the first world champion boxer to retire with a perfect record?
+Jimmy Carruthers
+10
+
+What Australian city had the country's first steam and electric trains?
+Melbourne
+10
+
+What Australian city was named after the wife of king william iv?
+Adelaide
+10
+
+What Australian food was discovered by john macadam?
+Macadamia nuts
+10
+
+What Australian jockey was called The Demon Darb?
+Darby Munro
+10
+
+What Australian marsupial is often mistaken for a monkey?
+Cuscus
+10
+
+What Australian mother won gold medals in running and hurdling at the Melbourne Olympics?
+Shirley Strickland
+10
+
+What Australian state boasts mount isa, the worlds largest town by area?
+Queensland
+10
+
+What Australian state capital was named after a city in Scotland?
+Perth
+10
+
+What Austrian city hosted olympic games 12 years apart?
+Innsbruck
+10
+
+What Austrian city was named for it's mining & trading of salt?
+Salzburg
+10
+
+What Austrian city was named for its mining and trading of salt?
+Salzburg
+10
+
+What author landed a 468 pound marlin without harness in the early 1930's?
+Ernest hemingway
+10
+
+What author of couples suggested in a 1969 paris review piece that we 'take coitus out of the closet'?
+John updike
+10
+
+What author of sex and the single girl went on to edit cosmopolitan into a money-making magazine?
+Helen gurley brown
+10
+
+What author said 'accidents will occur in the best regulated families'?
+Charles dickens
+10
+
+What auto company raised a giant three pointed star above the Stuttgart skyline?
+Daimler benz
+10
+
+What automaker bought Rolls Royce in 1998?
+Volkswagen
+10
+
+What automobile company makes the Corvette?
+General motors
+10
+
+What automobile company makes the ram?
+Daimler chrysler
+10
+
+What avenue is New York City's famed easter parade held on?
+Fifth avenue
+10
+
+What avenue runs along the east side of central park, New York?
+Fifth avenue
+10
+
+What averted an arab boycott of the 1948 summer olympics?
+Israel's exclusion
+10
+
+What award can baseball pitchers earn?
+Cy young award
+10
+
+What award did Washington create in 1782 as a decoration to recognize merit in enlisted men and non-commissioned officers?
+Purple heart
+10
+
+What award, founded in 1901, is funded with the help of the Bank of Sweden?
+The Nobel Prize
+10
+
+What B is a name for a room which translates literally as a place for skulking?
+Boudoir
+10
+
+What bank is owned by the prudential?
+Egg bank
+10
+
+What bars do kids belly up to on playgrounds?
+Monkey bars
+10
+
+What battle cry inspired Texas troops after the Alamo fell?
+Remember the alamo
+10
+
+What battle resulted in the largest number of German POWs?
+Battle of stalingrad
+10
+
+What battle took place in 1815?
+Waterloo
+10
+
+What battle was a horse named comanche the only losing survivor of?
+Battle of little big horn
+10
+
+What beach provided the most resistance to Allied forces on D Day?
+Omaha
+10
+
+What bean is used in the production of chocolate?
+Cocoa
+10
+
+What bean shaped organs filter waste products from the blood?
+Kidneys
+10
+
+What beating victim's 23 lawyer defense team handed the city of Los Angeles for $4.4 million?
+Rodney king
+10
+
+What beating victim's 23-lawyer defense team handed the city of Los Angeles for million?
+Rodney king
+10
+
+What beatle reportedly slept with a light on?
+John lennon
+10
+
+What beatle song includes a girl with kaleidoscope eyes?
+Lucy in the sky with diamonds
+10
+
+What Beatles album came with a 24-page full-colour picture book?
+Magical mystery tour
+10
+
+What Beatles album featured back in the u.s.s.r?
+The white album
+10
+
+What Beatles album spent the longest time atop the charts, at 15 weeks?
+Sgt. pepper's lonely hearts club band
+10
+
+What Beatles ballad, including french lyrics, won a 1966 grammy as song of the year?
+Michelle
+10
+
+What Beatles song did fats domino hit with in 1968?
+Lady madonna
+10
+
+What Beatles tune made mention of a villainous character named dan?
+Rocky raccoon
+10
+
+What beautiful hotel commands a matchless view of quebec city?
+Chateau frontenac
+10
+
+What beautiful street in paris begins at the arc de triomphe?
+Champs elysees
+10
+
+What became a national holiday in the u.s in 1890?
+Christmas
+10
+
+What became America's first organized sport, in 1664?
+Horse racing
+10
+
+What became Spain on july 9th, 1947?
+Kingdom
+10
+
+What became the 50th American state?
+Hawaii
+10
+
+What became the biggest use for aluminum starting in 1960?
+Tin cans
+10
+
+What beer is sold in shelbyville?
+Fudd
+10
+
+What beer was named after president Jimmy Carter's brother?
+Billy beer
+10
+
+What began August 15th 1969 on Max Yasgur's dairy farm?
+Woodstock
+10
+
+What begins - If music be the food of love?
+Twelfth night
+10
+
+What beloved object does Homer sell to get counselling for his family? (There's No Disgrace Like Home)?
+Their TV 
+10
+
+What berries are commonly used to flavour English gin?
+Juniper berries
+10
+
+What berries give gin its flavour?
+Juniper berries
+10
+
+What best describes an agent provocateur?
+Spy
+10
+
+What beverage did Louis Pasteur first pasteurise in 1864?
+Wine
+10
+
+What beverage do people drink 311,000 of per minute worldwide?
+Coca-cola
+10
+
+What beverage product took to claiming: 'life without caffeine is stimulating enough'?
+Sanka
+10
+
+What biblical character lost his strength when his hair was cut?
+Samson
+10
+
+What biblical figure is known as the father of the human race?
+Adam
+10
+
+What biblical phenomenon did a group of scientists conclude in 1982 was a super nova?
+The star of bethlehem
+10
+
+What biblical relic is astronaut James Irwin famous for seeking?
+Noah's ark
+10
+
+What billy joel album was 1979's top seller?
+52nd street
+10
+
+What bird builds a nest about 12 feet deep and eight and a half feet wide?
+Bald eagle
+10
+
+What bird can fly the whole day without flapping its wings?
+Albatross
+10
+
+What bird can swim but cant fly?
+Penguin
+10
+
+What bird can swim but not fly?
+Penguin
+10
+
+What bird did benjamin franklin advocate as the us national symbol?
+The turkey
+10
+
+What bird do shuttlecock feathers come from?
+Goose
+10
+
+What bird familey does the bunting belong to?
+Finch
+10
+
+What bird feathers were used as quills for writing?
+Goose
+10
+
+What bird has a 46 foot long small intestine?
+Ostrich
+10
+
+What bird has double-plumed feathers?
+Emu
+10
+
+What bird has two toes?
+Ostrich
+10
+
+What bird in Greek legend was given the 100 eyes of Argus?
+Peacock
+10
+
+What bird is a shag?
+Cormorant
+10
+
+What bird is a symbol of peace?
+Dove
+10
+
+What bird is also known as the gooney bird?
+Albatross
+10
+
+What bird is associated with lundy island?
+Puffin
+10
+
+What bird is associated with the birth of children?
+Stork
+10
+
+What bird is associated with the Tower of London?
+Raven
+10
+
+What bird is famed for nesting on chimneys?
+Stork
+10
+
+What bird is the offspring of a cob & a pen?
+Cygnet
+10
+
+What bird is the offspring of a cob and a pen?
+Swan
+10
+
+What bird is the reminder to us of a personal burden?
+The albatross
+10
+
+What bird is the symbol of the United States?
+Eagle
+10
+
+What bird lays an egg that is roughly a quarter of its body weight?
+Kiwi
+10
+
+What bird lays an egg the size of a pea?
+Hummingbird
+10
+
+What bird lays the largest egg?
+Ostrich
+10
+
+What bird makes an excellent watchdog?
+Goose
+10
+
+What bird provided the quills that were used for writing?
+Goose
+10
+
+What bird's feathers does superstition say should never be in a house as decoration?
+Peacock
+10
+
+What birds will lay eggs only in the early morning?
+Ducks
+10
+
+What birthstone melts in vinegar?
+Pearl
+10
+
+What Bishop was killed in Rome on February 14 270 a d?
+St valentine
+10
+
+What bit of Bobby Goldsboro sirup focused on a dying young wife?
+Honey
+10
+
+What bit of Bobby Goldsboro syrup focused on a dying young wife?
+Honey
+10
+
+What bites campers on the big toe?
+Vampire bat
+10
+
+What black comic always had a poem for his audience?
+Nipsy russell
+10
+
+What black magazine was founded by john h johnson in 1947?
+Ebony
+10
+
+What Black Sabbath's song which title stands for the British slang to 'cocainomane'?
+Snowblind
+10
+
+What blew up at lakehurst, new jersey, on may 6, 1937?
+The hindenburg
+10
+
+What blew up at Lakehurst, New Jersey, on May 6th 1937?
+Hindenburg
+10
+
+What blonde was the subject of the four most expensive Andy Warhol works sold at auction?
+Marilyn monroe
+10
+
+What blood sport originated the word crestfallen?
+Cockfighting
+10
+
+What blood type has been found in less than a dozen people since it was first discovered?
+Type ah
+10
+
+What blue creature does alice find sitting on a mushroom in wonderland?
+Caterpillar
+10
+
+What board game derives its name form the Persian word for king?
+Chess
+10
+
+What board game derives its name from the persian word for king?
+Chess
+10
+
+What board game did humphrey bogart excel at?
+Chess
+10
+
+What board game gets its name from the persian word for king?
+Chess
+10
+
+What board game is called checkers in North America?
+Draughts
+10
+
+What board game is known as The Game of four Winds?
+Mah jong
+10
+
+What board game was originally called criss cross?
+Scrabble
+10
+
+What board game's name is derived from the Latin for 'I Play'?
+Ludo
+10
+
+What boat is found on the canals of Venice?
+Gondola
+10
+
+What bodily function can reach a break neck speed of 200 mph?
+Sneeze
+10
+
+What bodily function can reach the breakneck speed of 200 miles per hour?
+Sneeze
+10
+
+What body of water does the danube river flow into?
+Black sea
+10
+
+What body of water does the rhone river empty into?
+Mediterranean
+10
+
+What body of water is fed from the south by the Wadi Araba & from the north by the river Jordan?
+The dead sea
+10
+
+What body of water is the old port of marseilles on?
+Mediterranean
+10
+
+What body of water rises in the Yukon & flows south to British Columbia?
+Lizard river
+10
+
+What body of water separates Alaska from Russia?
+Bering strait
+10
+
+What body of water separates Australia and new zealand?
+Tasman sea
+10
+
+What body of water were ridgway and blyth the first to row across?
+The atlantic ocean
+10
+
+What body organs did mae west say could be an asset if you hide them?
+Brains
+10
+
+What body parts are oversized in a man suffering from gynecomastia?
+Breasts
+10
+
+What bombay-born writer was called the bard of empire?
+Rudyard kipling
+10
+
+What bone connects your shoulder blade & elbow joint?
+The humerus
+10
+
+What book about a horse was written by the Victorian Anna Sewell?
+Black beauty
+10
+
+What book did Bobby Riggs write?
+Court hustler
+10
+
+What book did Christians often place on their foreheads to cure insomnia in medieval time?
+The bible
+10
+
+What book did forrest gump keep in his suitcase?
+Curious george
+10
+
+What book does Dr. Wolfe, the dentist, show Ralph?
+The Big Book Of British Smiles
+10
+
+What book does Holden Caufield appear in?
+The catcher in the rye
+10
+
+What book explains how to obtain & keep political power?
+The prince
+10
+
+What book features Jim Hawkins?
+Treasure island
+10
+
+What book is the connection between E. Nesbitt and railways?
+The railway children
+10
+
+What book, written by Isaac Newton, is considered the world's greatest single work of science?
+Principia Mathematica
+10
+
+What books does me jane read?
+Tarzan
+10
+
+What bore was the largest cannon ever made?
+920mm
+10
+
+What Boston Celtic's player think that Woody's hometown is full of idiots?
+Larry bird
+10
+
+What Boston craftsman made George Washington's false teeth?
+Paul revere
+10
+
+What boundary did Hyde Park mark until the end of the 19th century?
+Teh london boundary
+10
+
+What boxer played the lead in the broadway musical buck white?
+Muhammad ali
+10
+
+What boxer received a barrage of criticism for leaving Australia for the U.S.A. in 1916?
+Les Darcy
+10
+
+What boxer was nicknamed gentleman jim?
+James corbett
+10
+
+What boxer's nickname was gentleman jim?
+James j corbett
+10
+
+What boxing division has Britain held the most world titles in?
+Flyweight
+10
+
+What boy time-travelled with mr. peabody in the 'rocky and bullwinkle' cartoon?
+Sherman
+10
+
+What boys name comes of the latin word for small?
+Paul
+10
+
+What boys swear they will 'be prepared'?
+Boy scouts
+10
+
+What boys' toy was introduced at the annual American international toy fair in New York on feb. 9, 1964?
+G.i joe
+10
+
+What branch of biology concentrates on heredity?
+Genetics
+10
+
+What branch of chemistry deal with fermentation as applied in wine-making and brewing?
+Zymurgy
+10
+
+What branch of law did professor Kingsfield teach in the paper chase?
+Contracts
+10
+
+What branch of mathematics was devised by Sir Isaac Newton?
+Calculus
+10
+
+What branch of science studies heat, electricity and magnetism?
+Physics
+10
+
+What branch of science studies the structure of an organism?
+Anatomy
+10
+
+What branch of the camel family is found only in the andes mountains?
+The llama
+10
+
+What brand and color of underwear is marty wearing in back to the future?
+Purple calvin klein briefs
+10
+
+What brand computer performed the first valentine's day wedding in 1981?
+Apple
+10
+
+What brand name did Galvin Manufacturing give to its line of radios for motorists?
+Motorola
+10
+
+What brand name of playing cards is the most popular in America?
+Bicycle
+10
+
+What brand of Bourbon is Marge caught stealing at the Kwik-E-Mart?
+Kernel Kwik-E-Mart's 
+10
+
+What brand of cheese celebrated its 60th birthday in 1988?
+Velveeta
+10
+
+What brand of footwear is endorsed by dr j?
+Converse
+10
+
+What brand of footwear was invented by adolf dassler?
+Adidas
+10
+
+What brand of syrup did gary carter admit to pouring on pancakes?
+Aunt jemima
+10
+
+What brand of whipped cream first appeared on store shelves in 1947?
+Reddi-whip
+10
+
+What brassy songstress played lola lasagne on tv's batman?
+Ethel merman
+10
+
+What breakfast cereal celebrated its centenary in 1994?
+Kellogg's Corn Flakes
+10
+
+What breakfast dish was ordered by a writer as a hangover cure?
+Eggs benedict
+10
+
+What bred of dog is snoopy?
+Beagle
+10
+
+What breed horse is the favourite among cowboys?
+Quarter horse
+10
+
+What breed of cat has no tail?
+Manx cat
+10
+
+What breed of cats are seal points and blue points?
+Siamese
+10
+
+What breed of dog advertises hush puppies?
+Basset
+10
+
+What breed of dog got its name from the German for growler?
+Schnauzer
+10
+
+What breed of dog was Nipper, the RCA dog?
+A Mongrel
+10
+
+What breed of horse was Mr. Ed (The TV Talking horse?
+A palomino
+10
+
+What breed of sheepdog was developed in Australia from Scottish collies?
+Kelpie
+10
+
+What brewing aid is obtained from the sturgeon?
+Isinglass
+10
+
+What bridge connects Anglesey with the mainland?
+Menai
+10
+
+What bridge crosses the Thames between Vauxhall and Westminster bridges?
+Lambeth
+10
+
+What British actor got 2.25 percent of the profits from Star Wars?
+Alec guinness
+10
+
+What British airport was james earl ray captured at?
+Heathrow
+10
+
+What British battlecruiser did German warships bismarck and prinz eugen sink in may 1941?
+Hms hood
+10
+
+What British bird are smaller than a wren?
+Goldcrest and firecrest
+10
+
+What British car was the Le Mans success story of the 1950's?
+Jaguar
+10
+
+What British city did Adolf Hitler study art in?
+Liverpool
+10
+
+What British city did Adolph Hitler study art in?
+Liverpool
+10
+
+What British firm manufactures sports cars under the initials mg?
+Morris garage
+10
+
+What British monarch reigned the longest?
+Queen victoria
+10
+
+What British newspaper switched from an all-ads front page to news on may 3, 1966?
+The times of london
+10
+
+What British prime minister claimed 'hitler has missed the bus'?
+Neville chamberlain
+10
+
+What British studio pounded out numerous schlocky, low-budget horror films in the 60's?
+Hammer studios
+10
+
+What British tv series featured 'emma peel'?
+Avengers
+10
+
+What broadway musical was inspired by cervantes's 'don quixote'?
+Man of la mancha
+10
+
+What Broadway show went through 2,488 pounds of yak hair between 1982 & 1995?
+Cats
+10
+
+What Bronze Age civilisation emerged on the Greek Island of Crete about 2500 BC?
+Minoan
+10
+
+What building are British monarchs crowned in?
+Westminster abbey
+10
+
+What building defect was the title of along running TV comedy series?
+Rising damp
+10
+
+What building material was extensively used by the romans and then forgotton until the 18th century?
+Concrete
+10
+
+What bullfight participants wield lances while atop blindfolded horses?
+Picadors
+10
+
+What bumbling andy griffith show character has the middle initial b?
+Barney fife
+10
+
+What business did brothers Maurice & Charles start in 1970, to become the worlds 5th largest of its type by 1985?
+Saatchi & Saatchi
+10
+
+What business did brothers Maurice and Charles start in 1970 to become the worlds 5th largest of its type by 1985?
+Saatchi & saatchi
+10
+
+What business was the source of john d. rockefeller's fortune?
+Oil
+10
+
+What butterfly has the same name as a punctuation mark?
+Comma
+10
+
+What buxom bellower noted: 'recording gospel has become big business. every saint and sinner does it now'?
+Mahalia jackson
+10
+
+What by product of the manufacture of coca cola is sold to pharmaceutical companies?
+Cocaine
+10
+
+What c word defines a substances that speeds a chemical reaction without being consumed?
+Catalyst
+10
+
+What calibre should a firearm be to be classed as artillery?
+Over 20mm
+10
+
+What California city in Hollywood as a suburb of?
+Los angeles
+10
+
+What California city is Walt Disney studios located in?
+Burbank
+10
+
+What came down on jesus' head after he was baptised?
+Dove
+10
+
+What came first electric kettle, electric toaster or electric vacuum?
+Electric vacuum
+10
+
+What can babies do, but not adults, while they drink?
+Breathe
+10
+
+What can be classified as, 'Up, Down, Top, Bottom, Strange and Charm'?
+Quarks
+10
+
+What can be described as a Flemish Bond?
+Brickwork
+10
+
+What can be described as An orbiting device which transmits information or can be used for communication?
+Satellite
+10
+
+What can be either new, last or gibbous?
+The moon
+10
+
+What can be found over a door or at the back of a boat?
+Transom
+10
+
+What can be measured in angstroms?
+Wavelengths
+10
+
+What can be tulip, balloon or flute?
+Wine glasses
+10
+
+What can be, right, acute or reflex?
+An angle
+10
+
+What can go without water longer than a camel?
+Giraffe
+10
+
+What can last longer without water than a camel can?
+Rat
+10
+
+What can release approximately one billion grains of pollen?
+Ragweed plant
+10
+
+What can run faster uphill than they can (or want to) downhill, because of the bone structure of their legs?
+Bulls
+10
+
+What can smell a drop of blood a quarter of a mile away?
+Sharks
+10
+
+What can stop the duke of earl?
+Nothing
+10
+
+What can withstand hundreds of bee stings?
+Honey badger
+10
+
+What can you be a maximum of 75 miles from in England?
+Sea
+10
+
+What can you buy in a bar that Japanese farmers massage into their cows to make the meat tender?
+Gin
+10
+
+What can you hold without touching?
+Your Breath
+10
+
+What can you not catch a lot of when you can not catch a lot of catchalot?
+Whales
+10
+
+What can't an elephant do?
+Jump
+10
+
+What can't roosters do if they can't fully extend their necks?
+Crow
+10
+
+What can't two pigs do in kingsville, texas on the city's airport property?
+Have sex
+10
+
+What Canadian broadcaster created the radio character old Rawhide?
+Max ferguson
+10
+
+What Canadian city features a clam shaped city hall?
+Toronto
+10
+
+What Canadian city was carling beer first brewed in?
+Toronto
+10
+
+What Canadian group performs on the we are the world lp?
+Northern lights
+10
+
+What Canadian horse won the 1964 Kentucky derby?
+Northern dancer
+10
+
+What Canadian island has a capital named charlottetown?
+Prince edward island
+10
+
+What Canadian jockey, later crippled, rode Secretariat to the Triple Crown in 1973?
+Ron Turcotte
+10
+
+What Canadian Prime Minister retired in 1984?
+Pierre Trudeau
+10
+
+What Canadian professional snooker player is nicknamed the grinder?
+Cliff thorburn
+10
+
+What Canadian province contains towns by the name of Elbow and Eyebrow?
+Saskatchewan
+10
+
+What Canadian province covers the smallest land mass?
+Prince edward island
+10
+
+What Canadian province was largely taken over by Irish rebels for a month in the 19th century?
+Ontario
+10
+
+What Canadian province was named after a daughter of Queen Victoria?
+Alberta
+10
+
+What Canadian province was the site of England's first overseas possession?
+Newfoundland
+10
+
+What Canadian sketch comedy show helped launch John Candy's career?
+SCtv
+10
+
+What Canadian Territory was established as a homeland for the Inuit in April of 1999?
+Unuavat
+10
+
+What canal connects lake ontario and lake erie?
+Welland canal
+10
+
+What canal did gaugin help build as a labourer?
+Panama canal
+10
+
+What canal did Gaugin help to build as a labourer?
+Panama canal
+10
+
+What canal does port said stand on?
+Suez canal
+10
+
+What canal parts redesigned by Leonardo da Vinci in 1497 are still in use today?
+Locks
+10
+
+What canal separates Africa from Asia?
+Suez canal
+10
+
+What candy bar was actually named after Grover Cleveland's baby daughter, Ruth?
+Baby ruth
+10
+
+What candy bar was first introduced by dropping them from airplanes over 40 American cities?
+Butterfingers
+10
+
+What candy did president reagan keep on his desk in the white house?
+Jelly beans
+10
+
+What candy received it's name because the machine that makes them looks like it is kissing the conveyor belt?
+Hershey kisses
+10
+
+What cannot be trademarked?
+Surnames
+10
+
+What cap was first made in and named after a Moroccan city?
+Fez
+10
+
+What caped hero had a dog named ace?
+Batman
+10
+
+What capital city does the liffey river flow through?
+Dublin
+10
+
+What capital city is found near the headwaters of the Bosna River?
+Sarajevo
+10
+
+What capital city overlooks the River Tagus?
+Lisbon
+10
+
+What capital city overlooks the tagus river?
+Lisbon
+10
+
+What capital city's old section centres on Puerta del Sol?
+Madrid
+10
+
+What capital rises where the Blue Nile nad White Nile converge?
+Khartoum
+10
+
+What car did Caractacus Potts drive?
+Chitty chitty bang bang
+10
+
+What Caribbean island did the Ra II land at after a 3200 mile ocean voyage?
+Barbados
+10
+
+What Caribbean state is made up of 700 islands the largest of which is New Providence?
+The bahamas
+10
+
+What carly simon hit became the music for a heinz ketchup commercial?
+Anticipation
+10
+
+What carries blood to the heart?
+Veins
+10
+
+What carries signals from the retina to the brain?
+Optic nerve
+10
+
+What cartoon and comic strip character had measurements of 19-19-19?
+Olive oyl
+10
+
+What cartoon character was created by Georges Herge?
+Tintin
+10
+
+What cast member of tv's f troop served in the us cavalry in real life?
+Forrest tucker
+10
+
+What castle is The Blarney Stone found in?
+Blarney
+10
+
+What castle was built for Henry III?
+Windsor
+10
+
+What Castro trademark did the CIA try to lace with poison?
+His cigar
+10
+
+What cat is unable to draw its claws into its paws?
+Cheetah
+10
+
+What catastrophe was caused by a shipment of argentinian corned beef to britain in 1964?
+Outbreak of typhoid
+10
+
+What category of Oscar was the only award for the film Star Wars?
+Sound track
+10
+
+What catholic bishop was killed in rome on february 14 in 270 ad?
+St valentine
+10
+
+What cause iron to rust?
+Oxygen
+10
+
+What caused 20 million deaths in 1918?
+Influenza
+10
+
+What caused a separation of Baja, California and the rest of Mexico?
+The San Andreas Fault
+10
+
+What caused d h lawrence's early death?
+Tuberculosis
+10
+
+What caused fjords?
+Glaciers
+10
+
+What caused the computer in Electric Dreams to become alive?
+Spilled Champagne
+10
+
+What caused the crab nebula?
+Supernova
+10
+
+What caused the gremlins in the movie Gremlin to become evil?
+Eating after midnight
+10
+
+What caused the origin of the term 'debugging'?
+Moth
+10
+
+What causes gout?
+Uric acid
+10
+
+What ceased to be legal tender in 1970?
+Half crown
+10
+
+What ceased to be legal tender in the U.K. on 21st November 1970?
+The ten shilling note
+10
+
+What ceased to be legal tender in the U.K. on 30th June 1980?
+The sixpence
+10
+
+What celebrated photographer snapped shots of Yosemite for 67 straight years?
+Ansel adams
+10
+
+What celestial body has a diameter of 864,000 miles?
+Sun
+10
+
+What celestial body is the centre of the jovian system?
+Jupiter
+10
+
+What cemetery is Karl Marx buried in?
+Highgate
+10
+
+What central American country's airline is lancia?
+Nicaragua
+10
+
+What century saw the War of the Roses?
+The 15th century
+10
+
+What century was the Domesday Book written in?
+Eleventh
+10
+
+What cereal box hero battles bad guys named Magnolia Bulkhead and Jean Lafoot?
+Cap'n Crunch
+10
+
+What chain did ray kroc build?
+Mcdonald's
+10
+
+What champion galloper did 73-year-old Tommy Woodcock train to a string if victories in 1977?
+Reckless
+10
+
+What channel seperates Denmark from Norway?
+Skagerrak
+10
+
+What character became the eventual leader on blake's seven?
+Avon
+10
+
+What character did abe vigoda play in the sitcom fish?
+Phil fish
+10
+
+What character did james farentino play in the series the lawyers?
+Neil darrel
+10
+
+What character did james macarthur play in hawaii five-0?
+Danny williams
+10
+
+What character did michael j fox play in the film back to the future?
+Marty mcfly
+10
+
+What character did robert urich play in SWAT?
+Jim street
+10
+
+What character does snoopy pretend to fight?
+Red baron
+10
+
+What character encountered by alice never stopped sobbing?
+Mock turtle
+10
+
+What character has been portrayed by reginald owen, alistair sim and albert finney?
+Scrooge
+10
+
+What character on `M-A-S-H` has never had his/her left hand shown on T.V?
+Radar
+10
+
+What character was invented to respond to questions from Gold Medal Flour customers?
+Betty crocker
+10
+
+What character was j r r tolkien inspired to create after seeing the painting the mountain spirit on a postcard?
+Gandalf
+10
+
+What character was played by phil silvers on the phil silvers show?
+Sgt ernie
+10
+
+What character's shoes have been filled by roger moore, george lazenby iii, and David niven?
+James bond
+10
+
+What character's story contains the line 'new lamps for old'?
+Aladdin
+10
+
+What characterises someone referred to as a Bob Acres?
+Cowardice
+10
+
+What cheese comes from the caves of causses,France?
+Roquefort
+10
+
+What chemical agent does Bart use to write his name in the field?
+Sodium Tetrasulfate 
+10
+
+What chemical component is found in fellowes duster product?
+Tetrafluoroethane
+10
+
+What chemical element has the abbreviation 'au'?
+Gold
+10
+
+What chemical element has the abbreviation 'o'?
+Oxygen
+10
+
+What chemical element is also known as quicksilver?
+Mercury
+10
+
+What chemical element is composed of two protons, usually two neutrons and usually two electrons?
+Helium
+10
+
+What chemical element's discovery in 1774 made bleached paper possible?
+Chlorine
+10
+
+What chemical substance can halophytic bacteria tolerate?
+Salt
+10
+
+What chemical symbol is used for the element actinium?
+Ac
+10
+
+What chess piece is usually valued as 5 points?
+Rook
+10
+
+What Chicago intersection is called the busiest in the world?
+Madison & state
+10
+
+What chicken part is the snack of choice for Chinese movie goers?
+Feet
+10
+
+What chief justice headed the commission that declared 'lee harvey oswald...acted alone'?
+Earl warren
+10
+
+What child star's picture appeared on the cover of the sgt. pepper album?
+Shirley temple
+10
+
+What childhood disease did 312 Americans have in 11993, a record low?
+Measles
+10
+
+What childhood disease did only 312 americans have in 1993?
+Measles
+10
+
+What children's author's real name was theodor geisel?
+Dr. seuss
+10
+
+What children's book did Forrest Gump keep in his suitcase?
+Curious George
+10
+
+What children's tale contains the line 'come CinderSlut and hold this skein of wool for me'?
+Cinderella
+10
+
+What children's tale contains the line: come cinderslut, & hold this skein of wool for me?
+Cinderella
+10
+
+What chilean president was killed in a 1973 coup d'etat?
+Salvador allende
+10
+
+What Chinese city is the world's largest noncapital?
+Shanghai
+10
+
+What Chinese city was leveled by an earthquake in 1976?
+Tangshan
+10
+
+What Chinese city's name became a synonym for kidnapping?
+Shanghai
+10
+
+What chinese region is nicknamed the roof of the world?
+Tibet
+10
+
+What Chinese river is known as The Child of the Ocean?
+Yangtze
+10
+
+What chocolate bar was named the official snack of the 1984 olympic games?
+Snickers
+10
+
+What chocolate is named after a planet?
+Mars bar
+10
+
+What chris tarrant saturday children's programme became cult viewing for adults?
+Tiswas
+10
+
+What chuck berry hit does marty mcfly play, in back to the future?
+Johnny be good
+10
+
+What chuck berry song was the rolling stone's first single?
+Come on
+10
+
+What cigar-chewing comedian observed: 'you're only as old as the woman you feel'?
+Groucho marx
+10
+
+What cigarette claimed to 'separate the men from the boys'?
+Lucky strike
+10
+
+What cities expressways, built on a radial pattern dating from the eighteenth century, are so overloaded that traffic often grinds to a halt for 30 to 40 miles outside the city?
+Tokyo
+10
+
+What cities were the start and finish of the first intercontinental auto race in 1908?
+New york & paris
+10
+
+What citrus fruit shares it's name with a major Chinese language?
+Mandarin
+10
+
+What city are you in if you stroll in the piazza san marco & visit torcello, burano & murano?
+Venice
+10
+
+What city are you in if you take the tube to Oxford Circus?
+London
+10
+
+What city became the U S federal capital in 1789?
+New york
+10
+
+What city boasts a world of coca cola pavilion featuring futuristic soda fountains?
+Atlanta
+10
+
+What city boasts a World of Coca Cola pavillion featuring futuristic soda fountains?
+Atlanta
+10
+
+What city boasts Leonardo's famed fresco of the Last Supper?
+Milan
+10
+
+What city boasts the copacabana beach and impanema?
+Rio de janeiro
+10
+
+What city boasts the only royal palace in the US?
+Honolulu
+10
+
+What city burned in 64 ad?
+Rome
+10
+
+What city contains the Quartier Latin?
+Paris
+10
+
+What city did Adolf Hitler plan to rename Germania?
+Berlin
+10
+
+What city did cable cars first roll down clay street in 1873?
+San francisco
+10
+
+What city did general sherman burn in 1864?
+Atlanta
+10
+
+What city did Jacques Guernerin make the first parachute jump over, in 1797?
+Paris
+10
+
+What city did the atlanta braves transfer from for the 1966 season?
+Milwaukee
+10
+
+What city do batman and robin patrol?
+Gotham
+10
+
+What city does leonardo da vinci airport serve?
+Rome
+10
+
+What city does Prestwick Airport serve?
+Glasgow
+10
+
+What city exists on every continent?
+Rome
+10
+
+What city features the exclusive Copacabana beach?
+Rio de Janeiro
+10
+
+What city had the first zoo in the US?
+Philadelphia
+10
+
+What city has 400 hotels, but no cemeteries?
+Miami beach, fl
+10
+
+What city has been air rated the cleanest in the nation for a city its size?
+Amarillo
+10
+
+What city has been air-rated the cleanest in the US for a city its size?
+Amarillo
+10
+
+What city has been hailed as The Athens of the North?
+Edinburgh
+10
+
+What city has more homeless cats per square mile than any other city in the world?
+Rome
+10
+
+What city has the fictional zipcode 90210?
+Beverly hills
+10
+
+What city has the most taxis in the world?
+New york
+10
+
+What city has the most underground stations?
+New york
+10
+
+What city has the most unlisted phone numbers in the phone book?
+Las vegas
+10
+
+What city has the tallest building outside the united states?
+Toronto, Canada
+10
+
+What city has the world's largest black population?
+New york
+10
+
+What city has the world's largest bus fleet?
+Sao Paulo, Brazil
+10
+
+What city has the world's longest subway system?
+London
+10
+
+What city holds the warana festival every spring?
+Brisbane
+10
+
+What city hosted the 1936 summer olympics?
+Berlin
+10
+
+What city hosted the 1976 summer olympics?
+Montreal
+10
+
+What city in India was famous for a black hole?
+Calcutta
+10
+
+What city in southern Jordan did john burgon speak of when he described it as 'a rose red city, half as old as time'?
+Petra
+10
+
+What city in the world has the lowest birth rate?
+Vatican city
+10
+
+What city is across the golden gate bridge from San Francisco?
+Oakland
+10
+
+What city is almost home to almost half of michelangelos statues?
+Florence
+10
+
+What city is also known as City, U.S.A?
+Nashville
+10
+
+What city is April wine from?
+Montreal
+10
+
+What city is at the eastern end of the st lawrence seaway?
+Montreal
+10
+
+What city is at the end of the line when leaving Nice on the Mistral?
+Paris
+10
+
+What city is at the head of the Nile River Delta?
+Cairo
+10
+
+What city is Canada's steel capital?
+Hamilton
+10
+
+What city is famed for its rive gauche?
+Paris
+10
+
+What city is graced by michelangelo's David?
+Florence
+10
+
+What city is graced by the arch of titus?
+Rome
+10
+
+What city is home to almost half of michelangelo's statues?
+Florence
+10
+
+What city is home to europe's tallest building?
+Moscow
+10
+
+What city is home to the famed manneke pis fountain?
+Brussels
+10
+
+What city is home to the main airport on the costa del sol?
+Malaga
+10
+
+What city is known as auld reekie?
+Edinburgh
+10
+
+What city is known as little havana?
+Miami
+10
+
+What city is known as the 'windy city'?
+Chicago
+10
+
+What city is known as the river capital of the world?
+Akron
+10
+
+What city is known as The Venice of The North?
+Amsterdam
+10
+
+What city is located at the head of the Nile delta?
+Cairo
+10
+
+What city is located on the southernmost tip of the malay peninsula?
+Singapore
+10
+
+What city is near the mouth of the Amazon river?
+Belem
+10
+
+What city is on the west end of lake ontario?
+Hamilton
+10
+
+What city is served by dulles airport?
+Washington dc
+10
+
+What city is served by Narita Airport?
+Tokyo
+10
+
+What city is signified by the 'd' stamped on some American coins?
+Denver
+10
+
+What city is the Kremlin located in?
+Moscow
+10
+
+What city is the queen of the pacific?
+San francisco
+10
+
+What city is the setting for the u.s sitcom cheers?
+Boston
+10
+
+What city is the setting of victor/victoria?
+Paris
+10
+
+What city is wiener schnitzel named after?
+Vienna
+10
+
+What city provided the setting for One day at a time?
+Indianapolis
+10
+
+What city ranks second after New York as America's advertising hub?
+Chicago
+10
+
+What city was beseiged for 880 days during World War II?
+Leningrad
+10
+
+What city was bunker hill near?
+Boston
+10
+
+What city was called 'The Rose red city, half as old as time?
+Petra
+10
+
+What city was conquored by Joshua?
+Jericho
+10
+
+What city was destroyed by Little Boy?
+Hiroshima
+10
+
+What city was destroyed by Mongols in 1258, Tamerlane in 1400, the Persians in 1524, & nearly by U S bombers in 1991?
+Baghdad
+10
+
+What city was home to Canada's first zoo?
+Halifax
+10
+
+What city was martin luther king jr assassinated in?
+Memphis
+10
+
+What city was named after francis of assisi?
+San francisco
+10
+
+What city was named for it's mining and trading of salt?
+Salzburg
+10
+
+What city was originally called edo?
+Tokyo
+10
+
+What city was the birthplace of the United Nations?
+San francisco
+10
+
+What city was the first home to the Statue of Liberty?
+Paris
+10
+
+What city was the leader of the delian league?
+Athens
+10
+
+What city was the original Dixie?
+New orleans
+10
+
+What city was the setting for 'Gone With the Wind'?
+Atlanta
+10
+
+What city was the site for the 1956 summer olympics?
+Melbourne
+10
+
+What city was the site of the first meeting of the United Nations General Assembly?
+London
+10
+
+What city would you be in if you were feeding the pigeons in the Piazza San Marco?
+Venice
+10
+
+What city would you reach if you dialled 031 from London?
+Edinburgh
+10
+
+What city would you visit to see Phar Lap's huge heart on display?
+Canberra
+10
+
+What city would you visit to see Wenceslaus Square?
+Prague
+10
+
+What city's baseball stadium is known as the coliseum?
+Oakland
+10
+
+What city's drivers owe over $460 million in parking fines?
+New York City
+10
+
+What city's harbour does The Little Mermaid hail grace?
+Copenhagen
+10
+
+What city's magazine broke the Iran contra scandal in a 1986 article?
+Beirut
+10
+
+What city's main thoroughfare is o'connell street?
+Dublin
+10
+
+What city's main thoroughfare is the grand canal?
+Venice
+10
+
+What city's name is derived from 'dubh linn'?
+Dublin
+10
+
+What city's old quarter is called the plaka?
+Athens
+10
+
+What city's sewer tour gets no stars in the Michelin Green Guide?
+Paris
+10
+
+What city's siege is chronicled in harrison salisbury's the 900 days?
+Leningrad
+10
+
+What city's underground railroad system has the most stations (458) of any in the world?
+New york
+10
+
+What civil war was fought between 1936 and 1939?
+Spanish civil war
+10
+
+What civilisation invented the arch?
+Roman
+10
+
+What class is categorized as the bourgeoisie?
+Middle class
+10
+
+What class of animals makes up more than two thirds of all known species?
+Insects
+10
+
+What class of animals makes up more then two thirds of known species?
+Insects
+10
+
+What class of creatures are sometimes called hexapods?
+Insects
+10
+
+What class of fruit are mandarins, limes & grapefruit?
+Citrus
+10
+
+What class of ship was the caine?
+Minesweeper
+10
+
+What classical piece of music serves as the Lone Ranger's theme song?
+William tell overture
+10
+
+What cleaned like a white tornado?
+Ajax
+10
+
+What clergyman wrote the best selling boom the power of positive thinking?
+Norman vincent peale
+10
+
+What close relative of the wallaby is good at climbing trees?
+Tree kangaroo
+10
+
+What clothing got its name from dungri, a suburb of bombay?
+Dungarees
+10
+
+What club did barry manilow call the hottest spot north of havana?
+The copacabana
+10
+
+What club did joe hunt lead before being sentenced to life in prison?
+Billionaire boys club
+10
+
+What co-founder of the actors studio directed james dean in east of eden?
+Elia kazan
+10
+
+What coalition brought a new version of the Donna Summer no1 into the charts in 1985?
+Bronski beat with marc almond
+10
+
+What coast of Australia is Sydney on?
+East
+10
+
+What cocktail does bourbon, sugar and mint make?
+Mint julep
+10
+
+What cocktail is made from brandy and white creme de menthe?
+Stinger
+10
+
+What cocktail is made from gin and collins?
+Tom collins
+10
+
+What cocktail is made from rum, lime and cola?
+Cuba libre
+10
+
+What cocktail is made from triple sec, tequila and lemon or lime juice?
+Margarita
+10
+
+What cocktail is made from vodka and kahlua?
+Black Russian
+10
+
+What cocktail is made from whiskey, hot coffee and whipped cream?
+Irish coffee
+10
+
+What cocktail is made of rum and lemon?
+Daiquiri
+10
+
+What cocktail is made up of vodka, orange juice and galliano?
+Harvey wallbanger
+10
+
+What codename had the German assault on Moscow in WW II?
+Barbarossa
+10
+
+What coffee concoction is named after the capuchin monks?
+Cappucino
+10
+
+What coffee growing country is the largest in South America?
+Brazil
+10
+
+What coin was discontinued for 41 years, beginning in 1935?
+Silver dollar
+10
+
+What cole porter tune received its second wind from fred parris and the five satins?
+In the still of the night
+10
+
+What collective name is given to march 25th,June 24th,September 29th and December 25th?
+The quarter days
+10
+
+What collective term derived from the latin word for swaddling clothes describes books printed before 1500?
+Incunabula
+10
+
+What colleen mccullough novel commanded a record sum for paperback rights?
+The thorn birds
+10
+
+What college did barry sanders attend?
+Oklahoma
+10
+
+What college did chris webber attend?
+Michigan
+10
+
+What college did grant hill attend?
+Duke
+10
+
+What college did Heisman trophy winner Barry Saunders play football for?
+Oklahoma state university
+10
+
+What college did jim plunkett play football for?
+Stanford
+10
+
+What college handbook edited by Lisa Birnbach described how to be really top drawer?
+The official preppy handbook
+10
+
+What college has won the most NCAA Mens basketball championships?
+Ucla
+10
+
+What collegiate sport includes 3 match periods, one shorter than the other?
+Wrestling
+10
+
+What color are a beaver's teeth?
+Orange
+10
+
+What color are a Siamese cat's eyes?
+Blue
+10
+
+What color are a zebra's stripes during the first six months of life?
+Brown
+10
+
+What color are an albino elephant's toenails?
+White
+10
+
+What color are the clovers in lucky charms?
+Green
+10
+
+What color are the majority of candies in a package of m&m's?
+Brown
+10
+
+What color are the scallops 35 eyes?
+Blue
+10
+
+What color collar does lady wear, in lady and the tramp?
+Blue
+10
+
+What color do turnips turn when sunburnt?
+Green
+10
+
+What color do you get in mirc using control code number 2?
+Dark blue
+10
+
+What color does litmus turn in the presence of acid?
+Red
+10
+
+What color eyes did the boys from Brazil have?
+Blue
+10
+
+What color is a granny smith apple?
+Green
+10
+
+What color is a mix of yellow with red?
+Orange
+10
+
+What color is a yaks milk?
+Pink
+10
+
+What color is an emerald?
+Green
+10
+
+What color is an orange?
+Orange
+10
+
+What color is chlorophyll?
+Green
+10
+
+What color is demerara sugar?
+Brown
+10
+
+What color is malachite?
+Green
+10
+
+What color is mary poppin's umbrella?
+Black
+10
+
+What color is mr spock's blood?
+Green
+10
+
+What color is produced by the complete absorption of light rays?
+Black
+10
+
+What color is produced from the complete absorption of light rays?
+Black
+10
+
+What color is the car that Starsky & Hutch drive?
+Red with a white swoop
+10
+
+What color is the last and most valuable ball a snooker player must pocket?
+Black
+10
+
+What color is the lion on the side of the detroit lions football helmet?
+Blue
+10
+
+What color is the M in McDonald's?
+Yellow
+10
+
+What color is the milk of a tibetian yak?
+Pink
+10
+
+What color is the nut of a pistachio?
+Green
+10
+
+What color is the skin of the polar bear?
+Black
+10
+
+What color is the stripe on a mountie's dress pants?
+Yellow
+10
+
+What color is the tip of a Canada lynx's tail?
+Black
+10
+
+What color light has the greatest wavelength?
+Red
+10
+
+What color marks the only group of monopoly properties with three u.s. State names?
+Red
+10
+
+What color of mandm is the most prevalent in each bag of mandm's (30%)?
+Brown
+10
+
+What color square does the white king start a chess game on?
+Black
+10
+
+What color top hat does jiminy cricket sport, in pinocchio?
+Blue
+10
+
+What color was Coca Cola originally?
+Green
+10
+
+What color was Moby Dick?
+White
+10
+
+What color were E.T's eyes?
+Blue
+10
+
+What colour are a scallop's 35 eyes?
+Blue
+10
+
+What colour are a siamese cat's eyes?
+Blue
+10
+
+What colour are blue tit's breasts?
+Yellow
+10
+
+What colour are emu eggs?
+Green
+10
+
+What colour are mickey mouse's gloves?
+White
+10
+
+What colour are most basketballs?
+Orange
+10
+
+What colour are most of Venices gondolas?
+Black
+10
+
+What colour are rupert the bear's trousers?
+Yellow and black
+10
+
+What colour are shelled pistachio nuts?
+Green
+10
+
+What colour are the C strings on a harp?
+Red
+10
+
+What colour are the castellated walls of the kremlin?
+Red
+10
+
+What colour are the cliffs of dover?
+White
+10
+
+What colour are the corner squares of a scrabble board?
+Red
+10
+
+What colour are the flowers of the mustard plant?
+Yellow
+10
+
+What colour are the flowers of the saffron?
+Purple
+10
+
+What colour are the guest bathrobes and towels at the very exclusive Riz Hotel in Paris?
+Apricot
+10
+
+What colour are the properties Kentucky, illinois, and indiana in monopoly?
+Red
+10
+
+What colour are Venetian gondolas, except those of high public officials?
+Black
+10
+
+What colour beards grow the quickest?
+Blonde
+10
+
+What colour belt does a first-degree dan wear with his karate garb?
+Black
+10
+
+What colour belt does a junior beginner wear in judo?
+White
+10
+
+What colour bottles do good rhine wines come in?
+Brown
+10
+
+What colour clothing is traditionally worn by tennis players?
+White
+10
+
+What colour comes between yellow & blue in a rainbow?
+Green
+10
+
+What colour container does a big mac come in?
+Yellow
+10
+
+What colour do people in China wear when they are in mourning?
+White
+10
+
+What colour does a chameleon turn when its angry?
+Black
+10
+
+What colour does blue,red and green light make?
+White
+10
+
+What colour does copper give to a firework?
+Green
+10
+
+What colour does jaundice make the skin?
+Yellow
+10
+
+What colour does litmus paper turn if it is dipped in lemon juice?
+Red
+10
+
+What colour does the bride wear in a chinese wedding?
+Red
+10
+
+What colour does the prefix 'leuco-' refer to?
+White
+10
+
+What colour dots does the winner of the tour de france mountain stage wear on his jersey?
+Red
+10
+
+What colour eyes did the boys from Brazil have?
+Blue
+10
+
+What colour flag indicates an EEC approved clean beach?
+Blue
+10
+
+What colour flag means danger if it is waved during a motor race?
+Yellow
+10
+
+What colour flag should you wave if you want to declare a truce?
+White
+10
+
+What colour gloves do snooker referees wear?
+White
+10
+
+What colour is a Granny Smith apple?
+Green
+10
+
+What colour is a male blackbird?
+Black
+10
+
+What colour is a New York taxi?
+Yellow
+10
+
+What colour is a palamino horse?
+Golden with white mane and tail
+10
+
+What colour is a robin's egg?
+Blue
+10
+
+What colour is amethyst?
+Purple
+10
+
+What colour is an aircraft's 'black box' flight recorder?
+Orange
+10
+
+What colour is an emerald?
+Green
+10
+
+What colour is angelica, used in decorating cakes?
+Green
+10
+
+What colour is bianco wine?
+White
+10
+
+What colour is bistre, a pigment used in artist's paints and inks?
+Brown
+10
+
+What colour is cerulean?
+Blue
+10
+
+What colour is Chablis?
+White
+10
+
+What colour is cinnabar?
+Red
+10
+
+What colour is demerara sugar?
+Brown
+10
+
+What colour is diamond dust?
+Black
+10
+
+What colour is grover?
+Blue
+10
+
+What colour is malachite?
+Green
+10
+
+What colour is mars said to be?
+Red
+10
+
+What colour is Max Headrooms hair?
+Blond
+10
+
+What colour is mr spock's blood?
+Green
+10
+
+What colour is normally associated with cowardice?
+Yellow
+10
+
+What colour is produced by the complete absorption of light rays?
+Black
+10
+
+What colour is puce?
+Purple brown
+10
+
+What colour is pure molten gold?
+Green
+10
+
+What colour is Riesling wine?
+White
+10
+
+What colour is Supergirl's hair?
+Blonde
+10
+
+What colour is the 'Cookie Monster' from the programme Sesame Street?
+Blue
+10
+
+What colour is the albumen in a hard boiled egg?
+White
+10
+
+What colour is the all clear flag in motor racing?
+Green
+10
+
+What colour is the bullseye on an official archery target?
+Yellow
+10
+
+What colour is the car that starsky & hutch drive?
+Red with a white stripe
+10
+
+What colour is the Central line as shown on London underground maps?
+Red
+10
+
+What colour is the circle on the flag of Bangladesh?
+Red
+10
+
+What colour is the coolest part of a flame?
+Blue
+10
+
+What colour is the cross on the Swedish national flag?
+Yellow
+10
+
+What colour is the cross on the Swiss national flag?
+White
+10
+
+What colour is the cue ball in snooker?
+White
+10
+
+What colour is the danger flag in auto racing?
+Yellow
+10
+
+What colour is the danger flag in motor racing?
+Yellow
+10
+
+What colour is the District Line as shown on maps of the London underground?
+Green
+10
+
+What colour is the European Flag?
+Blue
+10
+
+What colour is the ferrari emblem?
+Yellow
+10
+
+What colour is the hammer and sickle on Russia's flag?
+Gold
+10
+
+What colour is the hammer and sickle on the Soviet Union's flag?
+Gold
+10
+
+What colour is the inside of a pistachio nut?
+Green
+10
+
+What colour is the leather in the House of Commons?
+Green
+10
+
+What colour is the left hand circle of the Olympic rings?
+Blue
+10
+
+What colour is the mineral malachite?
+Green
+10
+
+What colour is the number 13 on a roulette wheel?
+Black
+10
+
+What colour is The Queens blotting paper?
+Black
+10
+
+What colour is the result of mixing red and yellow?
+Orange
+10
+
+What colour is the sea around the yellow submarine?
+Green
+10
+
+What colour is the star on the flag of Vietnam?
+Yellow
+10
+
+What colour is the stone in an amethyst ring?
+Purple
+10
+
+What colour is the stripe on a Canadian Mountie's dress pants?
+Yellow
+10
+
+What colour is the stripe on a mountie's dress uniform?
+Yellow
+10
+
+What colour is the umbilical cord?
+Blue
+10
+
+What colour is viridian?
+Green
+10
+
+What colour is worn by the number 5 dog in greyhound racing?
+Orange
+10
+
+What colour is yak's milk?
+Pink
+10
+
+What colour is zz-top's car?
+Red
+10
+
+What colour lenses are required to view a 3-d film?
+Red and green
+10
+
+What colour light do ships display on the starboard side?
+Green
+10
+
+What colour light is displayed on the port side of a boat?
+Red
+10
+
+What colour of boxing trunks was Muhammad Ali partial to?
+White
+10
+
+What colour on Monopoly properties are landed on most often?
+Orange
+10
+
+What colour represents the piccadilly line on london's tube?
+Blue
+10
+
+What colour results from mixing red & blue?
+Purple
+10
+
+What colour shirts did Garibaldis followers wear?
+Red
+10
+
+What colour shirts must table tennis players wear in official competition?
+Black
+10
+
+What colour shirts must table tennis players wear in official competitions?
+Black
+10
+
+What colour square does the white king start a game of chess on?
+Black
+10
+
+What colour upset the heroine of hitchcock's marnie?
+Red
+10
+
+What colour was Judas Escariot's hair?
+Red
+10
+
+What colour was Moby Dick?
+White
+10
+
+What colour was monica lewinsky's dress in her encounter with clinton?
+Blue
+10
+
+What colour was the first artificial dye, discovered in 1855, by WH Perkins?
+Mauve
+10
+
+What colour was the hundred billionth crayola crayon?
+Periwinkle blue
+10
+
+What colour was the maltese falcon?
+Black
+10
+
+What colour was the penny black postage stamp changed to in 1841?
+Red
+10
+
+What colour were the blackout lights at Waterloo station during World War II?
+Blue
+10
+
+What colour would one associate with the Spanish volunteer force on the eastern front in the second world war?
+Blue
+10
+
+What colour would one associate with the Spanish volunteer force on the eastern front in the WWII?
+Blue
+10
+
+What colour would the sky be if viewed from mars?
+Pink
+10
+
+What coloured jersey is worn by the leader of the Tour de France cycling race?
+Yellow
+10
+
+What colourless liqueur is made from cherries?
+Kirsch
+10
+
+What colourless, odourless light gas is used to lift airships?
+Helium
+10
+
+What colours do the major pittsburgh sports teams wear?
+Black and gold
+10
+
+What colours was the ferrari formula 1 car in the 1964 u.s.a grand prix?
+Blue and white
+10
+
+What combat sport did Dr Jigoro Kano devise in Japan in 1882?
+Judo
+10
+
+What combination of nitrogen and hydrogen is in part produced commercially as a by-product of coal-gas manufacturing?
+Ammonia
+10
+
+What comedian has played god in two movies?
+George burns
+10
+
+What comedian is known as 'the Imelda Marcos of White Nikes'?
+Jerry Seinfeld
+10
+
+What comedian noted at the oscar ceremonies that his suit was fireproof?
+Richard pryor
+10
+
+What comedian performed at caesar's palace on his 97th birthday in 1993?
+George burns
+10
+
+What comedian was booted out of a Peoria grammar school when nuns learned his grandmother operated a number of brothels?
+Richard Pryor
+10
+
+What comedian's life is hashed out in the book jackie, oy?
+Jackie mason
+10
+
+What comedienne's baby appeared on the first cover of tv guide?
+Lucille ball
+10
+
+What comedy team's films included 'hollywood or bust' and 'living it up'?
+Dean martin and jerry lewis
+10
+
+What comes after deuce in tennis?
+Advantage
+10
+
+What comes before jet ? and after mumbo?
+Jumbo
+10
+
+What comic actor starred with richard pryor in stir crazy?
+Gene wilder
+10
+
+What comic features dennis the menace?
+Beano
+10
+
+What comic hero got married at a 1987 New York mets baseball game?
+Spiderman
+10
+
+What comic strip canine turned 35 in 1985?
+Snoopy
+10
+
+What comic strip character grew a 7 inch bicep & 20 inch forearm?
+Popeye
+10
+
+What comic strip character has been declared to have the lowest IQ in America?
+Li'l Abner
+10
+
+What comic strip character is Beetle Bailey's sister?
+Lois
+10
+
+What comic strip did berkeley breathed create?
+Bloom county
+10
+
+What comic strip did garry trudeau create?
+Doonesbury
+10
+
+What comic strip duck is a billionare?
+Scrooge mcduck
+10
+
+What comic strip kids with German accents did rudolph dirks create in 1897?
+The katzenjammer kids
+10
+
+What comic was korky the cat in?
+Dandy
+10
+
+What comic-strip character married the horn-helmeted helga?
+Hagar
+10
+
+What commercial was Michael Jackson singing for when his hair caught on fire?
+Pepsi
+10
+
+What committee eventually developed a standard for the 'c' programming language?
+Ansi
+10
+
+What commodity was offered to young ladies in hound dog orange, tutti frutti red and heartbreak hotel pink?
+Lipstick
+10
+
+What common ailment can't you catch at the north pole?
+A cold
+10
+
+What common ailment cant you catch at the north pole?
+Cold
+10
+
+What common allergens are the male sex cells of plants?
+Pollen
+10
+
+What common animal is the only animal that can see both infra red & ultra violet light?
+Goldfish
+10
+
+What common garden bird has the Latin name 'troglodytes troglodytes'?
+Wren
+10
+
+What common household pet sleeps an average of 14 hours a day?
+Cat
+10
+
+What common illness is known for causing people to have 'seizures'?
+Epilepsy
+10
+
+What common medical technique was introduced to Britain from Turkey in 1721 and tried out on condemned criminals?
+Inoculation
+10
+
+What common pests does new zealand not have?
+Squirrels
+10
+
+What common phrase originated when 'bedsprings' were ropes woven through wooden bed frames and needed to be kept from sagging by using a key to stretch them?
+Sleep tight
+10
+
+What common tool has a head & a claw?
+Hammer
+10
+
+What common word used by road users is derived from the Hindu god Jagganath?
+Juggernaut
+10
+
+What commonwealth country's national flower is the wattle?
+Australia
+10
+
+What company cleverly called its camcorder canovision 8?
+Canon
+10
+
+What company created a computer dubbed Jackintosh?
+Atari
+10
+
+What company created the Wave (.wav) file type?
+Microsoft
+10
+
+What company decided incubus was a good name for a womens running shoe?
+Reebok
+10
+
+What company developed the first nylon bristles?
+Dupont
+10
+
+What company did the discoverer of kevlar work for?
+Dupont
+10
+
+What company has the following advertising slogan 'Finger Lickin' Good'?
+Kfc
+10
+
+What company has/had the following advertising slogan 'oh what a feeling'?
+Toyota
+10
+
+What company introduced trash compactors to the market?
+Whirlpool
+10
+
+What company invented abs brakes for cars?
+Bosch
+10
+
+What company invented the compact disk in 1972?
+Rca
+10
+
+What company is sometimes known as 'BIG BLUE'?
+Ibm
+10
+
+What company is the largest aircraft manufacturer in the world?
+Boeing
+10
+
+What company is the worlds largest user of silver?
+Kodak
+10
+
+What company made doom?
+Id
+10
+
+What company made PacMan?
+Bally Midway
+10
+
+What company made the first color arcade game?
+Atari
+10
+
+What company makes a car called the accord?
+Honda
+10
+
+What company makes Pampers disposable diapers?
+Proctor & gamble
+10
+
+What company makes scotch tape?
+3m
+10
+
+What company makes vegemite?
+Kraft
+10
+
+What company makes windows 98?
+Microsoft
+10
+
+What company owns Technics?
+Panasonic
+10
+
+What company owns the world's second largest truck fleet?
+Coca cola
+10
+
+What company produces 'Cheerios'?
+General mills
+10
+
+What company produces baby ruth and butterfinger candy bars?
+Curtiss
+10
+
+What company produces flight simulator?
+Microsoft
+10
+
+What company produces SoundBlaster sound cards?
+Creative
+10
+
+What company produces the game Doom?
+Id
+10
+
+What company produces the orange drink tang?
+Kraft
+10
+
+What company produces the software 'first aid'?
+Cybermedia
+10
+
+What company produces the software 'pc anywhere'?
+Symantec
+10
+
+What company produces thinkpad computers?
+Ibm
+10
+
+What company sponsored tv's college bowl quiz show?
+General electric
+10
+
+What company supplied the imperial Russian court with vodka from 1886 to 1917?
+Smirnoff
+10
+
+What company supplied uniforms for the first green bay packers football team?
+Acme packing company
+10
+
+What company used the little aligators as it's symbol on clothing?
+Izods
+10
+
+What company was formed by the Swede, Ingvar Kamprad?
+Ikea
+10
+
+What company was founded by Sir Allan Lane in 1935?
+Penguin books
+10
+
+What company was the first news wire service?
+Associated press
+10
+
+What company was the major sponsor for the show studio one?
+Westinghouse
+10
+
+What company's logo is the world's second most recognized symbol, after the christian cross?
+Coca cola
+10
+
+What competitive failure did Norway achieve in 1963,1978 and 1981?
+Nil points
+10
+
+What complaint do you suffer fron if you have podobromhidrosis?
+Smelly feet
+10
+
+What completed a journey of 19,500 miles with only three stops in August 1929?
+The graf zeppelin
+10
+
+What completes this well known saying...'An Englishman's home?
+Is his castle
+10
+
+What compony produces the software program Winamp?
+Nullsoft
+10
+
+What composer had the forenames piotr illyich?
+Tchaikovsky
+10
+
+What composer wrote the opera 'tosca'?
+Giacomo puccini
+10
+
+What compound is often added to water supplies to help prevent toth decay?
+Fluoride
+10
+
+What compound is the major constituent of limestone, coral and seashells?
+Calcite
+10
+
+What compound might you expect to find in diet soft drinks?
+Aspartame
+10
+
+What comprises than 54% of humpback whale's milk?
+Fat
+10
+
+What computer company tv ad showed a woman throwing a javelin through a tv?
+Apple
+10
+
+What computer game featured a disco leftover looking for love?
+Leisure Suit Larry
+10
+
+What computer language was named after ada lovelace?
+Ada
+10
+
+What computer predicted, correctly, that eisenhower would win a landslide victory in the 1952 elections?
+Univac
+10
+
+What computer-generated Matt Frewer character starred in Coke commercials, and British and American TV?
+Max headroom
+10
+
+What concentration camp is the name of anne frank's burial site?
+Bergen belsen
+10
+
+What conclusive battle ended the french stay in viet nam?
+Dien bien phu
+10
+
+What condiment gets its name from the malay word for 'taste' or 'fish sauce'?
+Ketchup
+10
+
+What conflict was known as 'Truman's folly'?
+The Korean War
+10
+
+What connecticut town introduced the first telephone directory in 1878?
+New haven
+10
+
+What connects kabul with peshawar?
+Khyber pass
+10
+
+What connects the Rhine to other rivers?
+Canals
+10
+
+What conqueror died june 13, 323 b.c. at Babylon?
+Alexander the great
+10
+
+What consists of brahma, shiva, and vishnu?
+Hindu trinity
+10
+
+What consists of the troposphere, the stratosphere, and the ionosphere?
+The Atmosphere
+10
+
+What console was the game 'Stradius' for?
+NES
+10
+
+What constellation contains the twins Castor and Pollux?
+Gemini
+10
+
+What constellation embraces polaris?
+The little dipper
+10
+
+What constellation is known as The Water Bearer?
+Aquarius
+10
+
+What constellation is named after a legendary flying horse?
+Pegasus
+10
+
+What constellation is represented by a bull?
+Taurus
+10
+
+What constellation is represented by a crab?
+Cancer
+10
+
+What constellation is represented by a fish?
+Pisces
+10
+
+What constellation is represented by a goat?
+Capricorn
+10
+
+What constellation is represented by a hunter with a club and shield?
+Orion
+10
+
+What constellation is represented by a lion?
+Leo
+10
+
+What constellation is represented by a scorpion?
+Scorpio
+10
+
+What constellation is represented by a water carrier?
+Aquarius
+10
+
+What constellation represents a hunter with club and shield?
+Orion
+10
+
+What constituency did Margaret Thatcher represent in Parliament?
+Finchley
+10
+
+What constitutes 12 percent of an eggs weight?
+Shell
+10
+
+What consumer durable will you find in 96.6% of British households?
+Television
+10
+
+What contagious disease was scheduled for complete eradication on June 30, 1999?
+Smallpox
+10
+
+What contains as much caffeine as eighteen ounces of an average cola drink?
+A cup of coffee
+10
+
+What continent boasts the greatst number of Roman Catholics?
+South America
+10
+
+What continent contains Queen Maud Land, Wilkes Land and Bird Land?
+Antarctica
+10
+
+What continent did Britain first begin to colonise in 1788?
+Australia
+10
+
+What continent did Christopher Columbus think he was on when he landed in the Americas?
+Asia
+10
+
+What continent did Mungo Park explore in the early 1800s?
+Africa
+10
+
+What continent did the ballroom dance called the 'tango' come from?
+South America
+10
+
+What continent dit the potato plant originally come from?
+South America
+10
+
+What continent has the highest average elevation?
+Antarctica
+10
+
+What continent has the lowest highest mountain?
+Australia
+10
+
+What continent has the most people per square mile?
+Europe
+10
+
+What continent is bounded on the north by the Timor Sea, The Arafura Sea & the Torres Straights?
+Australia
+10
+
+What continent is cut almost in half by the equator?
+Africa
+10
+
+What continent is Egypt in?
+Africa
+10
+
+What continent is home to half the world's people?
+Asia
+10
+
+What continent is home to jaguars?
+South America
+10
+
+What continent is home to most of the world's penguins?
+Antarctica
+10
+
+What continent is home to one third of the world's languages?
+Africa
+10
+
+What continent is home to the largest number of countries?
+Africa
+10
+
+What continent is Lake Titicaca in?
+South America
+10
+
+What continent is part of both the east and west hemispheres?
+Antarctica
+10
+
+What continent is Sierra Leone in?
+Africa
+10
+
+What continent is sierre leone in?
+Africa
+10
+
+What continent is submerged?
+Atlantis
+10
+
+What continent is the country of cameroon in?
+Africa
+10
+
+What continent pushes up the atlas mountains?
+Africa
+10
+
+What continent should you live in if you want to speak bantu every day?
+Africa
+10
+
+What continent's westernmost point is called Cape Verde?
+Africa
+10
+
+What controversy arose in the 1972 olympics ussr-usa basketball game?
+Clock
+10
+
+What cookbook opened: 'the cook, said saki, was a good cook, as cooks go, and as cooks go, she went'?
+The joy of cooking
+10
+
+What cooking device was invented to use aboard us spaceships?
+Microwave oven
+10
+
+What cooking school is in paris?
+Cordon bleu
+10
+
+What cool snack was first introduced to America in 1923?
+The Popsicle
+10
+
+What could roman catholics do in good conscience for the first time on dec 5, 1966?
+Eat meat on friday
+10
+
+What couldn't jack sprat's wife eat?
+Lean
+10
+
+What counntry is Kuala Lumpur the capital of?
+Malaysia
+10
+
+What counrty would you visit to ski in the Dolomites?
+Italy
+10
+
+What countries are known as the abc powers?
+Argentina Brazil chile
+10
+
+What countries does the Mont Blanc Tunnel join?
+France and Italy
+10
+
+What countries shores meet the Sargasso Sea?
+None
+10
+
+What countries still have not signed a peace treaty for wwii?
+Russia and Japan
+10
+
+What country accepted 75,000 convicts between 1790 and 1840?
+Australia
+10
+
+What country administers Greenland?
+Denmark
+10
+
+What country administers the caribbean hideaway of martinique?
+France
+10
+
+What country are the Nobel prizes awarded in?
+Sweden
+10
+
+What country are the ships Sun Viking & Nordic Prince registered in?
+Norway
+10
+
+What country are toyota cars built in?
+Japan
+10
+
+What country are you in if you woo in the Wu dialect?
+China
+10
+
+What country are you stuck in if you're doing hard time at boniato prison?
+Cuba
+10
+
+What country artist and sausage company owner sang the hit song 'Big Bad John'?
+Jimmy Dean
+10
+
+What country boasts the Chrysanthemum Dynasty?
+Japan
+10
+
+What country boasts the Krishna River?
+India
+10
+
+What country boasts the most cars per mile of road?
+Britain
+10
+
+What country boasts the most coastline?
+Canada
+10
+
+What country boasts the most dams?
+United states
+10
+
+What country boasts the most subway passengers?
+Japan
+10
+
+What country boasts the southernmost point in continental Europe?
+Spain
+10
+
+What country boasts the worlds largest supply of Fresh water?
+Canada
+10
+
+What country borders kenya to the south?
+Tanzania
+10
+
+What country brews peroni beer?
+Italy
+10
+
+What country calls itself Suomi?
+Finland
+10
+
+What country ceded Florida to the US in 1819?
+Spain
+10
+
+What country claimed rubens, van dyck and breugel as citizens?
+Belgium
+10
+
+What country claimed the first us warship sunk in world war ii?
+Germany
+10
+
+What country comes last in an alphabetical list?
+Zimbabwe
+10
+
+What country consist of 700 islands?
+Bahamas
+10
+
+What country consists mainly of the jutland peninsula?
+Denmark
+10
+
+What country consists mostly of the jutland peninsula?
+Denmark
+10
+
+What country consists of some 13,000 islands stretching for almost 5,000 kilometers?
+Indonesia
+10
+
+What country consumes more coca-cola per capita than any other nation?
+Iceland
+10
+
+What country consumes the most wine per capita?
+Italy
+10
+
+What country contains Africa's northern most point?
+Tunisia
+10
+
+What country contains over half the world's geysers?
+United states
+10
+
+What country contains South America's highest and lowest points?
+Argentina
+10
+
+What country contains the easternmost point in South America?
+Brazil
+10
+
+What country contains the greater lengths of the tigris and euphrates rivers?
+Iraq
+10
+
+What country contains the largest icefield in Europe?
+Norway
+10
+
+What country contains the region of assam?
+India
+10
+
+What country controls access to the North Sea from the rivers Schelde, Meuse and Rhine?
+Netherlands
+10
+
+What country could you expect to have an afternoon tiffin in?
+India
+10
+
+What country covers an entire continent?
+Australia
+10
+
+What country covers more then 194,000 square miles of the Iberian Peninsula?
+Spain
+10
+
+What country cried after the death of their king hussein?
+Jordan
+10
+
+What country declared war on both Germany and the Allies in World War II?
+Italy
+10
+
+What country declared war to Germany at the start of wwi?
+Japan
+10
+
+What country defeated britain in the davis cup at wimbledon in july 2000?
+Ecuador
+10
+
+What country did artist rene magritte call home?
+Belgium
+10
+
+What country did Christopher Columbus insist Cuba was a part of?
+China
+10
+
+What country did European explorers call Cathay?
+China
+10
+
+What country did Fidel Castro organise his 26th of July movement in?
+Mexico
+10
+
+What country did Fidel Castro take over as leader of in 1959?
+Cuba
+10
+
+What country did Germany invade on September 1st 1939?
+Poland
+10
+
+What country did golf originate in?
+Scotland
+10
+
+What country did Italy annex in 1939?
+Albania
+10
+
+What country did King Gustav V reign over from 1907 to 1950?
+Sweden
+10
+
+What country did kung fu get started in?
+China
+10
+
+What country did lord haw haw broadcast propaganda for in world war ii?
+Germany
+10
+
+What country did Morocco and Tunisia fight to win their independance from?
+France
+10
+
+What country did Olympic marathon gold medallist Abebe Bikila represent?
+Ethiopia
+10
+
+What country did president carter ban exports to on april 7, 1980?
+Iran
+10
+
+What country did roulette originate in?
+France
+10
+
+What country did the allies invade in world war ii's operation avalanche?
+Italy
+10
+
+What country did the battle of el alamein take place in?
+Egypt
+10
+
+What country did the fandango originate in?
+Spain
+10
+
+What country did the first performance of Handel's Messiah take place in?
+Ireland
+10
+
+What country did the houses of Rurik and Romanov rule?
+Russia
+10
+
+What country did the Mau Mau Uprising take place in?
+Kenya
+10
+
+What country did the Pope visit after Britain in 1982?
+Argentina
+10
+
+What country did the romans call hibernia?
+Ireland
+10
+
+What country did the U S import 36 million gallons of beer from in 1987?
+West Germany
+10
+
+What country did venetian blinds originate from?
+Japan
+10
+
+What country did venetian blinds originate in?
+Japan
+10
+
+What country did victor emmanuel iii reign over as its last king?
+Italy
+10
+
+What country did volvo & Saab cars originate?
+Sweden
+10
+
+What country do Fiats & Alfa Romeos come from?
+Italy
+10
+
+What country do Geishas come from?
+Japan
+10
+
+What country do the balearic islands belong to?
+Spain
+10
+
+What country do walloons call home?
+Belgium
+10
+
+What country does cricketer Imran Khan come from?
+Pakistan
+10
+
+What country does Gotland belong to?
+Sweden
+10
+
+What country does Paul Hogan come from?
+Australia
+10
+
+What country does queen beatrix rule?
+Netherlands
+10
+
+What country does the Galapagos Islands belong to?
+Ecuador
+10
+
+What country does the inventor of the Rubik's cube come from?
+Hungary
+10
+
+What country does the tourist mecca of Bali belong to?
+Indonesia
+10
+
+What country experienced both a gold rush and a jade rush in the mid-ninteenth century?
+New Zealand
+10
+
+What country exports goods through the port of durban?
+South africa
+10
+
+What country first attempted to build a canal across panama?
+France
+10
+
+What country first claimed the Mississippi River in 1682?
+France
+10
+
+What country first thrilled to twiggy ice cream?
+Britain
+10
+
+What country forms a 2,000-mile archipelago along the east coast of asia?
+Japan
+10
+
+What country gave the Statue of Liberty to the US?
+France
+10
+
+What country generates the most hydroelectric power?
+Canada
+10
+
+What country governs the camayan islands?
+Britain
+10
+
+What country had europe's fastest economic growth rate in 1988?
+Spain
+10
+
+What country had the highest investments in china in 1937?
+Britain
+10
+
+What country had the largest military force in the Middle East at the beginning of August 1990?
+Iraq
+10
+
+What country has 100 mongo to the tugrik?
+Mongolia
+10
+
+What country has a territoral dispute with Spain?
+United Kingdom
+10
+
+What country has been called the queen of the antilles?
+Cuba
+10
+
+What country has by far the largest pig population?
+China
+10
+
+What country has international registration letter M?
+Malta
+10
+
+What country has more than 150 volcanoes, including 60 active volcanoes?
+Japan
+10
+
+What country has not been at war since 1814?
+Sweden
+10
+
+What country has the 2nd largest desert in the world?
+Australia
+10
+
+What country has the best defensive position in the board game Diplomacy?
+England
+10
+
+What country has the biggest population in the world?
+China
+10
+
+What country has the car registration letter T?
+Thailand
+10
+
+What country has the e-mail address '.za'?
+South africa
+10
+
+What country has the highest per capita consumption of cheese?
+France
+10
+
+What country has the highest population density?
+Monaco
+10
+
+What country has the largest number of soldiers?
+China
+10
+
+What country has the largest sheep population?
+Australia
+10
+
+What country has the longest chairlift in europe?
+Switzerland
+10
+
+What country has the lotus flower as its national symbol?
+India
+10
+
+What country has the most sheep?
+Australia
+10
+
+What country has the most war power?
+Russia
+10
+
+What country has the port of haifa?
+Israel
+10
+
+What country has the southern cross on it's flag?
+Australia
+10
+
+What country has the third most satellites in orbit?
+France
+10
+
+What country has the word 'Hellas' on its stamps?
+Greece
+10
+
+What country has the world's highest population density?
+Monaco
+10
+
+What country has the worlds highest golf course?
+Peru
+10
+
+What country has threatened Belize for many years with territorial claims?
+Guatemala
+10
+
+What country has won the most Contract Bridge world championships?
+Italy
+10
+
+What country has won the most Olympic hockey gold medals?
+Canada
+10
+
+What country have most popes come from?
+Italy
+10
+
+What country hosted Football's 1978 world cup?
+Argentina
+10
+
+What country hosted the 1982 world cup of Football?
+Spain
+10
+
+What country invaded Cyprus in 1974?
+Turkey
+10
+
+What country invented bowling?
+Germany
+10
+
+What country invented high octane gasoline in 1930?
+Russia
+10
+
+What country invented the fiber tip marker in 1962?
+Japan
+10
+
+What country is accessed with the international telephone calling code 43?
+Austria
+10
+
+What country is accessed with the international telephone calling code 60?
+Malaysia
+10
+
+What country is accessed with the international telephone calling code 671?
+Guam
+10
+
+What country is also a continent?
+Australia
+10
+
+What country is also known as helvetia?
+Switzerland
+10
+
+What country is angel falls in?
+Venezuela
+10
+
+What country is bordered by france, Germany, Austria, and Italy?
+Switzerland
+10
+
+What country is bordered by Lebanon, Syria, Jordan and Egypt?
+Israel
+10
+
+What country is bounded in part by the Indian ocean and coral and tasman seas?
+Australia
+10
+
+What country is bounded in part by the Indian ocean, coral and tasmen seas?
+Australia
+10
+
+What country is called Bharat in Hindi?
+India
+10
+
+What country is considered the cradle of horse racing?
+England
+10
+
+What country is credited with the invention of the toothbrush?
+China
+10
+
+What country is directly east of Portugal?
+Spain
+10
+
+What country is headed by King Fahd Ibn Abdul Iziz, one of 44 sons sired by a 22 wife dad?
+Saudi arabia
+10
+
+What country is home for Europe's largest glacier?
+Switzerland
+10
+
+What country is home to Heineken beer?
+Netherlands
+10
+
+What country is home to Olympic airways?
+Greece
+10
+
+What country is home to sabena airlines?
+Belgium
+10
+
+What country is home to shakespeare's hamlet?
+Denmark
+10
+
+What country is home to the bank of alexandria?
+Egypt
+10
+
+What country is home to the blue grotto?
+Italy
+10
+
+What country is home to the dresdner bank?
+Germany
+10
+
+What country is home to the Flemings and walloons?
+Belgium
+10
+
+What country is home to the football team Anderlecht?
+Belgium
+10
+
+What country is home to the Matterhorn?
+Switzerland
+10
+
+What country is home to the sphinx?
+Egypt
+10
+
+What country is home to the TAP airline?
+Portugal
+10
+
+What country is home to Varig Airlines?
+Brazil
+10
+
+What country is Hudson Bay in?
+Canada
+10
+
+What country is identified by the letters ma?
+Morocco
+10
+
+What country is identified by the letters nl?
+Netherlands
+10
+
+What country is known as Helvetia?
+Switzerland
+10
+
+What country is known as the land of the White Eagle?
+Poland
+10
+
+What country is loftleider airlines based in?
+Iceland
+10
+
+What country is made up of 13000 islands stretching almost 5000 kms?
+Indonesia
+10
+
+What country is magyar spoken in?
+Hungary
+10
+
+What country is Men Without Hats originally from?
+Canada
+10
+
+What country is mount everest in?
+Nepal
+10
+
+What country is named after a line of latitude?
+Ecuador
+10
+
+What country is national park 'de meinweg' in?
+Holland
+10
+
+What country is North of Zambia?
+Zaire
+10
+
+What country is represented by the letters sf on international license plates?
+Finland
+10
+
+What country is responsible for avia wines?
+Yugoslavia
+10
+
+What country is ruled by the house of orange?
+Netherlands
+10
+
+What country is Santo Domingo the capital of?
+The dominican republic
+10
+
+What country is Seoul the capital of?
+South korea
+10
+
+What country is sometimes called Eire?
+Ireland
+10
+
+What country is Tehran the capital of?
+Iran
+10
+
+What country is the band `A-Ha` from?
+Norway
+10
+
+What country is the dalai lama's place in?
+Tibet
+10
+
+What country is the E.E.C's smallest member?
+Luxembourg
+10
+
+What country is the group queen from?
+England
+10
+
+What country is the Hellenic republic?
+Greece
+10
+
+What country is the helvetian republic?
+Switzerland
+10
+
+What country is the Holy Land to Chinese Buddhists?
+India
+10
+
+What country is the island of Sicily part of?
+Italy
+10
+
+What country is the largest exporter of frogs legs?
+Japan
+10
+
+What country is the largest per capita consumer of beer?
+Germany
+10
+
+What country is the largest producer of olive oil?
+Spain
+10
+
+What country is the larget per capita consumer of beer?
+West Germany
+10
+
+What country is the only one that has a Bible on its national flag?
+Dominican republic
+10
+
+What country is the Panama Canal found in?
+Panama
+10
+
+What country is the resort city of st moritz in?
+Switzerland
+10
+
+What country is the setting for colleen mccullough's the thorn birds?
+Australia
+10
+
+What country is the setting for edgar allen poe's the pit and the pendulum?
+Spain
+10
+
+What country is the setting for The Thorn Birds?
+Australia
+10
+
+What country is the world leader in cobalt mining, producing two-thirds of the world's cobalt supply?
+Zaire
+10
+
+What country is the world's biggest coffee exporter?
+Brazil
+10
+
+What country is the world's biggest producer of wool?
+Australia
+10
+
+What country is the world's deepest mine located?
+South Africa
+10
+
+What country is the world's largest exporter of frog's legs?
+Japan
+10
+
+What country is the world's largest supplier of nickel?
+Canada
+10
+
+What country is the world's leading exporter of beef & veal?
+Australia
+10
+
+What country is the Yucatan Peninsula the southern part of?
+Mexico
+10
+
+What country is timbuktu in?
+Mali
+10
+
+What country is transylvania in?
+Romania
+10
+
+What country is ulan bator the capital of?
+Mongolia
+10
+
+What country is well known for producing champion long distance runners?
+Kenya
+10
+
+What country issued a platinum coin in 1988 bearing a koala?
+Australia
+10
+
+What country joined the E.E.C. with the Uk?
+Eire
+10
+
+What country joins Central America to South America?
+Panama
+10
+
+What country lies between Nicaragua and Panama?
+Costa rica
+10
+
+What country lies directly south of detroit?
+Canada
+10
+
+What country lies north of france and south of holland?
+Belgium
+10
+
+What country lifted a ban on Aristotle, Shakespeare & Dickens in 1978?
+China
+10
+
+What country lifted a ban on aristotle, shakespeare and dickens on feb 11, 1978?
+China
+10
+
+What country lifted a ban on Aristotle, Shakespeare and Dickens on February 11th 1978?
+China
+10
+
+What country lost the Crimean War?
+Russia
+10
+
+What country measures road distances in versts?
+Russia
+10
+
+What country music 'outlaw' gave up his airplane seat to the big bopper?
+Waylon jennings
+10
+
+What country must import river sand from Scotland for construction & camels from North Africa?
+Saudi arabia
+10
+
+What country occupies the 'Horn of Africa?
+Somalia
+10
+
+What country offered albert einstein its presidency in 1952?
+Israel
+10
+
+What country offers the only overland exit from South America?
+Panama
+10
+
+What country officially limits women to one child?
+China
+10
+
+What country owns corsica?
+France
+10
+
+What country owns Elba, Capri and Ischia islands?
+Italy
+10
+
+What country owns the azores?
+Portugal
+10
+
+What country owns the island of sicily?
+Italy
+10
+
+What country played host to the 1982 Football World Cup Finals?
+Spain
+10
+
+What country played West Germany in Footballs world cup finals in both 1986 & 1990?
+Argentina
+10
+
+What country posesses the Nicobar Island?
+India
+10
+
+What country produces carlsberg, tuborg and wiibroe beer?
+Denmark
+10
+
+What country produces the most olive oil?
+Spain
+10
+
+What country produces the original Edam cheese?
+Netherlands
+10
+
+What country produces Wiibroe beer?
+Denmark
+10
+
+What country prohibited the importing of barbie dolls because they were considered 'anti-islamic'?
+Iran
+10
+
+What country provided the birthplace of Christopher Columbus?
+Italy
+10
+
+What country provides the setting for the novel summer of the seventeenth doll?
+Australia
+10
+
+What country saw the origin of lawn tennis?
+England
+10
+
+What country saw the origin of the asain flu?
+China
+10
+
+What country saw the origin of the Asian flu?
+China
+10
+
+What country sees 41 million people speak Hakka as a first language?
+China
+10
+
+What country shares a 1,030 mile border with Sweden?
+Norway
+10
+
+What country singer's duets with loretta lynn ended when he died at age 59?
+Conway twitty
+10
+
+What country sprang from the union of tanganyika and zanzibar?
+Tanzania
+10
+
+What country star learned ventriloquism when he was 6?
+Mark chestnutt
+10
+
+What country suffered a potato famine in 1845?
+Ireland
+10
+
+What country suffered the most combat deaths in world war ii?
+Soviet union
+10
+
+What country surrounds the Republic of San Marino?
+Italy
+10
+
+What country tested it's first nuclear bomb in 1974?
+India
+10
+
+What country used the deadly nerve gas SARIN against Kurdish minority factions in the 1990s?
+Iraq
+10
+
+What country uses the markka as currency?
+Finland
+10
+
+What country was a terrible beauty to leon uris?
+Ireland
+10
+
+What country was annexed by Mussolini in 1936?
+Abyssinia
+10
+
+What country was Anwar Sadat president of before his assassination?
+Egypt
+10
+
+What country was basketball invented in?
+U s a
+10
+
+What country was called botany bay and new holland until 1820?
+Australia
+10
+
+What country was called Caledonia by the Romans?
+Scotland
+10
+
+What country was divided at the 38th parallel?
+Korea
+10
+
+What country was formerly called Ceylon?
+Sri lanka
+10
+
+What country was formerly known as East Pakistan?
+Bangladesh
+10
+
+What country was formerly Portuguese east africa?
+Mozambique
+10
+
+What country was idi amin dictator?
+Uganda
+10
+
+What country was liberated during the gulf war?
+Kuwait
+10
+
+What country was Mother Teresa origionally from?
+Scotland
+10
+
+What country was mother's day first celebrated in?
+U s a
+10
+
+What country was originally known as Terra Australis Incognita?
+Australia
+10
+
+What country was Phar Lap born in?
+New zealand
+10
+
+What country was potato chips invented in?
+U.s.a
+10
+
+What country was ruled by pol pot, leader of the khmer rouge party?
+Cambodia
+10
+
+What country was sir edmund hillary born in?
+New zealand
+10
+
+What country was St Patrick born in?
+Wales
+10
+
+What country was the bridge of san luis rey in?
+Peru
+10
+
+What country was the first in the world to allow women voters?
+New zealand
+10
+
+What country was the most heavily bombed in the Vietnam war?
+Cambodia
+10
+
+What country was the scene of the Boxer Rebellion of 1900?
+China
+10
+
+What country was the scene of the maori wars?
+New zealand
+10
+
+What country was the setting for 'Casablanca'?
+Morocco
+10
+
+What country was the setting for 'Doctor Zhivago'?
+Russia
+10
+
+What country was the setting for 'The King and I'?
+Siam (Thailand)
+10
+
+What country was the setting for ali baba and the forty thieves?
+Persia
+10
+
+What country was the setting for ivor the engine?
+Wales
+10
+
+What country was the setting of 'you only live twice'?
+Japan
+10
+
+What country was the talent spotting hughie green raised in?
+Canada
+10
+
+What country was the target of Germany's planned but canned Operation Sea Lion?
+Britain
+10
+
+What country was the victim of a Russian invasion in 1956?
+Hungary
+10
+
+What country were pekingese dogs once considered sacred in?
+China
+10
+
+What country were the incas from?
+Peru
+10
+
+What country which has the same name as a bird?
+Turkey
+10
+
+What country won 29 medals at the 1988 winter olympics?
+Soviet union
+10
+
+What country won its second Olympic ice hockey gold medal in 1980?
+The U.S.A.
+10
+
+What country won the first gold medal in the first modern-day Olympics?
+USA
+10
+
+What country would a Bulgarian with a good sense of direction walk through to reach Armenia by foot?
+Turkey
+10
+
+What country would you be in if you landed smack in the middle of Plock?
+Poland
+10
+
+What country would you be in if you were holidaying in suva?
+Fiji
+10
+
+What country would you be in if your train's engine had S.N.C.F. painted on it?
+France
+10
+
+What country would you come up in if you drilled a hole straight throught the earth from Buenos Aires?
+China
+10
+
+What country would you have to visit to see the ruins of troy?
+Turkey
+10
+
+What country would you visit to see Ayers Rock?
+Australia
+10
+
+What country would you visit to see Casablanca?
+Morocco
+10
+
+What country would you visit to ski in the Dolomites?
+Italy
+10
+
+What Country-Pop artist was once a cheerleader alongside classmate Brenda Lee at Maplewood High School in Nashville?
+Rita coolidge
+10
+
+What country's 2 dollar note pictures 6 eskimos, 2 kayaks and 2 harpoons?
+Canada
+10
+
+What country's air force was destroyed on the ground on the morning of June 5th 1967?
+Egypt
+10
+
+What country's airline is TAP?
+Portugal
+10
+
+What country's alps surround lake lucerne?
+Switzerland
+10
+
+What country's answer to the oscars is the cesar?
+France
+10
+
+What country's anthem begins 'O God Bestower of the blessings of the Swazi'?
+Swaziland
+10
+
+What country's been the site of the most European battles?
+Belgium
+10
+
+What country's border would an Azerbaijani reach by hiking due south across rhe Talish Mounains?
+Iran's
+10
+
+What country's capital is Lagos?
+Nigeria
+10
+
+What country's capital is montevideo?
+Uruguay
+10
+
+What country's capital is tirana?
+Albania
+10
+
+What country's capital is Tripoli?
+Libya
+10
+
+What country's cavalry used dried milk as long ago as the 13th century?
+Mongolia
+10
+
+What country's currency features a portrait of John Tebbutt?
+Australia
+10
+
+What country's currency is considered the most difficult to counterfeit?
+Japan
+10
+
+What country's entire population was condemned to death by the Spanish inquisition?
+Netherlands
+10
+
+What country's explorers discovered the site of pensacola, Florida?
+Spain
+10
+
+What country's flag flies over Spitsbergen?
+Norway
+10
+
+What country's flag flies over the Azores?
+Portugal
+10
+
+What country's flag flies over the Canary Islands?
+Spain
+10
+
+What country's flag flies over the Faroe Islands?
+Denmark
+10
+
+What country's flag flies over the island of Corfu?
+Greece
+10
+
+What country's flag flies over the snow covered Queen Elizabeth Islands?
+Canada
+10
+
+What country's flag flutters over the Galapagos Islands?
+Ecuador
+10
+
+What country's flag has a big red maple leaf on it?
+Canada
+10
+
+What country's flag has fifty stars on it?
+Usa
+10
+
+What country's flag has lasted the longest without change?
+Denmark
+10
+
+What country's flag is called the union jack?
+England
+10
+
+What country's flag is incorporated most often in others?
+Britain
+10
+
+What country's flag is made up of the Union Jack and the Southern Cross?
+Australia's
+10
+
+What country's flag was Christopher Columbus sailing under when he discovered America?
+Spain
+10
+
+What country's flag was reversed to yield the Red Cross flag?
+Switzerland
+10
+
+What country's forces assisted in the overthrow of Idi Amin in 1979?
+Tanzania
+10
+
+What country's holidays include discovery day, natal day & fete nationale?
+Canada
+10
+
+What country's language is called Magyar?
+Hungary
+10
+
+What country's largest city is Sao Paulo?
+Brazil
+10
+
+What country's major airline is Alitalia?
+Italy
+10
+
+What country's major seaport is alexandria?
+Egypt
+10
+
+What country's most popular tourist area is called the algarve?
+Portugal
+10
+
+What country's national folk hero is called Holger Danske?
+Denmark
+10
+
+What country's note pictures 6 eskimos, 2 kayaks and 2 harpoons?
+Canada
+10
+
+What country's original name contained the words 'terra incognita'?
+Australia
+10
+
+What country's parliament is discussing asking britain to return the koh-i-noor diamond?
+India
+10
+
+What country's people call their language Magyar?
+Hungary
+10
+
+What country's people developed the crossbow?
+China
+10
+
+What country's people stand up for the anthem 'the reign of our emporer'?
+Japan
+10
+
+What country's people stand up for the anthem the reign of our emperor?
+Japan
+10
+
+What country's people were taxed for using salt in the 17th century?
+France
+10
+
+What country's port of Dunwich fell into the sea?
+Suffolk
+10
+
+What country's president zia perished in a 1988 plane crash?
+Pakistan
+10
+
+What country's travel requirements include a contribution to save nubian monuments?
+Egypt
+10
+
+What country's typical foods include tacos, enchiladas & tortillas?
+Mexico
+10
+
+What countrys capital was formed when Pesth and Buda merged?
+Hungary
+10
+
+What countrys flag is made up of the Union Jack and the Southern Cross?
+Australia
+10
+
+What countrys national flower is the wattle?
+Australia
+10
+
+What countrys people were found to be the worlds top television viewers in a 1990 survey?
+Japan
+10
+
+What countrys travel requirements include a 3 dollar contribution to save Nubian monuments?
+Egypt
+10
+
+What county attracts tourists to the seaside village of Clovelly?
+Devon
+10
+
+What county boasts englands largest fish and chip shop?
+Yorkshire
+10
+
+What county can jamaica inn be found in?
+Cornwall
+10
+
+What county is Broadmoor in?
+Berkshire
+10
+
+What county is Chicago?
+Cook county
+10
+
+What county is corfe castle in?
+Dorset
+10
+
+What county is home of the Quantocks and Mendips?
+Somerset
+10
+
+What county is john constable most closely associated with?
+Suffolk
+10
+
+What county is known as The Garden of England?
+Kent
+10
+
+What county is stonehenge in?
+Wiltshire
+10
+
+What coutnry did 300,000 Chinese troops invade in February, 17979?
+Vietnam
+10
+
+What coverted greek items lie in the British museum?
+The elgin marbles
+10
+
+What cowboy star sings blueberry hill in the 1941 movie the singing hills?
+Gene autry
+10
+
+What craft are lark's heads, half hitches and Chinese crown knots associated with?
+Macrame
+10
+
+What craft toy involved cutting plastic figures, coloring them in, and then baking them in the oven?
+Shrinky Dinks
+10
+
+What craft uses a kiln and a kick wheel?
+Pottery
+10
+
+What craft uses a kiln and kick wheel?
+Pottery
+10
+
+What creature acts as a carrier of the diseae bilharzia?
+Freshwater snail
+10
+
+What creature appears on the flag of Wales?
+Dragon
+10
+
+What creature can jump 200 times its own length?
+The flea
+10
+
+What creature can turn it's stomach inside out?
+Starfish
+10
+
+What creature does the Galapagos Islands take their name from?
+Tortoise
+10
+
+What creature is athena, greek goddess of wisdom associated with?
+Owl
+10
+
+What creature is the subject of Roald Dahl's children's book Esio Trot?
+Tortoise
+10
+
+What creature was the early symbol for christ?
+Fish
+10
+
+What creatured squirts blood from its eyes at its' attackers?
+Horned toad
+10
+
+What creatures call an apiary home?
+Bees
+10
+
+What creatures do the Galapagos islands take their name from?
+Tortoises
+10
+
+What creatures do the galpagos islands take their name from?
+Tortoises
+10
+
+What creatures live in an apiary?
+Bees
+10
+
+What creatures of Greek mythology are part man and part horse?
+Centaurs
+10
+
+What credit card features a centurion on its face?
+American express
+10
+
+What crime did Burke and Hare commit?
+Body snatching
+10
+
+What crime did sid vicious commit in 1978?
+Murder
+10
+
+What crisis is known in the therapist biz as Forties Fever?
+Midlife crisis
+10
+
+What crooner produced inauguration balls for JFK & Ronald Reagan?
+Frank sinatra
+10
+
+What crooner was nicknamed 'der bingle'?
+Bing crosby
+10
+
+What crop is grown in the most countries?
+Corn
+10
+
+What crop was brought to malaya from Brazil, and was to become malaya's chief export?
+Rubber
+10
+
+What crop was brought to malaya from Brazil, and was to become malaya's?
+Chief 
+10
+
+What crucial battle took place in 1815?
+Waterloo
+10
+
+What crystalline salt is frequently used to enhance the flavor to TV dinners?
+Monosodium glutamate
+10
+
+What culinary treat did John Montagu invent so he didnt have to leave the gambling tables?
+The sandwich
+10
+
+What cult film made an instant star out of a rotund rocker named Meat Loaf?
+The Rocky Horror Picture Show
+10
+
+What cult of people do Stonehenge and Eisteddfods have in common?
+Druids
+10
+
+What cult-fav eighties movie features John Lithgow from another dimension?
+The Adventures of Buckaroo Banzai
+10
+
+What currency must a foreigner use to pay the $20 airport tax to fly out of Zimbabwe?
+U S dollars
+10
+
+What current cast member of ER was on an 80's show of the same name?
+George Clooney
+10
+
+What current popular sitcom star played Michael P. Keaton's girlfriend Lauren Miller on Family Ties?
+Courteney Cox
+10
+
+What Czech runner blitzed the opposition at the 1952 Olympics?
+Emil Zatopek
+10
+
+What dam is said the be the largest hydroelectric station in the world?
+Itaipu
+10
+
+What dance craze did singer chubby checker start?
+The twist 
+10
+
+What dance gained renown in New York City's peppermint lounge?
+Twist
+10
+
+What dance involves bending over backwards to get under a low bar?
+Limbo
+10
+
+What dance is most associated with Buenos Aires?
+Tango
+10
+
+What dance movie resurrected the great Eric carmen's singing career?
+Dirty dancing
+10
+
+What dance was developed from the rumba and african dances?
+Conga
+10
+
+What danger does Homer see in going into space?
+The Planet of the Apes
+10
+
+What dangerous insulation material is known as the woolly rock?
+Asbestos
+10
+
+What dangles over the tongue from the palate?
+Uvula
+10
+
+What Daniel Defoe character lived on an island?
+Robinson crusoe
+10
+
+What date did FDR say would live in infamy?
+December 7, 1941
+10
+
+What date is boxing day observed on?
+December 26
+10
+
+What date is St George's day?
+23rd April
+10
+
+What date is the 'ides' of march?
+Fifteenth
+10
+
+What date is the beginning of the astrological year?
+March 32st
+10
+
+What date of the year may a fool fool a fool?
+April 1
+10
+
+What date on the calender is Abraham Lincoln's birthday?
+Feb 12
+10
+
+What date was black tuesday?
+October 29, 1929
+10
+
+What date was V E day?
+May 8 1945
+10
+
+What daughter of Czar Nicholas II is said to have escaped death in the Russian Revolution?
+Anastasia
+10
+
+What day commemorates the gallipoli campaign?
+Anzac day
+10
+
+What day does garfield hate most?
+Monday the 13th
+10
+
+What day is St Georges Day?
+23 april
+10
+
+What day of the week did King Henry VIII die on?
+Friday
+10
+
+What day of the week did solomon grundy die?
+Saturday
+10
+
+What day of the week did the Romans call dies solis?
+Sunday
+10
+
+What day of the week did world war ii start?
+Friday
+10
+
+What day of the week is the national gallery of Canada closed?
+Monday
+10
+
+What day of the week was JFK assassinated on?
+Friday
+10
+
+What day of the week was John F. Kennedy assassinated on?
+Friday
+10
+
+What day of the week was solomon grundy married on?
+Wednesday
+10
+
+What day of the week will January 1st 2001 be?
+Monday
+10
+
+What day of the week would visitors be permitted to view the House of Commons and House of Lords session in London, England?
+Wednesday
+10
+
+What dead african leader was originally known as Ras Taffari?
+Haile selassie
+10
+
+What deceased singer's material did Paul mccartney acquire rights to?
+Buddy holly
+10
+
+What deck of card contains the wheel of fortune and the lovers card?
+Tarot
+10
+
+What deck of cards includes the Lovers and Death?
+Tarot cards
+10
+
+What deck of cards includes the wheel of fortune, the lovers & death?
+Tarot cards
+10
+
+What declaration warned against interference in the America's?
+Monroe doctrine
+10
+
+What defense lawyer's clients included lenny bruce and jack ruby?
+Melvin belli
+10
+
+What degree is 'dds'?
+Doctor of dental surgery
+10
+
+What delicacy is also known as pickled roe?
+Caviar
+10
+
+What delicacy is known indelicately as pickled roe?
+Caviar
+10
+
+What Democratic hopeful's birth date received a draft lottery #311?
+Bill clinton
+10
+
+What denomination in the us has the most churches?
+Southern baptist
+10
+
+What denotes a clean pollution-free beach?
+Blue flag
+10
+
+What department store says 'Always Low Prices, Always.'?
+Walmart
+10
+
+What deposed ruler had his spleen removed in egypt in 1980?
+Shah of iran
+10
+
+What derogatory name is derived from a remark given by the Kaiser to members of the British Expeditionary Force under Sir John French, in 1914?
+Old contemptibles
+10
+
+What derogatory term for new military recruits gave its name to a popular game?
+Snooker
+10
+
+What describes one complete turn of a rotating object?
+Revolution
+10
+
+What desert country borders saudi arabia, iraq and the persian gulf?
+Kuwait
+10
+
+What desert covers most of southern Mongolia?
+The gobi desert
+10
+
+What desert has a land mass as large as Europe?
+Sahara
+10
+
+What desert has been called the garden of allah?
+Sahara
+10
+
+What desert has the highest sand dunes?
+Sahara
+10
+
+What desert lies in Mongolia?
+Gobi
+10
+
+What desert spreads from botswana into south west africa?
+Kalahari
+10
+
+What detective agency's motto is 'We never sleep'?
+Pinkertons
+10
+
+What detective aided escaping slaves on the underground railroad?
+Allan pinkerton
+10
+
+What detective debuted in 'a study in scarlet'?
+Sherlock holmes
+10
+
+What detective duo was featured in mystery at devil's paw?
+Joe and frank hardy
+10
+
+What detective lives on punchbowl hill and has 11 children?
+Charlie chan
+10
+
+What determines the winners of the people's choice awards?
+Gallup poll
+10
+
+What detroit based record company was founded by barry gordy jnr?
+Motown
+10
+
+What device changes the voltage of alternating currents?
+Transformer
+10
+
+What device converts alternating current into direct current?
+Rectifier
+10
+
+What device demonstrates the movement of the earth and other bodies in the solar system?
+Orrery
+10
+
+What device is Isaac Merritt Singer famous for?
+Singer sewing machine
+10
+
+What device is normally used to measure wind direction?
+Weather vane
+10
+
+What device might you use to stem the flow of blood?
+Tourniquet
+10
+
+What device quietens a car's exhaust?
+Muffler
+10
+
+What device used to be called a 'spyglass'?
+Telescope
+10
+
+What device was known to pilots in the Korean War as the panic attack?
+The ejection seat
+10
+
+What dickens character said 'please sir i want some more'?
+Oliver twist
+10
+
+What Dickens work features Mr Wardle?
+Pickwick papers
+10
+
+What did 'd.m.z' stand for in the vietnam war?
+Demilitarized zone
+10
+
+What did 'Enigma' return to in January 1994?
+Innocence
+10
+
+What did 'wonderwoman' use to deflect bullets?
+Golden bracelets
+10
+
+What did 65 members of the women liberation movement of New York and new jersey torch at the 1968 miss America pageant?
+Their brassieres
+10
+
+What did 80,000 men cut to build solomon's temple?
+The cedars of lebanon
+10
+
+What did a Cordwainer make?
+Shoes
+10
+
+What did a Great Dane called Caliph unfortunately do whilst on trial for his life for biting?
+Bit the judge
+10
+
+What did a man named Dunlop invent in the 1880's?
+Pneumatic tyre
+10
+
+What did a medieval knight wear on his back and his chest?
+Cuirass
+10
+
+What did a pack of cards not include until 1857?
+Jokers
+10
+
+What did a pouncet usually contain?
+Vinegar soaked sponge
+10
+
+What did a scuttlebutt hold?
+Drinking water
+10
+
+What did a ship called the Ancon travel through first, on August 15, 1914?
+The panama canal
+10
+
+What did abebe bikila go without in winning the 1960 olympic marathon?
+Shoes
+10
+
+What did actor john wayne win from rudd weatherswax in a poker game?
+Lassie
+10
+
+What did adolphe sax invent?
+Saxophone
+10
+
+What did air cadet frank whittle invent in 1928?
+Jet engine
+10
+
+What did AJ stand for in Simon & Simon's AJ Simon?
+Andrew Jackson
+10
+
+What did Al Capone's business card say he was?
+Used furniture dealer
+10
+
+What did Alan Webster fire 1,231 yards to set a world record in 1982?
+Arrow
+10
+
+What did alchemists believe they could turn metals into?
+Gold
+10
+
+What did Alessandro Volta first manufacture in 1800?
+Battery
+10
+
+What did Alexander Graham Bell invent in 1881 to help doctors caring for Pres James Garfield agfter he was shot?
+A metal detector
+10
+
+What did alexander graham bell invent?
+Telephone
+10
+
+What did Alexander Graham Bell muffle to keep it from interrupting his work?
+His telephone
+10
+
+What did Alfred Cruickshank claim to have seen in 1923?
+Loch ness monster
+10
+
+what did alfred cruickshank claim to have seen in 1923?
+The loch ness monster
+10
+
+What did Alfred Nobel's father, Immanuel Nobel invent?
+Plywood
+10
+
+What did American Abolitionists try to end?
+Slavery
+10
+
+What did American Harland D. Sanders give to the world in 1939?
+Kentucky fried chicken
+10
+
+What did americans call the first cuban in space?
+Castronaut
+10
+
+What did americans celebrate the end of in 1933?
+Prohibition
+10
+
+What did Americas tacky National Enquirer ask Dr Christiaan Barnard to transplant for a $2500000 fee in 1979?
+Human head
+10
+
+What did Amerigo Vespucci realize was a new continent & not part of Asia, in 1502?
+South America
+10
+
+What did an earthquake destroy at halicarnassus?
+Mausoleum
+10
+
+What did ancient Egyptian women do with the metal antimony?
+Paint their eyes
+10
+
+What did ancient Egyptians make from the tall water plant papyrus?
+Paper
+10
+
+What did andrew jergens create?
+Jergens lotion
+10
+
+What did AOL claim had been found, on April Fool's Day in 1996?
+Life on Jupiter
+10
+
+What did Archie Bunker call his son-in-law?
+Meathead
+10
+
+What did Archie Bunker on 'All In The Family' call his son-in-law Mike?
+Meathead
+10
+
+What did Archimedes say after discovering the principle of buoyancy?
+Eureka
+10
+
+What did aristotle believe the heart was?
+Seat of intelligence
+10
+
+What did aristotle say all things were made up?
+Air, earth, fire, water
+10
+
+What did artist Toulouse-Lautrec revolutionize in the art world?
+Poster Design
+10
+
+What did Atlanta pharmacist John Pemberton sell two-thirds of his interest in for 283 dollars and 29 cents in 1887?
+Coca cola
+10
+
+What did Australia receive its first shipment of in 1788?
+Convicts
+10
+
+What did Aztec Indians smoke in 1522?
+Tobacco
+10
+
+What did benjamin franklin tie to his kite?
+Key
+10
+
+What did Bill Gates' wife say on their wedding night?
+Microsoft
+10
+
+What did Blaise Pascal make in 1640?
+Mechanical calculator
+10
+
+What did bob geldof & Paula yates name their first born child?
+Fifi 
+10
+
+What did bock's car drop, in 1945?
+An atom bomb on nagasaki
+10
+
+What did boxer cassius clay change his name to?
+Muhammed ali
+10
+
+What did Brahms compose for the University of Breslau after they gave him an honorary PhD?
+Academic festival overture
+10
+
+What did British motorists have to contend with for the first time in 1960?
+Traffic wardens
+10
+
+What did British symphony orchestras do without until 1820?
+Conductor
+10
+
+What did channel four launch as its first soap opera?
+Brookside
+10
+
+What did Charles conrad of apollo 12 become in november 1969?
+Third man on the moon
+10
+
+What did Charles goodyear invent by accident in 1839?
+Vulcanized rubber
+10
+
+What did Charles Richter invent a scale to measure?
+Earthquakes
+10
+
+What did clarence birdseye perfect in 1924?
+Frozen food
+10
+
+What did cleaning crews remove 600 pounds of from the Statue of Liberty in 1990?
+Chewing Gum
+10
+
+What did clio represent in the nine muses?
+History
+10
+
+What did Col Thomas Blood try to steal in 1675?
+The crown jewels
+10
+
+What did Colonel Blood try to steal in 1671?
+British crown jewels
+10
+
+What did cowboys refer to as 'tonsil paint'?
+Whiskey
+10
+
+What did cowboys refer to as tonsil plant?
+Whisky
+10
+
+What did d.w griffith invent?
+False eyelashes
+10
+
+What did dan aykroyd and john belushi quit 'saturday night live' to become?
+Blues brothers
+10
+
+What did daniel ellsberg leak to the New York times?
+Pentagon papers
+10
+
+what did del boy and rodney auction for ?6 million in an episode of only fools and horses?
+A watch
+10
+
+What did denmark sell to the u.s?
+Virgin islands
+10
+
+What did dice players call a six in the old west?
+Johnny hicks
+10
+
+What did dick whittington achieve that jeffrey archer didnt?
+Lord mayor of london
+10
+
+What did Disraeli refer to as a 'milestone round our necks'?
+Colonies
+10
+
+What did Dougal Haston excel at?
+Mountaineering
+10
+
+What did dr bart hughes create?
+Trepanning
+10
+
+What did dr David banner become when he got angry?
+Incredible hulk
+10
+
+What did dr godfrey invent in 1762?
+Fire extinguisher
+10
+
+What did dr john pemberton invent in atlanta, georgia in 1886?
+Coca cola
+10
+
+What did dr john pemberton invent?
+Coca cola
+10
+
+What did dr john s pemberton invent?
+Coca-cola
+10
+
+What did dr seuss' grinch steal?
+Christmas
+10
+
+What did early sailors call the islands where cinnamon,cloves and nutmegs were grown?
+The spice islands
+10
+
+What did easau sell his birthright to jacob for?
+Pottage
+10
+
+What did East Pakistan become?
+Bangladesh
+10
+
+What did Edwin Land invent in the 1940's?
+Polaroid camera
+10
+
+What did Einstein publish in 1905?
+Special theory of relativity
+10
+
+What did Eire leave in 1949?
+Commonwealth
+10
+
+What did Elisha Otis invent in 1852?
+Elevator
+10
+
+What did Elisha Otis invent in 1853?
+The passenger lift
+10
+
+What did Emerson, Lake & Palmer burn on stage during their concerts?
+The American flag
+10
+
+What did Emerson, Lake and Palmer burn on stage during their concerts?
+The
+10
+
+What did epicurus found?
+Epicurean philosophyWhat toyota vehicle takes its name of the latin word for crown
+10
+
+What did Eric morley found?
+Miss world competition
+10
+
+What did Esso become?
+Exxon
+10
+
+What did father edward flanagan found near omaha, nebraska?
+Boys town
+10
+
+What did father flanagan found?
+Boys town
+10
+
+What did fletch's initials (i. m.) stand for?
+Irwin maurice
+10
+
+What did foucault demonstrate with his pendulum?
+The rotation of the earth
+10
+
+What did France,West Germany,Belgium,Luxembourg<Holland and Italy sign in 1958?
+The treaty of rome
+10
+
+What did frank sinatra call 'my kind of town'?
+Chicago
+10
+
+What did friar roger bacon invent?
+Magnifying glass
+10
+
+What did Gabriel Fahrenheit invent?
+Thermometer
+10
+
+What did gail borden give to the world in 1853?
+Condensed milk
+10
+
+What did Gatling invent in 1863?
+Rapid firing gun
+10
+
+What did gene autry name his ranch?
+Melody ranch
+10
+
+What did General wade construct in the Highlands from 1724 to 1730?
+Roads
+10
+
+What did gentleman jim do for a living?
+Fight
+10
+
+What did George Stephenson call his steam engine?
+Rocket
+10
+
+What did God change Abram's name to?
+Abraham
+10
+
+What did goldilocks eat?
+Porridge
+10
+
+What did grace darling's father keep?
+Lighthouse
+10
+
+What did Grace Kelly become in 1956?
+Princess
+10
+
+What did Graham Sutherland design for the rebuilt Coventry Cathedral?
+The altar tapestry
+10
+
+What did gregor mendel study?
+Heredity
+10
+
+What did hans christian anderson always travel with in case of fire?
+Rope
+10
+
+What did hansel and gretel find in the witch's house?
+A treasure
+10
+
+What did Harry Connick put after his name?
+Junior
+10
+
+What did He-man say when he lifted his sword and gained his strength?
+By the power of Grayskull I am He-Man
+10
+
+What did Henry shrapnel invent?
+Exploding shell
+10
+
+What did hercules have to kill for his first labour?
+Nemean tiger
+10
+
+What did Hercules use to clean the Augean stables?
+A river
+10
+
+What did homer write about in 'the iliad'?
+Trojan war
+10
+
+What did Horatio Nelson lose at the age of 40?
+Arm
+10
+
+What did inventor Whitcomb Judson perfect in the 1800's?
+The zipper
+10
+
+What did ira remsen discover in 1879, perhaps proclaiming 'how sweet it is'?
+Saccharin
+10
+
+What did it say on the bottle Alice drank from when she shrank?
+Drink Me
+10
+
+What did Italian dictator Mussolinis title Il Duce mean?
+The leader
+10
+
+What did Jack Horner eat in the corner?
+Christmas pie
+10
+
+What did jack the ripper sign on his first note?
+Yours truly
+10
+
+What did janis joplin die from?
+Overdose
+10
+
+What did Japanese athlete Suburaya do after failing to win in the 1964 Olympics?
+Committed hari-kiri
+10
+
+what did Jason and the Argonauts seek?
+The golden Fleece
+10
+
+What did jim henson create?
+Muppets
+10
+
+What did jim rockford call his father?
+Rocky
+10
+
+What did john augustus larson invent?
+Lie detector
+10
+
+What did John F Kennedy claim was his biggest mistake as president?
+Bay of pigs invasion
+10
+
+What did john glenn name the first mercury capsule to orbit the earth?
+Friendship 7
+10
+
+What did Johnny Staccato do when he wasn't busy as a private eye?
+Jazz pianist
+10
+
+What did Joseph Bloch invent in 1921?
+The Whistling Tea Kettle
+10
+
+What did joseph priestely discover?
+Oxygen
+10
+
+What did joseph priestley invent?
+Carbonated soda water
+10
+
+What did joseph smith found?
+Mormonism
+10
+
+What did Joseph Swan invent?
+Electric lamp
+10
+
+What did Julia Ward Howe originate?
+Mothers day
+10
+
+What did karen and richard carpenter call the apartment building they built with the royalties from their first hit?
+Close to you
+10
+
+What did Karl Marx write with Friedrich Engles, in 1848?
+The Communist manifesto
+10
+
+what did kenneth williams , william wordsworth & napoleon all suffer from?
+Piles
+10
+
+What did Kenneth Williams,William Wordsworth and Napoleon all suffer from?
+Piles
+10
+
+What did Kenneth Williams,William Worsworth and Napolean all suffer from?
+Piles
+10
+
+What did Kennington Oval become during wwii?
+Prisoner of war camp
+10
+
+What did Leo Sayer wear to promote the song I Won't Let The Show Go On?
+A clown suit
+10
+
+What did Leon Gaumont produce for the first time in france before 1900?
+Talking films
+10
+
+What did Leonard Nimoy name his 1995 book sequel to I Am Not Spock?
+I Am Spock
+10
+
+What did Lewis E. Waterman invent in 1884?
+The fountain pen
+10
+
+What did Lilius invent< Clavius complete and Pope Gregory XIII introduce?
+Gregorian calander
+10
+
+What did Lippershey invent in 1608 that Galileo often gets the credit for?
+Refracting telescope
+10
+
+What did little bo peep lose?
+Her sheep
+10
+
+What did Lloyd George describe as 'Balfour's Poodle'?
+House of lords
+10
+
+What did Lloyd's first admit on January 1st 1970?
+Women
+10
+
+What did Longfellow declare to be the universal language of mankind?
+Music
+10
+
+What did lonnie donnegan has his listeners?
+Does your chewing gum lose its flavour on the bedpost overnight
+10
+
+What did Lorraine Chase famously advertise on TV?
+Campari
+10
+
+What did louis waterman invent in 1884?
+Fountain pen
+10
+
+What did lyndon johnson declare war against on january 8, 1964?
+Poverty
+10
+
+What did marconi transmit across the atlantic?
+Radio signals
+10
+
+What did Marie Antoinette and Jayne Mansfield have in common?
+Bust size
+10
+
+What did marie curie die of on 4th july 1934?
+Radiation poisoning
+10
+
+What did Mary Baker Eddy found in the late 1800s?
+The christian science movement
+10
+
+What did Mary Beth and Harvey Lacey call their first son?
+Harvey jnr
+10
+
+What did mary phelps jacobs invent?
+Bra
+10
+
+What did Mary Poppins say helped the medicine go down?
+A spoon full of sugar
+10
+
+What did maynard g krebs say his middle initial stood for?
+Walter
+10
+
+What did medieval artists use to bind their pigment paints?
+Egg yolk
+10
+
+What did Melita Bentz discover in 1908?
+The Coffee Filter
+10
+
+What did members of the nazi ss have tattooed in their armpits?
+Blood type
+10
+
+What did michael collins found?
+I.r.a
+10
+
+What did Miss Muffet sit on?
+Tuffet
+10
+
+What did Moldavia & Walachia unite to become?
+Romania
+10
+
+What did Moses do for a living before he was called by God?
+Shepard
+10
+
+What did Moses receive on Mount Sinai?
+Ten commandments
+10
+
+What did Mother Hubbard look for in her cupboard?
+A bone
+10
+
+What did Mr Bojangles do to amuse his cell mates?
+He danced
+10
+
+What did my favorite martian have to do before he could become invisible?
+Raise his antenna
+10
+
+What did NASA launch a$100 million search for in 1992?
+Aliens
+10
+
+What did neptune hold in his hand?
+Trident
+10
+
+What did one of the earliest mixtures of toothpaste consist of?
+Wine & pumice
+10
+
+What did Otto Titzling invent?
+-- Answer metadata begin
+{
+    "answers": ["Brassiere", "bra"]
+}
+-- Answer metadata end
+10
+
+What did Pandora release when she opened her box?
+Troubles and misery
+10
+
+What did pat conroy write?
+Beach music
+10
+
+What did Paul Benier leave in his locked getaway car while he robbed a bank in Swansea, Massachusetts?
+His car keys
+10
+
+What did Percy Shaw invent and market 2 years after a foggy drive in 1933?
+Cats eyes
+10
+
+What did percy shaw invent?
+Cat's eyes
+10
+
+What did Perseus's helmet do for him?
+Made him invisible
+10
+
+What did peter minuit buy for the equivalent of 24 dollars?
+Manhattan island
+10
+
+What did peter sellers use as an ink blotter in the wrong box?
+Cat
+10
+
+What did physicist Lord Rutherford discover inside the nucleus of the atom?
+Protons
+10
+
+What did plato found in 387 bc?
+The academy
+10
+
+What did pocahontas do to entertain the colonists?
+Cartwheels
+10
+
+What did pocahontas wear while entertaining the colonists?
+Nothing
+10
+
+What did Pope Pius V do to Queen Elizabeth in 1570 (lets keep it clean, huh?)?
+Excommunicated her
+10
+
+What did Pope Pius V do to Queen Elizabeth in 1570?
+Excommunicated her
+10
+
+What did president lincoln proclaim a national holiday in 1863?
+Thanksgiving
+10
+
+What did presidents Madison, Monroe, Polk, and Garfield have in common?
+The first name JamesFirst name
+10
+
+What did puritans ban the singing of?
+Carols
+10
+
+What did pythagoras recommend for scorpion bites?
+Mustard
+10
+
+What did Queen Elizabeth II do for the first time in 1957?
+Appeared on TV
+10
+
+What did Queen Elizabeth's godson design for her in 1596?
+A flush toilet
+10
+
+What did Queen Victoria call 'a pretty little castle in the old scotch style'?
+Balmoral
+10
+
+What did Regan due to the striking air traffic controllers?
+Fired them
+10
+
+What did Richard Nixon have on the left side of his scalp, from forehead to neck?
+Scar
+10
+
+What did Rip van winkle do for 20 years?
+Sleep
+10
+
+What did Roald Amundsen reach first?
+South pole
+10
+
+What did robert bunsen invent?
+Bunsen burner
+10
+
+What did robert fulton invent?
+Submarine
+10
+
+What did Robert Watson-watt invent in the 1930s?
+Radar
+10
+
+What did rod serling create?
+Twilight zone
+10
+
+What did roger buell do for a living in the mothers-in-law?
+Television writer
+10
+
+What did roland garros create in 1915?
+A fighter plane
+10
+
+What did Rontgen discover to win the first Nobel Prize for Physics in 1901?
+X rays
+10
+
+What did Royal Navy officers have to start wearing after 1748?
+Uniforms
+10
+
+What did Russell Day do on the River Thames in 1983 that hadnt been done there for 150 years?
+Caught a salmon
+10
+
+What did Russian defector victor belenko deliver to the Japanese in september, 1976?
+A mig 25
+10
+
+What did Sally Rogers always wear in her hair?
+A bow
+10
+
+What did Sandy Fowler invent for drinkers that had he patented it would have made him millions?
+Tea bag
+10
+
+What did scientists build in a squash court under a football stadium at the university of Chicago in 1942?
+Nuclear reactor
+10
+
+What did she wear when she went into the water?
+An itsy bitsy teeny weeny yellow polka-dot bikini
+10
+
+What did shirley temple always have in her hair?
+Curls
+10
+
+What did sir arnold lunn begin in Switzerland?
+Slalom skiing
+10
+
+What did Sir Christopher Cockerell invent?
+Hovercraft
+10
+
+What did Sir Ernest Swinton invent in 1914?
+Military tank
+10
+
+What did Sir Humphrey Davy discover in 1801?
+Magnesium
+10
+
+What did Sir Humphrey Davy invent in 1815?
+Miners safety lamp
+10
+
+What did Sir John Harington design for his own home in 1589?
+First water closet
+10
+
+What did Sir Lancelots adultery prevent him from finding?
+The Holy Grail
+10
+
+What did Sir Rowland Hill introduce in Britain in 1840?
+Envelopes
+10
+
+What did Sir Thomas Blanket first manufacture in 1340?
+Blankets
+10
+
+What did sisko's father use to call his family?
+Taste testers
+10
+
+What did soldier Phillip Williams temporarily lose in the Falklands?
+Memory
+10
+
+What did soldiers during World Wars I & II use Kleenix(R) for?
+To dress wounds
+10
+
+What did Stanislaw J. Lec call the first requisite for immortality?
+Death
+10
+
+What did steve martin once call terre haute?
+Nowhere u.s.a
+10
+
+What did the 'x' in x-ray stand for?
+Unknown
+10
+
+What did the 1944 education act extend?
+Secondary education
+10
+
+What did the 1980 U S naval academy class have for the first time in history?
+Women graduates
+10
+
+What did the 1980 US naval academy class have for the first time in history?
+A woman
+10
+
+What did the 1st u.s federal legislation in 1909 prohibit?
+Narcotics
+10
+
+What did the Adamson Act establish in the US?
+Eight hour workday
+10
+
+What did the Americans prohibit the drinking of in 1775?
+Tea
+10
+
+What did the ancient greeks call any group of numbers more than 10,000?
+Myriad
+10
+
+What did the archbishop of krakow become in 1978?
+Pope
+10
+
+What did the Austrian govt sell in 1909 at ?10,000 for a single gramme?
+Radium
+10
+
+What Did The Average White Band Pick Up in 1975...The?
+Pieces
+10
+
+What did the big bang create?
+Universe
+10
+
+What did the call letters of Chicago radio and TV station WLS originally stand for, in reference to Sears Roebuck (its former owner)?
+World's Largest Store
+10
+
+What did the Celts consider sacred because it communicated moisture from the ground into the air?
+Trees
+10
+
+What did The Chief nickname Starsky's car on Stasky and Hutch??
+The Striped Tomato
+10
+
+What did the chinese not refer to themselves as?
+Silk people
+10
+
+What did the combination act forbid?
+Formation of trade unions
+10
+
+What did the contestants in the Greek olympics wear?
+Nothing
+10
+
+What did the Crane brothers run the length of in a record 101 days in 1983?
+Himalayas
+10
+
+What did the Egyptian bakers use to knead dough in 4000 bc?
+Their feet
+10
+
+What did the egyptians believe your 'spiritual double' was called?
+Ka
+10
+
+What did the esso 'blee dooler' sell?
+Paraffin
+10
+
+What did the film crew call the shark in 'jaws'?
+Bruce
+10
+
+What did the Franks commision report on?
+The falklands war
+10
+
+What did the ghan railway get its name from?
+Camel drivers
+10
+
+What did the government blame the high inflation figures on in Dec 1987?
+Computer error
+10
+
+What did the Greeks call Roman goddess, minerva?
+Athena
+10
+
+What did the House of Saxe-Coburg-Gotha change it's name to?
+House of Windsor
+10
+
+What did the inmates of changi prison camp build?
+Burma railway
+10
+
+What did the israelites eat in the desert after the exodus?
+Manna
+10
+
+What did the knave of hearts steal?
+Tarts
+10
+
+What did the lady of the lake give king arthur?
+Excalibur
+10
+
+What did the license plate on the Delorean in Back To The Future spell out?
+OUTATIME
+10
+
+What did the Lloyd's of London Insurance group start out as?
+A Coffee House
+10
+
+What did the M stand for in J M Barrie's name?
+Matthew
+10
+
+What did the Manhattan project set out to develop in 1941?
+Atomic bomb
+10
+
+What did the massachusetts bay colony outlaw in 1641?
+Lawyers
+10
+
+What did the Montgolfier brothers rise to fame in?
+Balloons
+10
+
+What did the mysterious db cooper jump out of (what type)?
+Boeing 727
+10
+
+What did the name 'battenberg' become?
+Mountbatten
+10
+
+What did the name 'saxe-coburg' become?
+Windsor
+10
+
+What did the old woman in the shoe give her children to eat?
+Broth
+10
+
+What did the old woman who lived in a shoe give her children for supper?
+Broth without any bread
+10
+
+What did the Oshkosh steamer win?
+First automobile race
+10
+
+What did the papal treaty of tordesillas divide between the Spanish and the portugese?
+The world
+10
+
+What did the person chained to wall in Goonies want?
+A Baby Ruth candy bar
+10
+
+What did the Perthians conquer in 141 bc?
+Mesopotamia
+10
+
+What did the repair technicians of the first 'modern' computers wear while working?
+Shorts and roller skates
+10
+
+What did the republicans call the platform they hyped in the 1994 congressional elections?
+Contract with America
+10
+
+What did the roman emperors and the rich people of rome carried on?
+Litters
+10
+
+What did the Romans call London?
+Londinium
+10
+
+What did the Romans call Scotland?
+Caledonia
+10
+
+What did the Romans call the tenth part of a legion - between 300 and 600 men?
+A cohort
+10
+
+What did the Scott Brothers call Toilet Paper after they brought it stateside from England?
+Waldorf Tissue
+10
+
+What did the shire's reeve become when the concept was brought to the u.s?
+Sheriff
+10
+
+What did the song '867-5309/jenny' spawn for tommy tutone?
+Lawsuit
+10
+
+What did the Soviet Union call its supreme policy making body?
+Politburo
+10
+
+What did the sparrow kill Cock Robin with?
+Bow & arrow
+10
+
+What did the steamship Savannah cross in 1819?
+The atlantic ocean
+10
+
+What did the Tennessee radio programme WSM Barndance change its name to?
+The grand ole opry
+10
+
+What did the three bears leave to cool when they went for a walk?
+Porridge
+10
+
+What did the three little kittens lose?
+Their mittens
+10
+
+What did the title character in john fowles's the collector collect?
+Butterflies
+10
+
+What did the title of joyce jillson's rebuttal to real men don't eat quiche say real women don't do?
+Pump gas
+10
+
+What did the townspeople give up in cold turkey?
+Smoking
+10
+
+What did the Ugly Duckling grow up to be?
+Swan
+10
+
+What did the US buy from Russia at two cents an acre?
+Alaska
+10
+
+What did the us declare indians were in 1924?
+Citizens
+10
+
+What did the white house have before it had an indoor bathroom?
+Telephone
+10
+
+What did the young Don Bradman practise hitting with a cricket stump to improve his batting?
+A Golf Ball
+10
+
+What did thomas sheraton design and produce?
+Furniture
+10
+
+What did thousands ogle for the first time when it served as a pace car for a race in Alabama in 1964?
+The mustang
+10
+
+What did to decimate originally mean in military terms?
+Kill every tenth man
+10
+
+What did tom, tom, the piper's son steal?
+Pig
+10
+
+What did Tommie Smith wear at his victory ceremony in the 1968 Olympics?
+Black glove
+10
+
+What did tommy kirk shoot because of hydrophobia?
+Old yeller
+10
+
+What did Tory MP Keith Best apply for 6 lots of when he was only allowed one lot?
+British telecom shares
+10
+
+What did victorian women try to enlarge by bathing in strawberries?
+Breasts
+10
+
+What did Victorian women try to enlarge by massaging with crushed strawberries?
+Their breasts
+10
+
+What did Wallace Carothers invent?
+Nylon
+10
+
+What did walter hunt invent in 1849?
+Safety pin
+10
+
+What did walter huston remove to perform in the movie the treasures of the sierra madre?
+Teeth
+10
+
+What did Watson, Crick and Wilkins discover?
+Dna
+10
+
+What did Webster call his adoptive parents?
+Ma'am and George 
+10
+
+What did welch's grape juice become a favorite substitute for when the 18th amendment passed?
+Wine
+10
+
+What did wham! say to do before you go go?
+Wake me up
+10
+
+What did Wilhelm Roentgen discover in 1895?
+X rays
+10
+
+What did William Hunt invent in 1849 to hold things together?
+The safety pin
+10
+
+What did William II,Richard I,Edward II,James I and William III all have a reputation for being?
+Homosexual
+10
+
+What did William Morris repair before he started to build cars?
+Bicycles
+10
+
+What did William Seward buy from Russia in 1867?
+Alaska
+10
+
+What did Winston Churchill describe as 'a riddle, wrapped in a mystery, inside an enigma'?
+Russia
+10
+
+What did Woody ask Kelly's father when they first met?
+He asked if they could date
+10
+
+What did yoko hire to wish john lennon a happy 40th birthday?
+Skywriter
+10
+
+What did you do 10 million times last year?
+Breathe
+10
+
+What did you do if you took the Kings shilling?
+Joined the army
+10
+
+What didn't wolfman jack do until the 1970's?
+Reveal his face
+10
+
+What dietary problem were 65 percent of brazilians suffering in 1985?
+Malnutrition
+10
+
+What differentiates a ferrous alloy from a non ferrous alloy?
+Contains iron
+10
+
+What dire straits song says 'we're going on a holiday now, gonna take a villa, a small chalet on the costa del magnifico...'?
+Twisting by the pool
+10
+
+What direction do horses run around a racetrack in Victoria?
+Anti-Clockwise
+10
+
+What direction do many northern birds fly when autumn arrives?
+South
+10
+
+What direction do the best surfing beaches face?
+West
+10
+
+What direction does the sphinx face?
+East
+10
+
+What direction does the Tower of London face across the Thames?
+South west
+10
+
+What direction is the sahara desert expanding in by half a mile a year?
+South
+10
+
+What direction is the sahara expanding in by a half a mile a year?
+South
+10
+
+What direction is the Sahara expanding in by half a mile a year?
+South
+10
+
+What dirty building did heracles clean by diverting a river?
+Augean stables
+10
+
+What disability did Heather Whitestone rise above to become Miss America?
+Deafness
+10
+
+What disaster hit Ireland between 1845 & 1849?
+Potato famine
+10
+
+What disease did august von wassermann develop a scientific test for in 1906?
+Syphilis
+10
+
+What disease did august von wassermann develop a specific test for in 1906?
+Syphilis
+10
+
+What disease did bark beetles introduce to The Netherlands in 1919?
+Dutch elm disease
+10
+
+What disease did mary mallon carry?
+Typhoid fever
+10
+
+What disease do the French call 'la rage'?
+Rabies
+10
+
+What disease do you get if you eat too many christmas decorations?
+Tinselitis
+10
+
+What disease has been used to control the rabbit population?
+Myxomatosis
+10
+
+What disease is most common in soap operas?
+Amnesia
+10
+
+What disease results from a lack of Vitamin C?
+Scurvy
+10
+
+What disease was first encountered at the Siege of Mecca in 569?
+Smallpox
+10
+
+What disease was known as the white plague?
+Tuberculosis
+10
+
+What disease was once known as phthisis?
+Tuberculosis
+10
+
+What disease was the so-called miracle drug krebiozen, ultimately found to be totally useless, supposed to cure?
+Cancer
+10
+
+What disease's sufferers were required to carry rattles to warn people of their approach in 15th century England?
+Leprosy
+10
+
+What disk jockey did the guess who put into musical history?
+Wolfman jack
+10
+
+What disney character sang 'when you wish upon a star'?
+Jiminy cricket
+10
+
+What Disney character shared the front cover of Disney Adventures magazine with Michael Jackson in 1993?
+Pinocchio
+10
+
+What disney character's picture did the N Y Times wrongly call goofy?
+Pluto
+10
+
+What disney film boasts the song that's what uncle remus said?
+Song of the south
+10
+
+What disney film do parisians know as blanche neige aet les sept nains?
+Snow white and the seven dwarfs
+10
+
+What disney film stars bette davis?
+Watcher in the woods
+10
+
+What disney movie about sultans and beggers starred robin williams, jonathan freeman and gilbert gottfried?
+Aladdin
+10
+
+What disney movie features an owl named big mama?
+Fox & the hound
+10
+
+What disney movie stars merlin the magician and wart the boy king?
+Sword in the stone
+10
+
+What distant planet circles the sun every 84 years?
+Uranus
+10
+
+What divides the American north from the south?
+Mason dixon line
+10
+
+What do 100 Egyptian piastres make?
+One pound
+10
+
+What do 100 kopecks make?
+One ruble
+10
+
+What do 12% of mississippi households lack?
+Telephones
+10
+
+What do 25% of Americans secretly bite?
+Their toenails
+10
+
+What do 87 percent of all professional boxers suffer from?
+Brain damage
+10
+
+What do a hundred piastres make in egypt?
+Pound
+10
+
+What do a kangaroo, an anteater and a seahorse have in common?
+Pouch
+10
+
+What do a pen and a cob produce?
+Cygnets
+10
+
+What do agrophobics fear?
+Open spaces
+10
+
+What do airplane mechanics call motor oil?
+Pickle juice
+10
+
+What do airplane mechanics refer to as 'pickle juice'?
+Motor oil
+10
+
+What do Alaskan sled drivers should to get their dog teams moving?
+Hike
+10
+
+What do all the seven dwarfs except dopey have?
+Beard
+10
+
+What do American golfers call a hole in one?
+Ace
+10
+
+What do Americans call 'candy floss'?
+Cotton candy
+10
+
+What do americans call chick peas?
+Garbanzo beans
+10
+
+What do americans call nappies?
+Diapers
+10
+
+What do Americans call the silencer on a car?
+Muffler
+10
+
+What do americans call the vegetable swede?
+Rutabaga
+10
+
+What do americans receive the most amount of radiation from?
+X-rays
+10
+
+What do architects claim Chicago's Tacoma Building to be the first of?
+Skyscraper
+10
+
+What do Australians call dust storms?
+Willy-willies
+10
+
+What do ba barraca's initials stand for?
+Bad attitude
+10
+
+What do bank holidayers in France mean when they say they plan to 'faire le pont' if the holiday falls midweek?
+Take the rest of the week off
+10
+
+What do bees collect?
+Nectar
+10
+
+What do birds use their feathers for apart from keeping warm and flying?
+Communicating
+10
+
+What do breeders and trainers use to identify dogs?
+Nose prints
+10
+
+What do British tabloids often refer to as buck house?
+Buckingham palace
+10
+
+What do bullet proof vests, fire escapes, windshield wipers & laser printers all have in common?
+All invented by women
+10
+
+What do butchers call the edible internal part of an animal?
+Offal
+10
+
+What do butterflies eat grubs, nectar or nothing?
+Nectar
+10
+
+What do camels store in their humps water, fat or milk?
+Fat
+10
+
+What do chefs cal The Master Spice?
+Pepper
+10
+
+What do chicken breeders add to their chickens diets in an effort to improved the smell of their rearing sheds?
+Garlic
+10
+
+What do chickens do during a total solar eclipse?
+Sleep
+10
+
+What do Christians call the period of fasting before Easter?
+Lent
+10
+
+What do Christians call the place which the Hebrews called Golgotha, (Place of Skulls)?
+Calvary
+10
+
+What do climbers call a peak higher than 914 m (3,000ft)?
+A munro
+10
+
+What do Colley Cibber, John Masefield and john Betjeman have in common?
+Poets laureate
+10
+
+What do cricket umpires take off to show that it is time for lunch?
+Bails
+10
+
+What do dendrochronologists count?
+Tree rings
+10
+
+What do diners in a restaurant use to take away their leftovers?
+Doggy bag
+10
+
+What do Dogs and Trees have in common?
+Bark
+10
+
+What do dominica, Mexico, zambia, Spain, kiribati, fiji and egypt all have on their flags?
+Birds
+10
+
+What do eccrine glands produce?
+Sweat
+10
+
+What do elephants do on average 2 hours a day?
+Sleep
+10
+
+What do English speakers call the city that ltalians call Torino?
+Turin
+10
+
+What do English speakers call the region that the Spanish know as 'el pais vasco'?
+The basque country
+10
+
+What do englishmen weigh themselves in?
+Stones
+10
+
+What do enzymes in a beer's mash convert the starch into?
+Sugar
+10
+
+What do enzymes start while food is still in the mouth?
+Breakdown of food
+10
+
+What do eskimos get from sitting on the ice?
+Polaroids
+10
+
+What do exeter city and newcastle united have in common?
+St james park
+10
+
+What do farms, clocks, and audiences all have?
+Hands
+10
+
+What do fish say when they hit a concrete wall?
+Dam
+10
+
+What do fletchers make?
+Arrows
+10
+
+What do four pecks make?
+A bushel
+10
+
+What do four quadrant make?
+A circle
+10
+
+What do french speakers call the German town that germans call aachen?
+Aix-la-chapelle
+10
+
+What do frogs have in their mouths that toad's dont?
+Teeth
+10
+
+What do gasoline and napthenic and palmatic acids combine to form?
+Napalm
+10
+
+What do goldfish lose if kept in dimly lit or running water?
+-- Answer metadata begin
+{
+    "answers": ["Colour", "color"]
+}
+-- Answer metadata end
+10
+
+What do goldfish lose if kept in running or dimly lit water?
+Colour
+10
+
+What do gorillas do when they get nervous?
+Beat their chests
+10
+
+What do Hansel & Gretel push the witch into?
+The oven
+10
+
+What do Hari Georgeson,George O'hara Smith and Son of Harry share?
+George harrisons pseudonyms
+10
+
+What do herpetologists study?
+Reptiles
+10
+
+What do humans catch zoonose diseases from?
+Animals
+10
+
+What do humans completely shed and regrow every 27 days?
+Skin
+10
+
+What do humans shed about 1.5 pounds of every year?
+Skin
+10
+
+What do huntsmen call out when a fox is sighted?
+Tallyho
+10
+
+What do huntsmen traditionally call out upon sighting a fox?
+Tallyho
+10
+
+What do ice hocky players hit instead of a ball?
+Puck
+10
+
+What do Indianapolis 500 winners traditionally drink in the winners circle?
+Milk
+10
+
+What do insects do through their spiracles?
+Breathe
+10
+
+What do Italians call Florence?
+Firenze
+10
+
+What do Italians call Rome?
+Roma
+10
+
+What do italians call their motorways?
+Autostrade
+10
+
+What do jamaicans refer to as 'ganja'?
+Marijuana
+10
+
+What do Jim Bowen and Franz Schubert have in common?
+Both schoolteachers
+10
+
+What do julius caeser, ghandi and trotsky have in common?
+All assassinated
+10
+
+What do koala bears dine on?
+Eucalyptus leaves
+10
+
+What do ladybugs do in the winter?
+Hibernate
+10
+
+What do like charges do?
+Repel
+10
+
+What do mc and mac mean when used in surnames?
+Son of
+10
+
+What do Mcdonalds & Burger King do to their fries so they will turn golden brown?
+They sugar coat them
+10
+
+What do men do half as much as women?
+Blink
+10
+
+What do meteorologists call a thundercloud?
+Cumulonimbus
+10
+
+What do Moscow residents substitute for toilet paper during shortages?
+Newspaper
+10
+
+What do Muslims call their pilgrimage to Mecca?
+The Hajj
+10
+
+What do navel oranges lack?
+Seeds
+10
+
+What do New Zealanders claim Jack Lovelock did in 1935?
+Run a four minute mile
+10
+
+What do nictitating women do to men?
+Wink at them
+10
+
+What do nine pennies weigh?
+-- Answer metadata begin
+{
+    "answers": ["1 ounce", "one ounce"]
+}
+-- Answer metadata end
+10
+
+What do norwegians call norway?
+Norge
+10
+
+What do omnivores eat?
+Plants and meat
+10
+
+What do opposite charges do?
+Attract
+10
+
+What do opposite faces of a die always add up to?
+Seven
+10
+
+What do ornithologists study?
+Birds
+10
+
+What do osteologists study?
+Bones
+10
+
+What do pangolins eat?
+Ants
+10
+
+What do Patty + Selma say you can't spell without I.O.U.?
+Obsequious 
+10
+
+What do peacocks mate with?
+Peahens
+10
+
+What do people do when they 'tie the knot'?
+Get married
+10
+
+What do people in cold climates add to the water in a car's radiator in winter?
+Anti freeze
+10
+
+What do people use to propel kayaks?
+Paddles
+10
+
+What do pigments give to your hair & skin?
+Colour
+10
+
+What do professional crammers do?
+Individual coaching for exams
+10
+
+What do pterylologists study?
+Feathers
+10
+
+What do rabbits love?
+Licorice
+10
+
+What do Rastafarians generally refer to God as?
+Jah
+10
+
+What do runners pass each other in a relay race?
+Baton
+10
+
+What do runners pass to each other in a relay race?
+A baton
+10
+
+What do scuba divers ditch first if they have to ascend in a hurry?
+Weight belts
+10
+
+What do Spanish dancers hold in their hands?
+Castanets
+10
+
+What do spelunkers explore?
+Caves
+10
+
+What do spider monkeys like?
+Banana daquiries
+10
+
+What do spiders and ticks have in common?
+Eight legs
+10
+
+What do stock market vets call october 19, 1987?
+Black monday
+10
+
+What do strikers call those that refuse to strike?
+Scabs
+10
+
+What do supertankers carry?
+Oil
+10
+
+What do table tennis players change after five points?
+Service
+10
+
+What do table tennis rules say you must be able to see when you serve?
+Ball
+10
+
+What do tendons join to bones?
+Muscles
+10
+
+What do tha Albert Memorial and St Pancras Station have in common?
+Same architect
+10
+
+What do the ailurophobis fear?
+Cats
+10
+
+What do the aperture & shutter let into a camera?
+Light
+10
+
+What do the argentines call the falkland islands?
+Malvinas
+10
+
+What do the broken chains at the bottom of the statue of liberty symbolise?
+Overthrow of tyranny
+10
+
+What do the canadians and americans call the Scottish 'shinny'?
+Hockey
+10
+
+What do the cheeses gruyere and emmenthal have in common?
+Holes
+10
+
+What do the dodo, moa and great auk have in common?
+They are extinct
+10
+
+What do the five olympic rings represent?
+Continents
+10
+
+What do the following words all have in common Sussex,Pond,Cabinet and Eves?
+All puddings
+10
+
+What do the french appellation d'origin controlee laws regulate?
+Wine
+10
+
+What do the French call la manche?
+The English channel
+10
+
+What do the Greeks call the Elgin marbles?
+Parthenon marbles
+10
+
+What do the group of mammals known as monotremes do?
+Lay eggs
+10
+
+What do the initials 'crt' stand for among computer buffs?
+Cathode ray tube
+10
+
+What do the initials bvm stand for?
+Blessed virgin mary
+10
+
+What do the initials cbi stant for?
+Confederation of British industry
+10
+
+What do the initials DIY usually stand for?
+Do it yourself
+10
+
+What do the initials F W stand for in Woolworths?
+Frank winfield
+10
+
+What do the initials IMF stand for?
+International monetary fund
+10
+
+What do the initials in j.r.r tolkien's name mean?
+John ronald reuel
+10
+
+What do the initials j.p. stand for after a person's name?
+Justice of the peace
+10
+
+What do the initials nasa stand for?
+National aeronautics and space administration
+10
+
+What do the initials of the meat substitute tvp stand for?
+Textured vegetable protein
+10
+
+What do the initials of the painter J M W Turner stand for?
+Joseph mallord william
+10
+
+What do the initials RBC mean?
+Red blood cell
+10
+
+What do the initials snp stand for?
+Scottish nationalist party
+10
+
+What do the initials U.F.O stand for?
+Unidentified flying object
+10
+
+What do the initials V.S.O.P stand for on a bottle of brandy?
+Very special old pale
+10
+
+What do the Italian, French and Irish flag have in common?
+Vertical stripes
+10
+
+What do the Japanese call Japan?
+Nippon
+10
+
+What do the Japanese traditionally fly on new year's day?
+Kites
+10
+
+What do the letter RCMP stand for?
+Royal Canadian mounted police
+10
+
+What do the letters 'r.e.m.' stand for?
+Rapid eye movement
+10
+
+What do the letters 's.a.m' mean in sam missiles?
+Surface to air missiles
+10
+
+What do the letters 'T' and 'S' stand for in T. S. Eliot's name?
+Thomas stearns
+10
+
+What do the letters F.D. on British coins mean?
+Defender of the Faith
+10
+
+What do the letters HB stand for on a pencil?
+Hard black
+10
+
+What do the letters IMF mean?
+International monetary fund
+10
+
+What do the letters in SAM missiles refer to?
+Surface-to-air missile
+10
+
+What do the letters std stand for?
+Sexually transmitted disease
+10
+
+What do the locals call the cloud that covers Table Mountain in Cape Town?
+Tablecloth
+10
+
+What do the Nidd, Wharfe, Aire, Calder and Don rivers all rise in?
+Pennines
+10
+
+What do the paiute indians call ?kaibab' or ?mountain-lying-down'?
+Grand canyon
+10
+
+What do the pig, horse and rat have in common?
+Chinese astrology
+10
+
+What do the plants laburnum and broom have in common?
+Yellow flowers
+10
+
+What do the rose and the apple have in common?
+Belong to the same family
+10
+
+What do the san joaquin kit fox, hawaiian hawk and ocelot have in common?
+Endangered species
+10
+
+What do the Scottish call hockey?
+Shinny
+10
+
+What do the seven rays atop the statue of libertys head represent?
+7 seas and 7 continents 
+10
+
+What do the seven stripes on the American flag represent?
+The seven original states
+10
+
+What do the Simpsons buy to keep up with the Flanders?
+An R.V. 
+10
+
+What do the skunk, magpie and otter have in common they are all?
+Black and white
+10
+
+What do the Spaniards call Spain?
+Espana
+10
+
+What do The Specials,The Fun Boy Three and The Colour Field have in common?
+Terry hall
+10
+
+What do the STP Corporation's initials stand for?
+Scientifically Tested Products
+10
+
+What do the tendons attach to the bones or cartilage?
+Muscles
+10
+
+What do the words 'par avion' on the outside of an envelope mean?
+Airmail
+10
+
+What do the words nick and tuck refer to?
+Cosmetic surgery
+10
+
+What do they call an automatic pitching machine?
+Iron mike
+10
+
+What do trees get 90 percent of their nutrients from?
+Air
+10
+
+What do trees get 90% of their nutrients from?
+Air
+10
+
+What do vampire bats usually go for on sleeping humans?
+Toes
+10
+
+What do vulcanologists study?
+Volcanoes
+10
+
+What do Washington state's personalized plates revenues fund?
+Saving endangered animals
+10
+
+What do we call a small personal ornament of no great value?
+Trinket
+10
+
+What do we call in English the type of painting known to the french as 'nature morte'?
+Still life
+10
+
+What do we call strong self interest and self admiration?
+Egotism
+10
+
+What do we call the first day of lent?
+Ash Wednesday
+10
+
+What do we call the first visitor after midnight on New Years Eve?
+First foot
+10
+
+What do we call the jagged tops of castle walls through which archers could fire?
+Crenellations
+10
+
+What do we call the noise made by a sudden spasm closing the windpipe?
+Hiccup
+10
+
+What do we call the study of fossils?
+Palaeontology
+10
+
+What do wet Formula1 tyres have that dry ones don't?
+Tread
+10
+
+What do whales eat?
+Krill
+10
+
+What do women do nearly twice as much as men?
+Blink
+10
+
+What do x & y chromozomes combine in making?
+Males
+10
+
+What do x and y chromosomes combine in making?
+Males
+10
+
+What do you add to a screwdriver to get a harvey wallbanger?
+Galliano
+10
+
+What do you associate with hatton garden in london?
+Diamonds
+10
+
+What do you burn more when you sleep than when you watch tv?
+Calories
+10
+
+What do you call a boomerang that won't come back?
+A stick
+10
+
+What do you call a chemical structure that is not superimposable on its mirror image?
+Chiral
+10
+
+What do you call a chinese sailing ship?
+A junk
+10
+
+What do you call a creature that is going to change into a frog?
+Tadpole
+10
+
+What do you call a female calf?
+Heifer
+10
+
+What do you call a french Canadian pork pie?
+Tortierre
+10
+
+What do you call a large area covered with trees and underbrush?
+A forest
+10
+
+What do you call a large linear molecule that is formed from many simple molecules?
+Polymer
+10
+
+What do you call a left arm bowler's off break to a right handed batsman?
+Chinaman
+10
+
+What do you call a line of steep rock cliffs?
+Palisade
+10
+
+What do you call a man who has never been married?
+Bachelor
+10
+
+What do you call a man with a paper bag on his head?
+Russell
+10
+
+What do you call a man with a rabbit on his head?
+Warren
+10
+
+What do you call a man with a seagull on his head?
+Cliff
+10
+
+What do you call a man with a spade on his head?
+Doug
+10
+
+What do you call a Penguin in the Desert?
+Lost
+10
+
+What do you call a person that stuffs dead animals?
+Taxidermist
+10
+
+What do you call a person whose iq is between 110-120?
+Superior
+10
+
+What do you call a poker hand including the black aces and eights?
+Dead mans hand
+10
+
+What do you call a substance containing only one kind of atom?
+An element
+10
+
+What do you call a three line Japanese verse of 5,7 and 5 syllables?
+Haiku
+10
+
+What do you call a weasel whose coat turns white during the winter?
+An ermine
+10
+
+What do you call an emasculated ram, whether or not he wears a bell?
+Wether
+10
+
+What do you call an infant whale?
+Calf
+10
+
+What do you call an invoice that comes before the goods?
+Pro forma
+10
+
+What do you call cheese that isn't yours?
+Nacho cheese
+10
+
+What do you call chips that are not yours?
+Nacho chips
+10
+
+What do you call hair like or feathery clouds?
+Cirrus
+10
+
+What do you call marine echinoderms having 5 arms extending from a central disc?
+Shekel
+10
+
+What do you call someone who relapses into crime?
+Recidivist
+10
+
+What do you call substances that will not let thermal heat pass through them?
+Insulators
+10
+
+What do you call the divider between your nostrils?
+Septum
+10
+
+What do you call the explosion of a giant star?
+A supernova
+10
+
+What do you call the feeling of having experienced something before?
+Deja vu
+10
+
+What do you call the hollow spaces in the bones surrounding your nose?
+Sinuses
+10
+
+What do you call the machine that cleans the ice in skating rinks?
+Zamboni
+10
+
+What do you call the moslem sacred scriptures?
+Koran
+10
+
+What do you call the name of a factory where oil is processed?
+Refinery
+10
+
+What do you call the nuts of an oak tree?
+Acorns
+10
+
+What do you call the person who carries a golfer's clubs?
+Caddie
+10
+
+What do you call the person who institutes a suit in a court?
+The plaintiff
+10
+
+What do you call the playing pieces in dominoes?
+Bones
+10
+
+What do you call the process for prosecuting a US president while in office?
+Impeachment
+10
+
+What do you call the process of stamping a blank coin with a design?
+Minting
+10
+
+What do you call the stock market that is on the rise?
+Bull market
+10
+
+What do you call the technique of partially baking a flan case before filling it?
+Baking blind
+10
+
+What do you call the three wires on a transistor?
+Emitter, Base, Collector
+10
+
+What do you call the underground systems in both paris and newcastle?
+Metro
+10
+
+What do you call water that moves beneath the earth's surface?
+Groundwater
+10
+
+What do you catch at a stazione ferroviaria in Italy?
+Train
+10
+
+What do you do when you cogitate?
+Think
+10
+
+What do you gain by crossing the international date line to the east?
+One day
+10
+
+What do you get by adding Lactobacillus Bulgaricus to milk?
+Yogurt
+10
+
+What do you get by mixing gin and vermouth?
+Martini
+10
+
+What do you get if you add fresh fruit to red wine?
+Sangria
+10
+
+What do you get if you add quinine to water?
+Tonic water
+10
+
+What do you get if you mix potassium with acid?
+An explosion
+10
+
+What do you get when you cross a vampire with a snowman?
+Frostbite
+10
+
+What do you give for a 55 year wedding anniversary?
+Emerald
+10
+
+What do you give for a one year wedding anniversary?
+Paper
+10
+
+What do you give for a two year wedding anniversary?
+Cotton
+10
+
+What do you have alot of if you are hisute?
+Hair
+10
+
+What do you have plenty of if you are hirsute?
+Hair
+10
+
+What do you have to break to make omelettes?
+Eggs
+10
+
+What do you kiss to be endowed with great powers of persuasion?
+Blarney stone
+10
+
+What do you lose when suffering from phalacrosis?
+Hair
+10
+
+What do you mix with equal amounts of coffee to make 'cafe au lait'?
+Milk
+10
+
+What do you need to be able to operate a lever?
+Fulcrum
+10
+
+What do you need to sup with the devil?
+Long spoon
+10
+
+What do you part with when suffering from phalacrosis?
+Hair
+10
+
+What do you put on bread & butter to make fairy bread?
+Hundreds & thousands
+10
+
+What do you say when you raise a glass at munich's oktoberfest?
+Prosit
+10
+
+What do you take dramamine for?
+Motion sickness
+10
+
+What do you type in dos prompt to see if you are being icmp flooded?
+Arp -a
+10
+
+What do you use if you fortell the future by conchomancy?
+Shells
+10
+
+What do you usually do with an artichoke?
+Eat it
+10
+
+What doctor discovered the source of malaria in 1880?
+Charles laveran
+10
+
+What document did button gwinnett sign on the upper left hand side?
+Declaration of independence
+10
+
+What document is needed for one to enter a foreign country?
+Passport
+10
+
+What Dodger struck out 2,396 batters in 2,324 innings?
+Sandy koufax
+10
+
+What dodgers and cubs first baseman left baseball to take up acting?
+Chuck connors
+10
+
+What dodgers and cubs first-baseman dropped baseball to take up actin?
+Chuck connors
+10
+
+What dodgers and cubs first-baseman dropped baseball to take up acting?
+Chuck connors
+10
+
+What does .com stand for?
+Company
+10
+
+What does 'a.m' stand for?
+Ante meridian
+10
+
+What does 'aandw' of root beer fame mean?
+Allen and wright
+10
+
+What does 'alma mater' mean?
+Bountiful mother
+10
+
+What does 'anasazi' mean?
+The ancient ones
+10
+
+What does 'c'est la vie' mean?
+That's life
+10
+
+What does 'cassata' ice cream contain?
+Fruit and nuts
+10
+
+What does 'cc' stand for in motor mechanics?
+Cubic centimetre
+10
+
+What does 'dan' mean?
+Grade
+10
+
+What does 'dvd' mean?
+Digital video disc
+10
+
+What does 'entre nous' mean?
+Between ourselves
+10
+
+What does 'faux pas' mean?
+Mistake
+10
+
+What does 'g.m.t' stand for?
+Greenwich mean time
+10
+
+What does 'gnp' stand for?
+Gross national product
+10
+
+What does 'haem' refer to in words such as 'haemophilia' & 'haemoglobin'?
+Blood
+10
+
+What does 'HTTP' stand for?
+Hypertext Transfer Protocol
+10
+
+What does 'i.b.m' stand for?
+International business machines
+10
+
+What does 'i.o.u' mean?
+I owe unto
+10
+
+What does 'i.r.a' mean?
+Irish republican army
+10
+
+What does 'jejune' mean?
+Dry
+10
+
+What does 'karate' mean?
+Open hand
+10
+
+What does 'laser' mean?
+Light amplification by stimulated emission of radiation
+10
+
+What does 'll Trovatore', as in the opera, mean?
+The troubador
+10
+
+What does 'm&m' stand for?
+Mars and murray
+10
+
+What does 'majuba' mean?
+Place of rock pidgeons
+10
+
+What does 'n.b.a' mean?
+National basketball association
+10
+
+What does 'n.f.l' mean?
+National football league
+10
+
+What does 'orang-utan' mean?
+Man of the woods
+10
+
+What does 'p.m' stand for?
+Post meridian
+10
+
+What does 'pelindaba' mean?
+The end of the affair
+10
+
+What does 'rijsttafel' mean?
+Rice table
+10
+
+What does 'rio de janeiro' mean in Portuguese?
+January river
+10
+
+What does 'the cherry orchard' have in common with the original 'startrek'?
+Mr checkhov
+10
+
+What does 'unicef' mean?
+United nations childrens' emergency fund
+10
+
+What does 'Ursa Major' mean in everyday English?
+Great bear
+10
+
+What does 'vtec', honda's trademarked acronym mean?
+Variable valve timing and electronic lift control
+10
+
+What does 'yahoo' mean?
+Yet another hierarchical officious oracle
+10
+
+What does 180 degrees make?
+Straight line
+10
+
+What does 2thwrk do for a living?
+Dentist
+10
+
+What does 3 d mean?
+Three dimensional
+10
+
+What does 360 degrees make?
+Circle
+10
+
+What does 4wd on a car indicate?
+Four wheel drive
+10
+
+What does a 'canophilist like?
+Dogs
+10
+
+What does a 'postman' normally receive in kids' party games?
+Kisses
+10
+
+What does a baby elephant suck with?
+Its mouth
+10
+
+What does a barber do with his strop?
+Sharpen a razor
+10
+
+What does a barometer measure?
+Atmospheric pressure
+10
+
+What does a Bedouin use an agal to secure?
+Head cloth
+10
+
+What does a bibliophile enjoy?
+Books
+10
+
+What does a botanist study?
+Plants
+10
+
+What does a boxer's second throw into the ring to stop a fight?
+Towel
+10
+
+What does a bryologist study?
+Mosses
+10
+
+What does a burglar call a crow bar?
+Jemmy
+10
+
+What does a butterfly clip usually hold in position?
+Hair
+10
+
+What does a camel's hump contain?
+Fat
+10
+
+What does a carpologist study?
+Fruit and seeds
+10
+
+What does a cartographer do?
+Makes maps
+10
+
+What does a cat use to determine if a space is too small to squeeze through?
+Whiskers
+10
+
+What does a catoptrophic narcissist fear?
+Mirrors
+10
+
+What does a cb radio operator refer to as a pregnant roller skate?
+A Volkswagen
+10
+
+What does a cobbler mend?
+Shoes
+10
+
+What does a colporter sell?
+Religious books
+10
+
+What does a compass needle point to?
+North
+10
+
+What does a compass's needle point to?
+Magnetic north
+10
+
+What does a conchologist study?
+Shellfish
+10
+
+What does a cooper make?
+Barrels
+10
+
+What does a craftsman called a bodger make?
+Chair parts
+10
+
+What does a deltiologist collect?
+Postcards
+10
+
+What does a depilatory remove?
+Hair
+10
+
+What does a dipsomaniac crave?
+Alcohol
+10
+
+What does a dolorimeter measure?
+Pain
+10
+
+What does a dowser do?
+Find water
+10
+
+What does a farrier put shoes on?
+Horses
+10
+
+What does a fishmonger do for a living?
+Sells fish
+10
+
+What does a Football player have to do when the referee shows him a red card?
+Leave the game
+10
+
+What does a frog close when it swallows?
+Its eyes
+10
+
+What does a gallophobic englishman fear?
+France
+10
+
+What does a gallophoic englishman fear?
+France
+10
+
+What does a gynephobic man fear?
+Women
+10
+
+What does a gynophobic man fear?
+Women
+10
+
+What does a hamlet need to be a village?
+Church
+10
+
+What does a heliologist study (the)?
+Sun
+10
+
+What does a heliologist study?
+Sun
+10
+
+What does a herpetologist study?
+Reptiles and amphibians
+10
+
+What does a hippophobic fear?
+Horses
+10
+
+What does a horologist measure?
+Time
+10
+
+What does a i stand for?
+Artificial intelligence
+10
+
+What does a king cobra normally eat beetles, rodents or snakes?
+Snakes
+10
+
+What does a kleptomaniac suffer from?
+Stealing
+10
+
+What does a la carte mean in a restaurant?
+According to the menu
+10
+
+What does a lepidopterist collect?
+Butterflies and moths
+10
+
+What does a linguist study?
+Languages
+10
+
+What does a mahout mind?
+Elephant
+10
+
+What does a man suffering from diphallic terata have?
+Two penises
+10
+
+What does a marsupial mouse have that other mice don't?
+A pouch
+10
+
+What does a meteorologist study?
+Weather
+10
+
+What does a month beginning with a sunday always have?
+Friday the 13th
+10
+
+What does a mosque's mihrab indicate the direction to?
+Mecca
+10
+
+What does a mosquito vibrate to make its buzzing sound?
+Wings
+10
+
+What does a mycologist study?
+Fungi
+10
+
+What does a myologist study?
+Muscles
+10
+
+What does a narcomaniac crave?
+Drugs
+10
+
+What does a nihilist believe in?
+Nothing
+10
+
+What does a notaphile collect?
+Bank notes
+10
+
+What does a numismatist collect?
+Coins and medals
+10
+
+What does a panaphobe fear?
+Everything
+10
+
+What does a panophobe fear?
+Everything
+10
+
+What does a pedologist study?
+Soils
+10
+
+What does a pedometer measure?
+Walking distance
+10
+
+What does a person look like if described as 'wan'?
+Pale-faced
+10
+
+What does a person suffering from kleptomania want to do?
+Steal
+10
+
+What does a person who is suffering from macrodontia have?
+Big Teeth
+10
+
+What does a petrologist study?
+Rocks
+10
+
+What does a philatelist collect?
+Stamps
+10
+
+What does a phillumenist collect?
+Matchbox labels
+10
+
+What does a philluminist collect?
+Match box labels
+10
+
+What does a philogynist like?
+Women
+10
+
+What does a phonophobe fear?
+Noise
+10
+
+What does a phrenologist feel and interpret?
+Skull features
+10
+
+What does a phrenologist read?
+Skulls
+10
+
+What does a phycologist study?
+Algae
+10
+
+What does a phyllophagus animal eat?
+Leaves
+10
+
+What does a piscatologist do?
+Fish
+10
+
+What does a piscatologist excel at?
+Fishing
+10
+
+What does a piscivorous creature eat?
+Fish
+10
+
+What does a pluviometer measure?
+Rainfall
+10
+
+What does a pomologist study?
+Fruit
+10
+
+What does a postilion ride?
+A horse
+10
+
+What does a priest distribute with an aspergillum?
+Holy water
+10
+
+What does a pteridologist study?
+Ferns
+10
+
+What does a pulsar emit?
+Radio waves
+10
+
+What does a red flag mean in auto racing?
+Stop
+10
+
+What does a road sign showing the rear of a car and wavy lines mean?
+Slippery when wet
+10
+
+What does a ruminant do?
+Chew the cud
+10
+
+What does a ship flying the yellow jack flag have on board?
+Disease
+10
+
+What does a sinophobic Russian fear?
+China
+10
+
+What does a speleologist study?
+Caves
+10
+
+What does a spermologer collect?
+Trivia
+10
+
+What does a stallion have that a gelding used to?
+Testicles
+10
+
+What does a stevedore do?
+Load and unload ships
+10
+
+What does a stoat wear in winter?
+Ermine
+10
+
+What does a taxidermist do?
+Stuff animals
+10
+
+What does a testator make?
+Will
+10
+
+What does a town need to be a city?
+Cathedral
+10
+
+What does a wainwright make?
+Wagons and carts
+10
+
+What does a woman commit if she murders her child?
+Infanticide
+10
+
+What does a zoologist study?
+Animals
+10
+
+What does a.d. actually stand for?
+Anno domini
+10
+
+What does a.d. stand for in the christian calendar?
+Anno domini
+10
+
+What does a.n.c stand for?
+African national congress
+10
+
+What does AIDS stand for?
+Acquired immune deficiency syndrome
+10
+
+What does aka stand for?
+Also known as
+10
+
+What does al capone's headstone say?
+My jesus mercy
+10
+
+What does ALF stand for?
+Alien Life Form
+10
+
+What does ally sheedy say she likes to drink in the breakfast club?
+Vodka
+10
+
+What does ally sheedy use to decorate her picture in the breakfast club?
+Dandruf
+10
+
+What does am/fm stand for?
+Amplitude modulation/frequency modulation
+10
+
+What does amd stand for?
+Advanced micro devices
+10
+
+What does Amoco stand for?
+American oil company
+10
+
+What does an abecedarian study?
+Alphabet
+10
+
+What does an accordion have that a concertina doesn't?
+Keyboard
+10
+
+What does an agriologist study?
+Primitive cultures
+10
+
+What does an agrologist study?
+Soil
+10
+
+What does an agrostologist study?
+Grass
+10
+
+What does an androphobic maiden fear?
+Men
+10
+
+What does an anemologist study?
+Wind
+10
+
+What does an anemometer measure?
+Wind velocity
+10
+
+What does an animal have if it is a bird?
+Feathers
+10
+
+What does an animal have if it is a fish?
+Gills
+10
+
+What does an anthropophagist eat?
+People
+10
+
+What does an archer carry his arrows in?
+Quiver
+10
+
+What does an archer carry in his quiver?
+Arrows
+10
+
+What does an army march on according to Napoleon?
+Its stomach
+10
+
+What does an artist's easel support?
+Canvas
+10
+
+What does an aurist study?
+Ears
+10
+
+What does an Austrian call Austria?
+Osterreich
+10
+
+What does an autophobe avoid mentioning?
+Himself
+10
+
+What does an autophobe avoid referring to?
+Himself
+10
+
+What does an average person use approximately six times per day?
+Bathroom
+10
+
+What does an ecclesiophobic fear?
+Churches
+10
+
+What does an ichthyologist study?
+Fish
+10
+
+What does an insect do through its spiracles?
+Breath
+10
+
+What does an insect do when it moults?
+Sheds its skin
+10
+
+What does an odometer measure?
+Speed
+10
+
+What does an oenologist make?
+Wine
+10
+
+What does an ombrometer measure?
+Rainfall
+10
+
+What does an oologist collect or study?
+Birds eggs
+10
+
+What does an optician make?
+Spectacles
+10
+
+What does an orometer measure?
+Height above sea level
+10
+
+What does an Orrery illustrate in model form?
+The solar system
+10
+
+What does an otologist study?
+Ears
+10
+
+What does an vexillologist study?
+Flags
+10
+
+What does aplanonologist collect?
+Dolls
+10
+
+What does ascii mean?
+American standard code for information interchange
+10
+
+What does atp stand for?
+Adenine triphosphate
+10
+
+What does av stands for on a television?
+Audio visual
+10
+
+What does AWOL stand for?
+Absent without leave
+10
+
+What does barley become when prepared for brewing?
+Malt
+10
+
+What does Bart get tattooed on his arm?
+Moth 
+10
+
+What does Bart name his elephant?
+Stampy 
+10
+
+What does basf stand for?
+Baden aniline & soda factory
+10
+
+What does basic stand for?
+Beginner's all purpose symbolic instruction code
+10
+
+What does bbiab mean?
+Be back in a bit
+10
+
+What does bbl mean?
+Be back later
+10
+
+What does bbs mean?
+Be back soon
+10
+
+What does bcs stand for in college football?
+Bowl championship series
+10
+
+What does Beetlejuice eat when he reaches out of his grave in the scale model of the town?
+A Fly
+10
+
+What does bette davis' headstone say?
+She did it the hard way
+10
+
+What does black represent in colour coded household wiring?
+Neutral
+10
+
+What does blt stand for?
+Bacon, lettuce, tomato
+10
+
+What does BMW stand for?
+Bavarian Motor Works
+10
+
+What does bmx stand for?
+Bicycle motocross
+10
+
+What does boardwalk cost on the monopoly board?
+Four hundred dollars
+10
+
+What does bonhomme de neige mean in French?
+Snowman
+10
+
+What does bovine mean?
+Cowlike
+10
+
+What does brb mean?
+Be right back
+10
+
+What does breaking the sound barrier cause?
+Sonic boom
+10
+
+What does britain lose the lease on in 1997?
+Hong kong
+10
+
+What does btu stand for?
+British thermal unit
+10
+
+What does C minus LXXIX equal?
+Xxi
+10
+
+What does c.i.a stand for?
+Central intelligence agency
+10
+
+What does c.o.d. mean in the business world?
+Cash on delivery
+10
+
+What does captain furillo's main squeeze, joyce davenport, do for a living?
+Assistant da
+10
+
+What does car doc do for a living?
+Automobile mechanic
+10
+
+What does carditis affect?
+Heart
+10
+
+What does cat stand for?
+Computerised axial tomography
+10
+
+What does cb stand for?
+Citizen's band
+10
+
+What does cbs stand for?
+Columbia broadcasting system
+10
+
+What does CNN stand for on the TV or Internet?
+Cable news network
+10
+
+What does cnn stand for?
+Cable network news
+10
+
+What does cobol stand for?
+Common business oriented language
+10
+
+What does COD stand for?
+Cash on delivery
+10
+
+What does conus stand for?
+Continental united states
+10
+
+What does cpr stand for?
+Cardiopulmonary resuscitation
+10
+
+What does cpu mean in computer language?
+Central processing unit
+10
+
+What does CRT stand for?
+Cathode Ray Tube
+10
+
+What does csis stand for?
+Canadian secret information service
+10
+
+What does cvs stand for?
+Consumer value service
+10
+
+What does cyprus have on its flag?
+Map
+10
+
+What does ddt (banned insecticide) stand for?
+Dichlorodiphenyltrichloroethane
+10
+
+What does ddt stand for?
+Dichloro diphenyl trichloroethane
+10
+
+What does dean martin's California license plate say, on his stutz blackhawk?
+Drunky
+10
+
+What does deoxyribonucleic acid also know as?
+DNA
+10
+
+What does dermatitis affect?
+Skin
+10
+
+What does dew stand for?
+Distant early warning
+10
+
+What does dimel stand for?
+Direct memory execute & local
+10
+
+What does DNA stand for?
+Deoxyribonucleic acid
+10
+
+What does DOS stand for?
+Disk operating system
+10
+
+What does dr stand for in drdos?
+Digital research
+10
+
+What does E stand for in Eisteins famous equation?
+Energy
+10
+
+What does ebcdic mean?
+Extended binary coded decimal interchange code
+10
+
+What does ecg stand for?
+Electrocardiogram
+10
+
+What does elly may call her pets in the beverly hillbillies?
+Critters
+10
+
+What does encephalitus affect?
+Brain
+10
+
+What does entymology deal with?
+Word origins
+10
+
+What does epcot stand for?
+Experimental prototype community of tomorrow
+10
+
+What does ETA stand for?
+Estimated time of arrival
+10
+
+What does f.b.i. stand for?
+Federal bureau of investigation
+10
+
+What does FBI stand for?
+Federal bureau of investigation
+10
+
+What does fm stand for?
+Frequency modulation
+10
+
+What does fortran stand for?
+Formula translation
+10
+
+What does gastritis affect?
+Stomach
+10
+
+What does gatt stand for?
+General agreement on tariffs and trade
+10
+
+What does GDP stand for?
+Gross Domestic Product
+10
+
+What does gestapo stand for?
+Geheime staatspolizei
+10
+
+What does gravid mean?
+Pregnant
+10
+
+What does hdpe stand for?
+High density polyethylene
+10
+
+What does Herman sell?
+Military antiques and surplus 
+10
+
+What does hiv stand for?
+Human immuno defficiency virus
+10
+
+What does Homer call the monster which has enslaved Marge?
+Gamblor
+10
+
+What does Homer's note to himself say in Halloween Special IV?
+Dear Homer, IOU one emergency donut
+10
+
+What does Homer's shirt say under his Gulp N' Blow uniform?
+I Shot J.R.
+10
+
+What does Hosannah mean in Hebrew?
+Save us
+10
+
+What does html stand for?
+Hypertext markup language
+10
+
+What does i.r.c stand for?
+Internet relay chat
+10
+
+What does icbm stand for?
+Intercontinental ballistic missle
+10
+
+What does insuru do for a living?
+Insurance salesman
+10
+
+What does Inuit mean in the Inuit Language?
+The People
+10
+
+What does IQ stand for?
+Intelligence Quotient
+10
+
+What does iron become if a little carbon is added?
+Steel
+10
+
+What does IRS stand for?
+Internal revenue service
+10
+
+What does isp stand for?
+Internet service provider
+10
+
+What does it say on the bottom of New Jersey & Victorian (Aus)license plates?
+Garden state
+10
+
+What does it take saturn almost 30 years to complete?
+Circuit of the sun
+10
+
+What does jeep stand for?
+General purpose vehicle
+10
+
+What does jefferson davis' headstone say?
+At rest, an American soldier and defender of the constitution
+10
+
+What does jester do for a living?
+Comedian
+10
+
+What does jvc stand for?
+Japan victor company
+10
+
+What does keanu mean in hawaiian?
+Cool breeze over the mountains
+10
+
+What does kemo sabe mean?
+Soggy shrub
+10
+
+What does l on a weather map man?
+Low pressure
+10
+
+What does lacrimal fluid lubricate?
+Eyes
+10
+
+What does lan stand for?
+Local area network
+10
+
+What does las vegas mean, in Spanish?
+The meadows
+10
+
+What does laser stand for?
+Light amplification by the simulated emission of radiation
+10
+
+What does lbw stand for in cricket?
+Leg before wicket
+10
+
+What does lcd stand for?
+Liquid crystal display
+10
+
+What does ldpe stand for?
+Low density polyethylene
+10
+
+What does led stand for?
+Light emitting diode
+10
+
+What does letaba mean?
+Sandy river
+10
+
+What does Lisa steal from all the teachers at Springfield Elementary?
+The teacher's edition textbooks 
+10
+
+What does Lisa's valentine to Ralph say?
+I Choo choo choose you
+10
+
+What does lisp mean?
+List processor
+10
+
+What does LL Cool J.'s name stand for?
+Ladies Love Cool James
+10
+
+What does M.A.S.K. stand for?
+Mobile Armoured Strike Kommand
+10
+
+What does madonna mean?
+My lady
+10
+
+What does Mark Twain actually mean?
+Two fathoms deep
+10
+
+What does mg stand for?
+Morris garages
+10
+
+What does MI stand for in the spy business?
+Military intelligence
+10
+
+What does michele remeber the formula for in romy and michele's high school renuion?
+Post-it glue
+10
+
+What does milk do?
+It Does The Body Good
+10
+
+What does milk1 do for a living?
+Dairy farmer
+10
+
+What does mo stand for?
+Modus operandi
+10
+
+What does montenegro mean?
+Black mountain
+10
+
+What does most lipstick contain?
+Fish scales
+10
+
+What does mta stand for among frisbee freaks?
+Maximum time aloft
+10
+
+What does munificent mean?
+Generous
+10
+
+What does myositis affect?
+Muscles
+10
+
+What does NATO stand for?
+North Atlantic Treaty Organization
+10
+
+What does nhl stand for?
+National hockey league
+10
+
+What does np stand for?
+No problem
+10
+
+What does nurolg do for a living?
+Neurologist
+10
+
+What does NYD mean to an ER doctor?
+Not yet diagnosed
+10
+
+What does o.p.e.c stand for?
+Organisation of petroleum exporting countries
+10
+
+What does oestrogen protect against?
+Heart attacks
+10
+
+What does one call a tyrolean mountaineer's modulated melody?
+Yodel
+10
+
+What does one call the two areas on either side of the seine river in France?
+Left bank & right bank
+10
+
+What does one square inch of human skin contain 625 of?
+Sweat glands
+10
+
+What does Orphan Annie's dog always say?
+Arf
+10
+
+What does osteomyelitis affect?
+Bones
+10
+
+What does P stand for in the abbreviation PLO?
+Palestine
+10
+
+What does p.s. stand for at the end of a letter?
+Postscript
+10
+
+What does paye stand for?
+Pay as you earn
+10
+
+What does pbs stand for?
+Public broadcasting system
+10
+
+What does pbx stand for?
+Private branch exchange
+10
+
+What does peritonitis affect?
+Abdomen
+10
+
+What does persona non grata translate to in English?
+Unwelcome person
+10
+
+What does peter pan call captain hook?
+Cod fish
+10
+
+What does pipedr do for a living?
+Plumber
+10
+
+What does poltergeist mean?
+Noisy Ghost
+10
+
+What does ppmd do for a living?
+Urologist
+10
+
+What does ppp stand for?
+Point to point protocol
+10
+
+What does punch do for a living?
+Boxer
+10
+
+What does pvc stand for?
+Polyvinyl chloride
+10
+
+What does qb vii refer to in leon uris's title?
+Queen's bench no 7
+10
+
+What does radar spell backwards?
+Radar
+10
+
+What does radar stand for?
+Radio detecting and ranging
+10
+
+What does RAMDAC stand for?
+Random access memory digital to analogue converter
+10
+
+What does RCMP stand for?
+Royal Canadian mounted police
+10
+
+What does ronald reagan use to keep his hair in place?
+Water
+10
+
+What does s.o.s stand for?
+Save our souls
+10
+
+What does salk vaccine prevent?
+Polio
+10
+
+What does SALT stand for?
+Strategic arms limitation treaty
+10
+
+What does sar stand for?
+Search & rescue
+10
+
+What does sase stand for?
+Self addressed stamped envelope
+10
+
+What does scotch refer to in hopscotch?
+Lines
+10
+
+What does sctv stand for?
+Second city television
+10
+
+What does sdi, more popularly known as Star Wars, stand for?
+Strategic defense initiative
+10
+
+What does seal stand for?
+Sea, air, & land
+10
+
+What does seti stand for?
+Search for extraterrestrial intelligence
+10
+
+What does shazam stand for?
+Solomon, hercules, atlas, zeus, achilles & mercury
+10
+
+What does sideshow bob of 'the simpsons' and jean valjean of 'les miserables' have in common?
+Criminal number
+10
+
+What does Simon Wiesenthal hunt?
+Fugitive Nazis
+10
+
+What does SJ stand for?
+Society of jesus
+10
+
+What does smtp stand for?
+Simple mail transfer protocol
+10
+
+What does somnolent mean?
+Sleepy or drowsy
+10
+
+What does spago mean in Italian?
+String
+10
+
+What does Spam stand for?
+Shoulder pork and ham
+10
+
+What does sputnik mean?
+Fellow traveller
+10
+
+What does sro stand for?
+Standing room only
+10
+
+What does SSB stand for?
+Single Side Band
+10
+
+What does std stand for?
+Sexually transmitted disease
+10
+
+What does sub rosa mean, not literally but in plain English?
+In secret
+10
+
+What does susan b. anthony's middle initial stand for?
+Brownell
+10
+
+What does Sweden call itself on its stamps?
+Sverige
+10
+
+What does t.i.d. mean on a doctor's prescription?
+Three times a day
+10
+
+What does T.S. refer to in drag racing?
+Terminal Speed
+10
+
+What does tba stand for?
+To be announced
+10
+
+What does tgif stand for?
+Thank god its friday
+10
+
+What does the 'B' stand for in the automobile company B.M.W?
+Bavaria
+10
+
+What does the 'c' in the equation e=mc2 stand for?
+Speed of light
+10
+
+What does the 'catchfly' plant feed on?
+Moths
+10
+
+What does the 'd' in franklin d roosevelt mean?
+Delano
+10
+
+What does the 'E stand for in Email?
+Electronic
+10
+
+What does the 'e' in e=mc2 represent?
+Energy
+10
+
+What does the 'lithosphere' refer to?
+The earth's crust
+10
+
+What does the 'm' in e=mc2 represent?
+Mass
+10
+
+What does the 'mad cow disease', bse, stand for?
+Bovine spongiform encephalopathy
+10
+
+What does the 'O' in O.J. Simpson stand for?
+Orenthal
+10
+
+What does the 'o' used as a prefix in Irish surnames mean?
+Descendent of
+10
+
+What does the 'touch of midas' turn everything into?
+Gold
+10
+
+What does the 'x' mean when referring to the speed of a cd-rom (ie... 32x)?
+Times faster than a single speed
+10
+
+What does the a in 'dna' stand for?
+Acid
+10
+
+What does the aandw of root beer fame stand for?
+Allen & wright
+10
+
+What does the abbreviation a.m stand for?
+Ante Meridian
+10
+
+What does the abbreviation a.m. stand for?
+Ante meridian
+10
+
+What does the abbreviation BP, used in hospitals, stand for?
+Blood pressure
+10
+
+What does the abbreviation cwt. stand for?
+Hundredweight
+10
+
+What does the abbreviation e.g. stand for?
+Exempli gratia
+10
+
+What does the abbreviation REME stand for?
+Royal electrical and mechanical engineers
+10
+
+What does the acronym BUPA stand for?
+British united provident association
+10
+
+What does the acronym camra stand for?
+Campaign for real ale
+10
+
+What does the acronym CIA stand for?
+Central intelligence agency
+10
+
+What does the acronym ERNIE stand for?
+Electronic random number indicator equipment
+10
+
+What does the acronym lan stand for?
+Local area network
+10
+
+What does the acronym NIMBY mean?
+Not in my back yard
+10
+
+What does the acronym SCUBA stand for?
+Self contained underwater breathing apparatus
+10
+
+What does the acronym vhs mean?
+Video home system
+10
+
+What does the acronym wysiwyg stand for?
+What you see is what you get
+10
+
+What does the angora cat enjoy?
+Swimming
+10
+
+What does the Australian word 'duuny' mean?
+Toilet
+10
+
+What does the average human grow 7.5 metres of in a lifetime?
+Hair
+10
+
+What does the average person do approximately 15 times a day?
+Laugh
+10
+
+What does the aviation term VTO stand for?
+Vertical take off
+10
+
+What does the beast become in beauty & the beast?
+A prince
+10
+
+What does the Bessemer process do?
+Make steel
+10
+
+What does the c stand for in the acronym unicef?
+Children's
+10
+
+What does the camera shutter speed b stand for?
+Bulb
+10
+
+What does the campbell-stokes recorder measure?
+Duration of sunshine
+10
+
+What does the character quest for in the dungeons of doom?
+The amulet of yendor
+10
+
+What does the Colorado Whip-poor-will do that distinguishes it from every other kind of bird?
+Hibernates in winter
+10
+
+What does the columella separate?
+Nostrils
+10
+
+What does the company binney and smith produce?
+Crayola crayons
+10
+
+What does the computer abbreviation dip stand for?
+Dual inline package
+10
+
+What does the computer abbreviation prom stand for?
+Programmable read only memory
+10
+
+What does the computer acronym EFTPOS stand for?
+Electronic fund transfer at point of sale
+10
+
+What does the computer acronym IKBS stand for?
+Intelligent knowledge based system
+10
+
+What does the computer program 'yacc' mean?
+Yet another compiler compiler
+10
+
+What does the computer term 'alu' mean?
+Arithmetic logic unit
+10
+
+What does the computer term 'fpu' mean?
+Floating point unit
+10
+
+What does the computer term 'mmu' mean?
+Memory management unit
+10
+
+What does the computer term 'tcp' mean?
+Transmission control protocol
+10
+
+What does the computer term 'vliw' mean?
+Very long instruction word
+10
+
+What does the constellation Vulpecula represent?
+Fox
+10
+
+What does the country zimbabwe mean?
+Stone houses
+10
+
+What does the dalmatian have on each individual hair follicle?
+Barb
+10
+
+What does the Dewey decimal system classify?
+Library books
+10
+
+What does the disease Impetigo affect?
+Skin
+10
+
+What does the dominican republic have on its flag?
+Bible
+10
+
+What does the double-o indicate in 007?
+Licensed to kill
+10
+
+What does the E stand for in the equation E=mc2?
+Energy
+10
+
+What does the E. in E.coli stand for?
+Escherichia
+10
+
+What does the electrical abbreviation db stand for?
+Decibel
+10
+
+What does the electrical term 'ac' stand for?
+Alternating current
+10
+
+What does the electrical term 'dc' stand for?
+Direct current
+10
+
+What does the F stand for in FBI?
+Federal
+10
+
+What does the Fleetwood Mac inspired plaque on Bill Clinton's desk read?
+Don't stop thinking about tomorrow
+10
+
+What does the french word brut mean on a wine bottle?
+Dry
+10
+
+What does the French word Hourderve translate to in English?
+Outside of work
+10
+
+What does the G represent for Italian brandy distilled from post-pressed grape residue?
+Grappa
+10
+
+What does the garden of eden mean?
+Pleasantness
+10
+
+What does the greek word eureka mean?
+I have found it
+10
+
+What does the Greek word polis mean, as in Metropolis?
+City
+10
+
+What does the horned toad squirt from it's eyes when it's angry?
+Blood
+10
+
+What does the hummingbird weigh less than?
+A penny
+10
+
+What does the Irish 'dubh linn' mean?
+Blackpool
+10
+
+What does the Italian word paparazzi mean in the English language?
+Mosquitos
+10
+
+What does the j in j Paul getty's name stand for?
+Jean
+10
+
+What does the Kelvin scale measure?
+Temperature
+10
+
+What does the king of spades hold in his left hand?
+Sword
+10
+
+What does the lacrimal gland produce?
+Tears
+10
+
+What does the latin 'carpe diem' mean?
+Seize the day
+10
+
+What does the latin ante mortem mean?
+Before death
+10
+
+What does the latin circa before a date mean?
+About
+10
+
+What does the Latin expression 'in toto' mean?
+Entirely
+10
+
+What does the Latin phrase 'Cave Canem' mean?
+Beware of Dog
+10
+
+What does the Latin phrase Deo Volente mean?
+God willing
+10
+
+What does the latin phrase Errare humanum est mean?
+To err is human
+10
+
+What does the Latin RIP stand for?
+Requiescat in pace
+10
+
+What does the latin word 'circa' before a date mean?
+About
+10
+
+What does the Latin word 'clarus' mean?
+Clear
+10
+
+What does the Latin word 'Veto' mean in English?
+I forbid
+10
+
+What does the letter E stand for in the abbreviation E-mail?
+Electronic
+10
+
+What does the mathematical symbol that look like an 8 on it's side mean?
+Infinity
+10
+
+What does the medical abbreviation 'g.p.' stand for?
+General practitioner
+10
+
+What does the medical abbreviation LD stand for?
+Lethal dose
+10
+
+What does the medical abbreviation pm stand for?
+Post mortem
+10
+
+What does the mighty Thor throw at his enemies?
+Hammer
+10
+
+What does the musical term 'largo' mean?
+Slowly
+10
+
+What does the musical term 'pesante' mean?
+Heavy
+10
+
+What does the musical term diminuendo mean?
+Gradually decreasing in volume
+10
+
+What does the name 'Caligula' mean in Latin?
+Little boots
+10
+
+What does the name aardvark mean?
+Earth pig
+10
+
+What does the name Agnes symbolise?
+Purity
+10
+
+What does the name Alice mean?
+Truth
+10
+
+What does the name barbarossa mean?
+Red beard
+10
+
+What does the name klee wyck mean?
+Testicle
+10
+
+What does the name Mary mean?
+Star of the sea
+10
+
+What does the name of the Russian newspaper pravda mean?
+Truth
+10
+
+What does the name Triceratops mean?
+Three horned lizard
+10
+
+What does the national geographic society call the longest river in the world?
+Nile
+10
+
+What does the navajo term 'kemo sabe' mean?
+Soggy shrub
+10
+
+What does the New York City police's catch mean?
+Computer assisted terminal criminal hunt
+10
+
+What does the painting The Battle of Gettysburg claim to be?
+Worlds largest
+10
+
+What does the postage stamp cancellation o.h.m.s. mean on (his/her) majesty's service?
+On his her majesty's service
+10
+
+What does the prefix 'pseudo' mean?
+Pretend
+10
+
+What does the prefix mega mean when it's used precisely in science?
+One million
+10
+
+What does the red blood cell not have?
+Nucleus
+10
+
+What does the red spot on the Japanese flag represent?
+Sincerity and passion
+10
+
+What does the River Kennet join at Reading?
+Thames
+10
+
+What does the royal family use as confetti?
+Rose petals
+10
+
+What does the sarsaparilla root flavour?
+Root beer
+10
+
+What does the SI prefix 'pico' mean?
+One millionth millionth
+10
+
+What does the sign above the entrance to the 4077 MASH say?
+Best care anywhere
+10
+
+What does the sign BYO, seen outside some Australian eating places, mean?
+Bring your own booze
+10
+
+What does the six footed Musca domestica become when it flies into your home?
+House fly
+10
+
+What does the Statue of Liberty hold in her right hand?
+Torch
+10
+
+What does the statue of liberty wear on her feet?
+Sandals
+10
+
+What does the sun convert into helium?
+Hydrogen
+10
+
+What does the symbol 'sm' represent?
+Samarium
+10
+
+What does the term '30' mean to a newspaper editor?
+The end
+10
+
+What does the term 'gps' mean?
+Global positioning system
+10
+
+What does the term dj mean?
+Disc jockey
+10
+
+What does the term Honking mean to a cyclist?
+Standing out of the saddle
+10
+
+What does the tiger symbolise on singapore's coat-of-arms?
+Malaysia
+10
+
+What does the typical American eat 263 of each year not pizza?
+Eggs
+10
+
+What does the typical American eat 263 of each year?
+Eggs
+10
+
+What does the typical man have 13,000 of?
+Whiskers
+10
+
+What does the typical person do 295 times during the dinner hour?
+Swallow
+10
+
+What does the typical tv viewer do every three minutes and 42 seconds?
+Change channels
+10
+
+What does the u stand for in the abbreviation i.o.u?
+Unto
+10
+
+What does the ureter carry?
+Urine
+10
+
+What does the wind speed have to be below (in miles per hour) in order to be rated 'calm' by the National Weather Service?
+One mile per hour
+10
+
+What does the word 'khaki' mean in Hindi?
+Dusty
+10
+
+What does the word 'maudlin' mean?
+Self-pitying
+10
+
+What does the word antediluvian mean?
+Before the flood
+10
+
+What does the word chicane mean in the context of a game of bridge?
+A hand without any trumps
+10
+
+What does the word contubernial mean?
+Occupy the same tent
+10
+
+What does the word dinosaur literally mean?
+Terrible lizard
+10
+
+What does the word dinosaur mean?
+Terrible lizard
+10
+
+What does the word khaki mean?
+Dusty
+10
+
+What does the world 'Volvo' mean in Latin?
+I Roll
+10
+
+What does tla stand for?
+Three letter acronym
+10
+
+What does tnt stand for?
+Trinitrotoluene
+10
+
+What does ttyl mean?
+Talk to you later
+10
+
+What does turpentine come from?
+Trees
+10
+
+What does unesco stand for (omit punctuation)?
+United nations educational scientific and cultural organization
+10
+
+What does UNESCO stand for?
+United Nation Educational, Scientific and Cultural Organization
+10
+
+What does unicef stand for?
+United nations international children's emergency fund
+10
+
+What does urako think of you?
+You're a knockout
+10
+
+What does uranus circle every 84 years?
+Sun
+10
+
+What does url stand for?
+Uniform resource locator
+10
+
+What does ursa major mean in everyday English?
+Big bear
+10
+
+What does v.i.r.c stand for?
+Visual internet relay chat
+10
+
+What does v.s.o.p. stand for on a bottle of brandy?
+Very superior old pale
+10
+
+What does VAX stand for?
+Virtual Access eXtension
+10
+
+What does vhs stand for?
+Video home system
+10
+
+What does vince mcmahon own?
+W.w.f
+10
+
+What does vista stand for?
+Volunteers in service to America
+10
+
+What does wac stand for?
+Women's army corps
+10
+
+What does WAN stand for?
+Wide area network
+10
+
+What does wonder woman carry on her right hip?
+Magic lasso
+10
+
+What does wonder woman have all over her blue shorts?
+Yellow stars
+10
+
+What does worm mean when referring to worm drives?
+Write once read many
+10
+
+What does wyatt earp's headstone say?
+...that nothing's so sacred as honor and nothing's so loyal as love
+10
+
+What does wysiwyg stand for?
+What you see is what you get
+10
+
+What does yellow gold contains 10% of?
+Copper
+10
+
+What does ZZT stand for?
+Zang tuum tumb
+10
+
+What doesn't a pineapple do after it is picked?
+Ripen
+10
+
+What dog appears in the wacky races?
+Muttley
+10
+
+What dog is named after a Mexican state?
+Chihuahua
+10
+
+What dog shares his owner with Garfiled the Cat?
+Odie
+10
+
+What dog, named after a state in Mexico, is famous for being the world's smallest breed?
+Chihuahua
+10
+
+What domestic animal sometimes gets footrot?
+Sheep
+10
+
+What domestic cat enjoys swimming?
+Angora
+10
+
+What domestic fowl lives the longest?
+Goose
+10
+
+What doris day tune was no. 6 on the charts in 1956?
+Que sera sera
+10
+
+What Dr. Seuss character steals Christmas?
+The grinch
+10
+
+What drink contains as many types of rum as possible?
+A zombie
+10
+
+What drink do cockroaches like?
+Beer
+10
+
+What drink do you get by mixing ginger ale with grenadine and a cherry?
+A shirley temple
+10
+
+What drink does Bart make for the mobsters?
+A Manhattan
+10
+
+What drink does gin, honey & lemon juice make?
+Bees knees
+10
+
+What drink is a mixture of white wine and blackcurrant syrup or liqueur?
+Kir
+10
+
+What drink is a traditional cause of burnt lips due to being served on fire with a floating coffee bean?
+Sambuca
+10
+
+What drink is also known as Adam's Ale?
+Water
+10
+
+What drink is made of rum, coconut milk and pineapple?
+Pina colada
+10
+
+What drink is the best thirst quencher?
+Water
+10
+
+What drink is traditionally served at the Kentucky derby?
+Mint julep
+10
+
+What drink is unique to the Kwik-E-Mart?
+Squishee
+10
+
+What drink was invented by oilmen, who used their tools to stir it?
+Screwdriver
+10
+
+What drink was invented by oilmen, who used their tools to stir the drink?
+Screwdriver
+10
+
+What drink was named after queen mary i of England?
+Bloody mary
+10
+
+What drink was named after Queen Mary l of England?
+Bloody mary
+10
+
+What drink, often alcoholic is made from fermented apple juice?
+Cider
+10
+
+What drug can be found in tonic water?
+Quinine
+10
+
+What drug can be obtained from the foxglove?
+Digitalis
+10
+
+What drug did sherlock holmes abuse?
+Morphine
+10
+
+What drug is given to control diabetes?
+Insulin
+10
+
+What drug is obtained from the cinchona tree?
+Quinine
+10
+
+What drug is obtained from the dried bark of an evergreen tree native to south America?
+Quinine
+10
+
+What drug is obtained from the leaves of the coca plant?
+Cocaine
+10
+
+What drug is obtained from the poppy plant?
+Opium
+10
+
+What drug is taken for diabetes?
+Insulin
+10
+
+What drug was introduced commercially by Bayer A G of Leverkusen, Germany in 1899?
+Aspirin
+10
+
+What drug was named after morpheus, god of dreams?
+Morphine
+10
+
+What drug was named for morpheus, the greek god of dreams?
+Morphine
+10
+
+What drug was referred to as hydroponic?
+Weed
+10
+
+What dry wind blows down the eastern slopes of the rockies?
+Chinook
+10
+
+What duke is the author of the duke of flatbush?
+Duke snider
+10
+
+What dummy recieved an honary degree from northwestern university?
+Charlie mccarthy
+10
+
+What dungeons & dragons characters need more dexterity than anything else?
+Thief
+10
+
+What duo had a hit with 'islands in the stream'?
+Dolly parton and kenny rogers
+10
+
+What duo had a number one hit with whispering grass in 1975?
+Windsor davies and don estelle
+10
+
+What duo lost their Grammy for Best New Artist from the eighties?
+Milli Vanilli
+10
+
+What Dutch master painted 64 self portraits?
+Rembrandt
+10
+
+What early automobile was called the flying teapot?
+Stanley steamer
+10
+
+What earthshaking event occurred on april 18, 1906?
+San francisco earthquake
+10
+
+What East African island was known as the Spice Island?
+Zanzibar
+10
+
+What East Anglian town is at Britain's most extreme eastern point?
+Lowestoft
+10
+
+What east coast city was arthur fiedler born in?
+Boston
+10
+
+What east european country's people spend stotinki?
+Bulgaria
+10
+
+What eats 14 feet of earthworms every day?
+Baby robins
+10
+
+What eats cactus branches in the galapagos islands?
+Tortoise
+10
+
+What edible fungi sometimes appear in fields overnight?
+Mushrooms
+10
+
+What Edwin Budding invention began changing the face of English landscapes in the 1820s?
+The lawnmower
+10
+
+What effect causes a siren to change in pitch as it passes by?
+Doppler effect
+10
+
+What effect do doctors produce by stroking the sole of the foot?
+Babinski effect
+10
+
+What egyptian city was founded by Alexander The Great in 331 BC?
+Alexandria
+10
+
+What Egyptian god of chaos embodies the principle of hostility and evil?
+Seth
+10
+
+What egyptian sovereign married two of her brothers?
+Cleopatra
+10
+
+What egyptian writing material gave us the word paper?
+Papyrus
+10
+
+What eighties TV show starred Bruce Willis in a detective agency?
+Moonlighting
+10
+
+What eighties TV show starred Tom Hanks in women's clothing?
+Bosom Buddies
+10
+
+What elaborate white marble tomb did India's shah jahan build in memory of his favourite wife?
+Taj mahal
+10
+
+What element did the doc's time machine operate on in back to the future?
+Plutonium
+10
+
+What element do all organic compounds contain?
+Carbon
+10
+
+What element does the chemical symbol ca stand for?
+Calcium
+10
+
+What element does the symbol 'at' represent?
+Astatine
+10
+
+What element has an atomic number of 74?
+Tungsten
+10
+
+What element has the abbreviation F on the periodic table?
+Fluorine
+10
+
+What element is azoth the ancient name for?
+Mercury
+10
+
+What element is lacking in a diet causes goitre?
+Iodine
+10
+
+What element is most abundant in our air?
+Nitrogen
+10
+
+What element is represented by the chemical symbol pb?
+Lead
+10
+
+What element on the periodic table has the symbol w?
+Tungsten
+10
+
+What element, common to milk, are most kidney stones made of?
+Calcium
+10
+
+What element's chemical symbol is Pb?
+Lead
+10
+
+What element's properties are atomic clocks based on?
+Caesium
+10
+
+What elements chemical symbol is I?
+Iodine
+10
+
+What elton john record label did kiki dee join in 1973?
+Rocket records
+10
+
+What emperor was known as the lion of judah?
+Haile selassie
+10
+
+What ends when the winner breasts the tape?
+A footrace
+10
+
+What enduring burden did William Pitt the Younger impose on Britain in 1799?
+Income tax
+10
+
+What English actor made macarthur park into a mega-hit?
+Richard harris
+10
+
+What English artist had the forenames joseph mallord william?
+Turner
+10
+
+What English children's book character had a special love for marmalade?
+Paddington bear
+10
+
+What English china company has a lion as it's logo?
+Royal Doulton
+10
+
+What English city did the perceptive allen ginsberg call in 1964 'the centre of the consciousness of the human universe'?
+Liverpool
+10
+
+What English city has a counterpart in Alabama?
+Birmingham
+10
+
+What English county borders with only one other?
+Cornwall
+10
+
+What English county has the smallest perimeter?
+Isle of wight
+10
+
+What English county has the world's largest brickfields?
+Bedfordshire
+10
+
+What English county is nearest to the Isles of Scilly?
+Cornwall
+10
+
+What English explorer discovered and named Virginia?
+Sir walter raleigh
+10
+
+What English Football team does sporty spice support?
+Liverpool
+10
+
+What English king is said to have commanded the sea to retreat?
+King canute
+10
+
+What English king married his brother's widow?
+Henry viii
+10
+
+What English meadow saw the signing of the Magna Carta?
+Runnymede
+10
+
+What English philosopher was one of the founders of utilitarianism?
+John bentham
+10
+
+What English poet always carried a supply of poison in case he had the urge to die?
+Shelley
+10
+
+What English prison was built to hold captured French soldiers in 1805?
+Dartmoor
+10
+
+What English word can be made from the letters of insatiable?
+Banalities
+10
+
+What English word comes from the old french covrefeu meaning 'cover fire'?
+Curfew
+10
+
+What English word comes from the old french word covrefeu, meaning cover fire?
+Curfew
+10
+
+What English writer said 'give me a decent bottle of poison and i'll construct the perfect crime'|agatha christie?
+Agatha christie
+10
+
+What entertainer said in a 1978 interview: 'look, i'd go out with women my age, but there are no women my age'?
+George burns
+10
+
+What epithet did Theodore Roosevelt coin for tenacious journalists?
+Muckrakers
+10
+
+What era of capital punishment was cut short in france in 1985?
+Death by guillotine
+10
+
+What era preceeded the cenozoic?
+Mesozoic
+10
+
+What era were the first traces of land life believed to appeared?
+Paleozoic
+10
+
+What ernest hemingway novel depicts the lives of rebels during the Spanish civil war?
+For whom the bell tolls
+10
+
+What escape route did john brown run?
+Underground railroad
+10
+
+What esteemed position does Bart receive for bringing justice to the school?
+Hall Monitor
+10
+
+What European capital celebrated it's 2000th anniversary in 1951?
+Paris
+10
+
+What european capital first saw the gulag archipelago 1918-1956 published?
+Paris
+10
+
+What European capital is 208 miles from London by air?
+Paris
+10
+
+What European city boasts the Luxembourg Garden?
+Paris
+10
+
+What european city boasts the prado?
+Madrid
+10
+
+What european city is considered the center of world banking and finance?
+Zurich
+10
+
+What european city is considered the centre of world banking and finance?
+Zurich
+10
+
+What european city is headquarters for the commonwealth of nations?
+London
+10
+
+What European city is known as The Bride of the Sea?
+Venice
+10
+
+What European city is named after the goddess Athena?
+Athens
+10
+
+What european city is served by sheremetyevo and vnukova airports?
+Moscow
+10
+
+What european city would you visit to see apache dancing?
+Paris
+10
+
+What European city would you visit to stroll on the Via Veneto?
+Rome
+10
+
+What european city's subway system is called the metropolitana?
+Rome
+10
+
+What European city's underground is called the Metropolitana?
+Rome
+10
+
+What European country are Rotterdam & the Hague in?
+The Netherlands
+10
+
+What European country celebrates new year's day by drinking 'glogg'?
+Sweden
+10
+
+What european country colonized mozambique and angola?
+Portugal
+10
+
+What European country is 38% below sea level?
+Netherlands
+10
+
+What european country is alphabetically first?
+Albania
+10
+
+What european country is threatened by over 100 active volcanoes?
+Iceland
+10
+
+What European country looks like a boot when you see it on a map?
+Italy
+10
+
+What european country numbers 26 cantons?
+Switzerland
+10
+
+What european country rejected the euro in a referendum in autumn 2000?
+Denmark
+10
+
+What european country remained neutral in both world wars?
+Switzerland
+10
+
+What European country stages the most bullfights?
+Spain
+10
+
+What European country was Brazil once a colony of?
+Portugal
+10
+
+What european country witnessed lord byron's death?
+Greece
+10
+
+What european country won olympic Football gold in 1984?
+France
+10
+
+What european country's airlines are luxair and cargolux?
+Luxembourg
+10
+
+What european country's currency is favored in guadeloupe?
+France
+10
+
+What European country's most common last name is Martin?
+France
+10
+
+What european disaster during the 14th century killed one in four people?
+Black death
+10
+
+What european language is most closely related to mongolian?
+Finnish
+10
+
+What european peak does disneyland boast a scale replica of?
+Matterhorn
+10
+
+What European ruler made a pope his prisoner?
+Napoleon bonaparte
+10
+
+What evangelist is a cousin of singers jerry lee lewis and mickey gilley?
+Jimmy swaggart
+10
+
+What event at Sydney's Royal Easter Show once cost competitor Jim Burke four toes?
+Woodchopping
+10
+
+What event led to hirohito ascending to the japanse throne in 1926?
+His fathers death
+10
+
+What event marked the 1954 french grand prix?
+Return of mercedes
+10
+
+What event marked the climax of wouk's the winds of war?
+Attack on pearl harbor
+10
+
+What event pulled the worlds biggest Tv audience on July 13th 1985?
+Live aid concert
+10
+
+What event was the interview of the natural born killer, mickey, to be held during?
+The superbowl
+10
+
+What eventually killed Oliver Cromwell?
+Malaria
+10
+
+What ever so humble ballad was composed by Sir Henry Rowley Bishop?
+Home sweet home
+10
+
+What everyday element is 755 times heavier than air?
+Water
+10
+
+What everyday item was named after St.Pantaleon?
+Pants
+10
+
+What ex-girl friend of prince andrew appeared naked on screen?
+Koo stark
+10
+
+What ex-president missed the slab of pork while showing off his ax-wielding skills to a group of Moscow butchers?
+Richard Nixon
+10
+
+What exactly is 'big ben'?
+A bell
+10
+
+What excuse does Homer use (on his insurance form) for buying Dimoxinil?
+To keep brain from freezing 
+10
+
+What explorer first recorded the Polynesian sport of canoe surfing in 1771?
+Captain James Cook
+10
+
+What explosive was first tested at Lydd,Sussex in 1888?
+Lyddite
+10
+
+What expression did clark kent's newspaper boss like to use?
+Great caesar's ghost
+10
+
+What expression is used to describe a child who closely resembles a parent?
+Chip off the old block
+10
+
+What extends from the arctic to the aral sea in Russia?
+Ural mountains
+10
+
+What extra month did SE accidentally print on its calendars?
+Smarch 
+10
+
+What exxon oil tanker fouled Alaskan coastal waters in 1989?
+Valdez
+10
+
+What fabled bird rose from the ashes of its nest?
+The phoenix
+10
+
+What fabled bird sprang to new life from the ashes of its nest?
+Phoenix
+10
+
+What fabled city do Moroccans call el Dar el Beida?
+Casablanca
+10
+
+What fabric are harris, lewis and donegal examples of?
+Tweed
+10
+
+What fabric are Harris, Lewis and Donegal the leading examples of?
+Tweed
+10
+
+What fabric derives its name from the French for cord of the king?
+Corduroy
+10
+
+What fabric often used for tea towels is made from flax?
+Linen
+10
+
+What facial feature contains approximately 550 hairs?
+Eyebrow
+10
+
+What facial feature contains the sperm whale's spermactei?
+Snout
+10
+
+What facial feature does not feature on the mona lisa?
+Eyebrows
+10
+
+What facial feature typically contains about 550 hairs?
+Eyebrow
+10
+
+What facility for passengers was shannon airport the first in the world to provide?
+A duty free shop
+10
+
+What facility on a space shuttle includes a footrest,hand grips,seat belt and a suction fan?
+Toilet
+10
+
+What factory does Bart's class visit in Bart Gets Famous?
+Box factory 
+10
+
+What fairy tale character from enid blyton's books was termed offensive to the blacks?
+Gollywog
+10
+
+What falls is near where jimmy angel crashed his plane in 1937?
+Angel falls
+10
+
+What falls on 15th July?
+St Swithins day
+10
+
+What famed butler did p g wodehouse create?
+Jeeves
+10
+
+What famed plane was piloted by colonel Paul tibbets jr?
+The enola gay
+10
+
+What famed romantic spent the last 13 years of his life as a Bohemian librarian?
+Casanova
+10
+
+What famed ship did Christopher Jones captain?
+Mayflower
+10
+
+What family included six Aboriginal brothers who were all professional boxers?
+The Sands
+10
+
+What family is a horse?
+Ungulate
+10
+
+What family is a rhinocerous?
+Ungulate
+10
+
+What family of animals do chipmunks belong to?
+Squirrel
+10
+
+What family of plants, in addition to flowers, gives us apples, pears, plums, cherries, almonds, peaches & apricots?
+The rose family
+10
+
+What family ties cast member has a cat named spencer?
+Michael j fox
+10
+
+What famous 1960's fashion store closed it's doors in London in July 1975?
+Biba
+10
+
+What famous actor had a policeman father and a telephone operator mother?
+Eddie murphy
+10
+
+What famous actor's given name is issur danielovitch?
+Kirk Douglas
+10
+
+What famous airborne event occurred may 21, 1927?
+Lindbergh flight
+10
+
+What famous American house has a Red Room, a Green Room, a Blue Room and a Rose Room?
+White house
+10
+
+What famous ancient greek writer could not see?
+Homer
+10
+
+What famous band was jon, of jon and vangelis, the lead singer for?
+Yes
+10
+
+What famous battle was fought on st chripins day?
+Agincourt
+10
+
+What famous bird first appeared on tv september 1957?
+Nbc peacock
+10
+
+What famous brothers lived at hawthorn hill in dayton, ohio?
+Wright brothers
+10
+
+What famous building did sir john vanbrugh design?
+Blenheim palace
+10
+
+What famous building in New York City is built with vermont marble?
+Un building
+10
+
+What famous classical composer continued to compose great music after becoming deaf?
+Ludwig van Beethoven
+10
+
+What Famous congressman was on an episode of the Golden Girls?
+Sonny Bono
+10
+
+What famous director makes a cameo appearance in the blues brothers?
+Steven spielberg 
+10
+
+What famous early American was known as 'the walking question mark' during his university days at Yale?
+Noah Webster
+10
+
+What famous English artist painted rain, steam and speed?
+Turner
+10
+
+What famous even occured at Appomattox?
+End of U.S. Civil War
+10
+
+What famous fashion designer was murdered outside his home in 1997?
+Versace
+10
+
+What famous french prison was stormed on july 14, 1789?
+Bastille
+10
+
+What famous general was dressed in skirts by his mother until he was eight years of age?
+General Douglas MacArthur
+10
+
+What famous gift did King Arthur receive when he wed Queen Guinevere?
+Round table
+10
+
+What famous greek philosopher, accused of corrupting the youth, was compelled to drink a poisonous cup of hemlock?
+Socrates
+10
+
+What famous guitarist died on sept 18, 1970?
+Jimi Hendrix
+10
+
+What famous landmark was built to celebrate the Paris Exhibition of 1889?
+Eiffel tower
+10
+
+What famous mountain is often photographed by film of the same name?
+Fuji
+10
+
+What famous mutiny took place in 1857?
+The Indian mutiny
+10
+
+What famous occurrence happened at Ujiji in 1871?
+Stanley found livingstone
+10
+
+What famous painting was also known as la Gioconda?
+Mona lisa
+10
+
+What famous person was murdered on the Ides of March?
+Caesar
+10
+
+What famous person's real name is allen stewart konigsberg?
+Woody allen
+10
+
+What famous priest ministered to the molokai lepers from 1873 until his death?
+Father damien
+10
+
+What famous racehorse is the grandfather of sea biscuit?
+Man of war
+10
+
+What famous sailor was born in Norfolk Engalnd?
+Horatio nelson
+10
+
+What famous sentence uses every letter of the alphabet?
+The quick brown fox jumps over the lazy dog
+10
+
+What famous Shakespeare play did Voltaire review as vulgar & barbarous?
+Hamlet
+10
+
+What famous ship did Christopher Jones captain?
+Mayflower
+10
+
+What famous singer-songwriter wrote about his father in the song, 'Adam Raised a Cain'?
+Bruce Springsteen
+10
+
+What famous soap opera duo reigned on General Hospital in the eighties?
+Luke and Laura
+10
+
+What famous stone structure is located near Salisbury?
+Stonehenge
+10
+
+What famous structure connects a state prison with a Doges palace?
+The bridge of sighs
+10
+
+What famous thinker proved a lunar eclipse is the circular shadow of the earth on the moon?
+Aristotle
+10
+
+What famous trials were held in 1692?
+Salem witch trials
+10
+
+What famous Wham! frontman went on to record a multiplatinum record in 1987?
+George Michael
+10
+
+What famous world war ii fighter plane was developed from a seaplane?
+The spitfire
+10
+
+What famous writer was born may 25, 1803?
+Ralph waldo emerson
+10
+
+What famous WW II fighter pilot lost both his legs?
+Douglas Bader
+10
+
+What famously happened on 6th August 1945?
+The atom bomb was dropped on hiroshima
+10
+
+What famously happened on 7th December 1941?
+Japanese attack on pearl harbour
+10
+
+What fantasia suite features autumn fairies and frost fairies?
+Nutcracker
+10
+
+What fantasy world was introduced in piers anthony's 'a spell for chameleon'?
+Xanth
+10
+
+What farm animals does bacon come from?
+Pigs
+10
+
+What fashionable fantasy game is known as D&D?
+Dungeons and dragons
+10
+
+What fast food chain did Ray Kroc build?
+Mcdonalds
+10
+
+What fast food chain was hit with five racial discrimination suits in 1993?
+Dennys
+10
+
+What fast-food chain was named for brothers forrest and leroy raffel in 1964?
+Arby's
+10
+
+What fast-food container does the hero use as a lampshade, in rocky?
+Kentucky fried chicken bucket
+10
+
+What fastener did Whitcomb Judson patent in 1893?
+Zip
+10
+
+What feat of aviation was achieved by john alcock and arthur brown in 1919?
+First non-stop transatlantic flight
+10
+
+What feature film attracted the largest tv audience of 1980?
+Jaws
+10
+
+What features of the African elephant are larger than those of the Indian elephant?
+Ears
+10
+
+What feline is the baboons chief natural enemy?
+Leopard
+10
+
+What fell into the pool in Caddyshack which caused a major exodus?
+A Baby Ruth candy bar
+10
+
+What female animal has a pseudo (false) penis?
+Hyena
+10
+
+What female athlete holds the most figure skating titles?
+Sonja henie
+10
+
+What female co-starred in most woody allen flicks of the 80's?
+Mia farrow
+10
+
+What female fought hard to end slavery in the years before the Civil War?
+Susan B Anthony 
+10
+
+What female holds the most figure skating titles?
+Sonja henie
+10
+
+What female rock star did mike wallace interview in 1969?
+Janis joplin
+10
+
+What feminist wrote Sexual Politics & Flying?
+Kate millett
+10
+
+What festive song did Adam Sandler write & sing?
+The Hannukhah Song
+10
+
+What fictional character 'had a great fall' & went to pieces?
+Humpty dumpty
+10
+
+What fictional detective was created by Lesley Charteris?
+Simon templar
+10
+
+What fighting machine was originally codenamed a 'cistern' or 'reservoir'?
+Tank
+10
+
+What fighting unit is headquartered in corsica?
+French foreign legion
+10
+
+What figure in greek mythology gave fire to man?
+Prometheus
+10
+
+What figure of greek mythology gave fire to man?
+Prometheus
+10
+
+What figure sits on guard over the Great Pyramid?
+Sphinx
+10
+
+What figure sits on guard over the Great Pyramids?
+Sphinx
+10
+
+What filipino toy became an American craze in 1929 and is still popular?
+Yo yo
+10
+
+What fills the bottle of a molotov cocktail?
+Petrol
+10
+
+What film couple was portrayed by marjorie main and percy kilbride?
+Ma and pa kettle
+10
+
+What film did liza minnelli play the part of sally bowes in?
+Cabaret
+10
+
+What film did Paul neuman play fast eddie felson in?
+Hustler
+10
+
+What film did Rock Hudson and Doris Day star in together in 1959?
+Pillow talk
+10
+
+What film featured dennis weaver vs a scuzzy gasoline tanker truck?
+The duel
+10
+
+What film featured jack nicholson as a California private eye?
+Chinatown
+10
+
+What film featured melina mercouri, maximilian schell and peter ustinov as jewel thieves?
+Topkapi
+10
+
+What film featured melina mercouri, maximillian scnell and peter ustinov as jewel thieves?
+Topkapi
+10
+
+What film features the song 'born free'?
+Born free
+10
+
+What film had bette davis creating a scandal by wearing a daring red gown to a society ball?
+Jezebel
+10
+
+What film has marlon crane stabbed to death in the bate's motel?
+Psycho
+10
+
+What film introduced the song 'the first time ever i saw your face'?
+Play misty for me
+10
+
+What film is about the migration of poor workers from the dust bowl to the California fruit valleys?
+Grapes of wrath
+10
+
+What film is generally considered the worst film ever made?
+Attack of the
+10
+
+What film links cher, michelle pfeiffer and susan sarandon?
+The witches of eastwick
+10
+
+What film marked james cagney's return to the screen after 20 years?
+Ragtime
+10
+
+What film offered the line 'you had it in you to be a great fighter, but you were lazy'?
+Rocky
+10
+
+What film saw clint eastwood die from eating poisoned mushrooms?
+The beguiled
+10
+
+What film saw jack nicholson lament: 'this used to be a fine country, what went wrong?'?
+Easy rider
+10
+
+What film starred barbara streisand and walter matthau?
+Hello dolly
+10
+
+What film starred barbra streisand and walter matthau?
+Hello dolly
+10
+
+What film starred drew barrymore, mary-louise parker, and matthew mcconaughney?
+Boys on the side
+10
+
+What film starred helen hunt, gary elwes and bill paxton?
+Twister
+10
+
+What film starred rosie o'donnell, rita wilson and meg ryan?
+Sleepless in seattle
+10
+
+What film starred sir laurence olivier as the brooding max de winter?
+Rebecca
+10
+
+What film starring richard beymer and natalie wood won the oscar for best picture in 1961?
+West side story
+10
+
+What film started a run of nostalgia culminating in the tv series 'happy days'?
+American graffiti
+10
+
+What film studio produced most of the 'godzilla' films?
+Toho
+10
+
+What film takes place in the fictional town of Burkittsville, Maryland?
+Blair witch project
+10
+
+What film was about the life of jerry lee lewis?
+Great balls of fire
+10
+
+What film was based on the play everybody comes to rick's?
+Casablanca
+10
+
+What film was originally advertised with this slogan, 'Of all the bright young men to make it through the hang-ups, the mix-ups, the foul-ups, and the grown-ups'?
+The Graduate
+10
+
+What film was playing at the drive-in in the film 'twister'?
+The shining
+10
+
+What film was the first to feature sensurround?
+Earthquake
+10
+
+What film was the last featuring mel blanc's voice?
+Jetsons
+10
+
+What film was the last for marilyn monroe and clark gable?
+Misfits
+10
+
+What film was the musical original song featured in?
+Philadelphia
+10
+
+What film was the play 'everybody comes to ricks' based on?
+Casablanca
+10
+
+What film won julie christie an oscar for her portrayal of an amoral model?
+Darling
+10
+
+What film won the most number of oscars?
+Schindler's list
+10
+
+What film won the oscar for best picture in 1987?
+The last emperor
+10
+
+What film won the oscar for best picture in 1989?
+Driving miss daisy
+10
+
+What film won the oscar for cinematography?
+Schindler's list
+10
+
+What final event did gladstone and churchill share?
+State funeral
+10
+
+What finals did miroslav mercir win at the 1988 olympics?
+Men's singles tennis
+10
+
+What finger is the most sensitive?
+Forefinger
+10
+
+What finger nail grows the fastest?
+Middle finger
+10
+
+What firm markets the b25 microcomputer?
+Burroughs
+10
+
+What first went on sale to the public in pharmacies on may 9, 1960?
+The pill
+10
+
+What fish eating bird of prey has recently re established itself in Scotland?
+Teh osprey
+10
+
+What fish famed for its teeth,has no bones in its skeleton?
+Shark
+10
+
+What fish has both lungs & gills?
+Lungfish
+10
+
+What fish is served up as kippers, whitebait and bloaters?
+Herring
+10
+
+What fish, weighing in at 388 pounds, is the largest ever caught in a British river?
+Sturgeon
+10
+
+What fish's skin was once used commercially as sandpaper?
+Shark
+10
+
+What fitness program did Judy Sheppard-Missett create by blending jazz dance and exercise?
+Jazzercize
+10
+
+What five lettter word describes an animal that is produced as an exact copy of another?
+Clone
+10
+
+What flag flies over gibraltar?
+Union jack
+10
+
+What flat area do you get by cutting a solid sphere vertically, horizontally or on a slant?
+Circle
+10
+
+What flavors are in original fruit starburst?
+Cherry lemon orange strawberry
+10
+
+What flavour ice-cream is enjoyed by Sesame Street's Kermit the Frog?
+Dragonfly Ripple
+10
+
+What flavour is added to LAMBIC beers to make them into KRIEK?
+Cherry
+10
+
+What flavour is Grand Marnier?
+Orange
+10
+
+What flavour of ice cream is eaten the most?
+Vanilla
+10
+
+What flightless bird became extinct in 1681 after being devoured by Europeans for food?
+Dodo bird
+10
+
+What floor did lee harvey oswald allegedly shoot jfk from?
+Sixth
+10
+
+What florentine held that the ends justified the means?
+Machiavelli
+10
+
+What flower asks not to be forgotten?
+Forget me not
+10
+
+What flower bulb is often mistaken for onions?
+Daffodils
+10
+
+What flower is associated with dame edna everage?
+Gladioli
+10
+
+What flower is particularly associated with the Netherlands?
+Tulip
+10
+
+What flower is the national symbol of India?
+Lotus
+10
+
+What flower is used in the manufacture of opium?
+Poppy
+10
+
+What flower produces blue flowers in acidic soil?
+Hydrangea
+10
+
+What flower produces pink and white flowers in alkaline soil?
+Hydrangea
+10
+
+What flower that grows in flanders fields is used as the symbol of remembrance day?
+Poppy
+10
+
+What flower was named after a Roman gladiator's sword?
+Gladiolus
+10
+
+What flower's petals are used by the royal family as confetti?
+Rose
+10
+
+What flower's petals does the British royal family use as confetti?
+The rose
+10
+
+What fluid lubricates the eye?
+Lacrimal fluid
+10
+
+What fluid lubricates the joints?
+Synovial
+10
+
+What fluid was used as a lubricant for the first contact lenses?
+Boiled Grape Juice
+10
+
+What fly higher during the day than at night?
+Clouds
+10
+
+What folksinger's 1968 autobiography was titled bound for glory?
+Woody guthrie
+10
+
+What follows beta, gamma and delta?
+Epsilon
+10
+
+What food did e.t. cause elliot to drop in fright in his backyard?
+Pizza
+10
+
+What food did John Mongatu invent so that he wouldn't have to leave the gambling tables?
+The sandwich
+10
+
+What food did Marco Polo introduce into Italy?
+Pasta
+10
+
+What food did Tigga in Winnie the Pooh finally find he liked?
+Extract of malt
+10
+
+What food does garfield hate the most?
+Spinach
+10
+
+What food does Paddington Bear like best?
+Marmalade sandwiches
+10
+
+What food got its name from the way it hung in bunches like grapes?
+Grapefruit
+10
+
+What food growing process uses water & plant nutrients but no soil?
+Hydroponics
+10
+
+What food is made from infecting milk with bacteria?
+Yoghurt
+10
+
+What food is the leading source of salmonella poisoning?
+Chicken
+10
+
+What food links Dundee, Chorley and Eccles?
+Cake
+10
+
+What food of the three bears did goldilocks eat?
+Porridge
+10
+
+What foot doctor held over 300 patents?
+Dr scholl
+10
+
+What Football club won three consecutive league titles in the 1930's?
+Arsenal
+10
+
+What football player ran for 1,863 yards in a season during 1963?
+Jim brown
+10
+
+What football player rushed for 2,003 yards in 1973?
+O.j. simpson
+10
+
+What Football player was known as The Black Pearl?
+Pele
+10
+
+What football team calls Vetch Field home?
+Swansea
+10
+
+What football team has won the most Rose Bowls?
+Southern California
+10
+
+What football team was previously known as the frankford yellow jackets?
+Philadelphia eagles
+10
+
+What footballer was paid $10,000 to shave off his moustache in a 1974 tv ad?
+Joe namath
+10
+
+What force is the opposite of centripetal force?
+Centrifugal force
+10
+
+What foreign country's phone book is alphabetized by first name?
+Iceland
+10
+
+What forest was home to robin hood?
+Sherwood forest
+10
+
+What form did the three heads of Hecate take?
+Horse,dog,lion
+10
+
+What form of communication uses only dots, dashes & spaces?
+Morse code
+10
+
+What form of execution did St Stephen the Martyr suffer?
+Stoning
+10
+
+What form of horse racing boasts the little brown jug?
+Harness racing
+10
+
+What form of hunting is regulated by the iwc?
+Whaling
+10
+
+What form of light comes at wavelengths below 360 nanometers?
+Ultra violet
+10
+
+What form of propulsion did Frank Whittle pioneer?
+Jet propulsion
+10
+
+What form of racial segregation was introduced in south africa in 1948?
+Apartheid
+10
+
+What form of transport did Kirkpatrick Macmillan invent in 1839?
+Pedal bicycle
+10
+
+What form of transport did Sir Christopher Cockerell invent?
+Hovercraft
+10
+
+What former African leaded held his country's boxing title for nine years?
+Idi amin
+10
+
+What former beatle's 1982 album gone troppo was ripped by critics?
+George harrison
+10
+
+What former British colony has a famed jade market on canton road?
+Hong kong
+10
+
+What former British colony's largest retailer was duty free shoppers?
+Hong kong
+10
+
+What former footballer titled his exercise video bubba until it hurts?
+Bubba smith
+10
+
+What former monkee produced lionel richie's video all night long?
+Mike nesmith
+10
+
+What former New York Islander swung his stick at Mario Lemieux's face?
+Rich Pilon
+10
+
+What former resistance fighter was Israel's first Likud Party prime minister?
+Menachem begin
+10
+
+What former South African prisoner had an 11-day, 8-city tour of the U.S. in 1990?
+Nelson Mandela
+10
+
+What former talk show host guested on the 92-93 finale of the simpsons?
+Johnny carson
+10
+
+What former U.S. president's son began hosting his own nightly talk show in 1991?
+Ronald Reagan
+10
+
+What former US drug czar once had a blind date with Janis Joplin?
+William Bennett
+10
+
+What former us president blew out 75 birthday candles on july 14, 1988?
+Gerald ford
+10
+
+What former us vice president was the title star of meet the veep?
+Alben w
+10
+
+What fortification was built between 1929 and 1934 along france's frontier?
+Maginot line
+10
+
+What fortress was built by william the conqueror to protect london?
+The tower of london
+10
+
+What four letters are put at the end of an invitation if a reply is needed?
+R.s.v.p
+10
+
+What four letters were placed on the cross on which christ was crucified?
+I.n.r.i.
+10
+
+What four tournaments make up golf's grand slam, the open, u.s open, u.s masters?
+U.s pga
+10
+
+What four words are the traditional beginning of a fairytale?
+Once upon a time
+10
+
+What four-time national league batting champ was killed in a plane crash in 1972?
+Clemente
+10
+
+What fraction of a metre is a micron?
+A millionth
+10
+
+What fraction of a persons life passes in sleep?
+One third
+10
+
+What fraction of an iceberg shows above water?
+One ninth
+10
+
+What fraction of an ounce is equal to a dram?
+One sixteenth
+10
+
+What fraction of the earth's gravity is the moon's?
+One sixth
+10
+
+What fraction of us schools include geography in their cirriculum?
+One fourth
+10
+
+What fraction pure is 18-carat gold?
+Three quarters
+10
+
+What frank Sinatra hit did he dooby dooby-doo in?
+Strangers in the night
+10
+
+What fraternity do the lewis and gilbert join in revenge of the nerds?
+Lambda lambda lambda
+10
+
+What french automobile company merged with American motors?
+Renault
+10
+
+What French city is famous for its champagne?
+Reims
+10
+
+What French coast claims Antibes, Nice, Mont, Carlo, and St. Tropez?
+Riviera
+10
+
+What french designer introduced the sack dress in the '50's?
+Christian dior
+10
+
+What french district produces graves, medoc and st emilion wines?
+Bordeux
+10
+
+What french district produces graves, medoc, and st. emilion?
+Bordeaux
+10
+
+What French emperor died in Kent?
+Napoleon iii
+10
+
+What french engineer built a tower for the 1889 Paris Exhibition?
+Alexandre eiffel
+10
+
+What french engineer built a tower for the 1889 paris exposition?
+Alexandre eiffel
+10
+
+What french painter gained renown for his posters?
+Henri de toulouse-lautrec
+10
+
+What French painter is famous for his pictures of ballet dancers?
+Edgar degas
+10
+
+What french painter was the subject of somerset maugham's 'the moon and sixpence'?
+Gauguin
+10
+
+What french phrase means 'well informed'?
+Au courant
+10
+
+What french poet wrote les miserables?
+Victor hugo
+10
+
+What french port did 200,000 British troops flee on June 4, 1940?
+Dunkirk
+10
+
+What french stockbrocker fled his homeland to paint in the South Pacific?
+Paul gaugin
+10
+
+What french word describes the painting technique which uses separate dots of pure colour instead of mixed pigments?
+Pontillism
+10
+
+What french word is used for 'dry'?
+Jejune
+10
+
+What french words are on an air mail letter?
+Par avion
+10
+
+What french writer served 27 years in prison for sexual offenses?
+The marquis de sade
+10
+
+What french writer server 27 years in prison for sexual offences?
+Marquis de sade
+10
+
+What french writer spent 27 years of his life in prison for sexual offense?
+Marquis de sade
+10
+
+What Frenchman designed Italy's flag?
+Napoleon
+10
+
+What Fridays are supposed to be unlucky?
+Friday 13th
+10
+
+What friend of Noddy's lives in a toadstool house?
+Big ears
+10
+
+What frog mc's the muppet show?
+Kermit
+10
+
+What fruit are claret, hock & burgundy made from?
+Grapes
+10
+
+What fruit bear the latin name 'citrus grandis'?
+Grapefruit
+10
+
+What fruit did elvis most often layer on his peanut butter sandwiches?
+Bananas
+10
+
+What fruit did the stranglers sing about?
+Peaches
+10
+
+What fruit do viticulturists grow?
+Grapes
+10
+
+What fruit does the 'stackspur golden delicious' tree produce?
+Apples
+10
+
+What fruit does the stackspur golden delicious produce?
+Apples
+10
+
+What fruit has an exocarp, a crown & spikes?
+Pineapple
+10
+
+What fruit has both meat & milk?
+Coconut
+10
+
+What fruit has the most calories?
+Avocado pear
+10
+
+What fruit is missing seeds?
+Navel orange
+10
+
+What fruit is packed with the most calories?
+Avocado
+10
+
+What fruit is perry made from?
+Pears
+10
+
+What fruit is the basis for guacamole?
+Avocado
+10
+
+What fruit is used in the dye for government inspectors' meat stamps?
+The grape
+10
+
+What fruit is usually used to make marmalade?
+Orange
+10
+
+What fruit produces a herb?
+Banana
+10
+
+What fruit were the golden apples of greek mythology?
+Apricots
+10
+
+What fruit will keep floating to the top and sinking to the bottom of a glass of champagne?
+Raisin
+10
+
+What fruit's stone does Laetrile come from?
+Apricot
+10
+
+What fruits are sorted for ripeness by bouncing them?
+Cranberries
+10
+
+What fuel is used in a bunsen burner?
+Gas
+10
+
+What fungus is used in making bread?
+Yeast
+10
+
+What funny 'Laugh-in' character could be heard every Monday night asking, 'is this the party to whom I am speaking'?
+Ernestine Tomlin
+10
+
+What furry creatures is a myophobic housewife afraid of?
+Mice
+10
+
+What future famous actors played spicolli's sidekicks in fast times at ridgemont high?
+Eric stolz and anthony edwards
+10
+
+What future sitcom megastar began wearing her hair red in 1942?
+Lucille Ball
+10
+
+What future yippie leader was the first male cheerleader at brandeis?
+Abbie hoffman
+10
+
+What gambling game has a 'croupier' spinning a wheel?
+Roulette
+10
+
+What game are the Pilgrim Fathers known to have played on the Mayflower?
+Darts
+10
+
+What game became popular aboard ocean liners during the nineteenth century?
+Shuttleboard
+10
+
+What game became popular aboard oceanliners during the 19th century?
+Shuffleboard
+10
+
+What game can you peg out in?
+Cribbage
+10
+
+What game can't Lisa play because she is too sad?
+Dodgeball 
+10
+
+What game challenges you to double in and double out?
+Darts
+10
+
+What game did Charles monro introduce to new zealand in 1870?
+Rugby
+10
+
+What game did Denis Compton play?
+Cricket
+10
+
+What game do players flip 'winks' in?
+Tiddlywinks
+10
+
+What game does the New York Institute for the Investigation of Rolling Speroids specialise in?
+Marbles
+10
+
+What game does the New York Institute for the Investigation of Rolling Spheroids specialize in?
+Marbles
+10
+
+What game does the queen of hearts order alice to play?
+Croquet
+10
+
+What game has 43.252.003.274.249.850.000 combinations?
+Rubiks cube
+10
+
+What game invented by Sir John Suckling can you peg out in?
+Cribbage
+10
+
+What game is also called pocket billiards?
+Pool
+10
+
+What game is played on a Bally Captain Fantastic?
+Pinball
+10
+
+What game made Monte Carlo?
+Roulette
+10
+
+What game of chance was originally called 'beano'?
+Bingo
+10
+
+What game show had dr joyce brothers as a panelist from 1978 to 1980?
+Gong show
+10
+
+What game sometimes challenges you to double-in and double-out?
+Darts
+10
+
+What game takes place in the sewer in Guys and Dolls?
+Craps
+10
+
+What game tiles were first made with a pocket knife?
+Scrabble
+10
+
+What game usually starts with 'is it animal, vegetable or mineral'?
+Twenty questions
+10
+
+What game was regularly played at Artillery Ground London in the 18th century?
+Cricket
+10
+
+What gane was Sir Francis Drake playing when the Spanish Armada came?
+Bowls
+10
+
+What gangster was nicknamed the lord high executioner?
+Albert anastasia
+10
+
+What garment did a roman drape over his tunic?
+A toga
+10
+
+What garment of clothing was named after French aerial gymnist, Julius Leotard?
+Leotard
+10
+
+What gas did joseph priestley discover in 1774?
+Oxygen
+10
+
+What gas did Joseph Priestly discover in 1774?
+Oxygen
+10
+
+What gas glows red when an electric current is passed through it?
+Neon
+10
+
+What gas is produced in plants in the process of photosynthesis?
+Oxygen
+10
+
+What gas is produced using the Haber-Bosch process?
+Ammonia
+10
+
+What gas makes little Johnny's balloon rise?
+Helium
+10
+
+What gas station does Homer go to about the strange thumping noise he hears?
+Gasso 
+10
+
+What gas that animals exhale do plants utilize?
+Carbon dioxide
+10
+
+What gas to we breathe out in the process of respiration?
+Carbon dioxide
+10
+
+What gate does the three-headed dog cerberus guard?
+The gate of hades
+10
+
+What gate opens on East and West Germany?
+Brandenburg
+10
+
+What gem did the Roman Pliny say out greened nature itself?
+Emarald
+10
+
+What gender is a snail?
+Hermaphrodite
+10
+
+What genetic disorder was/is known as mongolism?
+Downs syndrome
+10
+
+What genre of fiction is honored by the Nebula awards?
+Science fiction
+10
+
+What geographic term describes a hill with sharply sloping sides & a flat top?
+Butte
+10
+
+What geographical location was the first word spoken from the moon?
+Houston
+10
+
+What geographical point did Robert Peary claim to have reached?
+North pole
+10
+
+What geographical term is the fourth letter of the greek alphabet?
+Delta
+10
+
+What geological era preceeded the cenozoic?
+Mesozoic
+10
+
+What geological period followed the jurassic?
+Cretaceous
+10
+
+What geometric shape has ten sides?
+Decagon
+10
+
+What geometric shape is a stop sign?
+Octagon
+10
+
+What geometric shape is a tennis court?
+Rectangular
+10
+
+What george bernard shaw play inspired my fair lady?
+Pygmalion
+10
+
+What george bernard shaw play is my fair lady based on?
+Pygmalion
+10
+
+What georgia city does delta airlines fly to from london?
+Atlanta
+10
+
+What Georgia park features carvings on the world's largest piece of exposed granite?
+Stone mountain
+10
+
+What georgia town did the first dukes of hazzard episodes take place?
+Covington, georgia
+10
+
+What German city is best known for its oktoberfest?
+Munich
+10
+
+What German city was the site of the war crime trials following wwii?
+Nuremberg
+10
+
+What German city were the released iran hostages flown to from algeria?
+Wiesbaden
+10
+
+What German military leader of the afrika korps was known as 'the desert fox'?
+Erwin rommel
+10
+
+What German philosopher claimed morality required a belief in god and freedom?
+Immanuel kant
+10
+
+What German town's problem with rats was handled by the pied piper?
+Hamelin
+10
+
+What German was selected time's man of the year for 1970?
+Willy brandt
+10
+
+What Germanic race gave its name to acts of wanton destruction?
+Vandals
+10
+
+What get larger when one thinks harder?
+Pupils
+10
+
+What gets wet, the more you dry?
+A Towel
+10
+
+What geyser erupts every hour at yellowstone national park?
+Old faithful
+10
+
+What giant tapestry shows the story of the Norman invasion of England?
+Bayeux Tapestry
+10
+
+What gift reputedly outlived Captain Cook by approximately 300 years?
+Tortoise
+10
+
+What gift was given on the 10th day, according to the 12 days of christmas?
+Ten lords a leaping
+10
+
+What gilbert and sullivan opera is about the emperor of Japan?
+The mikado
+10
+
+What gives beer its distinctive bitter flavour?
+Hops
+10
+
+What gives its name to a protein found in the human blood?
+The rhesus monkey
+10
+
+What gives water its unusual properties?
+Hydrogen bonds
+10
+
+What gland is found just below the optic chiasma of your brain?
+Pituitary gland
+10
+
+What gland tissue did they use to clone dolly the sheep?
+Mammary
+10
+
+What gland washes the eyes?
+Tear gland
+10
+
+What Godsend was introduced to dairy farmers in 1894?
+The Mechanical Milker
+10
+
+What goes round and round in a police cars light?
+Reflector
+10
+
+What goes with it on the 1995 hit for oasis?
+Roll
+10
+
+What goes with ruby, emerald and sapphire to make up the world's most valuable gems?
+Diamond
+10
+
+What gold rush was started by skookum jim, tagish charlie and george carmacks?
+The klondike gold rush
+10
+
+What golfer literally sports the strangest name?
+Curtis strange
+10
+
+What golfer was nicknamed 'the golden bear'?
+Jack nicklaus
+10
+
+What golfing accessory was patented by George Grant on december 12th, 1899?
+Tee
+10
+
+What got its name from a bridgeport pie company's name and light-weight pie tins?
+Frisbees
+10
+
+What government position is held by the resident of 11 downing street, london?
+Chancellor of the exchequer
+10
+
+What graceful ice skater published an autobiography entitled: My Sergei: A Love Story?
+Ekaterina Gordeeva
+10
+
+What Grade in highschool comes from the greek term wise fool?
+Sophmore
+10
+
+What grain is Australia's most important crop?
+Wheat
+10
+
+What grain is used to make spaghetti?
+Wheat
+10
+
+What Grand Duchy is bordered by Belgium, West Germany and France?
+Luxembourg
+10
+
+What grandson of genghis khan was the founder of the il-khanid dynasty?
+Hulagu
+10
+
+What grass has a capability of growing 36 inches in one day?
+Bamboo
+10
+
+What grass is the favourite food of pandas?
+Bamboo
+10
+
+What Greek artist painted View of Toledo?
+El greco
+10
+
+What greek letter was incorporated in the green ecology flag?
+Theta
+10
+
+What greek mythological character was part man and part horse?
+Centaur
+10
+
+What greek phrase means 'the masses'?
+Hoi polloi
+10
+
+What Greek runner of 5 bc is said to have run 241 km in 48 hours to summon help for Athens?
+Pheidippedes
+10
+
+What greek slave wrote animal stories with morals?
+Aesop
+10
+
+What greek slave wrote fables?
+Aesop
+10
+
+What greek word relates to the head?
+Cephalic
+10
+
+What Greek wrote Meteorologica, popularizing that name for the study of weather?
+Aristotle
+10
+
+What green vegetable comes in varieties such as cos & mignonette?
+Lettuce
+10
+
+What greenish cylindrical fruit is the cucumis sativus?
+Cucumber
+10
+
+What greeting did lionel richie take to the top in 1984?
+Hello
+10
+
+What group backed up wayne fontana?
+The mindbenders
+10
+
+What group caused an overnight fashion revolution among blacks in 1968?
+Sly and the family stone
+10
+
+What group did earl carroll join in 1960?
+Coasters
+10
+
+What group did freddie mercury attain stardom with?
+Queen
+10
+
+What group did tommy james leave in 1970?
+Shondelles
+10
+
+What group founded brother records?
+Beach boys
+10
+
+What group had a top ten hit in 1970 with Ride a White Swan?
+T rex
+10
+
+What group kidnapped and murdered Italian premier aldo moro?
+The red brigades
+10
+
+What group landed in America in 1620?
+Pilgrims
+10
+
+What group name is used by Chris Lowe and Neil Tennant?
+Pet shop boys
+10
+
+What group of American indians formerly ranged from texas and arizona, south to the Mexican state of durango, until rounded up in 1886?
+Apache
+10
+
+What group of animals do crabs, lobsters, barnacles and woodlice belong?
+Crustaceans
+10
+
+What group of British islands contains zetland?
+Shetlands
+10
+
+What group of English funnymen made movies such as life of brian and the meaning of life?
+Monty python
+10
+
+What group of minerals are beryl, emerald and aquamarine a part?
+Beryllium
+10
+
+What group of minerals are corundum, sapphire and ruby a part?
+Alumina
+10
+
+What group of minerals are diamond, coal and graphite a part?
+Carbon
+10
+
+What group of people founded liberia in 1847?
+Freed American slaves
+10
+
+What group of stars is named after a farmers tool?
+Plough
+10
+
+What group of superheroes display the number 4 on their chests?
+The fantastic four
+10
+
+What group of us workers went out on strike june 1, 1943?
+Coal miners
+10
+
+What group released the album 10 in 1997?
+Wet wet wet
+10
+
+What group rose to no. 2 in worldwide record sales without major American market success?
+Abba
+10
+
+What group sang wasn't born to follow in easy rider?
+The byrds
+10
+
+What group tasted chart success with breakfast in America?
+Supertramp
+10
+
+What group took its name from a line by William Blake?
+The doors
+10
+
+What group was jesse colin young with in the early seventies?
+Youngbloods
+10
+
+What group's biggest-ever hit was be my baby?
+Ronettes
+10
+
+What grows faster fingernails or toenails?
+Fingernails
+10
+
+What grows faster in the morning than at any other time of the day?
+Your hair
+10
+
+What guitarist had '50s hits with rebel rouser, ramrod and cannonball?
+Duane eddy
+10
+
+What gun cannot be silenced, due to all the noisy gasses which escape the cylinder gap at the rear of the barrel?
+Revolver
+10
+
+What habit forming plant did Columbus find on his first new world trip?
+Tobacco
+10
+
+What hair color of people do mosquitoes seem to be the most attracted to?
+Blonde
+10
+
+What hairstyle did chris evert sport in her first us open tennis champions?
+Pigtails
+10
+
+What hairy creature did Dora Bryan want for christmas in 1963?
+Beetle
+10
+
+What hall of fame was opened in 1990 in Canastota, New York?
+Boxing
+10
+
+What hand does god give life to adam with on the ceiling of the sistine chapel?
+Right
+10
+
+What handicraft requires you to interlace your warp and weft?
+Weaving
+10
+
+What handsome welterweight boxer appeared in Aussie films and was screen tested in Hollywood?
+Tommy Burns
+10
+
+What hans christian andersen fairy tale character is immortalized in a famous statue in copenhagen's harbor?
+The little mermaid
+10
+
+What happened at 2:56 on the 21st July 1969?
+Manned moon landing
+10
+
+What happened at 3am August 3rd 1963, at Sears Crossing in Buckinghamshire, England?
+The great train robbery
+10
+
+What happened at 3am on Aug 3 1963 at Sears Crossing,Bucks?
+The great train robbery
+10
+
+What happened at Golgotha?
+Jesus was crucified
+10
+
+What happened at Sears Crossing, England in 1963?
+The great train robbery
+10
+
+What happened at the Pollard Rock on 18/3/67?
+Torrey canyon disaster
+10
+
+What happened in the last episode of the odd couple?
+Felix remarried gloria
+10
+
+What happened in tulbach on september 29, 1969?
+Earthquake
+10
+
+What happened on red sunday, june 25, 1876?
+Custer was defeated
+10
+
+What happened on the Hawaiian island of Oahu on dec 7 1941?
+Pearl harbor bombing
+10
+
+What happened on the R100s maiden flight?
+It flew to Canada and back
+10
+
+What happened to Attila the Hun on his wedding night?
+Died of excess alcohol
+10
+
+What happened to lady jawara , the president of gambia's wife when he was at prince Charles wedding?
+She was kidnapped
+10
+
+What happened to the Mona Lisa in 1911?
+It was stolen
+10
+
+What happened with tom hanks at the end of the movie saving private ryan?
+Dies
+10
+
+What happens if you get pepper in your proboscis?
+You sneeze
+10
+
+What happens to a surfer who wipes out?
+Falls his board
+10
+
+What happens to male ants soon after they mate?
+They die
+10
+
+What happens when reverse peristalsis takes place?
+You puke
+10
+
+What has 1792 steps?
+Eiffel tower
+10
+
+What has 3 feet but can not walk?
+Yardstick
+10
+
+What has 336 dimples?
+A golf ball
+10
+
+What has 336 dimples?
+Golf ball
+10
+
+What has 35 blue eyes?
+Scallop
+10
+
+What has 480 sheets of paper?
+Ream
+10
+
+What has a 21 inch tongue?
+Giraffe
+10
+
+What has a bitch done if she has just whelped?
+Given birth
+10
+
+What has a horse in a maiden race never done?
+Won a race
+10
+
+What has a phyllo-dough crust and filled with spinach?
+Spanakopita
+10
+
+What has a range of 28 miles?
+Aim-7 sparrow
+10
+
+What has a rectangular pupil?
+Goat
+10
+
+What has a testatrix done?
+Made a will
+10
+
+What has a type of hair on their eyes?
+Honeybees
+10
+
+What has accumulated in the muscles in someone suffering from emphysema?
+Air
+10
+
+What has albumen and a yolk?
+Egg
+10
+
+What has become a custom from armored knights raising their visors to identify themselves when they rode past their king?
+Salute
+10
+
+What has been called 'the most famous car ever on television'?
+General lee
+10
+
+What has been clinically demonstrated to work twice as well as dramamine for fighting motion sickness, with no side effects?
+Ginger
+10
+
+What has dna but is arguably not alive?
+Virus
+10
+
+What has more than 80,000 arms?
+Basket starfish
+10
+
+What has no reflection, is afraid of daylight and cant stand the smell of garlic?
+Vampire
+10
+
+What has no reflection, no shadow and can't stand the smell of garlic?
+A vampire
+10
+
+What has no reflection, no shadow and cant stand the smell of garlic?
+Vampire
+10
+
+What has no reflection, no shadow, and can't stand the smell of garlic?
+Vampires
+10
+
+What has only one surface?
+Mobius band
+10
+
+What has over 100 million light sensitive cells?
+Retina
+10
+
+What has superseded Newtonian mechanics of the atomic scale?
+Quantam mechanics
+10
+
+What has to be missing out of anhydrous compounds?
+Water
+10
+
+What has to be produced in a writ of habeas corpus?
+Body
+10
+
+What has u.s. patent no 174,465?
+Telephone
+10
+
+What has yale college been serving for more than 100 years?
+Apple pie
+10
+
+What hat originated in ecuador?
+Panama
+10
+
+What hat was first made in and named after a Moroccan city?
+Fez
+10
+
+What have over 80% of boxers suffered?
+Brain damage
+10
+
+What have Roman siege armies and the Royal Navy used in agression?
+The catapult
+10
+
+What have Thomas Keneally,JM Coetzee and Anita Brookner all won in recent years?
+The booker prize
+10
+
+What have woodpecker scalps, porpoise teeth and giraffe tails all been used as?
+Money
+10
+
+What Hawaii town lies very close to Volcanoes National Park?
+Hilo
+10
+
+What health centre did Marge vacation to?
+Rancho Relaxo 
+10
+
+What healthful practice is chewing an acacia twig a substitute for in India?
+Brushing teeth
+10
+
+What heavyweight boxer defended his title the most?
+Joe louis
+10
+
+What heavyweight boxer drew his first breath in waco, north carolina?
+Floyd patterson
+10
+
+What heavyweight boxer retired in 1988 with a record of 31 wins and one loss?
+Michael spinks
+10
+
+What heavyweight boxing champion was nicknamed the Manassa Mauler?
+Jack dempsey
+10
+
+What hebrew word means 'so be it'?
+Amen
+10
+
+What height was the model of King Kong used in the making of the film (Answer in inches only!!)?
+Sixteen
+10
+
+What heisman trophy winner returned his first nfl kickoff for a touchdown?
+Tim brown
+10
+
+What helps build strong bodies 12 ways?
+Wonder Bread
+10
+
+What hemisphere are you in if your water drains clockwise?
+Southern
+10
+
+What henri charriere best seller describes his escape from devil's island?
+Papillon
+10
+
+What heraldic term describes a human-faced sun surrounded by rays?
+Splendour
+10
+
+What heraldic term describes a swallow without feet?
+Martlet
+10
+
+What herb is most often used as a garnish?
+Parsley
+10
+
+What herb is used in the sauce traditionally served with roast lamb?
+Mint
+10
+
+What herb is usually on a pizza base?
+Oregano
+10
+
+What herb seed can be either black or white, & yields an oil that resists turning rancid?
+Sesame
+10
+
+What herbivore sleeps one hour a night?
+Antelope
+10
+
+What hereditary defect of vision is sex-linked affecting more men than women?
+Colour blindness
+10
+
+What herman hess book gave its name to a rock group?
+Steppenwolf
+10
+
+What hermann hesse book gave its name to a rock group?
+Steppenwolf
+10
+
+What heroic group did d'artagnan lead?
+Three musketeers
+10
+
+What hi fi innovation was a spin off from the ill fated laser video?
+Compact audio disc
+10
+
+What high altitude movie did sylvester stallone, john lithgow and janine turner star?
+Cliffhanger
+10
+
+What hill lies to the north-west of the Acropolis in Athens?
+Areopagus
+10
+
+What historic exhibition was opened in London by the Queen in March 1972?
+Tutankhamen
+10
+
+What historical character has been portrayed more times in films than any other?
+Napoleon
+10
+
+What historical event ended on november 11, 1918?
+WWI
+10
+
+What hit by the band contained the line: 'take the load off fanny'?
+The weight
+10
+
+What hit does weird al yankovic parody with rye or the kaiser?
+Eye of the tiger
+10
+
+What hit lp did rockpile release in 1980?
+Seconds of pleasure
+10
+
+What hit song would you hear singer, David Gray babbling on about?
+Babylon
+10
+
+What hobby does 2stepr enjoy?
+Ballroom dancing
+10
+
+What hobby was developed by the Palmer Paint Company of Detriot?
+Paint by numbers
+10
+
+What hockey trophy is awarded to the player demonstrating the best sportsmanship?
+Lady byng trophy
+10
+
+What holds up the volunteer fire department as they are trying to rescue Homer?
+Ducks crossing the street
+10
+
+What holey food empire sprang from william rosenberg's lunch service?
+Dunkin donuts
+10
+
+What holiday is celebrated on july 14th in French Polynesia?
+Bastille day
+10
+
+What holiday is held on April 25 in Australia & New Zealand?
+Anzac day
+10
+
+What holiday is on the first sunday after the first full moon after march 20?
+Easter
+10
+
+What holiday is on the first Sunday after the first full moon after March 20th?
+Easter
+10
+
+What holiday is the Indianapolis 500 traditionally run on?
+Memorial day
+10
+
+What holidays were instigated by Sir John Lubbock?
+Bank holidays
+10
+
+What Hollywood actress was The Oomph Girl?
+Ann Sheridan
+10
+
+What Hollywood legend once complained, 'I'm sick of carrying guns and beating up women'?
+James Cagney
+10
+
+What horse carried Lester Piggott to his record breaking Derby win in 1983?
+Teenoso
+10
+
+What horse survived the Hyde Park bombing to rise to stardom?
+Sefton
+10
+
+What horse was ridden by Walter Swinburn Jr for his first Derby win?
+Shergar
+10
+
+What horse won the 1993 grand national?
+None
+10
+
+What hospital established the first us school of nursing?
+Bellevue
+10
+
+What household appliance has a tube & an agitator?
+Washing machine
+10
+
+What huge firm did Thomas Watson found in 1924?
+International business machines
+10
+
+What human organ does a pacemaker pace?
+Heart
+10
+
+What human organ houses your amygdala & thalamus?
+The brain
+10
+
+What hybrid do an ass & horse produce?
+Mule
+10
+
+What hybrid do an ass and a horse produce?
+Mule
+10
+
+What hymn did john steinbeck get his title the grapes of wrath from?
+Battle hymn of the republic
+10
+
+What hymn was written by julia howe to the tune of john brown's body?
+Battle hymn of the republic
+10
+
+What Iceni queen battled the Romans?
+Boadicea
+10
+
+What identifies the leader in the Tour de France?
+Yellow jumper
+10
+
+What ill fated auto bit the dust in 1959 after losses of millions?
+Edsel
+10
+
+What illinois town was superman's boyhood home?
+Smallville
+10
+
+What illness did Bart fake to avoid taking his History test?
+Amonia Phlebitis 
+10
+
+What illness is controlled by taking insulin?
+Diabetes
+10
+
+What illustrated sex guide did alex comfort write?
+The joy of sex
+10
+
+What imaginary island did sir thomas more create in a 1516 work?
+Utopia
+10
+
+What imaginary island did Sir Thomas More create?
+Utopia
+10
+
+What imaginary line encircling the earth is 90 degrees from both poles at every point?
+Equator
+10
+
+What imitation drink did Bart discover he was having at lunchtime?
+Malk 
+10
+
+What imperial dynasty in Russia ended with the abdication of Nicholas II?
+Romanov
+10
+
+What important historic artifact was found in November of 1922?
+King tutankhamun's tomb
+10
+
+What imprisoned cult leader has a son named Zezozose Zadfrack?
+Charles Manson
+10
+
+What improbable instrument does Finland's current pop star Kimmo Pohjanen play?
+The accordion
+10
+
+What in 1781 became the first new planet to be discovered since ancient times?
+Uranus
+10
+
+What in ancient greece was an amphora?
+A two handled vase
+10
+
+What in astronomy is indicated by the mnemonic Men very easily make jugs serving useful necessary purposes?
+The initials of the planets
+10
+
+What in astronomy is the red spot?
+Storm on jupiter
+10
+
+What in Dickensian London was the Marshalsea?
+Debtors prison
+10
+
+What in Germany is the name of the central bank?
+Bundesbank
+10
+
+What in golf is the name given for two under par for the hole?
+An eagle
+10
+
+What in korea does one win if one wins won?
+Money
+10
+
+What in medical terms does the abbreviation A & E represent?
+Accident & emergency
+10
+
+What in muslim countries is a' taj?
+Brimless hat
+10
+
+What in Paris was erected to celebrate the anniversary of the French revolution?
+The eiffel tower
+10
+
+What in Queensland Australia , is the worlds longest at 3,450 miles?
+Fence
+10
+
+What in sound reproduction is the name of a slow fluctuation in pitch?
+A wow
+10
+
+What in the building trade is called harling in Scotland?
+Pebble dash
+10
+
+What in the heck do you get when you add lactobacillus bulgaricus to milk?
+Yogurt
+10
+
+what in the heck is a meerschaum?
+A pipe
+10
+
+What in the medical world was first classified into the A.O.B. system in 1902?
+Blood
+10
+
+What in the roman catholic sense is a devils advocate?
+Official who puts the case against canonization
+10
+
+What in the US is known as Old Glory?
+The national flag
+10
+
+What in the USA is a shamus?
+Detective
+10
+
+What in the USA is celebrated on the fourth Thursday in November?
+Thanksgiving
+10
+
+What in the USA is the name of the central bank?
+Federal reserve
+10
+
+What Indian city is served by Dum Dum airport?
+Calcutta
+10
+
+What Indian maiden rescued Captain John Smith and later married John Rolfe?
+Pochahontas
+10
+
+What Indian people established Mexico city?
+Aztecs
+10
+
+What Indian tribe defeated Custer at the Battle of Little Big Horn?
+Sioux
+10
+
+What Indian tribe did Custer encounter at the Battle of Little Big Horn?
+Sioux
+10
+
+What indiana city did steve martin once call 'nowhere u.s.a'?
+Terre haute
+10
+
+What indians defeated general custer?
+Sioux
+10
+
+What indoor track milestone was Jim Beatty the first to break in 1962?
+Four minute mile
+10
+
+What industry featured in the TV mini series Bare Essence?
+Perfume
+10
+
+What inert gas is used in flourescent lights?
+Argon
+10
+
+What inert gas is used in fluorescent lights?
+Argon
+10
+
+What infamous criminal ultimately served time in alcatraz for tax evasion?
+Al capone
+10
+
+What ingredient in smelling salts produces the dreadful smell?
+Ammonia
+10
+
+What ingredient is contained in beer but not ale?
+Hops
+10
+
+What ingredient with brandy and lemon juice completes a sidecar cocktail?
+Cointreau
+10
+
+What inhabitant of rivers and lakes plays host to the bilharzia worm?
+Snail
+10
+
+What innovation did London's fire brigade first acquire in 1866?
+Ladders
+10
+
+What insect can jump 200 times its own height?
+Flea
+10
+
+What insect depends on sight to locate mates?
+Firefly
+10
+
+What insect does an isopterpophobic homeowner fear?
+The termite
+10
+
+What insect family has the most varieties, making up 290,000 of the 751,000 insect classes?
+The beetle
+10
+
+What insect gives its name and body to a food colouring?
+Cochineal
+10
+
+What insect has a king as well as a queen?
+Termites
+10
+
+What insect is the most popular official state insect?
+Honeybee
+10
+
+What insect lends its name and gives its body to a food colouring?
+Cochineal
+10
+
+What insect stars on Channel Ocho?
+Bumblebee Man
+10
+
+What insect transmits yellow fever?
+Mosquito
+10
+
+What insecticide was discovered in 1939 by Paul Muller?
+D d t
+10
+
+What insects do isopterpophobics fear?
+Termites
+10
+
+What inside corn makes it pop?
+Water
+10
+
+What institutions race their boats from Putney to Mortlake on the Thames every year?
+Oxford and Cambridge Universities
+10
+
+What instrument are you playing if you perform a rim shot?
+Drums
+10
+
+What instrument did Gene Hackman play in The Conversation?
+Saxophone
+10
+
+What instrument did glenn miller play?
+Trombone
+10
+
+What instrument did jazz legend Louis Armstrong play?
+Trumpet
+10
+
+What instrument did jazz musician, Chet Baker, play?
+Trumpet
+10
+
+What instrument did jazz musician, Woody Herman, play?
+Clarinet
+10
+
+What instrument do doctors usually have around their necks?
+Stethoscope
+10
+
+What instrument does Billy Joel hold on the cover of his album 52nd Street?
+Trumpet
+10
+
+What instrument does george harrison play on norwegian wood?
+Sitar
+10
+
+What instrument does Homer replace Lisa's saxophone with after it is stolen?
+Jug
+10
+
+What instrument does Itzhak Perlman play?
+The Violin
+10
+
+What instrument does kenny g play?
+Saxophone
+10
+
+What instrument does Lisa play in the whacking day episode? (not the saxophone)?
+Bass Guitar 
+10
+
+What instrument does woody allen play professionally?
+Clarinet
+10
+
+What instrument does woody allen play?
+Clarinet
+10
+
+What instrument in an automobile measures distance travelled?
+Odometer
+10
+
+What instrument introduces Rhapsody in Blue?
+The clarinet
+10
+
+What instrument is larry adler famed for?
+Harmonica
+10
+
+What instrument is used for measuring the distance between two points on a curved surface?
+Caliper
+10
+
+What instrument is used to measure atmospheric pressure?
+Barometer
+10
+
+What instrument is used to measure the pressure of gases?
+Manometer
+10
+
+What instrument is used to measure the strength of a magnetic field?
+Magnetometer
+10
+
+What instrument of execution was used on Marie Antoinette?
+Guillotine
+10
+
+What instrument on a car measures distance?
+Odometer
+10
+
+What instrument was named after Laurens Hammond?
+Organ
+10
+
+What instrument was played by jazz musician Chet Baker?
+Trumpet
+10
+
+What instruments are used to measure air pressure?
+Barometers
+10
+
+What insurance company in the u.s stopped using their slogan 'own a piece of the rock' after rock hudson died of aids?
+Prudential life
+10
+
+What international award was worth 365 dollars mineral value in 1988?
+Olympic gold medal
+10
+
+What international distress signal comes from 'help me' in French?
+Mayday
+10
+
+What invaders from the north was the Great Wall built to repel?
+The mongols
+10
+
+What invention allows you to see through walls?
+A window
+10
+
+What invention was named for the 1926 ad 'zip, its open, zip, it's closed?
+Zipper
+10
+
+What inventor blew up a telegraph station in a battery experiment?
+Thomas edison
+10
+
+What inventor said Genious is 1 percent inspiration and 99 percent perspiration?
+Thomas edison
+10
+
+What IQ is considered to be characteristic of a genius?
+140
+10
+
+What iq level is considered to be the beginning of genius?
+140
+10
+
+What Irish born playwright was sentenced to 2 years hard labour for homosexuality?
+Oscar wilde
+10
+
+What Irish County contains Bray?
+Wicklow
+10
+
+What Irish name means red?
+Rory
+10
+
+What Irish poet is buried by Ben Bulben?
+W.B.Yeats
+10
+
+What is 'applejack'?
+Fermented cider
+10
+
+What is 'au contraire' in English?
+On the contrary
+10
+
+What is 'au courant' in English?
+Well informed
+10
+
+What is 'bobba' in English?
+Grandmother
+10
+
+What is 'bresaola'?
+Fillet of beef
+10
+
+What is 'chowder' a type of?
+Thick soup
+10
+
+What is 'confederatio helvetica' in English?
+Helvetic confederation
+10
+
+What is 'daikon'?
+Vegetable
+10
+
+What is 'deuterium oxide' more commonly known as?
+Heavy water
+10
+
+What is 'grandmother' in yiddish?
+Bobba
+10
+
+What is 'guacamole'?
+Mexican avocado dip
+10
+
+What is 'gypsy rose lee' to a cockney?
+Tea
+10
+
+What is 'hawing'?
+Speaking with hesitation
+10
+
+What is 'hoi polloi' in English?
+The masses
+10
+
+What is 'honcho' in English?
+Squad leader
+10
+
+What is 'hoummous'?
+Crushed chick peas
+10
+
+What is 'html'?
+Hypertext markup language
+10
+
+What is 'Irish Moss'?
+Seaweed
+10
+
+What is 'january river' in Portuguese?
+Rio de janeiro
+10
+
+What is 'memo' short for?
+Memorandum
+10
+
+What is 'mother's ruin'?
+Gin
+10
+
+What is 'mpd'?
+Multiple personality disorder
+10
+
+What is 'nutty slack'?
+Coal
+10
+
+What is 'old faithful'?
+Geyser
+10
+
+What is 'perestroika' in English?
+Restructuring
+10
+
+What is 'rijsttafel'?
+Hot rice
+10
+
+What is 'samsoe'?
+Cheese
+10
+
+What is 'sapodilla' a type of?
+Fruit
+10
+
+What is 'sashimi'?
+Sliced raw fish
+10
+
+What is 'shogun' in English?
+Military governer
+10
+
+What is 'tahina'?
+Sesame seed paste
+10
+
+What is 'The City of Lights'?
+Paris
+10
+
+What is 'the helvetic confederation' in latin?
+Confederatio helvetica
+10
+
+What is 'the soul of wit'?
+Brevity
+10
+
+What is 'tilapia' a type of?
+Fish
+10
+
+What is 'tizwin'?
+Indian corn beer
+10
+
+What is 'vichyssoise'?
+Chilled soup
+10
+
+What is 1 days and 2 hours in hours?
+26
+10
+
+What is 113 in Roman numerals?
+Cxiii
+10
+
+What is 1970 in Roman numerals?
+MCMLXX
+10
+
+What is 2 + 2?
+4
+10
+
+What is 240 minutes in hours?
+Four
+10
+
+What is 3 days and 6 hours in minutes?
+4,680
+10
+
+What is 3.14159 better known as?
+Pi
+10
+
+What is 30% of 90?
+Twenty seven
+10
+
+What is 32 decimal expressed in hex?
+20
+10
+
+What is 40 percent of 40?
+Sixteen
+10
+
+What is 400 in Roman numerals?
+Cd
+10
+
+What is 44 in roman numerals?
+Xliv
+10
+
+What is 49 in roman numerals?
+Xlix
+10
+
+What is 550 times sweeter than cane sugar?
+Saccharin
+10
+
+What is 65% of sixty?
+Thirty nine
+10
+
+What is 69 in roman numerals?
+Lxix
+10
+
+What is 7 days and 10 hours in minutes?
+10,680
+10
+
+What is 778 feet higher than k2?
+Everest
+10
+
+What is 9 metres high, 7 metres wide and 2,500 kilometres long?
+Great wall of china
+10
+
+What is 900 in roman numerals?
+Cm
+10
+
+What is 99 in roman numerals?
+Xcix
+10
+
+What is 99% of 200?
+198
+10
+
+What is a 'Blenheim Orange.'?
+Apple
+10
+
+What is a 'bunker' in a game of golf?
+Sand trap
+10
+
+What is a 'California long white'?
+Potato
+10
+
+What is a 'colander'?
+Sieve
+10
+
+What is a 'crossbuck'?
+An x
+10
+
+What is a 'fody' a type of?
+Bird
+10
+
+What is a 'gilt'?
+Young female pig
+10
+
+What is a 'hotel-dieu' in france?
+Hospital
+10
+
+What is a 'kartoffel' in Germany?
+Potato
+10
+
+What is a 'kiwano' a type of?
+Fruit
+10
+
+What is a 'man of the woods'?
+Orang-utan
+10
+
+What is a 'niblick'?
+Golfer's nine iron
+10
+
+What is a 'nucha'?
+The nape of the neck
+10
+
+What is a 'palas'?
+Queen of spades
+10
+
+What is a 'rail'?
+Bird
+10
+
+What is a 'shillelagh'?
+Cudgel
+10
+
+What is a 'snickerdoodle'?
+Cookie
+10
+
+What is a 'tandoor'?
+Clay oven
+10
+
+What is a 'virgule' or 'solidus'?
+'/'
+10
+
+What is a 'yesterday, today and tomorrow'?
+Shrub
+10
+
+What is a 300th anniversary called?
+Tercentenary
+10
+
+What is a artificial egg hatching device called?
+Incubator
+10
+
+What is a avocet?
+Bird
+10
+
+What is a baby bird known as?
+Fledging
+10
+
+What is a baby eel?
+Elver
+10
+
+What is a baby frog called?
+Tadpole
+10
+
+What is a baby goose called?
+Gosling
+10
+
+What is a baby goose?
+Gosling
+10
+
+What is a baby kangaroo?
+Joey
+10
+
+What is a baby owl called?
+An owlet
+10
+
+What is a baby oyster known as?
+Spat
+10
+
+What is a baby oyster?
+Spat
+10
+
+What is a baby rooster?
+Cockerel
+10
+
+What is a baby seal called?
+Pup
+10
+
+What is a baby swan called?
+Cygnet
+10
+
+What is a baby vampire bat called?
+Pup
+10
+
+What is a baby whale called?
+Calf
+10
+
+What is a bad Dream?
+Nightmare
+10
+
+What is a balalaika?
+A Russian musical instrument
+10
+
+What is a bangtail?
+Perforated tag
+10
+
+What is a bantam?
+Chicken
+10
+
+What is a barefoot car to a car salesman?
+Bald Tires
+10
+
+What is a bayadere?
+Hindu dancing girl
+10
+
+What is a belted galloway?
+A breed of cow
+10
+
+What is a belvedere?
+Viewing turret
+10
+
+What is a better known name for a polygraph?
+Lie detector
+10
+
+What is a better known name of Switzerland's Mont Cervin?
+The matterhorn
+10
+
+What is a bibliothek in frankfurt?
+Library
+10
+
+What is a black molly?
+Tropical fish
+10
+
+What is a bleak?
+Freshwater fish
+10
+
+What is a boats speed measured in?
+Knots
+10
+
+What is a Bolero?
+A Spanish dance
+10
+
+What is a Bombay Duck?
+Fish
+10
+
+What is a bone specialist?
+Osteopath
+10
+
+What is a booby?
+Tropical bird
+10
+
+What is a bouvier des flanders?
+Dog
+10
+
+What is a bowler credited with when no runs are scored off his over?
+Maiden over
+10
+
+What is a branch of a river?
+Tributary
+10
+
+What is a bridge built on flat-bottomed boats or floating piers which are moored to the riverbed called?
+Pontoon
+10
+
+What is a bridge hand with no cards in one suit called?
+Void
+10
+
+What is a buckey ball made of?
+Carbon
+10
+
+What is a bullace?
+Fruit
+10
+
+What is a bushback?
+An antelope
+10
+
+What is a bushranger?
+Australian bandit
+10
+
+What is a calm ocean region near the equator?
+Doldrums
+10
+
+What is a calumet?
+Pipe of peace
+10
+
+What is a camberwell beauty?
+Butterfly
+10
+
+What is a camel's hair brush made of?
+Squirrel fur
+10
+
+What is a cancer causing substance?
+Carcinogen
+10
+
+What is a cancerous tumour?
+Malignant
+10
+
+What is a Canis Lupus?
+Wolf
+10
+
+What is a canologist?
+Beer Can Collector
+10
+
+What is a cartographer?
+Map drawer
+10
+
+What is a carytid?
+A pillar
+10
+
+What is a castrated bull called?
+A Steer
+10
+
+What is a castrated ram?
+Wether
+10
+
+What is a castrated sheep called?
+Wether
+10
+
+What is a castrated shy sheep called?
+Wether
+10
+
+What is a catalogue of languages?
+Ethnologue
+10
+
+What is a cello's real name?
+Violincello
+10
+
+What is a Chelonian a type of?
+Tortoise
+10
+
+What is a chief of the algonquian confederation?
+Sachem
+10
+
+What is a chihuahua named after?
+Mexican state
+10
+
+What is a chuckwalla?
+A lizard
+10
+
+What is a church district called?
+Diocese
+10
+
+What is a citizen of the city of Los Angeles called?
+Angelino
+10
+
+What is a clerihew?
+Humorous verse
+10
+
+What is a clinophobic scared of?
+Going to bed
+10
+
+What is a cloud of dust and gas in interstellar space called?
+Nebula
+10
+
+What is a cob and a pen?
+Swan
+10
+
+What is a cockchafer?
+A beetle
+10
+
+What is a cockerel?
+Baby rooster
+10
+
+What is a coho a type of?
+Fish
+10
+
+What is a collector of butterflies and moths called?
+Lepidopterist
+10
+
+What is a colombophile?
+Pigeon fancier
+10
+
+What is a condition that causes abnormal difficulty in reading and spelling?
+Dyslexia
+10
+
+What is a conundrum?
+Riddle
+10
+
+What is a cookie in new England?
+Snickerdoodle
+10
+
+What is a cotton mouth?
+Snake
+10
+
+What is a cottontail?
+Rabbit
+10
+
+What is a cpu?
+Central processing unit
+10
+
+What is a crime worse than a misdemeanor?
+Felony
+10
+
+What is a cryptogam?
+A plant
+10
+
+What is a cyclone?
+Area of low pressure
+10
+
+What is a cyclonic tropical storm with winds at the centre in excess of 74 miles per hour?
+Hurricane
+10
+
+What is a dactylogram?
+Fingerprint
+10
+
+What is a dactyologram?
+Fingerprint
+10
+
+What is a dasd?
+Direct access storage device
+10
+
+What is a depilatroy use to eradicate?
+Hair
+10
+
+What is a device to stem the flow of blood called?
+Tourniquet
+10
+
+What is a dialogue?
+A conversation
+10
+
+What is a diseased condition resulting from the overuse of beverages such as whisky?
+Alcoholism
+10
+
+What is a dish of fried potato often eaten for breakfast?
+Hash browns
+10
+
+What is a dodecagon?
+A polygon with 12 sides
+10
+
+What is a dogfish called when it is bought for food?
+Rock salmon
+10
+
+What is a draped female figure supporting an entablature?
+Caryatid
+10
+
+What is a dried plum called?
+A prune
+10
+
+What is a dried plum?
+Prune
+10
+
+What is a drug or other substance used to produce unconciousness and insensibility to pain?
+Anaesthetic
+10
+
+What is a dugong?
+A marine mammal
+10
+
+what is a durmast?
+Oak tree
+10
+
+What is a epicenter?
+The Center of an earthquake
+10
+
+What is a faucet to an American?
+Tap
+10
+
+What is a fedora?
+Hat
+10
+
+What is a female ogre called?
+Ogress
+10
+
+What is a flat-bottomed conical laboratory flask with a narrow neck?
+Erlenmeyer flask
+10
+
+What is a flat, round hat sometimes worn by soldiers?
+Beret
+10
+
+What is a follower of bacchus called?
+Bacchanal
+10
+
+What is a french 'German shepherd'?
+Alsatian
+10
+
+What is a french policeman called?
+Gendarme
+10
+
+What is a funambulist?
+Tightrope walker
+10
+
+What is a galeophobic afraid of?
+Sharks
+10
+
+What is a gambling game played on numbered cards?
+Bingo
+10
+
+What is a gastropod?
+A snail
+10
+
+What is a gatling gun?
+Machine gun
+10
+
+What is a German 'alsatian'?
+German shepherd
+10
+
+What is a giant sequoia?
+Redwood tree
+10
+
+What is a googol?
+A very large number
+10
+
+What is a government in which power is restricted to a few?
+Oligarchy
+10
+
+What is a guanaco?
+Wild llama
+10
+
+What is a gulag?
+Prison camp
+10
+
+What is a hajji?
+A pilgrim to mecca
+10
+
+What is a halberd a type of?
+Spear
+10
+
+What is a harness racer's vehicle called?
+Sulky
+10
+
+What is a heart attack?
+Myocardial infarct
+10
+
+What is a heavenly body moving under the attraction of the sun and consisting of a nucleus and a tail?
+Comet
+10
+
+What is a hemidemisemiquaver?
+64th note
+10
+
+What is a high ranking chess player called?
+Grandmaster
+10
+
+What is a hirsute person?
+Hairy
+10
+
+What is a horse's foot called?
+Hoof
+10
+
+What is a hot spring that shoots steam into the air?
+Geyser
+10
+
+What is a hotel-Dieu known as, in France?
+A hospital
+10
+
+What is a husky most likely to be pulling?
+Sled
+10
+
+What is a Jacaranda a type of?
+Tree
+10
+
+What is a jampan?
+Sedan chair
+10
+
+What is a jockey's uniform called?
+Silks
+10
+
+What is a julep?
+Iced drink
+10
+
+What is a killick?
+Stone anchor
+10
+
+What is a king of egypt?
+Pharaoh
+10
+
+What is a kinkajou?
+An animal
+10
+
+what is a kinkajou?
+Animal
+10
+
+What is a kissing gourami?
+Tropical fish
+10
+
+What is a Klaxon?
+Loud hooter
+10
+
+What is a kookaburra?
+Bird
+10
+
+What is a kurdistan?
+Rug
+10
+
+What is a lacrosse ball made of?
+Rubber
+10
+
+What is a langouste?
+Crawfish
+10
+
+What is a leech a type of?
+Worm
+10
+
+What is a Lent Lily also known as?
+Daffodil
+10
+
+What is a Lent lily otherwise known as?
+Daffodil
+10
+
+What is a line drawn from an angle of a triangle to the midpoint of the opposite side?
+Median
+10
+
+What is a line of columns supporting a horizontal or arched superstructure?
+Colonnade
+10
+
+What is a linnet?
+Bird
+10
+
+What is a lipid?
+Fat
+10
+
+What is a long legged snooker rest called?
+Spider
+10
+
+What is a long wire wound in a close-packed helix and carrying a current?
+Solenoid
+10
+
+What is a loosely woven fabric generally used for clothing called?
+Flannel
+10
+
+What is a loss of memory?
+Amnesia
+10
+
+What is a louisville slugger?
+Baseball bat
+10
+
+What is a low layer of cloud called?
+A nimbostratus
+10
+
+What is a lux a measure of?
+Illumination
+10
+
+What is a lycanthrope better known as?
+Werewolf
+10
+
+What is a magazine, temporary fashion, and sung by Madonna?
+Vogue
+10
+
+What is a malamute?
+Eskimo dog
+10
+
+What is a male ass?
+Jack
+10
+
+What is a male cat?
+Tom
+10
+
+What is a male cougar called?
+Tom
+10
+
+What is a male deer called?
+Hart
+10
+
+What is a male deer?
+Buck
+10
+
+What is a male giraffe called?
+A bull
+10
+
+What is a male sheep?
+Ram
+10
+
+What is a male swine called (giggle no ex boyfriends names...)?
+Boar
+10
+
+What is a male swine called (no ex boyfriends names...)?
+Boar
+10
+
+What is a male whale called?
+Bull
+10
+
+What is a male witch called?
+Warlock
+10
+
+What is a male witch?
+Warlock
+10
+
+What is a mamba?
+A snake
+10
+
+What is a man's name ? and means yes?
+Roger
+10
+
+What is a mandrill?
+Baboon
+10
+
+What is a manometer used to measure?
+Pressure
+10
+
+What is a marmite?
+Earthenware cooking pot
+10
+
+What is a marsupium?
+Pouch
+10
+
+What is a mayonnaise flavoured with garlic called?
+Aioli
+10
+
+What is a meerschaum?
+Pipe
+10
+
+What is a merman?
+Male mermaid
+10
+
+What is a Mexican afternoon nap?
+Siesta
+10
+
+What is a Mexican avocado dip?
+Guacamole
+10
+
+What is a Mexican hairless?
+Dog
+10
+
+What is a military governer in Japanese?
+Shogun
+10
+
+What is a missive?
+Letter
+10
+
+What is a moist, fertile spot inside a desert called?
+Oasis
+10
+
+What is a monkey puzzle?
+Tree
+10
+
+What is a moon in its first quarter?
+Two-bit moon
+10
+
+What is a more common name for the space term, eva?
+Space walking
+10
+
+What is a more popular name for St.Nicholas?
+Father christmas
+10
+
+What is a mud puppy?
+Salamander
+10
+
+What is a musical trill ? and a curly potato snack?
+Quaver
+10
+
+What is a myocardial infarct?
+Heart attack
+10
+
+What is a naevus (nevus)?
+Birthmark
+10
+
+What is a narwhal?
+Whale
+10
+
+What is a natatorium?
+Swimming pool
+10
+
+What is a native of tangiers called?
+Tangerine
+10
+
+What is a natterjack?
+Toad
+10
+
+What is a nautical knot (international)?
+1.1508 statute miles/hour
+10
+
+What is a necklace of flowers called in hawaii?
+Lei
+10
+
+What is a nephron?
+Filtering unit in the kidney
+10
+
+What is a nibong a type of?
+Palm tree
+10
+
+What is a nickelodeon?
+Juke box
+10
+
+What is a nightjar?
+Bird
+10
+
+What is a nilgai?
+A large antelope
+10
+
+What is a noggin?
+A small cup
+10
+
+What is a non-cancerous tumour?
+Benign
+10
+
+What is a novella?
+Short novel
+10
+
+What is a one humped camel called?
+Dromedary
+10
+
+What is a one legged camera support called?
+Unipod
+10
+
+What is a painful stiffness of the muscles and joints?
+Rheumatism
+10
+
+What is a paradiddle?
+Drum roll
+10
+
+What is a perfect score in a game of 10 pin bowling?
+300
+10
+
+What is a period of play in polo?
+Chukka
+10
+
+What is a person in his eighties?
+Octogenarian
+10
+
+What is a person obstructing progress in a legislative assembly called?
+Filibuster
+10
+
+What is a person who learns late in life called?
+Opsimath
+10
+
+What is a person who maliciously starts fires?
+Arsonist
+10
+
+What is a person with a strong desire to steal?
+Kleptomaniac
+10
+
+What is a pharaoh?
+King of egypt
+10
+
+What is a pinto a type of?
+Piebald horse
+10
+
+What is a pipistrel or a flittermouse?
+Bat
+10
+
+What is a place where bees are kept called?
+Apiary
+10
+
+What is a place where oil is processed called?
+Refinery
+10
+
+What is a planet's apogee?
+Furthest point from the earth
+10
+
+What is a poilu in France?
+Soldier
+10
+
+What is a poke in 'a pig in a poke'?
+Bag
+10
+
+What is a poker hand consisting of three of a kind and a pair?
+Full house
+10
+
+What is a popular anagram of santa?
+Santa claus
+10
+
+What is a popular name for the sunday before advent?
+Stir up sunday
+10
+
+What is a popular name for the wood hyacinth?
+Bluebell
+10
+
+What is a Portuguese man o' war?
+Jellyfish
+10
+
+What is a Portuguese man of war?
+Jellyfish
+10
+
+What is a pregnant goldfish?
+Twit
+10
+
+What is a prestidigitator?
+Magician
+10
+
+What is a pretzel?
+Salted biscuit
+10
+
+What is a putsch?
+Revolution attempt
+10
+
+What is a pyrotechnic display?
+Fireworks
+10
+
+What is a quarterlight?
+Small side window in a car
+10
+
+What is a radiogram?
+Radio and gramophone
+10
+
+What is a Rastafarian hair style?
+Dreadlocks
+10
+
+What is a raven also know as?
+A crow
+10
+
+What is a receptacle for holy water?
+Font
+10
+
+What is a red blood cell?
+Erythrocyte
+10
+
+What is a redwood tree?
+Giant sequoia
+10
+
+What is a regurgitation of acid from the stomach into the aesophagus?
+Heartburn
+10
+
+What is a relationship between two different types of organisms living together for mutual benefit?
+Symbiosis
+10
+
+What is a resident of Manchester?
+Mancunian
+10
+
+What is a resident of Moscow called?
+Muscovite
+10
+
+What is a resident of moscow?
+Muscovite
+10
+
+What is a rhinoceros horn made of?
+Hair
+10
+
+What is a rhinocerous horn made of?
+Hair
+10
+
+What is a Rhodesian Ridgeback?
+Dog
+10
+
+What is a ria?
+Flooded river valley
+10
+
+What is a roll or a knot of hair worn at the back of the head?
+Chignon
+10
+
+What is a Roman Catholic devotion consisting of prayers or services on nine consecutive days called?
+Novena
+10
+
+What is a rood one quarter of?
+Acre
+10
+
+What is a rower who competes in an individual event?
+Sculler
+10
+
+What is a runnel?
+A small stream
+10
+
+What is a sampan?
+Boat
+10
+
+What is a sand mason?
+A worm
+10
+
+What is a sardine?
+Young herring
+10
+
+What is a satellite's perigee?
+Closest point to the earth
+10
+
+What is a sauce made with tomatoes, onions, capers, black olives, anchovies, oregano, and garlic?
+Puttanesca
+10
+
+What is a scallion?
+Young onion
+10
+
+What is a scimitar?
+A sword
+10
+
+What is a scut?
+A short tail
+10
+
+What is a second full moon in a month called?
+Blue moon
+10
+
+What is a set or series of a hundred called?
+A century
+10
+
+What is a shadow clock?
+Sundial
+10
+
+What is a shakuhachi?
+Japanese flute
+10
+
+What is a shallow dish with a cover that is used for science specimens?
+Petri dish
+10
+
+What is a shark's skeleton made of?
+Cartilage
+10
+
+What is a shazadah?
+Rhesus monkey
+10
+
+What is a shepherds purse?
+A plant
+10
+
+What is a siesta?
+Mexican afternoon nap
+10
+
+What is a sirocco?
+Wind
+10
+
+What is a six sided polygon called?
+Hexagon
+10
+
+What is a sixty year anniversary?
+Emerald anniversary
+10
+
+What is a slang name for diamonds?
+Ice
+10
+
+What is a sleepwalker?
+Somnambulist
+10
+
+What is a small fertile area in a desert called?
+Oasis
+10
+
+What is a smooth blenny?
+Fish
+10
+
+What is a snailery?
+Snail farm
+10
+
+What is a snake doing when it sloughs?
+Shedding its skin
+10
+
+What is a somnambulist?
+Sleepwalker
+10
+
+What is a sopwith camel?
+Airplane
+10
+
+What is a sorcerer who deals in black magic called?
+Necromance
+10
+
+What is a sorcerer who deals in black magic?
+Necromancer
+10
+
+What is a sound called when it bounces back to the person who made it?
+Echo
+10
+
+What is a south african coin containing 1 troy ounce of gold called?
+Krugerrand
+10
+
+What is a south african coin containing 1 troy ounce of gold?
+Krugerrand
+10
+
+What is a spat?
+Baby oyster
+10
+
+What is a speech at the beginning of a play called?
+Prologue
+10
+
+What is a sphygmomanometer used to measure?
+Blood pressure
+10
+
+What is a star called that has a fainter companion?
+Double star
+10
+
+What is a sternocleidomastoid?
+A muscle
+10
+
+What is a strobilus?
+Pine cone
+10
+
+What is a successful contract to win 12 tricks called in bridge?
+A little slam
+10
+
+What is a sultan's wife called?
+Sultana
+10
+
+What is a sultan's wife?
+Sultana
+10
+
+What is a sultana's husband?
+Sultan
+10
+
+What is a sun dried grape?
+Raisin
+10
+
+What is a sunbeam that shines down through the clouds called?
+Crespucular rays
+10
+
+What is a supplement to a will?
+Codicil
+10
+
+What is a system of government in which states are united for certain purposes, but for others are independent?
+Federalism
+10
+
+What is a taipan?
+Snake
+10
+
+What is a tennis shot hit in the air when close to the net?
+Volley
+10
+
+What is a Tibetan priest?
+Lama
+10
+
+What is a tightrope walker?
+Funambulist
+10
+
+What is a toboggan course?
+Cresta run
+10
+
+What is a tokinese?
+Cat
+10
+
+What is a tombstone inscription?
+Epitaph
+10
+
+What is a tourbillion?
+Whirlwind
+10
+
+What is a trainee jockey under 21 years of age called?
+Apprentice
+10
+
+What is a tremor on the moons surface called?
+Moonquake
+10
+
+What is a triangle whose sides are all of different lengths?
+Scalene
+10
+
+What is a triangle with a 90 degree angle in it called?
+Right angled triangle
+10
+
+What is a triangle with three equal sides called?
+Equilateral
+10
+
+What is a triangle with two equal sides called?
+Isosceles
+10
+
+What is a trimaran?
+Boat with three hulls
+10
+
+What is a trireme?
+A ship
+10
+
+What is a troika a type of?
+Horse drawn vehicle
+10
+
+What is a troubadour?
+Wandering minstrel
+10
+
+What is a Tsunami?
+Tidal wave
+10
+
+What is a turkey's furcula commonly known as?
+Wishbone
+10
+
+What is a turkey's wishbone?
+Furcula
+10
+
+What is a turtle?
+Terrapin
+10
+
+What is a twelfth of a foot called?
+An inch
+10
+
+What is a twenty five year anniversary?
+Silver anniversary
+10
+
+What is a two-bit moon?
+First quarter
+10
+
+What is a two-humped dromedary?
+Camel
+10
+
+What is a type of painting which is a series of three painted panels that are folded called?
+Triptych
+10
+
+What is a vade mecum?
+Handy reference book
+10
+
+What is a vast cloud of dust and gas in interstellar space called?
+Nebula
+10
+
+What is a vein or fissure in a rock containing mineral deposits called?
+Lode
+10
+
+What is a very thin pastry used in Mediterranean cooking?
+Filo
+10
+
+What is a violincello?
+Cello
+10
+
+What is a VLCC?
+Oil tanker
+10
+
+What is a wallaby?
+Kangaroo
+10
+
+What is a war between parties of the same country?
+Civil war
+10
+
+What is a warlock?
+Male witch
+10
+
+What is a water moccasin?
+Snake
+10
+
+What is a water taxi?
+Gondola
+10
+
+What is a wether?
+A castrated ram
+10
+
+What is a whale's penis called?
+Dork
+10
+
+What is a willy willy to australians?
+A hurricane
+10
+
+What is a wind with a speed of 74 miles or more?
+Hurricane
+10
+
+What is a woolly bear?
+Caterpillar
+10
+
+What is a word formed from the initials of other words?
+Acronym
+10
+
+What is a writ used to produce prisoners at court?
+Habeas corpus
+10
+
+What is a xerophobic afraid of?
+Deserts
+10
+
+What is a yellow shafted flicker?
+Bird
+10
+
+What is a young beaver called?
+Kitten
+10
+
+What is a young duck called?
+Duckling
+10
+
+What is a young female racehorse called?
+A filly
+10
+
+What is a young fish called?
+Fry
+10
+
+What is a young hare called?
+Leveret
+10
+
+What is a young hawk?
+Eyas
+10
+
+What is a young horse or pony called?
+Foal
+10
+
+What is a young Irish girl called?
+Colleen
+10
+
+What is a young lion called?
+Cub
+10
+
+What is a young onion?
+Scallion
+10
+
+What is a young otter called?
+Whelp
+10
+
+What is a young whale?
+Calf
+10
+
+What is a young zebra called?
+Colt
+10
+
+What is a zeppelin?
+Dirigible
+10
+
+What is abyssinia known as today?
+Ethiopia
+10
+
+What is acclaimed as the world's hottest spice?
+Jalapeno
+10
+
+What is acetylsalicyclic acid?
+Aspirin
+10
+
+What is acquired immune deficiency syndrome better known as?
+Aids
+10
+
+What is acute hasopharyngitis?
+A cold
+10
+
+What is added to a Welsh Rarebit to make a Buck Rarebit?
+Poached egg
+10
+
+What is added to brandy to make a sidecar?
+Cointreau
+10
+
+What is added to chalk to produce cement?
+Clay
+10
+
+What is added to clay to make bone china?
+Powdered bone
+10
+
+What is added to rubber when it is vulcanised?
+Sulphur
+10
+
+What is added to soap to make it clear?
+Alcohol
+10
+
+What is added to the ice & water mixture in domestic ice cream makers in order to lower the temperature?
+Salt
+10
+
+What is added to water to make tonic water?
+Quinine
+10
+
+What is advertised on television as being 'reassuringly expensive'?
+Stella artois
+10
+
+What is africa's second longest river?
+Zaire
+10
+
+What is air-dried fillet of beef, thinly sliced and used for antipasto?
+Bresaola
+10
+
+What is alberta's most famous lake?
+Lake louise
+10
+
+What is Alberta's most important tree?
+Spruce
+10
+
+What is Alberta's most popular annual events?
+Calgary stampede
+10
+
+What is alfred e neuman's motto?
+Whta, me worry
+10
+
+What is alfred e neumans motto?
+What me worry
+10
+
+What is all hallow's eve?
+Halloween
+10
+
+What is Allen Iverson's son's name?
+Allen ii
+10
+
+What is amber?
+Fossilized pine resin
+10
+
+What is ambergis used in the making of?
+Perfume
+10
+
+What is ambergris?
+Waxy product of the sperm whales stomach
+10
+
+What is an 'aceituna' in English?
+Olive
+10
+
+What is an 'armsaye' in clothing?
+Armhole
+10
+
+What is an 'earth pig'?
+Aardvark
+10
+
+What is an 'eskimo roll'?
+Kayak
+10
+
+What is an 'esky' in Australia?
+Beer cooler
+10
+
+What is an 'islet'?
+Small island
+10
+
+What is an 'ocarina'?
+Wind instrument
+10
+
+What is an 'octothorpe'?
+Pound or number symbol
+10
+
+What is an aasvogel?
+A vulture
+10
+
+What is an acturial table used for?
+Indicate life expectancy
+10
+
+What is an ad Valorum tax?
+Property tax
+10
+
+What is an algonquin?
+Moose
+10
+
+What is an allograph?
+Signature made for one person by another
+10
+
+What is an alloy?
+A mixture of metals
+10
+
+What is an amulet?
+Lucky charm
+10
+
+What is an ancient word for a pharmacist?
+Apothecary
+10
+
+What is an angle called if it is less than 90 degrees?
+Acute
+10
+
+What is an angle greater than 180 degrees and less than 360 degrees?
+Reflex
+10
+
+What is an angle greater than 90 degrees?
+Obtuse
+10
+
+What is an angle less than 90 degrees?
+Acute
+10
+
+What is an animal stuffer?
+Taxidermist
+10
+
+What is an animal without a backbone called?
+Invertebrate
+10
+
+What is an apthong?
+Silent letter
+10
+
+What is an Argentine cowboy called?
+Gaucho
+10
+
+What is an Australian bandit also known as?
+Bushranger
+10
+
+What is an Australian bushmans Matilda?
+His pack
+10
+
+What is an eagles nest called?
+Eyrie
+10
+
+What is an ecdysiast?
+Stripper
+10
+
+What is an economic system characterized by private ownership and competition?
+Capitalism
+10
+
+What is an eight sided polygon called?
+Octagon
+10
+
+What is an electrical device used to resist the flow of electrical current?
+Resistor
+10
+
+What is an elver?
+Baby eel
+10
+
+What is an enclosed car hung from a cable at a ski slope?
+Gondola
+10
+
+What is an enlargement of the thyroid?
+Goitre
+10
+
+What is an erythrocyte?
+Red blood cell
+10
+
+What is an ethnologue?
+Catalogue of languages
+10
+
+What is an example of a totally untraceable poison?
+Acetylcholine
+10
+
+What is an example of a tree harvesting method in Canada (c)?
+Clear cutting
+10
+
+What is an example of a tree harvesting method in Canada (s)?
+Strip cutting
+10
+
+What is an example of a tree harvesting method in Canada (sel)?
+Selection cutting
+10
+
+What is an explosive sound, fizzy drink and type of song?
+Pop
+10
+
+What is an extra lane on an uphill stretch of motorway provided for slow-moving vehicles called?
+Crawler lane
+10
+
+What is an extract of fermented and dried orchid pods?
+Vanilla
+10
+
+What is an eyas?
+Young hawk
+10
+
+What is an eyrie?
+Eagles nest
+10
+
+What is an ideo locator?
+'you are here' arrow
+10
+
+What is an igloo built out of?
+Snow
+10
+
+What is an illness caused, or made worse by mental factors?
+Psychosomatic
+10
+
+What is an infant eagle called?
+Eaglet
+10
+
+What is an informal term for the clothing industry?
+Rag trade
+10
+
+What is an instrument for indicating the depth of the sea beneath a moving vessel called?
+Bathometer
+10
+
+What is an integer that is greater than 1 and divisible only by itself and 1?
+Prime number
+10
+
+What is an island formed by a volcanic eruption?
+Atoll
+10
+
+What is an mflop?
+Million floating point operations per second
+10
+
+What is an object worn as a charm?
+Amulet
+10
+
+What is an objects abiltiy to store an electrical charge called?
+Capacitance
+10
+
+What is an off break ball that is bowled with a leg break action called?
+Googly
+10
+
+What is an ogee curve?
+S-curve
+10
+
+What is an old word for the letter Z?
+Izzard
+10
+
+What is an olive in Spanish?
+Aceituna
+10
+
+What is an ophthalmologist?
+Eye doctor
+10
+
+What is an ornithorhynchus?
+Platypus
+10
+
+What is an osteopath?
+Bone specialist
+10
+
+What is an s curve?
+Ogee curve
+10
+
+What is an SUV to off roaders?
+Sports utility vehicle
+10
+
+What is an Ulster?
+Long overcoat
+10
+
+What is an unfledged pigeon called?
+Squab
+10
+
+What is anaemia?
+Iron deficiency
+10
+
+What is annabel chong's real name?
+Grace quek
+10
+
+What is another name for 'okra'?
+Ladies finger's
+10
+
+What is another name for a black leopard?
+Panther
+10
+
+What is another name for a castle in chess?
+Rook
+10
+
+What is another name for a football?
+Pigskin
+10
+
+What is another name for a fruit that is often called a pawpaw?
+Papaya
+10
+
+What is another name for a lexicon?
+Dictionary
+10
+
+What is another name for a mavis?
+Song thrush
+10
+
+What is another name for a may tree?
+Hawthorn
+10
+
+What is another name for a pigskin?
+Football
+10
+
+What is another name for a red blood cell?
+Erythrocyte
+10
+
+What is another name for a spiny anteate?
+Echidna
+10
+
+What is another name for a spiny anteater?
+Echidna
+10
+
+What is another name for a tomato?
+Love apple
+10
+
+What is another name for a tombstone inscription?
+Epitaph
+10
+
+What is another name for crude oil?
+Black gold
+10
+
+What is another name for gristle?
+Cartilage
+10
+
+What is another name for Mount Godwin Austen?
+K2
+10
+
+What is another name for Nitre?
+Saltpetre
+10
+
+What is another name for Plexiglass?
+Perspex
+10
+
+What is another name for termites?
+White ants
+10
+
+What is another name for tetanus?
+Lockjaw
+10
+
+What is another name for the beak of a bird?
+Bill
+10
+
+What is another name for the card game 'blackjack'?
+Twenty one
+10
+
+What is another name for the card game 'twenty one'?
+Blackjack
+10
+
+What is another name for the constellation auriga?
+Charioteer
+10
+
+What is another name for the coyote?
+Prairie wolf
+10
+
+What is another name for the egg plant?
+Aubergine
+10
+
+What is another name for the energy of motion?
+Kinetic energy
+10
+
+What is another name for the Feast of the Annunciation?
+Lady day
+10
+
+What is another name for the prairie wolf?
+Coyote
+10
+
+What is another name for the sport of logrolling?
+Birling
+10
+
+What is another name for the wonder drug Drinamyl and also a medal awarded to wounded US servicemen?
+Purple heart
+10
+
+What is another name for the Yeti?
+Abominable snowman
+10
+
+What is another name for thong sandals?
+Flip flops
+10
+
+What is another name for varicella?
+Chicken pox
+10
+
+What is another name for vitamin A?
+Carotene
+10
+
+What is another name for vitamin B1?
+Thiamin
+10
+
+What is another name of iris, that connects heaven and earth?
+Rainbow
+10
+
+What is another term for a badminton bird?
+Shuttlecock
+10
+
+What is another term for a police informer?
+Nark
+10
+
+What is another term for radiolocation?
+Radar
+10
+
+What is another term for the instrument sometimes called a 'mouth organ'?
+Harmonica
+10
+
+What is another term for the sternum?
+Breastbone
+10
+
+What is another term for Wildebeest?
+Gnu
+10
+
+What is apache Indian corn beer?
+Tizwin
+10
+
+What is April's birthstone?
+Diamond
+10
+
+What is Apu's last name?
+Nahasapeemapetilon
+10
+
+What is aqua fortis?
+Acid
+10
+
+What is aquaculture the scientific name for?
+Fish farming 
+10
+
+What is ars antiqua?
+Musical style
+10
+
+What is athens' old quarter?
+Plaka
+10
+
+What is attribution of divine honours on persons (living or dead) called?
+Apotheosis
+10
+
+What is Australia's favourite pizza topping?
+Egg
+10
+
+What is Australia's island state?
+Tasmania
+10
+
+What is Australia's longest river?
+Murray
+10
+
+What is Australias most popular religion?
+Anglican
+10
+
+What is Baccarat?
+Card game
+10
+
+What is bad breath?
+Halitosis
+10
+
+What is banana oil produced from?
+Coal
+10
+
+What is barbi's full name?
+Barbara millicent roberts
+10
+
+What is barney rubble's son called?
+Bamm-bamm
+10
+
+What is Barney's short film called (A Star is Burns)?
+Puke-A-Hantas
+10
+
+What is Bart paid for giving blood?
+$12 and a cookie 
+10
+
+What is Bart's big brother's name?
+Tom
+10
+
+What is basmati?
+Rice
+10
+
+What is batman's off-duty name?
+Bruce wayne 
+10
+
+What is bed-wetting?
+Enuresis
+10
+
+What is Bedfordshire's famous open zoo?
+Whipsnade
+10
+
+What is being described - a half spherical framework which can resist forces in any direction and can enclose huge volumes?
+Geodesic dome
+10
+
+What is bell metal an alloy of?
+Tin & copper
+10
+
+What is Ben Matlock's trademark outfit?
+A grey suit
+10
+
+What is best viewed from two tourist viewpoints - the North Rim and the South Rim?
+Grand canyon
+10
+
+What is better than stone in the paper, stone and scissors game?
+Paper
+10
+
+What is between panama and nicaragua?
+Costa rica
+10
+
+What is big & small?
+Jumbo shrimp
+10
+
+What is bigger on an african elephant then on an Indian elephant?
+Ears
+10
+
+What is Birchibald T. Barlows book called?
+Only Turkeys have left wings 
+10
+
+What is black gold?
+Crude oil
+10
+
+What is blackpool in Irish?
+Dubh linn
+10
+
+What is bladder wrack?
+Seaweed
+10
+
+What is Bok Choy?
+Chinese vegetable
+10
+
+What is borscht?
+Soup
+10
+
+What is bovine spongiform encephalopathy more commonly known as?
+Mad cow disease
+10
+
+What is bovine spongiform encephalopathy?
+Mad cow disease
+10
+
+What is brady's profession?
+Singer
+10
+
+What is brandy's profession?
+Singer
+10
+
+What is brimstone?
+Sulphur
+10
+
+What is Britain's largest wild mammel?
+Grey seal
+10
+
+What is Britain's second city?
+Birmingham
+10
+
+What is britains largest freshwater fish?
+Pike
+10
+
+What is britains largest lake?
+Loch lomond
+10
+
+What is Britains longest river?
+Severn
+10
+
+What is Britains tallest cathedral spire?
+Salisbury
+10
+
+What is British Columbias capital?
+Victoria
+10
+
+What is bruce wayne's heroic identity?
+Batman
+10
+
+What is bruce willis' blues band called?
+Bruno
+10
+
+What is BSE in humans called?
+Cjd
+10
+
+What is buckram?
+Coarse linen cloth
+10
+
+What is Burma now known as?
+Myanmar
+10
+
+What is Burns' oldest dog's name?
+Crippler 
+10
+
+What is c-60 nicknamed?
+Buckminsterfullerene
+10
+
+What is calcium oxide?
+Lime
+10
+
+What is calcium sulphate hemihydrate?
+Plaster of paris
+10
+
+What is called the Sport of Kings?
+Horse racing
+10
+
+What is Camilla Parker Bowles' nickname?
+Bulldog
+10
+
+What is Canada nationa animal?
+Beaver
+10
+
+What is Canada's highest city?
+Kimberley
+10
+
+What is Canada's highest waterfall?
+Della falls
+10
+
+What is Canada's national animal?
+Beaver
+10
+
+What is Canada's national sport?
+Lacrosse
+10
+
+What is Canada's newest territory?
+Nunavut
+10
+
+What is canis lupus?
+Wolf
+10
+
+What is Cape Kennedy now called?
+Cape canaveral
+10
+
+What is caused by the gravitational attraction of the moon?
+Tides
+10
+
+What is caviar?
+Fish roe
+10
+
+What is ccdos?
+Chinese character disk operating system
+10
+
+What is celebrated on 14 July in France?
+Bastille day
+10
+
+What is changed into a coach for Cinderella?
+Pumpkin
+10
+
+What is Chartres Cathedral in France famous for having 160 of?
+Stained glass windows
+10
+
+What is china's sorrow?
+Yellow river
+10
+
+What is Chinese checkers played with?
+Marbles
+10
+
+What is chorizo?
+Spanish salami
+10
+
+What is christofer columbus known as in Spanish?
+Christobal colon
+10
+
+What is cl the chemical symbol for?
+Chlorine
+10
+
+What is cliff richard's real name?
+Harry webb
+10
+
+What is close to Londons Isle of Dogs which leads it to have street names such as Cuba Street,Tobago Street etc?
+West India docks
+10
+
+What is comedian Rodney Dangerfield's real name?
+Jacob Cohen
+10
+
+What is comic strip photographer peter parker's secret identity?
+Spiderman
+10
+
+What is commemorated by the Hindu festival of Janmashtami?
+Birth of krishna
+10
+
+What is commited if a person murders his father?
+Patricide
+10
+
+What is common spadefoot?
+European toad
+10
+
+What is commonly considered the fifth sense?
+Touch
+10
+
+What is compressed snow also called?
+Neve
+10
+
+What is connected to the throat by the eustachian tube?
+Ear
+10
+
+What is considered history's greatest military evacuation?
+Dunkirk
+10
+
+What is considered tennis's most illustrious championship?
+Wimbledon
+10
+
+What is considered the luckiest number in the world?
+Nine
+10
+
+What is considered the luckiest number worldwide?
+Nine
+10
+
+What is considered the most highly specialised mammal?
+Whale
+10
+
+What is considered the sister language of English?
+German
+10
+
+What is constructed using the Isherwood system?
+Ships
+10
+
+What is consumption otherwise known as?
+Tuberculosis
+10
+
+What is consumption?
+Tuberculosis
+10
+
+What is converted into alchohol during the brewing process?
+Sugar
+10
+
+What is created when the speed of sound is exceeded?
+Sonic boom
+10
+
+What is Cuba's national sport, at which Castro himself was proficient?
+Baseball
+10
+
+What is cumberland sauce usually served with?
+Game
+10
+
+What is cuneiform?
+Writing system
+10
+
+What is currer bell's real name?
+Charlotte bronte
+10
+
+What is dagwood's dog's name?
+Daisy
+10
+
+What is damask?
+Fabric
+10
+
+What is Damsulegna's first name?
+Mick
+10
+
+What is dan quayle's first name?
+James
+10
+
+What is Dapnes butlers name in a pup named scooby doo?
+Jenkins
+10
+
+What is Dave (QPR555's) favourite word?
+Fartknocker
+10
+
+What is de name of the Dutch ship that sunk at the Australian coast hint: an authentic replica is built in holland?
+Batavia
+10
+
+What is December's birthstone?
+Zircon
+10
+
+What is defined as 'a dramatic but unstaged musical composition for soloists, chorus and orchestra, based on a religious theme'?
+Oratorio
+10
+
+What is defined as 'Dry winged fruits, as of ash or maple, often hanging with others in bunches'?
+Keys
+10
+
+What is dendrochronology?
+Tree ring dating
+10
+
+What is dennis the menace's surname?
+Mitchell
+10
+
+What is desserts backwards?
+Stressed
+10
+
+What is dick turpin's horse's name?
+Black bess
+10
+
+What is dirty Harry's badge number?
+2211
+10
+
+What is dirty Harry's surname?
+Callahan
+10
+
+What is divination by means of lines and figures drawn in the earth?
+Geomancy
+10
+
+What is dolomite?
+Mineral found by limestone
+10
+
+What is Dorian's surname in the TV comedy Birds of a Feather?
+Green
+10
+
+What is dr bombay's real nationality?
+Swedish
+10
+
+What is dr death's real name (he's a euthanasia facilitator)?
+Dr jack kevorkian
+10
+
+What is dram?
+Dynamic random access memory
+10
+
+What is drawing wild but politically favorable electoral districts?
+Gerrymandering
+10
+
+What is dried marjoram called?
+Oregano
+10
+
+What is dropped so a plane can land?
+Flaps
+10
+
+What is dulse?
+An edible seaweed
+10
+
+What is duplex radiant ring on an electric cooker?
+Two stage ring
+10
+
+What is e.g. an abbreviation of?
+Exempli gratia
+10
+
+What is e.t famous for saying?
+E.t phone home
+10
+
+What is earth's galaxy called?
+Milky way
+10
+
+What is earwax?
+Cerumen
+10
+
+What is Einstein famous for?
+The Theory of Relativity
+10
+
+What is Elton John's first band , before he started the solo career?
+Bluesology
+10
+
+What is Elton John's real name?
+Reginald kenneth dwight
+10
+
+What is elvis costellos real name?
+Declan mcmanus
+10
+
+What is elvis presley's middle name?
+Aaron
+10
+
+What is England's best known rifle range?
+Bisley
+10
+
+What is enuresis?
+Bed-wetting
+10
+
+What is epidaurus famous for?
+Greek theatre
+10
+
+What is Esperanto. A...?
+Language
+10
+
+What is Europe's largest island?
+Britain
+10
+
+What is Europe's longest river?
+Volga
+10
+
+What is Europes longest river?
+The volga
+10
+
+What is evonne cawley's maiden name?
+Evonne goolagong
+10
+
+What is exalting one's country above all others?
+Nationalism
+10
+
+What is examined by an otoscope?
+The ear
+10
+
+What is excessive emphasis on financial gain?
+Commercialism
+10
+
+What is excessive enthusiasm or zeal for a cause?
+Fanaticism
+10
+
+What is family name of the Dukes of Wellington?
+Wellesley
+10
+
+What is Fidel Castro's real first name?
+Ruz
+10
+
+What is finely ground powdered sugar called?
+Icing sugar
+10
+
+What is foil brand name Alcan an abbreviation of?
+Aluminium of Canada
+10
+
+What is folk singer Peggy Seegers pop singing daughter called?
+Kirsty mccoll
+10
+
+What is football called in Italy?
+Calico
+10
+
+What is Footballs equivalent of the American football positon called safety?
+Fullback
+10
+
+What is formed when the Earth comes betwen the Sun and the Moon?
+Lunar eclipse
+10
+
+What is Formosa otherwise known as?
+Taiwan
+10
+
+What is found in abundance in the north sea?
+Oil
+10
+
+What is france's national flower?
+Fleur de lys
+10
+
+What is france's oldest brandy?
+Armagnac
+10
+
+What is francois marie arouet better known as?
+Voltaire
+10
+
+What is Frasier's surname in the TV sitcom?
+Crane
+10
+
+What is french for honey?
+Le miel
+10
+
+What is French for Saturday?
+Samedi
+10
+
+What is french national anthem?
+Marseillaise
+10
+
+What is frozen carbon dioxide better known as?
+Dry ice
+10
+
+What is further from the equator____tasmania, tanzania or transylvania
+Transylvania
+10
+
+What is ganja in jamaica?
+Marijuana
+10
+
+What is general wade famous for constructing in the Scottish highlands between 1724 and 1730?
+Roads
+10
+
+What is geophagy?
+Practise of eating soil
+10
+
+What is George W. and Laura Bush's Scottish Terrier name?
+Barney 
+10
+
+What is gluhwein?
+Mulled wine
+10
+
+What is Grandma Bouvier's first name?
+Jacqueline 
+10
+
+What is graphically illustrated in a karnaugh diagram?
+Logic
+10
+
+What is Greece's largest island?
+Crete
+10
+
+What is greek pita?
+Bread
+10
+
+What is green in a pure molten form?
+Gold
+10
+
+What is Gregory Pecks first name?
+Eldred
+10
+
+What is Grimace of the McDonald's characters?
+A tastebud
+10
+
+What is grimace of the Mcdonald's characters?
+Tastebud
+10
+
+What is ground being 'rested' for a season?
+Fallow
+10
+
+What is growing plants in liquids rather than soil?
+Hydroponics
+10
+
+What is guano?
+Bird and bat droppings
+10
+
+What is gutzon borglum's most famous work?
+Mount rushmore
+10
+
+What is haemophilia?
+Hereditary defect that prevents blood clotting
+10
+
+What is haggis?
+Sheep stomach
+10
+
+What is hagiology the study of?
+Saints
+10
+
+What is halitosis?
+Bad breath
+10
+
+What is halloween?
+All hallow's eve
+10
+
+What is Hansard?
+Official record of debates in the house of commons
+10
+
+What is Harold Macmillans first name?
+Maurice
+10
+
+What is Harry Houdini famous for being?
+Escapologist
+10
+
+What is harvard university's dramatic society, established in 1848, called?
+Hasty pudding club
+10
+
+What is having a hole drilled through the cranium supposedly enabling people to reach a higher state of consciousness?
+Trepanning
+10
+
+What is he the chemical symbol for?
+Helium
+10
+
+What is Heaven according to Belinda Carlisle?
+A place on earth
+10
+
+What is heaven called in the Pilgrims Progress?
+Celestial city
+10
+
+What is heavier, a baseball or a softball?
+Baseball
+10
+
+What is hercule poirot's nationality?
+Belgian
+10
+
+What is histology?
+Study of tissues
+10
+
+What is holland also known as?
+Netherlands
+10
+
+What is Holland's largest ever flood control project called?
+Delta plan
+10
+
+What is Homer Simpson's favorite beer?
+Duff
+10
+
+What is Homer's little brothers name?
+Pepi
+10
+
+What is horseshoes equivalent to a bulls-eye?
+Ringer
+10
+
+What is hulk hogan's real name?
+Terry bollea
+10
+
+What is hypertext markup language?
+Html
+10
+
+What is ichthyology?
+Study of fishes
+10
+
+What is improved if you sleep on your right side?
+Digestion
+10
+
+What is in apple pips?
+Cyanide
+10
+
+What is indiana jones main weapon?
+His whip
+10
+
+What is installed in the world's deepest mine in carletonville?
+Refrigeration plant
+10
+
+What is Interpol short for?
+International criminal police commision
+10
+
+What is Interpol short for?
+International Criminal Police Commission
+10
+
+What is interpol?
+International criminal police
+10
+
+What is iodine fuming for?
+Latent fingerprints
+10
+
+What is Iola cat that died on the episode of Mamma's Family?
+Midnight
+10
+
+What is is group of kangaroos?
+Troop
+10
+
+What is it - What is 9 metres high, 7 metres wide and 2,500 kilometres long?
+Great Wall of China
+10
+
+What is it impossible to keep open while sneezing?
+Eyes
+10
+
+What is it that walks on four feet in the morning, two feet at noon, and three feet in the evening?
+Man
+10
+
+What is it that you kiss to bring you the gift of the gab?
+Blarney stone
+10
+
+What is it that's inside a barrel of a gun that allows a straighter flight of a bullet?
+Rifling
+10
+
+What is it to steal property entrusted to one's care?
+Embezzle
+10
+
+What is it when five or fewer water molecules bond tightly together in a ring?
+Cluster
+10
+
+What is ix?
+9
+10
+
+What is Jainism?
+Ancient religion
+10
+
+What is jamaica's nickname?
+Regaa boyz
+10
+
+What is james herriots other occupation?
+Vet
+10
+
+What is january's birthstone?
+Garnet
+10
+
+What is joanna lumley's role in the new avengers?
+Purdy
+10
+
+What is John Powell's middle name?
+Enoch
+10
+
+What is john robertson osbourne's stage name?
+Ozzy osbourne
+10
+
+What is john wayne's real name?
+Marion morrison
+10
+
+What is juliet's last name?
+Capulet
+10
+
+What is June's birthstone?
+Agate
+10
+
+What is Kanga's son's name in the Winnie The Pooh stories?
+Baby roo
+10
+
+What is katmandu the capital of?
+Nepal
+10
+
+What is Kendo?
+Japanese sword fighting
+10
+
+What is kept in a portfolio?
+Documents
+10
+
+What is kept in the house to keep vampires away?
+Garlic
+10
+
+What is Kimberley, South Africa well known for?
+Diamonds
+10
+
+What is known as 'the father of waters'?
+Mississippi river
+10
+
+What is known as amundsen scott station?
+South pole
+10
+
+What is known as The Bishops Stone?
+Amethyst
+10
+
+What is known as the Lost Continent?
+Atlantis
+10
+
+What is known as The Royal Disease?
+Haemophilia
+10
+
+What is known as the royal game?
+Chess
+10
+
+What is known as the ship of the desert?
+Camel
+10
+
+What is kohlrabi?
+Vegetable
+10
+
+What is Kris Kristoffersons CB handle in Convoy?
+Rubber duck
+10
+
+What is l'il abner's son named?
+Honest abe
+10
+
+What is LCD an abbreviation of?
+Liquid Crystal Display
+10
+
+What is likely to have a watermark?
+Paper
+10
+
+What is liquid clay used in pottery?
+Slip
+10
+
+What is liquor distilled from the fermented mash of cereal grains and containing about 40 to 50 percent ethyl alcohol by volume?
+Whiskey
+10
+
+What is Lisa's future occupation according to the CANT test?
+Homemaker 
+10
+
+What is located at 350 fifth avenue in New York City?
+Empire state building
+10
+
+What is london's most famous book shop?
+Foyles
+10
+
+What is Londons Central Criminal Court called?
+The Old Bailey
+10
+
+What is MacGyver's first name?
+Stace
+10
+
+What is madame tussaud's?
+Wax museum
+10
+
+What is made by heating carbon plasma to 20,000 degrees and condensing it under ultra high pressure?
+Diamonds
+10
+
+What is made from a tree bark that turns a gin pink?
+Angostura bitters
+10
+
+What is made from chicle?
+Chewing gum
+10
+
+What is made from the bark of the cinchona tree?
+Quinine
+10
+
+What is made from wood pulp?
+Cellophane
+10
+
+What is made of acrylonitrile butadiene styrene and covered with 100% pure blue wool?
+A policemans helmet
+10
+
+What is made up of England, Scotland, Wales & Ireland?
+United kingdom
+10
+
+What is made up of the duodenum, jejenum and ileum?
+Small intestine
+10
+
+What is made with a mix of charcoal, saltpetre and sulphur?
+Gunpowder
+10
+
+What is mafia lingo for 'our thing'?
+La cosa nostra
+10
+
+What is magma?
+Hot molten rock
+10
+
+What is mainland europes most heavily populated city?
+Paris
+10
+
+What is man's most common ailment?
+Headache
+10
+
+What is man's most common pain?
+Headache
+10
+
+What is Manchester united's nickname?
+Busby babes
+10
+
+What is march's birthstone?
+Aquamarine
+10
+
+What is marchpane?
+Marzipan
+10
+
+What is Margaret Thatcher's middle name?
+Hilda
+10
+
+What is martha's vineyard?
+An island
+10
+
+What is Martin's Favourite video game?
+My Diner With Andre
+10
+
+What is Martin's IQ?
+216
+10
+
+What is mary westmacott's real name?
+Agatha christie
+10
+
+What is maryland's state song?
+Maryland my maryland
+10
+
+What is mauna kea?
+Volcano
+10
+
+What is max in 'the grinch who stole christmas?
+Dog
+10
+
+What is meant by the cookery term ' A La Crecy'?
+Served with carrots
+10
+
+What is meant by the cooking term farci?
+Stuffed
+10
+
+What is meant in computing terminology by the acronym wysiwyg?
+What you see is what you get
+10
+
+What is measured by the kelvin scale?
+Temperature
+10
+
+What is measured in bathy,abyssal and hadal zones?
+Ocean depth
+10
+
+What is measured in curies?
+Radioactivity
+10
+
+What is measured in decibels?
+Loudness
+10
+
+What is measured in fathoms?
+Depth of water
+10
+
+What is measured on the Cephalic Index?
+Human head
+10
+
+What is measured on the Mohs scale?
+Hardness of minerals
+10
+
+What is measured with a Dines Tilting Syphon?
+Rainfall
+10
+
+What is measured with a hygrometer?
+Humidity
+10
+
+What is measured with a sphygnomanometer?
+Blood pressure
+10
+
+What is meat slaughtered according to Muslim law?
+Halal
+10
+
+What is Meg Ryan's real name?
+Margaret Hyra
+10
+
+What is mercury also known as?
+Quicksilver
+10
+
+What is michael bolton's real name?
+Michael bolotin
+10
+
+What is Michael Jackson's middle name?
+Joseph
+10
+
+What is missing from a navel orange?
+Seeds
+10
+
+What is missing from the 'venus de milo'?
+Arms
+10
+
+What is mixed with Kahlua or Tia Maria to make a Black Russian?
+Vodka
+10
+
+What is mixed with kahlua to make a 'black Russian'?
+Vodka
+10
+
+What is mixed with tin to produce bronze?
+Copper
+10
+
+What is Mo Mowlam's first name?
+Marjorie
+10
+
+What is Mongolia often called to distinguish it from an autonomous region in China?
+Outer mongolia
+10
+
+What is Mongolia's famed desert?
+Gobi
+10
+
+What is Montreal's subway known as?
+Metro
+10
+
+What is more addictive than all illicit drugs except crack and heroin combined?
+Cigarettes
+10
+
+What is more effective than caffeine for waking up in the morning?
+Apples
+10
+
+What is Moscow's famed opera house?
+The bolshoi
+10
+
+What is Mr. Burns and Bart's blood type?
+Double O Negative 
+10
+
+What is Mr. Roger's first name?
+Fred
+10
+
+What is Mrs. Krabappel's first name?
+Edna
+10
+
+What is my favorite dj?
+Funkmaster flex
+10
+
+What is myrrh?
+Gum resin
+10
+
+What is name of the tubes that connect the ear & throat?
+Eustachian
+10
+
+What is named after amerigo vespucci?
+America
+10
+
+What is named after the chequered cloth upon which the reckoning of revenues took place?
+The exchequer
+10
+
+What is narcissism?
+Self-love
+10
+
+What is necessary to play a game of pinochle?
+Cards
+10
+
+What is new brunswicks highest point at 820 m?
+Mount carleton
+10
+
+What is New York City's 'street of forgotten men'?
+Bowery
+10
+
+What is new, last or gibbous?
+Moon
+10
+
+What is next higher prime number after 23?
+29
+10
+
+What is nick leeson's (man who broke barings bank) favourite football club?
+Manchester city
+10
+
+What is Nintendo mario's brother's name?
+Luigi
+10
+
+What is nitrous oxide?
+Laughing gas
+10
+
+What is normal body temperature for an adult human (in degrees fahrenheit)?
+98
+10
+
+What is normal body temperature for an adult human?
+98.6
+10
+
+What is normal body temperature in Celcius?
+36.9
+10
+
+What is north America's deepest gorge?
+Hell's canyon
+10
+
+What is north americas most popular snack food?
+Potato chips
+10
+
+What is northern rhodesia now known as?
+Zambia
+10
+
+What is not being able to remember the word you want?
+Lethologica
+10
+
+What is november's birthstone?
+Topaz
+10
+
+What is now known as the Belgium Congo?
+Zaire
+10
+
+What is nyoil?
+Nylon impregnated with oil
+10
+
+What is obtained by placing a fodder crop in an airtight structure and letting it ferment?
+Silage
+10
+
+What is odeon an acronym for?
+Oscar deutsch entertains our nation
+10
+
+What is on a 5000 acre landfill at the head of jamaica bay near New York City?
+John f kennedy airport
+10
+
+What is on lonely street?
+Heartbreak hotel
+10
+
+What is on the banks of the river jumna?
+Taj mahal
+10
+
+What is one of the flavors that make up neopolitan ice cream?
+Strawberry
+10
+
+What is one of the items that the wood of the sycamore tree is used for?
+Boxes
+10
+
+What is one of the more expensive automobiles in the world?
+Mercedes
+10
+
+What is opposition to the jewish race called?
+Anti-semitism
+10
+
+What is Oprah Winfrey's real name?
+Oprah Winfrey
+10
+
+What is ornamental work in silver or gold thread?
+Filigree
+10
+
+What is paedology?
+Study of soil
+10
+
+What is Pak Choy?
+Chinese vegetable
+10
+
+What is Palermo the capital of?
+Sicily
+10
+
+What is par on a 245 yard golf hole?
+Three
+10
+
+What is pargeting?
+Plastering
+10
+
+What is pate de fois gras made from?
+Goose livers
+10
+
+What is Paul mccartney's first name?
+James
+10
+
+What is penicillin made of?
+Cheese mould
+10
+
+What is peppermint patty's last name?
+Reichardt
+10
+
+What is permanently frozen sub soil called?
+Permafrost
+10
+
+What is piloted by a pilot fish?
+Shark
+10
+
+What is plastic and coated with a film of magnetic iron oxide one ten thousandth of an inch thick?
+Magnetic tape
+10
+
+What is poisoning caused by a toxin in improperly prepared food?
+Botulism
+10
+
+What is polio?
+Infantile paralysis
+10
+
+What is polytetrafluoroethylene?
+Teflon
+10
+
+What is pontoon called when it is played in a casino?
+Blackjack
+10
+
+What is present day sentosa formally known as?
+Pulau blankang mati
+10
+
+What is pro football quarterback sonny jurgenson's christian name?
+Christian
+10
+
+What is produced when a magnetic chip is put under a magnetic field?
+Magnetic bubble
+10
+
+What is prosciutto?
+Italian smoked ham
+10
+
+What is psephology?
+Study of elections
+10
+
+What is public ownership of the basic means of production, distribution, and exchange?
+Socialism
+10
+
+What is pure china clay?
+Kaolin
+10
+
+What is quicksilver better known as?
+Mercury
+10
+
+What is quicksilver?
+Mercury
+10
+
+What is radar an acronym for?
+Radio detection and ranging
+10
+
+What is Radio Shack's main brand name?
+Realistic
+10
+
+What is raku?
+Japanese pottery
+10
+
+What is Rapec?
+Type of snuff
+10
+
+What is ray bradbury's illustrated man illustrated with?
+Tattoos
+10
+
+What is receding from Earth by half an inch a year?
+Moon
+10
+
+What is recorded with two beams of light?
+Holograph
+10
+
+What is removed in a splenectomy?
+Spleen
+10
+
+What is removed with an orchidectomy?
+Testicle
+10
+
+What is resident of moscow called?
+Muscovite
+10
+
+What is roachford's christian name?
+Andrew
+10
+
+What is rolled down Cooper's hill in Gloucestershire?
+Cheese
+10
+
+What is Ronald Reagan's middle name?
+Wilson
+10
+
+What is Rosemary Clooney's relationship to actor George Clooney?
+Aunt
+10
+
+What is Rumpoles first name?
+Horace
+10
+
+What is Russia's primary spaceport?
+Baikonour
+10
+
+What is rust on copper called?
+Verdigris
+10
+
+What is sad?
+Seasonal affective disorder
+10
+
+What is sade's real name?
+Helen adu
+10
+
+What is said to be the mother of all invention?
+Necessity
+10
+
+What is salicyclic acid better known as?
+Aspirin
+10
+
+What is sally ride's scientific calling?
+Physics
+10
+
+What is SALT an acronym for?
+Strategic arms limitation talks
+10
+
+What is saltimbocca?
+An Italian dish of ham and veal
+10
+
+What is samian ware?
+Fine pottery
+10
+
+What is san francisco known as?
+Queen of the pacific
+10
+
+What is san francisco's equivalent to sydney's 'city to surf' race?
+Bay to breakers footrace
+10
+
+What is schizophrenia?
+Hallucinations and delusions
+10
+
+What is sclerotinite?
+Fungal remains
+10
+
+What is Scotlands Oil City?
+Aberdeen
+10
+
+What is SCUBA an acronym for?
+Self contained underwater breathing apparatus
+10
+
+What is Sebastian Coe's middle name?
+Newbold
+10
+
+What is semiotics?
+Study of signs and symbols
+10
+
+What is sex on the internet called?
+Cybersex
+10
+
+What is Shakespeare's play 'Twelfth Night' also known as?
+What you will
+10
+
+What is Shakespeares shortest play?
+Macbeth
+10
+
+What is shed when you desquamate?
+Skin
+10
+
+What is shed when you desuamate?
+Skin
+10
+
+What is shredded to make sauerkraut?
+Cabbage
+10
+
+What is Siberia's Baikal the worlds deepest example of?
+Lake
+10
+
+What is singapore's main airport?
+Changi international airport
+10
+
+What is Sir John De Mentieth famous for?
+Capturing sir william wallace
+10
+
+What is sir robert helpman's field of fame?
+Ballet
+10
+
+What is sliced into very thin sheets to make a marquetry picture?
+Wood
+10
+
+What is sliced raw fish?
+Sashimi
+10
+
+What is smut?
+Plant disease
+10
+
+What is so distinctive about a palmiped's feet?
+They're webbed
+10
+
+What is something that allows electricity to pass through it?
+A conductor
+10
+
+What is sometimes added to softdrinks to make them sweeter?
+Coal
+10
+
+What is sorghum?
+Cereal crop
+10
+
+What is south africa's national flower?
+Protea
+10
+
+What is south America's largest country?
+Brazil
+10
+
+What is South America's version of the Ostrich?
+Rhea
+10
+
+What is southern rhodesia now known as?
+Zimbabwe
+10
+
+What is Spain's biggest source of income?
+Tourism
+10
+
+What is Spain's highest mountain?
+Mount teide
+10
+
+What is speaking with hesitation?
+Hawing
+10
+
+What is spoken defamation called?
+Slander
+10
+
+What is Springfields equivalent to Hard Copy?
+Rock Bottom 
+10
+
+What is st clare patron saint of?
+Television
+10
+
+What is St Nicholas the patron saint of?
+Children
+10
+
+What is St.Clare the patron saint of?
+Television
+10
+
+What is statistically the safest age of life?
+Ten
+10
+
+What is Sting's real name?
+Gordon sumner
+10
+
+What is stolen by tom, tom the piper's son?
+Pig
+10
+
+What is stored in a camel's hump?
+Fat
+10
+
+What is striped on a tiger, besides it's fur?
+It's skin
+10
+
+What is stuffed with a sheep's carcass stuffed with chickens stuffed with fish stuffed with eggs?
+Roast camel
+10
+
+What is stuka an acronym for?
+Sturzkampffluzeug
+10
+
+What is supposed to bring bad luck if you break it?
+Mirror
+10
+
+What is Surrey Cricket Club's home ground?
+Oval
+10
+
+What is surrounded by amniotic fluid?
+Unborn baby
+10
+
+What is susan hampshire's surprising disability?
+Dyslexia
+10
+
+What is sushi?
+Raw fish
+10
+
+What is switching letters (e.g saying jag of flapan instead of flag of Japan)?
+Spoonerism
+10
+
+What is Switzerland's most spoken language?
+German
+10
+
+What is Switzerland's official neutral name?
+Helvetic confederation
+10
+
+What is sydney's equivalent to the san francisco 'bay to breakers' footrace?
+City to surf race
+10
+
+What is taedium vitae?
+Weariness of life
+10
+
+What is tansy?
+Herb
+10
+
+What is tattooed on glen campbell's arm?
+Dagger
+10
+
+What is tattooed on popeye's arm?
+Anchor
+10
+
+What is Tennessee Williams' real name?
+Thomas lanier williams
+10
+
+What is th ecollective name for rain,snow, hail and sleet?
+Precipitation
+10
+
+What is th ename of an unmanned spacecraft on an exploratory mission?
+Probe
+10
+
+What is th ename of the huge 3 tiered roman aqueduct built in AD14 between Uzes and Nimes in France?
+Pont du gard
+10
+
+What is th ename of the northern light phenomenon caused by charged particles striking the earths atmosphere?
+Aurora borealis
+10
+
+What is th eterm for the driver of a team of Huskies?
+Musher
+10
+
+What is th eworlds driest desert?
+Atacama desert
+10
+
+What is thanatology the scientific study of?
+Death
+10
+
+What is the 'American pastime'?
+Baseball
+10
+
+What is the 'big bang' said to have created?
+Universe
+10
+
+What is the 'bishop's stone'?
+Amethyst
+10
+
+What is the 'bole' of a tree?
+Trunk
+10
+
+What is the 'codename' for netscape's navigator web browser?
+Mozilla
+10
+
+What is the 'cresta run'?
+Toboggan course
+10
+
+What is the 'd' in dwight d eisenhower's name?
+David
+10
+
+What is the 'f' in john f kennedy?
+Fitzgerald
+10
+
+What is the 'freemantle doctor', that occurs most afternoons in perth?
+Wind
+10
+
+What is the 'lambeth walk'?
+A dance
+10
+
+What is the 'nickname' of the university of minnesota?
+Golden gophers
+10
+
+What is the 'pound' or 'number' symbol on the telephone?
+Octothorpe
+10
+
+What is the 'stinky rose'?
+Garlic
+10
+
+What is the 'word' used for multiple personality disorder?
+Mpd
+10
+
+What is the 'x' on a railroad crossing?
+Crossbuck
+10
+
+What is the 100 year old safe in Washington dc?
+Centennial safe
+10
+
+What is the 13.5 ton chime on london's tower clock?
+Big ben
+10
+
+What is the 15' by 18' cell that 146 captured British officers were forced into by Indian troops in the 19th century?
+Black hole of calcutta
+10
+
+What is the 18th letter of the English alphabet?
+R
+10
+
+What is the 1983 bryan adams album which features the hit 'cuts like a knife'?
+Cuts like a knife
+10
+
+What is the 25,000 year old treasure of Altamira?
+Cave painting
+10
+
+What is the 2nd fastest fish in the world?
+Marlin
+10
+
+What is the 2nd fastest mammel in the world?
+Pronghorn
+10
+
+What is the 2nd largest continent?
+Africa
+10
+
+What is the 2nd largest country in South America?
+Argentina
+10
+
+What is the 2nd largest ocean?
+Atlantic
+10
+
+What is the 2nd largest planet in the solar system?
+Saturn
+10
+
+What is the 2nd largest provience in Canada?
+Ontario
+10
+
+What is the 30th longest river in the world?
+The Thames
+10
+
+What is the 3rd book of the Bible?
+Leviticus
+10
+
+What is the 3rd largest island by area in the Republic of Indonesia?
+Java
+10
+
+What is the 4th in the Harry Potter series of books?
+Harry potter and the goblet of fire
+10
+
+What is the a baby herring known as?
+Brit
+10
+
+What is the abbreviation for lake minnetonka?
+Lake tonka
+10
+
+What is the abbreviation for the organisation founded in 1824 to enforce laws to protect animals?
+Rspca
+10
+
+What is the abbreviation of trinitrotoluene?
+Tnt
+10
+
+What is the ability to move objects with mind power called?
+Telekinesis
+10
+
+What is the acronym for 'yet another hierarchical officious oracle'?
+Yahoo
+10
+
+What is the acronym for an image produced by aligning molecular crystals?
+Lcd
+10
+
+What is the act of founding settlements abroad?
+Colonisation
+10
+
+What is the active ingredient in head and shoulders anti-dandruff shampoo?
+Zinc pyrithione
+10
+
+What is the active ingredient in oxy anti pimple cream?
+Benzoyl peroxide
+10
+
+What is the active ingredient in smelling salts?
+Ammonia
+10
+
+What is the actor's union known as?
+Equity
+10
+
+What is the actual vat in Romania?
+19%
+10
+
+What is the address Donald Duck lives at?
+1313 webfoot walk, duckburg, calisota
+10
+
+What is the administrative centre of Hampshire?
+Winchester
+10
+
+What is the Aloha State?
+Hawaii
+10
+
+What is the alternative name for a line of latiitude on a map?
+Parallel
+10
+
+What is the alternative name for a line of longitude on a map?
+Meridian
+10
+
+What is the alternative name for a line of meridian on a map?
+Longitude
+10
+
+What is the alternative name for Indian Corn?
+Maize
+10
+
+What is the alternative name for rabies?
+Hydrophobia
+10
+
+What is the alternative name for the coastal plant the sea pink, which featured on the reverse of the old threepenny bit?
+Thrift
+10
+
+What is the alternative name for the Galaxy?
+Milky way
+10
+
+What is the alternative name for Xrays?
+Rontgen rays
+10
+
+What is the alternative name of Beethoven's sonata number 14 in C sharp minor?
+Moonlight
+10
+
+What is the alternative name of the foodstuff called scallions?
+Spring onions
+10
+
+What is the alternative name of the foodstuff called sea asparagus?
+Samphire
+10
+
+What is the American equivalent of the nikkei?
+Dow jones index
+10
+
+What is the anatomical name for the bones of a human's fingers and toes?
+Phalanges
+10
+
+What is the anatomical term for the voice box?
+Larynx
+10
+
+What is the ancient chinese art of placement called?
+Feng shui
+10
+
+What is the ancient religious language of India?
+Sanskrit
+10
+
+What is the animated videogame by Don Bluth, where the hero had to work his way through a trap infested castle?
+Dragons lair
+10
+
+What is the Answer to Life, the Universe, and Everything?
+42
+10
+
+What is the applied science to the study of society?
+Sociology
+10
+
+What is the approximate speed of light?
+186,000 miles per second
+10
+
+What is the approximate temperature on the planet Pluto?
+Minus 230 degrees celsius
+10
+
+What is the aquatic nickname of Schubert's Piano Quintet in A?
+The trout quintet
+10
+
+What is the arabic answer to the roman subtraction ' m minus ix '?
+991
+10
+
+What is the area code for cruise ships in the Atlantic Ocean?
+871
+10
+
+What is the area of water between Alaska and Russia?
+Bering strait
+10
+
+What is the Armenian religion?
+Christianity
+10
+
+What is the arrow of a crossbow called?
+A bolt
+10
+
+What is the art of bell-ringing called?
+Campanology
+10
+
+What is the art of composing dances?
+Choreography
+10
+
+What is the art of fighting with gloves on the hand?
+Boxing
+10
+
+What is the art of paper folding called?
+Origami
+10
+
+What is the art of tracing designs and making impressions of them?
+Lithography
+10
+
+What is the art of writing decoratively called?
+Calligraphy
+10
+
+What is the artificial international language invented in 1887 called?
+Esperanto
+10
+
+What is the asiatic cordial kumiss made from?
+Cows milk
+10
+
+What is the assumption that natural things have feelings like human beings called?
+Pathetic fallacy
+10
+
+What is the astringent lotion obtained from north American trees?
+Witch hazel
+10
+
+What is the astronomical name for a group of stars?
+Constellati
+10
+
+What is the atomic mass of bromine?
+79.9
+10
+
+What is the atomic mass of lithium?
+6.94
+10
+
+What is the atomic mass of molybdenum?
+95.94
+10
+
+What is the atomic mass of platinum?
+195.09
+10
+
+What is the atomic mass of sulphur?
+32.06
+10
+
+What is the atomic number for californium?
+Ninety eight
+10
+
+What is the atomic number for hydrogen (h)?
+1
+10
+
+What is the atomic number for oxygen?
+Eight
+10
+
+What is the atomic number for palladium?
+Forty six
+10
+
+What is the atomic number for thalium?
+Eighty one
+10
+
+What is the atomic number of cesium?
+55
+10
+
+What is the atomic number of tungsten?
+74
+10
+
+What is the atomic weight of arsenic?
+Seventy five
+10
+
+What is the atomic weight of uranium?
+Ninety two
+10
+
+What is the attribution of human attributes to a deity?
+Anthropomorphism
+10
+
+What is the Australian sea wasp?
+Jellyfish
+10
+
+What is the average duration of sexual intercourse for humans?
+Two minutes
+10
+
+What is the average iq level of all living people?
+100
+10
+
+What is the average lifespan of a major league baseball?
+Five to seven pitches
+10
+
+What is the average lifespan of a tastebud?
+Ten days
+10
+
+What is the average longevity of a chipmunk?
+6 years
+10
+
+What is the average speed of a running pig?
+7.5 mph
+10
+
+What is the average temperature (f) at the South Pole?
+-56
+10
+
+What is the b-17 bomber's nickname?
+Flying fortress
+10
+
+What is the back boundary line in tennis called?
+Baseline
+10
+
+What is the back boundary line in tennis?
+Baseline
+10
+
+What is the back boundry line in tennis called?
+Baseline
+10
+
+What is the back of a ship called?
+Stern
+10
+
+What is the back seat of a motorbike called?
+Pillion
+10
+
+What is the ball on top of a flagpole called?
+Truck
+10
+
+What is the banking system in the u.s known as?
+Federal reserve system
+10
+
+What is the base number in the duodecimal system?
+Twelve
+10
+
+What is the base twenty numbering system?
+Vigesimal
+10
+
+What is the basic flavouring of kahlua?
+Coffee
+10
+
+What is the basic unit of currency for albania?
+Lek
+10
+
+What is the basic unit of currency for algeria?
+Dinar
+10
+
+What is the basic unit of currency for andorra?
+Peseta
+10
+
+What is the basic unit of currency for angola?
+Kwanza
+10
+
+What is the basic unit of currency for antigua and barbuda?
+Dollar
+10
+
+What is the basic unit of currency for argentina?
+Peso
+10
+
+What is the basic unit of currency for armenia?
+Dram
+10
+
+What is the basic unit of currency for Australia?
+Dollar
+10
+
+What is the basic unit of currency for Austria?
+Schilling
+10
+
+What is the basic unit of currency for azerbaijan?
+Manat
+10
+
+What is the basic unit of currency for bahamas?
+Dollar
+10
+
+What is the basic unit of currency for bahrain?
+Dinar
+10
+
+What is the basic unit of currency for bangladesh?
+Taka
+10
+
+What is the basic unit of currency for barbados?
+Dollar
+10
+
+What is the basic unit of currency for belarus?
+Rubel
+10
+
+What is the basic unit of currency for belgium?
+Franc
+10
+
+What is the basic unit of currency for Belize?
+Dollar
+10
+
+What is the basic unit of currency for benin?
+Franc
+10
+
+What is the basic unit of currency for bhutan?
+Ngultrum
+10
+
+What is the basic unit of currency for bolivia?
+Boliviano
+10
+
+What is the basic unit of currency for bosnia and herzegovina?
+Marka
+10
+
+What is the basic unit of currency for botswana?
+Pula
+10
+
+What is the basic unit of currency for Brazil?
+Real
+10
+
+What is the basic unit of currency for brunei?
+Dollar
+10
+
+What is the basic unit of currency for bulgaria?
+Lev
+10
+
+What is the basic unit of currency for burkina faso?
+Franc
+10
+
+What is the basic unit of currency for burundi?
+Franc
+10
+
+What is the basic unit of currency for cambodia?
+Riel
+10
+
+What is the basic unit of currency for cameroon?
+Franc
+10
+
+What is the basic unit of currency for Canada?
+Dollar
+10
+
+What is the basic unit of currency for cape verde?
+Escudo
+10
+
+What is the basic unit of currency for central african republic?
+Franc
+10
+
+What is the basic unit of currency for chad?
+Franc
+10
+
+What is the basic unit of currency for chile?
+Peso
+10
+
+What is the basic unit of currency for georgia?
+Lari
+10
+
+What is the basic unit of currency for India?
+Rupee
+10
+
+What is the basic unit of currency for indonesia?
+Rupiah
+10
+
+What is the basic unit of currency for iran?
+Rial
+10
+
+What is the basic unit of currency for iraq?
+Dinar
+10
+
+What is the basic unit of currency for Ireland?
+Pound
+10
+
+What is the basic unit of currency for israel?
+Sheqel
+10
+
+What is the basic unit of currency for Italy?
+Lira
+10
+
+What is the basic unit of currency for ivory coast?
+Franc
+10
+
+What is the basic unit of currency for jamaica?
+Dollar
+10
+
+What is the basic unit of currency for Japan?
+Yen
+10
+
+What is the basic unit of currency for jordan?
+Dinar
+10
+
+What is the basic unit of currency for kazakhstan?
+Tenge
+10
+
+What is the basic unit of currency for kenya?
+Shilling
+10
+
+What is the basic unit of currency for kiribati?
+Dollar
+10
+
+What is the basic unit of currency for kuwait?
+Dinar
+10
+
+What is the basic unit of currency for kyrgyzstan?
+Som
+10
+
+What is the basic unit of currency for laos?
+Kip
+10
+
+What is the basic unit of currency for latvia?
+Lats
+10
+
+What is the basic unit of currency for lebanon?
+Livre
+10
+
+What is the basic unit of currency for lesotho?
+Loti
+10
+
+What is the basic unit of currency for liberia?
+Dollar
+10
+
+What is the basic unit of currency for libya?
+Dinar
+10
+
+What is the basic unit of currency for liechtenstein?
+Franc
+10
+
+What is the basic unit of currency for lithuania?
+Litas
+10
+
+What is the basic unit of currency for luxembourg?
+Franc
+10
+
+What is the basic unit of currency for macao?
+Pataca
+10
+
+What is the basic unit of currency for macedonia?
+Denar
+10
+
+What is the basic unit of currency for madagascar?
+Franc
+10
+
+What is the basic unit of currency for malawi?
+Kwacha
+10
+
+What is the basic unit of currency for malaysia?
+Ringgit
+10
+
+What is the basic unit of currency for maldives?
+Rufiyaa
+10
+
+What is the basic unit of currency for mali?
+Franc
+10
+
+What is the basic unit of currency for malta?
+Lira
+10
+
+What is the basic unit of currency for marshall islands?
+Dollar
+10
+
+What is the basic unit of currency for mauritania?
+Ouguiya
+10
+
+What is the basic unit of currency for mauritius?
+Rupee
+10
+
+What is the basic unit of currency for Mexico?
+Peso
+10
+
+What is the basic unit of currency for micronesia?
+Dollar
+10
+
+What is the basic unit of currency for moldova?
+Leu
+10
+
+What is the basic unit of currency for monaco?
+Franc
+10
+
+What is the basic unit of currency for mongolia?
+Tugrik
+10
+
+What is the basic unit of currency for Morocco?
+Dirham
+10
+
+What is the basic unit of currency for mozambique?
+Metical
+10
+
+What is the basic unit of currency for myanmar?
+Kyat
+10
+
+What is the basic unit of currency for namibia?
+Dollar
+10
+
+What is the basic unit of currency for nauru?
+Dollar
+10
+
+What is the basic unit of currency for nepal?
+Rupee
+10
+
+What is the basic unit of currency for Netherlands?
+Guilder
+10
+
+What is the basic unit of currency for new zealand?
+Dollar
+10
+
+What is the basic unit of currency for nicaragua?
+Cordoba
+10
+
+What is the basic unit of currency for niger?
+Franc
+10
+
+What is the basic unit of currency for nigeria?
+Naira
+10
+
+What is the basic unit of currency for north korea?
+Won
+10
+
+What is the basic unit of currency for norway?
+Krone
+10
+
+What is the basic unit of currency for oman?
+Rial
+10
+
+What is the basic unit of currency for pakistan?
+Rupee
+10
+
+What is the basic unit of currency for palau?
+Dollar
+10
+
+What is the basic unit of currency for panama?
+Balboa
+10
+
+What is the basic unit of currency for papua new guinea?
+Kina
+10
+
+What is the basic unit of currency for paraguay?
+Guarani
+10
+
+What is the basic unit of currency for peru?
+Sol
+10
+
+What is the basic unit of currency for philippines?
+Peso
+10
+
+What is the basic unit of currency for poland?
+Zloty
+10
+
+What is the basic unit of currency for Portugal?
+Escudo
+10
+
+What is the basic unit of currency for qatar?
+Riyal
+10
+
+What is the basic unit of currency for romania?
+Leu
+10
+
+What is the basic unit of currency for Russia?
+Ruble
+10
+
+What is the basic unit of currency for rwanda?
+Franc
+10
+
+What is the basic unit of currency for saint kitts and nevis?
+Dollar
+10
+
+What is the basic unit of currency for saint lucia?
+Dollar
+10
+
+What is the basic unit of currency for saint vincent and the grenadines?
+Dollar
+10
+
+What is the basic unit of currency for tajikistan?
+Ruble
+10
+
+What is the basic unit of currency for tonga?
+Paanga
+10
+
+What is the basic unit of currency for uruguay?
+Peso
+10
+
+What is the basic unit of currency for uzbekistan?
+Sum
+10
+
+What is the basic unit of currency for vanuatu?
+Vatu
+10
+
+What is the basic unit of currency for vatican city?
+Lira
+10
+
+What is the basic unit of currency for venezuela?
+Bolivar
+10
+
+What is the basic unit of currency for vietnam?
+Dong
+10
+
+What is the basic unit of currency for yemen?
+Rial
+10
+
+What is the basic unit of currency for Yugoslavia?
+Dinar
+10
+
+What is the basic unit of currency for zambia?
+Kwacha
+10
+
+What is the basic unit of currency for zimbabwe?
+Dollar
+10
+
+What is the basis of the dish 'Hummus'?
+Chick peas
+10
+
+What is the basis of the Indian dish 'Riata'?
+Yoghurt
+10
+
+What is the Basques national game?
+Pelota
+10
+
+What is the Bayeux tapestry if it isnt a tapestry?
+An embroidery
+10
+
+What is the bbc's longest running tv program?
+Panorama
+10
+
+What is the beaufort scale used to measure?
+Wind speed
+10
+
+What is the belief in living a very austere and self-denying life?
+Asceticism
+10
+
+What is the belief in the existence of a god or gods?
+Theism
+10
+
+What is the belief that there is no god?
+Atheism
+10
+
+What is the belt of low pressure around the equator called?
+Doldrums
+10
+
+What is the best remembered crash to have occurred on october 29th, 1929?
+The wall street crash
+10
+
+What is the best score in blackjack?
+Twenty one
+10
+
+What is the best selling car of all time?
+Toyota corolla
+10
+
+What is the best selling personal computer game of all time?
+Myst
+10
+
+What is the better known identity of minus 273.15 degrees celsius?
+Absolute zero
+10
+
+What is the better known name for Romes Flavian Amphitheatre?
+The colosseum
+10
+
+What is the better known name of Edson Arantes do Nascimento?
+Pele
+10
+
+What is the better known name of the elegant dancing star Tula Finklea?
+Cyd charisse
+10
+
+What is the better known name of writer Madame Dudevant?
+George sand
+10
+
+What is the better-known identity of the earl of huntingdon?
+Robin hood
+10
+
+What is the better-known name of the card game Twenty-One?
+Blackjack
+10
+
+What is the big apple?
+New york city
+10
+
+What is the biggest advertizer in the world?
+Procter and gamble
+10
+
+What is the biggest bay on the north American continent?
+Hudson bay
+10
+
+What is the biggest structure on earth made by living creatures?
+Great barrier reef
+10
+
+What is the billionth digit of 'pi'?
+Nine
+10
+
+What is the binary equivalent of decimal 10?
+1010
+10
+
+What is the binot simon scale used to measure?
+Intelligence
+10
+
+What is the birthplace (city) of the late john candy?
+Toronto
+10
+
+What is the birthstone for april?
+Diamond
+10
+
+What is the birthstone for january?
+Garnet
+10
+
+What is the birthstone for november?
+Topaz
+10
+
+What is the birthstone for the month of January?
+Garnet
+10
+
+What is the birthstone of someone born on Christmas Day?
+Turquoise
+10
+
+What is the blue in blue cheese?
+Mould
+10
+
+What is the board game where it pays to know your trivia?
+Trivial pursuit
+10
+
+What is the boiling point of water on the fahrenheit scale?
+212
+10
+
+What is the bone at the end of the spine?
+Coccyx
+10
+
+What is the bookmakers term for betting chances?
+Odds
+10
+
+What is the botanical name of the flower known as 'Autumn Crocus'?
+Colchicum
+10
+
+What is the bottom colour of a rainbow?
+Violet
+10
+
+What is the boundary of the southern frigid zone?
+Antartic Circle
+10
+
+What is the bowling term for three straight strikes?
+Turkey
+10
+
+What is the branch of medicine dealing with curing by operative procedures?
+Surgery
+10
+
+What is the branch of theology which concerns itself with the grounds and defense of the christian faith?
+Apologetics
+10
+
+What is the breastbone also known as?
+Sternum
+10
+
+What is the brightest asteroid?
+Vesta
+10
+
+What is the brightest common object in the sky after the sun and the moon?
+Venus
+10
+
+What is the brightest planet seen from earth?
+Venus
+10
+
+What is the brightest star in the night sky?
+Sirius
+10
+
+What is the British dish made from cheddar cheese and beer?
+Welsh rarebit
+10
+
+What is the British equivalent of the game known in America as 'Tick-Tack-Toe'?
+Noughts and crosses
+10
+
+What is the British equivalent of the US Navy rank Rear Admiral (lower half)?
+Commodore
+10
+
+What is the buchmans' child's name?
+Mabel
+10
+
+What is the buchmans' dog's name?
+Murray
+10
+
+What is the bullseye worth in archery?
+Nine
+10
+
+What is the bundestag?
+German parliament
+10
+
+What is the bunny called in Friar Wiggum's Fantastical Beastarium?
+Esquilax 
+10
+
+What is the by-product of lightening?
+Ozone
+10
+
+What is the cajun country of louisiana also known as?
+Acadiana
+10
+
+What is the cakewalk?
+A dance
+10
+
+What is the call name for soviet mission control?
+Zarya
+10
+
+What is the Canadian equivalent of the krugerrand?
+Maple leaf
+10
+
+What is the cap on the fire hydrant called?
+Bonnet
+10
+
+What is the capiatal of haiti?
+Port au prince
+10
+
+What is the capital city of Azerbaijan?
+Baku
+10
+
+What is the capital city of Botswana?
+Gaberone
+10
+
+What is the capital city of Papua New Guinea?
+Port moresby
+10
+
+What is the capital city of Surinam?
+Paramaribo
+10
+
+What Is The Capital City Of Switzerland?
+Berne
+10
+
+What is the capital city of Tennessee?
+Nashville
+10
+
+What is the capital city of the cote d'ivoire?
+Yamoussoukou
+10
+
+What is the capital city of the kingdom of tonga?
+Nuku'alofa
+10
+
+What is the capital city of the middle east state of qatar?
+Doha
+10
+
+What is the capital of alabama?
+Montgomery
+10
+
+What is the capital of Alberta?
+Edmonton
+10
+
+What is the capital of antigua & barbuda?
+St john's
+10
+
+What is the capital of arizona?
+Phoenix
+10
+
+What is the capital of bahamas?
+Nassau 
+10
+
+What is the capital of Bavaria?
+Munich
+10
+
+What is the capital of Brazil?
+Brazilia
+10
+
+What is the capital of burkino faso?
+Ouagadougou
+10
+
+What is the capital of Canada's neighboring city in quebec?
+Hull
+10
+
+What is the capital of Chechnya?
+Grozny
+10
+
+What is the capital of columbia?
+Bogota
+10
+
+What is the capital of connecticut?
+Hartford
+10
+
+What is the capital of costa rica?
+San jose
+10
+
+What is the capital of Croati?
+Zagreb
+10
+
+What is the capital of czechoslovakia?
+Prague
+10
+
+What is the capital of delaware?
+Dover
+10
+
+What is the capital of England?
+London
+10
+
+What is the capital of Florida?
+Orlando
+10
+
+What is the capital of georgia?
+Atlanta
+10
+
+What is the capital of guinea?
+Conakray
+10
+
+What is the capital of hawaii?
+Honolulu
+10
+
+What is the capital of holland?
+Amsterdam
+10
+
+What is the capital of honduras?
+Tegucigalpla
+10
+
+What is the capital of hong kong?
+Victoria
+10
+
+What is the capital of indiana?
+Indianapolis
+10
+
+What is the capital of iran?
+Teheran
+10
+
+What is the capital of kazakstan?
+Almaty
+10
+
+What is the capital of Kentucky?
+Frankfort
+10
+
+What is the capital of Kosovo?
+Pristina
+10
+
+What is the capital of Lichtenstein?
+Vaduz
+10
+
+What is the capital of louisiana?
+Baton rouge
+10
+
+What is the capital of Majorca?
+Palma
+10
+
+What is the capital of malta?
+Valetta
+10
+
+What is the capital of massachusetts?
+Boston
+10
+
+What is the capital of minnesota?
+Saint Paul
+10
+
+What is the capital of mississippi?
+Jackson
+10
+
+What is the capital of Mongolia?
+Ulaanbataar
+10
+
+What is the capital of nepal?
+Katmandu
+10
+
+What is the capital of nevada?
+Carson city
+10
+
+What is the capital of new brunswick?
+Fredericton
+10
+
+What is the capital of new jersey?
+Trenton
+10
+
+What is the capital of New Mexico?
+Santa fe
+10
+
+What is the capital of New York?
+Albany
+10
+
+What is the capital of nigeria?
+Lagos
+10
+
+What is the capital of north vietnam?
+Hanoi
+10
+
+What is the capital of nova scotia?
+Halifax
+10
+
+What is the capital of of norway?
+Oslo
+10
+
+What is the capital of oklahoma?
+Oklahoma city
+10
+
+What is the capital of pennsylvania?
+Harrisberg
+10
+
+What is the capital of Queensland?
+Brisbane
+10
+
+What is the capital of rhode island?
+Providence
+10
+
+What is the capital of San Salvador?
+El salvador
+10
+
+What is the capital of South Dakota?
+Pierre
+10
+
+What is the capital of south vietnam?
+Saigon
+10
+
+What is the capital of Southern Australia?
+Adelaide
+10
+
+What is the capital of St Lucia?
+Castries
+10
+
+What is the capital of st vincent and the grenadines?
+Kingstown
+10
+
+What is the capital of Switzerland?
+Berne
+10
+
+What is the capital of tahiti?
+Papeete
+10
+
+What is the capital of tanzania?
+Dodoma
+10
+
+What is the capital of Tasmania?
+Hobart
+10
+
+What is the capital of the african country of the ivory coast?
+Abidjan
+10
+
+What is the capital of the Alsace region of France?
+Strasbourg
+10
+
+What is the capital of the Australia's Northern Territory?
+Darwin
+10
+
+What is the capital of the Canadian province of British Columbia?
+Victoria
+10
+
+What is the capital of the Canadian province of Ontario?
+Toronto
+10
+
+What is the capital of the central african republic?
+Bangui
+10
+
+What is the capital of the district of kosovo?
+Pristina
+10
+
+What is the capital of the former zaire?
+Kinshasa
+10
+
+What is the capital of the Philippines?
+Manila
+10
+
+What is the capital of the seychelles?
+Victoria
+10
+
+What is the capital of the Spanish province Cantabria?
+Santander
+10
+
+What is the capital of the Spanish region of aragon?
+Zaragoza
+10
+
+What is the capital of the Spanish region of navarre?
+Pamplona
+10
+
+What is the capital of the state of California?
+Sacramento
+10
+
+What is the capital of the state of Connecticut?
+Hartford
+10
+
+What is the capital of the state of Minnesota?
+St. Paul
+10
+
+What is the capital of the state of Ohio?
+Columbus
+10
+
+What is the capital of the state of Oklahoma?
+Oklahoma city
+10
+
+What is the capital of the state of Virginia?
+Richmond
+10
+
+What is the capital of the state of West Virginia?
+Charleston
+10
+
+What is the capital of the state of Wisconsin?
+Madison
+10
+
+What is the capital of the Tuscany region of Italy?
+Florence
+10
+
+What is the capital of the US state of Delaware?
+Dover
+10
+
+What is the capital of the US state of Oregon?
+Salem
+10
+
+What is the capital of trinidad & tobago?
+Port of Spain
+10
+
+What is the capital of utah?
+Salt lake city
+10
+
+What is the capital of vermont?
+Montpelier
+10
+
+What is the capital of West Germany?
+Bonn
+10
+
+What is the Capital of: Afghanistan?
+Kabul
+10
+
+What is the Capital of: Albania?
+Tirana
+10
+
+What is the Capital of: Algeria?
+Algiers
+10
+
+What is the Capital of: American Samoa?
+Pago pago
+10
+
+What is the Capital of: Andorra?
+Andorra la vella
+10
+
+What is the Capital of: Angola?
+Luanda
+10
+
+What is the Capital of: Anguilla?
+The valley
+10
+
+What is the Capital of: Antigua and Barbuda?
+Saint john's
+10
+
+What is the Capital of: Argentina?
+Buenos aires
+10
+
+What is the Capital of: Armenia?
+Yerevan
+10
+
+What is the Capital of: Aruba?
+Oranjestad
+10
+
+What is the Capital of: Austria?
+Vienna
+10
+
+What is the Capital of: Azerbaijan?
+Baku
+10
+
+What is the Capital of: Bahamas, The?
+Nassau
+10
+
+What is the Capital of: Bahrain?
+Manama
+10
+
+What is the Capital of: Bangladesh?
+Dhaka
+10
+
+What is the Capital of: Barbados?
+Bridgetown
+10
+
+What is the Capital of: Belgium?
+Brussels
+10
+
+What is the Capital of: Belize?
+Belmopan
+10
+
+What is the Capital of: Benin?
+Porto-novo
+10
+
+What is the Capital of: Bermuda?
+Hamilton
+10
+
+What is the Capital of: Bhutan?
+Thimphu
+10
+
+What is the Capital of: Bolivia?
+La paz
+10
+
+What is the Capital of: Bosnia and Herzegovina?
+Sarajevo
+10
+
+What is the Capital of: Botswana?
+Gaborone
+10
+
+What is the Capital of: Brazil?
+Brasilia
+10
+
+What is the Capital of: British Virgin Islands?
+Road town
+10
+
+What is the Capital of: Brunei?
+Bandar seri begawan
+10
+
+What is the Capital of: Bulgaria?
+Sofia
+10
+
+What is the Capital of: Burkina Faso?
+Ouagadougou
+10
+
+What is the Capital of: Burundi?
+Bujumbura
+10
+
+What is the Capital of: Cambodia?
+Phnom penh
+10
+
+What is the Capital of: Cameroon?
+Yaounde
+10
+
+What is the Capital of: Canada?
+Ottawa
+10
+
+What is the Capital of: Cape Verde?
+Praia
+10
+
+What is the Capital of: Cayman Islands?
+George town
+10
+
+What is the Capital of: Central African Republic?
+Bangui
+10
+
+What is the Capital of: Chad?
+N'djamena
+10
+
+What is the Capital of: Chile?
+Santiago
+10
+
+What is the Capital of: China?
+Beijing
+10
+
+What is the Capital of: Christmas Island?
+The settlement
+10
+
+What is the Capital of: Cocos Islands?
+West island
+10
+
+What is the Capital of: Colombia?
+Bogota
+10
+
+What is the Capital of: Comoros?
+Moroni
+10
+
+What is the Capital of: Congo ,Republic of the?
+Brazzaville
+10
+
+What is the Capital of: Congo, Dem. Rep. of the?
+Kinshasa
+10
+
+What is the Capital of: Cook Islands?
+Avarua
+10
+
+What is the Capital of: Cote d'Ivoire?
+Yamoussoukro
+10
+
+What is the Capital of: Croatia?
+Zagreb
+10
+
+What is the Capital of: Cuba?
+Havana
+10
+
+What is the Capital of: Cyprus?
+Nicosia
+10
+
+What is the Capital of: Czech Republic?
+Prague
+10
+
+What is the Capital of: Denmark?
+Copenhagen
+10
+
+What is the Capital of: Djibouti?
+Djibouti
+10
+
+What is the Capital of: Dominica?
+Roseau
+10
+
+What is the Capital of: Dominican Republic?
+Santo domingo
+10
+
+What is the Capital of: Ecuador?
+Quito
+10
+
+What is the Capital of: Egypt?
+Cairo
+10
+
+What is the Capital of: El Salvador?
+San salvador
+10
+
+What is the Capital of: Equatorial Guinea?
+Malabo
+10
+
+What is the Capital of: Eritrea?
+Asmara
+10
+
+What is the Capital of: Estonia?
+Tallinn
+10
+
+What is the Capital of: Ethiopia?
+Addis ababa
+10
+
+What is the Capital of: Falkland Islands (Islas Malvinas)?
+Stanley
+10
+
+What is the Capital of: Faroe Islands?
+Torshavn
+10
+
+What is the Capital of: Fiji?
+Suva
+10
+
+What is the Capital of: Finland?
+Helsinki
+10
+
+What is the Capital of: France?
+Paris
+10
+
+What is the Capital of: French Guiana?
+Cayenne
+10
+
+What is the Capital of: French Polynesia?
+Papeete
+10
+
+What is the Capital of: Gabon?
+Libreville
+10
+
+What is the Capital of: Gambia ,The?
+Banjul
+10
+
+What is the Capital of: Georgia?
+T'bilisi
+10
+
+What is the Capital of: Germany?
+Berlin
+10
+
+What is the Capital of: Ghana?
+Accra
+10
+
+What is the Capital of: Gibraltar?
+Gibraltar
+10
+
+What is the Capital of: Greece?
+Athens
+10
+
+What is the Capital of: Greenland?
+Nuuk
+10
+
+What is the Capital of: Grenada?
+Saint george's
+10
+
+What is the Capital of: Guadeloupe?
+Basse-terre
+10
+
+What is the Capital of: Guam?
+Hagatna
+10
+
+What is the Capital of: Guatemala?
+Guatemala
+10
+
+What is the Capital of: Guernsey?
+Saint peter port
+10
+
+What is the Capital of: Guinea-Bissau?
+Bissau
+10
+
+What is the Capital of: Guinea?
+Conakry
+10
+
+What is the Capital of: Guyana?
+Georgetown
+10
+
+What is the Capital of: Haiti?
+Port-au-prince
+10
+
+What is the Capital of: Holy See (Vatican City)?
+Vatican city
+10
+
+What is the Capital of: Honduras?
+Tegucigalpa
+10
+
+What is the Capital of: Hong Kong SAR?
+Victoria
+10
+
+What is the Capital of: Hungary?
+Budapest
+10
+
+What is the Capital of: Iceland?
+Reykjavik
+10
+
+What is the Capital of: Indonesia?
+Jakarta
+10
+
+What is the Capital of: Iran?
+Tehran
+10
+
+What is the Capital of: Iraq?
+Baghdad
+10
+
+What is the Capital of: Ireland?
+Dublin
+10
+
+What is the Capital of: Israel?
+Jerusalem
+10
+
+What is the Capital of: Italy?
+Rome
+10
+
+What is the Capital of: Jamaica?
+Kingston
+10
+
+What is the Capital of: Japan?
+Tokyo
+10
+
+What is the Capital of: Jersey?
+Saint helier
+10
+
+What is the Capital of: Jordan?
+Amman
+10
+
+What is the Capital of: Kazakhstan?
+Astana
+10
+
+What is the Capital of: Kenya?
+Nairobi
+10
+
+What is the Capital of: Kiribati?
+Tarawa
+10
+
+What is the Capital of: Korea North?
+P'yongyang
+10
+
+What is the Capital of: Korea South?
+Seoul
+10
+
+What is the Capital of: Kuwait?
+Kuwait
+10
+
+What is the Capital of: Kyrgyzstan?
+Bishkek
+10
+
+What is the Capital of: Laos?
+Vientiane
+10
+
+What is the Capital of: Latvia?
+Riga
+10
+
+What is the Capital of: Lebanon?
+Beirut
+10
+
+What is the Capital of: Lesotho?
+Maseru
+10
+
+What is the Capital of: Liberia?
+Monrovia
+10
+
+What is the Capital of: Libya?
+Tripoli
+10
+
+What is the Capital of: Liechtenstein?
+Vaduz
+10
+
+What is the Capital of: Lithuania?
+Vilnius
+10
+
+What is the Capital of: Luxembourg?
+Luxembourg
+10
+
+What is the Capital of: Macau SAR?
+Macau
+10
+
+What is the Capital of: Macedonia?
+Skopje
+10
+
+What is the Capital of: Madagascar?
+Antananarivo
+10
+
+What is the Capital of: Malawi?
+Lilongwe
+10
+
+What is the Capital of: Malaysia?
+Kuala lumpur
+10
+
+What is the Capital of: Maldives?
+Male
+10
+
+What is the Capital of: Mali?
+Bamako
+10
+
+What is the Capital of: Malta?
+Valletta
+10
+
+What is the Capital of: Man, Isle of?
+Douglas
+10
+
+What is the Capital of: Marshall Islands?
+Majuro
+10
+
+What is the Capital of: Martinique?
+Fort-de-france
+10
+
+What is the Capital of: Mauritania?
+Nouakchott
+10
+
+What is the Capital of: Mauritius?
+Port louis
+10
+
+What is the Capital of: Mayotte?
+Mamoutzou
+10
+
+What is the Capital of: Mexico?
+Mexico
+10
+
+What is the Capital of: Micronesia, Federated States of?
+Palikir
+10
+
+What is the Capital of: Moldova?
+Chisinau
+10
+
+What is the Capital of: Monaco?
+Monaco
+10
+
+What is the Capital of: Mongolia?
+Ulaanbaatar
+10
+
+What is the Capital of: Montserrat?
+Plymouth
+10
+
+What is the Capital of: Morocco?
+Rabat
+10
+
+What is the Capital of: Mozambique?
+Maputo
+10
+
+What is the Capital of: Namibia?
+Windhoek
+10
+
+What is the Capital of: Nauru?
+No official capital
+10
+
+What is the Capital of: Nepal?
+Kathmandu
+10
+
+What is the Capital of: Netherlands Antilles?
+Willemstad
+10
+
+What is the Capital of: Netherlands?
+Amsterdam
+10
+
+What is the Capital of: New Caledonia?
+Noumea
+10
+
+What is the Capital of: New Zealand?
+Wellington
+10
+
+What is the Capital of: Nicaragua?
+Managua
+10
+
+What is the Capital of: Niger?
+Niamey
+10
+
+What is the Capital of: Nigeria?
+Abuja
+10
+
+What is the Capital of: Niue?
+Alofi
+10
+
+What is the Capital of: Norfolk Island?
+Kingston
+10
+
+What is the Capital of: Northern Mariana Islands?
+Saipan
+10
+
+What is the Capital of: Norway?
+Oslo
+10
+
+What is the Capital of: Oman?
+Muscat
+10
+
+What is the Capital of: Pakistan?
+Islamabad
+10
+
+What is the Capital of: Palau?
+Koror
+10
+
+What is the Capital of: Panama?
+Panama
+10
+
+What is the Capital of: Papua New Guinea?
+Port moresby
+10
+
+What is the Capital of: Paraguay?
+Asuncion
+10
+
+What is the Capital of: Peru?
+Lima
+10
+
+What is the Capital of: Philippines?
+Manila
+10
+
+What is the Capital of: Pitcairn Islands?
+Adamstown
+10
+
+What is the Capital of: Poland?
+Warsaw
+10
+
+What is the Capital of: Portugal?
+Lisbon
+10
+
+What is the Capital of: Puerto Rico?
+San juan
+10
+
+What is the Capital of: Qatar?
+Doha
+10
+
+What is the Capital of: Reunion?
+Saint-denis
+10
+
+What is the Capital of: Romania?
+Bucharest
+10
+
+What is the Capital of: Russia?
+Moscow
+10
+
+What is the Capital of: Rwanda?
+Kigali
+10
+
+What is the Capital of: Saint Helena?
+Jamestown
+10
+
+What is the Capital of: Saint Kitts and Nevis?
+Basseterre
+10
+
+What is the Capital of: Saint Lucia?
+Castries
+10
+
+What is the Capital of: Saint Pierre and Miquelon?
+Saint-pierre
+10
+
+What is the Capital of: Saint Vincent and the Grenadines?
+Kingstown
+10
+
+What is the Capital of: Samoa?
+Apia
+10
+
+What is the Capital of: San Marino?
+San marino
+10
+
+What is the Capital of: Sao Tome and Principe?
+Sao tome
+10
+
+What is the Capital of: Saudi Arabia?
+Riyadh
+10
+
+What is the Capital of: Senegal?
+Dakar
+10
+
+What is the Capital of: Serbia and Montenegro?
+Belgrade
+10
+
+What is the Capital of: Seychelles?
+Victoria
+10
+
+What is the Capital of: Sierra Leone?
+Freetown
+10
+
+What is the Capital of: Singapore?
+Singapore
+10
+
+What is the Capital of: Slovakia?
+Bratislava
+10
+
+What is the Capital of: Slovenia?
+Ljubljana
+10
+
+What is the Capital of: Solomon Islands?
+Honiara
+10
+
+What is the Capital of: Somalia?
+Mogadishu
+10
+
+What is the Capital of: South Africa?
+Pretoria
+10
+
+What is the Capital of: Spain?
+Madrid
+10
+
+What is the Capital of: Sri Lanka?
+Colombo
+10
+
+What is the Capital of: Sudan?
+Khartoum
+10
+
+What is the Capital of: Suriname?
+Paramaribo
+10
+
+What is the Capital of: Svalbard?
+Longyearbyen
+10
+
+What is the Capital of: Swaziland?
+Mbabane
+10
+
+What is the Capital of: Sweden?
+Stockholm
+10
+
+What is the Capital of: Switzerland?
+Bern
+10
+
+What is the Capital of: Syria?
+Damascus
+10
+
+What is the Capital of: Taiwan?
+Taipei
+10
+
+What is the Capital of: Tajikistan?
+Dushanbe
+10
+
+What is the Capital of: Tanzania?
+Dar es salaam
+10
+
+What is the Capital of: Thailand?
+Bangkok
+10
+
+What is the Capital of: Togo?
+Lome
+10
+
+What is the Capital of: Tokelau?
+No official capital
+10
+
+What is the Capital of: Tonga?
+Nuku'alofa
+10
+
+What is the Capital of: Trinidad and Tobago?
+Port-of-Spain
+10
+
+What is the Capital of: Tunisia?
+Tunis
+10
+
+What is the Capital of: Turkey?
+Ankara
+10
+
+What is the Capital of: Turkmenistan?
+Ashgabat
+10
+
+What is the Capital of: Turks and Caicos Islands?
+Grand turk
+10
+
+What is the Capital of: Tuvalu?
+Funafuti
+10
+
+What is the Capital of: Uganda?
+Kampala
+10
+
+What is the Capital of: Ukraine?
+Kiev
+10
+
+What is the Capital of: United Arab Emirates?
+Abu dhabi
+10
+
+What is the Capital of: United Kingdom?
+London
+10
+
+What is the Capital of: United States?
+Washington dc
+10
+
+What is the Capital of: Uruguay?
+Montevideo
+10
+
+What is the Capital of: Uzbekistan?
+Tashkent
+10
+
+What is the Capital of: Vanuatu?
+Port-vila
+10
+
+What is the Capital of: Vietnam?
+Hanoi
+10
+
+What is the Capital of: Virgin Islands?
+Charlotte amalie
+10
+
+What is the Capital of: Wallis and Futuna?
+Mata-utu
+10
+
+What is the Capital of: Yemen?
+Sanaa
+10
+
+What is the Capital of: Zambia?
+Lusaka
+10
+
+What is the Capital of: Zimbabwe?
+Harare
+10
+
+What is the capitol of the marshall islands?
+Dalap-uliga-darrit
+10
+
+What is the captain of a curling foursome called?
+Skip
+10
+
+What is the captain of a yacht usually called?
+Skipper
+10
+
+What is the captial of Libya?
+Tripoli
+10
+
+What is the captital of venezuela?
+Caracas
+10
+
+What is the cardinal number for a set of 10 elephants?
+Ten
+10
+
+What is the Cat Burglar's real name?
+Malloy
+10
+
+What is the centre division of a backgammon board called?
+Bar
+10
+
+What is the centre of a hurricane called?
+Eye
+10
+
+What is the centre of an archery target called?
+Bullseye
+10
+
+What is the chant of the hiding nerds?
+Excelsior! 
+10
+
+What is the character napoleon in one of george orwell's novels?
+Pig
+10
+
+What is the character of French wine described as 'mousseaux'?
+Sparkling
+10
+
+What is the chemical flouride said to prevent?
+Tooth decay
+10
+
+What is the chemical formula for rubidium bromide, the only one known to be a palindrome?
+Rbbr
+10
+
+What is the chemical formula for water?
+H2o
+10
+
+What is the chemical name for the mineral known as 'fool's gold'?
+Iron sulphide
+10
+
+What is the chemical name for vitamin c?
+Ascorbic acid
+10
+
+What is the chemical name for water?
+Hydrogen oxide
+10
+
+What is the chemical symbol for Aluminum?
+Al
+10
+
+What is the chemical symbol for antimony?
+Sb
+10
+
+What is the chemical symbol for Arsenic?
+As
+10
+
+What is the chemical symbol for Boron?
+B
+10
+
+What is the chemical symbol for Bromine?
+Br
+10
+
+What is the chemical symbol for Calcium?
+Ca
+10
+
+What is the chemical symbol for carbon dioxide?
+Co2
+10
+
+What is the chemical symbol for carbon?
+C
+10
+
+What is the chemical symbol for chlorine?
+Cl
+10
+
+What is the chemical symbol for fluorine?
+F
+10
+
+What is the chemical symbol for gallium?
+Ga
+10
+
+What is the chemical symbol for Nickel?
+Ni
+10
+
+What is the chemical symbol for Oxygen?
+O
+10
+
+What is the chemical symbol for platinum?
+Pt
+10
+
+What is the chemical symbol for plutonium?
+Pu
+10
+
+What is the chemical symbol for Rubidium?
+Rb
+10
+
+What is the chemical symbol for scandium?
+Sc
+10
+
+What is the chemical symbol for silicon?
+Si
+10
+
+What is the chemical symbol for Sulfur?
+S
+10
+
+What is the chemical symbol for tin?
+Sn
+10
+
+What is the chemical symbol for vandium?
+V
+10
+
+What is the chemical symbol for Xenon?
+Xe
+10
+
+What is the chief characteristic of hydroponic cultivation of plants?
+No soil
+10
+
+What is the chief food of most termites?
+Wood
+10
+
+What is the chief monetary unit of croatia?
+Kuna
+10
+
+What is the chief ore of mercury?
+Cinnabar
+10
+
+What is the chief river of Germany?
+Rhine
+10
+
+What is the Chilean Pine commonly known as?
+Monkey puzzle
+10
+
+What is the chilean pine tree better known as?
+Monkey puzzle
+10
+
+What is the chinese practice of treating illness by inserting needles into the body called?
+Acupuncture
+10
+
+What is the Christian (Latin) name for the place which the Hebrews called Golgotha, (In Aramaic, 'The Place of the Skulls)?
+Calvary
+10
+
+What is the Christian name of H.G. Wells' Mr Polly?
+Alfred
+10
+
+What is the Christian name of the Spanish conquistador Pizarro?
+Francisco
+10
+
+What is the chronicle of the nazi siege of leningrad?
+The 900 days
+10
+
+What is the Church of Englands smallest administrative unit?
+Parish
+10
+
+What is the cincinnati baseball team called?
+Reds
+10
+
+What is the circle of the earth at 0 degrees latitude?
+Equator
+10
+
+What is the claim to fame of Agra, India?
+Taj Mahal
+10
+
+What is the clarified butter used in Indian cuisine?
+Ghee
+10
+
+What is the classic fillies race run over the derby course?
+Oaks
+10
+
+What is the clavicle?
+Collarbone
+10
+
+What is the cleveland baseball team called?
+Indians
+10
+
+What is the closely cut grass that surrounds a golf green?
+Apron
+10
+
+What is the closest county to the Isle of Wight?
+Hampshire
+10
+
+What is the closest distance that cuba is from the usa?
+90 miles
+10
+
+What is the closest planet to the sun?
+Mercury
+10
+
+What is the closest relationship your father's sister-in-law could be to you?
+Your mother
+10
+
+What is the closest relative of the manatee?
+Elephant
+10
+
+What is the clotting protein in blood called?
+Fibrin
+10
+
+What is the cluster of islands in Lake Superior known as?
+The Apostle Islands
+10
+
+What is the code name of Adil, the foreign exchange student from Albania?
+Sparrow
+10
+
+What is the codename for the F-14 jet?
+Tomcat
+10
+
+What is the collarbone?
+Clavicle
+10
+
+What is the collective name for a group of foxes?
+Skulk
+10
+
+What is the collective name for a group of frogs?
+Army
+10
+
+What is the collective name for a group of hummingbirds?
+Charm
+10
+
+What is the collective name for a group of larks called?
+Exaltation
+10
+
+What is the collective name for beavers?
+Colony
+10
+
+What is the collective name of bingo, drooper, fleagle and snorky?
+Banana splits
+10
+
+What is the collective noun for a group of bears?
+Sloth
+10
+
+What is the collective noun for a group of crows?
+Murder
+10
+
+What is the collective noun for a group of tigers?
+An ambush
+10
+
+What is the collective term for a body of goods and monies from which future income can be derived?
+Capital
+10
+
+What is the collective term for a group of mules?
+A barren
+10
+
+What is the collective term for a group of nightingales?
+A watch
+10
+
+What is the collective term for a group of ravens?
+Unkindness
+10
+
+What is the collective term for crows?
+Murder
+10
+
+What is the collective term for flying geese?
+Skein
+10
+
+What is the color of the #1 ball in pool?
+Yellow
+10
+
+What is the colour of lobster's blood?
+Blue
+10
+
+What is the colour of mourning in Moslem countries?
+White
+10
+
+What is the colour of mr spocks blood?
+Green
+10
+
+What is the colour of the Italian liqeuer galliano?
+Yellow
+10
+
+What is the colour of the leather in the House of Lords?
+Red
+10
+
+What is the colour of the maple leaf on the Canadian flag?
+Red
+10
+
+What is the combination of fine clay and sand for making pottery?
+Terracotta
+10
+
+What is the common name for a coin operated record player?
+Juke box
+10
+
+What is the common name for a hammer with a wooden head?
+Mallet
+10
+
+What is the common name for acetylsalicylic acid?
+Aspirin
+10
+
+What is the common name for an animal's marsupium?
+Pouch
+10
+
+What is the common name for ascorbic acid?
+Vitamin C
+10
+
+What is the common name for Carbolic Acid?
+Phenol
+10
+
+What is the common name for citrus grandis?
+Grapefruit
+10
+
+What is the common name for corporations formed to act as trustees according to the terms of contracts known as trust agreements?
+Trust companies
+10
+
+What is the common name for Hydrogen Hydroxide?
+Water
+10
+
+What is the common name for hydrogen oxide?
+Water
+10
+
+What is the common name for Larus argentatus?
+The herring gull
+10
+
+What is the common name for lysergic acid diethylamide?
+Lsd
+10
+
+What is the common name for many species of burrowing mollusks?
+Clam
+10
+
+What is the common name for myocardial infarction?
+Heart attack
+10
+
+What is the common name for Seborrheic Dermatitis?
+Dandruff
+10
+
+What is the common name for sodium chloride?
+Salt
+10
+
+What is the common name for solid carbon dioxide?
+Dry ice
+10
+
+What is the common name for Sturnus vulgaris?
+Starling
+10
+
+What is the common name for the 'pharynx'?
+Throat
+10
+
+What is the common name for the disease rubella?
+German measles
+10
+
+What is the common name for the fever psittacosis, which is passed on to humans via birds?
+Parrot fever
+10
+
+What is the common name for the garden flower Cheiranthus?
+Wallflower
+10
+
+What is the common name for the houseplant ChlorophytuM?
+Spiderplant
+10
+
+What is the common name for the international criminal police organisation?
+Interpol
+10
+
+What is the common name for the marine animals asteroidea?
+Starfish
+10
+
+What is the common name for the psychological Rorschasch test?
+Ink blot test
+10
+
+What is the common name for tinea, a fungal skin condition, when it attacks the feet?
+Athlete's foot
+10
+
+What is the common name for white soft limestone?
+Chalk
+10
+
+What is the common name given to the Australian Kookaburra bird for its distinctive cry?
+Laughing jackass
+10
+
+What is the common name given to the larvae of a crane fly?
+Leatherjackets
+10
+
+What is the common name of scrivener's palsy?
+Writer's cramp
+10
+
+What is the common name of Squatina angelus, a fish that has become popular in britain since the 70s?
+Monkfish
+10
+
+What is the common name of the compound c5_n3?
+Pentacarbon trinitride
+10
+
+What is the common name of the compound nacl?
+Salt
+10
+
+What is the common name of the compound naoh?
+Sodium hydroxide
+10
+
+What is the common name of the disease varicella?
+Chicken pox
+10
+
+What is the common name of the element ar?
+Argon
+10
+
+What is the common name of the element ge?
+Germanium
+10
+
+What is the common name of the element h?
+Hydrogen
+10
+
+What is the common name of the family of plants which includes potatoes, peppers and tomatoes?
+Nightshades
+10
+
+What is the common name of the herb Melissa Officanalis?
+Lemon balm
+10
+
+What is the common name of the plant calluna?
+Heather
+10
+
+What is the common name of the plant Impatiens?
+Busy lizzie
+10
+
+What is the common name of the plant Myosotis?
+Forget me not
+10
+
+What is the common name of the plant Nigella?
+Love in a mist
+10
+
+What is the common name of the plant pelargonium?
+Geranium
+10
+
+What is the common name of the vegetable Beta Vularis?
+Beetroot
+10
+
+What is the common term for a 'somnambulist'?
+Sleepwalker
+10
+
+What is the common term for the condition monochromatism?
+Colour blindness
+10
+
+What is the common term for the tympanic membrane?
+Eardrum
+10
+
+What is the commonest name used in london streets?
+Victoria
+10
+
+What is the compulsive desire to give gifts?
+Doromania
+10
+
+What is the concave dish shape of a liquid inside a glass or tube?
+Meniscus
+10
+
+What is the condensed water vapour in the sky left behind jets?
+Contrail
+10
+
+What is the condition resulting from prolongued muscular or mental activity?
+Fatigue
+10
+
+What is the connection between Good Times and Different Strokes?
+Janet Jackson
+10
+
+What is the connection between Jeffersons and Good Times?
+Janet Dubois 
+10
+
+What is the connection between Sandwich,Dover,Hythe,Hastings and Romney?
+Cinque ports
+10
+
+What is the constellation leo in English?
+Lion
+10
+
+What is the correct chemical name for iron pyrites, sometimes known as 'Fool's gold'?
+Iron sulphide
+10
+
+What is the correct form of address for a foreign ambassador?
+His/Her Excellency
+10
+
+What is the correct name for a gazebo on the roof of a house?
+Belvedere
+10
+
+What is the correct name for an animal's pouch?
+Marsupium
+10
+
+What is the correct name for brown coal?
+Lignite
+10
+
+What is the correct name for larceny froma consecrated building?
+Sacrilege
+10
+
+What is the correct name for Yugoslav plum brandy?
+Slivovitz
+10
+
+What is the correct name for Yugoslavian plum brandy?
+Slivovitz
+10
+
+What is the correct term for a screwdriver with a 'star shaped' head?
+Phillips
+10
+
+What is the country code to dial for belgium?
+0032
+10
+
+What is the country code to dial for Germany?
+0049
+10
+
+What is the country code to dial for Holland?
+0031
+10
+
+What is the country with the biggest percentage of female heads of household?
+Botswana
+10
+
+What is the county town of Devon?
+Exeter
+10
+
+What is the covering on the tip of a shoelace?
+Iglet
+10
+
+What is the crazy habit of inhaling noxious fumes?
+Smoking
+10
+
+What is the crease called that is underneath your nose?
+Philtrum
+10
+
+What is the creature that is half eagle, half lion?
+Griffin
+10
+
+What is the cricketing term for an off break bowled with a leg break action?
+Googly
+10
+
+What is the crime of embracery?
+Contempt of court
+10
+
+What is the criminal number of jean valjean in 'les miserables'?
+24601
+10
+
+What is the criminal number of sideshow bob in 'the simpsons'?
+24601
+10
+
+What is the crystal anniversary?
+Fifteenth
+10
+
+What is the cube of 20?
+Eight thousand
+10
+
+What is the cube root of 27?
+Three
+10
+
+What is the cube root of 64?
+Four
+10
+
+What is the culinary term meaning to coat or sprinkle with flour or sugar?
+Dredging
+10
+
+What is the cure of disease by faith in divine power?
+Faith healing
+10
+
+What is the currancy unit of El Salvador?
+Colon
+10
+
+What is the currency of Argentina?
+Peso
+10
+
+What is the currency of Holland?
+Guilder
+10
+
+What is the currency of Iran?
+Rial
+10
+
+What is the currency of Israel?
+Shekel
+10
+
+What is the currency of poland?
+Zloty
+10
+
+What is the currency of turkey?
+Lira
+10
+
+What is the current capital of laos?
+Vientiane
+10
+
+What is the current vat rate in south africa?
+14%
+10
+
+What is the current vat rate in the uk?
+17.5%
+10
+
+What is the darkest part of a shadow called?
+Umbra
+10
+
+What is the darkest, strongest beer?
+Stout
+10
+
+What is the date of sherlock holmes, fictional birthday?
+January 6
+10
+
+What is the date on Smirnoff Vodka bottles?
+1818
+10
+
+What is the day after shrove tuesday?
+Ash wednesday
+10
+
+What is the day before ash wednesday?
+Shrove tuesday
+10
+
+What is the deciding qualification of a true cockney?
+Born within the sound of bow bells
+10
+
+What is the decimal equivalent of binary 1111?
+Fifteen
+10
+
+What is the decimal equivalent of the binary number 10011?
+Seventeen
+10
+
+What is the decimal equivalent of the binary number 11011?
+27
+10
+
+What is the decrease in size of a tissue or organ due to degeneration?
+Atrophy
+10
+
+What is the deepest cleft in the earths surface on land?
+The grand canyon
+10
+
+What is the deepest lake in the world?
+Lake baikal
+10
+
+What is the deepest land gorge?
+Grand canyon
+10
+
+What is the deleterious gas in the air, which is exhaled by humans called?
+Carbon dioxide
+10
+
+What is the densest planet in the solar system?
+Earth
+10
+
+What is the derivative of sin x?
+Cos x
+10
+
+What is the designation of a us navy nuclear carrier?
+Cvn
+10
+
+What is the destination of the Arlberg Express leaving Vienna every night at 8.10?
+Paris
+10
+
+What is the destination of the plane at the end of the film 'Casablanca'?
+Lisbon
+10
+
+What is the detailed mapping of an area?
+Topography
+10
+
+What is the detroit baseball team called?
+Tigers
+10
+
+What is the Diamond Anniversary?
+Sixtieth
+10
+
+What is the difference between the manchurian tiger and the Siberian tiger?
+No difference
+10
+
+What is the dire straits song title for 'here comes johnny singing oldies, goldies ...'?
+Walk of life
+10
+
+What is the discharge of a liquid from a surface, usually pores or incisions?
+Exudation
+10
+
+What is the disease frequent in asia, africa and America, which is believed to result from eating polished rice?
+Beri beri
+10
+
+What is the dish made from peppers, aubergines, courgettes and tomatoes called?
+Ratatouille
+10
+
+What is the dish of chopped avocado with onions, tomatoes, chilli and seasoning called?
+Guacamole
+10
+
+What is the distance between the center and the edge of a circle called?
+Radius
+10
+
+What is the distance between two rails on a track called?
+Gauge
+10
+
+What is the distance from earth to the sun?
+93 million miles
+10
+
+What is the distance of straight-line sprints in drag racing?
+A quarter-mile
+10
+
+What is the dogs name in peter pan?
+Nana
+10
+
+What is the drink 'southern comfort' flavoured with?
+Peaches
+10
+
+What is the drug that is used to treat Parkinson's disease?
+Dopamine
+10
+
+What is the drummer's name in 'the muppet show'?
+Animal
+10
+
+What is the dry ingredient in a roux?
+Flour
+10
+
+What is the eardrum?
+Tympanic membrane
+10
+
+What is the earth's atmosphere and the space beyond?
+Aerospace
+10
+
+What is the earth's layer just below the crust?
+Mantle
+10
+
+What is the earth's outer layer of surface soil or crust?
+Lithosphere
+10
+
+What is the easternmost city in Germany?
+Berlin
+10
+
+What is the easternmost county in England?
+Norfolk
+10
+
+What is the ecclesiastical title and office next in rank to that of the pope?
+Cardinal
+10
+
+What is the echidna's favorite food?
+Ants
+10
+
+What is the effect of a beta blocker?
+Lower the blood pressure
+10
+
+What is the effect of the earth's rotation on the wind called?
+Coriolis
+10
+
+What is the eighth sign of the zodiac?
+Scorpio
+10
+
+What is the element for the symbol Ac?
+Actinium
+10
+
+What is the element for the symbol Ag?
+Silver
+10
+
+What is the element for the symbol Al?
+Aluminium
+10
+
+What is the element for the symbol Am?
+Americium
+10
+
+What is the element for the symbol Ar?
+Argon
+10
+
+What is the element for the symbol As?
+Arsenic
+10
+
+What is the element for the symbol At?
+Astatine
+10
+
+What is the element for the symbol Au?
+Gold
+10
+
+What is the element for the symbol B?
+Boron
+10
+
+What is the element for the symbol Ba?
+Barium
+10
+
+What is the element for the symbol Be?
+Beryllium
+10
+
+What is the element for the symbol Bi?
+Bismuth
+10
+
+What is the element for the symbol Bk?
+Berkelium
+10
+
+What is the element for the symbol Br?
+Bromine
+10
+
+What is the element for the symbol C?
+Carbon
+10
+
+What is the element for the symbol Ca?
+Calcium
+10
+
+What is the element for the symbol Cd?
+Cadium
+10
+
+What is the element for the symbol Ce?
+Cerium
+10
+
+What is the element for the symbol Cf?
+Californium
+10
+
+What is the element for the symbol Cl?
+Chlorine
+10
+
+What is the element for the symbol Cm?
+Curium
+10
+
+What is the element for the symbol Co?
+Cobalt
+10
+
+What is the element for the symbol Cr?
+Chromium
+10
+
+What is the element for the symbol Cs?
+Cesium
+10
+
+What is the element for the symbol Cu?
+Copper
+10
+
+What is the element for the symbol Dy?
+Dysprosium
+10
+
+What is the element for the symbol Er?
+Erbium
+10
+
+What is the element for the symbol Es?
+Einsteinium
+10
+
+What is the element for the symbol Eu?
+Europium
+10
+
+What is the element for the symbol F?
+Flourine
+10
+
+What is the element for the symbol Fe?
+Iron
+10
+
+What is the element for the symbol Fm?
+Fermium
+10
+
+What is the element for the symbol Fr?
+Francium
+10
+
+What is the element for the symbol Ga?
+Gallium
+10
+
+What is the element for the symbol Gd?
+Gadolinium
+10
+
+What is the element for the symbol Ge?
+Germanium
+10
+
+What is the element for the symbol H?
+Hydrogen
+10
+
+What is the element for the symbol Ha?
+Hahnium
+10
+
+What is the element for the symbol He?
+Helium
+10
+
+What is the element for the symbol Hf?
+Hafnium
+10
+
+What is the element for the symbol Hg?
+Mercury
+10
+
+What is the element for the symbol Ho?
+Holmium
+10
+
+What is the element for the symbol Hs?
+Hassium
+10
+
+What is the element for the symbol I?
+Iodine
+10
+
+What is the element for the symbol In?
+Indium
+10
+
+What is the element for the symbol Ir?
+Iridium
+10
+
+What is the element for the symbol K?
+Potassium
+10
+
+What is the element for the symbol Kr?
+Krypton
+10
+
+What is the element for the symbol La?
+Lanthanum
+10
+
+What is the element for the symbol Li?
+Lithium
+10
+
+What is the element for the symbol Lr?
+Lawtencium
+10
+
+What is the element for the symbol Lu?
+Lutenium
+10
+
+What is the element for the symbol Md?
+Mendelevium
+10
+
+What is the element for the symbol Mg?
+Magnesium
+10
+
+What is the element for the symbol Mo?
+Molybdenum
+10
+
+What is the element for the symbol Mt?
+Manganese
+10
+
+What is the element for the symbol N?
+Nitrogen
+10
+
+What is the element for the symbol Na?
+Sodium
+10
+
+What is the element for the symbol Nb?
+Niobium
+10
+
+What is the element for the symbol Nd?
+Neodymium
+10
+
+What is the element for the symbol Ne?
+Neon
+10
+
+What is the element for the symbol Ni?
+Nickel
+10
+
+What is the element for the symbol No?
+Nobelium
+10
+
+What is the element for the symbol Np?
+Neptunium
+10
+
+What is the element for the symbol Ns?
+Neilsborium
+10
+
+What is the element for the symbol O?
+Oxygen
+10
+
+What is the element for the symbol Os?
+Osamian
+10
+
+What is the element for the symbol P?
+Phosphorus
+10
+
+What is the element for the symbol Pa?
+Protactinium
+10
+
+What is the element for the symbol Pb?
+Lead
+10
+
+What is the element for the symbol Pd?
+Palladium
+10
+
+What is the element for the symbol Pm?
+Promethium
+10
+
+What is the element for the symbol Po?
+Polonium
+10
+
+What is the element for the symbol Pr?
+Praseodymium
+10
+
+What is the element for the symbol Pt?
+Platinum
+10
+
+What is the element for the symbol Pu?
+Plutonium
+10
+
+What is the element for the symbol Ra?
+Radium
+10
+
+What is the element for the symbol Rb?
+Rubidium
+10
+
+What is the element for the symbol Re?
+Rhenium
+10
+
+What is the element for the symbol Rf?
+Rutherfordium
+10
+
+What is the element for the symbol Rh?
+Rhodium
+10
+
+What is the element for the symbol Rn?
+Radon
+10
+
+What is the element for the symbol Ru?
+Ruthenium
+10
+
+What is the element for the symbol S?
+Sulfur
+10
+
+What is the element for the symbol Sb?
+Antimony
+10
+
+What is the element for the symbol Sc?
+Scandium
+10
+
+What is the element for the symbol Se?
+Selenium
+10
+
+What is the element for the symbol Sg?
+Seaborgium
+10
+
+What is the element for the symbol Si?
+Silicon
+10
+
+What is the element for the symbol Sm?
+Samarium
+10
+
+What is the element for the symbol Sn?
+Tin
+10
+
+What is the element for the symbol Sr?
+Strontium
+10
+
+What is the element for the symbol Ta?
+Tantalum
+10
+
+What is the element for the symbol Tb?
+Terbium
+10
+
+What is the element for the symbol Tc?
+Technetium
+10
+
+What is the element for the symbol Te?
+Tellurium
+10
+
+What is the element for the symbol th?
+Thorium
+10
+
+What is the element for the symbol Ti?
+Titanium
+10
+
+What is the element for the symbol Tl?
+Thalium
+10
+
+What is the element for the symbol Tm?
+Thulium
+10
+
+What is the element for the symbol U?
+Uranium
+10
+
+What is the element for the symbol V?
+Vanadium
+10
+
+What is the element for the symbol W?
+Tungsten
+10
+
+What is the element for the symbol Xi?
+Xenon
+10
+
+What is the element for the symbol Yb?
+Ytterbium
+10
+
+What is the element for the symbol Yt?
+Yttrium
+10
+
+What is the element for the symbol Zn?
+Zinc
+10
+
+What is the element symbol for Actinium?
+Ac
+10
+
+What is the element symbol for Aluminum?
+Al
+10
+
+What is the element symbol for Americum?
+Am
+10
+
+What is the element symbol for Antimony?
+Sb
+10
+
+What is the element symbol for Argon?
+Ar
+10
+
+What is the element symbol for Arsenic (gray)?
+As
+10
+
+What is the element symbol for Astatine?
+At
+10
+
+What is the element symbol for Barium?
+Ba
+10
+
+What is the element symbol for Berkelium?
+Bk
+10
+
+What is the element symbol for Berylium?
+Be
+10
+
+What is the element symbol for Bismuth?
+Bi
+10
+
+What is the element symbol for Bohrium?
+Bh
+10
+
+What is the element symbol for Boron?
+B
+10
+
+What is the element symbol for Bromine?
+Br
+10
+
+What is the element symbol for Cadmium?
+Cd
+10
+
+What is the element symbol for Calcium?
+Ca
+10
+
+What is the element symbol for Californium?
+Cf
+10
+
+What is the element symbol for Carbon?
+C
+10
+
+What is the element symbol for Cerium?
+Ce
+10
+
+What is the element symbol for Cesium?
+Cs
+10
+
+What is the element symbol for Chlorine?
+Cl
+10
+
+What is the element symbol for Chromium?
+Cr
+10
+
+What is the element symbol for Cobalt?
+Co
+10
+
+What is the element symbol for Copper?
+Cu
+10
+
+What is the element symbol for Curium?
+Cm
+10
+
+What is the element symbol for Dubnium?
+Db
+10
+
+What is the element symbol for Dysprosium?
+Dy
+10
+
+What is the element symbol for Einsteinium?
+Es
+10
+
+What is the element symbol for Erbium?
+Er
+10
+
+What is the element symbol for Europium?
+Eu
+10
+
+What is the element symbol for Fermium?
+Fm
+10
+
+What is the element symbol for Fluorine?
+F
+10
+
+What is the element symbol for Francium?
+Fr
+10
+
+What is the element symbol for Gadolinium?
+Gd
+10
+
+What is the element symbol for Gallium?
+Ga
+10
+
+What is the element symbol for Germanium?
+Ge
+10
+
+What is the element symbol for Gold?
+Au
+10
+
+What is the element symbol for Hafnium?
+Hf
+10
+
+What is the element symbol for Hassium?
+Hs
+10
+
+What is the element symbol for Helium?
+He
+10
+
+What is the element symbol for Holmium?
+Ho
+10
+
+What is the element symbol for hydrogen?
+H
+10
+
+What is the element symbol for Indium?
+In
+10
+
+What is the element symbol for Iodine?
+I
+10
+
+What is the element symbol for Iridium?
+Ir
+10
+
+What is the element symbol for Iron?
+Fe
+10
+
+What is the element symbol for Krypton?
+Kr
+10
+
+What is the element symbol for Lanthanum?
+La
+10
+
+What is the element symbol for Lawrencium?
+Lr
+10
+
+What is the element symbol for Lead?
+Pb
+10
+
+What is the element symbol for Lithium?
+Li
+10
+
+What is the element symbol for Lutetium?
+Lu
+10
+
+What is the element symbol for Magnesium?
+Mg
+10
+
+What is the element symbol for Manganese?
+Mn
+10
+
+What is the element symbol for Meitnerium?
+Mt
+10
+
+What is the element symbol for Mendelevium?
+Md
+10
+
+What is the element symbol for Mercury?
+Hg
+10
+
+What is the element symbol for Molybdenum?
+Mo
+10
+
+What is the element symbol for Neodymium?
+Nd
+10
+
+What is the element symbol for Neon?
+Ne
+10
+
+What is the element symbol for Neptunium?
+Np
+10
+
+What is the element symbol for Nickel?
+Ni
+10
+
+What is the element symbol for Niobium (Columbium)?
+Nb
+10
+
+What is the element symbol for Nitrogen?
+N
+10
+
+What is the element symbol for Osmium?
+Os
+10
+
+What is the element symbol for Palladium?
+Pd
+10
+
+What is the element symbol for Phosphorous (white)?
+P
+10
+
+What is the element symbol for Platinum?
+Pt
+10
+
+What is the element symbol for Plutonium?
+Pu
+10
+
+What is the element symbol for Polonium?
+Po
+10
+
+What is the element symbol for Potassium?
+K
+10
+
+What is the element symbol for Praseodymium?
+Pr
+10
+
+What is the element symbol for Promethium?
+Pm
+10
+
+What is the element symbol for Protactinium?
+Pa
+10
+
+What is the element symbol for Radium?
+Ra
+10
+
+What is the element symbol for Radon?
+Rn
+10
+
+What is the element symbol for Rhenium?
+Re
+10
+
+What is the element symbol for Rhodium?
+Rh
+10
+
+What is the element symbol for Rubidium?
+Rb
+10
+
+What is the element symbol for Ruthenium?
+Ru
+10
+
+What is the element symbol for Rutherfordium?
+Rf
+10
+
+What is the element symbol for Samarium?
+Sm
+10
+
+What is the element symbol for Scandium?
+Sc
+10
+
+What is the element symbol for Seaborgium?
+Sg
+10
+
+What is the element symbol for Selenium (gray)?
+Se
+10
+
+What is the element symbol for Silicon?
+Si
+10
+
+What is the element symbol for Silver?
+Ag
+10
+
+What is the element symbol for Sodium?
+Na
+10
+
+What is the element symbol for Strontium?
+Sr
+10
+
+What is the element symbol for Sulfur?
+S
+10
+
+What is the element symbol for Tantalum?
+Ta
+10
+
+What is the element symbol for Technetium?
+Tc
+10
+
+What is the element symbol for Tellurium?
+Te
+10
+
+What is the element symbol for Terbium?
+Tb
+10
+
+What is the element symbol for Thallium?
+Tl
+10
+
+What is the element symbol for Thorium?
+Th
+10
+
+What is the element symbol for Thulium?
+Tm
+10
+
+What is the element symbol for Tin (white)?
+Sn
+10
+
+What is the element symbol for Titanium?
+Ti
+10
+
+What is the element symbol for Tungsten?
+W
+10
+
+What is the element symbol for Uranium?
+U
+10
+
+What is the element symbol for Vanadium?
+V
+10
+
+What is the element symbol for Xenon?
+Xe
+10
+
+What is the element symbol for Ytterbium?
+Yb
+10
+
+What is the element symbol for Yttrium?
+Y
+10
+
+What is the element symbol for Zinc?
+Zn
+10
+
+What is the element symbol for Zirconium?
+Zr
+10
+
+What is the eleventh letter of the greek alphabet?
+Lambda
+10
+
+What is the eleventh month of the year?
+November
+10
+
+What is the end of the song 'it's beginning to look a lot like ____
+Christmas
+10
+
+What is the English equivalent of the name ian?
+John
+10
+
+What is the English equivalent of the name ivan?
+John
+10
+
+What is the English equivalent of the Spanish boob day?
+April fool's day
+10
+
+What is the English for umbrella?
+Little shaded area
+10
+
+What is the English meaning of the constellation's name Canis Major?
+Big dog
+10
+
+What is the English name for the constellation with Latin name Camelopardis?
+Giraffe
+10
+
+What is the English name for the constellation with the Latin name Monoceros It's a mythical creature?
+Unicorn
+10
+
+What is the English name for what Americans call confectioners sugar?
+Icing sugar
+10
+
+What is the English nickname of Beethoven's opus 91, written to commemorate Wellington's victory at Vitoria?
+Battle symphony
+10
+
+What is the English statute of 1689 guaranteeing the rights & liberty of the individual subject?
+Bill of rights
+10
+
+What is the English title of the German opera, 'Die lustigen Weiber von Windsor'?
+The merry wives of windsor
+10
+
+What is the English translation of the French fending term 'touche'?
+I was touched
+10
+
+What is the English translation of the title of Giuseppe Verdi opera, LaTraviata?
+Falcon's Lair
+10
+
+What is the English version of the American broiling?
+Grilling
+10
+
+What is the English word for 'zorro'?
+Fox
+10
+
+What is the English word for marijuana?
+Mary jane
+10
+
+What is the equivalent of minus 40 degrees celsius?
+Minus forty degrees fahrenheit
+10
+
+What is the equivalent RAF rank to Sub-lieutenant RN and Lieutenant in the army?
+Flying officer
+10
+
+What is the equivalent Spanish acronym for ufo?
+Ovni
+10
+
+What is the escape velocity from the earth's gravity (mph)?
+25,000 mph
+10
+
+What is the essential characteristic of aerobic exercise?
+Oxygen is consumed
+10
+
+What is the estimated weight of the great pyramid of Egypt?
+6,648,000 tons
+10
+
+What is The Eternal City?
+Rome
+10
+
+What is the European city of Culture for 1998?
+Stockholm
+10
+
+What is the European equivalnet of a Nonillion?
+Quintillion
+10
+
+What is the eve of All Saints Day?
+Halloween
+10
+
+What is the exact translation of pot pourri?
+Putrid pot
+10
+
+What is the explosion produced when fuel is exposed to a spark?
+Combustion
+10
+
+What is the expulsion of evil spirits from persons or places through ritual methods?
+Exorcism
+10
+
+What is the exterior of the Taj Mahal made from?
+Marble
+10
+
+What is the f-117a better known as?
+Stealth fighter
+10
+
+What is the fahrenheit equivalent of 20 degrees centigrade?
+Sixty eight
+10
+
+What is the fairytale world of c s lewis's the lion, the witch and the wardrobe?
+Narnia
+10
+
+What is the familiar name of the fair city also known as Baile Atha Cliath?
+Dublin
+10
+
+What is the family link between Dallas and the King of Rock and Roll?
+Priscilla presley
+10
+
+What is the family name in the h e bates story a little of what you fancy?
+Larkin
+10
+
+What is the family name of the Dukes of Bedford?
+Russell
+10
+
+What is the family name of the Dukes of Northumberland?
+Percy
+10
+
+What is the family name of the Dukes of Somerset?
+Seymour
+10
+
+What is the famous cave on the island of staffa?
+Fingals
+10
+
+What is the fastest bird?
+Spine tailed swift
+10
+
+What is the fastest fish in the world?
+Sailfish
+10
+
+What is the fastest flowing river in the world?
+Amazon
+10
+
+What is the fastest land animal over a prolongued distance?
+Antelope
+10
+
+What is the fastest land animal?
+Cheetah
+10
+
+What is the fastest stroke in swimming?
+Freestyle
+10
+
+What is the favorite plant of the monarch butterfly?
+Milkweed
+10
+
+What is the Feast of First Fruits on 1 August?
+Lammas
+10
+
+What is the federal district in southeastern Australia, bordered by the state of new south wales?
+Australian capital territory
+10
+
+What is the fibre from the husk of the coconut, now used in soil-less composts, called?
+Coir
+10
+
+What is the fictitious name of a defendent?
+Richard roe
+10
+
+What is the fictitious name of a plaintiff?
+John doe
+10
+
+What is the fifth day of the week?
+Thursday
+10
+
+What is the fifth element in the periodic table?
+Boron
+10
+
+What is the fifth month of the year?
+May
+10
+
+What is the fifth most popular meal ordered in sit down restaurants in the U S?
+Baked ham
+10
+
+What is the final event of a triathlon?
+The marathon
+10
+
+What is the first book in the vampire chronicles?
+Interview with a vampire
+10
+
+What is the first book of the Bible?
+Genesis
+10
+
+What is the first book of the old testament?
+Genesis
+10
+
+What is the first capital of laos?
+Luang prabang
+10
+
+What is the first commandment?
+Thou shalt have no other god but me
+10
+
+What is the first day of lent called?
+Ash wednesday
+10
+
+What is the first day of the week?
+Sunday
+10
+
+What is the first event in the Decathlon?
+100 metres
+10
+
+What is the first ingredient in most soda pops?
+Carbonated water
+10
+
+What is the first letter of the Greek alphabet?
+Alpha
+10
+
+What is the first letter of the Russian alphabet?
+A
+10
+
+What is the first level of a computer memory hierarchy?
+Cache
+10
+
+What is the first month of the year?
+January
+10
+
+What is the first name of cricket captain Colin Cowderys test cricketing son?
+Christopher
+10
+
+What is the first name of Natalie Wood's sister?
+Lana
+10
+
+What is the first name of Sean Connery's actor son?
+Jason
+10
+
+What is the first name of the French painter Matisse?
+Henri
+10
+
+What is the first name of the French painter Monet?
+Claude
+10
+
+What is the first name of the inventor of braille?
+Louis
+10
+
+What is the first name of the son of David and Victoria Beckham?
+Brooklyn
+10
+
+What is the first name of the son of patsy kensit and liam gallagher?
+Lennon
+10
+
+What is the first name of the title character in the Boris Pasternak novel Dr. Zhivago?
+Yuri
+10
+
+What is the first name of U2's lead singer?
+Paul
+10
+
+What is the first name of webster, the man who published a dictionary still used today?
+Noah
+10
+
+What is the first post if it comes at 9.30pm?
+British army bugle call
+10
+
+What is the first prime number after 1,000,000?
+1,000,003
+10
+
+What is the first sign of the zodiac, symbolized by the ram?
+Aries
+10
+
+What is the first sign of the Zodiac?
+Aries
+10
+
+What is the first Sunday after the first full moon after March 21?
+Easter
+10
+
+What is the first Sunday after the first full moon after the vernal equinox?
+Easter sunday
+10
+
+What is the first thing that 97% of people will write when offered a new pen?
+Their name
+10
+
+What is the first word played in the Scrabble rules demostration game?
+Horn
+10
+
+What is the flap which closes the windpipe so you can eat and not choke?
+Epiglottis
+10
+
+What is the flattest continent?
+Australia
+10
+
+What is the flavour of the herb fennel?
+Anise
+10
+
+What is the flavouring in ouzo?
+Aniseed
+10
+
+What is the flower for the month of May?
+Lily of the valley
+10
+
+What is the flower of January?
+Carnation
+10
+
+What is the flower that stands for: ambassador of love?
+Cabbage rose
+10
+
+What is the flower that stands for: an appointed meeting?
+Everlasting pea
+10
+
+What is the flower that stands for: expectation?
+Anemone
+10
+
+What is the flower that stands for: extent?
+Gourd 
+10
+
+What is the flower that stands for: extinguished hopes?
+Major convolvulus
+10
+
+What is the flower that stands for: falsehood?
+Yellow lily
+10
+
+What is the flower that stands for: fame?
+Tulip
+10
+
+What is the flower that stands for: fantastic extravagance?
+Scarlet poppy
+10
+
+What is the flower that stands for: farewell?
+Michaelmas daisy
+10
+
+What is the flower that stands for: fashion?
+Lady's mantle
+10
+
+What is the flower that stands for: fate?
+Hemp
+10
+
+What is the flower that stands for: feasting?
+Parsley
+10
+
+What is the flower that stands for: fecundity?
+Hollyhock
+10
+
+What is the flower that stands for: female ambition?
+White hollyhock
+10
+
+What is the flower that stands for: female fidelity?
+Speedwell
+10
+
+What is the flower that stands for: festivity?
+Parsley
+10
+
+What is the flower that stands for: fickleness?
+Pink larkspur
+10
+
+What is the flower that stands for: fidelity in love?
+Lemon blossoms
+10
+
+What is the flower that stands for: filial love?
+Virgin's bower
+10
+
+What is the flower that stands for: fine arts?
+Acanthus
+10
+
+What is the flower that stands for: finesse?
+Sweet william
+10
+
+What is the flower that stands for: fire, flame?
+Fleur-de-luce
+10
+
+What is the flower that stands for: first emotions of love?
+Purple lilac
+10
+
+What is the flower that stands for: fitness?
+Sweet flag
+10
+
+What is the flower that stands for: flattery?
+Venus' looking-glass
+10
+
+What is the flower that stands for: flee away?
+Pennyroyal
+10
+
+What is the flower that stands for: folly?
+Columbine
+10
+
+What is the flower that stands for: foolishness?
+Pomegranate
+10
+
+What is the flower that stands for: foresight?
+Holly
+10
+
+What is the flower that stands for: forget me not?
+Forget-me-not
+10
+
+What is the flower that stands for: forgetfulness?
+Moonwort
+10
+
+What is the flower that stands for: forsaken love?
+Creeping willow
+10
+
+What is the flower that stands for: fraternal love?
+Woodbine
+10
+
+What is the flower that stands for: freedom?
+Water willow
+10
+
+What is the flower that stands for: freshness?
+Damask rose
+10
+
+What is the flower that stands for: friendship?
+Rose acacia
+10
+
+What is the flower that stands for: gain?
+Cabbage
+10
+
+What is the flower that stands for: generosity?
+Orange tree
+10
+
+What is the flower that stands for: generous and devoted affection?
+French honeysuckle
+10
+
+What is the flower that stands for: genius?
+Plane tree
+10
+
+What is the flower that stands for: girlhood?
+White rosebud
+10
+
+What is the flower that stands for: gladness?
+Myrrh
+10
+
+What is the flower that stands for: good wishes?
+Sweet basil
+10
+
+What is the flower that stands for: goodness?
+Mercury
+10
+
+What is the flower that stands for: gossip?
+Coboea
+10
+
+What is the flower that stands for: grace and elegance?
+Yellow jasmine
+10
+
+What is the flower that stands for: grace?
+Multiflora rose
+10
+
+What is the flower that stands for: gracefulness?
+Birch tree
+10
+
+What is the flower that stands for: grandeur?
+Ash tree
+10
+
+What is the flower that stands for: happy love?
+Bridal rose
+10
+
+What is the flower that stands for: hatred?
+Basil
+10
+
+What is the flower that stands for: health?
+Iceland moss
+10
+
+What is the flower that stands for: heart's mystery?
+Crimson polyanthus
+10
+
+What is the flower that stands for: heartlessness?
+Hydrangea
+10
+
+What is the flower that stands for: hidden worth?
+Coriander
+10
+
+What is the flower that stands for: honesty?
+Honesty
+10
+
+What is the flower that stands for: hope extinguished?
+Major convolvulus
+10
+
+What is the flower that stands for: hope in adversity?
+Spruce pine
+10
+
+What is the flower that stands for: hopeless love?
+Yellow tulip
+10
+
+What is the flower that stands for: hopeless, not heartless?
+Love-lies bleeding
+10
+
+What is the flower that stands for: hospitality?
+Oak tree
+10
+
+What is the flower that stands for: i am too happy?
+Cape jasmine
+10
+
+What is the flower that stands for: i am worthy of you?
+White rose
+10
+
+What is the flower that stands for: i am your captive?
+Peach blossom
+10
+
+What is the flower that stands for: i aspire to thy smile?
+Daily rose
+10
+
+What is the flower that stands for: i attach myself to you?
+Indian jamsine
+10
+
+What is the flower that stands for: i change but in death?
+Bay leaf
+10
+
+What is the flower that stands for: i declare against you?
+Liquorice
+10
+
+What is the flower that stands for: i desire a return of affection?
+Jonquil
+10
+
+What is the flower that stands for: i die if neglected?
+Laurestina
+10
+
+What is the flower that stands for: i engage you for the next dance?
+Ivy geranium
+10
+
+What is the flower that stands for: i feel your kindness?
+Flax
+10
+
+What is the flower that stands for: i have a message for you?
+Iris
+10
+
+What is the flower that stands for: i live for thee?
+Cedar leaf
+10
+
+What is the flower that stands for: i love?
+Red chrysanthemum
+10
+
+What is the flower that stands for: i surmount difficulties?
+Mistletoe
+10
+
+What is the flower that stands for: i will not answer hastily?
+Monthly honeysuckele
+10
+
+What is the flower that stands for: i will not survive you?
+Black mulberry
+10
+
+What is the flower that stands for: imagination?
+Lupin
+10
+
+What is the flower that stands for: immortality?
+Amaranth
+10
+
+What is the flower that stands for: impatience?
+Yellow balsam
+10
+
+What is the flower that stands for: impatient resolves?
+Red balsam
+10
+
+What is the flower that stands for: inconstancy in love?
+Wild honeysuckle
+10
+
+What is the flower that stands for: inconstancy?
+Evening primrose
+10
+
+What is the flower that stands for: incorruptible?
+Cedar of lebanon
+10
+
+What is the flower that stands for: indiscretion?
+Almond tree
+10
+
+What is the flower that stands for: ingenuity?
+Pencil-leaved geranium
+10
+
+What is the flower that stands for: ingenuous simplicity?
+Mouse-eared chickweed
+10
+
+What is the flower that stands for: injustice?
+Hop
+10
+
+What is the flower that stands for: insincerity?
+Foxglove
+10
+
+What is the flower that stands for: insinuation?
+Great bindweed
+10
+
+What is the flower that stands for: inspiration?
+Angelica
+10
+
+What is the flower that stands for: instability?
+Dahlia
+10
+
+What is the flower that stands for: Ireland?
+Shamrock
+10
+
+What is the flower that stands for: jest?
+Southernwood
+10
+
+What is the flower that stands for: joy?
+Wood sorrel
+10
+
+What is the flower that stands for: joys to come?
+Celandine
+10
+
+What is the flower that stands for: justice shall be done to you?
+Coltsfoot
+10
+
+What is the flower that stands for: keep your promises?
+Plum tree
+10
+
+What is the flower that stands for: lamentation?
+Aspen tree
+10
+
+What is the flower that stands for: lasting pleasure?
+Everlasting pea
+10
+
+What is the flower that stands for: levity, lightness?
+Larkspur
+10
+
+What is the flower that stands for: life?
+Lucerne
+10
+
+What is the flower that stands for: lightheartedness?
+Shamrock
+10
+
+What is the flower that stands for: longevity?
+Fig
+10
+
+What is the flower that stands for: love in idleness?
+Wild violet
+10
+
+What is the flower that stands for: love is dangerous?
+Carolina rose
+10
+
+What is the flower that stands for: love of nature?
+Magnolia
+10
+
+What is the flower that stands for: love returned?
+Ambrosia
+10
+
+What is the flower that stands for: love's oracle?
+Dandelion
+10
+
+What is the flower that stands for: lowliness?
+Bramble
+10
+
+What is the flower that stands for: luxury?
+Chesnut tree
+10
+
+What is the flower that stands for: malevolence?
+Lobelia
+10
+
+What is the flower that stands for: marriage?
+Ivy geranium
+10
+
+What is the flower that stands for: maternal affection?
+Cinquefoil
+10
+
+What is the flower that stands for: maternal love?
+Moss rosebud
+10
+
+What is the flower that stands for: maternal tenderness?
+Wood sorrel
+10
+
+What is the flower that stands for: matrimony?
+American linden
+10
+
+What is the flower that stands for: meekness?
+Birch tree
+10
+
+What is the flower that stands for: mental beauty?
+Clematis
+10
+
+What is the flower that stands for: message?
+Iris 
+10
+
+What is the flower that stands for: modesty and purity?
+White lily
+10
+
+What is the flower that stands for: momentary happiness?
+Virginian spiderwort
+10
+
+What is the flower that stands for: my best days are past?
+Meadow saffron
+10
+
+What is the flower that stands for: my compliments?
+Iris
+10
+
+What is the flower that stands for: my heart is in flames?
+Provence rose
+10
+
+What is the flower that stands for: nature love?
+Magnolia
+10
+
+What is the flower that stands for: neglected beauty?
+Throatwort
+10
+
+What is the flower that stands for: never ceasing remembrance?
+Everlasting
+10
+
+What is the flower that stands for: night?
+Minor convolvulus
+10
+
+What is the flower that stands for: old age?
+Tree of life
+10
+
+What is the flower that stands for: only deserve my love?
+Campion rose
+10
+
+What is the flower that stands for: ornament?
+Hornbeam tree
+10
+
+What is the flower that stands for: painting?
+Auricula
+10
+
+What is the flower that stands for: parental affection?
+Sorrell
+10
+
+What is the flower that stands for: patriotism?
+Nasturtium
+10
+
+What is the flower that stands for: peace?
+Olive branch
+10
+
+What is the flower that stands for: pensiveness?
+Cowslip
+10
+
+What is the flower that stands for: perfect excellence?
+Strawberry
+10
+
+What is the flower that stands for: perfected loveliness?
+White camelia japonica
+10
+
+What is the flower that stands for: perform your promise?
+Plum tree
+10
+
+What is the flower that stands for: perplexity?
+Love-in-a-mist
+10
+
+What is the flower that stands for: persecution?
+Chequered fritillary
+10
+
+What is the flower that stands for: pity?
+Pine
+10
+
+What is the flower that stands for: platonic love?
+Rose acacia
+10
+
+What is the flower that stands for: play?
+Hyacinth
+10
+
+What is the flower that stands for: pleasant recollections?
+White periwinkle
+10
+
+What is the flower that stands for: pleasure and pain?
+Dog rose
+10
+
+What is the flower that stands for: pleasure?
+Poppy
+10
+
+What is the flower that stands for: pleasures of memory?
+White periwinkle
+10
+
+What is the flower that stands for: poetry?
+Eglantine
+10
+
+What is the flower that stands for: poverty?
+Evergreen clematis
+10
+
+What is the flower that stands for: power?
+Cress
+10
+
+What is the flower that stands for: precaution?
+Golden rod
+10
+
+What is the flower that stands for: precocity?
+May rose
+10
+
+What is the flower that stands for: presumption?
+Snapdragon
+10
+
+What is the flower that stands for: pretension?
+Spiked willow herb
+10
+
+What is the flower that stands for: prettiness?
+Pompon rose
+10
+
+What is the flower that stands for: promptness?
+Ten-week stock
+10
+
+What is the flower that stands for: prudence?
+Mountain iash
+10
+
+What is the flower that stands for: pure and ardent love?
+Double red pink
+10
+
+What is the flower that stands for: pure and lovely?
+Red rosebud
+10
+
+What is the flower that stands for: pure love?
+Single red pink
+10
+
+What is the flower that stands for: purity and sweetness?
+White lily
+10
+
+What is the flower that stands for: recall?
+Silver-leaved geranium
+10
+
+What is the flower that stands for: refusal?
+Striped carnation
+10
+
+What is the flower that stands for: regard?
+Daffodil
+10
+
+What is the flower that stands for: relieve my anxiety?
+Christmas rose
+10
+
+What is the flower that stands for: rendezvous?
+Chickweed
+10
+
+What is the flower that stands for: reserve?
+Maple
+10
+
+What is the flower that stands for: resolution?
+Purple columbine
+10
+
+What is the flower that stands for: restoration?
+Persicaria
+10
+
+What is the flower that stands for: retaliation?
+Scotch thistle
+10
+
+What is the flower that stands for: return of happiness?
+Lily of the valley
+10
+
+What is the flower that stands for: revenge?
+Birdsfoot trefoil
+10
+
+What is the flower that stands for: reverie?
+Flowering gern
+10
+
+What is the flower that stands for: reward of merit?
+Bay wreath
+10
+
+What is the flower that stands for: reward of virtue?
+Garland of roses
+10
+
+What is the flower that stands for: riches?
+Corn
+10
+
+What is the flower that stands for: rivalry?
+Rocket
+10
+
+What is the flower that stands for: rupture of a contract?
+Broken straw
+10
+
+What is the flower that stands for: rural happiness?
+Yellow violet
+10
+
+What is the flower that stands for: rustic oracle?
+Dandelion
+10
+
+What is the flower that stands for: sadness?
+Dead leaves
+10
+
+What is the flower that stands for: safety?
+Traveller's joy
+10
+
+What is the flower that stands for: satire?
+Prickly pear
+10
+
+What is the flower that stands for: self-esteem?
+Poet's narcissus
+10
+
+What is the flower that stands for: sensitiveness?
+Mimosa
+10
+
+What is the flower that stands for: sensuality?
+Spanish jasmine
+10
+
+What is the flower that stands for: separation?
+Carolina jasmine
+10
+
+What is the flower that stands for: severity?
+Branch of thorns
+10
+
+What is the flower that stands for: shame?
+Peony
+10
+
+What is the flower that stands for: sharpness?
+Barberry
+10
+
+What is the flower that stands for: shyness?
+Vetch
+10
+
+What is the flower that stands for: silliness?
+Fool's parsley
+10
+
+What is the flower that stands for: simplicity?
+American sweet-brier
+10
+
+What is the flower that stands for: sincerity?
+Fern
+10
+
+What is the flower that stands for: slander?
+Stinging nettle
+10
+
+What is the flower that stands for: sleep?
+White poppy
+10
+
+What is the flower that stands for: slighted love?
+Yellow chrysanthemum
+10
+
+What is the flower that stands for: splendid beauty?
+Amarylis
+10
+
+What is the flower that stands for: steadfast piety?
+Wild geranium
+10
+
+What is the flower that stands for: stoicism?
+Box tree
+10
+
+What is the flower that stands for: surprise?
+Truffle
+10
+
+What is the flower that stands for: suspceptibility?
+Passion-flower
+10
+
+What is the flower that stands for: suspicion?
+Mushroom
+10
+
+What is the flower that stands for: sweet and secret love?
+Honey flower
+10
+
+What is the flower that stands for: the first emotions of love?
+Purple lilac
+10
+
+What is the flower that stands for: thou art all that is lovely?
+Austrian rose
+10
+
+What is the flower that stands for: thoughts of absent friends?
+Zinnia
+10
+
+What is the flower that stands for: true love?
+Forget-me-not
+10
+
+What is the flower that stands for: unpretending excellence?
+Camellia japonica
+10
+
+What is the flower that stands for: useful knowledge?
+Parsley
+10
+
+What is the flower that stands for: warmth of sentiment?
+Spearmint
+10
+
+What is the flower that stands for: youthful gladness?
+Spring crocus
+10
+
+What is the flower that stands for: youthful innocence?
+White lilac
+10
+
+What is the flower/plant that stands for: a beauty?
+Orchis
+10
+
+What is the flower/plant that stands for: a belle?
+Orchis
+10
+
+What is the flower/plant that stands for: a heart ignorant of love?
+White rosebud
+10
+
+What is the flower/plant that stands for: a smile?
+Sweet william
+10
+
+What is the flower/plant that stands for: absence?
+Wormwood
+10
+
+What is the flower/plant that stands for: acknowledgement?
+Canterbury bell
+10
+
+What is the flower/plant that stands for: activity?
+Thyme
+10
+
+What is the flower/plant that stands for: addresses rejected?
+Ice plant
+10
+
+What is the flower/plant that stands for: admiration?
+Amethyst
+10
+
+What is the flower/plant that stands for: adoration?
+Dwarf sunflower
+10
+
+What is the flower/plant that stands for: advice?
+Rhubarb
+10
+
+What is the flower/plant that stands for: affectation?
+Morning glory
+10
+
+What is the flower/plant that stands for: afterthought?
+Michaelmas daisy
+10
+
+What is the flower/plant that stands for: age?
+Guelder rose
+10
+
+What is the flower/plant that stands for: agreement?
+Straw
+10
+
+What is the flower/plant that stands for: alas! for my poro heart?
+Deep red carnation
+10
+
+What is the flower/plant that stands for: always lovely?
+Indian double pink
+10
+
+What is the flower/plant that stands for: am i forgotten?
+Holly
+10
+
+What is the flower/plant that stands for: ambition?
+Mountain laurel
+10
+
+What is the flower/plant that stands for: amiability?
+Jasmine
+10
+
+What is the flower/plant that stands for: anticipation?
+Gooseberry
+10
+
+What is the flower/plant that stands for: anxious and trembling?
+Red columbine
+10
+
+What is the flower/plant that stands for: appointed meeting?
+Everlasting pea
+10
+
+What is the flower/plant that stands for: ardent love?
+Balsam
+10
+
+What is the flower/plant that stands for: argument?
+Fig
+10
+
+What is the flower/plant that stands for: artifice?
+Acanthus
+10
+
+What is the flower/plant that stands for: assiduous to please?
+Sprig of ivy with tendrills
+10
+
+What is the flower/plant that stands for: assignation?
+Pimpernel
+10
+
+What is the flower/plant that stands for: attachment?
+Indian jasmine
+10
+
+What is the flower/plant that stands for: audacity?
+Larch
+10
+
+What is the flower/plant that stands for: austerity?
+Common thistle
+10
+
+What is the flower/plant that stands for: avarice?
+Scarlet auricula
+10
+
+What is the flower/plant that stands for: aversion?
+Indian single pink
+10
+
+What is the flower/plant that stands for: bantering?
+Southernwood
+10
+
+What is the flower/plant that stands for: bashful shame?
+Deep red rose
+10
+
+What is the flower/plant that stands for: bashfulness?
+Peony
+10
+
+What is the flower/plant that stands for: be mine?
+Four-leaved clover
+10
+
+What is the flower/plant that stands for: beautiful eyes?
+Variegated tulip
+10
+
+What is the flower/plant that stands for: beauty always new?
+China rose
+10
+
+What is the flower/plant that stands for: beauty and prosperity?
+Red-leaved rose
+10
+
+What is the flower/plant that stands for: belief?
+Passion-flower
+10
+
+What is the flower/plant that stands for: belle?
+Orchis
+10
+
+What is the flower/plant that stands for: benevolence?
+Potato flower
+10
+
+What is the flower/plant that stands for: betrayal?
+Judas tere
+10
+
+What is the flower/plant that stands for: beware of excess?
+Saffron
+10
+
+What is the flower/plant that stands for: blackness?
+Ebony
+10
+
+What is the flower/plant that stands for: bluntness?
+Borage
+10
+
+What is the flower/plant that stands for: blushes?
+Marjoram
+10
+
+What is the flower/plant that stands for: boaster?
+Hydrangea
+10
+
+What is the flower/plant that stands for: boldness?
+Pink
+10
+
+What is the flower/plant that stands for: bonds of affection?
+Gillyflower
+10
+
+What is the flower/plant that stands for: bonds?
+Convolvulus
+10
+
+What is the flower/plant that stands for: bravery?
+Oak leaves 
+10
+
+What is the flower/plant that stands for: bury me amid nature's beauties?
+Persimmon
+10
+
+What is the flower/plant that stands for: call me not beautiful?
+Unique rose
+10
+
+What is the flower/plant that stands for: change?
+Pimpernel
+10
+
+What is the flower/plant that stands for: changeable disposition?
+Rye grass
+10
+
+What is the flower/plant that stands for: charity?
+Turnip
+10
+
+What is the flower/plant that stands for: charming?
+Cluster of musk roses
+10
+
+What is the flower/plant that stands for: chaste love?
+Acacia
+10
+
+What is the flower/plant that stands for: cheerfullness in old age?
+American starwort
+10
+
+What is the flower/plant that stands for: cheerfulness under adversity?
+Chrysanthemum
+10
+
+What is the flower/plant that stands for: childishness?
+Buttercup
+10
+
+What is the flower/plant that stands for: chivalry?
+Great yellow daffodil
+10
+
+What is the flower/plant that stands for: cleanliness?
+Hyssop
+10
+
+What is the flower/plant that stands for: coldheartedness?
+Lettuce
+10
+
+What is the flower/plant that stands for: color of my life?
+Coral honeysuckle
+10
+
+What is the flower/plant that stands for: come down?
+Jacob's ladder
+10
+
+What is the flower/plant that stands for: comforting?
+Scarlet geranium
+10
+
+What is the flower/plant that stands for: compassion?
+Allspice
+10
+
+What is the flower/plant that stands for: concealed love?
+Motherwort
+10
+
+What is the flower/plant that stands for: concealed merit?
+Coriander
+10
+
+What is the flower/plant that stands for: confession of love?
+Moss rosebud
+10
+
+What is the flower/plant that stands for: confidence?
+Lilac polyanthus
+10
+
+What is the flower/plant that stands for: conjugal love?
+Lime
+10
+
+What is the flower/plant that stands for: consolation?
+Red poppy
+10
+
+What is the flower/plant that stands for: cordiality?
+Peppermint
+10
+
+What is the flower/plant that stands for: counterfeit?
+Mock orange
+10
+
+What is the flower/plant that stands for: crime?
+Tamarisk
+10
+
+What is the flower/plant that stands for: criticism?
+Cucumber
+10
+
+What is the flower/plant that stands for: cure?
+Balm of gilead
+10
+
+What is the flower/plant that stands for: curiosity?
+Sycamore
+10
+
+What is the flower/plant that stands for: dangerous pleasures?
+Tuberose
+10
+
+What is the flower/plant that stands for: dauntlessness?
+Sea lavendar
+10
+
+What is the flower/plant that stands for: death preferrable to loss of innocence?
+White rose
+10
+
+What is the flower/plant that stands for: death?
+Cypress
+10
+
+What is the flower/plant that stands for: deceitful chams?
+Thorn-apple
+10
+
+What is the flower/plant that stands for: deception?
+White cherry
+10
+
+What is the flower/plant that stands for: declaration of love?
+Red tulip
+10
+
+What is the flower/plant that stands for: dejection?
+Lichen
+10
+
+What is the flower/plant that stands for: delay?
+Eupatorium
+10
+
+What is the flower/plant that stands for: delicacy?
+Cornflower
+10
+
+What is the flower/plant that stands for: delicate beauty?
+Hibiscus
+10
+
+What is the flower/plant that stands for: departure?
+Sweet pea
+10
+
+What is the flower/plant that stands for: despair?
+Cypress and marigold
+10
+
+What is the flower/plant that stands for: devotion?
+Heliotrope
+10
+
+What is the flower/plant that stands for: difficulties that i surmount?
+Mistletoe
+10
+
+What is the flower/plant that stands for: disappointment?
+Carolina syringa
+10
+
+What is the flower/plant that stands for: distinction?
+Cardinal flower
+10
+
+What is the flower/plant that stands for: distrust?
+Lavender
+10
+
+What is the flower/plant that stands for: divine beauty?
+American cowslip
+10
+
+What is the flower/plant that stands for: do me justice?
+Sweet chestnut tree
+10
+
+What is the flower/plant that stands for: do not abuse?
+Saffron
+10
+
+What is the flower/plant that stands for: domestic industry?
+Flax
+10
+
+What is the flower/plant that stands for: early attachment?
+Thornless rose
+10
+
+What is the flower/plant that stands for: early friendship?
+Blue periwinkle
+10
+
+What is the flower/plant that stands for: early youth?
+Primrose
+10
+
+What is the flower/plant that stands for: education?
+Cherry tree
+10
+
+What is the flower/plant that stands for: elegance and grace?
+Yellow jasmine
+10
+
+What is the flower/plant that stands for: elevation?
+Scotch fir
+10
+
+What is the flower/plant that stands for: enchantment?
+Holly herb
+10
+
+What is the flower/plant that stands for: enduring affection?
+Gorse
+10
+
+What is the flower/plant that stands for: energy in adversity?
+Camomile
+10
+
+What is the flower/plant that stands for: esteem and love?
+Strawberry tree
+10
+
+What is the flower/plant that stands for: esteem but not love?
+Spiderwort
+10
+
+What is the flower/plant that stands for: esteem?
+Garden sage
+10
+
+What is the flower/plant that stands for: estranged love?
+Lotus flower
+10
+
+What is the flower/plant that stands for: evanescent pleasure?
+Poppy
+10
+
+What is the flower/plant that stands for: lasting beauty?
+Stock
+10
+
+What is the flower/plant that stands for: mature elegance?
+Pomegranate flower
+10
+
+What is the flower/plant that stands for: menatl beauty?
+Clematis
+10
+
+What is the flower/plant that stands for: pensive beauty?
+Laburnum
+10
+
+What is the flower/plant that stands for: rustic beauty?
+French honeysuckle
+10
+
+What is the flower/plant that stands for: unconscious beauty?
+Burgundy rose
+10
+
+What is the flower/plant that stands for: unfading beauty?
+Gillyflower
+10
+
+What is the flowering shrub syringa usually called?
+Lilac
+10
+
+What is the force that brings moving bodies to a halt?
+Friction
+10
+
+What is the force that slows down or stops a moving thing?
+Friction
+10
+
+What is the formal name for when a substance breaks down on heating?
+Termal decomposition
+10
+
+What is the former name of acadia national park, established in 1916?
+Sieur de monts
+10
+
+What is the four word US national motto?
+In god we trust
+10
+
+What is the four-word title of Hilary Clinton's 1996 best-selling book?
+It Takes a Village
+10
+
+What is the fourth day of the week?
+Wednesday
+10
+
+What is the fourth dimension (apart from length, depth & width?
+Time
+10
+
+What is the fourth estate?
+The press
+10
+
+What is the fourth month of the year?
+April
+10
+
+What is the fourth sign of the zodiac?
+Cancer
+10
+
+What is the french for hospital?
+Hotel-dieu
+10
+
+What is the french phrase meaning 'on the contrary'?
+Au contraire
+10
+
+What is the French Riviera's leading resort?
+Nice
+10
+
+What is the french word for 'mistake'?
+Faux pas
+10
+
+What is the french word used for a type of enamelling in which a pattern is marked on to a surface by thin metal strips and coloured with enamels?
+Cloisonne
+10
+
+What is the frequency of sound waves measured in?
+Hertz
+10
+
+What is the full name of E. Coli?
+Escherichia coli
+10
+
+What is the full name of the poet shelley?
+Percy bysshe shelley
+10
+
+What is the function of a sheepshank knot?
+To shorten a length of rope
+10
+
+What is the function of red corpuscles in the blood?
+Transport oxygen
+10
+
+What is the furthest you can see on a clear day?
+93 million miles
+10
+
+What is the game if your balls are black and blue and your opponents are red and yellow?
+Croquet
+10
+
+What is the game we call Noughts and Crosses called in America?
+Tic tac toe
+10
+
+What is the gardening term for a weed?
+Ruderal
+10
+
+What is the general designation for the period in English history from 1640 to 1660?
+English revolution
+10
+
+What is the general name for a protein molecule which acts as a natural catalyst in the bodies of all bacteria, plants and animals?
+Enzyme
+10
+
+What is the general term for all chemical substances produced by the endocrine glands?
+Hormones
+10
+
+What is the general term used for various forms of insanity and mental derangement?
+Mental illness
+10
+
+What is the generic term for the following: king,emperor,jackass?
+Penguin
+10
+
+What is the geographic centre of the u.s?
+South dakota
+10
+
+What is the geographical term for a ring shaped coral island?
+Atoll
+10
+
+What is the geometric shape of the cells in a honeycomb?
+Hexagonal
+10
+
+What is the German name for the Easter Bunny?
+Oschter Haws
+10
+
+What is the German parliament?
+Bundestag
+10
+
+What is the German word for Wednesday?
+Mittwoch
+10
+
+What is the gestation period of a cow?
+Nine months
+10
+
+What is the gift given at 50th wedding?
+Gold
+10
+
+What is the gift given at a 40th wedding?
+Ruby
+10
+
+What is the gift that is supposed to be given for a 55th wedding anniversary?
+Emerald
+10
+
+What is the glass capital of the world?
+Toledo
+10
+
+What is the gluteus maximus the largest example of in the human body?
+Muscle
+10
+
+What is the great mass of stone trees in the painted desert in arizona called?
+The petrified forest
+10
+
+What is the Great Smoo?
+Scotland's largest cave
+10
+
+What is the Greek version of the old testament called?
+The septuagent
+10
+
+What is the greek word for the biblical book of revelation?
+Apocalypse
+10
+
+What is the hardest mineral?
+Diamond
+10
+
+What is the hardest naturally occuring substance?
+Diamond
+10
+
+What is the hardest substance in the human body?
+Enamel
+10
+
+What is the Hawaiian word of greeting?
+Aloha
+10
+
+What is the headquarter of the British Metropolitan Police Force?
+Scotland Yard
+10
+
+What is the heart rate of the blue whale?
+Nine beats per minute
+10
+
+What is the heaviest bird of prey?
+Condor
+10
+
+What is the heaviest breed of domestic dog?
+St. bernard
+10
+
+What is the heaviest domestic dog?
+St bernard
+10
+
+What is the heaviest element?
+Uranium
+10
+
+What is the heaviest snake?
+Anaconda
+10
+
+What is the hebrew word for peace used as both a greeting and a farewell?
+Shalom
+10
+
+What is the height travelled by the world's longest escalator?
+Sixty metres
+10
+
+What is the hellenic republic?
+Greece
+10
+
+What is the heraldic term for a diamond shape?
+Lozenge
+10
+
+What is the heraldic term for a small square division on a shield?
+Canton
+10
+
+What is the high flying swing in a circus called?
+Trapeze
+10
+
+What is the highest adult male singing voice?
+Alto
+10
+
+What is the highest award for bravery in the British army?
+The victoria cross
+10
+
+What is the highest commissioned rank in the Royal Air Force?
+Marshal of the raf
+10
+
+What is the highest commissioned rank in the Royal Navy?
+Admiral of the fleet
+10
+
+What is the highest hand in poker?
+A run
+10
+
+What is the highest lake in the world?
+Lake titicaca
+10
+
+What is the highest military honour that can be conferred in the usa?
+Congressional medal of honor
+10
+
+What is the highest military medal given in the United Kingdom?
+Victoria cross
+10
+
+What is the highest mountain in Africa?
+Kilimanjaro
+10
+
+What is the highest mountain in Canada called?
+Mount logan
+10
+
+What is the highest mountain in Japan?
+Fuji
+10
+
+What is the highest mountain in north America?
+Mount mckinley
+10
+
+What is the highest mountain in Romania?
+Mt moldoveanu
+10
+
+What is the highest mountain in South America?
+Aconcagua
+10
+
+What is the highest mountain in the alps?
+Mont blanc
+10
+
+What is the highest mountain in the Western Hemisphere?
+Aconcagua
+10
+
+What is the highest mountain in the world?
+Mt everest
+10
+
+What is the highest navigable lake in the world?
+Titicaca
+10
+
+What is the highest number does a bingo ball go to?
+75
+10
+
+What is the highest peak in Australia?
+Mount kosciusko
+10
+
+What is the highest peak of the ural mountains?
+Naradnaya
+10
+
+What is the highest point in China?
+Mount everest
+10
+
+What is the highest point in north America?
+Mckinley
+10
+
+What is the highest rank in the British army?
+Field marshal
+10
+
+What is the highest ranking suit in Bridge?
+Spades
+10
+
+What is the highest scoring English word in 'scrabble'?
+Quartzy
+10
+
+What is the highest soviet decoration?
+The order of lenin
+10
+
+What is the highest U S mountain?
+Mt. mckinley
+10
+
+What is the highest-pitched woodwind musical instrument?
+Piccolo
+10
+
+What is the hindu kush?
+National costume
+10
+
+What is the hobbit's favourite food?
+Mushrooms
+10
+
+What is the hobby of a 'twitcher'?
+Bird watching
+10
+
+What is the hogs largest living relative?
+Hippopotamus
+10
+
+What is the holiest day in the jewish calendar?
+Yom kippur
+10
+
+What is the hollow necktie-knot substitute that snugs a neckerchief at the throat on a Boy Scout's uniform called?
+A woggle
+10
+
+What is the holy city of Islam?
+Mecca
+10
+
+What is the home country of chris de burgh?
+Ireland
+10
+
+What is the home ground of Manchester united?
+Old trafford
+10
+
+What is the honeymoon capital of the world?
+Niagara falls
+10
+
+What is the hottest chile in the world?
+Habanero
+10
+
+What is the humorous term for an accountant?
+Bean counter
+10
+
+What is the hungarian word for pepper?
+Paprika
+10
+
+What is the hybrid of the grapefruit and the tangerine?
+Ugli
+10
+
+What is the imaginary line on the surface of the earth approximately parallel to the geographical equator?
+Aclinic line
+10
+
+What is the Imperial unit, for use in precious metal transactions, which was authorised for retention as specialist use when other imperial units were phased out in 1999?
+Troy ounce
+10
+
+What is the increase in velocity per unit of time called?
+Acceleration
+10
+
+What is the Indian meaning for the name 'Canada'?
+Big village
+10
+
+What is the infinity sign called?
+Lemniscate
+10
+
+What is the inflammation of the stomach and intestines called?
+Gastroenteritis
+10
+
+What is the inland empire a nickname of?
+Illinois
+10
+
+What is the inscription on the squadron badge of 617 Squadron?
+Apres moi le deluge
+10
+
+What is the International Criminal Police Organisation better known as?
+Interpol
+10
+
+What is the international cry for help?
+Mayday
+10
+
+What is the international radio code for the letter Z?
+Zulu
+10
+
+What is the international radio code word for the letter B?
+Bravo
+10
+
+What is the international radio code word for the letter F?
+Foxtrot
+10
+
+What is the international radio code word for the letter O?
+Oscar
+10
+
+What is the international radio code word for the letter Q?
+Quebec
+10
+
+What is the international radio code word for the letter T?
+Tango
+10
+
+What is the international radio code word for the letter Y?
+Yankee
+10
+
+What is the international radio code word for the letter Z?
+Zulu
+10
+
+What is the international telephone code for the uk?
+44
+10
+
+What is the international telphone dialing code for Antarctica?
+672
+10
+
+What is the interval between Passion Plays held at Oberammergau in Germany?
+Ten years
+10
+
+What is the ishihara test designed to detect?
+Colour blindness
+10
+
+What is the island of taransay famous for?
+Castaway
+10
+
+What is the israeli knesset?
+Parliament
+10
+
+What is the jack of any suit called in bridge?
+A bower
+10
+
+What is the Jack of Hearts holding up in a deck of cards?
+Leaf
+10
+
+What is the Japanese art of miniature tree cultivation called?
+Bonsai
+10
+
+What is the Japanese equivalent of the dow jones index?
+Nikkei
+10
+
+What is the Japanese word for 'divine wind'?
+Kamikaze
+10
+
+What is the Japanese word for 'empty orchestra'?
+Karaoke
+10
+
+What is the junction between two nerve cells called?
+Synapse
+10
+
+What is the kansas city baseball team called?
+Royals
+10
+
+What is the key signature of E flat major?
+3 flats
+10
+
+What is the kitchen on a ship called?
+Galley
+10
+
+What is the knee bone called?
+Patella
+10
+
+What is the large central inner tower of a castle called?
+Keep
+10
+
+What is the large stone circle on Salisbury Plain's called?
+Stonehenge
+10
+
+What is the largest (in population) state/territory in Australia?
+New south wales
+10
+
+What is the largest & most complicated joint in the body?
+Knee
+10
+
+What is the largest American city in the great lakes?
+Chicago
+10
+
+What is the largest animal that ever lived?
+Blue whale
+10
+
+What is the largest animal that has ever inhabited the planet Earth?
+Blue whale
+10
+
+What is the largest antique ever sold?
+London Bridge
+10
+
+What is the largest aquatic bird?
+Albatross
+10
+
+What is the largest artery in the human body?
+Aorta
+10
+
+What is the largest asteroid that has been observed?
+Ceres
+10
+
+What is the largest bay in the world, (larger than England) bordering only one country Canada, & only two provinces & a territory?
+Hudson bay
+10
+
+What is the largest bird after the ostrich?
+Australian emu
+10
+
+What is the largest body of fresh water in the world?
+Lake superior
+10
+
+What is the largest breed of domesticated cat in the world?
+Ragdoll
+10
+
+What is the largest carnivore on land?
+Polar bear
+10
+
+What is the largest cat in the Americas?
+Jaguar
+10
+
+What is the largest cell in a human body?
+Ovum
+10
+
+What is the largest city between Ireland and Canada?
+Reykjavik
+10
+
+What is the largest city in africa?
+Cairo
+10
+
+What is the largest city in alabama?
+Birmingham
+10
+
+What is the largest city in Alaska?
+Anchorage
+10
+
+What is the largest city in Canada?
+Toronto
+10
+
+What is the largest city in Europe?
+Paris
+10
+
+What is the largest city in India?
+Calcutta
+10
+
+What is the largest city in Ireland?
+Dublin
+10
+
+What is the largest city in pakistan?
+Karachi
+10
+
+What is the largest city in Texas?
+Houston
+10
+
+What is the largest city in the communist world?
+Shanghai
+10
+
+What is the largest city in the southern hemisphere?
+Jakarta
+10
+
+What is the largest city on the South island of New Zealand?
+Christchurch
+10
+
+What is the largest city south of the equator?
+Buenos aires
+10
+
+What is the largest constellation in the sky?
+Hydra
+10
+
+What is the largest country in africa?
+Sudan
+10
+
+What is the largest country in Europe after the Soviet Union?
+France
+10
+
+What is the largest country in Oceania?
+Australia
+10
+
+What is the largest country in the Western Hemisphere?
+Canada
+10
+
+What is the largest country that is entirely within the southern hemisphere?
+Australia
+10
+
+What is the largest country wholly within Europe?
+France
+10
+
+What is the largest country?
+Russia
+10
+
+What is the largest county in Ireland?
+Cork
+10
+
+What is the largest county in the united states?
+San bernardino
+10
+
+What is the largest cranial bone?
+Parietal
+10
+
+What is the largest desert in the world?
+Sahara
+10
+
+What is the largest dinosaur?
+Brachiosaurus
+10
+
+What is the largest feline?
+Tiger
+10
+
+What is the largest gem-quality diamond discovered?
+Cullinan diamond
+10
+
+What is the largest gland in the human body?
+Liver
+10
+
+What is the largest gold refinery?
+Rand refinery
+10
+
+What is the largest harbor in holland?
+Rotterdam
+10
+
+What is the largest inhabited castle?
+Windsor castle
+10
+
+What is the largest inland sea in the world?
+Caspian
+10
+
+What is the largest island in Asia?
+Borneo
+10
+
+What is the largest island in the mediterranean sea?
+Sicily
+10
+
+What is the largest island in the West Indies?
+Cuba
+10
+
+What is the largest item on any menu in the world?
+Roast camel
+10
+
+What is the largest Japanese island?
+Honshu
+10
+
+What is the largest kangaroo?
+Red kangaroo
+10
+
+What is the largest lake in africa?
+Victoria
+10
+
+What is the largest lake in Australia called?
+Lake eyre
+10
+
+What is the largest lake in Australia?
+Eyre
+10
+
+What is the largest lake in Central America?
+Lake nicaragua
+10
+
+What is the largest lake in south America, which is half freshwater, half saltwater?
+Maracaibo
+10
+
+What is the largest lake in South America?
+Lake titicaca
+10
+
+What is the largest lake in the u.s?
+Superior
+10
+
+What is the largest lake in the world?
+The caspian sea
+10
+
+What is the largest lake that is entirely within Canada?
+Great bear lake
+10
+
+What is the largest land bird in europe?
+Bustard
+10
+
+What is the largest land carnivore?
+Polar bear
+10
+
+What is the largest landlocked country in the world?
+Mongolia
+10
+
+What is the largest landlocked country?
+Mongolia
+10
+
+What is the largest lizard on earth at ten feet long & up to 250 pounds?
+Komodo dragon
+10
+
+What is the largest lizard?
+Komodo dragon
+10
+
+What is the largest man made lake in the world?
+Lake mead
+10
+
+What is the largest moon of saturn called?
+Titan
+10
+
+What is the largest museum?
+Louvre
+10
+
+What is the largest native carnivore in England?
+Badger
+10
+
+What is the largest natural harbour in south africa?
+Saldanha bay
+10
+
+What is the largest ocean on earth?
+Pacific
+10
+
+What is the largest of the 'bow tie' pasta shapes?
+Farfallone
+10
+
+What is the largest of the dinosaur family?
+Brachiosaurus
+10
+
+What is the largest of the great apes?
+Gorilla
+10
+
+What is the largest office building in the world?
+Pentagon
+10
+
+What is the largest one person residence in the world?
+Vatican
+10
+
+What is the largest planet in the solar system?
+Jupiter
+10
+
+What is the largest planet?
+Jupiter
+10
+
+What is the largest plant ever to have grown on the planet Earth?
+Giant sequoia
+10
+
+What is the largest port in France?
+Marseilles
+10
+
+What is the largest port on the gulf of lions?
+Marseilles
+10
+
+What is the largest province in Canada?
+Quebec
+10
+
+What is the largest public square in the world?
+Tiananmen Square
+10
+
+What is the largest real animal to have a year dedicated to it in the chinese calendar?
+The horse
+10
+
+What is the largest river in ghana?
+Volta
+10
+
+What is the largest river in north America?
+Mississippi
+10
+
+What is the largest rodent?
+Capybara
+10
+
+What is the largest rotary club in terms of members outside of north America (1999)?
+Rotary club of manila
+10
+
+What is the largest satellite orbiting Earth?
+Moon
+10
+
+What is the largest Scandinavian country?
+Sweden
+10
+
+What is the largest Sea in the world?
+Mediterranean
+10
+
+What is the largest soviet republic?
+Russian republic
+10
+
+What is the largest species of toad?
+Cane toad
+10
+
+What is the largest structure ever made by living creatures?
+Great barrier reef
+10
+
+What is the largest train station in britain?
+Waterloo
+10
+
+What is the largest type of warship?
+Aircraft carrier
+10
+
+What is the largest US agricultural crop, by weight?
+Corn
+10
+
+What is the largest volcano in the solar system?
+Olympus mons
+10
+
+What is the largest volcano on mars?
+Olympus mons
+10
+
+What is the largest volcano?
+Cotopaxi
+10
+
+What is the largest web footed bird?
+Albatross
+10
+
+What is the largest wholly Indonesian island?
+Sumatra
+10
+
+What is the larynx?
+Voice box
+10
+
+What is the last animal in the dictionary?
+Zorille
+10
+
+What is the last book in the bible?
+Malachi
+10
+
+What is the last book of the bible?
+Revelation
+10
+
+What is the last event in the decathlon?
+1500 metres
+10
+
+What is the last film that stanley kubrick directed?
+Eyes wide shut
+10
+
+What is the last letter of the Greek alphabet (written out in English)?
+Omega
+10
+
+What is the last letter of the greek alphabet?
+Omega
+10
+
+What is the last name of brothers dmitri, ivan, alyosha and smerdyakov?
+Karamazov
+10
+
+What is the last name of lucy and linus?
+Van pelt
+10
+
+What is the last name of singer Madonna?
+Ciccone
+10
+
+What is the last name of the man who invented vulcanized rubber in 1939?
+Goodyear
+10
+
+What is the last name of the person who invented the gasoline driven car?
+Benz
+10
+
+What is the last word of the bible?
+Amen
+10
+
+What is the last word of the old testament?
+Curse
+10
+
+What is the latin anme for the polar star?
+Polaris
+10
+
+What is the latin name for a moose?
+Alces alces
+10
+
+What is the latin name for modern man?
+Homo sapiens
+10
+
+What is the Latin name for moose?
+Alces alces
+10
+
+What is the latin name of silver?
+Argentum
+10
+
+What is the latin phrase meaning 'for the particular end or purpose at hand'?
+Ad hoc
+10
+
+What is the latin phrase meaning 'in the original arrangement'?
+In situ
+10
+
+What is the latin word 'trivia' in English?
+A junction of three roads
+10
+
+What is the latin word for 'a junction of three roads'?
+Trivia
+10
+
+What is the layer beneath the Earth's crust called?
+Mantle
+10
+
+What is the lead in pencils made from?
+Graphite
+10
+
+What is the leading university in Paris?
+Sorbonne
+10
+
+What is the leaf of a fern called?
+Frond
+10
+
+What is the least dense substance in the world, at 0.08988 g/cc?
+Hydrogen gas
+10
+
+What is the least most used letter in the alphabet?
+Q
+10
+
+What is the least number of shots with which a player could win a tennis set?
+Twelve
+10
+
+What is the left side of a ship called?
+Port
+10
+
+what is the legal name for a spoken or written insult against religious belief or sacred objects?
+Blasphemy
+10
+
+What is the legal term for a formal agreement enforceable by law?
+Contract
+10
+
+What is the legalised betting system on Football named?
+Score
+10
+
+What is the legislative capital of South Africa?
+Cape town
+10
+
+What is the length in metres of the sides of a square, which is one hectare in area?
+100m x 100m
+10
+
+What is the length of a bombardon?
+16 feet
+10
+
+What is the letter K worth in scrabble?
+Five
+10
+
+What is the life span of a housefly two weeks, two months or two years?
+Two weeks
+10
+
+What is the limit reached at -273.15 degrees centigrade?
+Lowest possible centigrade temperature
+10
+
+What is the line frequency of the American power supply?
+60hz
+10
+
+What is the line in labrynith that sarah can never remember?
+You have no power over me
+10
+
+What is the line of latitude dividing Canada from the usa?
+49th parallel
+10
+
+What is the link between the actresses Mia Farrow & Maureen O'Sullivan?
+Mother and daughter
+10
+
+What is the liqueur Kirsch made from?
+Cherries
+10
+
+What is the literal English translation of the French phrase 'cordon bleu'?
+Blue ribbon
+10
+
+What is the literal meaning of the word 'cenotaph'?
+Empty tomb
+10
+
+What is the literal meaning of the word 'Pharaoh'?
+Great house
+10
+
+What is the literal translation of aardvark?
+Earth pig
+10
+
+What is the literal translation of the word brandy?
+Burnt wine
+10
+
+What is the literary term for a play on words?
+Pun
+10
+
+What is the little lump of flesh just forward of your ear canal right next to your temple?
+Tragus
+10
+
+What is the loading line of a ship?
+Plimsoll line
+10
+
+What is the London Underground?
+Tube
+10
+
+What is the long distance country code for Algeria?
+213
+10
+
+What is the long distance country code for Argentina?
+54
+10
+
+What is the long distance country code for Australia?
+61
+10
+
+What is the long distance country code for Austria?
+43
+10
+
+What is the long distance country code for Bangladesh?
+880
+10
+
+What is the long distance country code for Belgium?
+32
+10
+
+What is the long distance country code for Bosnia/Herzegovinia?
+387
+10
+
+What is the long distance country code for Brazil?
+55
+10
+
+What is the long distance country code for Canada?
+01
+10
+
+What is the long distance country code for Chile?
+56
+10
+
+What is the long distance country code for China?
+86
+10
+
+What is the long distance country code for Colombia?
+57
+10
+
+What is the long distance country code for Commonwealth of independant states?
+07 
+10
+
+What is the long distance country code for Costa rica?
+506 
+10
+
+What is the long distance country code for Crotia?
+385
+10
+
+What is the long distance country code for Cuba?
+53
+10
+
+What is the long distance country code for Cyprus?
+357
+10
+
+What is the long distance country code for Czech?
+420
+10
+
+What is the long distance country code for Denmark?
+45
+10
+
+What is the long distance country code for Egypt?
+20
+10
+
+What is the long distance country code for El Salvador?
+503
+10
+
+What is the long distance country code for Estonia?
+372
+10
+
+What is the long distance country code for Ethiopia?
+251
+10
+
+What is the long distance country code for Federale Republic Of Yugoslavia?
+381 
+10
+
+What is the long distance country code for Finland?
+358
+10
+
+What is the long distance country code for France?
+33
+10
+
+What is the long distance country code for Fyr Macedonia?
+389
+10
+
+What is the long distance country code for Germany?
+49
+10
+
+What is the long distance country code for Greece?
+30
+10
+
+What is the long distance country code for Guatemala?
+502 
+10
+
+What is the long distance country code for Haiti?
+509
+10
+
+What is the long distance country code for Hong Kong?
+852 
+10
+
+What is the long distance country code for Hungary?
+36 
+10
+
+What is the long distance country code for India?
+91
+10
+
+What is the long distance country code for Indonesia?
+62 
+10
+
+What is the long distance country code for Iran?
+98
+10
+
+What is the long distance country code for Ireland?
+353 
+10
+
+What is the long distance country code for Israel?
+972
+10
+
+What is the long distance country code for Italy?
+39 
+10
+
+What is the long distance country code for Japan?
+81
+10
+
+What is the long distance country code for Kenya?
+254 
+10
+
+What is the long distance country code for Kyrgyz Republic?
+996 
+10
+
+What is the long distance country code for Latvia?
+371
+10
+
+What is the long distance country code for Lebanon?
+961 
+10
+
+What is the long distance country code for Libya?
+218
+10
+
+What is the long distance country code for lithuania?
+370 
+10
+
+What is the long distance country code for Malaysia?
+60
+10
+
+What is the long distance country code for Mexico?
+52
+10
+
+What is the long distance country code for Moldova?
+373
+10
+
+What is the long distance country code for Morocco?
+212
+10
+
+What is the long distance country code for Netherlands?
+31
+10
+
+What is the long distance country code for New Zealand?
+64
+10
+
+What is the long distance country code for Norway?
+47
+10
+
+What is the long distance country code for Pakistan?
+92 
+10
+
+What is the long distance country code for Panama?
+507
+10
+
+What is the long distance country code for Peru?
+51
+10
+
+What is the long distance country code for Philipines?
+63
+10
+
+What is the long distance country code for Poland?
+48
+10
+
+What is the long distance country code for Portugal?
+351
+10
+
+What is the long distance country code for Romania?
+40
+10
+
+What is the long distance country code for Saudi Arabia?
+966
+10
+
+What is the long distance country code for Singapore?
+65
+10
+
+What is the long distance country code for Slovakia?
+421
+10
+
+What is the long distance country code for Slovenia?
+386
+10
+
+What is the long distance country code for South Africa?
+27
+10
+
+What is the long distance country code for South Korea?
+82
+10
+
+What is the long distance country code for Spain?
+34
+10
+
+What is the long distance country code for Sri Lanka?
+94
+10
+
+What is the long distance country code for Sudan?
+249
+10
+
+What is the long distance country code for Sweden?
+46
+10
+
+What is the long distance country code for Switzerland?
+41
+10
+
+What is the long distance country code for Taiwan?
+886
+10
+
+What is the long distance country code for Thailand?
+66
+10
+
+What is the long distance country code for Tunesia?
+216
+10
+
+What is the long distance country code for Turkey?
+90
+10
+
+What is the long distance country code for Ukraine?
+380
+10
+
+What is the long distance country code for United Arabe Emirates?
+971
+10
+
+What is the long distance country code for United Kingdom?
+44
+10
+
+What is the long distance country code for Venezuela?
+58
+10
+
+What is the longest bone in the body?
+Femur
+10
+
+What is the longest bone in the human body?
+Femur
+10
+
+What is the longest canal in the world?
+Grand canal of china
+10
+
+What is the longest continuous footpath in the world?
+Appalachian trail
+10
+
+What is the longest English word that can be typed using only the right hand?
+Lollipop
+10
+
+What is the longest English word that only has one vowel?
+Strengths
+10
+
+What is the longest insect?
+Walking stick
+10
+
+What is the longest living land mammal after man?
+Elephant
+10
+
+What is the longest muscle in the human body?
+Sartorius
+10
+
+What is the longest navigable river in the world?
+The amazon
+10
+
+What is the longest river in Asia?
+Yangtze
+10
+
+What is the longest river in europe?
+Volga
+10
+
+What is the longest river in Italy?
+Po
+10
+
+What is the longest river in north America?
+Mississippi
+10
+
+What is the longest river in Scotland?
+Tay
+10
+
+What is the longest river in the americas?
+Amazon
+10
+
+What is the longest river in the British isles?
+Shannon
+10
+
+What is the longest river in the u.s?
+Mississippi
+10
+
+What is the longest river in the western hemisphere?
+Amazon
+10
+
+What is the longest river in the world?
+Nile
+10
+
+What is the longest river in western europe?
+Rhine
+10
+
+What is the longest running prime time cartoon show?
+The simpsons
+10
+
+What is the longest running race at the olympic games?
+Marathon
+10
+
+What is the longest running show in Broadway history?
+Cats
+10
+
+What is the longest running tv quiz show?
+University challenge
+10
+
+What is the longest show running in Broadway History?
+Cats
+10
+
+What is the longest strait in the world?
+Malacca
+10
+
+What is the longest tunnel on earth?
+Seikan
+10
+
+What is the longest tunnel?
+Water supply tunnel
+10
+
+What is the longest typed word (found so far) that alternates hands?
+Skepticisms
+10
+
+What is the longest typed word that alternates hands?
+Skepticisms
+10
+
+What is the longest undammed river west of the Mississippi?
+Yellowstone river
+10
+
+What is the longest venomous snake?
+King cobra
+10
+
+What is the longest word that alternates hands?
+Skepticisms
+10
+
+What is the longest word that can be typed using only the left hand?
+Stewardesses
+10
+
+What is the longest word that you can type using only the letters on the top line of a typewriter?
+Proprietory
+10
+
+What is the longest word typed with only the left hand?
+Stewardesses
+10
+
+What is the longest-lasting, non-motorized sporting event in the world?
+Tour de france
+10
+
+What is the longest-lived land animal?
+Elephant
+10
+
+What is the lowest land surface on earth?
+Dead sea shoreline
+10
+
+What is the lowest level of the Earth's atmosphere called?
+Troposphere
+10
+
+What is the lowest number on a set of pokerdices?
+9
+10
+
+What is the lowest rank of British nobility?
+Baron
+10
+
+What is the lowest rank of the British nobility?
+Baron
+10
+
+What is the lowest ranking suit in Bridge?
+Clubs
+10
+
+What is the lowest weight category in boxing?
+Light flyweight
+10
+
+What is the magic no that helped to bring down the walls of jericho?
+Seven
+10
+
+What is the magic word used in the movie mary poppins?
+Supercalifragilisticexpialidocious
+10
+
+What is the main acid produced in the stomach?
+Hydrochloric acid
+10
+
+What is the main character's name in les miserables?
+Jean valjean
+10
+
+What is the main characteristic of deciduous trees?
+Shed their leaves
+10
+
+What is the main colour of earth when looked at from space?
+Blue
+10
+
+What is the main component of glass?
+Sand
+10
+
+What is the main constituent metal of the singapore 10-cent coin?
+Nickel
+10
+
+What is the main constituent of natural gas?
+Methane
+10
+
+What is the main constituent of the Greek dish Dolmadas?
+Stuffed vine leaves
+10
+
+What is the main export of jamaica, used in making of aluminium?
+Bauxite
+10
+
+What is the main food of mosquitoes?
+Nectar
+10
+
+What is the main food of most bats?
+Insects
+10
+
+What is the main food of the oyster catcher?
+Mussels
+10
+
+What is the main gas in venus' atmosphere?
+Carbon dioxide
+10
+
+What is the main grape used in Barolo and Barbaresco?
+Nebbiolo
+10
+
+What is the main grape used in Chianti?
+Sangiovese
+10
+
+What is the main ingredient in a guacamole dip?
+Avocado pear
+10
+
+What is the main ingredient in an omelet?
+Egg
+10
+
+What is the main ingredient in bouillabaisse?
+Seafood
+10
+
+What is the main ingredient in Coca Cola after water?
+Sugar
+10
+
+What is the main ingredient in glass?
+Sand
+10
+
+What is the main ingredient of mock turtle soup?
+Calf's head
+10
+
+What is the main ingredient of most shampoos?
+Water
+10
+
+What is the main ingredient of risotto?
+Rice
+10
+
+What is the main ingredient of the French dish cassoulet?
+Haricot beans
+10
+
+What is the main ingredient of the Indian dish 'dhal'?
+Pulses
+10
+
+What is the main item stored in the hump of a camel?
+Fat
+10
+
+What is the main Japanese religion?
+Shinto
+10
+
+What is the main job of a striker in Football?
+Score goals
+10
+
+What is the main manufacturing industry in Detroit?
+Motor cars
+10
+
+What is the main port of Bulgaria?
+Varna
+10
+
+What is the main product of the Jura Mountain region and the valley of Aar,Switzerland?
+Clocks and watches
+10
+
+What is the main reason washing machines are fitted with a reverse tumble action?
+Stops clothes tangling
+10
+
+What is the main river to flow through Hamburg?
+Elbe
+10
+
+What is the main source of vitamin C?
+Fruit
+10
+
+What is the main substance contained within pearls?
+Calcium
+10
+
+What is the main unit of currency in Saudi Arabia?
+Riyal
+10
+
+What is the main use of tinder?
+Lighting a fire
+10
+
+What is the many- legged mythological sea creature of Scandinavia?
+Kraken
+10
+
+What is the marseillaise?
+French national anthem
+10
+
+What is the mascot of the u.s naval academy?
+Goat
+10
+
+What is the master gland of the body?
+Pituitary
+10
+
+What is the mathematical diagram in which sets are represented by overlapping circles?
+Venn
+10
+
+What is the mathematical term for a part of a whole, such as half or a quarter?
+Fraction
+10
+
+What is the mathematics of multivariate input-output problems?
+Linear programming
+10
+
+What is the Maths equivalent of the Nobel prize?
+Fields Medal
+10
+
+What is the maximum amount of duty free whisky a person of 17 can bring into Britain?
+One litre
+10
+
+What is the maximum distance between the moon and the earth?
+253,000 miles
+10
+
+What is the maximum number of coins that can be turned up with four players of Spoof?
+Twelve
+10
+
+What is the maximum number of coins that five Spoof players could produce at one call?
+Fifteen
+10
+
+What is the maximum number of consecutive terms that a US president can now serve?
+Two
+10
+
+What is the maximum number of degrees in a reflex angle?
+Three hundred and fifty nine
+10
+
+What is the maximum number of degrees in an acute angle?
+Eighty nine degrees
+10
+
+What is the meaning of Bolshoi - as in the Bolshoi Ballet?
+Great
+10
+
+What is the meaning of diurnal?
+Daily
+10
+
+What is the meaning of Sinn Fein?
+We ourselves
+10
+
+What is the meaning of the German word Meerschaum the name given to a type of tabacco pipe?
+Sea-foam
+10
+
+What is the meaning of the Italian word spago?
+String
+10
+
+What is the meaning of the Japanese 'karaoke'?
+Empty orchestra
+10
+
+What is the meaning of the latin expression 'e pluribus unum'?
+One out of many
+10
+
+What is the meaning of the mercedes benz motto 'das beste oder nichts'?
+The
+10
+
+What is the meaning of the name Irene, which comes from the Greek words eirenikos or eirene?
+Aiming at peace
+10
+
+What is the meaning of the word 'Dodecanese'?
+Twelve islands
+10
+
+what is the meaning of the word ballet?
+A little dance
+10
+
+What is the meaning of the zoological term ruminant?
+Cud chewer
+10
+
+What is the measure of monitor screen quality?
+Resolution
+10
+
+What is the media simon and garfunkel recorded came in besides vinyl?
+8 track
+10
+
+What is the medical name for 'hardening of the arteries'?
+Atherosclerosis
+10
+
+What is the medical name for the shoulder blade?
+Scapula
+10
+
+What is the medical name for the thigh bone?
+Femur
+10
+
+What is the medical name for the wind pipe?
+Trachea
+10
+
+What is the medical term for 'loss of memory'?
+Amnesia
+10
+
+What is the medical term for an eyeball shaped like a rugby ball?
+Astigmatism
+10
+
+What is the medical term for cancer of the blood?
+Leukaemia
+10
+
+What is the medical term for ear wax?
+Cerumen
+10
+
+What is the medical term for pain and aching in the lower back?
+Lumbago
+10
+
+What is the medical term for short sightedness?
+Myopia
+10
+
+What is the medical term for the cartilage in the nose?
+Septum
+10
+
+What is the medical term for the sudden and complete loss of memory?
+Amnesia
+10
+
+What is the medical term for whooping cough?
+Pertussis
+10
+
+What is the medical term for word blindness?
+Dyslexia
+10
+
+What is the medical term given to the study of the brain and nervous system?
+Neurology
+10
+
+What is the medium that can carry 672 telephone calls simultaneously along a fibre optics cable?
+Light
+10
+
+What is the membrane that surrounds the heart known as?
+Pericardium
+10
+
+What is the membrane that surrounds the lungs known as?
+Pleura
+10
+
+What is the metal favoured by most dart players?
+Tungsten
+10
+
+What is the metal part of a lamp surrounding the bulb and supporting the shade?
+Harp
+10
+
+What is the method of resolving disputes without resorting to law, strikes or lock-outs?
+Arbitration
+10
+
+What is the metric word for a million?
+Mega
+10
+
+What is the Mexican dish 'huevos rancheros' made from?
+Baked eggs
+10
+
+What is the middle day of the year in a non leap year?
+July 2
+10
+
+What is the middle name of author Arthur C. Clarke?
+Charles
+10
+
+What is the middle name of author H.G. Wells?
+George
+10
+
+What is the middle name of Cassius Clay?
+Marcellus
+10
+
+What is the mineral ranking 2 on the mohs' scale of hardness?
+Gypsum
+10
+
+What is the minimum age a US President has to be?
+Thirty five
+10
+
+What is the minimum amount of mass required to form a black hole?
+Chandrasekhar limit
+10
+
+What is the minimum annual earning requirement for an American express gold card?
+?25000
+10
+
+What is the minimum IQ score for the genius category?
+-- Answer metadata begin
+{
+    "answers": ["140", "one hundred and forty"]
+}
+-- Answer metadata end
+10
+
+What is the minimum iq score to be considered a genius?
+One hundred and forty
+10
+
+What is the minimum number of bars on an abacus?
+Nine
+10
+
+What is the minimum number of degrees in an acute angle?
+One degree
+10
+
+What is the minimum number of degrees in an obtuse angle?
+Ninety one degrees
+10
+
+What is the minimum number of letters in the first word of a Scrabble game?
+Two
+10
+
+What is the minimum number of masts on a schooner?
+Two
+10
+
+What is the minimum number of secret service agents to accompany the u.s. president at all times?
+Six
+10
+
+What is the MInistry of Peace responsible for in the novel Nineteen eighty four?
+War
+10
+
+What is the minnesota baseball team called?
+Twins
+10
+
+What is the misshapen ear that boxers often have?
+Cauliflower ear
+10
+
+What is the mode of transport in venice?
+Gondola
+10
+
+What is the modern day name of what the romans called aquae sulis?
+Bath
+10
+
+What is the modern equivalent of the English reeve?
+Sheriff
+10
+
+What is the modern name for Petrograd?
+St. petersburg
+10
+
+What is the modern name for the the old hanseatic port danzig?
+Gdansk
+10
+
+What is the modern name of the Roman town of Glevum?
+Gloucester
+10
+
+What is the modern name of the Roman town of Lutetia?
+Paris
+10
+
+What is the monetary unit for Algeria?
+Dinar
+10
+
+What is the monetary unit for Argentina?
+Peso
+10
+
+What is the monetary unit for Australia?
+Dollar
+10
+
+What is the monetary unit for Austria?
+Schilling
+10
+
+What is the monetary unit for Bangladesh?
+Taka
+10
+
+What is the monetary unit for Belgium?
+Belgian franc
+10
+
+What is the monetary unit for Brazil?
+Cruzeiro
+10
+
+What is the monetary unit for Canada?
+Dollar
+10
+
+What is the monetary unit for Chile?
+Chilean peso
+10
+
+What is the monetary unit for China?
+Yuan
+10
+
+What is the monetary unit for Colombia?
+Colombian peso
+10
+
+What is the monetary unit for Denmark?
+Danish krone
+10
+
+What is the monetary unit for Egypt?
+Egyptian pound
+10
+
+What is the monetary unit for Federale Republic Of Yugoslavia?
+Dinar
+10
+
+What is the monetary unit for Finland?
+Markka
+10
+
+What is the monetary unit for France?
+Franc
+10
+
+What is the monetary unit for Germany?
+Mark
+10
+
+What is the monetary unit for Greece?
+Drachma
+10
+
+What is the monetary unit for Guatemala?
+Quetzal 
+10
+
+What is the monetary unit for Hong Kong?
+Dollar 
+10
+
+What is the monetary unit for Hungary?
+Forint 
+10
+
+What is the monetary unit for India?
+Rupee
+10
+
+What is the monetary unit for Indonesia?
+Rupiah 
+10
+
+What is the monetary unit for Iran?
+Rial
+10
+
+What is the monetary unit for Ireland?
+Pound 
+10
+
+What is the monetary unit for Israel?
+She kel
+10
+
+What is the monetary unit for Italy?
+Lira 
+10
+
+What is the monetary unit for Japan?
+Yen
+10
+
+What is the monetary unit for Kenya?
+Shilling 
+10
+
+What is the monetary unit for Lebanon?
+Lebanese pound 
+10
+
+What is the monetary unit for Libya?
+Libyan dinar
+10
+
+What is the monetary unit for Malaysia?
+Rinjit
+10
+
+What is the monetary unit for Mexico?
+Mexican peso
+10
+
+What is the monetary unit for Morocco?
+Dirham
+10
+
+What is the monetary unit for Netherlands?
+Guilder
+10
+
+What is the monetary unit for New Zealand?
+Dollar
+10
+
+What is the monetary unit for Norway?
+Krone
+10
+
+What is the monetary unit for Pakistan?
+Rupee 
+10
+
+What is the monetary unit for Panama?
+Balboa
+10
+
+What is the monetary unit for Peru?
+Sol
+10
+
+What is the monetary unit for Philipines?
+Peso
+10
+
+What is the monetary unit for Poland?
+Zloty
+10
+
+What is the monetary unit for Portugal?
+Escudo
+10
+
+What is the monetary unit for Romania?
+Leu
+10
+
+What is the monetary unit for Saudi Arabia?
+Riyal
+10
+
+What is the monetary unit for Singapore?
+Dollar
+10
+
+What is the monetary unit for South Africa?
+Rand
+10
+
+What is the monetary unit for South Korea?
+Won
+10
+
+What is the monetary unit for Spain?
+Peseta
+10
+
+What is the monetary unit for Sri Lanka?
+Rupee
+10
+
+What is the monetary unit for Sudan?
+Pound
+10
+
+What is the monetary unit for Sweden?
+Krona
+10
+
+What is the monetary unit for Switzerland?
+Swiss franc
+10
+
+What is the monetary unit for Thailand?
+Baht
+10
+
+What is the monetary unit for Tunesia?
+Dinar
+10
+
+What is the monetary unit for Turkey?
+Turkish lira
+10
+
+What is the monetary unit for United Kingdom?
+Pound
+10
+
+What is the monetary unit in Germany?
+Deutsche mark
+10
+
+What is the monetary unit of Algeria?
+Dinar
+10
+
+What is the monetary unit of Angola?
+Kwanza
+10
+
+What is the monetary unit of Botswana?
+Pula
+10
+
+What is the monetary unit of Cameroon?
+Franc
+10
+
+What is the monetary unit of Chad?
+Franc
+10
+
+What is the monetary unit of Ecuador?
+Sucre
+10
+
+What is the monetary unit of Egypt?
+Egyptian pound
+10
+
+What is the monetary unit of Ethiopia?
+Birr
+10
+
+What is the monetary unit of Gambia?
+Dalasi
+10
+
+What is the monetary unit of Ghana?
+Cedi
+10
+
+What is the monetary unit of Kenya?
+Shilling
+10
+
+What is the monetary unit used in Afghanistan?
+Afghani
+10
+
+What is the more common name for 'self contained underwater breathing apparatus?
+Scuba
+10
+
+What is the more common name for a quasi autonomous non governmental organisation?
+Quango
+10
+
+What is the more common name for grape sugar?
+Glucose
+10
+
+What is the more common name for sodium chloride?
+Salt
+10
+
+What is the more common name for the bird also known as the windhover?
+Kestrel
+10
+
+What is the more common name for the canis familiaris?
+Domestic dog
+10
+
+What is the more common name for the city of krung thep?
+Bangkok
+10
+
+What is the more common name for the condition 'hypermetropia'?
+Long-sightedness
+10
+
+What is the more common name of Africa's camelopard?
+Giraffe
+10
+
+What is the more common name of nitrous oxide?
+Laughing gas
+10
+
+What is the more common name of the fruit the chinese gooseberry?
+Kiwi fruit
+10
+
+What is the more common term for enuresis?
+Bed wetting
+10
+
+What is the more common title of the sovereign of the state of Vatican City?
+Pope
+10
+
+What is the more familiar name of the banana boat song?
+Day-o
+10
+
+What is the more familiar name to the British of the Swiss lake Vierwaldstattersee?
+Lake lucerne
+10
+
+What is the more normal name for the tooth walking sea horse?
+Walrus
+10
+
+What is the more popular name for the flower, Calendula?
+Marigold
+10
+
+What is the more popular name for the plant convallaria majalis?
+Lily of the valley
+10
+
+What is the more popular narne of the plants belonging to the genus galanthus?
+Snowdrop
+10
+
+What is the more popular way of loading toilet paper?
+Over-the top
+10
+
+What is the more scientific name of the funny bone?
+The humerus bone
+10
+
+What is the more usual name for blue beryl?
+Aquamarine
+10
+
+What is the more usual name for green beryl?
+Emerald
+10
+
+What is the more usual name for the egg plant or guinea squash?
+Aubergine
+10
+
+What is the Morse code representation for the letter T?
+Single dash
+10
+
+What is the most abundant element in the Sun?
+Hydrogen
+10
+
+What is the most abundant mineral in the human body?
+Calcium
+10
+
+What is the most air polluted city in the united states?
+Los angeles
+10
+
+What is the most common atom in the universe?
+Hydrogen
+10
+
+What is the most common atom?
+Hydrogen
+10
+
+What is the most common blood type in humans?
+Type o
+10
+
+What is the most common colour of amethyst?
+Purple
+10
+
+What is the most common colour of garnet?
+Red
+10
+
+What is the most common colour of Lapis Lazuli?
+Blue
+10
+
+What is the most common colour of topaz?
+Yellow
+10
+
+What is the most common disease in the world?
+Tooth decay
+10
+
+What is the most common element in the earth's crust?
+Oxygen
+10
+
+What is the most common element in the universe?
+Hydrogen
+10
+
+What is the most common fowl on earth?
+Chicken
+10
+
+What is the most common German surname?
+Schultz
+10
+
+What is the most common injury in tenpin bowling?
+Sore thumb
+10
+
+What is the most common metallic ore in the earths crust?
+Aluminium
+10
+
+What is the most common name for a pub in Britain?
+The Red Lion
+10
+
+What is the most common name in nursery rhymes?
+Jack
+10
+
+What is the most common name in the world?
+Mohammed.
+10
+
+What is the most common Russian surname?
+Ivanov
+10
+
+What is the most common Spanish surname?
+Garcia
+10
+
+What is the most common street name in the cities of the usa?
+Park street
+10
+
+What is the most common surname among the Hmong people of Laos?
+Vang
+10
+
+What is the most common surname in the Barcelona telephone directory?
+Garcia
+10
+
+What is the most common surname in the world?
+Chang
+10
+
+What is the most commonly eaten food in the world?
+Rice
+10
+
+What is the most commonly spoken language in belgium?
+French
+10
+
+What is the most commonly spoken language in India?
+Hindi
+10
+
+What is the most commonly used punctuation mark?
+Comma
+10
+
+What is the most crucial part of ski jumping?
+The Takeoff
+10
+
+What is the most dangerous job in the u.s?
+Commercial fishing
+10
+
+What is the most dangerous shark?
+Great white
+10
+
+What is the most dense planet in our solar system?
+Earth
+10
+
+What is the most distant planet from earth between 1979 and 2000?
+Neptune
+10
+
+What is the most distant planet from the sun?
+Pluto
+10
+
+What is the most exclusive hotel on London's Brook Street?
+Claridges
+10
+
+What is the most extensively grown and eaten food?
+Wheat
+10
+
+What is the most famous 500 mile car race in the U S?
+Indianapolis 500
+10
+
+What is the most famous and often quoted Psalm?
+23rd psalm
+10
+
+What is the most famous church designed by Sir Christopher Wren?
+St Pauls cathedral
+10
+
+What is the most famous mausoleum in India?
+Taj mahal
+10
+
+What is the most famous remaining structure from the 1889 Paris Exhibition?
+Eiffel tower
+10
+
+What is the most filmed story?
+Dracula
+10
+
+What is the most frequent occuring letter of alphabet?
+E
+10
+
+What is the most frequently rolled number with two dice?
+Seven
+10
+
+What is the most frequently used letter in the English alphabet?
+E
+10
+
+What is the most frequently used word in the English language?
+The
+10
+
+What is the most given answer on this trivia?
+Boy george
+10
+
+What is the most important industry in Alaska?
+Fishing
+10
+
+What is the most important mineral for strong bones & teeth?
+Calcium
+10
+
+What is the most intelligent creature on Earth after man?
+Dolphin
+10
+
+What is the most intelligent subhuman primate?
+Chimpanzee
+10
+
+What is the most northerly major city in Canada?
+Edmonton
+10
+
+What is the most northerly town in Europe?
+Hammerfest
+10
+
+What is the most Northern point of land in the World?
+Cape Morris K. Jesup
+10
+
+What is the most nutritious food in the world?
+Blood
+10
+
+What is the most penetrating form of radiation?
+Gamma
+10
+
+What is the most photographed, painted and climbed mountain in the world?
+Fuji
+10
+
+What is the most popular beverage in north America?
+Milk
+10
+
+What is the most popular card game in the English speaking world?
+Bridge
+10
+
+What is the most popular crop in U S home vegetable gardens?
+Tomatoes
+10
+
+What is the most popular decoration on top of a toilet tank?
+Scented seashells
+10
+
+What is the most popular drink in greece?
+Ouzo
+10
+
+What is the most popular finishing double in darts?
+Sixteen
+10
+
+What is the most popular meal ordered in sit down restaurants in the us?
+Fried chicken
+10
+
+What is the most popular name for a dog in the U S?
+Rover
+10
+
+What is the most popular proprietary board game in the world?
+Monopoly
+10
+
+What is the most popular street name in the u.s?
+Park street
+10
+
+What is the most popular theater in Japan called?
+Kabuki
+10
+
+What is the most popular type of holiday greeting card mailed in the U S?
+Christmas
+10
+
+What is the most popular type of holiday greeting card mailed in the united states?
+Christmas
+10
+
+What is the most populated country in Africa?
+Nigeria
+10
+
+What is the most powerful animal symbol of chinese mythology?
+Dragon
+10
+
+What is the most prominent feature on jupiter's surface?
+Great red spot
+10
+
+What is the most recent year that can be written upside-down and rightside-up and still look the same?
+1961
+10
+
+What is the most rural state in the u.s?
+North dakota
+10
+
+What is the most rural state in the USA?
+North Dakota
+10
+
+What is the most sacred river in India?
+The ganges
+10
+
+What is the most sensitive finger?
+Forefinger
+10
+
+What is the most shoplifted book in the usa?
+Bible
+10
+
+What is the most slippery substance known to man?
+Tufoil
+10
+
+What is the most southerly County of Ireland?
+Cork
+10
+
+What is the most unbelievable part of the warren report?
+Magic bullet theory
+10
+
+What is the most used word in written English?
+The
+10
+
+What is the most venomous snake?
+King cobra
+10
+
+What is the most volcanically active orb?
+Io
+10
+
+What is the most westerly county of Ireland?
+Kerry
+10
+
+What is the most westerly terminus of the Piccadily line?
+Heathrow
+10
+
+What is the most widely cultivated plant?
+Wheat
+10
+
+What is the most widely spoken member of the iranian branch of the indo-iranian languages, a subfamily of the indo-european languages?
+Persian
+10
+
+What is the most widely used seasoning in the world?
+Salt
+10
+
+What is the most widely used tranquiliser in North America?
+Valium
+10
+
+What is the most-often printed sentence in the English language?
+Close cover before striking
+10
+
+What is the motto of the BBC?
+Nation shall speak unto nation
+10
+
+What is the motto of the boy scouts?
+Be prepared
+10
+
+What is the motto of the rolling stone magazine?
+All the news that fits
+10
+
+What is the motto of the three investigators?
+We investigate anything
+10
+
+What is the motto of the three muskateers?
+All for one & one for all
+10
+
+What is the musical form of Pygmalion?
+My fair lady
+10
+
+What is the musical style called that mixes jazz with pop or other styles?
+Fusion
+10
+
+What is the musical term for 'brisk time and lively'?
+Allegro
+10
+
+What is the Muslim equivalent of Red Cross?
+Red Crescent
+10
+
+What is the mythical creature with the head and arms of a man and the body and legs of a horse?
+Centaur
+10
+
+What is the name by which U2's David Evans is better known?
+The edge
+10
+
+What is the name for a legal document, used in court, in which a person swears that certain facts are true?
+Affadavit
+10
+
+What is the name for a limestone deposit hanging from the roof of a cave?
+Stalactite
+10
+
+What is the name for a line of longitude on a map?
+Meridian
+10
+
+What is the name for a match of 3 games in bridge?
+Rubber
+10
+
+What is the name for a narrow necked wine or spirit container of more than two gallon capacity?
+Demijohn
+10
+
+What is the name for a painting depicting objects such as fruit and flowers?
+Still life
+10
+
+What is the name for a person hired to carry a golfer's clubs for him?
+Caddie
+10
+
+What is the name for a person who eats no meat,fish or dairy products?
+Vegan
+10
+
+What is the name for a person who you correspond with regularly?
+Penpal
+10
+
+What is the name for a sexual disorder in which a person obtains gratification by receiving physical pain or abuse?
+Masochism
+10
+
+What is the name for a triangle whose sides are all of different lengths?
+Scalene
+10
+
+What is the name for a waterproof trousers with bib worn by skiers?
+Sallopette
+10
+
+What is the name for a woman who is superior of a convent in certain religious orders?
+Abbess
+10
+
+What is the name for food permissable under Moslem dietry laws?
+Halal
+10
+
+What is the name for Jacques Cousteau's research ship?
+The Calypso
+10
+
+What is the name for meat killed in the prescribed Muslim manner?
+Halal
+10
+
+What is the name for members of the cabbage family?
+Brassicas
+10
+
+What is the name for Russian beet soup?
+Borscht
+10
+
+What is the name for someone who studies bird life?
+Ornithologist
+10
+
+What is the name for the bone structure of a person or animal?
+Skeleton
+10
+
+What is the name for the creamy liver of lobster eaten as a delicacy?
+Tomalley
+10
+
+What is the name for the cutting and training of shrubs into decorative shapes?
+Topiary
+10
+
+What is the name for the hole in the side of a volcanoe that gives off volcanic gases?
+Fumarole
+10
+
+What is the name for the kind of writing used by early egyptians?
+Hieroglyphics
+10
+
+What is the name for the land beyond the tree line?
+Tundra
+10
+
+What is the name for the load line on a ship?
+Plimsoll line
+10
+
+What is the name for the outer part of a citrus fruit?
+Zest
+10
+
+What is the name for the part of the bone that fits into a socket to form hip and shoulder joints?
+Ball
+10
+
+What is the name for the scientific study of human efficiency in working environments?
+Ergonomics
+10
+
+What is the name for the study of cells?
+Cytology
+10
+
+What is the name for the study of liquid flow?
+Hydraulics
+10
+
+What is the name for the symbol consisting of two dots which is placed above a letter in Germanic languages?
+Umlaut
+10
+
+What is the name for the theoretical end product of the gravitational collapse of a massive star?
+Black hole
+10
+
+What is the name for the ugly red fleshy appendage that hangs from the neck of a turkey?
+Wattle
+10
+
+What is the name given for an optical illusion caused by unusual atmospheric conditions?
+Mirage
+10
+
+What is the name given of the Israeli national anthem?
+Hatikyah
+10
+
+What is the name given originally by greek rhetoricians to a literary illustration?
+Parable
+10
+
+What is the name given to a chemical that is used when a dye will not fix directly on to the fabric?
+Mordant
+10
+
+What is the name given to a cocktail of rum and lime juice?
+Daiquiri
+10
+
+What is the name given to a fox's tail?
+Brush
+10
+
+What is the name given to a gem made from 2 stones arranged in differently coloured layers, with figures carved into the top layer, which is set in relief against the others?
+Cameo
+10
+
+What is the name given to a group of doves?
+Flight
+10
+
+What is the name given to a group of geese?
+Gaggle
+10
+
+What is the name given to a group of porpoises?
+School
+10
+
+What is the name given to a loaf of bread which is made from two round lumps with the smaller on the top?
+Cottage loaf
+10
+
+What is the name given to a pillar or supporting column in the shape of a woman?
+Caryatid
+10
+
+What is the name given to a place in the desert where there is water?
+Oasis
+10
+
+What is the name given to a sculptured or pictorial representation of the virgin and the dead christ?
+Pieta
+10
+
+What is the name given to a solid figure with 12 plane faces?
+Dodecahedron
+10
+
+What is the name given to a type of fossil resin?
+Amber
+10
+
+What is the name given to a victory whose cost is so great as to negate its value?
+Pyrrhic victory
+10
+
+What is the name given to a wall of a mosque that faces Mecca?
+Qibla wall
+10
+
+What is the name given to a white sauce flavoured with cheese?
+Mornay
+10
+
+What is the name given to a widow of a king?
+Dowager
+10
+
+What is the name given to a young fish?
+Fry
+10
+
+What is the name given to an early bicycle with a very big front wheel and a very small black wheel?
+Penny-farthing
+10
+
+What is the name given to an outwork which defended the entrance of a castle or fortified town?
+Barbican
+10
+
+What is the name given to Asian countries and the East in general?
+Orient
+10
+
+What is the name given to Indian food cooked over charcoal in a clay oven?
+Tandoori
+10
+
+What is the name given to parrallel beams which stretch from one wall to another in a building to support the floors?
+Joists
+10
+
+What is the name given to part of the large intestine?
+Colon
+10
+
+What is the name given to sole cooked in white wine and cream with grapes?
+Sole veronique
+10
+
+What is the name given to stoats when they have their winter coats?
+Ermine
+10
+
+What is the name given to the dish of beef coated in pate and wrapped in pastry?
+Beef wellington
+10
+
+What is the name given to the dish of prunes wrapped in bacon?
+Devils on horseback
+10
+
+What is the name given to the flat piece of iron that connects railway rails?
+Fishplate
+10
+
+What is the name given to the fortified gateway of a castle?
+Barbican
+10
+
+What is the name given to the house on a roman estate?
+Villa
+10
+
+What is the name given to the informal canon of good behaviour to which Internet users should adhere?
+Netiquette
+10
+
+What is the name given to the Japanese art of growing miniature trees?
+Bonsai
+10
+
+What is the name given to the salted roe of a sturgeon?
+Caviar
+10
+
+What is the name given to the science of improving the population by controlled breeding?
+Eugenics
+10
+
+What is the name given to the setting of gems into stone for example on the marble walls of the Taj Mahal?
+Pietra dura
+10
+
+What is the name given to the side opposite the right angle of a right-angled triangle?
+Hypoteneuse
+10
+
+What is the name given to the system for categorising library books?
+Dewey Decimal System 
+10
+
+What is the name given to the way in which stones such as diamonds are cut so as to have facets which reflect the light in different directions?
+Brilliant
+10
+
+What is the name given to the young of 'dragonflies' and 'damselflies'?
+Nymphs
+10
+
+What is the name given to thin pieces of crisp toast?
+Melba
+10
+
+What is the name given to young deer?
+Fawns
+10
+
+What is the name in a planet's orbit when it is nearest to the sun?
+Perihelion
+10
+
+What is the name of a computer program that helps you perform claculations using rows of columns and figures?
+Spreadsheet
+10
+
+What is the name of a device used to stem the flow of blood?
+Tourniquet
+10
+
+What is the name of a floor in a building between floors, especially between the ground and first floors?
+Mezzanine
+10
+
+What is the name of a formal, written accusation of crime against a person, presented by a grand jury to a court, and upon which the accused person is subsequently tried?
+Indictment
+10
+
+What is the name of a hairstyle in which the head is shaved except for a central strip?
+Mohican
+10
+
+What is the name of a Japanese mattress whose design is 4,000 years old?
+Futon
+10
+
+What is the name of a mass produced electric circuit with conductive strips not wires?
+Printed circuit
+10
+
+What is the name of a plant that turns to keep facing the sun?
+Heliotrope
+10
+
+What is the name of a road crossing with traffic lights operated by pedestrians?
+Pelican crossing
+10
+
+What is the name of a small computer introduced in 1975 by micro instrumentation telemetry systems of new Mexico?
+Altair 8800
+10
+
+What is the name of a three humped camel?
+Humphrey
+10
+
+What is the name of a trellis used to train trees?
+Espalier
+10
+
+What is the name of a two humped camel?
+Bactrian camel
+10
+
+What is the name of alistair macleans ice station?
+Zebra
+10
+
+What is the name of an animal that can pass on bacteria without being affected by the disease itself?
+Vector
+10
+
+What is the name of an Italian dessert made from egg yolks and marsala wine?
+Zabaglione
+10
+
+What is the name of an organism that lives on or in another?
+Parasite
+10
+
+What is the name of andy capp's wife?
+Flo
+10
+
+What is the name of barney rubble's wife?
+Betty
+10
+
+What is the name of basil's wife in fawlty towers?
+Sybil
+10
+
+What is the name of BB Kings guitar?
+Lucille
+10
+
+What is the name of Beatrix Potter's fishing frog?
+Jeremy fisher
+10
+
+What is the name of Beethovens only opera?
+Fidelio
+10
+
+What is the name of betty rubble's husband?
+Barney
+10
+
+What is the name of Canada's nationally owned oil company?
+Petrocan
+10
+
+What is the name of Captain Kremmens large breasted buddy?
+Carla
+10
+
+What is the name of dagwood bumstead's dog?
+Daisy
+10
+
+What is the name of dennis the menace's dog?
+Gnasher
+10
+
+What is the name of dilbert's company's competitor?
+Nirvana co
+10
+
+What is the name of disney's latest cartoon film?
+Lilo and stitch
+10
+
+What is the name of donald duck's girlfriend?
+Daisy duck
+10
+
+What is the name of Donald Duck's sister?
+Dumbella
+10
+
+What is the name of dr dolittle's parrot?
+Polynesia
+10
+
+What is the name of Dr Whos time machine?
+The tardis
+10
+
+What is the name of Dr. Seuss's egg hatching elephant?
+Horton
+10
+
+What is the name of elvis presley's private plane?
+Lisa marie
+10
+
+What is the name of ex-blue peter presenter janet ellis's singing daughter?
+Sophie ellis bextor
+10
+
+What is the name of Ferdinand Marcos widow?
+Imelda
+10
+
+What is the name of film director Ron Howard's production company?
+Image Entertainment
+10
+
+What is the name of Flanders' store?
+The Leftorium 
+10
+
+What is the name of fred flintstone's dinosaur?
+Dino
+10
+
+What is the name of fred flintstone's wife?
+Wilma
+10
+
+What is the name of garfield's owner?
+Jon arbuckle
+10
+
+What is the name of george of the jungle's talking ape pal?
+Ape
+10
+
+What is the name of Goscinny and Uderzos menhir delivery man?
+Obelix
+10
+
+What is the name of harvard university's satirical newspaper?
+Lampoon
+10
+
+What is the name of Hereford Cathedrals most famous map?
+Mappa mundi
+10
+
+what is the name of Hugh Hefners super jet?
+Big Bunny
+10
+
+What is the name of Jacques Cousteau's research ship?
+Calypso
+10
+
+What is the name of jaleel white's character in the tv series 'family matters'?
+Steve erkel
+10
+
+What is the name of jaleel white's character in the tv series 'family ties'?
+Steve erkel
+10
+
+What is the name of jefferson's home, pictured on the back of a us nickel?
+Monticello
+10
+
+What is the name of jonny quest's dog?
+Bandit
+10
+
+What is the name of Jupiter's largest moon?
+Ganymede
+10
+
+What is the name of Lisa's pony?
+Princess
+10
+
+What is the name of little orphan annie's dog?
+Sandy
+10
+
+What is the name of luke skywalker's troll like adviser in the empire strikes back?
+Yoda
+10
+
+What is the name of Madonnas 2002 film release, directed by her husband Guy Ritchie?
+Swept away
+10
+
+What is the name of marty's band that trys out for the dance in back to the future?
+The pinheads
+10
+
+What is the name of Mary Quant's London Fashion shop in the 60's?
+Bazaar
+10
+
+What is the name of mighty mouse's girl friend?
+Pearl pureheart
+10
+
+What is the name of Morticia's husband in TV's 'Addams Family'?
+Gomez
+10
+
+What is the name of Morticia's son in TV's 'Addams Family'?
+Puggsley
+10
+
+What is the name of Mr.Krane's dog on Frasier?
+Eddie.
+10
+
+What is the name of mulder and scully's supervisor on The X-Files?
+Walter skinner
+10
+
+What is the name of New Yorks main airport?
+Kennedy airport
+10
+
+What is the name of one of daisy duck's nieces?
+April
+10
+
+What is the name of oprah winfrey's production company?
+Harpo
+10
+
+What is the name of orphan annie's dog?
+Sandy
+10
+
+What is the name of Pierce Brosnan's first James Bond film?
+Goldeneye
+10
+
+What is the name of prince edward's production company?
+Ardent
+10
+
+What is the name of Princess Anne's second husband?
+Tim laurence
+10
+
+What is the name of puff the magic dragon's human friend?
+Jackie paper
+10
+
+What is the name of rock group Chicago's boulder, colorado recording studio?
+Caribou ranch
+10
+
+What is the name of Russia's state run travel agency?
+Intourist
+10
+
+What is the name of snoopy's secretary?
+Woodstock
+10
+
+What is the name of sonny & cher's daughter?
+Chastity
+10
+
+What is the name of the 'looney tunes' song?
+Merry-go-round broke down
+10
+
+What is the name of the 19-year-old Serb nationalist who assasinated Francis Ferdinand in Sarajevo in 1914?
+Gavrilo Princip
+10
+
+What is the name of the 1982 Booker Prize Winner which caused a controversy about whether or not it was a novel?
+Schindlers ark
+10
+
+What is the name of the 22 storey Canning Town tower block that collapsed in 1968?
+Ronan point
+10
+
+What is the name of the airline that operates the ill-fated flight from la to Chicago in the movie airplane!?
+Trans American 
+10
+
+What is the name of the airport on the falkland islands?
+Mount pleasant
+10
+
+What is the name of the American architect who designed the house named Falling water which was built in 1936-7 in Bear Run Pennsylvania?
+Frank lloyd wright
+10
+
+What is the name of the annual race car driving event held in Toronto, Ontario each July?
+Molson Indy
+10
+
+What is the name of the asteroid that was believed to have killed the dinosaurs?
+Chixalub
+10
+
+What is the name of the Austrian monk who experimented with peas and is considered the founder of genetics?
+Gregor mendel
+10
+
+What is the name of the author wrote the book 'little women'?
+Louisa may alcott
+10
+
+What is the name of the background screen on which windows is displayed?
+Desktop
+10
+
+What is the name of the bacterium that causes food poisoning in contaminated food?
+Salmonella
+10
+
+What is the name of the belief in the existence of many gods or divine beings?
+Polytheism
+10
+
+What is the name of the bell inside the clock tower at the houses of parliament square?
+Big ben
+10
+
+What is the name of the Berlin cabaret where lola lola sang?
+Blue angel
+10
+
+What is the name of the big cannon in Edinburgh castle?
+Mons Meg
+10
+
+What is the name of the big muscle used in breathing that seperates the chest from the abdomen?
+Diaphragm
+10
+
+What is the name of the board at a race track showing odds & results?
+Tote board
+10
+
+What is the name of the board at a race track showing odds and results?
+Tote
+10
+
+What is the name of the boat that gives tourists a close-up view of Niagara Falls?
+Maid of the Mist
+10
+
+What is the name of the body part which seperates the nostrils?
+Septum
+10
+
+What is the name of the bone at the base of the human spine?
+Coccyx
+10
+
+What is the name of the Boston baseball team based at Fenway Park?
+Boston red sox
+10
+
+What is the name of the Buckinghamshire estate where the German Enigma codes were cracked during World War 2?
+Bletchley park
+10
+
+What is the name of the Canadian secret service?
+Csis
+10
+
+What is the name of the Cannon ranch?
+The high chaparral
+10
+
+What is the name of the cape at the southernmost tip of africa?
+Cape agulhas
+10
+
+What is the name of the capital of Alberta (Canada)?
+Edmonton
+10
+
+What is the name of the capital of Ontario (Canada)?
+Toronto
+10
+
+What is the name of the capital of Quebec (Canada)?
+Quebec city
+10
+
+What is the name of the capital of quebec?
+Quebec city
+10
+
+What is the name of the capital of Saskatchewan (Canada)?
+Regina
+10
+
+What is the name of the car Homer designs for Powell Motors?
+The Homer 
+10
+
+What is the name of the cartilage flap at the trachea which prevents food going down the wrong way?
+Epiglottis
+10
+
+What is the name of the cartoon character in the comic enclosed in 'Double Bubble Gum?
+Pud
+10
+
+What is the name of the cartoon character who features on the quiz show bullseye?
+Bully
+10
+
+What is the name of the cartoon giraffe mascot of the 'Toys R Us' retail chain store?
+Geoffrey
+10
+
+What is the name of the cartoon that had ponies of all colors of the rainbow,and had a design on their butt,and they talked?
+My little ponies
+10
+
+What is the name of the cartoon that had ponies of all colors of the rainbow,and had a design on their butt,there were pegasus,unicorns,and earth ponies and they talked?
+My Little Ponies
+10
+
+What is the name of the cat in the smurfs?
+Azriel
+10
+
+What is the name of the central tower of a castle, the innermost and strongest part?
+Keep
+10
+
+What is the name of the Chairman of the European Central Bank?
+Wim duisenberg
+10
+
+What is the name of the Chicago baseball team based at Wrigley Field?
+Chicago cubs
+10
+
+What is the name of the Chinese leader who died in 1997?
+Deng xiao-ping
+10
+
+What is the name of the cia agent played by harrison ford in patriot games and clear and present danger?
+Jack ryan
+10
+
+What is the name of the classic dessert of pancakes served in an orange sauce with alcohol?
+Crepe suzette
+10
+
+What is the name of the classical rotunda which was built as a pagan temple in Rome and is now a Christian place of worship?
+The pantheon
+10
+
+What is the name of the cold Spanish soup made from peppers and tomatoes?
+Gazpacho
+10
+
+What is the name of the color used to describe old brown and white photos?
+Sepia
+10
+
+What is the name of the coloured part of the eye?
+Iris
+10
+
+What is the name of the colourful cathedral on Red Square in Moscow?
+St basil's
+10
+
+What is the name of the company that was the first shirt sponsor of Liverpool football club?
+Hitachi
+10
+
+What is the name of the computer in Stanley Kubrick's '2001- A Space Odyssey?
+Hal
+10
+
+What is the name of the container used for keeping cigars properly moist?
+Humidor Humidor
+10
+
+What is the name of the cord joining a mother and her unborn child?
+Umbilical cord
+10
+
+What is the name of the crispbread traditionally eaten by Jews at Passover?
+Matzo
+10
+
+What is the name of the Danish parliament?
+The folketing
+10
+
+What is the name of the dark fine grained rock of which the Giant's Causeway is formed?
+Basalt
+10
+
+What is the name of the dark reddish-brown pigment obtained from the inky secretion of the cuttlefish?
+Sepia
+10
+
+What is the name of the desert in California?
+Mojave
+10
+
+What is the name of the desert region of south east Ethiopia over which Somalia also claims sovereignty?
+Ogaden
+10
+
+What is the name of the detective in john dickson carr novels?
+Gideon fell
+10
+
+What is the name of the digital readouts that display the gallons and the amount of purchase on a gasoline pump?
+Totalizers
+10
+
+What is the name of the dish of eggs baked with spinach?
+Eggs florentine
+10
+
+What is the name of the dog from the Grinch who stole christmas?
+Max
+10
+
+What is the name of the dog in Peter Pan?
+Nana
+10
+
+What is the name of the dog in the cartoon 'The Grinch Who Stole Christmas'?
+Max
+10
+
+What is the name of the dog on the rca victor label?
+Nipper
+10
+
+What is the name of the dog that recovered the lost world cup?
+Pickles
+10
+
+What is the name of the Dukes of Hazzards car?
+General Lee 
+10
+
+What is the name of the dwarf that could spin straw into gold?
+Rumpelstiltskin
+10
+
+What is the name of the eating disorder where binging is followed by deliberate vomiting and purging?
+Bulimia
+10
+
+What is the name of the element whose symbol is Pm?
+Prometheum
+10
+
+What is the name of the elevated semi-desert region found in the northern and western Cape provinces of South Africa?
+Karoo
+10
+
+What is the name of the engine developed for the Harrier jump jet?
+Pegasus
+10
+
+What is the name of the English naturalist that published the book 'the origin of species by means of natural selection'?
+Darwin
+10
+
+What is the name of the evil spirit in polterguise?
+Kane
+10
+
+What is the name of the extension to the Louvre that was designed by Ieoh Ming Pei and built in 1983-93?
+The pyramid
+10
+
+What is the name of the female figure who personifies France, the equivalent to Britain's Britannia?
+Marianne
+10
+
+What is the name of the fibrous protein present in the outer layer of the skin and in hair and nails?
+Keratin
+10
+
+What is the name of the fictional policeman created by Georges Simenon?
+Maigret
+10
+
+What is the name of the film in which steven segal's character dies?
+Executive decision
+10
+
+What is the name of the fin on a fish's back?
+Dorsal fin
+10
+
+What is the name of the first album release of lil' kim?
+Hardcore
+10
+
+What is the name of the first manned module to land on the moon?
+Eagle
+10
+
+What is the name of the first test tube baby?
+Louise brown
+10
+
+What is the name of the frog on 'the muppett show'?
+Kermit
+10
+
+What is the name of the frog on The Muppet Show?
+Kermit
+10
+
+What is the name of the fruit that looks like a hairy lychee?
+Rambutan
+10
+
+What is the name of the German/Swiss/American mathematical physicist best remember for his theories on relativity?
+Einstein
+10
+
+What is the name of the girlfriend sid vicious was charged with murdering?
+Nancy spungen
+10
+
+What is the name of the gold-mining town in the musical Paint Your Wagon?
+No name city
+10
+
+What is the name of the green rooster on the boxes of Kellogg's Corn Flakes?
+Cornelius
+10
+
+What is the name of the group of Muslim scholars who have fought for control of Afghanistan in recent years?
+Taliban
+10
+
+What is the name of the hammer used by doctors to test a patient's reflexes?
+Plexor
+10
+
+What is the name of the harbor in rome?
+Ostia
+10
+
+What is the name of the high quality parchment made on a basis of goat or calf skin?
+Vellum
+10
+
+What is the name of the home ground of liverpool football club?
+Anfield
+10
+
+What is the name of the home pregnancy test Marge uses to see if she is going to have a fourth child?
+Barnacle Bill's Home Pregnancy Test
+10
+
+What is the name of the horse in jingle bells?
+Bobtail
+10
+
+What is the name of the horse in the black stallion?
+The black
+10
+
+What is the name of the house designed by Richard Norman Shaw and was the first in the world to have lights powered by hydro electricity?
+Cragside
+10
+
+What is the name of the ice patrol ship that won a reprieve because of the Falklands conflict?
+Endurance
+10
+
+What is the name of the Indian custom in which widows fling themselves on their husbands funeral pyres?
+Suttee
+10
+
+What is the name of the indigenous music of the french speaking settlers of Louisisana?
+Cajun
+10
+
+What is the name of the infection of the gums that causes them to bleed?
+Pyorrhoea
+10
+
+What is the name of the injury caused by using a canoe or kayaking?
+Housemaid's Knee
+10
+
+What is the name of the instrument that is used for measuring skin temperature?
+Dermatherm
+10
+
+What is the name of the instrument that is used to test the level of charge in a car battery?
+Hydrometer
+10
+
+What is the name of the Island that hosts the Australian 500cc Motorcycle Grand Prix?
+Phillip island
+10
+
+What is the name of the island that separates the two waterfalls at Niagara?
+Goat island
+10
+
+What is the name of the Itchy and Scratchy episode Bart and Lisa Write?
+Barbershop of Horrors 
+10
+
+What is the name of the kangaroo trademark on pocket books?
+Gertrude
+10
+
+What is the name of the Kellogg's cereal prefixed with the word 'healthwise'?
+Bran flakes
+10
+
+What is the name of the Kellogg's cereal prefixed with the word 'Optima'?
+Fruit and fibre
+10
+
+What is the name of the knob at the end of a swords handle?
+Pommel
+10
+
+What is the name of the knot which is used to make a fixed loop that should not slip or jam?
+Bowline
+10
+
+What is the name of the Koala Bear featured in the advertisements for Qantas Airlines?
+Vic
+10
+
+what is the name of the large diamond acquired by the British on the annexation of Punjab in 1849, and placed in the crown jewels of Queen Victoria?
+Koh-i-noor
+10
+
+What is the name of the large resort lake in the center of Disneyworld?
+Buena vista lake
+10
+
+What is the name of the large screen for replays at Skydome, Home of the Toronto Blue Jays?
+The Jumbotron
+10
+
+What is the name of the largest island in the bahamas chain?
+Andros
+10
+
+What is the name of the largest moon of jupiter?
+Ganymede
+10
+
+What is the name of the largest of the Japanese islands?
+Honshu
+10
+
+What is the name of the largest south American lake?
+Lake maracaibo
+10
+
+What is the name of the largest uncut diamond in the world?
+Cullinan
+10
+
+What is the name of the largest US wood products corporation?
+Weyerhaueser
+10
+
+What is the name of the Laugh track machine used by many TV shows to provide canned laughter?
+MacKenzie
+10
+
+What is the name of the lead singer for the Smiths?
+Morrisey
+10
+
+What is the name of the leading female star in an opera?
+Prima donna
+10
+
+What is the name of the least dense element?
+Hydrogen
+10
+
+What is the name of the legendary norweigan sea monster which awoke in the title of the 1953 science fiction novel by John Wyndham?
+The kraken
+10
+
+What is the name of the lift used to raise boats from the River Weaver to the canal system called?
+Anderton lift
+10
+
+What is the name of the lion in the narnian chronicles by cs lewis?
+Aslan
+10
+
+What is the name of the little plasticine man developed by tony hart for childrens tv?
+Morph
+10
+
+What is the name of the magical kingdom in The LIon the witch and the wardrobe?
+Narnia
+10
+
+What is the name of the main European broadcasting system?
+Pal
+10
+
+What is the name of the mall toy musical instrument which produces a sound close to those of a comb and tissue paper?
+Kazoo
+10
+
+What is the name of the man who gave his name to the World Cup Trophy?
+David rimet
+10
+
+What is the name of the manipulator arm astronauts use to complete many tasks outside the space shuttle?
+Canadarm
+10
+
+What is the name of the medical disorder characterized by sudden and uncontrollable attacks of deep sleep?
+Narcolepsy
+10
+
+What is the name of the membrane surrounding the brain?
+Meninges
+10
+
+What is the name of the metal discs in the rim of a tambourine?
+Jingles
+10
+
+What is the name of the metal hoop that supports a lamp shade?
+A harp
+10
+
+What is the name of the mgm lion?
+Leo
+10
+
+What is the name of the most southerly village in mainland britain?
+Lizard
+10
+
+What is the name of the mountain range in north africa?
+Atlas mountains
+10
+
+What is the name of the mountain where Moses received the ten commandments?
+Mount sinai
+10
+
+What is the name of the multi coloured elephant in the books by David McKee?
+Elmer
+10
+
+What is the name of the musical instrument consisting of a toilet seat with strings, used by Spike Jones orchestra?
+Latrinophone
+10
+
+What is the name of the Nike sports logo?
+Swoosh
+10
+
+What is the name of the norwegian parliament?
+Storting
+10
+
+What is the name of the oath which doctor's must take?
+Hippocratic
+10
+
+What is the name of the ocean southeast of Australia?
+Tasman sea
+10
+
+What is the name of the office used by the president in the Whitehouse?
+Oval office
+10
+
+What is the name of the official report of proceedings of the British parliament?
+Hansard
+10
+
+What is the name of the official residence of the president of France?
+The elysee palace
+10
+
+What is the name of the oil reservoir at the bottom of a crank case?
+The sump
+10
+
+What is the name of the old grey donkey in winnie the pooh?
+Eeyore
+10
+
+What is the name of the oldest derby race in North America?
+The Queen's Plate
+10
+
+What is the name of the only active volcano in europe?
+Mount vesuvius
+10
+
+What is the name of the only private army in Britain?
+The atholl highlanders
+10
+
+What is the name of the part of a church east of the crossing that contains the main altar,sanctuary and the choir?
+Chancel
+10
+
+What is the name of the people's car?
+Volkswagen
+10
+
+What is the name of the piece flipped into the cup in tiddlywinks?
+Wink
+10
+
+What is the name of the pig that Jim Davis draws?
+Orson
+10
+
+What is the name of the police inspector that is bent on getting valjean in les miserables?
+Javert
+10
+
+What is the name of the popes official summer residence?
+Castel gandolfo
+10
+
+What is the name of the premium bonds computer?
+Ernie
+10
+
+What is the name of the present king of Saudi Arabia?
+Fahd
+10
+
+What is the name of the presenter of Jim'll fix it?
+Jimmy savile
+10
+
+What is the name of the President of Peru, very much in the news during the siege of the Japanese Embassy in Lima?
+Fujimori
+10
+
+What is the name of the princess in Sleeping Beauty?
+Aurora
+10
+
+What is the name of the process by which metal particles are compressed into a solid body under heat lower than melting point?
+Sintering
+10
+
+What is the name of the process whereby plants lose water into the atmosphere?
+Transpiration
+10
+
+What is the name of the production company owned by Madonna?
+Madguy Films
+10
+
+What is the name of the professor in Cluedo?
+Plum
+10
+
+What is the name of the protein present in red blood cells that is scarlet when combined with oxygen?
+Haemoglobin
+10
+
+What is the name of the Queen Mother's London home?
+Clarence house
+10
+
+What is the name of the queen's Scottish residence?
+Balmoral castle
+10
+
+What is the name of the rabbit in bambi?
+Thumper
+10
+
+What is the name of the radio 2 sunday tea time programme which features the cliff adams singers?
+Sing something simple
+10
+
+What is the name of the religious wars fought against the Turks?
+The crusades
+10
+
+What is the name of the rich reddish brown pigment often preceded by the word 'burnt', a reference to its preparation by heat?
+Sienna
+10
+
+What is the name of the ridge seperating two glacial valleys?
+Arete
+10
+
+What is the name of the river that runs on the border of California and arizona?
+Colorado
+10
+
+What is the name of the Rolls Royce jet engines that power Concorde?
+Olympus
+10
+
+What is the name of the roman god of the underworld?
+Pluto
+10
+
+What is the name of the royal family still alive to this day used to be in power in the austro-hungarian empire, Spain and the Netherlands?
+Habsburg
+10
+
+What is the name of the rules governing British boxing?
+Queensbury rules
+10
+
+What is the name of the Russian czar's daughter who might-or-might-not have survived the Russian revolution?
+Anastasia
+10
+
+What is the name of the science of drugs and their effects?
+Pharmacology
+10
+
+What is the name of the Scottish liqueur which is made of whisky and heather honey?
+Drambuie
+10
+
+What is the name of the seaport of Perth, Western Australia?
+Freemantle
+10
+
+What is the name of the seat for the lord chancellor in British Parliament when presiding over the sittings of the House of Lords?
+Woolsack
+10
+
+What is the name of the second book of the bible?
+Exodus
+10
+
+What is the name of the ship in which Captain Ahab seeks Moby Dick?
+Pequod
+10
+
+What is the name of the sign which is put over the letter 'n' in Spanish, to give a 'nya' sound?
+Tilde
+10
+
+What is the name of the singer that sings 'hot legs'?
+Rod stewart
+10
+
+What is the name of the skullcap of various colours worn by Roman Catholic clergymen?
+Zucchetto
+10
+
+What is the name of the skunk in the film, 'Bambi'?
+Flower
+10
+
+What is the name of the sledge in citizen kane?
+Rosebud
+10
+
+What is the name of the smaller currency unit that an Austrian schilling is divided into?
+Groschen
+10
+
+What is the name of the source of the Nile?
+Ripon falls
+10
+
+What is the name of the spaceship in the film 'Alien'?
+Nostromo
+10
+
+What is the name of the spicy paste that accompanies dishes such as couscous in North African cuisine?
+Harissa
+10
+
+What is the name of the staff carried by a bishop?
+Crosier
+10
+
+What is the name of the statue that landmarks Piccadilly Circus?
+Eros
+10
+
+What is the name of the steam train which gained the world speed record in 1938?
+Mallard
+10
+
+What is the name of the stick used in hurling?
+Hurley
+10
+
+What is the name of the store founded by Barbara Hulanicki in the 60's?
+Biba
+10
+
+What is the name of the straits that separate Sicily from Italy?
+Messina
+10
+
+What is the name of the stretch of water separating Mexico and Cuba?
+The yucatan channel
+10
+
+What is the name of the stretch of water that separates Iceland and Greenland?
+Denmark strait
+10
+
+What is the name of the strong, heavy grating lowered to block the entrance to a castle?
+Portcullis
+10
+
+What is the name of the tar like substance derived from petroleum?
+Bitumen
+10
+
+What is the name of the team who are an AA minor league affiliate of the New York Yankees?
+Norwich Navigators
+10
+
+What is the name of the telescope that was placed in orbit in the eighties?
+Hubble
+10
+
+What is the name of the temple on the Acropolis?
+Parthenon
+10
+
+What is the name of the theme song for the film 'the highlander'?
+Princes of
+10
+
+What is the name of the theme song for the people's court?
+The big one
+10
+
+What is the name of the theme song from MASH?
+Suicide is painless
+10
+
+What is the name of the theme tune for the tv series MASH?
+Suicide is painless
+10
+
+What is the name of the thing that hangs down the back of your throat?
+Uvula
+10
+
+What is the name of the three-eyed fish?
+Blinky
+10
+
+What is the name of the tissue layer which covers a growing antler?
+Velvet
+10
+
+What is the name of the tokyo stock market index?
+Nikkei
+10
+
+What is the name of the tree of the world in Norse mythology?
+Yggdrasil
+10
+
+What is the name of the tropical fish with orange and black stripes?
+Clown Loach
+10
+
+What is the name of the tube connecting the middle ear with the pharynx?
+Eustachian tube
+10
+
+What is the name of the tunnel that joins Windsor, Ontario and Detroit, Michigan?
+The Windsor-Detroit Tunnel
+10
+
+What is the name of the Ultimate Behemoth's satellite?
+VanStar I
+10
+
+What is the name of the unit equal to 10 to the minus 10 of a metre?
+An angstom unit
+10
+
+What is the name of the US bomber that is difficult to detect on radar?
+Stealth fighter
+10
+
+What is the name of the vancouver hockey team?
+Canucks
+10
+
+What is the name of the Volkswagen in the film, 'The Love Bug'?
+Herbie
+10
+
+What is the name of the water-soluble simple sugar found in both honey and fruit?
+Fructose
+10
+
+What is the name of the wave generator in a microwave oven?
+Magnetron
+10
+
+What is the name of the wave generator in a microwave overt'?
+Magnetron
+10
+
+What is the name of the weak attractive bonds which exist between molecules?
+Van der waals forces
+10
+
+What is the name of the winged horse in greek mythology?
+Pegasus
+10
+
+What is the name of the wizard of id's wife?
+Blanch
+10
+
+What is the name of the world wide organization initiated by jean henri dunant in 1962?
+The red cross
+10
+
+What is the name of the wrought-iron tower in Paris?
+Eiffel Tower
+10
+
+What is the name of the yellow bird in the comic strip 'peanuts'?
+Woodstock
+10
+
+What is the name of this sign '&'?
+Ampersand
+10
+
+What is the name of water paint mixed with gum?
+Gouache
+10
+
+What is the name of Wordsworth's cottage in Grasmere?
+Dove cottage
+10
+
+What is the name of Yogi Bears side kick?
+Boo boo
+10
+
+What is the name that we use today for fluxioons, a mathematical concept developed by Sir Isaac Newton?
+Calculus
+10
+
+What is the name used to describe materials that can be broken down by nature?
+Biogradable
+10
+
+What is the name used to describe the 'minor planets'?
+Asteroids
+10
+
+What is the name, in law, for the period, before the reign of Richard I?
+Time immemorial
+10
+
+What is the narrow, inland sea, separating the Arabian peninsula, western Asia, from northeastern Africa?
+Red sea
+10
+
+What is the national airline of Australia?
+Qantas
+10
+
+What is the national airline of Brazil called?
+Varig
+10
+
+What is the national airline of singapore?
+Singapore airlines
+10
+
+What is the national airline of the Netherlands called?
+Klm
+10
+
+What is the national animal of Australia?
+Kangaroo
+10
+
+What is the national anthem of france?
+The marseillaise
+10
+
+What is the national bird of America?
+Bald headed eagle
+10
+
+What is the national cheese of denmark?
+Samsoe
+10
+
+What is the national flower of Austria?
+Edelweiss
+10
+
+What is the national flower of Scotland?
+Thistle
+10
+
+What is the national flower of singapore (name)?
+Vanda miss joaquim
+10
+
+What is the national flower of wales?
+Daffodil 
+10
+
+What is the national game of the basques?
+Pelota
+10
+
+What is the national religion of Scotland?
+Presbyterianism
+10
+
+What is the national religious folk cult of haiti?
+Voodoo
+10
+
+What is the national sport of Japan?
+Sumo wrestling
+10
+
+What is the nationality of agatha christie's detective hercule poirot?
+Belgian
+10
+
+What is the native form in which dna most commonly found?
+Double stranded helix
+10
+
+What is the native language of hungry?
+Magyar
+10
+
+What is the nautical term for a distance of three miles?
+League
+10
+
+What is the near side on a horse?
+Left
+10
+
+What is the nearest communist country to Key West?
+Cuba
+10
+
+What is the nearest country to the UK to have staged the Winter Olympics?
+France
+10
+
+What is the nearest galaxy to our own?
+Andromeda
+10
+
+What is the nearest land to a spot in the sea, where zero latitude meets zero longitude at zero altitude?
+Cape three points
+10
+
+What is the nearest republic to England?
+France
+10
+
+What is the nearest republic to the U.K?
+Ireland
+10
+
+What is the nearest star to earth?
+Sun
+10
+
+What is the needlework which involves a hooked needle looping patterns called?
+Crochet
+10
+
+What is the Netherlands also known as?
+Holland
+10
+
+What is the neutral number between alkalinity and acidity on the Ph scale?
+Seven
+10
+
+What is the new name of the mound metalcraft company?
+Tonka metalcraft
+10
+
+What is the new name of the mound metalcraft company?
+Tonka metalcraft company
+10
+
+What is the next logical entry in the following series: 1a,3c,5e,____
+7g
+10
+
+What is the next logical number in this series -> 2,4,16,____
+128
+10
+
+What is the next-to-last event?
+Penultimate
+10
+
+What is the next-to-next-to-last event?
+Antepenultimate
+10
+
+What is the nick name of the sub machine gun invented by General JT Thompson?
+Tommy gun
+10
+
+What is the nickname for Alaska?
+Land of the midnight sun
+10
+
+What is the nickname for Allentown, Pennsylvania?
+Cement city
+10
+
+What is the nickname for Birmingham, Alabama?
+Pittsburg of the south
+10
+
+What is the nickname for Boston, Massachusetts?
+Hub of the universe
+10
+
+What is the nickname for Charleston, South Carolina?
+Palmetto city
+10
+
+What is the nickname for Idaho?
+Gem of the mountains
+10
+
+What is the nickname for Indianapolis, Indiana?
+Railroad city
+10
+
+What is the nickname for Kentucky?
+Bluegrass state
+10
+
+What is the nickname for Maine?
+Pine tree state
+10
+
+What is the nickname for Maryland?
+Free state
+10
+
+What is the nickname for Missouri?
+Show me state
+10
+
+What is the nickname for Mobile, Alabama?
+Gulf city
+10
+
+What is the nickname for New Orleans, la?
+Crescent city
+10
+
+What is the nickname for New Orleans?
+Crescent city
+10
+
+What is the nickname for North Dakota?
+Sioux state
+10
+
+What is the nickname for Oregon?
+Beaver state
+10
+
+What is the nickname for Paterson, New Jersey?
+Silk city
+10
+
+What is the nickname for Pennsylvania?
+Keystone state
+10
+
+What is the nickname for Reading, Pennsylvania?
+Pretzel city
+10
+
+What is the nickname for Rome, Italy?
+Eternal city
+10
+
+What is the nickname for San Antonio, Texas?
+Alamo city
+10
+
+What is the nickname for South Carolina?
+Palmetto state
+10
+
+What is the nickname for South Dakota?
+Coyote state
+10
+
+What is the nickname for Tennessee?
+Volunteer state
+10
+
+What is the nickname for Texas?
+Lone star state
+10
+
+What is the nickname of fifth avenue, New York?
+Millionaires' row
+10
+
+What is the nickname of Hitchcock?
+Master of suspense
+10
+
+What is the nickname of michael jordan?
+His airness
+10
+
+What is the nickname of the Australian Rugby League side?
+Kangaroos
+10
+
+What is the nickname of the Australian rugby union side?
+Wallabies
+10
+
+What is the nickname of the BBC?
+Auntie
+10
+
+What is the nickname of the literary captain Hugh Drummond?
+Bulldog
+10
+
+What is the nickname of the nba superstar shawn kemp?
+The rainman
+10
+
+What is the nickname of the NHL's Montreal Canadiens?
+Habs
+10
+
+What is the nickname of the university of georgia football team?
+Bulldogs
+10
+
+What is the ninth month of the year?
+September
+10
+
+What is the nocturnal firefly?
+Beetle
+10
+
+What is the North American word for aluminium?
+Aluminum
+10
+
+What is the northern most scandinavian country?
+Norway
+10
+
+What is the northernmost Canadian province?
+Quebec
+10
+
+What is the northernmost city in Europe?
+Hammerfest, Norway
+10
+
+What is the northernmost country in continental South Africa?
+Colombia
+10
+
+What is the norway maple often mistaken as?
+Hard maple
+10
+
+What is the number 174,465 that belongs to the telephone?
+U.s patent number
+10
+
+What is the number of the beast?
+666
+10
+
+What is the oakland raiders' motto?
+Commitment to excellence
+10
+
+what is the object most often choked on by americans?
+Toothpick
+10
+
+What is the occupation of a leprechaun?
+COBBLER
+10
+
+What is the occupation of eddie arcaro?
+Jockey
+10
+
+What is the occupation of Mary Poppins?
+Nanny
+10
+
+What is the occupation of tom hanks' character in bachelor party?
+School bus driver
+10
+
+What is the oed?
+Oxford English dictionary
+10
+
+What is the official animal of Canada?
+Beaver
+10
+
+What is the official bird of the Yukon?
+Feathered Raven
+10
+
+What is the official currency in Japan?
+Yen
+10
+
+What is the official language in the republic of yemen?
+Arabic
+10
+
+What is the official language of afghanistan?
+Pushtu
+10
+
+What is the official language of Andorra?
+Catalan
+10
+
+What is the official language of Brazil?
+Portuguese
+10
+
+What is the official language of Cambodia?
+Khmer
+10
+
+What is the official language of Chile?
+Spanish
+10
+
+What is the official language of Egypt, Tunisia and Morocco?
+Arabic
+10
+
+What is the official language of equatorial guinea?
+Spanish
+10
+
+What is the official language of Ethiopia?
+Amharic
+10
+
+What is the official language of fiji?
+English
+10
+
+What is the official language of India?
+Hindi
+10
+
+What is the official language of Liberia?
+English
+10
+
+What is the official language of Mexico?
+Spanish
+10
+
+What is the official language of Mozambique?
+Portuguese
+10
+
+What is the official language of new caledonia?
+French
+10
+
+What is the official language of Nigeria?
+English
+10
+
+What is the official language of Pakistan?
+Urdu
+10
+
+What is the official language of Papua New Guinea?
+English
+10
+
+What is the official language of somalia?
+Somali
+10
+
+What is the official name of michael knight's car?
+Knight industries 2000
+10
+
+What is the official newspaper of capitol hill?
+Roll call
+10
+
+What is the official Provincial bird of Alberta?
+The Great Horned Owl
+10
+
+What is the official Provincial bird of British Columbia?
+Stellar's Jay
+10
+
+What is the official Provincial bird of New Brunswick?
+Black-capped chickadee
+10
+
+What is the official Provincial bird of Ontario?
+Loon
+10
+
+What is the official Provincial bird of Prince Edward Island?
+Blue Jay
+10
+
+What is the official Provincial bird of Quebec?
+Snowy Owl
+10
+
+What is the official Provincial bird of Saskatchewan?
+Sharp-Tailed Grouse
+10
+
+What is the official term for the red fleshy growth from the base of a turkey's beak that hangs down over the break?
+A wattle
+10
+
+What is the official unit of currency in Switzerland?
+Swiss frank
+10
+
+What is the offspring of a female horse and a male donkey?
+Mule
+10
+
+What is the offspring of a male horse and a female donkey?
+Hinny
+10
+
+What is the old name for solid sodium hydroxide?
+Caustic soda
+10
+
+What is the old name of the city Istanbul?
+Constantinople
+10
+
+What is the old term for a golfer's nine iron?
+Niblick
+10
+
+What is the oldest airline in the English speaking world, founded in 1920?
+Quantas
+10
+
+What is the oldest and most numerous class of animals?
+Insects
+10
+
+What is the oldest brewery in the u.s?
+Yuengling brewery
+10
+
+What is the oldest city in North America?
+Quebec city
+10
+
+What is the oldest city in the US?
+St augustine, Florida
+10
+
+What is the oldest country in all Europe, & the oldest republic in the world?
+San marino
+10
+
+What is the oldest honor society in the us founded in 1776?
+Phi beta kappa
+10
+
+What is the oldest known breed of domesticated dog?
+The Saluki
+10
+
+What is the oldest living thing?
+Bristlecone pine
+10
+
+What is the oldest original, professional baseball franchise dating back to the national league founding date of 1876?
+Chicago Cubs
+10
+
+What is the oldest word in the English language?
+Town
+10
+
+What is the oldest zoo in the world?
+Berlin zoo
+10
+
+What is the olympic motto?
+Citius, altius, fortius
+10
+
+What is the one thing every email address contains?
+@
+10
+
+What is the only 'real food' astronauts can take into space?
+Pecan nuts
+10
+
+What is the only 15 letter word that can be spelled without repeating a letter?
+Uncopyrightable
+10
+
+What is the only active volcano on mainland Europe?
+Mount vesuvius
+10
+
+What is the only active volcano on the European mainland?
+Vesuvius
+10
+
+What is the only animal born with horns?
+The Giraffe
+10
+
+What is the only animal which can chew in a figure 8 pattern?
+Camel
+10
+
+What is the only armoured mammal?
+Armadillo
+10
+
+What is the only asian country never ruled by a european power?
+Thailand
+10
+
+What is the only bird in the world that can fly backwards?
+Hummingbird
+10
+
+What is the only bird that can see the color blue?
+The owl
+10
+
+What is the only bird that can swim but can't fly?
+Penguin
+10
+
+What is the only bird that cannot fly, can swim, and walks upright?
+Penguin
+10
+
+What is the only bird that gives us leather?
+Ostrich
+10
+
+What is the only bird to signify a Chinese year?
+Rooster
+10
+
+What is the only breed of female deer with antlers?
+Caribou
+10
+
+What is the only capital letter in the Roman alphabet with exactly one endpoint?
+P
+10
+
+What is the only clockwise rotating planet?
+Venus
+10
+
+What is the only colour johnny cash wears on stage?
+Black
+10
+
+What is the only common word (English) to have the letters u-f-a in that particular order (root)?
+Manufacture
+10
+
+What is the only continent to incorporate the letters A E I O U?
+South America
+10
+
+What is the only continent without reptiles or snakes?
+Antarctica
+10
+
+What is the only country crossed by both the equator and the Tropic of Capricorn?
+Brazil
+10
+
+What is the only country in Southeast Asia to never be ruled by a European nation?
+Thailand
+10
+
+What is the only country in the world that starts with the letter O in English?
+Oman
+10
+
+What is the only country in the world with a single coloured flag?
+Libya
+10
+
+What is the only country that is also a continent?
+Australia
+10
+
+What is the only country to have a single color flag?
+Libya
+10
+
+What is the only country to have qualified for all of the Football World Cup finals?
+Brazil
+10
+
+What is the only country with a bible on its flag?
+Dominican republic
+10
+
+What is the only country with one train station?
+Singapore
+10
+
+What is the only day named for a planet?
+Saturday
+10
+
+What is the only debut album by a British group to make Number 1 in the Billboard chart?
+Spice
+10
+
+What is the only dog to have a barb on each individual hair follicle?
+Dalmatian
+10
+
+What is the only domestic animal not mentioned in the 'bible'?
+Cat
+10
+
+What is the only Elton John disco music album?
+Victim of love
+10
+
+What is the only English city that begins with T?
+Truro
+10
+
+What is the only european city to claim a zero birth rate?
+The vatican
+10
+
+What is the only European country that uses schillings?
+Austria
+10
+
+What is the only european country where monkeys live free?
+Gibraltar
+10
+
+What is the only female animal that has antlers?
+Caribou
+10
+
+What is the only flexible murder weapon in the game 'cluedo'?
+Rope
+10
+
+What is the only food cockroaches wont eat?
+Cucumbers
+10
+
+What is the only head bone that a normal human can move?
+Jawbone
+10
+
+What is the only host country not to win a gold medal at its summer olympics?
+Canada
+10
+
+What is the only land mammal native to New Zealand?
+Bat
+10
+
+What is the only land mammal native to New Zeland?
+Bat
+10
+
+What is the only letter in the alphabet that does not appear in the name of any of the United States!?
+Q
+10
+
+What is the only letter of the English alphabet with three syllables (no hints please)?
+W
+10
+
+What is the only mammal capable of true flight?
+Bat
+10
+
+What is the only mammal that can not fly that can fly?
+Man
+10
+
+What is the only mammal that cant jump?
+Elephant
+10
+
+What is the only mammal with four knees?
+Elephant
+10
+
+What is the only man-made feature visible by telescope from the moon?
+The great wall of china
+10
+
+What is the only metal that is liquid at room temperature?
+Mercury
+10
+
+What is the only month that can have fewer than four moon phases?
+February
+10
+
+What is the only n.y.c borough that is not on an island?
+Bronx
+10
+
+What is the only native north American marsupial?
+Opossum
+10
+
+What is the only New England state without a seacoast?
+Vermont
+10
+
+What is the only non league football team to win the FA cup (in 1901)?
+Tottenham hotspur
+10
+
+What is the only organ in the human body that produces insulin?
+Pancreas
+10
+
+What is the only part of the human body that cannot repair itself?
+Teeth
+10
+
+What is the only place in Europe where ape's live free?
+Gibraltar
+10
+
+What is the only planet that is less dense than water?
+Saturn
+10
+
+What is the only planet with moons not named for roman mythology?
+Uranus
+10
+
+What is the only prime number that is even?
+Two
+10
+
+What is the only real food that U S astronauts are allowed to take into space?
+Pecan nuts
+10
+
+What is the only river that flows both north and south of the equator, crossing it twice?
+Congo
+10
+
+What is the only Scandinavian country the Arctic Circle doesnt cut through?
+Denmark
+10
+
+What is the only sport that has a rule against left handed players?
+Polo
+10
+
+What is the only state with an official state ship and hero?
+Connecticut
+10
+
+What is the only surviving wonder of the ancient world?
+The egyptian pyramids
+10
+
+What is the only us state name that ends with three vowels?
+Hawaii
+10
+
+What is the only US state that ends with the letter G?
+Wyoming
+10
+
+What is the only us state with a diamond mine?
+Arkansas
+10
+
+What is the only word in the English language that begins and ends with 'und'?
+Underground
+10
+
+What is the only word in the English language that ends in the letters 'mt'?
+Dreamt
+10
+
+What is the only word in the English language with a double i?
+Skiing
+10
+
+What is the only word with three consecutive double letters?
+Bookkeeping
+10
+
+What is the opening line of the Star Spangled Banner?
+Oh, say can you see by the dawn's early light
+10
+
+What is the opposite of a utopia?
+Dystopia
+10
+
+What is the opposite of allopathy?
+Homeopathy
+10
+
+What is the opposite of the nadir?
+Zenith
+10
+
+What is the original meaning of the word Shambles?
+Abattoir
+10
+
+What is the original monster truck?
+Bigfoot
+10
+
+What is the original name of the game 'softball'?
+Kittenball
+10
+
+What is the original name of the Michelin Man?
+Bibendum
+10
+
+What is the other common name for a peewit?
+Lapwing
+10
+
+What is the other name for Scotland's holy island?
+Lindisfarne
+10
+
+What is the other name for the card game Patience?
+Solitaire
+10
+
+What is the other official language of Sri Lanka, along with Tamil?
+Sinhala
+10
+
+What is the outermost layer of skin called?
+Epidermis
+10
+
+What is the outermost part of the Sun's atmosphere called?
+Corona
+10
+
+What is the outermost planet of the solar system?
+Pluto
+10
+
+What is the oxidation state of any element in its standard state?
+0
+10
+
+What is the paint remover that is made from pine resin?
+Turpentine
+10
+
+What is the paper anniversary?
+First
+10
+
+What is the part of the nose that separates the two nostrils?
+Columella
+10
+
+What is the part of the sole between the heel and the ball of the foot?
+Shank
+10
+
+What is the pattern of notes in Hindu music which provides the basis for improvisation?
+A raga
+10
+
+What is the pen name of Theodor Geisel?
+Dr Seuss
+10
+
+What is the penalty for drunken driving in sumatra?
+Loss of hand
+10
+
+What is the perforated tag with advertisements that are put in mailer envelopes?
+Bangtail
+10
+
+What is the ph value of a neutral solution?
+Seven
+10
+
+What is the pigs name in the movie pig in the city?
+Babe
+10
+
+What is the pirate's flat with the skull and cross-bones called?
+Jolly Roger
+10
+
+What is the placebo cure for the Japanese flu?
+Killer Bees 
+10
+
+What is the play west side story based on?
+Romeo and juliet
+10
+
+What is the plural of 'magus'?
+Magi
+10
+
+What is the plural of mongoose?
+Mongooses
+10
+
+What is the point in orbit of the moon or a satellite nearest earth called?
+Perigee
+10
+
+What is the point in the moon's orbit which is farthest from the earth?
+Apogee
+10
+
+What is the point to which rays of light converge?
+Focus
+10
+
+What is the point value of a 'j' in the game scrabble?
+Eight
+10
+
+What is the point value of the 'f' in scrabble?
+Four
+10
+
+What is the point value of the letter C in Scrabble?
+Three
+10
+
+What is the point value of the standard vowels in Scrabble?
+One
+10
+
+What is the political arm of the i.r.a?
+Sinn fein
+10
+
+What is the poorest nationof south America?
+Bolivia
+10
+
+What is the pope's pontificial ring?
+Fisherman's ring
+10
+
+What is the popular name for a small wafer of semiconductor material which forms the base for an integrated circuit?
+Chip
+10
+
+What is the popular name for nitrous oxide?
+Laughing gas
+10
+
+What is the popular name for the crane fly?
+Daddy longlegs
+10
+
+What is the popular name for the drug 'drinamyl'?
+Purple hearts
+10
+
+What is the popular name for the painful spasmodic contractionof a muscle?
+Cramp
+10
+
+What is the popular word for the umbilicus?
+Belly button
+10
+
+What Is The Population Of Monaco (In Thousands)?
+12
+10
+
+What is the Portuguese territory opposite hong kong on the chinese mainland?
+Macao
+10
+
+What is the positive electrode of a battery called?
+Anode
+10
+
+What is the postal abbreviation for Idaho?
+ID
+10
+
+What is the practice of training hawks called?
+Falconry
+10
+
+What is the predominant religion in Mexico?
+Roman Catholic
+10
+
+What is the preferred reading material for the 66% of americans who admit to reading in the bathroom?
+Reader's digest
+10
+
+What is the present use of the tobacco factory which features in the opera carmen?
+University of seville
+10
+
+What is the prettiest town that george hamilton iv has ever seen?
+Abilene
+10
+
+What is the primary colour with the shortest name?
+Red
+10
+
+What is the primary ingredient in cracker jack?
+Popcorn
+10
+
+What is the princess's name in the story the sleeping beauty?
+Aurora
+10
+
+What is the principal female singer in an opera called?
+Prima donna
+10
+
+What is the principal mountain chain in Romania?
+The carpatians
+10
+
+What is the principal religion in Romania?
+Orthodox
+10
+
+What is the principal river of Ireland?
+Shannon river
+10
+
+What is the prize money in a horse race or a boxing match called?
+Purse
+10
+
+What is the problem caused by the excessive streamlining on fast cars which the aerofoil counteracts?
+Lift
+10
+
+What is the process by which certain animals are able to reproduce themselves in successive female generations without intervention of a male of the species?
+Parthenogenesis
+10
+
+What is the process called for coating the outside of a jellybean?
+Panning
+10
+
+What is the process called when milk is kept at 62degrees for half an hour?
+Pasteurization
+10
+
+What is the process of splitting atoms called?
+Fission
+10
+
+What is the process whereby one metal is coated with a thin layer of another, more reactive metal?
+Galvanizing
+10
+
+What is the process which gives a high lustre to cotton called?
+Mercerising
+10
+
+What is the product for 'get that 'just brushed freshness' with it'?
+Dentyne
+10
+
+What is the product for the slogan 'a crown appears on your head and trumpets sound when you taste it'?
+Imperial margarine
+10
+
+What is the product for the slogan 'it has seven natural fruit juices in it'?
+Hawaiian punch
+10
+
+What is the product for the slogan 'silly rabbit'?
+Trix cereal
+10
+
+What is the product for the slogan 'the quicker-picker-upper'?
+Bounty
+10
+
+What is the product of mass & velocity?
+Momentum
+10
+
+What is the profession of nursery rhyme characters lucy locket and kitty fisher?
+Prostitute
+10
+
+What is the proffesion of jorge amado?
+Author
+10
+
+What is the proper name for a falling star?
+Meteor
+10
+
+What is the proper name for a moving stairway?
+Escalator
+10
+
+What is the proper name for a watch pocket?
+Fob pocket
+10
+
+What is the proper name for a whale's penis?
+Dork
+10
+
+What is the proper name for female cats?
+Queens
+10
+
+What is the proper name for Japanese ritual suicide?
+Sepukku
+10
+
+What is the proper name for marsh gas?
+Methane
+10
+
+What is the proper name for the queen of spades?
+Palas
+10
+
+What is the proper term for a guinea-pig?
+Cavy
+10
+
+What is the province of Quebec's moto on their license plates?
+Je me souvien
+10
+
+What is the psychiatric term for self love?
+Narcissism
+10
+
+What is the pupa of a moth or butterfly in a cocoon called?
+Chrysalis
+10
+
+What is the pure spirit distilled from wine?
+Brandy
+10
+
+What is the purpose of an analgesic drug?
+To reduce pain
+10
+
+What is the race of female warriors said to have lived in asia Minor?
+Amazons
+10
+
+What is the Radcliffe camera?
+A library
+10
+
+What is the range of an aim-7 sparrow?
+Twenty eight miles
+10
+
+What is the range, in miles, of an Aim-7 Sparrow?
+28
+10
+
+What is the rank above inspector in the British police?
+Superintendent
+10
+
+What is the rarest of the naturally occuring elements,estimated to be only half a gram of it in the earths crust?
+Astatine
+10
+
+What is the ratio of the speed of an object to the speed of sound in the surrounding medium?
+Mach speed
+10
+
+What is the real identity of aquaman?
+Arthur curry
+10
+
+What is the real last name of clint eastwood?
+Oosterhout
+10
+
+What is the real life relationship between My husband and I stars William Moore and Mollie Sugden?
+Husband and wife
+10
+
+What is the real name of Boy George?
+George o'dowd
+10
+
+What is the real name of cosmetic owner & founder Elizabeth Arden?
+Florence Nightingale Graham
+10
+
+What is the real name of Jem from Jem and the Holograms?
+Jerrica Benton
+10
+
+What is the real name of pop singer/actor Adam Faith?
+Terry nelhams
+10
+
+What is the real name of the 'Boston Strangler' who admitted to 13 murders, and was sentenced to life imprisonment in 1967?
+Albert de salvo
+10
+
+What is the real name of the 'man of arms' in 'he man and the masters of the universe'?
+Duncan
+10
+
+What is the real name of the actor TV/Film: Who played the voice of the spaceship in flight of the navigator?
+Paul reubens
+10
+
+What is the real name of The aint in Leslie Charteris' books?
+Simon templar
+10
+
+What is the real name of the baby-sitter bandit?
+Lucille Botzcowski 
+10
+
+What is the real name of the murderer known either as 'the .44 calibre killer' or 'the son of sam'?
+David berkowitz
+10
+
+What is the real name of the painting 'whistler's mother'?
+Arrangement in grey and black #1
+10
+
+What is the real name of Thomas Dolby?
+Thomas robertson
+10
+
+What is the real name of Tony Curtis?
+Bernard schwartz
+10
+
+What is the real surname of rock singer Grace Slick of Jefferson Airplane?
+Wing
+10
+
+What is the rear portion of a horses head called?
+Poll
+10
+
+What is the reason behind the layout of the Qwerty keyboard?
+To #slowdown typing rates
+10
+
+What is the recommended height in feet for a bird table?
+Five feet
+10
+
+What is the red cross called in arab countries?
+The red crescent
+10
+
+What is the red planet?
+Mars
+10
+
+What is the red substance eastern woodland nativeAmericans used in their war paint called?
+Vermillion
+10
+
+What is the region loosely defined by geography and culture, located in southwestern asia and northeastern africa?
+Middle east
+10
+
+What is the registry number of the enterprise in the original Star Trek?
+Ncc
+10
+
+What is the regulation height for a pin in tenpin bowling?
+Fifteen inches
+10
+
+What is the relatively constant, but dynamic internal environment necessary for life?
+Homeostasis
+10
+
+What is the religious society of friends more commonly known as?
+Quakers
+10
+
+What is the resting place called of those buried at sea?
+Davy jones locker
+10
+
+What is the result when any number is divided by zero?
+Infinity
+10
+
+What is the revealing occupation of an ecdysiast?
+Stripper
+10
+
+What is the richest country?
+Switzerland
+10
+
+What is the right hand page of a book called?
+Recto
+10
+
+What is the right of succession or inheritance belonging to the eldest son?
+Primogeniture
+10
+
+What is the right side of a ship called?
+Starboard
+10
+
+What is the roller on a typewriter called?
+Platen
+10
+
+What is the Roman Numeral equivalent to 10?
+X
+10
+
+What is the Roman Numeral equivalent to 5?
+V
+10
+
+What is the Roman Numeral equivalent to 500?
+D
+10
+
+What is the Roman numeral for 400, which is also the most popular way to purchase music?
+Cd
+10
+
+What is the Roman numeral for 50?
+L
+10
+
+What is the Roman numeral mcdxlii in decimal?
+1442
+10
+
+What is the roughly circular hollow feature on the top of a volcano called?
+Caldera
+10
+
+What is the round fruit of the sycamore tree called?
+A buttonball
+10
+
+What is the Russian equivalent of the name john?
+Ivan
+10
+
+What is the Russian name for 'fellow traveller'?
+Sputnik
+10
+
+What is the Russian word for citadel?
+Kremlin
+10
+
+What is the sacrament of anointing for dying persons?
+Extreme unction
+10
+
+What is the sacred animal of India?
+Cow
+10
+
+What is the sacred river of India?
+Ganges
+10
+
+What is the saltiest sea in the world?
+Dead sea
+10
+
+What is the scandinavian word for a narrow inlet of sea, penetrating deeply inland between high cliffs?
+Fjord
+10
+
+What is the scapula?
+Breastbone
+10
+
+What is the scent on the artificial rabbit that is used in greyhound races?
+Anise
+10
+
+What is the science based upon the assumption that planetary influences affect human affairs?
+Astrology
+10
+
+What is the science of growing plant in liquid nutrients rather than soil?
+Hydroponics
+10
+
+What is the science of growing plants in liquid nutrients rather than soil?
+Hydroponics
+10
+
+What is the science of map and chart making called?
+Cartography
+10
+
+What is the science of providing men, equipment and supplies for military operations?
+Logistics
+10
+
+What is the science pertaining to the earth's interior heat?
+Geothermics
+10
+
+What is the science that deals with the motion of projectiles?
+Ballistics
+10
+
+What is the scientific study of the body of man and lower animals called?
+Anatomy
+10
+
+What is the scientific study of the structure of living things?
+Anatomy
+10
+
+What is the scientific term for the study of poisons?
+Toxicology
+10
+
+What is the scientist Mandlebrot famous for?
+Fractals
+10
+
+What is the score of a forfeited football game?
+1-0
+10
+
+What is the Scottish equivalent of john?
+Ian
+10
+
+What is the Scottish equivalent of the name john?
+Ian
+10
+
+What is the Scrabble point value of the word jar on a double word score without blanks?
+Twenty
+10
+
+What is the sculpture of a nude couple locked in a seemingly eternal embrace?
+The kiss
+10
+
+What is the seaport capital of sardinia?
+Cagliari
+10
+
+What is the search for the existence of ghosts?
+Eidology
+10
+
+What is the season before Christmas called?
+Advent
+10
+
+What is the second biggest country in South America after Brazil?
+Argentina
+10
+
+What is the second biggest Maltese Island?
+Gozo
+10
+
+What is the second biggest organ in the human body?
+Liver
+10
+
+What is the second book of the bible?
+Exodus
+10
+
+What is the second book of the old testament?
+Exodus
+10
+
+What is the second bridge built across the thames?
+Westminster bridge
+10
+
+What is the second commonest name (after smith) in the usa?
+Johnson
+10
+
+What is the second day of the week?
+Monday
+10
+
+What is the second full moon in a month?
+Blue moon
+10
+
+What is the second full-moon in a month called?
+Blue Moon
+10
+
+What is the second hardest mineral?
+Corundum
+10
+
+What is the second highest mountain in the world?
+K2
+10
+
+What is the SECOND largest (geographically) state in the USA?
+Texas
+10
+
+What is the second largest bird in the world?
+Emu
+10
+
+What is the second largest city in Ireland?
+Cork
+10
+
+What is the second largest continent?
+Africa
+10
+
+What is the second largest country in africa?
+Algeria
+10
+
+What is the second largest country in south America?
+Argentina
+10
+
+What is the second largest country in the world?
+Canada
+10
+
+What is the second largest country?
+Canada
+10
+
+What is the second largest lake in America?
+Huron
+10
+
+What is the second largest planet in the solar system?
+Saturn
+10
+
+What is the second largest planet?
+Saturn
+10
+
+What is the second largest state in the u.s?
+Texas
+10
+
+What is the second letter in the Greek alphabet?
+Beta
+10
+
+What is the second letter in the name Florence if you come from Italy?
+I
+10
+
+What is the second letter of the Greek alphabet?
+Beta
+10
+
+What is the second month of the year?
+February
+10
+
+What is the second most common Welsh surname?
+Davies
+10
+
+What is the second most common word in written English?
+Of
+10
+
+What is the second most frequently used letter in the English language?
+T
+10
+
+What is the second most populous city of Zimbabwe?
+Bulawayo
+10
+
+What is the second most used letter in English?
+T
+10
+
+What is the second of einstein's 1905 papers?
+Special theory of relativity
+10
+
+What is the second oldest city in the US?
+St. mary's, georgia
+10
+
+What is the second-longest river in europe?
+Danube
+10
+
+What is the secret identity of lysergic acid diethylamide?
+Lsd
+10
+
+What is the secret ingredient in Gleem Toothpaste?
+GL-70
+10
+
+What is the self adjusting device on a safety belt called?
+Inertia reel
+10
+
+What is the service ceiling of an f-14a tomcat?
+68900 feet
+10
+
+What is the sesame seed paste used in middle eastern cuisine?
+Tahina
+10
+
+What is the setting of john le carre's a small town in Germany?
+Bonn
+10
+
+What is the seven letter term for a person who shoes horses?
+Farrier
+10
+
+What is the seventh day of the week?
+Saturday
+10
+
+What is the seventh planet from the sun?
+Uranus
+10
+
+What is the sfa associated with?
+Football
+10
+
+What is the shadow-casting pointer on a sundial called?
+Gnomon
+10
+
+What is the shaft on the top of an umbrella called?
+Ferrule
+10
+
+What is the shape of the pasta 'tortlloni' based on?
+Venus's navel
+10
+
+What is the shape of the US President's office?
+Oval
+10
+
+What is the Sheffield silver hallmark which has been used since 1773?
+Crown
+10
+
+What is the shin bone?
+Tibia
+10
+
+What is the shortest and bloodiest of shakespeare's plays?
+Macbeth
+10
+
+What is the shortest and bloodiest of Shapespeare's plays?
+Macbeth
+10
+
+What is the shortest event in speed skating?
+500 metres
+10
+
+What is the shortest French word with all five vowels?
+Oiseau
+10
+
+What is the shortest month of the year?
+February
+10
+
+What is the shortest word in English that contains the letters a, b, c, d, e and f?
+Feedback
+10
+
+What is the SI unit of capacitance?
+Farad
+10
+
+What is the SI unit of force?
+Newton
+10
+
+What is the SI unit of pressure or stress?
+Pascal
+10
+
+What is the SI unit of pressure?
+Pascal
+10
+
+What is the side of a right angled triangle that does not form the 90 degree corner?
+Hypotenuse
+10
+
+What is the significance to the rubik cube of the number 43252003274489856000?
+Number of possible configurations
+10
+
+What is the simplest gem in chemical composition?
+Diamond
+10
+
+What is the simplest gem in chemical compostion?
+Diamond
+10
+
+What is the singular of dice?
+Die
+10
+
+What is the singular of Genera?
+Genus
+10
+
+What is the singular of gladioli?
+Gladiolus
+10
+
+What is the singular of graffiti?
+Graffito
+10
+
+What is the singular of scampi?
+Scampo
+10
+
+What is the singular word for Inuit (Eskimo People)?
+Inuk
+10
+
+What is the sixth day of the week?
+Friday
+10
+
+What is the sixth month of the year?
+June
+10
+
+What is the size of each angle in an equilateral triangle?
+Sixty degrees
+10
+
+What is the skirt worn by a ballet dancer?
+Tutu
+10
+
+What is the skullcap worn by the men of nigeria called?
+Fez
+10
+
+What is the slang for opening a locked door with a credit card?
+Loid
+10
+
+What is the slogan on license plates manufactured by prisoners in the state prison in concord?
+Live free or die
+10
+
+What is the slogan on New Hampshire license plates?
+Live free or die
+10
+
+What is the slowest moving land mammal?
+Sloth
+10
+
+What is the small grey and brown titmouse?
+Bird
+10
+
+What is the small irregular white cloud that zips around neptune approximately every 16 hours?
+Scooter
+10
+
+What is the smallest Australian state?
+Tasmania
+10
+
+What is the smallest bird in the world?
+Hummingbird
+10
+
+What is the smallest bone in the body?
+Stirrup bone
+10
+
+What is the smallest British mammal?
+Pygmy shrew
+10
+
+What is the smallest cell in a human body?
+Sperm
+10
+
+What is the smallest continent?
+Antarctica
+10
+
+What is the smallest country in the world?
+Vatican
+10
+
+What is the smallest frog?
+Gold frog
+10
+
+What is the smallest independent country in South America?
+Surinam
+10
+
+What is the smallest independent state in the world?
+Vatican City
+10
+
+What is the smallest lake in the world?
+Vanern
+10
+
+What is the smallest mammal?
+Shrew
+10
+
+What is the smallest member of the weasel family?
+Skunk
+10
+
+What is the smallest state in the u.s?
+Rhode island
+10
+
+What is the smallest time interval?
+A picosecond
+10
+
+What is the smallest unit of length measurement?
+Femtometre
+10
+
+What is the smelliest member of the lily family?
+Garlic
+10
+
+What is the smooth hard coating of the teeth called?
+Enamel
+10
+
+What is the song title of neil diamond's 'vanilla soup, a double scoopie'?
+Porcupine pie
+10
+
+What is the source of lanolin?
+Sheeps wool
+10
+
+What is the southern cross?
+Star constellation
+10
+
+What is the southern most city in the U S?
+Na'alehu, hawaii
+10
+
+What is the southernmost city in the u.s?
+Brownsville, texas
+10
+
+What is the southernmost country on the Balkan peninsula?
+Greece
+10
+
+What is the southernmost country?
+Chile
+10
+
+What is the southernmost state in the US?
+Hawaii
+10
+
+What is the southernmost us state?
+Hawaii
+10
+
+What is the soviet unions highest military honor?
+Order of lenin
+10
+
+What is the space occupied by a body?
+Volume
+10
+
+What is the Spanish equivalent of the English 'april fool's day'?
+Boob day
+10
+
+What is the Spanish word for 'black'?
+Negro
+10
+
+What is the Spanish word for 'fox'?
+Zorro
+10
+
+What is the Spanish word for 'mary jane'?
+Marijuana
+10
+
+What is the Spanish word for navy?
+Armada
+10
+
+What is the special significance of the asteroid Ceres?
+Believed to be the largest one
+10
+
+What is the specific gravity of water at 4 degrees Celsius?
+One
+10
+
+What is the speech at the beginning of a play called?
+Prologue
+10
+
+What is the speed of a body expressed as a ratio with the speed of sound?
+Mach number
+10
+
+What is the speed of light?
+186,000 miles per second
+10
+
+What is the speed of sound?
+Mach 1
+10
+
+What is the speed of the fastest tennis serve, in mph, ever recorded 'Britain 1963, Michael Sangster'?
+154 mph
+10
+
+What is the spiral galaxy nearest ours?
+Andromeda
+10
+
+What is the spirit distilled from wine?
+Brandy
+10
+
+What is the sport with the largest playing field?
+Polo
+10
+
+What is the Springfield equivalent to Barbie?
+Malibu Stacey
+10
+
+What is the square in the centre of Moscow?
+Red
+10
+
+What is the square root of 121?
+Eleven
+10
+
+What is the square root of 144?
+Twelve
+10
+
+What is the square root of 16?
+Four
+10
+
+What is the square root of 4096?
+64
+10
+
+What is the square root of 65536?
+256
+10
+
+What is the square root of 81?
+Nine
+10
+
+What is the square root of 900?
+Thirty
+10
+
+What is the square root of 9801?
+99
+10
+
+What is the square root of one quarter?
+One half
+10
+
+What is the square root of the sum of 55+65+24?
+12
+10
+
+What is the square root of zero?
+Zero
+10
+
+What is the staff of life mentioned in the lord's prayer?
+Bread
+10
+
+What is the stage name of film actress betty joan perske born 1924?
+Lauren bacall
+10
+
+What is the stage name of film actress Caryn Johnson born 1949?
+Whoopi goldberg
+10
+
+What is the stage name of George Alan O'Dowd?
+Boy george
+10
+
+What is the stage name of Greta Gustafson?
+Greta Garbo
+10
+
+What is the stage name of roberta anderson?
+Joni mitchell
+10
+
+What is the standard of strength of distilled alcoholic liquors called?
+Proof
+10
+
+What is the standard time for boiling a soft boiled egg?
+Three minutes
+10
+
+What is the standard unit of measure for weighing gems?
+Carat
+10
+
+What is the staple diet of the koala bear?
+Eucalyptus shoots
+10
+
+What is the star 'polaris' also know as?
+The north star
+10
+
+What is the state bird of 7 u.s states?
+Cardinal
+10
+
+What is the state bird of alabama?
+Yellowhammer
+10
+
+What is the state bird of Alaska?
+Willow ptarmigan
+10
+
+What is the state bird of Arizona?
+Cactus Wren
+10
+
+What is the state bird of Arkansas?
+Mockingbird
+10
+
+What is the state bird of California?
+California Valley Quail
+10
+
+What is the state bird of Colorado?
+Lark Bunting
+10
+
+What is the state bird of Connecticut?
+Robin
+10
+
+What is the state bird of Delaware?
+Blue Hen Chicken
+10
+
+What is the state bird of Florida?
+Mockingbird
+10
+
+What is the state bird of Georgia?
+Brown Thrasher
+10
+
+What is the state bird of Hawaii?
+Nene
+10
+
+What is the state bird of Idaho?
+Mountain Bluebird
+10
+
+What is the state bird of Illinois?
+Cardinal
+10
+
+What is the state bird of Indiana?
+Cardinal
+10
+
+What is the state bird of Iowa?
+Eastern Goldfinch
+10
+
+What is the state bird of Kansas?
+Western Meadowlark
+10
+
+What is the state bird of Kentucky?
+Cardinal
+10
+
+What is the state bird of Louisiana?
+Eastern Brown Pelican
+10
+
+What is the state bird of Maine?
+Chickadee
+10
+
+What is the state bird of Maryland?
+Baltimore Oriole
+10
+
+What is the state bird of Massachusetts?
+Chickadee
+10
+
+What is the state bird of Michigan?
+Robin
+10
+
+What is the state bird of Minnesota?
+Common Loon
+10
+
+What is the state bird of Mississippi?
+Mockingbird
+10
+
+What is the state bird of Missouri?
+Bluebird
+10
+
+What is the state bird of Montana?
+Western Meadowlark
+10
+
+What is the state bird of Nebraska?
+Western meadowlark
+10
+
+What is the state bird of Nevada?
+Mountain bluebird
+10
+
+What is the state bird of New Hampshire?
+Purple Finch
+10
+
+What is the state bird of new jersey?
+Eastern goldfinch
+10
+
+What is the State Bird of New Mexico?
+Roadrunner
+10
+
+What is the state bird of New York?
+Bluebird
+10
+
+What is the state bird of North Carolina?
+Cardinal
+10
+
+What is the state bird of North Dakota?
+Western Meadowlark
+10
+
+What is the state bird of Ohio?
+Cardinal
+10
+
+What is the state bird of Oklahoma?
+Scissor-tailed Flycatcher
+10
+
+What is the state bird of Oregon?
+Western Meadowlark
+10
+
+What is the state bird of Pennsylvania?
+Ruffed Grouse
+10
+
+What is the state bird of Rhode Island?
+Rhode Island Red
+10
+
+What is the state bird of South Carolina?
+Great Carolina Wren
+10
+
+What is the state bird of South Dakota?
+Ring-necked Pheasant
+10
+
+What is the state bird of Tennessee?
+Mockingbird
+10
+
+What is the state bird of Texas?
+Mockingbird
+10
+
+What is the state bird of Utah?
+American Seagull
+10
+
+What is the state bird of Vermont?
+Hermit Thrush
+10
+
+What is the state bird of Virginia?
+Cardinal 
+10
+
+What is the state bird of Washington?
+Willow goldfinch
+10
+
+What is the state bird of West Virginia?
+Cardinal
+10
+
+What is the state bird of Wisconsin?
+Robin
+10
+
+What is the state bird of Wyoming?
+Western Meadowlark
+10
+
+What is the state capital of Alaska?
+Juneau
+10
+
+What is the state capital of Delaware?
+Dover
+10
+
+What is the state capital of Florida?
+Tallahassee
+10
+
+What is the state capital of Nevada?
+Carson city
+10
+
+What is the state capital of New York?
+Albany
+10
+
+What is the state capital of Pennsylvania?
+Harrisburg
+10
+
+What is the state capital of South Australia?
+Adelaide
+10
+
+What is the state capital of South Dakota?
+Pierre
+10
+
+What is the state capital of Texas?
+Austin
+10
+
+What is the state capital of Washington?
+Olympia
+10
+
+What is the state capital of wisconsin?
+Madison
+10
+
+What is the state flower of Alaska?
+Forget-me-not
+10
+
+What is the state flower of South Dakota?
+Pasqueflower
+10
+
+What is the state flower of wisconsin?
+Wood violet
+10
+
+What is the sternum also known as?
+Breastbone
+10
+
+What is the steward of a medieval great house called?
+Seneschal
+10
+
+What is the stinky gas called hydrogen sulphide said to smell like?
+Rotten eggs
+10
+
+What is the storage polymer of plants?
+Starch
+10
+
+What is the stratosphere higher than?
+Troposphere
+10
+
+What is the strongest land animal?
+Elephant
+10
+
+What is the strongest muscle?
+Tongue
+10
+
+What is the study of animals known as?
+Zoology
+10
+
+What is the study of bumps on the head called?
+Phrenology
+10
+
+What is the study of elections called?
+Psephology
+10
+
+What is the study of fossils called?
+Paleontology
+10
+
+What is the study of heredity?
+Genetics
+10
+
+What is the study of insects?
+Entomology
+10
+
+What is the study of mankind called?
+Anthropology
+10
+
+What is the study of poisons called?
+Toxicology
+10
+
+What is the study of sciences connected to the sea called?
+Oceanography
+10
+
+What is the study of soil?
+Paedology
+10
+
+What is the study of sound?
+Acoustics
+10
+
+What is the study of the cosmos called?
+Cosmology
+10
+
+What is the study of the earth's physical divisions?
+Geography
+10
+
+What is the study of the efficiency of people in their working environment called?
+Ergonomics
+10
+
+What is the study of the flight path of projectiles under the influence of gravity known as?
+Ballistics
+10
+
+What is the study of tissues?
+Histology
+10
+
+What is the study of weather?
+Meteorology
+10
+
+What is the study of whales?
+Cetology
+10
+
+What is the study of word origins?
+Etymology
+10
+
+What is the style of decoration that gives the illusion of three dimensional reality to painted surfaces?
+Trompe l'oeil
+10
+
+What is the subject of kyle onstott's mandingo?
+Slavery
+10
+
+What is the substance lysergic acid diethylamide better known as?
+LSD
+10
+
+What is the substance obtained from acacia trees that is used in medicine?
+Gum arabic
+10
+
+What is the sudy of humankind, societies and customs?
+Anthropology
+10
+
+What is the sum of 236 - 145?
+91
+10
+
+What is the sum of 27 + 52?
+79
+10
+
+What is the sum of 2741 + 3562?
+6303
+10
+
+What is the sum of 2a + 5a?
+7a
+10
+
+What is the sum of 2y + 32y + 56y?
+90y
+10
+
+What is the sum of 32 + 49 + 765?
+846
+10
+
+What is the sum of 4 x 4 x 24 x 44?
+16896
+10
+
+What is the sum of 444 x 2 x 2 - 1700?
+76
+10
+
+What is the sum of 47b + 96b?
+143b
+10
+
+What is the sum of 67 + 67 + 67 + 67 + 67?
+335
+10
+
+What is the sum of 75 + 23 + 84 - 101 + 18?
+99
+10
+
+What is the sum of 91 x 452?
+41132
+10
+
+What is the sum of 95 x 1?
+95
+10
+
+What is the sum of 9685z + 235z - 1800z + 2z?
+8122z
+10
+
+What is the sum of 99 - 33 - 33 - 33?
+Zero
+10
+
+What is the summer counterpart of hibernation?
+Estivation
+10
+
+What is the sun, moon and earth called when they all form a straight line?
+Syzygy
+10
+
+What is the sun's most abundant element?
+Hydrogen
+10
+
+What is the super bowl trophy called?
+Vince lombardy trophy
+10
+
+What is the superlative form of the adverb 'badly'?
+Worst
+10
+
+What is the supreme goal of buddhists?
+Nirvana
+10
+
+What is the surface area inside the average adult human lung (in square feet only)?
+1200
+10
+
+What is the surname of comic book hero roy of the rovers?
+Race
+10
+
+What is the surname of former Take That member Jason?
+Orange
+10
+
+What is the surname of kojak?
+Theo
+10
+
+What is the surname of the author john ronald reuel?
+Tolkien
+10
+
+What is the surname of the brothers who make up the Bee Gees?
+Gibb
+10
+
+What is the surname of the Footballplayer geels?
+Ruud
+10
+
+What is the surname of u.s president herbert c ____
+Hoover
+10
+
+What is the switching of letters called (e.g. saying jag of flapan instead of flag of Japan)?
+Spoonerism
+10
+
+What is the symbol for iron?
+Fe
+10
+
+What is the symbol for the zodiacal sign Aries?
+Ram
+10
+
+What is the symbol for the zodiacal sign of Taurus?
+Bull
+10
+
+What is the symbol for tungsten?
+W
+10
+
+What is the symbol of the democratic party?
+Donkey
+10
+
+What is the symbol of the sign of the zodiac Aries?
+Ram
+10
+
+What is the symbol of the zodiacal sign Gemini?
+Twins
+10
+
+What is the syrup drained from raw sugar?
+Molasses
+10
+
+What is the tail of a fox called?
+Brush
+10
+
+What is the Taj Majal made of?
+Marble
+10
+
+What is the tallest and thickest kind of grass?
+Bamboo
+10
+
+What is the tallest bird in the world?
+Ostrich
+10
+
+What is the tallest building in calgary with 52 stories and 689 feet high?
+Petro Canada tower #2
+10
+
+What is the tallest dinosaur?
+Brachiosaurus
+10
+
+What is the tallest island?
+New guinea
+10
+
+What is the tallest piece on a chessboard?
+The king
+10
+
+What is the tartan skirt worn by Scottish men called?
+Kilt
+10
+
+What is the technical name for the collarbone?
+Clavicle
+10
+
+What is the technical name for the extra wedge of fruit found in Navel oranges, Grapefruits, Temple Oranges & tangelos?
+Secondary fruit
+10
+
+What is the technical name for the twisting of a stalk as it grows in response to a stimulus from a particular direction?
+Strophism
+10
+
+What is the technical term for a palm reader?
+Chiromancer
+10
+
+What is the technical term for blood poisoning?
+Toxaemia
+10
+
+What is the technical term for long-sightedness?
+Hypermetropia
+10
+
+What is the technical term for the bones in the fingers and toes?
+Phalanges
+10
+
+What is the technical term for the wire that holds a champagne cork in place?
+Muselet
+10
+
+What is the technique of painting straight onto wet plaster called?
+Fresco
+10
+
+What is the telephone area code in new Mexico?
+505
+10
+
+What is the telephone's u.s patent number?
+174,465
+10
+
+What is the tennis term for missing on first and second service?
+Double fault
+10
+
+What is the tenth month of the year?
+October
+10
+
+What is the tenth number in the Greek alphabet?
+Kappa
+10
+
+What is the term called for making rings, jewellery & eyeglass hinges?
+Lost Wax Casting
+10
+
+What is the term for a blind deer?
+No idea
+10
+
+What is the term for a castrated rooster?
+Capon
+10
+
+What is the term for a collection of bells played together?
+Carillon
+10
+
+What is the term for a curved naval sword?
+Cutlass
+10
+
+What is the term for a fine mist or fog which is dispersed in and carried by a gas?
+Aerosol
+10
+
+What is the term for a full grown female horse?
+Mare
+10
+
+What is the term for a limestone deposit hanging from the ceiling of a cave?
+Stalagtite
+10
+
+What is the term for a limestone deposit rising from the floor of a cave?
+Stalagmite
+10
+
+What is the term for a moon greater than half but less than full?
+Gibbous
+10
+
+What is the term for a painting of a person?
+Portrait
+10
+
+What is the term for a person best known by three names?
+Trinemial
+10
+
+What is the term for a person who designs dance routines?
+Choreographer
+10
+
+What is the term for a person who reads a usenet newsgroup but never contributes to it?
+Lurker
+10
+
+What is the term for a small umbrella used to protect a person from the sun?
+Parasol
+10
+
+What is the term for a young hare?
+Leveret
+10
+
+What is the term for an animal or plant that is both male and female?
+Hermaphrodite
+10
+
+What is the term for any four sided figure?
+Quadrilateral
+10
+
+What is the term for arable land left unseeded for one season?
+Fallow
+10
+
+What is the term for Japanese art of paper folding?
+Origami
+10
+
+What is the term for opposition to an electrical current in a conductor?
+Resistance
+10
+
+What is the term for oscillation of water particles?
+Wave
+10
+
+What is the term for precipitation that has been polluted by sulfur dioxide & nitrogen oxides?
+Acid rain
+10
+
+What is the term for self-love?
+Narcissism
+10
+
+What is the term for space devoid of matter?
+Vacuum
+10
+
+What is the term for the area in front of a fireplace?
+Hearth
+10
+
+What is the term for the brain's nerve cells?
+Neurons
+10
+
+What is the term for the course of training nearly 5000 potential taxi drivers undego in London?
+The knowledge
+10
+
+What is the term for the curved naval sword?
+Cutlass
+10
+
+What is the term for the distance around a circle?
+Circumference
+10
+
+What is the term for the hybrid offspring of a lion and tiger?
+Liger
+10
+
+What is the term for the path followed a by a small body around a massive body in space?
+Orbit
+10
+
+What is the term for the period of change in form of an organism from the larval to the adult stage?
+Metamorphosis
+10
+
+What is the term for the physical disintegration of a nuclear reactor's core?
+Meltdown
+10
+
+What is the term for the rook in chess?
+Castle
+10
+
+What is the term for the study of friction, lubrication and wear?
+Tribology
+10
+
+What is the term for the study of how the inherited characteristics of a human population can be improved by genetics?
+Engenics
+10
+
+What is the term for the union of two dissimilar sexual cells or gametes to form a new individual?
+Fertilisation
+10
+
+What is the term for the water induction process in plants?
+Osmosis
+10
+
+What is the term for unlimited authority?
+Carte blanche
+10
+
+What is the term given for patients who are given medications with no active ingredients & they swear the medication did them some good?
+The placebo effect
+10
+
+What is the term given to a medieval system in which lords granted land holdings in return for services?
+Feudalism
+10
+
+What is the term given to mammals which have hands that can grip?
+Primates
+10
+
+What is the term of an animal with pure white skin & hair & pink eyes?
+Albino
+10
+
+What is the term ph an abbreviation for?
+Potential of hydrogen
+10
+
+What is the term used for a cancer causing substance?
+Carcinogen
+10
+
+What is the term used to describe a container-grown plant whose roots have filled the container?
+Pot bound
+10
+
+What is the term used to describe a word whose sound mimics the thing or action it describes?
+Onomatopeia
+10
+
+What is the term used to describe sound waves outside the audilbe range?
+Ultrasonic
+10
+
+What is the term used to describe the speed of memory?
+Nanosecond
+10
+
+What is the term used when melting ice is reconstituted into vertical crystals?
+-- Answer metadata begin
+{
+    "answers": ["", " Candled Ice"]
+}
+-- Answer metadata end
+10
+
+What is the term which means using a gentler expression to soften a blunt one?
+Euphemism
+10
+
+What is the Texas Christians football team's nickname?
+Horned frogs
+10
+
+What is the theory that man cannot prove the existence of god?
+Agnosticism
+10
+
+What is the third book of the Old Testament?
+Leviticus
+10
+
+What is the third day of the week?
+Tuesday
+10
+
+What is the third dimension?
+Depth
+10
+
+What is the third letter of the greek alphabet?
+Gamma
+10
+
+What is the third letter of the Hebrew alphabet?
+Gimmel
+10
+
+What is the third month of the year?
+March
+10
+
+What is the third most popular meal ordered in sit down restaurants in the U S?
+Spaghetti
+10
+
+What is the third movement of a symphony called?
+Minuet
+10
+
+What is the third part of the 'lord of the rings' trilogy?
+Return of the king
+10
+
+What is the third planet from the sun?
+Earth
+10
+
+What is the thirteenth letter of the English alphabet?
+M
+10
+
+What is the thread used in surgery to tie a bleeding blood vessel?
+Ligature
+10
+
+What is the throwing event making up part of the ancient greek pentathlon, in which a circular object had to be thrown?
+Discus
+10
+
+What is the tibia?
+Shin bone
+10
+
+What is the title of beethovens only opera?
+Fidelio
+10
+
+What is the title of episode 1 in the new 'Star Wars' triliogy?
+The phantom menace
+10
+
+What is the title of general george s patton's autobiography?
+War as i knew it
+10
+
+What is the title of Geri Halliwell's recent book?
+If only
+10
+
+What is the title of john lennon's first published book?
+In his own write
+10
+
+What is the title of Lawrence Sanders ' First Deadly' novel?
+The First Deadly Sin
+10
+
+What is the title of p.c. wren's novel of the french foreign legion?
+Beau geste
+10
+
+What is the title of peter shaffer's play about mozart, also made into a film?
+Amadeus
+10
+
+What is the title of puff daddy's autobiographical movie?
+No way out
+10
+
+What is the title of the Bond movie in which the 'baddie' is called Scaramanga?
+The man with the golden gun
+10
+
+What is the title of the cliff richard song 'i want the world to know i'm happy as can be'?
+Congratulations
+10
+
+What is the title of the RCA painting of Nipper & the phonograph that we know of as 'His Master's Voice'?
+Dog and Trumpet
+10
+
+What is the title of the sequel to the book Gentlemen Prefer Blondes by Anita Loos?
+Gentlemen marry brunettes
+10
+
+What is the title of the world's widest painting?
+Panorama of the Mississippi
+10
+
+What is the toothpick capital of the world?
+Maine
+10
+
+What is the top award at the Montreux television festival?
+Golden rose
+10
+
+What is the top layer of a wedding cake?
+Groom's cake
+10
+
+What is the top speed in mph that cheetahs have been clocked at?
+Seventy one
+10
+
+What is the total of the three internal angles of a triangle?
+One hundred and eighty degrees
+10
+
+What is the town locale in the tv serial search for tomorrow?
+Henderson
+10
+
+What is the trade name for the construction kits introduced in 1907 consisting of metal strips with hoels,screws, nuts and bolts?
+Meccano
+10
+
+What is the trade name for the strong woven synthetic material used for hulls and sails, radial tyres and bullet proof vests?
+Kevlar
+10
+
+What is the traditional (watson crick) base pair for adenine in dna?
+Thymine
+10
+
+What is the traditional colour of mourning in Turkey?
+Violet
+10
+
+What is the traditional dessert on Thanksgiving Day?
+Pumpkin pie
+10
+
+What is the traditional theatrical greeting before a performance to wish 'good luck'?
+Break a leg
+10
+
+What is the traditional trade for aspiring Spanish Bullfighters?
+Bricklaying
+10
+
+What is the traditional trade of aspiring bullfighters?
+Bricklaying
+10
+
+What is the transformation of inhospitable planets into hospitable ones?
+Terraforming
+10
+
+What is the triangular muscle of the shoulder called?
+Deltoid
+10
+
+What is the troposphere lower than?
+Stratosphere
+10
+
+What is the tube that carries urine from the kidneys to the bladder?
+Ureter
+10
+
+What is the twelfth month of the year?
+December
+10
+
+What is the tympanic membrane?
+Eardrum
+10
+
+What is the U.S equivalent of the British music hall entertainment called?
+Vaudeville
+10
+
+What is the u.s military's newspaper?
+Stars and stripes
+10
+
+What is the u.s.'s grand canyon state?
+Arizona
+10
+
+What is the UK's largest publicly funded building, constructed in the 1900's?
+The British library
+10
+
+What is the unabomber's real name?
+Ted kaczynski
+10
+
+What is the underwater equivalent of radar?
+Sonar
+10
+
+What is the unique capability of the knight in chess,apart from its L shaped motion?
+Can jump other pieces
+10
+
+What is the unit of currency in hungary?
+Forint
+10
+
+What is the unit of currency in Jordan?
+Dinar
+10
+
+What is the unit of currency in Poland?
+Zloty
+10
+
+What is the unit of currency in RUSSIA?
+Ruble
+10
+
+What is the unit of currency in Thailand?
+Baht
+10
+
+What is the unit of currency of venezuela?
+The bolivar
+10
+
+What is the unit of currency used in the country of bahrain?
+Dinar
+10
+
+What is the unit of currency used in the country of Botswana?
+Pula
+10
+
+What is the unit of currency used in the country of Chile?
+Peso
+10
+
+What is the unit of currency used in the country of Gabon?
+Franc
+10
+
+What is the unit of currency used in the country of greece?
+Drachma
+10
+
+What is the unit of currency used in the country of kiribati?
+Dollar
+10
+
+What is the unit of currency used in the country of Mongolia?
+Tugrik
+10
+
+What is the unit of currency used in the country of Nigeria?
+Naira
+10
+
+What is the unit of currency used in the country of South Korea?
+Won
+10
+
+What is the unit of currency used in the country of Tunisia?
+Dinar
+10
+
+What is the unit of currency used in the country of Vanuatu?
+Vatu
+10
+
+What is the unit of currently in Poland?
+Zloty
+10
+
+What is the unit of Imperial measure equal to 1/10 of a nautical mile?
+Cable
+10
+
+What is the unit of measurement which is equal to the mean distance from the earth to the sun?
+Astronomical unit
+10
+
+What is the united state's largest lake?
+Lake winnipesaukee
+10
+
+What is the universally accepted birthday of every race horse?
+January 1
+10
+
+What is the us city with the highest murder rate?
+Detroit
+10
+
+What is the US Defence Dept headquaters building called?
+The pentagon
+10
+
+What is the US equivalent of the S.A.S?
+Delta force
+10
+
+What is the US's windy city?
+Chicago
+10
+
+What is the usual age for a Jewish boy to celebrate hi Bar Mitzvah?
+Thirteen
+10
+
+What is the vaccine against polio called?
+Salk vaccine
+10
+
+What is the value of Pi, rounded to 3 significant figures (two decimal places)?
+3,14
+10
+
+What is the venue for the coursing Waterloo Cup?
+Altcar
+10
+
+What is the violet variety of quartz?
+Amethyst
+10
+
+What is the voice box?
+Larynx
+10
+
+What is the warmest continent?
+Africa
+10
+
+What is the wbc?
+World boxing council
+10
+
+What is the weight at the end of a pendulum?
+Bob
+10
+
+What is the weight of an astronaut's suit?
+57 lbs
+10
+
+What is the Welcome Stranger found in 1869?
+Largest gold nugget ever found
+10
+
+What is the Western-most point in continental Europe?
+Cabo de rocha, Portugal
+10
+
+What is the wettest state in the union?
+Hawaii
+10
+
+What is the white of an egg?
+Albumen
+10
+
+What is the white or yellowish substance obtained from the honeycomb of the bee?
+Beeswax
+10
+
+What is the white semicircle on a fingernail?
+Lunula
+10
+
+What is the white, winged horse of Greek lore named?
+Pegasus
+10
+
+What is the widest river?
+Amazon
+10
+
+What is the widest-ranging ocean bird?
+Albatross
+10
+
+What is the wife of a baron called?
+Baroness
+10
+
+What is the wife of a duke called?
+Duchess
+10
+
+What is the wild dog of Australia?
+Dingo
+10
+
+What is the windiest place on earth?
+Mount Washington
+10
+
+What is the wingspan of a condor?
+Nine feet
+10
+
+What is the winter counterpart of estivation?
+Hibernation
+10
+
+What is the winter counterpart to estivation?
+Hibernation
+10
+
+What is the winter sleep-like state for animals?
+Hibernation
+10
+
+What is the word for 'chewing the cud'?
+Ruminant
+10
+
+What is the word for cone-bearing trees?
+Conifer
+10
+
+What is the word for descending a precipice by sliding down a rope?
+Abseiling
+10
+
+What is the word for excessive patriotism?
+Jingoism
+10
+
+What is the word for hallucinations and delusions?
+Schizophrenia
+10
+
+What is the word for sliding down a precipice on a doubled rope?
+Abseiling
+10
+
+What is the word used to describe species that are not extinct?
+Extant
+10
+
+What is the world's deepest lake?
+Lake baikel
+10
+
+What is the world's fastest bird?
+Spine-tailed swift
+10
+
+What is the world's fastest dog?
+Greyhound
+10
+
+What is the world's fastest land animal?
+Cheetah
+10
+
+What is the world's highest city?
+Lhasa, tibet
+10
+
+What is the world's highest mountain?
+Everest
+10
+
+What is the world's largest chemical company?
+Dupont
+10
+
+What is the world's largest desert, as determined by the least amount of precipitation?
+The antarctic
+10
+
+What is the world's largest desert?
+Sahara
+10
+
+What is the world's largest eagle?
+Harpy eagle
+10
+
+What is the world's largest mural, found in California, called?
+Planet ocean
+10
+
+What is the world's largest rodent?
+Capybara
+10
+
+What is the world's largest water fowl?
+Trumpeter swan
+10
+
+What is the world's largest weekly newspaper for stamp collectors?
+Linn's stamp news
+10
+
+What is the world's leading importer of iron ore?
+Japan
+10
+
+What is the world's longest mountain range?
+Andes
+10
+
+What is the world's longest movie title (exclude all punctuation)?
+Night of the day of the dawn of the son of the bride of the return of the revenge of the terror of the attack of the evil mutant hellbound zombified flesheating subhumanoid living dead part 4
+10
+
+What is the world's longest river?
+Nile
+10
+
+What is the world's most common compound?
+Water
+10
+
+What is the world's most popular non-alcoholic organic beverage?
+Coffee
+10
+
+What is the world's most popular spice?
+Pepper
+10
+
+What is the world's most syndicated comic strip?
+Peanuts
+10
+
+What is the world's oldest newspaper(the name is Swedish)?
+Post och Inrikes Tidningar
+10
+
+What is the world's oldest song?
+Shadouf chant
+10
+
+What is the world's oldest university?
+Fez University
+10
+
+What is the world's second hardest mineral?
+Corundum
+10
+
+What is the world's second largest religion?
+Islam
+10
+
+What is the world's second most spoken language?
+English
+10
+
+What is the world's smallest mammal?
+The shrew
+10
+
+What is the world's tallest grass?
+Bamboo
+10
+
+What is the world's wealthiest nation?
+Australia
+10
+
+What is the worlds #10 most populous city?
+New york city
+10
+
+What is the worlds #11 most populous city?
+Beijing
+10
+
+What is the worlds #12 most populous city?
+Delhi, India
+10
+
+What is the worlds #13 most populous city?
+London
+10
+
+What is the worlds #14 most populous city?
+Cairo
+10
+
+What is the worlds #15 most populous city?
+Teheran
+10
+
+What is the worlds #16 most populous city?
+Hong kong
+10
+
+What is the worlds #17 most populous city?
+Bangkok
+10
+
+What is the worlds #18 most populous city?
+Tianjin
+10
+
+What is the worlds #19 most populous city?
+Lima
+10
+
+What is the worlds #2 most populous city?
+Sao Paulo, Brazil
+10
+
+What is the worlds #20 most populous city?
+Rio de janeiro
+10
+
+What is the worlds #21 most populous city?
+Santafe de bogota, colombia
+10
+
+What is the worlds #22 most populous city?
+Shenyang
+10
+
+What is the worlds #23 most populous city?
+Santiago, chile
+10
+
+What is the worlds #24 most populous city?
+Calcutta
+10
+
+What is the worlds #25 most populous city?
+St. petersburg
+10
+
+What is the worlds #26 most populous city?
+Wuhan
+10
+
+What is the worlds #27 most populous city?
+Guangzhou
+10
+
+What is the worlds #28 most populous city?
+Madras
+10
+
+What is the worlds #29 most populous city?
+Baghdad
+10
+
+What is the worlds #3 most populous city?
+Bombay
+10
+
+What is the worlds #30 most populous city?
+Pusan, south korea
+10
+
+What is the worlds #4 most populous city?
+Jakarta
+10
+
+What is the worlds #5 most populous city?
+Moscow
+10
+
+What is the worlds #6 most populous city?
+Istanbul
+10
+
+What is the worlds #7 most populous city?
+Mexico city
+10
+
+What is the worlds #8 most populous city?
+Shanghai
+10
+
+What is the worlds #9 most populous city?
+Tokyo
+10
+
+What is the worlds best selling book?
+The bible
+10
+
+What is the worlds biggest machine is the lep at cern (Switzerland), what does lep stand for?
+Large electron positron
+10
+
+What is the worlds highest island mountain?
+Mauna kea
+10
+
+What is the worlds highest mountain that isnt part of a range?
+Kilimanjaro
+10
+
+What is the worlds largest animal?
+Blue whale
+10
+
+What is the worlds largest inland sea?
+Caspian sea
+10
+
+What is the worlds largest island?
+Greenland
+10
+
+What is the worlds largest living bird, who's average male can weigh up to 345 lbs?
+Ostrich
+10
+
+What is the worlds largest museum?
+Louvre
+10
+
+What is the worlds largest non-profit and educational organization?
+National Geographic Society
+10
+
+What is the worlds longest snake?
+Python
+10
+
+What is the worlds most common first name?
+Mohammed
+10
+
+What is the worlds most read comic strip?
+Peanuts
+10
+
+What is the worlds northern most national capital?
+Reykjavik
+10
+
+What is the worlds oldest classic horse race?
+St leger
+10
+
+What is the worlds warmest sea?
+Dead sea
+10
+
+What is the wrought iron tower in paris?
+Eiffel tower
+10
+
+What is the yellow of an egg?
+Yolk
+10
+
+What is the young of the beaver called?
+Kitt
+10
+
+What is this monarch's family name: kaiser wilhelm ii?
+Hohenzollern
+10
+
+What is Tiggy-oggie?
+Cornish pasty
+10
+
+What is Tio Pepe?
+Sherry
+10
+
+What is to blink deliberately?
+Wink
+10
+
+What is to breathe in?
+Inhale
+10
+
+What is to hurt someone's feelings?
+Offend
+10
+
+What is traditionally associated with a Maypole?
+Dancing
+10
+
+What is traditionally held in the middle of September?
+Farm animal awareness week
+10
+
+What is true to life art known as?
+Realism
+10
+
+What is tuberculosis?
+Consumption
+10
+
+What is Tuesdays child if Mondays child is fair of face?
+Full of grace
+10
+
+What is Twyla Tharp's best known profession?
+Choreographer
+10
+
+What is unique about the sentence 'the quick brown fox jumps over the lazy dog.'?
+Uses every letter in the alphabet once
+10
+
+What is unusual about the elements mercury & bromime?
+Liquid at room temperature
+10
+
+What is unusual about the town of Kalgoolie, Western Australia?
+Underground
+10
+
+What is uruguay's chief port?
+Montevideo
+10
+
+What is used as a center for golf balls and in antifreeze mixtures?
+Honey
+10
+
+What is used as an antidote for poison arrows and as a thickener in cooking?
+Arrowroot
+10
+
+What is used as the basis of tequila?
+Cactus
+10
+
+What is used for constipation?
+Laxative
+10
+
+What is used in a field to ward off unwelcome birds?
+Scarecrow
+10
+
+What is used to lift fingerprints from difficult surfaces?
+Super glue
+10
+
+What is used to measure horizontal and vertical angles in surveying?
+A theodolite
+10
+
+What is used to measure pain?
+Dolorimeter
+10
+
+What is used to measure the depth of water?
+Bathometer
+10
+
+What is usually given to 'trick or treaters'?
+Candy
+10
+
+What is usually served at bedouin feasts?
+Roast camel
+10
+
+What is usually sprinkled on top of cappuccino?
+Chocolate
+10
+
+What is usually thrown the farthest in a track and field competition?
+Javelin
+10
+
+What is venezuela named after?
+Venice
+10
+
+What is viewed by a stroboscope?
+Rapidly moving objects
+10
+
+What is viewed during a a pyrotechnic display?
+Fireworks
+10
+
+What is Wales's biggest island?
+Anglesey
+10
+
+What is white-skinned and pink-eyed?
+Albino
+10
+
+What is widely considered to be man's first celestial observatory?
+Stonehenge
+10
+
+What is wild rice?
+Grass
+10
+
+What is William Hague's middle name?
+Jefferson
+10
+
+What is winnie-the-pooh's real name?
+Edward bear
+10
+
+What is written defamation called?
+Libel
+10
+
+What is xerography?
+Photocopying
+10
+
+What is your father's brother?
+Uncle
+10
+
+What is your job if you have the title Imam?
+Muslim leader
+10
+
+What island colony was founded by Sir Thomas Stanford Raffles?
+Singapore
+10
+
+What island country do cyprians call home?
+Cyprus
+10
+
+What island did Aristotle and Jacqueline Onassis honeymoon on?
+Skorpios
+10
+
+What island did Balki from Perfect Strangers call home?
+Mypos
+10
+
+What island did ernest hemingway spend much of his writing life on?
+Cuba
+10
+
+What island do most of the North Atlantic icebergs come from?
+Greenland
+10
+
+What island got its name from the Portuguese words for bearded fig tree?
+Barbados
+10
+
+What island group contains jersey, guernsey, sark and herm?
+The channel islands
+10
+
+What island group provides the sheltered port of Scapa Flow?
+Orkneys
+10
+
+What island has been called the jewel of the mediterranean?
+Sicily
+10
+
+What island in San Francisco Bay once was the site of a prison?
+Alcatraz
+10
+
+What island is due south of corsica?
+Sardinia
+10
+
+What island is the boot of Italy kicking?
+Sicily
+10
+
+What island is the Canadian city of Victoria found on?
+Vancouver
+10
+
+What island nation was the first country to lagalize abortion, in 1935?
+Iceland
+10
+
+What island was first sighted from a Dutch ship on easter day 1772?
+Easter
+10
+
+What island was Napoleon first exiled to?
+Elba
+10
+
+What island was Napoleon's first home in exhile?
+Elba
+10
+
+What island was seized by Indian activists in 1969?
+Alcatraz
+10
+
+What island's attractions include dunn's river falls and rose hall?
+Jamaica
+10
+
+What island's entire population was awarded the George Cross?
+Malta
+10
+
+What islands got their name from the Spanish 'baja mar', meaning 'shallow water'?
+Bahamas
+10
+
+What islands population was awarded the George Cross?
+Malta
+10
+
+What islands were named after Prince Philip of Spain?
+The philippines
+10
+
+What isnt outstanding about a Manx cat?
+Tail
+10
+
+What isnt present in a fillet?
+Bones
+10
+
+What israeli prime minister spent two years in a Russian concentration camp?
+Menachem begin
+10
+
+What Israelite slave interpreted dreams for Pharoah and eventually became his second in command?
+Joseph
+10
+
+What it the ninth sign of the zodiac, symbolized by an archer?
+Sagittarius
+10
+
+What Italian artist is noted for his paintings of london?
+Canaletto
+10
+
+What Italian astronomer wrote The Starry Messenger?
+Galileo
+10
+
+What Italian city had the Roman name Mediolanum?
+Milan
+10
+
+What Italian city is considered the fashion capital?
+Milan
+10
+
+What Italian city is the Monza grand prix held in?
+Monza
+10
+
+What Italian explorer is buried in the dominican republic?
+Columbus
+10
+
+What Italian landmark has 296 steps?
+Leaning tower of pisa
+10
+
+What Italian tower saw Galileo drop bullets and cannonballs to show that all objects fall at the same rate of speed?
+The Leaning Tower of Pisa
+10
+
+What Italian wine area is famed for its sparkling wine?
+Asti
+10
+
+What Italian-born Australian boxer came out of retirement in 1979 to face Paul Ferreri?
+Rocky Gattellari
+10
+
+What item does dogbert use to find empty chairs?
+Dowsing rod
+10
+
+What item of lee harvey oswald sold at an auction for $6,600 in 1992?
+Cadaver tag
+10
+
+What ivy league university was founded by joseph pulitzer?
+Columbia
+10
+
+What jack london novel is about a dreaded sea captain named wolf larsen?
+The sea wolf
+10
+
+What jamaican rum is named for a welsh pirate?
+Captain morgan
+10
+
+What james clavell novel recounts john blackthorne's adventures in 16th century Japan?
+Shogun
+10
+
+What james dickey novel tells the story of an ill-fated canoe trip?
+Deliverance
+10
+
+What james jones war novel won him a national book award in 1952?
+From here to eternity
+10
+
+What james michener book is subtitled Spanish travels and reflections?
+Iberia
+10
+
+What jane fonda film has duran duran as the villain?
+Barbarella
+10
+
+What Japanese city was the scene of a devastating earthquake in 1994?
+Kobe
+10
+
+What Japanese video game system arrived in the western world in 1985?
+Nintendo
+10
+
+What jean Paul sartre novel had a sick title?
+Nausea
+10
+
+What jerry van dyke sitcom is widely hailed as the worst in tv history?
+My mother the car
+10
+
+What jetsetting author threw a much-talked-about masked ball at New York City's plaza hotel in 1965?
+Truman capote
+10
+
+What jewish holiday is the day of judgment and remembrance?
+Rosh hashanah
+10
+
+What jewish holiday saw the start of the 1973 mideast war?
+Yom kippur
+10
+
+What job did the pianist paderewski hold in the newly created state of poland?
+Prime minister
+10
+
+What job does a bkworm have?
+Librarian
+10
+
+What job does murmur have?
+Cardiologist
+10
+
+What job does up & down do for a living?
+Elevator operator
+10
+
+What jockey teamed up with Bart Cummings to win Melbourne Cups on Light Fingers and Red Handed?
+Roy Higgins
+10
+
+What jockey won the English Derby but failed to win a Melbourne Cup in 19 attempts?
+George Moore
+10
+
+What john lennon-yoko ono hit had the Canadian chapter of the radha krishna temple in the chorus?
+Give peace a chance
+10
+
+What john spyri story is about a little alpine lass?
+Heidi
+10
+
+What john wyndham novel features triffids killing humans?
+The day of the triffids
+10
+
+What joins muscles to bones?
+Tendons
+10
+
+What jonathan spyri story is about a little alpine lass?
+Heidi
+10
+
+What jules verne novel features scientists held captive in the submarine nautilus?
+20,000 leagues under the sea
+10
+
+What Jules Verne novel is about scientists held captive in a submarine?
+20,000 leagues under the sea
+10
+
+What keeps one from crying when peeling onions?
+Chewing gum
+10
+
+What kenyan city is the safari centre for east africa?
+Nairobi
+10
+
+What key do most toilets flush in?
+E flat
+10
+
+What kids tv show celebrated its 20th season in 1988?
+Sesame street
+10
+
+What killed 5000 black tailed deer in the American state of Washington in 1980?
+Eruption of mount st helens
+10
+
+What killed Brad Nowell?
+Heroin
+10
+
+What killed hercules during the siege of troy?
+Arrow
+10
+
+What killed janis joplin?
+A heroin overdose
+10
+
+What killed the Greek playwright Aeschylus?
+A stone dropped by an eagle
+10
+
+What kind of 'mate' produces a tie in a chess game?
+Stalemate
+10
+
+What kind of a head does a Criosphinx possess?
+Ram
+10
+
+What kind of aircraft is the c46 Commando built by Curtiss Wright?
+Cargo
+10
+
+What kind of aircraft was a Short Sunderland?
+A seaplane
+10
+
+What kind of animal builds a dam from sticks?
+Beaver
+10
+
+What kind of animal has a tail pinned on it in a birthday party game?
+Donkey
+10
+
+What kind of animal is a 'margay'?
+Cat
+10
+
+What kind of animal is a carnivore?
+A meat eater
+10
+
+What kind of animal is a catamount?
+Cougar
+10
+
+What kind of animal is a civet?
+Cat
+10
+
+What kind of animal is a gaur?
+Wild ox
+10
+
+What kind of animal is a jacob?
+Sheep
+10
+
+What kind of animal is a leatherback?
+Turtle
+10
+
+What kind of animal is a peccary?
+Pig
+10
+
+What kind of animal is a possum?
+Marsupial
+10
+
+What kind of animal is babar?
+Elephant
+10
+
+What kind of animal is chesty pagett, the marine corp's mascot?
+Bulldog
+10
+
+What kind of animal is named after the botanist PeterPallas?
+Cat
+10
+
+What kind of animal was Black Beauty?
+Horse
+10
+
+What kind of animal was napoleon frightened of?
+Cats
+10
+
+What kind of animal was Rikki Tikki Tavi in The Jungle Book?
+Mongoose
+10
+
+What kind of animal was the now extinct Dodo?
+Bird
+10
+
+What kind of animals are impalas, elands & kudus?
+Antelopes
+10
+
+What kind of animals terrified napoleon bonaparte?
+Cats
+10
+
+What kind of animals terrified Napoleon?
+Cats
+10
+
+What kind of animals was Napoleon terrified of?
+Cats
+10
+
+What kind of apple is on the Beatles' apple label?
+Granny smith
+10
+
+What kind of athletes Schuss down a Piste?
+Skiers
+10
+
+What kind of bet at the track asks you to select the first two past the post in either order?
+A Quinella
+10
+
+What kind of bird is a 'poussin'?
+Chicken
+10
+
+What kind of bird is a capercaillie?
+Grouse
+10
+
+What kind of bird is a macaw?
+Parrot
+10
+
+What kind of bird taught dr dolittle to talk to the animals?
+Parrot
+10
+
+What kind of bird was Jonathon Livingston?
+Seagull
+10
+
+What kind of birds are most commonly raced?
+Pigeons
+10
+
+What kind of birds would you find in a gaggle?
+Geese
+10
+
+What kind of biscuits were named after Australian & New Zealand soldiers?
+Anzac biscuits
+10
+
+What kind of boat,invented in 1898 is held clear of the water by underwater wings?
+Hydrofoil
+10
+
+What kind of boats did Polynesians use for ocean voyages?
+Outrigger canoes
+10
+
+What kind of bones once stiffened corsets?
+Whale
+10
+
+What kind of book did dr seuss pen five of ten best-sellers in u.s history by 1994?
+Children's books
+10
+
+What kind of book did dr seuss pen five of ten best-sellers in u.s history?
+By 
+10
+
+What kind of books does fodor's publish?
+Travel guides
+10
+
+What kind of bug emerges in the 1975 movie the bug?
+Beetle
+10
+
+What kind of cake is a wedding cake normally?
+Fruit cake
+10
+
+What kind of cameras take instant, self developing photographs?
+Polaroid
+10
+
+What kind of cancer did Napoleon fear, because it ran in his family?
+Stomach
+10
+
+What kind of car does Austin Powers drive?
+Shaguar
+10
+
+What kind of car does nick nolte's character in 48 hours?
+A sky blue cadillac convertible 
+10
+
+What kind of carpenter's tools come in jig & coping styles?
+Saws
+10
+
+What kind of cat is used in purina(tm) commercials?
+White persian
+10
+
+What kind of chair sits on curved runners?
+Rocking chair
+10
+
+What kind of clay can potters heat to a higher temperature earthenware or stoneware?
+Stoneware
+10
+
+What kind of clock has no moving parts?
+Sundial
+10
+
+What kind of condition is 'protanopia'?
+Colour blindness
+10
+
+What kind of construction are both the Sydney Harbour and the Runcorn-Widnes bridges?
+Single span steel arch
+10
+
+What kind of construction is Tower Bridge in London?
+Bascule bridge
+10
+
+What kind of cowboy was john voight in 1969?
+Midnight cowboy
+10
+
+What kind of craft was the mast atop the Empire State Building intended to moor?
+Dirigibles
+10
+
+What kind of creature is a 'dunnock'?
+Bird
+10
+
+What kind of creature is a 'hoatzin'?
+Bird
+10
+
+What kind of creature is a 'Meadow Brown'?
+Butterfly
+10
+
+What kind of creature is a centaur?
+Half man, half horse
+10
+
+What kind of creature is a funnel web?
+Spider
+10
+
+What kind of creature is a lorikeet?
+A parrot
+10
+
+What kind of creature is a mudskipper?
+Fish
+10
+
+What kind of creature is a redpoll if it isn't a red cow?
+Bird
+10
+
+What kind of creature is a redpoll, other than a kind of cattle?
+Bird
+10
+
+What kind of creature is Sonic?
+Hedgehog
+10
+
+What kind of creature is the griffin?
+Half eagle, half lion
+10
+
+What kind of creature is the mOnarch that often journeys from Canada to Mexico?
+Butterfly
+10
+
+What kind of creature was Chewbacca in 'Star Wars'?
+Wookie
+10
+
+What kind of creature was harvey?
+Rabbit
+10
+
+What kind of creatures are 'ratites'?
+Birds
+10
+
+What kind of creatures are flex & torsion on fraggle rock?
+Doozers
+10
+
+What kind of creatures are Georgia jumpers and African night crawlers?
+Worms
+10
+
+What kind of creatures are the Canary Islands named after?
+Dogs
+10
+
+What kind of creatures are the canary islands named for?
+Dogs
+10
+
+What kind of creatures were Bilbo & Frodo?
+Hobbits
+10
+
+What kind of dance is the Blue Danube?
+Waltz
+10
+
+What kind of dance to native women perform for tourists in hawaii?
+Hula
+10
+
+What kind of desires did gowan have in 1987?
+Moonlight desires
+10
+
+What kind of dressing graces a Reuben sandwich?
+Russian 
+10
+
+What kind of drum is beat beat in the first line of night and day?
+Tom-tom
+10
+
+What kind of electricity is produced when you rub a balloon against your hair?
+Static electricity
+10
+
+What kind of elephant grows to be four feet high?
+Pygmy
+10
+
+What kind of energy powers most communications satellites?
+Solar energy
+10
+
+What kind of engine did the greek engineer Hero design in the 1st century?
+A steam engine
+10
+
+What kind of eyes did 'lucy in the sky with diamonds' have?
+Kaleidoscope
+10
+
+What kind of feathers does an emu have?
+Double-plumed
+10
+
+What kind of fig tree is also known as the great maple?
+Sycamore
+10
+
+What kind of firearm was developed by Oliver Winchester in 1866?
+The repeating rifle
+10
+
+What kind of fish attracted 16th century fishermen to the east coast of North America?
+The cod
+10
+
+What kind of fish is a 'porbeagle'?
+Shark
+10
+
+What kind of floor covering is 'lino' a short form for?
+Linoleum
+10
+
+What kind of food is bel Paese?
+Cheese
+10
+
+What kind of food was 'pottage'?
+A thick soup
+10
+
+What kind of food was a medieval 'chewet'?
+A meat pie
+10
+
+What kind of fronts are shown as points on lines on weather maps?
+Cold fronts
+10
+
+What kind of fruit are Green Williams?
+Pears
+10
+
+What kind of fruit was named after Enoch Bartlett?
+Pear
+10
+
+What kind of fruit were prunes before they shrivelled?
+Plums
+10
+
+What kind of fruit were the golden apples of greek mythology?
+Apricots
+10
+
+What kind of game is Aunt Sally?
+Funfair game
+10
+
+What kind of glass, common in baking dishes, can resist very high temperatures?
+Pyrex
+10
+
+What kind of hat is depicted on lee trevino's golf cap?
+A sombrero
+10
+
+What kind of hat took its name from a George Du Maurier novel?
+Trilby
+10
+
+What kind of high intensity light beam was proposed by Einstein in 1917?
+The laser
+10
+
+What kind of house was a hit for Blur?
+A house in the country
+10
+
+What kind of insect is a 'whirligig'?
+Beetle
+10
+
+What kind of instrument is an English horn?
+An oboe
+10
+
+What kind of jump is performed on thick rubber bands?
+Bungee jump
+10
+
+What kind of letters made up the Viking alphabet?
+Runes
+10
+
+What kind of machine is built to be 'booted'?
+Computer
+10
+
+What kind of machines are floppy discs used in?
+Computers
+10
+
+What kind of money, more than real money, is printed in a year throughout the world?
+Monopoly
+10
+
+What kind of money, more than real money, is printed in a year throughout?
+The 
+10
+
+What kind of music imitates the fanfares, drum rolls, and commotion of a battle?
+Battaglia
+10
+
+What kind of music is Struss's 'Die Fledermaus'?
+Operetta
+10
+
+What kind of nuts are ground up to make marzipan?
+Almonds
+10
+
+What kind of nuts were originally used in the old shell game?
+Walnuts
+10
+
+What kind of oil was used for lighting purposes in biblical times?
+Olive oil
+10
+
+What kind of pain is a migraine?
+Headache
+10
+
+What kind of pants were first worn during the California gold rush?
+Denim jeans
+10
+
+What kind of peach has a smooth skin?
+Nectarine
+10
+
+What kind of pedestrian crossing is a silent crossing?
+Pelican
+10
+
+What kind of pendulum twists instead of swings?
+Torsional
+10
+
+What kind of plane is a ct-114 tutor?
+Jet trainer
+10
+
+What kind of plant is peyote?
+Cactus
+10
+
+What kind of plants are chervil, borage & thyme?
+Herbs
+10
+
+What kind of poem has fourteen lines?
+Sonnet
+10
+
+What kind of poem its keats's 'to a Nightingale'?
+Ode
+10
+
+What kind of poisoning is known as plumbism?
+Lead poisoning
+10
+
+What kind of products did Thomas Sheraton design and make?
+Furniture
+10
+
+What kind of puppet is controlled by strings?
+Marionette
+10
+
+What kind of races took place in the Circus Maximus in Rome?
+Chariot races
+10
+
+What kind of rain was New York cop Michael Douglas running through in Japan in 1989?
+Black rain
+10
+
+What kind of representation of the human body is given to the name ecorche?
+Skin removed
+10
+
+What kind of rock is marble?
+Metamorphic
+10
+
+What kind of rocks are basalt, granite and obsidian?
+Igneous
+10
+
+What kind of school for dogs was first established in Nashville Tennessee in 1929?
+Guide dogs for the blind
+10
+
+What kind of seeds can cause drug tests to trigger false positives for opium?
+Poppy seeds
+10
+
+What kind of shark has killed the most people?
+Great white
+10
+
+What kind of shark was the star of the Jaws films?
+Great white shark
+10
+
+What kind of shoe is nailed above the door for good luck?
+Horseshoe
+10
+
+what kind of siege weapon was a trebuchet?
+Giant sling shot
+10
+
+What kind of skiing held its first world championship in 1979?
+Grass skiing
+10
+
+What kind of slippers did the first cinderella wear?
+White ermine
+10
+
+What kind of small glass bottle turns liquid perfume into a fine spray?
+Atomiser
+10
+
+What kind of spider devours it's mate after mating?
+Black widow
+10
+
+What kind of sports field does John Lennon help to create in the desert in the film How I won the War?
+A cricket pitch
+10
+
+What kind of sportsmen was Linda Jones the first woman to compete against in Australia?
+Jockeys
+10
+
+What kind of star sign is Gemini?
+Air
+10
+
+What kind of steak is named after a french writer and statesman?
+Chateaubriand
+10
+
+What kind of stick does an artist rest his brush on?
+Maulstick
+10
+
+What kind of stone was sulphur once known as?
+Brimstone
+10
+
+What kind of storm is a haboob?
+Sandstorm
+10
+
+What kind of surface is tennis' French open tournament played on?
+Clay
+10
+
+What kind of sword did Thundar the Barbarian have?
+A Sun Sword
+10
+
+What kind of thermometer is used by women to determine the time of ovulation?
+Basal
+10
+
+What kind of tradesman uses a 'plunger'?
+A plumber
+10
+
+What kind of transport were dreadnoughts?
+Ships
+10
+
+What kind of tree did James Markham obtain a patent for?
+Peach
+10
+
+What kind of tree grows acorns?
+Oak
+10
+
+What kind of tree is Alexander the Greats entire army said to have sheltered under?
+Banyan
+10
+
+What kind of triangle has a hypotenuse?
+Right angle triangle
+10
+
+What kind of trousers are special made for riding horses?
+Jodhpurs
+10
+
+What kind of vegetable is 'calabrese'?
+Broccoli
+10
+
+What kind of water does the caspian sea have?
+Saltwater
+10
+
+What kind of weapon was a Colt Peacemaker?
+A revolver
+10
+
+What kind of weapon was a Lee Enfield?
+A rifle
+10
+
+What kind of wood was the Kon Tiki raft made of?
+Balsa
+10
+
+What king boycotted prince Charles's wedding?
+Juan carlos of Spain
+10
+
+What king built the palace of versailles?
+Louis xiv
+10
+
+What king dissolved the English monastries?
+Henry viii
+10
+
+What king is said to have introduced golf to England?
+James 1
+10
+
+What king of egypt built egypt's largest pyramid at giza?
+King cheops
+10
+
+What king of wessex married judith of france?
+Aethelwulf
+10
+
+What king was murdered by macbeth?
+Duncan
+10
+
+What kingdom claims the birthplace of Bhudda?
+Nepal
+10
+
+What kingdom has at one time or another owned norway, Finland, the better part of the baltic states and land in modern day Germany, poland and Russia?
+Sweden
+10
+
+What kipling character was raised by wolves?
+Mowgli
+10
+
+What kitchen appliance does the typical American open 22 times a day?
+The refrigerator
+10
+
+What knighted actor titled his autobiography blessings in disguise?
+Alec guinness
+10
+
+What label does rush record on in britain?
+Mercury
+10
+
+What label does triumph record on in Canada?
+Attic
+10
+
+What lake is approximately 394,000 sq km?
+Caspian sea
+10
+
+What lake is the source of the white nile?
+Lake victoria
+10
+
+What lake is the world's largest, having an area of almost 394,000sq km?
+Caspian sea
+10
+
+What lake was the victorian Sir Richard Burton the first to discover in Tanganyika?
+Lake tanganyika
+10
+
+What language boasts the largest vocabulary?
+English
+10
+
+What language do gypsies speak?
+Romany
+10
+
+What language do most Pakistanis speak?
+Punjabi
+10
+
+What language does 'danke' mean 'thank you' in?
+German
+10
+
+What language does 'danke' mean 'thank you'?
+German
+10
+
+What language does an estimated 25% of Los Angeles speak?
+Spanish
+10
+
+What language does obrigado mean 'thank you' in?
+Portuguese
+10
+
+What language evolved from latin, norman-french and anglo-saxon?
+English
+10
+
+What language gave us the word pyjamas?
+Persian
+10
+
+What language gave us the words kimono & futon?
+Japanese
+10
+
+What language is a combination of arabic and Portuguese?
+Swahili
+10
+
+What language is most widely spoken in Iran?
+Persian
+10
+
+What language is spoken in 85 percent of international phone calls?
+English
+10
+
+What language is the opera carmen generally sung in?
+French
+10
+
+What language originating in Europe, is most widely spoken aroung the world?
+Spanish
+10
+
+What language was Eric clapton's 1979 marriage to patti boyd conducted in?
+Spanish
+10
+
+What language was spoken by the ancient Romans?
+Latin
+10
+
+What large body of water does the Gulf of Panama lead into?
+Pacific
+10
+
+What large red flower is the floral emblem of New South Wales?
+Waratah
+10
+
+What large sea is between europe and africa?
+Mediterranean
+10
+
+What las Vegas casino game gives the best odds?
+Craps
+10
+
+What lasted from april 3, 1860 to october 24, 1861?
+Pony express
+10
+
+What late country singer with a smooth voice was nicknamed gentleman jim?
+Jim reeves
+10
+
+What late night news show became popular in the eighties after the Iranian Hostage takeover?
+Nightline
+10
+
+What late night show replaced Tom Synder's show?
+David Letterman
+10
+
+What late rock star's estate earned 15 million in 1988?
+Elvis presley
+10
+
+What Latin American country is home to the World Boxing Council?
+Mexico
+10
+
+What latin word is used for information of little use?
+Trivia
+10
+
+What latin word means 'little shaded area'?
+Umbrella
+10
+
+What lawn sport's popularity put an abrupt end to the croquet craze if the late 1800's?
+Tennis
+10
+
+What lawyer died five days after the Scopes Trial in 1925?
+William Jennings Bryan
+10
+
+What leg of Colonel Steve Austin was bionic?
+Both
+10
+
+What legendary character is rooted in U S pioneer John Chapman?
+Johnny appleseed
+10
+
+What legendary monster does Seattle secretary Katie Martin believe to be the father of her furry faced son?
+Bigfoot
+10
+
+What legendary table seats 150?
+King arthur's round table
+10
+
+What legendary us magazine publisher was born in tengchow, china?
+Henry luce
+10
+
+What legume did George Washington Carver use as a basis for over 300 inventions?
+Peanuts
+10
+
+What leon uris novel deals with the Russian capture of Berlin?
+Armageddon
+10
+
+What leon uris novel recounts the birth of israel?
+Exodus
+10
+
+What letter accounts for one of every eight used in written English?
+E
+10
+
+What letter appears on on the cold water tap in Spain?
+F
+10
+
+What letter appears on the most scrabble tiles?
+E
+10
+
+What letter begins the fewest words in the English language?
+X
+10
+
+What letter does a single raised dot represent in braille?
+Q
+10
+
+What letter does not appear anywhere on the periodic table of elements?
+J
+10
+
+What letter in the English alphabet once went by the name izzard?
+Z
+10
+
+What letter is missing: abcdefghijklmnopqrstuvwyz?
+X
+10
+
+What letter is missing: abcdefghijklmnopqrsuvwxyz?
+T
+10
+
+What letter is missing: abcdefghiklmnopqrstuvwxyz?
+J
+10
+
+What letter is missing: abdefghijklmnopqrstuvwxyz?
+C
+10
+
+What letter is most commonly found at the end of US state names?
+A
+10
+
+What letter is on the hot water tap in France?
+C
+10
+
+What letter is on the hot-water taps in france?
+C
+10
+
+What letter is on the left end of the middle row of the letters on a keyboard?
+A
+10
+
+What letter is on the left hand bottom row of a keyboard?
+Z
+10
+
+What letter is probably on most cold water taps in frankfurt?
+K
+10
+
+What letter is to the left of G on a keyboard?
+F
+10
+
+What letter is to the right of k on a keyboard?
+L
+10
+
+What letter of the English alphabet is 'u'?
+21st
+10
+
+What letter on a weather map indicates a high pressure system?
+H
+10
+
+What letter represents the number 500 in Roman Numerals?
+D
+10
+
+What letters appear over the number two on a telephone dial?
+A b c
+10
+
+What letters are not on the telephone dial?
+Q and z
+10
+
+What li'l abner animal gave milk & laid eggs?
+Schmoo
+10
+
+What license must Californians acquire before they can legally set up a mousetrap?
+A hunting license
+10
+
+What lies about 15 miles north of Quito?
+Equator
+10
+
+What lies between Stockholm and Riga?
+Baltic sea
+10
+
+What lies east of mauritius?
+Australia
+10
+
+What lies twitching at the bottom of the ocean?
+A nervous wreck
+10
+
+What lifeboat gets launched from the coast of cornwall?
+Padstow lifeboat
+10
+
+What line divides a circle into two semi circles?
+Diameter
+10
+
+What line in the U S seperates the north from the south?
+Mason dixon line
+10
+
+What line on a weather map links all points of equal pressure?
+Isobar
+10
+
+What liner company operated the Titanic?
+White Star Liners
+10
+
+What links cliff richard and viviean lee?
+Both were born in India
+10
+
+What links sri lanka and an old detective series?
+Columbo
+10
+
+What links the Isle of Portland to the mainland coast of Dorset?
+Chesil bank
+10
+
+What liqueur is flavoured with the rind of bitter oranges?
+Cointreau
+10
+
+What liqueur makes a grasshopper green?
+Creme de menthe
+10
+
+What liqueur stamped dom was first made by monks?
+Benedictine
+10
+
+What liquid is brandy distilled from?
+Wine
+10
+
+What liquid is known as the universal solvent?
+Water
+10
+
+What liquid is metered in most households?
+Water
+10
+
+What liquor joins coconut cream and pineapple juice to make a Pina colada?
+Rum
+10
+
+What literary sleuth was originally stuck with the first name Sherrinford?
+Sherlock Holmes
+10
+
+What literary work gave Geoffrey Chaucer something to do from 1387 to 1400?
+The canterbury tales
+10
+
+What live cargo did the Mayflower carry to America on it's second trip?
+Slaves
+10
+
+What lively neapolitan dance was named after a spider?
+Tarantella
+10
+
+What liverpool club spawned the Beatles?
+Cavern
+10
+
+What lives in a formicary?
+Ants
+10
+
+What lives in a fornicary?
+Ants
+10
+
+What living asterisk moves at 15cm per minute?
+The starfish
+10
+
+What living organism can be 30 times the size of a blue whale?
+A giant sequoia
+10
+
+What loaded gaming devices were found in the ruins of Pompei?
+Dice
+10
+
+What lollies are named after the safety devices they look like?
+Life savers
+10
+
+What lollies are well known for rolling down the aisles at the movies?
+Jaffas
+10
+
+What lollies are you told you need 'at moments like these'?
+Minties
+10
+
+What London art gallery is named after a manufacturer of artificial silk?
+The Courtauld Institute
+10
+
+What london palace was destroyed by fire in 1936?
+Crystal palace
+10
+
+What London park is found on the south side of the Thames between the Albert and Chelsea bridges?
+Battersea
+10
+
+What London railway station is The Old Vic found behind?
+Waterloo
+10
+
+What London station did Brunel's Great Western Railway terminate at?
+Paddington
+10
+
+What London station would you take the train from to get to Gatwick?
+Victoria
+10
+
+What London street is associated with Sweeney Todd?
+Fleet
+10
+
+What London street is famous for mens tailoring?
+Savile row
+10
+
+What london street is named after the forerunner of croquet?
+Pall mall
+10
+
+What london street is the home of British journalism?
+Fleet street
+10
+
+What long distance love story did tom hanks and meg ryan star?
+Sleepless in seattle
+10
+
+What long poem did Oscar Wilde write in prison?
+Teh ballad of reading gaol
+10
+
+What long range WWI German cannon was named for Bertha Krupp?
+Big bertha
+10
+
+What long suffering teenager was created by Sue Townsend?
+Adrian mole
+10
+
+What longtime cleveland browns quarterback was shipped off to dallas in 1993?
+Bernie kosar
+10
+
+What looked like alka-seltzer but tasted like soda pop?
+Fizzies
+10
+
+What lose their color if they are kept in dim light or are placed in a body of running water, such as a stream?
+Goldfish
+10
+
+What loses colour if kept in dimly lit or running water?
+Goldfish
+10
+
+What love song featured elton john and kiki dee?
+Don't go breaking my heart
+10
+
+What lucky charm does Luciano Pavarotti carry in his pocket whilst performing?
+A bent nail
+10
+
+What M-A-S-H unit does Hawkeye Pierce operate in?
+4077th
+10
+
+What mach speed would send you hypersonic?
+Mach 5
+10
+
+What machine is used to record the electrical activity in the brain?
+Electroencephalogram
+10
+
+What made Michael Milken famous and rich?
+Junk Bonds
+10
+
+What made the crew sick in the movie Airplane?
+The fish
+10
+
+What made two monkeys famous in 1959?
+Space trip
+10
+
+What made up all ethnic food orders in 1985?
+Pizza
+10
+
+What made up the Bouquet in the 70's TV series starring Susan Penhaligon?
+Barbed wire
+10
+
+What magazine did feminist expert shere hite pose for in 1971?
+Playboy
+10
+
+What magazine did Harry Truman sell his memoirs to on February 21, 1953?
+Life
+10
+
+What magazine is the cornerstone of bob guccione's publishing empire?
+Penthouse
+10
+
+What magazine started inviting readers to crease the back cover on folds a and b?
+Mad
+10
+
+What magazine was the first to be distributed widely through grocery stores?
+Family circle
+10
+
+What magician dazzled at king arthur's court?
+Merlin
+10
+
+What magician dazzled king aurthur's court?
+Merlin
+10
+
+What mail-order business was founded during world war ii by 'fred' mallinger?
+Frederick's of hollywood
+10
+
+What maine village is home for george bush's 26-room getaway?
+Kennebunkport
+10
+
+What major British disaster occurred in Beauvais, France, in 1930?
+Crash of the r101 airship
+10
+
+What major Canadian city has a nickname called 'Hogtown'?
+Toronto
+10
+
+What major city calls itself 'The Windy City'?
+Chicago,IllChicago
+10
+
+What major city is close to the middle of the Iberian Peninsula?
+Madrid
+10
+
+What major city is located at the westernmost point in Africa?
+Dakar
+10
+
+What major city is on an island in the St Lawrence river?
+Montreal
+10
+
+What major city is served by Gatwick airport?
+London
+10
+
+What major city was the 1939 worlds fair held?
+New york city
+10
+
+What major German city suffered enormous civilian losses in operation thunderclap during the second world war?
+Dresden
+10
+
+What major government body is based in oklahoma city?
+Faa
+10
+
+What major island lies 250 miles off the south eastern coast of Africa?
+Madagascar
+10
+
+What major law was violated in the movie smokey and the bandit?
+Smuggling beer
+10
+
+What major league baseball team has a moose for a mascot?
+The seattle mariners
+10
+
+What major league baseball team was forced to endure a 20-day road trip in 1996?
+The atlanta braves
+10
+
+What major league team did luis tiant first go to the mound for?
+Cleveland indians
+10
+
+What major sporting event took place at Sapporo Japan in 1972?
+Winter olympics
+10
+
+What major western european country was a dictatorship less than 30 years ago?
+Spain
+10
+
+What make and model of car does Nash Bridges drive?
+A 1971 Plymouth Barracuda convertible.
+10
+
+What make and model of car is closely associated with Nurse Gladys Emmanuel?
+Morris minor
+10
+
+What make of automobile was pictured above the single word 'lemon' in a 1960 ad?
+A Volkswagen
+10
+
+What make of British car won the Le Mans motor race five times from 1924 to 1930?
+Bentley
+10
+
+What make of car boasted 'Grace, Space, Pace'?
+Jaguar
+10
+
+What make of car did Jim Clark die in?
+Lotus
+10
+
+What make of car did simon templar first drive?
+Volvo
+10
+
+What make of car did special agents of the fbi drive?
+Fords
+10
+
+What make of car is a carrera?
+Porsche
+10
+
+What make of car is an espace?
+Renault
+10
+
+What make of car was Al Capone's favourite bullet proof car?
+Cadillac
+10
+
+What make of lighter does james bond light his ladies' cigarettes with?
+Ronson
+10
+
+What make of piano did liberace play in his 50s series?
+Baldwin
+10
+
+What make up is french for red?
+Rouge
+10
+
+What make was the first completely waterproof watch in 1926?
+Rolex
+10
+
+What makes a doughnut a doughnut?
+The hole
+10
+
+What makes a solution saline?
+Salt
+10
+
+What makes plants green?
+Chlorophyll
+10
+
+What makes stainless steel stainless?
+Chromium
+10
+
+What makes up 10% of yellow gold?
+Copper
+10
+
+What makes up about 85% of all the greenery on earth?
+Ocean plants
+10
+
+What male actor played the lead in the thief who came to dinner?
+Ryan o'neal
+10
+
+What mammal always bears 4 identical young of the same sex?
+Armadillo
+10
+
+What mammal lives at a higher altitude than any other in the world?
+Yak
+10
+
+What mammal lives longest?
+Man
+10
+
+What mammal lives the longest?
+Man
+10
+
+What mammal moves so slowly that green algae can grow undisturbed on it's fur?
+Sloth
+10
+
+What mammal ranks after man on the evolutionary scale?
+Ape
+10
+
+What mammals fly?
+Bats
+10
+
+What mammals travel in pods?
+Whales
+10
+
+What mammals travel with yellowfin tuna?
+Dolphins
+10
+
+What man had a wart on his face?
+Herbert hoover
+10
+
+What man has the monuments erected to him?
+Buddha
+10
+
+What man has the most monuments erected to him?
+Buddha
+10
+
+What man-made structure is 4800 km long?
+Great Wall of China
+10
+
+What man's gun was sold for use to the Texas Rangers?
+Samuel colt
+10
+
+What manmade waterway is 100.76 miles long?
+Suez canal
+10
+
+What manufacturer of pens & throw away razors also make sailboards?
+Bic
+10
+
+What marathon procession hit the headlines in 1936?
+The jarrow march
+10
+
+What march did Felix Mendelssohn compose?
+Wedding march
+10
+
+What maritime country has the shortest coastline, at three and a half miles?
+Monaco
+10
+
+What maritime hazard is called a growler?
+Small ice berg
+10
+
+What mark indicates British Standards Institute approval?
+Kite
+10
+
+What marlon brando film was widely banned?
+Last tango in paris
+10
+
+What martial art's name means 'leisure time'?
+Kung fu
+10
+
+What marvel Comics superhero carries a star spangled shield?
+Captain America
+10
+
+What marx brother had real name julius Henry?
+Groucho
+10
+
+What marx brother had real name milton?
+Gummo
+10
+
+What mass produced item cost $950 in 1909 and $290 in 1925?
+Model t ford
+10
+
+What master of question taste created the newlywed game?
+Chuck barris
+10
+
+What material are calico, corduroy, gingham & velveteen made from?
+Cotton
+10
+
+What material did cordwainers work with?
+Leather
+10
+
+What material did frenchman Pierre Carpentier invent in 1853?
+Corrugated iron
+10
+
+What material did Michelangelo carve most of his sculptures out of?
+Marble
+10
+
+What material did the ancient egyptians write on?
+Papyrus
+10
+
+What material did the Ancient Greeks call elektron and from which we get the word electricity?
+Amber
+10
+
+What material is touched or knocked on for good luck?
+Wood
+10
+
+What material is used to make the plaster cast in which broken bones can set?
+Plaster of paris
+10
+
+What material was banned by the English after the 1745 jacobite rbellion until 1782?
+Tartan
+10
+
+What material were WW II troop-carrying gliders made from?
+Plywood
+10
+
+What material were wwii troop carrying gliders made of?
+Plywood
+10
+
+What mates with a drake?
+A duck
+10
+
+What mayor welcomed john f kennedy to west Berlin?
+Willy brandt
+10
+
+What meal would 'Mystery in the Alley' refer to?
+Hash
+10
+
+What means both 'hello' & 'goodbye' in Hawaii?
+Aloha
+10
+
+What means never having to say you're sorry?
+Love
+10
+
+What means of transport was invented in marin county, California, in the 1970s?
+Mountain bike
+10
+
+What means of transport was pioneered by robert goddard?
+Rockets
+10
+
+What means of transportation did nathan ames invent in 1859?
+Escalator
+10
+
+What measure is used for the purity or fineness of gold?
+Carat
+10
+
+What measures blood pressure?
+Sphygmomanometer
+10
+
+What measures walking distance?
+Pedometer
+10
+
+What measures wind velocity?
+Anemometer
+10
+
+What meat do Muslims not eat?
+Pork
+10
+
+What meat is chopped into a traditional Quiche Lorraine?
+Bacon
+10
+
+What meat is from deer?
+Venison
+10
+
+What meat is from sheep?
+Mutton
+10
+
+What mechanical object do the dogs chase in greyhound racing?
+Hare
+10
+
+What media format did the denon company help pioneer?
+Compact discs
+10
+
+What media icon invaded Network 23?
+Max Headroom
+10
+
+What medical proceedure did Iceland become the first to legalize?
+Abortion
+10
+
+What medical treatment was first used by chinese emperor shen-nung in 2700 bc?
+Acupuncture
+10
+
+What medical use is made of the fox glove?
+Heart drugs
+10
+
+What medicinal purpose can beaver fat relieve?
+Constipation
+10
+
+What medicine hastens the emptying of the bowels?
+Laxative
+10
+
+What Mediterranean island are Agrigento, Catania and Messina found on?
+Sicily
+10
+
+What meets the Atlantic Ocean at the Cape of Good Hope?
+Indian ocean
+10
+
+What Melbourne suburb is home to Victorian Lawn Tennis Association courts?
+Kooyong
+10
+
+What member of ac/dc died in 1980?
+Bon scott
+10
+
+What member of the animal kingdom has the shortest known life span?
+Mayfly
+10
+
+What membrane controls the amount of light entering the eye?
+Iris
+10
+
+What men's magazine was originally to be called stag party?
+Playboy
+10
+
+What men's odorizer obsesses calvin klein?
+Obsession
+10
+
+What menacing character was best friends with tommy anderson?
+Dennis the
+10
+
+What mercy doctor called for death row inmates to donate their organs in 1993?
+Jack kevorkian
+10
+
+What message is 4me2no giving us?
+For me to know
+10
+
+What message is ilbcnu giving us?
+I'll be seeing you
+10
+
+What message is imb4u giving us?
+I'm before you
+10
+
+What message is xqzmee giving us?
+Excuse me
+10
+
+What metal are hot water pipes most often made of?
+Copper
+10
+
+What metal do fools mistake iron pyrites for?
+Gold
+10
+
+What metal forms one twelfth of the earth's crust?
+Aluminium
+10
+
+What metal has the chemical symbol al?
+Aluminium
+10
+
+What metal in it's purest state is so soft that it can be molded with the hands?
+Gold
+10
+
+What metal is obtained from bauxite?
+Aluminium
+10
+
+What metal is present in all amalgams?
+Mercury
+10
+
+What metal makes up 10 percent of yellow gold?
+Copper
+10
+
+What metal makes up most of earth's centre copper, gold or iron?
+Iron
+10
+
+What metal makes up most of earth's centre?
+Iron
+10
+
+What metal stays liquid over a greater range of temperature than any other?
+Gallium
+10
+
+What metal was danish astronomer tycho brahe's nose made of?
+Gold
+10
+
+What metallic element is essential to the red blood cells?
+Iron
+10
+
+What meteorological significance is traditionally attached to cows lying down?
+Rain
+10
+
+What method for brewing coffee was invented by James mason in 1865?
+Percolating
+10
+
+What method of communication was invented in 1837?
+Morse code
+10
+
+What method of transportation did Webster use to get from the upper level of the house to the lower level?
+The dumbwaiter
+10
+
+What Mexican general attacked the alamo?
+Santa anna
+10
+
+What mid day nap takes its name from the Spanish word sexta meaning sixth?
+Siesta
+10
+
+What might be divided into stanzas?
+Poetry
+10
+
+What might you be overtaken and passed by if you were driving down a road in Nairobi at a speed of 35 miles per hour?
+A rhinoceros
+10
+
+What milk is Pecorino cheese made from?
+Ewes
+10
+
+What milk product did the U S agriculture department propose as a substitute for meat in school lunches in 1996?
+Yogurt
+10
+
+What Milton Bradley game wants to make you a millionaire tycoon?
+Life
+10
+
+What mineral did Jimmy think he could live without?
+Zinc 
+10
+
+What mineral is 9 on the moh's hardness scale?
+Corundum
+10
+
+What mineral salt is an important constituent of bones and teeth?
+Calcium
+10
+
+What mistake did Coca-Cola make in 1985?
+New Coke
+10
+
+What mixture is used to calm crying babies?
+Gripe water
+10
+
+What mode of transport is Phileas Fogg famous for using?
+Hot air balloon
+10
+
+What mode of transport was invented in 1959 by the Canadian, Armand Bombardier?
+Snowmobile
+10
+
+What mode of transportation first appeared in Venice in 1094?
+Gondolas
+10
+
+What mode of transportation will take you from dover to calais in 35 minutes?
+Hovercraft
+10
+
+What model car was used in the classic tv series, route 66?
+Corvette
+10
+
+What model of automobile is known for its water-tight characteristics?
+Volkswagen beetle
+10
+
+What model of car did Starsky and Hutch drive?
+Red Torino
+10
+
+What model said: 'beauty, after all, is just a point of view'?
+Twiggy
+10
+
+What model starred in the film the boyfriend?
+Twiggy
+10
+
+What modern competition was founded by Baron Pierre de Coubertin?
+Olympic games
+10
+
+What modern day city used to be named edo?
+Tokyo
+10
+
+What modern day country did the Romans call Gaul?
+France
+10
+
+What modern day country used to be called bohemia?
+Czech republic
+10
+
+What modern-day country was home to the ancient phoenicians?
+Lebanon
+10
+
+What molecular substance transmits characteristics from one generation to the next?
+Dna
+10
+
+What molecule did James Watson and Francis Crick unravel in 1944?
+Dna
+10
+
+What molecule, known by three letters, controls heredity?
+Dna
+10
+
+What monarch observed a jubilee in 1977?
+Queen elizabeth
+10
+
+What monster is said to be living in a Scottish lake?
+Loch ness monster
+10
+
+What month do we celebrate Commonwealth Day in?
+May
+10
+
+What month features the harvest moon?
+September
+10
+
+What month is grandparents day observed?
+September
+10
+
+What month of the year sees the earth at its nearest point to the sun?
+January
+10
+
+What month sees new zealand go on daylight time?
+October
+10
+
+What month was the Frankenstein monster created?
+November
+10
+
+What month were you born in if your birthstone is chrysolite?
+September
+10
+
+What Montreal brewer built Canada's first steamboat, in 1809?
+John molson
+10
+
+What monty python member played basil fawlty on the British sitcom 'fawlty towers'?
+John cleese
+10
+
+What more attractive name do fishmongers use for dogfish?
+Rock salmon
+10
+
+What moscow locale formed the title of a 1983 thriller?
+Gorky park
+10
+
+What motel chain can reached at 1-800-800-8000?
+Super Eight
+10
+
+What mothballed atomic submarine, bearing no 571 became a museum?
+Nautilus
+10
+
+What motto do brownies pledge?
+Lend a hand
+10
+
+What motto ends merrie melodies cartoons?
+That's all folks
+10
+
+What motto was on the first officially sanctioned U.S. pennies that were minted in 1787?
+Mind Your Business
+10
+
+What mountain erupted to destroy pompeii?
+Mount vesuvius
+10
+
+What mountain has the figures of three mounted confederate heroes of the civil war?
+Stone mountain
+10
+
+What mountain lies between china and nepal?
+Mount everest
+10
+
+What mountain range includes the siwaliks & karakorams?
+Himalaya
+10
+
+What mountain range is Ben Nevis in?
+Grampians
+10
+
+What mountain range is in New York state?
+Adirondack mountains
+10
+
+What mountain range is the natural habitat of the Llama?
+Andes
+10
+
+What mountain range is traversed by the highest railroad in the world?
+Andes
+10
+
+What mountain range marks the border of France and Spain?
+Pyrenees
+10
+
+What mountain range separates Europe from Asia?
+Ural
+10
+
+What mountain range seperates europe from asia?
+Ural
+10
+
+What mountain was Reinhold Messner the first to climb solo in 1980?
+Mount everest
+10
+
+What mountainous description comes from the Spanish word for saw?
+Sierra
+10
+
+What mountains are located on the border of tennessee and north carolina?
+Smoky mountains
+10
+
+What mountains form the spine of Italy?
+Apennines
+10
+
+What mountains seperate Eurpope from Asia?
+Urals
+10
+
+What move about in gaggles?
+Geese
+10
+
+What movie about a blind man starred al pacino and chris o'donnell?
+Scent of a woman
+10
+
+What movie about military cover-ups did tom cruise, demi moore, jack nicholson and kevin bacon star in?
+A few good men
+10
+
+What movie about the undead did gary oldman, winona ryder and anthony hopkins star?
+Bram stoker's dracula
+10
+
+What movie cast shelley long as a violinist?
+Money pit
+10
+
+What movie chronicles the life of pu yi?
+Last emperor
+10
+
+What movie company was the woodstock flick sold to?
+Warner communications
+10
+
+What movie did Dr. Hibbert want to see during the Film Festival?
+The Rocky Horror Picture Show 
+10
+
+What movie ends with the line After all tomorrow is another day?
+Gone With the wind
+10
+
+What movie featured Reece's Pieces as a crucial part of the story, because the director couldn't obtain the rights to use M&M's?
+E.T.
+10
+
+What movie features McBain as a comedian?
+Let's get funny
+10
+
+What movie had the famous line: use the force luke?
+Star wars
+10
+
+What movie has william hurt's son killed at burger bonanza?
+Accidental tourist
+10
+
+What movie produced by stanley kubrick was based on a novel by anthony burgess?
+A clockwork orange
+10
+
+What movie star was called 'America's sweetheart'?
+Mary pickford
+10
+
+What movie starred art carney & ellen burstyn?
+Harry and tonto
+10
+
+What movie starred hayley mills as a pyro who liked to start fires?
+Chalk garden
+10
+
+What movie starred julie harris & claire bloom?
+Haunting
+10
+
+What movie starred lee remick & jack lemmon?
+Days of wine and roses
+10
+
+What movie starred michael caine & angie dickinson?
+Dressed to kill
+10
+
+What movie starred michael caine and angie dickenson?
+Dressed to kill
+10
+
+What movie starred nick nolte & tuesday weld?
+Who'll stop the rain
+10
+
+What movie starred patty duke & barbara parkins?
+Valley of the dolls
+10
+
+What movie stars morgan freeman as a pimp known as fast black?
+Streetsmart
+10
+
+What movie tarzan won the 400-metre freestyle at the 1932 olympics?
+Buster crabbe
+10
+
+What movie theater has sold the most tickets?
+Radio city music hall
+10
+
+What movie told of anna anderson's claim to be a Russian czar's daughter?
+Anastasia
+10
+
+What movie tough guy convinced sammy davis jr. to stop wearing an eye patch?
+Humphrey bogart
+10
+
+What movie was adapted from a James Clavell novel?
+KingRat
+10
+
+What movie was named number one in the mpaa top 100?
+Citizen kane
+10
+
+What movie were the passengers on the plane in executive desicion watching?
+Born to be wild
+10
+
+What movie won academy awards for best picture, best director, best screenplay, and best actress in 1977?
+Annie hall
+10
+
+What movie won the academy award for best picture in 1969?
+Midnight cowboy
+10
+
+What movie would you be watching if you saw a female character by the name of Holly Golightly?
+Breakfast At Tiffany's
+10
+
+What movie, as of 1999, has had the most people on the end-credits?
+The lion king
+10
+
+What much reported occurence interrupted Bill Beaumont half time team talk at Twickenham in 1981?
+Erica rowes streak
+10
+
+What multinational is the biggest advertizer on the Dutch market?
+Unilever
+10
+
+What multiple birth has odds of 600,000 to 1 against it occurring?
+Quadruplets
+10
+
+What muppet co-anchored a nightline tv show with ted koppel?
+Kermit the frog
+10
+
+What muscles provide about 200 pounds of force?
+Jaw muscles
+10
+
+What museum houses the 'mona lisa'?
+Louvre
+10
+
+What museum is home to half the paintings now attributed to Leondardo?
+The louvre
+10
+
+What museum provides a home for whistler's mother?
+Louvre
+10
+
+What musical format did the denon company help pioneer?
+Compact discs
+10
+
+What musical group refused to be photographed without its make-up?
+Kiss
+10
+
+What musical instrument did jack benny play?
+Violin
+10
+
+What musical instrument did sherlock holmes play?
+Violin
+10
+
+What musical instrument does John McEnroe play?
+Guitar
+10
+
+What musical instrument does ravi shankar play?
+Sitar
+10
+
+What musical instrument is pictured in the logo for Guinness Beer?
+A Harp
+10
+
+What musical instrument was invented in 1846?
+Saxophone
+10
+
+What musical show discovered leslie uggams?
+Sing along with mitch
+10
+
+What musical term means 'slowely and stately'?
+Largo
+10
+
+What musical term means 'slowly and stately'?
+Largo
+10
+
+What Muslim race invaded Spain in 711 AD?
+Moors
+10
+
+What Muslims practise shirling as a religious act?
+Dervishes
+10
+
+What must a las vegas blackjack dealer do when he reaches 16?
+Take a card
+10
+
+What must a Mensa member be?
+Genius
+10
+
+What must be exceeded to produce a sonic boom?
+Speed of sound
+10
+
+What must be in position before the House of Commons can sit?
+Mace
+10
+
+What must remain on the floor in pocket billards?
+One foot
+10
+
+What must the lord chancellor do when he or she presents the Queen's speech to the monarch?
+Kneel
+10
+
+What myth is the rhinocerous thought to have inspired?
+Unicorn
+10
+
+What mythical creature carries an hourglass and a scythe?
+Father time
+10
+
+What mythyical Scottish town appears for one day every 100 years?
+Brigadoon
+10
+
+What name beginning with G was given to the hurricane that caused major devastation in Jamaica during 1988?
+Gilbert
+10
+
+What name did Frank Muir give to Joan Bakewell?
+The thinking man's crumpet
+10
+
+What name did George Eastman invent in 1888 because it was easy to memorize, pronounce & spell?
+Kodak
+10
+
+What name did Kresge's end up with?
+K-mart
+10
+
+What name did napoleon bonaparte sign to his letters?
+Bonaparte
+10
+
+What name did Octavius adopt on becoming the first Roman Emperor in 27 B.C?
+Augustus
+10
+
+What name did pablo picasso sign to his paintings?
+Picasso
+10
+
+What name did sailors give to the southern tip of Africa?
+Cape of Good Hope
+10
+
+What name did the Romans give to Wales?
+Cambria
+10
+
+What name did the Standard Oil Co. of California adopt?
+Esso
+10
+
+What name did vincent van gogh sign to his paintings?
+Vincent
+10
+
+What name do private eye readers associate with princess margaret?
+Yvonne
+10
+
+What name from the Dutch for Mumblers was given to followers of John Wycliffe in the 14th century?
+Lollards
+10
+
+What name have private eye readers come to associate with the queen?
+Brenda
+10
+
+What name is given to a blood vessel which takes blood away from the heart?
+Artery
+10
+
+What name is given to a boxer who leads with his right hand?
+Southpaw
+10
+
+What name is given to a bridge (dating from prehistory) constructed from stone piers with slabs of stones spanning them?
+Clapper bridge
+10
+
+What name is given to a case for carrying aroows?
+Quiver
+10
+
+What name is given to a circular coral reef?
+Atoll
+10
+
+What name is given to a countries song played on official occasions?
+National anthem
+10
+
+What name is given to a division of a Hells Angels club?
+Chapter
+10
+
+What name is given to a doctor who specialises in skin disorders?
+Dermatologist
+10
+
+What name is given to a drink and a well known book of records?
+Guinness
+10
+
+What name is given to a female calf?
+A heifer
+10
+
+What name is given to a fibre from the husk of a coconut, used in rope making & matting?
+Coir
+10
+
+What name is given to a five line poem which might begin There was a young girl from Cheshunt?
+Limerick
+10
+
+What name is given to a full length mirror on a swivel?
+Cheval
+10
+
+What name is given to a group of lions?
+Pride
+10
+
+What name is given to a hill in the centre of any Greek city?
+Acropolis
+10
+
+What name is given to a male witch?
+Warlock
+10
+
+What name is given to a man in charge of a dining room in a hotel or restaurant?
+Maitre d'
+10
+
+What name is given to a marriage in which the wife does not acquire her husband's rank and the offspring do not inherit the title?
+Morganatic
+10
+
+What name is given to a mixture of champagne and orange juice?
+Buck's fizz
+10
+
+What name is given to a planes automatic pilot?
+George
+10
+
+What name is given to a sentence that reads the same forwards and backwards?
+A palindrome
+10
+
+What name is given to a settlement which is clustered around a central point?
+Nucleated
+10
+
+What name is given to a statistician employed by an insurance company to calculate risks?
+An actuary
+10
+
+What name is given to a stone female figure who supports a ceiling on her head?
+Caryatid
+10
+
+What name is given to a substance in which resistance decreaces as temperature increases?
+Semiconductor
+10
+
+What name is given to a tail that can grip things?
+Prehensile
+10
+
+What name is given to a vertical bar dividing a window?
+Mullion
+10
+
+What name is given to a window that opens and shuts by moving up and down?
+Sash window
+10
+
+What name is given to a year with 366 days?
+Leap
+10
+
+What name is given to an alloy of mercury and another metal?
+Amalgam
+10
+
+What name is given to an army chaplain?
+Padre
+10
+
+What name is given to an equilateral parallelogram which contains a right angle?
+A square
+10
+
+What name is given to an isolated mountain peak protruding through an ice sheet?
+Nunatuk
+10
+
+What name is given to any muscle with three heads?
+Triceps
+10
+
+What name is given to bits of paper thrown at a bride and groom?
+Confetti
+10
+
+What name is given to farms which specialise in growing crops?
+Arable
+10
+
+What name is given to farms which specialise in rearing animals?
+Pastoral
+10
+
+What name is given to fish cooked in browned butter?
+Meuniere
+10
+
+What name is given to grotesquely carved church water spouts?
+Gargoyles
+10
+
+What name is given to music that constantly syncopates a straightforward tune?
+Ragtime
+10
+
+What name is given to people who fish with rod & line as a hobby?
+Anglers
+10
+
+What name is given to scribblings or drawings on public walls?
+Graffiti
+10
+
+What name is given to small or immature cucumbers usually grown to be pickled?
+Gherkins
+10
+
+What name is given to sweet chestnuts preserved in syrup?
+Marrons glace
+10
+
+What name is given to the 1913 show of artists' work in New York, which is often regarded as the beginning of public interest in progressive art in the U.S.A?
+The armory show
+10
+
+What name is given to the 4th Sunday in Lent?
+Refreshment sunday
+10
+
+What name is given to the abominable snowman?
+Yeti
+10
+
+What name is given to the art of dwarfing trees?
+Bonsai
+10
+
+What name is given to the belt of low air pressure that is located at the equator?
+The doldrums
+10
+
+What name is given to the blend of Black China and Darjeeling teas, flavoured with oil of Bergamot?
+Earl grey
+10
+
+What name is given to the bonds which link amino acid molecules together to form proteins?
+Peptide bond
+10
+
+What name is given to the broad gap between the outermost and the brightest of Saturn's rings?
+Cassini division
+10
+
+What name is given to the cap worn by a cardinal?
+Biretta
+10
+
+What name is given to the central single wedge-shaped block at the top of an arch, which is essentially a central voussoir?
+Keystone
+10
+
+What name is given to the control column of an aircraft?
+Joystick
+10
+
+What name is given to the crab that lives in an empty gastropod shell, moving to another shell when it outgrows its current home?
+Hermit crab
+10
+
+What name is given to the crater at the top of a volcano caused by its collapse?
+Caldera
+10
+
+What name is given to the current of warm water that flows across the Pacific to Peru?
+El nino
+10
+
+What name is given to the curved arms which hold lifeboats?
+Davits
+10
+
+What name is given to the day after Christmas Day?
+Boxing day
+10
+
+What name is given to the division between the nostrils?
+Septum
+10
+
+What name is given to the drink which is composed of equal parts of beer and stout?
+Black and tan
+10
+
+What name is given to the effect that the Earth is gradually becoming warmer?
+Global warming
+10
+
+What name is given to the fleshy part of a horses tail?
+The dock
+10
+
+What name is given to the Friday in holy week?
+Good friday
+10
+
+What name is given to the giant American transport plane, the C5?
+Galaxy
+10
+
+What name is given to the group of animals that eat meat?
+Carnivores
+10
+
+What name is given to the home of a squirrel?
+Drey
+10
+
+What name is given to the hypothetical super-continent which consisted of all the present continents before they split up?
+Pangaea
+10
+
+What name is given to the lace scarf worn on the head by Spanish women?
+Mantilla
+10
+
+What name is given to the larva of the click beetle?
+Wireworm
+10
+
+What name is given to the officials at a race meeting?
+Stewards
+10
+
+What name is given to the part of the sundial that casts the shadow?
+Gnomon
+10
+
+What name is given to the process by which rocks break when they absorb water?
+Hydration
+10
+
+What name is given to the projecting arm of a sundial?
+Gnomon
+10
+
+What name is given to the sedimentary rock that has changed after being subjected to heat and pressure, for example, Marble?
+Metamorphic
+10
+
+What name is given to the small sac or cavity from which a hair grows?
+Follicle
+10
+
+What name is given to the socket in the skull which holds the eye?
+Orbit
+10
+
+What name is given to the spore-bearing leaf of a fern?
+Frond
+10
+
+What name is given to the staff or crook of a bishop?
+Crozier
+10
+
+What name is given to the stand on which an artist rests his canvas?
+Easel
+10
+
+What name is given to the standard typewriter keyboard layout?
+Qwerty
+10
+
+What name is given to the straightaway opposite the one with the finish line in horse racing?
+The backstretch
+10
+
+What name is given to the study of Hormones?
+Endocrinology
+10
+
+What name is given to the study of lakes?
+Limnology
+10
+
+What name is given to the study of living things in their environment?
+Ecology
+10
+
+What name is given to the traditional, charcoal heated, Russian tea urn?
+Samovar
+10
+
+What name is given to the two buttons a telephone receive rests on?
+Plungers
+10
+
+What name is given to the type of window which opens on vertical hinges?
+Casement
+10
+
+What name is given to the unit of mass that weighs about 2.2046 pounds?
+Kilogram
+10
+
+What name is given to the volcano that broods over Catania?
+Mount etna
+10
+
+What name is given to the wall of a mosque which faces Mecca?
+Qibla wall
+10
+
+What name is given to the young of a kangaroo?
+Joey
+10
+
+What name is given to those days which have equal hours of daylight and darkness?
+Equinox
+10
+
+What name is given to twins who are joined together by some part of their anatomy?
+Siamese
+10
+
+What name is given to young herrings?
+Whitebait
+10
+
+What name is popularly applied to twins congenitally united in a manner not incompatible with life or activity?
+Siamese twins
+10
+
+What name is Samuel Langhorne Clemens known by?
+Mark twain
+10
+
+What name is sometimes given to the legislative assembly of a country that is derived from the latin for old man?
+Senate
+10
+
+What name is spray painted all over Springfield?
+El Barto 
+10
+
+What name is used by Private Eye when referring to the Queen?
+Brenda
+10
+
+What name is used in a restaurant for the extra charge made when you take in your own wine and they open it for you?
+Corkage
+10
+
+What name was given to a small gaiter, worn over the instep?
+Spat
+10
+
+What name was given to an Indian soldier in the service of the British?
+Sepoy
+10
+
+What name was given to the 17 1h century chair with shafts, borne by two servants?
+Sedan chair
+10
+
+What name was given to the 8th century Muslim invaders of Spain?
+Moors
+10
+
+What name was given to the Celtic priests?
+Druids
+10
+
+What name was given to the group of men who forced men into the army or navy?
+Press gang
+10
+
+What name was given to the period during the French Revolution when 1400 of Robespierre's opponents were executed?
+Reign of terror
+10
+
+What name was given to the period when Charles II regained the throne?
+Restoration
+10
+
+What natinality was the jewller faberge?
+Russian
+10
+
+What nation did 23 African countries sever relations with in 1974?
+Israel
+10
+
+What nation did panama declare independence from in 1903?
+Colombia
+10
+
+What nation does the Alphorn come from?
+Switzerland
+10
+
+What nation has had a monarchy the longest?
+Japan
+10
+
+What nation has had its own scandels dubbed muldergate & inkathagate?
+South africa
+10
+
+What nation has its capital in Zagreb?
+Croatia
+10
+
+What nation is nicknamed the 'regaa boyz'?
+Jamaica
+10
+
+What nation is the world's largest producer of tobacco?
+China
+10
+
+What nation was led by Genghis Khan?
+The mongols
+10
+
+What nation's 90 man army is the world's oldest, dating back to 1506?
+Vatican city's
+10
+
+What nation's populace watches the most TV, per capita?
+Japan's
+10
+
+What national capital rises where the Blue Nile and White Nile converge?
+Khartoum
+10
+
+What national hamburger chain has square patties but the buns are still round?
+Wendy's
+10
+
+What national park is mount snowdon in?
+Snowdonia
+10
+
+What national park sees the annual ten tors walk?
+Dartmoor
+10
+
+What nationalilty is the film director Milos Forman?
+Czech
+10
+
+What nationality are roxette?
+Swedish
+10
+
+What nationality is a breton?
+French
+10
+
+What nationality is a Sicilian?
+Italian
+10
+
+What nationality is athlete greta waitz?
+Norwegian
+10
+
+What nationality is designer Karl Lagerfield?
+German
+10
+
+What nationality is ex world motor racing champion Keke Rosberg?
+Finnish
+10
+
+What nationality is footballer Davor Suker?
+Croatian
+10
+
+What nationality is footballer Lucas Radebe?
+South african
+10
+
+What nationality is Gerhard Berger?
+Austrian
+10
+
+What nationality is golfer Paul Azinger?
+American
+10
+
+What nationality is Henry Kissinger by birth?
+German
+10
+
+What nationality is Jean Marc Bosman, famous for his ?Bosman Ruling' affecting football throughout Europe?
+Belgian
+10
+
+What nationality is Marie Curie?
+Polish
+10
+
+What nationality is michael chang?
+American
+10
+
+What nationality is prince phillip?
+Greek
+10
+
+What nationality is Salman Rushdie?
+British
+10
+
+What nationality is the actor donald sutherland?
+Canadian
+10
+
+What nationality is the artist Jackson Pollock?
+American
+10
+
+What nationality is the designer Galliano?
+British
+10
+
+What nationality is the film director milas forman?
+Czech
+10
+
+What nationality is the film director Milos Forman?
+Czech
+10
+
+What nationality is the Formula One driver Mika Hakkinen?
+Finnish
+10
+
+What nationality is the keyboards wizard Vangelis?
+Greek
+10
+
+What nationality is the novelist Norman Mailer?
+American
+10
+
+What nationality is the racing driver Jean Alesi?
+French
+10
+
+What nationality is the singer Celine Dion?
+Canadian
+10
+
+What nationality is the singer falco?
+Austrian
+10
+
+What nationality is the singer/actress Bjork?
+Icelandic
+10
+
+What nationality is the speedway rider Ole Olson?
+Danish
+10
+
+What nationality is toho film studios?
+Japanese
+10
+
+What nationality is Yehudi Menuhin?
+American
+10
+
+What nationality says spasibo for thank you?
+Russian
+10
+
+What nationality was Abel Tasman, discoverer of Tasmania?
+Dutch
+10
+
+What nationality was actress greta garbo?
+Swedish
+10
+
+What nationality was aladdin?
+Chinese
+10
+
+What nationality was alexander graham bell?
+Scottish
+10
+
+What nationality was Alfred Hitchcock?
+British
+10
+
+What nationality was benito mussolini?
+Italian
+10
+
+What nationality was bob marley's father?
+British
+10
+
+What nationality was boutros boutros ghali, once the secretary general of the united nations?
+Egyptian
+10
+
+What nationality was Boutros Boutros Ghali,Secretary General to the UN?
+Egyptian
+10
+
+What nationality was Charlie Chaplin?
+British
+10
+
+What nationality was chopin?
+Polish
+10
+
+What nationality was Christopher Columbus?
+Italian
+10
+
+What nationality was dr bart hughes?
+Dutch
+10
+
+What nationality was Edvard Munch?
+Norwegian
+10
+
+What nationality was fairy tale author Hans Christian Andersen?
+Danish
+10
+
+What nationality was General Pershing?
+American
+10
+
+what nationality was Goethe?
+German
+10
+
+What nationality was goya?
+Spanish
+10
+
+What nationality was Hans Christian andersen?
+Danish
+10
+
+What nationality was Heitor Villa-Lobos?
+Brazilian
+10
+
+What nationality was horror film actor Boris Karloff?
+English
+10
+
+What nationality was johnny weismuller?
+Romanian
+10
+
+What nationality was King Cnut of England?
+Danish
+10
+
+What nationality was laszio biro inventer of the ball point pen?
+Hungarian
+10
+
+What nationality was Louis Braille?
+French
+10
+
+What nationality was Marie Curie?
+Polish
+10
+
+What nationality was Mata Hari?
+Javanese
+10
+
+What nationality was motor racing legend Juan Fangio?
+Argentinean
+10
+
+What nationality was naturalist Carolus Linnaeus?
+Swedish
+10
+
+What nationality was pablo picasso?
+Spanish
+10
+
+What nationality was pocohontas?
+American Indian
+10
+
+What nationality was prince albert?
+German
+10
+
+What nationality was Prince Henry the Navigator?
+Portuguese
+10
+
+What nationality was rembrandt?
+Dutch
+10
+
+What nationality was teiichi igarashi?
+Japanese
+10
+
+What nationality was the ancient general called hannibal?
+Carthaginian
+10
+
+What nationality was the architect Le Corbusier?
+Swiss
+10
+
+what nationality was the artist goya?
+Spanish
+10
+
+What nationality was the artist Hieronymus Bosch?
+Dutch
+10
+
+What nationality was the artist james whistler?
+American
+10
+
+What nationality was the artist Magritte?
+Belgian
+10
+
+What nationality was the artist Whistler?
+American
+10
+
+What nationality was the athlete Emil Zatopek?
+Czechoslavakian
+10
+
+What nationality was the composer Delius?
+British
+10
+
+What nationality was the entertainer victor borges?
+Danish
+10
+
+What nationality was the explorer Vitus Bering?
+Danish
+10
+
+What nationality was the famous murderer Dr. Crippen?
+American
+10
+
+What nationality was the farmer's daughter (tv or movie version)?
+Swedish
+10
+
+What nationality was the first person who walked in space?
+Russian
+10
+
+What nationality was the last person executed by guillotine?
+Tunisian
+10
+
+What nationality was the person who ordered the killing of the last incan king of peru?
+Spanish
+10
+
+What nationality was the person who ordered the killing of the last incan?
+King 
+10
+
+What nationality was the playwright August Strindberg?
+Swedish
+10
+
+What nationality was the ponderosa's cook?
+Chinese
+10
+
+What nationality was the sculpture Brancusi?
+Romanian
+10
+
+What nationality was the statesman Chiang Kai-shek?
+Chinese
+10
+
+What nationality was the team that beat the British to the South Pole by four days?
+Norwegian
+10
+
+What nationality was Vasco da Gama?
+Portuguese
+10
+
+What nationality were the 123 people who died in the Black Hole of Calcutta?
+British
+10
+
+What nationality were the 1500 troops that attacked the Bay of Pigs?
+Cuban
+10
+
+What nationality were wilde and shaw?
+Irish
+10
+
+What nationally recognized day originated in Grafton, WV, in 1908?
+Mother's day
+10
+
+What Native American boat was used by the early explorers on narrow rivers?
+The canoe
+10
+
+What native bird appears on the great seal of the united states?
+American bald eagle
+10
+
+What native language did the USA use as a code in WWII?
+Navajo
+10
+
+What natural disasters are ranked in severity by the Saffir Simpson scale?
+Hurricanes
+10
+
+What natural hydrocarbon polymer comes from the hevea brasiliensis tree?
+Rubber
+10
+
+What natural landscape has almost disappeared from the prairie state of illinois?
+Prairie
+10
+
+What natural materials are tussah and habutai types of?
+Silk
+10
+
+What natural phenomenon is Iris the goddess of?
+Rainbow
+10
+
+What natural product is petrol refined from?
+Oil
+10
+
+What naval movie starred steven seagal, tommy lee jones and gary busey?
+Under seige
+10
+
+What naval rank did Only Fools and Horses ncle Albert attain?
+Stoker
+10
+
+What nba player is the all time points scored leader for the Boston Celtics?
+John havlicek
+10
+
+What nba team chose Dominique Wilkins as their first round draft pick?
+Utah jazz
+10
+
+What nba team plays home games at the Delta Center?
+Utah jazz
+10
+
+What nba team plays its home games in the corestates center?
+76ers
+10
+
+What neatly stacked snack food features a man with a handlebar moustache on its can?
+Pringles
+10
+
+What neck of water do you cross when sailing from Malaga to Tangier?
+Strait of gibralta
+10
+
+What necktie knot was named for an English Duke who abdicated this throne for Wallis Simpson?
+Windsor
+10
+
+What neighbouring country did Iraq go to war with in 1980?
+Iran
+10
+
+What nerve carries signals from the retina to the brain?
+Optic nerve
+10
+
+What new deal agency is represented by nlrb?
+National labor relations board
+10
+
+What new England state doesn't border the atlantic?
+Vermont
+10
+
+What New England state is the fitting site for the town of Teaticket?
+Massachusetts
+10
+
+What new England state would be home if you laid down roots in 'bald head'?
+Maine
+10
+
+What new England state would be home if you laid down roots in 'bald?
+Head' 
+10
+
+What new European country shares the name of a greek provience?
+Macedonia
+10
+
+What new form of art was pioneered by WH Fox Talbot in the 1840's?
+Photography
+10
+
+What new gadget was Mark Twain referring to when he was quoted as saying 'a curiosity-breeding little joker'?
+The Typewriter
+10
+
+What new territory was created in Canada in 1999?
+Nunavut
+10
+
+What new title was macbeth greeted with after returning from a victorious war?
+Thane of cawdor
+10
+
+What new wavers' first north American hit was 1979's roxanne?
+The police
+10
+
+What new world Indian empire built pyramids in guatemala?
+Maya
+10
+
+What new world mammal did columbus say resembled mermaids?
+The manatee
+10
+
+What New York based baseball team did Emmett Kelly serve as the hobo mascot?
+Brooklyn dodgers
+10
+
+What New York City's restaurant is alluded to in many stories by Damon Runyon?
+Lindy's
+10
+
+What New York street is famous for its theatres?
+Broadway
+10
+
+What New York thoroughfare is known as 'millionaires' row'?
+Fifth avenue
+10
+
+What new zealand native invented bungee jumping?
+Aj hackett
+10
+
+What news anchor attended reagan high school?
+Dan rather
+10
+
+What news magazine did Henry Luce and Briton Hadden found?
+Time
+10
+
+What newspaper's motto is 'all the news that's fit to print'?
+The New York times
+10
+
+What nfl quarterback made richard nixon's white house enemies list?
+Joe namath
+10
+
+What NFL team did Vince Lombardi end his coaching career with?
+The Washington Redskins
+10
+
+What nfl team lost a record 26 consecutive games?
+Tampa bay buccaneers
+10
+
+What NFL team plays its home games in 3Com Park?
+49ers
+10
+
+What NFL team plays its home games in the RCA Dome?
+Indianapolis
+10
+
+What nfl team was formerly known as the portsmouth spartans?
+Detroit
+10
+
+What nhl hockey player was sports illustrated's 'sportsman of the year' for 1970?
+Bobby orr
+10
+
+What nhl star was known as the roadrunner?
+Yvan cournoyer
+10
+
+What nhl star was known as the thinking man's goalie?
+Ken dryden
+10
+
+What nhl team won 28 consecutive games in the 1977-78 hockey season?
+Montreal canadiens
+10
+
+What nickname did albert desalvo acquire?
+Boston strangler
+10
+
+What nickname did Charles Dickens give to his character John Dawkins?
+The artful dodger
+10
+
+What nickname did Imelda Marcos share with a heavey metal rock group?
+Iron butterfly
+10
+
+What nickname did president john f kennedy give to air force one?
+Caroline
+10
+
+What nickname is given to the clubhouse bar on a golf course?
+The 19th hole
+10
+
+What nickname is given to the spectators who follow pro golfer Arnold Palmer around the golf course?
+Arnie's Army
+10
+
+What nickname is given to the spectators who follow pro golfer Lee Trevino around the golf course?
+Lee's Fleas
+10
+
+What nickname was given to the day when over ?100 billion was wiped off the value of shares in the city of London?
+Black monday
+10
+
+What nickname was legally added to the full name of boxer Marvin Hagler?
+Marvelo
+10
+
+What night did whigfiels sing about?
+Saturday night
+10
+
+What nocturnal bird is traditionally believed to be wise?
+Owl
+10
+
+What non mechanical sport achieves the highest speeds?
+Skydiving
+10
+
+What non-alcoholic syrup is made from pomegranate juice?
+Grenadine
+10
+
+What non-human company did Thoe Heyerdahl have on the Kon_Tiki?
+Parrot
+10
+
+What non-surgical instrument do physicians use to explore bodily internals?
+Endoscope
+10
+
+What non-working, stingless bee mates with the queen?
+A drone
+10
+
+What nonconformist group did london's daily express call 'the new barbarians' in 1958?
+Beatniks
+10
+
+What Norse explorer introduced Christianity to Greenland around 1000 A.D?
+Leif ericsson
+10
+
+What north african country contains the largest area of the sahara?
+Algeria
+10
+
+What north American Indian peoples' name meant 'the ancient ones'?
+Anasazi
+10
+
+What North American river was discovered by Sir Alexander Mackenzie?
+Mackenzie
+10
+
+What northeastern european country's capital is tallinn?
+Estonia
+10
+
+What northern country Helsinki the capital of?
+Finland
+10
+
+What northern England suspension bridge has a central span of 1410 metres?
+Humber bridge
+10
+
+What northern nation's geyser heated soil allows it to grow bananas?
+Iceland's
+10
+
+What not so hep disease had its virus finally identified in 1984?
+Hepatitis
+10
+
+What notable band did Vinnie Lopez play for?
+The East Street Band
+10
+
+What note has a time value of two crotchets?
+Minim
+10
+
+What note is placed on the centre line of a treble clef?
+B
+10
+
+What note sounds at 261.6 hertz?
+Middle c
+10
+
+What nuclear disaster greatly increased the relevance of the china syndrom?
+Three mile island
+10
+
+What nuclear process takes place in an H-Bomb?
+Fusion
+10
+
+What number American president is george W bush?
+43rd
+10
+
+What number can't be written in roman numerals?
+Zero
+10
+
+What number cant be represented in Roman numerals?
+Zero
+10
+
+What number did Adolf Hitler believe possessed supernatural powers?
+Seven
+10
+
+What number did Levi Strauss affix to the first pair of jeans sold?
+501
+10
+
+What number did Mickey Mantle Wear?
+7
+10
+
+What number do the roman numerals MDXCV represent?
+1595
+10
+
+What number does 'a gross and a half' represent?
+216
+10
+
+What number does a heart denote on a Moroccan bank note?
+Five
+10
+
+What number does Chris Webber wear?
+4
+10
+
+What number does the Roman numeral C represent?
+100
+10
+
+What number does VII mean in roman numerals?
+Seven
+10
+
+What number does Vince Carter wear?
+15
+10
+
+What number is at 12 o'clock on a darboard?
+Twenty
+10
+
+What number is at 12 o'clock on a dart board?
+20
+10
+
+What number is at 6 o'clock on a dart board?
+Three
+10
+
+What number is at the top of a dice if four is at the bottom?
+Three
+10
+
+What number is on the opposite side of the 'five' on dice?
+Two
+10
+
+What number is represented in morse code by five dashes?
+Zero
+10
+
+What number is represented in Morse code by five dots?
+Five
+10
+
+What number is signified by the prefix mega'?
+One million
+10
+
+What number lies between 1 & 5 on a dart board?
+Twenty
+10
+
+What number on the Richter scale, does an earthquake have to reach to be considered major?
+Seven
+10
+
+What number results if you add the number of Commandments to the faces of a regular icosahedron?
+Thirty
+10
+
+What number stays the same when you square it or cube it?
+One
+10
+
+What number when increased by 10%, the result of which is decreased by 10% gives you 99?
+One hundred
+10
+
+What numbers can be found on the back of the U S $5 dollar bill in the bushes at the base of the Lincoln Memorial?
+172
+10
+
+What numbers does the binary system use?
+One and zero
+10
+
+What numeber does allen iverson wear?
+3
+10
+
+What numerical computer language doesn't have pointer or recursion?
+Fortran
+10
+
+What nursery rhyme character sang for his supper?
+Little tommy tucker
+10
+
+What nursery rhyme character slept in the mountains for 20years?
+Rip van winkle
+10
+
+What nursery rhyme character was arachnaphobic?
+Little miss muffet
+10
+
+What nut is used in the manufacture of dynamite?
+Peanut
+10
+
+What nutrient is required by the body in order to build up muscles?
+Protein
+10
+
+What nuts are used in the production of dynamite?
+Peanuts
+10
+
+What oath begins: I swear by Apollo?
+The hippcratic oath
+10
+
+What oath do doctors take?
+Hippocratic
+10
+
+What object is said to bring bad luck if it is broken?
+Mirror
+10
+
+What object is usually attached to a life jacket?
+Whistle
+10
+
+What object,later named Eureka was found by children in the dust at Hopetown in South Africa?
+Countrys first diamond
+10
+
+What occupation did David Jason, Lech Walesa and Ricky Tomlinson all once have in common?
+Electrician
+10
+
+What ocean contains the cape verde basin?
+Atlantic
+10
+
+What ocean current moderates the weather in north-western europe?
+Gulf stream
+10
+
+What ocean does mauritania border?
+Atlantic
+10
+
+What ocean does the Gulf of Panama lead into?
+Pacific
+10
+
+What ocean does the Zambezi River empty into?
+Indian
+10
+
+What ocean fills nearly a complete hemisphere of the earth's surface?
+Pacific ocean
+10
+
+What Ocean is 64,186,000 square miles?
+Pacific
+10
+
+What ocean is almost exactly half the size of the Pacific?
+Atlantic
+10
+
+What ocean is Mauritius in?
+Indian
+10
+
+What ocean is only a 12th of the size of the Pacific?
+Arctic
+10
+
+What ocean is the Malay Sea considered part of?
+Pacific
+10
+
+What ocean is zero degrees longitude, zero degrees latitude, found in?
+Atlantic
+10
+
+What ocean lies to the north of Alaska?
+Arctic ocean
+10
+
+What ocean liner became a hotel in California?
+Queen mary
+10
+
+What ocean liner burned and sunk in Hong Kong harbour?
+The queen elizabeth
+10
+
+What ocean liner was christened on sept 20, 1967, at clydebank, Scotland?
+Queen elizabeth ii
+10
+
+What ocean separates North America from Europe?
+Atlantic
+10
+
+What ocean surrounds Pitcairn Island?
+Pacific
+10
+
+What ocean surrounds the Madeira Islands?
+Atlantic
+10
+
+What ocean surrounds the sargasso sea?
+Atlantic
+10
+
+What ocean's area is 64,186,000 square miles?
+Pacific ocean
+10
+
+What office supply item does dilbert count?
+Staples
+10
+
+What officer of king pharoah bought joseph as a slave?
+Potiphar
+10
+
+What official residence is home to the worlds first golliwog?
+Chequers
+10
+
+What oil does the flax plant produce?
+Linseed oil
+10
+
+What oil is used on 'bruschetta'?
+Olive oil
+10
+
+What oil tycoon left more then one billion dollars when he died in 1976?
+J Paul getty
+10
+
+What old communist country is closest to the us?
+Ussr
+10
+
+What old London asylum's name became an English word meaning a scene of uproar?
+Bedlam
+10
+
+What Olympic aquatic event includes such positions as the flamingo, crane & fishtail?
+Synchronized swimming
+10
+
+What on a cat are its vibrissae?
+Whiskers
+10
+
+What once accidentally popped out when Kenneth Kendall was reading the news?
+One of his teeth
+10
+
+What one metallic element could critically harm superman?
+Kryptonite
+10
+
+What one type of cattle produces more than eighty percent of the UK's milk?
+Friesian
+10
+
+What ONE word fits____hood; ____hole; ____date
+Man
+10
+
+What ONE word fits____stream; ____hill; ____pour
+Down
+10
+
+What one word makes sense when it precedes age, class and east?
+Middle
+10
+
+What one word makes sense when it precedes top, drive and rock?
+Hard
+10
+
+What one word may be added to news, carbon and wall?
+Paper
+10
+
+What operatic heroine kills herself on her fathers sword?
+Madame butterfly
+10
+
+What operating system in used on an ibm as400?
+Os400
+10
+
+What operation did thai men receive free of charge in 1987?
+Vasectomy
+10
+
+What or where is Europa?
+One of jupiters moons
+10
+
+What orchestral piece did Sibelius write as a patriotic tribute to his homeland?
+Finlandia
+10
+
+What order of columns support the Parthenon in Athens?
+Doric
+10
+
+What order of insects contains the most species?
+Beetles
+10
+
+What ore is aluminium made of?
+Bauxite
+10
+
+What organ contains the smallest bones?
+Ear
+10
+
+What organ did Aristotle think the blood cooled?
+Brain
+10
+
+What organ endured its first us transplant in 1954?
+Kidney
+10
+
+What organ of the body is particularly affected by hepatitis?
+Liver
+10
+
+What organ will most often suffer permanent damage if you have amoebic dysentery?
+The liver
+10
+
+What organic compound does the chemical formula 'C_12H_22_O11' represent?
+Sucrose
+10
+
+What organic compound does the chemical formula 'C_6H_12_O6' represent?
+Glucose
+10
+
+What organic gem is a deep red secretion from a marine animal?
+Coral
+10
+
+What organisation did illya kuryakin work for?
+Uncle
+10
+
+What organisation did mr waverly assign agents for?
+Uncle
+10
+
+What organization appreciates a gift of erythrocytes?
+Red cross
+10
+
+What organization did benjamin chavis take over as head in 1993?
+Naacp
+10
+
+What organization did rod stewart donate all his royalties from do ya think i'm sexy? to?
+Unicef
+10
+
+What organization fought ecological battles from its flagship, Rainbow Warrior?
+Greenpeace
+10
+
+What organization was given the only nobel peace price awarded during world war i?
+The red cross
+10
+
+What organization was given the only Nobel peace price awarded during WW I?
+International red cross
+10
+
+What organization was the forerunner to the cia?
+Office of strategic services
+10
+
+What organization's launch was FDR preparing to attend when he died?
+The united nations
+10
+
+What organs does Silicosis affect?
+The lungs
+10
+
+What original member of nbc's saturday night live crew once wrote for mad magazine?
+Chevy chase
+10
+
+What original monopoly property is known in france as avenue des champs elysees?
+Park place
+10
+
+What originates from the dalmatian coast?
+Dalmatians
+10
+
+What Orville and Wilbur Wrights achievement in 1903?
+First power driven flight
+10
+
+What OS is primarily used in banks and ATMs only?
+Os/2
+10
+
+What os was originally called dr-dos?
+Opendos
+10
+
+What Oscar Wilde character possessed a supernatural picture?
+Dorian gray
+10
+
+What other animal, beside a human, can stand on its head?
+The Asian Elephant
+10
+
+What other common name is given to a rook in chess?
+Castle
+10
+
+What other element besides hydrogen does water contain?
+Oxygen
+10
+
+What other name did prince namor of atlantis go by?
+The sub-mariner
+10
+
+What other relative of travolta's made a cameo in saturday night fever?
+His sister
+10
+
+What other word describes The Young Cannibals?
+Fine
+10
+
+What ottawa Indian tribal chief led an uprising against the British?
+Pontiac
+10
+
+What outdoor sport does 'love' mean a score of zero in?
+Tennis
+10
+
+What outfit merged with Time Warner in 1996 to form the world's largest entertainment company?
+Turner broadcasting systems
+10
+
+What outweighs the world's humans 10-1?
+Termites
+10
+
+What oval shaped organ near the stomach purify's blood?
+Spleen
+10
+
+What pachydermic nickname is given to an unwanted or useless gift which is expensive to maintain?
+White elephant
+10
+
+What pacific atoll has been the site of numerous french nuclear tests?
+Muraroa atoll
+10
+
+What pacific country's capital overlooks pegasus bay?
+New zealand
+10
+
+What pacific island is Noumea the capital of?
+New caledonia
+10
+
+What painting depicts the sister & the dentist of artist Grant Wood as rural farm folk?
+American gothic
+10
+
+What painting medium was mastered by the victorians?
+Watercolour
+10
+
+What painting movement was conceived by pablo picasso and georges braque?
+Cubism
+10
+
+What palace is found on the site of james i's mulberry orchard?
+Buckingham
+10
+
+What palace was build by the sun king ,louis xiv in the previous century?
+Versailles
+10
+
+What paper is used to test acid and alkali?
+Litmus
+10
+
+What paris restaurant is at 3 rue royal?
+Maxim's
+10
+
+What parker brothers game can be bought in 23 languages?
+Monopoly
+10
+
+What part did ray bolger play in the wizard of oz?
+Scarecrow
+10
+
+What part of a bathroom tap most often needs to be replaced?
+Washer
+10
+
+What part of a camera clicks when a photograph is taken?
+Shutter
+10
+
+What part of a chicken is the 'parson's nose'?
+Rump
+10
+
+What part of a face, according to research, do infants like most to look at?
+Eyes
+10
+
+What part of a horse would you look at to determine its age?
+Teeth
+10
+
+What part of a human takes about 6 months to grow from base to tip?
+Nails
+10
+
+What part of a knight's armour was a basinet?
+Helmet
+10
+
+What part of a Persian king's attire has been adapted for use by women as evening wear?
+Tiara
+10
+
+What part of a person's body must be clutched to feel the 'biceps'?
+Upper arm
+10
+
+What part of a womans body grows during sex?
+Breasts
+10
+
+What part of Britain is St. David the patron saint of?
+Wales
+10
+
+What part of David Livingstone is buried in Africa?
+His heart
+10
+
+What part of europe did the normans leave to invade England in 1066?
+Normandy
+10
+
+What part of highland dress is a filiberg?
+Kilt
+10
+
+What part of Lenins body was found to be a quarter if its normal size?
+His brain
+10
+
+What part of New York City was called broken land by the Dutch?
+Brooklyn
+10
+
+What part of the body does a chiropodist treat?
+Feet
+10
+
+What part of the body does a cytologist study?
+Cells
+10
+
+What part of the body does a neuro-surgeon specialise in?
+Nervous system
+10
+
+What part of the body does arthritis particularly affect?
+The bone joints
+10
+
+What part of the body does lacrimal fluid lubricate?
+Eyes
+10
+
+What part of the body goes to sleep when you experience taresthesia?
+Foot
+10
+
+What part of the body has a crown, a neck & a root?
+Tooth
+10
+
+What part of the body has a thin drum like membrane stretched across a tube?
+Ear
+10
+
+What part of the body is a busby worn on?
+Head
+10
+
+What part of the body is affected by conjunctivitis?
+The eye
+10
+
+What part of the body is affected by rhinitis?
+Nose
+10
+
+What part of the body is also the name of a punctuation mark?
+Colon
+10
+
+What part of the body is inflamed by hepatitis?
+Liver
+10
+
+What part of the body is inflamed in hepatitus?
+Liver
+10
+
+What part of the body is particularly affected by pneumonia?
+Lungs
+10
+
+What part of the body was protected by a hauberk in medieval armour?
+Neck & shoulders
+10
+
+What part of the eye continues to grow throughout a person's life?
+Lens
+10
+
+What part of the eye is affected by cataracts?
+Lens
+10
+
+What part of the polar bear is highly intoxicating to eskimos?
+Liver
+10
+
+What part of the world did sir ernest shackleton explore most?
+Antarctica
+10
+
+What part of you is an orthodontist most interested in?
+Teeth
+10
+
+What part of you is probably type a, b, ab or o?
+Blood
+10
+
+What part of your body can have a gastric ulcer?
+Your stomach
+10
+
+What part of your body contains vertebrae?
+Your spine
+10
+
+What part of your body hurts when you have mumps?
+Throat
+10
+
+What part of your body is elastic, waterproof, washable & fits you very well?
+Skin
+10
+
+What part was played by Patrick Newell in the series The Avengers?
+Mother
+10
+
+What parts of a building does a glazier instal?
+Windows
+10
+
+What parts of a car have drums & shoes?
+Brakes
+10
+
+What parts of people's bodies contain their femurs?
+Legs
+10
+
+What parts of the rhubarb plant are poisonous?
+Leaves
+10
+
+What passenger train once ran between london and edinburgh?
+Flying scotsman
+10
+
+What pasta gets its name from the Italian word for tongue?
+Linguini
+10
+
+What pastry is uded to make eclairs?
+Choux
+10
+
+What pastry is used to make eclairs?
+Choux
+10
+
+What Patsy Cline song put LeAnn Rimes in the limelight?
+Blue
+10
+
+What peace treaty ended WWI?
+Treaty of versailles
+10
+
+What peanuts character clings to a security blanket?
+Linus
+10
+
+What peanuts character has a brother named spike?
+Snoopy
+10
+
+What peninsula do Spain and Portugal share?
+Iberian
+10
+
+What peninsula does denmark occupy?
+Jutland
+10
+
+What peninsula does Mexico occupy?
+Yucatan peninsula
+10
+
+What peninsula is occupied by Norway & Sweden?
+Scandinavian
+10
+
+What people first used fountain pens?
+Ancient egyptians
+10
+
+What people were the first to use the rounded arch?
+Romans
+10
+
+What percent of adults believe that during the next century evidence will be discovered that shows other life in this or other galaxies?
+68%
+10
+
+What percent of caffeine must be removed from coffee to be labeled as 'decaffeinated'?
+97 percent
+10
+
+What percent of the world's water is potable (drinkable)?
+One percent
+10
+
+What percent of ticket sales did arthur rubenstein demand from concerts?
+Seventy
+10
+
+What percentage of a peanut is fat?
+47
+10
+
+What percentage of British homes have gardens?
+80%
+10
+
+What percentage of Earth's circumference does the Great Wall span?
+Ten
+10
+
+What percentage of eligible voters voted in the 1988 u.s. presidential election?
+50
+10
+
+What percentage of melon is water?
+95%
+10
+
+What percentage of people are left-handed?
+Seventeen percent
+10
+
+What percentage of the Earth's crust is salty?
+Ninety two
+10
+
+What percentage of the earth's surface is land, approximately?
+Thirty percent
+10
+
+What percentage of the solar system mass is concentrated in the sun?
+99%
+10
+
+What percentage of your weight is water 30, 50 or 70 percent?
+70
+10
+
+What period is the age of fish?
+Devonian
+10
+
+What peter sellers movie did ringo starr appear in?
+Magic christian
+10
+
+What peter shaffer play is about a boy who blinds six horses?
+Equus
+10
+
+What pets did lyndon johnson have?
+Beagles
+10
+
+What phase of moon precedes a full moon?
+Gibbous
+10
+
+What phenomenon is caused by the gravitational attraction of the moon?
+Tides
+10
+
+What philadelphia phillie often chewed 30 pieces of bubble gum per game?
+John kruk
+10
+
+What philippine volcano erupted in 1991?
+Mt pinatubo
+10
+
+What philosopher bears a breakfast item of the same name?
+Francis bacon
+10
+
+What philosophy is associated with jean Paul sartre?
+Existentialism
+10
+
+What phone model did bell introduce for bedroom conversationalists?
+Princess phone
+10
+
+What photographic device was invented by edwin land in 1947?
+Polaroid camera
+10
+
+What phrase did the nazi adopt in the 1920s to label their new order?
+The third reich
+10
+
+What phrase is another way of saying covered in bruises?
+Black and blue
+10
+
+What phrase is associated with the happy face?
+Have a nice day
+10
+
+What phrase meaning 'replacement or backup,' comes from the middle ages when an archer always carried an extra string in case the one on his bow broke?
+Second string
+10
+
+What physical activity comes naturally to most animals but has to be taught to humans?
+Swimming
+10
+
+What physical disability is also known as nanism?
+The condition of being a dwarf
+10
+
+What physicist is considered the 'father of modern rocketry'?
+Robert goddard
+10
+
+What pianist always wanted you to meet his brother george?
+Liberace
+10
+
+What pictorial record of the Battle of Hastings?
+The bayeux tapestry
+10
+
+What piece of bent wire, invented in 1899 replaced the pin and ribbon?
+Paper clip
+10
+
+What piece of land did France sell to America in 1803?
+Louisiana
+10
+
+What piece of music commemorates military action that took place on 16th May 1943?
+The dam busters
+10
+
+What piece of operatic music accompanies the transformation of a Russian prince into a vengeful insect?
+The flight of the bumble bee
+10
+
+What piece stands to the left or right of a rook at the start of a chess game?
+Knight
+10
+
+What pigment affects the colour of the hair & skin?
+Melanin
+10
+
+What pigment allows humans to see better at night?
+Rhodopsin
+10
+
+What pigment is missing from the skin of human albinos?
+Melanin
+10
+
+What pigment is responsible for the red color in leaves?
+Anthocyanins
+10
+
+What pink floyd album topped all in 1980?
+The wall
+10
+
+What Pink Floyd album was the best-selling album by a British act in the U.S?
+The Wall
+10
+
+What pitcher gave up mcgwire's 70th homer?
+Carl pavano
+10
+
+What pitcher was nicknamed 'oil can'?
+Dennis boyd
+10
+
+What Pittsburgh Penguin star scored his 600th NHL goal on an Empty net?
+Mario Lemieux
+10
+
+What pittsburgh pirate was killed in a 1972 plane crash?
+Clemente
+10
+
+What place in the Yukon is known for its 1300 signposts?
+Watson pass
+10
+
+What place is known as the garden of England?
+Kent
+10
+
+What place on earth gets the most rainfall?
+Kauai
+10
+
+What planet did Alf come from?
+Melmac
+10
+
+What planet did percival lovell discover?
+Pluto
+10
+
+What planet did pioneer 11 take its first close look at on september 1, 1979?
+Saturn
+10
+
+What planet did Star Treks Mr Spock come from?
+Vulcan
+10
+
+What planet did the Mariner space craft explore?
+Venus
+10
+
+What planet did the Thundercats live on?
+Third Earth.
+10
+
+What planet did Viking 1 Land on?
+Mars
+10
+
+What planet does Star trek's Mr. Spock come from?
+Vulcan
+10
+
+What planet does the moon charon orbit?
+Pluto
+10
+
+What planet gave birth to superman?
+Krypton
+10
+
+What planet has a magnetic field 50 times stronger than that of earth?
+Uranus
+10
+
+What planet has a pink sky?
+Mars
+10
+
+What planet has the great red spot?
+Jupiter
+10
+
+What planet has the longest day?
+Venus
+10
+
+What planet has the shortest year?
+Mercury
+10
+
+What planet in the solar system is the largest?
+Jupiter
+10
+
+What planet is best known as both the morning and the evening star?
+Venus
+10
+
+What planet is closest to the sun in the solar system?
+Mercury
+10
+
+What planet is considered the Earth's twin in size and mass?
+Venus
+10
+
+What planet is farthest from the sun in the milky way?
+Pluto
+10
+
+What planet is often referred to as earth's sister planet?
+Venus
+10
+
+What planet is taken over by aliens called overlords in arthur c clarke's novel childhood's end?
+Earth
+10
+
+What planet is the brightest object in the sky, after the Moon and the Sun?
+Venus
+10
+
+What planet is third from the sun?
+Earth
+10
+
+What planet is tv's alf from?
+Melmac
+10
+
+What planet travels around the Sun every 248 years?
+Pluto
+10
+
+What planet was pummeled by pieces of Shoemaker levy 9 in 1994, producing 2000 mile high fireballs?
+Jupiter
+10
+
+What planet was Spock brought back to life on?
+Genesis
+10
+
+What planet's diameter is almost the same as the earth's?
+Venus
+10
+
+What planet's moon was the destination in 2001 a space odyssey?
+Jupiter
+10
+
+What planet's moons include Io, Ganymede and Hades?
+Jupiter
+10
+
+What planet's orbit does Pluto's intersect?
+Neptune
+10
+
+What plant did St. Patrick use to explain the Trinity?
+Shamrock
+10
+
+What plant does a natural vanilla flavouring come from?
+Orchid
+10
+
+What plant family (strictly genus) do azaleas belong to?
+Rhododendron
+10
+
+What plant has been used to relieve migraines?
+Feverfew
+10
+
+What plant has the largest seed?
+Coconut
+10
+
+What plant is least botanically related to coffee?
+Cocoa
+10
+
+What plant is opium derived from?
+The poppy
+10
+
+What plant is revered by the lovers of the stinky rose?
+Garlic
+10
+
+What plant is rum made from?
+Sugar cane
+10
+
+What plant is snuff made from?
+Tobacco
+10
+
+What plant is sometimes referred to as a 'sparrow grass'?
+Asparagus
+10
+
+What plant is the drug digitalis obtained from?
+Foxglove
+10
+
+What plant is the heart drug digitalis obtained from?
+Foxglove
+10
+
+What plant is the Welsh national emblem?
+Leek
+10
+
+What plant maybe 'black', 'green' or 'deadly'?
+Nightshade
+10
+
+What plant provides almost half the world's sugar?
+Sugar beet
+10
+
+What plant takes its name from the Italian for 'Beautiful lady'?
+Belladonna
+10
+
+What plant was used as a model for corinthian columns?
+Acanthus
+10
+
+What plant's bulb can make you cry?
+Onion
+10
+
+What play contains the line 'something is rotten in the state of denmark'?
+Hamlet
+10
+
+What play has recorded more performances than any other in British theatre?
+Mousetrap
+10
+
+What playboy and national lampoon cartoonist put together the book i paint what i see?
+Gahan wilson
+10
+
+What player on a basketball team usually plays the post or pivot position?
+Centre
+10
+
+What player squats an average of 300 times during a doubleheader?
+The catcher
+10
+
+What players silhouette is on the nba logo?
+Jerry west
+10
+
+What poem begins 'twas brillig, and the slithy toves...'?
+Jabberwocky
+10
+
+What poem did Dante write about heaven & hell?
+The Divine Comedy
+10
+
+What poem is recited as the finale to Disney's christmas festivities?
+A visit from st nicholas
+10
+
+What poet won the pulitzer prize 4 times?
+Robert frost
+10
+
+What poet wrote how do i love thee?
+Elizabeth barrett browning
+10
+
+What poetic device did traditional anglo-saxon poetry use most often?
+Alliteration
+10
+
+What point did Scotsman John Napier introduce in a book in 1617?
+Decimal point
+10
+
+What poke hand comprises three of a kind and a pair?
+Full house
+10
+
+What poker hand comprises of a three of a kind and a pair?
+Full house
+10
+
+What pole is colder the South Pole or the North Pole?
+The south pole
+10
+
+What pole is considered the father of modern astronomy?
+Nicolas copernicus
+10
+
+What police force were named in recognition after the statesman Sir Robert Peel who organized the force?
+London Bobbies
+10
+
+What police force worked for mack sennett?
+Keystone kops
+10
+
+What police show featured officers webster, gillis and danko?
+Rookies
+10
+
+What polish composer established piano as a solo instrument free from choral or orchestral influence?
+Chopin
+10
+
+What political conversion did pablo picasso make in 1944?
+Communist
+10
+
+What political figure was reported as having been seen at the home of marilyn monroe on the day of her death?
+Bobby kennedy
+10
+
+What political position did Ronald Reagan hold before becoming President of the United States?
+Governor of California
+10
+
+What Polynesian people inhabit New Zealand?
+Maori
+10
+
+What pop artist designed the cover for the rolling stones' sticky fingers album?
+Andy warhol
+10
+
+What pop group was originally named 'the quarrymen'?
+The Beatles
+10
+
+What pope died 33 days after his election?
+John Paul i
+10
+
+What pops out of a cicadas ovipositor?
+Eggs
+10
+
+What popular American tune was borrowd as the theme in the finale of Dvoraks New World Symphony?
+Yankee doodle
+10
+
+What popular American writer coined the word nerd?
+Doctor seuss
+10
+
+What popular brand named of sugar coated breakfast cereal contained so much iron when introduced in 1977 it could be picked up with a magnet?
+Kellogg's frosted rice cereal
+10
+
+What popular card game originated in Turkey?
+Bridge
+10
+
+What popular catch-phrase of the 70's appeared in Shakespeare's 'Julius Caesar'?
+Right On
+10
+
+What popular dance did the New York musical Runnin Wild introduce in 1923?
+The charleston
+10
+
+What popular pastime was introduced in 1863?
+Roller skating
+10
+
+What popular violin player was born in singapore?
+Vanessa mae
+10
+
+What porno film title was used as a cover for a watergate informer?
+Deep throat
+10
+
+What porno star had the longest penis?
+John Holmes
+10
+
+What port city serves tokyo?
+Yokohama
+10
+
+What port in a computer is refered to as the netbios sharing port?
+139
+10
+
+What port in a computer is refered to as the SOCKS4 Firewall port?
+1080
+10
+
+What port is served by the river Taff?
+Cardiff
+10
+
+What portable device did James Spengler invent in 1907, using a soap box, pillow case, a fan & tape?
+The vacuum cleaner
+10
+
+What portable object is the teleram t-3000?
+Computer
+10
+
+What Portuguese territory will revert to china in 1999?
+Macao
+10
+
+What poseidon adventurer was playboy's playmate of the month for january 1960?
+Stella stevens
+10
+
+What position did babe ruth play when he first entered major league baseball?
+Pitcher
+10
+
+What position did baseball legend cy young play?
+Pitcher
+10
+
+What position did mac davis play in north dallas forty?
+Quarterback
+10
+
+What position do baseball's 'cy young award' winners play?
+Pitcher
+10
+
+What position does a sloth spend its day in?
+Upside down
+10
+
+What position does chris webber play?
+Forward
+10
+
+What position does shaquille o'neal play?
+Center
+10
+
+What position has been held by 266 men, 33 of whom have died violently?
+Pope
+10
+
+What position was held by Javiar Perez de Cuellar in 1991?
+U.N general secretary
+10
+
+What power source did stephen ptacek use to fly the English channel?
+Solar
+10
+
+What precedes: 'and never the twain shall meet'?
+East is east and west is west
+10
+
+What precious metal did alchemists call luna?
+Silver
+10
+
+What precious metal does the U S store in fort knox?
+Gold
+10
+
+What precious stone is a deep red variety of corundum?
+Ruby
+10
+
+What prescription drug is Krusty addicted to?
+Percadine
+10
+
+What present does Herb give Bart in 8F23?
+NRA Membership
+10
+
+What present-day state was purchased by the us in 1819?
+Florida
+10
+
+What president could write Latin with one hand & Greek with the other?
+James garfield
+10
+
+What president ended his career on january 17, 1961?
+Dwight eisenhower
+10
+
+What president had a slave for a mistress?
+Thomas jefferson
+10
+
+What president had red hair?
+Thomas jefferson
+10
+
+What president had solar panels installed on the white house roof?
+Jimmy Carter
+10
+
+What president invented the odometer?
+Thomas jefferson
+10
+
+What president promised a chicken in every pot?
+Herbert hoover
+10
+
+What president was general omar bradley's classmate in 1915 at west point?
+Dwight eisenhower
+10
+
+What president was nicknamed sword of the revolution?
+George Washington
+10
+
+What president's wife saw him elected but died before his inauguration?
+Andrew jackson
+10
+
+What president's youngest child was born when he was 70 years old?
+John tyler
+10
+
+What presidential ticket featured the slogan: get America moving again?
+Carter and mondale
+10
+
+What presidential ticket was dubbed bozo and the pineapple?
+Gerald ford and
+10
+
+What presidents birthday is a national holiday?
+George Washington
+10
+
+What prevented Sir Lancelot finding the Holy Grail?
+Adultery
+10
+
+What primate, from the mountains of Japan, keeps warm in winter by bathing in hot volcanic springs?
+Macaque
+10
+
+What prime-time soap opera debuted as a five-part miniseries in 1978?
+Dallas
+10
+
+What prince lp did wal-mart refuse to stock in may, 1988?
+Love sexy
+10
+
+What principality derives its revenues from casinos instead of taxes?
+Monaco
+10
+
+What principality has the house of grimaldi ruled since the middle ages?
+Monaco
+10
+
+What printer did seiko develop for the 1964 tokyo olympics?
+Dot matrix
+10
+
+What printing system utilizes tiny dots?
+Dot matrix
+10
+
+What prints are used by breeders and trainers to identify dogs?
+Nose prints
+10
+
+What prison is found at princetown?
+Dartmoor
+10
+
+What prison island was off the coast of french guiana?
+Devil's island
+10
+
+What pro athlete did Fortune claim added $10 billion to the U.S. economy, in 1998?
+Michael jordan
+10
+
+What probably caused the craters on the moon?
+Meteors
+10
+
+What process allows plants receiving sunlight to make their own food?
+Photosynthesis
+10
+
+What process did Nicholas Appart develop after discovering that you could preserve fruit in a jar by sealing it and boiling it?
+The canning process
+10
+
+What process does animal hide have to undergo to become leather?
+Tanning
+10
+
+What process forms drumlins, eskers and cirques?
+Glaciation
+10
+
+What process involves the heating of milk to a temperature of about 60 degrees?
+Pasteurisation
+10
+
+What Procol Harem tune was based on the Bach cantata 'Sleepers Awake'?
+A Whiter Shade of Pale
+10
+
+What produce did Molly Malone sell?
+Cockles and mussels
+10
+
+What producer, dubbed king of the nudies, hit it big with vixen in 1968?
+Russ meyer
+10
+
+What produces the natural gas which is New Zealand's contibution to the greenhouse effect?
+Sheep
+10
+
+What product did farfel the dog advertise?
+Nestle's chocolate
+10
+
+What product did Mary Holland advertise for 18 years?
+Oxo
+10
+
+What product first produced in Germany had a formula that combined alcohol, lemon spirits, orange bitters and mint oil?
+Cologne
+10
+
+What product orginally sold as 'the esteemed brain tonic & intellectual beverage'?
+Coca cola
+10
+
+What product was advertised by the first commercial to portray nudity on us televison (1987)?
+Viola brassieres
+10
+
+What product was endorsed by don meredith?
+Lipton tea
+10
+
+What product was endorsed by ella fitzgerald?
+Memorex
+10
+
+What product was endorsed by lorne greene?
+Alpo
+10
+
+What product was the first to use a photograph of a nude woman in its advertisements?
+Woodbury Soap
+10
+
+What product's tv commercial launched lorraine chase's career?
+Campari
+10
+
+What profession was lillian hellman?
+Authoress
+10
+
+What professional sport does junkyard dog star in?
+Wrestling
+10
+
+What prompts Marge to talk about old romances?
+A Novel 
+10
+
+What prophet led the children of israel to the promised land?
+Moses
+10
+
+What protruded from the rocks at the end of the film 'planet of the apes'?
+Statue of liberty
+10
+
+What province of Canada has French as its major language?
+Quebec
+10
+
+What public television show does Troy McClure urge people to sponsor?
+Edward the Penitent 
+10
+
+What Pulitzer prize winning novelist ran for mayor of New York City?
+Norman mailer
+10
+
+What pulitzer prize-winning play dramatized the life of black boxing champ jack johnson?
+The great white hope
+10
+
+What pulitzer-prize winning author wrote sports in America?
+James michener
+10
+
+What punishment was meted out to English poachers in the time of richard the lionheart?
+Castration
+10
+
+What purple flower is the emblem of Scotland?
+The thistle
+10
+
+What purpose did the Bastille serve before it was stormed on July 14th 1789?
+Prison
+10
+
+What purpose does synovial fluid serve in the body?
+Lubricates joints
+10
+
+What queen did edmund spenser dedicate his faerie queene to?
+Elizabeth i
+10
+
+What queen is associated with detective stories?
+Ellery queen
+10
+
+What queen married 2 of her brothers?
+Cleopatra
+10
+
+What r&b group did gary brooker play with before procol harum?
+Paramounts
+10
+
+What race have both al and bobby unser won?
+The indianapolis 500
+10
+
+What race of people suffered an estimated 35 million deaths at the hands of the Mongols?
+Chinese
+10
+
+What race's winner is draped with a blanket of roses?
+Kentucky derby
+10
+
+What racehorse of the 1920s was so hopeless that its name has become a term of derision?
+Drongo
+10
+
+What racing number is Santa's Little Helpers girlfriend?
+Number 8
+10
+
+What racket sport derives its name from the resilience of its ball?
+Squash
+10
+
+What radio sitcom is set in rural Ambridge?
+The archers
+10
+
+What radioactive element is used to power modern heart pacemakers?
+Polonium
+10
+
+What rags to riches film knocked out all competitors to win the 1976 best picture oscar?
+Rocky
+10
+
+What railroad has 97 stops on its 5,799-mile route?
+Trans-siberian railway
+10
+
+What range of hills runs up through Oxfordshire and Buckinghamshire?
+Chilterns
+10
+
+What rare metal melts at 86 degress fahrenheit?
+Gallium
+10
+
+What rare water creature gives its name to a river in Florida?
+Manatee
+10
+
+What ray bradbury novel is named for temperature at which paper catches fire?
+Fahrenheit 451
+10
+
+What reached London in 1665 with catastrophic results?
+Bubonic plague
+10
+
+What record company's top song-writing production team was made up of brian holland, lamont dozier and eddie holland?
+Motown
+10
+
+What record did babe ruth break when he hit 60 homers?
+His own
+10
+
+What record did Beamon break at the 1968 Olympics?
+Long jump
+10
+
+What record did Bill Haley and the Comets release in 1955?
+Rock around the clock
+10
+
+What record does the Khaki Campbell breed of duck hold?
+Egg laying
+10
+
+What record label first captured the Beatles?
+Polydor
+10
+
+What recording innovation was introduced in 1958?
+Stereo
+10
+
+What red fruit is most often eaten in green salads?
+Tomato
+10
+
+What reduction is indicated when a measurement is prefixd by the word pico?
+A million,millionth part
+10
+
+What reference book published in 1852 classified words for the first time according to the ideas that they expressed?
+Rogets thesaurus
+10
+
+What refinement to the wristwatch was patented by John Harwood in 1924?
+Self winding mechanism
+10
+
+What region of China is the Dalai Lama's palace in?
+Tibet
+10
+
+What region of the world did Hernando de Soto explore in the 1500s?
+The American southwest
+10
+
+What relation is superman to supergirl?
+First cousin
+10
+
+What relation is Whitney Houston to Dionne Warwick?
+Niece
+10
+
+What relation to you is your uncle's father?
+Grandfather
+10
+
+What relation was Genghis Khan to Kublai Khan?
+Grandfather
+10
+
+What relation was Louis XV of France to Louis XIV?
+Great grandson
+10
+
+What relation was Queen Victoria to George III?
+Granddaughter
+10
+
+What relation was William the Conqueror to Stephen (1096-1154)?
+Grandfather
+10
+
+What relationship are james arness and peter graves?
+Brothers
+10
+
+What relationship was jesus to john the baptist?
+Cousin
+10
+
+What relative of Genghis Khan let Marco Polo ride elephants on hunting trips?
+Kublai khan
+10
+
+What releases an explosive charge of air that moves at speeds up to 60 mph?
+Cough
+10
+
+What religion are i.r.a members?
+Catholic
+10
+
+What religion celebrates Ramadan?
+Islam
+10
+
+What religion did bob marley belong to?
+Rastafarian
+10
+
+What religion does a 'rabbi' practise?
+Judaism
+10
+
+What religion follows the teachings of the prophet Mohammed?
+Islam
+10
+
+What religion has mosques as its places of worship?
+Islam
+10
+
+What religion is based on the teachings of saffhartha guatama?
+Buddhism
+10
+
+What religion was Queen Mary i of England?
+Catholic
+10
+
+What religion were the Huguenots?
+Protestant
+10
+
+What religious elements is voodoo a mixture of?
+Roman catholicism
+10
+
+What religious figure does a Mariolater venerate?
+The virgin mary
+10
+
+What religious group did brigham young lead to utah?
+Mormons
+10
+
+What religious holiday immediately follows halloween?
+All saints day
+10
+
+What religious movement did joseph smith found?
+Mormonism
+10
+
+What remained at the bottom of pandora's box?
+Hope
+10
+
+What remained closed for 3000 years until Feb 1923?
+Tutankhamuns tomb
+10
+
+What remarkable record was set in 1997 by Jeanne Calment in France?
+Oldest ever person
+10
+
+What remote region of Russia borders China, Kazakhstan & Mongolia?
+Siberia
+10
+
+What repeated word forms the total lyrical content of the Entertainment USA signature tune?
+Oy
+10
+
+What replaced English as the official language of Kenya in 1974?
+Swahili
+10
+
+What represent the body and blood of Christ in the service of Holy Communion?
+Bread and wine
+10
+
+What reptilian feature evolved in feathers?
+Scales
+10
+
+What reptilian feature evolved into feathers?
+Scales
+10
+
+What reptilian movie starred sam neil, laura dern and jeff goldblum?
+Jurassic park
+10
+
+What republic would a Finn reach by paddling due south from Helsinki?
+Estonia
+10
+
+What resin used in varnish is a secretion of the lac insect?
+Shellac
+10
+
+What resource is the Queen of England's salary drawn from?
+The Civil List
+10
+
+What restaurant chain attempts to steal and then buy Flaming Moes from Moe?
+Tipsy McStagger's 
+10
+
+What restaurant chain had served forty five thousand million hamburgers by 1983?
+Mcdonalds
+10
+
+What returned in 1985 that is pictured on the bayeux tapestry?
+Halley's comet
+10
+
+What returns to the night sky every 76 years?
+Halleys comet
+10
+
+What reusable drawing pad notched its 50 millionth sale in 1985?
+Etch-a-sketch
+10
+
+What revolutionary fought with Castro and died in Bolivia?
+Che guevara
+10
+
+What rhino is the world's second largest land mammal?
+White rhino
+10
+
+What rings the globe 23? degrees south of the north pole?
+Arctic circle
+10
+
+What risk player wins tied dice rolls, the attacker or defender?
+Defender
+10
+
+What river are the cities of patna and calcutta on?
+Ganges
+10
+
+What river boasts the worlds largest tidal barrier?
+Thames
+10
+
+What river did francisco de orellano become the first to travel the length of?
+Amazon
+10
+
+What river did John baptize Christ in?
+Jordan
+10
+
+What river divides the Dutch capital of amsterdam in two?
+Amstel
+10
+
+What river does the Budapest Hilton afford a spectacular view of?
+Danube
+10
+
+What river flows between minneapolis and st. Paul?
+Mississippi
+10
+
+What river flows past the temple of karnak?
+Nile
+10
+
+What river flows through Rome?
+Tiber
+10
+
+What river flows through Vienna, Budapest and Belgrade?
+Danube
+10
+
+What river forms at the confluence of the Allegheny & the Monongahela?
+Ohio river
+10
+
+What river had 40 million fish killed by insecticide in 1969?
+Rhine
+10
+
+What river had bodies floatin' in eve of destruction?
+The jordan river
+10
+
+What river in the world is the longest?
+Nile
+10
+
+What river is called 'Old Man River'?
+Mississippi
+10
+
+What river is formed by the confluence of the Paranaiba and Grande rivers?
+Parana
+10
+
+What river is Gateshead on?
+Tyne
+10
+
+What river is Glasgow on?
+Clyde
+10
+
+What river is Hull on?
+Humber
+10
+
+What river is known as China's Sorrow because of its flooding?
+Yellow
+10
+
+What river is nicknamed Old Muddy?
+Mississippi
+10
+
+What river is represented by the blue stripe on the Gambian flag?
+Gambia
+10
+
+What river is spanned by the George Washington Bridge?
+Hudson
+10
+
+What river is the temple of Karnak near?
+The nile
+10
+
+What river joins the white nile at khartoum?
+The blue nile
+10
+
+What river passes through cologne, france?
+Rhine
+10
+
+What river runs through rome, the capital city of Italy?
+Tiber
+10
+
+What river runs through the the Grand Canyon?
+The colorado river
+10
+
+What river snakes through Germany, Austria, Slovakia, Hungary, Serbia, Romania, & Bulgaria?
+The danube
+10
+
+What river tumbles over victoria falls?
+Zambezi
+10
+
+What river was Francisco de Orellano the first to travel the length of?
+Amazon
+10
+
+What river was India named after?
+Indus
+10
+
+What river were the Joan of Arc's remains cast into?
+The seine
+10
+
+What river's cruises originate in aswan, luxor and cairo?
+Nile
+10
+
+What roars in the 'roaring forties'?
+Wind
+10
+
+What Robert Heinlein book title can be found in Exodus 2:22?
+Stranger in a strange land
+10
+
+What robert louis stevenson adventure features the ship called covenant?
+Kidnapped
+10
+
+What rock did graham greene write about?
+Brighton
+10
+
+What rock group uses roman numerals on all of its album covers?
+Chicago
+10
+
+What rock is formed from layers of mud & clay?
+Shale
+10
+
+What rock magazine that came out in the eighties is now Rolling Stone's major competitor?
+Spin
+10
+
+What rock makes the cheapest, softest form of sandpaper?
+Flint
+10
+
+What rock star attended the london school of economics for two years?
+Mick jagger
+10
+
+What rock star joined the cast of general hospital?
+Rick springfield
+10
+
+What rockers asked fans to pick the songs for slippery when wet?
+Bon jovi
+10
+
+What rodent did the Normans bring over to Britain with them?
+Rabbit
+10
+
+What rodent is famous for building dams?
+Beaver
+10
+
+What rodent was banned from Germany by Hitler?
+Mickey mouse
+10
+
+What role did ken osmond play on leave it to beaver?
+Eddie haskell
+10
+
+What role did michael sarrazin play in the tv movie frankenstein?
+Dr victor frankenstein
+10
+
+What role won julie andrews her only oscar?
+Mary poppins
+10
+
+What Roman emperor died in 117 a.d?
+Trajan
+10
+
+What roman emperor does the King of Diamonds represent?
+Julius caesar
+10
+
+What roman emperor made his horse a senator?
+Caligula
+10
+
+What Roman Emporer gave Constantinople its name?
+Constantine
+10
+
+What Roman galley was Judah Ben Hur a slave oarsman on?
+Astrea
+10
+
+What Roman god is January named after?
+Janus
+10
+
+What roman governor tried christ?
+Pontius pilate
+10
+
+What romance novel cover boy began hyping his new perfume mediterraneum?
+Fabio
+10
+
+What Rome ruin is inhabited by hundreds of cats?
+Colosseum
+10
+
+What rome tourist attraction has 138 steps?
+Spanish steps
+10
+
+What room did w c fields keep his library in?
+Bathroom
+10
+
+What root flavours root beer?
+Sarsparilla
+10
+
+What roundball team did abraham m saperstein establish and send on the road in 1928?
+Harlem globetrotters
+10
+
+What route linked Canterbury and Winchester in medieval times?
+Teh pilgrims way
+10
+
+What royal house did Henry viii belong to?
+Tudor
+10
+
+What rum, lime and sugar cocktail is named for a town near santiago, cuba?
+The daiquiri
+10
+
+What runner gets sick and tired of being called Michael Jackson?
+Michael Johnson
+10
+
+What runs up and down on the rolling stones' sticky fingers album cover?
+Zip
+10
+
+What Russian city boasts the Hermitage Museum?
+Leningrad
+10
+
+What Russian city used to be called St Petersburg and Petrograd?
+Leningrad
+10
+
+What Russian city was formerly known as st petersburg, then petrograd, and until 1918 was the capital of the country?
+Leningrad
+10
+
+What Russian city's name translates to 'ruler of the east'?
+Vladivostok
+10
+
+What Russian fighter was most encountered in the skies over korea?
+Mig 15
+10
+
+What Russian spy was exchanged for u-2 pilot francis gary powers in 1962?
+Rudolf abel
+10
+
+What Russian word 'restructuring'?
+Perestroika
+10
+
+What sailor's disease resulted from a deficiency of Vitamin C?
+Scurvy
+10
+
+What saint came to be known as santa claus?
+Saint nicholas
+10
+
+What saint is the huge church in the Vatican named after?
+St peter
+10
+
+What saint offerred jesus a handkerchief?
+St veronica
+10
+
+What saint's day is march 17?
+St. patrick's
+10
+
+What salad vegetable would you be eating if you were having a 'French Breakfast'?
+Radish
+10
+
+What sank in the sea in a single day and night of misfortune, according to Plato?
+Atlantis
+10
+
+What satellite carried the first trans-atlantic tv broadcast?
+Telstar
+10
+
+What satellite series name was Russian for 'fellow traveller'?
+Sputnik
+10
+
+What satellite series' name is Russian for fellow traveler?
+Sputnik
+10
+
+What satellite spawned a hit single?
+Telstar
+10
+
+What sauce is made of cream, eggs, parmesan & bits of bacon?
+Carbonara
+10
+
+What Saudi Arabian king was assassinated by his nephew in 1975?
+Faisal
+10
+
+What saying was engraved on 'the thimble' token of the 1935 Monopoly game?
+For a Good Girl
+10
+
+What scale measures temperature?
+Rankine scale
+10
+
+What scandinavian city is called the white city of the north?
+Helsinki
+10
+
+What scandinavian city was terrorized in the 1962 sci-fi classic reptilicus?
+Copenhagen
+10
+
+What scandinavian country boasts the world's highest per capita rate of borrowing from libraries?
+Denmark
+10
+
+What scandinavian country is europe's biggest shipbuilder?
+Sweden
+10
+
+What scandinavian country owned Iceland from 1262 to 1944?
+Denmark
+10
+
+What scent does Lisa's braces release every so often?
+Obsession for Teeth 
+10
+
+What school did billy bunter attend?
+Greyfriars
+10
+
+What school did helen keller graduate with honors from in 1904?
+Radcliffe college
+10
+
+What school does Harry Potter attend?
+Hogwarts
+10
+
+What school does tom attend in tom brown's school days?
+Rugby
+10
+
+What school is opposite windsor on the thames?
+Eton
+10
+
+What sci-fi novel by William Gibson popularized the word cyberspace?
+Neuromancer
+10
+
+What sci-fi tv show of the 60's became a Filmation cartoon in the 70's?
+Star Trek
+10
+
+What science combines botany and zoology?
+Biology
+10
+
+What science deals specifically with plant and animal life in the sea?
+Marine biology
+10
+
+What science deals with the motion of projectiles?
+Ballistics
+10
+
+What science deals with the origin and structure of the universe?
+Cosmology
+10
+
+What science deals with the structure of the universe and it's origin?
+Cosmology
+10
+
+What science did gregor mendel establish in 1866?
+Genetics
+10
+
+What science is celebrated on mole day, every october 23rd?
+Chemistry
+10
+
+What science studies animals by their droppings?
+Scatology
+10
+
+What science was pioneered by Zygmunt Florenty von Wroblewsky?
+Cryogenics
+10
+
+What scientific field did John Tebbutt excel at?
+Astronomy
+10
+
+What scientist developed the modern theory of evolution?
+Charles darwin
+10
+
+What scientist is credited with the discovery that there are galaxies beyond our milky way?
+Edwin hubble
+10
+
+What score does Sideshow Bob sing to Bart before he is going to kill him?
+The HMS Pinafore
+10
+
+What score is not possible for a cribbage hand?
+Nineteen
+10
+
+What Scottish city does a Glaswegian call home?
+Glasgow
+10
+
+What Scottish city's patron saint is St Mungo?
+Glasgow
+10
+
+What Scottish pirate captained the 284 ton 34 gun ship adventure gallery?
+Captain william kidd
+10
+
+What sctv character has the same name as a hill street detective?
+Johnny larue
+10
+
+What sculptor is responsible for the kiss?
+Rodin
+10
+
+What sculpture, the most often viewed work at St. Peter's Basilica, is the only one Michelangelo ever signed?
+The Pieta
+10
+
+What sea animal looks like a pin cushion?
+Sea urchin
+10
+
+What sea creature resembles a knight in chess?
+Seahorse
+10
+
+What sea creature squirts water from both holes when alarmed?
+Sea Squirts
+10
+
+What sea did the Romans call mare nostrum?
+Mediterranean
+10
+
+What sea does the Danube river flow into?
+Black sea
+10
+
+What sea fossils can be found in the Himalayas at the height of 18,000 feet?
+Ammonites
+10
+
+What sea is between Australia & the Solomon Islands?
+Coral
+10
+
+What sea is Bombay on?
+Arabian
+10
+
+What sea is situated between vietnam and the philippines?
+South china sea
+10
+
+What sea is south of cuba?
+Caribbean sea
+10
+
+What sea lies between new zealand and Australia?
+Tasman
+10
+
+What sea lies between Riga and Stockholm?
+Baltic
+10
+
+What sea lies to the west of Japan?
+The sea of Japan
+10
+
+What sea separates Europe from North Africa?
+Mediterranean Sea
+10
+
+What sea seperates Naples and Algiers?
+Mediterranean
+10
+
+What sea sparkles between Asia Minor and Greece?
+Aegean
+10
+
+What sea surrounds the Cayman Islands?
+Caribbean
+10
+
+What sea would you cross to travel from shanghai to korea?
+Yellow sea
+10
+
+What seagulls have played at Wembley?
+Brighton
+10
+
+What seaport's name was Spanish for 'white house' until being renamed?
+Casablanca
+10
+
+What season begins with the vernal equinox?
+Spring
+10
+
+What season is hail most prevalent in?
+Summer
+10
+
+What season is it in Australia when it is summer in England?
+Winter
+10
+
+What season is it in Australia when santa claus drops in?
+Summer
+10
+
+What season is statistically the most hazardous?
+Summer
+10
+
+What season is the setting for shakespeare's a midsummer nights dream?
+Spring
+10
+
+What season should you head to the pond to look for tadpoles?
+Spring
+10
+
+What seasoning is mentioned more than 30 times in the bible?
+Salt
+10
+
+What second division side defeated Manchester United in the 1975 F A Cup Final?
+Southampton
+10
+
+What second world war airplane was named ?the wooden wonder?
+Dehavilland mosquito
+10
+
+What section of manhattan is noted for its negro and latin American residents?
+Harlem
+10
+
+What section of paris featured most prominently in the work of the french impressionists?
+Montmartre
+10
+
+What seductive WW I spy had a daughter named Banda who was also a spy?
+Mata hari
+10
+
+What seed takes five years to yield consumable fruit?
+Coffee beans
+10
+
+What segment of television receieves the ACE awards?
+Cable
+10
+
+What sense does a dying person lose first?
+Sight
+10
+
+What sense is most closely linked to memory?
+Smell
+10
+
+What separates the gulf of California from the pacific ocean?
+The baja peninsula
+10
+
+What sequence is this the start of: 1 2 3 4 5 6 7?
+Natural numbers
+10
+
+What sequence is this the start of: 1 2 4 8 16 32 64?
+Power of 2
+10
+
+What sequence is this the start of: 1 2 6 24 120 720 5040?
+Factorials
+10
+
+What sequence is this the start of: 1 3 12 60 360 2520?
+Even permutations
+10
+
+What sequence is this the start of: 1 4 11 20 31 44 61 100?
+Octal squares
+10
+
+What sequence is this the start of: 2 4 6 8 10 12 14?
+Even numbers
+10
+
+What serial killer was better known as 'son of sam'?
+David berkowitz
+10
+
+What serious umderwater ailment was named after a Victorian notion of chic posture?
+The bends
+10
+
+What served as a cowboy's wash cloth, dust mask & water filter?
+A bandana
+10
+
+What seven man group from camden town became the pop success of 1980?
+Madness
+10
+
+What sex is a filly?
+Female
+10
+
+What sexually transmitted disease caused an epidemic in the 15th century?
+Syphilis
+10
+
+What shadow team driver was killed testing, prior to the 1974 south african grand prix?
+Peter revson
+10
+
+What shakespeare character has the most lines with 1,422?
+Hamlet
+10
+
+What Shakespeare character is it considered bad luck to mention in a theater?
+Macbeth
+10
+
+What Shakespeare play features a character called Puck?
+A midsummer night's dream
+10
+
+What shakespeare play features rosencrantz and guilderstein?
+Hamlet
+10
+
+What Shakespeare play has Portia as the heroine?
+Merchant of venice
+10
+
+What Shakespeare play opens with a storm at sea?
+The tempest
+10
+
+What Shakespeare's play was this line in ... 'A horse! A horse! My kingdom for a horse'?
+Richard III
+10
+
+What shakespearean play featured shylock?
+The merchant of venice
+10
+
+What shakespearean play features iago?
+Othello
+10
+
+What shakespearean play features rosencrantz and guilderstern?
+Hamlet
+10
+
+What shakespearean play features the line 'a plague on both your houses'?
+Romeo and juliet
+10
+
+What shakespearean play is set in the 12th century at the kronborg castle?
+Hamlet
+10
+
+What Shakespearioan play has the main character declaring 'Get thee to a nunnery'?
+Hamlet
+10
+
+What shape are ice crystals?
+Hexagonal
+10
+
+What shape are playing cards in India?
+Round
+10
+
+What shape is a crystal of table salt a cube, oval or sphere?
+Cube
+10
+
+What shape is a goat's pupil?
+Rectangular
+10
+
+What shape is formed by one side of a pyramid?
+Triangle
+10
+
+What shape is something that is cuneiform?
+Wedge shaped
+10
+
+What shape is something that is reniform?
+Kidney shaped
+10
+
+What shape is the head of an Allen key?
+Hexagonal
+10
+
+What shape is the pasta 'fettuccini'?
+Ribbons
+10
+
+What shape is the pasta conciglie?
+Shell-shaped
+10
+
+What shape is the pasta Farfalle?
+Butterfly-shaped
+10
+
+What shape is the set of all points in a plane equidistant from a certain point?
+Circle
+10
+
+What shellfish is traditionally featured in the French dish, Coquilles St. Jacques?
+Scallops
+10
+
+What shepherd god invented the flute?
+Pan
+10
+
+What shepherd god was the legendary inventor of the flute?
+Pan
+10
+
+What sheriff claimed to be walking tall?
+Buford pusser
+10
+
+What ship bears the identification number ncc 1701?
+The starship enterprise
+10
+
+What ship board disease did Captain Cook prevent by taking fresh food and fruit juice?
+Scurvy
+10
+
+What ship did jason sail on?
+Argo
+10
+
+What ship is in permanent dry dock in greenwich?
+Cutty sark
+10
+
+What ship sank off Ireland in 1915?
+The lusitania
+10
+
+What ship sank the battleship Hood?
+Bismarck
+10
+
+What ship sank the British battleship hood?
+The bismarck
+10
+
+What ship was found drifting in 1872, but all the crew had disappeared?
+Marie celeste
+10
+
+What ship was torpedoed and sunk off the coast of Ireland on May 7th 1915?
+Lusitania
+10
+
+What ship, nearly capsized in a storm in 1937, gave passenger Paul gallico the idea for the poseidon adventure?
+The queen mary
+10
+
+What ship's survivors were rescued by the liner Carpathia?
+Titanic
+10
+
+What shoe brand were all 39 members of the Heaven's Gate cult wearing when they committed suicide in 1997?
+Nike
+10
+
+What shoe company has the slogan no slogans?
+Reebok
+10
+
+What shoemaker was an underwriter for rock's 1988 human rights now tour?
+Reebok
+10
+
+What shook San Francisco in 1906?
+Earthquake
+10
+
+What short lived tv western did rod serling produce after twilight zone?
+Loner
+10
+
+What short-lived sitcom featured Snow White and Prince Charming living as husband & wife?
+The Charmings
+10
+
+What short-lived tv series starred ice-cube?
+The watcher
+10
+
+What should a golfer shout as a warning?
+Fore
+10
+
+What should you ask for in the u.s if you want jam?
+Jelly
+10
+
+What should you never leave home without?
+American express
+10
+
+What shouts 'tip me over,pour me out' in a children's song?
+Little teapot
+10
+
+What show did Claire Danes get her start on?
+My So-Called Life
+10
+
+What Show did the Simpsons first appear?
+The Tracy Ullman Show
+10
+
+What show ended with the sound of two hands clapping?
+Laugh in
+10
+
+What show featured Nell Carter as a larger than life housekeeper?
+Gimme a Break
+10
+
+What show has the character mike stivic?
+All in the family
+10
+
+What show starred robert lansing as brigadier general frank savage?
+Twelve o'clock high
+10
+
+What show topped the nielsen ratings for 1992?
+60 minutes
+10
+
+What show topped the nielsen ratings for 1993?
+Home improvement
+10
+
+What show topped the nielsen ratings for 1994?
+Seinfeld
+10
+
+What show was a spin-off of Transformers?
+Go-Bots
+10
+
+What show was Family Matters a spin-off of?
+Perfect Strangers. 
+10
+
+What show was Just the 10 of us spin off of?
+Growing Pains
+10
+
+What show's theme song was 'everybody knows your name'?
+Cheers
+10
+
+What show's theme song was 'Suicide is Painless'?
+Mash
+10
+
+What shrinks on some birds to allow them to carry additional food on long flights?
+Brains
+10
+
+What si the name given to a semi circular recess behind the chancel containing the altar?
+Apse
+10
+
+What side of the brain is responsible for the right hand?
+Left
+10
+
+What side would the wind be coming from on a starboard tack in sailing?
+The right
+10
+
+What sidney sheldon novel included nuns among its main characters?
+Sands of time
+10
+
+What sign is the water carrier the zodiacal symbol for?
+Aquarius
+10
+
+What sign of the zodiac covers November 22nd to December 21st?
+Sagittarius
+10
+
+What silvery liquid metal is used in thermometers?
+Mercury
+10
+
+What simple kitchen utensil is used to get lumps out of flour?
+Sieve
+10
+
+What sinatra hit did he dooby dooby do in?
+Strangers in the night
+10
+
+What singer does Mr. Burns force to perform for Marge?
+Tom Jones 
+10
+
+What singer's February 6th birthday is a national holiday in Jamaica?
+Bob Marley
+10
+
+What singer/actress got her start in a gay bath house in New York?
+Bette midler
+10
+
+What singing group consisted of laverne, maxine and patty?
+Andrews sisters
+10
+
+What singing group felt glad all over?
+The dave clark five
+10
+
+What singing group was once known as the quarrymen?
+Beatles
+10
+
+What single colour is the Libyan flag?
+Green
+10
+
+What single desert contains half the desert surface of the world?
+The sahara
+10
+
+What single name is used by Ian Kilminster of Motorhead?
+Lemmy
+10
+
+What single word connects the Spanish Armada, and the two TV programmes, Danger Man and The Worker?
+Drake
+10
+
+What site staged the original Olympics?
+Olympia
+10
+
+What six-time Olympic champion was known as The Flying Finn?
+Paavo Nurmi
+10
+
+What size does the largest species of Seahorse measure?
+8 Inches
+10
+
+What size of boot is thrown in a welly throwing competition?
+Eight
+10
+
+What size of paper measures 297 x 420mm?
+A3
+10
+
+What size shoes did Clementine wear?
+Nine
+10
+
+What sleepy crooner's first million-seller was a tune called temptation?
+Perry como
+10
+
+What slim volume began a record 161 week stint atop the hardcover fiction best sellar list in 1993?
+The bridges of madison county
+10
+
+What slippery creatures slither to the Sargasso Sea to spawn?
+Eels
+10
+
+What small arctic rodents are said to, but don't, commit suicide in mass plunges into the sea?
+Lemmings
+10
+
+What small fish, often tinned, was named after a Mediterranean island?
+Sardine
+10
+
+What snack food did a University of South Florida engineering professor spend six years studying the crunch of?
+Potato Chips
+10
+
+What snake will roll over and fake a death to confuse its attacker?
+Eastern hognose
+10
+
+What so london casinos do with playing cards at the end of the evening?
+Destroy them
+10
+
+What soap was about the trials and tribulations of a vampire?
+Dark shadows
+10
+
+What social insects are the favourite food of numbats?
+Termites
+10
+
+What society in England, dating from 1617, has it's own degree which allows a person to practice medicine?
+Apothecaries
+10
+
+What soda is known as the un-cola?
+7-up
+10
+
+What soft white sweets can be roasted over a fire?
+Marshmallows
+10
+
+What Somerset town claims the final resting place of the legendary King Arthur?
+Glastonbury
+10
+
+What son of Henry II ascended to the throne in 1199 and was nicknamed Lackland?
+John
+10
+
+What song is dire straits singing about 'that ain't working, that's the way you do it, get your money for nothing, get your ____'
+Chicks for free
+10
+
+What sort of celestial body is Uranus?
+Planet
+10
+
+What sort of coins are traditionally used in two-up?
+Pennies
+10
+
+What sort of drum is the tympanum?
+Eardrum
+10
+
+What sort of garment is a dirndl?
+Skirt
+10
+
+What sort of lenses float on eye fluid?
+Contact lenses
+10
+
+What sort of lines never meet?
+Parallel
+10
+
+What sort of lollies did ronald reagan keep on his desk?
+Jelly beans
+10
+
+What sort of place was Bedlam in 18th century London?
+Lunatic asylum
+10
+
+What sort of ship has a runway on its deck?
+Aircraft carrier
+10
+
+What sort of stone floats on water?
+Pumice
+10
+
+What sort of travel is associated with Cape Canaveral?
+Space travel
+10
+
+What sort of winds lie either side of the doldrums?
+Trade
+10
+
+What sort of writing system did the ancient Egyptians use?
+Hieroglyphics
+10
+
+What sort of writings would you associate with Raphael Holinshed?
+History
+10
+
+What sound made by people can be almost as loud as the noise of a pneumatic drill?
+Snore
+10
+
+What south American capital is the world's highest?
+La paz, bolivia
+10
+
+What South American city does an 82 foot statue of Christ overlook?
+Rio de janeiro
+10
+
+What south American country fittingly named its highest mountain for christopher columbus?
+Colombia
+10
+
+What South American country has the world's highest golf course?
+Peru
+10
+
+What South American country is alphabetically first?
+Argentina
+10
+
+What South American country produces the most coffee?
+Brazil
+10
+
+What South American country takes its name from the latin for silvery?
+Argentina
+10
+
+What South American country took its name from the Inca for 'cold winter'?
+Chile
+10
+
+What South American country took its name from the Latin for silvery?
+Argentina
+10
+
+What South American country uses the same vowel three times in first five letters of its name?
+Uruguay
+10
+
+What South American country was named after Venice?
+Venezuela
+10
+
+What south American leader did pope pius xii excommunicate on june 16, 1955, a month after he ended tax exemptions on church property?
+Juan peron
+10
+
+What South Pacific island country are Viti Levu & Vanua Levu part of?
+Fiji
+10
+
+What South Seas island are you visiting if you land at President Duvalier Airport?
+Haiti
+10
+
+What southern city is now located where fort dallas once stood in 1895?
+Miami
+10
+
+What southern U S state capital is said to have been named for the Western & Atlantic Railroad?
+Atlanta
+10
+
+What southwestern US state hosts an annual festival named after the fire ant?
+Texas
+10
+
+What soviet republic was devastated by an earthquake in 1988?
+Armenia
+10
+
+What space precedes Park Lane on a Monopoly board?
+Chance
+10
+
+What space shuttle did Discovery replace?
+Challenger
+10
+
+What Spanish artists surrelistic paintings feature items such as clock faces?
+Salvador dali
+10
+
+What Spanish city gaves its name to sherry?
+Jerez
+10
+
+What Spanish islands are Gomera, Hierro & Lanzarote a part of?
+Canary islands 
+10
+
+What special talent did molly ringwald have in the breakfast club?
+She could apply lipstick with her breasts
+10
+
+What sport can you play at indonesia's senayan statium?
+Badminton
+10
+
+What sport causes 18,000 facial injuries each year in U.S. kids aged 5 to 14?
+Baseball
+10
+
+What sport considers it a foul to hold an opponent's head under water?
+Water polo
+10
+
+What sport could see six chinamen in a maiden and a nightwatchman with a duck?
+Cricket
+10
+
+What sport did andre agassi's dad compete in?
+Boxing
+10
+
+What sport did Australian Gordon johnson star in?
+Cycling
+10
+
+What sport did burt reynolds play at Florida state university?
+Football
+10
+
+What sport did Edward Greeves play well enough to win the first Brownlow medal in?
+Australian Rules Football
+10
+
+What sport did leo seltzer develop from the dance marathons and walkathons of the 1920s and '30s?
+Roller derby
+10
+
+What sport did Mark Twain describe as 'a good walk spoiled'?
+Golf
+10
+
+What sport did Mr. Moto, Lou Thesz, and Big Daddy Lipscomb star in?
+Professional Wrestling
+10
+
+What sport did Olga Korbut excel at?
+Gymnastics
+10
+
+What sport did Prussias Baron Gottfried von Cramm play at international level?
+Tennis
+10
+
+What sport did the homestead grays and kansas city monarchs play?
+Baseball
+10
+
+What sport did the Philadelphia Atoms and the Dallas Tornado play in the 1970's?
+Football
+10
+
+What sport did two teams of Union Army soldiers play before a crowd of 40,000 at Hilton Head, South Carolina in 1862?
+Baseball
+10
+
+What sport do Americans play on a diamond?
+Baseball
+10
+
+What sport do Fuzzy Zoeller and Kermit Zarley play?
+Golf
+10
+
+What sport do players 'tee off' in?
+Golf
+10
+
+What sport do the competitors play for the Ryder Cup?
+Golf
+10
+
+What sport do the Kansas City monarchs participate in?
+Baseball
+10
+
+What sport do you shag flies in?
+Baseball
+10
+
+What sport do you throw bombs in?
+Football
+10
+
+What sport exercises all the muscles at once?
+Swimming
+10
+
+What sport featured Damn Yankees?
+Baseball
+10
+
+What sport featured Mick McManus and Jackie Pallo?
+Wrestling
+10
+
+What sport features a railroad split?
+Bowling
+10
+
+What sport features sculls, strokes and slides?
+Rowing
+10
+
+What sport features snatches and clean jerks?
+Weightlifting
+10
+
+What sport features the fastest moving ball?
+Jai alai
+10
+
+What sport has 'screwballs', 'bunt' and 'flies'?
+Baseball
+10
+
+What sport has a contest called an 'individual pursuit'?
+Cycling
+10
+
+What sport has you hike out while close hauled?
+Sailing
+10
+
+What sport involves bats & flies?
+Baseball
+10
+
+What sport is associated with the clubs of essendon, hawthorn and collingwood?
+Australian rules football
+10
+
+What sport is believed to have originated on Pentecost Island as an initiation ceremony?
+Bungee jumping
+10
+
+What sport is central to Ernest Hemmingway's Death in the afternoon?
+Bullfighting
+10
+
+What sport is considered the easiest for gamblers to fix?
+Boxing
+10
+
+What sport is Frank Nobilo associated with?
+Golf
+10
+
+What sport is governed by the rules drafted by the Marquis of Queensbury?
+Boxing
+10
+
+What sport is it recommended that you duck the boom in?
+Yachting
+10
+
+What sport is known as 'the grand old game'?
+Baseball
+10
+
+What sport is often called 'ping pong'?
+Table tennis
+10
+
+What sport is played by the cardiff devils?
+Ice hockey
+10
+
+What sport is played in more countries than any other?
+Football
+10
+
+What sport is played on the largest field?
+Polo
+10
+
+What sport is sometimes called rugger?
+Rugby union
+10
+
+What sport is the winner of the Harry Vardon trophy playing?
+Golf
+10
+
+What sport might you shoot a clout in?
+Archery
+10
+
+What sport might you tick-tack or walk the dog in?
+Skateboarding
+10
+
+What sport originated when William Ellis grabbed a Football ball and ran with it in 1823?
+Rugby
+10
+
+What sport penalizes players for spearing, slashing, boarding and butt-ending?
+Ice Hockey
+10
+
+What sport requires stones to be thrown at houses?
+Curling
+10
+
+What sport sees stones thrown at a house?
+Curling
+10
+
+What sport takes place at a regatta?
+Sailing
+10
+
+What sport takes place on the cresta run?
+Tobogganing
+10
+
+What sport the most folks on Sports Magazine's list of the nine highest-paid athletes of 1990?
+Boxing
+10
+
+What sport uses a map & a compass?
+Orienteering
+10
+
+What sport uses barrier stalls?
+Horse racing
+10
+
+What sport uses clowns to protect the competitors?
+Rodeo
+10
+
+What sport uses crampons?
+Mountain climbing
+10
+
+What sport uses plugs and leaders?
+Fishing
+10
+
+What sport uses rubber cushions and slate beds?
+Billiards
+10
+
+What sport uses stumps, bails and bats?
+Cricket
+10
+
+What sport uses the term 'catching a crab'?
+Rowing
+10
+
+What sport was Argentinian, Juan Fangio associated?
+Motor racing
+10
+
+What sport was Boris Onishchenko caught cheating at in the Montreal Olympics?
+Fencing
+10
+
+What sport was created when William Webb Ellis flouted the rules of football in 1823?
+Rugby football
+10
+
+What sport was dominated by rod laver in the 1960's?
+Tennis
+10
+
+What sport was featured in the film Kansas city bomber?
+Roller derby
+10
+
+What sport was featured on the first cover of sports illustrated?
+Baseball
+10
+
+What sport was obligatory for Kennedy males during Hyannis Port weekends?
+Touch football
+10
+
+What sport was observed by Captain James Cook in 1771?
+Surfing
+10
+
+What sport was standardised under the Queensberry rules?
+Boxing
+10
+
+What sport was standardized under the marquise of queensberry rules?
+Boxing
+10
+
+What sport was standardized under the Queensberry Rules?
+Boxing
+10
+
+What sport would you be playing if the score was duece?
+Tennis
+10
+
+What sport would you hear the term 'gorby' mentioned?
+Skiing
+10
+
+What sport would you use a niblick or mashie in?
+Golf
+10
+
+What sport you would tick tack or walk the dog in?
+Skateboarding
+10
+
+What sport's been the subject of the most American movies?
+Boxing
+10
+
+What sport's umpire sat in a padded rocking chair before 1859?
+Baseball
+10
+
+What sporting event first took place in 1903?
+Tour de france
+10
+
+What sporting target has a point total of 1,335?
+Dartboard
+10
+
+What sports stadium has been called the eighth wonder of the world?
+Houston astrodome
+10
+
+What sports team to played professionally on all seven continents?
+Harlem globetrotters
+10
+
+What spy novelist was Moscow correspondent for Reuters & The Times of London?
+Ian fleming
+10
+
+What stage name was adopted by lee yuen kam?
+Bruce lee
+10
+
+What stage of a meal would you eat charlotte?
+Dessert
+10
+
+What stands on the site of New York's old waldorf-astoria hotel?
+Empire state building
+10
+
+What stands on top of the cactus on Mexicos flag?
+Eagle
+10
+
+What star is at the centre of the solar system?
+The sun
+10
+
+What star of the Breakfast Club was also part of the orginal cast of the facts of life?
+Molly Ringwald
+10
+
+What star sign follows aquarius?
+Pisces
+10
+
+What star sign is shared by John Major and Sir David Frost?
+Aries
+10
+
+What star's memphis home was bruce springsteen refused entry to in 1976?
+Elvis presley
+10
+
+What starts the breakdown of food when it is still in the mouth?
+Enzymes
+10
+
+What state boasts the highest peak in the bighorn mountains?
+Wyoming
+10
+
+What state contains the following counties: Creek, Osage, Cherokee, Choctaw, and Seminole?
+Oklahoma
+10
+
+What state contains the most cacti, or cactuses?
+Arizona
+10
+
+What state did sam mccloud come from?
+New Mexico
+10
+
+What state fought more battles in the revoltionary war than any other?
+South carolina
+10
+
+What state full of milk and honey was the destination in the grapes of wrath?
+California
+10
+
+What state has a former pro wrestler as governor?
+Minnesota
+10
+
+What state has the bluebonnet as it's flower?
+Texas
+10
+
+What state has the camellia as the state flower?
+Alabama
+10
+
+What state has the forget-me-not as the state flower?
+Alaska
+10
+
+What state has the golden poppy as the state flower?
+California
+10
+
+What state has the largest area of us forest land within its boundaries?
+Alaska
+10
+
+What state has the most workers employed by the travel & tourism industry?
+California
+10
+
+What state has the scarlet carnation as the state flower?
+Ohio
+10
+
+What state has the yellow hibiscus as the state flower?
+Hawaii
+10
+
+What state is 'the evergreen state'?
+Washington
+10
+
+What state is 'the garden state'?
+New jersey
+10
+
+What state is 'the gopher state'?
+Minnesota
+10
+
+What state is 'the hoosier state'?
+Indiana
+10
+
+What state is considered the vampire capitol of America?
+Rhode island
+10
+
+What state is Devil's Tower located in?
+Wyoming
+10
+
+What state is Disneyland in?
+California
+10
+
+What state is harvard located in?
+Massachusetts
+10
+
+What state is mount mckinley in?
+Alaska
+10
+
+What state is only part of the U S by treaty?
+Texas
+10
+
+What state is only part of the united states by treaty?
+Texas
+10
+
+What state is proud to say it is the largest in the u.s?
+Alaska
+10
+
+What state is the hat creek observatory located in?
+California
+10
+
+What state is the land of Lincoln?
+Illinois
+10
+
+What state is the second largest of the U S?
+Texas
+10
+
+What state officially recognized baked beans as the state food?
+Massachusetts
+10
+
+What state put sam nunn in the senate?
+Georgia
+10
+
+What state was the 48th to join the US?
+Arizona
+10
+
+What state would you be in, if you were in intercourse?
+Pennsylvania
+10
+
+What state's gourmets devour 3.6 cans of Spam per second, double the rate of the rest of the U.S.?
+Hawaii
+10
+
+What statue did dobie gillis mimic while contemplating life and love?
+Rodin's thinker
+10
+
+What statue does Mr. Burns give to the Simpson Family?
+3000-year-old carved head of Xtapolapocetl
+10
+
+What statuette is awarded annually to the best tv commercial?
+Clio
+10
+
+What steve martin film had him go from rags to riches to rags?
+The jerk
+10
+
+What stinky item(s) can prevent your toolbox from rusting?
+Mothballs
+10
+
+What stone is associated with the orient?
+Jade
+10
+
+What stone is used in the manufacture of billiards tables?
+Slate
+10
+
+What stone is used to make snooker tables?
+Slate
+10
+
+What stonecutter number is assigned to Homer?
+908 
+10
+
+What storied European mountain is known in Italy as Monte Cervino?
+The matterhorn
+10
+
+What story features Flopsy,Mopsy and Cottontail?
+Tales of peter rabbit
+10
+
+What strait joins the atlantic ocean to the mediterranean sea?
+Straits of gibraltar
+10
+
+What strait links the Mediterranean Sea and the Atlantic Ocean?
+Strait of gibralter
+10
+
+What street do the Simpsons live on?
+Evergreen Terrace
+10
+
+What street does Milhouse's grandmother live on?
+257th Street 
+10
+
+What street is maple leaf gardens on?
+Carlton st
+10
+
+What strength-testing world championship is held every october in petaluma, California?
+Wrist-wrestling
+10
+
+What stretch of water separates South Yemen and Somalia?
+Gulf of aden
+10
+
+What stretch of water seperates Australia from Tasmania?
+Bass strait
+10
+
+What strikes a bell to make it ring?
+Clapper
+10
+
+What strikes the ball in a game of fives?
+Hand
+10
+
+What strikes the Empire State Building more than 50 times a year?
+Lightning
+10
+
+What stringed weapon fires a bolt?
+A crossbow
+10
+
+What strongman was the original 97 pound weakling?
+Charles atlas
+10
+
+What struck honshu island, Japan in 1934 killing 4,000 people?
+Typhoon
+10
+
+What structure consisting of many blood cells, feeds the foetus during pregnancy?
+Placenta
+10
+
+What structure in the back of the brain governs motor control?
+Cerebellum
+10
+
+What style of architecture is the Empire State Building?
+Art deco
+10
+
+What style of art did al capp call 'a product of the untalented, sold by the unprincipled to the utterly bewildered'?
+Abstract
+10
+
+What style of dancing was popularized with rap music?
+Break Dancing
+10
+
+What style of music was pioneered by jazzmen Charlie Parker and Dizzy Gillespie?
+Be bop
+10
+
+What style were the piano compositions of Scott Joplin?
+Ragtime
+10
+
+What subject did 'mr chips' teach?
+Latin
+10
+
+What subject did critic Mary Whitehouse teach?
+Art
+10
+
+What subject is covered in the mag 'bondage'?
+James bond
+10
+
+What subjects were early islamic artists forbidden to paint?
+Animals and plants
+10
+
+What submarine had logged over 100,000 miles before being refueled in 1958?
+Uss nautilus
+10
+
+What submarine vanished on may 21, 1968?
+The scorpion
+10
+
+What substance are the beds of good snooker tables made from?
+Slate
+10
+
+What substance did Charles Best and Frederick Banting discover in 1922?
+Insulin
+10
+
+What substance did fred macmurray invent in the absent minded professor?
+Flubber
+10
+
+What substance did joseph priestley name for its ability to erase pencil marks?
+Rubber
+10
+
+What substance in wine acts as a preservative and allows for ageing?
+Tannin
+10
+
+What substance is a rhino's horn made of?
+Keratin
+10
+
+What substance is realeased during an allergic reaction?
+Histamine
+10
+
+What substance is used to make soil more productive and help plants grow?
+Fertilizer
+10
+
+What substance must mix with food to give it taste?
+Saliva
+10
+
+What suit is the suicide king?
+Hearts
+10
+
+What sultry 1940's blonde dumped the names Constance Ockelman and Connie Keane?
+Veronica lake
+10
+
+What sunk the luisitania?
+German submarine
+10
+
+What sunken ship did us and french scientists discover in 1985?
+Titanic
+10
+
+What superhero did Lindsay Wagner portray on TV?
+The bionic woman
+10
+
+What supermarkets were founded by Sir John Cohen with the slogan 'Pile it high, sell it cheap'?
+Tesco
+10
+
+What superpowers did batman acquire?
+None
+10
+
+What surface is basketball most frequently played on?
+Asphalt
+10
+
+What surface was a fresco painted on?
+Fresh plaster
+10
+
+What surgical operation was done 115,000 times in us in 1986?
+Silicone breast
+10
+
+What surname do Bobby, John and Teddy have in common?
+Kennedy
+10
+
+What surname links the singers Jim and Van?
+Morrison
+10
+
+What surrey town is famed for its salts?
+Epsom
+10
+
+What sweet fruit grows on certain kinds of palm tress?
+Dates
+10
+
+What swimmer broke 50 records and then became a famous actor?
+Johnny weissmuller
+10
+
+What swimming stroke is named after an insect?
+Butterfly
+10
+
+What swings in a grandfather clock?
+Pendulum
+10
+
+What Swiss town has hosted two winter olympics?
+St. moritz
+10
+
+What symbol appeared in green on white flags flown by U.S. relief ships during the Irish potato famine?
+Shamrock
+10
+
+What symbol appears on the tails of Qantas jets?
+Flying kangaroo
+10
+
+What symbol did artist robert Paul create for hugh hefner?
+Playboy rabbit logo
+10
+
+What symbol indicates the current entry position on a computer screen?
+Cursor
+10
+
+What symbol on the Bacardi symbol is there because the soil where the sugar cane grows is fertile from the excessive guano?
+The bat
+10
+
+What symbolises the election of a new Pope?
+White smoke
+10
+
+What symphony includes a setting of Schillers Ode to Joy?
+Beethovens ninth symphony
+10
+
+What system do the blind use for reading?
+Braille
+10
+
+What system is based on the number 10?
+Decimal
+10
+
+What system is based on the number 60?
+Sexagesimal
+10
+
+What system was introduced in 1967 to deal with the loud hiss on cassettes?
+Dolby
+10
+
+What T.V. Series changed the names to protect the innocent?
+Dragnet
+10
+
+What T.V. show about a bad cop does Homer like to watch?
+McGarnacle 
+10
+
+What t.v. show did john sebastian sing the theme for?
+Welcome back kotter
+10
+
+What tailor was struck blind after looking at the nude lady godiva?
+Peeping tom
+10
+
+What takes a human 17 muscles to do?
+Smile
+10
+
+What takes a human 43 muscles to do?
+Frown
+10
+
+What takes eight minutes to reach Earth?
+Sunlight
+10
+
+What talk show host did fred foy announce for?
+Dick cavett
+10
+
+What talk show hostess gave her guests the fewest opportunities to speak, according to a 1996 msu survey?
+Oprah winfrey
+10
+
+What talking doll introduced in 1960, said 'I'm Hungry', and Will you play with me?
+Chatty Cathy
+10
+
+What tank did German general and tactical mastermind heinz guderian call ?the best tank in the world?
+T-34
+10
+
+What teaching aid is made mainly from soft limestone?
+Chalk
+10
+
+What team did dean smith coach?
+North carolina tar heels
+10
+
+What Team does David Beckham play for?
+Manchester United
+10
+
+What team has won the most nba championships?
+Boston celtics
+10
+
+What team has won the most stanley cup championships?
+Montreal canadiens
+10
+
+What team has won the most stanley cup hockey championships?
+The montreal canadiens
+10
+
+What team sport did Australia win its only gold medal in at the 1908 London Olympics?
+Rugby Union
+10
+
+What team sport's rules were first printed in 1892 in the newspaper of a Springfield, Massachusetts YMCA training school?
+Basketball
+10
+
+What team was called the New York highlanders before 1913?
+The yankees
+10
+
+What team won super bowl vii?
+Miami dolphins
+10
+
+What team won the first national college football championship?
+Yale
+10
+
+What team won the super bowl xii?
+Dallas cowboys
+10
+
+What technique did Patrick Steptoe and Robert Edwards pioneer?
+In vitro fertilization
+10
+
+What technique records and reproduces three-dimmensional images using light from a laser but without the need for cameras or lenses?
+Holography
+10
+
+What telephone company calls itself 'the right choice'?
+At & t
+10
+
+What television character was born july 1, 21 bc in pompeii?
+Jeannie
+10
+
+What television fbi agent received a citation from general william westmoreland for narrating a film on the army reserve?
+Efrem zimbalist jr.
+10
+
+What temperature in kelvin's is absolute zero?
+0
+10
+
+What temperature reads the same in both the Fahrenheit and Celsius scales?
+Minus forty degrees
+10
+
+What ten volume tome did Victor Hugo give the world in 1862?
+Les miserables
+10
+
+What Tennessee town sprang up as key research site of the Manhattan project?
+Oak ridge
+10
+
+What tennessee williams play features blanche dubois and the kowalskis?
+A streetcar named desire
+10
+
+What tennis ball company's logo is 'you've seen one you've seen them all'?
+Penn
+10
+
+What tennis player earned the nickname the Swedish steel?
+Bjorn borg
+10
+
+What tennis star earned the nickname SuperBrat?
+John McEnroe
+10
+
+What tennis star founded the magazine women's sports?
+Billie jean king
+10
+
+What tennis term is said to come from the French word for egg?
+Love
+10
+
+What tennis term is said to come from the french word for eggs?
+Love
+10
+
+What term applies to the aroma of wine?
+Bouquet
+10
+
+What term applies to the consistency, thickness and substance of a wine?
+Body
+10
+
+What term applies to the property of metals that allows them to be drawn out in to a thin wire?
+Ductile
+10
+
+What term can describe a cheap disreputable nightclub, and a style of ragtime piano playing?
+Honky tonk
+10
+
+What term comes from the catholic church practice of appointing someone to give opposing views on a nominee for sainthood?
+Devil's advocate
+10
+
+What term denote the study of flags?
+Vexillology
+10
+
+What term describes a pain in the chest usually caused by lack of oxygen?
+Angina
+10
+
+What term describes an animal with a constant blood temperature?
+Warm-blooded
+10
+
+What term describes energy obtained from underground heat?
+Geothermal
+10
+
+What term describes the study of the behaviour of materials and substances at very low temperatures?
+Cryogenics
+10
+
+What term for a pope was derived from a Latin word meaning bridge builder?
+Pontiff
+10
+
+What term is applied to animals or plants that are not nocturnal?
+Diurnal
+10
+
+What term is applied to rocks changed by heat and pressure?
+Metamorphic
+10
+
+What term is applied to the natural process by which molecules will disperse evenly throughout a particular substance?
+Diffusion
+10
+
+What term is applied to the widow of a king?
+Queen dowager
+10
+
+What term is derived from the practise of clans of long ago wanting to get rid of their unwanted people without killing them so burned their houses down instead?
+Getting fired
+10
+
+What term is given to that part of the Earth which can support life?
+Biosphere
+10
+
+What term is given to the scientific study of all aspects of the life of fungi?
+Mycology
+10
+
+What term is given to the seasonal movement of animals especially birds and fish?
+Migration
+10
+
+What term is used for the speed at which a piece of music is played?
+Tempo
+10
+
+What term is used for the technique of growing plants without soil?
+Hydroponics
+10
+
+What term is used in skittles to describe the knocking down of all the pins with a ball still left to throw?
+A spare
+10
+
+What term is used to describe the mind functioning as the center of thought and behavior?
+Psyche
+10
+
+What term is used to describe the process of extracting poison from snakes?
+Milking
+10
+
+What term is used to describe the warm front of a depression being overtaken by its cold front?
+Occlusion
+10
+
+What term originally meant instruction in all branches of knowledge, or a comprehensive education in a specific subject?
+Encyclopedia
+10
+
+What term was used from 1914 onwards to describe music emanating from New Orleans?
+Jazz
+10
+
+What terrorist group was headed by donald defreeze?
+Symbionese liberation army
+10
+
+What thames river bridge is nearest the tower of london?
+Tower
+10
+
+What the longest word that is typed with the left hand?
+Stewardesses
+10
+
+What the most north eastern state of the contiguous U S?
+Maine
+10
+
+What the the 'L' stand for of author L. Frank Baum?
+Lyman
+10
+
+What theme park are the looney toons associated with?
+Six flags
+10
+
+What theme park is located in buena park, California?
+Knotts berry farm
+10
+
+What theme park opened in 1968 in billund, denmark?
+Legoland
+10
+
+What theory describes the beginning of our universe?
+Big bang
+10
+
+What theory did John T Scopes teach, contrary to Tennessee law in 1925?
+Evolution
+10
+
+What thick metal plate is thrown in the olympics?
+Discus
+10
+
+What thirst quencher was promoted with the line 'Probably the best lager in the world'?
+Carlsberg
+10
+
+What thornton wilder play was made into a movie with music by aaron copland?
+Our town
+10
+
+What three brothers named John, Dick and Ken all represented Australia in Rugby?
+The Thornetts
+10
+
+What three categories are rocks divided, according to their formation?
+Igneous sedimentary metamorphic
+10
+
+What three colours are present in the flag of Bulgaria?
+White, green & red
+10
+
+What three colours make up the Rumanian flag?
+Blue, yellow & red
+10
+
+What three European countries begin with the letter A?
+Albania
+10
+
+What three letter word means 'the front of a ship'?
+Bow
+10
+
+What three letter word means the same as 'to ingest'?
+Eat
+10
+
+What three letters are overly used to indicate 'Laugh Out Loud'?
+Lol
+10
+
+What three numbers divide into nine evenly?
+One, three, nine
+10
+
+What three planets' first three letters spell sun?
+Saturn uranus neptune
+10
+
+What three types of weapons are known in Pentagon-speak as ABC?
+Atomic, biological and chemical
+10
+
+What three words follow Shakespeare's Now is the winter of our discontent?
+Made glorious summer
+10
+
+What three words mean the same as 5,880,000,000,000 miles?
+One light year
+10
+
+What Tibetan mammal lives at a higher altitude than any other in the world?
+Yak
+10
+
+What ticklish item did Susan Hibbard invent in 1876?
+The feather duster
+10
+
+What time do Spanish bullfights start?
+Five pm
+10
+
+What time does dennis rodman have tatooed on his wrist?
+4:20
+10
+
+What time piece has a gnomon in the middle?
+Sundial
+10
+
+What time was it when the mouse ran down the clock?
+One o'clock
+10
+
+What tiny animal, valued for its pale grey fur, lives higher than any other in the andes?
+Chinchilla
+10
+
+What tiny european country lists its currencies as the franc and the peset?
+Andorra
+10
+
+What tiny vessel connects an artery with a vein?
+Capillary
+10
+
+What titan giant's name is also a book of maps?
+Atlas
+10
+
+What titan had snakes for hair?
+Medusa
+10
+
+What title character of a children's book turned his enemies into butter?
+Sambo
+10
+
+What title did Zola give to the letter he wrote to the newspaper L'Aurore in 1898?
+J'accuse
+10
+
+What title is given to the head of state in Brunei?
+Sultan
+10
+
+What title is reserved for the leader of the entire Ku Klux Klan?
+Grand wizard
+10
+
+What title was given to Harold Macmillan on his 90th birthday?
+Earl of stockton
+10
+
+What title was held by the governor of India before independence?
+Viceroy
+10
+
+What toe is the foot reflexology pressure point for the head?
+The big toe
+10
+
+What toiletry was introduced to the United States in 1955?
+Roll-on deodorant
+10
+
+What tokyo street glitters with famed department stores and nightclubs?
+-- Answer metadata begin
+{
+    "answers": ["The ginza", "ginza"]
+}
+-- Answer metadata end
+10
+
+What toll free area code prefix went into service after the supply of 800 numbers began to dwindle?
+888
+10
+
+What tome did Nazis give newlyweds & parents of large families?
+Mein kampf
+10
+
+What took artist Henri de Toulouse-Lautrec's life in 1901?
+Paralytic stroke
+10
+
+What took place on a Chicago squash court in 1941?
+First controlled atomic chain reaction
+10
+
+What took place on a New York State dairy farm belonging to Max Yasgur in 1969?
+Woodstock festival
+10
+
+What took Thomas Jefferson 18 days to write?
+The declaration of independence
+10
+
+What tool gave a puzzle its name?
+Jigsaw
+10
+
+What tools are used to crewel?
+Needles
+10
+
+What tools do you use to crewel?
+Needles
+10
+
+What tourist attraction in rome has 138 steps?
+Spanish steps
+10
+
+What tower was climbed in the Beatles song i am the walrus?
+The eiffel tower
+10
+
+What town did andy taylor and barney fife patrol?
+Mayberry
+10
+
+What town did billy joel call home?
+Long island
+10
+
+What town is the tv show 'gunsmoke' set in?
+Dodge city
+10
+
+What town lies at the opposite end of the Suez Canal to Port Said?
+Suez
+10
+
+What town was featured in z cars?
+Newtown
+10
+
+What town was the site of lady godiva's famous ride?
+Coventry
+10
+
+What towns from Arkansas and Texas did Harold Lloyd Jenkins combine for his country and western stage name?
+Conway twitty
+10
+
+What toxic chemical indiscriminately killed vegetation in the vietnam war?
+Agent orange
+10
+
+What toxin is found in apple seeds?
+Cysnogenic glycoside
+10
+
+What toy company is the world's1 maker of female apparel?
+Mattel
+10
+
+What toy company makes barbie dolls?
+Mattel
+10
+
+What toy is launched on a string and has a tail?
+Kite
+10
+
+What toy was in short supply for the 1983 Chirstmas season?
+Cabbage Patch Kid
+10
+
+What toy was originally made from the bladder of an animal?
+Balloon
+10
+
+What track star was the first woman to receive the Jesse Owens Award, in 1982?
+Mary Decker Slaney
+10
+
+What trade name was given to the phenol-formaldehyde resin developed as the first synthetic plastic in 1909?
+Bakelite
+10
+
+What trade was stated on Al Capone's business cards?
+Used furniture dealer
+10
+
+What traditionally is used under the felt as the bed of a snooker table?
+Slate
+10
+
+What tragedy occurred two years to the day after the federal raid on the branch Davidian complex in Waco?
+Oklahoma city bombing
+10
+
+What translates and executes your program?
+An interpreter
+10
+
+What translates high-level languages into machine language?
+A compiler
+10
+
+What transparent material is produced by heating lime, sand & soda?
+Glass
+10
+
+What trap is a greyhound running from if its in black and white stripes in England and orange in Ireland?
+Trap six
+10
+
+What travels faster than light a laser beam, sound or nothing?
+Nothing
+10
+
+What travels towards earth at between 100 and 1000mph and returns at 87000 mph?
+Lightning
+10
+
+What treaty ended the American revolution?
+Treaty of paris
+10
+
+What treaty saw the end of the American Civil War?
+Treaty of Appomattox
+10
+
+What tree provided the laurel of classical wreaths?
+Bay
+10
+
+What tree was sacred to athena?
+Olive
+10
+
+What tree, other than maple, can be tapped to produce syrup?
+Birch
+10
+
+What trees are commonly found in English churchyards?
+Yew trees
+10
+
+What trees live in wet salty swamps?
+Mangrove
+10
+
+What trees only produce acorns when they are fifty?
+Oak
+10
+
+What tribe did American Indian runner billy mills belong to?
+Sioux
+10
+
+What tribe of American indians lent their name to a punk rock haircut?
+Mohawks
+10
+
+What tribe walked the 'trail of tears'?
+Cherokee
+10
+
+What triple crown-winning horse took the 1973 belmont stakes by 31 lengths?
+Secretariat
+10
+
+What trophy goes to the outstanding us college football player of the year?
+Heisman
+10
+
+What trophy is awarded to the winner of the NHL play-offs?
+The Stanley Cup
+10
+
+What tropic passes through Australia?
+Tropic of capricorn
+10
+
+What tropical disease does an insect of the Anophales genus transmit?
+Malaria
+10
+
+What tropical root is used to flavor soft drinks?
+Ginger
+10
+
+What Turkish city has spread to both sides of the Bosporus Strait?
+Istanbul
+10
+
+What turns blue litmus paper red?
+Acid
+10
+
+What tusked creature helped embellish sailors' tails of Unicorns?
+Narwhal
+10
+
+What tv comedy show's theme song is rastatherian?
+Cosby show
+10
+
+What tv dog had successive masters named jeff, timmy and corey?
+Lassie
+10
+
+What tv movie by rod serling resulted in bomb threats during airing?
+Doomsday flight
+10
+
+What TV musical drama written by Dennis Potter was named after a 1930s song?
+Pennies from heaven
+10
+
+What tv network features programming just for children?
+Nickelodeon
+10
+
+What TV personality did Doritos commercials?
+Jay Leno
+10
+
+What TV role did actress Shirley Booth play?
+Hazel
+10
+
+What tv series did richard widmark star in?
+Madigan
+10
+
+What tv series did stuart whitman star in?
+Cimarron strip
+10
+
+What tv series featured robert shaw as dan tempest?
+Buccaneers
+10
+
+What tv series featured the character 'rusty b company'?
+Rin tin tin
+10
+
+What tv series featured the riddler, the penguin and the joker?
+Batman
+10
+
+What tv series from 1970-1974 starred susan dey?
+Partridge family
+10
+
+What tv series set in newyork stars sarah jessica parker?
+Sex and the city
+10
+
+What tv series was based on the series of books by laura ingalls wilder?
+Little house on the prairie
+10
+
+What tv show dealt with life at the ponderosa?
+Bonanza
+10
+
+What tv show did john lennon and yoko ono co-host in 1972?
+Mike Douglas show
+10
+
+What tv show was hosted by wine nipping culinary artist graham kerr?
+Galloping gourmet
+10
+
+What TV show with married couples and family life appealed to those over the age of 29?
+Thirtysomething
+10
+
+What tv soap star was originally cast as the lead in cleopatra in 1963?
+Joan collins
+10
+
+What tv western star rode a horse named tony?
+Tom mix
+10
+
+What two '80's dance movies did cynthia rhodes have a major role in?
+Dirty dancing and flashdance
+10
+
+What two airlines fly the concorde?
+British airways & air france
+10
+
+What two animals are shown supporting the shield on Australia's coat of arms?
+The Kangaroo & the Emu
+10
+
+What two asian countries went to war on july 7, 1937?
+China and Japan
+10
+
+What two astrological signs begin with the letter a?
+Aquarius & aries
+10
+
+What two baseball players broke roger maris' record of 61 home runs in a season?
+Mark mcgwire sammy sosa
+10
+
+What two body organs benefit from cardiovascular exercise?
+Heart and lungs
+10
+
+What two Canadian provinces don't border salt water?
+Alberta saskatchewan
+10
+
+What two cities in Australia have hosted the olympic games?
+Melbourne & sydney
+10
+
+What two colours are blood cells?
+Red & white
+10
+
+What two colours are most colour blind people unable to distinguish between?
+Red & green
+10
+
+What two colours feature on the flag of peru?
+Red and white
+10
+
+What two commanders directed the forces at the battle of El Alamein?
+Montgomery & rommel
+10
+
+What two countries contain the Sierra Nevada mountains?
+Spain & usa
+10
+
+What two countries do Tyroleans come from?
+Austria and Italy
+10
+
+What two countries is Andorra between?
+France & Spain
+10
+
+What two countries sandwich the Dead Sea?
+Israel & jordan
+10
+
+What two European states enjoy observer status at the United Nations?
+Switzerland and vatican city
+10
+
+What two factors do meteorologists combine to determine the heat index?
+Temperature and humidity
+10
+
+What two flavours make mocha?
+Coffee and chocolate
+10
+
+What two H-elements (named alphabetically) were the first produced by the Big Bang?
+Helium and hydrogen
+10
+
+What two Julies won best actress Oscars for 1964 and 1965?
+Andrews and
+10
+
+What two large veins bring blood back to the heart from the upper and lower body?
+Vena cava
+10
+
+What two letter word is found in the title of four of the Beatles' first eight singles?
+Me
+10
+
+What two materials were the first aeroplance wings made of?
+Cloth & wood
+10
+
+What two metals form the alloy white gold?
+Gold and silver
+10
+
+What two mountain ranges did hannibal and his elephants march through in 218 b.c?
+Pyrenees and alps
+10
+
+What two Olympic events require competitors to travel backwards in order to win?
+Rowing and Backstroke
+10
+
+What two seasons do the equinoxes occur in?
+Spring & autumn
+10
+
+What two south American countries don't border Brazil?
+Chile and ecuador
+10
+
+What two states (named alphabetically) have the magnolia as the state flower?
+Louisiana and Mississippi
+10
+
+What two states are not connected to the main part of U S?
+Hawaii & Alaska
+10
+
+What two states contain the farthest separated points in the U S?
+Florida & hawaii
+10
+
+What two states does death valley span?
+California nevada
+10
+
+What two states in the US do NOT observe daylight saving's time?
+Hawaii and
+10
+
+What two teams were the last co champions in ncaa division 1 a football?
+Colorado & georgia tech
+10
+
+What two time all big eight defensive back at Colorado won three U S Open golf titles?
+Hale irwin
+10
+
+What two types of food do England and America have the names of reversed?
+Biscuits and cookies
+10
+
+What two word term is considered the lowest possible temperature?
+Absolute zero
+10
+
+What two word term was used to describe a cheap unsanitary restaurant?
+Greasy spoon
+10
+
+What two words were merged to create the word 'meld'?
+Melt and weld
+10
+
+What two-person group recorded the song 'love will keep us together'?
+Captain and tennille
+10
+
+What two-word pen-name is used by American etiquette expert Judith Martin?
+Miss Manners
+10
+
+What type if people have an appetite for anthropophagy?
+Cannibals
+10
+
+What type of a punishment did Jon Bon Jovi receive from his dad when he was a teenager?
+Haircuts
+10
+
+What type of accident happened at Chernobyl in the USSR in 1986?
+A nuclear reactor caught fire
+10
+
+What type of aircraft did the red baron fly during world war i?
+Fokker
+10
+
+What type of aircraft is the p39 airacobra built by bell?
+Fighter
+10
+
+What type of airplane did sky king use in sky king?
+Cessna
+10
+
+What type of alcoholic drink is Manzanilla?
+Sherry
+10
+
+What type of animal is 'shardik', in richard adams' novel of the same name?
+A bear
+10
+
+What type of animal is a 'godwit'?
+Bird
+10
+
+What type of animal is a caribou?
+Deer
+10
+
+What type of animal is a dunnock?
+A bird
+10
+
+What type of animal is a ewe?
+Sheep
+10
+
+What type of animal is a wallaby?
+A kangaroo
+10
+
+What type of animal is an 'agama'?
+Lizard
+10
+
+What type of animal is an auklet?
+Bird
+10
+
+What type of animal is an Australian talking about when he refers to a jumbuck?
+Sheep
+10
+
+What type of animal is rikki tikki tavi?
+Mongoose
+10
+
+What type of animal lives in a formicary?
+Ants
+10
+
+What type of animal was drooper on banana splits?
+Lion
+10
+
+What type of animal was Nana the nursemaid in 'Peter Pan'?
+Dog
+10
+
+What type of animal was observed by europeans on what is now groundhog's day in the usa?
+Badger
+10
+
+What type of animal was selected to test the first electric toothbrush?
+The dog
+10
+
+What type of animals would you likely find in the stock market?
+Bulls and Bears
+10
+
+What type of bacteria caused hysteria when it was found in soft cheeses in 1989?
+Listeria
+10
+
+What type of bears are the best swimmers?
+Polar bears
+10
+
+What type of beverage is Tio Pepe?
+Sherry
+10
+
+What type of bird is a 'Beltsville'?
+Turkey
+10
+
+What type of bird is a 'Khaki Campbell'?
+Duck
+10
+
+What type of bird is a lory?
+Parrot
+10
+
+What type of bird is preserved at Lords since being bowled to death in 1936?
+Sparrow
+10
+
+What type of bird is South Africa's aasvogel?
+Vulture
+10
+
+What type of bomb is a Mills bomb?
+Grenade
+10
+
+What type of bomb was invented by Sir Barnes Wallis?
+Bouncing bomb
+10
+
+What type of book is a 'cahier'?
+Note book
+10
+
+What type of building has sails?
+Windmill
+10
+
+What type of building is a bridewell?
+PrisonWho was the oldest singer to have 
+10
+
+What type of bullet was named after an arsenal near calcutta?
+Dum dum
+10
+
+What type of celestial body is andromeda?
+Galaxy
+10
+
+What type of charge do electrons carry?
+Negative
+10
+
+What type of charge does a proton carry?
+Positive
+10
+
+What type of chemical are adrenaline and oestrogen?
+Hormones
+10
+
+What type of clothing is a filibeg?
+Kilt
+10
+
+What type of cloud is a thundercloud?
+Cumulonimbus
+10
+
+What type of clouds are also known as thunderheads?
+Cumulonimbus
+10
+
+What type of clouds exists at the highest elevations?
+Cirrus
+10
+
+What type of craft is the u.s's airforce one?
+Boeing 747
+10
+
+What type of creature is a basilisk?
+Lizard
+10
+
+What type of creature is a coelacanth,once thought to be extinct but which made a come back in 1938?
+A fish
+10
+
+What type of creature is a Fritillary?
+Butterfly
+10
+
+What type of creature is a marlin?
+Fish
+10
+
+What type of creature is a painted lady?
+Butterfly
+10
+
+What type of creature is a pollack?
+Fish
+10
+
+What type of creature is a sidewinder?
+A snake
+10
+
+What type of creature is a Whirligig?
+Water beetle
+10
+
+What type of creature lives in a sett?
+Badger
+10
+
+What type of creature was Dylan in TV's The Magic Roundabout?
+Rabbit
+10
+
+What type of dairy cow produces a distinctive yellowish milk?
+Holstein
+10
+
+What type of dog can be Manchester, Skye or Greenland?
+Terrier
+10
+
+What type of dog has a black/dark purple-colored tongue?
+Chow
+10
+
+What type of drink does Skinner offer Bart in 1F18?
+Diet, Caffeine Free Dr. Pepper
+10
+
+What type of drink is arabica?
+Coffee
+10
+
+What type of drug would be used to treat hay fever?
+Antihistamine
+10
+
+What type of duck is really a fish?
+Bombay duck
+10
+
+What type of ethnic food did Hitler ban in 1933?
+Kosher food
+10
+
+What type of films did Marc Almond once make?
+Pornographic
+10
+
+What type of fish is most commonly caught on hempseed bait?
+Roach
+10
+
+What type of fish of the ocean which is 15ft long and has plumes?
+Rooster Fish
+10
+
+What type of flag is shown to the winner of a Grand Prix motor race?
+Chequered
+10
+
+What type of flower is cransbill?
+Geranium
+10
+
+What type of food is 'Limburger'?
+Cheese
+10
+
+What type of food is tortellini?
+Pasta
+10
+
+What type of fruit is a pineapple?
+Berry
+10
+
+What type of game bird is a capercailzie?
+Grouse
+10
+
+What type of hardware defines the fourth generation of computers?
+Microchips
+10
+
+What type of hits did stan musial lead the national league in eight times?
+Doubles
+10
+
+What type of humorous verse might begin 'there once was a man from nantucket'?
+Limerick
+10
+
+What type of insect performs a waggle dance?
+Hive bee
+10
+
+What type of instrument is a celeste?
+Keyboard
+10
+
+What type of lenses were used by Nero to view the Gladiator Games?
+Emerald coloured lenses
+10
+
+What type of level is used for measuring the angle of a slope?
+Abney
+10
+
+What type of meat usually goes into frankfurters?
+Pork
+10
+
+What type of men did brian and michael sing about?
+Matchstalk men & matchstalk cats & dogs
+10
+
+What type of men's jacket featured it's name on the outer breast pocket,and ePaulets on the shoulders?
+Member's Only
+10
+
+What type of metal is used in the filament of an electric light bulb?
+Tungsten
+10
+
+What type of movie does ucaufo enjoy?
+Science fiction
+10
+
+What type of number describes the ratio of the speed of a plane to the speed of sound?
+Mach
+10
+
+What type of number has no factors other than 1 and itself?
+Prime
+10
+
+What type of occupation did Boy George hold as a teenager?
+Fruit picker
+10
+
+What type of people are members of the NUS?
+Students
+10
+
+What type of person is a fence?
+Someone who recieves stolen goods
+10
+
+What type of personality trait would have if you withdraw from social situations?
+Introvert
+10
+
+What type of plane flew long range to bomb the Falklands?
+Vulcan
+10
+
+What type of plant does Broom Hilda sell?
+Venus nose trap
+10
+
+What type of plant is tequila made from?
+Cactus
+10
+
+What type of pottery is the collingwood ontario area noted for?
+Blue mountain
+10
+
+What type of rock is sandstone?
+Sedimentary
+10
+
+What type of rocks result from the wastage of pre-existing rocks?
+Sedimentary
+10
+
+What type of scientific equipment was named after the German Bunsen?
+Burner
+10
+
+What type of shoes did Run-D.M.C. sing about, which were what most rappers in the early eighties were into?
+Addidas
+10
+
+What type of shoes were favored by skateboarders? (Hint, it's 4 letterslong)?
+Vans
+10
+
+What type of shop first opened in Britain in 1948?
+Supermarket
+10
+
+What type of shorts almost reach your knees?
+Bermuda shorts
+10
+
+What type of show did Charles Cruft establish in the 19th century?
+Dog show
+10
+
+What type of singing does Pavarotti use?
+Baritone
+10
+
+What type of singing was associated with st gregory the great?
+Gregorian chant
+10
+
+What type of snake is the Egyptian asp?
+Cobra
+10
+
+What type of solution is made when a base dissolves in water?
+Alkaline
+10
+
+What type of steel did englishman Harry brearley invent in 1913?
+Stainless
+10
+
+What type of steel did Englishman Harry Brearly invent in 1913?
+Stainless
+10
+
+What type of steel did Harry Brearley invent?
+Stainless
+10
+
+What type of stories does j t edson specialise in?
+Westerns
+10
+
+What type of storm has a central calm area, called the eye, which has winds spiraling inwardly?
+Hurricane
+10
+
+What type of sword was excalibur?
+Long sword
+10
+
+What type of tests were National League umpires ordered to undergo in 1911?
+Eye tests
+10
+
+What type of tree do conkers come from?
+Horse chestnut
+10
+
+What type of tree has a specimen known to be 4,764 years old?
+Bristlecone pine
+10
+
+What type of vehicle was Charles Rolls (Rolls Royce) in when he died?
+Aeroplane
+10
+
+What type of vessel did the Royal Navy first launch in 1901?
+Submarine
+10
+
+What type of water-based phenomenon is formed by an eddy?
+Whirlpool
+10
+
+What type of weapon is a bazooka?
+Hand held rocket launcher
+10
+
+What type of wool is obtained from angora goats?
+Mohair
+10
+
+What types of creatures belong to the order Chelonia?
+Turtle, terrapin and tortoise
+10
+
+What typewriter brand was invented by a man whose father made a well known flintlock rifle?
+Remington
+10
+
+What typist's aid did secretary bette claire graham set up what became a multi-million-dollar company to market in 1956?
+Liquid paper
+10
+
+What U S army general was captured by North Koreans during the Korean war?
+William dean
+10
+
+What U S artillery piece fired the last shot of WWI?
+Calamity jane
+10
+
+What U S city is considered the unofficial capital of the south?
+Atlanta
+10
+
+What U S city is home to the Pentagon?
+Washington
+10
+
+What U S city is named after St Francis of Assisi?
+San francisco
+10
+
+What U S general was known as old blood & guts?
+George s patton jr
+10
+
+What U S highway is the longest, starting in Cape Cod, Massachusetts going through 14 states, & ending in Bishop, California?
+Route 6
+10
+
+What U S national park contains gumbo limbo trail?
+Everglades national park
+10
+
+What U S president was the target of two assassination attempts in 17 days?
+Gerald ford
+10
+
+What U S president wrote 37 books?
+Theodore roosevelt
+10
+
+What U S senator gives out the golden fleece awards?
+William proxmire
+10
+
+What U S spacecraft landed on the planet mars in 1976?
+Viking 2
+10
+
+What U S state borders the most Canadian provinces?
+Montana
+10
+
+What U S state has the smallest population?
+Alaska
+10
+
+What U S state has the worlds champion chili cookoff every year?
+Texas
+10
+
+What U S state includes the telephone area code 317?
+Indiana
+10
+
+What U S state includes the telephone area code 419?
+Ohio
+10
+
+What U S state includes the telephone area code 504?
+Louisiana
+10
+
+What U S state includes the telephone area code 816?
+Missouri
+10
+
+What U S state is the golden state?
+California
+10
+
+What U S state was named for Lord de la Warr, early governor of Virginia?
+Delaware
+10
+
+What U S state was once an independent republic?
+Texas
+10
+
+What u.s president did robert montgomery coach for tv?
+Dwight eisenhower
+10
+
+What u.s president was castigated for picking up his pet beagles by the ears?
+Lyndon johnson
+10
+
+What u.s president's home is located in columbia, tennessee?
+James polk
+10
+
+What u.s secretary of state bought Alaska from Russia for 7.2 million dollars?
+Seward
+10
+
+What u.s state has no telephones in 12% of its households?
+Mississippi
+10
+
+What u.s state has the longest coastline?
+Florida
+10
+
+What u.s state has the most biggest cities?
+Ohio
+10
+
+What U.S. city did Indiana Jones take off from on his adventures in Raiders of the Lost Ark?
+San Francisco
+10
+
+What U.S. city was once know as Federal City?
+Washington, D.C.
+10
+
+What U.S. city's drivers log 142 million miles daily, as far as from Earth to Mars?
+Los Angeles
+10
+
+What u.s. city's state capitol is located 5280 ft. above sea level?
+Denver
+10
+
+What u.s. president did actor robert montgomery coach for tv?
+Dwight eisenhower
+10
+
+What U.S. state boasts the famous Calumet race on horse farms?
+Kentucky
+10
+
+What U.S. state boasts the most car owners?
+California
+10
+
+What u.s. state boasts the world's largest mass of exposed granite?
+Georgia
+10
+
+What U.S. state gave the world Louis Armstrong, Fats Domino, Mahalia Jackson and Jelly Roll Morton (and, dare I say, Britney Spears)?
+Louisiana
+10
+
+What u.s. state has the longest border with Canada?
+Alaska
+10
+
+What U.S. state is completely surrounded by the Pacific Ocean?
+Hawaii
+10
+
+What u.s. state is mount rushmore in?
+South dakota
+10
+
+What u.s. state is mount st helen's in?
+Washington
+10
+
+What u.s. state's ocean shores have yielded the most sunken treasure?
+Florida
+10
+
+What u.s. vice-president said 'some newspapers dispose of their garbage by printing it'?
+Spiro agnew
+10
+
+What uncomely creature inspired sailors tales of mermaids?
+Manatee
+10
+
+What uncomely creature inspired sailors' tales of mermaids?
+The manatee
+10
+
+What underground line is Heathrow Airport on?
+Piccadilly
+10
+
+What underwater explosive missiles are shot from a submarine?
+Torpedoes
+10
+
+What unexpected event stopped play in the FA Cup Final of 1947?
+The ball burst
+10
+
+What unfashionable football team does robbie williams support?
+Port vale
+10
+
+What uniform number was worn by Larry Bird & Kareem Abdul Jabbar?
+Thirty-three
+10
+
+What union did duran duran sing of in 1983?
+Union of the snake
+10
+
+What unit is magnetic field strength measured in?
+Tesla
+10
+
+What unit is used to measure electrical resistance?
+Ohm
+10
+
+What unit of currency is used in Italy?
+Lira
+10
+
+What unit of currency will buy you dinner in Iraq, Jordan and Tunisia?
+Dinar
+10
+
+What unit of currency will buy you dinner in Iraq, Jordan, Tunisia, and Yugoslavia?
+Dinar
+10
+
+What unit of length is equal to ten raised to the negative ten meter?
+Angstrom
+10
+
+What unit of measurement is used to rate the loudness of sound?
+Decibel
+10
+
+What unit of measurement was the distance from the elbow to the tip of the index finger?
+Cubit
+10
+
+What unit of speed is equal to one nautical mile per hour?
+1 knot
+10
+
+What unit of weight measurement derives from the carob seed?
+Carat
+10
+
+What united states president was in office during the civil war?
+Forty three
+10
+
+What units are used to measure the size of pearls?
+Grains
+10
+
+What university did Peyton Manning attend?
+University of tennessee
+10
+
+What university has the fightin 'blue hen' as there mascot?
+University of delaware
+10
+
+What university would you find in the city of Palo Alto in western California?
+Stanford
+10
+
+What unrecognised phenomenon was discovered when Comet aircraft started to fall out of the sky?
+Metal fatigue
+10
+
+What unsightly feature did Abraham Lincoln have on his face?
+Wart
+10
+
+What unusual items used to be temporarily stored in pub cellars?
+Corpses
+10
+
+What us academy is located in colorado springs, colorado?
+Air force
+10
+
+What US academy is located in Kings Point, New York?
+Us merchant
+10
+
+What us city briefly dropped the last letter of its name?
+Pittsburgh
+10
+
+What us city contains a full-scale replica of the ancient parthenon?
+Nashville
+10
+
+What us city has a newspaper called the plain dealer?
+Cleveland
+10
+
+What us city has the most chapels per capita?
+Las vegas
+10
+
+What us city is called the gateway to the west?
+St louis
+10
+
+What US City is known as The River capital of the world?
+Akron
+10
+
+What US city is nicknamed 'The Cradle of Texas Liberty'?
+San antonio
+10
+
+What us city is often called 'the insurance capital of the world'?
+Hartford
+10
+
+What us city skyline boasts the gateway arch?
+St louis
+10
+
+What US city was called The Birthplace of the Skyscraper?
+Chicago
+10
+
+What us city was named after British prime minister william pitt?
+Pittsburgh
+10
+
+What us city was named after st francis of assisi?
+Sanfrancisco
+10
+
+What US city was the capital from 1789 to 1790?
+New York City
+10
+
+What us city's symphony was led for most of the 80's by seiji ozawa?
+Boston
+10
+
+What us general was known as old blood and guts?
+George s patton jr
+10
+
+What US government agency is nicknamed the company?
+Cia
+10
+
+What us national park contains gumbo limbo trail?
+Everglades
+10
+
+What us navy rank is indicated by three stripes?
+Commander
+10
+
+What US president once starred in the movie 'Bedtime for Bonzo'?
+Reagan
+10
+
+What us president served two seperate terms in office?
+Cleveland
+10
+
+What us president was born in New York City?
+Teddy roosevelt
+10
+
+What us president was born july 11, 1767?
+John quincy adams
+10
+
+What us president was born september 15, 1857?
+William taft
+10
+
+What US state are the Aleutian Islands part of?
+Alaska
+10
+
+What us state boasts the most deer?
+Texas
+10
+
+What us state boasts the most gasoline stations?
+California
+10
+
+What us state borders British columbia, alberta, and saskatchewan?
+Montana
+10
+
+What US state borders Montana, S. Dakota, Nebraska, Utah, and Idaho?
+Wyoming
+10
+
+What US state capital comes first alphabetically?
+Albany
+10
+
+What us state contains cape hatteras?
+North carolina
+10
+
+What us state contains our six largest national parks?
+Alaska
+10
+
+What us state does the continental divide leave to enter Canada?
+Montana
+10
+
+What US state doesn't have borders?
+Hawaii
+10
+
+What us state gets the least amount of rainfall?
+Nevada
+10
+
+What us state grants the most fishing licenses?
+California
+10
+
+What US state has lived under six flags?
+Texas
+10
+
+What us state has sagebrush as its state flower?
+Nevada
+10
+
+What us state has the largest cranberry crop?
+Massachusetts
+10
+
+What US state has the longest coastline?
+Alaska
+10
+
+What us state has the most rainfall?
+Hawaii
+10
+
+What us state has the second longest coastline?
+Florida
+10
+
+What US state has the state song 'Home on the Range'?
+Kansas
+10
+
+What US state has the Worlds Champion Chili Cookoff every year?
+Texas
+10
+
+What US state includes the San Juan Islands?
+Washington
+10
+
+What us state includes the telephone area code 501?
+Arkansas
+10
+
+What us state includes the telephone area code 503?
+Oregon
+10
+
+What us state includes the telephone area code 505?
+New Mexico
+10
+
+What us state includes the telephone area code 507?
+Minnesota
+10
+
+What us state includes the telephone area code 508?
+Massachusetts
+10
+
+What us state includes the telephone area code 509?
+Washington
+10
+
+What us state includes the telephone area code 510?
+California
+10
+
+What us state includes the telephone area code 513?
+Ohio
+10
+
+What us state includes the telephone area code 515?
+Iowa
+10
+
+What us state includes the telephone area code 516?
+New york
+10
+
+What us state includes the telephone area code 517?
+Michigan
+10
+
+What us state includes the telephone area code 601?
+Mississippi
+10
+
+What us state includes the telephone area code 602?
+Arizona
+10
+
+What us state includes the telephone area code 603?
+New hampshire
+10
+
+What us state includes the telephone area code 605?
+South dakota
+10
+
+What us state includes the telephone area code 607?
+New york
+10
+
+What us state includes the telephone area code 608?
+Wisconsin
+10
+
+What us state includes the telephone area code 609?
+New jersey
+10
+
+What us state includes the telephone area code 610?
+Pennsylvania
+10
+
+What us state includes the telephone area code 612?
+Minnesota
+10
+
+What us state includes the telephone area code 614?
+Ohio
+10
+
+What us state includes the telephone area code 615?
+Tennessee
+10
+
+What us state includes the telephone area code 701?
+North dakota
+10
+
+What us state includes the telephone area code 702?
+Nevada
+10
+
+What us state includes the telephone area code 703?
+Virginia
+10
+
+What us state includes the telephone area code 704?
+North carolina
+10
+
+What us state includes the telephone area code 706?
+Georgia
+10
+
+What us state includes the telephone area code 707?
+California
+10
+
+What us state includes the telephone area code 708?
+Illinois
+10
+
+What us state includes the telephone area code 712?
+Iowa
+10
+
+What us state includes the telephone area code 713?
+Texas
+10
+
+What us state includes the telephone area code 714?
+California
+10
+
+What us state includes the telephone area code 715?
+Wisconsin
+10
+
+What us state includes the telephone area code 716?
+New york
+10
+
+What us state includes the telephone area code 717?
+Pennsylvania
+10
+
+What us state includes the telephone area code 718?
+New york
+10
+
+What us state includes the telephone area code 719?
+Colorado
+10
+
+What us state includes the telephone area code 801?
+Utah
+10
+
+What us state includes the telephone area code 802?
+Vermont
+10
+
+What us state includes the telephone area code 803?
+South carolina
+10
+
+What us state includes the telephone area code 804?
+Virginia
+10
+
+What us state includes the telephone area code 805?
+California
+10
+
+What us state includes the telephone area code 806?
+Texas
+10
+
+What us state includes the telephone area code 808?
+Hawaii
+10
+
+What us state includes the telephone area code 810?
+Michigan
+10
+
+What us state includes the telephone area code 812?
+Indiana
+10
+
+What us state includes the telephone area code 813?
+Florida
+10
+
+What us state includes the telephone area code 814?
+Pennsylvania
+10
+
+What us state includes the telephone area code 815?
+Illinois
+10
+
+What us state includes the telephone area code 817?
+Texas
+10
+
+What us state includes the telephone area code 818?
+California
+10
+
+What us state includes the telephone area code 901?
+Tennessee
+10
+
+What us state includes the telephone area code 903?
+Texas
+10
+
+What us state includes the telephone area code 904?
+Florida
+10
+
+What us state includes the telephone area code 906?
+Michigan
+10
+
+What us state includes the telephone area code 907?
+Alaska
+10
+
+What us state includes the telephone area code 908?
+New jersey
+10
+
+What us state includes the telephone area code 909?
+California
+10
+
+What us state includes the telephone area code 910?
+North carolina
+10
+
+What us state includes the telephone area code 912?
+Georgia
+10
+
+What us state includes the telephone area code 913?
+Kansas
+10
+
+What us state includes the telephone area code 914?
+New york
+10
+
+What us state includes the telephone area code 915?
+Texas
+10
+
+What us state includes the telephone area code 916?
+California
+10
+
+What us state includes the telephone area code 917?
+New york
+10
+
+What us state includes the telephone area code 918?
+Oklahoma
+10
+
+What us state includes the telephone area code 919?
+North carolina
+10
+
+What US State is bordered by Colorado,Arizona,Nevada and Idaho?
+Utah
+10
+
+What us state is columbia university located in?
+New york
+10
+
+What US state is Disney world in?
+Florida
+10
+
+What us state is free of houseflies?
+Alaska
+10
+
+What US state is George Washington's Mount Vernon in?
+Virginia
+10
+
+What US state is immediately south of Montreal, Canada?
+New York
+10
+
+What us state is known as the 'show me' state?
+Missouri
+10
+
+What US state is nicknamed, is the 'Blue Hen' state?
+Delaware
+10
+
+What us state is northwestern university located in?
+Illinois
+10
+
+What us state is sixth alphabetically?
+Colorado
+10
+
+What us state pays librarians best?
+New york
+10
+
+What US state receives the least sunshine?
+Alaska
+10
+
+What us state records the least rainfall?
+Nevada
+10
+
+What us state song is named for a river within the state?
+Swanee river
+10
+
+What US state was John F Kennedy assassinated in?
+Texas
+10
+
+What us state was named in the late 1500's in honor of queen elizabeth?
+Virginia
+10
+
+What us state's fish is the bluegill?
+Illinois
+10
+
+What US state's flag is the only one that features the Union Jack in its design?
+Hawaii
+10
+
+What us state's marijuana fields were busted most often in 1987?
+Hawaii
+10
+
+What us state's name begins but doesn't end with the letter a?
+Arkansas
+10
+
+What US town was the site of the last battle between Britain and the US?
+New orleans
+10
+
+What US university is located in Ann Arbor?
+Michigan
+10
+
+What us war killed brent and stuart, the tarleton twins?
+Civil war
+10
+
+What used to be thrown away as a useless by-product of crude oil until the gas engine made it useful?
+Gasoline
+10
+
+What useful device was invented and marketed by Charles Moncky?
+The monkey wrench
+10
+
+What Utah city became the 37th in the U S to reach one million in population?
+Salt lake city
+10
+
+What utah site are land speed records set at?
+Bonneville salt flats
+10
+
+What Utah town plays host to the Sundance Film Festival?
+Park city
+10
+
+What utopian community in Florida experienced its first armed robbery in 1998?
+Celebration
+10
+
+What vacation did the Simpsons go on just before Marge went to Rancho Relaxo?
+Mystic Caverns 
+10
+
+What valley boasts the devil's golf course?
+Death valley
+10
+
+What valuable edible fungus grows undergound?
+Truffle
+10
+
+What Van Gogh painting did the Getty Museum pick up after Alan Bond was unable to pay the 53.9 million he agreed to pay Sotheby's?
+Irises
+10
+
+What variety of quartz is amethyst?
+Violet
+10
+
+What vegetable comes last in the dictionary?
+Zucchini
+10
+
+What vegetable did gregor mendel use in his studies?
+Peas
+10
+
+What vegetable did Shelbyvile drink to celebrate their victory over Springfield?
+Turnip Juice 
+10
+
+What vegetable has a name that sounds like a letter of the alphabet?
+Pea
+10
+
+What vegetable is the essential ingredient in borsch?
+Beetroot
+10
+
+What vegetable is the Welsh national emblem?
+Leek
+10
+
+What vegetable is typical of a tap root plant?
+Carrots
+10
+
+What vegetable offers the highest source of calcium?
+Spinach
+10
+
+What vegetable varieties include snowball, white horse, & igloo?
+Cauliflower
+10
+
+What vegetable was the original Jack-O-Lantern?
+A turnip
+10
+
+What vegetable will a chasseur add to your food?
+Mushrooms
+10
+
+What vegetable yields the most pounds of produce per acre?
+Cabbage
+10
+
+What vegetables are sometimes called 'spuds'?
+Potatoes
+10
+
+What vehicles compete in the Tour de France?
+Bicycles
+10
+
+What vehicles take part in the 'tour de france'?
+Bicycles
+10
+
+What Venetian traveler's printed journal did Columbus have a copy of?
+Marco polo's
+10
+
+What verse is the exact center of the Bible?
+Psalm 118:8
+10
+
+What very lightweight wood is often used for rafts & model aeroplanes?
+Balsa
+10
+
+What very rude nickname was given to suede shoes with rubber soles in the 1950s?
+Brothel creepers
+10
+
+What veteran actor plays dominic santini on the adventure series airwolf?
+Ernest borgnine
+10
+
+What veteran of tv commercials died at the advanced age of 17?
+Morris the cat
+10
+
+What Victorian sprinter was disqualified in the 200-metre event at the Montreal Olympics?
+Raelene Boyle
+10
+
+What video game do Homer and Bart play?
+Video Boxing 
+10
+
+What video of n.w.a is/was banned on mtv?
+Straight outta compton
+10
+
+What Viking god is Thursday named after?
+Thor
+10
+
+What village is featured in the archers?
+Ambridge
+10
+
+What viral disease killed 14 million people from 1981 to 1988?
+Measles
+10
+
+What viral skin condition does folklore say is caused by handling toads?
+Warts
+10
+
+What visitors to his home did elvis presley tell: 'look, if you're just going to sit there and stare at me all night, i'm going to bed'?
+The Beatles
+10
+
+What vitamin deficiency causes rickets?
+Vitamin d
+10
+
+What vitamin found in carrots is good for the eyes?
+Vitamin a
+10
+
+What vitamin is also called absorbic acid?
+C
+10
+
+What vitamin is also called ascorbic acid?
+Vitamin c
+10
+
+What vitamin is ascorbic acid?
+C
+10
+
+What vitamin is essential for the production of several factors involved in the blood clotting process?
+K
+10
+
+What vitamin is most commonly added to milk, becasue it is not found in milk naturally?
+Vitamin d
+10
+
+What vitamin is most commonly added to milk, because it is not found in milk naturally?
+Vitamin d
+10
+
+What vitamin is sometimes called the 'sunshine vitamin'>?
+Vitamin d
+10
+
+What vitamin promotes blood clotting?
+K
+10
+
+What vladimir nabokov novel features professor humbert in love with a 12 year old girl?
+Lolita
+10
+
+What volcanic peak can you see from naples?
+Vesuvius
+10
+
+What volcanic peak is visible from naples?
+Mount vesuvius
+10
+
+What volcano destroyed pompeii?
+Mount vesuvius
+10
+
+What vowel do all esperanto nouns end in?
+O
+10
+
+What war began in 1899 with the invasion of natal, and ended in 1902 with the peace of vereeniging?
+Boer war
+10
+
+What war did florence nightingale tend the troops in?
+Crimean war
+10
+
+What war ended when the us and great britain signed the treaty of ghent?
+War of 1812
+10
+
+What war followed 'the shot heard round the world'?
+American revolution
+10
+
+What war involving England began in 1899 and ended in 1902?
+Boer war
+10
+
+What war was fought by the houses of York and Lancaster?
+War of the Roses
+10
+
+What war was rudely interrupted by the bubonic plague?
+The hundred years war
+10
+
+What was 'The Beatles' first film?
+A hard days night
+10
+
+What was 'xanth'?
+Fantasy world
+10
+
+What was 19 oct 1987 otherwise known as in financial circles?
+Black monday
+10
+
+What was 1990's second largest country, measured by land mass?
+China
+10
+
+What was 1990s most populous U S state?
+California
+10
+
+What was a 'lucifer' known as to soldiers during the war period?
+A Wooden Match
+10
+
+What was a big hit for the pipes, drums, and military band of the Royal Scots Dragoon Guards in 1972?
+Amazing grace
+10
+
+What was a bo peep to a 19th century cockney street vendor?
+Sheep
+10
+
+What was a bombard invented in about 1340?
+A cannon
+10
+
+What was a ducat?
+A coin
+10
+
+What was a ducat?
+Coin
+10
+
+What was a junk, invented by the chinese?
+Sailing ship
+10
+
+What was a large cask with a lidded opening, used to hold day's supply of drinking water for a ship's crewmen?
+Scuttlebutt
+10
+
+What was a Lazy day for the Small Faces?
+Sunday
+10
+
+What was a Mae West on a battleship?
+Life jacket
+10
+
+What was a psaltery?
+Musical instrument
+10
+
+What was a reeve in a shire?
+Law
+10
+
+What was a sheriff during feudal rule in England?
+Reeve
+10
+
+What was a sopwith camel?
+First world war fighter plane
+10
+
+What was a symbol of welcome in the 1700's to 1800's and can often be seen on doorknockers today?
+Pineapple
+10
+
+What was a.a. milne's first name?
+Alan
+10
+
+What was Abelard's punishment for his romance with Heloise?
+He was castrated
+10
+
+What was abolished by the English parliament in 1647?
+Christmas
+10
+
+What was abolished in britain in december 1969?
+Hanging
+10
+
+What was abolished in the British empire in 1807?
+Slave trading
+10
+
+What was accomplished for the first time by the Gossamer Albatross in 1979?
+Man powered flight across the channel
+10
+
+What was adam faith's major tv role?
+Budgie
+10
+
+What was adam sandler's occupation in big daddy?
+A tollbooth worker
+10
+
+What was adamski's 1990 hit?
+Killer
+10
+
+What was adolf hitler's religion?
+Roman catholic
+10
+
+What was adopted by the US on 3rd March 1931?
+Star spangled banner
+10
+
+What was advertised in the first interactive British TV ad shown on Ch4 on 26 mar 2000?
+Chicken tonight
+10
+
+What was advertised with the slogan 'Gives a meal man appeal'?
+Oxo
+10
+
+What was al capone finally arrested for?
+Tax evasion
+10
+
+What was al capone's favorite bullet proof car?
+Cadillac
+10
+
+What was al capone's nickname?
+Scarface
+10
+
+What was alan sheppard's ship?
+Freedom seven
+10
+
+What was alanis morissette's first album?
+Jagged little pill
+10
+
+What was Alaska before 1867?
+Russian America
+10
+
+What was albert einstein's favorite musical instrument?
+Piano
+10
+
+What was ALF's girlfriend from Melmac's name?
+Rhonda
+10
+
+What was ALF's real name?
+Gordon Shumway
+10
+
+What was Alfred Hitchcock's nickname in his childhood?
+Cocky
+10
+
+What was All Saints' record label?
+London
+10
+
+What was America's favorite television program in 1988?
+Bill cosby show
+10
+
+What was America's military equivalent of Germany's kubelwagen?
+The jeep
+10
+
+What was an egyptian king called?
+Pharaoh
+10
+
+What was andrew jergens' profession?
+Lumberjack
+10
+
+What was Angel Beast?
+A card game
+10
+
+What was Angela's son's name in Who's the Boss?
+Jonathon
+10
+
+What was Anita Bryant known as because of the product she advertised?
+Coke girl
+10
+
+What was Anna Pavlovas most famous balletic role?
+The dying swan
+10
+
+What was Anne's surname in Anne of Green Gables?
+Shirley
+10
+
+What was another city that the usfl Boston Breakers eventually played in?
+New orleans
+10
+
+What was another name for the Atlantic Penguin which became extinct in 1844?
+Great auk
+10
+
+What was Aristotle Onassis learned middle name?
+Socrates
+10
+
+What was astronaut edwin aldrin's nickname?
+Buzz
+10
+
+What was atomic kittens first uk chart single?
+Right now
+10
+
+What was attacked on december 7, 1941?
+Pearl harbour
+10
+
+What was Attila the Hun doing when he died?
+Having sex
+10
+
+What was attomic kittens first uk chart single?
+Right now
+10
+
+What was austin powers' middle name?
+Danger
+10
+
+What was Australia's Grant Torrens on when he set a world record of 219 kilometres an hour in 1977?
+Water Skis
+10
+
+What was Australia's original name?
+Terra australis incognita
+10
+
+What was awarded to a football player who scored 3 goals in one match?
+Hat
+10
+
+What was B Witched's foreign sounding title?
+C'est la vie
+10
+
+What was balki bartokamus' occupation when he lived in mypos?
+Sheep herder
+10
+
+What was banned in bermuda until 1946?
+Cars
+10
+
+What was banned in England in 1665 in an attempt to stop the spread of the plague?
+Kissing
+10
+
+What was barbara Castle parliamentary constituency?
+Blackburn
+10
+
+What was barbra streisand's first film?
+Funny girl
+10
+
+What was beaver cleaver's first name?
+Theodore
+10
+
+What was Beck's first UK hit?
+Loser
+10
+
+What was benito mussolini also called?
+Il duce
+10
+
+What was betty grable's nickname?
+The legs
+10
+
+What was Betty Rubble's Maiden name?
+Betty Jean Mcbricker
+10
+
+What was BGM's $1500 a day habit?
+Faberge eggs 
+10
+
+What was bill fraser's army game role?
+Snudge
+10
+
+What was billy squier's first band called?
+Sidewinders
+10
+
+What was billy squier's first solo lp called?
+Tale of the tape
+10
+
+What was bjorn borg's nickname?
+Iceborg
+10
+
+What was Blair Peach's profession?
+Teacher
+10
+
+What was bo diddley's real name?
+Ellas mcdaniels
+10
+
+What was bob dylan's real name?
+Robert zimmerman
+10
+
+What was Bob Hopes book Confession of a hooker about?
+Golf
+10
+
+What was boo, maryjane and Mary Warner?
+Marijuana
+10
+
+What was Boyzone's second album?
+A different beat
+10
+
+What was Britains first motorway?
+M6
+10
+
+What was Britains first pirate radio station?
+Radio caroline
+10
+
+What was Britains last French mainland possession?
+Calais
+10
+
+What was britains last territory in latin America?
+Belize
+10
+
+What was British Prime Minister Margaret Thatcher's maiden name?
+Roberts
+10
+
+What was broadcast causing us radio listeners, to flee for their lives fearing an attack by aliens?
+The war of the worlds
+10
+
+What was bruce springsteen's first video?
+Dancing in the dark
+10
+
+What was bruce wayne's heroic identity?
+Batman
+10
+
+What was Bruce Willis' occupation prior to his stardom?
+Bartender
+10
+
+What was buffalo bill cody's real name?
+William frederick cody
+10
+
+What was built on the site of an unsolved London murder?
+Scotland yard
+10
+
+What was Buzz Aldrin's mother's maiden name?
+Moon
+10
+
+What was California's largest cash crop by the mid-1980's?
+Marijuana
+10
+
+What was called the powder keg of europe?
+Balkans
+10
+
+What was called the war to end all wars?
+World war one
+10
+
+What was Canada's first chartered bank?
+Bank of montreal
+10
+
+What was Canada's first national park?
+Banff national park
+10
+
+What was capability brown's real first name?
+Launcelot
+10
+
+What was Capability Browns Christian name?
+Lancelot
+10
+
+What was Capability Browns first given name?
+Lancelot
+10
+
+What was captain ahab's peg leg made of?
+Ivory
+10
+
+What was captain marvel's magic word?
+Shazam
+10
+
+What was Captain Matthew Webb the first to swim across?
+The English Channel
+10
+
+What was casey jones's real name?
+John luther jones
+10
+
+What was Cecil B. De Mille's Middle name?
+Blount
+10
+
+What was Charlemagne also known as?
+Charles the great
+10
+
+What was Charles Blondins claim to fame?
+He crossed niagara falls on a tightrope
+10
+
+What was cheyenne's last name?
+Bodie
+10
+
+What was chim on sheena, queen of the jungle?
+Chimpanzee
+10
+
+What was Christ's zodiacal sign?
+Capricorn
+10
+
+What was Chuck Berry's first #1 hit on BOTH sides of the Atlantic Ocean?
+My ding a ling
+10
+
+What was Cilla Black's real surname before she was married?
+White
+10
+
+What was cinderella's real name?
+Ella
+10
+
+What was Cinderellas first name?
+Ella
+10
+
+What was Citizen Kane's first name?
+Charles
+10
+
+What was Coco Chanels christian name?
+Gabrielle
+10
+
+What was cologne magnate, Coco Chanel's lucky number?
+Five
+10
+
+What was comedienne Grace Allen's nickname for her husband (George Burns)?
+Natty
+10
+
+What was computer pioneer niklaus wirth's nickname at stanford?
+Bucky
+10
+
+What was concealed in Napoleon Solos pen?
+A two way radio
+10
+
+What was considered an aphrodisiac by the ancient greeks?
+Onions
+10
+
+What was Constantinople's name changed to?
+Istanbul
+10
+
+What was constructed to seperate England from Scotland?
+Hadrians wall
+10
+
+What was created by James I in 1606 as a symbolic means of uniting England and Scotland but was disliked by both nations?
+The union jack
+10
+
+What was created by the Manhattan Project?
+Atomic bomb
+10
+
+What was created when James Wright blended boric acid and silicon oil?
+Silly putty
+10
+
+What was crocketts first name on Miami Vice?
+Sonny
+10
+
+What was custer's first name?
+George
+10
+
+What was cyndi laupers dog named?
+Sparkle
+10
+
+What was Daffy Duck's favorite insult?
+You're dispicable!
+10
+
+What was Danny De Vito's occupation prior to his becoming an actor?
+A hairdresser 
+10
+
+What was dave winfield's first mlb team?
+Padres
+10
+
+What was David Bowies first hit?
+Space oddity
+10
+
+What was David Livingstones job?
+Missionary
+10
+
+What was David Miller the first person to be arrested for burning, in 1966?
+Draft card
+10
+
+What was David Shepherd's position before he became Bishop of Liverpool?
+Bishop of woolwich
+10
+
+What was debussy's christian name?
+Claude
+10
+
+What was def leopard's latest album after what happened to the drummer?
+Hysteria
+10
+
+What was defined by law as precisely 4840 square yards in 1305?
+The acre
+10
+
+What was Dennis the Menace's last name?
+Mitchell
+10
+
+What was designed to - carry four adults wearin hats and clogs, along with 50kilos of potatoes?
+Citroen 2cv
+10
+
+What was detective Harry o's surname?
+Orwell
+10
+
+What was Dirt Harry's last name?
+Callahan
+10
+
+What was discovered at Sutter's Mill, California in 1848?
+Gold
+10
+
+What was discovered by the chance contamination of a dish at St Marys Hospital in 1928?
+Penicillin
+10
+
+What was discovered first codeine or aspirin?
+Codeine
+10
+
+What was discovered in the northern tip of Vancover Island in 1835?
+Coal
+10
+
+What was doc holiday's trade?
+Dentist
+10
+
+What was Donald Fagen's first solo album title (1982)?
+The Nightfly
+10
+
+What was doris lessing's first novel?
+The grass is singing
+10
+
+What was dorothy's aunt's name in the wizard of oz?
+Aunt em
+10
+
+What was Dorothy's last name in 'The Wizard of Oz'?
+Gale
+10
+
+What was dr kildare's first name?
+James
+10
+
+What was dr. livingstone's first name?
+David
+10
+
+What was Dr. Zhivago's first name?
+Yuri
+10
+
+What was duke ellington's real name?
+Edward kennedy
+10
+
+What was Dusty Springfield's first No. 1 hit?
+You don't have to say you love me
+10
+
+What was E.T.'s favorite candy?
+Recee's Pieces
+10
+
+What was Early Bird?
+First commercial satellite
+10
+
+What was el cid's nationality?
+Spanish
+10
+
+What was elton john referring to when he asked: 'what happened here?'?
+John lennon's death
+10
+
+What was Elton John's father's job?
+Royal air force pilot
+10
+
+What was Elton John's first label record?
+Dick james music
+10
+
+What was Elvis Presley's home town?
+Tupelo
+10
+
+What was elvis presley's twin brother's first name?
+Garon
+10
+
+What was Elvis Presleys real name?
+Elvis presley
+10
+
+What was Elvis Presleys sport in Kid Galahad?
+Boxing
+10
+
+What was elvis' first big hit song?
+Heartbreak hotel
+10
+
+What was elvis' last top ten single?
+Burning love
+10
+
+What was ended at the 11th hour of the 11th day of the 11th month?
+WW I
+10
+
+What was Enrico Carusos claim to fame?
+Singing
+10
+
+What was erich segal's sequel to love story?
+Oliver's story
+10
+
+What was Ethel Cain the first to record?
+The speaking clock
+10
+
+What was ethiopia formerly known as?
+Abyssinia
+10
+
+What was exchanged in fair exchange?
+Teenage daughters
+10
+
+What was extracted through the nasal passages of dead pharaohs?
+Brain
+10
+
+What was Field Marshall Montgomerys first name?
+Bernard
+10
+
+What was first advertised on the back of a match cover?
+Beer
+10
+
+What was first aired in the US on sept 13 1969?
+Scooby-doo where are you!
+10
+
+What was first marketed as gayetty's medicated paper?
+Toilet paper
+10
+
+What was first opened in 1922 by national department stores in saint louis?
+Shopping mall
+10
+
+What was first played at ballarrat gold fields, Australia in 1853?
+Australian rules football
+10
+
+What was first recorded in 240 bc, and returns every 76 years?
+Halley's comet
+10
+
+What was first seen on British television in 1982?
+Channel 4
+10
+
+What was first sold at the 1904 St Louis worlds fair?
+Ice cream cones
+10
+
+What was first used as a medical treatment in 2700 bc by Chinese emperor Shen Nung?
+Acupuncture
+10
+
+What was first used as an anaesthetic at St Bartholomews Hospital in 1847?
+Chloroform
+10
+
+What was flip wilson's California license plate?
+Killer
+10
+
+What was formerly called the Christian Revival Association and the East London Christian Mission?
+Salvation army
+10
+
+What was found buried at Sutton Hoo in 1939?
+Saxon Ship
+10
+
+What was frances gumm's screen name?
+Judy garland
+10
+
+What was francine lawrence's nickname?
+Gidget
+10
+
+What was frankensteins first name?
+Viktor
+10
+
+What was Fred Astaire's real name?
+Frederick austerlitz
+10
+
+What was gainsborough's first name?
+Thomas
+10
+
+What was gangster Charles floyd's nickname?
+Pretty boy
+10
+
+What was Gary Gnu's catch phrase?
+No Gnus is Good Gnus
+10
+
+What was gary puckett's backup band?
+Union gap
+10
+
+What was General Electric engineer James Wright really trying to create when he made silly putty?
+Synthetic rubber
+10
+
+What was george custer's horses' name?
+Commanche
+10
+
+What was George Hepplewhite's profession?
+Furniture maker
+10
+
+What was george lazenby's only bond film?
+On her majesty's secret service
+10
+
+What was George of the Jungle always running in to?
+A tree
+10
+
+What was George Washington's favorite horse's name?
+Lexington
+10
+
+What was given on the seventh day of Christmas?
+Seven swans a swimming
+10
+
+What was glen campbell's theme song?
+Gentle on my mind
+10
+
+What was Goebbels' role when he served under Hitler during WWll?
+Minister for propaganda
+10
+
+What was goofy's original name?
+Dippy dawg
+10
+
+What was great archaeological find was found near xi-an in march 1974?
+Terracotta army
+10
+
+What was H.G. Wells' first novel?
+The time machine
+10
+
+What was hank aaron's jersey number?
+Forty four
+10
+
+What was Harry nilsson's biggest hit?
+Without you
+10
+
+What was held in the Crystal Palace in 1851?
+The great exhibition
+10
+
+What was hemingway's tough romantic anti-war novel?
+A farewell to arms
+10
+
+What was herbert khaury's nickname?
+Tiny tim
+10
+
+What was hg well's first novel?
+Time machine
+10
+
+What was Hilary Clinton's maiden name?
+Rodham
+10
+
+What was hitler's plan for the invasion of England?
+Operation sea lion
+10
+
+What was horatio nelson's most famous ship?
+Victory
+10
+
+What was howdy doody's sister's name?
+Heidi doody
+10
+
+What was hoyt wilhelm's best pitch?
+Knuckleball
+10
+
+What was Huddie Ledbetter's professional name?
+Leadbelly
+10
+
+What was Hungarian inventor Rubik's first name?
+Erno
+10
+
+What was in catherine's crucifix in the movie cruel intentions?
+Cocaine
+10
+
+What was in the sandwich in the 1983 hit 'down under'?
+Vegemite
+10
+
+What was installed in the London Zoo in 1925 to cheer up the animals?
+Electric Lights
+10
+
+What was introduced to our roads in 1967 to make motoring safer?
+Breath test
+10
+
+What was introduced to supermarkets in 1974?
+Bar codes
+10
+
+What was invented after a researcher walked by a radar tube & a chocolate bar melted in his pocket?
+Microwave
+10
+
+What was invented after a researcher walked by a radar tube and a chocolate bar melted in his pocket?
+Microwave oven
+10
+
+What was invented by a Swiss guy who was inspired by the way burrs attached to clothing?
+Velcro
+10
+
+What was invented by John Walker of Stockton on Tees in 1827 and called Congreaves?
+Friction matches
+10
+
+What was invented by Joseph Bramah?
+Lock
+10
+
+What was invented by Ludovic Zamenhof?
+Esperanto
+10
+
+What was invented in roughly 3,500 bc in mesopotamia?
+The wheel
+10
+
+What was invented in Sumeria in 3200BC?
+The wheel
+10
+
+What was invented over 3,000 years ago that is now considered the first 'computer'?
+Abacus
+10
+
+What was Irene Cara's character name in the movie, Fame?
+Coco Hernandez
+10
+
+What was israel known as before its independence?
+Palestine
+10
+
+What was it that Captain Cook fed his crew and was made of cabbage pickled in vinegar?
+Sour krout
+10
+
+What was it that frightened Miss Muffet away?
+A spider
+10
+
+What was jack nicholson's first film?
+Cry baby killer
+10
+
+What was Jacquline Kennedy Onassis maiden name?
+Bouvier
+10
+
+What was james dean's last movie?
+Giant
+10
+
+What was Jane Austens first published novel?
+Sense and sensibility
+10
+
+What was Jane Russells real first name?
+Ernestine
+10
+
+What was jane wyman reagan's birth name?
+Sarah jane fulks
+10
+
+What was Japan's most famous WWll aeroplane?
+Zero
+10
+
+What was jayne russels real first name?
+Ernestine
+10
+
+What was jean-claude van damme's original stage name?
+Cujo
+10
+
+What was JFK's nickname for his daughter Caroline?
+Buttons
+10
+
+What was jimmy rodger's first hit in 1957 which included the lyrics 'god made the bees and the bees made the honey...'?
+Honeycomb
+10
+
+What was johanna spyri's story about a little alpine lass?
+Heidi
+10
+
+What was john lennon's original middle name?
+Winston
+10
+
+What was john wayne's last movie?
+Shootist
+10
+
+What was johnny appelseed's real name?
+John chapman
+10
+
+What was Jon Bon Jovi's mother's occupation?
+A Playboy Bunny
+10
+
+What was journey's first very successful lp?
+Infinity
+10
+
+What was Junko Tabei the first woman to reach?
+Summit of mount everest
+10
+
+What was kansas's first hit single?
+Carry on
+10
+
+What was karl marx's term for owners of capitalist production?
+Bourgeoise
+10
+
+What was karl marx's term for wage laborers in modern capitalist systems?
+Proletariat
+10
+
+What was kept in a medieval 'stew pond'?
+Fish
+10
+
+What was killed by the first bomb dropped by the allies on Berlin during wwii?
+Elephant
+10
+
+What was kind old Benjamin Franklin the first to do to a lamb,a chicken and a turkey?
+Electrocute them
+10
+
+What was King Alfred supposed to have burnt?
+Cakes
+10
+
+What was king arthur's sister's name?
+Igraine
+10
+
+What was King Arthur's sword called?
+Excalibur
+10
+
+What was King Ethelred IIs nickname?
+The unready
+10
+
+What was king george vi's first name?
+Albert
+10
+
+What was King John of England forced to sign in 1215?
+Magna Carta
+10
+
+What was king tut's original name?
+Tutankhaten
+10
+
+What was Kleenex(R) known as when invented during World War I?
+Cellucotton
+10
+
+What was known as Formosa?
+Taiwan
+10
+
+What was known as the Englishmens drink?
+Port
+10
+
+What was known as the spice island?
+Zanzibar
+10
+
+What was known to fussy GI's in Vietnam as a ptomaine domain?
+The mess hall
+10
+
+What was kohoutek, the dud of 1973?
+A comet
+10
+
+What was kojak's first name?
+Theo
+10
+
+What was Krakatoa?
+A volcanic island
+10
+
+What was landscape gardener Lancelot Brown's nickname?
+Capability
+10
+
+What was lech walesa's job before he founded solidarity?
+Electrician
+10
+
+What was led by major Adams?
+Wagon train
+10
+
+What was lenin's real name?
+Vladimir ilyich yulyanov
+10
+
+What was Linus Yale's occupation?
+Locksmith
+10
+
+What was liquorice used for in ancient Egypt?
+Medicine
+10
+
+What was lisa stansfields first no 1?
+All around the world
+10
+
+What was little miss muffet eating when she sat on her tuffet?
+Curds & whey
+10
+
+What was Long John Silvers parrot called?
+Captain flint
+10
+
+What was Lord John Oaksey's highest ever placing in the Grand National?
+Second
+10
+
+What was Lord Louis Mountbattens relationship to Queen Victoria?
+Her great grandson
+10
+
+What was lou christies' real name?
+Lugee sacco
+10
+
+What was Louise Joy Brown the first of?
+Test tube baby
+10
+
+What was ludwig von beethoven once arrested for?
+Vagrancy
+10
+
+What was lulu's top ten single?
+Shout
+10
+
+What was made by the Bessemer process?
+Steel
+10
+
+What was Madonna's first single to enter the UK singles chart?
+Holiday
+10
+
+What was Maggie Seaver's maiden name on Growing Pains?
+Maggie Malone
+10
+
+What was Marco Polo's home town?
+Venice
+10
+
+What was Marco Polo's nationality?
+Italian
+10
+
+What was Margaret Thatcher's maiden name?
+Roberts
+10
+
+What was margaret thatcher's nickname?
+Iron lady
+10
+
+What was marian's profession in the music man?
+Librarian
+10
+
+What was Marilyn Monroe's real full name?
+Norma jeane baker
+10
+
+What was Mark Twain's real name?
+Samuel clemens
+10
+
+What was martin frobisher looking for?
+North west passage
+10
+
+What was mary mallen's nickname?
+Typhoid mary
+10
+
+What was Mary Queen of Scots first to employ on a golf course?
+Caddie
+10
+
+What was Massachusetts' logical choice for an official state dessert, in 1996?
+Boston cream pie
+10
+
+What was maurice micklewhite's screen name?
+Michael caine
+10
+
+What was Max Headroom's network number?
+23
+10
+
+What was maxwell smart's control agent number?
+Eighty six
+10
+
+What was Michael Jackson advertising when he was nearly killed?
+Pepsi
+10
+
+What was michael jackson advertising when he was set on fire?
+Pepsi
+10
+
+What was Michelangelo's last name?
+Buonarroti
+10
+
+What was mickey mouse's first film?
+Steamboat willie
+10
+
+What was Mike Scosia diagnosed with?
+Accute Radiation poisoning
+10
+
+What was mildred ella didrikson's nickname?
+Babe
+10
+
+What was Mir?
+Russian space station
+10
+
+What was Miss Marple's first name?
+Jane
+10
+
+What was mixed with vodka in 1946 to make a Moscow Mule?
+Ginger ale
+10
+
+What was Moe selling at the flea market?
+Lucille Ball Oysters
+10
+
+What was mona lisa's surname?
+Gioconda
+10
+
+What was montrose's second lp called?
+Paper money
+10
+
+What was Moonie leader-Reverend Moon jailed for in 1976?
+Tax fraud
+10
+
+What was Mother Theresa's Christian name before she became a nun?
+Agnes
+10
+
+What was motown's first film in 1976?
+Lady sings the blues
+10
+
+What was Mowglis pet mongooses name?
+Rikki tikki tavi
+10
+
+What was Mozarts favourite instrument?
+Viola
+10
+
+What was mr munster's first name?
+Herman
+10
+
+What was mr spock's blood type?
+T-negative
+10
+
+What was mr. magoos first name?
+Quincy
+10
+
+What was mrs fawlty's christian name?
+Sibyl
+10
+
+What was Much Binding in the Marsh before it became a country club and then a radio show?
+An raf station
+10
+
+What was mussogorsky's first name?
+Modest
+10
+
+What was mussogorsky's profession?
+Composer
+10
+
+What was Mussolini forced to do when the allies landed in Sicily?
+Resign
+10
+
+What was namibia formerly known as?
+South west africa
+10
+
+What was nancy davis reagan's birth name?
+Anne frances robbins
+10
+
+What was Napoleon's last name?
+Bonaparte
+10
+
+What was napoleon's surname?
+Bonaparte
+10
+
+What was Ned Flanders' job before he opened the Leftorium?
+Pharmacist 
+10
+
+What was Ned's brush with the law?
+Mistaken for Ed Flanders
+10
+
+What was neil young's first film?
+Journey through the past
+10
+
+What was New Order previously known as?
+Joy division
+10
+
+What was Nikita Khrushchev's wife's name?
+Nina
+10
+
+What was noah's ark made of?
+Gopher wood
+10
+
+What was odd about Crayola senior crayon maker Emerson Moser?
+He was colourblind
+10
+
+What was odysseus called by the romans?
+Ulysses
+10
+
+What was officially called the Motion Picture Producers and Distributors of America?
+Hays Office
+10
+
+What was Oliver Cromwells title as ruler?
+Lord protector of the commonwealth
+10
+
+What was oliver hardy's real name?
+Norvell
+10
+
+What was Oliver Mellors' daytime job?
+Gamekeeper
+10
+
+What was one of Homers lifelong/boyhood dreams?
+Work in a bowling alley 
+10
+
+What was one of the main finds at Sutton Hoo burial ground?
+Ancient battle helmet
+10
+
+What was originally known as fruit smack flavoured syrup?
+Kool-aid
+10
+
+What was originally known as terra australis incognita?
+Australia
+10
+
+What was painted on peter fonda's helmet motorcycle helmet in 'easy rider'?
+Stars and stripes
+10
+
+What was pat nixon's real first name?
+Thelma
+10
+
+What was patrick mcgoohan's number in the prisoner?
+Six
+10
+
+What was Paul cezanne's nationality?
+French
+10
+
+What was Paul revere's only #1 hit?
+Indian reservation
+10
+
+What was Paul Scotts sequel to the Raj Quartet?
+Staying on
+10
+
+What was Paul Tibbett's claim to fame, established on August 6th 1945?
+Pilot of the plane which dropped atom bomb on hiroshima
+10
+
+What was pc gamer's 1995 game of the year?
+Warcraft 2
+10
+
+What was pegasus in greek mythology?
+Winged horse
+10
+
+What was peter dimmock's long running sports programme?
+Sportsview
+10
+
+What was phileas fogg's valet's name?
+Passepartout
+10
+
+What was pinocchio's father's name?
+Geppetto
+10
+
+What was pope john Paul ii's original name?
+Karol wojtyla
+10
+
+What was potsie webber's real first name on 'happy day's'?
+Warren
+10
+
+What was potsie's last name on happy days?
+Weber
+10
+
+What was President Clinton's wife called?
+Hillary
+10
+
+What was President Yeltsin's first name?
+Boris
+10
+
+What was Princess Diana's maiden name?
+Spencer
+10
+
+What was Princess Dianas middle name?
+Francis
+10
+
+What was privatised with the slogan - Tell Sid?
+British gas
+10
+
+What was produced by a 'spinning jenny'?
+Cotton thread
+10
+
+What was punky brewster's best friends name?
+Cherry
+10
+
+What was Queen Victoria's mother tongue?
+German
+10
+
+What was radical German student leader rudi dutschke known as?
+Red rudi
+10
+
+What was re erected at Lake Havasa City, Arizona?
+London bridge
+10
+
+What was rembrandt's surname?
+Van rijn
+10
+
+What was removed from Mussolini's body before it was buried?
+Brain
+10
+
+What was renamed Ho Chi Minh City in 1975?
+Saigon
+10
+
+What was replaced on the tail planes of British Airways planes, by a design meant to represent its international status?
+Union jack
+10
+
+What was Reverend Jims real last name on TAXI?
+Caldwell
+10
+
+What was Rex Hunt that brought him worldwide headlines in 1982?
+Governor of the falkland islands
+10
+
+What was rhoda's maiden name?
+Morgenstern
+10
+
+What was Richard Bach's best selling adult fairy tale?
+Jonathan livingston seagull
+10
+
+What was richard bach's best selling book?
+Jonathan livingston seagull
+10
+
+what was richard iii's nickname?
+Crookback dick
+10
+
+What was ringo starr's solo effort called?
+Goodnight vienna
+10
+
+What was rizzo's real name in grease?
+Betty
+10
+
+What was rob roy's surname?
+Mcgregor
+10
+
+What was robert montgomery's profession?
+Actor
+10
+
+What was rocky balboa's nickname in the ring?
+The Italian stallion
+10
+
+What was rod serling's last television series?
+Night gallery
+10
+
+What was Rod Stewart's occupation before he became a singer?
+A Grave Digger
+10
+
+What was Rod Stewarts first hit?
+Reason to believe
+10
+
+What was Rodney's middle name in Only Fools and Horses?
+Charlton
+10
+
+What was roger moore's first 'james bond' film?
+Live and let die
+10
+
+What was romeo's family name?
+Montague
+10
+
+What was ronnie barker's porridge role?
+Fletcher
+10
+
+What was Roscoe's dogs name on the Dukes of Hazzard?
+Flash
+10
+
+What was ruben's first name?
+Peter
+10
+
+What was Russian America after 1867?
+Alaska
+10
+
+What was said to be hitlers favorite film?
+King kong
+10
+
+What was salar in the book by Henry williamson?
+Salmon
+10
+
+What was Sarah, Duchess of York's maiden name?
+Ferguson
+10
+
+What was school boy William Hague given at a Conservative conference which caused him to hit the headlines?
+Standing ovation
+10
+
+What was Scotland Yard's emergency phone number?
+999
+10
+
+What was scotsman john laurie's profession in his dad's army role?
+Undertaker
+10
+
+What was seen in 1681 for the last time?
+The dodo
+10
+
+What was set as the maximum age when the original 7 US astronauts were selected?
+Forty
+10
+
+What was set up in 1792 due to the treat of a French Invasion, and published its first official series in 1805?
+Ordnance survey
+10
+
+What was Shakespear's Sister's number one hit from 1992?
+Stay
+10
+
+What was Shakespeares last play?
+The tempest
+10
+
+What was shirley maclains first film?
+Trouble with Harry
+10
+
+What was Sid Vicious' real name?
+John simon ritchie
+10
+
+What was signed on 15 june 1215?
+Magna carta
+10
+
+What was signed on the 15th june 1215?
+Magna carta
+10
+
+What was simple minds firsy uk number one?
+Belfast child
+10
+
+What was Simple Simon fishing for in his mother's pail?
+Whale
+10
+
+What was Sir Alec Guinness's role in 'Star Wars'?
+Obi-Wan Kenobi
+10
+
+What was sir alexander flemming's life saving discovery?
+Penicillin
+10
+
+What was Sir Christopher Cockerell's uplifting invention?
+Hovercraft
+10
+
+What was Sir Donald Bradmans test batting average?
+9994
+10
+
+What was Sir Edmund Hillary's profession before climbing Mt Everest?
+Apiarist
+10
+
+What was Smokey the Bear's middle name?
+The
+10
+
+What was sold to cure sore throat, neuralgia, nervousness, headache, colds & sleeplessness in the 1880s?
+Cocaine
+10
+
+What was sonny liston's best punch?
+Left hook
+10
+
+What was South Crofty in Cornwall, closed in 1998?
+Tin mine
+10
+
+What was special about the Heinkel He-178 plane, first flown in 1939?
+First jet plane
+10
+
+What was Spode the first to make in 1797, by adding bone ash to hard paste porcelain?
+Bone china
+10
+
+What was spun into gold in the story of rumpelstiltskin?
+Straw
+10
+
+What was sri lanka's former name?
+Ceylon
+10
+
+What was St. Paul's trade before he converted?
+Tent maker
+10
+
+What was st. petersburg called immediately before its name was changed to leningrad?
+Petrograd
+10
+
+What was stalin's real name?
+Iosif vissarionovich dzhugashvili
+10
+
+What was Stephensons first locomotive called?
+Locomotion
+10
+
+What was steven spielberg's first film?
+The duel
+10
+
+What was stored in a Leyden Jar?
+Electrical charge
+10
+
+What was stormed in Paris in 1789?
+Bastille
+10
+
+What was substituted for snow for the making of the Canadian film Toby McTeague?
+Instant Mashed Potatoes
+10
+
+What was superman's name on his home planet, krypton?
+Kal-el
+10
+
+What was superman's true name when he was on krypton?
+Khal-el
+10
+
+What was supermans alias?
+Clark kent
+10
+
+What was surgeon Dr. W.S. Halstead first to use in 1890?
+Rubber gloves
+10
+
+What was suzy parker doing to earn $100,000 in the early 1950s?
+Modeling
+10
+
+What was t e lawrence better known as?
+Lawrence of arabia
+10
+
+What was Tarzan's mate Jane's last name?
+Parker
+10
+
+What was tarzan's true identity?
+Lord greystoke
+10
+
+What was Terry's surname in the television series Minder?
+Mccann
+10
+
+What was th ename given to the first Spanish invaders of Central and South America?
+Conquistadors
+10
+
+What was th ename of Alison Moyet and VinceClarkes group?
+Yazoo
+10
+
+What was th ename of the first artificail plastic?
+Bakelite
+10
+
+What was th ename of the first British built electronic digital computer?
+Colossus
+10
+
+What was the 'oxbow incident'?
+A movie about a lynching
+10
+
+What was the (West) German capital before the 'Wiedervereinigung'?
+Bonn
+10
+
+What was the #10 girl's name in Canada in 1990?
+Kayla
+10
+
+What was the #4 goods exported from Canada in 1993?
+Agricultural products
+10
+
+What was the #7 movie (1981) to the end of 1988 with 115 million gross?
+Raiders of the lost ark
+10
+
+What was the #8 movie (1988) to the end of 1988 with 109 million dollars gross?
+Indiana jones and the temple of doom
+10
+
+What was the 10th Elton John album?
+Caribou
+10
+
+What was the 1950's slang term for 3-D movies?
+Deepies
+10
+
+What was the 1995 bestselling non-fiction hardcover book?
+Men are from mars women are from venus
+10
+
+What was the 1998 Boyzone number one taken from a Lloyd-Webber musical?
+No matter what
+10
+
+What was the 24 disc John Gabel Entertainer the first example of?
+Jukebox
+10
+
+What was the 57 mile long Marcia built by the romans?
+Aquaduct
+10
+
+What was the 5th country to get The Bomb?
+China
+10
+
+What was the 5th largest city in the Roman Empire in 50 AD?
+Londinium
+10
+
+What was the abode of gods in norse mythology?
+Asgard
+10
+
+What was the acronym for the car in knight rider?
+K.i.t.t.
+10
+
+What was the active ingredient in the Victorian sedative called Laudanum?
+Opium
+10
+
+What was the age limit when the original seven astronauts were chosen?
+40
+10
+
+What was the age of 'Lola' in the musical 'Damn Yankees'?
+172
+10
+
+What was the alias of kidnapped newspaper heiress, Patty Hearst?
+Tania
+10
+
+What was the allied code name for Winston Churchill during World War II?
+Colonel Warden
+10
+
+What was the alternative name for the Second World Warplane known as the B17?
+Flying fortress
+10
+
+What was the ancient system of picture writing used in Ancient Egypt?
+Hieroglyphics
+10
+
+What was the anme of the first commercial hovercraft designed by Christopher Cockerell?
+SR.N1
+10
+
+What was the annihilation of the jews in wwii called?
+Holocaust
+10
+
+What was the anti-trust law which broke up the standard oil trust?
+Sherman act
+10
+
+What was the apsotle Matthews job?
+Tax collector
+10
+
+What was the average age of US soldiers in the Vietnam war?
+Nineteen
+10
+
+What was the average lifespan of a European peasant in 1300?
+Twenty five years
+10
+
+What was the basis of the giant u.s prune industry?
+Agen plum
+10
+
+What was The Beatles first (USA) No.1 Hit?
+I want to hold your hand
+10
+
+What was the Beatles first record on the Apple label?
+Hey jude
+10
+
+What was the Beatles' second film?
+Help
+10
+
+What was the best chariot route from rome to brindisi?
+Via appia
+10
+
+What was the beverly hillbillies' family name?
+Clampett
+10
+
+What was the Big Bopper's real name?
+Jiles Perry Richardson
+10
+
+What was the biggest known theft of computer chips?
+3
+10
+
+What was the birth name of the late Dr. Seuss?
+Theodore geisel
+10
+
+What was the blue dye, used by ancient britons to colour their skin, called?
+Woad
+10
+
+What was the board game introduced in the eighties which featured six categories of questions and little pie shaped pieces you had to collect?
+Trivia Pursuit
+10
+
+What was the Bountys cargo at the time of its most famous mutiny?
+Breadfruit plants
+10
+
+What was the bridge of san luis rey made of?
+Rope
+10
+
+What was the Bristol Brabazon?
+Worlds largest airliner
+10
+
+What was the British nickname for William Joyce the broadcaster of wwii?
+Lord haw haw
+10
+
+What was the Canadian literacy rate in 1987?
+Ninety nine percent
+10
+
+What was the capital of Kenya prior to Nairobi?
+Mombassa
+10
+
+What was the capital of vietnam?
+Hanoi
+10
+
+What was the cartoon mouse that was Gene Kelly's dancing partner in the film Anchors aweigh?
+Jerry
+10
+
+What was the cause of death of female author Margaret Mitchell?
+Automobile Accident 
+10
+
+What was the cavalry's first regiment called?
+Rough riders
+10
+
+What was the CB radio handle used by former First Lady Betty Ford when she was residing in the White House?
+First Mama
+10
+
+What was the ceaseless medieval search for a method of turning base metals to gold called?
+Alchemy
+10
+
+What was the ceremony called where the hopi indians carry live rattlesnakes even in their mouths?
+Snake dance
+10
+
+What was the challanging method of catching a fly in Karate Kid?
+Using chopsticks
+10
+
+What was the character name of michael crawford's wife in some mother's do 'ave em?
+Betty
+10
+
+What was the character name of Patti Duke's father on the Patti Duke Show?
+Martin Lane
+10
+
+What was the character name of starsky & hutch's captain?
+Captain dobey
+10
+
+What was the character name of the female star of the film Breakfast At Tiffany's?
+Holly Golightly
+10
+
+What was the chief Roman silver coin?
+Denarius
+10
+
+What was the christian name of Jesse james brother?
+Frank
+10
+
+What was the Christian name of the French painter Pisarro?
+Camille
+10
+
+What was the christian name of the furniture designer Chippendale?
+Thomas
+10
+
+What was the christian name of the newspaper cartoonist Lancaster?
+Osbert
+10
+
+What was the chuckwagon used for on cattle drives?
+Cooking
+10
+
+What was the city of Istanbul called before 330 AD?
+Byzantium
+10
+
+What was the city symbol of Pompeii, the ancient Roman resort town destroyed by Mt. Vesuvius' eruption?
+Winged penis
+10
+
+What was the classical standard language of ancient India?
+Sanskrit
+10
+
+What was the claymation Domino's Pizza thing to avoid?
+The Noid
+10
+
+What was the club house of the Get Along Gang?
+A red Caboose
+10
+
+What was the code name for the us rescue mission in iran?
+Eagle claw
+10
+
+What was the code name of the D-Day invasion?
+Operation OVERLORD
+10
+
+What was the codename for the development of the atom bomb?
+Manhattan project
+10
+
+What was the codename given for the normandy landings?
+Neptune
+10
+
+What was the codename of the aborted German invasion of England in 1940?
+Operation sealion
+10
+
+What was the codename of the allied invasion of north africa in 1942?
+Operation torch
+10
+
+What was the codename of William Stephenson, chief of British Intelligence in New York during WWII?
+Intrepid
+10
+
+What was the colonial name of mali?
+French sudan
+10
+
+What was the colour of christ's hair in st john's vision?
+White
+10
+
+What was the colour of the 1985 film that gave Whoopi Goldberg her first Oscar?
+Purple
+10
+
+What was the composer Dvorak's christian name?
+Antonin
+10
+
+What was the connection between Family Matters & Full House?
+Steve Urkel
+10
+
+What was the connection between the facts of life and er?
+George clooney
+10
+
+What was the country of Botswana called before 1966?
+Bechuanaland
+10
+
+What was the crime committed for those dwelling in dante's lowest level of hell in his work, 'the inferno'?
+Betrayal
+10
+
+What was the date and time when all of the digits on a ten digit watch were displayed in numerical order?
+12.34 and 56 seconds 7th august 1990
+10
+
+What was the date in 1955 did marty from back to the future arrive on?
+November 5th,1955
+10
+
+What was the deadly bug that afflicted the world in 1918 to 1919?
+Influenza
+10
+
+What was the department of defense formerly known as?
+Department of war
+10
+
+What was the destination of the Mary Celeste on it's final voyage?
+Genoa
+10
+
+What was the Dire Straits album featuring a guitar on a blue background?
+Brothers in arms
+10
+
+What was the discovey made by Frederick Banting & Charles Best?
+Insulin
+10
+
+What was the district in New York where mario puzo, the author of 'the godfather' was raised nicknamed?
+Hell's kitchen
+10
+
+What was the duck's name on the burns & allen show?
+Herman
+10
+
+What was the earliest form of shoe?
+Sandal
+10
+
+What was the earliest known symbol of christianity?
+Fish
+10
+
+What was the elementary penguin singing?
+Hare krishna
+10
+
+What was the european city of culture for 1998?
+Stockholm
+10
+
+What was the eventual title of a book which was originally called Incident at West Egg?
+The great gatsby
+10
+
+What was the everly brothers first hit?
+Bye bye love
+10
+
+What was the exact date of the start of the Russian revolution?
+November 7, 1917
+10
+
+What was the fairytale world created by C.S. Lewis?
+Narnia
+10
+
+What was the family name of the British royal family at the time of the coronation?
+Windsor
+10
+
+What was the family name of the green hornet & the lone ranger?
+Reid
+10
+
+What was the famous line uttered by an old woman in Wendy's ads?
+Where's The Beef?
+10
+
+What was the famous prison of 18th century London?
+Newgate
+10
+
+What was the fat boy's nickname in Lord of the Flies?
+Piggy
+10
+
+What was the favorite expression of captain marvel?
+Holy moley
+10
+
+What was the favorite weapon of george kelly and kate barker?
+Machine gun
+10
+
+What was the favorite weapon of the Mongols?
+Bow and arrow
+10
+
+What was the favourite colour of the novelist Barbra Cartland?
+Pink
+10
+
+What was the fight between Argentina and Great Britan over?
+Faulkland Islands
+10
+
+What was the final destination of the first u.s. paddle wheel steamboat, what departed from pittsburgh?
+New orleans
+10
+
+What was the final destruction of the world in norse mythology?
+Ragnarok
+10
+
+What was the final score in the 1999 football match between England and Luxemburg (to England)?
+6-0
+10
+
+What was the first album roger waters released after leaving pink floyd?
+Pros and cons of hitch hiking
+10
+
+What was the first album to be released on the Virgin Record label?
+Tubular bells
+10
+
+What was the first American warship lost in world war ii?
+Reuben james
+10
+
+What was the first animal named to the usa's animal hall of fame in 1969?
+Lassie
+10
+
+What was the first animal on the endangered species list?
+Peregrine falcon
+10
+
+What was the first artificial earth satellite called?
+Sputnik 1
+10
+
+What was the first big game craze on computers and game systems?
+Pong
+10
+
+What was the first boy's name listed in the 1963 book name your baby?
+Aaron
+10
+
+What was the first brand of instant coffee, introduced in Switzerland in 1938?
+Nescafe
+10
+
+What was the first brand of Wrigley's chewing gum called?
+Vassar
+10
+
+What was the first candy?
+Orange peel
+10
+
+What was the first capital of British Columbia?
+New westminster
+10
+
+What was the first cartoon character called?
+Oswald the rabbit
+10
+
+What was the first cartoon to feature sound?
+Steamboat Willie
+10
+
+What was the first cd pressed in the u.s?
+Born in the u.s.a
+10
+
+What was the first chinese dynasty?
+Shang
+10
+
+What was the first city to be leveled by a plutonium based atomic bomb?
+Nagasaki
+10
+
+What was the first colony to legalise witchcraft?
+Pennsylvania
+10
+
+What was the first commercial airliner?
+Comet
+10
+
+What was the first commercial readymix food?
+Pancake mix
+10
+
+What was the first computer software company to go public on the New York Stock Exchange?
+Cullinet
+10
+
+What was the first country to approve aid drug azt?
+Britain
+10
+
+What was the first country to legalize abortion, in 1935?
+Iceland
+10
+
+What was the first czechoslovakian to win the wimbledon women's singles tennis title?
+Martina navratilova
+10
+
+What was the first day of the Roman month called?
+The calends
+10
+
+What was the first desert rodent to spin its wheels into popular petdom?
+Hamster
+10
+
+What was the first disney film to feature stereophonic sound?
+Fantasia
+10
+
+What was the first domesticated bird?
+Goose
+10
+
+What was the first English play written exclusively for children?
+Peter pan
+10
+
+What was the first European book printed?
+The Bible
+10
+
+What was the first event decided at the 1896 olympics?
+Triple jump
+10
+
+What was the first ever feature length cartoon with sound and colour?
+Snow white and the seven dwarfs
+10
+
+What was the first ever product to be sold using a bar-code reader?
+Wrigley's juicy fruit chewing gum
+10
+
+What was the first ever talking film?
+The jazz singer
+10
+
+What was the first ever telegraphed message?
+What hath god wrought
+10
+
+What was the first fairy tale Walt Disney adapted for a cartoon?
+Little red riding hood
+10
+
+What was the first film to team jack lemmon and walter matthau?
+Fortune
+10
+
+What was the first full length movie with sound, made in 1927?
+The Jazz Singer
+10
+
+What was the first game graze on the computer?
+Pong
+10
+
+What was the first game show on Mtv?
+Remote Control
+10
+
+What was the first grand slam tennis title won by steffi graf?
+French open
+10
+
+What was the first hit song the platters served up?
+Only you
+10
+
+What was the first ironclad warship launched?
+Hms warrior
+10
+
+What was the first known lighthouse?
+Pharon
+10
+
+What was the first line of frozen foods?
+Bird's eye
+10
+
+What was the first London street to be lit by gas lamps in 1807?
+Pall mall
+10
+
+What was the first london street to be lit by gas lamps?
+Pall mall
+10
+
+What was the first major us city to present jai-alai?
+Miami
+10
+
+What was the first man made insecticide?
+Ddt
+10
+
+What was the first metal used by man for tools bronze, copper or iron?
+Copper
+10
+
+What was the first metal used by man?
+Copper
+10
+
+What was the first microprocessor?
+Intel 4004
+10
+
+What was the first movie Disney released through a subsidary company that carried an R rating?
+Down and Out In Beverly Hills
+10
+
+What was the first movie filmed in sensurround?
+Earthquake
+10
+
+What was the first name of 'Count ' Basie?
+William
+10
+
+What was the first name of 'Duke' Ellington?
+Edward
+10
+
+What was the first name of Baden-Powell the founder of the Scout movement?
+Robert
+10
+
+What was the first name of Captain Bligh, of 'Mutiny on the Bounty' fame?
+William
+10
+
+What was the first name of Captain Dobey on Starsky & Hutch?
+Harold
+10
+
+What was the first name of dom perignon, the monk who gave us champagne?
+Pierre
+10
+
+What was the first name of marshal torrance in the rifleman?
+Micah
+10
+
+What was the first name of mr tibbs?
+Virgil
+10
+
+What was the first name of sherlock holmes' dr. watson?
+John
+10
+
+What was the first name of the baby girl who fell down the well?
+Jessica
+10
+
+What was the first name of the bartender on The Love Boat?
+Isaac
+10
+
+What was the first name of the explorere Shackleton?
+Ernest
+10
+
+What was the first name of the Israeli man who invented a rapid fire weapon in 1953?
+Uzi
+10
+
+What was the first name of the Reverebd Varah, the founder of the Samaritans?
+Chad
+10
+
+What was the first name of Titanic survivor known as The Unsinkable Molly Brown?
+Margaret
+10
+
+What was the first name of tycoon Donald Trump's first wife?
+Ivana
+10
+
+What was the first name of viscount montgomery of alamein?
+Bernard
+10
+
+What was the first nation to resign from the united nations?
+Indonesia
+10
+
+What was the first newspaper owned by william randolph hearst, senior?
+The san francisco examiner
+10
+
+What was the first no 1 for the shadows?
+Apache
+10
+
+What was the first object made from aluminum?
+A Rattle
+10
+
+What was the first offical international boat race?
+Hundred guineas cup
+10
+
+What was the first official currency of the u.s?
+Dollar
+10
+
+What was the first organ successfully transplanted from a cadaver to a live person?
+Kidney
+10
+
+What was the first parachute jump made from?
+Balloon
+10
+
+What was the first peanuts comic strip called?
+Good ol' charlie brown
+10
+
+What was the first personal computer: Kenbak, Scelbi, or Apple1?
+Kenbak
+10
+
+What was the first piece of Tupperware to be sold?
+A bathroom tumbler
+10
+
+What was the first plastic to be manufactured?
+Celluloid
+10
+
+What was the first postage stamp called?
+Penny black
+10
+
+What was the first product to have a UPC bar code on its packaging?
+Wrigley's gum
+10
+
+What was the first rap group to appear on 'American bandstand'?
+Run d.m.c
+10
+
+What was the first ready mix food to be sold commercially?
+Aunt jemima pancake flour
+10
+
+What was the first ready-to-eat breakfast cereal?
+Shredded cereal
+10
+
+What was the first recruiting station for the Marine Corps?
+Tun tavern
+10
+
+What was the first reusable space shuttle?
+Columbia
+10
+
+What was the first safety feature patented for an automobile and attached to a front fender?
+Safety net
+10
+
+What was the first samuel beckett play to hit broadway?
+Waiting for godot
+10
+
+What was the first sherlock holmes book?
+A study in scarlet
+10
+
+What was the first ship to reach the titanic after it sank?
+Carpathia
+10
+
+What was the first song played on armed forces radio during operation desert shield?
+Rock the casbah
+10
+
+What was the first space shuttle to orbit the earth?
+Columbia
+10
+
+What was the first spacecraft ever to go into space a second time?
+Columbia
+10
+
+What was the first sport to be covered by a British radio broadcast?
+Rugby
+10
+
+What was the first staple that the U.S. government rationed during World War II?
+Sugar
+10
+
+What was the first state of the union?
+Delaware
+10
+
+What was the first submarine named?
+Nautilus
+10
+
+What was the first subway nicknamed because of its odour?
+Sewer
+10
+
+What was the first successful Jupiter probe?
+Pioneer 10
+10
+
+What was the first talking motion picture with the sound on the film?
+Jazz singer
+10
+
+What was the first team to play in what is now wrigley field?
+Chicago whales
+10
+
+What was the first team to win the super bowl?
+Green bay packers
+10
+
+What was the first technology known to man?
+Fire
+10
+
+What was the first thing Ned thought would influence Tod's bad language?
+Bumper Stickers 
+10
+
+What was the first thing Noah did upon setting foot on dry land?
+He built an altar
+10
+
+What was the first thing off the ark when it stopped raining?
+Raven
+10
+
+What was the first tony winning play?
+Mister roberts
+10
+
+What was the first top 30 hit by the Rolling Stones?
+Come on
+10
+
+What was the first trade mark to be registered in 1875?
+The bass red triangle
+10
+
+What was the first u.s consumer product sold in the soviet union?
+Pepsi cola
+10
+
+What was the first u.s state to seccede from the union on december 20, 1860?
+South carolina
+10
+
+What was the first US National Monument?
+Devil's tower
+10
+
+What was the first US National Park?
+Yellowstone
+10
+
+What was the first us sitcom to be exported to britain?
+I love lucy
+10
+
+What was the first us state to secede from the union on december 20, 1860?
+South carolina
+10
+
+What was the first version of MS Windows to have networking capabilities?
+Windows for workgroups
+10
+
+What was the first version of MS Windows?
+Windows 286
+10
+
+What was the first video ever shown on mtv?
+Video killed the radio star
+10
+
+What was the first video game?
+Pong
+10
+
+What was the first video Mtv played?
+Video Killed the Radio Star
+10
+
+What was the first womens magazine published in 1693?
+The Ladies' Mercury
+10
+
+What was the first world war also called?
+Great war
+10
+
+What was the first x-rated animated cartoon film?
+Fritz the cat
+10
+
+What was the first year that women could vote in norway?
+1913
+10
+
+What was the food of the greek gods called?
+Ambrosia
+10
+
+What was the forerunner of croquet?
+Pall mall
+10
+
+What was the former capital of Australia?
+Melbourne
+10
+
+What was the former German name of the czech town of ceske budejovice?
+Budweis
+10
+
+What was the former name for the african country of malawi?
+Nyasaland
+10
+
+What was the former name of Belize?
+British honduras
+10
+
+What was the former name of Burkina Faso in Africa?
+Upper volta
+10
+
+What was the former name of Kampuchea?
+Cambodia
+10
+
+What was the former name of the building which now houses the Tate Modern on the South Bank of the Thames?
+Bankside power station
+10
+
+What was the former name of the cape of good hope?
+Cape of storms
+10
+
+What was the former name of the czech town of kalovy vary?
+Carlsbad
+10
+
+What was the former name of the island nation Sri Lanka?
+Ceylon
+10
+
+What was the former name of the North Sea?
+German Ocean
+10
+
+What was the former name of the Southern African country of Zambia?
+Northern rhodesia
+10
+
+What was the former name of Zambia?
+Northern rhodesia
+10
+
+What was the former name of Zimbabwe?
+Southern rhodesia
+10
+
+What was the four seasons' first hit, cut only 15 minutes after being written?
+Sherry
+10
+
+What was the french resistance movement called in WWII?
+The maquis
+10
+
+What was the frenchman marat cleanly murdered in?
+Bath
+10
+
+What was the full name of Mangum P.I.?
+Thomas Magnum
+10
+
+What was the full name of the cat?
+Thomas hewitt edward cat
+10
+
+What was the full name of the eminent physicist who dipped a piece of o ring into a glass of water in a demonstration, & proved that low temperatures at the launhpad were responsible for the challenger disaster?
+Richard phillips feynman
+10
+
+What was the full name of the eminent physicist who dipped a piece of o-ring into a glass of water in a demonstration, and proved that low temperatures at the launchpad were responsible for the challenger disaster?
+Richard phillips feynman
+10
+
+What was the full name of the eminent physicist who dipped a piece of o-ring into a glass of water in a demonstration, and proved that low temperatures at the launhpad were responsible for the challenger disaster?
+Richard phillips feynman
+10
+
+What was the full title of the long running series about wyatt earp?
+Life and legend of wyatt earp
+10
+
+What was the German Hans Joachim von Ohain the first to put into practice narrowly beating englishman Frank Whittle?
+Jet engine
+10
+
+What was the gift from the gods in the movie The Gods Must Be Crazy?
+A coke bottle
+10
+
+What was the Graf Zeppelin?
+German airship
+10
+
+What was the great discovery of william Harvey?
+Circulation of blood
+10
+
+What was the great gatsby's first name?
+Jay
+10
+
+What was the hang out of the 90210 gang?
+The peach pit
+10
+
+What was the happiest day of Ralph's life?
+When the Doctor said he didn't have worms anymore
+10
+
+What was the heaviest known dinosaur?
+Brachiosaurus
+10
+
+What was the highest grossing American silent movie?
+Birth of a nation
+10
+
+What was the highest man-made structure at the start of the 20th Century?
+Eiffel tower
+10
+
+What was the home of Douglas fairbanks and mary pickford called?
+Pickfair
+10
+
+What was the hospital for lunatics set up by Henry viii called?
+Bedlam
+10
+
+What was the hospital where Dr Kildare worked called?
+Blair general
+10
+
+What was the huge glass building erected in London for the Great Exhibition in 1851?
+The crystal palace
+10
+
+What was the inexpensive designer watch of choice amongst teenagers during the eighties?
+Swatch
+10
+
+What was the infamous pseudonym of broadcaster iva toguri d'aquino?
+Tokyo rose
+10
+
+What was the invasion password for WW II's D day invasion of Normandy, France on June 6, 1944?
+Mickey mouse
+10
+
+What was the language if ancient Rome?
+Latin
+10
+
+What was the language of nineteen eighty four?
+Newspeak
+10
+
+What was the largest city in the communist world?
+Shanghai
+10
+
+What was the largest city in the U.S. when the first census was taken in 1790?
+Philadelphia
+10
+
+What was the largest confederate military prison during the civil war?
+Andersonville
+10
+
+What was the largest real estate deal in colonial us history?
+Louisiana purchase
+10
+
+What was the largest town in Britain before it became a city in 1992?
+Sunderland
+10
+
+What was the last album the Beatles recorded together?
+Abbey road
+10
+
+What was the last animal to be tamed as a food source?
+Cow
+10
+
+What was the last country to join the European Economic Community?
+Greece
+10
+
+What was the last james bond movie to be released in the 80s?
+License to kill
+10
+
+What was the last major German counteroffensive of world war ii?
+Battle of the bulge
+10
+
+What was the last name of Adolf Hitler's mother?
+Schicklgruber
+10
+
+What was the last name of Isadora, the famous dancer?
+Duncan
+10
+
+What was the last name of the American that invented root beer soft drink?
+Hires
+10
+
+What was the last planet discovered, in 1930?
+Pluto
+10
+
+What was the last port into which the titanic docked?
+Southampton
+10
+
+What was the last state according to date of entry into the union?
+Hawaii
+10
+
+What was the Leaning Tower of Pisa actually built as?
+A bell tower
+10
+
+What was the Leaning Tower Of Pisa originally used for?
+Bell tower
+10
+
+What was the license number on the ghostbusters' car?
+Ecto-1
+10
+
+What was the living room war?
+Vietnam
+10
+
+What was the location for the first winter olympics in 1924?
+Chamonix
+10
+
+What was the location of the first official ufo sighting?
+Mt rainier
+10
+
+What was the longest war in history?
+The hundred years' war
+10
+
+What was the love that dared not speak its name in Victorian England?
+Homosexuality
+10
+
+What was the magical land created in a series of book by CS Lewis?
+Narnia
+10
+
+What was the maid's name in fawlty towers?
+Polly
+10
+
+What was the maid's name in the tv series 'the brady bunch'?
+Alice
+10
+
+What was the maiden name of astronaut Buzz Aldrin's Mother?
+Marion Moon
+10
+
+What was the maiden name of Peg Bundy (Katey Sagal) in the T.V. Sitcom 'Married with Children'?
+Wanker
+10
+
+What was the major royal ceremony that Queen Victoria attended in 1838?
+Her coronation
+10
+
+What was the manic street preachers' first post-richey single?
+Design for life
+10
+
+What was the martial song of the confederacy in US Civil war?
+Land of dixie
+10
+
+What was the maximum weight permitted for the first flight attendants in 1930?
+115 pounds
+10
+
+What was the middle name of 'Our Town' playwright Thornton Wilder?
+Niven
+10
+
+What was the middle name of illustrator Norman Rockwell?
+Percevel
+10
+
+What was the mode of transportation for the butcher, baker & candlestick maker?
+Tub
+10
+
+What was the mode of transportation for wynken, blynken & nod?
+Wooden shoe
+10
+
+What was the model number of the only American plane downed in the kosovo bombings?
+F-117a
+10
+
+What was the most common automobile colour in the depression?
+Black
+10
+
+What was the most common cause of US workplace deaths in 1993?
+Shooting
+10
+
+What was the most famous ship ever built in Canada and launched 1921?
+Bluenose
+10
+
+What was the most important weapon used by the English & Welsh at Agincourt in 1415?
+The longbow
+10
+
+What was the most popular female doll of the 1960's?
+Barbie
+10
+
+What was the most popular semi automatic hand gun in Nazi Germany?
+The luger
+10
+
+What was the most prescribed drug in the U K in 1985?
+Valium
+10
+
+What was the most recent year that could be written both upside down & rightside up & appear the same?
+1961
+10
+
+What was the most significant battle fought on Belgian soil in 1815?
+The battle of waterloo
+10
+
+What was the most significant world event of august 6 1945?
+Atomic bomb at hiroshima
+10
+
+What was the most successful single of the 80's?
+Two tribes/frankie goes to hollywood
+10
+
+What was the most you would pay for a single item at a Woolworth store in 1879?
+Ten cents
+10
+
+What was the movie did kate winslet next appear in after titanic?
+Hideous kinky
+10
+
+What was the name (4 letters) of the New York night club that helped launch the career of several early new wave groups?
+CBGB's
+10
+
+What was the name and number of the pow camp in which hogan's heroes were held?
+Stalag 13
+10
+
+What was the name for the anicent territory now known as Spain and Portugal that shares its name with an ocean-liner sunk by a German u-boat in 1917?
+Lusitania
+10
+
+What was the name for the first commercial computer produced in the USA which was used for forecasting the 1952 election results?
+Univac 1
+10
+
+What was the name for the Japanese protectorate proclaimed in manchuria in 1933?
+Manchukuo
+10
+
+What was the name for the wooden head of a woman with a clay pipe in her mouth at fairs?
+Aunt sally
+10
+
+What was the name given to German V-1 rockets, during WWII?
+Doodlebugs
+10
+
+What was the name given to the 11 french knights who in 1119 took monastic vows and bound themselves to protect pilgrims?
+Templars
+10
+
+What was the name given to the 3rd Indian Division that operated under the command of Brigadier Wingate during World War II?
+Chindits
+10
+
+What was the name given to the a bomb dropped on Nagasaki?
+Fat man
+10
+
+What was the name given to the anti-communist hysteria in America from 1947 - 1954?
+Mccarthyism
+10
+
+What was the name given to the beautiful girls in the jackie gleason show?
+Glea girls
+10
+
+What was the name given to the legendary greek herald who could shout as loudly as 50 ordinary men, his name gave rise to a word meaning loud voiced?
+Stentor
+10
+
+What was the name given to the short bobbed hairstyle, popular amongst upper class women of the 1920s?
+Eton crop
+10
+
+What was the name given to the short bobbed hairstyle?
+Eton crop
+10
+
+What was the name of Admiral Richard E Byrd's fox terrier?
+Igloo
+10
+
+What was the name of Adolf Hitler's mistress?
+Eva braun
+10
+
+What was the name of alexander the great's black stallion?
+Bucephalus
+10
+
+What was the name of Alexander the Great's favourite horse?
+Bucehalus
+10
+
+What was the name of alley oop's girlfriend?
+Wootie
+10
+
+What was the name of Aristotle Onassis's yacht?
+Christina
+10
+
+What was the name of Aristotle's school?
+Lyceum
+10
+
+What was the name of Armstrong and Aldrin's lunar module?
+Eagle
+10
+
+What was the name of arnold's fish on diff'rent strokes?
+Abraham
+10
+
+What was the name of Arnold's fish on Different Strokes?
+Abraham
+10
+
+What was the name of Ashley Wilkes' plantation in 'Gone With the Wind'?
+Twelve Oaks
+10
+
+What was the name of austin power's car?
+Shaguar
+10
+
+What was the name of australias most famous cricketer, born in 1908?
+Donald bradman
+10
+
+What was the name of Bill Sykes' dog in Oliver Twist?
+Bullseye
+10
+
+What was the name of Billy Bunters school?
+Greyfriars
+10
+
+What was the name of blue peter's first dog?
+Petra
+10
+
+What was the name of Bob Crosby's band in the 1940's?
+The bobcat5
+10
+
+What was the name of bob's wife in the likely lads?
+Thelma
+10
+
+What was the name of Brotherhood Of Man's shepherd boy?
+Angelo
+10
+
+What was the name of buffy's doll in the 1970's show 'family affair'?
+Mrs
+10
+
+What was the name of bullwinkle's squirrel friend?
+Rocky
+10
+
+What was the name of Captain Blighs famous ship?
+The bounty
+10
+
+What was the name of captain geoffrey thorpe's pirate ship in the sea hawk?
+Albatross
+10
+
+What was the name of Captain Hook's pirate ship?
+The jolly roger
+10
+
+What was the name of captain kid's ship?
+Adventure galley
+10
+
+What was the name of Charles Darwin's survey ship?
+Beagle
+10
+
+What was the name of Charlie Chaplins film satire of Nazi Germany?
+The great dictator
+10
+
+What was the name of Columbus's flagship in 1492?
+Santa Maria
+10
+
+What was the name of David Hasselhoff's talking car in Knight Ridder?
+Kitt
+10
+
+What was the name of diana's young daughter in i'm a big girl now?
+Becky
+10
+
+What was the name of dion's group?
+Belmonts
+10
+
+What was the name of doctor who's dog?
+K9
+10
+
+What was the name of Don Quixotes horse?
+Rosinante
+10
+
+What was the name of Dorothy's dog in 'The Wizard of Oz'?
+Toto
+10
+
+What was the name of Douglas fairbanks and mary pickford's hollywood mansion?
+Pickfair
+10
+
+What was the name of dr doolittle's pet duck?
+Dab dab
+10
+
+What was the name of dr frankenstein's crippled assistant?
+Fritz
+10
+
+What was the name of dr jekyll's butler?
+Poole
+10
+
+What was the name of Earths single continent before it spit up into the continents as they are today?
+Pangea
+10
+
+What was the name of Eddie Murphy's character in Beverly Hills Cop?
+Axel Foley
+10
+
+What was the name of eliza's father in my fair lady (first and last name)?
+Alfred doolittle
+10
+
+What was the name of Elvis Presley's original backup group?
+The Blue Moon Boys
+10
+
+What was the name of Ernest Shackleton's ship which was trapped and crushed by polar ice in 1915?
+Endurance
+10
+
+What was the name of Ernest Shakletons ship that was crushed by ice in 1915?
+Endurance
+10
+
+What was the name of Facts of Life's Mrs. Garret's gourmet food shop?
+Edna's Edibles 
+10
+
+What was the name of fdr's faithful Scottish terrier?
+Fala
+10
+
+What was the name of flo's best friend in the sitcom flo?
+Miriam
+10
+
+What was the name of frankie goes to hollywood's follow-up single to relax?
+Two tribes
+10
+
+What was the name of Fred Astaire's dancing sister?
+Adele
+10
+
+What was the name of Freddy lakers cheap transatlantic air service?
+Skytrain
+10
+
+What was the name of French mime Marcel Marceau's alter-ego?
+Bip
+10
+
+What was the name of Garfield's teddy bear?
+Pookie
+10
+
+What was the name of Garfield's vet?
+Liz
+10
+
+What was the name of gene autry's horse?
+Champion
+10
+
+What was the name of genghis khan?
+Temuchin
+10
+
+What was the name of george of the jungle's ape friend?
+Ape
+10
+
+What was the name of gepetto's cat in pinocchio?
+Figaro
+10
+
+What was the name of geppetto's son?
+Pinocchio
+10
+
+What was the name of Germany's largest world war II battleship?
+The Bismarck
+10
+
+What was the name of Hannibal's father?
+Hamilcar barca
+10
+
+What was the name of He-man's legless,wizard friend?
+Orco
+10
+
+What was the name of He-Man's magician sidekick?
+Orko 
+10
+
+What was the name of hitler's dog?
+Blondie
+10
+
+What was the name of Hitlers mountain retreat?
+Berchtesgaden
+10
+
+What was the name of hopalong cassidy's horse?
+Topper
+10
+
+What was the name of hopalong cassidy's ranch?
+Bar-20 ranch
+10
+
+What was the name of humble pie's first lp?
+Town & country
+10
+
+What was the name of Ian Fleming's Caribbean retreat?
+Goldeneye
+10
+
+What was the name of Indira Gandhis father?
+Pandit jawaharlal nehru
+10
+
+What was the name of inspector clouseau's man servant?
+Cato
+10
+
+What was the name of jacques cousteau's research ship?
+Calypso
+10
+
+What was the name of jason's ship?
+Argo
+10
+
+What was the name of Jill Chances Crossroads brother?
+Sandy richardson
+10
+
+What was the name of jim henson's muppet hound on the jimmy dean show?
+Rowlf
+10
+
+What was the name of Joan Fontaine's actress sister with whom she had a notoriously bad relationship?
+Olivia de havilland
+10
+
+What was the name of Jodie Foster's 1991 film that she directed?
+Little man tate
+10
+
+What was the name of John Cabots boat?
+The matthew
+10
+
+What was the name of john lennon and cynthia lennon's son?
+Sean
+10
+
+What was the name of Johnny Calhoun's spoken word album that ruined his career?
+These/This Things I Believe 
+10
+
+What was the name of Johnny O'Keefe's band?
+The dee jays
+10
+
+What was the name of judge smales grandson in the movie 'caddyshack'?
+SPaulding 
+10
+
+What was the name of kellogg's cartoon toaster?
+Milton
+10
+
+What was the name of king arthur's castle?
+Camelot
+10
+
+What was the name of king arthur's sword?
+Excalibur
+10
+
+What was the name of King Arthurs treacherous nephew?
+Mordred
+10
+
+What was the name of l'il abner's pig?
+Salomey
+10
+
+What was the name of Lady Chatterley's lover?
+Mellors
+10
+
+What was the name of long john silver's parrot?
+Captain flint
+10
+
+What was the name of luke mccoy's wife in the real mccoys?
+Kate
+10
+
+What was the name of Luke's strange little advisor in 'The Empire Strikes Back'?
+Yoda
+10
+
+What was the name of macbeth's castle?
+Inverness
+10
+
+What was the name of Magnum PI's suave superspy alterego?
+Sebastian Sabre
+10
+
+What was the name of Mary Pickford's and Douglas Fairbanks mansion?
+Pickfair
+10
+
+What was the name of matt dillon's band in singles?
+Citizen dick
+10
+
+What was the name of Michael Jackson's 1995 album?
+History
+10
+
+What was the name of mighty mouse's comic book girlfriend?
+Mitzi
+10
+
+What was the name of milla jovovich's character in the fifth element?
+Lelu
+10
+
+What was the name of Minnie Caldwell's cat in Coronation Street?
+Bobby
+10
+
+What was the name of Moses' wife?
+Zipporah
+10
+
+What was the name of mr magoo's dog?
+Bowser
+10
+
+What was the name of Murphy Brown's news program?
+FYI
+10
+
+What was the name of Nelson's flagship?
+Victory
+10
+
+What was the name of nero's murdered mother?
+Agrippina
+10
+
+What was the name of Norm's wife on Cheers?
+Vera
+10
+
+What was the name of Norman Beaton's barber's shop which was also the title of the TV series?
+Desmond's
+10
+
+What was the name of Odin's horse?
+Sleipnir
+10
+
+What was the name of old testament moses' sister?
+Miriam
+10
+
+What was the name of p t barnum's giant elephant?
+Jumbo
+10
+
+What was the name of President Eisenhower's wife?
+Mamie
+10
+
+What was the name of prince hamlet's father in the play hamlet?
+Hamlet
+10
+
+What was the name of Princess Anne's horse of which she had a bad fall and knocked her unconscious at the 1976 British Olympic Three-Day event?
+Goddwill
+10
+
+What was the name of Punky Brewster's dog?
+Brandon
+10
+
+What was the name of Queen Elizabeth II's childhood pet corgi?
+Dookie
+10
+
+What was the name of Raleighs first and unsuccessful colony in North America?
+Virginia
+10
+
+What was the name of rip van winkles dog?
+Wolf 
+10
+
+What was the name of Rochesters house in Jane Eyre?
+Thornfield hall
+10
+
+What was the name of romeo's personal servant?
+Balthasar
+10
+
+What was the name of rosco p. coltrain's dog in the series dukes of hazzards?
+Flash
+10
+
+What was the name of samson's father?
+Manoah
+10
+
+What was the name of sapper's bulldog?
+Drummond
+10
+
+What was the name of Sherlock Holmes landlady?
+Mrs hudson
+10
+
+What was the name of Sherlock Holmes' brother?
+Mycroft
+10
+
+What was the name of sherlock holmes's smarter brother?
+Mycroft
+10
+
+What was the name of Sir Isaac Newton's pet Pomeranian dog?
+Diamond
+10
+
+What was the name of stalin's daughter who defected to the u.s in 1967?
+Svetlana
+10
+
+What was the name of Steptoe and Son's horse?
+Hercules
+10
+
+What was the name of steptoes horse?
+Hercules
+10
+
+What was the name of tarzan's son in the books by edgar rice burroughs?
+Korak
+10
+
+What was the name of the 1950's bird mascot of 7-up?
+Fresh-up Freddie
+10
+
+What was the name of the 1979 theme album by Barbra Streisand whose song titles all contained a reference to water?
+Wet
+10
+
+What was the name of the Addams family's giant man-eating plant?
+Cleopatra
+10
+
+What was the name of the african lioness in born free?
+Elsa
+10
+
+What was the name of the aircraft produced in 1939 at Fisherman's Bend in Victoria?
+Wirraway
+10
+
+What was the name of the Akla-Seltzer boy?
+Speedy
+10
+
+What was the name of the Albanian-born Roman Catholic nun, founder of the Missionaries of Charity?
+Mother Teresa
+10
+
+What was the name of the American lunar module?
+Eagle
+10
+
+What was the name of the ancient trade route between China and the Mediterranean area?
+The silk road
+10
+
+What was the name of the ant people created by zeus?
+Myrmidons
+10
+
+What was the name of the attempted invasion of Cuba in 1961?
+The bay of pigs
+10
+
+What was the name of the aunt in the western how the west was won?
+Molly
+10
+
+What was the name of the b-29 that dropped the bomb on hiroshima?
+The enola gay
+10
+
+What was the name of the banqueting hall gutted by a fire at Windsor Castle in 1992?
+St george's hall
+10
+
+What was the name of the bar on Dukes of Hazzard?
+Boars Nest
+10
+
+What was the name of the bar/restaurant on THREE'S COMPANY?
+Regal Beagle
+10
+
+What was the name of the bartender on The Love Boat?
+Isaac Washington
+10
+
+What was the name of the bear in the life & times of grizzly adams?
+Ben
+10
+
+What was the name of the Beatles own film label which released Magical Mystery Tour?
+Apple films
+10
+
+What was the name of the Beatles' corporation after it was known as 'the Beatles and company'?
+Apple
+10
+
+What was the name of the Beatles' corporation before it was renamed 'apple'?
+Beatles and company
+10
+
+What was the name of the Beatles' longest lasting single?
+Hey jude
+10
+
+What was the name of the Bjork-fronted 80's band?
+The Sugarcubes
+10
+
+What was the name of the boat in which Gulliver was shipwrecked?
+The antelope
+10
+
+What was the name of the book and film about a boy who kept and trained rats?
+Willard
+10
+
+What was the name of the boy who befriended 'E.T' in the film of the same name?
+Elliot
+10
+
+What was the name of the British policewoman killed in the 1984 libyan embassy protest?
+Yvonne fletcher
+10
+
+What was the name of the bullfrog in joy to the world?
+Jeremiah
+10
+
+What was the name of the bus company that Ralph Kramdem worked for in the T.V. sitcom, The Honeymooners?
+The Gotham Bus Company
+10
+
+What was the name of the camel on the package of Camel Cigarettes?
+Joe
+10
+
+What was the name of the capsule in which john glenn orbited earth?
+Friendship
+10
+
+What was the name of the car in which Donald Campbell broke the land speed record?
+Bluebird
+10
+
+What was the name of the cartoon bird mascot of the U.S. Forest Service whos slogans included 'Give a hoot, don't pollute' and 'lend a hand, care for the land'?
+Woodsy Owl
+10
+
+What was the name of the castle that gave He-Man his powers?
+Greyskull.
+10
+
+What was the name of the character on the 1st Garbage Pail Kids Pack?
+Blasted Billy or Adam Bomb
+10
+
+What was the name of the character played by David Jason in the T. V comedy series 'Open all hours'?
+Granville
+10
+
+What was the name of the character played by marilyn monroe in the film some like it hot?
+Sugar kane
+10
+
+What was the name of the character, played by Bruce Willis, in the Die Hard films?
+John mclaine
+10
+
+What was the name of the charter granted by King John?
+Magna carta
+10
+
+What was the name of the childhood pet horse owned by President Franklin D. Roosevelt?
+Debby
+10
+
+What was the name of the circus freak elephant man?
+John merrick
+10
+
+What was the name of the city in the Bible which was built by Cain and named after his son?
+Enoch
+10
+
+what was the name of the club that was formed in 1700 by whigs who dined at the house of the pastry cook Christopher Cat?
+The kit-kat club
+10
+
+What was the name of the comic book character who couldn't talk, but replied to all by making sounds?
+Gerald mcboing boing
+10
+
+What was the name of the command module of Apollo 11, the first to orbit the moon (X-Jester's interjection: Apollo 8's command module (CSM-103) was the?
+Columbia
+10
+
+What was the name of the company founded by Prince Rupert in 1670 to trade furs with the North American Indians?
+Hudson bay company
+10
+
+What was the name of the company that the characters on Taxi worked for?
+Sunshine Cab Company
+10
+
+What was the name of the computer game Ken Thompson wanted to develop but had to write a faster operating system called Unix before he could make it?
+Space wars
+10
+
+What was the name of the craftsmen who built Pinocchio?
+Gepetto
+10
+
+What was the name of the craftsmen who built pinocchios?
+Gepetto
+10
+
+What was the name of the crosseyed lion in daktari?
+Clarence
+10
+
+What was the name of the deadly virus that agent Ethan Hunt (Tom Cruise) must destroy or recover in the film Mission Impossible 2?
+Chimera
+10
+
+What was the name of the demarcation line proposed in 1919 which formed the basis for the Soviet-polish border after the second world war?
+Curzon line
+10
+
+What was the name of the detective agency in Moonlighting?
+Blue Moon Detective Agency
+10
+
+What was the name of the dog in Fraggle Rock?
+Sprocket
+10
+
+What was the name of the dog owned by nick and nora Charles in the thin man?
+Asta
+10
+
+What was the name of the dolphin who, for more than two decades, guided steamships through perilous waters into safe harbour off new zealand?
+Pelorus jack
+10
+
+What was the name of the drug used as an anti-cancer agent and extracted from the blue periwinkle?
+Vincristine
+10
+
+What was the name of the Duke of Wellington, who defeated Napoleon at the battle of Waterloo?
+Arthur Wellesley
+10
+
+What was the name of the dynasty of the french kings that ended under the french revolution?
+Plantagenet
+10
+
+What was the name of the eagle that escaped from Regent's Park Zoo in 1965?
+Goldie
+10
+
+What was the name of the eagle that famously escaped from London Zoo in 1965?
+Goldie
+10
+
+What was the name of the educational computer toy with speech synthesiser produced by Texas Instruments in 1978 for teaching spelling?
+Speak and spell
+10
+
+What was the name of the failed Pop Star who made the semi-finals of Pop Idol?
+Darius
+10
+
+What was the name of the family featured in `father knows best'?
+Andrews
+10
+
+What was the name of the fashionable coats worn by Mods on their scooters in the 1960's?
+Parka
+10
+
+What was the name of the film John Candy was in the process of making when he suddenly passed away?
+Wagons East
+10
+
+What was the name of the film star Gene Autry's horse?
+Champion
+10
+
+What was the name of the film, starlette Natalie Wood was working on at the time of her untimely death in 1981?
+Brainstorm
+10
+
+What was the name of the final adversary in the video game super mario bros. 2?
+Wart
+10
+
+What was the name of the first 'talking movie'?
+The jazz singer
+10
+
+What was the name of the first artificial satellite?
+Sputnick 1
+10
+
+What was the name of the first atomic aircraft carrier?
+Uss enterprise
+10
+
+What was the name of the first cartoon Scratchy was in?
+That Happy Cat
+10
+
+What was the name of the first chimpanzee to travel in space?
+Ham
+10
+
+What was the name of the first drive-in restaurant to open in the U.S.A. in Dallas, Texas?
+The Pig Stand
+10
+
+What was the name of the first lighter than air airship to fly around the world?
+Graf zeppelin
+10
+
+What was the name of the first man made object to orbit the earth?
+Sputnik i
+10
+
+What was the name of the first motel which opened in California in 1925?
+Milestone Mo-Tel
+10
+
+What was the name of the first nuclear powered merchant ship?
+Savannah
+10
+
+What was the name of the first scheduled 747 Jumbo passenger flight, Jan 22 1970?
+Clipper young America
+10
+
+What was the name of the first sequel to king kong?
+Son of kong
+10
+
+What was the name of the first solo album by james iha?
+Let it come down
+10
+
+What was the name of the first space shuttle ever built?
+Enterprise
+10
+
+What was the name of the first steam-powered warship?
+Demologos
+10
+
+What was the name of the first synthetic plastic made in 1908?
+Bakelite
+10
+
+What was the name of the first US atomic submarine?
+Nautilus
+10
+
+What was the name of the first us communications satellite to amplify radio & tv signals?
+Telstar
+10
+
+What was the name of the fisherman in Hemingway's 'The Old Man & The Sea'?
+Santiago
+10
+
+What was the name of the flintstone's pet dinosaur?
+Dino
+10
+
+What was the name of the forbidden planet in the forbidden planet?
+Altair iv
+10
+
+What was the name of the French Line that faced Germanys Siegfried Line?
+The maginot line
+10
+
+What was the name of the funky van Scooby Doo and friends rode in?
+The Mystery Machine
+10
+
+What was the name of the gang that were responsible for the St. Valentines Day Massacre?
+Bugsy Moran Gang
+10
+
+What was the name of the German military intelligence and counter-intelligence organization in the second world war?
+Abwehr
+10
+
+What was the name of the German Republic of 1918-1933 overthrown by Hitler?
+Weimar republic
+10
+
+What was the name of the ghostly st bernard in topper?
+Neil
+10
+
+What was the name of the giant panda in the moscow zoo in 1977?
+An-an
+10
+
+What was the name of the girl who went to see The Wizard of Oz?
+Dorothy gale
+10
+
+What was the name of the girlfriend of Bazooka Joe in the comics included with Bazooka Bubble Gum?
+Zena
+10
+
+What was the name of the goldfish listed in the Guinness Book of Records who was the world's oldest goldfish?
+Tish
+10
+
+What was the name of the good witch in the wizard of oz?
+Glinda
+10
+
+What was the name of the government newspaper in ancient Rome?
+Acat Diurna Daily Happenings
+10
+
+What was the name of the group that nazi supporters formed in America?
+Bund
+10
+
+What was the name of the guardian angel in the film its a wonderful life?
+Clarence
+10
+
+What was the name of the helicopter on Riptide?
+The Mimi
+10
+
+What was the name of the helicopter service that was the cover for Airwolf?
+Santini Air
+10
+
+What was the name of the highly trained killers of feudal Japan?
+Ninjas
+10
+
+What was the name of the hill near Jerusalem where where Jesus was crucified?
+Calvary
+10
+
+What was the name of the hit by the archies?
+Sugar sugar
+10
+
+What was the name of the hollow hole-covered plastic ball kids used to hit instead of a baseball?
+Wiffle ball
+10
+
+What was the name of the home of the Care Bear Cousins?
+Forest of Feelings
+10
+
+What was the name of the home that sofia patrillo lived in before moving in with her daughter on the golden girls?
+Shady pines
+10
+
+What was the name of the horse ridden by napoleon bonapart at waterloo?
+Marengo
+10
+
+What was the name of the horse who reputedly could do arithmetic?
+Clever hans
+10
+
+What was the name of the host of Double Dare?
+Mark Summers
+10
+
+What was the name of the hotel which the unlikely duo checked into in the academy-acclaimed flim scent of a woman?
+Waldorf astoria
+10
+
+What was the name of the hound-dog puppet in the 1950's-60's tv commercials for Nestle's chocolate?
+Farfel
+10
+
+What was the name of the housekeeper in doctor finlays casebook?
+Janet
+10
+
+What was the name of the Hunchback of Notre dame?
+Quasimodo
+10
+
+What was the name of the i.b.m. computer which played chess against gary kasparov?
+Deep blue
+10
+
+What was the name of the inventor of root beer?
+Charles Hires
+10
+
+What was the name of the island from which wonder woman was discovered?
+Paradise island
+10
+
+What was the name of the Japanese emperor in power until the end of the second world war?
+Hirohito
+10
+
+What was the name of the killer plant that ate humans in the movie, The Little Shop of Horrors?
+Audrey II
+10
+
+What was the name of the King of Siam? (the King of who's life is portrayed in The King and I)?
+Mongkut
+10
+
+What was the name of the land of the title character in in the Peter, Paul and Mary song, 'Puff the Magic Dragon'?
+Honalee
+10
+
+What was the name of the largest British battleship in WW II?
+Hms vanguard
+10
+
+What was the name of the largest diamond ever found, presented to Edward VII by the south african govt and now set into the English Crown Jewels?
+Cullinan diamond
+10
+
+What was the name of the largest German WWII battleship?
+Bismarck
+10
+
+What was the name of the largest pearl ever found, with a circum. of four and a half inches?
+The hope pearl
+10
+
+What was the name of the last film where george burns played god?
+Oh god, you
+10
+
+What was the name of the last King of Egypt?
+Farouk
+10
+
+What was the name of the last Shah of Iran's secret police force?
+Savak
+10
+
+What was the name of the little girl who owned Bagpuss in the children's TV series?
+Emily
+10
+
+What was the name of the local wateringhole (bar) in the TV Sitcom, Mad About You?
+Riff's Bar
+10
+
+What was the name of the London society founded by Whig politicians at the time of James II?
+Kit kat club
+10
+
+What was the name of the lunar lander used on apollo 11?
+Eagle
+10
+
+What was the name of the magazine on Suddenly Susan?
+The Gate
+10
+
+What was the name of the male stunt dog who was the first collie to portray 'Lassie' on screen, in the film ' Lassie, Come Home?
+Pal
+10
+
+What was the name of the mayor's son in the series lobo?
+Birdie
+10
+
+What was the name of the medical journal established by Dr Thomas Wakely?
+The lancet
+10
+
+What was the name of the memory game of the 80's which was a random-sequincing unit that your were made to recall an ever growing series of colours and notes?
+Simon
+10
+
+What was the name of the monster that attacked luke in the trash compactor in Star Wars?
+A dianogain 
+10
+
+What was the name of the most hunted group of German terrorists during the 1970's?
+Baader-meinhof
+10
+
+What was the name of the movement founded by the pole lech walesa?
+Solidarity
+10
+
+What was the name of the multi-colored cube you had to re-organize?
+Rubik Cube
+10
+
+What was the name of the navajo Indian sidekick of red ryder?
+Little beaver
+10
+
+What was the name of the nazi party deputy who was held in captivity for 46 years until his alleged suicide in 1987?
+Rudolf hess
+10
+
+What was the name of the neighbors that lived next door to ALF??
+Raquel and Trevor Achmanic
+10
+
+What was the name of the newspaper published by Charles foster kane?
+Enquirer
+10
+
+What was the name of the nightclub owner in 'Casablanca'?
+Rick stein
+10
+
+What was the name of the North Sea oil rig that overturned in 1980?
+Alexander keilland
+10
+
+What was the name of the nose-twitching witch in the sitcom bewitched?
+Samantha stevens
+10
+
+What was the name of the nuclear missle defense system Reagan proposed?
+Star Wars
+10
+
+What was the name of the number one single by Tamperer featuring Maya?
+Feel it
+10
+
+What was the name of the old fireman on 'leave it to beaver'?
+Gus
+10
+
+What was the name of the older brother on Happy Days?
+Chuck Cunningham
+10
+
+What was the name of the once Morrissey-fronted band in the 80's?
+The Smiths
+10
+
+What was the name of the operatic diva who gave her name to a peach dessert?
+Dame nellie melba
+10
+
+What was the name of the original MGM lion mascot?
+Volney
+10
+
+What was the name of the owner of the talking horse, Mr. Ed on TV?
+Wilbur post
+10
+
+What was the name of the party dog that that was Budwiser's mascot in the late eighties?
+Spuds McKenzie
+10
+
+What was the name of the pet German shepherd owned by Eddie Haskell in the TV sitcom, Leave it to Beaver?
+Wolf
+10
+
+What was the name of the pet mongrel dog of President Lyndon Johnson found by Johnson's daughter Luci at a Texan gas station?
+Tuki
+10
+
+What was the name of the pet monkey aboard the ship venture?
+Ignatz
+10
+
+What was the name of the Phantom's horse?
+Hero
+10
+
+What was the name of the pinball machine in the film 'tommy'?
+Wizard
+10
+
+What was the name of the plane that Charles Kingsford Smith flew across the Pacific in 1928 (the)?
+Southern cross
+10
+
+What was the name of the plane that Charles lindbergh used to cross the atlantic solo?
+Spirit of st louis
+10
+
+What was the name of the plane to drop the SECOND atomic bomb on Japan in WW II?
+Bock's car
+10
+
+What was the name of the police character played by roy scheider in the film jaws?
+Martin brody
+10
+
+What was the name of the previous ?1 coin?
+The sovereign
+10
+
+What was the name of the Prime Minister in Yes Prime Minister?
+Jim hacker
+10
+
+What was the name of the principal on Saved By the Bell?
+Mr. Richard Belding
+10
+
+What was the name of the Protestant revolt against the supremacy of the Pope?
+Reformation
+10
+
+What was the name of the research aircraft flown by Chuck Yeager when he broke the sound barrier in 1947?
+Bell x-1
+10
+
+What was the name of the restaurant above Cheers?
+Melville's
+10
+
+What was the name of the robot on Buck Rogers?
+Twiggy
+10
+
+What was the name of the Royal Navy's first nuclear submarine?
+H m s dreadnought
+10
+
+What was the name of the ruling dynasty of scottland from 1371 to 1714?
+Stuart
+10
+
+What was the name of the ruling house of France at the time of the French Revolution?
+Bourbon
+10
+
+What was the name of the Russian submarine that perished with all her crew on board last year?
+Kursk
+10
+
+What was the name of the school mistress in The facts of Life?
+Mrs. Edna Garrett
+10
+
+What was the name of the Scottish hero in Braveheart?
+William wallace
+10
+
+What was the name of the seasick sea serpent?
+Cecil
+10
+
+What was the name of the SECOND moon landing mission?
+Apollo 12
+10
+
+What was the name of the second Pope?
+St linus
+10
+
+What was the name of the secret empire?
+Chimera
+10
+
+What was the name of the sect that invaded the 1972 olympics, killing eleven israeli athletes?
+Black september
+10
+
+What was the name of the sharp witted butler in soap?
+Benson
+10
+
+What was the name of the ship commanded by Captain James Cook on his first circumnavigation of the globe from 1768 to 1771?
+Endeavour
+10
+
+What was the name of the ship that came to the rescue of 700 of the titanic's survivors?
+The carpathia
+10
+
+What was the name of the ship that took King Edward III (known as the Duke of Windsor) to France after his abdication?
+HMS Fury
+10
+
+What was the name of the ship, the survivors of which were rescued by Grace Darling, her father and others?
+Forfarshire
+10
+
+What was the name of the short lived spin-off of Three's Company?
+The Ropers
+10
+
+What was the name of the short man on fantasy island that always rang the bell in the begging?
+Tattoo
+10
+
+What was the name of the short stabbing sword used by Roman soldiers?
+Gladius
+10
+
+What was the name of the show that featured Larry Appleton and his zany foreign cousin?
+Perfect Strangers
+10
+
+What was the name of the show that featured Sniglets?
+Not Necessarily The News
+10
+
+What was the name of the silent clown on the howdy doody show?
+Clarabelle
+10
+
+What was the name of the site where the Boston Tea party occurred in December of 1773?
+Griffin's Wharf
+10
+
+What was the name of the smooth-talking alter ego of Latka Gravas (Andy Kaufman) who speaks perfect, unaccented English in the TV sitcom Taxi?
+Vic Ferrari
+10
+
+What was the name of the South African Prime Minister murdered in 1966?
+Hendrik verwoerd
+10
+
+What was the name of the Soviet Security Service immediately after the October Revolution?
+Cheka
+10
+
+What was the name of the space shuttle that exploded in mid air shortly after takeoff?
+Challenger
+10
+
+What was the name of the space shuttle that exploded?
+Challenger
+10
+
+What was the name of the space station restaurant in 2001:a space odyssey?
+Howard johnson's
+10
+
+What was the name of the submarine that sank in the Barents Sea in August this year?
+Kursk
+10
+
+What was the name of the submarine which sank the General Belgrano during the Falklands conflict?
+Hms conqueror
+10
+
+What was the name of the supercomputer in the TV Series Quantum Leap?
+Ziggy
+10
+
+What was the name of the Swedish Prime Minister who was assassinated in 1986?
+Olof palme
+10
+
+What was the name of the Swedish Prime Minister, assassinated in Stockholm in 1986 as he was walking home from the cinema with his wife?
+Olaf palme
+10
+
+What was the name of the sword that young arthur pulled from a stone?
+Excalibur
+10
+
+What was the name of the synagogue ruler whose daughter Jesus raised?
+Jairus
+10
+
+What was the name of the tavern where all the folks of hazzard county used to hang out?
+Boar's nest
+10
+
+What was the name of the teenage witch on the archie show?
+Sabrina
+10
+
+What was the name of the Texas grocery store robbed by Clyde Barrow to impress Bonnie Parker in the film, Bonnie & Clyde?
+Ritt's Groceries
+10
+
+What was the name of the tiny crackers that were shaped like the suits of playing cards?
+Sociables
+10
+
+What was the name of the Titanic's sister ship?
+Olympic
+10
+
+What was the name of the town the beverly hillbillies came from?
+Bugtustle
+10
+
+What was the name of the toy spaceman in Toy Story?
+Buzz lightyear
+10
+
+What was the name of the train on the tv series petticoat junction?
+Cannonball
+10
+
+What was the name of the two space shuttles in 'armegeddon'?
+Freedom and
+10
+
+What was the name of the union jack that was used to capture blackbeard off ocracoke island in 1718?
+Ranger
+10
+
+What was the name of the Volkswagen in Walt Disney's the love bug?
+Herbie
+10
+
+What was the name of the warner bros. animated cartoon in which bugs bunny made his 27th july 1940 debut?
+A wild hare
+10
+
+What was the name of the Webwoman's sidekick?
+Spinner
+10
+
+What was the name of the wright brothers plane?
+Flyer
+10
+
+What was the name of the young orphaned clerk in the iron horse?
+Barnabas
+10
+
+What was the name of this song released by 'the romantics' in february 1980?
+What i like about you
+10
+
+What was the name of thor heyerdahl's bamboo and balsa wood boat?
+Kon-tiki
+10
+
+What was the name of tim holt's horse?
+Duke
+10
+
+What was the name of tv's channel islands detective?
+Bergerac
+10
+
+What was the name of Vanessa's last boyfriend on The Cosby Show?
+Dabnes
+10
+
+What was the name of ventriloquist Paul Winchell's most popular dummy?
+Jerry mahoney
+10
+
+What was the name of Wagner's last Opera, first performed in 1882?
+Parsifal
+10
+
+What was the name of Wilbur Posts talking horse?
+Mr ed
+10
+
+What was the name of Woodrow Wilson's pet ram?
+Old Ike
+10
+
+What was the name of zorro's chief foe in zorro?
+Monastario
+10
+
+What was the name pf the British Policewoman killed in the 1984 Libyan embassy protest?
+Yvonne fletcher
+10
+
+What was the nationality of Franz Liszt?
+Hungarian
+10
+
+What was the nationality of hans christian andersen?
+Danish
+10
+
+What was the nationality of Paul Cezanne?
+French
+10
+
+What was the nationality of sir winston churchill's mother?
+American
+10
+
+What was the nationality of the composer Arnold Schoenberg?
+Austrian
+10
+
+What was the nationality of the composer Cesar Franck?
+Belgian
+10
+
+What was the nationality of the first woman in space?
+Russian
+10
+
+What was the nationality of the very first man to stand on the sumit of Mount Everest?
+New zealander
+10
+
+What was the native language of Bach, Goethe & Freud?
+German
+10
+
+What was the native language of jesus christ?
+Aramaic
+10
+
+What was the natural disaster that killed 4 people and damaged 1200 buildings in the Colchester area in 1884?
+Earthquake
+10
+
+What was the New Kids On The Block number one from January 1990?
+Hangin' tough
+10
+
+What was the nick name of the German Army division that was fighting in North Africa in WWII?
+Afrika korps
+10
+
+What was the nick name of the historian Thomas Carlyle?
+The sage of chelsea
+10
+
+What was the nickname for Henry Coopers left hook?
+Henrys hammer
+10
+
+What was the nickname for the model T Ford?
+Tin lizzie
+10
+
+What was the nickname of bank robber Charles Floyd, killed in a shoot-out in 1934?
+Pretty boy
+10
+
+What was the nickname of Charles Heidsick, the 19th Century French wine producer?
+Champagne charlie
+10
+
+What was the nickname of Dr McCoy in Star Trek?
+Bones
+10
+
+What was the nickname of English statesman Oliver Cromwell?
+Old Noll
+10
+
+What was the nickname of film comedian Joseph Francis Keaton?
+Buster
+10
+
+What was the nickname of former Oasis guitarist Paul Arthurs?
+Bonehead
+10
+
+What was the nickname of frontierswoman Martha Jane Burk?
+Calamity Jane
+10
+
+What was the nickname of George,Prince of Wales,son of GeorgeIII?
+Prinny
+10
+
+What was the nickname of New York financier james buchanan brady?
+Diamond jim
+10
+
+What was the nickname of Peter I of Russia?
+The great
+10
+
+What was the nickname of poet Robert Service?
+The Canadian Kipling
+10
+
+What was the nickname of singer Mel Torme?
+The Velvet Frog
+10
+
+What was the nickname of Steffi Graf?
+Fraulein Forehand
+10
+
+What was the nickname of the Apollo 16 command module?
+Casper
+10
+
+What was the nickname of the basketball player Earvin Johnson?
+Magic
+10
+
+What was the nickname of the British pirate edward teach?
+Blackbeard
+10
+
+What was the nickname of the first typerwriter , invented by Christopher Sholesand and patented in 1866?
+Literary Piano
+10
+
+What was the nickname of the German fighter pilot Baron von Richthofen?
+The red baron
+10
+
+What was the nickname of the one time cartoon mascot of Esso (Standard Oil of New Jersey?
+Little Oil Drop
+10
+
+What was the nickname of the pirate Edward Teach?
+Blackbeard
+10
+
+What was the nickname of the world war 1 German flying ace?
+The red baron
+10
+
+What was the nickname of TLC's Lisa Lopez?
+Left eye
+10
+
+What was the nickname of US Civil War general Thomas Jackson?
+Stonewall
+10
+
+What was the nickname of William I of England?
+The conqueror
+10
+
+What was the nilometer used for in Ancient Egypt?
+Measure the depth of the nile
+10
+
+What was the number of the m.a.s.h. unit in the film and television series of the same name?
+4077
+10
+
+What was the number of the squadron which flew the Dambusters mission in 1943?
+617
+10
+
+What was the obsessive philosophy of the small-endians in Gullivers Travels?
+Boiled eggs should be opened at the small end
+10
+
+What was the occupation of Charlie Brown's father?
+Barber
+10
+
+What was the occupation of jack the ripper's five victims?
+Prostitution
+10
+
+What was the occupation of jay gatsby?
+Bootlegger
+10
+
+What was the occupation of most American presidents prior to politics?
+Lawyer
+10
+
+What was the occupation of the person that invented the fortune cookie?
+Noodle maker
+10
+
+What was the officail residence of the British monarch before Buckingham Palace?
+St james palace
+10
+
+What was the official soft drink of the 1988 summer olympics?
+Coca-cola
+10
+
+What was the only #1 hit of van halen's career?
+Jump
+10
+
+What was the only book that Margaret Mitchell wrote?
+Gone with the wind
+10
+
+What was the only dummy awarded an academy award?
+Charlie mccarthy
+10
+
+What was the only easel picture michelangelo painted?
+Holy family
+10
+
+What was the only episode of Star Trek to run in two parts?
+Menagerie
+10
+
+What was the only film starring mae west and wc fields?
+My little chickadee
+10
+
+What was the only hit single by Jaggerz?
+The Rapper
+10
+
+What was the only nation to register zero births in 1983?
+Vatican City
+10
+
+What was the only novel to be written by Emily Bronte?
+Wuthering heights
+10
+
+What was the only state McGovern carried in the 1972 election?
+Massachusetts
+10
+
+What was the operative name of WWI spy Geertruida Zelle?
+Mata hari
+10
+
+What was the Oregon Pine renamed to honour its discoverer, a Scottish botanist?
+Douglas fir
+10
+
+What was the original color of the white house?
+Grey
+10
+
+What was the original colour of post boxes?
+Green
+10
+
+What was the original function of Dr George Merryweathers Tempest Prognosticator, a machine activated by the movement of leeches?
+Forecast storms
+10
+
+What was the original name Charles Schultz had for Peanuts?
+Li'l Folks
+10
+
+What was the original name for the drivers safety device on electric and diesel trains?
+Dead mans handle
+10
+
+What was the original name given by Lord Stanley for Hockey's Stanley Cup?
+The Dominion Hockey Challenge Cup
+10
+
+What was the original name of Astroturf?
+Chem-grass
+10
+
+What was the original name of brown university?
+Rhode island college
+10
+
+What was the original name of Duran Duran?
+RAF 
+10
+
+What was the original name of Los Angeles?
+El pueblo de nuestra senora la reina de Los Angeles del rio porciuncula
+10
+
+What was the original name of President Tito of Yugoslavia?
+Josip broz
+10
+
+What was the original name of the communications satellite Intelsat?
+Early bird
+10
+
+What was the original name of the country music group, The Oak Ridge Boys?
+The Country Cut-ups
+10
+
+What was the original name of the famous Avon Cosmetic Company?
+California Perfume Company
+10
+
+What was the original name of the first Tupperware product sold by Earl Tupper in 1947?
+Wonder Bowl
+10
+
+What was the original name of the Frisbee?
+Pluto Platter
+10
+
+What was the original name of the internet?
+Arpanet
+10
+
+What was the original name of the Italian republic?
+Cisalpine republic
+10
+
+What was the original name of the singer tina turner?
+Annie mae bullock
+10
+
+What was the original surname of the British royal family before it was changed to windsor?
+Saxe-coburg-gotha
+10
+
+What was the original title of the game show 'to tell the truth'?
+Nothing but the truth
+10
+
+What was the original trade of william morris the car manufacturer?
+Bicycle repairman
+10
+
+What was the original working title of the Broadway musical West Side Story?
+East Side Story
+10
+
+What was the painter Picasso's first name?
+Pablo
+10
+
+What was the pen name of Eric Blair?
+George orwell
+10
+
+What was the pen name of Samuel Clements?
+Mark twain
+10
+
+What was the pen name of samuel langhorne clemens?
+Mark twain
+10
+
+What was the pen-name of Eric Arthur Blair?
+George orwell
+10
+
+What was the penalty (in britain) in 1810 for stealing a pocket handkerchief?
+Hanging
+10
+
+What was the period of conflict between singapore and indonesia in the mid-1960s called?
+Konfrontasi
+10
+
+What was the pharon?
+Lighthouse
+10
+
+What was the philosophy of Jean Paul Sartre called?
+Existentialism
+10
+
+What was the pink panther in the film the pink panther?
+Diamond
+10
+
+What was the poet Percy Shelleys middle name?
+Bysshe
+10
+
+What was the popular name for the paper currency issued by the Federal government during the American Civil War?
+Greenbacks
+10
+
+What was the popular term for the dividing line between the West and the Eastern Bloc?
+The iron curtain
+10
+
+What was the pre-Christian definition of a gentile?
+Non-jewish
+10
+
+What was the pre-war German name for the Baltic city which is now Russian and called Kaliningrad?
+Konigsberg
+10
+
+What was the price ascribed to the tag on the country comedienne Minnie Pearls hat?
+1,98
+10
+
+What was the Princess of Wales's maiden name?
+Spencer
+10
+
+What was the principal wood used by Thomas Chippendale during the 18th century?
+Mahogany
+10
+
+What was the principial unit of the Roman army (3000 to 6000 soldiers)?
+Legion
+10
+
+What was the print left on the car in the boat in the movie titanic?
+A handprint
+10
+
+What was the profession of Andrea Palladio?
+Architecture
+10
+
+What was the profession of Dick Derrick after whom the Derrick crane was named?
+Hangman
+10
+
+What was the profession of J.B.Dunlop, inventor of the pneumatic tyre?
+Vet
+10
+
+What was the profession of lancelot 'capability' brown?
+Landscape gardener
+10
+
+What was the profession of our man higgins?
+Butler
+10
+
+What was the profession of Ted Bundy?
+Attorney
+10
+
+What was the profession of the 2 ladies in the childrens nursery rhyme Lucy Locket?
+Prostitutes
+10
+
+What was the profession of the father of the Hardy boys?
+Detective
+10
+
+What was the profession of the singer of the 1963 hit dominique?
+Nun
+10
+
+What was the profession of William Semple who in 1869 became the first man to add sugar to chewing gum?
+Dentist
+10
+
+What was the pseudonym of Vladimir Illych Ulyanov?
+Nikolai Lenin
+10
+
+What was the purchase price of the Eastman Kodak 'Brownie' camera when introduced in 1900?
+One dollar
+10
+
+What was the queen mothers maiden name?
+Bowes-lyon
+10
+
+What was the real first name of Holly Golightly (Audrey Hepburn) in the film, 'Breakfast At Tiffany's?
+Lulamae
+10
+
+What was the real first name of Tennessee Williams?
+Thomas
+10
+
+What was the real name of Boris Karloff?
+William Henry pratt
+10
+
+What was the real name of fred astaire?
+Frederick austerlitz
+10
+
+What was the real name of malcolm X?
+Malcolm little
+10
+
+What was the real name of oscar wilde?
+Fingal o'flahertie wills
+10
+
+What was the real name of the actress, Gloria Swanson?
+Gloria may josephine svensson
+10
+
+What was the real name of the boxer Sugar Ray Robinson?
+Walker smith
+10
+
+What was the real name of the gangster known as pretty boy?
+Charles floyd
+10
+
+What was the real name of the hospital on St. Elsewhere?
+St. Eligius
+10
+
+What was the real name of the monk known as rasputin?
+Grigori efimovich
+10
+
+What was the real name of the novelist George Eliot?
+Mary Ann Evans
+10
+
+What was the reform movement in malaysia and indonesia during the asian economic crisis called?
+Reformasi
+10
+
+What was the registration number of the original 'enterprise' on startrek?
+Ncc-1701
+10
+
+What was the religion of Indias Mogul emperors?
+Muslim
+10
+
+What was the Rocket built by Robert Stephenson in 1829?
+A steam engine
+10
+
+What was the Rolling Stones' first No. 1 hit?
+It's all over now
+10
+
+What was the Roman name for Odysseus?
+Ulysse
+10
+
+What was the royal name 'mountbatten' originally?
+Battenberg
+10
+
+What was the royal residence after st james court?
+Buckingham palace
+10
+
+What was the royal residence before buckingham palace?
+St james court
+10
+
+What was the royal surname 'windsor' originally?
+Saxe-coburg
+10
+
+What was the Russian city of St. Petersburg called from 1924 to 1991?
+Leningrad
+10
+
+What was the Russian equivalent of Skylab?
+Salyut
+10
+
+What was the scarecrow in the wonderful wizard of oz lacking?
+Brain
+10
+
+What was the scorpions first lp called?
+Lonesome crow
+10
+
+What was the screen name of the lead character in The Untouchables?
+Elliot
+10
+
+What was the second biggest movie hit of 1987 after beverly hills cop ii?
+Fatal attraction
+10
+
+What was the secret identity of don diego de la vega?
+Zorro
+10
+
+What was the secret identity of private jack weston in comic books?
+Minute man
+10
+
+What was the secret service code name for Lyndon Johnson?
+Volunteer
+10
+
+What was the secret service code name for singer Frank Sinatra?
+Napoleon
+10
+
+What was the secret service codename for Caroline Kennedy?
+Lyric
+10
+
+What was the serial number of the uss enterprise?
+Ncc1701
+10
+
+What was the series of campaigns to take the Holy Land from the Muslim Turks called?
+Crusades
+10
+
+What was the setting for 'The Sound of Music'?
+Austria
+10
+
+What was the setting for walk, don't run?
+Tokyo olympics
+10
+
+What was the setting of the john wayne film the quiet man?
+Ireland
+10
+
+What was the shape of the first dirigible?
+Football
+10
+
+What was the silver wedding year for the Queen and Duke of Edinburgh?
+1972
+10
+
+What was the sister ship of the Olympic?
+Titanic
+10
+
+What was the site of the baby m trial?
+New jersey
+10
+
+What was the site of the first modern day Olympic Games?
+Athens
+10
+
+What was the slogan of the Bolsheviks at the time of the Russian Revoluation?
+Peace! Bread! Land!
+10
+
+What was the song name of diana ross' 'every time you touch me i become a hero'?
+When you tell me that you love me
+10
+
+What was the specified fuel for f1 use at the start of the 1958 season?
+Aviation spirit
+10
+
+What was the Spice Girls' first single after the departure of Geri Halliwell?
+Viva forever
+10
+
+What was the sport of bowling called in the 19th century?
+Nine-pins
+10
+
+What was the sport of brothers max and buddy baer?
+Boxing
+10
+
+What was the sr-ni which made its first English channel crossing on 25th july 1959?
+Hovercraft
+10
+
+What was the stage name of asa yoelson?
+Al jolson
+10
+
+What was the stage name of Steve McGarret's sidekick, Danno, in the Hawaii 5-O tv series?
+James MacArthur
+10
+
+What was the subject matter of the 1952 talk show mr arsenic?
+Crime
+10
+
+What was the supreme policy making bureau of the Soviet Communist Party?
+Politburo
+10
+
+What was the surname of author ford maddox?
+Ford
+10
+
+What was the surname of Nicholas II, lamented czar of Russia?
+Romanov
+10
+
+What was the surname of Rob Roy?
+Mcgregor
+10
+
+What was the surname of the brothers who invented the ballpoint pen in 1938?
+Biro
+10
+
+What was the surname of the English King Henry VIII?
+Tudor
+10
+
+What was the surname of the sisters in Little Women?
+March
+10
+
+What was the surname of the story writers Jakob and Wilhelm?
+Grimm
+10
+
+What was the symbol for the house of lancaster?
+Red rose
+10
+
+What was the tate gallery criticised for buying 128 of in 1976?
+Bricks
+10
+
+What was the ten percent levy of farm produce given to the church known as?
+Tithe
+10
+
+What was the term for a printers errand boy and a boy who took the printed sheets off the press?
+Printers devil
+10
+
+What was the the Flying Hamburger?
+Diesel train
+10
+
+What was the theme name of Expo 67, The Montreal World's Fair of 1967?
+Man and his World
+10
+
+What was the theme song for 'the wizard of oz'?
+Over the rainbow
+10
+
+What was the theme song in the series the greatest American hero?
+Believe it or not
+10
+
+What was the theme song of the Glenn Miller Orchestra?
+Moonlight Serenade
+10
+
+What was the theme song og the rome olympics?
+Arrivederci roma
+10
+
+What was the then title of the man who married Elizabeth Bowes-Lyon in 1923?
+Duke of york
+10
+
+What was the ticket price for the 3 day Woodstock concern in 1969?
+$18.00 
+10
+
+What was the ticket price to Frank Sinatra's first solo performance at the Paramount Theatre in New York City in 1942?
+35 cents
+10
+
+What was the time for j l herlihy's cowboy?
+Midnight
+10
+
+What was the title bestowed to Roman emperors from Augustus to Hadrian?
+Caesar
+10
+
+What was the title of Agatha Christie's first Hercule Poirot novel?
+The mysterious affair at styles
+10
+
+What was the title of Art Garfunkels 1979 theme song for Watership Down?
+Bright eyes
+10
+
+What was the title of bon jovi's first album?
+Bon jovi
+10
+
+What was the title of Charles Dicken's unfinished novel?
+The mystery of edwin drood
+10
+
+What was the title of Charlie Chaplin's last film?
+Limelight
+10
+
+What was the title of Joe Loss's signature tune?
+In the mood
+10
+
+What was the title of Jung Chang's account of growing up in China?
+Wild swans
+10
+
+What was the title of kevin's byline story in st. elmos fire?
+The meaning of life
+10
+
+What was the title of Lulu's first top ten single?
+Shout
+10
+
+What was the title of Mantovani's signature tune?
+Charmaine
+10
+
+What was the title of oasis's first uk no 1?
+Some might say
+10
+
+What was the title of Oliver Cromwell when he was head of the Commonwealth?
+Lord protector
+10
+
+What was the title of polanski's horror spoof?
+Dance of the vampires
+10
+
+What was the title of sonny bono's solo show?
+Sonny comedy revue
+10
+
+What was the title of the commodores' hit 'she's mighty mighty just lettin' it all hang out'?
+Brick house
+10
+
+What was the title of the follow-up to the television series Please Sir?
+The fenn street gang
+10
+
+What was the title of the novel character Paul Sheldon working on in the Stephen King film 'Misery'?
+Fast Cars
+10
+
+What was the title of the novel which won the 1998 Booker prize?
+Amsterdam
+10
+
+What was the title of the Shakin' Stevens hit which topped the charts in 1981?
+Green door
+10
+
+What was the title of the soap opera segment on the carol burnett show?
+As the stomach turns
+10
+
+What was the title of the winning song in the 1997 Eurovision Song Contest?
+Love shine a light
+10
+
+What was the title of william golding's book about boys marooned on an island in the pacific?
+Lord of the flies
+10
+
+What was the title of zz tops first single released in1969?
+Salt lick
+10
+
+What was the top rental movie of 1988?
+Who framed roger rabbit
+10
+
+What was the top single in 1973 by dawn?
+Tie a yellow ribbon around the old oak tree
+10
+
+What was the top single record in 1950 by the weavers?
+Goodnight irene
+10
+
+What was the top single record in 1956 by elvis presley?
+Don't be cruel
+10
+
+What was the top single record in 1957 by debbie reynolds?
+Tammy
+10
+
+What was the top technology manual of 1996, at over one million sales?
+Windows 95 for dummies
+10
+
+What was the top-rated series for the 1980-81 season?
+Dallas
+10
+
+What was the tortoise called in the childrens programme the flower pot men?
+Slowcoach
+10
+
+What was the trademark of mobile gasoline?
+Flying red horse
+10
+
+What was the Tyburn Tree famous for?
+Hanging
+10
+
+What was the unit of work in the c.g.s. system, which was replaced by the Joule in the S.I. system?
+The erg
+10
+
+What was the venue for the 1990 World Snooker championship?
+The crucible theatre
+10
+
+What was the very first james bond movie that was shown in the 80'swhat was the last?
+For your eyes only and licence to kill
+10
+
+What was the very first lifesaver flavour?
+Peppermint
+10
+
+What was the war during Regan's first term that took place on an island in the carribean?
+Grenada
+10
+
+What was the winged horse of greek mythology?
+Pegasus
+10
+
+What was the world land speed record in 1906?
+128 mph
+10
+
+What was the world's longest fence built to keep out?
+Dingos
+10
+
+What was the world's principal Christian city before it fell to the Ottoman Turks in 1453?
+Constantinople
+10
+
+What was the worlds first breakfast cereal sold commercially?
+Sgredded wheat
+10
+
+What was the worlds first city with more than one tv station?
+New york
+10
+
+What was the worst team in major league baseball in 1991?
+Cleveland indians
+10
+
+What was the wright bothers' first plane called?
+Flyer
+10
+
+What was the year of the Suez crisis?
+1956
+10
+
+What was the year of the three day week?
+1974
+10
+
+What was the youngest age at which someone was allowed to work in Britain after 1819?
+Nine years old
+10
+
+What was the zaire river formerly known as?
+Congo
+10
+
+What was the. first bird that Noah sent from the Ark?
+Raven
+10
+
+What was theme song of the 1960 Rome olympics?
+Arrivederci roma
+10
+
+What was then name of the eagle that famously escaped from London zoo in 1965?
+Goldie
+10
+
+What was Thomas Edison's middle name?
+Alva
+10
+
+What was Thomas Hardys original profession?
+Architecture
+10
+
+What was thr first non English club to win the FA Cup?
+Cardiff city
+10
+
+What was Timothy Evans given in 1966 after being hanged in 1950?
+A pardon
+10
+
+What was tokyo originally known as?
+Edo
+10
+
+What was Tony Nelson's job in the 1960s sitcom 'I Dream of Jeannie'?
+Astronaut
+10
+
+What was transformed into a carriage for cinderella?
+Pumpkin
+10
+
+What was Trotsky's first name?
+Leon
+10
+
+What was true love's gift on the second day of christmas?
+Two turtle doves
+10
+
+What was tv's top-rated series from 1957 to 1961?
+Gunsmoke
+10
+
+What was TW3?
+That was the week that was
+10
+
+What was u2's first album released in the u.s?
+Boy
+10
+
+What was unsuccessfully laid as a trail by hansel?
+Breadcrumbs
+10
+
+What was unusual about the 1985 production of The Taming of the Shrew at the Theatre Royal Stratford East?
+An all woman cast
+10
+
+What was unusual about the Roman Consul Incitatus?
+It was a horse
+10
+
+What was used for blood in the film 'psycho'?
+Chocolate syrup
+10
+
+What was used in ancient egypt to measure the depth of the Nile?
+Nilometer
+10
+
+What was used to kindle life in Dr. Frankenstein's monster?
+Lightning
+10
+
+What was used to signal advance into battle in world war i for the east surrey regiment?
+A man dribbling a Football ball
+10
+
+What was Van Halen's first album after Dave Lee Roth left?
+5150
+10
+
+What was Venus (Goddess of Love) most favoured flower?
+Rose
+10
+
+What was Verdi's last Opera, first performed in 1893?
+Falstaff
+10
+
+What was victor's wife called in one foot in the grave?
+Margaret
+10
+
+What was W H Carriers real cool invention?
+Air conditioning
+10
+
+What was Wells Fargos main form of transport?
+The stagecoach
+10
+
+What was Wembley's Olympic year?
+1948
+10
+
+What was Wild Bill Hockok's nickname when he was a kid?
+Duck Bill
+10
+
+What was Will Smiths character called in the 1999 Blockbuster 'Enemy of the state'?
+Robert dean
+10
+
+What was William Golding's first novel, published in 1953?
+Lord of the Flies
+10
+
+What was William H. Bonney's nickname?
+Billy the kid
+10
+
+What was william tell's nationality?
+Swiss
+10
+
+What was william the conqueror's survey of England prepared from 1085-85 called?
+Domesday book
+10
+
+What was Wilma Flintstone's maiden name?
+Wilma Slaghoopal
+10
+
+What was winston churchill's middle name?
+Spencer
+10
+
+What was Winston Churchill's only novel?
+Savrola
+10
+
+What was winston churchill's wife's name?
+Clementine
+10
+
+What was won by John Steinbeck in 1962 and Sir Winston Churchill in 1953?
+Nobel prize for literature
+10
+
+What was world war 1 known as before world war 2?
+The great war
+10
+
+What was writer Charles Dodgson's pseudonym?
+Lewis Carroll
+10
+
+What was wrong with lord byron's foot?
+Club
+10
+
+What was wyatt earp's long barreled pistol called?
+Buntline special
+10
+
+What was yankee doodle riding on when he came to town?
+Pony
+10
+
+What was yosser's catchword?
+Gizzajob
+10
+
+What was zambia formerly known as?
+Northern rhodesia
+10
+
+What was zimbabwe formerly known as?
+Southern rhodesia
+10
+
+What was zorro's real name?
+Don diego de la vega
+10
+
+What was zorro's trademark?
+Mask
+10
+
+What watch was the official timekeeper of the 1988 olympics?
+Omega
+10
+
+What water sport, other than fishing, might you catch crabs in?
+Rowing
+10
+
+What waterway did Britain buy a share of in 1875?
+Suez canal
+10
+
+What waveform is at the longest end of the electromagnetic spectrum?
+Radio waves
+10
+
+What weapon did Samson employ to slay a thousand Philistines?
+Jawbone of an ass
+10
+
+What weapon did The ancient Mariner use to shoot down the albatross?
+A crossbow
+10
+
+What weapon did the crossed slits in English castles accommodate?
+Crossbow
+10
+
+What weapon is tattooed on glen campbell's arm?
+Dagger
+10
+
+What weapon was fixed to the bow of an ancient Egyptian warship?
+A ram for sinking ships
+10
+
+What weapon was used by the Germans against Russia in 1915?
+Tear gas
+10
+
+What weekday do more colds begin on than any other?
+Monday
+10
+
+What weighed 46,328 tons/882.5 feet high/3.5 city blocks long?
+Titanic
+10
+
+What weighs 5,500 billion billion tons?
+Earth
+10
+
+What weighs less than a penny?
+Hummingbird
+10
+
+What well known Chinese dish was actually invented in New York?
+Chop suey
+10
+
+What well known drug comes from the yellow cinchona plant?
+Quinine
+10
+
+What well known liquor is made from the agave plant?
+Tequila
+10
+
+What well known singing duo started out as Tom & Jerry?
+Simon and Garfunkel
+10
+
+What went from 405 to 625 lines?
+Television
+10
+
+What went into space for the first time on 3rd november 1957?
+A dog
+10
+
+What were 'ivories' to an Old West gambler?
+Dice
+10
+
+What were Allen and Evans the last to go to in Britain?
+Gallows
+10
+
+What were Andy Pandy's two friends called?
+Looby lou & teddy
+10
+
+What were Babe Ruth's christian names?
+George herman
+10
+
+What were Barbary corsairs?
+Pirates
+10
+
+What were Bart's first words?
+Ay Carumba
+10
+
+What were Bill Haley & The Comets known as before becoming Bill Haley & The Comets?
+The Saddlemen
+10
+
+What were Bradburys issued in 1914 by the British government?
+Pound note
+10
+
+What were broccoli and cauliflower developed from?
+Cabbage
+10
+
+What were Charles de gaulle's final words?
+It hurts
+10
+
+What were christmas tree icicles originally made from?
+Lead
+10
+
+What were Club Nouveu originally known as?
+Timex Social Club
+10
+
+What were comfrey baths were believed to restore?
+Virginity
+10
+
+What were dachshunds bred to hunt?
+Badgers
+10
+
+What were first presented at hollywood's roosevelt hotel on may 16th 1929?
+Oscars
+10
+
+What were first presented at hollywood's roosevelt on may 16, 1929?
+The academy awards
+10
+
+What were fuchs and hillary the first to cross?
+Antarctic
+10
+
+What were George Washington's false teeth made of?
+Wood
+10
+
+What were george Washington's teeth made of?
+Ivory
+10
+
+What were hairnets worn by women in the Victorian Era known as?
+Snoods
+10
+
+What were J.B. Priestley's christian names?
+John boynton
+10
+
+What were king arthur's knights called?
+Knights of the round table
+10
+
+What were ladies asked not to wear at Prince Edward's UK wedding?
+Hats
+10
+
+What were last delivered to Australia in 1849?
+Convicts
+10
+
+What were made compulsory on cars in britain in 1954?
+Flashing indicator lights
+10
+
+What were moe howard, larry fine and curly howard better known as?
+Three stooges
+10
+
+What were more than 99.9% of all the animal species that have ever lived on earth before the coming of man?
+Extinct
+10
+
+What were New Order called before Ian Curtis died?
+Joy division
+10
+
+What were once know as 'peelers'?
+Policemen
+10
+
+What were originally known in britain as love apples?
+Tomatoes
+10
+
+What were Paula Wilcox and Richard Beckinsale according to a tv programme title?
+Lovers
+10
+
+What were raced in Greek and Roman hippodromes?
+Horses
+10
+
+What were the 1948 olympic games known as?
+The austerity games
+10
+
+What were the 3 Chipettes names on Alvin and the Chipmunks?
+Brittney,Jeanette,and Eleanor
+10
+
+What were the alleged last words of Julius Caesar?
+Et tu, Brute?
+10
+
+What were the ancient egyptian pyramids once covered in?
+Marble
+10
+
+What were the B-52's named after? (Hint, it's not a plane)?
+Beehive
+10
+
+What were the dolls in jaqueline susann's valley of the dolls?
+Pills
+10
+
+What were the favourite subjects of Victorian artist Edwin Landseer?
+Animals
+10
+
+What were the first dominant land animals on earth?
+Dinosaurs
+10
+
+What were the first names of Dr Jekyll & Mr Hyde?
+Henry & edward
+10
+
+What were the first names of T E Lawrence, known as Lawrence of Arabia?
+Thomas edward
+10
+
+What were the first names of the Blues Brothers?
+Elwood Jake
+10
+
+What were the first names of the comedy duo laurel and hardy?
+Stan and oliver
+10
+
+What were the first passengers in a hot air balloon?
+Chicken duck rooster
+10
+
+What were the first set of eye glasses made of?
+Quartz
+10
+
+What were the first surfboards made of fibreglass, redwood or styrofoam?
+Redwood
+10
+
+What were the first two British coins to be minted with decimal values?
+5p and 10p
+10
+
+What were the first two words of woody woodpecker in his 1950 cartoon debut?
+Guess who
+10
+
+What were the ghostbusters' names?
+Peter venkman,egon spengler,ray stantz ,winston zedmore
+10
+
+What were the last word uttered on the final episode of 'cheers'?
+Sorry we are closed
+10
+
+What were the lone three fighter planes which defended Malta in World War II nicknamed?
+Faith, hope & charity
+10
+
+What were the main divisions of the Roman army called?
+Legions
+10
+
+What were the myrmidons who were created by zeus?
+Ant people
+10
+
+What were the name of the parents of B.J. Hunnicutt (Mike Farrell) for whom he was named, in the tv sitcom MASH?
+Bea and Jay
+10
+
+What were the names of Amanda's boys on Scarecrow and Mrs. King?
+Phillip and Jamie
+10
+
+What were the names of noah's children?
+Shem ham and japheth
+10
+
+What were the names of Odin's two brothers?
+Vile & ve
+10
+
+What were the names of Odin's two wolves?
+Freke & gere
+10
+
+What were the names of Odins two ravens?
+Hugin & munin
+10
+
+What were the names of the 3 Cartwright sons?
+Adam, Hoss and Joe
+10
+
+What were the names of the first so-called 'Siamese Twins'?
+Chang and eng
+10
+
+What were the names of the four main characters of the Facts of Life?
+Jo Blair Natalie Tootie
+10
+
+What were the names of the mice who befriended Cinderella?
+Gus and Jaq
+10
+
+What were the names of the Saturday morning cartoon critters who lived in air-vents and befriended a boy who kept their secret hidden?
+The Littles
+10
+
+What were the names of the three wise men?
+Melchior,Balthasar,Kaspar
+10
+
+What were the nicknames of the dean brothers who pitched for the st louis cardinals?
+Daffy and dizzy
+10
+
+What were the only two words spoken by Clarabelle the Clown on the final episode of the Howdy Doody Show?
+Goodbye, Kids
+10
+
+What were the original rules of conduct in boxing called?
+Queensberry rules
+10
+
+What were the poor knights of the Temple of Solomon otherwise known as?
+Knights templar
+10
+
+What were the Russian atrocities against the jews called?
+Pogroms
+10
+
+What were the short-barrelled rifles used by cavalrymen?
+Carbines
+10
+
+What were the sides of the US fighting ship nicknamed Old Ironside made of?
+Wood
+10
+
+What were the spice islands formerly known as?
+Zanzibar
+10
+
+What were the tramps Estragon and Vladimir waiting for?
+Godot
+10
+
+What were the two birds that noah sent out from the ark?
+Raven and dove
+10
+
+What were the two cities in genesis destroyed by fire and brimstone?
+Sodom and gomorrah
+10
+
+What were the two dogs names on Magnum PI?
+Apollo and Zeus
+10
+
+What were the two forenames of dramatist and novelist J.M. Barrie?
+James matthew
+10
+
+What were the words that changed the world from Martin Luther King Jr?
+I have a dream
+10
+
+What were there 368,000 of in 1961 and 2,295,000 of in 1981?
+Unemployed
+10
+
+What were unsuccessfully launched as APTs in 1981?
+Advanced passenger trains
+10
+
+What were used to paint snuff bottles from the Qing Dynasty?
+Bamboo pens
+10
+
+What were v1s and v2s supposed to do upon landing?
+Explode
+10
+
+What were visible in the pictures John F Kennedy pored over on October 16, 1962?
+Russian missiles in Cuba
+10
+
+What West Australian town has been called the port of pearls?
+Broome
+10
+
+What west coast carrier did delta airlines buy in 1986?
+Western airlines
+10
+
+What west coast U.S. state would you be in if you were honeymooning in Humptulips?
+Washington state
+10
+
+What West German company builds both cars & motorcycles?
+Bmw
+10
+
+What western Canadian province boasts Yoho National Park?
+British columbia
+10
+
+What western explorer discovered the Hawaiian Islands in 1778?
+Captain james cook
+10
+
+What western outlaw died on his 27th birthday?
+Sam bass
+10
+
+What western state led the U.S. in percent increase in population from 1980 to 1989?
+Nevada
+10
+
+What western US outfit boasts the world's largest brewery on a single site?
+Coors
+10
+
+What what Dr. Zorba's first name?
+David
+10
+
+What wheel did blaise pascal invent in a search for perpetual motion?
+Roulette wheel
+10
+
+What wheel in a car does the driver use to control direction?
+Steering wheel
+10
+
+What white suburban rappers made a hit by fighting 'for their right to party'?
+Beastie boys
+10
+
+What wife of a us president was accused of being a spy?
+Mary todd lincoln
+10
+
+What wild cat is native only to north America?
+Bobcat
+10
+
+What wild cat was often kept as a pet by the forest Indians of South America?
+Ocelot
+10
+
+What will happen if you lock your knee while standing long enough?
+Pass out
+10
+
+What will peat eventually turn into if left in the ground?
+Coal
+10
+
+What winged hindu god of love carries a bow and arrow?
+Kama
+10
+
+What witch has a cat called 'mog'?
+Meg
+10
+
+What woman holds the record for most Wimbledon tennis championships?
+Billie Jean King
+10
+
+What woman is the fictitious symbol of general mills products?
+Betty crocker
+10
+
+What woman is the wife of Prince Phillip, the mother of Anne, & rew, Charles & Edward, & the daughter of George VI?
+Elizabeth ii
+10
+
+What woman is the wife of prince phillip, the mother of anne, andrew, Charles and edward, and the daughter of george vi?
+Elizabeth ii
+10
+
+What woman was arrested for voting in the 1872 election for U.S. president?
+Susan B. Anthony
+10
+
+What woman was the first to paint her face?
+Candace
+10
+
+What woman won 6 gold medals in the Olympic Summer games?
+Kristin Otto
+10
+
+What women wear yashmaks?
+Moslem women
+10
+
+What women's tennis star was affectionately called little mo?
+Maureen connolly
+10
+
+What won the tony award for the best musical of 1987?
+Les miserables
+10
+
+What wonder was Louis Hennepin the first white man to see?
+Niagara falls
+10
+
+What wood did noah use to make the ark?
+Gopher wood
+10
+
+What wood is a cricket bat made from?
+Willow
+10
+
+What wood is chippendale furniture made from?
+Mahogany
+10
+
+What wood is obtained from the tectona tree?
+Teak
+10
+
+What woody allen film featured an orgasmatron?
+Sleeper
+10
+
+What word, made up of the latin for 'water' and the greek for 'sailor', made its first appearance in the 60s?
+Aquanaut
+10
+
+What word's first two letters mean a man, first three letters mean a woman, & first four letters mean a great man?
+Heroine
+10
+
+What words opened Ali Baba's cave?
+Open sesame
+10
+
+What work begins 'go placidly amid the noise & haste & remember what peace there may be in silence'?
+Desiderata
+10
+
+What work by the who did the royal Canadian ballet dance to on tour?
+Tommy
+10
+
+What world championship is the 'bermuda bowl'?
+Bridge
+10
+
+What world famous artist founded the cubist movement?
+Pablo picasso
+10
+
+What world leader was shot by her bodyguards in 1986?
+Indira gandhi
+10
+
+What world war i hero received 50 medals?
+Alvin york
+10
+
+What World War II commander had the forename Erwin?
+Rommel
+10
+
+What worm prefers mulberry?
+Silkworm
+10
+
+What worm prefers the mulberry?
+Silkworm
+10
+
+What worms will eat themselves if they can't find any food?
+Ribbon worms
+10
+
+What would a book collector understand by the initials t.e.g?
+Top edge gilt
+10
+
+What would a bushwalker most likely use to boil his water in?
+Billy can
+10
+
+What would a car have if its specification included A.B.S?
+Anti-lock braking system
+10
+
+What would a car have if its specification included P.A.S?
+Power assisted steering
+10
+
+What would a gardener do with secateurs?
+Prune plants
+10
+
+What would a tongan do with his pa' angas?
+Spend them
+10
+
+What would americans call a spring onion?
+Scallion
+10
+
+What would an American call a car bonnet?
+Hood
+10
+
+What would an artist put on a wooden stretcher?
+Canvas
+10
+
+What would barbies measurements be if she were life size?
+39 23 33
+10
+
+What would be kept in a humidor?
+Cigars
+10
+
+What would be the defining characteristic of a narcissistic person?
+Vanity
+10
+
+What would be your astrological sign if your birthday was 1st April?
+Aries
+10
+
+What would be your astrological sign if your birthday was 1st September?
+Virgo
+10
+
+What would happen if you were defenestrated?
+Thrown out of a window
+10
+
+What would happen to you if you were tonsured?
+Top of your head would be shaved
+10
+
+What would have to be 50 000 times bigger then its actual size to break a spiders web?
+Spider
+10
+
+What would one call a group of leopards called?
+Leap
+10
+
+What would you be called if the soles of your feet rested completely on the ground?
+Flat footed
+10
+
+What would you be doing if you were 'stripping the willow'?
+Dancing
+10
+
+What would you be doing if you were pollarding?
+Pruning a tree
+10
+
+What would you be doing to the instructions k1, p1, k2tog?
+Knitting
+10
+
+What would you be examining if you used a tastevin?
+Wine
+10
+
+What would you be if you had an iq of 100?
+Average
+10
+
+What would you be if you were dextral?
+Right handed
+10
+
+What would you call a pilchard less than a year old?
+A sardine
+10
+
+What would you call the act of making a mark on a body by burning?
+Branding
+10
+
+What would you do in a cambio?
+Exchange money
+10
+
+What would you do with a Hispano Suiza?
+Drive it
+10
+
+What would you do with a John Collins?
+Drink it
+10
+
+What would you do with a julep?
+Drink it
+10
+
+What would you do with a liquorice paper?
+Roll a cigarette
+10
+
+What would you do with a swizzle stick?
+Stir a drink
+10
+
+What would you do with a tulwar?
+Fight
+10
+
+What would you do with a Wandering Sailor?
+Plant it
+10
+
+What would you expect to find in a vespiary?
+Wasps
+10
+
+What would you find a sally on the end of?
+Bell rope
+10
+
+What would you get from a vintner?
+Wine
+10
+
+What would you go to an optometrist to have tested?
+Eye
+10
+
+What would you have if you had rutilism?
+Red hair
+10
+
+What would you keep in a bandolier?
+Ammunition
+10
+
+What would you measure with a sphygmomanometer?
+Blood pressure
+10
+
+What would you probably be doing if you were using a splade?
+Eating
+10
+
+What would you use a gettoni token for in Italy?
+Call from a phone box
+10
+
+What would you use if you practiced ikebana?
+Flowers
+10
+
+What would you use to play a game of rummy?
+Cards
+10
+
+What would you use your zygomaticus muscle for?
+To smile
+10
+
+What would you usually find hanging down above a stalgmite?
+Stalactite
+10
+
+What writer was nicknamed Papa?
+Ernest hemingway
+10
+
+What writing implement was invented by John T. Loud in 1888? It wasn't until 1938 that a hungarian made a successful cheap working version?
+Ball point pen
+10
+
+What written order must a policeman have before searching a house?
+Warrant
+10
+
+What ws Balki Bartokamus' occupation when he lived in Mypos?
+Sheep Herder
+10
+
+What wwi carrier pigeon helped save the lost battalion?
+Cher ami
+10
+
+What wwii leader dallied with clara petacci?
+Benito mussolini
+10
+
+What year did 'papa doc' president of haiti die?
+1967
+10
+
+What year did an Indian factory release 30 tons of pesticide, killing over 3500 people?
+1984
+10
+
+What year did brasilia become capital of Brazil?
+1960
+10
+
+What year did Britain take over direct rule of Northern Ireland?
+1972
+10
+
+What year did Captain James Cook discover Australia?
+1770
+10
+
+What year did Carnegie Hall open?
+1891
+10
+
+What year did Charles Lindbergh cross the Atlantic Ocean?
+1927
+10
+
+What year did Chernobyl explode?
+1986
+10
+
+What year did coca-cola first go on sale?
+1886
+10
+
+What year did Columbus sail to America?
+1492
+10
+
+What year did Concorde first take to the skies?
+1969
+10
+
+What year did Emily Pankhurst chain herself to 10 Downing Street?
+1907
+10
+
+What year did Ernest Rutherford discover the proton?
+1919
+10
+
+What year did Fidel Castro seize power in Cuba?
+1959
+10
+
+What year did Finland become independant?
+1917
+10
+
+What year did football's Munich air disaster happen?
+1958
+10
+
+What year did george Washington become us president?
+1789
+10
+
+What year did hitler become chancellor of Germany?
+1933
+10
+
+What year did jason williams get drafted?
+1998
+10
+
+What year did laurel and hardy first perform together?
+1926
+10
+
+What year did London factorys emit acid pollution, leading to mass fatalities?
+1900
+10
+
+What year did Napoleon retreat from Moscow?
+1812
+10
+
+What year did Neil Armstrong land on the moon?
+1969
+10
+
+What year did newsday call 'carole king year'?
+1971
+10
+
+What year did Pascal invent the adding machine?
+1642
+10
+
+What year did Playboy magazine first appear?
+1953
+10
+
+What year did president lincoln deliver his gettysburg address?
+1863
+10
+
+What year did princess grace die?
+1982
+10
+
+What year did Queen Elizabeth II commence her reign?
+1952
+10
+
+What year did Roger Maris hit 61 homeruns?
+1961
+10
+
+What year did rolf harris have an Australian top 10 hit with 'two little boys, with two little toys...'?
+1970
+10
+
+What year did sir richard whittington die?
+1423
+10
+
+What year did Sir Winston Churchill die?
+1965
+10
+
+What year did space oddity first reach no 1?
+1969
+10
+
+What year did the 'The Bay of Pigs' take place?
+1961
+10
+
+What year did the Beatles first go to no 1?
+1963
+10
+
+What year did the Bolsheviks overthrow the Russian government?
+1917
+10
+
+What year did the first baby boomers turn 50?
+1996
+10
+
+What year did the first female pilot make her first flight?
+1908
+10
+
+What year did the first motel open?
+1925
+10
+
+What year did the first nudist colony open?
+1903
+10
+
+What year did the lights go out?
+1965
+10
+
+What year did the Pilgrims first land in America?
+1620
+10
+
+What year did the u.s. mint issue the susan b. anthony dollar coin?
+1979
+10
+
+What year did the UK join the E.E.C?
+1973
+10
+
+What year did theodore roosevelt die?
+1919
+10
+
+What year did was the great stock market crash that lead to the great depression?
+1929
+10
+
+What year did Yuri Gagarin become the first human in space?
+1961
+10
+
+What year followed 1 b.c?
+A.d. 1
+10
+
+What year in the 20th century saw three kings on the throne in England?
+1936
+10
+
+What year saw sugar jump from nine cents to fifty-eight cents a pound?
+1973
+10
+
+What year saw the 50th anniversary of the Bttle of Britain?
+1990
+10
+
+What year saw the first colour broadcast of the F A Cup Final?
+1968
+10
+
+What year saw the first golf shot on the moon?
+1971
+10
+
+What year saw the first League Cup final played at Wembley?
+1967
+10
+
+What year saw the launch of Sputnik I?
+1957
+10
+
+What year seen the death of BOTH Janice Joplin and Jimmy Hendrix?
+1970
+10
+
+What year seen the death of BOTH Janis Joplin and Jimmy Hendrix?
+1970
+10
+
+What year was a u2 pilot shot down for spying?
+1960
+10
+
+What year was Aaron Copeland born?
+1900
+10
+
+What year was allen iverson born?
+1975
+10
+
+What year was Archduke Ferdinand assassinated?
+1914
+10
+
+What year was Aunt Jemima pancake flour invented?
+1889
+10
+
+What year was billy the kid born?
+1859
+10
+
+What year was dna first determined?
+1953
+10
+
+What year was film introduced to replace glass in making photographic negatives?
+1891
+10
+
+What year was Germany united?
+1871
+10
+
+What year was Geronimo captured in?
+1886
+10
+
+What year was Mr. Burns introduced to atom smashing?
+1909
+10
+
+What year was neptune discovered?
+1846
+10
+
+What year was operation Desert Fox?
+1998
+10
+
+What year was Paris liberated?
+1944
+10
+
+What year was Picasso born?
+1881
+10
+
+What year was robert the bruce crowned king of Scotland?
+1306
+10
+
+What year was Shaquille O'neal born?
+1972
+10
+
+What year was the americans first atomic submarine launched?
+1954
+10
+
+What year was the battle of bannockburn?
+1314
+10
+
+What year was the battle of hastings?
+1066
+10
+
+What year was the Battle of Trafalgar fought?
+1805
+10
+
+What year was the battle of trafalgar?
+1805
+10
+
+What year was the Berlin Wall erected?
+1961
+10
+
+What year was The Bible printed using moveable type?
+1455
+10
+
+What year was the car seat belt first patented?
+1903
+10
+
+What year was the constitution fully ratified?
+1787
+10
+
+What year was the dental drill invented?
+1790
+10
+
+What year was the first a&w rootbeer made?
+1919
+10
+
+What year was the first commercial opera house opened?
+1637
+10
+
+What year was the first motorcycle race run?
+1907
+10
+
+What year was the first oreo sold in?
+1912
+10
+
+What year was the first tooth extraction under anaesthetic performed?
+1846
+10
+
+What year was the first world series game played?
+1903
+10
+
+What year was the great train robbery?
+1963
+10
+
+What year was the habitat company founded?
+1971
+10
+
+What year was the intel pentium processor introduced?
+1993
+10
+
+What year was the last woman hung in England?
+1955
+10
+
+What year was the Live Aid concert?
+1985
+10
+
+What year was the movie the apostle released?
+1998
+10
+
+What year was the movie The Love Bug released?
+1969
+10
+
+What year was the nba formed?
+1949
+10
+
+What year was the sony walkman introduced?
+1979
+10
+
+What year was theodore roosevelt born?
+1858
+10
+
+What year was Walt Disney born?
+1901
+10
+
+What year was yasser arafat born?
+1929
+10
+
+What year were jelly belly jelly beans first sold?
+1976
+10
+
+What year were jellybeans introduced to the United States?
+1861
+10
+
+What year were most of the American hostages released by Iran?
+1981
+10
+
+What year were the two atomic bombs dropped on Japan?
+1945
+10
+
+What year were x-rays discovered?
+1895
+10
+
+What year will the Ferrari F-60 be released?
+2003
+10
+
+WHAT YEAR:Double helix structure of DNA discovered by F Crick & J watson?
+1953
+10
+
+WHAT YEAR:Existence of blood groups discovered by K Landsteiner of Austria?
+1901
+10
+
+WHAT YEAR:First domestic videotape system introduced by Japanese company Sony?
+1975
+10
+
+WHAT YEAR:First heart transplant carried out by C Barnard of South Africa?
+1967
+10
+
+WHAT YEAR:First underwater cable laid under the English Channel?
+1851
+10
+
+WHAT YEAR:Genetic fingerprinting developed by A Jeffreys(UK)?
+1984
+10
+
+WHAT YEAR:World health Organisation declares the world free of smallpox?
+1980
+10
+
+What year's winter olympics introduced the super giant slalom?
+1988
+10
+
+What yellow fossilized resin was used in jewellery by the greeks and romans?
+Amber
+10
+
+What yellow, fossilised resin did the Greeks and Romans use in jewellery?
+Amber
+10
+
+What yellow, fossilized resin did the greeks and romans use in jewellery?
+Amber
+10
+
+What yellow, fossilized resin did the Greeks and Romans use in jewelry?
+Amber
+10
+
+What Yorkshire port witnessed the departure of Captain Cook on his epic voyages?
+Whitby
+10
+
+What Yorkshire town is famous for being a conference centre?
+Harrogate
+10
+
+What yorkshireman wrote all creatures great and small?
+James herriot
+10
+
+What young animal is an offspring of a nanny & a billy?
+Kid
+10
+
+What yugoslav republic's name translates to 'black mountain'?
+Montenegro
+10
+
+What Yukon region was the scene of a famous gold rush?
+Klondike
+10
+
+What yummy snack is used in the construction of dynamite?
+Peanuts
+10
+
+What zodiac sign is represented by fish?
+Pisces
+10
+
+What zodiacal sign is represented by a bull?
+Taurus
+10
+
+What zodiacal sign is represented by fish?
+Pisces
+10
+
+What zodiacal sign is represented by the balance, or scales?
+Libra
+10
+
+What zone lies between the tropics of Capricorn & Cancer?
+Tropical zone
+10
+
+What zone lies between the tropics of Capricorn and cancer?
+The tropical zone
+10
+
+What zone varies from batter to batter in baseball?
+The strike zone
+10
+
+What, according ot the saying, makes waste?
+Haste
+10
+
+What, according to Hilaire Belloc's cautionary verse, was Matilda's problem?
+She told such dreadful lies
+10
+
+What, according to joni mitchell, 'took away my old man'?
+A big yellow taxi
+10
+
+What, according to tradition, will leave Gibraltar before the British?
+Apes
+10
+
+What, apart from air & fuel, is filtered in a car?
+Oil
+10
+
+What, during World War Two, was the German or Nazi equivalent to the Japanese Kempei Tai?
+Gestapo
+10
+
+What, in 1975, did 18 Nobel laureates claim has no basis on fact?
+Astrology
+10
+
+What, in Australian English is a coolabah?
+Tree
+10
+
+What, in general terms, accelerates a chemical reaction without itself being changed?
+Catalyst
+10
+
+What, in Japan, is the Yakusa?
+Organised crime syndicates
+10
+
+What, in knitting, do 'cable', 'purl' & 'popcorn' refer to?
+Stitches
+10
+
+What, in population terms, is the largest Spanish speaking country in the world?
+Mexico
+10
+
+What, made from the dried stamens of cultivated crocus flowers, is the most expensive cooking spice?
+Saffron
+10
+
+What, on an Italian menu, is 'zuppa inglese'?
+Trifle
+10
+
+What, translated literally is the 10th month?
+December
+10
+
+What, translated literally, is the ninth month?
+November
+10
+
+What, with arabic, is the official language of mauritania?
+French
+10
+
+What,mainly,is added to iron to make steel resistant to corrosion?
+Chromium
+10
+
+What's a 10-20 to a police officer?
+Location
+10
+
+What's a bee's home called?
+Hive
+10
+
+What's a block & tackle used for?
+Lifting weights
+10
+
+What's a Canadian two penny black?
+Stamp
+10
+
+What's a coelacanth?
+Fish
+10
+
+What's a computer screen's display made up of?
+Pixels
+10
+
+What's a dead body of an animal called?
+Carcass
+10
+
+What's a disk of gas orbiting a star of black hole called?
+Accretion disk
+10
+
+What's a dried plum?
+Prune
+10
+
+What's a family group of lions called?
+Pride
+10
+
+What's a farm that has both cattle and crops called?
+Mixed farm
+10
+
+What's a flat, broad bodied, odorous insect?
+Stinkbug
+10
+
+What's a funambulist?
+A tightrope walker
+10
+
+What's a ginkgo?
+Tree
+10
+
+What's a goober?
+Peanut
+10
+
+What's a group of ferrets called?
+Business
+10
+
+What's a group of kittens called?
+Kindle
+10
+
+What's a langur?
+Monkey
+10
+
+What's a liuor of apricot pits?
+Amaretto
+10
+
+What's a meerschaum?
+A Pipe
+10
+
+What's a microchip made of?
+Silicon
+10
+
+What's a more proper name for artificial or false teeth?
+Dentures
+10
+
+What's a okapi?
+Mammal
+10
+
+What's a person who does not eat meat called?
+Vegetarian
+10
+
+What's a plant or animal that is food for parasites called?
+Host
+10
+
+What's a policeman's favorite Dupont Kevlar product?
+Bulletproof vest
+10
+
+What's a telephone pbx?
+Private branch exchange
+10
+
+What's a truffle?
+Edible fungus
+10
+
+What's a unit of magnetic field strength called?
+Gauss
+10
+
+What's a warm puppy, by Charles m schulz's reckoning?
+Happiness
+10
+
+What's a warm puppy, by Charles schultz's reckoning?
+Happiness
+10
+
+What's an earth station receiver most commonly called?
+Satellite dish
+10
+
+What's an egg that floats on water?
+Very old
+10
+
+What's an illegal move by a baseball pitcher called?
+A balk
+10
+
+What's an other name for cannabis?
+Marijuana
+10
+
+What's another name for a mountain lion?
+Puma
+10
+
+What's another name for allspice?
+Pimento
+10
+
+What's another name for the aurora australis?
+Southern lights
+10
+
+What's another name for the yellow poplar tree?
+Tulip
+10
+
+What's another term for a camelopard?
+A giraffe
+10
+
+What's another word for stewardess?
+Air hostess
+10
+
+What's april's birthstone?
+Diamond
+10
+
+What's Australia's island state?
+Tasmania
+10
+
+What's belgium's main port?
+Antwerp
+10
+
+What's bill cosby's full name on the cosby show?
+Heathcliff huxtable
+10
+
+What's bottled in jeroboams?
+Champagne
+10
+
+What's Britain's highest military decoration?
+Victoria cross
+10
+
+What's californias most famous fault?
+San andreas
+10
+
+What's captain buck roger's first name?
+William
+10
+
+What's ccdos?
+Chinese character disk operating system
+10
+
+What's codasyl?
+Conference of data system languages
+10
+
+What's considered the most highly-specialized mammal?
+The whale
+10
+
+What's considered the sister language of English?
+German
+10
+
+What's David bowie son's name?
+Zowie bowie
+10
+
+What's dichloro diphenyl trichloro ethane better known as?
+Ddt
+10
+
+What's divided into the temporal, parietal, occipital and frontal lobes?
+Brain
+10
+
+What's excision of the breast called?
+Mastectomy
+10
+
+What's for dinner: what two vegetables are combined in succotash?
+Corn and beans
+10
+
+What's for supper: what in the heck does an anthropophagist eat?
+People
+10
+
+What's george bush's full name?
+George herbert walker bush
+10
+
+What's gerald ford's middle name?
+Rudolph
+10
+
+What's hdtv short for to a video buff?
+High definition television
+10
+
+What's headquartered on New York's East River between 42nd and 48th streets?
+United Nations
+10
+
+What's ibm's motto?
+Think
+10
+
+What's Iceland's main industry?
+Fishing
+10
+
+What's january's birthstone?
+Garnet
+10
+
+What's krypton's state at standard temperature and pressure?
+Gaseous
+10
+
+What's mach i?
+Speed of sound at sea level
+10
+
+What's malcolm x's real name?
+Malcolm little
+10
+
+What's margaret houlihan's nickname?
+Hot lips
+10
+
+What's margaret thatcher's middle name?
+Hilda
+10
+
+What's Mauritania's official language?
+French
+10
+
+What's miami's most famous suburb?
+Miami beach
+10
+
+What's mick dundee's necklace made from?
+Crocodile teeth
+10
+
+What's missing from a woman suffering from amazia?
+Breasts
+10
+
+What's missing from a women suffering from Amazia?
+Breasts
+10
+
+What's mixed with kahlua or tia maria to make a black Russian?
+Vodka
+10
+
+What's Mulder's nickname?
+SPOOKY
+10
+
+What's nero wolfe's favorite drink during office hours?
+Beer
+10
+
+What's nm to a sailor?
+Nautical mile
+10
+
+What's north America's largest lake?
+Superior
+10
+
+What's one round of a polo match called?
+Chukkah
+10
+
+What's pennsylvania's state tree?
+Mountain laurel
+10
+
+What's played at Wembley Stadium every May?
+The F.A.Cup Football final
+10
+
+What's popeye's official age?
+Thirty four
+10
+
+What's Prince Charles' favorite cereal?
+Cornflakes
+10
+
+What's princess aurora's better-known name?
+Sleeping beauty
+10
+
+What's receding from earth by 1/2 inch per year?
+The moon
+10
+
+What's ringo starr's real last name?
+Starkey
+10
+
+What's Robin Williams' middle name?
+McLaurim
+10
+
+What's shredded to make sauerkraut?
+Cabbage
+10
+
+What's spaceball played on?
+Trampoline
+10
+
+What's Spain's biggest source of income?
+Tourism
+10
+
+What's sporting field is 78 feet long?
+Tennis court
+10
+
+What's steve martin's nosiest movie?
+Roxanne
+10
+
+What's stevie wonder's real name?
+Steveland morris
+10
+
+What's the 1st name of wayne gretzky's father?
+Walter
+10
+
+What's the abbreviation for a Grownuo Mature Professional born after WW II?
+Grumpie
+10
+
+What's the all-time best selling popular novel?
+Gone with the wind
+10
+
+What's the American term for a flat?
+Apartment
+10
+
+What's the ancient language of India?
+Sanskrit
+10
+
+What's the average duration for food to pass through the digestive system?
+24 hours
+10
+
+What's the average number of murders a child has seen on tv by the age 16?
+Eighteen thousand
+10
+
+What's the basic unit for measuring electric energy?
+Joule
+10
+
+What's the bay of fundy in maritime Canada noted for?
+Tides
+10
+
+What's the best known artificial international language?
+Esperanto
+10
+
+What's the best possible poker hand?
+Royal flush
+10
+
+What's the best time of day to buy a pair of shoes?
+Late afternoon
+10
+
+What's the better known name of the card game twenty one?
+Blackjack
+10
+
+What's the better-known name of edson arantes do nascimento?
+Pele
+10
+
+What's the biggest living bird?
+Ostrich
+10
+
+What's the brightest star in the night sky?
+Sirius
+10
+
+What's the capital city of the province of prince edward island in Canada?
+Charlottetown
+10
+
+What's the capital of antigua and barbuda?
+St
+10
+
+What's the capital of Australia?
+Canberra
+10
+
+What's the capital of azerbaidzjan?
+Baku
+10
+
+What's the capital of bahamas?
+Nassau
+10
+
+What's the capital of bahrain?
+Manama
+10
+
+What's the capital of Bhutan?
+Thimphu
+10
+
+What's the capital of colombia?
+Bogota
+10
+
+What's the capital of colorado?
+Denver
+10
+
+What's the capital of comoros?
+Moroni
+10
+
+What's the capital of denmark?
+Copenhagen
+10
+
+What's the capital of ecuador?
+Quito
+10
+
+What's the capital of England?
+London
+10
+
+What's the capital of estonia?
+Tallinn
+10
+
+What's the capital of france?
+Paris
+10
+
+What's the capital of gaungdong province in china?
+Canton
+10
+
+What's the capital of ghana?
+Accra
+10
+
+What's the capital of illinois?
+Springfield
+10
+
+What's the capital of iowa?
+Des moines
+10
+
+What's the capital of iran?
+Tehran
+10
+
+What's the capital of Ireland?
+Dublin
+10
+
+What's the capital of Italy?
+Rome
+10
+
+What's the capital of jordan?
+Amman
+10
+
+What's the capital of Katar?
+Doha
+10
+
+What's the capital of Kentucky?
+Frankfort
+10
+
+What's the capital of Liberia?
+Monrovia
+10
+
+What's the capital of malawi?
+Lilongwe
+10
+
+What's the capital of malaysia?
+Kuala lumpur
+10
+
+What's the capital of michigan?
+Lansing
+10
+
+What's the capital of montana?
+Helena
+10
+
+What's the capital of Netherlands?
+Amsterdam
+10
+
+What's the capital of nevada?
+Carson city
+10
+
+What's the capital of Nicaragua?
+Managua
+10
+
+What's the capital of North Dakota?
+Bismarck
+10
+
+What's the capital of ohio?
+Columbus
+10
+
+What's the capital of oman?
+Muscat
+10
+
+What's the capital of paraguay?
+Asuncion
+10
+
+What's the capital of peru?
+Lima
+10
+
+What's the capital of qatar?
+Doha
+10
+
+What's the capital of Russia?
+Moscow
+10
+
+What's the capital of south carolina?
+Columbia
+10
+
+What's the capital of Sweden?
+Stockholm
+10
+
+What's the capital of Syria?
+Damascus
+10
+
+What's the capital of the central african empire?
+Bangui
+10
+
+What's the capital of the Comoros?
+Moroni
+10
+
+What's the capital of the northwest territories?
+Yellowknife
+10
+
+What's the capital of uruguay?
+Montevideo
+10
+
+What's the capital of vanuatu?
+Vila
+10
+
+What's the capital of vermont?
+Montpelier
+10
+
+What's the capital of wales?
+Cardiff
+10
+
+What's the capital of West Virginia?
+Charleston
+10
+
+What's the capital of western samoa?
+Apia
+10
+
+What's the capital of wyoming?
+Cheyenne
+10
+
+What's the cause of surface ocean currents?
+Winds
+10
+
+What's the centre division of a Backgammon board called?
+The Bar
+10
+
+What's the chemical formula for table salt?
+Nacl
+10
+
+What's the christian penitential season from end of november to christmas?
+Advent
+10
+
+What's the circulation of winds around a low pressure system called?
+Cyclone
+10
+
+What's the claim to fame of aleksei leonov?
+First space walk
+10
+
+What's the claim to fame of chang and eng bunker?
+First siamese twins
+10
+
+What's the claim to fame of lhasa, tibet?
+World's highest city
+10
+
+What's the claim to fame of san bernardino county?
+Largest in the us
+10
+
+What's the common name for calcium carbonate?
+Chalk
+10
+
+What's the common name for hydrogen hydroxide?
+Water
+10
+
+What's the common name for leucocytes, found in the blood?
+White blood cells
+10
+
+What's the common name for vitriolic acid?
+Sulfuric acid
+10
+
+What's the common name of hydrogen hydroxide?
+Water
+10
+
+What's the common term for a cubic decimetre?
+Litre
+10
+
+What's the common term for precipitation infused by sulfuric & nitric acids?
+Acid rain
+10
+
+What's the common term for xerography?
+Photocopying
+10
+
+What's the connection between Benson & Growing Pains?
+Missy Gold and Tracey Gold,
+10
+
+What's the connection between the carol burnett show and mama's family?
+Eunice and mama 
+10
+
+What's the cray-2 immersed in?
+Subzero flurocarbon fluid
+10
+
+What's the crystal anniversary?
+Fifteenth
+10
+
+What's the cubed root of 27?
+3
+10
+
+What's the currency in algeria?
+Dinar
+10
+
+What's the currency in bangladesh?
+Taka
+10
+
+What's the currency of Bulgaria?
+Lev
+10
+
+What's the currency of laos?
+Kip
+10
+
+What's the currency of san marino?
+Lira
+10
+
+What's the curved line between any two points on a circle?
+Arc
+10
+
+What's the decimal equivalent of the binary number 101?
+Five
+10
+
+What's the deepest trench in the Indian Ocean?
+Java Trench
+10
+
+What's the easternmost point in the usa?
+West quoddy head maine
+10
+
+What's the echidna's favorite food?
+Ants
+10
+
+What's the Eskimo word for a moccasin type boot?
+Mukluk
+10
+
+What's the fahrenheit equivalent of zero degrees centigrade?
+32 degrees
+10
+
+What's the fastest sea dwelling mammal?
+The dolphin
+10
+
+What's the fastest stroke in swimming?
+Freestyle
+10
+
+What's the fastest swimming marine mammal?
+The killer whale
+10
+
+What's the favorite food of dragonflies?
+Mosquitoes
+10
+
+What's the fifth largest country in the world?
+Brazil
+10
+
+What's the first book of the old testament?
+Genesis
+10
+
+What's the first day of the week?
+Sunday
+10
+
+What's the first instruction given runners by the started of a race?
+On your marks
+10
+
+What's the first quotation in the bible attributed to god?
+Let there be light
+10
+
+What's the first sign of the zodiac?
+Aries
+10
+
+What's the first video game to become a television show?
+Pac man
+10
+
+What's the flavor of angelica?
+Licorice
+10
+
+What's the formula for the area of a rectangle?
+Length times width
+10
+
+What's the fourth book of the new testament?
+John
+10
+
+What's the gaelic name for dublin?
+Baile atha cliath
+10
+
+What's the general name for germ fighting drugs such as penicillin & streptomycin?
+Antibiotics
+10
+
+What's the greatest source of lead poisoning?
+Leaded gasoline
+10
+
+What's the hardest bone in the human body?
+Jawbone
+10
+
+What's the hardest substance in the human body?
+Enamel
+10
+
+What's the highest mountain in the 48 contiguous U S states?
+Whitney
+10
+
+What's the highest mountain in the 48 contiguous u.s. States?
+Mount whitney
+10
+
+What's the highest position attained in the loyal order of moose lodge?
+Supreme governor
+10
+
+What's the hoosier state?
+Indiana
+10
+
+What's the infamous contraction of Geheime Staatspolizei?
+Gestapo
+10
+
+What's the largest airport in the us?
+Dallas, fort worth
+10
+
+What's the largest alluvial flood plain in the U.S?
+The mississippi delta
+10
+
+What's the largest and most powerful of the American cats?
+Jaguar
+10
+
+What's the largest animal alive with teeth?
+Sperm whale
+10
+
+What's the largest aquatic bird?
+Albatross
+10
+
+What's the largest artery in the human body?
+Aorta
+10
+
+What's the largest cat in the americas?
+Jaguar
+10
+
+What's the largest city between Ireland and Canada?
+Reykjavik
+10
+
+What's the largest city in china?
+Shanghai
+10
+
+What's the largest city in the Spanish speaking world?
+Mexico city
+10
+
+What's the largest commercial passenger plane?
+The 747
+10
+
+What's the largest continent in the world?
+Asia
+10
+
+What's the largest island in the arctic ocean, with 195,928 square miles?
+Baffin
+10
+
+What's the largest island in the Atlantic?
+Greenland
+10
+
+What's the largest island in the British isles, with 84,200 square miles?
+Great britain
+10
+
+What's the largest island in the mediterranean sea?
+Sicily
+10
+
+What's the largest lake in South America?
+Lake maracaibo
+10
+
+What's the largest museum in the world?
+Louvre
+10
+
+What's the largest port in france?
+Marseilles
+10
+
+What's the largest scandinavian country?
+Sweden
+10
+
+What's the largest urban park in the world, located in philadelphia pa?
+Fairmount park
+10
+
+What's the largest us agricultural crop by weight?
+Corn
+10
+
+What's the largest usa metro area without an nba franchise?
+St louis
+10
+
+What's the largest usa metro area without an nhl franchise?
+Dallas
+10
+
+What's the last line of dicken's a christmas carol?
+God bless us everyone
+10
+
+What's the last name of the most famous ornithologist?
+Audubon
+10
+
+What's the last of the cat's senses to develop?
+Sight
+10
+
+What's the leading female singer in an opera called?
+The prima donna
+10
+
+What's the leading radio-audience survey company in the us?
+Arbitron
+10
+
+What's the light sensitive layer on photographic film called?
+Emulsion
+10
+
+What's the locale for barney miller (tv show)?
+New york city
+10
+
+What's the locale for sgt bilko?
+Fort baxter
+10
+
+What's the locale for the farmer's daughter?
+Washington dc
+10
+
+What's the location for newhart?
+Vermont
+10
+
+What's the longest non mechanical sporting event?
+Tour de france
+10
+
+What's the longest river in the British isles?
+Shannon
+10
+
+What's the longest river in the U S?
+Mississippi river
+10
+
+What's the longest river in western europe?
+The rhine
+10
+
+What's the longest running soap-series in the USA?
+ATWT
+10
+
+What's the longest tendon in the body?
+Achilles tendon
+10
+
+What's the lord of the flies in the book of the same name?
+A pig's head
+10
+
+What's the magic phrase in ali baba and the forty thieves?
+Open sesame
+10
+
+What's the main boulevard of paris?
+Champs elysee
+10
+
+What's the main ingredient in glass?
+Sand
+10
+
+What's the maximum number of players in a game of Chinese chequers?
+Six
+10
+
+What's the maximum rent payable for landing on a monopoly railroad?
+200
+10
+
+What's the meaning of the zoological term ruminant?
+Cud chewer
+10
+
+What's the middle day of a non-leap year?
+July 2nd
+10
+
+What's the minimum number of players on an nfl team?
+Eleven
+10
+
+What's the more common name for the constellation ursa major?
+Great bear
+10
+
+What's the more familiar name of the Himalayas Yeti?
+Abominable Snowman
+10
+
+What's the more familiar name of the himalayas' yeti?
+The abominable snowman
+10
+
+What's the most common christian name of us presidents?
+James
+10
+
+What's the most common color of topaz?
+Yellow
+10
+
+What's the most common colour of topaz?
+Yellow
+10
+
+What's the most common first name in the world?
+Muhammad
+10
+
+What's the most common fowl on earth?
+Chicken
+10
+
+What's the most common name in nursery rhymes?
+Jack
+10
+
+What's the most common term for a rotary wing aircraft?
+Helicopter
+10
+
+What's the most common term of endearment in the U.S?
+Honey
+10
+
+What's the most commonly-spoken language in Belgium?
+French
+10
+
+What's the most effective insulator brick, fibreglass or wood?
+Fibreglass
+10
+
+What's the most extensively grown and eaten food?
+Wheat
+10
+
+What's the most frequently ingested mood altering drug?
+Caffeine
+10
+
+What's the most illustrious trophy in yachting?
+The America's cup
+10
+
+What's the most mountainous country in europe?
+Switzerland
+10
+
+What's the most popular form of bridge?
+Contract bridge
+10
+
+What's the most popular ice cream flavour in north America?
+Vanilla
+10
+
+What's the most popular registered dog in America?
+The poodle
+10
+
+What's the most popular sport in South America?
+Football
+10
+
+What's the most powerful type of microscope?
+Electron
+10
+
+What's the most sensitive finger on the human hand?
+The index finger
+10
+
+What's the most us common street name?
+Park street
+10
+
+What's the most valuable crop in burma, laos and thailand?
+Poppy
+10
+
+What's the most widely-played game card in the world?
+Solitaire
+10
+
+What's the most widely-used seasoning in the world?
+Salt
+10
+
+What's the most-often-spoken western language in czechoslovakia?
+German
+10
+
+What's the motto that appears in the mgm circle above the lions head?
+Ars gratia artis
+10
+
+What's the name designated to pay grade E-2 in the US Marine Corps?
+Private first class
+10
+
+What's the name designated to rank o-5 in the us marine corps?
+Lieutenant colonel
+10
+
+What's the name for a pen for pigs?
+Pigsty
+10
+
+What's the name for the grotesque figures that hold waterspouts to throw water away from buildings?
+Gargoyles
+10
+
+What's the name of garfield's rubber chicken?
+Stretch
+10
+
+What's the name of garfield's teddy bear?
+Pooky
+10
+
+What's the name of the archipelago at the tip of south America?
+Tierra del fuego
+10
+
+What's the name of the bear in jungle book?
+Baloo
+10
+
+What's the name of the dragon in the Ivor the Engine stories?
+Idris
+10
+
+What's the name of the Dutch racer in the F1?
+Jos Verstappen
+10
+
+What's the name of the hill in jerusalem where jesus was crucified?
+Calvary
+10
+
+What's the name of the holy book of Islan?
+The koran
+10
+
+What's the name of the large prominent vein in the side of your neck?
+Jugular vein
+10
+
+What's the name of the largest area of the brain?
+Cerebrum
+10
+
+What's the name of the piece flipped into the cup in tiddlywinks?
+The Wink
+10
+
+What's the name of the point at which condensation begins?
+The dew point
+10
+
+What's the name of the very small shrew?
+Pygmy shrew
+10
+
+What's the newfoundland term that describes catching squid for bait?
+Squid jigging
+10
+
+What's the official color of IBM?
+Blue
+10
+
+What's the official currency of monte carlo?
+French franc
+10
+
+What's the official language of bangladesh?
+Bengali
+10
+
+What's the official language of egypt, tunisia and Morocco?
+Arabic
+10
+
+What's the official language of st lucia?
+English
+10
+
+What's the official language of the most serene republic of san marino?
+Italian
+10
+
+What's the official state bird of the state of utah?
+Seagull
+10
+
+What's the official state sport of Alaska?
+Dog sledding
+10
+
+What's the offspring of a lioness & a tiger called?
+Liger
+10
+
+What's the oldest fraternity in America?
+Phi beta kappa
+10
+
+What's the oldest stroke used in competitive swimming?
+Breaststroke
+10
+
+What's the oldest university in rhode island?
+Brown university
+10
+
+What's the only 5 point letter in scrabble?
+K
+10
+
+What's the only alcoholic beverage on sale before noon in Finland?
+Beer
+10
+
+What's the only animal, aside from man, that can get leprosy?
+Armadillo
+10
+
+What's the only Australian city to have hosted the olympic games?
+Melbourne
+10
+
+What's the only base unit of measure still defined by an artifact?
+Kilogram
+10
+
+What's the only base unit of measurement still defined by an artifact?
+Kilogram
+10
+
+What's the only bird that can fly upside down?
+The hummingbird
+10
+
+What's the only city on new providence island in the bahamas?
+Nassau
+10
+
+What's the only day named for a planet?
+Saturday
+10
+
+What's the only dog which doesn't have a pink tongue?
+The chow
+10
+
+What's the only east european country that officially discourages tipping?
+Bulgaria
+10
+
+What's the only element capable of tarnishing and damaging gold?
+Mercury
+10
+
+What's the only female animal that has antlers?
+Caribou
+10
+
+What's the only horse to be disqualified after winning the Kentucky derby?
+Dancer's image
+10
+
+What's the only insect that produces food humans eat?
+The honeybee
+10
+
+What's the only mammal that can't jump?
+Elephant
+10
+
+What's the only man-made structure visible from space?
+The great wall of china
+10
+
+What's the only nation with a non-rectangular flag?
+Nepal
+10
+
+What's the only North American marsupial?
+Opossum
+10
+
+What's the only property an orthodox Hindu woman can own?
+Jewelry
+10
+
+What's the only u.s. state to end in the letter k?
+New york
+10
+
+What's the only us state that ends with a k?
+New york
+10
+
+What's the only us state to grow coffee?
+Hawaii
+10
+
+What's the only US state which borders only a Canadian province?
+Alaska
+10
+
+What's the only video game that became a television show?
+Pac-man
+10
+
+What's the opposite of 'synonym'?
+Antonym
+10
+
+What's the opposite of the orient?
+The occident
+10
+
+What's the opposite of windward?
+Leeward
+10
+
+What's the other name for the card game patience?
+Solitaire
+10
+
+What's the particle reponsible for gravitational forces?
+Graviton
+10
+
+What's the plural of 'larva'?
+Larvae
+10
+
+What's the point scored immediately after deuce in tennis?
+Advantage
+10
+
+What's the point value of the outer bullseye on a dartboard?
+Twenty Five
+10
+
+What's the point where a planet is farthest from the sun called?
+Aphelion
+10
+
+What's the positive electrode of a battery called?
+The anode
+10
+
+What's the principal river of Ireland?
+Shannon
+10
+
+What's the process of splitting atoms called?
+Fission
+10
+
+What's the psychological term for self-love?
+Narcissism
+10
+
+What's the real name of the french philosopher voltaire?
+Francois marie arouet
+10
+
+What's the region immediately below the earth's crust?
+Mantle
+10
+
+What's the respiratory organ of most fish?
+Gill
+10
+
+What's the resting place of those buried at sea?
+Davey jones locker
+10
+
+What's the roofing material for montreal's olympic stadium?
+Teflon
+10
+
+What's the royal dog of china?
+Pekingese
+10
+
+What's the second brightest star visible from earth?
+Canopus
+10
+
+What's the second largest asteroid in this solar system?
+Pallas
+10
+
+What's the second largest continent?
+Africa
+10
+
+What's the second largest desert in africa?
+Kalahari desert
+10
+
+What's the second most spoken language on earth?
+English
+10
+
+What's the second Xanth novel?
+The Source of Magic
+10
+
+What's the seventh sign of the zodiac?
+Libra
+10
+
+What's the shortest day of the year?
+December 21
+10
+
+What's the shortest verse in the bible?
+Jesus wept
+10
+
+What's the singular of graffiti?
+Graffito
+10
+
+What's the sky king's home, near the town of grover, called?
+Flying crown
+10
+
+What's the smallest mammal?
+Shrew
+10
+
+What's the smallest paper size - A3, A4 or A5?
+A5
+10
+
+What's the smallest state (in area) west of the Mississippi?
+Hawaii
+10
+
+What's the soft tissue inside bones called?
+Marrow
+10
+
+What's the solid core of a comet called?
+Nucleus
+10
+
+What's the song title of ringo starr's song 'peaches and cream, lips like strawberry wine, you're beautiful and your mine'?
+You're sixteen
+10
+
+What's the song title of rod stewart's song 'can you hear me, can you hear me through the dark night far away'?
+Sailing
+10
+
+What's the song title of the queen song 'it's not easy, but you've got friends you can trust'?
+Friends will be friends
+10
+
+What's the Spanish word for cottonwood tree?
+Alamo
+10
+
+What's the square root of 121?
+Eleven
+10
+
+What's the square root of one-quarter?
+One half
+10
+
+What's the state bird of utah?
+Sea gull
+10
+
+What's the state flower of Alaska?
+Forget me not
+10
+
+What's the study of gases in motion called?
+Aerodynamics
+10
+
+What's the Swiss family robinson's destination when shipwrecked?
+America
+10
+
+What's the tallest mountain in Canada?
+Logan
+10
+
+What's the telephone area code for Chicago?
+312
+10
+
+What's the term for a bet before cards are dealt?
+Ante
+10
+
+What's the term for a configuration of stars?
+Constellation
+10
+
+What's the term for a resident of liverpool?
+Liverpudlian
+10
+
+What's the term for pleasure-seeking as a way of life?
+Hedonism
+10
+
+What's the term for the blood pressure reading when the heart is at rest?
+Diastolic
+10
+
+What's the term for the giant forest hog's social unit?
+Sounder
+10
+
+What's the theme song for midnight cowboy?
+Everybody's talkin'
+10
+
+What's the third largest lake in the world?
+Lake victoria
+10
+
+What's the third smallest continent?
+Antarctica
+10
+
+What's the top selling campus snack according to the American Association of College Stores?
+Oreo Cookies
+10
+
+What's the traditional trade for aspiring Spanish bullfighters?
+Bricklaying
+10
+
+What's the unit of measure for a racehorse's height?
+Hand
+10
+
+What's the unit used to measure sound?
+Decibel
+10
+
+What's the United Kingdom's largest ethnic minority?
+The scots
+10
+
+What's the unofficial anthem of the musical theater?
+There's no business like show business
+10
+
+What's the usa's largest legal cash crop?
+Corn
+10
+
+What's the usa's most popular spectator sport?
+Horseracing
+10
+
+What's the usa's second most popular spectator sport?
+Horse racing
+10
+
+What's the Weather Like: With a highest recorded temperature of 58.0 Celsius, this location is the world's hottest?
+Al'Az-iz-iyah, Libya
+10
+
+What's the Weather Like: With a lowest recorded temperature of -89.2 Celsius, this location is the world's coldest?
+Vostok, Antarctica
+10
+
+What's the Weather Like: With an annual average of 335 days per year, this location is the world's wettest?
+Waialeale, Hawaii
+10
+
+What's the Weather Like: With an annual average rainfall of .7mm, this location is the world's driest?
+Arica, Chile
+10
+
+What's the Weather Like: With an average of 4,127 annual hours of sunshine, this location is the world's sunniest?
+Yuma, Arizona
+10
+
+What's the Weather Like: With an average of only 736 annual hours of sunshine, this location is the world's cloudiest?
+Ben Nevis, Scotland
+10
+
+What's the winter counterpart to estivation?
+Hibernation
+10
+
+What's the women's tennis equivalent to the davis cup?
+The federation cup
+10
+
+What's the world largest basilica?
+St. peter's
+10
+
+What's the world's highest mountain that isn't part of a range?
+Mount kilimanjaro
+10
+
+What's the world's largest cat?
+Tiger
+10
+
+What's the world's largest fresh-water island?
+Manitoulin
+10
+
+What's the world's most common compound?
+Water
+10
+
+What's the worlds highest waterfall?
+Angel falls
+10
+
+What's the worlds largest tourist attraction?
+Walt disney world
+10
+
+What's the zodiacal sign for capricorn?
+The goat
+10
+
+What's the zodiacal symbol for Virgo?
+Virgin
+10
+
+What's traditionally the first event in a rodeo?
+Bareback riding
+10
+
+What's ulster?
+Northern Ireland
+10
+
+What's used to make grenadine syrup?
+Pomegranate
+10
+
+What's usually thrown the farthest in a track and field competition?
+Javelin
+10
+
+What's white sugar mixed with to make brown sugar?
+Molasses
+10
+
+What's your aglet?
+Tips of your shoe laces
+10
+
+What's your sign: how many degrees are there in each house of the zodiac?
+Thirty
+10
+
+What/who, in the original draft was called Too Much?
+Scooby-doo
+10
+
+Whats a bibliothek in frankfurt?
+A library
+10
+
+Whats a community of ants called?
+A colony
+10
+
+Whats a female ogre called?
+Ogress
+10
+
+Whats a group of Peacocks called?
+Muster
+10
+
+Whats a male witch called?
+Warlock
+10
+
+Whats a snowstorm called in Alaska?
+Blizzard
+10
+
+Whats a sudden & violent burning called?
+Deflagration
+10
+
+Whats a Sultans wife called?
+Sultana
+10
+
+Whats another name for a third molar?
+Wisdom tooth
+10
+
+Whats another name for tetanus?
+Lockjaw
+10
+
+Whats is Football legend Pele's real name?
+Edson arantes do nascimento
+10
+
+Whats the capital of Bermuda?
+Hamilton
+10
+
+Whats the capital of chile?
+Santiago
+10
+
+Whats the capital of Saudi Arabia?
+Riyadh
+10
+
+Whats the capital of Texas?
+Austin
+10
+
+Whats the capital poland?
+Warschau
+10
+
+Whats the colour of jealousy?
+Green
+10
+
+Whats the common name for the Australian parakeet?
+Budgerigar
+10
+
+Whats the common name for the drug acetaminophen?
+Paracetamol
+10
+
+Whats the difference between roast beef and pea soup?
+Anyone can roast beef
+10
+
+Whats the first day of lent?
+Ash wednesday
+10
+
+Whats the first name of u2's leadsinger?
+Paul
+10
+
+Whats the German name for their own country?
+Deutschland
+10
+
+Whats the highest adult male singing voice?
+Alto
+10
+
+Whats the highest mountain in the Alps?
+Mont blanc
+10
+
+Whats the highest score possible with three darts?
+One hundred and eighty
+10
+
+Whats the Italian game thats similar to lawn bowling?
+Bocci
+10
+
+Whats the largest library in the world?
+The library of congress
+10
+
+Whats the largest man made structure visable from space?
+Great wall of china
+10
+
+Whats the last word of the bible?
+Amen
+10
+
+Whats the latest province of holland?
+Flevoland
+10
+
+Whats the main ingredient in bouillabaisse?
+Seafood
+10
+
+Whats the maximum number of wives permitted at any one time under Islamic law?
+Four
+10
+
+Whats the meaning of the Latin battle cry 'ad arma, ad arma?
+To arms to arms
+10
+
+Whats the most abundant element in the sun?
+Hydrogen
+10
+
+Whats the Muslim name of God?
+Allah
+10
+
+Whats the name for an organism that live on or in another?
+Parasite
+10
+
+Whats the name given a star that has collapsed into no dimensions?
+Black hole
+10
+
+Whats the name of bart simpsons best friend?
+Millhouse
+10
+
+Whats the name of curry soup?
+Mulligatawny
+10
+
+Whats the name of El Ninos lesser known little sister?
+La nina
+10
+
+Whats the name of Jacques Cousteaus research ship?
+Calypso
+10
+
+Whats the name of the boy in Jungle Book?
+Mowgli
+10
+
+Whats the name of the large wooded area in which Robin Hood was supposed to have lived?
+Sherwood forest
+10
+
+Whats the name of the magician who helped the hobbits?
+Gandalf
+10
+
+Whats the name of the moviedirector of dr. strangelove and a clockwork orange?
+Stanly kubrick
+10
+
+Whats the name of the New Zealand Rugby teams pre-match war dance?
+The haka
+10
+
+Whats the name of the orca who played in free Willy?
+Keiko
+10
+
+Whats the national airline of Ireland?
+Aer lingus
+10
+
+Whats the nickname for Indiana?
+Hoosier state
+10
+
+Whats the official animal of Canada?
+Beaver
+10
+
+Whats the official language of Morocco?
+Arabic
+10
+
+Whats the oldest brewery in continuous operation in North America?
+Molson
+10
+
+Whats the only US state name that ends in three vowels?
+Hawaii
+10
+
+Whats the opposite of orient?
+Occcident
+10
+
+Whats the opposite of the nadir?
+Zenith
+10
+
+Whats the opposite of the orient?
+Occident
+10
+
+Whats the piece of plastic used for strumming a guitar called?
+Plectrum
+10
+
+Whats the plural of mongoose?
+Mongooses
+10
+
+Whats the point value of the bullseye outer on a dartboard?
+25
+10
+
+Whats the Russian word for east which was given to early space capsules?
+Vostok
+10
+
+Whats the second largest city in Oregon?
+Eugene
+10
+
+Whats the secret identity of Don Vito Corleone?
+The godfather
+10
+
+Whats the singular of dice?
+Die
+10
+
+Whats the smallest breed of dog?
+Chihuahua
+10
+
+Whats the surname of the mediaeval author of Canterbury Tales?
+Chaucer
+10
+
+Whats the sweet life in Rome?
+La dolce vita
+10
+
+Whats the symbol of the zodiacal sign Gemini?
+Twins
+10
+
+Whats the telephone area code for Chicago?
+312
+10
+
+Whats the term for a mass of diffused gas & ice particles in solar orbit?
+Comet
+10
+
+Whats the term used for the submerged fringe of a continent?
+Continental shelf
+10
+
+Whats the termfor pleasure seeking as a way of life?
+Hedonism
+10
+
+Whats the third most common language in the world?
+Spanish
+10
+
+Whats the warmest continent?
+Africa
+10
+
+Whats the worlds largest church?
+St peters, vatican city
+10
+
+Whats the worlds largest coral reef?
+Great barrier reef
+10
+
+Whats the worlds largest sea?
+Mediterranean
+10
+
+Whats the worlds longest snake?
+Python
+10
+
+Whats the worlds second most spoken language?
+English
+10
+
+Whats towns problem with rats was solved by the Pied Piper?
+Hamlin
+10
+
+Whatt are a jockeys clothes called?
+Silks
+10
+
+which is the biggest selling car of all time?
+Volkswagen beetle
+10
+
+Wheel according to bonnie tyler, what hits you when it's too late?
+Heartache
+10
+
+Wheeled vehicle, specifically, a vehicle for carrying persons, designed to be drawn by one or more draft animals?
+Carriage
+10
+
+When ____ president Juan Per?n died on July 1, 1974, he was succeeded by his wife and vice president, Isabel, who became the first woman president in the Western Hemisphere
+Argentine
+10
+
+When a a positive & negative plate are placed together in an electrical circuit which stores a charge in the form of an electric field it is called a ____
+Capacitor
+10
+
+When a coffee seed is planted, it takes how many years to yield consumable fruit?
+Five
+10
+
+When a female horse & male donkey mate, the offspring is called a what?
+Mule
+10
+
+When a man died in ancient ____, the females in his family would smear their heads and faces with mud and wander through the city beating themselves and tearing off their clothes
+Egypt
+10
+
+When a piece of glass cracks, how fast does the crack travel?
+3,000 miles per hour
+10
+
+When a piece of glass cracks, the crack travels faster than ____ miles per hour
+Three thousand
+10
+
+When a player hits a double in darts, what can he do?
+Start scoring
+10
+
+When a rabbit scratches its dowsets, it has itchy?
+Testicles
+10
+
+When a U S army bomber crashed into the New York's Empire State Building, how many people did it kill?
+Fourteen
+10
+
+When Albert Einstein died, his final words died with him. The nurse at his side didn't understand?
+German
+10
+
+When angered, the ears of Tazmanian devils turn what color?
+Pinkish red
+10
+
+When angered, the ears of what animal turn a pinkish red?
+Tazmanian devil
+10
+
+When are finger prints formed?
+3rd week in the womb
+10
+
+When are new states admitted to the u.s?
+Noon, july 4th
+10
+
+When are shadows shorter, in summer or winter?
+Summer
+10
+
+When are the most collect calls made?
+Father's day
+10
+
+When are the only 2 occasions that Catch 22 characters are allowed to go in to see Major Major?
+When hes out
+10
+
+When asked what she wore to bed, marilyn monroe responded that she wore what?
+Chanel #5
+10
+
+When Bart spray painted a picture of Skinner,what was his principal saying?
+I am a Weiner 
+10
+
+When basketball first started how many players were on a team?
+9
+10
+
+When basketball first started, how many players were on the field?
+9
+10
+
+When Coca-Cola was first introduced in 1886, what was it advertised as?
+Brain Tonic
+10
+
+When completed in 1931, it was the tallest building in the world, at one-fifth of a mile high?
+Empire State Building
+10
+
+When cutting a diamond with a laser, ____ dust is formed
+Graphite
+10
+
+When did Alaska become the 49th US state?
+1959
+10
+
+When did Andy Warhol die?
+1987
+10
+
+When did Baden Powell found the Boy Scout movement?
+1907
+10
+
+When did Brazil move its capital from Rio de Janeiro to Brasilia?
+1960
+10
+
+When did cape verde become independed?
+1975
+10
+
+When did Castro take power in Cuba?
+1959
+10
+
+When did chuck berry's first rock and roll classic hit the charts?
+1957
+10
+
+When did colgate and crest first offer toothpaste in a pump dispenser?
+1984
+10
+
+When did disneyland open?
+1955
+10
+
+When did elizabeth ii turn 21?
+1947
+10
+
+When did England's lease on hong kong expire?
+1997
+10
+
+When did Henry Ford build his first car?
+1896
+10
+
+When did India become independant?
+1947
+10
+
+When did India go metric?
+1958
+10
+
+When did israel declare independence?
+14 may 1948
+10
+
+When did it snow in the sahara desert?
+18 february 1979
+10
+
+When did leif erikson set foot on north America?
+1000 ad
+10
+
+When did Levi Strauss produce the first jeans?
+1850
+10
+
+When did macau revert to china?
+1999
+10
+
+When did man first set foot on the moon?
+1969
+10
+
+When did Mark and Engels write the Communist Manifesto?
+1848
+10
+
+When did Nostradamus live?
+1503 1566
+10
+
+When did Pope Paul Vl say that fasting was still obligatory on certain days?
+1966
+10
+
+When did prohibition end in the usa?
+1933
+10
+
+When did prohibition in the u.s come to an end?
+1933
+10
+
+When did richard burton die?
+1984
+10
+
+When did richard burton finish his last film?
+1984
+10
+
+When did shakespeare marry anne hathaway?
+November 27, 1582
+10
+
+When did shires have reeves?
+Feudal times
+10
+
+When did singapore last play in the malaysia cup?
+1994
+10
+
+When did sir walter scott write ivanhoe?
+1819
+10
+
+When did skylab crashland in western Australia?
+July 11, 1979
+10
+
+When did the ancient Egyptians devise the 365 day calendar?
+2500 BC
+10
+
+When did the British empire become the commonwealth?
+1931
+10
+
+When did the film 'braveheart' win the oscar for best picture?
+1995
+10
+
+When did the first man walk on the moon?
+1968
+10
+
+When did the first World Series game take place?
+1903
+10
+
+When did the Fuller Brush Company begin using catalogs?
+1986
+10
+
+When did the last execution in the Tower of London take place?
+1941
+10
+
+When did the series 'lost in space' premier on cbs?
+1965
+10
+
+When did the spaniards finally expel the last of the moors and the jews?
+1492
+10
+
+When did the three points for a win system start in the football league?
+1981
+10
+
+When did the titanic sink?
+April 15, 1912
+10
+
+When did the Walt Disney resort in Florida open to the public?
+1971
+10
+
+When did vincent marotta develop the mr coffee machine?
+1972
+10
+
+When did william lyon mackenzie king retire?
+1948
+10
+
+When did women get the right to vote in the us?
+August 26, 1920
+10
+
+When do children grow fastest?
+Springtime
+10
+
+When do diurnal animals sleep?
+Night time
+10
+
+When do parallel lines meet?
+Never
+10
+
+When do you plant winter wheat?
+In the fall
+10
+
+When does a full moon always rise?
+Sunset
+10
+
+When does macau revert to china?
+1999
+10
+
+When does the uterus expand 500 times its normal size?
+During pregnancy
+10
+
+When driving from Innsbruck in Austria to Bolzano in Italy, you cross the 'Bridge of Europe' as you climb which Alpine pass?
+Brenner pass
+10
+
+When Franklin D. Roosevelt died on April 12, 1945, ____ became the first U.S. president to take office in the midst of a war
+Harry truman
+10
+
+When George I became King of England in 1714, his wife did not become Queen. He placed her under house arrest for ____ years
+32
+10
+
+When he died, the Romans re named September after him, but soon turned back to September. Who was he?
+Tiberius
+10
+
+When honey is swallowed, it enters the blood stream within a period of how many minutes?
+20 minutes
+10
+
+When hydrogen burns in the air, ____ is formed
+Water
+10
+
+When is 'trick or treat'?
+Halloween
+10
+
+When is a crepuscular animal active?
+Twilight
+10
+
+When is Farm animal awareness week traditionally held?
+Middle of september
+10
+
+When is halley's comet next due to appear?
+2062
+10
+
+When is it best to shop for shoes-at the begining of the day or at the end of the day?
+The end
+10
+
+When is it impossible to sneeze?
+With your eyes open
+10
+
+When is Jean Baptiste day in Quebec?
+June 24
+10
+
+When is Saint George's day celebrated?
+April 23rd
+10
+
+When is St. Patrick's day?
+March 17
+10
+
+When is the best month to plant tulip bulbs?
+October
+10
+
+When is the longest day in the northern hemisphere?
+June
+10
+
+When is the longest day in the southern hemisphere?
+December
+10
+
+When is the only time a flag should be flown upside down?
+Emergency
+10
+
+When is the shortest day in the northern hemisphere?
+December
+10
+
+When is the shortest day in the southern hemisphere?
+June
+10
+
+When is the top layer of a wedding cake usually eaten?
+First anniversary
+10
+
+When John F. Kennedy was president, who was his attorney general?
+Robert kennedy
+10
+
+When Jonathan Edwards smashed the world triple-jump in 1995, by how much did he increase it?
+0.31 metres
+10
+
+When kicked in the groin, a Football player has been?
+Banjoed
+10
+
+When light waves pass from one medium to another it is called?
+Refraction
+10
+
+When measuring a horse, how many inches are there in one 'hand'?
+Four
+10
+
+When ocean tides are at their highest, they are called what?
+Spring tides
+10
+
+When ocean tides are at their highest, they are called?
+Spring tides
+10
+
+When ocean tides are at their lowest, they are call what?
+Neap tides
+10
+
+When ocean tides are at their lowest, they are call?
+Neap tides
+10
+
+When olive oil is described as 'extra virgin', what has happened to it to make it so?
+First pressing of the olive
+10
+
+When read upside down, what does the term 'umop apisdn' signify?
+Upside down
+10
+
+When recognising someone's face, you use the ____ side of your brain
+Right
+10
+
+When Saigon fell the signal for all Americans to evacuate was what song by Bing Crosby being played on the radio?
+White christmas
+10
+
+When Saigon fell, the signal for all Americans to evacuate was this Bing Crosby song playing on the radio?
+White Christmas
+10
+
+When shipped to the US, the London bridge ( thought by the new owner to be the more famous Tower Bridge ) was classified by US customs to be a 'large?
+Antique
+10
+
+When solid substances in the blood are removed, what name is given to the remaining liquid?
+Plasma
+10
+
+When someone is a hanger on or serves no purpose, he is called this?
+Fifth wheel
+10
+
+When something is completely different it is said to be one of these of a different color?
+Pale
+10
+
+When Spencer Tracy won his first Academy award in 1937, his Oscar statuette mistakenly bore the name of which detective?
+Dick tracy
+10
+
+When stung by a nettle what kind of poisoning is it?
+Acidic poisoning
+10
+
+When the Amazon Lily opens What colour is the flower?
+White
+10
+
+When the Beatles kicked off their 1964 world tour from copenhagen, denmark - where was ringo?
+In the hospital 
+10
+
+When the Hoovers did not want to be overheard by White House guests, they spoke to each other in what language?
+Chinese
+10
+
+When the Titanic left Southampton in April 1912, what was its first port of call?
+Cherbourg
+10
+
+When they mate, a yak and a cow produce a?
+Dzo
+10
+
+When tomatoes were first imported from Peru into Europe what were they fondly referred to as?
+Love Apples
+10
+
+When two words are combined to form a single word (e.g., motor + hotel = motel, breakfast + lunch = brunch) the new word is called a?
+Portmanteau
+10
+
+When two words are combined to form a single word (e.g., Motor + hotel = motel, breakfast + lunch = brunch) what is the new word called?
+A portmanteau
+10
+
+When used to describe a camera, what does SLR stand for?
+Single lens reflex
+10
+
+When using a telephone, you must wait for a ____ tone before starting your call
+Dial
+10
+
+When was Abraham Lincoln elected?
+1860
+10
+
+When was apartheid introduced in south africa?
+1948
+10
+
+When was big ben completed?
+1858
+10
+
+When was black the most common colour for automobiles?
+During the depression
+10
+
+When was Braille printing invented?
+1829
+10
+
+When was buckingham palace built?
+1703
+10
+
+When was Butch Cassidy Born?
+1866
+10
+
+When was chewing gum patented?
+1869
+10
+
+When was Clinton first elected president of the U S?
+1992
+10
+
+When was crystal palace destroyed?
+1936
+10
+
+When was d-day?
+June 6, 1944
+10
+
+When was decimalisation in the u.k?
+February 4, 1971
+10
+
+When was Dr. Seuss born?
+March 2, 1904
+10
+
+When was flavored soda pop invented?
+1807
+10
+
+When was gas lighting invented?
+1792
+10
+
+When was george jones inducted into the country music hall of fame?
+1992
+10
+
+When was helium discovered?
+1868
+10
+
+When was hiroshima bombed?
+August 6, 1945
+10
+
+When was insulin discovered?
+1922
+10
+
+When was ivory soap introduced?
+1879
+10
+
+When was Lady Diana Frances Spencer born?
+July 1, 1961
+10
+
+When was Mount Everest first climbed?
+1953
+10
+
+When was nelson mandela released from prison?
+1990
+10
+
+When was nelson mandela released from robben island?
+1990
+10
+
+When was pearl harbour attacked?
+December 7, 1941
+10
+
+When was Sean Connery born?
+1930
+10
+
+When was the addressograph invented?
+1892
+10
+
+When was the Berlin wall erected?
+1961
+10
+
+When was the cascade tuning radio receiver invented?
+1913
+10
+
+When was the cash register invented?
+1879
+10
+
+When was the cathode ray tube invented?
+1878
+10
+
+When was the chair developed?
+2181 bc
+10
+
+When was the constitution fully ratified?
+1787
+10
+
+When was the descent of the holy spirit on the apostles?
+Pentecost
+10
+
+When was the dynamic loudspeaker invented?
+1924
+10
+
+When was the earthquake in tulbach?
+September 29, 1969
+10
+
+When was the Eiffel Tower completed?
+1859
+10
+
+When was the electromagnet invented?
+1828
+10
+
+When was the English and Scottish parliament united?
+1707
+10
+
+When was the Fascist party founded in Italy?
+1919
+10
+
+When was the first Australian cricket tour to England?
+1868
+10
+
+When was the first beta of Counter-Strike released?
+June 19, 1999
+10
+
+When was the first binding international ban on human cloning signed?
+January 12, 1998
+10
+
+When was the first black mayor of Chicago elected?
+1983
+10
+
+When was the first credit card issued?
+1900
+10
+
+When was the first daytime bank robbery?
+February 14, 1866
+10
+
+When was the first jet aircraft flown?
+1941
+10
+
+When was the first leap year?
+46 bc
+10
+
+When was the first Mad Max film released?
+1979
+10
+
+When was the first major road race from Paris to Bordeaux?
+1895
+10
+
+When was the first play staged at Londons Globe Theatre?
+1599
+10
+
+When was the first public radio broadcast?
+February 23, 1920
+10
+
+When was the first seeing eye dog presented to a blind person?
+April 25, 1938
+10
+
+When was the first space shuttle launched?
+April, 1981
+10
+
+When was the first suburban shopping mall opened?
+1922
+10
+
+When was the first telephone used?
+March 10, 1876
+10
+
+When was the first test tube baby born?
+1978
+10
+
+When was the first toothbrush with bristles invented?
+1498
+10
+
+When was the first transatlantic solo flight?
+1927
+10
+
+When was the forked plow invented?
+Before 3000 b c
+10
+
+When was the gas turbine invented?
+1849
+10
+
+When was the incandescent lamp invented?
+1879
+10
+
+When was the internet first establish[19-something]?
+1957
+10
+
+When was the Kon-Tiki expedition?
+1947
+10
+
+When was the laser invented?
+1960
+10
+
+When was the last Supernova in our galaxy?
+1604
+10
+
+When was the last time comet hale bop was last seen?
+1997
+10
+
+When was the last time the Olympic games were held in London?
+1948
+10
+
+When was the leaning tower of pisa completed?
+1350
+10
+
+When was the magnetic telegraph invented?
+1837
+10
+
+When was the maiden voyage of the 'Titanic'?
+1912
+10
+
+When was the miss world competition founded?
+1951
+10
+
+When was the newspaper 'pravda' first published?
+1912
+10
+
+When was the perestroika policy started in the soviet union?
+January 1988
+10
+
+When was the photoelectric cell invented?
+1895
+10
+
+When was the polaroid land camera invented?
+1948
+10
+
+When was the quadruplex telegraph invented?
+1864
+10
+
+When was the rechargable storage battery invented?
+1859
+10
+
+When was the record breaking flood of the North Sea?
+1953
+10
+
+When was the resurrection?
+Easter
+10
+
+When was the revolving door invented?
+1888
+10
+
+When was the Rosetta Stone decoded?
+1822
+10
+
+When was the rosetta stone discovered?
+1799
+10
+
+When was the Russian satellite Sputnik 1 launched?
+October 4, 1957
+10
+
+When was the safety pin patented?
+1849
+10
+
+When was the sewing machine patented?
+August 12, 1851
+10
+
+When was the shortest war in history?
+1896
+10
+
+When was the smoke detector invented?
+1969
+10
+
+When was the stock ticker invented?
+1870
+10
+
+When was the tea bag developed?
+1908
+10
+
+When was the the Lewis and Clark Expedition?
+1804
+10
+
+When was the tuberculosis bacterium discovered?
+1932
+10
+
+When was the typewriter invented?
+1867
+10
+
+When was the union of south africa founded?
+1910
+10
+
+When was the v.90 technology implemented?
+February 1998
+10
+
+When was the war of 1812?
+1812
+10
+
+When was the watergate break in?
+1972
+10
+
+When was the Womens land army founded?
+June 1939
+10
+
+When was the worlds first human heart transplant performed?
+1967
+10
+
+When were 'instamatic' cameras first sold?
+1968
+10
+
+When were airplanes first used in war?
+1911
+10
+
+When were bank holidays first indroduced into Britain?
+1871
+10
+
+When were false eyelashes invented?
+1916
+10
+
+When were film audiences treated to a flushing toilet for the first time?
+Psycho
+10
+
+When were fortune cookies invented?
+1918
+10
+
+When were jeans invented?
+1847
+10
+
+When were the Dead Sea scrolls discovered?
+1947
+10
+
+When were the first scheduled air mail runs?
+1918
+10
+
+When were the salem witch trials?
+1692
+10
+
+When will smith was known as fresh prince, who was his rap partner?
+Dj jazzy jeff
+10
+
+When will the time capsule from the 1984 summer olympics be opened?
+2034
+10
+
+When you agree to end a quarrel with someone, you bury this?
+Hatchet
+10
+
+When you blush, your also ____ reddens
+Stomach lining
+10
+
+When you drive in your car, 120 Mph how long will it take to drive 90 miles?
+45 mins
+10
+
+When you go partying around the town, you paint the town this color?
+Red
+10
+
+When you quit a job, you do not want to be a jerk; you don't want to burn these behind you?
+Bridges
+10
+
+When young, black sea basses are mostly female, but at the age of ____ years many switch sexes to male
+Five
+10
+
+When, prior to the 2001 outbreak was the last time that a foot and mouth epidemic broke out in Britain?
+1967
+10
+
+Where are 25% of the world's pigs?
+China
+10
+
+Where are 47 czars buried?
+Kremlin
+10
+
+Where are a cow's sweat glands?
+Nose
+10
+
+Where are a snail's reproductive organs?
+Head
+10
+
+Where are American presidents carved in stone?
+Mount rushmore
+10
+
+Where are bangtails found?
+Mailer envelopes
+10
+
+Where are birds kept in captivity?
+Aviary
+10
+
+Where are chinese gooseberries from?
+New zealand
+10
+
+Where are Eriador, Rhun, Gondor and the Bay of Belfalas?
+Middle earth
+10
+
+Where are gettysburg and the liberty bell?
+Pennsylvania
+10
+
+Where are Graz and Linz?
+Austria
+10
+
+Where are icebergs usually larger?
+Antarctica
+10
+
+Where are metamorphic rocks usually found?
+Mountain ranges
+10
+
+Where are panama hats originally made?
+Ecuador
+10
+
+Where are phalanges?
+Hand
+10
+
+Where are plaques of humans wearing nothing?
+Pioneer spacecraft
+10
+
+Where are queen mary's gardens?
+Regents park
+10
+
+Where are Swedish buns found?
+Denmark
+10
+
+Where are the 2006 Commonwealth Games to be held?
+Melbourne
+10
+
+Where are the 2006 Winter Olympics to be held?
+Turin
+10
+
+Where are the Appalachians?
+North America
+10
+
+Where are the Austerlitz and Victor Hugo underground stops?
+Paris
+10
+
+Where are the cheddar caves?
+Mendips
+10
+
+Where are the colours blue and yellow used at funerals for warding off evil spirits?
+Singapore
+10
+
+Where are the convolutions of Broca?
+Brain
+10
+
+Where are the crown jewels kept?
+Tower of london
+10
+
+Where are the Descartes highlands?
+On the moon
+10
+
+Where are the elgin marbles?
+The British museum
+10
+
+Where are the everglades?
+Florida
+10
+
+Where are the famed tivoli gardens?
+Copenhagen
+10
+
+Where are the finger lakes?
+New york
+10
+
+Where are the greatest tides recorded?
+Bay of fundy
+10
+
+Where are the guards who wear bearskins?
+Buckingham palace
+10
+
+Where are the Guiana Highlands?
+Northern south America
+10
+
+Where are the headquarters for the c.i.a?
+Langley, Virginia
+10
+
+Where are the islands of langerhans?
+Pancreas
+10
+
+Where are the katydid bug's ears?
+Hind legs
+10
+
+Where are the most expensive seats at a bullfight?
+In the shade
+10
+
+Where are the mountains of mourne?
+Northern Ireland
+10
+
+Where are the pampas?
+Argentina
+10
+
+Where are the pitti and uffizi art galleries?
+Florence
+10
+
+Where are the Queen Elizabeth Islands?
+Canada
+10
+
+Where are the smallest bones in the human body located?
+Ear
+10
+
+Where are the two steepest streets in the u.s.a?
+San francisco
+10
+
+Where are the Vosges Mountains?
+France
+10
+
+Where are there over 58 million dogs?
+U s a
+10
+
+Where are three quarters of the world's pineapples grown?
+Hawaii
+10
+
+Where are your metatarsals?
+In your feet
+10
+
+Where can Pikes Peak be found?
+Colorado
+10
+
+Where can pulmonary disease be found?
+Lung
+10
+
+Where can tuolumne meadows and the hetch hetchy reservoir be found?
+Yosemite national park
+10
+
+Where can you buy a cup of coffee with cruzeiros?
+Brazil
+10
+
+Where can you find the smallest bone in the human body?
+Ear
+10
+
+Where can you make a meal of Spaghetti Junction?
+Birmingham
+10
+
+Where can you see kheops pyramid?
+Gizeh
+10
+
+Where could one find a stevie ray vaughan memorial?
+Austin texas
+10
+
+Where did 'paella' originate?
+Spain
+10
+
+Where did 19 year old babe ruth hit his first professional home run?
+Maple leaf park
+10
+
+Where did 24 democratic and republican national conventions take place?
+Chicago
+10
+
+Where did a court rule that women were breaking the law by camping on a common because the common they were camping on wasnt a common?
+Greenham common
+10
+
+Where did a shire have a reeve?
+England
+10
+
+Where did abraham lincoln gave his historic speech?
+Gettysburg, pennsylvania
+10
+
+Where did Adolph Hitler write Mein Kampf?
+In prison
+10
+
+Where did anne frank die?
+Belsen
+10
+
+Where did Anne Hathaway live?
+Stratford on avon
+10
+
+Where did apple computers get its gui interface?
+Xerox
+10
+
+Where did aristotle believe the seat of intelligence was?
+Heart
+10
+
+Where did bagpipes originate?
+Middle east
+10
+
+Where did bill and hilary clinton switch on christmas lights in 1995?
+Belfast, Ireland
+10
+
+Where did brigham young lead the mormons?
+Great salt lake
+10
+
+Where did Chiang Kai Shek take refuge?
+Taiwan
+10
+
+Where did chop suey originate from?
+United states
+10
+
+Where did Clark Kent usually change into his Superman Costume in the Daily Planet building?
+Store Room
+10
+
+Where did cuneiform originate?
+Sumer
+10
+
+Where did De Gaulle flee to after France surrendered to Germany?
+Britain
+10
+
+Where did dorothy's house land in 'the wizard of oz'?
+On the wicked witch of
+10
+
+Where did Dr Zachary Smith get lost?
+In space
+10
+
+Where did edam cheese originate?
+Holland
+10
+
+Where did Edward III keep his greyhounds?
+Isle of dogs
+10
+
+Where did forrest gump keep the book 'curious george'?
+In his suitcase
+10
+
+Where did General Douglas Macarthur return to?
+Corregidor
+10
+
+Where did georgo and laszlo biro invented the ball point pen?
+Hungary
+10
+
+Where did gladiators fight professionally?
+Roman arenas
+10
+
+Where did gulliver find a race of tiny people?
+Lilliput
+10
+
+Where did Harley Proctor find the name 'Ivory' for what is fondly known today as 'Ivory Soap?
+The Bible
+10
+
+Where did Hendrik the Dutch boy stick his finger?
+Dyke
+10
+
+Where did Hitler's 1923 Beer Hall Putsch take place?
+Munich
+10
+
+Where did Howdy Doody live?
+Doodyville
+10
+
+Where did Ian Botham score his 149 not out Test snatching innings in 1981?
+Headingley
+10
+
+Where did ice hockey originate?
+Canada
+10
+
+Where did israeli agents grab adolf eichmann?
+Argentina
+10
+
+Where did Japonica originate?
+Japan
+10
+
+Where did Kikkoman Soy Sauce originate from?
+Japan
+10
+
+Where did Laika the first dog in space die?
+In space
+10
+
+Where did little miss muffet sit?
+On her tuffet
+10
+
+Where did Lord Byron die?
+Greece
+10
+
+Where did Mighty Mouse get his superpowers?
+Supermarket
+10
+
+Where did moses receive the ten commandments?
+Mount sinai
+10
+
+Where did Mr Badger live in _The Wind in the Willows?
+The wild wood
+10
+
+Where did napoleon die?
+St. helena
+10
+
+Where did napoleon suffer his final defeat?
+Waterloo
+10
+
+Where did nelson lose his eye?
+Battle of calvi
+10
+
+Where did nikki lauda get his disfiguring burns?
+Nurburgring
+10
+
+Where did north vietnam pt boats attack the uss maddox in 1964?
+Gulf of tonkin
+10
+
+Where did orienteering originate?
+Sweden
+10
+
+Where did over 300 defiant Indians head off to, after Sitting Bull was killed?
+Wounded knee
+10
+
+Where did people go to avoid the draft during the vietnam war?
+Canada
+10
+
+Where did petula clark advise you not to sleep?
+Subway
+10
+
+Where did phileas fogg begin and end his trip around the world?
+London
+10
+
+Where did Phyllis Nelson invite us to Move in the 1980s?
+Closer
+10
+
+Where did Prince Charles not want to see - a monstrous carbuncle on the face of a much loved friend?
+The national gallery
+10
+
+Where did Robert Clive find fame and fortune in the 1700s?
+India
+10
+
+Where did robert preston land a helicopter after buzzing cars on the baltimore-Washington parkway on feb 17, 1974?
+White house lawn
+10
+
+Where did Russian dressing originate from?
+The united states
+10
+
+Where did Simon & Simon take place?
+San Diego
+10
+
+Where did skylab crash land?
+Australia
+10
+
+Where did snooker originate?
+India
+10
+
+Where did Stalin, Churchill, Attlee and Truman meet in 1945 to determine the future of Germany after their unconditional surrender?
+Potsdam
+10
+
+Where did surfing originate?
+Hawaii
+10
+
+Where did the 1948 winter olympics take place?
+St moritz
+10
+
+Where did the 1972 winter olympics take place?
+Sapporo
+10
+
+Where did the Bay Of Pigs fiasco take place?
+Cuba
+10
+
+Where did the bayonet originate?
+Bayonne, france
+10
+
+Where did the burglary that led to the resignation of an American President take place?
+Watergate Building, Washington DC
+10
+
+Where did the celts believe dead heroes went?
+Avalon
+10
+
+Where did the coffee plant originally grow in the wild?
+Africa
+10
+
+Where did the deposed Shah of Iran finally find refuge?
+Egypt
+10
+
+Where did the deposed Shah of Iran find refuge?
+Egypt
+10
+
+Where did the dormouse finish up at the Mad Hatter's tea party?
+In the teapot
+10
+
+Where did the eentsy-weentsy spider climb?
+Up the water spout
+10
+
+Where did the exxon valdez oil spill occur?
+Prince william sound
+10
+
+Where did the famous shootout at the ok corral occur?
+Tombstone
+10
+
+Where did the flower Lupin originate?
+Canada
+10
+
+Where did the Ghost of Christmas Present take Scrooge first?
+His clerk's
+10
+
+Where did the Great fire of London break out in 1666?
+A bakers shop in Pudding Lane
+10
+
+Where did the greek gods live?
+Mount olympus
+10
+
+Where did the incas live?
+Peru
+10
+
+Where did the industrial revolution start?
+England
+10
+
+Where did The Iron Duke triumph over The Man of Destiny?
+Waterloo
+10
+
+Where did the judds spend years shopping demos recorded on a cassette recorder?
+Nashville, tennessee
+10
+
+Where did the lib dems hold there conference this year(2002)?
+Brighton
+10
+
+Where did the Mafia originate?
+Sicily
+10
+
+Where did the most powerful earthquake in us history occur during 1811?
+New madrid Missouri
+10
+
+Where did the oil tanker Torrey Canyon come from?
+Kuwait
+10
+
+Where did the olympic games originate?
+Olympus
+10
+
+Where did the olympics originate?
+Greece
+10
+
+Where did the Orient Express end its run from Istanbul?
+Paris
+10
+
+Where did the original thugs come from?
+India
+10
+
+Where did the Polka originate?
+Poland
+10
+
+Where did the Rainbow Bridge replace the Honeymoon Bridge?
+Niagra falls
+10
+
+Where did the ricardos move to when they left New York City?
+Connecticut
+10
+
+Where did the rumba originate?
+Cuba
+10
+
+Where did the Simpsons find Santa's Little Helper?
+Springfield Downs Dog Track
+10
+
+Where did the story of cinderella originate?
+China
+10
+
+Where did the suffragette Emily Davison die?
+Epsom
+10
+
+Where did the term 'hay fever' originate?
+England
+10
+
+Where did the word 'biscuit' originate?
+France
+10
+
+Where did the world's first successful human heart transplant take place?
+Cape town
+10
+
+Where did thelast scene of The Graduate take place?
+On a bus
+10
+
+Where did Thomas Magnum grow up as a kid?
+San Diego
+10
+
+Where did tom brown graduate to from rugby?
+Oxford
+10
+
+Where did two Boeing 747 aeroplanes collide on a runway in 1977, with 583 fatalities?
+Tenerife
+10
+
+Where did two boeing 747's collide in 1977?
+Canary islands
+10
+
+Where did Vasco da Gama sail to in 1498?
+India
+10
+
+Where did voodoo originate?
+Haiti
+10
+
+Where did wilt chamberlain play collegiate ball?
+Kansas
+10
+
+Where did Wolfe defeat the French under Montcalm?
+Quebec
+10
+
+Where do 'open-collar workers' work?
+Home
+10
+
+Where do arboreal animals live?
+Trees
+10
+
+Where do bees convert nectar to honey?
+Their digestive tract
+10
+
+Where do cars carrying GBZ identification plates come from?
+Gibraltar
+10
+
+Where do cars with GBA identity plates come from?
+Aldernay
+10
+
+Where do cars with GBZ number plates come from?
+Gibralter
+10
+
+Where do cricketers rub linseed oil?
+Their bats
+10
+
+Where do divers leap from a 100 foot cliff between the Quebrada rocks?
+Acapulco
+10
+
+Where do divers leap from a 100 foot cliff into waters between the Quebrada rocks?
+Acapulco
+10
+
+Where do Drivada people live?
+India
+10
+
+Where do Eskimos wear mukluks?
+Feet
+10
+
+Where do gallinaceous birds nest?
+On the ground
+10
+
+Where do gaur cattle come from?
+India
+10
+
+Where do Grand Prix drivers put their cars at the beginning of a race?
+Grid
+10
+
+Where do Gurkhas come from?
+Nepal
+10
+
+Where do hikers sleep, was founded by George Williams and sung about by Village People?
+Ymca
+10
+
+Where do hippopotamuses do 80%of their vocalizations?
+Underwater
+10
+
+Where do newts spend their adult life?
+On land
+10
+
+Where do nice ladies buy their knickers?
+Marks & Spencer
+10
+
+Where do patients with biliary colic experience pain?
+Right upper quadrant
+10
+
+Where do penguins come from?
+South pole
+10
+
+Where do pilgrims go to march around the Kaaba and kiss The Black Stone?
+Mecca
+10
+
+Where do pulp come from?
+Sheffield
+10
+
+Where do red onions originate?
+Italy
+10
+
+Where do saunas originate from?
+Finland
+10
+
+Where do scousers come from?
+Liverpool
+10
+
+Where do swallows migrate to for the winter?
+South africa
+10
+
+Where do the amish live?
+Pennsylvania
+10
+
+Where do the atlanta braves play their home games?
+Turner field
+10
+
+Where do the italians host the grand prix?
+Monza
+10
+
+Where do the New York giants and New York jets play their home games?
+New jersey
+10
+
+Where do the seas never have water in them?
+Moon
+10
+
+Where do the stars leave their footprints in wet cement?
+Grauman's chinese theatre
+10
+
+Where do the Super Bowl winning Cowboys come form?
+Dallas
+10
+
+Where do you go to row on the Po?
+Italy
+10
+
+Where do you pass through Pedro Miguel Lock?
+The panama canal
+10
+
+Where do you pass through the Pedron Miguel lock?
+Panama canal
+10
+
+Where does 'rijsttafel' originate?
+Indonesia
+10
+
+Where does a breast buffer work?
+A shoe factory
+10
+
+Where does a camel store its reserve of water?
+Stomach
+10
+
+Where does a car with a sticker bearing the letters CH come from?
+Switzerland
+10
+
+Where does a cow have its sweat glands?
+In its nose
+10
+
+Where does a john dory live on land, in the air or in the water?
+Water
+10
+
+Where does a librocularist read?
+In bed
+10
+
+Where does a tortoise have an upturned shell at its neck so it can eat cactus brances?
+Galapagos islands
+10
+
+Where does alfred hitchcock appear in 'lifeboat'?
+Newspaper
+10
+
+Where does Aslan live?
+Narnia
+10
+
+Where does Barney become trapped in his Plow King truck?
+Widow's Peak 
+10
+
+Where does bruce willis originally come from?
+Austria
+10
+
+Where does Carousel begin?
+In heaven
+10
+
+Where does clifton clowers live with his daughter?
+Wolverton mountain
+10
+
+Where does Dilbert think of inventions?
+In the bathtub
+10
+
+Where does Greg Norman come from?
+Australia
+10
+
+Where does Homer put his first stop sign?
+Gee St. and Guelph 
+10
+
+Where does maple syrup come from?
+Canada
+10
+
+Where does Milhouse's dad work?
+The Cracker Factory
+10
+
+Where does most of the worlds oxygen originate from?
+Water
+10
+
+Where does nessie live?
+Loch ness Scotland
+10
+
+Where does nodding the head mean no, and shaking it mean yes?
+Albania
+10
+
+Where does Otto immediately move to upon losing his job?
+A Trash-Co. Waste Disposal Unit 
+10
+
+Where does queen elizabeth live when she's in london?
+Buckingham palace
+10
+
+Where does sin-jin like to vacation?
+St johns
+10
+
+Where does the curious crawling parrot called the kakapo live?
+New zealand
+10
+
+Where does the Dali Lama come from?
+Tibet
+10
+
+Where does the embryo implant itself in a tubal pregnancy?
+A fallopian tube
+10
+
+Where does the european parliament meet?
+Strasbourg
+10
+
+Where does the famous 'running of the bulls' take place?
+Pamplona
+10
+
+Where does the girl come from in astrid gilberto's most famous song?
+Ipanema
+10
+
+Where does the head of the Kwik-E-Mart reside?
+India 
+10
+
+Where does the Iditarod dog sled race take place?
+Alaska
+10
+
+Where does the island of surtesy lie?
+Off Iceland
+10
+
+Where does the kangaroo's tail have to be situated in order for it to jump?
+Touching the ground
+10
+
+Where does the Lutine Bell hang?
+Lloyds of London
+10
+
+Where does the Rialto Bridge span the Grand Canal?
+Venice
+10
+
+Where does the three appear between seventeen and nineteen?
+On a dartboard
+10
+
+Where does the u.s government keep it's supply of silver?
+West point academy
+10
+
+Where does the umpire at the batsman's end stand on a cricket field?
+At Square Leg
+10
+
+Where does the univerity of maryland's football team play its home games?
+Byrd stadium
+10
+
+Where does the wine Mateus come from?
+Portugal
+10
+
+Where does the word denim originate?
+De nimes
+10
+
+Where does the Yellow brick road go?
+The emerald city
+10
+
+Where in a tree does photosynthesis occur?
+Leaves
+10
+
+Where in an old house would you find wattle?
+Walls
+10
+
+Where in ancient greece were the original olympics held?
+Olympia
+10
+
+Where in Britain can you see a grape vine that is certified 300 years old?
+Hampton court
+10
+
+Where in britain was the first combined heart and lung transplant performed?
+Harefield hospital
+10
+
+Where in England did lady godiva bare all?
+Coventry
+10
+
+Where in England is princess diana buried?
+Northampton
+10
+
+Where In Europe Is It Illegal For Residents To Gamble But Allowed By Non-Residents?
+Monte Carlo
+10
+
+Where in Europe is the Barbary ape found in the wild?
+Gibraltar
+10
+
+Where in Europe would you visit the village of Y?
+France
+10
+
+Where in France is the summer residence of thle French President?
+Fontainebleau
+10
+
+Where in Germany are the Passion Plays held?
+Oberammergau
+10
+
+Where in Huddersfield was the Rugby League formed in 1895?
+The george hotel
+10
+
+Where in India is the Golden Temple, centre of the Sikh religion?
+Amritsar
+10
+
+Where in Italy is the wine Marsala made?
+Sicily
+10
+
+Where in its body might a pony suffer from laminitis?
+Feet
+10
+
+Where in london are there four bronze lions?
+Trafalgar square
+10
+
+Where in London is Rotten Row?
+Hyde park
+10
+
+Where in London is the Jerusalem Chamber?
+Westminster abbey
+10
+
+Where in London was the Great Exhibition of 1851 held?
+Hyde park
+10
+
+Where in scandinavia could you visit the village of a?
+Norway
+10
+
+Where in the americas is it only 47 miles from the atlantic to the pacific?
+Panama
+10
+
+Where in the Ancient World, were the Pillars of Hercules?
+Straits of gibraltar
+10
+
+Where in the body are the Haversian canals?
+Inside bones
+10
+
+Where in the body is the axilla?
+Armpit
+10
+
+Where in the body is the labyrinth?
+The ear
+10
+
+Where in the body would you find the Bowman's capsule?
+Kidney
+10
+
+Where in the body would you find the carpals?
+Wrist
+10
+
+Where in the body would you find the left ventricle?
+Heart
+10
+
+Where in the body would you find the malleus, incus and stapes?
+Inner ear
+10
+
+Where in the heck do you go to row on the po?
+Italy
+10
+
+Where in the heck is the coccyx?
+Base of the spine
+10
+
+Where in the heck would you find the gum department store?
+Moscow
+10
+
+Where in the heck would you find the medulla oblongata?
+The brain
+10
+
+Where in the human body is the Malleus bone?
+Ear
+10
+
+Where in the human body is the round window?
+Ear
+10
+
+Where in the human body is the ulna?
+Your arm
+10
+
+Where in the United States would you find the country's only royal palace?
+Hawaii
+10
+
+Where in the US is Great Salt Lake?
+Utah
+10
+
+Where in the USA is Yale university?
+Connecticut
+10
+
+Where in the world are most diamonds found?
+Australia
+10
+
+Where in the world is El Salvador?
+Central America
+10
+
+Where in the world would you find Adelie Land?
+Antarctica
+10
+
+Where in the world would you find the Provinces of Santa Cruz, Rio Negro, Chubut and Neuquen?
+Argentina
+10
+
+Where in the world would you find the town of Dildo?
+Newfoundland
+10
+
+Where inEngland is the tradional Furry Dance held annually in May?
+Helston
+10
+
+Where is 'kicking horse pass'?
+Rockies
+10
+
+Where is 'old faithful'?
+Yellowstone national park
+10
+
+Where is 'rijsttafel' a speciality?
+Holland
+10
+
+Where is 'the breadbasket of Russia'?
+Ukraine
+10
+
+Where is 'the loop' and the 'magnificent mile'?
+Chicago
+10
+
+Where is 'the strip' that was designated an official scenic byway?
+Las vegas
+10
+
+Where is a 'crossbuck'?
+Railroad crossing
+10
+
+Where is a fish's caudal fin?
+The tail
+10
+
+Where is a nave, apse, atrium and narthex?
+Basilica
+10
+
+Where is a shrimps heart?
+In its head
+10
+
+Where is abbotsford?
+Canada
+10
+
+Where is Albuquerque?
+New Mexico
+10
+
+Where is alsace-lorraine?
+France
+10
+
+Where is America's largest rosary is located?
+Fatima shrine in holliston, massachusetts
+10
+
+Where is amundsen scott station?
+South pole
+10
+
+Where is an Axminster carpet now made?
+Wilton
+10
+
+Where is an insect's skeleton?
+Outside the body
+10
+
+Where is ancient troy?
+Turkey
+10
+
+Where is antofagasta?
+Chile
+10
+
+Where is Apalachee Bay?
+Florida
+10
+
+Where is appomattox?
+Virginia
+10
+
+Where is arthur c. clarke presently residing (as of 1999)?
+Sri lanka
+10
+
+Where is banff national park?
+Canada
+10
+
+Where is Bernebeu stadium?
+Barcelona
+10
+
+Where is big ben?
+London
+10
+
+Where is bill gates' company based?
+Redmond, Washington
+10
+
+Where is bond street?
+London
+10
+
+Where is brest?
+France
+10
+
+Where is Britains first cast iron bridge?
+Ironbridge
+10
+
+Where is carnaby street?
+London
+10
+
+Where is Casablanca?
+Morocco
+10
+
+Where is Charles Darwin buried?
+Westminster Abbey
+10
+
+Where is charlottetown?
+Prince edward island
+10
+
+Where is chobe national park?
+Botswana
+10
+
+Where is christopher columbus buried?
+England
+10
+
+Where is concord?
+New hampshire
+10
+
+Where is crystal palace?
+London
+10
+
+Where is cusco?
+Peru
+10
+
+Where is de nimes?
+France
+10
+
+Where is disneyland?
+California
+10
+
+Where is disneyworld?
+Floria
+10
+
+Where is dizengoff square?
+Tel aviv
+10
+
+Where is Dronning Maud land to be found?
+Antarctica
+10
+
+Where is drury lane?
+London
+10
+
+Where is dueling legal as long as both parties are registered blood donors?
+Paraguay
+10
+
+Where is duelling legal as long as both parties are registered blood donors?
+Paraguay
+10
+
+Where is Enclyclopaedia Britannica based and published?
+Chicago
+10
+
+Where is Euston Station located?
+London
+10
+
+Where is frostbite falls?
+Minnesota
+10
+
+Where is fujiyama?
+Japan
+10
+
+Where is gasoline alley?
+Indianapolis motor speedway
+10
+
+Where is george Washington buried?
+Mount vernon
+10
+
+Where is gorki park?
+Moscow
+10
+
+Where is greenwich village?
+New york
+10
+
+Where is guantanamo?
+Cuba
+10
+
+Where is halicarnassus?
+Asia minor
+10
+
+Where is Harry's New York Bar?
+Paris
+10
+
+Where is hell's canyon?
+Idaho-Oregon boundary
+10
+
+Where is hell's kitchen?
+New york
+10
+
+Where is honshu island?
+Japan
+10
+
+Where is hoover dam?
+Arizona
+10
+
+Where is huracan stadium?
+Buenos aires
+10
+
+Where is Hurst Castle, built by publisher William Randolph Hearst?
+San simeon, California
+10
+
+Where is insulin produced?
+Pancreas
+10
+
+Where is it a criminal offence to drive a dirty car?
+Russia
+10
+
+Where is it bad luck to say 'macbeth'?
+In a theatre
+10
+
+Where is it polite to stick your tongue out at your guests?
+Tibet
+10
+
+Where is karachi?
+Pakistan
+10
+
+Where is karl marx buried?
+London
+10
+
+Where is kruger national park?
+South africa
+10
+
+Where is la figaro published?
+Paris
+10
+
+Where is lahore?
+Pakistan
+10
+
+Where is lake baikal?
+Russia
+10
+
+Where is lake como?
+Italy
+10
+
+Where is Lake Winnebago?
+Wisconsin
+10
+
+Where is Las Palmas?
+Canary islands
+10
+
+Where is Le Figaro published?
+Paris
+10
+
+Where is legoland?
+Copenhagen
+10
+
+Where is lionel richie dancing?
+On the ceiling
+10
+
+Where is llanfaipollgwyngyllgogerychwyrndobll llantisiliogogoch?
+Wales
+10
+
+Where is loch ness?
+Scotland
+10
+
+Where is London's famous Spaniard's Inn?
+Hampstead
+10
+
+Where is Londons whispering gallery?
+St Pauls cathedral
+10
+
+Where is madras?
+India
+10
+
+Where is mandalay?
+Burma
+10
+
+Where is mauna kea?
+Hawaii
+10
+
+Where is maxim's restaurant?
+Paris
+10
+
+Where is milk the most popular beverage?
+North America
+10
+
+Where is Montevideo?
+Uraguay
+10
+
+Where is montmartre?
+Paris
+10
+
+Where is mount augustus?
+Western Australia
+10
+
+Where is Mount Etna?
+Sicily
+10
+
+Where is mount mckinley?
+Alaska
+10
+
+Where is Mount Oylmpus?
+Greece
+10
+
+Where is mount rushmore?
+South dakota
+10
+
+Where is mount st helens?
+Washington
+10
+
+Where is mount vernon?
+Virginia
+10
+
+Where is mount vesuvius?
+Italy
+10
+
+Where is Mount Victoria?
+Fiji
+10
+
+Where is nelson's monument?
+Trafalgar square, london
+10
+
+Where is noah's ark believed to have landed?
+Mount ararat
+10
+
+Where is noah's ark thought to have landed?
+Mount ararat
+10
+
+Where is normandy?
+France
+10
+
+Where is nuuk?
+Greenland
+10
+
+Where is one place that the U S flag flies full staff 24 hours a day, is never raised or lowered, & is never saluted?
+On the moon
+10
+
+Where is poet's corner?
+Westminster abbey
+10
+
+Where is Prince of Wales Island?
+Canada
+10
+
+Where is Pushtu mainly spoken?
+Afghanistan
+10
+
+Where is Queen Vctoria's former home, Osborne House?
+Isle of wight
+10
+
+Where is Rangoon?
+Burma
+10
+
+Where is red square?
+Moscow
+10
+
+Where is roast camel usually served?
+Bedouin feasts
+10
+
+Where is rocky and bullwinkle's home?
+Frostbite falls
+10
+
+Where is Ruritania?
+Nowhere
+10
+
+Where is saint Paul's cathedral?
+London
+10
+
+Where is salzburg?
+Austria
+10
+
+Where is sand creek?
+Colorado
+10
+
+Where is sapporo?
+Japan
+10
+
+Where is sclerotinite found?
+Coal
+10
+
+Where is Shangri La hidden according to the novelist James Hilton?
+Himalayan valley
+10
+
+Where is Shangri-La supposed to be?
+Himalayas
+10
+
+Where is sir herbert baker buried?
+Westminster abbey
+10
+
+Where is Sir Winston Churchill buried?
+Bladon
+10
+
+Where is soweto?
+South africa
+10
+
+Where is Spain the southernmost?
+Continental europe
+10
+
+Where is St Paul's Cathedral?
+London
+10
+
+Where is taipei?
+Taiwan
+10
+
+Where is terre haute?
+Indiana
+10
+
+Where is th epoet Robert Browning buried?
+Westminster Abbey
+10
+
+Where is the 'cutty sark' in permanent dry dock?
+Greenwich
+10
+
+Where is the 'Day of the Dead' celebrated?
+Mexico
+10
+
+Where is the 'grand canyon state'?
+Arizona
+10
+
+Where is the 'graveyard of the atlantic'?
+Cape hatteras
+10
+
+Where is the 'whispering gallery'?
+St Paul's cathedral
+10
+
+Where is the 19th hole on a golf course?
+In the clubhouse
+10
+
+Where is the 2,000 Guineas run?
+Newmarket
+10
+
+Where is The Abominable Snowman said to wander?
+Himalayas
+10
+
+Where is the Alhambra?
+Grenada,Spain
+10
+
+Where is the ancient game of shinty played?
+Scottish highland
+10
+
+Where is the ancient world wonder, the mausoleum?
+Halicarnassus
+10
+
+Where is the annual all-American soap box derby held?
+Akron, ohio
+10
+
+Where is the arc de triomphe?
+Paris
+10
+
+Where is the arch of hadrian?
+Athens
+10
+
+Where is the areopagus?
+Athens, greece
+10
+
+Where is the Australian dependency of Kaiser Wilhelm's Land?
+Antarctica
+10
+
+Where is the bank of England?
+Threadneedle street
+10
+
+Where is the Bay of Campeche?
+Mexico
+10
+
+Where is the Bernabau stadium?
+Madrid, Spain
+10
+
+Where is the Bernebau Stadium?
+Barcelona
+10
+
+Where is the bernini bristol hotel?
+Rome
+10
+
+Where is the best brandy bottled?
+Cognac, france
+10
+
+Where is the biggest calibre cannon?
+Kremlin
+10
+
+Where is the blarney stone?
+Blarney castle
+10
+
+Where is the blue grotto?
+Capri, Italy
+10
+
+Where is the bridge of sighs?
+Venice
+10
+
+Where is the calabria region?
+Italy
+10
+
+Where is the Cambrian mountain range?
+Wales
+10
+
+Where is the cape of good hope?
+Cape town, south africa
+10
+
+Where is the capital of the mormons?
+Salt lake city
+10
+
+Where is the centennial safe?
+Washington dc
+10
+
+Where is the chief source of gem-quality topaz?
+Brazil
+10
+
+Where is the circus hall of fame?
+Sarasota, fl
+10
+
+Where is the cleanest air?
+Tasmania
+10
+
+Where is the clear watery solution known as the 'aqueous humor'?
+Eye
+10
+
+Where is the colisseum?
+Rome
+10
+
+Where is the colorado desert?
+Southern California
+10
+
+Where is the columella?
+Nose
+10
+
+Where is the constellation Scorpius located?
+Southern skies
+10
+
+Where is the cordon bleu school of cooking?
+Paris
+10
+
+Where is the cotton bowl played?
+Dallas
+10
+
+Where is the dalai lama's palace?
+Tibet
+10
+
+Where is the dam square?
+Amsterdam
+10
+
+Where is the Devil's Tower?
+Wyoming usa
+10
+
+Where is the dewey classification system used?
+Library
+10
+
+Where is the district 'elephant and castle'?
+London
+10
+
+Where is the driest place on earth (place, country)?
+Arica chile
+10
+
+Where is the Dutch seat of government?
+The hague
+10
+
+Where is the famed Arch of Hadrian?
+Athens
+10
+
+Where is the famed Crazy Horse Saloon?
+Paris
+10
+
+Where is the famed kew gardens?
+London
+10
+
+Where is the famous haight street?
+San francisco
+10
+
+Where is the fashion capital of the world?
+Milan, Italy
+10
+
+Where is the fashion capital?
+Milan, Italy
+10
+
+Where is the fictional television station bdrx located?
+Bedrock
+10
+
+Where is the fissure of rolando?
+Brain
+10
+
+Where is the fonz's leather jacket today?
+Smithsonian institute
+10
+
+Where is the Formula One British Grand Prix held?
+Silverstone
+10
+
+Where is the Gateway Arch monument?
+St louis, Missouri
+10
+
+Where is the golden gate bridge?
+San francisco
+10
+
+Where is the grande canal?
+Venice
+10
+
+Where is the great victoria desert?
+Australia
+10
+
+Where is the greatest collection of Leonardo da Vincis drawings kept?
+Windsor Castle
+10
+
+Where is the guggenheim museum?
+New york city
+10
+
+Where is the Gulf of Carpentaria?
+Australia
+10
+
+Where is the GUM department store?
+Moscow
+10
+
+Where is the hall of mirrors?
+Palace of versailles
+10
+
+Where is the headquarters of the united nations?
+New york
+10
+
+Where is the highest point in south America?
+Argentina
+10
+
+Where is the Highland Park Ford Plant?
+Detroit, Michigan
+10
+
+Where is the hockey hall of fame?
+Toronto
+10
+
+Where is the holy shrine established by st bernadette?
+Lourdes
+10
+
+Where is the home location of the 'blue angels'?
+Pensacola, fl.
+10
+
+Where is the home of golf?
+St andrews, Scotland
+10
+
+Where is the house of seven gables located?
+Salem
+10
+
+Where is the houston space centre?
+Texas
+10
+
+Where is the hq of interpol?
+Paris
+10
+
+Where is the hub of the world, according to the international flat earth society?
+North pole
+10
+
+Where is the human skin least sensitive?
+Heel
+10
+
+Where is the human skin the thickest?
+Back
+10
+
+Where is the Indian chief geronimo buried?
+Fort sill, ok
+10
+
+Where is the International Court of Justice?
+Hague
+10
+
+Where is the island of korcula?
+Croatia
+10
+
+Where is the isthmus of corinth?
+Greece
+10
+
+Where is the kennedy space centre?
+Cape canaveral, Florida
+10
+
+Where is the key hidden in the play dial m for murder?
+The fifth step
+10
+
+Where is the Khyber Pass, scene of the 19th century massacre?
+Afghanistan-pakistan border
+10
+
+Where is the kitty hawk?
+Smithsonian
+10
+
+Where is the krishna river?
+India
+10
+
+Where is the largest aquarium in the u.s?
+Chattanooga
+10
+
+Where is the largest circulation of sunday papers?
+Los angeles
+10
+
+Where is the largest gold refinery?
+South africa
+10
+
+Where is the largest lighthouse?
+North carolina
+10
+
+Where is the largest population of reindeer found?
+Siberia
+10
+
+Where is the largest volcano?
+Ecuador
+10
+
+Where is the largest water clock?
+Abbotsford, British columbia
+10
+
+Where is the last battle scheduled to take place on the Day of Judgement?
+Armageddon
+10
+
+Where is the leaning tower?
+Pisa
+10
+
+Where is the line of life?
+Palm
+10
+
+Where is the little mermaid?
+Copenhagen
+10
+
+Where is the London Bridge which the current Thames Bridge replaced?
+Arizona
+10
+
+Where is the Longchamps race track?
+Paris
+10
+
+Where is the longest train tressle bridge in Canada found?
+Lethbridge, Alberta
+10
+
+Where is the Louvre located?
+Paris
+10
+
+Where is the louvre?
+Paris
+10
+
+Where is the lowest point in europe?
+Caspian sea
+10
+
+Where is the lowest point in south America?
+Argentina
+10
+
+Where is the mad river?
+Ohio
+10
+
+Where is the malleus bone located?
+Ear
+10
+
+Where is the Marsh of Decay?
+Moon
+10
+
+Where is the mayo clinic?
+Minnesota
+10
+
+Where is the mekong river delta?
+Vietnam
+10
+
+Where is the meteorological office?
+Bracknell
+10
+
+Where is the modern site of the biblical land of goshen?
+Egypt
+10
+
+Where is the most sensitive cluster of nerves?
+Base of the spine
+10
+
+Where is the mound of mars positive?
+On the palm of the hand
+10
+
+Where is the natchez trail?
+Mississippi
+10
+
+Where is the National Exhibition Centre?
+Birmingham
+10
+
+Where is the National Motor Museum?
+Beaulieu
+10
+
+Where is the Nep stadium?
+Budapest
+10
+
+Where is the new hampshire international speedway located?
+Loudon
+10
+
+Where is the notorious maze prison?
+Northern Ireland
+10
+
+Where is the notre dame cathedral?
+Paris
+10
+
+Where is the Ocean of Storms located?
+On the moon
+10
+
+Where is the old quarter 'plaka'?
+Athens, greece
+10
+
+Where is the oldest brewery in the u.s?
+Pottsville, pennsylvania
+10
+
+Where is the oldest rock salt mine in the US?
+Avery island, la
+10
+
+Where is the only bone not broken because of a skiing accident?
+Inner ear
+10
+
+Where is the only country you would find the Bengal tiger?
+India
+10
+
+Where is the only north American museum dedicated entirely to prostitutes?
+Washington dc
+10
+
+Where is the only place in great britain where the queen cannot go?
+House of commons
+10
+
+Where is the original Harris tweed spun and woven?
+Outer Hebrides
+10
+
+Where is the original home of bacardi?
+Cuba
+10
+
+Where is the original Raffles Hotel?
+Singapore
+10
+
+Where is the painted desert?
+Arizona
+10
+
+Where is the parthenon?
+Athens
+10
+
+Where is the plumas national forest?
+California
+10
+
+Where is the plymouth rock?
+Plymouth massachusetts
+10
+
+Where is the port of Durban located?
+South Africa
+10
+
+Where is the Portuguese Grand Prix held in the Formula 1 world motor racing championship?
+Estoril
+10
+
+Where is the prado museum?
+Madrid
+10
+
+Where is the primary settings for the ww2 epic 'the thin red line'?
+Gaudalcanal
+10
+
+Where is the proof of the pudding according to the saying?
+In the eating
+10
+
+Where is the richest source of mineral sand?
+Australia
+10
+
+Where is the river lethe?
+Hades
+10
+
+Where is the Rose Bowl located?
+Pasadena, California
+10
+
+Where is the royal liver building?
+Liverpool
+10
+
+Where is the San Diego Zoo?
+California
+10
+
+Where is the San Marino Grand Prix held in the Formula 1 world motor racing championship?
+Imola
+10
+
+Where is the Sea of Showers?
+Moon
+10
+
+Where is the sea of tranquility?
+Moon
+10
+
+Where is the sear's tower?
+Chicago
+10
+
+Where is the seat of the marquis of bath?
+Longleat
+10
+
+Where is the setting for 'the bridge on the river kwai'?
+Burma
+10
+
+Where is the shannon river?
+Ireland
+10
+
+Where is the site of the us bullion depository?
+Fort knox
+10
+
+Where is the smithsonian institute?
+Washington
+10
+
+Where is the statutory inscription, 'he's ain't heavy, he's my brother' (format - city, state)?
+Boy's town, nebraska
+10
+
+Where is the sternocleidomastoid located?
+In the neck
+10
+
+Where is the tallest tower in the world?
+Toronto
+10
+
+Where is the thames river?
+England
+10
+
+Where is the thyroid gland?
+Neck
+10
+
+Where is the tomb of the Venerable Bede?
+Durham
+10
+
+Where is the town North Pole located?
+Alaska
+10
+
+Where is the town of Tequila?
+Mexico
+10
+
+Where is the trevi fountain?
+Rome
+10
+
+Where is the us sixth fleet stationed?
+Mediterranean sea
+10
+
+Where is the valley of ten thousand smokes?
+Alaska
+10
+
+Where is the vatican city?
+Rome
+10
+
+Where is the volta river?
+Ghana
+10
+
+Where is the wabash river?
+Indiana
+10
+
+Where is the Waterford of crystal fame?
+Ireland
+10
+
+Where is the welsh grand national run?
+Chepstow
+10
+
+Where is the world's biggest national park?
+Canada
+10
+
+Where is the world's largest computer manufacturing plant?
+Japan
+10
+
+Where is the world's largest Football stadium?
+Rio De Janeiro, Brazil
+10
+
+Where is the world's largest library?
+Washington dc
+10
+
+Where is the world's largest restaurant?
+Bangkok
+10
+
+Where is the world's most prestigious 24-hour motor racing race held annually?
+Le mans
+10
+
+Where is the worlds largest wine cask?
+Heidelberg, Germany
+10
+
+Where is there a hill named Taumatawhakatangihangaoauauotameteaturipukakapikimaungahoronukupokaiwhenuakitanatahu?
+New zealand
+10
+
+Where is thunder bay?
+Canada
+10
+
+Where is times square?
+New york
+10
+
+Where is tobruk?
+Libya
+10
+
+Where is tupelo?
+Mississippi
+10
+
+Where is vladivostok?
+Russia
+10
+
+Where is wall street?
+New york
+10
+
+Where is walla walla?
+Washington
+10
+
+Where is waterloo?
+Belgium
+10
+
+Where is wembley stadium?
+London
+10
+
+Where is westminster abbey?
+London
+10
+
+Where is Yale University?
+New haven, ct
+10
+
+Where might you find a ha-ha and a knot?
+In a garden
+10
+
+Where on a cheque is a sorting code printed?
+Top right hand corner
+10
+
+Where on a cowboy's attire would you find jinglebobs, a heel chain and a rowel?
+Spurs
+10
+
+Where on a horse are the withers?
+Between the shoulder blades
+10
+
+Where on a horse is the pastern?
+Above the hoof
+10
+
+Where on the body is the jugular vein?
+Neck
+10
+
+Where on the body is the vena cava?
+Heart
+10
+
+Where on the body should an helmet be worn?
+On the head
+10
+
+Where on the human body is the ulnar loop?
+Finger
+10
+
+Where on the human skeleton would you find the ilium?
+Hip
+10
+
+Where on the Iberian peninsular is the Trafalgar Graveyard?
+Gibraltar
+10
+
+Where on the North Yorkshire moors is the landscape dominated by three giant spheres?
+Fylingdales
+10
+
+Where on TV would you find guests Major Gowen and Miss Tibbs?
+Fawlty towers
+10
+
+Where on your body is your oxter?
+Armpit
+10
+
+Where on your body would you normally put a rucksack?
+Back
+10
+
+Where on your body would you wear flippers?
+Feet
+10
+
+Where Robin Hoods bay?
+North yorkshire
+10
+
+Where to peanuts grow?
+Under the ground
+10
+
+Where was a soviet republic formed in 1919 which lasted only 4 weeks?
+Bavaria
+10
+
+Where was adolf hitler born?
+Austria
+10
+
+Where was Antonio Vivaldi born?
+Venice
+10
+
+Where was aristotle born?
+Greece
+10
+
+Where was atahualpa king?
+Peru
+10
+
+Where was bob hope born?
+Eltham
+10
+
+Where was Bobby Kennedy shot?
+California
+10
+
+Where was bruce willis born?
+Germany
+10
+
+Where was budweiser first brewed?
+St
+10
+
+Where was Captain Cook murdered?
+Hawaii
+10
+
+Where was coinage invented?
+Lydia
+10
+
+Where was cornflakes invented?
+Battle creek sanitarium
+10
+
+Where was Daniel thrown into the lion's den?
+Babylon
+10
+
+Where was Draco's law created?
+Greece
+10
+
+Where was el greco born?
+Greece
+10
+
+Where was emily dickinson's home?
+Massachusetts
+10
+
+Where was enrico caruso born?
+Naples, Italy
+10
+
+Where was entertainer glen ford born?
+Quebec city
+10
+
+Where was entertainer john candy born?
+Toronto
+10
+
+Where was entertainer william shatner born?
+Montreal
+10
+
+Where was film director ingmar bergman born?
+Sweden
+10
+
+Where was first time, in 1894, the Mormons settled?
+Nevada
+10
+
+Where was formed the disco band Boney M in 1976?
+Germany
+10
+
+Where was frank sinatra born?
+Hoboken, new jersey
+10
+
+Where was george a custer defeated?
+Battle of little bighorn
+10
+
+Where was Graf Spee scuttled?
+Montevideo
+10
+
+Where was Hannibal from?
+Carthage
+10
+
+Where was Hawkeye Pierce's hometown in the show MASH ?
+Crab Apple Cove
+10
+
+Where was it always winter but never Christmas?
+Narnia
+10
+
+Where was it once against the law to slam your car door?
+Switzerland
+10
+
+Where was jesus born?
+Bethlehem
+10
+
+Where was jesus crucified?
+Golgotha
+10
+
+Where was jock ewing flying over when his private jet disappeared?
+South America
+10
+
+Where was judas buried?
+Potters field
+10
+
+Where was king arthur's court?
+Camelot
+10
+
+Where was lenin born?
+Ulyanovsk
+10
+
+Where was marco polo born?
+Island of korcula
+10
+
+Where was Mary Queen of Scots executed?
+Fotheringay castle
+10
+
+Where was miss piggy's birthplace?
+Hog springs
+10
+
+Where was mohammed born?
+Mecca
+10
+
+Where was mohammed, the founder of islam born?
+Mecca
+10
+
+Where was Mother Teresa of Calcutta born?
+Macedonia
+10
+
+Where was napoleon bonaparte born?
+Corsica
+10
+
+Where was napoleon born?
+Corsica
+10
+
+Where was nixon's western white house?
+San clemente
+10
+
+Where was oliver goldsmith's vicar from?
+Wakefield
+10
+
+Where was omar shariff born?
+Egypt
+10
+
+Where was paper invented?
+China
+10
+
+Where was paper money first used?
+China
+10
+
+Where was president kennedy assassinated?
+Dallas, texas
+10
+
+Where was Prime Minister Spencer Perceval assassinated?
+House of commons
+10
+
+Where was printing by movable type invented?
+China
+10
+
+Where was randolph churchill when he said: 'i didn't come here to meet vulgar people like the kellys'?
+Monaco
+10
+
+Where was room 222?
+Walt whitman high school
+10
+
+Where was rory gallagher born?
+Ireland
+10
+
+Where was Salman Rushdie born?
+Bombay
+10
+
+Where was shakespeare born?
+Stratford-upon-avon
+10
+
+Where was sir ernest shackleton on his way to when he died?
+Antarctica
+10
+
+Where was Sir Winston Churchills country home?
+Chartwell
+10
+
+Where was skiing invented?
+Norway
+10
+
+Where was slave trading abolished in 1807?
+British empire
+10
+
+Where was snoooker invented?
+India
+10
+
+Where was steel first made?
+India
+10
+
+Where was supermodel Iman born?
+Somalia
+10
+
+Where was the 'Australian' swimmer john konrads born?
+Latvia
+10
+
+Where was the 1962 world's fair?
+Seattle
+10
+
+Where was the 1975 tube disaster?
+Moorgate
+10
+
+Where was the 1979 riot at a who concert?
+Cincinnati
+10
+
+Where was the 1995 rugby world cup held?
+South africa
+10
+
+Where was the 1999 rugby world cup held?
+Wales
+10
+
+Where was the 1st u.s federal penitentiary?
+Leavenworth, kansas
+10
+
+Where was the academy that plato founded in 387 bc?
+Athens
+10
+
+Where was the agen plum first planted?
+California
+10
+
+Where was the airfield where Charles Lindbergh landed to end his historic solo trans atlantic flight?
+Paris
+10
+
+Where was the Armistice, between the Allies and Germany, signed on the 11th November 1918?
+Compiegne
+10
+
+Where was the Australian gold rush?
+Victoria
+10
+
+Where was the bakery that started the Great Fire of London?
+Pudding lane
+10
+
+Where was the beast, the first mobile robot, developed?
+Johns hopkins
+10
+
+Where was the bloodiest collapse of communism?
+Romania
+10
+
+Where was the boxer rebellion?
+China
+10
+
+Where was the capital, established in 1862, of the Confederate States of America?
+Richmond, Virginia
+10
+
+Where was the coldest temperature on earth recorded?
+Antarctica
+10
+
+Where was the colossus of rhodes?
+Rhodes harbour
+10
+
+Where was the compass invented?
+China
+10
+
+Where was the creator of the comic book character Tintin born?
+Brussels
+10
+
+Where was the crossbow invented?
+China
+10
+
+Where was the decimal system developed?
+India
+10
+
+Where was the earthquake on september 29, 1969?
+Tulbach
+10
+
+Where was the empire ruled by Akbar the Great?
+India
+10
+
+Where was the first American skyscraper built?
+Chicago
+10
+
+Where was the first beachhead established in the Falklands' War?
+San carlos
+10
+
+Where was the first binding international ban on human cloning signed?
+Paris, france
+10
+
+Where was the first by-election for the Scottish Parliament held?
+Ayr
+10
+
+Where was the first FA Cup Final held?
+Kennington oval
+10
+
+Where was the first football world cup?
+Uraguay
+10
+
+Where was the first glass made?
+Egypt
+10
+
+Where was the first gold strike in California, setting off the 1849 gold rush?
+Sutter's mill
+10
+
+Where was the first known lighthouse?
+Alexandria
+10
+
+Where was the first practical typewriter built?
+Milwaukee
+10
+
+Where was the first Pugwash Conference held?
+Nova scotia
+10
+
+Where was the first pyramid constructed?
+Saqqara
+10
+
+Where was the first shopping mall opened?
+Saint louis
+10
+
+Where was the first shot in the American civil war fired?
+Fort sumter
+10
+
+Where was the first skyscraper in the world built?
+Chicago
+10
+
+Where was the first speed limit regulation of 20 mph set?
+England
+10
+
+Where was the first subway built?
+England
+10
+
+Where was the first test match played?
+Melbourne, Australia
+10
+
+Where was the first Three Tenors concert held?
+Rome
+10
+
+Where was the first toothbrush with bristles developed?
+China
+10
+
+Where was the first unattended 24 hour self service laundromat?
+Austin, texas
+10
+
+Where was the football ground stampede that caused 66 deaths in 1971?
+Glasgow
+10
+
+Where was the forked plow invented?
+Mesopotamia
+10
+
+Where was the golfer Severiano Ballesteros born?
+Spain
+10
+
+Where was the Grand National run between 1916 and 1918?
+Gatwick
+10
+
+Where was the great library?
+Nineveh
+10
+
+Where was the greatest snowfall ever recorded in a single storm?
+Mount shasta
+10
+
+Where was the home of maine's first governor?
+Kingfield
+10
+
+Where was the home of the amoskeag indians?
+Manchester
+10
+
+Where was the home of the flintstones?
+Bedrock
+10
+
+Where was the immense fireball that flattened a 12 mile radius of pine forest, and was though to be an alien weapon in 1908?
+Tunguska
+10
+
+Where was the last battle fought on English soil?
+Sedgemoor,somerset
+10
+
+Where was the last major American Indian resistance to white settlement?
+Wounded knee
+10
+
+Where was the match invented?
+France
+10
+
+Where was the monty python film 'the life of brian' banned?
+Scotland
+10
+
+Where was the newspaper 'pravda' first published?
+Russia
+10
+
+Where was the painting by Michaelangelo , valued at ?8 million pounds recently found, after remaining unrecognised for more than 250 years?
+Castle howard
+10
+
+Where was the Piper Alpha oil rig belonging to the US Occidental Petroleum Corporation when it exploded in 1988?
+The North Sea
+10
+
+Where was the Promised Land of the ancient Israelites?
+Palestine
+10
+
+Where was the record for most snowfall in a day, on february 7 1916?
+Alaska
+10
+
+Where was the rosetta stone found?
+Egypt
+10
+
+Where was the Royal Mint situated until 1810?
+Tower of london
+10
+
+Where was the second atomic bomb dropped?
+Nagasaki
+10
+
+Where was the second capital of assyria?
+Nineveh
+10
+
+Where was the septuagint written?
+Alexandria
+10
+
+Where was the setting for 'shogun'?
+Japan
+10
+
+Where was the Titanic mainly built?
+Belfast, Ireland
+10
+
+Where was the toxic gas leak at an insecticide plant that killed over 6000 people in 1984?
+India
+10
+
+Where was the venue for the 1994 world cup final?
+Rose bowl
+10
+
+Where was the world's first adhesive postage stamp available?
+England
+10
+
+Where was the world's first dam built?
+Egypt
+10
+
+Where was Thomas a Becket murdered?
+Canterbury cathedral
+10
+
+Where was William Shakespeare born?
+Stratford on avon
+10
+
+Where were 'foul lane', 'stinking lane' and 'bladder street'?
+London
+10
+
+Where were arabic numerals first used?
+India
+10
+
+Where were Archie and Edith Bunker's chairs enshrined?
+The smithsonian institute
+10
+
+Where were donald duck comics banned because he doesn't wear pants?
+Finland
+10
+
+Where were George Mallory & Andrew irvine heading when they were last seen alive?
+Summit of everest
+10
+
+Where were ira levin's boys from?
+Brazil
+10
+
+Where were mirrors first made in Europe?
+Venice
+10
+
+Where were most of the first punic wars fought?
+Sicily
+10
+
+Where were murdering sisters Delfina & Maria de Jesus Gonzales from?
+Mexico
+10
+
+Where were Omaha, Juno and Gold beaches?
+Normandy
+10
+
+Where were the 1936 summer olympics held?
+Berlin
+10
+
+Where were the 1952 Summer Olympics?
+Helsinki
+10
+
+Where were the 1956 summer olympics held?
+Melbourne
+10
+
+Where were the 1956 summer olympics?
+Melbourne
+10
+
+Where were the 1960 summer olympics held?
+Rome
+10
+
+Where were the 1972 summer olympics?
+Munich
+10
+
+Where were the 1980 olympic games held?
+Moscow
+10
+
+Where were the 1999 channel newsasia scrabble masters held (country)?
+Singapore
+10
+
+Where were the ancient olympics held?
+Olympia
+10
+
+Where were the cancelled 1940 summer olympics to have been held?
+Tokyo
+10
+
+Where were the first atomic and hydrogen bombs designed?
+Los alamos
+10
+
+Where were the first gambling casinos?
+Egypt
+10
+
+Where were the first parking meters installed in London?
+Mayfair
+10
+
+Where were the first parking meters introduced in 1935?
+Oklahoma city
+10
+
+Where were the first us automobile races held?
+Narragansett rhode island
+10
+
+Where were the Monkees trying to catch the last train to?
+Clarksville
+10
+
+Where were the oldest pair of Levi jeans found?
+The Mojave Desert
+10
+
+Where were the toltecs from?
+Mexico
+10
+
+Where were tommy lee jones and al gore freshman roommates?
+Harvard
+10
+
+Where were women first given the vote, in 1880?
+Isle of man
+10
+
+Where will children as young as 15 be jailed for cheating on their finals?
+Bangladesh
+10
+
+Where will the 2004 Olympic games be held?
+Athens
+10
+
+Where will the next winter olympics take place?
+Turin
+10
+
+Where will you find the greater & lesser trochanters?
+The femur
+10
+
+Where will you find twenty moons on the human body?
+The base of the nails
+10
+
+Where would a Vietnamese put his dong?
+In a bank
+10
+
+Where would find a woofer and tweeter?
+In a loudspeaker
+10
+
+Where would one find the islands of langerhans?
+Pancreas
+10
+
+Where would one have borscht?
+Poland or Russia
+10
+
+Where would u look at a Snellen Chart?
+Opticians
+10
+
+Where would you be if you ate al fresco?
+Outside
+10
+
+Where would you be if you landed at Dum Dum airport?
+Calcutta
+10
+
+Where would you be if you were visiting the Asian city of O?
+Japan
+10
+
+Where would you be most likely to see a 'gazebo'?
+Garden
+10
+
+Where would you eat a taco?
+Mexico
+10
+
+Where would you eat taramasalata washed down with retsina?
+Greece
+10
+
+Where would you expect a rabbit punch to land?
+On the neck
+10
+
+Where would you experience serious pain if someone dropped a concrete block on your hallus?
+Your big toe
+10
+
+Where would you find a daisy wheel?
+Typewriter
+10
+
+Where would you find a fontanelle?
+Babies head
+10
+
+Where would you find a j-curve?
+Economics chart
+10
+
+Where would you find a Juttock Plate?
+Ships mast
+10
+
+Where would you find a kalamein door?
+Modern office building
+10
+
+Where would you find a quokka?
+Australia
+10
+
+Where would you find a serif?
+On a printed letter
+10
+
+Where would you find a snail's reproductive organs?
+Head
+10
+
+Where would you find a tasset, a bevor and a cuirass?
+A suit of armour
+10
+
+Where would you find an escapement?
+In a clock
+10
+
+Where would you find an inner and outer bailey?
+A castle
+10
+
+Where would you find Black Rod?
+The house of lords
+10
+
+Where would you find Central Bay, Moscow Sea and the Bay of Heats?
+Moon
+10
+
+Where would you find crofters?
+Scotland
+10
+
+Where would you find Fiordland National Park?
+New zealand
+10
+
+Where would you find medulla oblongata?
+Brain
+10
+
+Where would you find murals painted?
+Walls
+10
+
+Where would you find the 'cornea'?
+Eye
+10
+
+Where would you find the 'ocean of storms'?
+On the moon
+10
+
+Where would you find the Akond of Swat?
+In a nonesense poem
+10
+
+Where would you find the British prime minister?
+10 downing street
+10
+
+Where would you find the city of Ukkel?
+Belgium
+10
+
+Where would you find the empire state building?
+New york city
+10
+
+Where would you find the Fissure of Rolando?
+In the brain
+10
+
+Where would you find the following - couter, Pauldron, vambrace and cuisse?
+In a suit of armour
+10
+
+Where would you find the Matterhorn?
+Switzerland
+10
+
+Where would you find the medulla oblongata?
+Brain
+10
+
+Where would you find the oldest underground system in the world?
+London
+10
+
+Where would you find the only freshwater seals in the world?
+Lake baikal
+10
+
+Where would you find the palmer research station?
+Antarctica
+10
+
+Where would you find the Pensacola Mountains?
+Antarctica
+10
+
+Where would you find the sea of tranquillity?
+On the moon
+10
+
+Where would you find the volcano loki?
+On jupiter's moon i0
+10
+
+Where would you find the vox humana and the vox angelica together?
+On an organ
+10
+
+Where would you find the yoruba people?
+Nigeria
+10
+
+Where would you find tricounis, clinkers and muggers?
+On the soles of old hiking boots
+10
+
+Where would you find vitreous humour?
+In your eye
+10
+
+Where would you find vox humana and vox angelica together?
+On an organ
+10
+
+Where would you find your radius and ulna?
+Arm
+10
+
+Where would you hurt if you were kicked on the Tarsus?
+The ankle
+10
+
+Where would you see a horse jump over the chair?
+Aintree
+10
+
+Where would you wear espadrilles?
+Feet
+10
+
+Where, in 1955, was one of the worst accidents in motor racing history, when 82 spectators were killed?
+Le mans
+10
+
+Where, in new Mexico, was the first atomic bomb detonated in july 1945?
+Alamogordo
+10
+
+Where, on a horse are its withers?
+Shoulder
+10
+
+Where, on cattle, is the dewlap?
+Under the throat
+10
+
+Where, traditionally is the best stone for making curling stones obtained?
+Ailsa craig
+10
+
+Where's America's oldest zoo?
+Philadelphia
+10
+
+Where's the 19th hole on a golf course?
+Club house
+10
+
+Where's the costa del sol?
+Spain
+10
+
+Where's the famed arch of hadrian?
+Athens
+10
+
+Where's the world's largest bullfighting ring?
+Mexico City
+10
+
+Whhich art movement originated in Paris in 1905 with the founding of the Salon d'Automne?
+Fauvism
+10
+
+Whhich English cricket captain suffered from epilepsy?
+Tony grieg
+10
+
+Whic man made material is named after the french words for velvet and hook?
+Velcro
+10
+
+WHIC YEAR:treaty of Vereeninging end the Boer war?
+1902
+10
+
+Which ?Charlie' was the drummer with the Rolling Stones?
+Charlie watts
+10
+
+Which 'brothers' had a hit with, 'the sun ain't gonna shine anymore'?
+Walker brothers
+10
+
+Which 'brothers' had a hit with, 'this old heart of mine'?
+Isley brothers
+10
+
+Which 'Eastenders' character was found guilty of the murder of Saskia?
+Matthew rose
+10
+
+Which 'first lady of jazz' died in june 1996?
+Ella fitzgerald
+10
+
+Which 'Sidney' made his film debut at the age of 61 in 'The Maltese Falcon'?
+Sidney greenstreet
+10
+
+Which 'Sidney' won a best actor Oscar for, 'Lilies of the Field'?
+Sidney poitier
+10
+
+Which 12 a side stick and ball game is played principally in Scotland?
+Shinty
+10
+
+Which 15 a side stick and ballgame was once outlawed by the Statute of Kilkenny?
+Hurling
+10
+
+Which 16 year old was turned down when he applied for admission to the Swiss Federal Polytechnic Institute?
+Albert einstein
+10
+
+Which 17th century carver is known for his carvings of acanthus leaves, fruit, flowers, acorns and cherubs heads?
+Grinling gibbons
+10
+
+Which 17th century greman engineer invented the vacuum pump?
+Otto von guericke
+10
+
+Which 18th century french innovation was a term for the method of gilding furniture and clocks?
+Ormolu
+10
+
+Which 18th Century poet was known as 'The Bard of Ayrshire'?
+Robert burns
+10
+
+Which 18th century Yorkshire entrepreneur founded the Marylebone Cricket Club?
+Thomas lord
+10
+
+Which 1912 hoax regarding mans ancestry was not exposed until 1953?
+Piltdown man
+10
+
+Which 1949 comedy film featured Scottish islanders looting a stricken ship laden with Scotch?
+Whisky galore
+10
+
+Which 1950 musical is based on the characters of Damon Runyon?
+Guys and dolls
+10
+
+Which 1956 film about the pocket battleship Graf Spec starred John Gregson?
+Battle of the river plate
+10
+
+Which 1960s number one begins: 'i love the colourful clothes she wears, and the way the sunlight plays upon her hair'?
+Good vibrations
+10
+
+Which 1966 drama/documentary led to the establishment of Shelter the charity for the homeless?
+Cathy come home
+10
+
+Which 1978 film from the book of the same name by Ira Levin, tell of the cloning of Adolf Hitler?
+The boys from Brazil
+10
+
+Which 1980s band had a front man who married Chrissie Hynde and Patsy Kensit?
+Simple minds
+10
+
+Which 1980s mass murderer said that he occasionally took a body from under the floorboards to watch tv with him?
+Dennis nielson
+10
+
+Which 1985 film involved senior citizens deciding whether to go with aliens to a Utopian world or stay on Earth?
+Cocoon
+10
+
+Which 1986 film, from the book of the same name by Umberto Eco, tells of a 10th century detective and monk?
+The name of the rose
+10
+
+Which 1990 film had the stuntmen outnumber the credited cast by more than 2:1?
+The rookie
+10
+
+Which 1998 film stars robert redford as a hero blessed with a gift for healing?
+The horse whisperer
+10
+
+Which 19th century artist was awarded a farthing in a libel case?
+Whistler
+10
+
+Which 19th century French artist painted 'Bathers at Asnieres'?
+Georges seurat
+10
+
+Which 19th Century novelist's writings included travel sketches called Pictures From Italy and American Notes?
+Charles dickens
+10
+
+Which 19th Century poet was known as 'The Bard of Rydal Mount'?
+William wordsworth
+10
+
+Which 19th century polish pianist and composer has been called The poet of the piano?
+Chopin
+10
+
+Which 19th century Russian chemist formulated the Periodic Table of Elements?
+Mendeleyev
+10
+
+Which 19th century traveller and linguist first translated the 'Arabian Nights'?
+Sir richard burton
+10
+
+Which 2 elements in the air were first named by Lavoisier in 1777?
+Oxygen and nitrogen
+10
+
+Which 2 elements make up water?
+Hydrogen & Oxygen
+10
+
+Which 2 metals are combined to make brass?
+Copper and zinc
+10
+
+Which 2 sports are combined in a biathlon?
+Skiing and shooting
+10
+
+Which 2001 film starred john cleese & woody harrelson?
+Scorched
+10
+
+Which 20th century Italian dictator was called 'Il Duce'?
+Benito Mussolini
+10
+
+Which 20th century king reigned for less than a year?
+Edward viii
+10
+
+Which 20th century leader introduced the custom of carrying a flaming torch from Athens to the site of each Olympic games?
+Adolf hitler
+10
+
+Which 3 colours are on the Dutch flag?
+Red, white & blue
+10
+
+Which 3 olympic events restrain throwers in a circle?
+Shot, hammer & discus
+10
+
+Which 4800 km long highway was built by the incas?
+Great royal road
+10
+
+Which 50's actress was born vera jayne palmer?
+Jane mansfield
+10
+
+Which 50's singer changed his name from harold jenkins?
+Conway twitty
+10
+
+Which 50s singer changed hos name from Harold Jenkins?
+Conway twitty
+10
+
+Which 60s pop star played Len Faircloughs son stanley in Coronation Street?
+Peter noone
+10
+
+Which 60s radio show with John Cleese and Tim Brooke-Taylor featured ferrets, rhubarb tarts and wombats?
+I'm sorry i'll read that again
+10
+
+Which 70s pop group included Rick Wakeman and Hudson Ford duo in its union?
+The strawbs
+10
+
+Which 80's singer 's real name is stuart goddard?
+Adam ant
+10
+
+Which 90s Grand National Winner was trained by Martin Pipe?
+Minnehoma
+10
+
+Which 937 foot tanker caused the worlds worst oil pollution disaster in 1989?
+The exxon valdez
+10
+
+Which academy is located in annapolis, maryland?
+United states navy
+10
+
+Which account did homer write of the trojan war?
+The iliad
+10
+
+Which acid builds up in the body during excessive exercise?
+Lactic
+10
+
+Which acid is found in nettle stings?
+Formic
+10
+
+Which acid is found in unripe apples and other fruit?
+Malic acid
+10
+
+Which acid is found in yoghurt?
+Lactic
+10
+
+Which acid is used in most car batteries?
+Sulphuric acid
+10
+
+Which activity, which can be described as a sport, was initially a coming-of-age initiation ceremony on pentecost island?
+Bungee jumping
+10
+
+Which actor and muscle man, a former 'Mr. Universe', gained fame and fortune in Italy, playing mythical heroes such as Hercules?
+Steve reeves
+10
+
+Which actor and muscle man, gained fame and fortune in Italy, playing hercules?
+Steve reeves
+10
+
+Which actor had a top ten hit in 1987 with respect yourself?
+Bruce willis
+10
+
+Which actor has played Fagin on both the stage and in the 1968 film Oliver!?
+Ron moody
+10
+
+Which actor is the dad of Jamie Lee Curtis?
+Tony Curtis
+10
+
+Which actor played 'Marcus Welby, MD'?
+Robert young
+10
+
+Which actor played Alain Chanier in The French Connection?
+Fernando rey
+10
+
+Which actor played in all of these films Shadowlands, Nixon and The Mask of Zorro?
+Anthony hopkins
+10
+
+Which actor played seven different characters in the 1965 film The Family Jewels?
+Jerry lewis
+10
+
+Which actor played the first doctor who?
+William hartnell
+10
+
+Which actor played the marine expert matt hooper in the film jaws?
+Richard dreyfuss
+10
+
+Which actor plays the leading part in the movie Prophecy?
+Christopher Walken
+10
+
+Which actor plays with the band dog star?
+Keanu reeves
+10
+
+Which actor portrayed 'Al Lonely' the Maytag Repairman in TV Commercials from 1967 to 1989?
+Jesse White
+10
+
+Which actor portrayed head of Tommy Lee Jones department in the film Men In Black?
+Rip torn
+10
+
+Which actor portrayed Sam, the piano player, in the film Casablanca?
+Dooley wilson
+10
+
+Which actor provided the macabre voice overs at the end of Michael Jacksons Thriller hit single?
+Vencent price
+10
+
+Which actor provided the voice of 'charlie' in the tv series 'charlie's angels'?
+John forsythe
+10
+
+Which actor said his epitaph should read - He was lucky and he knew it?
+Cary grant
+10
+
+Which actor started his film career as a giggling psychotic killer in the gangster movie kiss of death?
+Richard widmark
+10
+
+Which actor took over Paul Scofields role in The shooting Party when he broke his leg?
+James mason
+10
+
+Which actor took the male lead in the Hitchcock thriller The Birds?
+Rod taylor
+10
+
+Which actor was born maurice micklewhite?
+Michael caine
+10
+
+Which actor was Howard Hughes describing when he said 'His ears make him look like a taxi cab with both dooors open'?
+Clarke gable
+10
+
+Which actor was nominated for Best Actor for his role in The Insider?
+Russell Crowe
+10
+
+Which actor was the first to play Robin Hood on television?
+Richard greene
+10
+
+Which actor won an Oscar for his portrayal of Gauguin in the film Lust For Life?
+Anthony quinn
+10
+
+Which actor wore nothing but black for the last 45 years of his life?
+Yul brynner
+10
+
+Which actor wrote a short walk from harrods in 1993?
+Dirk bogarte
+10
+
+Which actor, best known for his portrayal of a hero of the Napoleonic wars, secretly married Abigail Cruttenden in November 1997?
+Sean bean
+10
+
+Which actor, who played Dr, Who collapsed and died at a Dr, Who convention?
+Patrick troughton
+10
+
+Which actor's autobiography is entitled dear me?
+Peter ustinov
+10
+
+Which actor's life was based on the Neil Simon movie ' The Goodbye Girl'?
+Dustin Hoffman
+10
+
+Which actor's real name is Emmanuel Goldenberg?
+Edward g robinson
+10
+
+Which actor/actress signed the first $1 million movie contract?
+Mary pickford 
+10
+
+Which actor/director was responsible for the rebuilding of the Globe Theatre?
+Sam wanamaker
+10
+
+Which actor/singer wrote the autobiography 'Parcel Arrived Safely, Tied With String'?
+Michael crawford
+10
+
+Which actress and singer played 'Breathless Mahoney' in the film Dick Tracy?
+Madonna
+10
+
+Which actress co-starred with michael Douglas in the film war of the roses?
+Kathleen turner
+10
+
+Which actress has the real name Diane Hall?
+Diane keaton
+10
+
+Which actress left 'The Queen Vic' in 1999 to begin a solo singing career?
+Martine mccutcheon
+10
+
+Which actress played katy in the sitcom the farmer's daughter?
+Inger stevens
+10
+
+Which actress played the Bond girl Honeychile Rider in Doctor No?
+Ursula andress
+10
+
+Which actress said 'Sometimes I'm so sweet even l can't stand it'?
+Julie andrews
+10
+
+Which actress spent a month in a rome prison in 1982 for tax irregularities?
+Sophia loren
+10
+
+Which actress stareed in cat ballou, barbarella and klute?
+Jane fonda
+10
+
+Which actress starred in the film Love Story?
+Ali mcgraw
+10
+
+Which actress was briefly married to Alexander Korda & played Cathy in the 1939 film of ;Wuthering Heights?
+Merle oberon
+10
+
+Which actress was in the TV movies: The Oddyssey,and Merlin?
+Isabella Rosselini
+10
+
+Which actress won an Oscar for her role in the 1938 film Jezebel?
+Bette davis
+10
+
+Which actress's real name was jane peters?
+Carole lombard
+10
+
+Which actress/actor hired a private investigator to find David strickland before it was too late?
+Brooke shields
+10
+
+Which aeronautical engineer designed the Scneider Trophy winning Supermarine S6 seaplanes and the spitfire?
+Reginald j mitchell
+10
+
+Which Aerosmith song was re-made by Run D.M.C.?
+Walk this way
+10
+
+Which aerospace maufacturer produced the Flying Fortress a prototype of which was first flown in 1935?
+Boeing
+10
+
+Which african capital city is named from the greek meaning 'three towns'?
+Tripoli
+10
+
+Which African capital is named after a 19th century American president?
+Monrovia
+10
+
+Which african country had its capital transferred to abuja?
+Nigeria
+10
+
+Which african country had its capital transferred to dodoma?
+Tanzania
+10
+
+Which african country has the letters eak as its international vehicle registration?
+Kenya
+10
+
+Which african leader did the special aka sing about?
+Nelson mandela
+10
+
+Which African leader emerged from prison after 27 years to lead his party again?
+Nelson Mandela
+10
+
+Which african river did Henry Morton Stanley explore in the 1870s?
+The Congo
+10
+
+which african river was explored by john hanning speke in the 1860s?
+The nile
+10
+
+Which Agatha Christie title comes from a nursery rhyme involving a mouse?
+Hickory dickory dock
+10
+
+Which Agatha Christie title comes from a nursery rhyme involving birds?
+Pocket full of rye
+10
+
+Which age do the hindus believe we are now living, characterized by wickedness and disaster?
+Kaliyuga
+10
+
+Which ageing rocker flopped with the solo album 'goddess in the doorway' in 2001?
+Mick jagger
+10
+
+Which aircraft set the record for the first piloted supersonic flight?
+Bell x-1
+10
+
+Which aircraft was designed by sir christopher cockerell?
+Hovercraft
+10
+
+Which airforce rank is equivalent to an army major?
+Squadron-leader
+10
+
+Which airline has its home base in Atlanta, Georgia?
+Delta
+10
+
+Which airplanes flew the first mission in 'desert storm'?
+Stealth bombers
+10
+
+Which Alabama city was the first capital of the Confederacy during the Civil War?
+Montgomery
+10
+
+Which Alan Parker film dealt with racial murders in America?
+Mississippi burning
+10
+
+Which Alastair is a member of the Channel 4 horse racing team?
+Alastair Down
+10
+
+Which album released on august 11 1969 was a collaboration between donovan and jeff beck?
+Barabajagal
+10
+
+Which album won the best album award at the 1997 brits for manic street preachers?
+Everything must go
+10
+
+Which alcoholic drink was once banned as it was believed it could make you mad?
+Absinthe
+10
+
+Which Alistair is a member of the Channel 4 horse racing team?
+Alistair Down
+10
+
+Which alternative ceomedian called his first novel Stark?
+Ben elton
+10
+
+Which amber globe was named after a 1930s minister of transport?
+Belisha Beacon
+10
+
+Which amendment is the 'lame duck' amendment?
+20th
+10
+
+Which American actor starred in Casablanca and the big sleep?
+Humphrey bogart
+10
+
+Which American aircraft company makes the F15 Eagle?
+Mcdonnell Douglas
+10
+
+Which American astronaut played golf on the moon?
+Alan shepard
+10
+
+Which American author wrote Moby Dick?
+Herman Melville
+10
+
+Which American author wrote the million pound sellers 'The Witches of Eastwick' and 'The Poorhouse Fair'?
+John updike
+10
+
+Which American blacksmith invented the steel plough in 1837?
+John deere
+10
+
+Which American Blues singer originally recorded 'Smokestack Lightning'?
+Howlin' wolf
+10
+
+Which American chat show hostess apppeared in the film 'The Color Purple'?
+Oprah winfrey
+10
+
+Which American city is known colloquially as 'Foggy Bottom'?
+Washington d c
+10
+
+Which American city is named after an ancient capital of egypt?
+Memphis
+10
+
+Which American city is nicknamed 'The Big Easy'?
+New Orleans
+10
+
+Which American city is served by Dulles Airport?
+Washington d c
+10
+
+Which American city is served by Logan International Airport?
+Boston
+10
+
+Which American clarinettist and bandleader created the jazz idiom known as swing?
+Benny goodman
+10
+
+Which American clarinettist bandleader was known as 'The King of Swing'?
+Benny goodman
+10
+
+Which American company, originally a manufacturer of explosives, first produced nylon in 1938?
+Dupont
+10
+
+Which American composer wrote the ballet Appalachian Spring'?
+Aaron copland
+10
+
+Which American criminal was known as Scarface?
+Al capone
+10
+
+Which American crowned a great 1998 by winning at Wentworth?
+Mark o'neara
+10
+
+Which American devised a noise reduction system, now in general use, for tape-recorders etc?
+Ray dolby
+10
+
+Which American driver won formula one world championships in 1978?
+Mario andretti
+10
+
+Which American female vocalist had a hit in 1985 with 'We Don't Need Another Hero'?
+Tina turner
+10
+
+Which American footballer won four Super Bowls with the San Francisco 49ers?
+Joe montana
+10
+
+Which American general commanded the American defense of the Phillipines (1941-2) and defeated the Japanese in the Pacific (1944-5)?
+Macarthur
+10
+
+Which American group named itself after an American firetruck?
+Reo speedwagon
+10
+
+Which American inventor and manufacturer patented the cylinder lock in 1861?
+Linus yale
+10
+
+Which American inventor produced the Kodak camera?
+George eastman
+10
+
+Which American league outfielder stole 130 bases in 1982?
+Rickey henderson
+10
+
+Which American league player won the cy young award in 1983?
+Lamarr hoyt
+10
+
+Which American magician & escapologist was born Erich Weiss in 1874?
+Harry Houdini
+10
+
+Which American mulit millionaire recluse died on his private jet on 5th april 1976?
+Howard hughes
+10
+
+Which American president could write Latin with one hand and Greek with the other, simultaneously?
+James Garfield
+10
+
+Which American president had the middle name milhous?
+Richard nixon
+10
+
+Which American president holds the record for the most consecutive hand shakes at an official function?
+Theodore roosevelt
+10
+
+Which American president is credited with the plan of 'vietnamization'?
+Nixon
+10
+
+Which American President ordered the dropping of the first atomic bomb?
+Harry S Truman
+10
+
+Which American president said, 'It is not best to swap horses when crossing streams'?
+Abraham lincoln
+10
+
+Which American president said, 'The only thing we have to fear is fear itself?
+F d roosevelt
+10
+
+Which American president won the biggest vote in Amercan election history?
+Ronald reagan
+10
+
+Which American president won the biggest vote in American election history?
+Ronald reagan
+10
+
+Which American presindent was known as Tricky dicky?
+Richard nixon
+10
+
+Which American river caused serious flood damage in 1993?
+Mississippi
+10
+
+Which American RnB rockers were known as CCR?
+Creedance clearwater revival
+10
+
+Which American said I have a dream?
+Martin luther king
+10
+
+Which American secretary of state has won the nobel peace prize?
+Henry kissinger
+10
+
+Which American state calls itself The Last Frontier?
+Alaska
+10
+
+Which American state forms the border of Missouri?
+Arkansas
+10
+
+Which American state has a Union Jack on its flag?
+Hawaii
+10
+
+Which American state has Boise as its capital?
+Idaho
+10
+
+Which American state has orange blossom as its official flower?
+Florida
+10
+
+Which American state is called 'The Silver State'?
+Nevada
+10
+
+Which American state is known as the Lone Star State?
+Texas
+10
+
+Which American state is nicknamed 'the empire state of the south' or 'peach state'?
+Georgia
+10
+
+Which American state is nicknamed 'the sioux state' or 'flickertail state'?
+North dakota
+10
+
+Which American state is nicknamed the 'beehive' state?
+Utah
+10
+
+Which American state is nicknamed the 'evergreen' state?
+Washington
+10
+
+Which American state passed a bill declaring Pi to be 3?
+Indiana
+10
+
+Which American state was the first, in 1780, to abolish slavery?
+Pennsylvania
+10
+
+Which American statesman won the Nobel Peace Prize in 1973?
+Henry kissinger
+10
+
+Which American swimmer won 8 olympic medals between 1984 & 1992?
+Matt biondi
+10
+
+Which American tourist attraction was carved by Gutzon Borglum?
+Mount rushmore
+10
+
+Which American writer and lecturer was deaf and blind?
+Helen keller
+10
+
+Which American writer created John Carter of Mars and David Innes of Pellucidar?
+Edgar Rice Burroughs
+10
+
+Which American writer described Wagners music as being better than it sounds?
+Mark twain
+10
+
+Which American's first successful play was 'All My Sons'?
+Arthur miller
+10
+
+Which amusement park opened near Los Angeles in 1955?
+Disneyland
+10
+
+Which ancient body controls the grazing rights in the New Forest?
+The court of verderers
+10
+
+Which ancient chinees game is usually played by 4 people using 2 dice and 136 tiles?
+Mahjong
+10
+
+Which ancient city did the archaeologist Heinrich Schliemann?
+Troy
+10
+
+Which ancient greek thought that sight was caused by rays emitted by the eye?
+Pythagoras
+10
+
+Which ancient ship was brought up from the sea in 1982?
+The mary rose
+10
+
+Which ancient town, capital of the legendary King Minos, was excavated and reconstructed by Sir Arthur Evans between 1899 and 1935?
+Knossos
+10
+
+Which ancient town, was excavated and reconstructed by sir arthur evans between 1899 and 1935?
+Knossos
+10
+
+Which ancient world wonder was located at halicarnassus?
+Mausoleum
+10
+
+Which angel did God send to visit the young girl Mary?
+Gabriel
+10
+
+Which angry young man wrote Epitaph for George Dillon?
+John osborne
+10
+
+Which animal (on average) can travel a distance of 30 to 40 miles a night?
+Wolf
+10
+
+Which animal always gives birth to identical quadruplets?
+Armadillo
+10
+
+Which animal always grows new teeth to replace the old?
+Crocodile
+10
+
+Which animal appears on the national flag of Sri Lanka?
+Lion
+10
+
+Which animal became extinct in Britain in 1683?
+Wild boar
+10
+
+Which animal can endure temperatures below freezing whilst in hibernation?
+The bat
+10
+
+Which animal can mate over 50 times a day?
+Lion
+10
+
+Which animal does ermine come from?
+Stoat
+10
+
+Which animal eats wood twice as fast when listening to heavy metal music?
+Termite
+10
+
+Which animal family does the mandrill belong to?
+Baboon
+10
+
+Which animal floats in water?
+Porcupine
+10
+
+Which animal gives us nutria fur?
+Coypu
+10
+
+Which animal has been known to steal milk directly from a cow?
+Hedgehog
+10
+
+Which animal has breeds called Briards and Griffons?
+Dog
+10
+
+Which animal has the largest brain?
+Blue whale
+10
+
+Which animal has the largest eyes?
+Giant squid
+10
+
+Which animal has the latin name 'Bos grunniens'?
+Yak
+10
+
+Which animal has the smallest babies in relation to the size of the adult?
+Kangaroo
+10
+
+Which animal has varieties called 'Cornish Rex', 'Rag Doll' and 'Scottish Fold'?
+Domestic cat
+10
+
+Which animal has varieties called, Bank, Water, Field and Orkney?
+Vole
+10
+
+Which animal has varieties called, Water, Common and Pygmy?
+Shrew
+10
+
+Which animal is associated with the beginning of a MGM film?
+A lion
+10
+
+Which animal is known as 'mouton' to the french and 'schaf' to the germans?
+Sheep
+10
+
+Which animal is known as 'zorro' in Spanish and 'volpe' in Italian?
+Fox
+10
+
+Which animal is known as the 'prairie wolf'?
+Coyote
+10
+
+Which animal is the official emblem of Canada?
+Beaver
+10
+
+Which animal is unable to stick out its tongue?
+Crocodile
+10
+
+Which animal lives at the highest altitude?
+Yak
+10
+
+Which animal lives in a holt?
+Otter
+10
+
+Which animal might be described as 'hircine'?
+Goat
+10
+
+Which animal secretes the pigment sepia?
+Cuttlefish
+10
+
+Which animal sleeps with one eye open?
+Dolphin
+10
+
+Which animal survives only on eucalyptus leaves?
+Koala
+10
+
+Which animal was once called the 'camelopard?
+Giraffe
+10
+
+Which animal, if seen, is said to be a sign of spring?
+Robin
+10
+
+Which animal's name is the greek for 'river horse'?
+Hippopotamus
+10
+
+Which animal's nickname is 'ship of the desert'?
+Camel
+10
+
+Which animals breasts go into terrine de canard a l'orange?
+Duck
+10
+
+Which animals fur is used to make a musquash coat?
+Musk rat
+10
+
+Which animals meatphorically constitute a heavy rainstorm?
+Cats and dogs
+10
+
+Which animals metaphorically constitute a heavy rainstorm?
+Cats and dogs
+10
+
+Which animated characters would you find on the ss pennsyltucky?
+Rocky & bullwinkle
+10
+
+Which anniversary is dubbed the crystal anniversary?
+The fifteenth
+10
+
+Which annual award is given for distinguished contribution to children's literature?
+Newbery medal
+10
+
+Which ape is normally known as man of the woods?
+Orangutan
+10
+
+Which Apollo mission took the first man to the moon?
+Apollo eleven
+10
+
+Which Apostle didn't believe in the resurrection until he had seen the Saviour's wounds?
+Thomas
+10
+
+Which apostle is the patron of bankers, book-keepers and tax collectors?
+Matthew
+10
+
+Which Apostle refused to believe in Christ's resurrection until he had seen His wounds?
+Thomas
+10
+
+Which apostle was the only one to die a natural death?
+St john the evangelist
+10
+
+Which apparatus is used for weaving?
+A loom
+10
+
+Which arabic sailor featured in the Arabian Nights?
+Sinbad
+10
+
+Which archangel is the patron of television and radio workers, messengers and postal workers?
+Gabriel
+10
+
+Which architect designed Brighton pavilion?
+John Nash
+10
+
+Which architect designed st Paul's cathedral in london?
+Sir christopher wren
+10
+
+Which architect designed the Crystal Palace for the Great Exhibition of 1851?
+Joseph paxton
+10
+
+Which architect designed the Guggenheim Museum in New York?
+Frank lloyd wright
+10
+
+Which architect designed the Queens House at Greenwich which is now part of the National Maritime Museum?
+Inigo jones
+10
+
+Which architect designed the Royal Observatory in Greenwich, UK?
+Sir christopher wren
+10
+
+Which architect was responsible for many of Barcelona's famous buildings?
+Antonio gaudi
+10
+
+Which are barnacles, plants or animals?
+Animals
+10
+
+Which are organs, which have the production of urine as their primary function?
+Kidney
+10
+
+Which are the biggest and most powerful warships today?
+Aircraft carriers
+10
+
+Which are the most used muscles in the body?
+Eye muscles
+10
+
+Which are the only three teams in european Football history to attain the famed treble (alphabetically)?
+Ajax celtic Manchester united
+10
+
+Which are the only two mammals with hymens?
+Humans and horses
+10
+
+Which are the three longest rivers in order?
+Nile, amazon, mississippi
+10
+
+Which are the twin cities?
+Minneapolis and saint Paul
+10
+
+Which area of water lies between china and korea?
+Yellow sea
+10
+
+Which Argentinian golfer, aged 44,won the British Open in 1967?
+Roberto de vicenzo
+10
+
+Which Argentinian in 1967 became the oldest-ever winner of the Open Golf Championship at the age of 44?
+Roberto de vicenzo
+10
+
+Which Argentinian politician commanded the invasion of the Falkland Islands?
+General galtieri
+10
+
+Which arm did King George V have a large blue and red dragon tattoo on?
+Right
+10
+
+Which arm of the British armed forces did t e lawrence join?
+Royal air force
+10
+
+Which army rank is equivalent to the naval rank of Lieutenant-Commander?
+Major
+10
+
+Which aromatic rice is traditionally used in Indian cookery?
+Basmati
+10
+
+Which art gallery is the home of Rodin's ' The Kiss' and Picasso's The Three Dancers'?
+Tate modern
+10
+
+Which art gallery would you visit to see Botticelli's ' Birth of Venus'?
+The uffizi, florence
+10
+
+Which arteries carry blood to the head and neck?
+Carotid
+10
+
+Which Arthur first conceived the idea of geostationary satellites?
+Arthur c clarke
+10
+
+Which arthur miller play is set during the salem witchcraft trials?
+The crucible
+10
+
+Which Arthur Miller play uses the witch trials of Salem to comment on the so called McCarthy witchhunts?
+The crucible
+10
+
+Which artist did the stage design for the ballet 'Parade'?
+Picasso
+10
+
+Which artist first sketched the principal of the parachute?
+Leonardo da vinci
+10
+
+Which artist fixed the image of Santa Claus in our minds?
+Thomas Nast
+10
+
+Which artist painted 'Guernica'?
+Picasso
+10
+
+Which artist painted the picture guernica?
+Pablo picasso
+10
+
+Which artist painted the picture known as the haywain?
+Constable
+10
+
+Which artist painted the picture tahitian women?
+Paul gaugin
+10
+
+Which artist painted the work popularly known as 'Bubbles'?
+Millais
+10
+
+Which artist painted Venus of Urbino?
+Titian
+10
+
+Which artist produced more than 200 paintings while he was in the asylum in st. remy?
+Vincent van gogh
+10
+
+Which artist went mad after being sent to work as a priest in Belgium?
+Vincent van gogh
+10
+
+Which artist, born in Russia in 1887, painted Self Portrait With Seven Fingers, Birthday and Bouquet With Flying Lovers?
+Marc chagall
+10
+
+Which artist, remembered more for his portraits than his landscapes, was born in Sudbury, Suffolk, in 1717?
+Gainsborough
+10
+
+Which artists life is depicted in Moulin Rouge?
+Toulouse-lautrec
+10
+
+Which artists won the Turner Prize in 1986?
+Gilbert & george
+10
+
+Which Asian city was designed by Sir Edwyn Lutyens as a grand symbol of the British Empire?
+New delhi
+10
+
+Which Asian country is split east to west by the Hindu Kush?
+Afghanistan
+10
+
+Which astrological sign both begins and ends the calendar year?
+Capricorn
+10
+
+Which astronaut did Tom Hanks play in the film Apollo 13?
+Jim lovell
+10
+
+Which astronaut was the first to orbit the earth?
+Yuri garagin
+10
+
+Which astronauts mothers maiden name was moon?
+Buzz aldrin
+10
+
+Which astronomer and military band conductor discovered Uranus in 1781?
+W f herschel
+10
+
+Which astronomer discovered the planet Uranus in 1781?
+William herschel
+10
+
+Which astronomical unit is equal to 3.26 light years?
+Parsec
+10
+
+Which athenian historian wrote history of the peloponnesian war?
+Thucydides
+10
+
+Which athlete withdrew from the Sydney Olympics claiming she had been confronted by a stranger in her hotel room?
+Marie-jose perec
+10
+
+Which athletes do sit spins, axle jumps and flying camels?
+Figure skaters
+10
+
+Which athletics event is sometimes known as the metric Mile?
+1500 metres
+10
+
+Which Athletics world record was held by cricketer C B Fry?
+Long jump
+10
+
+Which austere Christian sect, founded in 1650, rejects cultural rites and an ordained ministry?
+Quakers
+10
+
+Which Australian and New Zealand Prime Ministers are commemorated in Westminster Abbey in London?
+Billy Hughes and Richard Seddon
+10
+
+Which Australian animal rolls into a spiky ball when in danger?
+Echidna
+10
+
+Which Australian anti hero gave rise to the tourist industry in the town of Glenrowan?
+Ned kelly
+10
+
+Which Australian author wrote illywhacker and oscar and lucinda?
+Peter carey
+10
+
+Which Australian city hosted its final Formula 1 race in 1995?
+Adelaide
+10
+
+Which Australian city is known as 'The City of Light'?
+Adelaide
+10
+
+Which Australian city is named after william iv's queen?
+Adelaide
+10
+
+Which Australian city stands on the port jackson inlet?
+Sydney
+10
+
+Which Australian coast is Perth on?
+West
+10
+
+Which Australian national park was included on the World Heritage List in 1981?
+Kakadu National Park
+10
+
+Which Australian pioneer's son refused a baronetcy because of his father's involvement in the Rum Rebellion?
+Edward, son of John Macarthur
+10
+
+Which Australian State allows the cultivation of opium poppies to produce drugs?
+Tasmania
+10
+
+Which Australian state capital was named in honour of a British naturalist?
+Darwin
+10
+
+Which Australian state capital was named in honour of a British Prime Minister?
+Melbourne
+10
+
+Which Australian state has the waratah the state flower?
+New South Wales
+10
+
+Which Australian tennis star was nicknamed The Rockhampton Rocket?
+Rod laver
+10
+
+Which Australian throwing stick is supposed to return to the thrower?
+Boomerang
+10
+
+Which Australian was the only man to win the tennis Grand Slam twice?
+Rod laver
+10
+
+Which Austrian born composer who was superstitious about numbers died on fri 13th at 13 mins to midnight?
+Arnold schonberg
+10
+
+Which Austrian president was engulfed in a storm over his Nazi past in 1988?
+Kurt waldheim
+10
+
+Which author created svengali?
+Georges du maurier
+10
+
+Which author created the character hannibal lecture?
+Thomas harris
+10
+
+Which author created the detectives Miss Marple and Hercule Poirot?
+Agatha christie
+10
+
+Which author died on the same day as Shakespeare?
+Cervantes
+10
+
+Which author edited Household Words?
+Charles dickens
+10
+
+Which author introduced the phrase 'the beat generation' in his novel entitled on the road?
+Jack kerouac
+10
+
+Which author wrote about the fictional Napoleonic war hero Sharpe?
+Bernard cornwell
+10
+
+Which author wrote plays about love, hate, marriage, emancipation, and vd?
+Ibsen
+10
+
+Which author wrote the 'Stone Diaries'?
+Carol shields
+10
+
+Which author wrote the belgariad series?
+David eddings
+10
+
+Which author wrote the novel tom jones?
+Henry fielding
+10
+
+Which author wrote the two World War 2 books 'Fighter' and 'Bomber'?
+Len deighton
+10
+
+Which author, famous for such novels as 'The Naked Lunch', died in 1997?
+William s burroughs
+10
+
+Which author's book saw a huge surge in sales in 1984?
+George orwell
+10
+
+Which avenue can be found along the right bank of the seine?
+Champs elysees
+10
+
+Which Bach compsositions were never performed for the nobleman to whom they were dedicated?
+The brandenburg concertos
+10
+
+Which bad guy in the James Bond movies didnt have his heart in the right place?
+Dr. No
+10
+
+Which balding actor donned a pigtail for his role in the film Medicine Man?
+Sean connery
+10
+
+Which ballet company is based at the Maryinsky Theatre?
+Kirov ballet
+10
+
+Which ballet position is named after the French for bent?
+Plie
+10
+
+Which ballet star had a nickname of Misha?
+Mikhail Boryshnikov
+10
+
+Which band backed singer Jimmy James?
+The vagabonds
+10
+
+Which band comprises Shaznay and Melanie plus sisters Natalie and Nicole?
+All saints
+10
+
+Which band comprises sisters Andrea, Sharon, and Caroline with their brother Jim?
+The corrs
+10
+
+Which band covered nilsson's 'one' and brought it to the top ten in 1969?
+Three dog night
+10
+
+Which band did David bowie and the 'sons of soupy sales' form?
+Tin machine
+10
+
+Which band did three of The Specials form when they left?
+Fun boy three
+10
+
+Which band had a member called left eye?
+Tlc
+10
+
+Which band had members Robert palmer, Andy and John Taylor, and Tony Thompson?
+The Power Station
+10
+
+Which band had top ten hits with robert de niro's waiting and i want you back?
+Bananarama
+10
+
+Which band leader is associated with take the a train?
+Duke ellington
+10
+
+Which band leader was killed in a plane crash?
+Glenn miller
+10
+
+Which band member was Boy George allegedly seeing in Culture Club during the eighties? (Just name the instrument he plays)?
+The Drummer
+10
+
+Which band of the 60s and 70s recorded Live at Pompeii?
+Pink floyd
+10
+
+Which band reached no 8 in 1985 with 'johnny come home'?
+Fine young cannibals
+10
+
+Which band reached number two in the charts in 1988 with the album The First of a Million Kisses?
+Fairground attraction
+10
+
+Which band recorded a song called Bank Holiday?
+Blur
+10
+
+Which band recorded the album parachutes?
+Coldplay
+10
+
+Which band recorded the live album 'Live and Dangerous'?
+Thin lizzie
+10
+
+Which band recorded the live album 'Strangers in the Night'?
+Ufo
+10
+
+Which band took there name from a character from to kill a mocking bird?
+Boo radleys
+10
+
+Which band topped the singles charts in 1999-19yrs after the previous number1?
+Blondie
+10
+
+Which band was Sid Vicious in before he joined the Sex Pistols?
+Siouxsie and the banshee
+10
+
+Which band were named after a 1950 film starring Bette Davis, Anne Baxter, George Sanders and Celeste Holm?
+All about eve
+10
+
+Which band's 1986 album was titled `London 0 Hull 4`?
+The Housemartins
+10
+
+Which bandleader died in an air crash over the English Channel during World War II?
+Glenn Miller
+10
+
+Which bands 1986 album was called London 0 Hull4?
+The housemartins
+10
+
+Which bank did the jailed Nick Leeson work for and ruin?
+Barings
+10
+
+Which bank lies to the left of a canoeist paddling upstream, the left or the right?
+Right
+10
+
+Which baseball team did Jackie Robinson play for in 1947?
+Brooklyn Dodgers
+10
+
+Which battle is sometimes called the Battle of Three Emperors?
+Austerlitz
+10
+
+Which battle took place between May 3-8 1942 and was the first great aircraft carrier battle?
+Battle of the coral sea
+10
+
+Which battle took place in Leicestershire in 1485?
+Bosworth field
+10
+
+Which battle was fought by Wellington two days before Waterloo?
+Quatre bras
+10
+
+Which bay was the site of the first Australian settlement?
+Botany Bay
+10
+
+Which BBC TV comedy featured spoof news and current affairs, and introduced Alan Partridge?
+The day today
+10
+
+Which beatle admitted: 'we can't sing. we can't do anything. we're just having a good time'?
+Paul mccartney
+10
+
+Which beatle almost did at the age of six when his appendix burst?
+Ringo starr
+10
+
+Which beatle played the pope in the film lisztomania?
+Ringo star
+10
+
+Which beatle posed in his bare feet on the abbey road album?
+Mccartney
+10
+
+Which beatle sang backing vocals on David bowies fame?
+John lennon
+10
+
+Which beatle song features sweet loretta?
+Get back
+10
+
+Which beatle took up auto racing?
+George harrison
+10
+
+Which beatle took up racing cars?
+George harrison
+10
+
+Which beatle wrote the score for the 1966 film the family way?
+Paul mccartney
+10
+
+Which Beatles on the cover to the album 'Abbey Road' has no shoes or socks?
+Paul
+10
+
+Which Beatles song is the most recorded song of all time?
+Yesterday
+10
+
+Which Beatles song is the most recorded?
+Yesterday
+10
+
+Which beautiful woman was stolen from her husband and caused the Trojan war?
+Helen of troy
+10
+
+Which beer was first brewed in Leuven in 1366?
+Stella artois
+10
+
+Which Belgian port saw the Herald of Free Enterprise set sail with its bow doors open in 1987?
+Zeebrugge
+10
+
+Which best selling author had already made and lost a million pound fortune in the food business before he ever started writing?
+Harold robbins
+10
+
+Which best selling author once represented Louth in Parliament?
+Jeffrey archer
+10
+
+Which best-selling author writes novels featuring the pathologist dr. kay scarpetta?
+Patricia cornwell
+10
+
+Which beverage is a Quaker Oats product?
+Gatorade
+10
+
+Which Beverly Hillbilly invented 'Critter Country Classic Pet Cologne'?
+Elly Mae Clampett 
+10
+
+Which biblical character had 12 sons?
+Jacob
+10
+
+Which Billy Joel album earned him a Grammy Award in 1979?
+52nd Street
+10
+
+Which Billy Rose song, written with Al Jolson and Dave Dreyer, was a hit as a duet for Frank Sinatra and Sammy Davis Jnr. in 1962?
+Me and my shadow
+10
+
+Which biologist has written the books The Selfish Gene and Climbing Mount Improbable?
+Richard dawkins
+10
+
+Which bird can walk under water?
+Dipper
+10
+
+Which bird eats with its bill upside down?
+Flamingo
+10
+
+Which bird family are the Anserinae?
+Geese
+10
+
+Which bird family are the Columbidae?
+Doves and pigeons
+10
+
+Which bird had the largest wingspan?
+Wandering albatross
+10
+
+Which bird has nostrils at the end of its beak?
+Kiwi
+10
+
+Which bird has plumes onits head resembling the quills secretaries used to put behind their ears?
+Secretary bird
+10
+
+Which bird has the largest wing span?
+Albatross
+10
+
+Which bird has the largest wingspan?
+The wandering albatross
+10
+
+Which bird in flight is the symbol ofSt John the Apostle?
+Eagle
+10
+
+Which bird is also known as the butcher bird?
+Shrike
+10
+
+Which bird is known as the laughing jackass?
+The kookaburra
+10
+
+Which bird is known as the Sea Parrot?
+Puffin
+10
+
+Which bird is nicknamed the Pharoahs chicken?
+Egyptian vulture
+10
+
+Which bird is the international symbol of happiness?
+Bluebird
+10
+
+Which bird lays its eggs in other birds nests?
+Cuckoo
+10
+
+Which bird took manfred mann to no 1 in 1966?
+Pretty flamingo
+10
+
+Which bird turns its head upside down to eat?
+Flamingo
+10
+
+Which bird was described by Wordsworth as 'A Wandering Voice'?
+Cuckoo
+10
+
+Which bird,one of the commonest in the world in 1814,became extinct a century later?
+Passenger pigeon
+10
+
+Which birds are kept in lofts and are used for racing?
+Pigeons
+10
+
+Which birds are the only ones to fly backwards?
+Hummingbirds
+10
+
+Which birth sign precedes Cancer?
+Gemini
+10
+
+Which biscuit is named after a french royal family?
+Bourbons
+10
+
+Which biscuit is names after an Italian revolutionary leader?
+Garibaldi
+10
+
+Which black actress played jane foster in east side/west side?
+Cicely tyson
+10
+
+Which blood vessels carry blood from the heart to the various parts of the body?
+Arteries
+10
+
+Which Blue Peter presenter had a dog called Shep?
+John noakes
+10
+
+Which board game do Rod and Todd Flanders like to play?
+Good Samaritan
+10
+
+Which board game is said to have come from the Welsh for little battle?
+Backgammon
+10
+
+Which board game was invented by Alfred Butts?
+Scrabble
+10
+
+Which Bob Dylan song was a hit for Jimi Hendrix in 1968?
+All along the watchtower
+10
+
+Which bob marley hit, recorded in london, took six years to reach the uk top-ten (this song was later recorded by the group, boney m)?
+No woman no cry
+10
+
+Which bob went on tour during the summer of 1999 with Paul simon?
+Dylan
+10
+
+Which body of water links the Black Sea and Mediterranean Sea?
+Sea of marmara
+10
+
+Which body of water seperates France from Great Britain?
+English channel
+10
+
+Which Bohemian ruler featured in a popular translation of a Czechoslovakian carol was murdered by his brother?
+Good king wenceslas
+10
+
+Which bomb used in the Dambuster raids was invented by Barnes Wallis?
+Bouncing bomb
+10
+
+Which Bond films theme tune was sung by Duran Duran?
+A view to a kill
+10
+
+Which bone in the human body is at the front but sounds like it should be at the back?
+Sternum
+10
+
+Which Bonn musician left for Vienna in 1792 to study Haydn?
+Beethoven
+10
+
+Which bony structure includes the zygomatic, ethmoid, and vomer bones'?
+Skull
+10
+
+Which bottled water originates in Dovedale?
+Ashbourne
+10
+
+Which bowie classic contains the lines: 'sailors fighting in the dance halls, oh man! look at those cavemen go!'?
+Life on mars
+10
+
+Which boxer broke Muhammed Ali's jaw?
+Ken norton
+10
+
+Which boxer came out of retirement in April 1987 to surprisingly take the WBC middleweight title from Marvin Hagler?
+Sugar ray leonard
+10
+
+Which boxer gave up halfway through a title fight with Sugar Ray Leonard?
+Roberto duran
+10
+
+Which boxer holds the record for the longest-reign as World Heavyweight Champion?
+Joe louis
+10
+
+Which boxer is heaviest a bantamweight, middleweight or welterweight?
+Middleweight
+10
+
+Which boxer starred as prizefighter John Gully in the 1975 film Royal Flash?
+Henry cooper
+10
+
+Which boxer was Cliff Morgans opposing captain in the first edition of A Question of Sport?
+Henry cooper
+10
+
+Which boxers nick name was The Ambling Alp?
+Primo carnera
+10
+
+Which boy did Sister Sledge take to number 1?
+Frankie
+10
+
+Which boyband did joey mcintyre begin his professional singing career with?
+New kids on the block
+10
+
+Which boys name means javelin?
+Barry
+10
+
+Which branch of science is concerned with the study of matter and energy?
+Physics
+10
+
+Which brand of sportswear takes its nape from a South African gazelle?
+Reebok
+10
+
+Which brass instrument has a slide?
+Trombone
+10
+
+Which Brazilian footballer was nicknamed Little Bird?
+Garrincha
+10
+
+Which Brazilian made his formula 1 grand prix debut in the 1978 German grand prix?
+Nelson piquet
+10
+
+Which breakfast cereal did Tori Amos sing about?
+Cornflakes
+10
+
+Which breakfast cereal's advertising slogan was 'For breakfast it's dandy, for snack it's quite handy, or eat it like candy?
+Post Sugar Crisp
+10
+
+Which breed of dog did Queen Victoria own?
+Daschund
+10
+
+Which breed of dog was developed from the Bullenbaiser?
+Boxer
+10
+
+Which breed of dog was introduced to Britain from Seistan province of Persia by John Barff, who exhibited it at the Kennel Club in 1907?
+Afghan hound
+10
+
+Which breed of dog was known as The Coach Dog?
+Dalmation
+10
+
+Which breed of large dog, used by German nobility in the 17th Century to hunt boar and stags, is known there as the Deutsche Dog?
+Great dane
+10
+
+Which brewery sponsored the 1987 Melbourne Cup?
+Fosters
+10
+
+Which bridge in England designed by Robert Adam and built in 1769-74 was inspired by the Ponte Vecchio in Florence?
+The pulteney bridge
+10
+
+Which British actor wrote his autobiography titled, What's It All About?
+Michael Caine 
+10
+
+Which British actor, famous for roles in horror films, was the cousin of author lan fleming?
+Christopher lee
+10
+
+Which British aircraft company produced a classic car marque and also made buses and trucks in the post war era?
+Bristol
+10
+
+Which British aircraft designer created the hawker Hurricane in 1935?
+Sir sydney camm
+10
+
+Which British airport has the identification code EMA?
+East midlands
+10
+
+Which British animal has the scientific name Lutra Lutra?
+Otter
+10
+
+Which British animal has the scientific name Meles Meles?
+Badger
+10
+
+which British architect designed the 1995-9 alterations to the Reichstag in Berlin for which he was awarded the Pritzer Prize?
+Sir norman foster
+10
+
+Which British athlete was disqualified in the 1984 Olympic womens 3000 metres?
+Zola budd
+10
+
+Which British author created sherlock holmes?
+Sir arthur conan doyle
+10
+
+Which British author has the first names John Ronald Reuel?
+JRR Tolkien
+10
+
+Which British band recorded both these albums: my generation and odds and sods?
+The who
+10
+
+Which British bird is the largest of the European grouse?
+Capercaillie
+10
+
+Which British Boxer made a winning comeback in Jan 1991?
+Lloyd honeyghan
+10
+
+Which British coin was minted from silver until 1672?
+The half penny
+10
+
+Which British colony was returned to the Chinese in 1997?
+Hong kong
+10
+
+Which British columbia city began as a logging mill called hastings mill?
+Vancouver
+10
+
+Which British commander drove th efrench fromQuebec in 1759?
+James wolfe
+10
+
+Which British director founded the Theatre Workshop in Manchester in 1945?
+Joan littlewood
+10
+
+Which British driver won five British Grand Prix races in the 1960s?
+Jim clark
+10
+
+Which British Dukes stately home is at Stratford Saye?
+Duke of Wellington
+10
+
+Which British film, set in the north of England during the miners' strike, had a massive release in the U.S.A. in November 2000?
+Billy elliot
+10
+
+Which British football team was nearly wiped out by a plane crash at Munich in 1958?
+Manchester united
+10
+
+Which British Football team was owned by Elton John?
+Watford
+10
+
+Which British football team won the 1967 European Cup?
+Celtic
+10
+
+Which British hero's statue stands on a column in trafalgar square?
+Horatio nelson
+10
+
+Which British islands are the farthest north?
+Shetlands
+10
+
+Which British king gave his name to a potato?
+King edward
+10
+
+Which British King had the-longest reign?
+George iii
+10
+
+Which British king said 'i don't like abroad, i've been there'?
+George v
+10
+
+Which British Military leader had a horse called Copenhagen?
+Duke of wellington
+10
+
+Which British Monarch could neither speak nor write English?
+George I
+10
+
+Which British monarch had the shortest reign?
+Lady jane grey
+10
+
+Which British monarch was known as The Sailor King?
+William IV
+10
+
+Which British motor manufacturer produced a model called the 'Elf'?
+Riley
+10
+
+Which British motor manufacturer produced a model called the 'Hunter'?
+Hillman
+10
+
+Which British novelist wrote the 'jewel in the crown'?
+Paul scott
+10
+
+Which British physician, 1749 to 1823, developed the first effective vaccine against smallpox?
+Edward jenner
+10
+
+Which British politician was held at gunpoint after landing at the wrong airport in 1988?
+Neil kinnock
+10
+
+which British prime minister also wrte film scripts?
+Winston churchill
+10
+
+Which British Prime Minister brought in a 10.30 pm TV curfew in 1973?
+Edward heath
+10
+
+Which British prime minister introduced the 3 day week?
+Edward heath
+10
+
+Which British prime minister said 'You never had it so good'?
+Harold macmillan
+10
+
+Which British Prime Minister was born in Canada?
+Andrew bonar law
+10
+
+Which British Prime Minister wrote the novels Coningsby and Sybil?
+Benjamin disraeli
+10
+
+Which British Queen was excommunicated by the Pope?
+Elizabeth i
+10
+
+Which British race track would you visit to see Clearways?
+Brands hatch
+10
+
+Which British racecourse gives its name to racecourses in Perth,Australia and Toronto,Canada?
+Ascot
+10
+
+Which British Railway station has the greatest number of platforms?
+Waterloo
+10
+
+Which British rock group released a 1990s album called Parklife?
+Blur
+10
+
+Which British royal took tea with Adolf Hitler?
+Duke of windsor
+10
+
+which British saint is famous for slaying a dragon?
+St. george
+10
+
+Which British scientist invented a safety lamp for miners?
+Davy
+10
+
+Which British sport apart from tennis has is hq at Wimbledon?
+Croquet
+10
+
+Which British sports car took its name from the Morris garages where it was developed?
+The mg
+10
+
+Which British stage and film director won an Oscar in 2000?
+Sam mendes
+10
+
+Which British statesman, Minister of Labour in the National Government (1940-1945) became Foreign Secretary in Attlee's Cabinet (1945-1951)?
+Ernest bevin
+10
+
+Which British statesman, Minister of Labour in the National Government 1940-45, became Foreign Secretary in 1945?
+Ernest bevin
+10
+
+Which British tennis player was the husband of Chris Evert?
+John lloyd
+10
+
+Which British theatre has a permanent backdrop of sea and sky?
+Minack theatre of cornwall
+10
+
+Which British town did the Romans call DUBRIS?
+Dover
+10
+
+Which British town is famous for its cutlery production?
+Sheffield
+10
+
+Which British university is the only one named after an engineer?
+Brunel
+10
+
+Which British warrior was the queen of the iceni?
+Boudicca
+10
+
+Which Briton won the gold medal in the 100 metres in Moscow in 1980?
+Allan wells
+10
+
+Which Briton, in 1987, made the first transatlantic flight by balloon?
+Richard branson
+10
+
+Which broadway actress had a piece of wwii army equipment named after her?
+Mae west
+10
+
+Which Broadway musical opened on March 31, 1943?
+Oklahoma
+10
+
+Which brothers published the storybook entitled 'Household Tales' in the 19th century?
+The brothers grimm
+10
+
+Which buff coloured cotton comes from China?
+Nankeen
+10
+
+Which building in Washington dc gave its name to a political scandal?
+Watergate
+10
+
+Which calendar starts 3760 years before the birth of Jesus Christ?
+Jewish calendar
+10
+
+Which californian town was john steinbeck's famous cannery row set in?
+Monterey
+10
+
+Which camera company produces the popular 'sureshot'?
+Canon
+10
+
+Which camera company produces the popular 'trip'?
+Olympus
+10
+
+Which camera was introduced by Eastman Kodak in 1900 & was originally sold for one dollar?
+Brownie
+10
+
+Which can go longer without drinking water: a.camel b. buzzard c. giraffe?
+C. giraffe
+10
+
+Which Canadian actor died during the filming of Wagons East &?
+John Candy
+10
+
+Which Canadian athlete was cleared to compete for his country in 1990 after a positive drugs test at the 1988 Olympics?
+Ben johnson
+10
+
+Which Canadian based baned released mmmmm mmmmmmm mmmmmmmm in 1994?
+Crash test dummies
+10
+
+Which Canadian city was originally called Bytown?
+Ottawa
+10
+
+Which Canadian island is the setting for 'Anne of Green Gables?
+Prince edward island
+10
+
+Which Canadian Prime Mister set out to create a 'Just Society'?
+Pierre Trudeau
+10
+
+Which Canadian province has the largest population?
+Ontario
+10
+
+Which Canadian province produces the most maple syrup?
+Quebec
+10
+
+Which Canadian province was formerly called acadia?
+Nova scotia
+10
+
+Which canal links Lakes Ontario and Erie?
+Welland
+10
+
+Which canal links the Baltic to the North Sea?
+Kiel
+10
+
+Which canal was nationalised in 1956?
+Suez
+10
+
+Which canary sings the male or female?
+The male
+10
+
+Which candy was selling poorly until the movie E.T. popularized it?
+Reese's Pieces
+10
+
+Which capital city has a statue of a mermaid in its harbour?
+Copenhagen
+10
+
+Which capital city has Old Fort Denison located in its harbour?
+Sydney
+10
+
+Which capital city has the fewest cinemas in relation to its population?
+Cairo
+10
+
+Which capital city is built on the site of ancient Tenochtitlan?
+Mexico city
+10
+
+Which capital city means ` black pool`?
+Dublin
+10
+
+Which capital city stands near the delta of the irrawaddy river?
+Rangoon
+10
+
+Which capital city stands on the north shore of the river plate estuary?
+Montevideo
+10
+
+Which capital city was originally scheduled to hold the 1940 Summer Olympics, and had to wait for twenty-four years?
+Tokyo
+10
+
+Which capital city was scheduled as second choice to hold the 1944 Summer Olympics, and had to wait for another twelve years?
+Helsinki
+10
+
+Which capital is the largest city in Africa?
+Cairo
+10
+
+Which car company makes the 'Avensis'?
+Toyota
+10
+
+Which car company makes the almera?
+Nissan
+10
+
+Which car company makes the Xsara?
+Citroen
+10
+
+Which car company took over Mitsubishi in March 2000?
+Chrysler
+10
+
+Which car company tried harder because they were number two?
+Avis
+10
+
+Which car company, originally called Horch after its founder, changed its name to its Latin equivalent?
+Audi
+10
+
+Which car emblem consists of four linked circles?
+Audi
+10
+
+Which car introduced in 1907, required 48 feet to stop from speed of 25mph?
+Rolls royce silver ghost
+10
+
+Which car make has a double diamond as its logo?
+Renault
+10
+
+Which car maker produced the car known as the javelin?
+Amc
+10
+
+Which car manufacturer built a model called 'oxford', first produced in 1913?
+Morris motors
+10
+
+Which car manufacturer makes the Xantia model?
+Citroen
+10
+
+Which car manufacturer takes its name from the Latin for 'I roll'?
+Volvo
+10
+
+Which car manufacturer was the first to fit seat belts to their vehicles?
+Volvo
+10
+
+Which car manufacturer was the first to introduce front wheel drive in 1934?
+Citroen
+10
+
+Which car manufaturer produces a model called the 'Laguna'?
+Renault
+10
+
+Which car number does Mika Hakkinen have in 2000?
+One
+10
+
+Which car was named after the daughter of an investor?
+Mercedes benz
+10
+
+Which car won the 1953 Italian grand prix?
+Maserati
+10
+
+Which carbohydrate makes jam gel?
+Pectin
+10
+
+Which caring organisation was founded in 1953 by chad varah?
+The samaritans
+10
+
+Which Carthaginian general defeatd the romans after an epic mountain march?
+Hannibal
+10
+
+Which carton series includes a dog called Spike?
+Tom and jerry
+10
+
+Which cartoon character was the fastest mouse in all Mexico?
+Speedy Gonzales
+10
+
+Which cartoon character's vital statistics were 19-19-19 -in inches?
+Olive oyl
+10
+
+Which cartoon show would you hear the exclamation 'I hate meeces to pieces'?
+The Huckelberry Hound Show
+10
+
+Which cartoonist created Andy Capp?
+Reg smythe
+10
+
+Which cartoonist created George and Gaye Gambol who appeared in the Daily Express from 1951 to 1994?
+Barry appleby
+10
+
+which cartoonist created St Trinians?
+Ronald Searle
+10
+
+Which castle in London was built at around the time of William the Conqueror?
+Tower of London
+10
+
+Which Castle, home of the Dukes of Rutland, is near Grantham in Lincolnshire?
+Belvoir castle
+10
+
+Which cathedral city, sixty miles from Paris, has two spires?
+Chartres
+10
+
+Which cecil b. de mille classic carried the publicity tag, 'the mightiest dramatic spectacle of all the ages'?
+The ten commandments
+10
+
+Which celebrated scientist was also a poet,musician,architect,sculptor,engineer and artist?
+Leonardo da vinci
+10
+
+Which celebratory song was written by music publisher Clayton F Summy and plagiarised by Stravinsky?
+Happy birthday to you
+10
+
+Which cellphone company headquartered in Stockholm, Sweden, started as a telegraph repair shop?
+Ericsson
+10
+
+Which cellular structures are composed of DNA?
+Chromosomes
+10
+
+Which century saw the construction of the Taj Mahal?
+Seventeenth
+10
+
+Which century was hadrians wall built in?
+2nd
+10
+
+Which cereal diseases can cause food poisoning and gangrene of the fingers if consumed?
+Ergot
+10
+
+Which chain of stores was founded by Selim Zilkha?
+Mothercare
+10
+
+Which chancellor was accused of taxing fish and chips?
+Nigel lawson
+10
+
+Which character appears in most Shakespeare plays?
+Falstaff
+10
+
+Which character did Berlioz, Gounod and Liszt all compose music about?
+Faust
+10
+
+Which character did David jason play in the t.v. series porridge?
+Blanco
+10
+
+Which character did jodie foster play in bugsy malone?
+Tullulah
+10
+
+Which character did Lewis Carroll's Alice meet, sitting on a mushroom smoking a 'long hookah'?
+The caterpillar
+10
+
+Which character from a comic was known as The Pilot of the Future?
+Dan Dare
+10
+
+Which character from beavis and Butthead has their own show?
+Daria
+10
+
+Which character from The Archers thinks he is also a country and western star?
+Eddie grundy
+10
+
+Which character in 'Forrest Gump' loved shrimp?
+Bubba
+10
+
+Which character in Bond films has been played by Donald Pleasance, Telly Savalas, and Charles Gray?
+Blofeld
+10
+
+Which character in TV's Red Dwarf is a hologram?
+Rimmer
+10
+
+Which character in TV's Red Dwarf is obsessed with fashion?
+Cat
+10
+
+Which character is the narrator of Melville's Moby Dick?
+Ishmael
+10
+
+Which character of the southpark series gets killed in every volume?
+Kenny
+10
+
+Which character on TV's 'M-A-S-H'was played by an actor mising several fingers?
+Radar
+10
+
+Which character refers to himself as 'An Old Bailey hack'?
+Rumpole
+10
+
+Which character sang, 'when you wish upon a star...' in disney's 'pinocchio'?
+Jiminy cricket
+10
+
+Which character was played by Roger Mooore in 'The Saint'?
+Simon templar
+10
+
+Which character was portrayed by meryl streep in the film out of africa?
+Karen blixen
+10
+
+Which character was portrayed by robert redford in the film out of africa?
+Dennis finch hatton
+10
+
+Which characters in the bible had no uncles,aunts and only one set of grandparents?
+Cain and abel
+10
+
+Which charismatic but controversial European never won Wimbledon but was the first ATP number one ranked male tennis player in 1973?
+Ilie nastase
+10
+
+Which Charles dickens novel was brought to the screen by David lean?
+Oliver twist
+10
+
+Which chart song was based upon psalm 137?
+Rivers of babylon
+10
+
+Which chart topper spent his 1985 birthday on a hi jacked TWA aircraft?
+Demis roussos
+10
+
+Which chat show host flirted with Miss Piggy and was floored by Emu?
+Michael parkinson
+10
+
+Which cheese is traditionally put on pizza?
+Mozzarella
+10
+
+Which chemical compound in the body is linked to hardening of the arteries?
+Cholesterol
+10
+
+Which chemical element emits a greenish glow in air, and, unless kept in water, burns of its own accord?
+Phosphorus
+10
+
+Which chemical element has the ancient name Stannum?
+Tin
+10
+
+Which chemical element is named after die Latin word for 'red'?
+Rubidium
+10
+
+Which chemical element is named after the 1959 winner of the Nobel Prize for Physics?
+Laurencium
+10
+
+Which chemical element is named after the Greek word for 'green'?
+Chlorine
+10
+
+Which chemical element takes its name from a German word for goblin?
+Cobalt
+10
+
+Which chemical element, with atomic number 3, is named after the Greek word for 'stone'?
+Lithium
+10
+
+Which chemical element, with atomic number 54, is named after the Greek word for 'stranger'?
+Xenon
+10
+
+Which chess computer made history by beating a grand master by a score of 3.5 to 2.5 in a series of games in 1997?
+Deep blue
+10
+
+Which chess move allows you to move two of your own pieces?
+Castling
+10
+
+Which chess piece can moved as many squares as you like in any direction?
+Queen
+10
+
+Which chess player was beaten by IBM's 'Deep Blue' in 1997?
+Gary kasparov
+10
+
+Which child hero did Anthony Buckeridge create in 1948?
+Jennings
+10
+
+Which children's book authored by Margaret Wise Brown features a little rabbit and a 'quiet old lady whispering hush?
+Goodnight Moon
+10
+
+Which childrens character has a cat called Jess?
+Postman pat
+10
+
+Which childrens classic did johann David wyss write?
+The Swiss family robinson
+10
+
+Which childrens classic was written by Anna Sewell?
+Black beauty
+10
+
+Which childrens stiry takes place in St Petersburg Missouri?
+Tom sawyer
+10
+
+Which childrens TV presenter released records as Bombalurina?
+Timmy mallett
+10
+
+Which childrens tv signature gave the Settlers their only hit?
+Follyfoot
+10
+
+Which childrens' show premiered on T.V., December 27, 1947?
+The Howdy Doody Show
+10
+
+Which chinese leader wrote The little Red Book?
+Mao tse-tung
+10
+
+Which Chinese teacher & philospher's ideas deeply influenced the cultures of Asia?
+Confucious
+10
+
+Which christian feast is celebrated on 15th august?
+Assumption of virgin mary
+10
+
+Which christian feast is celebrated on 1st november?
+All saints
+10
+
+Which christian saint is famous for his love of animals?
+St francis of assisi
+10
+
+Which christmas decoration is said to have been an important symbol at Druid Human sacrifices?
+Mistletoe
+10
+
+Which chubby actress portrayed topanga lawrence on tv's 'boy meets world'?
+Danielle fishel
+10
+
+Which cicada is the noisy one the male or the female?
+Male
+10
+
+Which city 50 miles from the coast is America's eighth busiest port?
+Houston
+10
+
+Which city became the capital of czechoslovakia in 1918?
+Prague
+10
+
+Which city did Crocket and Tubbs spend most of their time in?
+Miami Vice
+10
+
+Which city does Orly airport serve?
+Paris
+10
+
+Which city does the Liffey flow through?
+Dublin
+10
+
+Which city gives its name to the french national anthem?
+Marseilles
+10
+
+Which city has a ram as its emblem?
+Derby
+10
+
+Which city has the famous opera house La Scala?
+Milan
+10
+
+Which city has the highest murder rate, 43 per 100,000?
+Cape town
+10
+
+Which city has the longest metro system?
+London
+10
+
+Which city has the two steepest streets in the usa?
+San francisco
+10
+
+Which city hosted the 1952 winter olympics?
+Oslo
+10
+
+Which city hosted the 1956 summer olympics?
+Melbourne
+10
+
+Which city hosted the 1968 summer olympics?
+Mexico city
+10
+
+Which city hosted the 1988 summer olympics?
+Seoul
+10
+
+Which city hosted the first modern olympics in 1896?
+Athens
+10
+
+Which city hosted the first winter olympics in 1924?
+Chamonix
+10
+
+Which city hosted the olympics in 1920?
+Antwerpen
+10
+
+Which city hosted the second olympics in 1900?
+Paris
+10
+
+Which city hosted the third olympics 1904?
+St louis
+10
+
+Which city houses the hq of the EEC?
+Brussels
+10
+
+Which city in Central Alabama was the first capital of the Confederacy (1861) during the Civil War?
+Montgomery
+10
+
+Which city in Lombardy is the second largest city in Italy?
+Milan
+10
+
+Which city in north-west England was a roman fortress named deva?
+Chester
+10
+
+Which city is a 'player with railroads, and the nation's freight handler'?
+Chicago
+10
+
+Which city is at the west end of lake superior?
+Duluth
+10
+
+Which city is built upon a group of islands?
+Venice
+10
+
+Which city is directly northwest of windsor, ontario?
+Detroit
+10
+
+Which city is dominated by Sugar Loaf mountain?
+Rio de janeiro
+10
+
+Which city is home to Coleman's mustard?
+Norwich
+10
+
+Which city is home to nine of the 10 largest hotels in the world?
+Las vegas
+10
+
+Which city is home to the White City tennis courts?
+Sydney
+10
+
+Which city is on the east coast of Australia?
+Sydney
+10
+
+Which city is served by fornebu airport?
+Oslo
+10
+
+Which city is served by schwekat airport?
+Vienna
+10
+
+Which city is the capital of the Austrian province of Tyrol?
+Innsbruck
+10
+
+Which city is the capital of the Italian region of Tuscany?
+Florence
+10
+
+Which city is the home of New Zealands House of Representatives?
+Wellington
+10
+
+Which city is the home of spider man?
+New york
+10
+
+Which city is the home of the Fiat motor company?
+Turin
+10
+
+Which city is the home of the sundae?
+Two rivers
+10
+
+Which city is the home town of The Beatles?
+Liverpool
+10
+
+Which city is the location for the 1998 commonwealth games?
+Kula lumpur
+10
+
+Which city is the setting for Bizet's Carmen?
+Seville
+10
+
+Which city is the title of Mozart's 36th Symphony?
+Prague
+10
+
+Which city is, in terms of population, the second largest in Mexico?
+Guadalajara
+10
+
+Which city lies at the eastern terminus of the Trans-Siberian railway?
+Vladivostock
+10
+
+Which city sees Hyman Roths birthday celebrations in The Godfather Part II?
+Havana
+10
+
+Which city was Axel Foley a cop in?
+Detroit
+10
+
+Which city was devastated first by an earthquake and then by a fire in 1906?
+San francisco
+10
+
+Which city was faced with a $1 billion debt after staging the Olympic Games?
+Montreal
+10
+
+Which city was first known as stalingrad and then leningrad?
+St petersburg
+10
+
+Which city was first the capital of Wessex, then England?
+Winchester
+10
+
+Which city was formerly two individual cities, but merged in 1873?
+Budapest
+10
+
+Which city was linked to New York by Alexander Graham Bells first cross country telephone call?
+Chicago
+10
+
+Which city was the capital of British India until 1912?
+Calcutta
+10
+
+Which city was the capital of Scotland from the 12 century until 1452?
+Perth
+10
+
+Which city was the first in the world to use house numbers in the 18th-century?
+London
+10
+
+Which city was the first to be surrounded by a wall?
+Jericho
+10
+
+Which city was the first with one million inhabitants?
+London
+10
+
+Which city was the location for the 1994 winter olympics?
+Lillehammer, norway
+10
+
+Which city was the seat of the Holy Roman Emperors in the 17th century?
+Vienna
+10
+
+Which city was the setting for the film 'dirty Harry'?
+San francisco
+10
+
+Which city would you visit to see raphael's madonna with the golden finch?
+Nswer florence
+10
+
+Which city, capital of the Assyrian Empire, was destroyed by fire in 612 B.C?
+Nineveh
+10
+
+Which city's airport is the home base for Cathay Pacific Airlines?
+Hong kong
+10
+
+Which citys olympics were the setting for the film Dont walk run?
+Tokyos
+10
+
+Which civil war was fought in the 1930's?
+Spanish
+10
+
+Which civilisation instigated the 7 day week?
+Roman civilisation
+10
+
+Which clash lp cover shows them standing on a railway track?
+Combat rock
+10
+
+Which class of racing yacht has the same name as a Shakespeare play?
+Tempest
+10
+
+Which class of racing yacht has the same name as a Wagner opera?
+Flying dutchman
+10
+
+which classic 60s song begins: 'dirty old river, must you keep rolling, flowing into the night'?
+Waterloo sunset
+10
+
+Which classic British car company of the 1940s and 1950s now produces armoured vehicles for the British military?
+Alvis
+10
+
+Which classic dish contains strips of steak cooked in a wine sauce with sour cream?
+Stroganoff
+10
+
+Which classic film finally had a sequel made 46 years after its release?
+The wizard of oz
+10
+
+Which classic film of 1948 was advertised as, 'Greed, Gold and Gunplay on a Mexican Mountain of Malice'?
+Treasure of the sierra madre
+10
+
+Which classic french dish contains chicken, bacon and red wine?
+Coq au vin
+10
+
+Which classic serial starred Jeremy Irons & Anthony Andrews?
+Brideshead revisited
+10
+
+Which classical composer was nicknamed 'The Red Priest'?
+Vivaldi
+10
+
+Which club did Eusebio play for throughout the 1960s?
+Benfica
+10
+
+Which code helps children to cross the road safely?
+Green cross code
+10
+
+Which coffee company has the advertising slogan Drink it and sleep?
+Sanka
+10
+
+Which collection of stories was told by Scheherazade?
+The thousand and one nights
+10
+
+Which colour goes before angel & bayou on Roy Orbison's singles?
+Blue
+10
+
+Which colour has been potted in snooker if the break goes from 23 points to 28?
+Blue
+10
+
+Which colour is by far the favorite ink color in dabbers used by bingo players?
+Purple
+10
+
+Which colour moves first in draughts?
+Black
+10
+
+Which colourless, odourless light gas is used to lift airships?
+Helium
+10
+
+Which colourless, odourless, light gas lifts airships?
+Helium
+10
+
+Which comedian created the character of maude frickert?
+Jonathan winters
+10
+
+Which comedian had a number one single about a milkman?
+Benny hill
+10
+
+Which comedian rowed for the defeated Cambridge crew in the 1980 university boat race?
+Hugh laurie
+10
+
+Which comedian said 'If they liked you, they didn't applaud, they just let you live'?
+Bob hope
+10
+
+Which comedian was Sherlock Holmes to Arthur Lowes watson?
+John cleese
+10
+
+Which comedian, born in 1893, was 'The man who found the Lost Chord'?
+Jimmy durante
+10
+
+Which comedian's catch phrase was I won't take my coat oft, I'm not stopping?
+Ken platt
+10
+
+Which comedians catchphrase was Hello Playmates?
+Arthur askey
+10
+
+Which comedians revived randall & hopkirk(deceased)?
+Reeves and mortimer
+10
+
+Which comedienne's alternative persona is 'Mrs. Merton'?
+Caroline aherne
+10
+
+Which comedy duo did the famous, 'Who's on first' routine?
+Abbott and Costello
+10
+
+Which comedy duo first performed together in 1926?
+Laurel and hardy
+10
+
+Which comedy duo had the 1991 hit the stonk?
+Hale & pace
+10
+
+Which comedy duo lived in oil drum lane?
+Steptoe and son
+10
+
+Which comes first in a butteryfly's life being a caterpillar or being a pupa?
+Caterpillar
+10
+
+Which comet did the space probe Giotto whizz past in 1986?
+Halleys comet
+10
+
+Which comet has an orbital period of 2900 years?
+Humason
+10
+
+Which comet has an orbital period of 6.7 years?
+Biela's comet
+10
+
+Which comet struck Jupiter in July 1994?
+Shoemaker-levy
+10
+
+Which comic actor who died in 1977 entered a competition to find his look alike, anonymously, and only came third?
+Charlie chaplin
+10
+
+Which comic book hero, with an alter ego of Steve Rogers, did Joe Simon and Jack Kirby create?
+Captain America
+10
+
+Which comic is drawn by sam keith?
+The maxx
+10
+
+Which comic opera by gilbert and sullivan had a Japanese theme?
+The mikado
+10
+
+Which comic strip character's owner is named Jon Arbuckle?
+Garfield
+10
+
+Which comic strip did chic young create?
+Blondie
+10
+
+Which comic strip did sam keith draw?
+The maxx
+10
+
+Which common animal looks like a long-legged rabbit?
+Hare
+10
+
+Which common french phrase used to describe a road closed at one end translates to 'Bottom of the Bag'?
+Cul de sac
+10
+
+Which common household gadget uses the same frequencies as radar?
+Microwave oven
+10
+
+Which common object gets its name from the latin for Little tail?
+Pencil
+10
+
+Which common substance is obtained by boiling down horns, hides and hoofs?
+Glue
+10
+
+Which common word has 5 consecutive vowels?
+Queueing
+10
+
+Which community has the highest level of rh-negative blood in the world?
+The basque
+10
+
+Which company built the first spiral escalator in the 1980's?
+Mitsubishi
+10
+
+Which company developed 'instant' coffee in the 1930s?
+Nestle
+10
+
+Which company has a logo officially called 'The Swoosh'?
+Nike
+10
+
+Which company introduced Cranberry juice cocktail in 1930?
+Ocean Spray
+10
+
+Which company is the largest buyer of sugar in the world?
+Coca-cola
+10
+
+Which company is the shirt sponsor for Leicester football club?
+Walker's crisps
+10
+
+Which company launched the first clone of an IBM personal computer in 1982?
+Compaq
+10
+
+Which company made magic carpet?
+Bullfrog
+10
+
+Which company made the command & conquer series?
+Westwood
+10
+
+Which company made the Cross Your Heart bra?
+Playtex
+10
+
+Which company made worms?
+Team17
+10
+
+Which company makes Jelly Tots?
+Nestle
+10
+
+Which company makes Quality Street chocolates?
+Nestle
+10
+
+Which company makes Rolos?
+Nestle
+10
+
+Which company makes Roses chocolates?
+Cadbury
+10
+
+Which company makes smarties?
+Nestle
+10
+
+Which company markets the perfume 'Allure'?
+Chanel
+10
+
+Which company markets the perfume 'L'Air du Temps'?
+Nina ricci
+10
+
+Which company of architects designed the Millennium Dome?
+Richard rogers partnership
+10
+
+Which company owns mtv and aol?
+Viacom
+10
+
+Which company patented the pneumatic tyre?
+Michelin
+10
+
+Which company pioneered the first trans-Pacific passenger flights?
+Pan American
+10
+
+Which company produced the acclaimed fifa computer game series?
+Electronic arts
+10
+
+Which company produced the first nylon?
+Dupont
+10
+
+Which company produced the syndicated mouse factory series?
+Walt disney
+10
+
+Which company produced the world war two aeroplane, the 'lightning'?
+Lockheed
+10
+
+Which company produces the sf-4900c digital diary?
+Casio
+10
+
+Which company produces the software cubase?
+Steinberg
+10
+
+Which company released it's first personal computer on august 12, 1981?
+Ibm
+10
+
+Which company rented out the vehicles that were used in the oklahoma city and world trade centre bombings?
+Ryder trucks
+10
+
+Which company sponsors rugby leagues super league?
+Tetley
+10
+
+Which company was ordered to perform safety checks on 1755 of its jets in 1989?
+Boeing
+10
+
+Which company, based at Westgate Brewery, Bury St. Edmonds, produces Abbot Ale?
+Greene king
+10
+
+Which company, during the 1984 Super Bowl, aired what is considered one of the best commercials in TV history?
+Apple
+10
+
+Which company, formed by Cecil Rhodes in 1888, was an amalgamation of several diamond companies and is still going strong?
+De beers
+10
+
+Which competition was organised by Mecca Ltd. to coincide with the 1951 Festival of Britain?
+Miss world
+10
+
+Which compny makes the perfume 'Coco'?
+Chanel
+10
+
+Which composer and pianist also became prime minister of Poland?
+Paderewski
+10
+
+Which composer and pianist became Prime Minister of Poland in 1919?
+Paderewski
+10
+
+Which composer dedicated his first symphony to Harriet Smithson and later married her?
+Berlioz
+10
+
+Which composer is especially associated with good food?
+Rossini
+10
+
+Which composer originally dedicated his third symphony to Napoleon, but changed his mind when his hero declared himself Emperor?
+Beethoven
+10
+
+Which composer was given the soubriquet' IL PRETE ROSSO I?
+Vivaldi
+10
+
+Which composer was so anti semitic that he would only conduct Medelssohns music if he was wearing gloves?
+Wagner
+10
+
+Which composer wrote `The Damnation Of Faust`?
+Berlioz
+10
+
+Which composer wrote a quintet to a fish?
+Franz schubert
+10
+
+Which composer wrote a work for instrumentalists and short wave radios?
+Karlheinz stockhausen
+10
+
+Which composer, born in Russia in 1882, became a French citizen in 1934, and died in New York in 1971?
+Stravinsky
+10
+
+Which composer, born in Russia in 1882, became a french citizen in 1934?
+Stravinsky
+10
+
+Which composer's second symphony was called the Resurrection, his tenth was unfinished?
+Mahler
+10
+
+Which compound comes from the nux vomica tree?
+Strychnine
+10
+
+Which compound forms about 70% of the human body?
+Water
+10
+
+Which computer firm made a model called Amiga?
+Commodore
+10
+
+Which computer firm made a model numbered ZX80?
+Sinclair
+10
+
+Which computer game gave the Ambassadors of Funk featuring MC Mario a 1992 hit?
+Supermarioland
+10
+
+Which computer manufacturer in 1984 advertised their new computer during the Superbowl?
+Apple
+10
+
+Which computer whizz developed the C5 car?
+Clive Sinclair
+10
+
+Which computer whizz kid developed the C5 car?
+Sir clive sinclair
+10
+
+Which computerized diagnostic technique is godfrey hounsfield credited with inventing?
+Cat scan
+10
+
+Which concert hall is now the home of the Halle orchestra?
+Bridgewater hall
+10
+
+Which condition often involving muscle rigidity or overactivity is the name of a pop group?
+Catatonia
+10
+
+Which conqueror led his army from Greece to western India?
+Alexander the great
+10
+
+Which conqueror started with a small tribe at the age of 13 and had conquered empires from the Black Sea to the Pacific by the time he died in 1227?
+Genghiz khan
+10
+
+Which Conservative MP wrote the recent novel 'The Clematis Tree?
+Ann widdecombe
+10
+
+Which constellation contains the stars castor and pollux?
+Gemini
+10
+
+Which constellation contains the the red super-giant star betelguese?
+Orion
+10
+
+Which constellation is known as the bull?
+Taurus
+10
+
+Which constellation is the water-bearer?
+Aquarius
+10
+
+Which consumer affairs programme had Esther Rantzen and John Pitman as assistants?
+The braden beat
+10
+
+Which continent has the fewest species of flowering plants?
+Antarctica
+10
+
+Which continent has the highest mountain outside Asia?
+South America
+10
+
+Which continent has the most countries?
+Africa
+10
+
+Which continent has the shortest coastline of all the continents?
+Africa
+10
+
+Which continent stretches further Aouth Africa or South America?
+South America
+10
+
+Which continent was explored by frenchman Jacques Cartier in the 1530s?
+North America
+10
+
+Which continent was named after the explorer Amerigo Vespucci?
+America
+10
+
+Which continent was the original home to the humble potato?
+South America
+10
+
+Which continent's highest mountain is made up of three extinct volcanoes, Mawensi, Shira, and Kibo, the youngest and highest?
+Africa
+10
+
+Which convenience food did Joel Cheek develop?
+Instant coffee
+10
+
+Which cookery dish is named after a Napoleonic battle?
+Chicken marengo
+10
+
+Which Cornishman invented the first steam locomotive in 1803?
+Richard Trevithick
+10
+
+Which coronation street character aquired a new pair of glasses in 2001?
+Deirdre rachid
+10
+
+Which Coronation Street character was played by Jean Alexander?
+Hilda ogden
+10
+
+Which cosmetics giant began in 1886 as the California Perfume company?
+Avon
+10
+
+Which countries occupy the iberian peninsula?
+Spain and Portugal
+10
+
+Which countries occupy the scandinavian peninsula?
+Norway and Sweden
+10
+
+Which countries were joined politically in 1707?
+England and Scotland
+10
+
+Which country (as of 2000) has the lowest crime rate in the world?
+Togo
+10
+
+Which country (capital Kiev) lies just south of Belarus?
+Ukraine
+10
+
+Which country (capital Luanda) lies just south of Zaire?
+Angola
+10
+
+Which country adopted the world's first 'plastic currency' in 1988?
+Australia
+10
+
+Which country and western singer is known as the 'okie from muskogee'?
+Merle
+10
+
+Which country are the world conker champions?
+Great britain
+10
+
+Which country banned e.t dolls because there is a law against selling dolls without human faces?
+France
+10
+
+Which country became the second to issue postage stamps in 1843?
+Brazil
+10
+
+Which country boasts San Marcos University,the oldest active university in the Americas?
+Peru
+10
+
+Which country boasts the largest area, Australia, Brazil or India?
+Brazil
+10
+
+Which country borders all of Lethoso?
+South Africa
+10
+
+Which country borders China,South Korea and the Soviet Union?
+North korea
+10
+
+Which country can be reached by bridge from Singapore?
+Malaysia
+10
+
+Which country cancelled national beauty contests 1992, claiming they were degrading?
+Canada
+10
+
+Which country completley surrounds san merino?
+Italy
+10
+
+Which country completly enclosed Berlin?
+East Germany
+10
+
+Which country contains 1/4 of the worlds cattle population?
+India
+10
+
+Which country controlled angola prior to its independence?
+Portugal
+10
+
+Which country covers the largest area, iran or iraq?
+Iran
+10
+
+Which country developed the TGV high speed train?
+France
+10
+
+Which country did Abba win the Eurovision Song Contest for in 1974?
+Sweden
+10
+
+Which country did boxer Lennox Lewis represent in the 1988 Olympics?
+Canada
+10
+
+Which country did Britain and her allies fight against in the Crimean War?
+Russia
+10
+
+Which country did Burke and wills explore?
+Australia
+10
+
+Which country did Chiang Kai-shek found in 1949?
+Taiwan
+10
+
+Which country did Konrad Adenauer lead from 1949 to 1963?
+West Germany
+10
+
+Which country did mussolini invade in 1935?
+Ethiopia
+10
+
+Which country did the allies invade in 'Operation Avalanche'?
+Italy
+10
+
+Which country did the u.s buy from Russia for two cents per acre?
+Alaska
+10
+
+Which country do the pop group Black Box come from?
+Italy
+10
+
+Which country does Bryan Adams come from?
+Canada
+10
+
+Which country does Luxembourg share a border with?
+Belgium
+10
+
+Which country does mariah carey originate from?
+Usa
+10
+
+Which country does the lion represent on the queen's coat of arms?
+England
+10
+
+Which country fought against Japan in the Battle of the Coral Sea?
+USA
+10
+
+Which country had a foreign minister called Lee Bum Suk?
+South korea
+10
+
+Which country had a parliament called the Duma?
+Russia
+10
+
+Which country had Asias fastest growing economy during the 70s?
+South korea
+10
+
+Which country had four kings called malcolm?
+Scotland
+10
+
+Which country had the first steam railway?
+Britain
+10
+
+Which country had the worlds first woman prime minister?
+Ceylon
+10
+
+Which country has a flag depicting a cedar tree in the centre?
+Lebanon
+10
+
+Which country has a map on it's flag?
+Cyprus
+10
+
+Which country has a Mount Bruce?
+Australia
+10
+
+Which country has a national flag whose design symbolises the country's geographical position on the globe?
+Nauru
+10
+
+Which country has a single cedar tree on its flag?
+Lebanon
+10
+
+Which country has international registration letter P?
+Portugal
+10
+
+Which country has never won the World Cup?
+Holland
+10
+
+Which country has over 135,000 amway distributors?
+Australia
+10
+
+Which country has over 40% of its land below sea level?
+Netherlands
+10
+
+Which country has regions named Cyreniaca, Tripolitania and Fezzan?
+Libya
+10
+
+Which country has Robert Mugabe as its Prime Minister?
+Zimbabwe
+10
+
+Which country has the e-mail address '.ie'?
+Republic of Ireland
+10
+
+Which country has the largest army in the world?
+China
+10
+
+Which country has the longest coastline?
+Canada
+10
+
+Which country has the most daily newspapers?
+India
+10
+
+Which country has the most southerly city?
+Chile
+10
+
+Which country has the most telephones per 100 inhabitants?
+Sweden
+10
+
+Which country has the most world championship wins for angling?
+France
+10
+
+Which country has the worlds highest divorce rate?
+America
+10
+
+Which country has virtually the same size population as uk?
+France
+10
+
+Which country has won the Eurovision Song Contest most times?
+Ireland
+10
+
+Which country has won the most eurovision contests?
+Ireland
+10
+
+Which country has won the most Nobel Prizes for Literature?
+France
+10
+
+Which country has won the most Nobel Prizes for Peace?
+U s a
+10
+
+Which country has won the most olympic gold medals at 10,000 metres?
+Finland
+10
+
+Which country has won the most tug of war world championships?
+England
+10
+
+Which country headed the ottoman empire?
+Turkey
+10
+
+Which country hosted the Battle of Waterloo?
+Belgium
+10
+
+Which country improbably beat England in the 1950 World Cup - at Belo Horizonte in Brazil?
+U s a
+10
+
+Which country in Africa has the largest area?
+Sudan
+10
+
+Which country in southern african was previously known as bechuanaland?
+Botswana
+10
+
+Which country inspired the English word serendipity,meaning unexpected delight?
+Sri lanka
+10
+
+Which country introduced the first compulsory primary education?
+Germany
+10
+
+Which country invaded The Falkland Islands in the 1980's?
+Argentina
+10
+
+Which country is 2790 miles long but only 250 miles wide at its widest point?
+Chile
+10
+
+Which country is also the world's largest archipelago?
+Indonesia
+10
+
+Which country is called Misr by its natives?
+Egypt
+10
+
+Which country is completly surrounded by Italy?
+San marino
+10
+
+Which country is credited with the discovery of the paper making process?
+China
+10
+
+Which country is denominated by the initials za?
+South africa
+10
+
+Which country is divided at the 38th parallel?
+Korea
+10
+
+Which country is home to flamenco dancing?
+Spain
+10
+
+Which country is indicated by the car identification letters ra?
+Argentina
+10
+
+Which country is indicated by the car identification letters wal?
+Sierra leone
+10
+
+Which country is known as the Hashemite Kingdom?
+Jordan
+10
+
+Which country is known as the land of the 1000lakes?
+Finland
+10
+
+Which country is made up of over 800 islands including viti levu?
+Fiji
+10
+
+Which country is mount kilimanjaro in?
+Tanzania
+10
+
+Which country is nearest to the island of Jersey?
+France
+10
+
+Which country is part of ANZUS security alliance along with New Zealand & the USA?
+Australia
+10
+
+Which country is ruled by two Captains Regent?
+San marino
+10
+
+Which country is the biggest consumer of wine?
+France
+10
+
+Which country is the Dalai Lama's palace in?
+Tibet
+10
+
+Which country is the largest in Africa?
+Sudan
+10
+
+Which country is the largest producer of cheese?
+America
+10
+
+Which country is the only one to have won the Rugby Union World Cup twice?
+Australia
+10
+
+Which country is the only one which doesnt print its name on its postage stamps?
+Britain
+10
+
+Which country is the setting for the ballet Giselle?
+Germany
+10
+
+Which country is the world top fishing nation in tonnage?
+China
+10
+
+Which country is widely acknowledged to have the largest Jewish population?
+United states
+10
+
+Which country joined the Commonwealth in 1995 despite never having been a British possession?
+Mozambique
+10
+
+Which country joined WWII as an ally of Nazi Germany?
+Bulgaria
+10
+
+Which country left the Commonwealth in 1949 and has not rejoined?
+Eire
+10
+
+Which country left the Commonwealth in 1987 and has not rejoined?
+Fiji
+10
+
+Which country lies between Tunisia and Egypt?
+Libya
+10
+
+Which country makes panama hats?
+Ecuador
+10
+
+Which country music legend was known as 'the drifting cowboy'?
+Hank williams
+10
+
+Which country never issues a house address number thirteen?
+France
+10
+
+Which country occupies the horn of africa?
+Somalia
+10
+
+Which country occupies the jutland peninsula?
+Denmark
+10
+
+Which country occupies the yucatan peninsula?
+Mexico
+10
+
+Which country only introduced telephones in 1983?
+Bhutan
+10
+
+Which country originated the Carpetbag Steak?
+Australia
+10
+
+Which country other than Scandinavia, American coastline, Iceland and Greenland has fjords?
+New zealand
+10
+
+Which country owns Macdonald Island?
+Australia
+10
+
+Which country owns the island of Corsica?
+France
+10
+
+Which country owns the Suez Canal?
+Egypt
+10
+
+Which country placed a ban on the playing of all video and computer games?
+Greece
+10
+
+Which country produced almost all of the worlds diamonds until the 18th century?
+India
+10
+
+Which country produces Dao wine?
+Portugal
+10
+
+Which country produces Franconia wine?
+Germany
+10
+
+Which country produces most of the worlds gold?
+South africa
+10
+
+Which country recently became world extreme ironing champions?
+Britain
+10
+
+Which country refers to the native people as 'first nation's people'?
+Canada
+10
+
+Which country refused to join the EEC in 1973?
+Norway
+10
+
+Which country rejected joining the euro currency in a referendum?
+Denmark
+10
+
+Which country rejected membership of the E.E.C. in 1972?
+Norway
+10
+
+Which country Rugby team dances the Haka before each game?
+New zealands
+10
+
+Which country ruled Papua New Guinea until its independence in 1975?
+Australia
+10
+
+Which country saw the Mau Mau uprising?
+Kenya
+10
+
+Which country singer 'walked the line'?
+Hank williams
+10
+
+Which country singer made an appearance in the film true grit?
+Glen campbell
+10
+
+Which country singer wrote the song 'Your Cheatin' Heart?
+Hank williams
+10
+
+Which country suffered bomb attacks by ETA?
+Spain
+10
+
+Which country supplies almost 80% of the worlds jute?
+Bangladesh
+10
+
+Which country used to be referred to by the initials ddr?
+East Germany
+10
+
+Which country used Zero fighter planes during World War II?
+Japan
+10
+
+Which country uses the 'yen' for currency?
+Japan
+10
+
+Which country uses the international vehicle registration letters et?
+Egypt
+10
+
+Which country uses the international vehicle registration letters ma?
+Morocco
+10
+
+Which country wants britain to return the koh-i-nor diamond?
+India
+10
+
+Which country was crossed for the first time by Burke & Wills?
+Australia
+10
+
+Which country was founded by Muslim leader Mohammed Ali Jinnah?
+Pakistan
+10
+
+Which country was invaded by Soviet troops in August 1968?
+Czechoslovakia
+10
+
+Which country was invaded by Soviet troops in December 1979?
+Afghanistan
+10
+
+Which country was known as 'the Cockpit of Europe'?
+Belgium
+10
+
+Which country was known to explorers as the Roof of the World?
+Tibet
+10
+
+Which country was led by Kemal Atatturk?
+Turkey
+10
+
+Which country was named after the sea people known as Peleset or Philistines?
+Palestine
+10
+
+Which country was once ruled by a Mikado?
+Japan
+10
+
+Which country was once ruled by Tsars?
+Russia
+10
+
+Which country was originally known as terra australis?
+Australia
+10
+
+Which country was ruled by female monarchs throughout the 20th century?
+Netherlands
+10
+
+Which country was the first to elect a woman as head of state?
+Iceland
+10
+
+Which country was the first to give women the vote?
+New zealand
+10
+
+Which country was the first to legalise abortion?
+Iceland
+10
+
+Which country was the first to win the Football World Cup 3 times?
+Brazil
+10
+
+Which country was the setting for the flame trees of thika?
+Kenya
+10
+
+Which country were Nubia and Kush a part of until they gained their independence in 1085 bc?
+Egypt
+10
+
+Which country were the first edible Easter Bunnies made?
+Germany
+10
+
+Which country won the 2002 Football World Cup?
+Brazil
+10
+
+Which country won the first Cricket World Cup?
+West indies
+10
+
+Which country won the gold medal for football at the 1996 Atlanta Olympics?
+Nigeria
+10
+
+Which country, per capita, uses the most umbrellas?
+England
+10
+
+Which country, the most populous in Africa, was suspended from the Commonwealth in 1995 for anti-democratic behaviour?
+Nigeria
+10
+
+Which country's alps surround Lake Lucerne?
+Switzerland
+10
+
+Which country's borders was established in 1919 by the 'Treaty of St.Germain'?
+Austria
+10
+
+Which country's coastline did Matthew Flinders explore in about 1800?
+Australia
+10
+
+Which country's coins depict a harp on one side and animals on the other?
+Ireland
+10
+
+Which country's currency is the forint?
+Hungary
+10
+
+Which country's currency is the markka?
+Finland
+10
+
+Which country's entire population was condemned to death by the Spanish Inquisition?
+Netherlands
+10
+
+Which country's football team won the 1978 World cup?
+Argentina
+10
+
+Which country's highest mountain is named after a Polish patriot who never went there?
+Australia
+10
+
+Which country's kings used to be crowned on tara hill?
+Ireland
+10
+
+Which country's name means the savior?
+El salvador
+10
+
+Which country's national flag consists of a white crescent and star, offset left of centre, on a red field?
+Turkey
+10
+
+Which country's national flag consists of five-pointed yellow stars, one large and four smaller, in the top left corner on a red field?
+China
+10
+
+Which country's national flag consists only of a green field?
+Libya
+10
+
+Which country's national flag has a bird and a snake depicted in combat?
+Mexico
+10
+
+Which country's national flag has a tree depicted on it?
+Lebanon
+10
+
+Which country's national symbol is the harp?
+Ireland
+10
+
+Which country's ships fly under the Union Jack?
+Britain
+10
+
+Which country's troops sustained the greatest number of deaths in WWll?
+Russia
+10
+
+Which countrys army was led by Gustavus Adolphus in the 1600s?
+Sweden
+10
+
+Which countrys curency is the real?
+Brazil
+10
+
+Which countrys exceedingly large king brought his own chair to Prince Charles' wedding?
+Tonga
+10
+
+Which countrys flag did ferdinand magellan fly when he went on his world cruise?
+Spain
+10
+
+Which countrys football teams play in the bundesliga?
+Germany
+10
+
+Which countrys national anthem is Inno di mameli?
+Italy
+10
+
+Which countrys national flower is the wattle?
+Australia
+10
+
+Which countrys soldiers might wear a stiff skirt called a fustanella?
+Greece
+10
+
+Which county are you in if you are On Ilkley Moor bah't 'at?
+North yorkshire
+10
+
+Which county has an 88 mile footpath called Robin Hood Way?
+Nottinghamshire
+10
+
+Which county has two little londons?
+Lincolnshire
+10
+
+Which county includes most of the Cotswold Range?
+Gloucestershire
+10
+
+Which county lies between the north sea and greater london?
+Essex
+10
+
+Which county would you head for if the Prime Minister invited you to the officail country seat?
+Buckinghamshire
+10
+
+Which countys villages still follow the old custom of well dressing?
+Derbyshire
+10
+
+Which couple were exiled from the philippines in 1986?
+Ferdinand and imelda marcos
+10
+
+Which course did Homer fail in high school?
+Remedial Science 1A
+10
+
+Which cow disease was first identified in Britian in 1986 and by 1996 had claimed 158,000 cattle?
+Bovine spongiform encephalopathy
+10
+
+Which creature can lift 50 times its own body weight?
+An ant
+10
+
+Which creature did Oliver Reed have tattooed on his genitals?
+Eagle
+10
+
+Which creature do Eskimos (or Inuit) call a nanook?
+Polar bear
+10
+
+Which creature does not have a brain (no, vinyljunkie is not an acceptable answer :o)?
+A starfish
+10
+
+Which creature taught dr. doolittle how to talk to the animals?
+His parrot
+10
+
+Which creature was half horse, half man?
+Centaur
+10
+
+Which creatures transmit Bubonic Plague?
+Rat fleas
+10
+
+Which cricket ground is the headquarters of the MCC?
+Lords
+10
+
+Which cricketer achieved a hat-trick for England in January 1999?
+Darren gough
+10
+
+Which cricketer achieved a hat-trick in successive Test Matches in March 1999?
+Wasim akram
+10
+
+Which cricketer captained England and also won honours in fencing?
+Rachel heyhoe-flint
+10
+
+Which cricketer has played more tests than any other?
+Allan border
+10
+
+Which cricketer is known as the 'Rawalpindi Express'?
+Shoaib akhtar
+10
+
+Which cricketer played in 52 test matches and averaged 99.94 runs?
+Sir don bradman
+10
+
+Which cricketer was dropped for 2 months for admitting hed smoked dope when he was a student?
+Ian botham
+10
+
+Which cricketer won his England cap before his county?
+Brian close
+10
+
+Which crime fiction writer's titles have a numerical theme. e.g. 1 for the money, 2 for the Dough?
+Janet evanovich
+10
+
+Which crime fiction writer's titles have an alphabetical theme. e.g A is for Alibi and E is for evidence?
+Sue grafton
+10
+
+Which crime novelist has a hero called 'Mike Hammer'?
+Mickey spillane
+10
+
+Which crosby, stills, and nash's debut album included a song about a girl and the colour of her eyes?
+Sweet judy blue eyes
+10
+
+Which cross was the symbolof the Free French during World War 2?
+Cross of lorraine
+10
+
+Which crowded house hit begins 'walking ?round the room singing ?stormy weather' at 57 mount pleasant street'?
+Weather with you
+10
+
+Which crown is placed on an English monarchs head at the moment of coronation?
+St edwards crown
+10
+
+Which Cuban heavyweight won his third consecutive gold medal in Moscow in 1980?
+Teofilo stevenson
+10
+
+Which culinary term means to be cooked with onion?
+Lyonnaise
+10
+
+Which current British rock/pop star was at one time a teacher?
+Sting
+10
+
+Which czech dramatist became the president of czechoslovakia in 1989?
+Vaclav havel
+10
+
+Which Czech village seas destroyed by the Germans in retaliation, following the assassination of Reinhard Heydrich in World War Two?
+Lidice
+10
+
+Which dam in the USA was known as the Boulder Dam between 1933 and 1947?
+Hoover dam
+10
+
+Which dance in 2/4 time originated in Bohemia in the early 19th century?
+Polka
+10
+
+Which dance in treble time originated as a peasant dance in France and was adopted by the French court in the 18th century?
+Minuet
+10
+
+Which dance is musically associated with Matilda?
+Waltz
+10
+
+Which dance, which became popular in the music halls of Paris about 1840, has a named derived from a French word meaning 'scandal'?
+Cancan
+10
+
+Which dancer found guilty of espionage was shot dead during WWll?
+Mata hari
+10
+
+Which Daniel Defoe character was born in Newgate Prison?
+Moll flanders
+10
+
+Which Danish author wrote The Snow Queen?
+Hans Christian Andersen
+10
+
+Which Danish philosopher, wrote The Concept of Dread and later had his views used as the basis for existentialism?
+Soren kierkegaard
+10
+
+Which danish philosopher, wrote the concept of dread?
+Soren kierkegaard
+10
+
+Which Danish philosopher's name translates as 'churchyard'?
+Kierkegaard
+10
+
+Which Danish word means 'play well'?
+Lego
+10
+
+Which date is inscribed on the book held by the statue of liberty?
+July 4
+10
+
+Which day is the first day of Holy Week in the Christian calendar?
+Palm sunday
+10
+
+Which day of the week is named after the moon?
+Monday
+10
+
+Which day of the week links an Easybeats single, a killer called Jason and Robinson Crusoe?
+Friday
+10
+
+Which day of the week saw the official start of wwii?
+Friday
+10
+
+Which day of the year used to be known as St Distaffs Day?
+7th january
+10
+
+Which deadly disease seems to strike through commercial airconditioners?
+Legionnaires disease
+10
+
+Which denomination bank note did the Bank of England introduce in 1752 and withdraw in1945?
+1000
+10
+
+Which department is the itu in a hospital?
+Intensive therapy unit
+10
+
+Which Derbyshire born aeronautical engineer designed the R100 airship,the bouncing bomb and the first swing wing aircraft?
+Sir barnes neville wallis
+10
+
+Which desert is in south-east California?
+Mojave desert
+10
+
+Which designer markets clothes under the 'Emporio' label?
+Giorgio armani
+10
+
+Which dessert is named after a ballerina?
+Pavlova
+10
+
+Which detective had an assistant called Tinker?
+Sexton blake
+10
+
+Which detective novelist caused a sensation by disappearing for ten days in 1926?
+Agatha christie
+10
+
+Which detective played the violin and and took cocaine for relaxation?
+Sherlock holmes
+10
+
+Which detective story writer created the character tommy beresford?
+Agatha christie
+10
+
+Which detective was played by Jack Webb in Dragnet?
+Sgt joe friday
+10
+
+Which detective was played by Robert Stack on TV and by Kevin Costner in a film?
+Eliott ness
+10
+
+Which device did thomas brown invent in 1810?
+Mailbox
+10
+
+Which diamond is named after the persian for 'mountain of light'?
+Koh-i-noor
+10
+
+Which Dickens character teaches Oliver Twist to pick pockets?
+The artful dodger
+10
+
+Which dickens character was 'ever so umble'?
+Uriah heep
+10
+
+Which Dickens work featured Mr & Mrs Micawber?
+David copperfield
+10
+
+Which Dickensian character had a nurse called Clara Peggotty?
+David copperfield
+10
+
+Which diminutive Hollywood villain was born Laszlo Loewenstein in 1904?
+Peter lorre
+10
+
+Which dinosaur ahd a huge sharp claw on its foot?
+Veloceraptor
+10
+
+Which dinosaur is the longest ever recorded?
+Diplodocus
+10
+
+Which dire straits song tells of 'the monster mash,and most of the taxis,and the whores are only taking calls for cash'?
+Your latest trick
+10
+
+Which direction are greyhound races run in, clockwise or anticlockwise?
+Anticlockwise
+10
+
+Which direction did Charles dickens have to face in order to sleep?
+North
+10
+
+Which direction does a merry-go-round turn?
+Counterclockwise
+10
+
+Which director/producer started his career as a student with the film THX-1138 which he later reworked for his feature-directing debut?
+George lucas
+10
+
+Which disaster movie included the song We may never love this way again?
+The towering inferno
+10
+
+Which disease is now known as Hansen's disease?
+Leprosy
+10
+
+Which disease is tested for using the 'schick test'?
+Diphtheria
+10
+
+Which disease is transmitted to humans by the mosquito?
+Yellow fever
+10
+
+Which disease was known as the Kings Evil?
+Scrofula
+10
+
+Which Disney character became an agent for Timothy Mouse?
+Dumbo the elephant
+10
+
+Which Disney film features the ballad 'Can You Feel The Love Tonight?
+The lion king
+10
+
+Which Disney film hit the box office in 1942?
+Bambi
+10
+
+Which disney film was the first to have a completely human cast?
+Song of the south
+10
+
+Which Disney movie includes the song The Bear Necessities?
+The jungle book
+10
+
+Which Disney movie was based on a novel by French writer Victor Hugo?
+The Hunchback of Notre Dame
+10
+
+Which dj was a regular mr fix it?
+Jimmy saville
+10
+
+Which do you usually become aware of first thunder or lightning?
+Lightning
+10
+
+Which doctor loved Lara Antipova?
+Dr zhivago
+10
+
+Which dog name is a slang term for a detective?
+Bloodhound
+10
+
+Which dog was originally bred by a tax collector in Germany for protection on his rounds?
+Doberman
+10
+
+Which dog was originally bred to hunt badgers?
+Dachshund
+10
+
+Which dormant volcano is the highest peak in Japan?
+Fujiyama
+10
+
+Which dress designer was shot dead in the summer of 1997?
+Gianni versace
+10
+
+Which drink beloved of the 19th century Parisians was flavoured with wormwod and is now illegal?
+Absinthe
+10
+
+Which drink does Melanie Sykes advertise on TV?
+Boddingtons
+10
+
+Which drink is named after the Ethiopian city Kaffa?
+Coffee
+10
+
+Which drink is named after the ethiopian city of 'kaffa'?
+Coffee
+10
+
+Which drink should be served in a glass called a copita?
+Sherry
+10
+
+Which drink was advertised as 'The Wodka from Varrington'?
+Vodka
+10
+
+Which drink was advertised by Leonard Rossiter and Joan Collins?
+Cinzano
+10
+
+Which drink was advertised on TV by David Bowie's wife Iman?
+Tia maria
+10
+
+Which driver won the British Grand Prix four years running from 1962 to 1965?
+Jim clark
+10
+
+Which drug can be extracted from the bark of the cinchona tree?
+Quinine
+10
+
+Which drug is used in medicine to dilate the pupils of the eyes?
+Atropine
+10
+
+Which Dukes seat is Badminton?
+Duke of beaufort
+10
+
+Which duo's best-selling album, The Innocents, topped the album charts in January 1989?
+Erasure
+10
+
+Which Dutch actor is very famous in Hollywood?
+Rutger Hauer
+10
+
+Which Dutch physicist invented the first pendulum clock in 1657?
+Christian huygens
+10
+
+Which dynasty has ruled the Netherlands since 1815?
+Orange
+10
+
+Which ear can most people hear better with?
+Right
+10
+
+Which early central American people built pyramids and invented a calendar?
+The maya
+10
+
+Which early Hollywood film star originally named Gladys Mary Smith was known as Americas Sweetheart?
+Mary pickford
+10
+
+Which early state was founded as a haven for Catholics?
+Maryland
+10
+
+Which early type of bicycle had a large front wheel and a small back one?
+Penny farthing
+10
+
+Which East African leader gave himself the title of 'Conqueror of the British Empire'?
+Idi amin
+10
+
+Which east anglian county shares its name with a city in Virginia, usa?
+Norfolk
+10
+
+Which eastender featured on mike sarne's 1962 hit come outside?
+Wendy richards
+10
+
+Which EC country takes up part of the Balkan Peninsula?
+Greece
+10
+
+Which economist wrote 'The Affluent Society'?
+J k galbraith
+10
+
+Which edible nut of the American hickory tree is similar to a Walnut?
+Pecan
+10
+
+Which edible vegetable relative of the sunflower has nothing to do with the artichoke and doesnt come from the middle east?
+Jerusalem artichoke
+10
+
+Which edifice was built on the orders of Shih Huang Ti?
+Great wall of china
+10
+
+Which educational establishment in Utah is known as B.Y.U?
+Brigham young university
+10
+
+Which EEC member uses more microwave ovens than the rest put together?
+Great britain
+10
+
+Which egyptian pharaohs tomb was discovered in 1922?
+Tutankhamun
+10
+
+Which Egyptian prime minister nationalized the Suez Canal?
+Nasser
+10
+
+Which eighties album, that sold 20 million plus copies, featured Vincent Price?
+Thriller
+10
+
+Which eighties band comprised of George Michael & Andrew Ridgley?
+Wham
+10
+
+Which eighties fashion accessory consisted of a saftey pin and small beads?
+Friendship pins 
+10
+
+Which eighties musician got sued by a music related company for using their name as part of his pseudonym?
+Thomas Dolby
+10
+
+Which eighties sitcom featured Tom Hanks in drag on a regular basis?
+Bosom Buddies
+10
+
+Which element derives its name from the Greek for 'bringer of light'?
+Phosphorus
+10
+
+Which element has an atomic number of 23 and the symbol V?
+Vanadium
+10
+
+Which element has an atomic number of 62 and the symbol Sm?
+Samarium
+10
+
+Which element has exactly the same name as a planet?
+Mercury
+10
+
+Which element has the chemical symbol Cs; capital C lower-case s?
+Caesium
+10
+
+Which element has the chemical symbol Sr; capital S lower-case r?
+Strontium
+10
+
+Which element has the highest melting point?
+Carbon
+10
+
+Which element has the lowest boiling point?
+Helium
+10
+
+Which element has the symbol fe?
+Iron
+10
+
+Which element is used in computer chips?
+Silicon
+10
+
+Which element was once known as Kalium?
+Potassium
+10
+
+Which element was once known as Wolfram?
+Tungsten
+10
+
+Which element, atomic number 55, takes its name from the Greek for heavy?
+Barium
+10
+
+Which element, atomic number 74, takes its name from the Swedish for Heavy Stone?
+Tungsten
+10
+
+Which element, discovered by pierre and marie curie, did she name after the country of her birth?
+Polonium
+10
+
+Which elementary particle orbits the nucleus of an atom and has a mass 1836 times smaller than that of a proton?
+Electron
+10
+
+Which elephant can't be domesticated, the African or Indian?
+African
+10
+
+Which Elvis Presley film did not star Elvis?
+Love me tender
+10
+
+Which eminent French novelist defended Dreyfus when he was accused of betraying military secrets?
+Zola
+10
+
+Which eminent Greek philosopher famously tutored Alexander the Great?
+Aristotle
+10
+
+Which eminent Labour politician is a devoted supporter of Sheffield Wednsday?
+Roy hattersley
+10
+
+Which emperor is credited with standardizing dec. 25 as christmas day?
+Constantine
+10
+
+Which emperor said wellington wasnt a good general?
+Napoleon
+10
+
+Which empire did Cortes destroy in 1521?
+The aztecs
+10
+
+Which empire was conquered by Pizarro?
+Inca empire
+10
+
+which empire was once ruled by Nero?
+Ancient rome
+10
+
+Which employee of the Arthur Wilkinson pottery became well known for her Bizarre Ware?
+Clarice cliff
+10
+
+Which emu sits on the eggs the male or the female?
+The male
+10
+
+Which end of a 1.5 volt household battery is the negative terminal?
+Bottom end
+10
+
+Which end of its body does a horse raise first when it gets up from lying down?
+Front
+10
+
+Which enduring character was created by Bob Clampett for the 1938 cartoon Porky's Hare Hunt?
+Bugs Bunny
+10
+
+Which English actor won his first Oscar for a role in 'Arthur' at the age of 77?
+Sir john gielgud
+10
+
+Which English actress appeared on TV in 'Edge of Darkness' and 'The Singing Detective' and the film 'Scandal'?
+Joanne whalley
+10
+
+Which English actress was most famous for her role in wilde's the importance of being earnest?
+Dame edith evans
+10
+
+Which English agriculturist invented the seed drill?
+Jethro tull
+10
+
+Which English agriculturist's name was adopted and well-known in the pop music world?
+Jethro tull
+10
+
+Which English agriculturist's name was adopted to become well-known in the pop music world?
+Jethro tull
+10
+
+Which English Benedictine monk is known as the Apostle of Germany?
+St boniface
+10
+
+Which English book was written without using the letter 'E' once?
+A Void
+10
+
+Which English bowler achieved his test career best when he took 7 wickets for 46 runs against South Africa in December 1999?
+Andrew caddick
+10
+
+Which English Cathedral has a clock with no face?
+Salisbury
+10
+
+Which English cathedral is famous for its whispering gallery?
+St Paul's
+10
+
+Which English city has an annual Goose Fair?
+Nottingham
+10
+
+Which English comedian became the first Moomba King in 1967?
+Robert Morley
+10
+
+Which English comedy star was born blind but gained his sight after a coughing fit?
+George Formby
+10
+
+Which English composer was born in Bradford in 1862 and died in 1934?
+Frederick delius
+10
+
+Which English composer was born near Worcester in 1857 and died in 1934?
+Edward elgar
+10
+
+Which English county is named after the East Saxons?
+Essex
+10
+
+Which English county precedes its name with Royal?
+Berkshire
+10
+
+Which English cricket captain was given the nickname Sardine in Australia?
+Douglas jardine
+10
+
+Which English engineer developed the safety lamp for miners at the same time as Humphrey Davy?
+George stephenson
+10
+
+Which English entrepreneur produced the first synthetic dye?
+William perkin
+10
+
+Which English general won the battle of Blenheim?
+Marlborough
+10
+
+Which English house had the red rose as its symbol?
+House of lancaster
+10
+
+Which English humourists christian names were Pelham Grenville?
+P.g wodehouse
+10
+
+Which English king did robert the bruce defeat at bannockburn?
+Edward ii
+10
+
+Which English king married Berengaria of Navarre, who never set foot on English soil?
+Richard the first
+10
+
+Which English King met Francis I of France on the 'Field of the Cloth of Gold'?
+Henry viii
+10
+
+Which English king was killed at the Battle of Hastings?
+Harold
+10
+
+Which English king was known as The Hammer of the Scots?
+Edward I
+10
+
+Which English king was one of the princes in the tower?
+Edward v
+10
+
+Which English king's coronation was postponed because he was suffering from appendicitis?
+Edward vii
+10
+
+Which English Leader's body was exhumed from Westminster Abbey and his dead body hanged at Tyburn?
+Oliver cromwell
+10
+
+Which English magician & occultist described himself as the 'beast of the apocalypse'?
+Alister crowley
+10
+
+Which English novelist and playwright was once a full time cinema critic?
+Graham greene
+10
+
+Which English physicist worked on thermodynamics and has a unit of energy named for him?
+James prescott joule
+10
+
+Which English playwright and actor wrote the play Blithe Spirit in 1941?
+Noel coward
+10
+
+Which English playwright was murdered by his lover in 1967?
+Joe orton
+10
+
+Which English poet created The Jumblies and The Dong with the Luminous nose?
+Edward lear
+10
+
+Which English poet died in 1824 helping Greece in her revolt against the Turks?
+Lord byron
+10
+
+Which English poet wrote 'No man is an island, entire of itself.'?
+John donne
+10
+
+Which English poet wrote The Iron Man?
+Ted Hughes
+10
+
+Which English porcelain factory used an anchor as its mark?
+Chelsea
+10
+
+Which English quaker founded pennsylvania?
+William penn
+10
+
+Which English reformer was instrumental in abolishing slavery in the British empire?
+William wilberforce
+10
+
+Which English river has the same name as a Russian one?
+Don
+10
+
+Which English romantic poet was expelled from oxford for atheism?
+Percy bysshe shelley
+10
+
+Which English royal palace did one critic call a collection of stone pumpkins and pepper pots?
+Brighton pavilion
+10
+
+Which English scientist invented the electric light bulb?
+Joseph swan
+10
+
+Which English statesman was awarded the nobel prize for literature?
+Winston churchill
+10
+
+Which English woman campaigned for improved prison conditions in the 19th century?
+Elizabeth fry
+10
+
+Which English word can describe both a type of fruit pie and one who mends shoes?
+Cobbler
+10
+
+Which English word is a combination of the first 2 letters of the Greek alphabet?
+Alphabet
+10
+
+Which English writer is reported to have been stabbed to death in a pub?
+Christopher marlowe
+10
+
+Which English writer was named after a Staffordshire lake?
+Rudyard kipling
+10
+
+Which englishman bettered his own 1980 Olympic 1500 metres time when he won the race in 1984?
+Seb coe
+10
+
+Which englishman journeyed into antarctica in the quest for the south pole, only to find that the norwegian flag had been planted there 35 days earlier, and perished on his journey back (full name)?
+Robert falcon scott
+10
+
+Which Englishman kept a famous diary from 1660 to 1669?
+Samuel Pepys
+10
+
+Which entertainer said 'I cried all the way to the bank'?
+Liberace
+10
+
+Which entertainer was known as the armed forces sweetheart?
+Vera lynn
+10
+
+Which entire novel is set in June 16th 1904?
+Ulysses
+10
+
+Which epic film was based on a novel by Lew Wallace?
+Ben hur
+10
+
+Which eponymous animal in a children's story had friends called Merrylegs and Ginger?
+Black beauty
+10
+
+Which eponymous, or title female, cartoon character was created by Max Fleischer?
+Betty boop
+10
+
+Which er doctor was in the 'revenge of the nerds'?
+Anthony edwards
+10
+
+Which ethnic group of people lived in the biblical city of nineveh before it was sacked in 612 b.c?
+Assyrians
+10
+
+Which European capital city is heated by volcanic springs?
+Reykjavik
+10
+
+Which european capital stands on the river vltava?
+Prague
+10
+
+Which european city has a cathedral located inside an old mosque?
+Cordoba
+10
+
+Which european city is called mailand by the germans?
+Milan
+10
+
+Which european city is home to the imfamous 'concrete cows'?
+Milton keynes
+10
+
+Which European city is regarded as the clock making capital of the world?
+Geneva
+10
+
+Which European city is served by Barajas airport?
+Madrid
+10
+
+Which European city is served by Cointrin airport?
+Geneva
+10
+
+Which European city is served by Findel airport?
+Luxembourg
+10
+
+Which European city is served by Fiumicino airport?
+Rome
+10
+
+Which european city is served by galileo galilei airport?
+Pisa
+10
+
+Which european city is served by turnhouse airport?
+Edinburgh
+10
+
+Which European country (excluding the USSR) produces the most crude petroleum?
+United kingdom
+10
+
+Which European country has regions named Limburg, Drente and Brabant?
+Netherlands
+10
+
+Which European country has the largest percentage of forest and woodland?
+Finland
+10
+
+Which European country has the largest population?
+Germany
+10
+
+Which european country is a grand duchy?
+Luxembourg
+10
+
+Which european country is bordered on three sides by communist countries?
+Austria
+10
+
+Which European country is ruled jointly by the Spanish Bishop of Urgel and the President of France?
+Andorra
+10
+
+Which european country is the world's biggest producer of wine bottle corks?
+Portugal
+10
+
+Which European country produces the most wine?
+Italy
+10
+
+Which european country suffered a violent coup attempt in 1981?
+Spain
+10
+
+Which european country uses the most soap?
+Great britain
+10
+
+Which european country was ruled by Tito from 1945 to 1980?
+Yugoslavia
+10
+
+Which European Country was the paper clip invented in?
+Germany
+10
+
+Which european country will lose its independence if there is no heir to the throne?
+Monaco
+10
+
+Which european countrys capital stands on the island of Zealand?
+Denmark
+10
+
+Which european monarchy was restored in 1975?
+Spain
+10
+
+Which European nation was the first to drink tea?
+The Dutch
+10
+
+Which european peak was first conquered in 1865 by English mountaineer edward whymper?
+The matterhorn
+10
+
+Which european people were the first to settle in Greenland?
+The vikings
+10
+
+Which Eurovision song contest winning song was originally written for the Samaritans?
+Love shine a light
+10
+
+Which eurovision song winning group's line-up was mike nolan, bobby g, jay ashton and cheryl baker?
+Buck's fizz
+10
+
+Which event of 1995 was advertised by the complete day's print of 'The Times' newspaper being offered to the public free of charge?
+Launch of windows 95
+10
+
+Which events world record has been held by Nordwig,Bubka,Seagren and Foss?
+Pole vault
+10
+
+Which every day item has an inertia wheel?
+Car seat belt
+10
+
+Which everyday labour-saving device was patented by Cecil Booth in 1901?
+Vacuum cleaner
+10
+
+Which ex-president died in 1973, five days before an agreement was signed in Paris ending the fighting in Vietnam?
+Lyndon B Johnson
+10
+
+Which exploration of black identity in America was published in 1952?
+Invisible Man
+10
+
+Which explorer discovered the island of Spitsbergen?
+Willem barents
+10
+
+Which explorer has the middle name Twistleton-Wykeham?
+Sir ranulph fiennes
+10
+
+Which explorers first names were Robert Falcon?
+Scotts
+10
+
+Which explores trip was sponsored by Ferdinand and Isabella?
+Christopher columbus
+10
+
+Which explosive was invented in 1866?
+Dynamite
+10
+
+Which exponent of solidarity was awarded the 1983 Nobel Peace Prize?
+Lech walesa
+10
+
+Which expression for a devoted couple originates in a 1735 poem?
+Darby and joan
+10
+
+Which extravagant and insensitive Austrian widow was guillotined in 1793?
+Marie antoinette
+10
+
+Which eye did Moshe Dayan wear a patch over?
+Left
+10
+
+Which f1 engine manufacturer built its own four wheel drive car for 1969, but never raced it?
+Cosworth
+10
+
+Which F1 racing driver, after receiving the last rites, went on to win 2 world championships?
+Niki lauda
+10
+
+Which famed English site is found on Salisbury Plain?
+Stonehenge
+10
+
+Which familiar feature of underground stations first appeared in 1894 as a joy ride at Coney Island,New York?
+Escalator
+10
+
+Which family lived at Brideshead?
+The marchmains
+10
+
+Which family of animals include the Dik Dik, Bongo and Kudu?
+Antelope
+10
+
+Which familys life is the basis for The sound of Music?
+Von trapps
+10
+
+Which famous adventure was based on the real life of Alexander Selkirk?
+Robinson crusoe
+10
+
+Which famous American lived at San Simeon?
+William randolph hearst
+10
+
+Which famous American playwright was marilyn monroe married to?
+Arthur miller
+10
+
+Which famous artist died the same year that Shakespeare was born?
+Michelangelo
+10
+
+Which famous artist painted the potato eaters?
+Vincent van gogh
+10
+
+Which famous artist painted the sunflowers picture?
+Van gogh
+10
+
+Which famous artist took up painting with his left hand when he lost the use of his right hand at the age of sixty?
+Leonardo da Vinci
+10
+
+Which famous artist wrote in ?mirror writing?
+Leonardo da Vinci
+10
+
+Which famous athlete was was a Tory M.P. from 1959-66 and 1969-74; latterly holding ministerial office?
+Chris chataway
+10
+
+Which famous author is mary ann evans better known as?
+George eliot
+10
+
+Which famous baseball player uttered this noteable quote, 'It ain't over till it's over'?
+Yogi Berra
+10
+
+Which famous battle took place in 1916?
+Battle of the Somme
+10
+
+Which famous battle took place on july 1st to 3rd 1863?
+Gettysburg
+10
+
+Which famous battle was fought this day In 490 BC?
+Marathon
+10
+
+Which famous bell ringer killed Archdeacon Frollo?
+Quasimodo
+10
+
+Which famous book was complied by Henry Baker with William Monk in 1861?
+Hymns ancient and modern
+10
+
+Which famous building was erected for the Great Exhibition of 1851?
+Crystal Palace
+10
+
+Which famous canine cartoon character was created by Hanna-Barbera in 1958 for the first all-animated television series?
+Huckleberry hound
+10
+
+Which famous car was designed by Alec Issigonis in 1959?
+The mini
+10
+
+Which famous cigar smoker was born on the same day as Robert Runcie,the former Archbishop of Canterbury?
+Groucho marx
+10
+
+Which famous conservationist was murdered by Somali bandits?
+George adamson
+10
+
+Which famous couple were married in 1981?
+Charles and diana
+10
+
+Which famous cup is the worlds oldest international sporting trophy?
+The americas cup
+10
+
+Which famous daily newpaper used to be based in Manchester?
+The guardian
+10
+
+Which famous dance of the 1920's took its name from a city in the southern united states?
+The charleston
+10
+
+Which famous dancing troupe was formed by Margaret Kelly?
+Bluebell Girls
+10
+
+Which famous detective lives in 221b Baker Street?
+Sherlock holmes
+10
+
+Which famous English school had Thomas arnold as its headmaster?
+Rugby
+10
+
+Which famous Englishwoman was born in Florence on 12th May 1820,where her well-to-do parents were temporarily resident?
+Florence nightingale
+10
+
+Which famous fictional creature lived in the 'Great Grimpen Mire?
+Hound of the baskervilles
+10
+
+Which famous fighter pilot lost both of his legs in wwii?
+Group captain Douglas bader
+10
+
+Which famous fighter plane did R J Mitchell design in 1936?
+Spitfire
+10
+
+Which famous film actor, who died of lung cancer in 1957, used his real name but dropped his middle name of de Forest?
+Humphrey bogart
+10
+
+Which famous footballer was uncle to jack and bobby charlton?
+Jackie milburn
+10
+
+Which famous french prophet and astrologer predicted that the world would end in july 1999?
+Nostradamus
+10
+
+Which famous Hollywood landmark is famous for the handprints and signatures in its forecourt?
+Graumans chinese theatre
+10
+
+Which famous London street name contains six consonants unseparated by vowels?
+Knightsbridge
+10
+
+Which famous military group has its HQ at Aubagne near Marseilles?
+Foreign legion
+10
+
+Which famous motor race is run every year at the Brickyard?
+Indianapolis 500
+10
+
+Which famous museum opened in london in april 1928?
+Madame tussaud
+10
+
+Which famous opera house in milan, Italy rose to its greatest heights under toscanini?
+La scala
+10
+
+Which famous painter was portrayed on screen by Kirk Douglas?
+Van gogh
+10
+
+Which famous painting is also known as 'la gioconda'?
+Mona lisa
+10
+
+Which famous painting was completed in 1506?
+Mona lisa
+10
+
+Which famous person said 'Hell is other people'?
+Jean-Paul sartre
+10
+
+Which famous piece of artwork depcits the Battle of Hastings?
+Bayeux Tapestry
+10
+
+Which famous pilot was shot down over Vaux-sur-seine France on 21st April 1918?
+Manfred von richtofen,the red baron
+10
+
+Which famous play write was a great crusader for the simplification of spelling & punctuation?
+George Bernard Shaw
+10
+
+Which famous poem features a hamlet called Auburn?
+Goldsmith's the deserted village
+10
+
+Which famous racehorse was kidnapped in Ireland?
+Shergar
+10
+
+Which famous racing town is close to Tintern Abbey?
+Chepstow
+10
+
+Which famous radio and television family appeared in the show 'Take It From Here'?
+The glums
+10
+
+Which famous radio comic called his show hos Halfhour?
+Tony hancock
+10
+
+Which famous radio family live in the county of Borsetshire?
+The archers
+10
+
+Which famous rugby player was also wimbledon junior tennis champion?
+Jpr williams
+10
+
+Which famous scientist's first published work was a monograph on barnacles?
+Charles Darwin
+10
+
+Which famous screen character was played by champion swimmer Johnny Weissmuller?
+Tarzan
+10
+
+Which famous showjumper is the brother of show jumper Liz edgar?
+David broome
+10
+
+Which famous singer lived at 20 Forthlin Road,Liverpool?
+Paul mccartney
+10
+
+Which famous soldier was assassinated whilst sailing round the coast of Ireland?
+Earl mountbatten of burma
+10
+
+Which famous soviet dissident was a nuclear physicist who developed the nuclear bomb for the soviet union?
+Andrei sakharov
+10
+
+Which famous sporting venue is above NewYorks Pennsylvania Station?
+Madison square gardens
+10
+
+Which famous talk show host made a guest apearence on Laverne & Shirley?
+Jay Leno 
+10
+
+Which famous thinker's name was the latinized version of venerable master kong?
+Confucious
+10
+
+Which famous university is in paris?
+Sorbonne
+10
+
+Which famous US crooner died on a golf course in Spain?
+Bing crosby
+10
+
+Which famous US pioneer paved the way for settlers in 1775?
+Daniel Boone
+10
+
+Which famous William Golding novel begins with the words. 'The boy with fair hair lowered himself down the last few feet of rock and began to pick his way towards the lagoon'?
+Lord of the Flies
+10
+
+Which famous writer was imprisoned in reading Jail for nearly 2 years?
+Oscar wilde
+10
+
+Which famous writers first names were Edward Morgan?
+E m forster
+10
+
+Which Farm album was the same title as a Kirk Douglas film?
+Spartacus
+10
+
+Which fashion designer died september 1985 aged 50?
+Laura ashley
+10
+
+Which fast food chain did Chris Waddle, Stuart Pearce and Gareth Southgate promote in TV adverts?
+Pizza hut
+10
+
+Which fast suburban railway system in Ireland runs from Howth in the North to Bray in the South?
+Dart
+10
+
+Which father and daughter starred in the film 'Paper Moon'?
+Ryan and tatum o'neal
+10
+
+Which father and son have both played cricket for England?
+Colin and chris cowdrey
+10
+
+Which feature length Disney cartoon had a Scottish Terrier called Jock in it?
+Lady and the tramp
+10
+
+Which feature of the night sky is also known as a 'shooting star'?
+Meteor
+10
+
+Which female actress played opposite Jack Nicholson in the movie 'Chinatown'?
+Faye Dunaway
+10
+
+Which female British model was known as 'The Shrimp?
+Jean Shrimpton
+10
+
+Which female comedy characters surname was Morgenstern?
+Rhoda
+10
+
+Which female East Anglian leader rebelled against Roman rule in AD122?
+Boudicca
+10
+
+Which female icon was created by ruth hande in 1959?
+Barbie
+10
+
+Which female icon was created by Ruth Handler in 1959?
+Barbie
+10
+
+Which female vocalist had a number one U.K. hit in 1955 with Softly, Softly?
+Ruby murray
+10
+
+Which female vocalist sang the title song to the bond film tomorrow never dies?
+Sheryl crow
+10
+
+Which female-led new wave band released the albums parallel lines and plastic letters?
+Blondie
+10
+
+Which festival did the first popular greetings card celebrate?
+Valentines day
+10
+
+Which fiberous, sulphur-rich protein occurs naturally in hair, horns, hooves and feathers?
+Keratin
+10
+
+Which fictional character first appeared in 194 i, when she came to America from her Amazon homeland of Paradise Island to help the US defeat the Nazis?
+Wonder woman
+10
+
+Which fictional character gave her name to California?
+Queen calafia
+10
+
+Which fictional character was introduced in a study in scarlet?
+Sherlock holmes
+10
+
+Which fictional city is Superman's home?
+Metropolis
+10
+
+Which fictional country was ruled by the Elphbergs?
+Ruritania
+10
+
+Which fictional land was used to describe John F Kennedy's term as president?
+Camelot
+10
+
+Which fictional little girl expolred Wonderland?
+Alice
+10
+
+Which fictional park is the home of Yogi Bear?
+Jellystone
+10
+
+Which fictional private detective solved their last case in 1952?
+Mike Hammer
+10
+
+Which fictional sailor was captain of a ship called the Black Pig?
+Captain pugwash
+10
+
+Which fictitious character lives at Bywater Street, Chelsea?
+George smiley
+10
+
+Which fictitious private detective solved cases over the air on a local radio station?
+Eddie shoestring
+10
+
+Which fifties singer changed his name from Harold Jenkins?
+Conway Twitty
+10
+
+Which Fijian golfer won the 1998 US Masters?
+Vijay singh
+10
+
+Which film about Arnhem in WW2 was criticized as 'A Film Too Long'?
+A bridge too far
+10
+
+Which film actor is known as 'the muscles from brussels'?
+Jean claude van damme
+10
+
+Which film actor was nicknamed 'The Duke'?
+John wayne
+10
+
+Which film actor's real name was reginald truscott-jones?
+Ray milland
+10
+
+Which film actress, in 1991, appeared nude and in a state of late pregnancy on the cover of 'Vanity Fair' magazine?
+Demi moore
+10
+
+Which film and TV role links, Leslie Howard, David Niven, Barry K Barnes and Anthony Andrews?
+The scarlet pimpernel
+10
+
+Which film character owned a newspaper called 'The Enquirer'?
+Citizen kane
+10
+
+Which film covers the life of George Cohan?
+Yankee doodle dandy
+10
+
+Which film covers the life of John Reed?
+Reds
+10
+
+Which film ends with 'after all, tomorrow is another day'?
+Gone with the wind
+10
+
+Which film ends with the line, 'What we have here is a failure to communicate'?
+Cool hand luke
+10
+
+Which film featured the characters called Fast Eddie Felson and Minnesota Fats?
+The hustler
+10
+
+Which film finds jack nicholson in the Los Angeles oriental district?
+Chinatown
+10
+
+Which film followed the career of athletes Eric Henry liddell and harold abrahams?
+Chariots of fire
+10
+
+Which film heard Gordon Gekko remarking Lunch is for Wimps?
+Wall street
+10
+
+Which film links Harrison Ford and novelist Scott Turon?
+Presumed innocent
+10
+
+Which film links novelist Ira Levin and Sharon Stone?
+Sliver
+10
+
+Which film preceded 'magnum force' and 'the enforcer'?
+Dirty Harry
+10
+
+Which film producer said 'Anyone who goes to a psychiatrist should have his head examined?
+Samuel goldwyn
+10
+
+Which film role links Mary Elizabeth Mastrantonio, Olivia de Havilland and Audrey Hepburn?
+Maid marian
+10
+
+Which film soundtrack featured Glenn Frey,Patti Labelle, Shalamar and the pointer Sisters?
+Beverley hills cop
+10
+
+Which film star dog had three names each containing three letters?
+Rin tin tin
+10
+
+Which film star is the real life husband of goldie hawn?
+Kurt russell
+10
+
+Which film star's biography was called neither shaken nor stirred?
+Sean connery
+10
+
+Which film starred Dustin Hoffman in drag as Dorothy?
+Tootsie
+10
+
+Which film starring julie andrews and christopher plummer won the oscar for best picture in 1965?
+Sound of music
+10
+
+Which film stars spencer tracy as a war veteran with a mission to deliver a posthumous medal?
+Bad day at black rock
+10
+
+Which film tells the story of 'fast' eddie felson?
+The hustler
+10
+
+Which film was revamped and re-released mid 1997?
+Star wars
+10
+
+Which film won best picture oscar in 1983?
+Terms of endearment
+10
+
+Which film won the oscar for best picture in 1987?
+The last emperor
+10
+
+Which film won the oscar for best picture in 1995?
+Braveheart
+10
+
+Which film, directed by jonathan demme, won the 1991 academy award for best picture?
+Silence of the lambs
+10
+
+Which film, directed by Oliver Stone, won Best Film Oscar in 1986?
+Platoon
+10
+
+Which film, directed by sydney pollack, won the 1985 academy award for best picture?
+Out of africa
+10
+
+Which films are about the corleone family?
+The godfather
+10
+
+Which financial pirate had a parrot called Captain Flint?
+Long john silver
+10
+
+Which firm manufactures 'Shreddies'?
+Nestle
+10
+
+Which firm provides tyres to all Formula One Motor Racing teams?
+Bridgestone
+10
+
+Which first baseman is known as 'the big hurt'?
+Frank thomas
+10
+
+Which fish can kill by electrocution?
+Electric eel
+10
+
+Which fish is pickled to make rollmops?
+Herring
+10
+
+Which fishing port in California was the setting for Steinbeck's novels 'Cannery Row' and 'Tortilla Flat'?
+Monterrey
+10
+
+Which five teams have defeated Arsenal in F A Cup Finals?
+Huddersfield Town
+10
+
+Which flag flies over the canary islands?
+Spanish
+10
+
+Which flavours of ice cream are used for Neopolitan ice cream?
+Chocolate, Vanilla, Strawberry
+10
+
+Which flesh eating monster was slain by Beowulf?
+Grendel
+10
+
+Which Fletwood Mac album cost $1 million to produce in 1979?
+Tusk
+10
+
+Which Flintstone character never made it into the bottles of Flintstone vitamins?
+Betty Rubble
+10
+
+Which Florida city is the oldest in the usa?
+St augustine
+10
+
+Which flower became a craze in 17th century holland?
+The tulip
+10
+
+Which flower is a corruption of the french for lions tooth?
+Dandelion
+10
+
+Which flower is the emblem of Holland?
+Tulip
+10
+
+Which flower is the emblem of Scotland?
+Thistle
+10
+
+Which flower was the emblem of the yorkists in the war of the roses?
+The white rose
+10
+
+Which flower, associated with the city of Parma is used to make perfume?
+Violet
+10
+
+Which flowering plant family includes the cherry, plum and apple?
+Rose
+10
+
+Which flying mouse, a cross between Superman and Mickey Mouse, appears in over seventy short cartoons in the Terrytoons series?
+Mighty mouse
+10
+
+Which Food and Drug Store Chain had the highest gross sales (over 22 Billion) in 1994?
+Kroger company
+10
+
+Which food crop has the latin name 'Saccharum officinarum'?
+Sugar cane
+10
+
+Which food product did Henry Cooper advertise in 1984?
+Shredded wheat
+10
+
+Which foot did Neil Armstrong first put down on the moon?
+Left
+10
+
+Which footbal club won the European Cup the first 5 years in which it was held?
+Real madrid
+10
+
+Which football club plays at Cold Blow Lane?
+Millwall
+10
+
+Which football club plays at Spotland?
+Rochdale
+10
+
+Which football club used to be called The London Ironworks?
+West ham united
+10
+
+Which Football club was nicknamed 'the busby babes'?
+Manchester united
+10
+
+Which football club won the European Cup the first five years it was held?
+Real madrid
+10
+
+Which football manager lifted the F.A. Cup in May 1997?
+Ruud gullit
+10
+
+Which football player was nicknamed 'the galloping major'?
+Ferenc puskas
+10
+
+Which football Premier League manager was sacked on 12 September 2000?
+Gianluca vialli
+10
+
+Which football team does Alf Garnett famously support?
+West ham united
+10
+
+Which Football team in the 1994 world cup had all 11 players' surnames ending with the letters 'ov'?
+Bulgaria
+10
+
+Which football team plays at Anfield?
+Liverpool
+10
+
+Which football team plays at Craven Cottage?
+Fulham
+10
+
+Which football team plays at Elland Road?
+Leeds united
+10
+
+Which football team plays at Ewood Park?
+Blackburn rovers
+10
+
+Which football team plays at Filbert Street?
+Leicester city
+10
+
+Which football team plays at Goodison Park?
+Everton
+10
+
+Which football team plays at Highbury?
+Arsenal
+10
+
+Which football team plays at Old Trafford?
+Manchester united
+10
+
+Which football team plays at Portman Road?
+Ipswich town
+10
+
+Which football team plays at Pride Park?
+Derby county
+10
+
+Which football team plays at St James' Park?
+Newcastle united
+10
+
+Which football team plays at St marys' Stadium?
+Southampton
+10
+
+Which football team plays at Stamford Bridge?
+Chelsea
+10
+
+Which football team plays at The Boleyn Ground?
+West ham united
+10
+
+Which football team plays at The Reebok Stadium?
+Bolton wanderers
+10
+
+Which football team plays at The Riverside Stadium?
+Middlesborough
+10
+
+Which football team plays at The Stadium of Light?
+Sunderland
+10
+
+Which football team plays at The Valley?
+Charlton athletic
+10
+
+Which football team plays at Villa Park?
+Aston villa
+10
+
+Which football team plays at White Hart Lane?
+Tottenham hotspur
+10
+
+Which football team plays home games at Gay Meadow?
+Shrewsbury
+10
+
+Which football team was known as the 'flying magyars'?
+Hungary
+10
+
+Which football team was nicknamed the 'Orange Crush'?
+Denver Broncos
+10
+
+Which football team won the First Division Championship in the 1970s but is now in the lower divisions?
+Derby county
+10
+
+Which footballer starred in the film lock stock and two smoking barrels?
+Vinnie jones
+10
+
+Which footballer was responsible for the hit single geordie boys?
+Paul gascoigne
+10
+
+Which foreign former actor received an honorary knighthood in 1989?
+Ronald reagan
+10
+
+Which forename, deriving from the Germanic 'rulehard', has been held by three English kings?
+Richard
+10
+
+Which form of light is used to treat skin diseases?
+Ultraviolet
+10
+
+Which form of transport moves along on a cushion of air?
+Hovercraft
+10
+
+Which form of wrestling is won by forcing the opponent to touch the ground with any part of his body but his feet?
+Sumo wrestling
+10
+
+Which former 'Neighbours' star had a hit with 'Any Dream Will Do'?
+Jason donovan
+10
+
+Which former Archbishop of Canterbury was burned alive in 1556?
+Thomas cranmer
+10
+
+Which former big breakfast star is the daughter of a comedian?
+Liza tarbuck
+10
+
+Which former British colony is now called Ghana?
+Gold coast
+10
+
+Which former child star made his debut on the London stage in October 2000?
+Macaulay culkin
+10
+
+Which former dishwasher had his movie premiere in 1921?
+Rudolph valentino
+10
+
+Which former Etonian author served once as a policeman in Burma?
+George orwell
+10
+
+Which former footballer is the Brazilian sports minister?
+Pele
+10
+
+Which former Marine published the first volume of his diaries in 2000?
+Paddy ashdown
+10
+
+Which former member of the group 'Cream' received the OBE in 1995?
+Eric clapton
+10
+
+Which former member of the Shadows was electrocuted by his guitar?
+John Rostill
+10
+
+Which former MP unsuccessfully staged his own suicide in 1973?
+John stonehouse
+10
+
+Which former NBA player is married to dancer/choreographer Debbie Allen?
+Norm Nixon
+10
+
+Which former Oxford University student and English literature teacher wrote Help me make it through the night?
+Kris kristofferson
+10
+
+Which former racing driver owns Austria's second largest airline company?
+Niki lauda
+10
+
+Which former sex symbol starred in Bittersweet Love in 1976?
+Lana turner
+10
+
+Which former Soviet Republic in Central Asia has Alma Ata as its capital?
+Kazakhstan
+10
+
+Which former Soviet Republic in Central Asia has Tashkent as its capital?
+Uzbekistan
+10
+
+Which former Spanish soldier founded the Society of Jesus, commonly known as the Jesuits?
+Ignatius loyola
+10
+
+Which former US first lady worked as an editor for the publishers Viking and Doubleday?
+Jackie onassis
+10
+
+Which former US Secretary of State was born in Bavaria?
+Henry kissinger
+10
+
+Which formula one grand prix takes place at the spa circuit?
+Belgian
+10
+
+Which formula one racing team is unlikely to finish this season due to financial problems?
+Arrows
+10
+
+Which fort did Custer depart from on May 17, 1876, with the Seventh Cavalry on his way to the Little Big Horn?
+Fort Abraham Lincoln
+10
+
+Which fossil fuel is dug up by miners?
+Coal
+10
+
+Which four herbs were the title of an album by Simon & Garfunkel?
+Parsley sage rosemary & thyme
+10
+
+Which four herbs were the title of an album by simon and garfunkel?
+Parsley, sage, rosemary and thyme
+10
+
+Which four-leafed plant is considered lucky?
+Clover
+10
+
+Which French actor and crooner sings the theme tune to Disney's The Aristocats?
+Maurice chevalier
+10
+
+Which french actor director takes the role of 'monsieur hulot' in films such as mon oncle and traffic?
+Jacques tati
+10
+
+Which french artist made his name with his depictions of ballet dancers?
+Degas
+10
+
+Which French artist painted 'The Bridge at Argenteuil', and 'The Magpie'?
+Claude monet
+10
+
+Which French artist, in 1883, gave up his job as a stockbroker to paint full time?
+Paul gauguin
+10
+
+Which French athlete won both the 200m and the 400m on the track at the 1996 Atlanta Olympic Games?
+Maria-jose perec
+10
+
+Which French Atlantic port was the target of a raid on March 28th 1942, code-named 'Operation Chariot'?
+St nazaire
+10
+
+Which french author and philosopher was the cousin of nobel prize-winner albert schweitzer?
+Jean Paul sartre
+10
+
+Which French book illustrator of the middle 19th Century became widely known for his illustrations of such books as Dante's Inferno and Don Quixote?
+Gustav dore
+10
+
+Which French book was written without using the letter 'E' once?
+La Disparition
+10
+
+Which French brothers were responsible for the development of cinematography?
+Lumiere
+10
+
+Which french city is famous for its production of mustard?
+Dijon
+10
+
+Which French city stands at the confluence of the Rhone & Saone rivers?
+Lyon
+10
+
+Which French composer wrote 'La Mer'?
+Debussy
+10
+
+Which French dramatist was originally named Jean Baptiste Poquelin?
+Moliere
+10
+
+Which french dramatist's works include Phedre and Andromaque?
+Jean racine
+10
+
+Which french illustrator became widely known for his books,dante's inferno and don quixote?
+Gustav dore
+10
+
+Which French novelist wrote the book 'Gigi'?
+Colette
+10
+
+Which French novelst also palyed goalkeeper for the algerian football team?
+Albert camus
+10
+
+Which french painter of the 19th century went to live in the south seas?
+Paul gauguin
+10
+
+Which french patriot was known as the maid of orleans?
+Joan of arc
+10
+
+Which french philosopher and political thinker wrote the social contract in 1762?
+Rousseau
+10
+
+Which French phrase means 'required by fashion'?
+De rigueur
+10
+
+Which french revolutionary said 'the surest way to remain poor is to be honest'?
+Napoleon bonaparte
+10
+
+Which french revolutionary was stabbed in his bath by charlotte corday?
+Jean Paul marat
+10
+
+Which french ruler referred to the English as a nation of shopkeepers?
+Napoleon
+10
+
+Which French town is famous for Porcelain and less famous as H.Q. of the International Bureau of Weights and Measures?
+Sevres
+10
+
+Which French towns name became famous after the discovery there of prehistoric skeletons in 1868?
+Cro magnon
+10
+
+Which French underwater explorer invented the aqualung?
+Jacques cousteau
+10
+
+Which French writer said Everything I know about morals I learnt on a football field?
+Albert camus
+10
+
+Which French writer won the Nobel Prize for Fiction in 1952?
+Francois Mauriac
+10
+
+Which fresh water fish has the Latin name 'Esox Lucius?
+Pike
+10
+
+Which Friends actress appeared in the video for Bruce Springsteen's Dancing In The Dark?
+Courtney cox
+10
+
+Which frontiersman died at the alamo?
+Davey crockett
+10
+
+Which fruit can be found in Black Forest Gateau?
+Cherries
+10
+
+Which fruit comes from bramble bushes?
+Blackberry
+10
+
+Which fruit did columbus discover in guadalupe in 1493?
+Pineapple
+10
+
+Which fruit has edible seeds?
+Papaya
+10
+
+Which fruit has its seeds on the outside?
+Strawberry
+10
+
+Which fruit is affected by Noble Rot?
+Grape
+10
+
+Which fruit is used in the drink cassis?
+Blackcurrant
+10
+
+Which fungal plant disease particularly affects brassicas?
+Club root
+10
+
+Which future president drafted the Declaration of Independence?
+Thomas Jefferson
+10
+
+Which future president was the United States Representative to the UN under the Nixon administration?
+George Bush
+10
+
+Which game bird season runs from oct 1st to feb 1st?
+Pheasant
+10
+
+Which game is played at 12 a-side for women, but at 10 a-side for men?
+Lacrosse
+10
+
+Which game uses the largest ball?
+Earthball
+10
+
+Which games company produced alpha centauri, the sequel to civilisation?
+Firaxis games
+10
+
+Which games company produced civilization and civilization ii?
+Microprose
+10
+
+Which gang was responsible for the first train robbery in the us?
+Reno brothers
+10
+
+Which gangster film starred only children?
+Bugsy malone
+10
+
+Which gangster tried to make that town his own in the song 'the night Chicago died' by paper lace?
+Al capone
+10
+
+Which gangster was shot dead by the FBI on 22 July 1934 as he came out of the Biograph cinema in Chicago?
+John dillinger
+10
+
+Which garden pest, which can cause great damage to lawns, is the grub of the crane fly?
+Leatherjacket
+10
+
+Which garden plant has varieties called nelly moser and hagley hybrid?
+Clematis
+10
+
+Which Gareth's summer miss of 1996 made him a household name?
+Southgate
+10
+
+Which gas forms bubbles in the bloodstream when a diver gets the bends?
+Nitrogen
+10
+
+Which gas glows red when an electric current is passed through it?
+Neon
+10
+
+Which gas has the characteristic smell of rotten eggs?
+Hydrogen sulphide
+10
+
+Which gas is the most abundant in the atmosphere?
+Nitrogen
+10
+
+Which gas was named after the Greek word for 'sun'?
+Helium
+10
+
+Which gas was named after the Greek word for green?
+Chlorine
+10
+
+Which gemstone has the highest value per carat?
+Ruby
+10
+
+Which gender firefly produces light?
+Male
+10
+
+Which general has been described as 'The Black Eisenhower'?
+Colin powell
+10
+
+Which general was in charge of the us occupation of Japan after WWII?
+Macarthur
+10
+
+Which general was killed at the seige of khartoum in 1885?
+General gordon
+10
+
+Which genetic trait, often passed from mother to son, was first recognised by John Dalton, who was himself a sufferer?
+Colour blindness
+10
+
+Which genetic trait, often passed from mother to son, was first recognised by john dalton?
+Colour blindness
+10
+
+Which genus of redwood conifers was named to commemorate a great Cherokee Indian?
+Sequoia
+10
+
+Which geologic era saw the development of man?
+Cenozoic
+10
+
+Which geologic era saw the end of the dinosaurs?
+Mesozoic
+10
+
+Which geologic era saw the first primitive plants and animals?
+Precambrian
+10
+
+Which geologic era saw the rise and fall of the dinosaurs?
+The mesozoic era
+10
+
+Which George Michael hit was also a hit for Robbie Williams?
+Freedom
+10
+
+Which German brother collected three famous volumes of fairy tales?
+Jacob & Wilhelm Grimm
+10
+
+Which German city is associated with a round patty of minced beef served in a bun?
+Hamburg
+10
+
+Which German city is famed for producing scent?
+Cologne
+10
+
+Which German city is famous for a scent it produces?
+Cologne
+10
+
+Which German City is the home to the Becks brewery?
+Bremen
+10
+
+Which German city stands at the confluence of the Elbe and Alster rivers?
+Hamburg
+10
+
+Which German city stands on the confluence of the Rhine and Moselle rivers?
+Coblenz
+10
+
+Which German city was the birthplace of the poet heinrich heine?
+Dusseldorf
+10
+
+Which German city was the target of the first 'thousand bomber raid?
+Cologne
+10
+
+Which German computer pop oldies came back in 2000 with Expo 2000?
+Kraftwerk
+10
+
+Which German film director made the film m, in 1951?
+Fritz lang
+10
+
+Which German firm produced the World War Two plane the Condor?
+Fockewulf
+10
+
+Which German General was nicknamed The Desert Fox?
+Rommel
+10
+
+Which German town hosts the annual Wagner Festival?
+Bayreuth
+10
+
+Which German town is called aix-la-chapelle by the french?
+Aachen
+10
+
+Which German was the first man to win the Nobel prize for Physics, doing so in 1901 for a major discovery made in 1895?
+Wilhelm roentgen
+10
+
+Which ghost ship is the theme of a richard wagner opera?
+Flying dutchman
+10
+
+Which Gilbert and Sullivan Opera is subtitled The Slave of Duty?
+Pirates of penzance
+10
+
+Which Gilbet and Sullivan opera is sub titled Bunthornes Bride?
+Patience
+10
+
+Which girl's name links Stephen King novel, Cliff Richard single and Princess Leia in 'Star Wars'?
+Carrie
+10
+
+Which girl's name of six letters is a palindrome?
+Hannah
+10
+
+Which girls name means serpent?
+Linda
+10
+
+Which glam rock group was led by marc bolan?
+T rex
+10
+
+Which gland is enlarged in the condition known as 'goitre'?
+Thyroid gland
+10
+
+Which gland, situated at the base of the skull regulates growth and metabolism?
+Pituitary gland
+10
+
+Which Gloucestershire town, famous for its abbey, lies on the confluence of the Severn and Avon?
+Tewkesbury
+10
+
+Which goal keeper was the first to win the European Footballer of the year award?
+Lev yashin
+10
+
+Which goalkeeper broke his neck in the 1956 cup final?
+Bert trautmann
+10
+
+Which goalkeeper won 119 caps for northern Ireland?
+Pat jennings
+10
+
+Which golfer has won the British Open most times since its inception?
+Harry vardon
+10
+
+Which golfing term signifies as many holes in front of an opponent as there are holes left to play?
+Dormie
+10
+
+Which government (British) section was the first consignment of ballpoint pens meant for?
+Royal air force
+10
+
+Which government department is responsible for broadcasting and the media, the arts, sport and recreation?
+National heritage
+10
+
+Which government minister turned up at Molesworth Peace Camp wearing a flak jacket?
+Michael heseltine
+10
+
+which graduate of Oxford University designed the Sheldonian Theatre in Oxford in 1662?
+Christopher wren
+10
+
+Which grammatical term is used to describe deliberate understatement?
+Litotes
+10
+
+Which grammatical term is used to describe unnecessary repetition?
+Tautology
+10
+
+Which grandma had the most beautifull legs in the world?
+Marlene Dietrich
+10
+
+Which grandson of genghis khan founded the yuan dynasty?
+Kublai khan
+10
+
+Which great African empire was founded in about AD750?
+Ghana
+10
+
+Which great artist and sculptor designed the fortifications when the Florentine Republic was besieged by the Medicis in 1530?
+Michelangelo
+10
+
+Which great Asian river flows into the sea near Karachi?
+The indus
+10
+
+Which great cathedral was completed in 1717?
+St Pauls cathedral
+10
+
+Which great city replaced its hereditary kings with chief magistrates in 683 bc?
+Athens
+10
+
+Which great Italian city was sacked by the Goths in AD410?
+Rome
+10
+
+Which great lake has tides?
+Superior
+10
+
+Which great lake is the second largest, after Lake Superior?
+Lake huron
+10
+
+Which great lord admiral attended norwich grammar school?
+Horatio nelson
+10
+
+Which great roman leader wrote an account of his campaigns in Gaul?
+Julius caesar
+10
+
+Which greek city-state fought against Athens in the Peloponnesian war?
+Sparta
+10
+
+Which greek composer has a studio near Marble Arch called Nemo?
+Vangelis
+10
+
+Which greek figure carried the world on his shoulders?
+Atlas
+10
+
+Which Greek god was zeus' number 2?
+Apollo
+10
+
+Which Greek hero sailed to Crete to battle the Minotaur?
+Theseus
+10
+
+Which Greek inventor discovered the laws of levers and pulleys?
+Archimedes
+10
+
+Which Greek island is also a variety of lettuce?
+Cos
+10
+
+Which greek island is said to be the birthplace of apollo?
+Delos
+10
+
+Which Greek island was the home of the Minoan bull culture?
+Crete
+10
+
+Which greek philosopher showed his contempt for materialism by living in a tub?
+Diogenes
+10
+
+Which Greek philosopher was appointed tutor to Alexander the Great in 342 B.C?
+Aristotle
+10
+
+Which Greek scientist is remembered for his work on buoyancy?
+Archimedes
+10
+
+Which green pigment absorbs light to make plants look green?
+Chlorophyll
+10
+
+Which group backs James Brown, the self-styled 'Godfather of Soul'?
+The famous flames
+10
+
+Which group did janis joplin form in 1970?
+Full tilt boogie
+10
+
+Which group did lou reed front, who, in the 60's recorded 'heroin' and 'sweet jane'?
+Velvet underground
+10
+
+Which group did Paul Weller form after the Jam?
+The style council
+10
+
+Which group did Steve Winwood join at the age of 16?
+The spencer davis group
+10
+
+Which group does Axl Rose front?
+Guns n' roses
+10
+
+Which group dropped ?9,500 in pound notes onto the heads of fans at a concert?
+Steeleye span
+10
+
+Which group had a British number one hit in the 1970s with I Don't Like Mondays?
+Boomtown rats
+10
+
+Which group had a British top five hit in the 1960s with Monday, Monday?
+Mamas and the papas
+10
+
+Which group had a hit in 1985 with Everybody wants to Rule the World?
+Tears for fears
+10
+
+Which group had a no1 hit in 1966 with Keep on Running?
+Spencer davis group
+10
+
+Which group had a number one hit with `Tiger Feet`?
+Mud
+10
+
+Which group had the hit album 'Urban Hymns'?
+The verve
+10
+
+Which group had the hit album 'White on Blonde'?
+Texas
+10
+
+Which group had their first U.K. number one hit ill 1973 with Rubber Bullets?
+Ten cc
+10
+
+Which group had their first U.K. number one tilt ill 1974 with Down Down?
+Status quo
+10
+
+Which group included Merryl, Jay and Alan?
+The osmonds
+10
+
+Which group is rick wright with?
+Pink floyd
+10
+
+Which group kidnapped and murdered Italian premier aldo moro?
+The red brigade
+10
+
+Which group named itself after an American firetruck?
+REO speedwagon
+10
+
+Which group named themselves after the hit record Boys To Men?
+Boyz II men
+10
+
+Which group of Atlantic Islands were, for a time, known as the Flemish Islands, after Faial was gifted to Isabella of Burgundy in 1466?
+The azores
+10
+
+Which group of Australian origin had a top twenty hit in 1965 with The Carnival is Over?
+The seekers
+10
+
+Which group of islands lie between Iceland and the UK?
+The faeroes
+10
+
+Which group of people is traditionally banned from Mount Athos in Greece?
+Women
+10
+
+Which group realised ghetto romance?
+Damage
+10
+
+Which group recorded 'alley-oop', their only hit?
+Hollywood argyles
+10
+
+Which group recorded 'psycho killer'?
+Talking heads
+10
+
+Which group recorded the album, 'By Request'?
+Boyzone
+10
+
+Which group recorded the albums Regatta de Blanc and Ghost in the Machine?
+The police
+10
+
+Which group sang 'everybody have fun tonight'?
+Wang chung
+10
+
+Which group sang Love Me For A Reason in 1994?
+Boyzone
+10
+
+Which group sang the theme tune to the james bond film the living daylights?
+Aha
+10
+
+Which group was formed in 1972 by Don Henley and Glen Fry?
+The eagles
+10
+
+Which group was founded by friends at Charterhouse school?
+Genesis
+10
+
+Which group was the biggest challenger to the Beatles?
+Dave clark five
+10
+
+Which group's 1986 hit was 'Waiting for the Ghost Train'?
+Madness
+10
+
+Which group's best of album is entitled like you do?
+Lightning seeds
+10
+
+Which group's first release was 'i ain't gonna eat out my heart anymore'?
+Rascals
+10
+
+Which group's first single didn't even scrape the bottom of the top 40, but their second, '867-5309/jenny' peaked and went gold in 1982?
+Tommy tutone
+10
+
+Which guitarist is known as slow hand?
+Eric clapton
+10
+
+Which Guitarist was in the original line up of Thin Lizzie?
+Eric bell
+10
+
+Which hampshire airshow is held biennially?
+Farnborough
+10
+
+Which hand did charlie chaplin carry his cane in?
+Left
+10
+
+Which hand do Arabian desert nomads not eat with?
+Left
+10
+
+Which hand does eros hold his bow in?
+Left
+10
+
+Which hand does the hook replace on captain hook?
+Left
+10
+
+Which hand is used for the scout handshake?
+Left
+10
+
+Which hangs from the ceiling stalagmites or stalactites?
+Stalactites
+10
+
+Which hard substance, closely resembling bone, makes up the bulk of a tooth?
+Dentine
+10
+
+Which has more bones the little finger or the thumb?
+Little finger
+10
+
+Which has more English speakers, china or the united states?
+China
+10
+
+Which has the greater circumference, the equator or the poles?
+Equator
+10
+
+Which have a better chance of running you down on land, alligators or crocodiles?
+Alligators
+10
+
+Which have teeth: toads or frogs?
+Frogs
+10
+
+Which have warts, frogs or toads?
+Toads
+10
+
+Which heavenly movement did Copernicus establish?
+Earth goes round the sun
+10
+
+Which helpful organisation was founded in 1953 by the Rev Chad Varah?
+Samaritans
+10
+
+Which hemisphere has more countries, northern or southern?
+Northern
+10
+
+Which hemisphere has more countries, the northern or southern?
+Northern
+10
+
+Which Hemisphere of the planet contains the most countries is it the Northern Hemisphere or the Southern Hemisphere?
+Southern hemisphere
+10
+
+Which heraldic term means flying?
+Volant
+10
+
+Which heraldic term means sleeping?
+Dormant
+10
+
+Which herb is similar in appearance to parsley, but its leaves have a slight flavour of aniseed?
+Chervil
+10
+
+Which herb is sometimes called vegetable oyster plant?
+Salisfy
+10
+
+Which herb is used to flavour the tomato based sauce on a pizza?
+Oregano
+10
+
+Which herb is used to make the garnish 'gremolata'?
+Parsley
+10
+
+Which herb seed can be either black or white, & yields an oil that resists turning rancid?
+Sesame
+10
+
+Which herb sends cats into ecstasy?
+Catnip
+10
+
+Which herb whose leaves and blue flowers are both edible, is used in drinks such as 'pimms'?
+Borage
+10
+
+Which hereditary form of anaemia largely affects people of sub-Saharan African descent?
+Sickle cell anaemia
+10
+
+Which hero of tv and cinema fights an unending battle for 'truth, justice, and the American way?
+Superman
+10
+
+Which heroic group did D'Artagnan lead?
+Three musketeers
+10
+
+Which hills form the border between Avon and Somerset?
+Mendips
+10
+
+Which Himalayan hybrids of yaks and cows are invaluable to Scrabble players?
+Zho
+10
+
+Which hindu deity has the head of an elephant?
+Ganesha
+10
+
+Which Hindu god has an elephants head?
+Ganesh
+10
+
+Which Hindu gods name is now also used to describe heavy lorries?
+Juggernaut
+10
+
+Which Hindu sect strangled travellers and worshipped Kali?
+Thugs
+10
+
+Which historian wrote about the end of history in 1992?
+Francis fukuyama
+10
+
+Which historical character is often referred to as 'the mad monk'?
+Rasputin
+10
+
+Which historical men had only one testicle?
+Hitler and napoleon
+10
+
+Which hit by the 'bobby fuller four' lives on even after his death at age 22?
+I fought the law
+10
+
+Which hitchcock film starred margaret lockwood and michael redgrave?
+The lady vanishes
+10
+
+Which hollywood actor combined gibraltar and a river to create his name?
+Rock
+10
+
+Which Hollywood actor was born Roy Scherer Jnr?
+Rock hudson
+10
+
+Which hollywood actress was born shirley schrift?
+Shelley winters
+10
+
+Which Hollywood director made a cameo appearance at the end of The Blues Brothers?
+Steven spielberg
+10
+
+Which Hollywood heart throbs real name was Roy Scherer?
+Rock hudson
+10
+
+Which Hollywood legend won an Oscar for her starring role in Jezebel?
+Bette davis
+10
+
+Which hollywood smoothie was born dino crocetti in 1917?
+Dean martin
+10
+
+Which Hollywood star was born Fredrick Austerlitz?
+Fred astaire
+10
+
+Which holy man became a favorite of the Tsars family just before the Russian revolution?
+Rasputin
+10
+
+Which holywood actress was nicknamed profesional virgin?
+Doris day
+10
+
+Which horror movie actor's real name was William Pratt?
+Boris karloff
+10
+
+Which horror movie has had 6 sequels to date?
+Friday the 13th
+10
+
+Which horse fell heavily in the 1999 belmont stakes and terminated its triple crown dreams, and would never race again?
+Charismatic
+10
+
+Which horse had to run farther to win the Melbourne Cup-Peter Pan or Think Big?
+Peter Pan
+10
+
+Which horse has won the Grand National 3 times?
+Red rum
+10
+
+Which horse won the 1998 Aintree Grand National?
+Earth summit
+10
+
+Which horse won the 1999 belmont stakes?
+Lemon drop kid
+10
+
+Which horse won the 1999 Kentucky derby?
+Charismatic
+10
+
+Which horse won the 1999 preakness stakes?
+Charismatic
+10
+
+Which horse won the 2000 grand national?
+Papillion
+10
+
+Which horse won the Grand National in 2000?
+Papillon
+10
+
+Which horticultural fungicide, consisting of equal parts of copper sulphate and lime, bears the same name as a French port?
+Bordeaux mixture
+10
+
+Which horticultural fungicide, consisting of equal parts of copper sulphate and lime, has the same name as a French port?
+Bordeaux mixture
+10
+
+Which hospital once stood on the site of the Imperial War Museum?
+Bedlam
+10
+
+Which hot, dusty wind blows into Egypt, from the south in early spring and summer?
+Hamsin
+10
+
+Which house did winston churchill live in from 1922 to his death?
+Chartwell
+10
+
+Which household machine was invented by hubert cecil booth?
+Vacuum cleaner
+10
+
+Which human organ stores bile?
+Gall bladder
+10
+
+Which humorists middle name was Klapka?
+Jerome k jerome
+10
+
+Which hungarian composer was said to be the greatest pianist of the 19th century?
+Franz liszt
+10
+
+Which hunting weapon used by Australian aboriginals was also used by ancient egyptians?
+Boomerang
+10
+
+Which husband and wife were the only British monarchs to rule jointly as king and queen?
+William iii and mary ii
+10
+
+Which hymn first appeared in Holsts Plane Suite?
+I vow to thee my country
+10
+
+Which ice cream was advertised to the tune of It's Now Or Never?
+Cornetto
+10
+
+Which ice or snow sport was the first to gain olympic status?
+Figure skating
+10
+
+Which impressionist painter once worked as a teacher in ramsgate?
+Van gogh
+10
+
+Which independent family company is Britain's oldest brewer, having been brewing on the site in Faversham since 1698?
+Shepherd neame
+10
+
+Which Indian prime minister was killed by her bodyguards in 1984?
+Indira Gandhi
+10
+
+Which Indian river is holy to Hindus?
+The Ganges
+10
+
+Which Indian smoked fish recipe was adopted by 19th century British as a breakfast dish?
+Kedgeree
+10
+
+Which Indian tribe is mainly associated with the state of Florida?
+Seminole
+10
+
+Which individual had the highest income of anyone in the USA in the 1920s?
+Al capone
+10
+
+Which indonesian fruit is known for its unpleasant smell?
+Durian
+10
+
+Which inert gas is a fission product of uranium nuclear reactors?
+Xenon
+10
+
+Which infectious disease is characterized by a swelling of the parotid and salivary glands?
+Mumps
+10
+
+Which infectious disease is known as kissing disease?
+Glandular fever
+10
+
+Which influential book on mathematics did Euclid write?
+Elements of geometry
+10
+
+Which initials did rapper Hammer lose?
+M.C.
+10
+
+Which insect chews into wood to make a nest?
+The wasp
+10
+
+Which insect has a hearing organ in one of it's wing veins which enables it to hear the shriek of bats?
+Lacewing butterfly
+10
+
+Which insect has ears just below its knees on its front legs?
+Cricket
+10
+
+Which insect is so-called because it was dedicated to the Virgin Mary in the middle ages?
+Ladybird
+10
+
+Which insect is sometimes known as the 'darning needle'?
+Dragonfly
+10
+
+Which insect is the most eaten as a delicacy?
+Grasshopper
+10
+
+Which insect plays bass with the Chilli Peppers?
+Flea
+10
+
+Which insects use the substance propolis to glue together their homes?
+Bees
+10
+
+Which instrument developed from African and Latin-American origins features in a modern orchestra as a bass xylophone?
+Marimba
+10
+
+Which instrument did jazz musician jack teagarden principally play?
+Trombone
+10
+
+Which instrument did jazz musician louis bellson play?
+Drums
+10
+
+Which instrument did Jazz musician Thelonius Monk play?
+Piano
+10
+
+Which instrument did paganini play?
+Violin
+10
+
+Which instrument did the Jazz musician Dizzy Gillespie play?
+Trumpet
+10
+
+Which instrument did the musician Paganini play?
+Violin
+10
+
+Which instrument does tv chef jamie oliver play in his pop group?
+Drums
+10
+
+Which instrument was played by the jazz musician Miles Davis?
+Trumpet
+10
+
+Which instrumental album launched the Virgin record label?
+Tubular bells
+10
+
+Which internal combustion engine works on the principal of a rotating triangular shaft?
+Wankel engine
+10
+
+Which international alliance was set up in Vienna in 1960 to control the production and pricing of a specific commodity?
+O p e c
+10
+
+Which international footballer was known as 'Black Panther'?
+Eusebio
+10
+
+Which international organisation was set after wwi with the purpose of achieving world peace?
+League of nations
+10
+
+Which international organisation was set up in the aftermath of the first world war with the aim of attaining world peace?
+The league of nations
+10
+
+Which invader won a battle at Panipat in India in 1526?
+Babur
+10
+
+Which invention did Mark Twain become the first famous author to use?
+Typewriter
+10
+
+Which invention is credited Thomas Savery & Thomas Newcomen?
+Steam engine
+10
+
+Which invention of Whitcomb Judson of Chicago in 1891 was originally called the calsp locker and unlocker for shoes?
+Zip fastener
+10
+
+Which invention was made by joseph swan and also by thomas edison?
+Electric light bulb
+10
+
+Which Irish adventurer attempted to steal the Crown Jewels from the Tower of London in 1671?
+Colonel blood
+10
+
+Which Irish ghost is said to wail outside houses where a death is imminent?
+Banshee
+10
+
+Which Irish novelist won the 1993 booker prize?
+Roddy doyle
+10
+
+Which Irish playwrights middle names are Fingall O'Flahertie Wills?
+Oscar wilde
+10
+
+Which Irish pop band consists of' Paul Hewson, Larry Mullen, David Evans and Adam Clayton?
+U2
+10
+
+Which Irish saint was once captured and sold as a slave?
+Saint Patrick
+10
+
+Which Irish whiskey comes from the worlds oldest legal distillery?
+Bushmills
+10
+
+Which Irishman set up shelters for over 50,000 homeless children?
+Thomas Barnardo
+10
+
+Which iron warship is docked close to HMS Victory at Portsmouth?
+Hms warrior
+10
+
+Which is Africas most populous nation?
+Nigeria
+10
+
+Which is Argentina's second most populous city?
+Cordoba
+10
+
+Which is Britain's largest native carnivore?
+Badger
+10
+
+Which is cape town's major choir?
+Philharmonic choir
+10
+
+Which is colder, minus 40 degrees centigrade or minus 40 degrees fahrenheit?
+Neither
+10
+
+Which is colder, north or south pole?
+South
+10
+
+Which is colder, the north of south pole?
+South pole
+10
+
+Which is colder, the north or south pole?
+South pole
+10
+
+Which is considered the most powerful piece on the chess board?
+Queen
+10
+
+Which is Edvard Munch's most famous painting?
+The scream
+10
+
+Which is Elton John's first album?
+Empty sky
+10
+
+Which is Englands oldest golf club?
+Royal blackheath
+10
+
+Which is Europe's largest country after Russia?
+Ukraine
+10
+
+Which is farthest north, Bombay, Calcutta or Rangoon?
+Calcutta
+10
+
+Which is farthest north, Estonia, Latvia or Lithuania?
+Estonia
+10
+
+Which is farthest north, Helsinki, Oslo or Stockholm?
+Helsinki
+10
+
+Which is farthest south, Athens, Madrid or Rome?
+Athens
+10
+
+Which is farthest west, Birmingham, Bristol or Liverpool?
+Liverpool
+10
+
+Which is farthest west, Dublin, Glasgow or Lisbon?
+Lisbon
+10
+
+Which is found in an ocean the North Pole or the South Pole?
+The north pole
+10
+
+Which is furthest north Perth, Adelaide or Sydney?
+Perth
+10
+
+Which is furthest west ____ dublin, glasgow, or lisbon?
+Lisbon
+10
+
+Which is Hamilton, Ontario, Canada closer to: North Pole, Tokyo, Egypt or the equator?
+Equator
+10
+
+Which is harder quartz or steel?
+Quartz
+10
+
+Which is larger a microcomputer or a minicomputer?
+Minicomputer
+10
+
+Which is larger, the British or US pint?
+British
+10
+
+Which is Londons most frequently stolen road sign?
+Abbey road
+10
+
+Which is longer a baseball bat or a cricket bat?
+Baseball bat
+10
+
+Which is longer in humans the small intestine or the large intestine?
+Small intestine
+10
+
+Which is more fattening a baked potato or a hamburger patty?
+Hamburger patty
+10
+
+Which is more one tablespoon or two teaspoons?
+One tablespoon
+10
+
+Which is more tender, the left or right leg of a chicken?
+Left
+10
+
+Which is most valuable an ounce of gold, platinum or silver?
+Platinum
+10
+
+Which is oasis' bestselling album to date (full name)?
+What's the story (morning glory)
+10
+
+Which is oldest spring lamb, hoggett or mutton?
+Mutton
+10
+
+Which is Romania's greatest harbour?
+Constanta
+10
+
+Which is sculptor gutzon borghun's most famous work?
+Mount rushmore
+10
+
+Which is the 'quiet' ocean?
+Pacific ocean
+10
+
+Which is the 3rd nearest star to the solar system?
+Barnard's star
+10
+
+Which is the best Poker hand?
+Royal flush
+10
+
+Which is the closest town to Ayres Rock?
+Alice springs
+10
+
+Which is the country having the highest divorce rate, with a rate of 10.97 per 1,000?
+Maldives
+10
+
+Which is the country having the lowest divorce rate, with a rate of .11 per 1,000?
+Colombia
+10
+
+Which is the deepest known cave near carlsbad, new Mexico?
+Lechuigilla cave
+10
+
+Which is the deepest mine?
+Western deep levels mine
+10
+
+Which is the deepest ocean?
+Pacific
+10
+
+Which is the farthest west: Barbados, Haiti or Jamaica?
+Jamaica
+10
+
+Which is the farthest west: The Aegean, Ionian ot Tyrrhenian sea?
+Tyrrhenian
+10
+
+What is the fastest production car to date?
+Mclaren F1
+10
+
+What is the first animal listed in the Oxford English Dictionary?
+Aardvark
+10
+
+What is the fourth planet from the sun?
+Mars
+10
+
+What is the galaxy closest to the Milky Way?
+Andromeda
+10
+
+Which is the geological period before the Ordovician?
+Cambrian
+10
+
+Which is the highest capital city in Europe?
+Madrid
+10
+
+Which is the highest hill in Singapore?
+Timah hill
+10
+
+Which is the highest mountain in Canada?
+Mount Logan
+10
+
+Which is the highest mountain in England?
+Scafell Pike
+10
+
+Which is the highest mountain in Germany?
+Zugspitze
+10
+
+Which is the highest mountain outside Asia?
+Aconcagua
+10
+
+Which is the highest peak in the Andes?
+Aconcagua
+10
+
+Which is the highest poker hand 2 pairs or three of a kind?
+-- Answer metadata begin
+{
+    "answers": ["Three of a kind", "3 of a kind"]
+}
+-- Answer metadata end
+10
+
+Which is the home state of former US President Jimmy Carter?
+Georgia
+10
+
+Which is the lake that is half in California and half in Nevada?
+Lake Tahoe
+10
+
+Which is the larger of the rhinocerous, white or black?
+White
+10
+
+Which is the largest (in area) of the Australian states and territories?
+Western Australia
+10
+
+Which is the largest and heaviest instrument in a concert orchestra?
+Piano
+10
+
+Which is the largest aquatic bird?
+Albatross
+10
+
+Which is the largest artery in the human body?
+Aorta
+10
+
+Which is the largest bird of prey native to England?
+Buzzard
+10
+
+Which is the largest candy consuming nation?
+Netherlands
+10
+
+Which is the largest cathedral?
+St peter's
+10
+
+Which is the largest channel island?
+Jersey
+10
+
+Which is the largest city in India?
+Calcutta
+10
+
+Which is the largest city in Pakistan?
+Karachi
+10
+
+Which is the largest city of the Balearic Islands?
+Palma
+10
+
+Which is the largest city on Lake Michigan?
+Chicago
+10
+
+Which is the largest county in Ireland?
+Cork
+10
+
+Which is the largest English county?
+North Yorkshire
+10
+
+Which is the largest freshwater Scottish lake?
+Loch lomond
+10
+
+Which is the largest island in the caribbean?
+Cuba
+10
+
+Which is the largest island in the world?
+Greenland
+10
+
+Which is the largest joint in the human body?
+Knee
+10
+
+Which is the largest key on a standard keyboard?
+The Space Bar
+10
+
+Which is the largest known butterfly?
+Queen alexandra's birdwing
+10
+
+Which is the largest landlocked country?
+Mongolia
+10
+
+Which is the largest living bird?
+Ostrich
+10
+
+Which is the largest member of the kingfisher family?
+Kookaburra
+10
+
+Which is the largest moon in the Solar System?
+Ganymede
+10
+
+Which is the largest mountain chain in eastern u.s.a?
+Appalachians
+10
+
+Which is the largest museum in the world?
+Louvre
+10
+
+Which is the largest ocean?
+Pacific
+10
+
+Which is the largest of neptune's moons?
+Triton
+10
+
+Which is the largest of the Asteroids?
+Ceres
+10
+
+Which is the largest of the Balearic Islands?
+Majorca
+10
+
+Which is the largest of the Canadian provinces and territories?
+Northwest territories
+10
+
+Which is the largest of the Canary Islands?
+Tenerife
+10
+
+Which is the largest of the Egyptian Pyramids?
+Pyramid of Cheops
+10
+
+Which is the largest of the Greek islands?
+Crete,
+10
+
+Which is the largest of the Italian lakes?
+Garda
+10
+
+Which is the largest of the National Parks of England and Wales?
+Lake district
+10
+
+Which is the largest of the Seychelles?
+Mahe
+10
+
+Which is the largest of the Society Islands?
+Tahiti
+10
+
+Which is the largest of the solomon islands?
+Guadalcanal
+10
+
+Which is the largest of the United states?
+Alaska
+10
+
+Which is the largest planet in our solar system?
+Jupiter
+10
+
+Which is the largest planet?
+Jupiter
+10
+
+Which is the largest primate?
+Gorilla
+10
+
+Which is the largest province of Canada?
+Quebec
+10
+
+Which is the largest river forming part of the u.s-Mexico border?
+Rio grande
+10
+
+Which is the largest Scandinavian country?
+Sweden
+10
+
+Which is the largest theme resort hotel?
+Lost city
+10
+
+Which is the largets of the Scilly isles?
+St marys
+10
+
+Which is the last book of the Old Testament?
+Malachi
+10
+
+Which is the last of the four Grand Slam tennis tournaments to be played in the year?
+Us open
+10
+
+Which is the last of the year's four quarter days?
+Christmas day
+10
+
+Which is the last of the years four quarter days?
+Christmas day
+10
+
+Which is the longest bone in the body?
+Femur
+10
+
+Which is the longest river - not river system - in the U.S.A?
+The Missouri
+10
+
+Which is the longest river in asia?
+Yangtze
+10
+
+Which is the longest river in France?
+Loire
+10
+
+Which is the longest river in Italy?
+Po
+10
+
+Which is the longest river in Mexico?
+Rio grande
+10
+
+Which is the longest river in nigeria?
+Niger
+10
+
+Which is the longest river in the British isles?
+Shannon
+10
+
+Which is the longest river in the United Kingdom?
+Severn
+10
+
+Which is the longest river in the western hemisphere?
+Amazon
+10
+
+Which is the longest river system in Australia?
+The murray-darling
+10
+
+Which is the longest snake in the western hemisphere?
+Anaconda
+10
+
+Which is the longest word that can be made from one row on a keyboard?
+Typewriter
+10
+
+Which is the lowest Perfect Number?
+Six
+10
+
+Which is the lowest ranking suit in Contract Bridge?
+Clubs
+10
+
+Which is the morning star if Venus is the evening star?
+Venus
+10
+
+Which is the most abundant element in the universe?
+Hydrogen
+10
+
+Which is the most densely populated state?
+New jersey
+10
+
+Which is the most effective drug for preventing malaria?
+Quinine
+10
+
+Which is the most imp0rtant piece in chess?
+King
+10
+
+Which is the most Northerly African country through which the Greenwich meridian passes?
+Algeria
+10
+
+Which is the most Northerly African country?
+Tunisia
+10
+
+Which is the most photographed & climbed mountain?
+Mount fuji
+10
+
+Which is the most photographed and climbed mountain?
+Mount fiji
+10
+
+Which is the most populated continent in the world?
+Asia
+10
+
+Which is the most populated territory in Australia?
+New south wales
+10
+
+Which is the most venomous spider?
+Black widow
+10
+
+Which is the most watched news channel internationally?
+Cnn
+10
+
+Which is the most westerly South American country through which the Equator passes?
+Ecuador
+10
+
+Which is the most widely used expression in any language?
+Ok
+10
+
+Which is the most-consumed, man-made beverage in the world?
+Tea
+10
+
+Which is the name for classical music played by a small group of instruments?
+Chamber music
+10
+
+Which is the nearest galaxy to our own, excluding the magellanic clouds?
+Andromeda
+10
+
+Which is the nearest seaside resort to london?
+Southend
+10
+
+Which is the oldest city in britain?
+Ripon
+10
+
+Which is the oldest functioning university in the world?
+Cambridge
+10
+
+Which is the oldest of the major college football bowl games?
+Rose bowl
+10
+
+Which is the oldest passenger railway station in London?
+London bridge
+10
+
+Which is the only 10 letter word that can be spelt just using the top row of letters on a keyboard?
+Typewriter
+10
+
+Which is the only animal other than humans that can get leprosy?
+Armadillos
+10
+
+Which is the only arab country without a desert?
+Lebanon
+10
+
+Which is the only Australian state capital that is not named after a person?
+Perth
+10
+
+Which is the only bird that can see the colour blue?
+Owl
+10
+
+Which is the only body cell with no nucleus?
+Red blood cell
+10
+
+Which is the only central American country without an atlantic coastline?
+El salvador
+10
+
+Which is the only city still in existence that is mentioned in Genesis?
+Damascus
+10
+
+Which is the only city where all major sports teams have the same colours?
+Pittsburgh
+10
+
+Which is the only country that has every type of climate?
+New zealand
+10
+
+Which is the only country to never have imposed censorship for movies intended for adults?
+Belgium
+10
+
+Which is the only country to represent a letter in the phonetic alphabet?
+India
+10
+
+Which is the only county in Northern Ireland that does NOT border Lough Neagh?
+Fermanagh
+10
+
+Which is the only English word to both begin and end with the letters U-N-D?
+Underground
+10
+
+Which is the only european country where the wife does not traditionally take the husbands name on marriage?
+Spain
+10
+
+Which is the only king in a deck of cards without a moustache?
+King of hearts
+10
+
+Which is the only liquid metal element at room temperature?
+Mercury
+10
+
+Which is the only living bird with two toes on each foot?
+Ostrich
+10
+
+Which is the only London Underground station with a platform bar?
+Sloan square
+10
+
+Which is the only mammal capable of true flight?
+Bat
+10
+
+Which is the only mammal with four knees?
+Elephant
+10
+
+Which is the only mammal with hair on the soles of its feet?
+Polar bear
+10
+
+Which is the only native north American marsupial?
+Opossum
+10
+
+Which is the only one of the great lakes entirely within the u.s?
+Michigan
+10
+
+Which is the only one of the seven dwarfs not to have a beard?
+Dopey
+10
+
+Which is the only one of the seven dwarfs without a beard?
+Dopey
+10
+
+Which is the only part of an oar that should get wet?
+Blade
+10
+
+Which is the only position in Football allowed to handle the ball?
+Goalkeeper
+10
+
+Which is the only president of the usa in the 20th century not to be depicted on film (full name)?
+Warren gamaliel harding
+10
+
+Which is the only Shakespeare play with the name of an English town in the title?
+The merry wives of windsor
+10
+
+Which is the only shakespearean play without songs?
+Comedy of errors
+10
+
+Which is the only sport at which one person could win 8 Olympic golds in the same year?
+Gymnastics
+10
+
+Which is the only u.s state capital without a mcdonald's?
+Montpelier, vermont
+10
+
+Which is the only US State due south of Alaska?
+Hawaii
+10
+
+Which is the only work by Dukas most people have ever heard of?
+The sorcerer's apprentice
+10
+
+Which is the only work by Leoncavallo most people have ever heard of?
+I pagliacci
+10
+
+Which is the penultimate book of the New Testament?
+Jude
+10
+
+Which is the principal river of Romania?
+Danube
+10
+
+Which is the second largest city in England?
+Birmingham
+10
+
+Which is the second largest city in Norway?
+Bergen
+10
+
+Which is the second largest city in Sweden?
+Gothenburg
+10
+
+Which is the second largest of the great lakes of north America?
+Lake huron
+10
+
+Which is the second largest of the Japanese islands?
+Hokkaido
+10
+
+Which is the second longest river in the world?
+Amazon
+10
+
+Which is the slowest land animal?
+Sloth
+10
+
+Which is the smallest ocean?
+Arctic
+10
+
+Which is the smallest of the untied states?
+Rhode island
+10
+
+Which is the smallest u.s state?
+Rhode island
+10
+
+Which is the stately home of the Devonshire family?
+Chatsworth
+10
+
+Which is the tallest breed of dog?
+Irish wolfhound
+10
+
+Which is the third highest mountain in the world?
+Kangchenjunga
+10
+
+Which is the trailing edge of an aircraft wing?
+The rear edge
+10
+
+Which is the US Mormon State?
+Utah
+10
+
+Which is the war with the third-highest casualties of all time?
+Sino-Japanese war
+10
+
+Which is the windy city?
+Chicago
+10
+
+Which is the World's 3rd highest mountain?
+Kangchenjunga
+10
+
+Which is the world's deepest lake?
+Lake baikal
+10
+
+Which is the world's largest monolith?
+Mount augustus
+10
+
+Which is the world's second largest monolith?
+Ayers rock
+10
+
+Which is the world's warmest sea?
+Red sea
+10
+
+Which is the worlds biggest glider first used in 1982?
+US space shuttle
+10
+
+Which is the worlds busiest international airport?
+Heathrow
+10
+
+Which is the worlds hottest capital city?
+Khartoum
+10
+
+Which is the worlds largest museum - in area it covers?
+New york natural history
+10
+
+Which is the worlds oldest stock exchange?
+Antwerp
+10
+
+Which is the worlds second largest French speaking city?
+Montreal
+10
+
+Which is the worlds tallest grass?
+Bamboo
+10
+
+Which is your sternum your breastbone or tailbone?
+Breastbone
+10
+
+Which island has over 1000 stone statues scattered around?
+Easter island
+10
+
+Which island includes the New York boroughs of Queens and Brooklyn?
+Long island
+10
+
+Which island is called Kalaallit Nunaat in its own language?
+Greenland
+10
+
+Which island is known to its inhabitants as Kerkyra?
+Corfu
+10
+
+Which island left the E.E.C. in 1985?
+Greenland
+10
+
+Which island lies off the North West coast of Anglesey?
+Holy island
+10
+
+Which island lies off the southern end of the Isle of Man?
+Calf of man
+10
+
+Which island lies to the west of Australia?
+Mauritius
+10
+
+Which island was defended by Faith, Hope, and Charity during WW2?
+Malta
+10
+
+Which island was the centre of US immigration?
+Ellis
+10
+
+Which island's roads are paved with coral?
+Guam
+10
+
+Which islands lie to the east of kenya in the Indian ocean?
+The seychelles
+10
+
+Which islands natives are called Vectians?
+Isle of wight
+10
+
+Which islands way of life and culture is described as Bajun?
+Barbados
+10
+
+Which islands were named after Prince Philip of Spain?
+The Philippines
+10
+
+Which Italian actress was voted the Most Beautiful Italian Girl in Tunis 1957?
+Claudia Cardinale
+10
+
+Which Italian artist, circa 1267 - 1337, is reputed to have been able to draw a perfect circle, freehand?
+Giotto
+10
+
+Which Italian artist, circa 1487-1576 gave his name to a hair colour?
+Titian
+10
+
+Which Italian born US physicist won the 1938 Nobel Prize for Physics for his work on radioactive elements?
+Enrico fermi
+10
+
+Which Italian city is the setting for 'romeo and juliet'?
+Verona
+10
+
+Which Italian city was once ruled by a doge?
+Venice
+10
+
+Which Italian city was severely damaged by an earthquake in 1908?
+Messina
+10
+
+Which Italian composer's funeral in 1924 reputedly 'brought Italy to a standstill?
+Puccini
+10
+
+Which Italian composer's funeral in 1924 was said to have brought Rome to a standstill?
+Puccini
+10
+
+Which Italian cruise ship was attacked in 1985?
+Achille lauro
+10
+
+Which Italian dish consists of filled tubes of pasta baked in a sauce?
+Cannelloni
+10
+
+Which Italian dramatist wrote the play 'Accidental Death of an Anarchist'?
+Dario fo
+10
+
+Which Italian hard cheese is especially good for grating?
+Parmesan
+10
+
+Which Italian inventor first transmitted signals across the English Channel?
+Marconi
+10
+
+Which Italian scientist is said to have dropped cannon balls from a tower to study how they fell to earth?
+Galileo galilei
+10
+
+Which Italian seaport city is called 'La Superba'?
+It's not venice, as you might think.genoa
+10
+
+Which Italian tourist attraction was exposed as a mediaeval fake in 1988?
+Turin shroud
+10
+
+Which Italian won the 1998 Tour de France cycle race?
+Marco pantani
+10
+
+Which Italian writer wrote the periodic table?
+Primo levi
+10
+
+Which italianate village did Clough Williams-Ellis design in North Wales?
+Portmeirion
+10
+
+Which item of clothing do Eskimos (or Inuit) call mukluks?
+Sealskin boots
+10
+
+Which Ivan was Terrible?
+Ivan iv
+10
+
+Which Jane Austen novel was originally entitled First Impressions?
+Pride and prejudice
+10
+
+Which jars of clay album has a platinum record?
+Jars of clay
+10
+
+Which jazz trumpet virtuoso is credited as having invented scat' singing?
+Louis Armstrong
+10
+
+Which jello is the only jello flavor that comes from real fruit, not artificial flavoring?
+Cranberry
+10
+
+Which jethro tull lp cover showed a man leading two horses?
+Heavy horses
+10
+
+Which jeweller established the term sterling as the standard for silver in the United States in 1851?
+Tiffany
+10
+
+Which jewish American singer became a born again christian in 1979?
+Bob dylan
+10
+
+Which jewish feast remembers the salvation in Egypt?
+Passover
+10
+
+Which jockey became a best selling thriller writer?
+Dick francis
+10
+
+Which jockey rode a derby winner called pinza?
+Gordon richards
+10
+
+Which jockeys first Derby winner was Never say die?
+Lester piggott
+10
+
+Which John Updike novel features three divorcees on the make who are seduced by the devil?
+The witches of eastwick
+10
+
+Which John Wayne film was a hit for Ultravox in 1982?
+Reap the wild wind
+10
+
+Which John Wayne Western was described by a critic as, 'Grand Hotel on Wheels'?
+Stagecoach
+10
+
+Which kids were ?On The Block' in 1990?
+New
+10
+
+Which kind of religious followers refuse to pledge allegiance to anything but god?
+Jehovah's witnesses
+10
+
+Which king built a huge palace and church called the Escorial?
+Philip II of Spain
+10
+
+Which king did Daniel defy that led to him being thrown into the lions den?
+Nebuchadnezzar
+10
+
+Which King had Daniel thrown into the Lion's den?
+Darius
+10
+
+Which king had the longest reign in British history?
+George iii
+10
+
+Which King introduced the statute which instituted hall marking in England?
+Edward I
+10
+
+Which king led the English at the battle of Agincourt?
+Henry v
+10
+
+Which king married charlotte of mecklenberg strelitz?
+George the third
+10
+
+Which King of England died in 1910?
+Edward vii
+10
+
+Which king of England married Catherine of Valois, and died in 1422?
+Henry v
+10
+
+Which king of England met the king of france on the field of the cloth of gold?
+Henry viii
+10
+
+Which King of England was the son of Edward the Black Prince?
+Richard the second
+10
+
+Which king of Great Britain won world wide recognition as a stamp collector?
+George v
+10
+
+Which King of the Scots was succeeded by his stepson Lulach?
+Macbeth
+10
+
+Which king ordered the compilation of the Doomsday Book?
+William i
+10
+
+Which king supposedly ordered the waves to turn back?
+Canute
+10
+
+Which king turned whatever he touched into gold?
+Midas
+10
+
+Which king was known as 'The Hammer of the Scots'?
+Edward i
+10
+
+Which king was nicknamed Coeur de Lion?
+Richard i
+10
+
+Which kingdom was ruled by Herod the Great?
+Judaea
+10
+
+Which kitchen appliance was first designed in 1927 by the American Charles strite?
+Automatic toaster
+10
+
+Which kitchen appliance was invented by fred waring?
+Blender
+10
+
+Which kitchen device contains a magnetron?
+Microwave oven
+10
+
+Which Knight caused the death of the Lady of Shallott?
+Sir lancelot
+10
+
+Which knight of the Round Table fought the Green Knight?
+Sir gawain
+10
+
+Which knight of the round table guarded the holy grail?
+Sir perceval
+10
+
+Which knight of the Round Table was the lover of Queen Guinevere?
+Lancelot
+10
+
+Which Labelle hit did All Saints take to number 1?
+Lady marmalade
+10
+
+Which Labour MP faked suicide by a supposed drowning in 1974?
+John stonehouse
+10
+
+Which Labour Mp lost his front bench trade and industry post for taking a part time job on Sky television?
+Austin mitchell
+10
+
+Which Labour weekly did Michael Foot edit for 9 years?
+Tribune
+10
+
+Which Lakeland poet was born in 1770?
+William wordsworth
+10
+
+Which Lancashire city is home to the Old Trafford cricket ground?
+Manchester
+10
+
+Which land animal can reach the highest?
+Giraffe
+10
+
+Which land was discovered by Peter, Susan, Edmund and Lucy?
+Narnia
+10
+
+Which land was explored by the viking Erik the Red in about 982?
+Greenland
+10
+
+Which language calls itself Vlaams?
+Flemish
+10
+
+Which language do Walloons speak a version of?
+French
+10
+
+Which language does flemish most closely resemble?
+Dutch
+10
+
+Which large marsh, once a haunt of smugglers, lies between Hythe and Rye on the south coast?
+Romney marsh
+10
+
+Which large marsh, once thought bottomless, lies between Liverpool and Manchester?
+Chat moss
+10
+
+Which Latin American author wrote 'The War of the End of the World'?
+Mario vargas llosa
+10
+
+Which Latin American dance involves forming a chain?
+Conga
+10
+
+Which Latin motor-manufacturing name was originally that of a subsidiary of S.K.F. - the bearing makers - for whom the car's design engineers worked?
+Volvo
+10
+
+Which Latin phrase translates into English as 'peace be with you'?
+Pax vobiscum
+10
+
+Which latter day gameshow host had a hit with anyone who had a heart?
+Cilla black
+10
+
+Which law did sir isaac newton discover when he was only twenty three years old?
+Law of universal gravitation
+10
+
+Which lawyer broke the law by refusing to be finger-printed in the Transvaal during 1907?
+Gandhi
+10
+
+Which leader introduced reforms in Czechoslovakia in the late 60s?
+Alexander dubcek
+10
+
+Which leader was defeated at the battle of Salamis?
+Alexander
+10
+
+Which leader won the battle of Austerlitz in 1805?
+Napoleon
+10
+
+Which leader wrote his thoughts in a little red book?
+Chairman Mao
+10
+
+Which legendary American golfer was played by Glenn Ford in the 1951 movie Follow the Sun?
+Ben hogan
+10
+
+Which legendary beauty does Mephistopheles procure for Dr Faustus?
+Helen of troy
+10
+
+Which legendary hero left the ruins of Troy and sailed to Italy to found the city of Rome?
+Aeneas
+10
+
+Which legendary king of cyprus fell in love with a statue?
+Pygmalion
+10
+
+Which legendary ship is doomed to sail forever?
+The flying dutchman
+10
+
+Which leisure activity was handed to the world by an American pie company in around 1900?
+Frisbee
+10
+
+Which letter and number signyfy the vitamin riboflavin?
+B2
+10
+
+Which letter do more capital cities start with than any other?
+B
+10
+
+Which Lewis Carroll animal faded away until nothing was left but a grin?
+Cheshire cat
+10
+
+Which lifesavers flavour can emit sparks when chewed in the dark?
+Wintergreen
+10
+
+Which lighthouse designer was swept away in his lighthouse in a storm in Nov 1703?
+Henry winstanley
+10
+
+Which line of latitude separates North and South Korea?
+38th
+10
+
+Which liqueur has blackcurrant as its main source?
+Cassis
+10
+
+Which liqueur is the French equivalent of Curacao?
+Grand marnier
+10
+
+Which literary character was supposedly based on Vlad the Impaler?
+Dracula
+10
+
+Which literary traveller was accompanied by Passepartout?
+Phileas fogg
+10
+
+Which literary traveller was accompanied by the dog Toto?
+Dorothy
+10
+
+Which living bird has the longest wingspan?
+The albatross
+10
+
+Which lizard gave Culture Club a smash hit?
+Chameleon
+10
+
+Which local team did Eastenders Arhtur support?
+Walford united
+10
+
+Which loch lies closest to Glasgow?
+Loch lomond
+10
+
+Which locksmith issued the following challenge about the lock that he made- any artist who can make an instrument that will pick or open this will receive 200 guineas?
+Joseph bramah
+10
+
+Which loin of beef did Charles ii insist on knighting because he liked it so much?
+Sirloin
+10
+
+Which London airport was once a race track?
+Gatwick
+10
+
+Which London art gallery caused a furore by exhibiting a pile of bricks?
+The tate
+10
+
+Which London club saw the start of Phileas Fogg's journey?
+The reform club
+10
+
+Which London house was the home of the Duke Of Wellington. It was also known as No. 1 London?
+Apsley house
+10
+
+Which london landmark is now the depository of the royal coronation regalia?
+The tower of london
+10
+
+Which London MP is more famous as an actress?
+Glenda jackson
+10
+
+Which London shopping arcade is patrolled by Beadles?
+Burlington arcade
+10
+
+Which london station handles trains directly to the continent, through the channel tunnel?
+Waterloo
+10
+
+Which London Street identifiable by its name was inhabited by a French community in the 16th century?
+Petty france
+10
+
+Which London street is associated with bespoke tailors?
+Savile row
+10
+
+Which London street is associated with Sweeney Todd?
+Fleet street
+10
+
+Which london street is famous for its hotels?
+Park lane
+10
+
+Which London theatre house is built on the site of a well once famous for its medicinal properties?
+Sadlers wells
+10
+
+Which London tube line is usually red on maps?
+Central
+10
+
+Which London Underground line goes to Heathrow?
+Piccadilly line
+10
+
+Which London Underground Line has been extended to the Millennium Dome?
+Jubilee
+10
+
+Which London Underground Line was the last to use steam passenger trains in 1961?
+Metropolitan line
+10
+
+Which London Underground station had its name changed to Barbican in 1968?
+Aldersgate
+10
+
+Which london's church's other name is the collegiate church of st. peter?
+Westminster abbey
+10
+
+Which long motor race is held in france every june?
+Le mans 24 hour
+10
+
+Which lover of Romeo was a hit for The Four Pennies?
+Juliet
+10
+
+Which lump of rock is the worlds largest monolith?
+Ayers rock
+10
+
+Which madame popularised luncheon vouchers in the 1980's?
+Cynthia payne
+10
+
+Which made them safe enough for general use?
+Elisha g. otis
+10
+
+Which Magazine does Marge consult about parenting?
+Fretful Mother 
+10
+
+Which magazine features alfred e. newman?
+Mad magazine
+10
+
+Which magazine is subtitled 'The International Magazine for Men'?
+Penthouse
+10
+
+Which magazine was founded by John F. Kennedy Jr. in 1995?
+George
+10
+
+Which magazine was founded by the American Dewitt Wallace?
+Reader's digest
+10
+
+Which magician did lothar assist?
+Mandrake
+10
+
+Which major 1970 box office success centred on the relationship between characters played by Ryan O'neal and Ali Macgraw?
+Love story
+10
+
+Which major car manufacturer will take over the Benetton Formula 1 team next years?
+Renault
+10
+
+Which major computer network was launched in 1984?
+The Internet
+10
+
+Which major Danish tourist attraction is built out of miniature bricks?
+Legoland
+10
+
+Which major food company grew out of the Sanitas Food Company of Battle Creek, Michigan?
+Kelloggs
+10
+
+Which major horserace is held in Australia on the first tuesday in november?
+The melbourne cup
+10
+
+Which major jazz composer and bandleader was known as 'Duke'?
+Edward Kennedy Ellington
+10
+
+Which major land offensive began on the 1st July, 1916?
+Battle of the somme
+10
+
+Which major league baseball team has its stadium in south bronx?
+New york yankees
+10
+
+Which major New York leisure area was laid out by Fred Olmstead and Calvert Vaux and opened in 1876?
+Central park
+10
+
+Which major novel takes place entirely on the day of June 16 1904?
+Ulysses
+10
+
+Which major planet spins in the opposite direction to the rest?
+Venus
+10
+
+Which major river flooded and cut all rail links to Derby in November 2000?
+The derwent
+10
+
+Which major river flooded York in November 2000?
+The ouse
+10
+
+Which major river flows through gloucester?
+Severn
+10
+
+Which major US city hosts an annual grand prix auto race on its streets?
+Detroit
+10
+
+Which major US city is in Dade County?
+Miami
+10
+
+Which malaysian state is kuala lumpur in?
+Selangor
+10
+
+Which male actor won an Academy Award in 1965 for his performance in Cat Ballou?
+Lee Marvin
+10
+
+Which male christian name derives from the gaelic word for 'handsome'?
+Kenneth
+10
+
+Which mammal boasts the most nipples the cat, horse or pig?
+Pig
+10
+
+Which Mammal has the highest blood pressure?
+Giraffe
+10
+
+Which mammal has the longest lifespan?
+Man
+10
+
+Which mammals name is said to have come from an Italian word meaning 'old woman'?
+Monkey
+10
+
+Which man has made the highest individual innings at Lord's, an innings of 333?
+Graham gooch
+10
+
+Which man who invented the microphone in 1876 died on august 2, 1922?
+Alexander graham bell
+10
+
+Which man's name means Bearer of Christ?
+Christopher
+10
+
+Which manufacturing company was founded by Lord Nuffield?
+Morris motors
+10
+
+Which many headed monsters blood killed Hercules?
+Hydra
+10
+
+which map drawn about 1290 and showing Jerusalem at the centre of a falt world is kept at Hereford Cathedral?
+Mappa mundi
+10
+
+Which Marilyn Monroe film was adapted for a stage play starring Daryl Hannah in London in 2000?
+Seven year itch
+10
+
+Which Mark Twain classic was remade by Disney in 1993?
+Adventures of huckleberry finn
+10
+
+Which marlon brando film won best picture award in 1972?
+Godfather
+10
+
+Which married couple won the Nobel prize for science in 1903?
+Marie and pierre curie
+10
+
+Which marsupial is native to North America?
+Opossum
+10
+
+Which Marx Brothers film features a bunch of Nazis trying to make off with stolen treasure?
+A night in Casablanca
+10
+
+Which massacre took place 24 august 1572?
+Massacre of st bartholomew
+10
+
+Which massacre took place on 24th August 1572?
+The massacre of St Bartholomew
+10
+
+Which material can you not use in a microwave oven, plastic,glass or metal?
+Metal
+10
+
+Which measure of length used in land surveying was named after the mathematician Edmund Gunter?
+The chain
+10
+
+Which meat do Hindus not eat?
+Beef
+10
+
+Which meat on a roast turkey has more calories, white or dark?
+Dark
+10
+
+Which medical condition is detected using the Ishiharo Test?
+Colour blindness
+10
+
+Which medical instrument for listening to the sounds of the chest was invented in 1819?
+Stethoscope
+10
+
+Which medical pioneer taught his students under the shade of a plane tree on the island of Cos?
+Hippocrates
+10
+
+Which medical soap premiered on april fool's day, 1963?
+General hospital
+10
+
+Which medication company's slogan is wake up your liver bile?
+Carter's Little Liver Pills
+10
+
+Which Mediterranean island has coasts on three seas - Mediterranean, Ionian, and Tyrrhenian?
+Sicily
+10
+
+Which Mediterranean island is named after a metal?
+Cyprus
+10
+
+Which Mediterranean island is named after the soldiers who were skilled in the use of slings?
+The balearics
+10
+
+Which Mediterranean island once housed Napoleon?
+Elba
+10
+
+Which Mediterranean island was divided into two in 1974?
+Cyprus
+10
+
+Which member of 'the oak ridge boys' is a former radio disc jockey?
+Duane allen
+10
+
+Which member of Led Zeppelin died, leading to the breakup of the band?
+Bonham
+10
+
+Which member of Margaret Thatcher's Cabinet was once an airline pilot?
+Norman tebbit
+10
+
+Which member of Queen had a top ten hit with Love Kills?
+Freddie mercury
+10
+
+Which member of the British parliament is known as The beast of Bolsover?
+Dennis skinner
+10
+
+Which member of the Cabinet draws the largest salary?
+Lord chancellor
+10
+
+Which member of the camel family has no hump?
+Llama
+10
+
+Which member of the carp family is most regularly sold by British pet shops?
+Goldfish
+10
+
+Which member of the Dynasty cast was born near Paddington Station on 23 may 1933?
+Joan collins
+10
+
+Which member of the European birch tree family produces edible nuts of the same name?
+Hazel
+10
+
+Which member of the Monty Python team turned up as an English sheriff in the spoof western Silverado?
+John cleese
+10
+
+Which member of the peanuts gang once said 'there's no heavier burden than a great potential'?
+Linus
+10
+
+Which member of the Royal Family has a daughter called Gabriella Windsor?
+Princess Michael of Kent
+10
+
+Which member of the royal family was born in the Hampshire village of Dummer?
+Duchess of york
+10
+
+Which member of the royal family was christened on Dec 21 1984?
+Prince Harry
+10
+
+Which member of the royal family was described as a kinky devil by his former girlfriend Vicki Hodge?
+Prince andrew
+10
+
+Which member of the UK government resigned after a scandal in 1983?
+Cecil parkinson
+10
+
+Which member of the wkrp staff did loni anderson play?
+Jennifer
+10
+
+Which member of Wings went bankrupt in 1986?
+Denny laine
+10
+
+Which meridian does the international date line approximately follow through the pacific ocean?
+180 degree meridian
+10
+
+Which metal is always present in an amalgam?
+Mercury
+10
+
+Which metal is combined with lead to make pewter?
+Tin
+10
+
+Which metal is extracted from the ore haematite?
+Iron
+10
+
+Which metal is in liquid state at ordinary room temperature?
+Mercury
+10
+
+Which metal is liquid at normal temperatures?
+Mercury
+10
+
+Which metal is normally liquid?
+Mercury
+10
+
+Which metal is represented by the symbol ba?
+Barium
+10
+
+Which metal is used for the element in the electric light?
+Tungsten
+10
+
+Which metal, with the atomic number 3, is the lightest known solid element?
+Lithium
+10
+
+Which Mexican rebel was shot to death in 1923?
+Pancho Villa
+10
+
+Which michael jackson song could have referred to a tennis star?
+Billie jean
+10
+
+Which Middle eastern city is the home of the Evil Council?
+Jerusalem
+10
+
+Which middle eastern country's official name is al-lubnan?
+Lebanon
+10
+
+Which middle name did UK Prime Minister Winston Churchill share with Charlie Chaplin?
+Spencer
+10
+
+Which military commander won the victories of Blenheim,Ramilles,Oudenarde and Malplaquet?
+Duke of marlborough
+10
+
+Which milk has more fat than cow milk?
+Reindeer
+10
+
+Which Millais painting was later used in adverts for soap?
+Bubbles
+10
+
+Which Milton Bradley 'Capture-the-flag' board game features spies, scouts and bombs?
+Stratego
+10
+
+Which Mindbenders track did Phil Collins take to number 1?
+Groovy kind of love
+10
+
+Which mineral has the chemical formula fes2?
+Iron pyrites
+10
+
+Which mineral is 9 on the moh's hardness scale?
+Corundum
+10
+
+Which minister traditionally lives at no 11 Downing Street?
+Chancellor of the exchequer
+10
+
+Which minister was hanged at salem massachusetts for witchcraft?
+George burroughs
+10
+
+Which ministerial post has a higher salary than Prime Ministers?
+The lord chancellor
+10
+
+Which miracle did Jesus perform at Cana?
+Water into wine
+10
+
+Which mobster first built a gambling resort in the nevada desert that became las vegas?
+Bugsy siegel
+10
+
+Which model was a judge for the 1999 Whitbread Literary Prize?
+Jerry hall
+10
+
+Which modem country was formerly Nyasaland?
+Malawi
+10
+
+Which modern author wrote the regeneration trilogy?
+Pat barker
+10
+
+Which modern city was once called Byzantium?
+Istanbul
+10
+
+Which modern country made up most of Gaul in modern times?
+France
+10
+
+Which modern country occupies the former Roman province of Lusitania?
+Portugal
+10
+
+Which modern country was called Siam?
+Thailand
+10
+
+Which modern Irish writer's novels include dublin four and evening class?
+Maeve binchy
+10
+
+Which monarch bought the estate of Sandringham?
+Queen victoria
+10
+
+Which monarch signed the Magna Carta at Runnymede?
+King john
+10
+
+Which monarch was the first to appear on a postage stamp?
+Queen victoria
+10
+
+Which Monopoly token was voted most popular by players in 1998?
+The Race Car
+10
+
+Which monster legend first came into being in 1921 when large footprints were photographed in the snow?
+The yeti
+10
+
+Which month gives its name to the Hawthorn Blossom?
+May
+10
+
+Which month has an extra day every 4 years?
+February
+10
+
+Which month was named after caesar augustus?
+August
+10
+
+Which month was named after julius caesar?
+July
+10
+
+Which months are named after men who actually lived?
+July and august
+10
+
+Which Months have 28 Days?
+All of them
+10
+
+Which Moody Blues album takes its title from the famous mnemonic spelling out the lines of the treble stave?
+Every good boy deserves favour
+10
+
+Which moon was discovered on 22 June 1978?
+Charon
+10
+
+Which mother and daughter supersatrs were both coached by Kay Thompson?
+Judy garland and liza minelli
+10
+
+Which motor company has the emblem of the prancing horse?
+Ferrari
+10
+
+Which motor company produces the alhambra?
+Seat
+10
+
+Which motor manufactuer made a model called the acclaim?
+Triumph
+10
+
+Which motorway is, being developed as a ring motorway round Manchester?
+M60
+10
+
+Which mountain is considered to be the earths largest volcano?
+Mauna loa
+10
+
+Which mountain is the highest in the Alps?
+Mont blanc
+10
+
+Which mountain peak is the highest in the Western Hemisphere?
+Aconcagua
+10
+
+Which mountain range acts as a physical boundary between Europe and Asia?
+The urals
+10
+
+Which mountain range forms a geographical boundary between Europe and Asia?
+Urals
+10
+
+Which mountain range is climbes by the worlds highest railway?
+The andes
+10
+
+Which mountain range is traversed by the highest railroad?
+Andes
+10
+
+Which mountain range reaches from the Black Sea through Georgia to the Caspian Sea?
+Caucasus
+10
+
+Which mountain shares its name with one of the three musketeers?
+Athos
+10
+
+Which mountain was the home of the Greek Gods?
+Mount olympus,
+10
+
+Which mountains are between the Caspian Sea and the Black Sea?
+Caucasus
+10
+
+Which mountains did Lewis and Clark lead an expedition across?
+The rockies
+10
+
+Which mountains form the spine of Italy?
+The apennines
+10
+
+Which move faster, frogs or toads?
+Frogs
+10
+
+Which moves faster, frogs or toads?
+Frogs
+10
+
+Which movie about a tv news show won peter finch a posthumous oscar?
+Network
+10
+
+Which movie actor starred in From Here to Eternity,Elmer Gantry and Birdman of Alcatraz?
+Burt lancaster
+10
+
+Which movie did cher, michelle pfeiffer & susan sarandon star together in?
+The withches of eastwick
+10
+
+Which movie did Skinner take Patty to see?
+Space Mutants V: The Land Down Under
+10
+
+Which movie had a device known as a flux-capacitor?
+Back to the Future
+10
+
+Which movie holds the record for the most number of kisses, at 127?
+Don juan
+10
+
+Which movie prompted the style of wearing cutoff sweatshirts over the shoulder?
+Flashdance
+10
+
+Which movie was NOT directed by Inoshiro Honda? A.Godzilla, King of Monsters. B.Latitude Zero. C.Mothra D.8 Man?
+D.8 Man
+10
+
+Which movie won the most oscars?
+Ben hur
+10
+
+Which MP introduced a bill in 1876 making a loading line on ships compulsory?
+Samuel plimsoll
+10
+
+Which much loved character was killed off in a fire on BBC radio to compete for an audience tuning in to the first ITV broadcast?
+Grace archer
+10
+
+Which municipal appointment did Richard Whittington hold?
+Lord mayor of london
+10
+
+Which muscian was halfway between the gutter?
+Fat boy slim
+10
+
+Which museum houses the Venus de Milo?
+The louvre
+10
+
+Which museum in Washington DC is said to be the largest in the world?
+The smithsonian institute
+10
+
+Which museum now occupies the site of the old Bedlam Hospital in London?
+Imperial war museum
+10
+
+Which music group played at the halftime show of the super bowl?
+Hooray for Everything 
+10
+
+Which musical contains the songs: Tonight and Maria?
+West side story
+10
+
+Which musical featured the song 'If I ruled the world'?
+Pickwick
+10
+
+Which musical features the song 'Happy Talk'?
+South pacific,
+10
+
+Which musical features the song some enchanted evening?
+South pacific
+10
+
+Which musical includes the Barbara Dickson/Elaine Page song I Know Him So Well?
+Chess
+10
+
+Which musical instrument did Dizzy Gillespie play?
+Trumpet
+10
+
+Which musical instrument did Pablo Casals play?
+Cello
+10
+
+Which musical instrument does Bill Clinton play?
+Saxophone
+10
+
+Which musical instrument has a mouthpiece called a 'fipple'?
+Recorder
+10
+
+Which musical is set around The taming of the shrew?
+Kiss me kate
+10
+
+Which musical note is the longest?
+Breve
+10
+
+Which musical term denotes that a piece is to be played 'sweetly'?
+Dolce
+10
+
+Which musical term denotes that the pitch of a note is lowered by a semitone?
+Flat
+10
+
+Which musical term means a mass for the dead?
+Requiem
+10
+
+Which musical was based on H.G.Wells' novel 'Kipps'?
+Half a sixpence
+10
+
+Which musical was based on the play The Matchmaker?
+Hello Dolly
+10
+
+Which musical won the Oscar for Best Picture in 1961?
+West side story
+10
+
+Which musician fronted the Tubeway Army?
+Gary numan
+10
+
+Which musician holds the record for the most carreer gold records?
+Paul mccartney
+10
+
+Which musician is married to Cleo Laine?
+John dankworth
+10
+
+Which musician of non-u.k. citizenship was awarded an honorary knighthood (kbe) in 1986?
+Bob geldof
+10
+
+Which musician was awarded the National Humanties Medal for his efforts to preserve WaldenWoods?
+Don Henley
+10
+
+Which mutiny was directed against Captain Queeg?
+The caine mutiny
+10
+
+Which mythical animal is half man half seal?
+Silkie
+10
+
+Which mythical creature has a lion's head, a goat's body, and a dragon's tail?
+Chimaera
+10
+
+which mythical creature was the symbol of virginity?
+Unicorn
+10
+
+Which mythical land was supposed to lie between Cornwall and the Scilly Isles?
+L yonesse
+10
+
+Which mythological creature was half man, half horse?
+Centaur
+10
+
+Which name has been most frequently chosen by roman catholic popes?
+John
+10
+
+Which nation has Dzongkha as its officail language?
+Bhutan
+10
+
+Which nation has the longest predicted life expectancy for both men and women?
+Liechtenstein
+10
+
+Which nation provided reinforcements for the British at Waterloo?
+Prussia
+10
+
+Which nation recently won the Alfred Dunhill Cup at St. Andrews?
+Spain
+10
+
+Which nation was led by Genghis Khan?
+The mongols
+10
+
+Which nation won the most medals in the 1994 winter olympics?
+Norway
+10
+
+Which nation, on average, takes the longest time over its meals?
+France
+10
+
+Which national park contains the lowest point in the western hemisphere?
+Death valley national park
+10
+
+Which nationalist assumed the title govenor of Scotland in 1297?
+William wallace
+10
+
+Which nationality was matthias grunewald?
+German
+10
+
+Which Native American princess saved the life of settler John Smith in 1606?
+Pocahontas
+10
+
+Which NATO country is the world's largest producer of Uranium?
+Canada
+10
+
+Which natural feature has been nicknamed The Lamp of Phoebus?
+The sun
+10
+
+Which natural phenomenon can be measured on the mercalli scale?
+Earthquakes
+10
+
+Which natural wonder did Cook explore off eastern Australia?
+The great barrier reef
+10
+
+Which nazi broadcaster was known as lord haw-haw?
+William joyce
+10
+
+Which nazi leader had his 6 children poisoned prior to his own death?
+Goebbels
+10
+
+Which Nepalese mountain was first climbed by Maurice Herzog?
+Annapurna
+10
+
+Which new engine regulation replaced the 2.5 litre rule at the start of the 1961 season?
+1.5 litre
+10
+
+Which new London airport was opened by the queen in 1987?
+London city airport
+10
+
+Which new M.P. for Oldham entered Parliament in 1900, the year his first novel was published?
+Winston churchill
+10
+
+Which New Mexico town adopted the name of a radio quiz show?
+Truth or consequences
+10
+
+Which new wave icon appears as himself in the film the wedding singer?
+Billy idol
+10
+
+Which New York City building was finished in 1931?
+Empire state building
+10
+
+Which new zealand model did rod stewart marry in 1990?
+Rachel hunter
+10
+
+Which new zealand novelist won the booker prize with her novel the bone people?
+Keri hulme
+10
+
+Which new-wave band rocked the Casbah?
+The Clash
+10
+
+Which newspapaer launched a ferry aid single that managed to include large chested Linda Lusardi in its list of pop stars?
+The sun
+10
+
+Which newspaper did mahatma ghandhi edit during his stay in south africa?
+Indian opinion
+10
+
+Which newspaper owner's name became an exclamation of surprise or disbelief?
+Gordon bennett
+10
+
+Which NFL team's defensive unit was nicknamed 'The Purple People Eaters'?
+Minnesota Vikings
+10
+
+Which nglish county boasts the longest stretch of coastline?
+Cornwall
+10
+
+Which nhl franchise holds the record for the longest unbeaten streak?
+Philadelphia flyers
+10
+
+Which NHL Montreal Canadien goalie had a nickname of Jake the Snake?
+-- Answer metadata begin
+{
+    "answers": ["Jacques Plante ", " "]
+}
+-- Answer metadata end
+10
+
+Which nhl team won the stanley cup in both 1997 and 1998?
+Detroit red wings
+10
+
+Which nigerian won the booker prize in 1991 with 'the famished road'?
+Ben okri
+10
+
+Which nightingale sings the male or the female?
+Male
+10
+
+Which nineteenth century author is buried in Samoa?
+Robert louis stevenson
+10
+
+Which Nobel Prize was won by Henry Kissinger?
+Peace
+10
+
+Which Nobel Prize winner wrote 'The Old Man and the Sea?
+Ernest hemingway
+10
+
+Which Noel Coward play formed the basis for the film 'Brief Encounter'?
+Still life
+10
+
+Which norman king of England began building the tower of London?
+William I
+10
+
+Which Norse goddess kept the apples of youth?
+Idun
+10
+
+Which north african city was first visited by the europeans in the 1820s?
+Timbuktu
+10
+
+Which north western Italian city is known in that country as Torino?
+Turin
+10
+
+Which northern Italian city has a summer open air opera season?
+Verona
+10
+
+Which Northumberland castle is claimed to be the second largest inhabited castle in the world?
+Alnwick
+10
+
+Which note does a symphony orchestra tune to?
+A
+10
+
+Which notorious Australian robber was hanged at Melbourne in 1880?
+Ned kelly
+10
+
+Which notorious British murderer appears in alban berg's unfinished opera lulu?
+Jack the ripper
+10
+
+which notorious citizen of York was born in stonegate and hanged n London in 1606?
+Guy fawkes
+10
+
+Which number completes the group's name: s club - what?
+Seven
+10
+
+Which number could not be represented in the Roman numbering system?
+Zero
+10
+
+Which number is at the top of a dartboard?
+Twenty
+10
+
+Which number on a roulette wheel is coloured green?
+Zero
+10
+
+Which number psalm begins, 'The Lord is my Shepherd I shall not want'?
+23rd
+10
+
+Which number results if you add the number of Apostles to the number of sides in a decagon?
+22
+10
+
+Which number system only uses 1 and 0?
+Binary system
+10
+
+Which nurse organized a hospital for British troops during the Crimean War?
+Florence Nightingale
+10
+
+Which nursery rhyme is supposed to be based in the 'Black Death'?
+Ring o ring o roses
+10
+
+Which nursery rhyme was the first gramophone recording?
+Mary had a little
+10
+
+Which nut is used to make Marzipan?
+Almond
+10
+
+Which object was known as a Churchwarden?
+Long clay pipe
+10
+
+Which ocean are the West Indies on?
+Atlantic
+10
+
+Which ocean can you swim in from the Seychelles?
+Indian
+10
+
+Which ocean does the Zambezi river empty into?
+Indian ocean
+10
+
+Which ocean has an area of approximately 166 sq km?
+Pacific ocean
+10
+
+Which ocean is at its deepest in the Puerto Rico trench?
+Atlantic
+10
+
+Which ocean is deeper the Atlantic or the Pacific?
+Pacific
+10
+
+Which ocean is the worlds deepest on average?
+Pacific
+10
+
+Which ocean lies north of Guyana?
+Atlantic
+10
+
+Which ocean liner made its maiden voyage in may 1936?
+Queen mary
+10
+
+Which ocean surrounds hawaii?
+Pacific
+10
+
+Which ocean was Balboa the first european to see in 1513?
+Pacific
+10
+
+Which oceanic plate lies off the Andes?
+Nazca
+10
+
+Which of allegro, presto and andante is the fastest in music?
+Presto
+10
+
+Which of Arthurs knights undertook the Seige Perilous?
+Galahad
+10
+
+Which of Atlanta, St Louis and San Franciso is a US state capital?
+Atlanta
+10
+
+Which of boston, Chicago and New York City is a u.s. state capital?
+Boston
+10
+
+Which of Charles dickens' novels in set partly in America?
+Martin chuzzlewit
+10
+
+Which of Charles Dickens' novels is mainly set in the Marshalsea Prison?
+Little dorritt
+10
+
+Which of Dicken's novels is set during the Gordon Riots?
+Barnaby rudge
+10
+
+Which of Henry VIII's wives was his siter-in-law?
+Catherine of aragon
+10
+
+Which of Henry VIIIs wives outlived him?
+Catherine parr
+10
+
+Which of his old songs, with new lyrics, did Elton John record as a tribute to Diana?
+Candle in the wind
+10
+
+Which of his operas did Sullivan have to rewrite in America because hed left the music in England?
+The pirates of penzance
+10
+
+Which of hitler's deputies parachuted into Scotland to negotiate peace terms?
+Rudolf hess
+10
+
+Which of India's states is thought to have the largest Sikh population?
+Punjab
+10
+
+Which of its products did Heinz try to squeeze out in November 1999?
+Salad cream
+10
+
+Which of Jacobs sons had a coat of many colours?
+Joseph
+10
+
+Which of Jesus' desciples was described as doubting?
+Thomas
+10
+
+Which of Mars, Mercury & Neptune cannot be seen with the naked eye?
+Neptune
+10
+
+Which of Mary's arms supports Jesus in Michelangelo's 'Pieta'?
+Right
+10
+
+Which of maryland, massachusetts and vermont isnt one of the us's new England states?
+Maryland
+10
+
+Which of Shakespeare's plays begins with the line 'Now is the winter of our discontent.'?
+Richard the Third
+10
+
+Which of Shakespeare's plays contains the most number of words?
+Hamlet
+10
+
+Which of Shakespeare's plays involves a pound of flesh?
+The merchant of venice
+10
+
+Which of Shakespeare's plays is about a black soldier?
+Othello
+10
+
+Which of Shakespeare's plays is set in the Forest of Arden?
+As you like it
+10
+
+Which of snow white's dwarfs was mute?
+Dopey
+10
+
+Which of tea leaves or coffee beans have more caffeine?
+Tea leaves
+10
+
+Which of the 48 contiguous U.S. states has the fewest people?
+Wyoming
+10
+
+Which of the 5 senses is less sharp after you eat too much?
+Hearing
+10
+
+Which of the American Marshal Islands became famous as a nuclear test site?
+Bikini atoll
+10
+
+Which of the Beatles group played piano on Don't Pass Me By?
+Ringo starr
+10
+
+Which of the Bee Gees' Gibb brothers is NOT a twin?
+Barry
+10
+
+Which of the big cats lives in the mountains of Asia?
+The snow leopard
+10
+
+Which of the brightest stars is furthest north?
+Capella
+10
+
+Which of the channel islands is famous for its lack of cars?
+Sark
+10
+
+Which of the five great lakes is entirely in the us?
+Michigan
+10
+
+Which of the five senses are you most likely to lose if hit by lightning?
+Hearing
+10
+
+Which of the five senses develops first?
+Smell
+10
+
+Which of the five senses is less sharp after you eat too much?
+Hearing
+10
+
+Which of the following authors had more of their books borrowed from libraries in the UK in the year 2000 than the others? Danielle Steel, Ruth Rendell or Patricia Cornwell?
+Daniell Steel 
+10
+
+Which of the following is NOT the name of an American Indian tribe? Iroquois, Sunni or Navajo?
+Sunni
+10
+
+Which of the following is the smallest paper size; A3, A4, or A5?
+A5
+10
+
+Which of the four seasons should a tulip bulb be planted in?
+Autumn
+10
+
+Which of the four teenage mutant ninja turtles was named after an artists and/or sculptor that did not occur in the same time period as the other three?
+Donatello
+10
+
+Which of the goodies on tv was a doctor?
+Graham garden
+10
+
+Which of the Great Train Robbers became a florist outside Waterloo station?
+Buster edwards
+10
+
+Which of the halogens is liquid at room temperature?
+Bromine
+10
+
+Which of the hawaiian islands has active volcanoes?
+Hawaii
+10
+
+Which of the Hawaiian islands have active volcanoes?
+Hawaii
+10
+
+Which of the London underground lines was the world's first?
+Metropolitan
+10
+
+Which of the major planets isnt named after a god?
+Earth
+10
+
+Which of the Marx brothers wore a painted on false moustache?
+Groucho
+10
+
+Which of the Old Testarnent prophets was taken up to Heaven in a fiery chariot?
+Elijah
+10
+
+Which of the primary colors of light has the highest energy?
+Blue
+10
+
+Which of the proffessionals was played by martin shaw?
+Doyle
+10
+
+Which of the senses does the olfactory nerve serve?
+Smell
+10
+
+Which of the senses is poorly developed in most birds?
+Smell
+10
+
+Which of the senses outlasts all others in a human lifetime?
+Taste
+10
+
+Which of the services resolved the Balcombe Street siege?
+Police
+10
+
+Which of the seven dwarfs is ashamed to take his hat off?
+Bashful
+10
+
+Which of the seven dwarfs plays the organ?
+Grumpy
+10
+
+Which of the seven dwarves comes first alphabetically?
+Bashful
+10
+
+Which of the seven hills of Rome gives its name to the Italian presidential palace?
+Quirinal hill
+10
+
+Which of the seven wonders of the ancient world was alive?
+The hanging gardens of babylon
+10
+
+Which of the seven wonders of the ancient world was built by a ruler's sister/widow?
+Mausoleum of halicarnassus
+10
+
+Which of the seven wonders of the world was constructed by the sculptor phidias about 430 b.c?
+Statue of zeus
+10
+
+Which of the seven wonders of the world was in Babylon?
+The hanging gardens
+10
+
+Which of the twelve largest islands in the World lies directly between Borneo and New Guinea?
+Celebes
+10
+
+Which of the two chipmunks has a black nose?
+Chip
+10
+
+Which of the two hits by 'the fireflies' made it to number 22 in 1959?
+You were mine
+10
+
+Which of the United States is nicknamed the Equality State?
+Wyoming
+10
+
+Which of the wright brothers flew their plane, based on the toss of a 50-cent piece?
+Orville
+10
+
+Which of these animals does not grow one or more horns? The caribou, the giraffe or the rhinoceros?
+The caribou
+10
+
+Which of these is NOT a computer: MANIAC, SILLIAC, BRAINIAC, ILLIAC, JOHNNIAC?
+BRAINIAC
+10
+
+Which of these is not a prime number-5,7,9,11?
+9
+10
+
+Which of these is not one of the Corrs-Andrea,Colleen,Sharon?
+Colleen
+10
+
+Which of these islands is the largest - anglesey or mull?
+Mull
+10
+
+Which of these nuts is not actually a nut - peanut, cashew nut, macademia nut?
+Peanut
+10
+
+Which officer commands a platoon?
+Lieutenant
+10
+
+Which oil bearing substance did Noah use to coat the Ark and make it waterproof?
+Pitch
+10
+
+Which old testament figure was the father of ham, shem and japheth?
+Noah
+10
+
+Which Old Testament King was succeeded by his son Rehoboam?
+Solomon
+10
+
+Which Oliver Stone film won the Oscar for the best film in 1986?
+Platoon
+10
+
+Which Olympic event did Mary Peters win in 1972?
+Womens pentathlon
+10
+
+Which Olympic event involves throwing a 5lb 6.55oz object?
+Mens discus
+10
+
+Which Olympic gold medallist became the MP for Falmouth and Camborne in 1992?
+Sebastian coe
+10
+
+Which Olympics did the US boycott?
+980
+10
+
+Which once-common disease was also known as the 'white death'?
+Tuberculosis
+10
+
+Which one does most of the hunting the male or the female lion?
+Female
+10
+
+Which one is Frankenstein the monster or the man who made him?
+Man who makes him
+10
+
+Which one is smallest boulder, pebble or stone?
+Pebble
+10
+
+Which one man band released the album 'mellow gold'?
+Beck
+10
+
+Which one of edgar bergen's dummies claims snerdsville, iowa as his hometown?
+Mortimer snerd
+10
+
+Which one of holden caulfield's brothers died of leukemia in the novel catcher in the rye?
+Allie
+10
+
+Which one of rc, rl and rlc circuits which one oscillates charge?
+Rlc
+10
+
+Which one of the a team was a pilot?
+Murdoch
+10
+
+Which one of the Beverley Sisters was not a twin?
+Joy
+10
+
+Which one of the world's four largest countries doesn't have any stars on its flag?
+Canada
+10
+
+Which one of these are NOT are a part of the endocrine system...pituitary gland, the thyroid or the duodenum?
+Duodenum
+10
+
+Which one seldom goes in the water a frog or a toad?
+Toad
+10
+
+Which one wears a small moustache Laurel or Hardy?
+Hardy
+10
+
+Which one word can mean all of the following: a water bird, to bend down or zero score?
+Duck
+10
+
+Which one word connects Illinois, Mary O'Brien and 'The Simpsons'?
+Springfield
+10
+
+Which one word describes all of the following, a type of sandpiper, an Elizabethan collar and to trump at cards?
+Ruff
+10
+
+Which one word links a Scottish river, the captain of the New Zealand Rugby Union team, and a BBC comedy programme?
+Blackadder
+10
+
+Which one-armed civil war veteran led the first expedition through the grand canyon on the colorado river?
+John wesley powell
+10
+
+Which Ontario town claims to be the birthplace of A.A. Milne's Winnie the Pooh?
+White River
+10
+
+Which opear tells the story of a girl who works in a cigarette factory?
+Carmen
+10
+
+Which opera is 20 hours long and had a special theatre built for its first performance?
+Der ring des nibelungen
+10
+
+Which opera singer sang Perhaps Love with John Denver?
+Placido domingo
+10
+
+Which opera was comissioned by the Khedive of Egypt?
+Verdis aida
+10
+
+Which opera, based on Bizet's Carmen, is set in a parachute factory?
+Carmen jones
+10
+
+Which opera, composed by saint-saens, and first performed in 1877, is set in palestine?
+Samson and delilah
+10
+
+Which opera's cast list includes an owl,woodpecker,gnat,badger,jay,frog,grasshopper and a fox?
+The cunning little vixen
+10
+
+Which opera/musical is set in Catfish Row?
+Porgy & bess
+10
+
+Which operetta is subtitled 'The Slave of Duty'?
+Pirates of penzance
+10
+
+Which organ in the body is inflamed in nephritis?
+Kidney
+10
+
+Which organ of the body produces bile?
+Liver
+10
+
+Which organisation has the motto Blood and Fire?
+The salvation army
+10
+
+Which organisation has the motto For home and country?
+The womens institute
+10
+
+Which organisation is the subject of Stephen Knights book The Brotherhood?
+Freemasons
+10
+
+Which organisation killed Aldo Moro?
+The red brigade
+10
+
+Which organisation said to Mrs Thatcher, we only have to be lucky once, you have to be lucky always?
+The ira
+10
+
+Which organisation was founded by Nathan Bedford Forrest in 1865?
+Ku klux klan
+10
+
+Which organisation was founded by William Booth?
+Salvation army
+10
+
+Which organization was awarded the Nobel Peace Prize during WWll?
+The red cross
+10
+
+Which organs do the renal arteries carry blood too?
+Kidneys
+10
+
+Which oscar winning actress married media mogul Ted Turner in 1991?
+Jane fonda
+10
+
+Which Oscar winning film portrayed events about the Khmer Rouge massacres in Cambodia?
+The Killing Fields
+10
+
+Which Oscar-winning actor's only film as a director was the 1961 Western One-Eyed Jacks?
+Marlon brando
+10
+
+Which oscar-winning film of the 1980s was directed by hugh hudson?
+Chariots of fire
+10
+
+Which other left wing faction did the Bolsheviks defeat to take control after the Russian revolution?
+Mensheviks
+10
+
+Which outlaw is the favourite subject of the artist Sidney Nolan?
+Ned kelly
+10
+
+Which outlaws real name was William Bonney?
+Billy the kid
+10
+
+Which ovine expression is used for a disreputable member of a family or group?
+Black sheep
+10
+
+Which ovine expression is used to describe a wishful amorous glance?
+Sheep's eyes
+10
+
+Which Oxford College's Chapel is also Oxford's Cathedral?
+Christ church
+10
+
+Which Pacific republic was formerly known as the New Hebrides?
+Vanuatu
+10
+
+Which pain relieving product was subjected to a public relations scare in the eighties?
+Tylenol
+10
+
+Which painter drew early ideas for a helicopter?
+Da vinci
+10
+
+Which painter gave his name to a shade of red?
+Titian
+10
+
+Which painter threw a knife at Paul Gauguin in the french town of Arles?
+Vincent van gogh
+10
+
+Which painter, famous for his pop-art, died in 1997?
+Roy lichtenstein
+10
+
+Which painting medium is an emulsion of egg yolks and water?
+Tempera
+10
+
+Which pair of 19th century showmen ran The Greatest Show on Earth?
+Phineas barnum and james bailey
+10
+
+Which Pakistani cricketer married heiress Jemima Goldsmith?
+Imran khan
+10
+
+Which Palace has over 600 rooms?
+Buckingham
+10
+
+Which palace was built by Henry VIII on the site of a leper hospital?
+Saint james's
+10
+
+Which Paradise was a hit for Coolio featuring LV?
+Gangsta's
+10
+
+Which parent determines the gender of their offspring?
+Father
+10
+
+Which Paris building has a glass pyramid in its forecourt?
+The louvre
+10
+
+Which Paris fashion house produced the perfume Ma Griffe?
+Carven
+10
+
+Which parrot attacks sheep?
+Kea
+10
+
+Which part of a book is also a type of finger?
+Index
+10
+
+Which part of a car's engine regulates the mixture of air and petrol?
+The carburetor
+10
+
+Which part of Africa was known as 'The Land of Gold'?
+Ghana
+10
+
+Which part of the body is affected by encephalitis?
+Brain
+10
+
+Which part of the body is affected by phlebitis?
+Veins
+10
+
+Which part of the body is affected by the condition nephritis?
+Kidneys
+10
+
+Which part of the body is affected by the condition stomatitis?
+Mouth
+10
+
+Which part of the body is associated with the adjective 'pulmonary'?
+Lungs
+10
+
+Which part of the body is associated with the adjective 'renal'?
+Kidneys
+10
+
+Which part of the body is most affected by the disease diptheria?
+Throat
+10
+
+Which part of the body is operated on in a menisectomy?
+Knee
+10
+
+Which part of the body is technically known as the Thorax?
+Chest
+10
+
+Which part of the body may be described as Varicose?
+Veins
+10
+
+Which part of the body suffers from opthalmia?
+Eyes
+10
+
+Which part of the human body does Gingivitus affect?
+Gums
+10
+
+Which part of the human eye controls the size of the pupil?
+Iris
+10
+
+Which part of the human eye may be removed and kept in an eye bank?
+Cornea
+10
+
+Which part of the pig is used for ham?
+Top of the hind legs
+10
+
+Which part of the tree produces the aromatic bitter of Angostura Bitters?
+Bark
+10
+
+Which part of the world was explored by Fridtjof Nansen?
+The artic
+10
+
+Which part of the world was explored by Mungo Park?
+West africa
+10
+
+Which part of your body has rods & cones?
+Eye
+10
+
+Which part of your body might suffer from a stigmatism?
+Eyes
+10
+
+Which part of your body would be affected if you suffer from chilblaines?
+Feet
+10
+
+Which particles, when emitted by radioactive nuclei, are known as beta particles?
+Electrons or positrons
+10
+
+Which partner of Mary Ford designed and gave his name to a famous guitar?
+Les Paul
+10
+
+Which partnership was responsible for the musical Paint Your Wagon?
+Lerner & loewe
+10
+
+Which pastry is traditionally used to make the Greek dish baklava?
+Filo
+10
+
+Which patriotic pop song creeps in at the end of the New World Symphony?
+Yankee doodle
+10
+
+Which peak overlooks the city of Cape Town?
+Table mountain
+10
+
+Which peanuts character made their debut on august 22, 1960?
+Sally brown
+10
+
+Which peanuts character plays the piano?
+Schroder 
+10
+
+Which peaople did ghengis khan lead?
+Mongols
+10
+
+Which peculiar bird had a shoe-polish named after it?
+Kiwi
+10
+
+Which pedigree dog breed is the tallest?
+Irish wolfhound
+10
+
+Which pen name does the author Harry Patterson also use?
+Jack higgins
+10
+
+Which peninsula do Spain and Portugal occupy?
+Iberian peninsula
+10
+
+Which peninsula is occupied by norway and Sweden?
+Scandinavian peninsula
+10
+
+Which people are excluded from inheritance and succesion from salic law?
+Women
+10
+
+Which people are known in their own language as Saami?
+Lapps
+10
+
+Which people first brought the cat to Europe?
+The Romans
+10
+
+Which people first used fountain pens?
+Ancient egyptians
+10
+
+Which people fought in regiments called impis?
+The zulus
+10
+
+Which people invented the compass?
+Chinese
+10
+
+Which people slide down a pole to help them to get to work quickly?
+Firemen
+10
+
+Which people's republic stands between the Bay of Bengal and the foothills of the Himalayas, bordered by India and Burma?
+Bangladesh
+10
+
+Which peoples creation is told in the Dreamtime stories?
+Australian aborigines
+10
+
+Which peoples name means Eaters of Raw meat?
+Eskimoes
+10
+
+Which period followed Picasso's Blue period?
+Rose
+10
+
+Which Persian astronomer is best known for his poems or 'Rubaiyat'?
+Omar Khayyam
+10
+
+Which Persian poet's work first came to popular attention in the famous translation by Edward Fitzgerald?
+Omar khayyam
+10
+
+Which person's name is an anagram of 'nigel fetch an iron leg'?
+Florence nightingale
+10
+
+Which peter cetera song came from the film 'the karate kid, part ii'?
+Glory of love
+10
+
+Which Peter chose the right Flava to get to number one?
+Andre
+10
+
+Which pharaoh built the great temple at Abu Simbel?
+Ramses ii
+10
+
+Which philosopher carried round a lantern, looking for an honest man?
+Diogenes
+10
+
+Which philosopher founded the Stoic school?
+Zeno
+10
+
+Which philospher is buried in Highgate cemetary in London?
+Karl marx
+10
+
+Which phone number was introduced to the uk in 1937?
+999
+10
+
+Which photographer, in 1976, told us that we'd take great snaps if we used an Olympus?
+David bailey
+10
+
+Which phrase is taken from the French meaning blank sheet of paper?
+Carte blanche
+10
+
+which phrase is taken from the french meaning white paper?
+Carte blanche
+10
+
+Which phrase means computer simulation that seems life like?
+Virtual reality
+10
+
+Which physicist and former surveyor discovered the law which bears his name explaining the tension of a spring?
+Robert hooke
+10
+
+Which pianist is said to have coined the phrase I cry all the way to the bank?
+Liberace
+10
+
+Which piece of office equipment did Milwaukee newspaper editor Christopher Scholes invent in 1868?
+Typewriter
+10
+
+Which piece of opaque variety of quartz found in most parts of Scotland was set into the gold and silver baton that commemorated the 1986 Commonwealth Games in Edinburgh?
+Jasper
+10
+
+Which pigment produces the colour of hair or skin in animals?
+Melanin
+10
+
+Which pirate fought in the battle of new orleans?
+Jean laffite
+10
+
+Which pistol favoured by James Bond did Adolf Hitler use to commit suicide?
+Walther 7.65
+10
+
+Which place is the driest in the world?
+Atacama desert
+10
+
+Which plane made the first man-powered cross-channel flight?
+Gossamer albatross
+10
+
+Which planet circles the sun every 84 years?
+Uranus
+10
+
+Which planet did john couch adams and urbain leverrier work out the existence and position of before it could actually be seen?
+Neptune
+10
+
+Which planet does the moon iapetus belong to?
+Saturn
+10
+
+Which planet has a moon called Charon?
+Pluto
+10
+
+Which planet has a moon called Europa?
+Jupiter
+10
+
+Which planet has a satellite called cordelia?
+Uranus
+10
+
+Which planet has a year lasting approx. 88 earth days?
+Mercury
+10
+
+Which planet has prometheus as a satellite?
+Saturn
+10
+
+Which planet has the greatest gravity, Mars or Uranus?
+Uranus
+10
+
+Which planet has the hottest surface?
+Venus
+10
+
+Which planet has the shortest day because it rotates the fastest?
+Jupiter
+10
+
+Which planet in the solar system was discovered in 1846?
+Neptune
+10
+
+Which Planet is 228 million kilometres from the Sun and has an orbital time of 1.88 years?
+Mars
+10
+
+Which Planet is 2872 million kilometres from the Sun and has an orbital time of 84 years?
+Uranus
+10
+
+Which planet is closest in size to the earth?
+Venus
+10
+
+Which planet is closest to the Sun?
+Mercury
+10
+
+Which planet is fourth closest to the sun?
+Mars
+10
+
+Which planet is named after the sky God in Greek mythology?
+Uranus
+10
+
+Which planet is nearest in size to that of the Earth?
+Venus
+10
+
+Which planet is orbited by the moon charon?
+Pluto
+10
+
+Which planet orbits the sun the fastest?
+Mercury
+10
+
+Which planet other than mercury does not have moons?
+Venus
+10
+
+Which planet takes 225 days to orbit the sun?
+Venus
+10
+
+Which planet takes 23 hours, 56 minutes and 4 seconds to revolve once on its axis?
+The earth
+10
+
+Which planet takes the longest to revolve around the sun?
+Pluto
+10
+
+Which planet was discovered by William Herschel in 178l?
+Uranus
+10
+
+Which planet was discovered in 1846?
+Neptune
+10
+
+Which planet was first seen in 1846?
+Neptune
+10
+
+Which planet was furthest from the sun in 1988?
+Neptune
+10
+
+Which planet was the 'planet of the apes'?
+Earth
+10
+
+Which planet was visited by the Galileo probe in 1995?
+Jupiter
+10
+
+Which planet with at least eighteen known moons is sixth closest to the sun?
+Saturn
+10
+
+Which planet's largest satellite is titan?
+Saturn
+10
+
+Which planets year is shorter than its day?
+Venus
+10
+
+Which plant did the indians use to paint their faces and tomahawks?
+Bloodroot
+10
+
+Which plant does the farmer grow for sugar?
+Sugar beet
+10
+
+Which plant does the hallucinogen mescaline come from?
+Peyote
+10
+
+Which plant does this describe - leaves in equal pairs,dull purple flowers and black,cherry sized berries?
+Deadly nightshade
+10
+
+Which plant has flower parts apparently resembling the instruments of Christ's crucifixion?
+Passion flower
+10
+
+Which plant has gills, a veil and scales?
+Mushroom
+10
+
+Which plant has the alternative name Lonicera?
+Honeysuckle
+10
+
+Which plant has the latin name Centaurea cyanus?
+Cornflower
+10
+
+Which plant has the scientific name Convallaria?
+Lily of the valley
+10
+
+Which plant is processed for linseed oil?
+Flax
+10
+
+Which plant is the national emblem of Scotland?
+Scotch thistle
+10
+
+Which plant of the daisy family provides a medicine used for the treatment of bruises?
+Arnica
+10
+
+Which play has had a continuous 50-year run?
+The Mousetrap 
+10
+
+Which play won the pulitzer prize for drama?
+South pacific
+10
+
+Which player in nba history has the most career points?
+Kareem abdul-jabbar
+10
+
+Which playwright and dissident became President of Czechoslovakia in 1989?
+Vaclav havel
+10
+
+Which playwright invented the name Wendy?
+J m barrie
+10
+
+Which playwright was chalie chaplins father in law?
+Eugene o'neill
+10
+
+Which playwright wrote blithe spirit?
+Noel coward
+10
+
+Which playwright wrote lady windermere's fan?
+Oscar wilde
+10
+
+Which pleated instrument did Friedrich Buschman invent in 1822?
+The accordian
+10
+
+Which plumbers mate was discovered by ollywood after being called to unblock producer mack Sennets drains?
+Fatty arbuckle
+10
+
+Which poet and garden designer was married to Harold Nicholson?
+Vita sackville-west
+10
+
+Which poet composed Paradise Lost?
+John milton
+10
+
+Which poet described autumn as 'the season of mists and mellow fruitfulness'?
+John keats
+10
+
+Which poet died of self administered arsenic at the age of 17?
+Thomas chatterton
+10
+
+Which poet died on an American lecture tour at the age of 39?
+Dylan thomas
+10
+
+Which poet dies off the Italian coast at the age of 30?
+Shelley
+10
+
+Which poet gave his name to a cape south of Brisbane?
+Byron
+10
+
+Which Poet Laureate declared 'I must go down to the sea again, to the lonely sea and sky'?
+John masefield
+10
+
+Which poet laureate was married to sylvia plath?
+Ted hughes
+10
+
+Which Poet Laureate wrote about 'Miss Joan Hunter-Dunn and the anthology 'New Bats in Old Belfries?
+John betjeman
+10
+
+Which poet played cricket for Harrow against Eton in 1805?
+Byron
+10
+
+Which poet wrote 'Ode to the West Wind'?
+Shelley
+10
+
+Which poet wrote jerusalem?
+William blake
+10
+
+Which poet wrote my love is like a red red rose?
+Robert burns
+10
+
+Which poet wrote ode to a skylark?
+Shelley
+10
+
+Which poet wrote the song of hiawatha?
+Henry longfellow
+10
+
+Which poets Tiger was burning bright?
+William blake
+10
+
+Which poker hand consist of cards all of one suit?
+Flush
+10
+
+Which polar explorer died in a plane crash, while searching for a missing Italian airship?
+Ronald amundsen
+10
+
+Which policeman gave up his job to become a professional snooker player?
+Ray reardon
+10
+
+Which Polish astronomer proposed that the Earth was not the centre of the Universe?
+Copernicus
+10
+
+Which politicain is best known as the architect of the National Health Service?
+Aneurin bevan
+10
+
+Which political party did Margaret Thatcher lead?
+Conservatives
+10
+
+Which political party was founded in West Germany in 1972 by the late Petra Kelly?
+The green party
+10
+
+Which politician famously said 'What is our task? To make britain a fit country for heroes to live in.'?
+David lloyd george
+10
+
+Which politician is commemorated at a museum in Llanystumdwy,Wales?
+Lloyd george
+10
+
+Which politician was known as the Welsh wizard?
+David lloyd george
+10
+
+Which pop duo had a hit in 1983 with 'Club Tropicana'?
+Wham
+10
+
+Which pop female singer did Bee Gee singer Maurice Gibb marry in 1969?
+Lulu
+10
+
+Which pop group consisted of Eric Clapton, Jack Bruce & Ginger Baker?
+Cream
+10
+
+Which pop group had a hit with robert de niros' waiting?
+Bananarama
+10
+
+Which pop group included Brian, Carl & Dennis Wilson?
+Beach boys
+10
+
+Which pop singer sang the theme of the Bond film The Man with the Golden Gun?
+Lulu
+10
+
+Which pop song contains a similar melody to tchaikovsky's symphony in e minor?
+Annie's song
+10
+
+Which pop star appeared in many of the 'gidget' films, and hit no 3 with the calliope sound of 'goodbye cruel world' in the early 60's?
+James darren
+10
+
+Which pop star once recorded the Crossroads theme tune?
+Paul mccartney
+10
+
+Which pop star received a mention from the organisers of the 1986 Nobel Peace Prize?
+Bob geldof
+10
+
+Which pop stars first major screen role was as an alien called thomas jerome newton?
+David bowie
+10
+
+Which pop stars yacht capsized during the 1985 Fastnet race?
+Simon le bon
+10
+
+Which pop tv programme invited a panel of star guests to judge a recent record a hit or a miss?
+Juke box jury
+10
+
+Which Pope died in 1978 after a mere 33 days in office?
+John Paul I
+10
+
+Which Pope died on today's date in 1978?
+John Paul 1
+10
+
+Which popular association was originally called the Rosebuds?
+The brownies
+10
+
+Which popular BBC radio presenter died of cancer in 1989?
+Ray moore
+10
+
+Which popular perfume was originally thought to offer protection against the plague?
+Eau de cologne
+10
+
+Which popular singer of the 60's &70's has the real name Clive Powell?
+Georgie fame
+10
+
+Which popular singer of the 80's has the real name Christopher Davidson?
+Chris de burgh
+10
+
+Which popular TV night show host wrote 'Leading with My Chin'?
+Jay Leno
+10
+
+Which port is the capital of the Italian region of liguria?
+Genoa
+10
+
+Which port on the River Douro is the second largest city in Portugal?
+Oporto
+10
+
+Which Portuguese colony reverts to china in december 1999?
+Macau
+10
+
+Which position is not named in abbott and costello's 'who's on first' routine?
+Right field
+10
+
+Which position is usually played by the tallest member of a basketball team?
+Centre
+10
+
+Which power station in Pennsylvania was the scene of a 1979 nuclear accident?
+Three mile island
+10
+
+Which powerful medical tool was first discovered in Germany in 1895 by Wilhelm Rontgen?
+X-ray
+10
+
+Which pre-metal group did a cover of the 1958 hit 'summertime blues'?
+Blue cheer
+10
+
+Which precious stone formed from corundum is secomd only to diamond in hardness?
+Sapphire
+10
+
+Which premiership club moved to a new ground at the beginning of the 2001-2 season?
+Southampton
+10
+
+Which premiership team moved to a new ground at the start of 2001/2002 season?
+Southampton
+10
+
+Which president gave the first televised State of the Union address?
+Dwight D Eisenhower
+10
+
+Which president had the nickname 'Old Hickory'?
+Ronald Reagan
+10
+
+Which president married martha dandridge custis?
+George Washington
+10
+
+Which president of singapore suffers from cancer?
+Ong teng cheong
+10
+
+Which President of the Soviet Union died in 1953, aged 73?
+Joseph Stalin
+10
+
+Which president said in a Playboy interview, that he had 'committed adultery in my heart many times'?
+Jimmy Carter
+10
+
+Which president was elected 4 consecutive times?
+Harry S Truman
+10
+
+Which president was responsible for the 'louisiana purchase'?
+Thomas
+10
+
+Which pretender to the English throne was hanged in 1499?
+Perkin warbeck
+10
+
+Which primary color has the shortest name?
+Red
+10
+
+Which prime minister established Canada's own flag?
+Lester pearson
+10
+
+Which prime minister felled trees for a hobby?
+William gladstone
+10
+
+Which Prime Minister introduced Income Tax?
+Pitt the younger
+10
+
+Which Prime Minister of Pakistan was deposed in a military coup in October 1999?
+Nawaz sharif
+10
+
+Which princess is known by her husband's first name?
+Michael
+10
+
+Which principal conductor of both the New York Philharmonic Orchestra and the Halle Orchestra died in 1970?
+Sir john barbirolli
+10
+
+Which principality has been ruled by the Grimaldi family since the 15th century?
+Monaco
+10
+
+Which private eye hero did the author raymond chandler create?
+Philip marlowe
+10
+
+Which process invented in 1855 converts pig iron into steel?
+Bessemer process
+10
+
+Which producer took a drug overdose in 1966?
+Brian epstein
+10
+
+Which product had the slogan 'You'll look a little lovelier each day?
+Camay soap
+10
+
+Which product is measured by its octane rating?
+Petrol
+10
+
+Which product was advertised as 'tested by dummies, driven by the intelligent'?
+Volvo cars
+10
+
+Which professon would you belong to if you had FRIBA after your name?
+Architecture
+10
+
+Which prominent african-American singer was nominated for a best actress oscar in 1972?
+Diana ross
+10
+
+Which protein forms nails and hair?
+Keratin
+10
+
+Which province provides 25% of Canadas agricultural income?
+Saskatchewan
+10
+
+Which psychologist and psychiatrist introduced the term 'inferiority complex'?
+Alfred adler
+10
+
+Which publication features Larry King's weekly column?
+USA Today
+10
+
+which Quaker chocolate maufacturer from York founded 3 charitable trusts which support research and development in the fields of housing, social care and social policy?
+Joseph rowntree
+10
+
+Which Quaker founded the city of Philadelphia?
+William Penn
+10
+
+Which quartet ends with the Division of the Spoils?
+The raj quartet
+10
+
+Which quartet issued the Limehouse Declaration?
+Sdps gang of four
+10
+
+Which queen had menstrual cramps eased with marijuana?
+Queen victoria
+10
+
+Which queen outlived all her 17 children?
+Queen anne
+10
+
+Which queen single was a xmas number one in 1975 and again in 1991?
+Bohemian rhapsody
+10
+
+Which Queen was the subject of a film called Mrs Brown?
+Queen victoria
+10
+
+Which quirky brunette was one of the first MTv VJ's?
+Martha Quinn
+10
+
+Which quiz show became a programme in its own right after first appearing as part of Wednesday Night Out?
+Name that tune
+10
+
+Which race built a cube spacecraft?
+The borg
+10
+
+Which race tradionally end at mortlake?
+The boat race
+10
+
+Which racing driver was killed whilst flying his own aircraft?
+Graham hill
+10
+
+Which radio 2 presenter once had a hit with a single called The Man form Laramie?
+Jimmy young
+10
+
+Which radio and TV presenter made the hit parade in 1978 with a version of the Cornish Floral dance?
+Terry wogan
+10
+
+Which radioactive gas is emitted by granite rock formations?
+Radon
+10
+
+Which railway engineer designed the locomotives Sans Pareil and Royal George?
+Timothy hackworth
+10
+
+Which railway line built before 1891 and 1905 is the worlds longest?
+Trans siberian
+10
+
+Which railway station has a fictional bear named after it?
+Paddington
+10
+
+Which railway station in london is known by two names?
+Bank and monument
+10
+
+Which railway station in London, designed by Edward Wilson and opened in 1874, serves East Anglia?
+:liverpool street
+10
+
+Which railway tunnel, 20 kilometres long, joining Isselle in Italy with Brig in Switzerland, is cut under Mount Leone in the Alps?
+Simplon tunnel
+10
+
+Which rap group was totally crossed out?
+Kris kross
+10
+
+Which raw meat is most likely to contain a trichina worm?
+Pork
+10
+
+Which Ray Charles rocker was an adaptation of the hymn Jesus is all the world to me?
+I gotta woman
+10
+
+Which readio programme was presented by Roy Plomley from 1942 to 1985?
+Desert Island Discs
+10
+
+Which real cartoon features the ultra-violent duo of itchy & scratchy?
+The simpsons
+10
+
+Which real island was daniel defoe's robinson cruesoe based on?
+Juan fernandez
+10
+
+Which real life brothers played the kray twins in the film the krays?
+Martin and gary kemp
+10
+
+Which record label is owned by Elton John?
+Rocket records
+10
+
+Which red dwarf actor presents robot wars?
+Craig Charles
+10
+
+Which red-haird slide guitar player won a grammy in 1989 for her album 'nick of time'?
+Bonnie raitt
+10
+
+Which red-head won Star Search and then went on a shopping mall singing tour that took America by storm in 1987 and 1988?
+Tiffany
+10
+
+Which reggae duo charted with twist and shout in the 1990s?
+Chaka demus and pliers
+10
+
+which regiment formed in 1688 has its headquarters amd museum in Richmond North Yorkshire?
+The green howards
+10
+
+Which region of france do germans call lothringen?
+Lorraine
+10
+
+Which region of Germany has Munich as its capital?
+Bavaria
+10
+
+Which region of Spain has Barcelona as its capital?
+Catalonia
+10
+
+Which regular Private Eye Feature lists cock ups by sports commentators?
+Colemanballs
+10
+
+Which regular solid has a faces which are all pentagons?
+Dodecahdron
+10
+
+Which relative of john travolta's made a cameo appearance in saturday night fever?
+His mother
+10
+
+Which religion believes in the four noble truths?
+Buddhism
+10
+
+Which religion has the kathina festival as a National Holiday?
+Buddhism
+10
+
+Which religion uses pagodas?
+Buddhist
+10
+
+Which religion's holiest shrine is the Golden Temple at Amritsar?
+Sikh
+10
+
+Which religion's holiest shrine's are in the Ise Shima National Park near Osaka?
+Shinto
+10
+
+Which religions various branches claims 100% of Afghanistans population?
+Islam
+10
+
+Which religious group grew out of the Watch Tower Society?
+Jehovah's witnesses
+10
+
+Which religious group whipped themselves into a frenzy in the middle ages?
+The flagellants
+10
+
+Which religious group whipped thewselves into a frenzy in the Middle Ages?
+The flagellants
+10
+
+Which religious leader is said to have found enlightenment while sitting under a tree?
+Buddha
+10
+
+Which religious order was founded by Saint Bruno?
+Carthusian
+10
+
+Which rem song features kate from the b-52s?
+Shiny happy people
+10
+
+Which Renaissance City was severely flooded in November 1966?
+Florence
+10
+
+Which resort is located at the north-eastern edge of Exmoor?
+Minehead
+10
+
+Which resort was the setting for the first butlins holiday camp?
+Skegness
+10
+
+Which retail entrepreneur founded the body shop in 1976?
+Anita roddick
+10
+
+Which Rhinestone Cowboy was a former Beach Boy?
+Glen campbell
+10
+
+Which Richard Adams book featured a fox terrier called Snitter?
+The plague dogs
+10
+
+Which river did Julias Caesar cross and, by doing so, cause a civil war?
+Rubicon
+10
+
+Which river features in the title of a famous waltz?
+The danube
+10
+
+Which river flows over the Niagara Falls?
+Niagara river
+10
+
+Which river flows over the Victoria Falls?
+Zambezi
+10
+
+Which river flows through Innsbruck?
+The inn
+10
+
+Which river flows through munich?
+Isar
+10
+
+Which river flows through the grand canyon?
+Colorado
+10
+
+Which river flows under the bridge linking Scotland and England at Coldstream?
+River tweed
+10
+
+Which river forms most of the boundary between Mexico and USA?
+Rio grande
+10
+
+Which river forms part of the southern boundary of the state of Indiana, separating it from Kentucky?
+Ohio
+10
+
+Which river forms the eastern border between England and Scotland?
+The tweed
+10
+
+Which river is dammed by the hoover dam?
+Colorado river
+10
+
+Which river is reputed to be haunted by the Lorelei?
+The rhine
+10
+
+Which river marks the border of the United States and Mexico?
+Rio grande
+10
+
+Which river passes through Germany, Austria, slovakia, hungary, croatia, Yugoslavia, romania, blugaria and ukraine before arriving at the black sea?
+Danube
+10
+
+Which river runs through Cambridge?
+The cam
+10
+
+Which river runs through St Petersburg?
+Neva
+10
+
+Which river runs through the Swiss city of Basle?
+Rhine
+10
+
+Which river runs through Vienna,Bratislava and Belgrade?
+The danube
+10
+
+Which river seperates buenos aires from montivideo?
+River plate
+10
+
+Which river was Jesus baptised in?
+The jordan
+10
+
+Which rivers estuary boasts Foulness Island?
+The thames
+10
+
+Which road is the main shopping area in singapore?
+Orchard road
+10
+
+Which rock and roller and his son Ricky wrote a string of hit songs for his daughter?
+Kim wilde
+10
+
+Which rock band's albums include 'beggar's banquet and exile on main street?
+Rolling stones
+10
+
+Which rock group of the eighties gave away a silver keychain at every concert, which was supposed to bring good luck to whoever caught it?
+ZZtop
+10
+
+Which rock is the result of limestone undergoing a metamorphic change due to heat and pressure in the earth?
+Marble
+10
+
+Which rock musician committed suicide in scattle on 5th april 1994?
+Kurt cobain
+10
+
+Which rock star has the nickname ?Slowhand'?
+Eric clapton
+10
+
+Which rock star is known as The Groover From Vancouver?
+Bryan adams
+10
+
+Which rock trio had a hit album with Mussorgskis Pictures at an Exhibition?
+Emerson,lake and palmer
+10
+
+Which role was played by tim mcinerny on tv's 'blackadder iv'?
+Captain darling
+10
+
+Which Roman ampitheatre was built by Emperor Vespasian in around 70ad?
+Colosseum
+10
+
+Which Roman emperor founded Constantinople?
+Constantine
+10
+
+Which Roman emperor ordered the building of a frontier wall across northern England in AD122?
+Hadrian
+10
+
+Which Roman emperor was reputedly poisoned by his wife Agrippina?
+Claudius
+10
+
+Which Roman fortification ran from the Firth of Clyde to the Firth of Forth?
+Antonine wall
+10
+
+Which Roman poet wrote the poem The Aeneid?
+Virgil
+10
+
+Which room did napolean keep the mona lisa in?
+Bathroom
+10
+
+Which rowing club stages the Henley Regatta?
+Leander
+10
+
+Which royal house did Queen victoria belong to?
+Hanover 
+10
+
+Which Royal Navy ship featured in the B.B.C. television documentary Sailing?
+Ark royal
+10
+
+Which royal residence on the Isle of Wight now belongs to the nation?
+Osborne house
+10
+
+Which royal survived a kidnap attempt in 1974?
+Princess anne
+10
+
+Which royal was married to lord snnowdon?
+Princess margaret
+10
+
+Which royals portrait by Brian Organ was carved up by both critics and a slasher?
+Princess diana
+10
+
+Which Rusian city endured Bloody Sunday on January 5th?
+St petersburg
+10
+
+Which Russian (1880-1942) choreographed the dying swan for?
+Pavlova kokine
+10
+
+Which Russian choreographer (1904-1983) moved to the USA and became a founder member of the School of American ballet?
+Balachine
+10
+
+Which Russian city used to be called Leningrad & Petrograd?
+St petersburg
+10
+
+Which Russian composer caused a riot with his ultra-modern Rite of Spring?
+Igor Stravinsky
+10
+
+Which Russian composer wrote the opera 'mozart and salieri' in 1897?
+Rimsky-korsakov
+10
+
+Which Russian Czar was the first cousin of George V?
+Nicholas ii
+10
+
+Which Russian jeweller exhibited his mperial Easter Eggs at a Paris Exhibition of 1900?
+Carl faberge
+10
+
+Which Russian leader introduced glasnost and perestroika?
+Mikhail Gorbachev
+10
+
+Which Russian president encouraged 'glasnost'?
+Gorbachev
+10
+
+Which Russian scientist used dogs to study conditioned reflexes?
+Ivan pavlov
+10
+
+Which Russian Tsar died at Ekaterinburg in 1918?
+Nicholas ii
+10
+
+Which Russian word means openness?
+Glasnost
+10
+
+Which russion ballet star defected to the west in 1961?
+Rudolph nureyev
+10
+
+Which sacred volcano last erupted in 1707?
+Mount fuji or fujiyama
+10
+
+Which saint died about 601 AD?
+David
+10
+
+Which saint founded a monastery at Iona in the sixth century?
+Saint columba
+10
+
+Which saint gave her name to a firework?
+St.catherine
+10
+
+Which saint has the deer as his iconographical emblem?
+St francis
+10
+
+Which saint is on a ?20 note?
+Cecilia
+10
+
+Which Saint translated the Vulgate bible?
+Jerome
+10
+
+Which Saint was canonised in 1920, 489 years after she was burned at the stake?
+Joan of arc
+10
+
+Which saint was the first Bishop of Paris?
+St denis
+10
+
+Which saint would you call upon if you had lost something?
+Saint antony of padua
+10
+
+Which saint's emblem is two breasts on a dish?
+St agatha
+10
+
+Which saint's emblem is two eyes in a dish?
+St lucy
+10
+
+Which saints day is July 15th?
+St Swithin
+10
+
+Which salford brewer gave his name to the s.i. unit of energy?
+Joule
+10
+
+Which sands off the coast of Kent coast are known as The Widow Maker?
+Goodwin sands
+10
+
+Which sauce has the same name as a state in Mexico?
+Tabasco
+10
+
+Which saxophonist joined David A Stewart in the charts on 'Lily Was Here'?
+Candy dulfer
+10
+
+Which saying is attributed to author Henry David Thoreau?
+Any fool can make a rule
+10
+
+Which scale named after a German mineralogist is used to measure the hardness of minerals?
+Mohs
+10
+
+Which scandanavian group had a hit with doctor jones?
+Aqua
+10
+
+Which Scandinavian alcoholic spirit is made from potatoes?
+Aquavit
+10
+
+Which scandinavian country is known as suomi in its own language?
+Finland
+10
+
+Which scandivanian prime minister was assassinated in 1986?
+Olaf palme
+10
+
+Which scheme allows a person's legal costs to be paid by public funds?
+Legal aid
+10
+
+Which school of architecture was founded in Weimar in 1919?
+Bauhaus
+10
+
+Which school of modern architecture in Germany was closed by the Nazis in 1933?
+Bauhaus
+10
+
+Which school took Grandma to number 1?
+St. winifred's
+10
+
+Which sci-fi author predicted artificial satellites in 1945?
+Arthur c clark
+10
+
+Which Sci-Fi Sitcom star like to eat cats?
+Alf
+10
+
+Which sci-fi writer adapted his own book for the movie Pet Sematary?
+Stephen King
+10
+
+Which science deals with matter and energy?
+Physics
+10
+
+Which science fiction author used the penname Edward Powys Bradbury?
+Michael moorcock
+10
+
+Which science fiction book by william gibson won the hugo and nebula award?
+Neuromancer
+10
+
+Which science fiction novel has its title from the flash point of paper?
+Farenheit 451
+10
+
+Which science fiction writer developed a series of ethics for robots known as the Laws of Robotics?
+Isaac asimov
+10
+
+Which science fiction writer is also a fully qualified biochemist?
+Isaac asimov
+10
+
+Which scientist discovered Oxygen?
+Joseph priestley
+10
+
+Which scientist was born so prematurely that his mother said he could have been put into a quart mug?
+Isaac newton
+10
+
+Which scientists name is given to the heat treatment of milk?
+Louis pasteur
+10
+
+Which Scotiish town was devastated after a mid air explosion on a Boeing 747?
+Lockerbie
+10
+
+Which Scots-born engineer devised the loading mechanism of the rifle which was the standard weapon for British forces in both World Wars?
+James lee
+10
+
+Which Scottish born machinist became America's first environmentalist?
+John muir
+10
+
+Which Scottish city lies between the mouths of the rivers dee and don?
+Aberdeen
+10
+
+Which Scottish driver drives f1 cars for mclaren?
+David coulthard
+10
+
+Which Scottish engineer gave his name to the S.I. unit of power?
+Watt
+10
+
+Which Scottish inventor pioneered the television?
+John Logie Baird
+10
+
+Which Scottish quarter day is on august 1st?
+Lammas
+10
+
+Which Scottish singer married a German Hare Krichna devotee?
+Annie lennox
+10
+
+Which Scottish town is considered the capital of the Highlands?
+Inverness
+10
+
+Which Scottish vet invented the pneumatic tyre in 1888?
+John boyd dunlop
+10
+
+Which screen role has been played by, among others, Elliot Gould and Humphrey Bogart?
+Philip marlowe
+10
+
+Which SE student has been killed and brutally beaten?
+Uter 
+10
+
+Which sea area lies between Plymouth and Wight?
+Portland
+10
+
+Which sea does the river Rhone flow into?
+Mediterranean
+10
+
+Which sea is between asia minor and greece?
+Aegean sea
+10
+
+Which sea is between Australia and tasmania?
+Tasman sea
+10
+
+Which sea is between korea and china?
+Yellow sea
+10
+
+Which sea is linked to the Ionian Sea by the Corinth Canal?
+Aegean
+10
+
+Which sea is north of Alaska?
+Beaufort sea
+10
+
+Which sea is north of murmansk, Russia?
+Bering sea
+10
+
+Which sea is the city of Beirut on?
+Mediterranean
+10
+
+Which sea is to the east of the Scottish mainland?
+North sea
+10
+
+Which sea route connects the north atlantic with the beaufort sea and the pacific ocean?
+The northwest passage
+10
+
+Which sea route did Amundsen navigate in 1903-1906?
+The north-west passage
+10
+
+Which sea separates Turkey from Greece?
+Aegean sea
+10
+
+Which sea-green incorruptible was guillotined in 1794?
+Robespierre
+10
+
+Which sea, with no placename in its name, lies between korea and shanghai?
+Yellow
+10
+
+Which seaside resort is on the fylde?
+Blackpool
+10
+
+Which seaside resort offers views of Thatchers Rock?
+Torquay
+10
+
+Which seattle-based band had a hit with 'daughter'?
+Pearl jam
+10
+
+Which Secretary of State for Education was responsible for introducing the National Curriculum?
+Kenneth baker
+10
+
+Which sex has the shorter human vocal cords?
+Female
+10
+
+Which sex is michael jackson[hint:no one knows]?
+Unknown
+10
+
+Which sex is twice as likely to contract leprosy?
+Male
+10
+
+Which sex of the lion does 90% of the hunting?
+The female
+10
+
+Which sex wolf is always leader of the pack?
+Female
+10
+
+Which Shakespeare play features Cordelia, Regan, and Goneril?
+King lear
+10
+
+Which Shakespeare play features the characters Demetrius, Lysander, Helena and Hermia?
+A midsummer night's dream
+10
+
+Which Shakespeare play features the line 'Something is rotten in the state of Denmark?
+Hamlet
+10
+
+Which Shakespeare play has female characters, Bianca and Katherine?
+The taming of the shrew
+10
+
+Which Shakespeare play has only two female characters, Portia and Calpurnia?
+Julius caesar
+10
+
+Which shakespeare play is set in the forest of arden?
+As you like it
+10
+
+Which Shakespeare play was the inspiration for the hit musical West Side Story?
+Romeo & juliet
+10
+
+Which Shakespearean character has the most lines?
+Hamlet
+10
+
+Which shakespearean character provided the plot for verdi's only comedy?
+Falstaff
+10
+
+Which Shakespearean play inspired music by Bernstein,lyrics by Sondheim and a character called Officer Krupke?
+Romeo and juliet
+10
+
+Which Shakespearean role has been played on film by Leslie Howard, Laurence Harvey and Leonard Whiting?
+Romeo
+10
+
+Which Shawnee chief became a British Army officer in 1812?
+Tecumseh
+10
+
+Which shellfish is sometimes called a Queenie?
+Scallop
+10
+
+Which ship canal by-passes the niagara fails?
+Welland canal
+10
+
+Which ship wrecked sailor settled a war between King Bombo and King Little?
+Gulliver
+10
+
+Which shipping area covers the North coast of Ireland?
+Malin
+10
+
+Which shoe company did Michael Jordan famously promote?
+Nike
+10
+
+Which shoulder go superstitious people throw salt over?
+Left
+10
+
+Which show featured Q,anna and dee as the little ladies?
+Rock follies
+10
+
+Which show introduced Lou Grant?
+The mary tyler moore show
+10
+
+Which show tune starts: 'isn't it rich, are we a pair'?
+Send in the clowns
+10
+
+Which shrimp like crustaceans are the principal food of baleen whales in the Antarctic Ocean?
+Krill
+10
+
+Which shrub is tapioca made from?
+Manioc
+10
+
+Which side did britain support in the us civil war?
+Confederacy
+10
+
+Which side of a book are the even numbered pages usually on?
+Left
+10
+
+Which side of a Chicken has the most Feathers?
+The Outside
+10
+
+Which side of a commercial jet does the pilot sit on?
+Left
+10
+
+Which side of the bed does superstition say is the wrong side of the bed?
+Left
+10
+
+Which side of the bed does superstition say is the wrong side?
+Left
+10
+
+Which side of the boat is the stern?
+Back
+10
+
+Which side of the human body is controlled by the left side of the brain?
+Right side
+10
+
+Which side of the road do people drive on in France?
+Right
+10
+
+Which side of the road would be travel on if you were driving in Japan?
+Left
+10
+
+Which side used a Trojan horse to enter the city of Troy?
+The greeks
+10
+
+Which side won the Spanish civil war, Nationalists or Republicans?
+Nationalists
+10
+
+Which Sidney Pollack film won the Oscar for best film in 1985?
+Out of africa
+10
+
+Which sign of the zodiac has a sting in the tail?
+Scorpio
+10
+
+Which sign of the Zodiac is represented by a crab?
+Cancer
+10
+
+Which sign used in punctuation denotes interrogation?
+Question mark
+10
+
+Which simple minds album spent 83 weeks in the uk charts?
+Once upon a time
+10
+
+Which singer did Sissy Spacek portray in Coal Miners Daughter?
+Loretta lynn
+10
+
+Which singer died a happy man on a Spanish golf course in 1977?
+Bing crosby
+10
+
+Which singer died an unhappy man when his father shot him in 1984?
+Marvin gaye
+10
+
+Which singer famously said 'you aint heard nothing yet'?
+Al jolson
+10
+
+Which singer had a Number 1 hit in 1960 with Three Steps to Heaven?
+Eddie cochran
+10
+
+Which singer had top ten hits in the 1980s with sledgehammer and games without frontiers?
+Peter gabriel
+10
+
+Which singer has albums called blonde on blonde and blood on the tracks?
+Bob dylan
+10
+
+Which singer is known as the 'Walrus of Love'?
+Barry white
+10
+
+Which singer is the son of former bandleader and singer Ross McManus?
+Elvis costello
+10
+
+Which singer married chris judd in 2001?
+Jennifer lopez
+10
+
+Which singer played billie holliday in lady sings the blues?
+Diana ross
+10
+
+Which singer recorded the album, 'I've Been Expecting You'?
+Robbie williams
+10
+
+Which singer released a 1974 album titled `Caribou`?
+Elton John
+10
+
+Which singer sang 'The Rose'?
+Bette Midler
+10
+
+Which singer was given the nickname 'the killer'?
+Jerry lee lewis
+10
+
+Which singer went solo after performing with the Commodores?
+Lionel richie
+10
+
+Which singer who died in the 70s was born Ellen Naomi Cohen?
+Mama cass
+10
+
+Which singer/actor was born with the christian names Harry lillis?
+Bing crosby
+10
+
+Which singer/comedian travelled to the USA to see how he could adapt his material to American Football?
+Max boyce
+10
+
+Which singer/songwriter had a hit in 2000 with babylon?
+David gray
+10
+
+Which singer/songwriter won a grammy in 1988 with 'don't worry, be happy'?
+Bobby mcferrin
+10
+
+Which singing celebrity approached President Nixon in the hopes of becoming a drug enforcement officer?
+Elvis Presley
+10
+
+Which singing duo found fame and regonition via a tv beer advert?
+Chas and dave
+10
+
+Which singing king died in 1965?
+Nat king cole
+10
+
+Which single word connects a Beethoven composition, a Glenn Miller melody and some Terry's chocolates?
+Moonlight
+10
+
+Which sitcom helped launch Michael J. Fox's career by portraying him as a money-grubbing teenager?
+Family Ties
+10
+
+Which sitcom starred Richard Beckinsale and Paula Wilcox as geoffrey and Beryl?
+The lovers
+10
+
+Which six letter word contains no vowels?
+Rhythm
+10
+
+Which size of paper measures 210 x 297mm?
+A4
+10
+
+Which ska band was fronted by busta bloodvessel?
+Bad manners
+10
+
+Which ski resort in the us was the site of the 1960 winter olympics?
+Squaw valley
+10
+
+Which slang word for prison came into use from the name of a famous gaol in Southwark in London?
+Clink
+10
+
+Which small animal caused the death of William III?
+A mole
+10
+
+Which small animals reportedly march to the sea to drown?
+Lemmings
+10
+
+Which small french car first designed in 1939 is affectionately known as the tin snail?
+Citroen 2cv
+10
+
+Which small republic is situated on the slopes of Monte Titano in Italy?
+San marino
+10
+
+Which small republic makes up Yugoslavia with Serbia?
+Montenegro
+10
+
+Which snake appears on the crown of the Egyptian Pharoahs?
+Cobra
+10
+
+Which snake kills the most humans?
+King cobra
+10
+
+Which sneaker is named after the greek god of victory?
+Nike
+10
+
+Which soap did playwright ernest thompson (on golden pond) act in?
+Somerset
+10
+
+Which soap did rhoda's husband end up on after his first prime time divorce?
+General hospital
+10
+
+Which soap duet hit with Especially For You?
+Kylie minogue & Jason donovan
+10
+
+Which soap first had a pregnancy in its storyline?
+Search for tomorrow
+10
+
+Which soap is set on a built up corner of Lord Derbys estate?
+Brookside
+10
+
+Which soap oprea is set mostly in Albert Square?
+Eastenders
+10
+
+Which son of zeus was a messenger and herald of the gods?
+Hermes
+10
+
+Which song and dance star of British musicals became Mrs Dale on radio?
+Jessie matthews
+10
+
+Which song composed by Sir Arthur Sullivan in sorrow over his brother's death became the most popular ballad of the nineteenth century?
+The lost chord
+10
+
+Which song did aretha franklin sing in the original 'blues brothers' film?
+Think
+10
+
+Which song did neil diamond write that was covered by tony tribe?
+Red red wine
+10
+
+Which song did sonny & cher sing at the end of their show?
+I've got you babe
+10
+
+Which song did the easybeats record that everyone sang at the end of a work week?
+Friday on my mind
+10
+
+Which song did the Illinois Police Commission add to their blacklist of drug orientated records in 1971?
+Puff the magic dragon
+10
+
+Which song gave rolf harris a number one in 1970?
+Two little boys
+10
+
+Which song has charted twice for Jimmy Young in 2 different versions?
+Unchained melody
+10
+
+Which song includes the words nothing is real ,nothing to get hung up about?
+Strawberry fields
+10
+
+Which song is also known as lsd?
+Lucy in the sky with diamonds
+10
+
+Which song was a hit for both Elvis Presley and the Pet Shop Boys?
+Always on my mind
+10
+
+Which song was a hit for both pat benatar and john cougar mellencamp?
+I need a lover
+10
+
+Which song was a hit for Elvis Costello in 1979?
+Oliver's army
+10
+
+Which song was Britain's first Eurovision Song Contest winner?
+Puppet on a string
+10
+
+Which song was released by Billy Joe Royal and written by Joe South?
+Down in
+10
+
+Which south african newspaper was edited by mahatma gandhi?
+Indian opinion
+10
+
+Which south african oil company has estblished the only commercially proven 'oil from coal' operations in the world?
+Sasol
+10
+
+Which south african president was assassinated in 1966?
+Hendrik verwoerd
+10
+
+Which South African word means 'segregation?
+Apartheid
+10
+
+Which South African word means 'seperate development' or segregation?
+Apartheid
+10
+
+Which south American capital is the world's highest?
+La paz
+10
+
+Which South American city is built in the shape of an aeroplane?
+Brasilia
+10
+
+Which South American country has borders only with Brazil and Argentina?
+Uruguay
+10
+
+Which South American country has borders with only Colombia and Peru?
+Ecuador
+10
+
+Which south American country produces Maracaibo coffee?
+Venezuela
+10
+
+Which South American national flag consists of nine blue and white horizontal stripes with a golden sun in the top left corner?
+Uruguay
+10
+
+Which south east Asian city was formerly called Krung Threp?
+Bangkok
+10
+
+Which South Seas volcano blew up in 1883?
+Krakatoa
+10
+
+Which south-east Asian city is served by Kimpo International airport?
+Seoul
+10
+
+Which southwestern city is the home of the National Lifeboat Museum?
+Bristol
+10
+
+Which soviet cosmonaut was the first woman to walk in space?
+Svetlane savitskaya
+10
+
+Which Soviet leader backed down over the Cuban missile crisis in 1962?
+Kruschchev
+10
+
+Which Soviet leader called himself ?Man of Steel?
+Josef Stalin
+10
+
+Which space probe passed Halleys Comet on 1986?
+Giotto
+10
+
+Which spaceship carried the codename NCC1701?
+Enterprise
+10
+
+Which Spanish explorer named the amazon river?
+Orellana
+10
+
+Which Spanish football team play at the Nou Camp stadium?
+Barcelona
+10
+
+Which species is the largest of the bear family?
+Polar bear
+10
+
+Which species of animal has sub-species which include Maasai, Reticulated and Rothschild's?
+Giraffe
+10
+
+Which species of bird gave Darwin his theory of evolution?
+Finch
+10
+
+Which species of fir is named after the plant collector. who sent its seeds back to Britain in 1827?
+Douglas fir
+10
+
+Which Spice Girl quit in 1998?
+Geri
+10
+
+Which spicy soup literally means 'pepper water'?
+Mulligatawny
+10
+
+Which spirit is added to sugar and egg yolks to make advocaat?
+Brandy
+10
+
+Which spirit is the base of a White Lady Cocktail?
+Gin
+10
+
+Which spiritual song, made famous by Joan Baez, became the anthem for American Civil Rights movement in the 1960s?
+We shall overcome
+10
+
+Which sport do Australia & NZ play when battling for the manning cup?
+Hockey
+10
+
+Which sport do the Atlanta Braves play?
+Baseball
+10
+
+Which sport do you most associate with Badminton House?
+Three-day eventing
+10
+
+Which sport has a lane 60ft long from the foul line to the centre of the head pin?
+Ten Pin bowling 
+10
+
+Which sport has a movement called a 'telemark'?
+Skiing
+10
+
+Which sport has a name which literally means 'gentle way'?
+Judo
+10
+
+Which sport has had these world champions,Lionel van Praag,Jerzy Szczakiel,Ivan Mauger?
+Speedway
+10
+
+Which sport is contested for the Swaythling Trophy?
+Table tennis
+10
+
+Which sport is played by l.a. lakers?
+Basketball
+10
+
+Which sport is played by the Sheffield Steelers?
+Ice hockey
+10
+
+Which sport is practiced in nets?
+Cricket
+10
+
+Which sport is Wayne Gretzky famous for?
+Ice hockey
+10
+
+Which sport requires stones to be 'thrown' at houses?
+Curling
+10
+
+Which sport used a Pavarotti performance as its theme in 1990?
+Football
+10
+
+Which sport uses the terms knuckleball, cycle, and bunt?
+Baseball
+10
+
+Which sport uses the terms nock, fletching and shaft?
+Archery
+10
+
+Which sport would you associate Alberto Tomba?
+Skiing
+10
+
+Which sport would you practice if you were a toxophilite?
+Archery
+10
+
+Which sporting event has the largest live attendance in the world?
+Tour de france
+10
+
+Which sporting event was won 5 times by Eddy Merckx?
+Tour de france
+10
+
+Which sportsman is told that his balls mustnt weigh more than 1.62 ounces each?
+Golfers
+10
+
+Which sportsman, who died in 1999, was nicknamed the Yankee Clipper?
+Joe di maggio
+10
+
+Which sportswear company is named after a Greek Goddess?
+Nike
+10
+
+Which sportswear company was founded in Germany by a certain Dr. Dassler?
+Adidas
+10
+
+Which Springfield resident was chosen to become an astronaut?
+Barney Gumbel 
+10
+
+Which spy plane, piloted by Gary Powers, was shot down over Russia in 1960?
+U2
+10
+
+Which star appears brightest in the northern constellation Lyra -it is also the fourth brightest in the night sky?
+Vega
+10
+
+Which star appears brightest in the northern constellation lyra?
+Vega
+10
+
+Which star comes from Luton but feels at home wherever his hat is?
+Paul young
+10
+
+Which star died during the filming of his movie Game of Death in 1973?
+Bruce lee
+10
+
+Which star in his 50s still has a curvaceous figure and averages 15 costume changes during a performance?
+Danny la rue
+10
+
+Which star of British films was born in the Old Kent Road and was called Maurice Mickelwhite?
+Michael caine
+10
+
+Which star of films such as 'Ryan's Daughter' died in 1997?
+Robert mitchum
+10
+
+Which star of films such as 'The Philadelphia Story' died in 1997?
+James stewart
+10
+
+Which star of Stand By Me died in 1993 of drug-induced heart failure?
+River Phoenix
+10
+
+Which Star Wars cast member was a regular on general hospital?
+Mark hamill
+10
+
+Which state became the 14th state of the u.s?
+Vermont
+10
+
+Which state became the 14th state of the u?
+S1856 
+10
+
+Which state distills the most whiskey?
+Kentucky
+10
+
+Which state forms an enclave at the heart of the city of Rome?
+Vatican city
+10
+
+Which state had the largest population increase between 1847 and 1860?
+California
+10
+
+Which state is called the Golden state?
+California
+10
+
+Which state is called the pelican state?
+Louisiana
+10
+
+Which state is called the volunteer State?
+Tennessee
+10
+
+Which state is known as the gem state?
+Idaho
+10
+
+Which state of Australia lays claim to Lizard & Heron Islands?
+Queensland
+10
+
+Which state was affected by the Dust Bowl in America in the 1930's?
+Oklahoma
+10
+
+Which state was proclaimed by David Ben-Gurion?
+Israel
+10
+
+Which state's official flag is in the shape of a pennant?
+Ohio
+10
+
+Which state's song was originally old folks at home?
+Florida
+10
+
+Which states share Death Valley in the USA?
+California and nevada
+10
+
+Which station in London is the terminal of th Great Western Railway?
+Paddington
+10
+
+Which statue is missing its arms?
+Venus de milo
+10
+
+Which steeplechase has the longest run of sponsorship of any British horserace?
+Whitbread gold cup
+10
+
+Which Steinbeck novel tells of a family migrating to California?
+The grapes of wrath
+10
+
+Which Stephen King story was made into the movie Stand By Me?
+The body
+10
+
+Which steven spielbereg film pits dennis weaver against a truck with an unseen driver?
+Duel
+10
+
+Which Steven Spielberg film was based on a book by Peter Benchley?
+Jaws
+10
+
+Which stone fruit has a kernel that can be used as a flavouring?
+Apricot
+10
+
+Which story and film were inspired by a World war ii shipwreck off the island of Barra?
+Whisky galore
+10
+
+Which story had a fairy called Tinkerbell?
+Peter pan
+10
+
+Which story is narrated by ishmael?
+Moby dick
+10
+
+Which story of the foreign legion was written by p.c. wren?
+Beau geste
+10
+
+Which strait separates Russian and Alaska?
+Bering strait
+10
+
+Which strait separates Tierra del Fuego from mainland South America?
+Magellan's strait
+10
+
+Which stretch of water separates denmark from Sweden?
+Kattegat
+10
+
+Which stretch of water separates Sardinia and Corsica?
+Strait of bonifaccio
+10
+
+Which stretch of water seperates Tierra del Fuego from the rest of South America?
+Strait of magellan
+10
+
+Which strong wine gets its name from a city in Northern Portugal?
+Port
+10
+
+Which style of architecture is distinguished by vertical lines of tall pillars and by pointed arches?
+Gothic
+10
+
+Which style of collar was popularised in the 1930s by Shirley Temple, whose dresses had collars of this type?
+Peter pan
+10
+
+Which substance causes milk to curdle, and is used to make cheese?
+Rennet
+10
+
+Which substance may be added in the preparation of jams to make them set?
+Pectin
+10
+
+Which substance used as a bleach, can also be used as the oxidizing agent in rocket fuel?
+Hydrogen peroxide
+10
+
+Which substance, occurring naturally in fruit, causes jams and preserves to set?
+Pectin
+10
+
+Which supergroup said The Winner Takes It All?
+Abba
+10
+
+Which superhero has been portrayed on screen by Michael Keaton, Val Kilmer and George Clooney?
+Batman
+10
+
+Which supermodel, a former Miss Denmark, was born on Christmas day 1968?
+Helena Christensen
+10
+
+Which superstar film actor's real narne is t.c. mapother iv?
+Tom cruise
+10
+
+Which surname connects Henry, Peter, Jane and Bridget?
+Fonda
+10
+
+Which surname is shared with Carly and Paul?
+Simon
+10
+
+Which Swedish car manufacturer once admitted price fixing in Britain?
+Volvo
+10
+
+Which Swedish naturalist developed the system of plant and animal classification which is still used today?
+Carolus linnaeus
+10
+
+Which Swedish Prime Minister was shot dead as he walked home through Stockholm?
+Olof palme
+10
+
+Which sweet-sounding fungus kills trees?
+Honey fungus
+10
+
+Which swinging swimmer retired in 1929 with 67 records to his credit?
+Johnny weissmuller
+10
+
+Which Swiss artist, born in 1879, painted Landscape With Yellow Birds, The Twittering Machine and Fish Magic?
+Paul klee
+10
+
+Which Swiss psychoanalyst identified a collective as well as a personal unconscious in the human psyche?
+Carl jung
+10
+
+Which Swiss town hosts the annual golden rose television festival?
+Montreux
+10
+
+Which sydney landmark opened in 1973?
+Opera house
+10
+
+Which system requires that one-mile in every five must be straight? These straight sections are usable as airstrips in times of wars or other emergencies?
+The Eisenhower Interstate System
+10
+
+Which tatty TV series which started in 1977 has been filmed with Cameron Diaz, Drew Barrymore and Lucy Liu playing the title roles?
+Charlie's angels
+10
+
+Which teacher did maggie smith play in the 1969 film of muriel spark's novel?
+Miss jean brodie
+10
+
+Which team does larry bird coach?
+Indiana pacers
+10
+
+Which team plays at Abbey Stadium?
+Cambridge United
+10
+
+Which team plays at Boundary Park?
+Oldham Athletic
+10
+
+Which team plays at Carrow Road?
+Norwich City
+10
+
+Which team plays at Celtic Park?
+Celtic
+10
+
+Which team plays at City Ground?
+Nottingham Forest
+10
+
+Which team plays at Deepdale?
+Preston North End
+10
+
+Which team plays at Edgeley Park?
+Stockport County
+10
+
+Which team plays at Gigg Lane?
+Bury
+10
+
+Which team plays at Goodison Park?
+Everton
+10
+
+Which team plays at Hawthorns?
+West Bromwich Albion
+10
+
+Which team plays at Ibrox Stadium?
+Glasgow Rangers
+10
+
+Which team plays at Layer Road?
+Colchester United
+10
+
+Which team plays at Maine Road?
+Manchester City
+10
+
+Which team plays at Molineux?
+Wolverhampton Wanderers
+10
+
+Which team plays at Oakwell Ground?
+Barnsley
+10
+
+Which team plays at The County Ground?
+Swindon Town
+10
+
+Which team plays at The Den?
+Millwall
+10
+
+Which team plays at Turf Moor?
+Burnley
+10
+
+Which team plays at Victoria Ground?
+Stoke City
+10
+
+Which teenage actress was the first to be given her own American television show during the years 1963-1966?
+Patty Duke
+10
+
+Which television and radio personality wrote the historical novel credo in 1996?
+Melvyn bragg
+10
+
+Which television island gave well-heeled guests the chance to live out their dreams in the 1970's?
+Fantasy island
+10
+
+Which television programme did Roy Castle present for 22 years?
+Record breakers
+10
+
+Which television western series always ended with the words 'head 'em up, move 'em out'?
+Rawhide
+10
+
+Which temperature scale begins at minus 273.15 degrees Celsius?
+Kelvin
+10
+
+Which tennesee williams play is about a sicilian-American woman?
+Rose tattoo
+10
+
+Which Tennessee Williams play features a character called 'Big Daddy'?
+Cat on a hot tin roof
+10
+
+Which tennessee Williams play features the characters Maggie and Brick?
+Cat on a hot tin roof
+10
+
+Which tennis player defected to the west in 1975?
+Martina navratilova
+10
+
+Which tennis player was known as 'Little Mo'?
+Maureen connolly
+10
+
+Which tennis player was known as the 'Rockhampton Rocket'?
+Rod laver
+10
+
+Which tennis player was stabbed while on court?
+Monica seles
+10
+
+Which term connects a type of match and a nickname for the Devil?
+Lucifer
+10
+
+Which term is used in the Christian calendar for the last few days leading up to Easter Sunday?
+Holy week
+10
+
+Which term was coined by environmentalists in the 1990s for a strip of land sown with perrenial grasses to create an environment in which aphid eating insects can thrive?
+Beetle bank
+10
+
+Which terminal of a battery is indicated by a plus sign?
+Positive
+10
+
+Which territory of North Africa, situated on the southern side of the Strait of Gibraltar, belongs to Spain?
+Ceuta
+10
+
+Which terrorist group killed 11 Israeli athletes at the 1972 Munich Olympics?
+Black september
+10
+
+Which the second longest river in the world?
+Amazon
+10
+
+Which thick custard-like food is made when fresh milk is artificially curdled by bacteria?
+Yoghurt
+10
+
+Which Third world leader was assassinated by members of her bodyguard in 1984?
+Mrs Indira Gandhi
+10
+
+Which Thomas Harris novel was the top selling adult fiction novel of the year 2000 in the UK?
+Hannibal
+10
+
+Which three cities did Lyle Lanley sell monorails to before Springfield?
+Ogdenville, Brockway, and North Haverbrook 
+10
+
+Which three colours are in Germanys national flag?
+Black,red and gold
+10
+
+Which three countries make up Benelux?
+Belgium,the Netherlands,luxembourg
+10
+
+Which three man band lost their leader brad nowell, who died tragically of a heroin overdose in 1996?
+Sublime
+10
+
+Which three meanings does the word shalom have in hebrew?
+Peace hello bye
+10
+
+Which three races make up horseracing's triple crown (alphabetically)?
+Belmont stakes Kentucky derby preakness stakes
+10
+
+Which three sectarian groups are involved in the conflict in Bosnia and Herzogovina?
+Serbs, Croats and Muslims
+10
+
+Which three states form the straits settlement?
+Malacca penang singapore
+10
+
+Which three words complete the full title of shakespeare's play hamlet - - -?
+Prince of denmark
+10
+
+Which three-letter word can precede each of the following to make a new word each time -belt, -fare and -light?
+Fan
+10
+
+Which three-letter word can precede each of the following to make a new word each time?
+-rot, -mine and -nation.car
+10
+
+Which title goes before the name of a man who has been knighted?
+Sir
+10
+
+Which title was john flamsteed the first to hold in 1675?
+Astronomer royal
+10
+
+Which Tom Jones song spent most weeks at number one in 1966?
+Green green grass of home
+10
+
+Which tom wait's song was a hit for rod stewart?
+Downtown train
+10
+
+Which tommy edwards tune begins with 'many a tear has to fall ...'?
+It's all in the game
+10
+
+Which town in Brazil, 1,000 miles up the Amazon, was at one time the major port for the rubber trade?
+Manaus
+10
+
+Which town in the u.s had clint eastwood as its mayor?
+Carmel
+10
+
+Which town is famous for it's Salts and it's Racecourse?
+Epsom
+10
+
+Which town is the administrative hq of Shropshire?
+Shrewsbury
+10
+
+Which town is the birthplace of Jesus Christ?
+Bethlehem
+10
+
+Which town is the home to Hugh,Pugh,Barney,McGrew,Cuthbert,Dibble and Grub?
+Trumpton
+10
+
+Which town stands at the mouth of the Great Ouse?
+Kings lynn
+10
+
+Which town was the seat of the French government in WWII?
+Vichy
+10
+
+Which town would you be leaving if you were sailing away from the capital of the Flemish coast?
+Dunkirk
+10
+
+Which Townsend Thoreson ferry capsized off Zeebruge in 1987?
+The herald of free enterprise
+10
+
+Which toy was voted toy of the 20th century?
+Lego
+10
+
+Which toy, popular in the 80s, was 'easily', but not correctly, solved by removing the stickers or blocks to win?
+Rubik's cube
+10
+
+Which track in Hyde Park is thought to be a coruption of the french route du roi?
+Rotton row
+10
+
+Which travel company cater exclusively for the over 50s?
+Saga
+10
+
+Which travellers set off in the Mayflower in 1620?
+The pilgrim fathers
+10
+
+Which Treasury Minister was murdered by an IRA bomb outside his home in 1990?
+Ian Gow
+10
+
+Which tree has the same name as a part of your hand?
+Palm
+10
+
+Which tree was used for making longbows?
+Common yew
+10
+
+Which tribe did chief Cetewayo lead to a victory over the British in 1879?
+The zulus
+10
+
+Which trio was originally known as the 'primettes'?
+Supremes
+10
+
+Which trophy did John Jeffrey damage to earn a five month suspension from rugby?
+The calcutta cup
+10
+
+Which trophy was Ronald Reagan referring to when he said dont bolt that cup down too tightly?
+The americas cup
+10
+
+Which tropic passes through Taiwan?
+Tropic of cancer
+10
+
+Which tropical fruit has black seeds in the centre?
+Papaya
+10
+
+Which tube line goes to Brixton?
+Victoria
+10
+
+Which tube line runs to Heathrow Airport?
+Piccadilly line
+10
+
+Which Turkish town was the birthplace of St Paul?
+Tarsus
+10
+
+Which turn-of-the-century french dramatist is famous for his farces?
+Georges feydeau
+10
+
+Which tv cartoon series based in springfield started life on the tracey ullman show?
+The simpsons
+10
+
+Which tv character drives a car with the reg. number J 1610?
+Jim bergerac
+10
+
+Which TV character has a horse called Hercules?
+Harold steptoe
+10
+
+Which TV comedian wrote Katy and the Nurgla?
+Harry secombe
+10
+
+Which tv cook is the daughter of a former chancellor of the exchequer?
+Nigella lawson
+10
+
+Which tv cowboy had pancho as his sidekick?
+Cisco kid
+10
+
+Which TV current affairs presenter also owns a chain of local newspapers?
+David dimbleby
+10
+
+Which TV detective series is set in the town of Denton?
+Frost
+10
+
+Which tv drama showed the effect of a nuclear bomb falling on Sheffield?
+Threads
+10
+
+Which tv game ends with the Star Spin round?
+Takeover bid
+10
+
+Which tv game show is considered to be the most successful in recent decades?
+Wheel of fortune
+10
+
+Which TV Golden Girl was once the Vice-President of the Los Angeles Zoo Commission?
+Betty White
+10
+
+Which TV newsreader was once the editor of the Daily Express?
+Alastair burnet
+10
+
+Which TV programme has been presented by four people called Robinson - Kenneth, Robert Anne, and Tony?
+Points of view
+10
+
+Which TV secret agent's real name was Paul Metcalfe?
+Captain scarlett
+10
+
+Which TV series based on moadern classic featured Yorkshires Castle Howard in the title role?
+Brideshead revisited
+10
+
+Which tv series ended each episode with the bedroom lights being switched off & the family saying goodnight?
+The waltons
+10
+
+Which TV series ends every episode with bedroom lights being switched off and evryone saying goodnight?
+The waltons
+10
+
+Which tv series featured clarence the cross eyed lion?
+Daktari
+10
+
+Which TV series featured Florence, Dougal and zebedee?
+The magic roundabout
+10
+
+Which TV series has a Mountie as a central character?
+Due south
+10
+
+Which Tv series invented The Flying Fickle Finger of Fate award?
+Rowan and martins laugh in
+10
+
+Which TV series is set in the village of Adensfield?
+Heartbeat
+10
+
+Which TV series starred James Bolam as Jack Ford?
+When the boat comes in
+10
+
+Which tv series was set in Londons Eaton Place?
+Upstairs downstairs
+10
+
+Which TV show portrayed the lives of performing arts high school students?
+Fame
+10
+
+Which Tv show used a clapometer to select winners?
+Opportunity knocks
+10
+
+Which tv show was compered by a frog?
+The muppets
+10
+
+Which tv sitcom originated from a stage play called The Banana Box?
+Rising damp
+10
+
+Which tv soap celebrated its 40th birthday in 2000?
+Coronation street
+10
+
+Which tv soap do the woolpackers originate from?
+Emmerdale
+10
+
+Which twins were the brothers of Helen of Troy?
+Castor & pollux
+10
+
+Which two americans comprised the 1999 wimbledon men's finals?
+Pete sampras andre agassi
+10
+
+Which two ballet dancers were Marguerite and Armand created for?
+Fonteyn and nureyev
+10
+
+Which two biblical cities were destroyed by fire and brimstone?
+Sodom and gomorrah
+10
+
+Which two birds assisted Noah in finding dry land?
+Dove and raven
+10
+
+Which two bodies of water separate Britain from mainland Europe?
+The English channel and the north sea
+10
+
+Which two cities are linked by the M8?
+Glasgow & edinburgh
+10
+
+Which two coins together make up an ols fashioned bicycle?
+Penny and farthing
+10
+
+Which two colours appear on the Bangladesh flag?
+Green & red
+10
+
+Which two colours appear on the Vietnam flag?
+Yellow & red
+10
+
+Which two countries became independent in 1957?
+Ghana & malaysia
+10
+
+Which two countries boundaries were decided by the Asburton Treaty?
+Usa and Canada
+10
+
+Which two countries formed tanzania?
+Tanganyika and zanzibar
+10
+
+Which two countries fought the Hundred Years War?
+England & France
+10
+
+Which two countries were involved in the 'Battle of the Thames'?
+Britain & Canada
+10
+
+Which two countries' national anthem does not mention the country's name?
+United states and holland
+10
+
+Which two early 19th century German brothers wrote a collection of fairy tales?
+Grimm brothers
+10
+
+Which two elements is the sun mainly composed of?
+Hydrogen helium
+10
+
+Which two English football teams are nicknamed the magpies?
+Newcastle united & notts county
+10
+
+Which two explorers had a heady, and as yet still unresolved dispute over the first to reach the north pole in the early 1900s (fc rp)?
+Frederick cook robert peary
+10
+
+Which two fighting ships other than the 'arizona' were sunk at pearl harbor?
+Oklahoma and utah
+10
+
+Which two fighting ships other than the 'oklahoma' were sunk at pearl harbor?
+Arizona and utah
+10
+
+Which two fighting ships other than the 'utah' were sunk at pearl harbor?
+Arizona and oklahoma
+10
+
+Which two kicks in football must be played forwards?
+Penalty kick and kick-off
+10
+
+Which two Latin words nearly always abbreviated mean 'course of life'?
+Curriculum vitae
+10
+
+Which two letters are worth 10 points in the board game Scabble?
+Q & Z
+10
+
+Which two letters in Scrabble are worth two points?
+D & g
+10
+
+Which two male fish give birth?
+Sea horse and pipe fish
+10
+
+Which two man series of space missions preceded the Apollo missions?
+Gemini
+10
+
+Which two months are named for men?
+July and august
+10
+
+Which two oceans are joined by the bering strait?
+Pacific and arctic
+10
+
+Which two of New York's boroughs are actually islands?
+Manhattan & staten island
+10
+
+Which two rugby teams compete for the Calcutta Cup?
+England and Scotland
+10
+
+Which two sciences are a part of biology?
+Botany and zoology
+10
+
+Which two songs by fats domino have colour in them?
+Blueberry hill and blue heaven
+10
+
+Which two South American countries do not share a land boundary with Brazil?
+Chile & ecuador
+10
+
+Which two sports are combined in a biathlon?
+Skiing & shooting
+10
+
+Which two sports do you go backwards to win?
+Rowing & tug of war
+10
+
+Which two teams automatically qualified for the france '98 Football world cup?
+France and Brazil
+10
+
+Which two u.s presidents had the same surname?
+Adams
+10
+
+Which two US Presidents shared 1924 as the year of their birth?
+George bush & jimmy carter
+10
+
+Which type of aircraft was the most successful during the Battle of Britain?
+Hurricane
+10
+
+Which type of greek play writers were aeschylus, sophocles and euipedes?
+Tragedy
+10
+
+Which type of paint dries faster oil or acrylic?
+Acrylic
+10
+
+Which type of reference book summerises items of general knowledge listed in alphabetical order?
+Encyclopedia
+10
+
+Which type of sport is Indianapolis famous for?
+Indy racing
+10
+
+Which type of wheat yields flour used to make best quality spaghetti?
+Durum
+10
+
+Which type of wood is used to smoke meats?
+Hickory
+10
+
+Which types of wood are most often used for firewood in the home?
+Hardwood
+10
+
+Which tyre company withdrew from formula 1 at the end of 1986?
+Pirelli
+10
+
+Which U S President achieved the highest grade in the boy scouts?
+Gerald Ford
+10
+
+Which u s president was fatally shot in 1881?
+Garfield
+10
+
+Which U. S. State did Ray Charles have on his mind on a 1960 single?
+Georgia
+10
+
+Which U. S. State provided the title of a Bee Gees hit single?
+Massachusetts
+10
+
+Which U.K. Football star has 'Brooklyn' tattooed on his backside?
+David Beckham
+10
+
+Which U.S City is the home of the Mowton Record Company?
+Detroit
+10
+
+Which u.s film actress was married to mickey rooney and frank sinatra?
+Ava gardner
+10
+
+Which u.s native American culture includes 'the snake dance'?
+Hopi indians
+10
+
+Which u.s president said 'the buck stops here'?
+Harry truman
+10
+
+Which u.s president was the first to use 'fireside chats' and informal radio broadcasts to explain important issues to the u.s public?
+Franklin d roosevelt
+10
+
+Which u.s soul singer was known as 'lady day'?
+Billie holiday
+10
+
+Which u.s state gets the most rainfall?
+Hawaii
+10
+
+Which u.s state has the smallest population?
+Alaska
+10
+
+Which U.S. baseball player was known as the 'Yankee Clipper'?
+Joe di maggio
+10
+
+Which U.S. biologist has published collections of essays entitled Bully for Brontosaurus and Dinosaur in a Haystack?
+Stephen jay gould
+10
+
+Which U.S. city is named after an ancient capital of Egypt?
+Memphis
+10
+
+Which U.S. government branch includes the President and Vice President?
+Executive
+10
+
+Which u.s. president entertained his friends by writing latin with one hand and greek with the other?
+James a. garfield
+10
+
+Which U.S. president gave the 'four freedoms of democracy' speech- ie freedom from want; freedom from fear; freedom of worship and freedom of speech?
+Franklin d roosevelt
+10
+
+Which U.S. President had 10 children?
+Harrison
+10
+
+Which U.S. president is on the five-dollar bill?
+Abraham Lincoln
+10
+
+Which U.S. President liked Fresca soda so much, he had a tap installed in the White House?
+Lyndon Baines Johnson
+10
+
+Which U.S. President pardoned Robert E. Lee posthumously of all crimes of treason?
+Gerald Ford
+10
+
+Which U.S. President, early in his political life, was accused of trying to win votes by plying voters with alcohol?
+George Washington
+10
+
+Which U.S. state coined a name with an invented Indian meaning, 'Gem of the Mountains'?
+Idaho
+10
+
+Which u.s. state is hit by the most tornadoes annually?
+Texas
+10
+
+Which U.S. state is nick named 'the First State' because it was the first to ratify the American Constitution in 1787?
+Delaware
+10
+
+Which u.s. state is sometimes known as 'seward's folly'?
+Alaska
+10
+
+Which ugandan President wasnt invited to the 1977 meeting of Commonwealth Heads of State?
+Idi amin
+10
+
+Which UK city, other than London, has a station called Charing Cross?
+Glasgow
+10
+
+Which UK premiership Football team moved to a new ground at the start of 2001/2002 season?
+Southampton
+10
+
+Which ultimately disgraced person was 'surveyor of the queen's pictures' until 1972?
+Anthony blunt
+10
+
+Which UN Secretary-General was killed in an air crash in 1961?
+Dag hammarskold
+10
+
+Which unfortunate Greek god gave his name to the word tantalize?
+Tantalus
+10
+
+Which unit is defined as the power necessary to lift 33,000 pounds a distance of 1 foot in 1 minute?
+One horsepower
+10
+
+Which university did the prince attend in The Student Prince?
+Heidelberg
+10
+
+Which University has a rowing eight called Isis?
+Oxford
+10
+
+Which university offers bag piping as a major?
+Carnegie mellon
+10
+
+Which university uses the radio and tv as its lecture theatre?
+The open university
+10
+
+Which US actress gave her name to an inflatable life jacket?
+Mae west
+10
+
+Which US airman flew over both the north and south poles?
+Richard e byrd
+10
+
+Which us boxer was known as 'the manessa mauler'?
+Jack dempsey
+10
+
+Which US city is known as Beantown?
+Boston
+10
+
+Which US city is known as the biggest little city in the world?
+Reno, nevada
+10
+
+Which us city was bombed by terrorists in 1995?
+Oklahoma city
+10
+
+Which us city was called new amesterdam in the earyl 17th century?
+New york
+10
+
+Which US city was named after the only person to be governor of 2 states?
+Houston
+10
+
+Which US coin has 118 ridges around the edge?
+Dime
+10
+
+Which US gangster town gave its name to the group who had a no 1 with 'if you leave me now'?
+Chicago
+10
+
+Which US golfer was killed when his plane crashed in 1999?
+Payne stewart
+10
+
+Which US government branch includes the president & vice president?
+Executive branch
+10
+
+Which US Labrador fur trader set up a frozen food business in 1924?
+Clarence birdseye
+10
+
+Which US President brought in prohibition in 1919?
+Woodrow wilson
+10
+
+Which us president delivered the gettysburg address?
+Abraham lincoln
+10
+
+Which US President ordered the dropping of the atom bombs on Hiroshima and Nagasaki?
+Truman
+10
+
+Which US president received & 10% of the profits when he was interviewed by David frost?
+Richard nixon
+10
+
+Which US President was awarded the 1919 Nobel Peace?
+Woodrow wilson
+10
+
+Which US President won the Nobel Peace Prize in 1906 for his mediation in the Russo-Japanese War?
+Theodore roosevelt
+10
+
+Which US President won the Nobel Peace Prize in 1919 for securing the League of Nations covenant at Versailles?
+Woodrow wilson
+10
+
+Which us showman established the 'greatest show on earth' in 1871?
+P
+10
+
+Which US singer is nicknamed the 'Queen of Soul'?
+Aretha franklin
+10
+
+Which US state borders a Canadian territory?
+Alaska
+10
+
+Which US state did Thomas Jefferson describe as 'A jewel among the states'?
+Delaware
+10
+
+Which us state has the fewest gas stations?
+Alaska
+10
+
+Which us state has the most vehicles and highways per square mile?
+New jersey
+10
+
+Which US state has the postal abbreviation IN?
+Indiana
+10
+
+Which US state is farthest east, Alabama, Louisiana or Mississippi?
+Alabama
+10
+
+Which US state is farthest north, Nebraska, Nevada or North Carolina?
+Nebraska
+10
+
+Which us state is known as 'the last frontier'?
+Alaska
+10
+
+Which US State is known as the Mother of Presidents?
+Virginia
+10
+
+Which US State is known as the Pelican State?
+Louisiana
+10
+
+Which US state is the ?Lone Star' state?
+Texas
+10
+
+Which us state receives the most rainfall?
+Hawaii
+10
+
+Which US state was the 50th?
+Hawaii
+10
+
+Which US states way of life and culture is described as Cajun?
+Louisiana
+10
+
+Which US tourist attraction is known as the Shrine of Democracy?
+Mount rushmore
+10
+
+Which US university saw its National Guardsmen open fire on its students in 1970?
+Kent state university
+10
+
+Which US writer wrote The Naked and the Dead?
+Norman mailer
+10
+
+Which useful household item is made from naphthalene?
+Mothballs
+10
+
+Which vaccine was developed by Louis Pasteur?
+Rabies
+10
+
+Which valuable element has the atomic number 79?
+Gold
+10
+
+Which valuable material has the same atoms as coal?
+Diamond
+10
+
+Which vatican building was built for pope sixtus lv?
+The sistine chapel
+10
+
+Which vegetable has varieties called: Enorma, Red Knight and Red Emperor?
+Runner bean
+10
+
+Which vegetable is a bud, and can be eaten red or green?
+Cabbage
+10
+
+Which vegetable is referred to as 'eggplant' in the u.s.a?
+Aubergine
+10
+
+Which vegetable is the emblem of Wales?
+Leek
+10
+
+Which vegetable is used if a dish is described as 'a la Bretonne'?
+Haricot beans
+10
+
+Which vegetable is used if a dish is described as 'a la Crecy'?
+Carrots
+10
+
+Which vegetable is used to make Moussaka?
+Aubergine
+10
+
+Which vegetable, relative of the cauliflower do we know by its Italian name?
+Broccoli
+10
+
+Which Venezuelan river has the distinction of sharing a name with a womble?
+Orinoco
+10
+
+Which verdi opera has the aria 'la donna e mobile'?
+Rigoletto
+10
+
+Which version of Bible Bombardment do Bart, Lisa and Maggie play with the Flanders in 3F01?
+The Vulgate of St. Jerome 
+10
+
+Which vertebrate holds the record for the longest recorded life span?
+Tortoise
+10
+
+Which very fast ball game is also known as Jai Alai?
+Pelota
+10
+
+Which very select organisation has a table as its logo?
+Mensa
+10
+
+Which veteran country singer is known as ?the man in black'?
+Johnny cash
+10
+
+Which veteran West Indies fast bowler announced his retirement from cricket in 2001?
+Curtly Ambrose
+10
+
+Which Victorian became the world's most famous sufferer of neurofibromatosis?
+John merrick/elephant man
+10
+
+Which victorian was poet laureate for 40 years?
+Alfred, lord tennyson
+10
+
+Which voilet blue variety of quartz was used by the ancient greeks for making cups and goblets because it was regarded as a charm against inebriety?
+Amethyst
+10
+
+Which volcano could erupt over the town of Ottaviano?
+Vesuvius
+10
+
+Which volcano erupted in AD 62, killing the occupants of Pompeii?
+Vesuvius
+10
+
+Which VTOL fighter was nicknamed the Jump Jet?
+Harrier
+10
+
+Which war began on june 25, 1950?
+Korean war
+10
+
+Which war film used the music of The Doors and Wagner?
+Apocalypse now
+10
+
+Which war hero gave his name to a type of footwear?
+Duke of wellington
+10
+
+Which war was ended by the Treaty of Westphalia?
+30 years war
+10
+
+Which war was formally concluded at Paris in 1856?
+Crimean
+10
+
+Which war was fought between 1861 and 1865?
+The American civil war
+10
+
+Which warm wind from the south which is drawn into the valleys of the Northern Alps, helps to melt the snow in the spring?
+Fohn
+10
+
+Which wars featured the Battle of Quatre Bras?
+The napoleonic wars
+10
+
+Which was britain first pirate radio staion?
+Radio caroline
+10
+
+Which was David Platt's first professional club?
+Manchester united
+10
+
+Which was Dickens' first novel?
+Pickwick papers
+10
+
+Which was th efirst pop band to tour China?
+Wham!
+10
+
+Which was the 1st winner of the academy award for best picture, and the only silent film to achieve that honor?
+Wings
+10
+
+Which was the best selling single of 1981?
+Dont you want me , human league
+10
+
+Which was the biggest dinosaur in terms of overall length?
+Diplodocus
+10
+
+Which was the destination port on the titanic's maiden voyage?
+New york
+10
+
+Which was the first 'indiana jones' film?
+Raiders of the lost ark
+10
+
+Which was the first 'james bond' novel?
+Casino royale
+10
+
+Which was the first 'spaghetti western' starring clint eastwood?
+A fistful of dollars
+10
+
+Which was the first animated full-length cartoon?
+Snow white
+10
+
+Which was the first apostle to be stoned to death?
+Stephen
+10
+
+Which was the first book to tell the story of the lioness elsa?
+Born free
+10
+
+Which was the first British group to have 3 consecutive U.K. No. 1 hits that went straight to No. 1 upon release?
+Gerry and the pacemakers
+10
+
+Which was the first city to open a length of underground railway?
+London
+10
+
+Which was the first country to give women the right to vote?
+New zealand
+10
+
+Which was the first country to host 2 Football world cups?
+Mexico
+10
+
+Which was the first country to introduce vat?
+Denmark
+10
+
+Which was the first country to produce `PopStars'?
+New Zealand
+10
+
+Which was the first credit card?
+Diners club
+10
+
+Which was the first Disney cartoon to show a girls belly button?
+Aladdin
+10
+
+Which was the first James Bond book written by Ian Fleming in 1953?
+Casino royale
+10
+
+Which was the first Japanese city bombed in 1945?
+Hiroshima
+10
+
+Which was the first magazine to publish a hologram on its cover?
+National
+10
+
+Which was the first of the National Parks in England and Wales?
+Peak district
+10
+
+Which was the first Pinball game that used flippers?
+Humpty dumpty
+10
+
+Which was the first south American country to gain independence from Spain?
+Paraguay
+10
+
+Which was the first spacecraft to go up and down and up and down again?
+Space shuttle colombia
+10
+
+Which was the first state to secede from the union?
+South carolina
+10
+
+Which was the first US city to stage the summer Olympics?
+St louis
+10
+
+Which was the last country to host both the Summer and the Winter Olympic Games in the same year?
+Germany
+10
+
+Which was the last major country to welcome monopoly?
+Ussr
+10
+
+Which was the last nfl team to have an all-white roster?
+Washington redskins
+10
+
+Which was the last port of call from which the Titanic sailed?
+Queenstown
+10
+
+Which was the last rascals hit in 1968?
+People got to be free
+10
+
+Which was the last US battalion to leave Vietnam?
+3rd Battalion, 21st Infantry
+10
+
+Which was the only EEC country to vote against stronger health warnings on cigarette packets in 1989?
+Britain
+10
+
+Which was the only film actor who was one of The Magnificent Seven and also one of The Dirty Dozen?
+Charles bronson
+10
+
+Which was the sacred animal of ancient egypt?
+Cat
+10
+
+Which was the second 'james bond' novel to be made into a film?
+From Russia with love
+10
+
+Which was the second Japanese city bombed in 1945?
+Nagasaki
+10
+
+Which was the world's first space station?
+Salyut 1
+10
+
+Which waterfall has the highest drop in the world?
+Angel falls
+10
+
+Which way do the clocks go in winter?
+Back
+10
+
+Which way does the jack of hearts usually face?
+Right
+10
+
+Which way is up: how many compass point names are there?
+32
+10
+
+Which wedding anniversary is coral?
+Thirty fifth
+10
+
+Which wedding anniversary is wood?
+Fifth
+10
+
+Which weighs more hot water or cold water?
+Hot water
+10
+
+Which well known character also operates under the following names; Old Harry,Clootie,Auld Hornie?
+The devil
+10
+
+Which well known modern writer is descended from the creator of the dahlia?
+Roald dahl
+10
+
+Which well known novelist, has written a children book called 'Haroun and the Sea of Dreams?
+Salman rushdie
+10
+
+Which well-known author wrote the james bond novel colonel sun under the pseudonym robert markham?
+Kingsley amis
+10
+
+Which Welsh band released the album International Velvet?
+Catatonia
+10
+
+Which Welsh island is called the Isle of the Saints?
+Bardsey island
+10
+
+Which welsh village provided the setting for The Prisoner?
+Portmeirion
+10
+
+Which West Bengal town is the centre of production of the tea called 'The Champagne of Teas' because of its grape aroma?
+Darjeeling
+10
+
+Which West End musical stars Elaine Paige and Jason Scott Lee?
+The king & i
+10
+
+Which West End musical stars Lucy Arnaz and Ian McShane?
+Witches of eastwick
+10
+
+Which west Indian spin bowlers are immortalised in a calypso?
+Ramadhin and valentino
+10
+
+Which West Indies and Hampshire fast bowler died of cancer in 1999?
+Malcolm marshall
+10
+
+Which West Texas town was a hit for Marty Robins?
+El paso
+10
+
+Which wild flower is also known as Fireweed, because it is the first to grow back after a fire?
+Rose bay willow herb
+10
+
+Which wild west train robber is thought to have escaped his pursuers and adopted a new life in New York running a weighing machine business?
+Butch cassidy
+10
+
+Which wine has the varieties Malmsey and Sercial?
+Madeira
+10
+
+Which winged horse was said to have sprung from the blood of medusa?
+Pegasus
+10
+
+Which woman athlete won britain a silver medal at the Mexico Olympics but subsequently dies of cancer?
+Lillian board
+10
+
+Which woman flew solo from England to Australia in 1930?
+Amy johnson
+10
+
+Which woman's name shares the title with a new hit tv show on the wb network?
+Felicity
+10
+
+Which wooded area of Nottingham was originally a royal park where kings hunted deer?
+Sherwood forest
+10
+
+Which word can precede the following; -count -bath -bank?
+Blood
+10
+
+Which word derived from Polynesian means forbidden?
+Taboo
+10
+
+Which word describes 2 lines which are always the same distance apart?
+Parallel
+10
+
+Which word describes a male singer singing in a high register?
+Falsetto
+10
+
+Which word describing chaos first appeared in Milton's Paradise Lost?
+Pandemonium
+10
+
+Which word do we usually think of as simply meaning strong emotion, also means the suffering of Christ on the cross?
+Passion
+10
+
+Which word follows Juliet, Kilo and Lima?
+Mike
+10
+
+Which word follows, side, oil and ear?
+Drum
+10
+
+Which word for the metric unit of electric current is taken from the name of a French physicist?
+Ampere
+10
+
+Which word is related to these three rat, blue, cottage?
+Cheese
+10
+
+Which word is the Latin for 'pebble' and is now, applied to a branch of mathematics?
+Calculus
+10
+
+Which word is used to mean a serious meditative poem, especially a lament for the dead?
+Elegy
+10
+
+Which word is used to mean, malicious enjoyment at the misfortunes of others?
+Schadenfreude
+10
+
+Which word meaning sudden fear is derived from the name of the greek god Pan?
+Panic
+10
+
+Which word means a signed document in support of a particular action?
+A petition
+10
+
+Which word means one tenth of a nautical mile?
+Cable
+10
+
+Which word means salary particularly that paid to a clergy?
+Stipend
+10
+
+Which word means sliding down a rope to get to the bottom?
+Abseiling
+10
+
+Which word means the minimum number who must attend a meeting to make it valid?
+Quorum
+10
+
+Which word means to turn a ship on one side for cleaning and caulking?
+Careening
+10
+
+Which word other than renege means 'to neglect to follow suit at cards'?
+Revoke
+10
+
+Which word refers to all the animal life of a specific place or time?
+Fauna
+10
+
+Which word refers to farm land where no crops have been sown?
+Fallow
+10
+
+Which word refers to the internal diameter of a gun barrel?
+Calibre
+10
+
+Which World Champion heavyweight boxer held the title for the longest?
+Joe louis
+10
+
+Which World Famous news agency began life in 1850 using carrier pigeons?
+Reuters
+10
+
+Which world famous song and dance man died on the same day as Muppeteer Jim Henson?
+Sammy davis jnr
+10
+
+Which world famous sporting track is demolished and rebuilt every year?
+Cresta run
+10
+
+Which world saving puppets lived on 'Tracy Island'?
+Thunderbirds
+10
+
+Which world-wide organisation was founded in 1865 as the Christian Mission?
+Salvation army
+10
+
+Which worldwide tv station is devoted to music?
+Mtv
+10
+
+Which would usually live longer, a giraffe or a zebra?
+Zebra
+10
+
+Which wrestler complained in 1990 that some airlines made him pay for 2 seats instead of 1?
+Giant haystacks
+10
+
+Which wright brother was involved in the first aircraft accident?
+Orville
+10
+
+Which writer & illustrator was fired in july 1992 by King Features over an abortion rights story line in his daily comic strip Popeye?
+Bobby london
+10
+
+Which writer became a Governor General of Canada?
+John buchan
+10
+
+Which writer created Detective-Inspector Bucket?
+Charles dickens
+10
+
+Which writer created Sergeant Cuff?
+Wilkie collins
+10
+
+which writer created The Saint?
+Leslie Charteris
+10
+
+Which writer established the three laws of robotics?
+Isaac asimov
+10
+
+Which writer left a fortune in his will to develop a new phonetic alphabet?
+G b shaw
+10
+
+Which writer of the 17th and 18th Centuries first penned the line 'For fools rush in where angels fear to tread.'?
+Alexander pope
+10
+
+Which writer produced the Foundation Saga?
+Isaac asimov
+10
+
+Which writer quoted, 'Men seldom make passes at girls who wear glasses'?
+Dorothy parker
+10
+
+Which writer's latest work, Birds of Prey , features the Courtneys - the family that appeared in his first, When the Lion Feeds , published in 1964?
+Wilbur smith
+10
+
+Which writer's widow changed the family's name to Holland after his death to avoid scandal?
+Oscar wilde
+10
+
+Which writers books were relaunched in 1990 with absolutely no mention of gollywogs?
+Enid blyton
+10
+
+Which WW2 fighter-bomber did de Havilland's make out of wood?
+Mosquito
+10
+
+Which WW2 Norwegian collaborator's name became synonymous with treachery?
+Quisling
+10
+
+Which WWF wrestler died after being breaking loose from a cable lowering him to the ring?
+Owen Hart
+10
+
+Which WWI German fighter ace gave his name to an aerial turning manoeuvre - a half loop followed by a half roll?
+Max immelmann
+10
+
+Which wwii fanfare by Aaron Copland was a 1977 hit for Emerson,Lake and Palmer?
+Fanfare for the common man
+10
+
+Which wwii nazi was seized in buenos aires in 1960, tried and executed?
+Adolf eichmann
+10
+
+Which year did jemima goldsmith marry imram kahn?
+1995
+10
+
+Which year did Niagara Falls freeze?
+1932
+10
+
+Which year did shakespeare's sister get to no1 with 'stay'?
+1992
+10
+
+Which year first saw women taking part in Olympic track and field events?
+1928
+10
+
+Which year lasted 445 days?
+46 bc
+10
+
+Which year marked the bi-centenary of Kentucky joining the Union?
+1992
+10
+
+Which year Nasser and De Gaulle died and Allende was elected President of Chile?
+1970
+10
+
+Which year of the Chinese calander began in the year 2000?
+Dragon
+10
+
+Which year saw America's final withdrawal from Vietnam?
+1973
+10
+
+Which year was the St. Valentines Day Massacre?
+1929
+10
+
+Which year were the 'Jesse Owens' olympic games?
+1936
+10
+
+Which year were the Jesse Owen Olympic games?
+1936
+10
+
+WHICH YEAR: Arizona admitted to the Union?
+1912
+10
+
+WHICH YEAR: Battle of Bannockburn?
+1314
+10
+
+WHICH YEAR: Battle of Blenheim?
+1704
+10
+
+WHICH YEAR: Battle of the Boyne?
+1690
+10
+
+WHICH YEAR: Beginning of the Boer war?
+1899
+10
+
+WHICH YEAR: Black Death ravages England?
+1348
+10
+
+WHICH YEAR: Boston Tea Party?
+1773
+10
+
+WHICH YEAR: Britain captured Gibraltar from Spain?
+1704
+10
+
+WHICH YEAR: Buckingham Palace?
+1633
+10
+
+WHICH YEAR: Charge of the Light Brigade?
+1854
+10
+
+WHICH YEAR: Charles darwin publishes Origin of the Species?
+1859
+10
+
+WHICH YEAR: Concorde entered commercial service?
+1976
+10
+
+WHICH YEAR: Did Apache chief Cochise die?
+1876
+10
+
+WHICH YEAR: Did the Seminole Indian Tribe sign a peace treaty with the United States?
+1975
+10
+
+WHICH YEAR: Elizabeth ii becomes queen?
+1952
+10
+
+WHICH YEAR: Emmeline Pankhurst launches the suffragette movement?
+1905
+10
+
+WHICH YEAR: First photocopier marketed?
+1907
+10
+
+WHICH YEAR: Francis Drake sets off around the world?
+1577
+10
+
+WHICH YEAR: Great Fire of London?
+1666
+10
+
+WHICH YEAR: Great plague ravages England?
+1665
+10
+
+WHICH YEAR: Greenwich Mean time adopted?
+1859
+10
+
+WHICH YEAR: Gregory I became pope?
+590
+10
+
+WHICH YEAR: Harrods opens?
+1849
+10
+
+WHICH YEAR: Henry Tudor becomes Henry viii?
+1485
+10
+
+WHICH YEAR: Henry VIII met Francis I on the Field of the cloth of gold?
+1520
+10
+
+WHICH YEAR: Hong Kong returned to China?
+1997
+10
+
+WHICH YEAR: India gained independence?
+1947
+10
+
+WHICH YEAR: Michaelangelo born?
+1475
+10
+
+WHICH YEAR: NATO formed?
+1949
+10
+
+WHICH YEAR: Prince Charles born?
+1948
+10
+
+WHICH YEAR: Prince Charles marries?
+1981
+10
+
+WHICH YEAR: The dissolution of the monasteries?
+1536
+10
+
+WHICH YEAR: The falklands war?
+1982
+10
+
+WHICH YEAR: The gulf war?
+1990
+10
+
+WHICH YEAR: W G Grace born?
+1848
+10
+
+Which Yorkshire river is formed by the confluence of the Swale and Ure?
+Ouse
+10
+
+Which yorkshire town has the same name as the capital of nova scotia?
+Halifax
+10
+
+Which young animals clock an amazing 31 mph at full speed and cover about 3 times their body length per leap?
+Kittens
+10
+
+Which Yuppie banker did Rodney marry in Only Fools and Horses?
+Cassandra
+10
+
+Which zodiacal sign is represented by a goat?
+Capricorn
+10
+
+Whih royal wedding of the eighties is now scandelously coming apart?
+Charles and Di
+10
+
+Whihc biblical epic was written by a former governot of New Mexico?
+Ben hur
+10
+
+Whihc British Prime minister was born in Edinburgh in 1953?
+Tony blair
+10
+
+Whihc novelist was exiled to the channel islands?
+Victor hugo
+10
+
+Whihc popular actress starred in a barely credible 1967 TV series about a nun who could fly?
+Sally fields
+10
+
+While at Havard University, Edward Kennedy was suspended for cheating on a ____ exam
+Spanish
+10
+
+While experimenting with speeding up a tape, David seville created three voice characters and released a christmas song in 1958. which nutty group was this?
+Chipmunks
+10
+
+While performing her duties as queen, cleopatra sometimes wore a fake ____
+Beard
+10
+
+While rain was falling on the street, guards atop the building alongside it were having a snowball fight on nov 13 1958. what was this building?
+Empire state building
+10
+
+While serving in Congress, ____ introduced a bill that attempted to bar slavery from all future states admitted to the Union, a measure that might later have prevented the U.S. Civil War if it had not been defeated - by a single vote
+Thomas Jefferson
+10
+
+While sleeping, one man in eight does what?
+Snores
+10
+
+While sleeping, one man in ten does what?
+Grinds his teeth
+10
+
+While the ancient ____ may be the best-known mummy makers, they were far from the first. A very sophisticated fishing tribe called the Chinchoros, who lived on the north coast of what is now Chile, were embalming their dead as early as 5000 B.C
+Egyptians
+10
+
+While the earth's atmosphere is divided into 4 main zones, which is the highest zone?
+Exosphere
+10
+
+While the world was busy welcoming the arrival of the twentieth century on December 31, 1900, a forceful gale on England's Salisbury Plain blew over one of the ancient monumental stones at ____
+Stonehenge
+10
+
+Whish actress was nominated for an Oscar for her part as a prostitute in the 1995 film Leaving Las Vegas?
+Elizabeth shue
+10
+
+Whiskey made from maize and rye?
+Bourbon
+10
+
+White and the seven dwarfs Where is the Plumas National Forest?
+California
+10
+
+White river is the principal tributary of which indiana river?
+Wabash river
+10
+
+White-out was invented by who's mother?
+Mike nesmith
+10
+
+White, crystalline solid that has the formula c6h4(oh)cooh?
+Salicylic acid
+10
+
+Whitney houston's first album, featuring the hit song ____ is released
+Saving all my love for you
+10
+
+Who 'came whiffling through the tulgey wood'?
+Jabberwock
+10
+
+Who 'mixes it with love and makes the world go around'?
+Candyman
+10
+
+Who 'schusses' down a piste?
+Snow skiers
+10
+
+Who 'walked on the wild side'?
+Lou reed
+10
+
+Who abolished christmas in 1647?
+English parliament
+10
+
+Who according to Greek mythology was the first woman?
+Pandora
+10
+
+Who accused lancelot of sleeping with guinevere?
+Gawain
+10
+
+Who achieved the first perfect nine innings baseball game (pitcher pitches 27 out, no hits, no runs)?
+John lee richmond
+10
+
+Who acquired 4 of the 7 dead sea scrolls in 1955?
+Israel
+10
+
+Who acquired cyrix?
+National semiconductor
+10
+
+Who administers martinique?
+France
+10
+
+Who adopted the title 'Il Caudillo'?
+Franco
+10
+
+Who advertises post's sugar crisp cereal on tv?
+Sugar bear
+10
+
+Who advocated the planting peanuts and sweet potatoes to replace cotton and tobacco (i.e. crop rotation)?
+George Washington carver
+10
+
+Who allegedly killed officer J D Tippett?
+Lee harvey oswald
+10
+
+Who allegedly threatened the rolling stones because of altamont?
+Hell's angels
+10
+
+Who always ended his show in a white e type jaguar?
+Simon dee
+10
+
+Who always had 56 curls in her hair?
+Shirley temple
+10
+
+Who announced his retirement from football after nine seasons in the NFL on the set of The Dirty Dozen in London?
+Jim Brown
+10
+
+Who anonymously entered a contest in Monaco to find his lookalike and came third?
+Charlie chaplin
+10
+
+Who appeared in the films pulp fiction, primary colors and staying alive?
+John travolta
+10
+
+Who appeared on Jackanory reading his own book The Old man of Lochnagar?
+Prince Charles
+10
+
+Who appeared on the back of a u.s banknote in 1875?
+Pocahontas
+10
+
+Who appeared on the back of the $20 bill in 1875?
+Pocahontas
+10
+
+Who appeared on the British WWl recruitment poster?
+Lord kitchener
+10
+
+Who appears on the 10,000 dollar (US) note?
+Salmon Chase
+10
+
+Who appears on the 100,000 dollar (US) note?
+Woodrow Wilson
+10
+
+Who appears on the 5,000 dollar (US) note?
+James Madison
+10
+
+Who appears on the us 5,000 dollar bill?
+James madison
+10
+
+Who appears when Aladdin rubs the lamp?
+Genie
+10
+
+Who are film actress Jamie Lee Curtis's famous parents?
+Tony Curtis and Janet Leigh
+10
+
+Who are Itchy and Scratchy's European counterparts?
+Worker & Parasite
+10
+
+Who are jeffrey hyman, thomas erdelyi, Douglas colvin, mark bell, and john cummings?
+The ramones
+10
+
+Who are known as ' the three 'B's' in musical composition?
+Bach, Beethoven and Brahms
+10
+
+Who are remembered for the first successful hot air balloon?
+Montgolfier brothers
+10
+
+Who are santa's reindeer, in alphabetical order?
+Blitzen, comet, dancer,
+10
+
+Who are second to Russia in the all time Winter Olympic medals table?
+Norway
+10
+
+Who are the 2 main characters in Miltons Paradise Lost?
+Adam and eve
+10
+
+Who are the 5 simpsons in alphabetical order?
+Bart, homer, lisa, maggie and marge
+10
+
+Who are the bronte sisters in alphabetical order?
+Anne, charlotte, emily
+10
+
+Who are the Clampetts?
+Beverley hillbillies
+10
+
+Who are the composer and the lyricist for 'the sound of music', respectively?
+Richard rodgers oscar hammerstein ii
+10
+
+Who are the creators of south park?
+Trey parker matt stone
+10
+
+Who are the first act listed in the 14th edition of the Guinness Book of British Hit Singles?
+A
+10
+
+Who are the Nepalese soldiers who have served with the British army since world war i?
+The gurkhas
+10
+
+Who are the only band to have made a debut appearance as bill toppers in front of 120000 people in Hyde Park?
+Blind faith
+10
+
+Who are the only brothers to win the pga tournament?
+Lionel and jay hebert
+10
+
+Who are the queen's best mates in bee hives?
+Drones
+10
+
+Who are the twins in Bart's class?
+Sherri & Terri 
+10
+
+Who are the two male stars of the movie 'Se7en'?
+Brad Pitt Morgan Fairchild
+10
+
+Who are Yum-Yum and Nanki-Poo?
+Lovers in the mikado
+10
+
+Who assassinated william mckinley?
+Leon czolgosz
+10
+
+Who assembled steve austin as the bionic man?
+Dr rudy wells
+10
+
+Who ate chicken little?
+Foxy loxy
+10
+
+Who ate the three bears' porridge?
+Goldilocks
+10
+
+Who ate watercress to dissolve gravel and stones in the bladder?
+North
+10
+
+Who authored 'ivanhoe'?
+Sir walter scott
+10
+
+Who authored the grapes of wrath?
+John steinbeck
+10
+
+Who averaged receiving 21,000 letters a day in 1993?
+Bill clinton
+10
+
+Who backed up sam the sham?
+Pharaohs
+10
+
+Who backed wayne fontana?
+Mindbenders
+10
+
+Who baptised jesus?
+John the baptist
+10
+
+Who baptized christ?
+John the baptist
+10
+
+Who barely received passing grades for some of his film performances, but had a no. 1 hit with 'young love' in january 1957?
+Tab hunter
+10
+
+Who battled with MC Tunes on his 1990 top 10 hit The Only Rhyme That Bites?
+808 state
+10
+
+Who beat Captain Robert Scott in the race to the south pole in 1912?
+Roald amundsen
+10
+
+Who beat sonny liston to become world champion for the first time?
+Cassius clay
+10
+
+Who beat the belles of tennessee?
+Yellow rose of texas
+10
+
+Who becam an actor after being dismissed by Marks and Spencer training scheme because of his outrageous clothes?
+Edward fox
+10
+
+Who became a genius whenever he put on the fabulous kurwood derby?
+Bullwinkle
+10
+
+Who became Chancellor of the Exchequer in 1990?
+Norman lamont
+10
+
+Who became emperor of france in 1804?
+Napoleon
+10
+
+Who became famous for his Madhouse?
+Russ Abbot
+10
+
+Who became famous for photographing the civil war?
+Mathew brady
+10
+
+Who became france's first woman prime minister in 1991?
+Edith cresson
+10
+
+Who became leader of Iran in 1979?
+Ayatollah khomeini
+10
+
+Who became president of south africa in 1989?
+F.w de klerk
+10
+
+Who became Prime Minister following the assassination of Spencer Percival in 1812?
+Robert banks jenkinson
+10
+
+Who became roman emperor in ad 138?
+Antoninus pius
+10
+
+Who became the first englishman to win the Nobel prize for literature in 1907?
+Rudyard kipling
+10
+
+Who became the first father-and-son team to win oscars for the film 'treasure of sierra madre'?
+Walter and john huston
+10
+
+Who became the first President of Cyprus in August 1960?
+Archbishop makarios
+10
+
+Who became the first president of the french fifth republic in 1958?
+Charles de gaulle
+10
+
+Who became the first Prime Minister of Malawi in 1964?
+Hastings banda
+10
+
+Who became the first Prime Minister of Tanganyika in 1961?
+Julius nyerere
+10
+
+Who became the king of Jordan in 1952?
+Hussein
+10
+
+Who became U.S. president following the assassination of William McKinley in 1901?
+Theodore roosevelt
+10
+
+Who became World Motor Racing Champion in 1976?
+James hunt
+10
+
+Who became' Chief Executive' of Pakistan in October 1999?
+General pervaiz musharraf
+10
+
+Who began her career making death masks from the severed heads of those executed by the guillotine after the French Revolution?
+Madame tussaud
+10
+
+Who began his career with 'the yardbirds' and is established as one of the best rock guitarists of his generation?
+Eric clapton
+10
+
+Who believe that the City of God will be founded in the USA?
+The Mormons
+10
+
+Who believed that a prism split light because of 'corpuscles' of varied mass?
+Isaac newton
+10
+
+Who belonged to the fraternal lodge mystic knights of the sea?
+Amos and andy
+10
+
+Who betrayed jesus to the romans?
+Judas iscariot
+10
+
+Who betrayed king arthur by sleeping with his wife guinevere?
+Sir lancelot
+10
+
+Who betrayed samson to the philistines?
+Delilah
+10
+
+Who bought manattan island for the equivalent of 24 dollars?
+Peter minuit
+10
+
+Who bought the American Chrysler car company in 1998?
+Daimler benz
+10
+
+Who bought the Times in 1981?
+Rupert Murdoch
+10
+
+Who breathes through spiracles?
+Insects
+10
+
+Who broke into the queens bedroom in 1982?
+Michael fagan
+10
+
+Who broke off his engagement to Natasha Rostov in War and Peace?
+Prince andrei bolkonsky
+10
+
+Who broke Wayne Gretzky's string of 8 straight NHL MVP awards?
+Mario lemieux
+10
+
+Who brought fire to man in greek mythology?
+Prometheus
+10
+
+Who brought panic in the us with his programm war of the worlds?
+Orson welles
+10
+
+Who built a city in India called Bucephala in memory of his horse?
+Alexander the great
+10
+
+Who built a loyal following with the release of 'the pretender' in 1976?
+Jackson browne
+10
+
+Who built and commanded nazi Germany's luftwaffe?
+Hermann goering
+10
+
+Who built frosty the snowman into a 1952 hit?
+Gene autry
+10
+
+Who built Hampton Court?
+Cardinal wolsey
+10
+
+Who built Peking's Winter Palace?
+Kubla khan
+10
+
+Who built the 'cherokee' and 'commanche' aircraft?
+Piper
+10
+
+Who built the ancient city of machu picchu in peru?
+Incas
+10
+
+Who built the concorde?
+Britain and france
+10
+
+Who built the first steam engine to run on rails?
+Richard trevithick
+10
+
+Who built the Menai Suspension Bridge?
+Thomas telford
+10
+
+Who built the world's largest yacht, atlantis?
+Aristotle onassis
+10
+
+Who buy's corner blocks?
+Stamp Collectors
+10
+
+Who calculated the amount of energy that appears when matter disappears?
+Albert einstein
+10
+
+Who called Billy Idol `the Perry Como` of punk?
+Johnny Rotten
+10
+
+Who called her autobiography Courting Triumph?
+Virginia wade
+10
+
+Who called Rush Limbaugh the most dangerous man in America?
+Rush Limbaugh
+10
+
+Who called the County Cricket Board selectors Gin-slinging dodderers?
+Ian botham
+10
+
+Who calls its parliament 'the knesset'?
+Israel
+10
+
+Who calls munich the 'monaco of bavaria'?
+Italians
+10
+
+Who calls the moslem faithful to prayer?
+Muezzin
+10
+
+Who came to the English throne on the death of Henry I?
+Stephen
+10
+
+Who came to the throne on the death of Edward IV?
+Edward v
+10
+
+Who camped by a billabong?
+Swagman
+10
+
+Who can sue the Queen?
+Noone
+10
+
+Who captained Australia in the famous 1960 Tied Test?
+Richie benaud
+10
+
+Who captained HMS Victory at the battle of Trafalgar?
+Captain Hardy
+10
+
+Who captained the English Football team during the 1966 world cup?
+Bobby moore
+10
+
+Who captained the English Football team that won the World Cup in 1966?
+Bobby Moore
+10
+
+Who captained the Victory at the Battle of Trafalgar?
+Captain hardy
+10
+
+Who captured three U.S. Open amateur golf titles before reaching the age of 20?
+Tiger Woods
+10
+
+Who carried on Charles babbage's work when he died?
+His son
+10
+
+Who carried out the first manned orbit of the earth?
+John glenn
+10
+
+Who carried the Olympic flame into the Melbourne Cricket Ground in 1956?
+Ron Clarke
+10
+
+Who carried the Union Jack at the opening ceremony in the Sydney Olympics?
+Matthew pinsent
+10
+
+Who carries arrows in his quiver?
+Archer
+10
+
+Who carved the famed medici tombs in florence?
+Michelangelo
+10
+
+Who carved the heads at Mount Rushmore?
+Gutzon Borglum
+10
+
+Who carved the worlds tallest totem pole out of one log?
+Mungo martin
+10
+
+Who carves the roast beast at the who feast?
+Grinch
+10
+
+Who catained the argentinian world cup winners in 1986?
+Diego maradona
+10
+
+Who caused samson's downfall?
+Delilah
+10
+
+Who ceded Florida to britain?
+Spain
+10
+
+Who celebrated his 40th birthday in 1987 with 1500 guests in a converted tram shed near Aston Villa football ground?
+Prince Charles
+10
+
+Who celebrated their 25th anniversary in 1991 by recording a live tribute album in red deer, alberta, Canada?
+Nitty gritty dirt band
+10
+
+Who chaired the controversial report into the future of the Royal Ulster Constabulary?
+Chris patten
+10
+
+Who charted with Over Rising?
+Charlatans
+10
+
+Who chauffeured lady penelope?
+Parker
+10
+
+Who cheered the apple of the eye?
+Glenway wescott
+10
+
+Who choked on her own vomit at age 27?
+Janis joplin
+10
+
+Who claimed he was the first man to wet his pants on the moon?
+Buzz Aldrin
+10
+
+Who claimed that in the garden of eden god spoke Swedish, adam spoke danish, and the serpent spoke french?
+Swedish philologist
+10
+
+Who claimed that the sun wasn't 'gonna shine anymore?
+Walker brothers
+10
+
+Who claimed that, in the garden of eden, god spoke Swedish, adam spoke danish, & the serpent spoke french?
+Swedish philologist
+10
+
+Who claimed to be 'Anastasia', daughter of the murdered Tsar Nicholas II?
+Anna Anderson
+10
+
+Who claimed to be the world's most perfectly-developed man?
+Charles atlas
+10
+
+Who climbed mount fuji at age 99?
+Teiichi igarashi
+10
+
+Who climbed Mt Fuji at age 99?
+Teiichi igarashi
+10
+
+Who co-anchored the nbc nightly news before tom brokaw went solo?
+Roger mudd
+10
+
+Who co-owns a horse (with Krusty the Clown) named Kruddler?
+Bette Midler
+10
+
+Who co-wrote the communist manifesto with marx?
+Engles
+10
+
+Who co-wrote The Communist Manifesto?
+Marx and engels
+10
+
+Who coached president eisenhower for tv?
+Robert montgomery
+10
+
+Who coached the bad news bears?
+Morris buttermaker
+10
+
+Who coached the Celtics to 6 NBA championships?
+Bob cousy
+10
+
+Who coined the phrase 'good to the last drop'?
+Theodore roosevelt
+10
+
+Who coined the phrase Global village in 1962?
+Marshall mcluhan
+10
+
+Who coined the term 'assassination'?
+William shakespeare
+10
+
+Who coined the term 'proletariat'?
+Karl marx
+10
+
+Who coined the term, 'the evil empire'?
+Ronald reagan
+10
+
+Who coined the theory that the earth revolves around the sun?
+Nicolaus
+10
+
+Who coined the word 'bourgeoise'?
+Karl marx
+10
+
+Who coined the word sociology?
+Auguste comte
+10
+
+Who collects banknotes?
+Notaphile
+10
+
+Who collects coins or medals?
+Numismatist
+10
+
+Who collects match box labels?
+Philluminist
+10
+
+Who collects stamps?
+Philatelist
+10
+
+Who comanded the Confederate Forces in the American Civil War?
+General robert e lee
+10
+
+Who comes directly after scotty in the enterprise's chain of command?
+Sulu
+10
+
+Who comes hopping down the bunny trail?
+Peter cottontail
+10
+
+Who commanded the English fleet which defeated the Spanish Armada?
+Admiral howard
+10
+
+Who commanded the rough riders in Cuba in the Spanish American War?
+Leonard wood
+10
+
+Who commanded the Russian navy on the Black Sea from 1788 1789?
+John Paul jones
+10
+
+Who competes for the Dunmow Flitch?
+Happily married couples
+10
+
+Who conned Springfield into buying a monorail?
+Lyle Lanley
+10
+
+Who conquered Mexico?
+Hernando cortez
+10
+
+Who conquered the castle of elvas (Portugal)?
+Geraldo geraldes
+10
+
+Who conquered the matterhorn in 1865?
+Edward whymper
+10
+
+Who consumes 25% of the world's energy?
+United states
+10
+
+Who controlled Canada's hudson bay company?
+British
+10
+
+Who controlled the government of china before mao tse tung?
+Chiang kai-chek
+10
+
+Who controls more than 80% of the world's rough diamond supply?
+De beers
+10
+
+Who could distinguish 140 forms of tobacco ash?
+Sherlock holmes
+10
+
+Who counted himself out on march 31, 1968?
+Lyndon johnson
+10
+
+Who courageously proved that lightning was electricity?
+Benjamin franklin
+10
+
+Who covered the Diana Ross and The Supremes song You Can't Hurry Love in 1983?
+Phil collins
+10
+
+Who crashed out of the 1995 Tour de France after just 92 seconds?
+Chris boardman
+10
+
+Who created 'dennis the menace'?
+Hank ketcham
+10
+
+Who created 'horton'?
+Dr seuss
+10
+
+Who created 'peter rabbit'?
+Beatrix potter
+10
+
+Who created 'the muppet show'?
+Jim henson
+10
+
+Who created 'the simpsons'?
+Matt groening
+10
+
+Who created 'trepanning'?
+Dr bart hughes
+10
+
+Who created British master spy george smiley?
+John le carre
+10
+
+Who created detective nero wolfe?
+Rex stout
+10
+
+Who created dr. jekyll and mr. hyde?
+Robert louis stevenson
+10
+
+Who created hagar the horrible?
+Dik browne
+10
+
+Who created Harry Lime?
+Graham greene
+10
+
+Who created james bond?
+Ian fleming
+10
+
+Who created jergens lotion?
+Andrew jergens
+10
+
+Who created john blackthorne?
+James clavell
+10
+
+Who created master spy George Smiley?
+John le carre
+10
+
+Who created Miss Marple?
+Agatha christie
+10
+
+Who created philip marlowe?
+Raymond chandler
+10
+
+Who created Rambling Sid Rumpole?
+Kenneth williams
+10
+
+Who created such tv series as Star Trek and earth final conflict?
+Gene roddenberry
+10
+
+Who created the 'grinch'?
+Dr seuss
+10
+
+Who created the 'purple heart' decoration in 1782?
+George Washington
+10
+
+Who created the 'twilight zone'?
+Rod serling
+10
+
+Who created the cartoon character 'Bugs Bunny'?
+Chuck jones
+10
+
+Who created the character E.L. Whisty?
+Peter cook
+10
+
+Who created the character Walter Mitty?
+James thurber
+10
+
+Who created the comic strip 'blondie'?
+Chic young
+10
+
+Who created the comic strip 'bloom county'?
+Berkeley breathed
+10
+
+Who created the comic strip 'doonesbury'?
+Garry trudeau
+10
+
+Who created the detectives Dalziel and Pascoe?
+Reginald hill
+10
+
+Who created the discworld series of novels?
+Terry pratchett
+10
+
+Who created the fictional detective Cordelia Gray?
+P d james
+10
+
+Who created the fictional detective Nero Wolfe?
+Rex stout
+10
+
+Who created the first flavored soda pop?
+Townsend speakman
+10
+
+Who created the idea of using atomic numbers for elemental identification?
+Henry moseley
+10
+
+Who created the Metropolitan Police Force?
+Sir robert peel
+10
+
+Who created the muppets?
+Jim henson
+10
+
+Who created the musical les miserables?
+Alain boublil
+10
+
+Who created the myrmidons?
+Zeus
+10
+
+Who created the Scottish detective, Inspector Rebus?
+Ian rankin
+10
+
+Who created the secret seven?
+Enid blyton
+10
+
+Who created the Teletubbies?
+Anne wood
+10
+
+Who created wal-mart?
+Sam walton
+10
+
+Who created winne-the-pooh?
+A a milne
+10
+
+Who created woody woodpecker?
+Walter lantz
+10
+
+Who cremated on the banks of the ganges river on january 31, 1948?
+Mahatma gandhi
+10
+
+Who crowned napoleon?
+Napoleon
+10
+
+Who currently holds the world transfer record for a Football player?
+Christian vieri
+10
+
+Who cut off Van Gogh's ear?
+Himself
+10
+
+Who danced the Dance of the seven veils?
+Salome
+10
+
+Who deciphered the Rosetta stone?
+Jean champollion
+10
+
+Who declared in 1962 that having a hole drilled through the cranium enabled people to reach a higher state of consciousness?
+Dr bart hughes
+10
+
+Who defeated Charles iiat the battle of worcester in 1651?
+Oliver cromwell
+10
+
+Who defeated napoleon at waterloo?
+Duke of wellington
+10
+
+Who defeated sugar ray leonard in the brawl in montreal?
+Roberto duran
+10
+
+Who defended john scopes in the monkey trial?
+Clarence darrow
+10
+
+Who define heat in ergs per calorie?
+James joule
+10
+
+Who defined the contagion theory (infectious diseases caused by living agent transmitted from person to person) in 1546?
+Girolamo Fracastoro
+10
+
+Who defined the continental drift theory in 1858?
+Antonio snider-pellegrini
+10
+
+Who denied jesus three times?
+Peter
+10
+
+Who deposed Helmut Kohl as Chancellor of the Federal German Republic in 1998?
+Gerhard schroder
+10
+
+Who described the 1972 World Chess Championship as The free world against the lying,cheating, hypocritical russians?
+Bobbie fischer
+10
+
+Who designed Coventry Cathedral and Sussex University?
+Besil spence
+10
+
+Who designed hearst castle?
+Julia morgan
+10
+
+Who designed Madonna's famous pointed corset?
+Jean Paul gaultier
+10
+
+Who designed the ak-47 assault rifle?
+Mikhail kalashnikov
+10
+
+Who designed the bouncing bomb in World War II?
+Barnes wallis
+10
+
+Who designed the Clifton suspension bridge?
+Brunel
+10
+
+Who designed the dome of St Peter's, Rome?
+Michelangelo
+10
+
+Who designed the famous cover of 'sgt peppers lonely heart club band'?
+Peter blake
+10
+
+Who designed the first feasible automobile with an internal combustion engine?
+Karl f benz
+10
+
+Who designed the Houses of Parliament but died before they were completed?
+Sir Charles barry
+10
+
+Who designed the Marble Arch in London?
+John nash
+10
+
+Who designed the modern stained glass window at the Church of All Saints, Tudeley Kent?
+Marc chagall
+10
+
+Who designed The Monument in London?
+Sir christopher wren
+10
+
+Who designed the Palace of Westminster?
+Sir Charles barry
+10
+
+Who designed the pascal programming language?
+Niklaus wirth
+10
+
+Who designed the steam engines Flying Scotsman and Mallard?
+Sir nigel gresley
+10
+
+Who designed the tapestry that hangs behind the altar at Coventry Cathedral?
+Graham Sutherland
+10
+
+Who designed the uniforms for the vatican city's Swiss guards?
+Michelangelo
+10
+
+Who designed the union buildings?
+Sir herbert baker
+10
+
+Who designed the voortrekker monument?
+Gerard moerdijk
+10
+
+Who detailed her romance with Bill Clinton in the December Penthouse?
+Jennifer flowers
+10
+
+Who developed the first cylinder lock?
+Linus yale
+10
+
+Who developed the first internal pacemaker?
+Clarence lillehie
+10
+
+Who developed the first jet fighter?
+Germany
+10
+
+Who developed the first nuclear reactor?
+Enrico fermi
+10
+
+Who developed the first successful totally artificial heart?
+Robert jarvik
+10
+
+Who developed the Ice age theory in 1840?
+Louis agassiz
+10
+
+Who developed the jet engine in the 1930's?
+Frank Whittle
+10
+
+Who developed the laws of planetary motion?
+Johannes kepler
+10
+
+Who developed the LCD (liquid crystal display)?
+Hoffmann-la roche
+10
+
+Who developed the periodic table of chemical elements?
+Dimitri medeleev
+10
+
+Who devised a method of map projection that is named after him?
+Mercator
+10
+
+Who devised the package tour?
+Thomas Cook
+10
+
+Who devoured a cake with the words 'eat me' written on it in currants?
+Alice
+10
+
+Who did a 1960 gallup poll reveal had the most famous name in the world?
+Elvis presley
+10
+
+Who did a cover version in 1995 of the oasis hit wonderwall?
+Mike flowers
+10
+
+Who did Achilles kill and drag three times around the walls of Troy?
+Hector
+10
+
+Who did Adolf Hitler dictate Mein Kampf to while in prison?
+Rudolf Hess
+10
+
+Who did Adolf Hitler marry?
+Eva braun
+10
+
+Who did Adolph Hitler keep a framed photograph of on his desk?
+Henry ford
+10
+
+Who did albino luciani become on aygyst 26, 1978?
+Pope john Paul i
+10
+
+Who did always rescue sweet Polly Purebred?
+Underdog
+10
+
+Who did amd acquire to develop the k6 microprocessor?
+Nexgen
+10
+
+Who did American John Brown's underground movement help?
+Slaves
+10
+
+Who did Anna Anderson claim to be?
+Anastasia
+10
+
+Who did Anne Boleyn lose her head over?
+Henry viii
+10
+
+Who did Anthony Eden succeed as British prime minister in 1955?
+Winston churchill
+10
+
+Who did Arthur H. Bremer try to assassinate on may 13, 1972?
+George wallace
+10
+
+Who did Bilbo Baggins get his ring of invisibility from?
+Gollum
+10
+
+Who did Bob Hope mean in 1977, when he said 'we've lost the most recognizable voice in the world'?
+Bing crosby
+10
+
+Who did bobby fischer beat to win the world chess championship?
+Boris spassky
+10
+
+Who did Boris Becker defeat in the mens singles finals at Wimbledon in 1985?
+Kevin curran
+10
+
+Who did boy george become on stars in their eyes 2001?
+David bowie
+10
+
+Who did brigham young lead to utah?
+Mormons
+10
+
+Who did caesar and cleo become?
+Sonny and cher
+10
+
+Who did cassius stab?
+Julius caesar
+10
+
+Who did Christina Onassis grudgingly give $25 million to, in 1977?
+Jacqueline onassis
+10
+
+Who did Cicero describe as the father of history?
+Herodotus
+10
+
+Who did David kill?
+Goliath
+10
+
+Who did David letterman pay four cartons of marlboro to be on his show?
+Miss ussr
+10
+
+Who did Davy Crockett beat in a keelboat race, from Disney's perspective?
+Mike fink
+10
+
+Who did dick van dyke play on the 'dick van dyke show'?
+Rob petrie
+10
+
+Who did Dickens base his Mr Micawber character on?
+His father
+10
+
+Who did Elton John originally duet with on Don't Go Breaking My Heart?
+Kiki Dee
+10
+
+Who did gawain accuse lancelot of sleeping with?
+Guinevere
+10
+
+Who did gawain accuse of sleeping with guinevere?
+Sir lancelot
+10
+
+Who did general francisco franco designate as his successor in Spain in 1969?
+King juan carlos
+10
+
+Who did george bush lose a 1970 texas senate election to?
+Lloyd bentsen
+10
+
+Who did God ask that he sacrifice his only son?
+Abraham
+10
+
+Who did hank ketcham create?
+Dennis the menace
+10
+
+Who did Hayley Mills think the murderer was who she sheltered in her shed in Whistle down the wind?
+Jesus
+10
+
+Who did Henry Ford name the Edsel car after?
+His son
+10
+
+Who did Henry viii of England divorce to marry anne boleyn?
+Catherine of aragon
+10
+
+Who did Hercules persuade to go and get the Golden Apples for him?
+Atlas
+10
+
+Who did israeli agents kidnap in argentina?
+Adolf eichmann
+10
+
+Who did James Earl Ray murder in 1968?
+Martin luther king
+10
+
+Who did Jimi Hendrix once praise on the Jimmy Carson TV show as one of Americas most promising guitarists?
+Billy gibbons
+10
+
+Who did Jimmy Carter defeat to win the Presidency of the USA?
+Gerald ford
+10
+
+Who did John F Kennedy succeed as US president?
+Dwight d eisenhower
+10
+
+Who did Joseph Stalin succeed as premier of Russia?
+Lenin
+10
+
+Who did Jusuf Habibie succeed as President of Indonesia?
+Suharto
+10
+
+Who did Krusty steal the crank-call bit from?
+Steve Allen 
+10
+
+Who did larry hagman portray in the tv series 'dallas'?
+J.r ewing
+10
+
+Who did lennox lewis represent at the olympics?
+Canada
+10
+
+Who did leon czolgosz assassinate?
+William kinley
+10
+
+Who did leonardo dicaprio play in the movie titanic?
+Jack dawson
+10
+
+Who did madeline kahn play in the film 'paper moon'?
+Trixie delight
+10
+
+Who did Mark David Chapman shoot on December 8, 1980?
+Lennon
+10
+
+Who did Mary Quant call 'the knock out beauty of our time'?
+Twiggy
+10
+
+Who did milton describe as 'eyeless in gaza at the mill with the slaves'?
+Samson
+10
+
+Who did New York's Cosmos buy for $4.5 million in 1975?
+Pele
+10
+
+Who did orson welles play in the film 'the third man'?
+Harry lime
+10
+
+Who did patrick duffy portray in the tv series 'dallas'?
+Bobby ewing
+10
+
+Who did patrick macnee portray in the spy drama the avengers?
+Jonathan steed
+10
+
+Who did perseus kill?
+Medusa
+10
+
+Who did pocahontas entertain in the nude?
+Colonists
+10
+
+Who did pussy cat go to see in London?
+Queen
+10
+
+Who did queen elizabeth ii marry?
+Prince phillip
+10
+
+Who did ray davis provide lead vocals for?
+Kinks
+10
+
+Who did Richard Nixon call the ayatollah of the press corps?
+Sam donaldson
+10
+
+Who did ringo starr marry in 1981?
+Barbara bach
+10
+
+Who did robin hood constantly wage war with?
+Sheriff of nottingham
+10
+
+Who did rocky marciano defeat to first take the title in 1952?
+Walcott
+10
+
+Who did Roger Bannister beat at the Commonwealth Games of 1954?
+John landy
+10
+
+Who did ron howard play in 'happy days'?
+Richie
+10
+
+Who did Russia sell Alaska to?
+U.s.a
+10
+
+Who did Samson fall in love with?
+Delilah
+10
+
+Who did shakespeare call the the moor of venice?
+Othello
+10
+
+Who did sidney say would play her in sream 2?
+Tori spelling
+10
+
+Who did Simple Simon meet on the way to the fair?
+Pieman
+10
+
+Who did sitting bull call little sure shot?
+Annie oakley
+10
+
+Who did Sonny Liston succeed as world heavyweight boxing champion?
+Floyd Patterson
+10
+
+Who did Spain fight in the 1808-1814 Peninsular War?
+Portugal
+10
+
+Who did star the movie black sabbath was named after?
+Boris karloff
+10
+
+Who did the barons Fitzurse, De Tracy, De Morville and Le Breton conspire to murder?
+Thomas becket
+10
+
+Who did the factory that Charlie Bucket visited in a Roald Dahl story belong to?
+Willy wonka
+10
+
+Who did the golan heights belong to before israel?
+Syria
+10
+
+Who did the golliwogs become in 1968?
+Creedence clearwater revival
+10
+
+Who did the mg's back up?
+Booker t
+10
+
+Who did the Miracle Mets defeat to win the 1969 world series?
+Thailand
+10
+
+Who did the national enquirer offer 250,000 dollars to perform a human head transplant?
+Dr christian barnard
+10
+
+Who did the New York jets sign to a 427,000 dollars contract on january 2, 1965?
+Joe namath
+10
+
+Who did the owl and pussycat buy their ring from?
+Pig
+10
+
+Who did the roman general publius scipio africanus defeat?
+Hannibal
+10
+
+Who did The Saturday Evening Post dub in 1959 as 'the ultimate material girl?
+Barbie
+10
+
+Who did the u.s pay for the purchase of Alaska?
+Russia
+10
+
+Who did the voice for the cartoon character betty boop?
+Mae questel
+10
+
+Who did the voice of the Grinch in the animated version of 'How the Grinch Stole Christmas?
+June Foray
+10
+
+Who did the voices of bugs bunny, sylvester and tweety pie?
+Mel blanc
+10
+
+Who did the Walrus and the Carpenter take for a walk?
+The oysters
+10
+
+Who did valeri solanis shoot?
+Andy warhol
+10
+
+Who did yusufa k. lule replace as his african country's leader in 1979?
+Idi amin dada
+10
+
+Who didn't invent the passenger lift in 1852 but did invent a safety device which made them safe enough for general use?
+Elisha g. otis
+10
+
+Who died at Gravesend in March 1617 when she was about to embark for her homeland in America?
+Pocahontas
+10
+
+Who died in the arms of the last German Kaiser?
+Queen victoria
+10
+
+Who died on french soil august 31st 1997?
+Princess diana
+10
+
+Who died whilst attempting to discover the source of the Nile?
+Stanley livingstone
+10
+
+Who dies in every episode of the cartoon series south park?
+Kenny
+10
+
+Who dies in the back of a powder blue cadilac on New Years day 1953?
+Hank williams
+10
+
+Who dined on mince and slices of quince?
+The owl and the pussycat
+10
+
+Who directed 'the breakfast club'?
+John hughes
+10
+
+Who directed 'the french connection' and 'the exorcist'?
+William friedkin
+10
+
+Who directed 'the godfather'?
+Francis ford coppola
+10
+
+Who directed A Streetcar Named Desire?
+Llywellen Sinclair 
+10
+
+Who directed and starred in 'the little tramp'?
+Charlie chaplin
+10
+
+Who directed Spartacus?
+Stanley kubrick
+10
+
+Who directed the 1916 film 'intolerance'?
+D.w griffith
+10
+
+Who directed the 1946 'it's a wonderful life'?
+Frank capra
+10
+
+Who directed the 1954 movie 'The Blackboard Jungle'?
+Richard Brooks
+10
+
+Who directed the 1971 film macbeth?
+Roman polanski
+10
+
+Who directed the 1974 film chinatown starring jack nicholson?
+Roman polanski
+10
+
+Who directed the 1976 film All The President's Men?
+Alan j pakula
+10
+
+Who directed the 1978 film Invasion of the Body Snatchers?
+Philip Kaufman
+10
+
+Who directed the 1989 film the war of the roses?
+Danny devito
+10
+
+Who directed the 1998 gangster film lock, stock and two smoking barrels?
+Guy ritchie
+10
+
+Who directed the 1999 movie eyes wide shut?
+Stanley kubrik
+10
+
+Who directed the buttery classic 'Last Tango in Paris'?
+Bertolucci
+10
+
+Who directed the classic movie High Noon?
+Fred Zinnemann
+10
+
+Who directed the commercially successful the way we were?
+Sydney pollack
+10
+
+Who directed the dark crystal (2 people jh fo)?
+Jim henson frank oz
+10
+
+Who directed the film 'aliens'?
+Scott
+10
+
+Who directed the film 'bowfinger'?
+Frank oz
+10
+
+Who directed the film 'jfk'?
+Oliver stone
+10
+
+Who directed the film 'ordinary people'?
+Robert redford
+10
+
+Who directed the film 'the duel'?
+Steven spielberg
+10
+
+Who directed the film 'titanic'?
+James cameron
+10
+
+Who directed the film a fistful of dollars?
+Sergio leona
+10
+
+Who directed the film born on the fourth of july?
+Oliver stone
+10
+
+Who directed the film gandhi?
+Richard attenborough
+10
+
+Who directed the film Lawrence of Arabia?
+David lean
+10
+
+Who directed the film MASH?
+Robert altman
+10
+
+Who directed the film Rain Man?
+Barry levinson
+10
+
+Who directed the film silence of the lambs?
+Jonathan demme
+10
+
+Who directed the film the purple rose of cairo?
+Woody allen
+10
+
+Who directed the films 'carrie' and 'the untouchables'?
+Brian de palma
+10
+
+Who directed the films 'La Strada' and 'La Dolce Vita'?
+Fellini
+10
+
+Who directed the films, mrs miniver, ben hur and funny girl?
+William wyler
+10
+
+Who directed the musical 'My Fair Lady'?
+George cukor
+10
+
+Who directed where the boys are?
+Harry levin
+10
+
+Who discovered Alaska?
+Vitus bering
+10
+
+Who discovered bacteria in 1683?
+Anton van leeuwenhoek
+10
+
+Who discovered Botany Bay?
+Captain Cook
+10
+
+Who discovered Florida?
+Ponce de leon
+10
+
+Who discovered gamma rays?
+Ernest rutherford
+10
+
+Who discovered in 1860 that carbolic acid is an antiseptic?
+Dr lister
+10
+
+Who discovered king tut's tomb, and in what year was it discovered?
+Howard carter in 1922
+10
+
+Who discovered morphine?
+Friedrich saturner
+10
+
+Who discovered natural radioactivity?
+Antoine becquerel
+10
+
+Who discovered oxygen?
+Joseph priestley
+10
+
+Who discovered radioactivity?
+Antoine henri becquerel
+10
+
+Who discovered radiocarbon dating?
+Willard libby
+10
+
+Who discovered saturn's rings?
+Galileo
+10
+
+Who discovered Tasmania?
+Abel tasman
+10
+
+Who discovered that galaxies were all red shifted i.e the universe was expanding?
+Edwin hubble
+10
+
+Who discovered the binomial theory at the age of 21?
+Isaac newton
+10
+
+Who discovered the cholera micro-organism?
+Koch
+10
+
+Who discovered the circulation of blood?
+William harvey
+10
+
+Who discovered the electron?
+Jj thomson
+10
+
+Who discovered the fermentation process in 1860?
+Louis pasteur
+10
+
+Who discovered the mississippi river?
+Hernando de soto
+10
+
+Who discovered the neutron in 1932?
+Sir james chadwick
+10
+
+Who discovered the neutron?
+James chadwick
+10
+
+Who discovered the ozone?
+Christian schonbein
+10
+
+Who discovered the planet Uranus?
+William herschel
+10
+
+Who discovered the positron in 1932?
+Carl anderson
+10
+
+Who discovered the proton in England in 1919?
+Ernest rutherford
+10
+
+Who discovered the River Zambezi?
+David livingstone
+10
+
+Who discovered the tomb of Tutenkhamen?
+Howard carter
+10
+
+Who discovered the Zambezi river?
+David livingstone
+10
+
+Who discovered their dream girls, the chipettes in an 1987 flick?
+Chipmunks
+10
+
+Who discovered uranus in 1781?
+Sir william herschel
+10
+
+Who discovered victoria falls?
+David livingston
+10
+
+Who discovered x rays?
+Wilhelm roentgen
+10
+
+Who do Brain of Britain and Stop the Week have in common?
+Robert robinson
+10
+
+Who do Brazilians call Huguinho, Zezinho & Luisinho?
+Huey dewey louie
+10
+
+Who do the Japanese call Miki Mauso?
+Mickey mouse
+10
+
+Who does alice follow down the hole?
+White rabbit
+10
+
+Who does Bart have to sit beside on the filed trip to SNPP?
+Wendel
+10
+
+Who does Bart play in the President's Day play?
+John Wilkes Booth
+10
+
+Who does christina applegate play on the tv sitcom 'jesse'?
+Jesse
+10
+
+Who does David Soul play in Starsky and Hutch?
+Hutch
+10
+
+Who does fred savage play on 'the wonder years'?
+Kevin arnold
+10
+
+Who does kate jackson play on the tv series 'charlie's angels'?
+Sabrina duncan
+10
+
+Who does Linus wait for each Halloween?
+Great pumpkin
+10
+
+Who does Mr. Burns credit his long life to?
+Satan
+10
+
+Who does Springfield believe is trapped down a well?
+Timmy O'Toole
+10
+
+Who does the Mona Lisa depict?
+Madonna Lisa Gherardini
+10
+
+Who does the statue, the Colossus of Rhodes, depict?
+Helios
+10
+
+Who drafted most of the American declaration of independence?
+Thomas
+10
+
+Who drafted the first periodic table?
+Mendeleev
+10
+
+Who draws the cartoon Fred bassett?
+Graham
+10
+
+Who draws the far side series of cartoons?
+Gary larson
+10
+
+Who dreamed about the sun, moon & stars bowing down to him?
+Job
+10
+
+Who drew the comic 'the maxx'?
+Sam keith
+10
+
+Who drew the first comic strip in 1896, 'the yellow kid'?
+Richard felton outcault
+10
+
+Who drew the Mr Men?
+Roger hargreaves
+10
+
+Who drew the peanuts series of cartoons?
+Charles schulz
+10
+
+Who drinks the most tea per capita?
+Ireland
+10
+
+Who earned $50 playing harmonica on a Harry Belafonte album in 1960?
+Bob dylan
+10
+
+Who earned a Nobel Prize for peace for his role in ressolving the Russo Japanese War?
+Theodore roosevelt
+10
+
+Who eats the most turkey per capita?
+Israel
+10
+
+Who edited the 'Indian opinion' during his stay in south africa?
+Mahatma gandhi
+10
+
+Who eloped with the pussycat?
+Owl
+10
+
+Who enacted a law requiring cigarette manufacturers to put health warnings on their packages?
+Lyndon b johnson
+10
+
+Who enjoyed a first flight in Concorde on 6 aug 1985?
+The queen mother
+10
+
+Who entered the uk charts at no 7in sept 2002with its written in the stars?
+Paul weller
+10
+
+Who entertained the colonists by doing cartwheels in the nude?
+Pocahontas
+10
+
+Who established horse power as a unit of measurement?
+James watt
+10
+
+Who established the modern theory of biological evolution?
+Charles darwin
+10
+
+Who established the Presbyterian form of Protestantism in Switzerland?
+John calvin
+10
+
+Who experimented with the idea of contact lenses?
+Leonardo da vinci
+10
+
+Who explained the secrets of Life on Earth?
+David attenborough
+10
+
+Who famously faked Samuel Palmer's paintings?
+Tom keating
+10
+
+Who famously said 'We must all hang together, or, most assuredly, we shall all hang separately.'?
+Benjamin franklin
+10
+
+Who fathered cher's son, elijah blue?
+Gregg allman
+10
+
+Who fathered three successive sovereigns?
+Henry viii
+10
+
+Who fell asleep in the catskills for twenty years?
+Rip van winkle
+10
+
+Who fell inlove with Little White Dove?
+Running bear
+10
+
+Who fell through the ice at Dingley Dell?
+Mr pickwick
+10
+
+Who figured out how to win friends and influence people?
+Dale carnegie
+10
+
+Who first believed that the earth was round?
+The ancient greeks
+10
+
+Who first calculated 'pi' around 250 bc?
+Archimedes
+10
+
+Who first designed the mini-skirt?
+Mary quant
+10
+
+Who first discovered the existence of Neptune?
+Johann galle
+10
+
+Who first incorporated amorphous phosphorus in the manufacture and use of safety matches, by 1855?
+Lundstrom brothers
+10
+
+Who first postulated the cosamic string theory?
+Thomas kibble
+10
+
+Who first proposed the concept of atomic structure in 1911?
+Ernest rutherford
+10
+
+Who first recognised the u.s in 1776?
+Croatia
+10
+
+Who first said Awop-bop-a-loo-mop-alop-bam-boom?
+Little richard
+10
+
+Who first settled maryland?
+Lord baltimore
+10
+
+Who first split light into the colours of the rainbow?
+Isaac Newton
+10
+
+Who first swum the English channel in 1875?
+Matthew webb
+10
+
+Who first titillated press and public not so much by his single White Boy as by his looks in 1982?
+Boy george
+10
+
+Who first uk no 1 hit was into the groove?
+Madonna
+10
+
+Who first used acupuncture?
+Emperor shen-nung
+10
+
+Who first used antiseptics?
+Jospeh lister
+10
+
+Who first wore red racing stripes on his spacesuit during a moonwalk?
+Alan shepard
+10
+
+Who first wrote about haggis?
+Aristophanes
+10
+
+Who flew above sleeping beauty castle from 1961 to 1977?
+Tinker bell
+10
+
+Who flew the rocket powered Bell X IAa at a record mach 2.5?
+Chuck yaeger
+10
+
+Who flew too close to the sun and had his wings melted?
+Icarus
+10
+
+Who flew too close to the sun?
+Icarus
+10
+
+Who flew too near the sun waering wings attached with wax?
+Icarus
+10
+
+Who flew too near the sun wearing wings attached with wax?
+Icarus
+10
+
+Who flies into the centre of hurricanes?
+Hurricane hunters
+10
+
+Who followed Alexander Haig as US foreign secretary in 1982?
+George schultz
+10
+
+Who followed Grover Cleveland as US President in 1889?
+Benjamin harrison
+10
+
+Who followed Grover Cleveland as US President in 1897?
+William mckinley
+10
+
+Who followed Henry VIII to the throne?
+Edward vi
+10
+
+Who followed up beetlejuice with clean and sober?
+Michael keaton
+10
+
+Who followed up his runaway hit with hats off to larry?
+Del shannon
+10
+
+Who followed walk right back with temptation?
+Everly brothers
+10
+
+Who formed Microsoft with Bill Gates?
+Paul allen
+10
+
+Who formed the nhl players' association?
+Alan eagleson
+10
+
+Who formulated the laws which first explained the movements of the planets properly?
+Kepler
+10
+
+Who fought george foreman in the 'rumble in the jungle'?
+Mohammed ali
+10
+
+Who fought mohammed ali in the 'rumble in the jungle'?
+George foreman
+10
+
+Who fought mohammed ali in the fight billed as the thriller in manila?
+Joe frazier
+10
+
+Who fought muhammad ali in the thrilla in manila?
+Joe frazier
+10
+
+Who fought over the falkland islands in 1982?
+Britain and argentina
+10
+
+Who fought Tommy Burns for the world heavyweight boxing championship in Sydney in 1908?
+Jack Johnson
+10
+
+Who found himself flying on the island laputa?
+Gulliver
+10
+
+Who found himself flying on the island of Laputa?
+Gulliver
+10
+
+Who found the long lost explorer David livingston?
+Henry stanley
+10
+
+Who founded 'boys town'?
+Father flanagan
+10
+
+Who founded 'live aid' and 'band aid'?
+Bob geldof
+10
+
+Who founded a monastery on Lindisfarne in AD 635?
+Saint aidan
+10
+
+Who founded Atari?
+Nolan bushnell
+10
+
+Who founded avogadro's law?
+Amadeo avogadro
+10
+
+Who founded histology?
+Marie bichat
+10
+
+Who founded London Zoo in Regents Park?
+Sir stamford raffles
+10
+
+Who founded Microsoft with Bill Gates?
+Paul allan
+10
+
+Who founded the 'habitat' company in 1971?
+Sir terence conran
+10
+
+Who founded the 'sas'?
+David stirling
+10
+
+Who founded the academy in athens?
+Plato
+10
+
+Who founded the American red cross?
+Clara barton
+10
+
+Who founded the ballets russe in 1909?
+Serge diaghilev
+10
+
+Who founded the boy scout movement?
+Robert baden powell
+10
+
+Who founded the boy scouts of America?
+Daniel beard
+10
+
+Who founded the boy scouts?
+Sir robert baden-powell
+10
+
+Who founded the church of England?
+King Henry viii
+10
+
+Who founded the Church of Scientology?
+L. ron hubbard
+10
+
+Who founded the economist magazine in 1843?
+James wilson
+10
+
+Who founded the Fascist party in Italy in 1919?
+Benito mussolini
+10
+
+Who founded the foundation for infantile paralysis?
+Franklin roosevelt
+10
+
+Who founded the Girl Guides?
+Robert baden-powell
+10
+
+Who founded the girl scouts?
+Juliette gordon low
+10
+
+Who founded the Irish republican army?
+Michael collins
+10
+
+Who founded the jefferson airplane?
+Paul kantner
+10
+
+Who founded the knowledge of blood circulation?
+William harvey
+10
+
+Who founded the London Metropolitan Police?
+Sir robert peel
+10
+
+Who founded the Methodist faith?
+John Wesley
+10
+
+Who founded the miss world competition?
+Eric morley
+10
+
+Who founded the Missionaries of Charity in 1948?
+Mother theresa
+10
+
+Who founded the National Viewers and Listeners Assoc?
+Mary whitehouse
+10
+
+Who founded the Persian empire?
+King cyrus
+10
+
+Who founded the Pre-Raphaelite Brotherhood in 1848?
+Dante gabriel rossetti
+10
+
+Who founded the Rocket record label?
+Elton john
+10
+
+Who founded the UKs National viewers and listeners Association?
+Mary Whitehouse
+10
+
+Who founded the ymca in 1844?
+George williams
+10
+
+Who founded troy?
+Cadmus
+10
+
+Who gained fame as a mind over matter spoon bender?
+Uri geller
+10
+
+Who gather together in covens?
+Witches
+10
+
+Who gave a 1.25 million charity cheque to Bob Geldof in Oct 1986 that he couldnt have given to him 3 months later?
+Terry waite
+10
+
+Who gave a piano concert in moscow in april 1986 having left Russia 61 years earlier?
+Vladimir horowitz
+10
+
+Who gave excalibur to king arthur?
+Lady of the lake
+10
+
+Who gave kent allard permission to use his name in the comic book series, the shadow?
+Lamont cranston
+10
+
+Who gave marilyn monroe a poodle named 'mafia'?
+Frank sinatra
+10
+
+Who gave the U. S.A. the Statue of Liberty?
+France
+10
+
+Who gets bitten by vampire bats on the big toe?
+Campers
+10
+
+Who gets the 'picayune intelligence'?
+Frostbite falls
+10
+
+Who gives manicures at the salon east beauty parlor?
+Madge
+10
+
+Who got his 100-meter dash gold medal stripped away due to his steroid use in the 1988 Olympics?
+Ben Johnson
+10
+
+Who got his 100-meter dash gold medal stripped away due to to steroid use in the 1988 Olympics?
+Ben Johnson
+10
+
+Who got his name because of a yellow & black striped shirt he wore until it literally fell apart?
+Sting
+10
+
+Who got his name because of a yellow-and-black striped shirt he wore until it literally fell apart?
+Sting
+10
+
+Who got in the basket with teddy& andy pandy?
+Looby loo
+10
+
+Who got knocked out by muhammad ali in kinshasha, zaire, in 1974?
+George foreman
+10
+
+Who got lost in the fog in his search for the America's Cup in 1970?
+Baron Bich
+10
+
+Who got slimmed first in Ghostbusters?
+Peter Venkman
+10
+
+Who got the world's worst circumcision?
+John bobbit
+10
+
+Who grew the famous White garden at Sissinghurst?
+Vita Sackville West
+10
+
+Who gyred and gimbled in the wabe?
+The slithy toves
+10
+
+Who had 60s hits with Zabadak and the Legend of Xanadu?
+Dave dee,dozy,beaky,mick and titch
+10
+
+Who had a 1961 hit with '(Home in) Pasadena'?
+Temperance seven
+10
+
+Who had a 1965 hit with 'Windmill in old Amsterdam'?
+Ronnie hilton
+10
+
+Who had a 1970s number one with Matchstalk Men and Matchstalk Cats and Dogs?
+Brian and michael
+10
+
+who had a 1980s number one with let's party?
+Jive bunny & the mastermixers
+10
+
+Who had a 1981 number one with Don't You Want Me?
+The human league
+10
+
+Who had a 1985 christmas number one with saving all my love for you?
+Whitney houston 
+10
+
+Who had a 1998 hit with Last Thing On My Mind?
+Steps
+10
+
+Who had a 1999 hit with Blue?
+Eiffel 65
+10
+
+Who had a 30 year love affair with lillian hellman?
+Dashiel hammett
+10
+
+Who had a 30-year love affair with dashiel hammett?
+Lillian hellman
+10
+
+Who had a best selling single in 1972 with 'Amazing Grace?
+Royal scots dragoon guards
+10
+
+Who had a childhood fanatsy that she was really Marilyn Monroe's daughter?
+Debbie Harry
+10
+
+Who had a cleaner called Mrs Scrubbit?
+The woodentops
+10
+
+Who had a dog called Gnasher?
+Dennis the menace
+10
+
+Who had a hit with 'calendar girl'?
+Neil sedaka
+10
+
+Who had a hit with 'stand by your man'?
+Tammy wynette
+10
+
+Who had a hit with anyone can fall in love in 1986?
+Anita dobson
+10
+
+Who had a hit with classical gas?
+Mason williams
+10
+
+Who had a hit with the song '24 hours from Tulsa'?
+Gene pitney
+10
+
+Who had a hit, in 1997, with Postcards from Heaven?
+The lighthouse family
+10
+
+Who had a man servant named cato?
+Inspector clouseau
+10
+
+Who had Brass In Pocket?
+The pretenders
+10
+
+Who had chanel no. 5 sprayed in the ring before he wrestled?
+Gorgeous george
+10
+
+Who had her uninsured jewellery stolen at an airport in 1995?
+Duchess of york
+10
+
+Who had hiccups for 69 years?
+Charles osborne
+10
+
+Who had hit records with 'You Love Us' and 'Kevin Carter'?
+Manic street preachers
+10
+
+Who had hits with Bed Sitter and Torch?
+Soft cell
+10
+
+Who had hits with I Am a Rock and The Boxer?
+Simon & garfunkel
+10
+
+Who had over 1000 patents registered to him when he died?
+Thomas edison
+10
+
+Who had poachers castrated?
+Richard the lionheart
+10
+
+Who had six fingernails on one hand , but only five fingers on that hand?
+Anne boleyn
+10
+
+Who had teenage sidekicks Zan, Wendy, Jayna & Marvin?
+Super friends
+10
+
+Who had the 1936 miss hungary title taken away from her because she was underage?
+Zsa zsa gabor
+10
+
+Who had the first central heating systems?
+Romans
+10
+
+Who had the first ever official number one in 1952?
+Al martino
+10
+
+Who had the nickname 'golden bear'?
+Jack nicklaus
+10
+
+Who had the role of the piano man in lady sings the blues?
+Richard pryor
+10
+
+Who had the u.s. army's dog tag number 533 107 61?
+Elvis presley 
+10
+
+Who had the UK Christmas NO 1 single in 1995 with Earth Song?
+Michael jackson
+10
+
+Who had the vision that resulted in the book of revelations?
+John
+10
+
+Who had their first no 1 with message in a bottle?
+Police
+10
+
+Who had three breasts?
+Anne boleyn
+10
+
+Who had top ten hits in the 1960s with 'together, somewhere' and 'hold me'?
+P.j. proby
+10
+
+Who had top ten hits in the 1980s with Run to the Hills, Can I Play With Madness and The Evil That Men Do?
+Iron maiden
+10
+
+Who has a leg for an arm and an arm for a leg?
+Mr. McCraig
+10
+
+Who has a line of sports shoes for nike?
+Micheal Jordan
+10
+
+Who has a record 5 wins in f-1 racing?
+Juan manuel fangio
+10
+
+Who has a series of books called the wheel of time?
+Robert jordan
+10
+
+Who has a statue in leicester square?
+Charlie chaplin
+10
+
+Who has been in power in Cuba since declaring the country a socialist nation over 30 years ago?
+Fidel Castro
+10
+
+Who has been married to joan, joanne, joanna and alexis?
+Johnny carson
+10
+
+Who has been nicknamed Dr Death in the 1990s?
+Dr jack kevorkian
+10
+
+Who has been Pope the longest in the 20th century?
+John Paul II
+10
+
+Who has been serving apple pie for more than 100 years?
+Yale college
+10
+
+Who has daughters named Jade, Elizabeth, Scarlett and Georgia?
+Mick jagger
+10
+
+Who has had hits with heartbeat, 5-6-7-8 and tragedy?
+Steps
+10
+
+Who has more chromosomes, Tarzan or Cheetah?
+Cheetah
+10
+
+Who has presented his weekly radio monologue 'letter from America' for the bbc without a break since march 1946?
+Alistair cooke
+10
+
+Who has stolen the most bases in baseball?
+Ricky henderson
+10
+
+Who has the biggest percentage of female heads of household?
+Botswana
+10
+
+Who has the highest per capital consumption of cheese?
+France
+10
+
+Who has the most cars per mile of road?
+England
+10
+
+Who has the most personalised licence plates?
+Illinois
+10
+
+Who has the most u.s banknotes?
+Russia
+10
+
+Who has the most wins in 500cc grand prix racing, with 8 wins?
+Giacomo agostini
+10
+
+Who has the nickname, the divine miss m?
+Bette midler
+10
+
+Who has the voice of bugs bunny, sylvester and tweety pie?
+Mel blanc
+10
+
+Who has won the most best actress academy award oscars?
+Katherine hepburn
+10
+
+Who has written many books about Jack Aubrey and Stephen Maturin?
+Patrick o'brian
+10
+
+Who hated mozart with a deadly passion?
+Salieri
+10
+
+Who headed the task force that proposed the space shuttle?
+Spiro agnew
+10
+
+Who heard it through the grapevine in 1968?
+Marvin gaye
+10
+
+Who held out his hand and miraculously parted the waters of the Red sea so that the Israelites could pass to safety?
+Moses
+10
+
+Who helped George Harrison produce 'My Sweet Lord'?
+Phil spector
+10
+
+Who hid in a house at 263 Princengracht, Amsterdam, for two years?
+Anne frank
+10
+
+Who hired The Jackal?
+Oas
+10
+
+Who hit a golf shot on the moon?
+Alan sheppard
+10
+
+Who hit a homerun in his first at bat in college, the olympics, & the major leagues?
+Will clark
+10
+
+Who holds England's all time record for international Football caps?
+Viv anderson
+10
+
+Who holds the career home run record in major league baseball?
+Hank aaron
+10
+
+Who holds the modern day record for most errors by an outfielder?
+Ty cobb
+10
+
+Who holds the record for most touchdown passes in one season?
+Dan marino
+10
+
+Who holds the world on his shoulders?
+Atlas
+10
+
+Who hosted the 1982 Football world cup?
+Spain
+10
+
+Who hosted the show this is your life?
+Ralph edwards
+10
+
+Who hosted tv's longest running tv show?
+Ed sullivan 
+10
+
+Who hosts the monza grand prix?
+Italy
+10
+
+Who in 1497 established the first Portuguese colony in India?
+Vasco da gama
+10
+
+Who in 1994 knocked out Michael Moore to become the oldest man ever to win a version of the World Heavyweight Boxing title?
+George foreman
+10
+
+Who in 1994 knocked out Michael Moorer to become the oldest man ever to win a version of the World Heavyweight Boxing title?
+George foreman
+10
+
+Who in baseball was known as king kong?
+Dave kingman
+10
+
+Who in fiction was the arch-enemy of Flash Gordon?
+Ming the merciless
+10
+
+Who in greek mythology had snakes instead of hair?
+Medusa
+10
+
+who in Greek mythology who took out the family chariot before he had learned to drive it and came to grief?
+Phaeton
+10
+
+Who in mythology was condemned to sit under a sword suspended by a hair?
+Damocles
+10
+
+Who in nba history has blocked the most shots?
+Hakeem olajuwon
+10
+
+Who in shakespeare was the ?moor of venice'?
+Othello
+10
+
+Who in the 1983/4 season became the first British footballer to win the European Golden Boot award?
+Ian rush
+10
+
+Who in the 20th century is credited with building the first successful helicopter, which flew in 1939?
+Igor sikorsky
+10
+
+Who in the 60s produced the 'Space Age' collection?
+Pierre cardin
+10
+
+Who in the Bible received thirty pieces of silver?
+Judas
+10
+
+Who in the bible was the brother of Esau?
+Jacob
+10
+
+Who initiated the works of the Bible?
+King solomon
+10
+
+Who interpreted the writing on the wall?
+Daniel
+10
+
+Who introduced racial segregation in south africa?
+National party
+10
+
+Who introduced rugby to new zealand?
+Charles monro
+10
+
+Who introduced the christmas tree to England from bavaria?
+Prince albert
+10
+
+Who introduced the first designer collection for men?
+Pierre cardin
+10
+
+Who introduced the idea that electrons move round the nuclei of atoms in well defined orbits?
+Niels bohr
+10
+
+Who introduced the printing press into England in 1476?
+William caxton
+10
+
+Who introduced the terms negative and positive in relation to electricity?
+Benjamin franklin
+10
+
+Who introduces Bart to Herman?
+Grampa Simpson
+10
+
+Who introduces Channel 4's Time Team programme?
+Tony robinson
+10
+
+Who introduces the animals on the tv show?
+Mr greenjeans
+10
+
+Who invented a screw which lifts water to a higher level?
+Archimedes
+10
+
+Who invented aluminum manufacture, (by electrolytic action)?
+Charles hall
+10
+
+Who invented analytic geometry?
+Descartes
+10
+
+Who invented anesthetic: (first use of anesthetic-ether-on humans)?
+Crawford long
+10
+
+Who invented aspirin?
+Dr felix hoffman
+10
+
+Who invented barbed wire in 1873?
+Joseph e. glidden
+10
+
+Who invented bifocal glasses?
+Benjamin franklin
+10
+
+Who invented braille in 1829?
+Louis braille
+10
+
+Who invented braille?
+Louis Braille
+10
+
+Who invented carbonated soda water?
+Joseph priestley
+10
+
+Who invented cat's eyes?
+Percy shaw
+10
+
+Who invented cement in 1824?
+Joseph aspdin
+10
+
+Who invented chewing gum in 1848?
+John curtis
+10
+
+Who invented coca cola?
+Dr john pemberton
+10
+
+Who invented condensed milk in 1853?
+Gail borden
+10
+
+Who invented condensed milk?
+Gail borden
+10
+
+Who invented Cornflakes?
+John harvey kellog
+10
+
+Who invented false eyelashes?
+D.w griffith
+10
+
+Who invented fiber optics?
+Narinder kapany
+10
+
+Who invented James Bond?
+Ian fleming
+10
+
+Who invented levi's jeans?
+Levi strauss
+10
+
+Who invented mass car production?
+Henry ford
+10
+
+Who invented Penicillin?
+Alexander fleming
+10
+
+Who invented plate tectonics?
+Alfred wegener
+10
+
+Who invented popsicles?
+Frank Epperson
+10
+
+Who invented psychoanalysis?
+Sigmund freud
+10
+
+Who invented rabies immunization?
+Louis pasteur
+10
+
+Who invented scissors?
+Leonardo Da Vinci
+10
+
+Who invented shorthand in 1588?
+Sir timothy bright
+10
+
+Who invented sluice gates, swimming belts, and scissors?
+Leonardo da vinci
+10
+
+Who invented teflon?
+Dupont
+10
+
+Who invented television?
+John baird
+10
+
+Who invented the 'bunsen burner'?
+Robert bunsen
+10
+
+Who invented the 'spinning jenny'?
+James hargreaves
+10
+
+Who invented the 1st generation machine gun in 1718?
+James puckle
+10
+
+Who invented the 2nd generation machine gun in 1861?
+Richard j gatling
+10
+
+Who invented the aerosol can?
+Erik rotheim
+10
+
+Who invented the air conditioner?
+Willis carrier
+10
+
+Who invented the alloy pinchbeck?
+Thomas pinchbeck
+10
+
+Who invented the aqualung while fighting with the French Resistance during the secomd world war?
+Jacques cousteau
+10
+
+Who invented the assembly line?
+Henry ford
+10
+
+Who invented the automatic rifle?
+John browning
+10
+
+Who invented the automobile in 1885?
+Karl benz
+10
+
+Who invented the barometer in 1643?
+Evangelista torricelli
+10
+
+Who invented the bifocal lens in 1780?
+Benjamin franklin
+10
+
+Who invented the blast furnace?
+Henry Bessemer
+10
+
+Who invented the bolometer?
+Samuel p langley
+10
+
+Who invented the bra?
+Mary phelps jacobs
+10
+
+Who invented the cash register in 1879?
+James ritty
+10
+
+Who invented the chair?
+Egyptians
+10
+
+Who invented the chemical battery?
+Alessandro Volta
+10
+
+Who invented the clockwork radio?
+Trevor bayliss
+10
+
+Who invented the conical bullet?
+Claude minie
+10
+
+Who invented the difference engine?
+Charles babbage
+10
+
+Who invented the dumb waiter?
+Thomas jefferson 
+10
+
+Who invented the dynamo, transformer and direct current motor?
+Michael faraday
+10
+
+Who invented the electric bass guitar?
+Leo fender
+10
+
+Who invented the electric battery?
+Alessandro volta
+10
+
+Who invented the electric chair?
+Dr alphonse rockwell
+10
+
+Who invented the electric cooking range?
+Thomas ahearn
+10
+
+Who invented the electric fan?
+Schuyler wheeler
+10
+
+Who invented the electric flatiron?
+Henry seely
+10
+
+Who invented the electric razor in 1928?
+Jacob schick
+10
+
+Who invented the electric shaver?
+Jacob schick
+10
+
+Who invented the electric transformer?
+William stanley
+10
+
+Who invented the electric washing machine?
+Alva fisher
+10
+
+Who invented the electrical bass?
+Leo fender
+10
+
+Who invented the ferris wheel?
+Ferris
+10
+
+Who invented the first accurate seismograph?
+John milne
+10
+
+Who invented the first bifocal lens?
+Benjamin franklin
+10
+
+Who invented the first chocolate candy?
+Conrad j van houten
+10
+
+Who invented the first completely automated robotic milking machine?
+Denmark
+10
+
+Who invented the first continuous stitch sewing machine?
+Isaac singer
+10
+
+Who invented the first electric razor?
+Jacob schick
+10
+
+Who invented the first flush toilet?
+Thomas crapper
+10
+
+Who invented the first fully-automatic machine gun?
+Hiram maxim
+10
+
+Who invented the first MODERN bicycle in 1884?
+James starley
+10
+
+Who invented the first oil well?
+Edwin drake
+10
+
+Who invented the first polaroid camera in 1947?
+Edwin land
+10
+
+Who invented the first practical radar?
+Sir robert watson-watt
+10
+
+Who invented the first practical steam engine?
+Thomas newcomen
+10
+
+Who invented the first sewing machine?
+Elias howe
+10
+
+Who invented the food processor in 1947?
+Kenneth wood
+10
+
+Who invented the fountain pen in 1884?
+Lewis waterman
+10
+
+Who invented the geodesic dome?
+Buckminster fuller
+10
+
+Who invented the hamburger?
+Louis lassen
+10
+
+Who invented the holograph?
+Dennis gabor
+10
+
+Who invented the Hoovercraft?
+Cristopher cockrell
+10
+
+Who invented the ice cream soda?
+Robert green
+10
+
+Who invented the ice cream sundae?
+William garwood
+10
+
+Who invented the java programming language?
+Sun microsystems
+10
+
+Who invented the kinetoscope?
+Thomas edison
+10
+
+Who invented the lie detector?
+John augustus larson
+10
+
+Who invented the light bulb?
+Thomas edison
+10
+
+Who invented the lightning conductor in June 1752?
+Bejamin franklin
+10
+
+Who invented the lightning rod?
+Benjamin franklin
+10
+
+Who invented the liquid-fuelled rocket?
+Robert goddard
+10
+
+Who invented the magnifying glass?
+Friar roger bacon
+10
+
+Who invented the microphone?
+Charles wheatstone
+10
+
+Who invented the microwave oven?
+Percy spencer
+10
+
+Who invented the military tank?
+Sir ernest swinton
+10
+
+Who invented the mini skirt?
+Mary quant
+10
+
+Who invented the moving assembly line in 1913?
+Henry ford
+10
+
+Who invented the pendulum clock in 1656?
+Christian huygens
+10
+
+Who invented the phonograph?
+Thomas edison
+10
+
+Who invented the pneumatic tyre from a section of garden hose?
+John dunlop
+10
+
+Who invented the Polaroid camera?
+Edwin land
+10
+
+Who invented the potato chip?
+George crum
+10
+
+Who invented the pressure cooker (early version)?
+Denis papin
+10
+
+Who invented the revolver?
+Samuel colt
+10
+
+Who invented the rifle in 1520?
+Joseph kotter
+10
+
+Who invented the safety lamp for miners in 1816?
+Humphrey Davy
+10
+
+Who invented the safety pin?
+Walter hunt
+10
+
+Who invented the sewing machine?
+Elias howe
+10
+
+Who invented the Spinning Frame?
+Richard arkwright
+10
+
+Who invented the stethoscope?
+Rene laennec
+10
+
+Who invented the submarine?
+Robert fulton
+10
+
+Who invented the system of paying for postage with stamps?
+Rowland Hill
+10
+
+Who invented the tape recorder (magnetic steel tape)?
+Valdemar poulsen
+10
+
+Who invented the telegraph?
+Samuel morse
+10
+
+Who invented the thermometer?
+Galileo galilei
+10
+
+Who invented the toothbrush?
+William Addis
+10
+
+Who invented the vacuum flask?
+James dewar
+10
+
+Who invented the vulcanizationprocess of rubber?
+Charles goodyear
+10
+
+Who invented the windmill?
+Arabs
+10
+
+Who invented the Windows o s?
+Bill gates
+10
+
+Who invented the World Wide Web?
+Tim berners-lee
+10
+
+Who invented the yo yo?
+Donald f duncan
+10
+
+Who invented the zip fastener in 1893?
+Whitcomb judson
+10
+
+Who invented Utopia?
+Sir thomas moore
+10
+
+Who invented wax paper?
+Thomas Edison
+10
+
+Who is a 'wild and crazy guy'?
+Steve martin
+10
+
+Who is a successful recording artist, talented landscape artist, and author of children's books?
+Ricky Van Shelton
+10
+
+Who is agent mulder's nemisis on The X-Files?
+Cigarette smoking man
+10
+
+Who is Al Gores running mate in the 2000 Presidential election campaign?
+Joe liebermann
+10
+
+Who is also known as Mr. Warmth?
+Don Rickles
+10
+
+Who is always the victim the game of Cluedo?
+Dr. black
+10
+
+Who is America's biggest trading partner?
+Canada
+10
+
+Who is anna mae bullock?
+Tina turner
+10
+
+Who is anne mae bullock?
+Tina turner
+10
+
+Who is befriended by buttons?
+Cinderella
+10
+
+Who is better known as william jefferson blythe?
+Bill clinton
+10
+
+Who is Betty in A private function?
+A pig
+10
+
+Who is Bleedin' Gums Murphy's younger brother?
+Dr. Hibbert
+10
+
+Who is britain's defender of the faith?
+Queen elizabeth ii
+10
+
+Who is Britains best known former kindergarten teacher?
+Diana
+10
+
+Who is broomhilda's buzzard buddy?
+Gaylord
+10
+
+Who is buried under the arc de triomphe?
+Unknown soldier
+10
+
+Who is c3po's sidekick?
+R2d2
+10
+
+Who is called the father of the h bomb?
+Edward teller
+10
+
+Who is Capitol City's mascot?
+Goofball 
+10
+
+Who is christina claire ciminella?
+Wynonna judd
+10
+
+Who is cinderella's stepmother?
+Lady tremaine
+10
+
+Who is considered the doctor of medicine?
+Hippocrates
+10
+
+Who is considered the father of modern geology?
+James hutton
+10
+
+Who is considered the patron saint of travellers?
+St christopher
+10
+
+Who is country music hall of fames only 2 time inductee?
+Roy rogers
+10
+
+Who is credited as the 'father of alternating current'?
+Nikola tesla
+10
+
+Who is credited with coining the phrase, 'm'kay'?
+Mr. vandresen
+10
+
+Who is credited with inventing scat singing?
+Louis armstrong
+10
+
+Who is credited with inventing television?
+John baird
+10
+
+Who is credited with inventing the fountain pen in 1848?
+Lewis waterman
+10
+
+Who is credited with inventing the game of baseball?
+Doubleday
+10
+
+Who is credited with inventing the light bulb?
+Edison
+10
+
+Who is credited with inventing the transistor?
+Dr william shockley
+10
+
+Who is credited with inventing the world's first mechanical calculating machine?
+Blaise pascal
+10
+
+Who is credited with invention of the nuclear reactor?
+Enrico Fermi
+10
+
+Who is credited with the invention of Bakelite?
+Dr. baekeland
+10
+
+Who is credited with the invention of the cylinder lock?
+Elihu yale
+10
+
+Who is daisy duck's boyfriend?
+Donald duck
+10
+
+Who is Dick Tracy's sweetheart?
+Tess trueheart
+10
+
+Who is dionne warwicks famous cousin?
+Whitney houston
+10
+
+Who is donald duck's girlfriend?
+Daisy duck
+10
+
+Who is edson arantes do nascimento?
+Pele
+10
+
+Who is Elton John lyrics writer?
+Bernie taupin
+10
+
+Who is Emperor of Japan?
+Akihito
+10
+
+Who is famous for the saying?
+Smokey the bear
+10
+
+Who is famously buried in the churchyard at Bamburgh, Northumberland?
+Grace darling
+10
+
+Who is first of the 7 dwarfs alphabetically?
+Bashful
+10
+
+Who is flash gordon's arch enemy?
+Ming the merciless
+10
+
+Who is fond of saying 'i will gladly pay you tuesday for a hamburger today'?
+Wimpey
+10
+
+Who is fourth in line to the English throne?
+Prince andrew
+10
+
+Who is frank cujo now known as?
+Jean-claude van damme
+10
+
+Who is fred flintstone's best friend?
+Barney rubble
+10
+
+Who is Gabbo's puppeteer?
+Arthur Crandell
+10
+
+Who is gaylord the buzzard's buddy?
+Broomhilda
+10
+
+Who is Gog's companion in London's Guild Hall?
+Magog
+10
+
+Who is goldie hawns actor partner?
+Kurt russell
+10
+
+Who is Hamlet's tragic suicidal girlfriend?
+Ophelia
+10
+
+Who is harold lloyd jenkins?
+Conway twitty
+10
+
+Who is hector hugh munro better known as?
+Saki
+10
+
+Who is Homer Simpson's brother?
+Herb Powell
+10
+
+Who is in every episode of the tv series 'seinfeld'?
+Superman
+10
+
+Who is in the car with the Japanese restaurant owner?
+Mrs. Krabappel 
+10
+
+Who is Jeeves' young master?
+Bertie wooster
+10
+
+Who is King of Jordan?
+Abdullah ii
+10
+
+Who is known as 'mr perfect' in singapore bowling?
+Jack wong
+10
+
+Who is known as a collector of trivia?
+Spermologer
+10
+
+Who is known as big mama in ladies pro golf?
+Joanne carner
+10
+
+Who is known as the 'father of the atomic bomb'?
+Robert oppenheimer
+10
+
+Who is known as the father of genetics?
+Gregor mendel
+10
+
+Who is known as the father of geometry?
+Euclid
+10
+
+Who is known as the father of muneralogy?
+Georgius agricola
+10
+
+Who is known as the father of western philosophy?
+Plato
+10
+
+Who is known for the 'theory of evolution'?
+Charles darwin
+10
+
+Who is known in England as the tatty detective?
+Columbo
+10
+
+Who is known in golf as the emperor jones?
+Bobby jones
+10
+
+Who is Kodos?
+An alien
+10
+
+Who is Krusty's father?
+Rabbi Hyman Krustofsky
+10
+
+Who is Krusty's monkey?
+Mr. Teeny
+10
+
+Who is Krusty's secretary?
+Lois Pennycandy
+10
+
+Who is Lady Haden-Guest better known as?
+Jamie Lee Curtis
+10
+
+Who is Leslie Hornby better known as?
+Twiggy
+10
+
+Who is Liam Gallagher's famous ex-wife?
+Patsy kensit
+10
+
+Who is likely to have a faster pulse a man or a woman?
+A woman
+10
+
+Who is listed as the most decorated American soldier of the korean war?
+Anthony herbert
+10
+
+Who is Marge's art teacher?
+Mr. Lombardo (John Lovitz)
+10
+
+Who is Marge's date for the prom?
+Artie Ziff 
+10
+
+Who is married to eddie van halen?
+Valerie bertanelli
+10
+
+Who is married to her co presenter John Stapleton?
+Lynn faulds wood
+10
+
+Who is married to valerie bertanelli?
+Eddie van halen
+10
+
+Who is marty wildes daughter?
+Kim wilde
+10
+
+Who is maureen o'sullivan's daughter?
+Mia farrow
+10
+
+Who is McBain's nemesis?
+Mendoza
+10
+
+Who is melanie griffith's mother?
+Tippi hedren
+10
+
+Who is mia farrow's mother?
+Maureen o'sullivan
+10
+
+Who is mickey mouse's girlfriend?
+Minnie mouse
+10
+
+Who is minnie mouse's boyfriend?
+Mickey mouse
+10
+
+Who is miss piggy in love with?
+Kermit
+10
+
+Who is most likely the most famous vegeterian ever to live?
+Adolf hitler
+10
+
+Who is most likely to be the victim of a black bear attack?
+A menstruating woman
+10
+
+Who is mother goose's son?
+Jack
+10
+
+Who is Mr. Warmth?
+Rickles
+10
+
+Who is nba history has the most asssists?
+John stockton
+10
+
+Who is nba history has the most steals?
+John stockton
+10
+
+Who is Ned Flanders' wife?
+Maude Flanders
+10
+
+Who is nick and nora Charles' dog?
+Asta
+10
+
+Who is no longer the manager of Chelsea, having been sacked in 2000?
+Gianluca vialli
+10
+
+Who is often referred to as the thinking man's beagle?
+Snoopy
+10
+
+Who is olive oyl's boyfriend?
+Popeye
+10
+
+Who is on a U S $20 bill?
+Andrew jackson
+10
+
+Who is on a U S $5,000 bill?
+James madison
+10
+
+Who is on a U S $50 bill?
+Ulysses s grant
+10
+
+Who is on a u.s. $100 bill?
+Benjamin franklin
+10
+
+Who is on a u.s. bill?
+Benjamin franklin
+10
+
+Who is on the Canadian bill?
+Laurier
+10
+
+Who is othello's wife?
+Desdemona
+10
+
+Who is popeye's adopted son?
+Swee'pea
+10
+
+Who is popeye's arch enemy?
+Bluto
+10
+
+Who is popeye's girlfriend?
+Olive oyl
+10
+
+Who is president of Germany?
+Roman herzog
+10
+
+Who is President of the Czech Republic?
+Vaclav havel
+10
+
+Who is President of the European Central Bank?
+Wim duisenberg
+10
+
+Who is president of the european commission?
+Jacques santer
+10
+
+Who is prime minister of Australia?
+John howard
+10
+
+Who is prime minister of Canada?
+Jean chretien
+10
+
+Who is quoted as having said The sound of the ball hitting the batsmans skull was music to my ears?
+Jeff thomson
+10
+
+Who is Radioactive Man's sidekick?
+Fallout Boy
+10
+
+Who is reputed to have invented the googly?
+B j t bosanquet
+10
+
+Who is robert zimmerman now known as?
+Bob dylan
+10
+
+Who is Robert Zimmermann?
+Bob dylan
+10
+
+Who is said to have brought the Holy Grail from Palestine to England?
+Joseph of arimathea
+10
+
+Who is said to have planted the first potatoes grown in Ireland?
+Sir walter raleigh
+10
+
+Who is Sally Brown's sweet baboo?
+Linus van pelt
+10
+
+Who is second in command on the starship enterprise?
+Spock
+10
+
+Who is Shadow Chancellor of the Exchequer?
+Francis maude
+10
+
+Who is Shirley McLaine's famous brother?
+Warren beatty
+10
+
+Who is shroeder's favourite composer?
+Beethoven
+10
+
+Who is Skinner's superior?
+Superintendent Chalmers
+10
+
+Who is Snoopy's arch enemy?
+The red baron
+10
+
+Who is Stuart?
+Duck who works at SNPP 
+10
+
+Who is supermodel Iman's pop star husband?
+David Bowie
+10
+
+Who is swee'pea's adopted father?
+Popeye
+10
+
+Who is the 'invisible' star of the film ' Hollow Man'?
+Kevin bacon
+10
+
+Who is the 20th century zoologist who wrote The Naked Ape?
+Desmond morris
+10
+
+Who is the A in A&M?
+Herb alpert
+10
+
+Who is the all time top baseball pitcher in strikeouts?
+Nolan ryan
+10
+
+Who is the all time top baseball player in home runs?
+Hank aaron
+10
+
+Who is the all time top baseball player in runs scored?
+Ty cobb
+10
+
+Who is the all-time leading scorer in ncaa men's basketball?
+Pete maravich
+10
+
+Who is the American inventor of photographic materials?
+George eastman
+10
+
+Who is the author of Dune?
+Frank herbert
+10
+
+Who is the author of Jude the Obscure?
+Thomas hardy
+10
+
+Who is the author of mirc?
+Khaled mardam-bey
+10
+
+Who is the author of the Jim Chee mysteries?
+Tony Hillerman
+10
+
+Who is the author of the science fiction book I, Robot?
+Isaac asimov
+10
+
+Who is the babylonian goddess of love and fertility?
+Ishtar
+10
+
+Who is the bad boy that leads pinocchio astray?
+Lampwick
+10
+
+Who is the Barber of Seville?
+Figaro
+10
+
+Who is the beano bear?
+Biffo
+10
+
+Who is the beautiful french girl Paul mccartney sings about?
+Michelle
+10
+
+Who is the belly dancer Homer is caught with?
+Princess (Shauna) Kasimir 
+10
+
+Who is the best-selling saxophonist?
+Kenny g
+10
+
+Who is the biggest producer and exporter of mohair?
+South africa
+10
+
+Who is the Buddhist leader of the Tibetan people?
+The Dalai Lama
+10
+
+Who is the buxom bosom buddy of captain kremmen?
+Carla
+10
+
+Who is the C E O of Apple Computers?
+Steve jobs
+10
+
+Who is the career assists leader in the NBA?
+John stockton
+10
+
+Who is the career hits leader in Major League baseball?
+Rose
+10
+
+Who is the central figure in Peter C Newmans 'The Establishment Man'?
+Conrad black
+10
+
+Who is the chairman of the US Federal Reserve Bank?
+Alan greenspan
+10
+
+Who is the chief of lamaism in tibet and mongolia?
+Dalai lama
+10
+
+Who is the clown in shakespeare's Henry iv and the merry wives of windsor?
+Falstaff
+10
+
+Who is the commonwealth secretary general?
+Emeka anyaoku
+10
+
+Who is the coordinator of dalnet?
+Dalvenjah
+10
+
+Who is the current captain of the Australian cricket team (1999/2000)?
+Steve waugh
+10
+
+Who is the current monarch of belgium?
+Albert ii
+10
+
+Who is the current monarch of the Netherlands?
+Beatrix
+10
+
+Who is the current Secretary of State for Social Security?
+Alastair darling
+10
+
+Who is the daily mirror's long running cartoon strongman?
+Garth
+10
+
+Who is the designer of the games civilization, civilization ii and colonization?
+Sid meier
+10
+
+Who is the director father of madonna's son, rocco?
+Guy ritchie
+10
+
+Who is the dog in 'the grinch who stole christmas'?
+Max
+10
+
+Who is the egyptian goddess of love?
+Isis
+10
+
+Who is the English aristocrat that forms part of the Thunderbirds team?
+Lady penelope
+10
+
+Who is the exchange student from Germany?
+Uter
+10
+
+Who is the father of the atom?
+Democritus
+10
+
+Who is the female presenter of the TV programme Fort Boyard?
+Melinda messenger
+10
+
+Who is the first cartoon character to ever have been made into a balloon for a parade?
+Fruit
+10
+
+Who is the first character to speak in 'Star Wars'?
+C3po
+10
+
+Who is the first dead man to help Bart and Lisa unravel Sideshow Bob's electoral fraud?
+Edgar Neubauer
+10
+
+Who is the first female qualifier at wimbledon to reach the semi-finals?
+Alexandra stevenson
+10
+
+Who is the first male qualifier at wimbledon to reach the semi-finals?
+John mcenroe
+10
+
+Who is the first modern head of government to bear a child while in office?
+Benazir bhutto
+10
+
+Who is the first person to make a wish on the monkey's paw?
+Maggie 
+10
+
+Who is the first world cup trophy named after?
+Jules rimet
+10
+
+Who is the founder of modern-day singapore (full name title)?
+Sir thomas stamford raffles
+10
+
+Who is the Frenchman's donkey?
+Maurice 
+10
+
+Who is the front man for 'nine inch nails'?
+Trent reznor
+10
+
+Who is the ghost that walks?
+Phantom
+10
+
+Who is the gifted daughter of Rev C L Franklin?
+Aretha franklin
+10
+
+Who is the god of thunder and war in norse mythology?
+Thor
+10
+
+Who is the goddess of fortune?
+Fortuna
+10
+
+Who is the great-grandmother of King David?
+Ruth
+10
+
+Who is the greatest?
+Me
+10
+
+Who is the greek counterpart of hercules?
+Heracles
+10
+
+Who is the greek counterpart of juno?
+Hera
+10
+
+Who is the greek counterpart of jupiter?
+Zeus
+10
+
+Who is the greek counterpart of mercury?
+Hermes
+10
+
+Who is the greek counterpart of neptune?
+Poseidon
+10
+
+Who is the greek counterpart of venus?
+Aphrodite
+10
+
+Who is the greek equivalent of the roman god amor?
+Eros
+10
+
+Who is the Greek equivalent of the Roman goddess Diana?
+Artemis
+10
+
+Who is the greek equivalent of the roman goddess venus?
+Aphrodite
+10
+
+Who is the greek equivalent of vulcan?
+Hephaestus
+10
+
+Who is the greek god of archery?
+Apollo
+10
+
+Who is the greek god of shepherds and flocks?
+Pan
+10
+
+Who is the Greek god of war?
+Ares
+10
+
+Who is the guest star at the Springfield auto show?
+Adam West 
+10
+
+Who is the head of Itchy and Scratchy?
+Roger Meyers 
+10
+
+Who is the head of the Roman Catholic Church?
+The pope
+10
+
+Who is the headmaster of Hogwarts school in the Harry Potter books?
+Professor dumbledore
+10
+
+Who is the helmsman of the boat when you are sailing into Hades?
+Charon
+10
+
+Who is the hero of Rider Haggard's adventure, King Solomon's Mines?
+Alan quartermain
+10
+
+Who is the hero of the oldest epic preserved in writing?
+Gilgamesh
+10
+
+Who is the heroine of Silence of the Lambs and Hannibal. (Full name)?
+Clarice starling
+10
+
+Who is the hindu god of good fortune?
+Ganesha
+10
+
+Who is the historical figure most often portrayed in movies?
+Napoleon bonaparte
+10
+
+Who is the huge black assistant of mandrake the magician?
+Lothar
+10
+
+Who is the idol of the German organization of non-commercial supporters of donaldism?
+Donald duck
+10
+
+Who is the Jolly Green Giant's helper?
+Little green sprout
+10
+
+Who is the Labour MP for Stevenage, married to a best selling author?
+Barbara follett
+10
+
+Who is the largest land bridge in singapore named after?
+Benjamin sheares
+10
+
+Who is the last Italian-born driver to have been Motor Racing Formula One world champion?
+Mario andretti
+10
+
+Who is the lead singer for 'nine inch nails'?
+Trent resnor
+10
+
+Who is the lead singer of 'hole'?
+Courtney love
+10
+
+Who is the lead singer of Hootie and the Blowfish?
+Darius Rucker
+10
+
+Who is the lead singer of the band?
+Axl rose
+10
+
+Who is the lead singer of the group doors?
+Jim morrison
+10
+
+Who is the lead singer of the smiths?
+Morissey
+10
+
+Who is the leader of iraq?
+Saddam hussein
+10
+
+Who is the leader of the inkatha freedom party?
+Mangosuthu buthelezi
+10
+
+Who is the leadsinger of Depeche Mode?
+David Gahan
+10
+
+Who is the lone ranger's Indian companion?
+Tonto
+10
+
+Who is the longest serving Head of State who is not a member of a Royal Family?
+Fidel castro
+10
+
+Who is the lunch lady at Springfield Elementary?
+Lunchlady Doris 
+10
+
+Who is the main script writer for the Victoria Wood show?
+Victoria wood
+10
+
+Who is the male lead in the 'Naked Gun' movies?
+Leslie Nielsen
+10
+
+Who is the male lead in the film 'volcano'?
+Tommy lee jones
+10
+
+Who is the master of the Shakespearean brute Caliban?
+Prospero
+10
+
+Who is the mayan earth and moon goddess, and patroness of pregnant women?
+Ixchel
+10
+
+Who is the mesopotamian god of vegetation?
+Dagon
+10
+
+Who is the most famous inhabitant of Yellowstone Park?
+Yogi bear
+10
+
+Who is the most translated author in the world?
+Lenin
+10
+
+Who is the most translated British author after Shakespeare?
+Agatha christie
+10
+
+Who is the most widely translated French author?
+Jules verne
+10
+
+Who is the most-capped Scottish footballer?
+Kenny dalglish
+10
+
+Who is the mother of achilles?
+Thetis
+10
+
+Who is the mother of hercules?
+Alcmene
+10
+
+Who is the motorcycle daredevil?
+Capt. Lance Murdock
+10
+
+Who is the music teacher at Springfield Elementary?
+Mr. Dewey Largo
+10
+
+Who is the naked chef?
+Jamie oliver
+10
+
+Who is the narrator of 'the thousand and one nights'?
+Scheherazade
+10
+
+Who is the new President of Yugoslavia?
+Vojislav kostunica
+10
+
+Who is the norse god of evil and mischief?
+Loki
+10
+
+Who is the Norse god of fertility, sun, & rain?
+Frey
+10
+
+Who is the Norse god of thunder & war?
+Thor
+10
+
+Who is the oldest artist to have a number 1 hit?
+Louis armstrong
+10
+
+Who is the oldest female solo singer to top the charts?
+Cher
+10
+
+Who is the one eyed giant of greek mythology?
+Cyclops
+10
+
+Who is the one remaining (sane) ringer on the baseball team?
+Daryl Strawberry 
+10
+
+Who is the only actor to have been cast as his own great-grandfather?
+Michael palin
+10
+
+Who is the only actor to have received a posthumous oscar?
+Peter finch
+10
+
+Who is the only American author to win both the pulitzer and nobel prizes?
+John steinbeck
+10
+
+Who is the only author to have a book in every dewey decimal category?
+Isaac asimov
+10
+
+Who is the only baseball player to have been killed in a major league game?
+Raymond chapman
+10
+
+Who is the only cricketer in Wisden 2000's Five cricketers of the Century not to have a knighthood?
+Shane warne
+10
+
+Who is the only female tennis player to win the grand Slam and an Olympic gold medal in the same year?
+Steffi graf
+10
+
+Who is the only greek god in greek mythology with a mortal mother and an immortal father?
+Dionysus
+10
+
+Who is the only host country not to win gold at its own summer olympics?
+Canada
+10
+
+Who is the only man in the history of the open era to win six wimbledons singles titles?
+Pete sampras
+10
+
+Who is the only man to have been both chief justice and president of the u.s?
+Taft
+10
+
+Who is the only NHL player to score five different goals in a game?
+Lemieux
+10
+
+Who is the only person in history of the open era to win 5 wimbledons signles titles in a row?
+Bjorn borg
+10
+
+Who is the only president to be buried in Washington DC?
+Theodore Roosevelt
+10
+
+Who is the only real person to ever have been the head on a Pez dispenser?
+Betsy Ross
+10
+
+Who is the only singer to have no. 1 hits in the 50's, 60's, 70's, 80's and 90's?
+Cliff richard
+10
+
+Who is the only unmarried woman suspect in the game of 'cluedo'?
+Miss scarlett
+10
+
+Who is the only us president born in nebraska?
+Gerald ford
+10
+
+Who is the onrse goddess of love and beauty?
+Freya
+10
+
+Who is the original master of the Shakespearean jester Lancelot Gobbo?
+Shylock
+10
+
+Who is the owner of the largest collection of Da Vinci drawings?
+The queen
+10
+
+Who is the patron saint of messengers?
+St gabriel
+10
+
+Who is the principal character in fiddler on the roof?
+Tevye
+10
+
+Who is the roman counterpart of aphrodite?
+Venus
+10
+
+Who is the roman counterpart of hephaestus?
+Vulcan
+10
+
+Who is the roman counterpart of hera?
+Juno
+10
+
+Who is the roman counterpart of heracles?
+Hercules
+10
+
+Who is the roman counterpart of hermes?
+Mercury
+10
+
+Who is the roman counterpart of poseidon?
+Neptune
+10
+
+Who is the roman counterpart of zeus?
+Jupiter
+10
+
+Who is the roman equivalant of the greek god eros?
+Amor
+10
+
+Who is the Roman equivalent of the Greek god Dionysus?
+Bacchus
+10
+
+Who is the Roman equivalent of the Greek goddess Nike?
+Victoria
+10
+
+Who is the roman god amor's mother?
+Venus
+10
+
+Who is the roman god of agriculture?
+Saturn
+10
+
+Who is the roman god of fire?
+Vulcan
+10
+
+Who is the roman god of light and sky?
+Jupiter
+10
+
+Who is the roman god of war?
+Mars
+10
+
+Who is the roman goddess of childbirth?
+Carmenta
+10
+
+Who is the roman goddess of harmonious relations?
+Concordia
+10
+
+Who is the roman goddess of hunting?
+Diana
+10
+
+Who is the roman goddess of justice?
+Justitia
+10
+
+Who is the roman goddess of peace?
+Pax
+10
+
+Who is the roman messenger god?
+Mercury
+10
+
+Who is the second highest wicket taker in Test Cricket history?
+Kapil dev
+10
+
+Who is the silhouette on the major league baseball logo?
+Harmon killebrew
+10
+
+Who is the singer of nightwish?
+Tarja
+10
+
+Who is the sinister party man who apparently befriends Winston Smith in Orwell's 1984?
+O'brien
+10
+
+Who is the sister of actress Olivia De Havilland?
+Joan Fontaine
+10
+
+Who is the smallest member of the european union?
+Luxembourg
+10
+
+Who is the Smurfs arch-enemy?
+Gargamel
+10
+
+Who is the son of Scott Young, one of Canadas best known sports columnists?
+Neil young
+10
+
+Who is the spokesperson for the exercise tapes 'tae bo'?
+Billy blanks
+10
+
+Who is the subject of Anouilh's play L'Alouette ( The Lark )?
+Joan of arc
+10
+
+Who is the sumerian goddess of love, fertility and war?
+Inanna
+10
+
+Who is the super-hero that runs around wearing a red cape and tights?
+Superman
+10
+
+Who is the surviving member of the two fat ladies?
+Clarissa dickson wright
+10
+
+Who is the tiger of malaya?
+Tomoyuki yamashita
+10
+
+Who is the U S of America named after?
+Amerigo vespucci
+10
+
+Who is the US sate of Virginia named after?
+Queen Elizabeth i
+10
+
+Who is the ventriloquist who created Lamb Chop?
+Shari Lewis
+10
+
+Who is the victim of the murder in the game of Cluedo?
+Dr.Black
+10
+
+Who is the voice of 'phil' in the film 'hercules'?
+Danny devito
+10
+
+Who is the widow of ex-Nirvana front man Kurt Cobain?
+Courtney love
+10
+
+Who is the wife of Sam Shepard?
+Jessica lange
+10
+
+Who is the world's biggest wool producer?
+Australia
+10
+
+Who is the youngest winner of the nobel prize for literature?
+Albert camus
+10
+
+Who is third in line to the English throne?
+Prince Henry
+10
+
+Who is tippi hedren's daughter?
+Melanie griffith
+10
+
+Who is to replace john parrot as one of the captains in 'a question of sport'?
+Frankie dettori
+10
+
+Who is tristessa's idol?
+Boy george
+10
+
+Who is Vincent Furnier more commonly known as?
+Alice cooper
+10
+
+Who is was the chief rocket scientist on the American moon project and a notable export from the third reich?
+Werner von braun
+10
+
+Who is wendy darling's friend?
+Peter pan
+10
+
+Who is William H. Bonney?
+Billy the kid
+10
+
+Who is woodstock's beagle friend?
+Snoopy
+10
+
+Who is woody woodpecker's girlfriend?
+Winnie woodpecker
+10
+
+Who is younger, Serena or Venus Williams?
+Serena
+10
+
+Who is your idol if you are a Bardologist?
+William shakespeare
+10
+
+Who is zoe ball married to?
+Norman cook
+10
+
+Who isolated adrenaline in 1897?
+John jacob abel
+10
+
+Who k.o'ed joe louis in 1936 and was k.o'ed by him in 1937?
+Max schmeling
+10
+
+Who kept insisting that he wasnt a number but a free man?
+Patrick mcgoohan
+10
+
+Who kept searching for his long lost salt shaker?
+Jimmy buffet
+10
+
+Who kept the book 'curious george' in his suitcase?
+Forrest gump
+10
+
+Who kidnapped adolf eichmann?
+Israeli agents
+10
+
+Who killed 5 london prostitutes in 1888?
+Jack the ripper
+10
+
+Who killed Alexander Hamilton?
+Aaron burr
+10
+
+Who killed Chicago?
+Al capone
+10
+
+Who killed cock robin?
+Sparrow
+10
+
+Who killed kenny?
+They
+10
+
+Who killed king william ii?
+Sir walter tyrell
+10
+
+Who killed Laura Palmer on Twin Peaks?
+Her father,Leland Palmer.
+10
+
+Who killed lee harvey oswald on national television?
+Jack ruby
+10
+
+Who killed medusa?
+Perseus
+10
+
+Who killed mr and mrs thomas wayne, parents of batman?
+Joey chill
+10
+
+Who kills macbeth?
+Macduff
+10
+
+Who kissed the girls and made them cry?
+Georgie porgie
+10
+
+Who knows what evil lurks in the hearts of men?
+The Shadow
+10
+
+Who largely took over ontario for a month in the 19th century?
+Irish rebels
+10
+
+Who laughed when the cow jumped over the moon?
+Little dog
+10
+
+Who launched a cultural revolution in april 1966?
+Mao tse-tung
+10
+
+Who leaked the pentagon papers to the New York times?
+Daniel ellsberg
+10
+
+Who led a French army to raise the Siege of Orleans?
+Joan of Arc
+10
+
+Who led the 'dambusters'?
+Guy gibson
+10
+
+Who led the 'kon-Tiki expedition in 1947?
+Thor heyerdahl
+10
+
+Who led the argonauts in search of the golden fleece?
+Jason
+10
+
+Who led the British to victory at Quebec in 1759?
+Wolfe
+10
+
+Who led the children of Israel on their voyage towards the Promised Land?
+Moses
+10
+
+Who led the first band of outlaws to rob a U.S. train, in Adair, Iowa in 1873?
+Jesse james
+10
+
+Who led the first major movement of fascists in europe?
+Benito mussolini
+10
+
+Who led the iceni against the romans?
+Boadicea
+10
+
+Who led the mormons to the great salt lake?
+Brigham young
+10
+
+Who led the movement for votes for women?
+Emmeline pankhurst
+10
+
+Who led the raid on harper's ferry in 1859?
+John brown
+10
+
+Who led the revolt against Henry III during the Baron Wars of 1264 to 1267?
+Simon de montfort
+10
+
+Who led the revolt of Roman slaves and gladiators in 73 AD?
+Spartacus
+10
+
+Who led the revolt of roman slaves and gladiators in 73 b.c?
+Spartacus
+10
+
+Who led the revolt of roman slaves in A.D.73?
+Spartacus
+10
+
+Who led the settler's of pitcairn island?
+Fletcher christian
+10
+
+Who led the U N forces in the gulf war?
+General colin powell
+10
+
+Who led the unsuccessful Roman slave revolt in73 BC?
+Spartacus
+10
+
+Who led the us air force band in europe during wwll?
+Glen miller
+10
+
+Who left Coronation Street to look after Dr Lowther?
+Hilda ogden
+10
+
+Who left Dynasty to star in a movie which she co wrote called Torchlight?
+Pamela sue martin
+10
+
+Who left his five day tenure as West Point's superintendent to lead the Confederate army?
+Tavern
+10
+
+Who left his money to University College Hospital on the condition that his body be preserved and brought to all board meetings?
+Jeremy bentham
+10
+
+Who left Rugby League football to become a great Australian fast bowler of the 1940s and 50s?
+Ray Lindwall
+10
+
+Who left take that in july 1995?
+Robbie williams
+10
+
+Who left three pt boat tie clasps on top of the yukon's mount kennedy in 1965?
+Robert kennedy
+10
+
+Who lit the eternal flame on the grave of John F kennedy?
+Jaqueline kennedy
+10
+
+Who lit the Olympic flame at Sydney?
+Cathy freeman
+10
+
+Who live in monasteries?
+Monks
+10
+
+Who live longer, on average men or women?
+Women
+10
+
+Who lived at 704 hauser street, queen's, New York?
+Bunkers
+10
+
+Who lived at Batemans, Burwash, Sussex?
+Rudyard kipling
+10
+
+Who lived at Tara?
+The o'haras
+10
+
+Who lived in Ivor The Engine's boiler?
+Idris the dragon
+10
+
+Who lived on bonnie meadow way in new rochelle?
+Rob and laura petrie
+10
+
+Who lived to the age of 969?
+Methuselah
+10
+
+Who lived to the ripe old age of 969?
+Methuselah
+10
+
+Who lives at 1 Snoopy Place in Santa Rosa, California?
+Charles schulz
+10
+
+Who lives at 10 Downing St, London?
+British prime minister
+10
+
+Who lives at Lambeth Palace?
+Archbishop of canterbury
+10
+
+Who lives at Ray Mill House in Wiltshire?
+Camilla parker bowles
+10
+
+Who lives at the neverland valley ranch?
+Michael jackson
+10
+
+Who lives in buckingham palace?
+English monarchs
+10
+
+Who loaned Shakespeares Antonio 3000 ducats?
+Shylock
+10
+
+Who looks like a big bottle of glue and uses his glue guns to fight enemies?
+Dr. mucilage
+10
+
+Who lost 41 of a crew of 98 to scurvy in 1868, on his first voyage to the south pacific?
+Captain cook
+10
+
+Who lost 47 pounds for the film 'wyatt earp'?
+Dennis quaid
+10
+
+Who lost her sheep?
+Little bo peep
+10
+
+Who lost his 'precious' to a hobbit?
+Gollum
+10
+
+Who loved in ivor the negines boiler?
+Idris the dragon
+10
+
+Who made a 1990's cover version of The Monkees 'I'm a Believer'?
+Vic reeves
+10
+
+Who made a famous jump on his horse Red Lancer on a cliff's edge near Mount Gambier?
+Adam Lindsay Gordon
+10
+
+Who made a hit of he ain't heavy, he's my brother?
+Hollies
+10
+
+Who made chinese film actress chiang chin his fourth wife?
+Mao tse tung
+10
+
+Who made george Washington's false teeth?
+Paul revere
+10
+
+Who made headlines in 1987 when 2 of her cousins previously listed as dead were found living in a mental home?
+The queen
+10
+
+Who made her 1985 screen debut acting in a film with her mother and playing the same part?
+Joely richardson
+10
+
+Who made her show business debut at the age of 2 1/2 as part of her family's vaudeville act on the 'new grand theater stage'?
+Judy garland
+10
+
+Who made his first appearance as sherlock holmes in the 1939 film the hound of the baskervilles?
+Basil rathbone
+10
+
+Who made his name in 'i dream of jeannie'?
+Larry hagman
+10
+
+Who made history having their first 6 releases top the uk charts?
+Spice girls
+10
+
+Who made it big with 'tiptoe through the tulips' in 1968?
+Herbert khaury
+10
+
+Who made the first practical microscope?
+Anton van leenwenhoek
+10
+
+Who made the first solo round the world flight?
+Wiley post
+10
+
+Who made the first solo transatlantic flight in 1927?
+Charles lindbergh
+10
+
+Who made the first solo transatlantic flight?
+Charles lindbergh
+10
+
+Who made the first successful balloon flight across the Atlantic?
+Ben abruzzo, maxie erson & larry newman
+10
+
+Who made the first vaccine against rabies?
+Louis Pasteur
+10
+
+Who made the Great trek across south Africa?
+The boers
+10
+
+Who made the movie 'a cloclwork orange'?
+Stanley kubrick
+10
+
+Who made the third us manned space flight which sank on landing?
+Virgil grissom
+10
+
+Who made their debut in disneyland after dark in 1962?
+Osmond brothers
+10
+
+Who made their first royal visit to Canada in 1951?
+Princess elizabeth
+10
+
+Who made wings for himself and his son to escape from the island of crete?
+Daedalus
+10
+
+Who makes barrels?
+Cooper
+10
+
+Who makes Major league Baseball's?
+Rawlings
+10
+
+Who makes maps?
+Cartographer
+10
+
+Who makes robitussin cough syrup?
+Ah robins
+10
+
+Who makes Scooby Doo?
+Hanna barbera
+10
+
+Who makes the impulse se camera?
+Polaroid
+10
+
+Who makes wine?
+Oenologist
+10
+
+Who managed to win atalanta by dropping three golden apples?
+Hippomenes
+10
+
+Who managed to win Atlanta by dropping three golden apples?
+Hippomenes
+10
+
+Who many gallons of fuel does a jumbo jet use during take off?
+Four thousand
+10
+
+Who marched his elephants through the Pyrenees & the Alps in 218 b.c?
+Hannibal
+10
+
+Who married alec baldwin?
+Kim basinger
+10
+
+Who married antonio banderas, her co-star in the film too much?
+Melanie Griffith
+10
+
+Who married Bianca de Macias on 12th May 1971?
+Mick Jagger
+10
+
+Who married both Margaret Kempson and Margaret Roberts?
+Denis thatcher
+10
+
+Who married Elizabeth I?
+Noone
+10
+
+Who married elizabeth taylor in a las vegas synagogue?
+Eddie fisher
+10
+
+Who married george harrison's former wife?
+Eric clapton
+10
+
+Who married john lange?
+Shania twain
+10
+
+Who married kim basinger?
+Alec baldwin
+10
+
+Who married Marie Louise of Austria because he wanted an heir?
+Napoleon
+10
+
+Who married prince albert of saxe-coburg-gotha?
+Queen victoria
+10
+
+Who married prince albert?
+Queen albert
+10
+
+Who married queen victoria?
+Prince albert
+10
+
+Who married shania twain?
+John lange
+10
+
+Who married the actor Liam Neeson?
+Natasha richardson
+10
+
+Who married the Owl and The Pussycat?
+The turkey
+10
+
+Who married the poet robert browning in secret in 1846?
+Elizabeth barrett
+10
+
+Who married Thelma Catherine Patricia Ryan?
+Richard nixon
+10
+
+Who married to Jenny Von Westphalen in 1843?
+Karl marx
+10
+
+Who meets at 10 downing street in london?
+British cabinet
+10
+
+Who met cyclops on his third voyage?
+Sinbad
+10
+
+Who met in yalta in 1945?
+Churchill, roosevelt and stalin
+10
+
+Who met jeff in 1908?
+Mutt
+10
+
+Who met the giants of brobdingnag?
+Gulliver
+10
+
+Who might refer to humans as 'long pig'?
+Cannibals
+10
+
+Who might use a seismograph?
+Geologist
+10
+
+Who missed a point blank volley when the score was tied at 1-1 against alex stepney in the 1968 european cup final for benfica, only to rue the fact that more delicate placing would have won the cup for benfica?
+Eusebio
+10
+
+Who moved his 1960's variety series to miami?
+Jackie gleason
+10
+
+Who mumbled, 'i could of been a contenda' in 'on the waterfront'?
+Marlon brando
+10
+
+Who murdered julius caesar?
+Marcus brutus
+10
+
+Who must you kill to be convicted of patricide?
+Your father
+10
+
+Who named the st lawrence river?
+Jacques cartier
+10
+
+Who narrated the thomas the tank stories on tv?
+Ringo starr
+10
+
+Who obtained the vote for women in Argentina?
+Eva peron
+10
+
+Who occupies taiwan?
+Nationalist chinese
+10
+
+Who offered dr christian barnard 250,000 dollars to perform a human head transplant?
+National enquirer
+10
+
+Who on tv played jeeves to hugh lawrie's bertie wooster?
+Stephen fry
+10
+
+Who once dressed up as a carrot stick to hype his tv exercise program?
+Richard simmons
+10
+
+Who once entered a charlie chaplin contest in monte carlo and placed third?
+Charlie chaplin
+10
+
+Who once kept live mice in a desk drawer so they'd be available when he wanted to sketch one?
+Walt disney
+10
+
+Who once vowed to erect a statue to adolf hitler in kampala?
+Idi amin
+10
+
+Who opened for the monkees on their 1968 American tour?
+Jimi hendrix
+10
+
+Who opened the almost immediately criticised M25 with the carp - I cannot stand those who carp and criticise?
+Margaret thatcher
+10
+
+Who opened the circus 'the greatest show on earth' in brooklyn in 1871?
+Phineas barnum
+10
+
+Who opened the first unattended 24 hour self service laundromat?
+Nelson puett
+10
+
+Who opens up Springfield's casino?
+Mr. Burns
+10
+
+Who or what ate a duck but was outwitted by a bird,a small boy and his grandfather?
+Prokofievs wolf
+10
+
+Who or what is the empress of blandings?
+A pig
+10
+
+Who or what is the Pink Panther, in the film of the same name?
+A priceless diamond
+10
+
+Who or what might be given an Apgar rating?
+Baby
+10
+
+Who or what sang to Beatrice Harrisons cello accompaniement in a famous early BBC outside broadcast?
+Nightingales
+10
+
+Who or what was 'Rosebud' in the film Citizen Kane?
+Kane's Sled
+10
+
+Who or what was Rosanna Arquette seeking in 1985?
+Susan
+10
+
+Who or what would be looked after in a creche?
+Children
+10
+
+Who or what would somebody write about in an autobiography?
+Themself
+10
+
+Who ordered the Domesday Book to be written?
+William the conqueror
+10
+
+Who ordered the killing of the last incan king of peru?
+Francisco pizarro
+10
+
+Who originally designed the Washington Monument?
+Robert mills
+10
+
+Who originally made the jack-o-lantern?
+Ancient celts
+10
+
+Who originally patented the safety pin?
+Walter hunt
+10
+
+Who originally spoke quechua?
+Incas
+10
+
+Who owned the chocolate factory in Roald Dahls 1964 childrens story Charlie and The chocolate Factory?
+Willie wonka
+10
+
+Who owns head and shoulders shampoo?
+Procter and gamble
+10
+
+Who owns: wall street journal?
+Dow jones
+10
+
+Who paid ?3000 for a turkey in 1995?
+Linda mccartney
+10
+
+Who paid miss ussr four cartons of marlboro to be on his show?
+David letterman
+10
+
+Who painted 'The 3rd of May' (1808)?
+Francisco de goya
+10
+
+Who painted 'the night watch'?
+Rembrandt
+10
+
+Who painted 6000 square feet of the ceiling of the sistine chapel?
+Michelangelo
+10
+
+Who painted 64 self-portraits?
+Rembrandt
+10
+
+Who painted a reproduction of The Last Supper on the wall of his house and covered it with wall paper as a surprise for the next owners?
+Ralph steadman
+10
+
+Who painted diana and the bathers?
+Renoir
+10
+
+Who painted les parapluies in about 1883?
+Pierre auguste renoir
+10
+
+Who painted marriage d la mode in 1743?
+William hogarth
+10
+
+Who painted Six Bells, Abertillery, Rhondda?
+L s lowry
+10
+
+Who painted Starry Night?
+Vincent van gogh
+10
+
+Who painted The Blue Boy?
+Thomas gainsborough
+10
+
+Who painted the ceiling of the Sistine Chapel?
+Michelangelo
+10
+
+Who painted the famous picture of Marat assassinated in his bath?
+David
+10
+
+Who painted the famous picture Water-Lilies in about 1921?
+Claude Monet
+10
+
+Who painted the Hay Wain?
+John Constable
+10
+
+Who painted The Laughing Cavalier?
+Frans hals
+10
+
+Who painted the night watch and the mill?
+Rembrandt
+10
+
+Who painted the picture mr. and mrs. andrews circa 1750?
+Gainsborough
+10
+
+Who painted the picture the light of the world in 1854?
+Holman hunt
+10
+
+Who painted the picture, entitled mares and foals in a landscape, in 1762?
+George stubbs
+10
+
+Who painted the portrait La Gioconda?
+Leonardo da vinci
+10
+
+Who painted the portrait of Winston Churchill that was loathed by its subject and destroed by his family?
+Graham sutherland
+10
+
+Who painted the Rockerby Venus?
+Velazquez
+10
+
+Who painted the sistine chapel?
+Michelangelo
+10
+
+Who painted' A Bar at the Folies Bergere' (1882)?
+Edouard manet
+10
+
+Who palyed Mork from Ork's son?
+Johnathen Winters 
+10
+
+Who partnered Garfunkel?
+Simon
+10
+
+Who patented a waterproof material consisting of cloth coated with India rubber?
+Charles macintosh
+10
+
+Who patented a waterproof material in 1835 consisting of cloth coated with India rubber?
+Charles macintosh
+10
+
+Who patented the coin operated telephone patented?
+William gray
+10
+
+Who patented the first photograph?
+Thomas edison
+10
+
+Who patented the safety razor in 1895?
+King gillette
+10
+
+Who patented the sewing machine?
+Isaac singer
+10
+
+Who patrols gotham city?
+Batman and robin
+10
+
+Who penned 'Leaves of Grass'?
+Walt Whitman
+10
+
+Who penned a guide for duffers titled golf my way?
+Jack nicklaus
+10
+
+Who penned five of the ten best-selling children's books in u.s history by 1994?
+Dr seuss
+10
+
+Who penned the song freedom, written as a fund-raiser for New York police and firemen?
+Paul mccartney
+10
+
+Who perfected the first American revolver?
+Colt
+10
+
+Who performed Heart Attack and Vine for a Levi's advert?
+Screamin' jay hawkins
+10
+
+Who performed the first heart transplant?
+Professor christian barnard
+10
+
+Who performed the first successful heart transplant?
+Christian barnard
+10
+
+Who performed the last act in the British Live Aid concert before the grand finale?
+Paul mccartney
+10
+
+Who performed the title song of grease?
+Frankie valli
+10
+
+Who performed the world's worst circumcision?
+Lorena bobbit
+10
+
+Who performed the worlds first human heart transpant?
+Dr christian barnard
+10
+
+Who pianted the hay wain?
+John constable
+10
+
+Who pined 'but soft, what light through yonder window breaks'?
+Romeo
+10
+
+Who pioneered frozen food production?
+Clarence birdseye
+10
+
+Who pitched the last perfect game in American league?
+David wells
+10
+
+Who placed seven songs on the charts and five gold albums in the top 20 in 1966, a feat never matched?
+Herb alpert & the tijuana brass
+10
+
+Who placed the New Forest under forest law?
+William I
+10
+
+Who planned and led the attack on pearl harbour?
+Isoroku yamamoto
+10
+
+Who played Sportin' Life in the film Porgy and Bess?
+Sammy Davis Jr
+10
+
+Who preceded Bobby Robson as England Football Manager?
+Ron greenwood
+10
+
+Who preceded John Paul II as Pope?
+John Paul I
+10
+
+Who preceded richard nixon as president of the u.s.a?
+Lyndon b johnson
+10
+
+Who predicted in the 1500s that a man named Franco would provoke a civil war in Spain?
+Nostradamus
+10
+
+Who prescribed marijuana for queen victoria's menstrual cramps?
+Her doctor
+10
+
+Who present-day Canadian corporation is credited with inventing the snowmobile?
+Bombardier
+10
+
+Who presents ITV's arts show The South Bank Show?
+Melvyn bragg
+10
+
+Who presides over debates in the house of commons?
+The speaker
+10
+
+Who priced himself out of the lead role in Apocalypse now by demanding $3 million for three weeks work?
+Steve mcqueen
+10
+
+Who proclaimed thanksgiving a national holiday in 1863?
+Abraham lincoln
+10
+
+Who produced an electric bicycle called a zike in 1992?
+Sir clive sinclair
+10
+
+Who produced multiple screen prints of Marilyn Monroes face?
+Andy warhol
+10
+
+Who produces Pokemon?
+Nintendo
+10
+
+Who produces the male fragrance Eau Sauvage?
+Christian dior
+10
+
+Who promised their customers any colour so long as its black?
+Henry ford
+10
+
+Who proposed the theory of natural selection?
+Charles darwin
+10
+
+Who protects themselves from from blowing dust with three eyelids?
+Camels
+10
+
+Who provided the original voice for Mickey mouse?
+Walt disney
+10
+
+Who publishes the newspaper, The Australian?
+Rupert Murdoch
+10
+
+Who pulled the thorn from the lion's paw?
+Androcles
+10
+
+Who pushed the paperwork reduction act through US congress?
+Jimmy carter
+10
+
+Who put Sweeney Todds victims into her pies?
+Mrs Lovett
+10
+
+Who ran after the farmer's wife?
+Three blind mice
+10
+
+Who ran over Snowball I?
+Mayor quimby
+10
+
+Who ran the 'underground railroad'?
+Harriet tubman
+10
+
+Who ran the hospital at scutari during the crimean war?
+Florence nightingale
+10
+
+Who ran the marathon barefoot in the '60 games in rome and won?
+Abebe bikila
+10
+
+Who ran through the town,upstairs, downstairs in his nightgown?
+Wee willie winkie
+10
+
+Who ran unsuccesfully against Regan in 1984?
+Walter Mondale
+10
+
+Who re-released You're The One That I Want with Olivia Newton John in 1998?
+John travolta
+10
+
+Who reached as first in 1911 the southpole?
+Amundsen
+10
+
+Who reached the South Pole just ahead of Captain Scott?
+Captain roald amundsen
+10
+
+Who reached the summit of Everest with Hillary in 1953?
+Sherpa tensing
+10
+
+Who reads skulls?
+Phrenologist
+10
+
+Who realised 'things i've seen '?
+Spooks
+10
+
+Who realised a 1987 album called 'document'?
+Rem
+10
+
+Who received $50,000 in back salary when he was released from a Russian prison in 1962?
+Francis gary powers
+10
+
+Who received a Nobel Prize for Physiology in 1904 for work on conditioned reflexes?
+Ivan pavlov
+10
+
+Who received seven perfect scores for gymnastics at the Montreal Olympics?
+Nadia comaneci
+10
+
+Who received seven perfect scores in gymnastics at the 1976 montreal olympics?
+Nadia comaneci
+10
+
+Who received the Nobel Physics prize jointly with the Curies in 1913 for their work on radioactivity?
+Antoine becouerel
+10
+
+Who recieved the brit award for outstanding contribution to the British musiic industry in 1996?
+David bowie
+10
+
+Who refused to leave the table when gambling & invented a new meal?
+Earl of sandwich
+10
+
+Who refused to shake Jessie Owens' hand at the 1936 summer olympics?
+Adolf hitler
+10
+
+Who reigns over Japan an emperor, a king or a queen?
+Emperor
+10
+
+Who remixed Brimful of Asha for Cornershop in 1998?
+Norman cook
+10
+
+Who renders a verdict in a court?
+Jury
+10
+
+Who replaced Alun Michael as the Labour Leader in the Welsh Assembly?
+Rhodri morgan
+10
+
+Who replaced bernie leadon of the eagles in 1975?
+Joe walsh
+10
+
+Who replaced Bo and Luke Duke?
+Coy and Vance
+10
+
+Who replaced Sideshow Bob?
+Sideshow Mel
+10
+
+Who replaced signe toly as vocalist in jefferson airplane?
+Grace slick
+10
+
+Who replaced Skinner as principal?
+Ned Flanders
+10
+
+Who resides at 24 sussex drive in ottawa?
+Canadian prime minister
+10
+
+Who resigned as Britains secretary for war in 1963?
+John profumo
+10
+
+Who resigned as Chancellor of the Exchequer in 1947 over a Budget leak?
+Hugh dalton
+10
+
+Who retired as coach of the kansas city chiefs in 1998?
+Marty schottenheimer
+10
+
+Who retired in 1913 as The Master of Australian Rugby League?
+Dally Messenger
+10
+
+Who returned to space in 1998 at the age of 77?
+John Glen
+10
+
+Who revolutionized the textile industry with the invention of the power loom?
+Cartwright
+10
+
+Who rides in procession to the London Courts of Justice every November?
+The lord mayor
+10
+
+Who rode 'Party Politics' to win the Grand National in 1992?
+Carl llewellyn
+10
+
+Who rode a horse called Copenhagen?
+Duke of wellington
+10
+
+Who rowed Bonnie Prince Charlie to safety in 1746?
+Flora Macdonald
+10
+
+Who ruled France during the Franco-Prussian War?
+Napoleon iii
+10
+
+Who ruled judea and had john the baptist beheaded at the request of salomen?
+Herod antipas
+10
+
+Who ruled the Soviet Union from 1924 - 1953?
+Stalin
+10
+
+Who runs Andy Capp's favorite pub?
+Jackie
+10
+
+Who runs the country according to Smithers germs?
+Free Masons 
+10
+
+Who sad of taxidermy - the chemicals are the only thing that cost anything?
+Norman bates
+10
+
+Who said 'A woman drove me to drink and i never had the courtesy to thank her'?
+W.c. fields
+10
+
+Who said 'ask not what your country can do for you, but what you can do for your country'?
+John f kennedy
+10
+
+Who said 'damn the torpedoes! full speed ahead'?
+Admiral David glasgow farragut
+10
+
+Who said 'et tu brute'?
+Julius caesar
+10
+
+Who said 'hitch your wagon to a star'?
+Ralph waldo emerson
+10
+
+Who said 'i fear, too early for my mind misgives some consequence yet hanging in the stars'?
+Romeo
+10
+
+Who said 'i want to be alone'?
+Greta garbo
+10
+
+Who said 'i've had such a curious dream'?
+Alice
+10
+
+Who said 'If you want something said, ask a man. If you want something done, ask a woman.'?
+Margaret Thatcher
+10
+
+Who said 'love means never having to say you're sorry'?
+Ryan o'neal
+10
+
+Who said 'Marriage is a wonderful invention but so is the bicycle repair kit?
+Laurence olivier
+10
+
+Who said 'So far as the laws of mathematics refer to reality they are not certain. And so far as they are certain, they do not refer to reality.'?
+Albert einstein
+10
+
+Who said 'The no-mind not-thinks no-thoughts about no-things'?
+Buddha
+10
+
+Who said 'there, i guess king george can read that'?
+John hancock
+10
+
+Who said 'thoughts be bloody, or be nothing worth'?
+Hamlet
+10
+
+Who said 'what, me worry'?
+Alfred e neuman
+10
+
+Who said 'when power corrupts, poetry cleanses'?
+John f kennedy
+10
+
+Who said 'when the going gets tough, the tough get going'?
+Knute rockne
+10
+
+Who said all things were made up of air, earth, fire, water?
+Aristotle
+10
+
+Who said Dr Livingstone I presume?
+Henry stanley
+10
+
+Who said he could distinguish between 140 different types of tobacco ash?
+Sherlock holmes
+10
+
+Who said he killed cock robin?
+Sparrow
+10
+
+Who said I have signed legislation today that will outlaw Russia forever. We begin bombing in 5 minutes?
+Ronald reagan
+10
+
+Who said If thought corrupts language, language can also corrupt thought?
+George orwell
+10
+
+Who said Mad dogs and englishmen go out in the mid-day sun?
+Noel coward
+10
+
+Who said men seldom make passes at girls who wear glasses?
+Dorothy parker
+10
+
+Who said of American Football-It has become so complicated that students will find it recreation to go to classes?
+T s eliot
+10
+
+Who said of quantum theory 'god does not play dice'?
+Albert einstein
+10
+
+Who said Religion is the opium of the people?
+Karl marx
+10
+
+Who said that all matter comes from fire, water, earth & air?
+Aristotle
+10
+
+Who said that business with Hitler didnt bother me, I didnt go there to shake hands with him anyway?
+Jesse owens
+10
+
+Who said There is no terror in a bang, only in the anticipation of it?
+Alfred hitchcock
+10
+
+Who said We're more popular than Jesus Christ now?
+John lennon
+10
+
+Who said, 'Whenever meditating over a disease, I never think of finding a remedy for it, but instead a means of preventing it?
+Louis pasteur
+10
+
+Who said, in song, The Sun Ain't Gonna Shine Anymore?
+The walker brothers
+10
+
+Who said: 'ich bin ein berliner'?
+John f kennedy
+10
+
+Who said: 'Let them eat cake'?
+Marie Antoinette
+10
+
+Who said: 'Soldiers win the battles and generals get the credit'?
+Napoleon
+10
+
+Who sailed from Spain in the Santa Maria in 1492?
+Christopher columbus
+10
+
+Who sailed in a ship called the Argo?
+Jason
+10
+
+Who sailed to adventure in the argo?
+Jason
+10
+
+Who sailed to the antarctic in the ship 'discovery'?
+Scott amundsen
+10
+
+Who sank the royal oak in scapa flow, 1939?
+Gunther prien
+10
+
+Who sat in a corner, according to the nursery rhyme?
+Little jack horner
+10
+
+Who sat on her tuffet?
+Little miss muffet
+10
+
+Who sat on the bench for the Simpson murder trial?
+Judge ito
+10
+
+Who saught to create the great society?
+Lyndon johnson
+10
+
+Who says 'parting is such sweet sorrow'?
+Juliet
+10
+
+Who scored 9 goals in the 1966 World Cup tournament?
+Eusebio
+10
+
+Who sculpted 'the kiss'?
+Auguste rodin
+10
+
+Who searched for the holy grail?
+Knights of the round table
+10
+
+Who seized the gold of Nibelungs before being killed himself?
+Siegfried
+10
+
+Who sent her taped conversations with Monika Lewinsky to Kenneth Starr?
+Linda tripp
+10
+
+Who sent the first radio telegraphic signal across the Atlantic?
+Marconi
+10
+
+Who sentenced St. Valentine to death?
+Claudius II
+10
+
+Who served 27 years in prison for sexual offenses?
+Marquis de sade
+10
+
+Who set the train speed record of 552 kph on april 14 1999(nationality)?
+Japanese
+10
+
+Who set up the first concentration camp in the boer wars?
+England
+10
+
+Who shared the 1978 Nobel Peace Prize with Menachem Begin?
+Anwar sadat
+10
+
+Who shared the 1993 nobel peace prize with nelson mandela?
+F. w. de klerk
+10
+
+Who shot andy warhol?
+Valeri solanis
+10
+
+Who shot himself mortally in the mouth in Idaho in 1961?
+Ernest hemingway
+10
+
+Who shot lee harvey oswald?
+Jack ruby
+10
+
+Who shot marvin gaye in 1984?
+His father
+10
+
+Who shot the Archduke Francis Ferdinand in 1914, sparking World War I?
+Gavrillo Princip
+10
+
+Who should questions be emailed to?
+Damsulegna@ntlworld.com
+10
+
+Who signed the declaration of independence?
+John hancock and Charles thomson
+10
+
+Who signed the Emancipation Proclamation?
+Abraham Lincoln
+10
+
+Who signed the usa for africa poster with his thumbprint?
+Stevie wonder
+10
+
+Who singed the King of Spains beard?
+Francis drake
+10
+
+Who sold turbo c++?
+Borland
+10
+
+Who sought to create the great society?
+Lyndon johnson
+10
+
+Who spun straw into gold?
+Rumplestiltskin
+10
+
+Who started a giant fast food chain in 1928 in a hut near Bradford, Yorkshire?
+Harry ramsden
+10
+
+Who started on the san francisco scene with 'oh well', but are probably best known for their album 'rumors'?
+Fleetwood mac
+10
+
+Who started the dragonlance series?
+Margaret weiss and tracy hickman
+10
+
+Who still receives an estimated 25 pieces of junk mail per year at Walden Pond?
+Thoreau
+10
+
+Who stole Eddie Fisher away from Debbie Reynolds?
+Liz taylor
+10
+
+Who stopped Bjorn Borg's wimbledon winning streak?
+John mcenroe
+10
+
+Who strangled two snakes that attacked him & his brother in their cradle?
+Hercules
+10
+
+Who struck recording gold with lightning is striking again?
+Lou christie
+10
+
+Who stuck up an instant friendship with Eleanor Roosevelt upon her visit to the United States?
+The Queen Mother
+10
+
+Who study & predict earthquakes?
+Seismologists
+10
+
+Who succeded spiro agnew as us vice president?
+Ford
+10
+
+Who succeeded bob costas as host of nfl live?
+Jim lampley
+10
+
+Who succeeded Bonar Law as British Prime Minister in 1923?
+Stanley baldwin
+10
+
+Who succeeded Brezhnev as Soviet leader?
+Yuri andropov
+10
+
+Who succeeded brezhnev as the general secretary of the communist party of the soviet union?
+Yuri andropov
+10
+
+Who succeeded Caligula as Roman Emperor?
+Claudius
+10
+
+Who succeeded Charles de gaulle as president of france?
+Georges pompidou
+10
+
+Who succeeded Churchill when he resigned in 1955?
+Anthony eden
+10
+
+Who succeeded george vi to the British throne?
+Elizabeth ii
+10
+
+Who succeeded Georges Pompidou as President of France?
+Valery giscard d'estaing
+10
+
+Who succeeded hitler as fuhrer of nazi Germany?
+Karl doenitz
+10
+
+Who succeeded hitler in 1945?
+Admiral donitz
+10
+
+Who succeeded John Betjeman as Poet Laureate?
+Cecil day lewis
+10
+
+Who succeeded joseph stalin as Russian premier?
+Georgy malenkov
+10
+
+Who succeeded joseph wapner as the judge on the people's court?
+Koch
+10
+
+Who succeeded Khrushchev as first seretary of the communist party?
+Leonid brezhnev
+10
+
+Who succeeded lee kuan yew as the prime minister of singapore?
+Goh chok tong
+10
+
+Who succeeded Lorenz Hart as lyricist to Richard Rodgers?
+Oscar hammerstein
+10
+
+Who succeeded nelson mandela as south africa's president?
+Thabo mbeki
+10
+
+Who succeeded Pompidou as French president?
+Valery giscard d'estaing
+10
+
+Who succeeded queen elizabeth i to the throne in 1603?
+James i
+10
+
+Who succeeded Queen Elizabeth l to the throne in 1603?
+James i
+10
+
+Who succeeded the Queen Mother as Chancellor of london University?
+Princess anne
+10
+
+Who succeeded U Thant as Secretary General of the United Nations in 1972?
+Kurt waldheim
+10
+
+Who succeeded u thant as secretary general of the united nations?
+Kurt waldheim
+10
+
+Who succeedeed president Marcos?
+Mrs corazon aquino
+10
+
+Who successfully marketed the first safety razor?
+King gillette
+10
+
+Who suceeded joao havelange as president of fifa?
+Sepp blatter
+10
+
+Who surpassed George Halas for most career NFL coaching victories in 1993?
+Don shula
+10
+
+Who surrendered singapore to the British after the Japanese surrender?
+S
+10
+
+Who swam the Hellespont every night to see his lover Hero?
+Leander
+10
+
+Who taught alexander the great?
+Aristotle
+10
+
+Who taught the theory of evolution in 1925 contrary to tennessee law?
+John scopes
+10
+
+Who took dictation from perry mason?
+Della street
+10
+
+Who took eight days to do the first solo round the world flight in 1933?
+Wylie post
+10
+
+Who took his library wherever he went?
+Abdul kassem ismael
+10
+
+Who took the first photograph?
+Nicephore niepce
+10
+
+Who took the first space walk?
+Aleksei leonov
+10
+
+Who took the Olympic oath on behalf of all the athletes competing in Melbourne in 1956?
+John Landy
+10
+
+Who topped the charts with son of my father?
+Chickory tip
+10
+
+Who topped the uk charts with so you win again?
+Hot chocolate
+10
+
+Who transmitted radio signals across the atlantic?
+Marconi
+10
+
+Who travelled over a thousand miles to see with her own eyes, if the stories of Solomon's wealth and wisdom were indeed true?
+Queen of Sheba
+10
+
+Who tried to blow up the British Houses of Parliament in 1605?
+Guy Fawkes
+10
+
+Who tried to create the 'great society'?
+Lyndon johnson
+10
+
+Who tried to kill gerald ford in september 1975?
+Squeaky fromme
+10
+
+Who turned down an offer to appear in Flashdance which included one percent of the estimated ?50 million takings?
+Bob geldof
+10
+
+Who turned down the Oliver Reed role in the 1969 film Women in Love because of the nude wrestling scene with Alan Bates?
+Michael caine
+10
+
+Who turned down the role of Rhett Butler in Gone With The Wind, because he thought it would flop?
+Gary Cooper
+10
+
+Who turned the word walkies into a command?
+Barbara woodhouse
+10
+
+Who turned Ulysses' men to swine?
+Circe
+10
+
+Who uses a signalling system known as tick tack?
+Bookmakers
+10
+
+Who uses roosevelt's phrase 'good to the last drop'?
+Maxwell house coffee
+10
+
+Who uses the Autex system?
+Stockbrokers
+10
+
+Who uses the slogan 'aol'?
+American online
+10
+
+Who visited a country governed by horses?
+Gulliver
+10
+
+Who visited Australia and new zealand, then surveyed the pacific coast of north America?
+Captain george vancouver
+10
+
+Who voiced the character 'Lumiere' (Candlestick character) in the Disney animated film, 'Beauty and The Beast'?
+Jerry Orbach
+10
+
+Who voices the cowboy doll 'woody' in the film 'toy story'?
+Tom hanks
+10
+
+Who walked to the South Pole then flew to the North Pole?
+Amundsen
+10
+
+Who wanted to buy a copy of his own book fly fishing?
+J.r hartley
+10
+
+Who wanted to go the distance with Apollo Creed?
+Rocky balboa
+10
+
+Who was 'the elephant man'?
+John merrick
+10
+
+Who was 'The King of Swing'?
+Goodman
+10
+
+Who was 'The Mad Monk'?
+Rasputin
+10
+
+Who was 'the peekaboo girl'?
+Veronica lake
+10
+
+Who was 'the postman'?
+Kevin costner
+10
+
+Who was 'too sexy for his shirt'?
+Right said fred
+10
+
+Who was 'uncle milty'?
+Milton berle
+10
+
+Who was & romedas mother?
+Cassiopeia
+10
+
+Who was 1964,s First African-American Best Actor Oscar?
+Sydney Poitier 
+10
+
+Who was 45 when he became the oldest heavyweight boxing champion?
+George foreman
+10
+
+Who was 77 years old when he made his second trip in space?
+John glenn
+10
+
+Who was a co founder of the German Gree party in 1979 and became one of the best known green mps in the world?
+Petra kelly
+10
+
+Who was a member of 'the great society' before she joined 'jefferson airplane'?
+Grace slick
+10
+
+Who was a Nobel Peace Prize Winner, a British MP and a silver medalist in the 1920 Olympic mens 1500m?
+Philip noel baker
+10
+
+Who was a One Man Band in the 1970s?
+Leo sayer
+10
+
+Who was Abbotts comedy partner?
+Costello
+10
+
+Who was abdul kassem ismael in tenth century persia?
+Grand vizier of persia
+10
+
+Who was Abraham Lincoln's first choice to lead the Union Army?
+Robert e. lee
+10
+
+Who was accused of smuggling $225 million out of the Philippines?
+Imelda marcos
+10
+
+Who was acquired from the daisy hill puppy farm?
+Snoopy
+10
+
+Who was adam and eve's third child?
+Seth
+10
+
+Who was adolf hitler's mistress?
+Eva braun
+10
+
+Who was al gore's freshman roommate at harvard?
+Tommy lee jones
+10
+
+Who was albert einstein's father?
+Hermann einstein
+10
+
+Who was Alexander the Great's father?
+Phillip ii
+10
+
+Who was alexander the great's horse?
+Bacephalus
+10
+
+Who was alexander the great's wife?
+Roxana
+10
+
+Who was always setting up mr bill to be squished by sluggo?
+Mr hands
+10
+
+Who was America named after?
+Amerigo Vespucci
+10
+
+Who was America's first billionaire?
+Rockefeller
+10
+
+Who was America's first public enemy no 1?
+John dillinger
+10
+
+Who was American pilot license #1 issued to?
+Glenn curtis
+10
+
+Who was an ordained priest in the Church of England?
+Sir isaac newton
+10
+
+Who was Ancient Egyptian fertility god?
+Min
+10
+
+Who was Ancient Egyptian moon god?
+Khensu 
+10
+
+Who was Angel Falls named after?
+Jimmy Angel
+10
+
+Who was anne hathaway's husband?
+William shakespeare
+10
+
+Who was appointed Headmaster of Rugby School in 1828?
+Thomas arnold
+10
+
+Who was appointed Ireland's first bishop in the 5th century?
+Saint patrick
+10
+
+Who was archie andrews' sidekick?
+Jughead jones
+10
+
+Who was Arthur Scargill's predecessor as President of the NUM?
+Joe gormley
+10
+
+Who was asleep between the march hare and the hatter?
+Dormouse
+10
+
+Who was assasinated by Gavrilo Princip to spark the beginning of World War I?
+Archduke Ferdinand
+10
+
+Who was assassinated at Sarajevo to start WW1?
+Archduke ferdinand
+10
+
+Who was assassinated in Mexico in 1940?
+Trotsky
+10
+
+Who was assassinated on november 22, 1963 in dallas?
+President john f kennedy
+10
+
+Who was assigned to steal the girdle of the amazon queen hippolyte?
+Hercules
+10
+
+Who was atahualpa?
+King of the incas
+10
+
+Who was Australia's first great tennis star, winning the Wimbledon singles title in 1907?
+Norman Brookes
+10
+
+Who was Australia's wicketkeeper during the years that Richie Benaud was captain?
+Wally Grout
+10
+
+Who was awarded the 1973 nobel peace prize along with le duc tho?
+Henry kissinger
+10
+
+Who was awarded the nobel peace prize after dying in a plane crash?
+Dag hammarskjold
+10
+
+Who was backed by the Yellowcoats on the theme music for Hi de Hi?
+Paul shane
+10
+
+Who was barney rubble's best friend?
+Fred flintstone
+10
+
+Who was bart maverick's smarter brother?
+Bret
+10
+
+Who was beaten at the battle of Actium by Octavian?
+Mark antony
+10
+
+Who was becky thatcher's boyfriend?
+Tom sawyer
+10
+
+Who was beheaded by Henry viii after writing utopia?
+Thomas more
+10
+
+Who was ben casey's boss?
+Dr zorba
+10
+
+Who was Big Ben named after?
+Sir benjamin hall
+10
+
+Who was Biggles' evil German adversary?
+Von stalhein
+10
+
+Who was Bob Dylan referring to on his song, 'Sad Eyed Lady of the Lowlands', on the hit album, 'Blonde on Blonde'?
+The Statue of Liberty
+10
+
+Who was born anne frances robbins?
+Nancy davis reagan
+10
+
+Who was born doris kappelhoff?
+Doris day
+10
+
+Who was born iosif vissarionovich dzhugashvili?
+Stalin
+10
+
+Who was born marion Michael Morrison?
+John wayne
+10
+
+Who was born michael bolotin?
+Michael bolton
+10
+
+Who was born on krypton?
+Superman
+10
+
+Who was born on the island of korcula?
+Marco polo
+10
+
+Who was born sarah jane fulks?
+Jane wyman reagan
+10
+
+Who was born vladimir ilyich yulyanov?
+Lenin
+10
+
+Who was born when pluto, the astrological sign for death, was directly above dallas, texas?
+John f kennedy
+10
+
+Who was born william bailey but changed his name to be an anagram of oral sex?
+Axl rose
+10
+
+Who was both the 22nd & the 24th president of the US?
+Stephen grover cleveland
+10
+
+Who was bram stoker's most infamous character?
+Dracula
+10
+
+Who was Britain's second Labour Prime Minister?
+Clement attlee
+10
+
+Who was Britains first telephone subscriber?
+Queen victoria
+10
+
+Who was British Prime Minister at the outbreak of WWI?
+Herbert asquith
+10
+
+Who was British Prime Minister at the time of the General Strike in 1926?
+Stanley baldwin
+10
+
+Who was British prime minister from 1955 to 1957?
+Anthony eden
+10
+
+Who was British Prime Minister on Sunday 3rd September 1939?
+Neville chamberlain
+10
+
+Who was brooke shields famous husband?
+Agassi
+10
+
+Who was bruce lee's son?
+Jason lee
+10
+
+Who was called 'the wronged woman' in the elizabeth taylor-eddie fisher affair?
+Debbie reynolds
+10
+
+Who was called kal-el on krypton?
+Superman
+10
+
+Who was called the father of Psychoanalysis?
+Sigmund freud
+10
+
+Who was called the hero of san juan hill?
+Roosevelt
+10
+
+Who was Canada's first prime minister?
+Macdonald
+10
+
+Who was Canadian parliaments first Inuk member?
+Peter ittinuar
+10
+
+Who was candice bergen's father?
+Edgar bergen
+10
+
+Who was Captain Edward J. Smith?
+Captain of the titanic
+10
+
+Who was captain of the titanic?
+Edward smith
+10
+
+Who was carl in five easy pieces before going to walton's mountain?
+Ralph waite
+10
+
+Who was carried off by a great bird called Roc?
+Sinbad the Sailor
+10
+
+Who was cast adrift following the mutiny on HMS Bounty?
+Captain bligh
+10
+
+Who was cast adrift from The Bounty after the mutiny?
+Captain bligh
+10
+
+Who was castrated in the time of richard the lionheart?
+Poachers
+10
+
+Who was Chairman of British Coal during the miners strike of the 1980s?
+Ian mcgregor
+10
+
+Who was Chancellor of the Exchequer during the 1949 devaluation of the Pound?
+Sir stafford cripps
+10
+
+Who was cloned in boys from Brazil?
+Hitler
+10
+
+Who was commissioned to carve the faces on mount rushmore?
+Gutzon borglum
+10
+
+Who was considered the wisest king to rule Jerusalem in the Old Testament?
+Solomon
+10
+
+Who was corsica's most famous son?
+Napoleon
+10
+
+Who was court painter to Charles i?
+Van Dyck
+10
+
+Who was credited with saving the kuwaiti water supply in 1964, after a freighter containing 6,000 sheep capsized and threatened to poison the water with rotting carcasses?
+Donald duck
+10
+
+Who was cremated on the banks of the Ganges river on January 31, 1948?
+Mahatma gandhi
+10
+
+Who was crowned czar of Russia in 1547?
+Ivan the terrible
+10
+
+Who was crowned Holy Roman Emperor in 800AD?
+Charlemagne
+10
+
+Who was crowned king of England on christmas day 1066?
+William the conqueror
+10
+
+Who was Dan Dares evil adversary?
+The mekon
+10
+
+Who was daniel boone's Indian companion?
+Mingo
+10
+
+Who was defeated at Mantinea in the Peloponnesian war?
+Alcibiades
+10
+
+Who was defeated at the battle of little bighorn?
+George a custer
+10
+
+Who was defeated at the Battle of Zama by Scipio Africanus?
+Hannibal
+10
+
+Who was delaware named after?
+Lord de la warr
+10
+
+Who was dictator of Spain from 1937 to 1975?
+Francisco franco
+10
+
+Who was dingaan's predecessor?
+Shaka
+10
+
+Who was dipped in the river styx?
+Achilles
+10
+
+Who was disqualified after winning the 1976 British grand prix?
+James hunt
+10
+
+Who was disqualified during the 1908 Olympic Marathon?
+Dorando pietri
+10
+
+Who was disqualified of a 100m olympics gold medal after testing positive for steroid use?
+Ben johnson
+10
+
+Who was doggie daddy's son?
+Augie doggie
+10
+
+Who was don rickles?
+Mr warmth
+10
+
+Who was dr seuss' egg-hatching elephant?
+Horton
+10
+
+Who was dr zhivago's great love?
+Lara
+10
+
+Who was e.t's best friend?
+Elliot
+10
+
+Who was elected leader of the liberal party in 1990?
+Jean chretien
+10
+
+Who was elected president of france, in 1981?
+Francois mitterand
+10
+
+Who was elected prime minister of Australia in 1991?
+Paul keating
+10
+
+Who was elected US president four times?
+Franklin d roosevelt
+10
+
+Who was elia?
+Charles lamb
+10
+
+Who was elizabeth barrett in love with?
+Robert browning
+10
+
+Who was Elizabeth I's mother?
+Anne Boleyn
+10
+
+Who was elvis presley's manager?
+Colonel tom parker
+10
+
+Who was emil jellinek's daughter?
+Mercedes
+10
+
+Who was emperor of China when Marco Polo arrived in 1275?
+Kulai Khan
+10
+
+Who was Englands first Norman king?
+William the conqueror
+10
+
+Who was English potter Josiah Wedgwood's very famous grandson?
+Charles Darwin
+10
+
+Who was Eric Clapton yearning for in his love song Layla?
+Patti boyd
+10
+
+Who was executed in 1936 for the kidnapping and murder of Charles lindbergh junior?
+Bruno hauptman
+10
+
+Who was first to be voted out of the original British Big Brother house?
+Sada
+10
+
+Who was fond of saying 'i will gladly pay you tuesday for a hamburger today'?
+Wimpey
+10
+
+Who was forced by Indian troops into the black hole of calcutta?
+British
+10
+
+Who was forced into a hairdressing job by his mother although it was the thing that he least wanted to do?
+Vidal sassoon
+10
+
+Who was forced into a hairdressing job by his mother, though it was the last thing he wanted to do?
+Vidal sassoon
+10
+
+Who was forced to resign as head of the Dome in early 2000, and is now with Railtrack?
+Jenny page
+10
+
+Who was forced to return his olympic gold medals after it was learned he had played semipro baseball?
+Jim thorpe
+10
+
+Who was frances gumm better known as?
+Judy garland
+10
+
+Who was Frances Octavia Smith better known as?
+Dale Evans
+10
+
+Who was fred flintstone's best friend?
+Barney rubble
+10
+
+Who was french prime minister at the end of world war 1?
+Georges clemenceau
+10
+
+Who was george burns' wife, whom he had a popular tv show with?
+Gracy allen
+10
+
+Who was George Foremans opponent in Norman Mailers book The Fight?
+Ali
+10
+
+Who was george gershwin's brother?
+Ira
+10
+
+Who was Germany's chancellor in 1932?
+Franz von papen
+10
+
+Who was given a ticker tape parade in New York after his 1927 flight to Paris?
+Charles lindbergh
+10
+
+Who was given the only nobel peace prize award during wwi?
+International red
+10
+
+Who was goyathlay?
+Geronimo
+10
+
+Who was half man, half vulcan?
+Spock
+10
+
+Who was hamlet's girlfriend (hint, not his mom )?
+Ophelia
+10
+
+Who was handed the first complete printed copy of his book On the Revolutions of the Celestial Spheres on the last day of his life?
+Copernicus
+10
+
+Who was hanged & decapitated two years after he had died?
+Oliver cromwell
+10
+
+Who was hebert c hoover's vice president?
+Charles curtis
+10
+
+Who was Helen of Troy's husband?
+Menelaus of sparta
+10
+
+Who was helen of troy's trojan lover?
+Paris
+10
+
+Who was Helen of Troys husband?
+Menelaus
+10
+
+Who was Henry viii fifth wife?
+Catherine howard
+10
+
+Who was Herbert Hoover's Vice President?
+Charles Curtis
+10
+
+Who was hitler's foreign secretary (full name)?
+Joachim von ribbentrop
+10
+
+Who was Hitler's propaganda minister?
+Goebbels
+10
+
+Who was Homer's secretary when he was promoted?
+Karl
+10
+
+Who was Hornungs famous jewel thief?
+Raffles
+10
+
+Who was howard carter's sponsor during his discovery of the tomb of tutankhamen?
+Lord carnarvon
+10
+
+Who was igraine?
+King arthur's sister
+10
+
+Who was il duce?
+Benito mussolini
+10
+
+Who was immediately preceded by Breshnev and Andropov?
+Chernenko
+10
+
+Who was imprisoned for faking howard hughes's autobiography?
+Clifford irving
+10
+
+Who was in the parlour eating bread and honey?
+The queen
+10
+
+Who was India's first prime minister?
+Jawaharlal nehru
+10
+
+Who was irma's first roommate in my friend irma?
+Jane stacy
+10
+
+Who was israel's only woman prime minister?
+Golda meir
+10
+
+Who was israeli prime minister yitzhak rabin assassinated by?
+Yigal amir
+10
+
+Who was it that 'the untouchables' were formed to stop?
+Al capone
+10
+
+Who was it that gave the speech beginning I have a dream?
+Martin luther king
+10
+
+Who was Jack the Ripper's first victim?
+Mary ann nichols
+10
+
+Who was Jane Torvill's ice-skating partner?
+Christopher dean
+10
+
+Who was jason lee's father?
+Bruce lee
+10
+
+Who was jethro tull?
+Agriculturist
+10
+
+Who was Jimmy Carter's Vice-President?
+Walter mondale
+10
+
+Who was john merrick?
+Elephant man
+10
+
+Who was john the baptist's mother?
+Elizabeth
+10
+
+Who was john wayne's musical co-star in true grit?
+Glen campbell
+10
+
+Who was johnny carson's first guest on 'the tonight show' on october 1st, 1962?
+Joan crawford
+10
+
+Who was josef vissarionovich dzhugashvili better known as?
+Stalin
+10
+
+Who was juliet's cousin?
+Tybalt
+10
+
+Who was jungle jim's pet dog?
+Skipper
+10
+
+Who was kaiser of Germany during world war i?
+Wilhelm ii
+10
+
+Who was kicked out of the Be-Sharpes and replaced by Barney?
+Chief Wiggum
+10
+
+Who was kidnapped on the night of march 1, 1932?
+Lindbergh
+10
+
+Who was killed defending quebec in 1759?
+Louis montcalm
+10
+
+Who was killed while watching the play 'Our American Cousin'?
+Abraham Lincoln
+10
+
+Who was king arthur's champion?
+Sir lancelot
+10
+
+Who was king arthur's court wizard?
+Merlin
+10
+
+Who was king arthur's father?
+Uther pendragon
+10
+
+Who was king arthur's queen and lancelot's lover?
+Guinevere
+10
+
+Who was king arthur's wife?
+Guinevere
+10
+
+Who was king juan carlos' predecessor?
+General francisco franco
+10
+
+Who was king lear's favourite daughter?
+Cordelia
+10
+
+Who was king of Egypt from 1375 to 1358 b.c?
+Amenhotep iv
+10
+
+Who was king of Egypt in 570 till 526 BC?
+Amasis
+10
+
+Who was King of France from breakfat until tea time on 2 august 1830?
+Louis XIX
+10
+
+Who was king of macedonia from 336 to 323 b.c?
+Alexander the great
+10
+
+Who was king of mycenae and commander of the greek forces in the trojan war?
+Agamemnon
+10
+
+Who was king of the Franks from 768 to 814 a.d?
+Charlemagne
+10
+
+Who was king of the Huns from 406 to 453?
+Attila
+10
+
+Who was king solomon's mother?
+Bathsheba
+10
+
+Who was known as 'America's Sweetheart'?
+Mary pickford
+10
+
+Who was known as 'the iron lady'?
+Margaret thatcher
+10
+
+Who was known as 'the last of the red hot mommas'?
+Sophie tucker
+10
+
+Who was known as 'The Railway King'?
+George hudson
+10
+
+Who was known as `The Flanders Mare`?
+Anne of Cleves
+10
+
+Who was known as guardian of the safety of the world?
+Captain video
+10
+
+Who was known as the 'Godfather of Soul'?
+James Brown
+10
+
+Who was known as the 'lady of the lamp'?
+Florence nightingale
+10
+
+Who was known as the big mooseketeer?
+Roy williams
+10
+
+Who was known as the King of Hollywood?
+Clark gable
+10
+
+Who was known as the louisville lip?
+Muhammad ali
+10
+
+Who was known as the maid of orleans?
+Joan of arc
+10
+
+Who was known as the person who hated Christmas?
+Scrooge
+10
+
+Who was known as the serpent of the nile?
+Cleopatra
+10
+
+Who was known by the nickname 'satchmo'?
+Louis armstrong
+10
+
+Who was lady chatterley's lover?
+Mellors
+10
+
+Who was Lady Emma Hamilton's famous lover?
+Lord nelson
+10
+
+Who was lancelot's son in arthurian legend?
+Galahad
+10
+
+Who was laugh-ins sock-it-to-me girl?
+Judy Carne
+10
+
+Who was lead singer and main writer with Take That?
+Gary barlow
+10
+
+Who was lead singer and principal songwriter with the American pop group Bread?
+David gates
+10
+
+Who was lead singer with dexys midnight runners?
+Kevin rowland
+10
+
+Who was lead singer with The Commodores?
+Lionel richie
+10
+
+Who was left orbiting the moon while Armstrong was getting all the glory?
+Michael collins
+10
+
+Who was Lisa's jazz-playing mentor?
+Bleedin' Gums Murphy
+10
+
+Who was lord mayor of london in 1398, 1406 and 1419, and is most famous for his legendary cat?
+Richard whittington
+10
+
+Who was Lord Protector of England 1653-1658?
+Oliver cromwell
+10
+
+Who was lugee sacco?
+Lou christie
+10
+
+Who was made lord protector and ruled England after the civil war?
+Oliver cromwell
+10
+
+Who was made the first Holy Roman Emperor?
+Charlemagne
+10
+
+Who was made the first honorary citizen of the USA?
+Winston churchill
+10
+
+Who was Mallory Keaton's fiance?
+Nick Moore
+10
+
+Who was Marge's bowling teacher?
+Jaques
+10
+
+Who was Margret Thatcher?
+Prime Minister of Great Britan
+10
+
+Who was married to Francis II, Lord Darnley and The Earl of Bosworth?
+Mary, queen of scots
+10
+
+Who was married to frank sinatra from 1966-1968?
+Mia farrow
+10
+
+Who was married to Leofric Earl of Mercia in the 11th century?
+Lady godiva
+10
+
+Who was martha in the McCartney hit Martha my dear?
+His old English sheepdog
+10
+
+Who was Michelle's first boyfriend on Full House?
+Howie
+10
+
+Who was mike schmidt's last major league manager?
+John vukovich
+10
+
+Who was Milhouse's first girlfriend?
+Samantha Stanky
+10
+
+Who was minister for education from 1981-1986?
+Keith joseph
+10
+
+Who was miss hungary in 1936?
+Zsa zsa gabor
+10
+
+Who was mohandas gandhi's assassin?
+Nathuram godse
+10
+
+Who was montreal canadiens 1st captain?
+Newsy lalonde
+10
+
+Who was mortally wounded in the heel by an arrow from Paris?
+Achilles
+10
+
+Who was mr wizard?
+Don herbert
+10
+
+Who was Mr. Wizard?
+Don Herbert
+10
+
+Who was mrs jumbo's son?
+Dumbo
+10
+
+Who was murdered by the Manson family in 1969?
+Sharon tate
+10
+
+Who was Myrna Loy's scree partner in 'The Thin Man' movie series?
+William Powell
+10
+
+Who was named Chairman of the U.S. Federal Reserve Board by Ronald Reagan in 1987, a post he still (February '99) holds?
+Alan greenspan
+10
+
+Who was napoleon's first wife?
+Josephine
+10
+
+Who was nicknamed The Little Corporal?
+Napoleon
+10
+
+Who was no 1 in xmas 1983 with the song only you?
+Flying pickets
+10
+
+Who was nominated for a BAFTA Award in 1997 as a result of an interview with the Duchess of York?
+Ruby wax
+10
+
+Who was nominated for a Best Actress Oscar for the film Mary, Queen of Scots?
+Vanessa redgrave
+10
+
+Who was not an original 'charlie's angel'?
+Cheryl ladd
+10
+
+Who was not offered the lead role in a fistful of dollars due to his high fee?
+Henry fonda
+10
+
+Who was oedipus' father?
+Laius
+10
+
+Who was oedipus' mother?
+Jocasta
+10
+
+Who was on the first cover of people?
+Mia farrow
+10
+
+Who was on the wooden raft in Bart's daydream about skipping school?
+Abraham Lincoln and Huck Finn
+10
+
+Who was once fired by 'The San Francisco Examiner with a pink slip stating 'He just doesn't know how to use the English language?
+Rudyard Kipling
+10
+
+Who was once known as dippy the goof?
+Goofy
+10
+
+Who was ordered to apologize for slapping Private Paul G. Bennett in the fact?
+General George S Patton, Jr.
+10
+
+Who was Oscar Fingal O'Flahertie Wills better known as?
+Oscar Wilde
+10
+
+Who was othello's wife?
+Desdemona
+10
+
+Who was perry mason's private investigator?
+Paul drake
+10
+
+Who was Peter Sellers married to when he died?
+Lynn fredrick
+10
+
+Who was pictured on a 1997 Time magazine cover that sold a record 1,183,758 copies?
+Princess diana
+10
+
+Who was Poet Laureate during World War One?
+Robert bridges
+10
+
+Who was Poet Laureate during World War Two?
+John masefield
+10
+
+Who was Poet Laureate from 1843 to 1850, during which period he wrote no poetry at all?
+William wordsworth
+10
+
+Who was Poet Laureate from 1930-1968?
+John masefield
+10
+
+Who was poopdeck pappy's best known son?
+Popeye
+10
+
+Who was pope during world war ii?
+Pius xii
+10
+
+Who was Portugals star player in the 1966 World Cup?
+Eusebio
+10
+
+Who was president of France form 1981 to 1995?
+Francois mitterand
+10
+
+Who was president of france's first fifth republic?
+Charles de gaulle
+10
+
+Who was president of the soviet union from 1977-82?
+Leonid brezhnev
+10
+
+Who was president of the united states at the end of the war?
+Harry s truman
+10
+
+Who was president when Charles lindbergh flew into history?
+Calvin coolidge
+10
+
+Who was Prime Minister at the end of World War One?
+Lloyd george
+10
+
+Who was Prime Minister at the start of World War One?
+Asquith
+10
+
+Who was Prime Minister of Afghanistan from 1993 to 1994?
+Gulbuddin Hematyar
+10
+
+Who was Prime Minister of France at the outbreak of World War I I?
+Edouard daladier
+10
+
+Who was Prime Minister of Japan during World War 2?
+Hideki tojo
+10
+
+Who was Prince Charles' mistress while he was married?
+Camilla parker bowles
+10
+
+Who was proclaimed empress of India in 1877?
+Queen victoria
+10
+
+Who was puff the magic dragon's human friend?
+Little jackie paper
+10
+
+Who was Queen Elizabeth IIs father?
+George VI
+10
+
+Who was Queen of England for only nine days?
+Lady Jane Grey
+10
+
+Who was reportedly the strongest man on earth?
+Samson
+10
+
+Who was reputedly the father of Cleopatra's first child?
+Julius caesar
+10
+
+Who was responsible for the American style of spelling?
+Noah Webster
+10
+
+Who was responsible for the comedy classic 'whose on first'?
+Abbott and costello
+10
+
+Who was responsible for the infamous assination attempt on then President Reagan?
+John Hinkley Jr.
+10
+
+Who was rising star in the western, the electric horseman?
+A horse
+10
+
+Who was romeo in love with before meeting juliet?
+Rosaline
+10
+
+Who was Rudolph Raspes baron who told such tall stories?
+Munchausen
+10
+
+Who was sacked from her job at New York fast food restaurant dunkin doughnuts for squirting jam at a customer?
+Madonna
+10
+
+Who was said to be the final casualty of the U.S. Civil War, killed five days after it ended?
+Abraham lincoln
+10
+
+Who was said to have used a monocle made of emerald to improve his vision at the arena?
+Emperor nero
+10
+
+Who was samuel langhorne clemens?
+Mark twain
+10
+
+Who was scarlet o'hara's first husband?
+Charles hamilton
+10
+
+Who was scott evil's biological mother?
+Frau farbissina
+10
+
+Who was seated beneath a sword suspended by a human hair?
+Damocles
+10
+
+Who was second in command of the starship enterprise?
+Spock
+10
+
+Who was second roman emperor?
+Tiberius
+10
+
+Who was Secretary General of the UN from 1946 to 1952?
+Trigvye lie
+10
+
+Who was Secretary General of the UN from 1962 - 1971?
+U thant
+10
+
+Who was sent to kill the nine headed monster hydra?
+Hercules
+10
+
+Who was sgt bilko's commanding officer?
+Colonel hall
+10
+
+Who was shaka's successor?
+Dingaan
+10
+
+Who was shakespeare's fairy king?
+Oberon
+10
+
+Who was shakespeare's wife?
+Anne hathaway
+10
+
+Who was Sherlock Holmes arch-enemy?
+Professor moriaty
+10
+
+Who was Sherlock Holmes archenemy?
+Professor Moriarty
+10
+
+Who was shipwrecked for 28 years, two months and 19 days?
+Robinson crusoe
+10
+
+Who was shot as he left the Washington Hilton in 1981?
+Ronald reagan
+10
+
+who was shot at the playhouse by john wilkes booth?
+President lincoln
+10
+
+Who was shot only hours after Annie Leibovitz took a nude photo of him for Rolling Stone?
+John lennon
+10
+
+Who was singer with generation xbefore branching out into a successful solo career?
+Billy idol
+10
+
+Who was sir galahad's father?
+Sir lancelot
+10
+
+Who was sir lancelot's son?
+Sir galahad
+10
+
+Who was sir laurence olivier's second wife?
+Vivien leigh
+10
+
+Who was Sir Percy Blakeney?
+The scarlet pimpernel
+10
+
+Who was Sir Winston Churchill referring to when he was quoted as saying 'the maggot is in the apple'?
+Rudolf Hess
+10
+
+Who was Sitting Bull's right hand man?
+Crazy horse
+10
+
+Who was south africa's last apartheid president?
+Willem de klerk
+10
+
+Who was spandau prison's last inmate?
+Rudolf hess
+10
+
+Who was Speaker of the House of Commons immediately prior to Betty Boothroyd?
+Bernard weatherill
+10
+
+Who was sports illustrateds sportsman of the year in 1954?
+Roger bannister
+10
+
+Who was steve martin's dance partner in pennies from heaven?
+Bernadette peters
+10
+
+Who was still the owner of 3 of atlantic city's 12 casinos in 1993?
+Donald trump
+10
+
+Who was supreme commander of the allies?
+Dwight eisenhower
+10
+
+Who was svetlana aliluyeva's father?
+Joseph stalin
+10
+
+Who was swallowed by a lion at Blackpool zoo in the famous monologue by Stanley Holloway?
+Albert
+10
+
+Who was swallowed by a whale?
+Jonah
+10
+
+Who was syphilis?
+A shepherd
+10
+
+Who was tarzan's son in the books by edgar rice burroughs?
+Korak
+10
+
+Who was Tasmania's famous swashbuckler?
+Errol flynn
+10
+
+Who was th efirst member of the royal family to be killed while flying on active duty?
+Duke of kent
+10
+
+Who was the 'baddie' in spaghetti westerns?
+Lee van cleef
+10
+
+Who was the 'serpent of the nile'?
+Cleopatra
+10
+
+Who was the 'stupid boy' in Dad's Army?
+Private Pike
+10
+
+Who was the #4 us advertising company in 1987?
+Sears roebuck
+10
+
+Who was the 10th president of the U S?
+John tyler
+10
+
+Who was the 15th president of the U S?
+James buchanan
+10
+
+Who was the 16th century physician who revolutionized anatomy by performing post-mortems?
+Andreas vesalius
+10
+
+Who was the 16th president of the united states?
+Abraham lincoln
+10
+
+Who was the 1973 nobel peace prize winner?
+Henry kissinger
+10
+
+Who was the 1990 wimbledon women's singles runner up?
+Zena garrison
+10
+
+Who was the 1993 world footballer of the year?
+Roberto baggio
+10
+
+Who was the 1994 footballer writers' English footballer of the year?
+Eric cantona
+10
+
+Who was the 1997 world footballer of the year?
+Ronaldo
+10
+
+Who was the 1998 world footballer of the year?
+Zinedine zidane
+10
+
+Who was the 19th century founder of communism?
+Karl marx
+10
+
+Who was the 25th president of the u.s?
+William mckinley
+10
+
+Who was the 26th president of the U S?
+Theodore roosevelt
+10
+
+Who was the 2nd president of the U S?
+John adams
+10
+
+Who was the 30th president of the U S?
+Calvin coolidge
+10
+
+Who was the 30th president of the US?
+Coolidge
+10
+
+Who was the 31st president of the U S?
+Herbert c hoover
+10
+
+Who was the 32nd president of the U S?
+Franklin d roosevelt
+10
+
+Who was the 35th president of the U S?
+John f kennedy
+10
+
+Who was the 3rd king of Scotland?
+Macbeth
+10
+
+Who was the 3rd president of the U S?
+Thomas jefferson
+10
+
+Who was the 4th president of the U S?
+James madison
+10
+
+Who was the 4th US president to be assassinated in office?
+John f. kennedy
+10
+
+Who was the 4th vice president of the u.s?
+Bill clinton
+10
+
+Who was the 6o's singer who sang 'Jack the Knife'?
+Bobby Darin
+10
+
+Who was the accused in the trial of the century which opened jan 1, 1935?
+Bruno richard hauptmann
+10
+
+Who was the actor who played bobby ewing in dallas?
+Patrick duffy
+10
+
+Who was the actor who played lt columbo in the series columbo?
+Peter falk
+10
+
+Who was the actress betty joan perske better known as?
+Lauren bacall
+10
+
+Who was the actress in the 1944 film that said 'you know how to whistle, don't you? You just put your lips together - and blow.'?
+Lauren bacall
+10
+
+Who was the actress that played Ferris Bueller's sister?
+Jennifer Grey
+10
+
+Who was the actress to star in the first 'Gidget' movie?
+Sandra Dee
+10
+
+Who was the afro-American woman who refused to give up her seat in a bus in alabama in 1955?
+Rosa parks
+10
+
+Who was the alleged witch born in 1488 in a cave near Knaresborough who predicted the Defeat of the Spanish Armada and the Great Fire of London?
+Mother shipton
+10
+
+Who was the alter ego of 'the incredible hulk'?
+Dr David banner
+10
+
+Who was the American millionaire, given an honorary knighthood in 1980?
+John Paul getty jnr
+10
+
+Who was the American president from 1869 to 1877?
+Ulysses s grant
+10
+
+Who was the American president from 1923 to 1929?
+Calvin coolidge
+10
+
+Who was the American psychologist known for his experiments with hallucinogenics in the 60s?
+Timothy Leary
+10
+
+Who was the American religious leader who founded the Christian Science Movement?
+Mary baker eddy
+10
+
+Who was the architect of the new Coventry Cathedral?
+Basil spence
+10
+
+Who was the architect of the Queens House at Greenwich?
+Inigo Jones
+10
+
+Who was the assistant to the fbi director in the fbi?
+Arthur ward
+10
+
+Who was the attorney who defended jack ruby, oswald's assassin?
+Melvin belli
+10
+
+Who was the Australian prime minister who put his arm aroung the queen of England?
+Paul keating
+10
+
+Who was the author of 'deliverance'?
+James dickey
+10
+
+Who was the author of 'Of Mice and Men'?
+John Steinbeck
+10
+
+Who was the author of 'The Inheritors', and 'Rites of Passage'?
+William golding
+10
+
+Who was the author of breakfast at tiffany's?
+Truman capote
+10
+
+Who was the author of catcher in the rye?
+Jd salinger
+10
+
+Who was the author of lolita?
+Vladimir nabokov
+10
+
+Who was the author of the anthropological work 'Coming of Age in Samoa'?
+Margaret Mead
+10
+
+Who was the author of the moonstone?
+Wilkie collins
+10
+
+Who was the author of the series of novels referred to as the Raj Quartet?
+Paul scott
+10
+
+Who was the author of the story Pinnochio?
+Carlo collodi
+10
+
+Who was the backup band for Cyndi Lauper's #1 album 'She's So Unusual'?
+The hooters
+10
+
+Who was the BBcs sports personality of the year in 1971?
+Princss anne
+10
+
+Who was the Beatles manager?
+Brian epstein
+10
+
+Who was the beautiful youth aphrodite loved?
+Adonis
+10
+
+Who was the black assistant of mandrake the magician?
+Lothar
+10
+
+Who was the blind Norse god of who shot balder?
+Hoeder
+10
+
+Who was the bowler whom sobers hit for 6 sixes n an over (cricket)?
+Malcolm nash
+10
+
+Who was the brave Norse god of war & justice?
+Tyr
+10
+
+Who was the British intelligence agent who provided austin powers with his information?
+Basil exposition
+10
+
+Who was the British prime minister from 1945-1951?
+Clement attlee
+10
+
+Who was the British signatory to the Japanese surrender?
+Louis mountbatten
+10
+
+Who was the bully who terrorized Arnold on Different Strokes?
+The Gooch
+10
+
+Who was the bush kangaroo?
+Skippy
+10
+
+Who was the captain of the Pequod in Moby Dick?
+Captain Ahab
+10
+
+Who was the captain of the pottsville maroons football team in 1925?
+Charles berry
+10
+
+Who was the catcher on the peanuts gang's baseball team?
+Schroeder
+10
+
+Who was the cause of the Trojan wars?
+Helen of troy
+10
+
+Who was the celebrity captain of the Los Angeles kings in 1991-92?
+John candy
+10
+
+Who was the champion jockey in flat racing for the four years from 1974-77?
+Pat eddery
+10
+
+Who was the Chancellor of the Exchequer during the 1956 Suez Crisis?
+Harold macmillan
+10
+
+Who was the Chancellor of the Exchequer when Britain returned to the gold standard?
+Winston churchill
+10
+
+Who was the Chancellor of West Germany in 1989 when the wall came down?
+Helmut kohl
+10
+
+Who was the Chicago police commissioner at the time of the St Valentine's Day massacre?
+William F Russell
+10
+
+Who was the Chief Designer of the AVRO Lancaster bomber aircraft?
+Ray chadwick
+10
+
+Who was the Chief Designer of the Hawker Hurricane fighter aircraft?
+Sidney camm
+10
+
+Who was the Chief Designer of the Supermarine Spitfire?
+Reginald mitchell
+10
+
+Who was the chief mousketeer of the original mickey mouse club?
+Jimmie dodd
+10
+
+Who was the chief pig in Animal farm?
+Napoleon
+10
+
+Who was the chief spokesman for the lost generation?
+F scott fitzgerald
+10
+
+Who was the child star in the 1947 movie version of Miracle on 34th Street?
+Natalie Wood
+10
+
+Who was the child star of the film, Home Alone?
+Macauley culkin
+10
+
+Who was the cisco kid's faithful sidekick?
+Pancho
+10
+
+Who was the command module pilot of apollo 11?
+Michael collins
+10
+
+Who was the command module pilot of apollo 13?
+Fred haise
+10
+
+Who was the command pilot of apollo 11?
+Neil armstrong
+10
+
+Who was the command pilot of apollo 13?
+James lovell
+10
+
+Who was the commander of the first shuttle flight?
+John young
+10
+
+Who was the commanding general of the us army air force during world war i?
+Henry hap arnold
+10
+
+Who was the communist leader of romania from 1965 to 1992?
+Nicolae ceausescu
+10
+
+Who was the Confederate commander at Chickamauga?
+Braxton bragg
+10
+
+Who was the creator of basketball?
+Naismith
+10
+
+Who was the creator of the Heimlich Maneuver?
+Dr. Henry Heimlich
+10
+
+Who was the creator of the movies halloween and the thing?
+John carpenter
+10
+
+Who was the daugher of mary wollstonecraft and william godwin?
+Mary shelley
+10
+
+Who was the daughter of a prime minister,the mother of a prime minister and was also a prime minister herself?
+Mrs ghandi
+10
+
+Who was the daughter of Mary Wollstonecraft & William Godwin?
+Mary shelley
+10
+
+Who was the defeated Labour Prime Minister in the Israeli General Election of May 1996?
+Shimon peres
+10
+
+Who was the defeated Socialist Prime Minister in the Spanish General Election of March 1996?
+Felipe gonzalez
+10
+
+Who was the democratically elected President of Chile killed during a military coup in 1973?
+Salvador allende
+10
+
+Who was the Designer of the Vickers Wellington bomber aircraft?
+Barnes wallace
+10
+
+Who was the detective in The Big Sleep?
+Philip marlow
+10
+
+Who was the dictator of Portugal from 1932 to 1968?
+Salazar
+10
+
+Who was the dictator of uganda from 1971 to 1979?
+Idi amin
+10
+
+Who was the director of the fbi from 1924 to 1974?
+John edgar hoover
+10
+
+Who was the disciple that betrayed Jesus?
+Judas
+10
+
+Who was the discoverer of the vaccine for polio?
+Jonas salk
+10
+
+Who was the dragon in the film 'dragonheart'?
+Draco
+10
+
+Who was the driver for the jordan team in the 1998 grand prix?
+Damon hill
+10
+
+Who was the egyptian god of darkness?
+Seth
+10
+
+Who was the egyptian god of the dead?
+Anubis
+10
+
+Who was the egyptian god of the nile, depicted in human form with a beard, large belly, & a crown of aquatic?
+Hapi
+10
+
+Who was the egyptian god of the underworld and vegetation?
+Osiris
+10
+
+Who was the egyptian god of underworld and judge of dead?
+Osiris
+10
+
+Who was the egyptian god of war and divine vengeance?
+Sakhmet
+10
+
+Who was the egyptian goddess/mother of the sun and moon?
+Buto
+10
+
+Who was the eighties group that was named after the inventor of the radio?
+Tesla
+10
+
+Who was the eldest member of the Beatles?
+John lennon
+10
+
+Who was the emcee for tvs 20,000 dollars pyramid?
+Dick clark
+10
+
+Who was the emcee for tvs let's make a deal?
+Monty hall
+10
+
+Who was the emperor of france until 1871?
+Napoleon iii
+10
+
+Who was the English born Surveyor-General of India who completed the first trigonometrical survey of the Sub-Continent?
+Sir george everest
+10
+
+Who was the English statesman who lost his head after arranging the disastrous marriage between Henry VIII and Anne of Cleves?
+Thomas cromwell
+10
+
+Who was the fairest woman in the world (greek mythology)?
+Helen
+10
+
+Who was the famous abolitionist who operated one of the most famous and successful underground railroads (Escape Roots) to the North for slaves?
+Harriet Tubman 
+10
+
+Who was the famous first editor of the New Yorker?
+Harold ross
+10
+
+Who was the famous son of Philip II of Macedonia?
+Alexander the great
+10
+
+Who was the famous TV painter from the 80's?
+Bob Ross
+10
+
+Who was the fastest random speaker in the world?
+President kennedy
+10
+
+who was the father of Cleopatras first child born 44BC?
+Julius caesar
+10
+
+Who was the father of English poetry?
+Geoffrey chaucer
+10
+
+Who was the father of icarus?
+Daedalus
+10
+
+Who was the father of King Richard 1?
+Henry ii
+10
+
+Who was the father of modern bullfighting?
+Juan belmonte
+10
+
+Who was the father of Odin, Vile & Ve?
+Bor
+10
+
+Who was the FBI's 1st 'most wanted' criminal?
+John dillinger
+10
+
+Who was the featured artist with salt n pepa on let's talk about sex?
+Spinderella
+10
+
+Who was the featured vocalist of the miracles?
+Smokey robinson
+10
+
+Who was the female co-star of the TV series: The Dick Van Dyke Show?
+Mary tyler moore
+10
+
+Who was the female lead in the paper chase?
+Lindsay wagner
+10
+
+Who was the female leading star in Neil Simon's film, The Goodbye Girl?
+Marsha Mason 
+10
+
+Who was the female Prime Minister of England throughout the eighties?
+Marget Thatcher
+10
+
+Who was the female principal dancer in the show River Dance when it opened?
+Jean butler
+10
+
+Who was the female star of 'The Graduate'?
+Anne bancroft
+10
+
+Who was the female star of my little margie?
+Gale storm
+10
+
+Who was the female star of the film 'barefoot in the park'?
+Jane fonda
+10
+
+Who was the female star of the film 'Seperate Tables'?
+Deborah kerr
+10
+
+Who was the female star of the film Klute?
+Jane fonda
+10
+
+Who was the female vocalist in yahoo?
+Alison moyet
+10
+
+Who was the fictional inhabitant of Skull Island?
+King kong
+10
+
+Who was the fifth wife of Henry viii?
+Catherine howard
+10
+
+Who was the final mayflower survivor?
+Mary allerton cushman
+10
+
+Who was the first (and last) catholic president?
+Kennedy
+10
+
+Who was the first actor to receive an Oscar postumously?
+Peter finch
+10
+
+Who was the first african American to play in the American league?
+Larry doby
+10
+
+Who was the first african to receive a nobel prize for literature in 1986?
+Wole soyinka
+10
+
+Who was the first American astronaut to orbit the Earth?
+John glenn
+10
+
+Who was the first American born child of English settlers?
+Virginia dare
+10
+
+Who was the first American born poet to win the Nobel Prize for literature?
+T s eliot
+10
+
+Who was the first American in outer space?
+Alan shepard
+10
+
+Who was the first American in space?
+Alan shepard
+10
+
+Who was the first American in sub-orbital space flight?
+Alan shepard
+10
+
+Who was the first American to walk in space?
+Edward white
+10
+
+Who was the first American woman to travel in space?
+Sally ride
+10
+
+Who was the first animal named to the animal hall of fame?
+Lassie
+10
+
+Who was the first animalnaut?
+Laika
+10
+
+Who was the first astronaut to orbit earth 3 times?
+John glenn
+10
+
+Who was the first astronaut to return to space?
+Gus grissom
+10
+
+Who was the first athlete to clear eight feet in the high jump?
+Javier sotomayor
+10
+
+Who was the first athlete to hit a major league home run and make a professional football touchdown in the same week?
+Jim Thorpe
+10
+
+Who was the first Australian aboriginal to play international tennis?
+Evonne goolagong
+10
+
+Who was the first Australian secretary general to the general assembly of the united nations?
+Dr herb evatt
+10
+
+Who was the first black actress to win an oscar?
+Hattie macdaniel
+10
+
+Who was the first black American in space?
+Guion bluford
+10
+
+Who was the first black heavyweight boxing champion of the world?
+Jack Johnson
+10
+
+Who was the first black major league baseball captain?
+Willie mays
+10
+
+Who was the first black major league baseball manager?
+Frank robinson
+10
+
+Who was the first black mayor of Chicago?
+Harold Washington
+10
+
+Who was the first black nation to gain freedom from european colonial rule?
+Haiti
+10
+
+Who was the first black to win the U.S. men's national tennis title?
+Arthur Ashe
+10
+
+Who was the first black Wimbledon singles champion?
+Althea gibson
+10
+
+Who was the first British female singer to have two consecutive number 1 singles?
+Helen shapiro
+10
+
+Who was the first British football club to install undersoil heating?
+Everton
+10
+
+Who was the first British football club to onstall undersoil hetaing?
+Everton
+10
+
+Who was the first British monarch to live in Buckingham Palace?
+Queen victoria
+10
+
+Who was the first British monarch to travel by train?
+Queen Victoria
+10
+
+Who was the first British monarch to visit new zealand?
+Elizabeth ii
+10
+
+Who was the first British president of the European Commision?
+Roy jenkins
+10
+
+Who was the first British Prime Minister, although he did not use the title?
+Sir robert walpole
+10
+
+Who was the first British royal to make people magazine's 'worst dressed list' five times?
+Sarah ferguson
+10
+
+Who was the first British Royal to make People magazine's Worst Dressed list five times?
+Sarah Ferguson
+10
+
+Who was the first Briton to sail around the world?
+Sir francis drake
+10
+
+Who was the first Briton to win the Nobel Prize for Literature?
+Rudyard kipling
+10
+
+Who was the first Canadian woman to swim across lake ontario?
+Marilyn bell
+10
+
+Who was the first captain to oppose Emlyn Hughes' team on A Question of Sport?
+Gareth jones
+10
+
+Who was the first chancellor of Germany after WW II?
+Konrad adenauer
+10
+
+Who was the first chancellor of reunited Germany in 1990?
+Helmut kohl
+10
+
+Who was the first chancellor of the German federal republic?
+Konrad adenauer
+10
+
+Who was the first chancellor of West Germany after WW II?
+Konrad Adenauer
+10
+
+Who was the first chancellor to have his budget televised?
+John major
+10
+
+Who was the first civilian astronaut to fly?
+Neil armstrong
+10
+
+Who was the first comic strip character?
+Yellow Kid
+10
+
+Who was the first Coronation Street regular to move to the new Docklands developement?
+Mike baldwin
+10
+
+Who was the first country to host two Football world cups?
+Mexico
+10
+
+Who was the first cricketer to score 10,000 Test match runs?
+Sunil gavaskar
+10
+
+Who was the first czechoslovakian to win the wimbledon women's singles tennis title?
+Martina navratilova
+10
+
+Who was the first Danish king of England?
+Canute
+10
+
+Who was the first defenseman to win the nhl scoring championship?
+Bobby orr
+10
+
+Who was the first designer to show a collection for men?
+Pierre Cardin
+10
+
+Who was the first director of britain's national theatre?
+Laurence olivier
+10
+
+Who was the first DJ to be heard on Radio 1?
+Tony blackburn
+10
+
+Who was the first Dutch player to become european footballer of the year?
+Johan cruyff
+10
+
+Who was the first engineer to introduce steam to an engine with a piston?
+Thomas newcomen
+10
+
+Who was the first English King from the House of Lancaster?
+Henry vi
+10
+
+Who was the first English woman to qualify in medicine?
+Elizabeth garrett anderson
+10
+
+Who was the first Englishman to sail around the world?
+Sir Walter Raleigh
+10
+
+Who was the first european explorer to reach India by sea?
+Vasco da gama
+10
+
+Who was the first European to cross the Indian Ocean?
+Vasco da Gama
+10
+
+Who was the first european to set foot on north America?
+Leif erikson
+10
+
+Who was the first ever person to test positive for a banned substance at the wimbledon championships?
+Petr korda
+10
+
+Who was the first explorer to set foot on all continents except Antartica?
+Captain cook
+10
+
+Who was the first fallen angel?
+Lucifer
+10
+
+Who was the first female film star to appear on the cover of life?
+Jean harlow
+10
+
+Who was the first female prime minister of India?
+Indira gandhi
+10
+
+Who was the first female scientist to recieve two nobel prizes?
+Marie curie
+10
+
+Who was the first female to enter the billboard charts in 1985?
+Whitney
+10
+
+Who was the first film star depicted on a postage stamp?
+Grace kelly
+10
+
+Who was the first first lady to be privately received by the pope?
+Jackie kennedy
+10
+
+Who was the first footballer to be knighted?
+Sir stanley matthews
+10
+
+Who was the first hollywood celebrity to be tried for murder?
+Roscoe arbuckle
+10
+
+Who was the first host of truth or consequences?
+Ralph edwards
+10
+
+Who was the first leader of the Canadian federal ndp?
+Tommy Douglas
+10
+
+Who was the first losing candidate in a U S presidential election?
+Thomas jefferson
+10
+
+Who was the first Major League Baseball player to have his number retired?
+Gehrig
+10
+
+Who was the first male host of 'entertainment tonight'?
+Tom hallick
+10
+
+Who was the first man in outer space?
+Yuri gagarin
+10
+
+Who was the first man in space?
+Yuri gagarin
+10
+
+Who was the first man to achieve the grand slam of tennis, twice?
+Rod laver
+10
+
+Who was the first man to appear on the cover of playboy magazine?
+Peter sellers
+10
+
+Who was the first man to appear on the cover of playboy?
+Peter sellers
+10
+
+Who was the first man to drive at more than 400mph?
+John cobb
+10
+
+Who was the first man to fly at Mach 1, the speed of sound at sea level?
+Charles yeager
+10
+
+Who was the first man to pee his pants on the moon?
+Buzz aldrin
+10
+
+Who was the first man to reach the south pole on 14th dec 1911?
+Roald amundsen
+10
+
+Who was the first man to run the mile in less than four minutes?
+Roger Bannister
+10
+
+Who was the first man to walk on the moon?
+Neil armstrong
+10
+
+Who was the first man to win the Formula One motor racing championship?
+Farina
+10
+
+Who was the first manager to win the premier league?
+Alex ferguson
+10
+
+Who was the first martyr?
+Stephen
+10
+
+Who was the first member of the royal family to be interviewed on tv?
+Prince philip
+10
+
+Who was the first member of the royal family to pay homage to the queen after her coronation?
+Prince philip
+10
+
+Who was the first non human to win an oscar?
+Mickey mouse
+10
+
+Who was the first novelist to present a typed manuscript to his publisher?
+Mark twain
+10
+
+Who was the first of the original Spice Girls to have a completely solo chart single?
+Geri halliwell
+10
+
+Who was the first overlord of England and wales?
+Egbert of wessex
+10
+
+Who was the first person ever to win two nobel prizes?
+Marie curie
+10
+
+Who was the first person named by 'people magazine' as 'the sexiest man of the year'?
+Mel gibson
+10
+
+Who was the first person reputed to have been born by Caesarian section?
+Julius caesar
+10
+
+Who was the first person to be buried in London's St. Paul's Cathedral?
+Sir christopher wren
+10
+
+Who was the first person to beat Muhammad Ali in a professional fight?
+Joe frazier
+10
+
+Who was the first person to complete 'The Adventurer's Grand Slam', of climbing the highest peak on each continent?
+David hempleman-adams
+10
+
+Who was the first person to make People magazine's Most Beautiful People list five times?
+John f. kennedy jr
+10
+
+Who was the first person to make the first realistic application of solar energy using parabolic solar reflector to drive caloric engine on steam boiler?
+John ericsson
+10
+
+Who was the first person to prove that planets move in elliptical orbits?
+Kepler
+10
+
+Who was the first person to reach the North Pole, in 1909?
+Robert peary
+10
+
+Who was the first person to reach the South Pole, in 1911?
+Roald amundsen
+10
+
+Who was the first person to receive radio noise signals from outside our galaxy?
+Karl jansky
+10
+
+Who was the first person to run a mile in under 4 minutes?
+Bannister
+10
+
+Who was the first person to wear a baseball glove?
+David
+10
+
+Who was the first person to win the indianapolis 500 four times?
+Aj foyt
+10
+
+Who was the first person whose death was linked to radiation poisoning?
+Marie curie
+10
+
+Who was the first pilot to fly faster than the speed of sound?
+Chuck yeager
+10
+
+Who was the first Plantagenet king?
+Henry ii
+10
+
+Who was the first Plantaggenet King of England?
+Henry i
+10
+
+Who was the first player elected to the baseball hall of fame?
+Ty cobb
+10
+
+Who was the first pope?
+Saint Peter
+10
+
+Who was the first president born in a hospital?
+Jimmy carter
+10
+
+Who was the first president for republican party?
+Abraham lincoln
+10
+
+Who was the first president of independent Kenya in 1964?
+Jomo kenyatta
+10
+
+Who was the first president of israel?
+Chaim weizmann
+10
+
+Who was the first president of singapore?
+Enche yusof bin ishak
+10
+
+Who was the first president of the fifth republic of france?
+Charles de gaulle
+10
+
+Who was the first president of the Royal Academy?
+Sir joshua reynolds
+10
+
+Who was the first president of the usa to die in office?
+William Henry harrison
+10
+
+Who was the first president to be born in the 20th century?
+John F Kennedy
+10
+
+Who was the first president to only serve one term?
+Adams
+10
+
+Who was the first president to visit all 50 states?
+Richard Nixon
+10
+
+Who was the first president to win the Nobel Peace prize?
+Theodore Roosevelt
+10
+
+Who was the first president whose mother was eligible to vote for him?
+Franklin delano roosevelt
+10
+
+Who was the first presidential jogger?
+Theodore roosevelt
+10
+
+Who was the first prime minister of Israel?
+David ben gurion
+10
+
+Who was the first prime minister of singapore?
+Lee kuan yew
+10
+
+Who was the first Prime Minister of the Australian Commonwealth from 1901 to 1903?
+Sir edmund barton
+10
+
+Who was the first professional footballer to be knighted?
+Stanley matthews
+10
+
+Who was the first protestant Archbishop of Canterbury?
+Thomas cranmer
+10
+
+Who was the first recipient of the jarvik-7 artificial heart?
+Barney clark
+10
+
+Who was the first Republican-President of the United States?
+Abraham lincoln
+10
+
+Who was the first resident of singapore?
+Major william farquhar
+10
+
+Who was the first Roman Emperor to adopt Christianity?
+Constantine i
+10
+
+Who was the first Roman Emperor to become a christian?
+Constantine
+10
+
+Who was the first Roman Emperor?
+Augustus
+10
+
+Who was the first secretary-general of the united nations?
+Trygve lie
+10
+
+Who was the first south african golfer to win the British open?
+Bobby locke
+10
+
+Who was the first South African in space?
+Mark shuttleworth
+10
+
+Who was the first sports announcer to address Muhammed Ali by his Muslim name?
+Howard Cosell
+10
+
+Who was the first test-tube baby?
+Louise joy brown
+10
+
+Who was the first thoroughbred horse to win one million dollars?
+Citation
+10
+
+Who was the first tight end to be elected to the pro football hall of fame?
+Mike ditka
+10
+
+Who was the first to climb Mt Everest?
+Sir edmund hillary
+10
+
+Who was the first to reach the bottom of the marianas trench, the deepest point in the oceans of the world?
+Jacques piccard
+10
+
+Who was the first to sign the U S declaration of independence?
+John hancock
+10
+
+Who was the first to use rubber gloves during surgery?
+Dr w.s halstead
+10
+
+Who was the first to win five straight wimbledon singles tennis titles?
+Bjorn borg
+10
+
+Who was the first to win the grand slam of tennis?
+Don budge
+10
+
+Who was the first U S president to attend monday night football?
+Jimmy carter
+10
+
+Who was the first U S president to be photographed at his inauguration?
+Abraham lincoln
+10
+
+Who was the first U S President to visit China?
+Richard m nixon
+10
+
+Who was the first U S secretary of the treasury?
+Alexander hamilton
+10
+
+Who was the first u.s president to travel in a car, plane and submarine?
+Theodore roosevelt
+10
+
+Who was the first U.S. President to hold a televised news conference?
+Dwight Eisenhower
+10
+
+Who was the first U.S. President to use a word processor?
+Jimmy Carter
+10
+
+Who was the first united states secretary of state?
+Thomas jefferson
+10
+
+Who was the first unseeded man to win Wimbledon?
+Boris becker
+10
+
+Who was the first US President to appear on TV while in office?
+Fdr
+10
+
+Who was the first US President to have a brother in the Senate?
+John f kennedy
+10
+
+Who was the first US president to have been divorced?
+Ronald reagan
+10
+
+Who was the first us president to live in the white house?
+Adams
+10
+
+Who was the first us president to resign office?
+Richard nixon
+10
+
+Who was the first US president to visit Japan?
+Ford
+10
+
+Who was the first us president to visit moscow?
+Nixon
+10
+
+Who was the first victim of the electric chair?
+William kemmler
+10
+
+Who was the first White House cat since Amy Carter's Misty Malarky Yin Yang?
+Socks
+10
+
+Who was the first wife of zeus?
+Metis
+10
+
+Who was the first winner of the oscar for best actor?
+Emil jannings
+10
+
+Who was the first woman doctor?
+Elizabeth blackwell
+10
+
+Who was the first woman elected to congress in 1917?
+Jeanette rankin
+10
+
+Who was the first woman elected to the u.s senate?
+Hattie caraway
+10
+
+Who was the first woman golfer to earn a million dollars?
+Kathy witworth
+10
+
+Who was the first woman golfer to earn a million?
+Kathy whitworth
+10
+
+Who was the first woman premier of israel?
+Golda meir
+10
+
+Who was the first woman scientist to be awarded a Nobel prize?
+Madame curie
+10
+
+Who was the first woman to climb Mount Everest?
+Sharon Wood
+10
+
+Who was the first woman to fly the Atlantic alone?
+Amelia Earhart
+10
+
+Who was the first woman to fly the Atlantic?
+Amelia earhart
+10
+
+Who was the first woman to lead a British trade union?
+Brenda Dean
+10
+
+Who was the first woman to read the Nine O'clock News on BBC TV?
+Angela rippon
+10
+
+Who was the first woman to sail single-handed around the world?
+Naomi james
+10
+
+Who was the first woman to swim the English channel in both directions?
+Florence chadwick
+10
+
+Who was the first women to fly solo across the Atlantic?
+Amelia Earhart
+10
+
+Who was the founder and conductor of the Black and White Minstrels?
+George mitchell
+10
+
+Who was the founder of boy's town?
+Father flanagan
+10
+
+Who was the founder of Islam?
+Mohammed
+10
+
+Who was the founder of Live Aid?
+Bob Geldof
+10
+
+Who was the founder of Methodism?
+John wesley
+10
+
+Who was the founder of microsoft?
+Bill gates
+10
+
+Who was the founder of the 'epicurean' philosophy?
+Epicurus
+10
+
+Who was the founder of the basotho nation?
+Moshoeshoe
+10
+
+Who was the founder of the Salvation Army?
+William booth
+10
+
+Who was the founder of the South African Students Assoc who dies whilst under arrest in 1977?
+Steve biko
+10
+
+Who was the founder of wendy's hamburgers?
+Dave thomas
+10
+
+Who was the founding father of the Sikh relgion?
+Guru nanak
+10
+
+Who was the fourth president of singapore?
+Wee kim wee
+10
+
+Who was the fourth president of the United States?
+Madison
+10
+
+Who was the French revolution leader who was later guillotined by Robespierre?
+Danton
+10
+
+Who was the French sculptor of the Statue of Liberty?
+Frederic bartholdi
+10
+
+Who was the front man for tubeway army?
+Gary numan
+10
+
+Who was the general secretary of the communist party of the soviet union from 1964 to 1982?
+Leonid brezhnev
+10
+
+Who was the German munitions minister largely responsible for the large output of weapons in late ww2?
+Albert speer
+10
+
+Who was the German National Socialist official, notorious as the head of the Nazi police forces?
+Himmler
+10
+
+Who was the giant wife of the Norse god Njord?
+Sonja
+10
+
+Who was the girl in peter seller's soup?
+Goldie hawn
+10
+
+Who was the girl in peter sellers's soup?
+Goldie hawn
+10
+
+Who was the girl that helped Bonnie Prince Charlie to flee to the Isle of Skye?
+Flora macdonald
+10
+
+Who was the god of hades?
+Pluto
+10
+
+Who was the god of the seas?
+Neptune
+10
+
+Who was the goddess of motherhood and fertility in egyptian mythology?
+Isis
+10
+
+Who was the goddess of victory?
+Nike
+10
+
+Who was the goodie-goodie presenter of the Fame Game?
+Tim brooke-taylor
+10
+
+Who was the grandfather of Gina Hemphill who carried the Olympic torch into the 1984 Los Angeles Olympic stadium?
+Jesse owens
+10
+
+Who was the greatest king of the first babylonian dynasty, noted for law reform?
+Hammurabi
+10
+
+Who was the greek cup-bearer to the gods?
+Ganymede
+10
+
+Who was the Greek equivalent of the Roman god Cupid?
+Eros
+10
+
+Who was the Greek equivalent of the Roman god Vulcan?
+Hephaestus
+10
+
+Who was the greek father of medicine?
+Hippocrates
+10
+
+Who was the greek god of beauty, poetry and music?
+Apollo
+10
+
+Who was the greek god of dreams?
+Morpheus
+10
+
+Who was the greek god of love?
+Eros
+10
+
+Who was the greek god of physicians and thieves?
+Hermes
+10
+
+Who was the greek god of retribution?
+Nemesis
+10
+
+Who was the greek god of sleep?
+Hypnos
+10
+
+who was the greek god of the sea?
+Poseidon
+10
+
+Who was the greek god of war?
+Aeries
+10
+
+Who was the Greek goddess of love & beauty?
+Aphrodite
+10
+
+Who was the greek goddess of love?
+Aphrodite
+10
+
+Who was the greek goddess of marriage?
+Hera
+10
+
+Who was the greek goddess of peace?
+Irene
+10
+
+Who was the Greek Goddess of retribution?
+Nemesis
+10
+
+Who was the greek goddess of the hunt?
+Artemis
+10
+
+Who was the Greek goddess of the rainbow?
+Iris
+10
+
+Who was the greek mathematician who claimed that the earth was a sphere rotating on its own axis?
+Pythagoras
+10
+
+Who was the Greek Muse of Comedy?
+Thalia
+10
+
+Who was the Greek Muse of Tragedy?
+Melpomene
+10
+
+Who was the Greek philosopher who decided he'd rather drink hemlock than deny his beliefs?
+Socrates
+10
+
+Who was the guitarist in the 70's and 80's band, Be-Bop Deluxe?
+Bill nelson
+10
+
+Who was the Head of State of Vichy France?
+Petain
+10
+
+Who was the head of the National Unity party in Norway in 1942?
+Quisling
+10
+
+Who was the hero of a dairy of a nobody?
+Mr pooter
+10
+
+Who was the hero of Australia in the 1999 world cup, taking 8 wickets in the semis and final?
+Shane warne
+10
+
+Who was the highest scoring American ace of world war i?
+Eddie rickenbacker
+10
+
+Who was the horse in early mickey mouse cartoons?
+Horace horsecollar
+10
+
+Who was the host for the popular game show?
+Monty hall
+10
+
+Who was the host of Take your pick?
+Michael miles
+10
+
+Who was the hunchbacked bell ringer of notre dame?
+Quasimodo
+10
+
+Who was the husband of Jennie Van Westphalen?
+Karl marx
+10
+
+Who was the hypnotic magician in george du maurier's trilby?
+Svengali
+10
+
+Who was the influential monk at the court of Tsar Nicholas II?
+Rasputin
+10
+
+Who was the inspiration for blueberry jelly belly jelly beans?
+Ronald reagan
+10
+
+Who was the inventor of the calculating machine in 1614?
+John napier
+10
+
+Who was the inventor of the digital calculator in 1642?
+Blaise pascal
+10
+
+Who was the inventor of the phosphorus match?
+Francois derosne
+10
+
+Who was the inventor of the slide rule in 1632?
+William oughtred
+10
+
+Who was the Italian captain who skied a penalty in the 1994 world cup final's penalty shootout?
+Franco baresi
+10
+
+Who was the Jackal's intended victim?
+Charles de gaulle
+10
+
+Who was the Japanese detective in novels by john phillips marquand?
+Mr moto
+10
+
+Who was the Japanese emperor during WW II?
+Hirohito
+10
+
+Who was the journalist who pried into the standard oil trust and published articles about its wrongdoing?
+Ida tarbell
+10
+
+Who was the king of England during the American revolution?
+George iii
+10
+
+Who was the king of England from 1509-1547, and founder of the Church of England?
+Henry viii
+10
+
+Who was the king of England when the American revolution broke out?
+George iii
+10
+
+Who was the king of Judah (800-783 bc)?
+Amaziah
+10
+
+Who was the king of Sparta?
+Tyndareus
+10
+
+Who was the king of Sweden from 1907 to 1950?
+King gustav v
+10
+
+Who was the king of the Roman gods?
+Jupiter
+10
+
+Who was the kitten with a whip?
+Middlebury
+10
+
+Who was the Lady of the Lamp?
+Florence nightingale
+10
+
+Who was the last Anglo Saxon King of England?
+Harold
+10
+
+Who was the last astronaut to fly alone in a spacecraft?
+Ron evans
+10
+
+Who was the last British general who surrendered near Jamestown, Virginia?
+Cornwallis
+10
+
+Who was the last chairman of the k.g.b?
+Vadim viktorovich bakatin
+10
+
+Who was the last communist leader of East Germany?
+Egon krenz
+10
+
+Who was the last czar of Russia?
+Nicholas ii
+10
+
+Who was the last Danish king of England?
+Hardicanute
+10
+
+Who was the last earl of wessex before it was conferred on Prince Edward in 1999?
+King harold godwinsson
+10
+
+Who was the last emperor of Russia?
+Nicholas ii
+10
+
+Who was the last Ferrari driver before Michael Schumaker to win the Formula 1 World Championship?
+Jody schechter
+10
+
+Who was the last incan king of peru?
+Atahualpa
+10
+
+Who was the last king of france?
+Louis philippe
+10
+
+Who was the last King of Italy?
+Umberto ii
+10
+
+Who was the last king of Troy?
+Priam
+10
+
+Who was the last king to be crowned in Scotland?
+Charles ii
+10
+
+Who was the LAST man to walk on the moon?
+Gene cernan
+10
+
+Who was the last member of the bonaparte family?
+Jerome napoleon bonaparte
+10
+
+Who was the last monarch to lead his troops in battle in 1743?
+George II 
+10
+
+Who was the last native-born Prince of Wales?
+Owen glendower
+10
+
+Who was the last New Zealander to win the Olympic 1500 metres track race?
+John walker
+10
+
+Who was the last of the 'red hot mamas'?
+Sophie tucker
+10
+
+Who was the last person executed by the guillotine?
+Hamida djandoubi
+10
+
+Who was the last person hired for the first saturday night live troupe?
+John belushi
+10
+
+Who was the last player to win 2 Heisman trophies?
+Griffin
+10
+
+Who was the last president of the usa, as of 1998, to die in office?
+John f. kennedy
+10
+
+Who was the last Prime Minister of Northern Ireland before the stormont Parliament was suspended in 1972?
+Brian Faulkner
+10
+
+Who was the last reigning King of Egypt?
+Farouk
+10
+
+Who was the last Roman Catholic monarch of England?
+James the second
+10
+
+Who was the last Roman Emperor of the Julio-Claudian family?
+Nero
+10
+
+Who was the last ruler in the Egyptian dynasty of the Ptolemies?
+Cleopatra
+10
+
+Who was the last to stab Caesar in Shakespeare's Julius Caesar?
+Brutus
+10
+
+Who was the last to win then lose the heavyweight crown to ali?
+Leon spinks
+10
+
+Who was the last Tsar of Russia?
+Nicholas ii
+10
+
+Who was the last tudor monarch?
+Elizabeth I
+10
+
+Who was the last viceroy of India?
+Lord mountbatten
+10
+
+Who was the last woman hanged in England?
+Ruth ellis
+10
+
+Who was the latin bombshell that played selena in the selena bio-pic?
+Jennifer lopes
+10
+
+Who was the law for a shire?
+Reeve
+10
+
+Who was the lead singer for the (now disbanded) stone temple pilots?
+Scott weiland
+10
+
+Who was the lead singer of the Cure?
+Robert Smith
+10
+
+Who was the lead singer of the e-street band?
+Springsteen
+10
+
+Who was the leader of Cubas rebel 26th July movement?
+Fidel castro
+10
+
+Who was the leader of czechoslovakia when the russians rolled in, in 1968?
+Alexander dubcek
+10
+
+Who was the leader of the bad guys on Hulk Hogan's Rock N Wrestling that annoyed Hulk Hogan and his freinds?
+Rowdy Roddy Piper
+10
+
+Who was the leader of the good Transformers?
+Optimus Prime
+10
+
+Who was the leader of the Liberal Party before David Steele?
+Jeremy thorpe
+10
+
+Who was the leader of the Solidarity movement in Poland?
+Lech walesa
+10
+
+Who was the leader of the Transformers?
+Optimus Prime
+10
+
+Who was the leading conspirator in Shakespeares Julius Caesar?
+Cassius
+10
+
+Who was the legendary first ruler of Japan?
+Jimmu tenno
+10
+
+Who was the legendary front man for the band roxy music?
+Brian ferry
+10
+
+Who was the liberator of South America?
+Simon bolivar
+10
+
+Who was the longest reigning european monarch?
+Louis xiv
+10
+
+Who was the longest serving president in French history?
+Francois mitterand
+10
+
+Who was the losing democratic candidate in the 1968 u.s. presidential election?
+Hubert humphrey
+10
+
+Who was the losing Democratic candidate when Dwight D Eisenhower was re-elected as US President in 1956?
+Adlai stevenson
+10
+
+Who was the losing republican candidate in the 1964 u.s. presidential election?
+Barry goldwater
+10
+
+Who was the lunar module pilot of apollo 11?
+Edwin aldrin
+10
+
+Who was the lunar module pilot of apollo 13?
+Jack swigert
+10
+
+Who was the mad monk of Russia?
+Rasputin
+10
+
+Who was the male lead character in Gershwins musical that featured the song Summertime?
+Porgy
+10
+
+Who was the male lead in 'hello dolly'?
+Walter matthau
+10
+
+Who was the male lead in the 1965 film the war lord?
+Charlton heston
+10
+
+Who was the male principal dancer in the show Riverdance when it opened?
+Michael flatley
+10
+
+Who was the male star in the 1967 film Bonnie & Clyde?
+Warren beatty
+10
+
+Who was the male star in the film true grit?
+John wayne
+10
+
+Who was the male star in the original movie?
+James stewart
+10
+
+Who was the male star of the 1967 film barefoot in the park?
+Robert redford
+10
+
+Who was the male star of the 1998 'blockbuster' film titanic?
+Leonardo di caprio
+10
+
+Who was the male star of the film fatal attraction?
+Michael Douglas
+10
+
+Who was the male star of the movie 'speed'?
+Keanu reeves
+10
+
+Who was the male top billing in Neil Simon's film, The Goodbye Girl?
+Richard Dreyfuss 
+10
+
+Who was the man of 'Lambarene'?
+Albert Schweitzer
+10
+
+Who was The Man of Destiny in George Bernard Shaw's play of that name?
+Napoleon bonaparte
+10
+
+Who was the mascot of kellogg's sugar frosted flakes when they were launched in 1942?
+Tony the tiger
+10
+
+Who was the master of disguise Sir Peter Blakney?
+Scarlet pimpernel
+10
+
+Who was the mastermind behind the 'ahead of its time mother of inventions'?
+Frank zappa
+10
+
+Who was the mc of the original amateur hour?
+Ted mack
+10
+
+Who was the mistress of D.H. Lawrence's Wragley Hall?
+Lady chatterley
+10
+
+Who was the most famous gorgon?
+Medusa
+10
+
+Who was the most revered god of North American Indians?
+Manitou
+10
+
+Who was the most revered god of the north American indians?
+Manitou
+10
+
+Who was the most senior serving Nazi to be tried at Nuremberg?
+Hermann goering
+10
+
+Who was the mother of Charles i?
+Anne of denmark
+10
+
+Who was the mother of Elizabeth I?
+Anne boleyn
+10
+
+Who was the mother of King John?
+Eleanor of aquitaine
+10
+
+Who was the mouse in the krazy kat comics?
+Ignatz
+10
+
+Who was the narrator in Herman Melville's Moby Dick?
+Ishmael
+10
+
+Who was the narrator of the film 'texas chainsaw massacre'?
+John larroquette
+10
+
+Who was the nba, mvp in 1976, 1977 and 1980?
+Kareem abdul-jabbar
+10
+
+Who was the nba's most valuable player in 1976, 1977 and 1980?
+Kareem
+10
+
+Who was the Norse god of light, beauty & peace?
+Balder
+10
+
+Who was the Norse god of peace & prosperity?
+Frey
+10
+
+Who was the norse god of poetry?
+Bragi
+10
+
+Who was the norse goddess of love and fertility?
+Freya
+10
+
+Who was the norse goddess of lust and fertility?
+Freya
+10
+
+Who was the office boy for the daily planet on superman?
+Jimmy olsen
+10
+
+Who was the oldest heavyweight boxing champion?
+George forman
+10
+
+Who was the oldest man ever to play Test cricket when he represented England against West Indies in 1930 aged 52?
+Wilfred rhodes
+10
+
+Who was the oldest man to hold a boxing title?
+Archie moore
+10
+
+Who was the oldest man to hold a world boxing title, at 44?
+Archie Moore
+10
+
+Who was the oldest marx brother?
+Chico
+10
+
+Who was the oldest member of 'The Beatles'?
+Ringo
+10
+
+Who was the oldest woman in the charts in 1998 with Believe?
+Cher
+10
+
+Who was the only 'miss America' to resign her crown?
+Vanessa williams
+10
+
+Who was the only actor to become president of the u.s.a?
+Ronald reagan
+10
+
+Who was the only American soldier to be executed for desertion in wwii?
+Eddie slovik
+10
+
+Who was the only astronaut to lose his spacecraft?
+Gus grissom
+10
+
+Who was the only Canadian Prime Minister to win the Nobel Peace Prize?
+Lester B. Pearson
+10
+
+Who was the only civil war soldier executed for war crimes?
+Major Henry
+10
+
+Who was the only daughter of jawaharlal nehru?
+Indira gandhi
+10
+
+Who was the only English pope?
+Adrian iv
+10
+
+Who was the only female athlete at the 1976 summer Olympics not given a sex test?
+Princess anne
+10
+
+Who was the only female member of Edward Heaths cabinet when he first became Prime Minister?
+Margaret thatcher
+10
+
+Who was the only golfer to win the U.S. and British Opens and Amateurs in the same year?
+Bobby Jones
+10
+
+Who was the only man to knock out Muhammad Ali in a heavyweight title fight?
+Larry holmes
+10
+
+Who was the only person to appear on both 'kids in the hall' and 'saturday night live'?
+Mark mckinney
+10
+
+Who was the only person to run across Canada with one leg?
+Terry fox
+10
+
+Who was the only player to win mvp in both leagues?
+Frank robinson
+10
+
+Who was the only pope born in England?
+Adrian iv
+10
+
+Who was the only president born in Illinois, the land of lincoln?
+Ronald reagan
+10
+
+Who was the only President of the Confederate States of America?
+Jefferson davies
+10
+
+Who was the only president to be elected for two non-consecutive terms?
+Garfield
+10
+
+Who was the only president to get stuck in the White House bath tub?
+William Howard Taft
+10
+
+Who was the only president to serve in both World Wars?
+Bill Clinton
+10
+
+Who was the only president to serve two non-consecutive terms in office?
+Grover Cleveland
+10
+
+Who was the only prophet that never died?
+Elijah
+10
+
+Who was the only Russian born prime minister of Israel?
+Golda meir
+10
+
+Who was the only sister on petticoat junction to marry?
+Betty jo
+10
+
+Who was the only starting pitcher in a world series to bat anywhere but ninth?
+Babe Ruth
+10
+
+Who was the only U.S. president to have earned a Ph.D.?
+Woodrow Wilson
+10
+
+Who was the only undefeated heavyweight boxer?
+Rocky marciano
+10
+
+Who was the only unmarried president?
+James buchanan
+10
+
+Who was the original deep purple lead singer?
+Rod evans
+10
+
+Who was the original female smurf?
+Smurfette
+10
+
+Who was the original Hollywood 'it' girl?
+Clara bow
+10
+
+Who was the original host of the quiz show break the bank?
+Bert parks
+10
+
+Who was the original host of the tv game show 'i've got a secret'?
+Garry moore
+10
+
+Who was the original killer in friday the 13th?
+Jason's mother
+10
+
+Who was the original lead singer with the Moody Blues?
+Denny laine
+10
+
+Who was the original presenter of 'Points of View'?
+Robert robinson
+10
+
+Who was the original singer for black sabbath?
+Ozzy osbourne
+10
+
+Who was the owner of the soda fountain on sesame street?
+Mr hooper
+10
+
+Who was the partron goddess of Athens?
+Athene
+10
+
+Who was the people's commissar of foreign affairs (foreign minister) before vyacheslav molotov?
+Maxim litvinov
+10
+
+Who was the personification of peace?
+Pax
+10
+
+Who was the pharoah akhenaton's famous wife?
+Nefertiti
+10
+
+Who was the pilot hero of captain w e john's stories?
+Biggles
+10
+
+Who was the pilot in the first fatal plane crash?
+Orville wright
+10
+
+Who was the poet laureate before ted hughes?
+Sir john betjeman
+10
+
+Who was the ponderosa's chinese cook?
+Hop sing
+10
+
+Who was the Pope who served for the shortest time?
+Urban vii
+10
+
+Who was the president at the time of the 1929 stock market crash?
+Herbert Hoover
+10
+
+Who was the president of France 1947 54?
+Vincent auriol
+10
+
+Who was the president of the merchant bank of Beverly Hills?
+John cushing
+10
+
+Who was the president of the standard oil trust?
+John d. rockerfeller
+10
+
+Who was the Prime Minister of Malta between 1971 and 1984?
+Dom mintoff
+10
+
+Who was the prime minster of britain at the start of the war?
+Neville chamberlain
+10
+
+Who was the princess in Sleeping Beauty?
+Aurora
+10
+
+Who was the principal in the drama series lucas tanner?
+Margaret blumenthal
+10
+
+Who was the principal when Homer and Marge were in High School?
+Dondelinger 
+10
+
+Who was the producers' first choice to portray columbo?
+Bing crosby
+10
+
+Who was the queen of sparta?
+Leda
+10
+
+Who was the queen of the Iceni who rode into battle against the romans?
+Boudica
+10
+
+Who was the responsible for the construction of the clifton Suspension Bridge,Rotherhithe Tunnel and the Great Eastern?
+Isambard kingdom brunel
+10
+
+Who was the richest man to be vice president of the U S?
+Nelson rockefeller
+10
+
+Who was the roman emperor from 54 to 68ad that committed suicide?
+Nero
+10
+
+Who was the Roman equivalent of the Greek God Zeus?
+Jupiter
+10
+
+Who was the roman equivalent of the greek goddes athena?
+Minerva
+10
+
+Who was the roman god of crops and harvest?
+Ceres
+10
+
+Who was the roman god of sleep?
+Somnus
+10
+
+Who was the roman god of the sea?
+Neptune
+10
+
+Who was the roman god of two faces?
+Janus
+10
+
+Who was the roman god of war?
+Mars
+10
+
+Who was the roman goddess of grain?
+Ceres
+10
+
+Who was the roman goddess of hunting?
+Diana
+10
+
+Who was the roman goddess of love?
+Venus
+10
+
+Who was the roman goddess of war?
+Bellona
+10
+
+Who was the roman's equivalent of the greek's heracles?
+Hercules
+10
+
+Who was the Russian foreign minister from 1957 to 1985?
+Gromyko
+10
+
+Who was the Russian prime minister after khruschev?
+Alexei kosygin
+10
+
+Who was the Russian prime minister before kosygin?
+Khruschev
+10
+
+Who was the Russian-born French painter, one of the originators of abstract art, who died in 1944?
+Vasily kandinsky
+10
+
+Who was the ruthless chief pig in Orwell's Animal Farm?
+Napoleon
+10
+
+Who was the Scottish mathematician who drew up the first logarithmic tables?
+John napier
+10
+
+Who was the sculptor of the statue of Peter Pan in Kensington Gardens, London?
+George frampton
+10
+
+Who was the second king of israel?
+David
+10
+
+Who was the second male actor to refuse a best actor oscar?
+Marlon brando
+10
+
+Who was the second man on the moon?
+Buzz aldrin
+10
+
+Who was the second man to set foot on the moon?
+Buzz Aldrin
+10
+
+Who was the second man to step onto the Moon in 1969?
+Buzz aldrin
+10
+
+Who was the second man to win the Formula One motor racing championship?
+Ascari
+10
+
+Who was the second president of singapore?
+Benjamin sheares
+10
+
+Who was the second president of the U S?
+John adams
+10
+
+Who was the second Soviet cosmonaut to successfully orbit the Earth?
+Titov
+10
+
+Who was the second u.s president?
+John adams
+10
+
+Who was the second wife of Henry VIII?
+Anne boleyn
+10
+
+Who was the second woman in space?
+Savitskaya
+10
+
+Who was the second woman to be elected head of state in 1990?
+Mary robisnaon
+10
+
+Who was the secretary of housing and urban development in 1976?
+Patricia roberts harris
+10
+
+Who was the shortest British monarch?
+Charles i
+10
+
+Who was the shortest ever mature human?
+Gul Mohammed
+10
+
+Who was the singing voice of miss piggy, in the muppet movie?
+Johnny mathis
+10
+
+Who was the smurfs biggest nemesis?
+Gargamel
+10
+
+Who was the star of 'riverdance' and 'lord of the dance'?
+Michael flatly
+10
+
+Who was the wife of Robert Browning?
+Elizabeth barrett browning
+10
+
+Who was the winner of the 1991 Kentucky derby?
+Strike the gold
+10
+
+Who was the world's first public computer information service?
+Compuserve
+10
+
+Who was the world's shortest man?
+Calvin phillips
+10
+
+Who was the writer of the novel' Anna of the Five Towns'?
+Arnold bennett
+10
+
+Who was the writer/director of the Blackboard Jungle?
+Richard Brooks
+10
+
+Who was the youngest Conservative candidate in the 1951 General Elections?
+Margaret hilda roberts
+10
+
+Who was the youngest elected president of the U S?
+John f. kennedy
+10
+
+Who was the youngest man to ever win wimbledon?
+Boris becker
+10
+
+Who was the youngest man to win a nobel peace prize?
+Martin luther king
+10
+
+Who was the youngest of the anderson children in father knows best?
+Kathy
+10
+
+Who was the youngest world heavyweight boxing champion?
+Floyd patterson
+10
+
+Who was the zairean dictator who was deposed in a military coup in 1998?
+Laurent kibila
+10
+
+Who was thomas hardy's most obscure character?
+Jude
+10
+
+Who was Time Magazine woman of the year in 1936?
+Wallis simpson
+10
+
+Who was time magazine's 'man of the year' for 1952?
+Queen elizabeth ii
+10
+
+Who was time magazine's 'man of the year' in 1938?
+Adolph hitler
+10
+
+Who was time magazine's 'person of the year' for 1952?
+Queen elizabeth 2
+10
+
+Who was time's man of the year for 1979?
+Ayatollah ruholla khomeini
+10
+
+Who was to marry romeo and juliet?
+Friar laurence
+10
+
+Who was told by the Vienna Academy of Fine arts that his gift lay in architecture when he failed the entrance exam in 1908?
+Adolf hitler
+10
+
+Who was told that he could run for your life?
+Paul bryan
+10
+
+Who was tom thumb's female counterpart?
+Thumbelina
+10
+
+Who was tommy lee jones' freshman roommate at harvard?
+Al gore
+10
+
+Who was uncas the last of?
+Mohicans
+10
+
+Who was united nation's first general secretary?
+Trygve lie
+10
+
+Who was upper Canada's first chief justice?
+William osgoode
+10
+
+Who was US president during the depression?
+Franklin d roosevelt
+10
+
+Who was vice president to jimmy carter, and the democratic nomination for the presidency in 1984?
+Walter mondale
+10
+
+Who was Vice President when Ronald Reagan was President?
+George bush
+10
+
+Who was voted out of power in july 1943 after the invasion of Sicily?
+Mussolini
+10
+
+Who was W.C. Field's co-star in the film 'My Little Chickadee'?
+Mae west
+10
+
+Who was William Bonney also known as?
+Billy the kid
+10
+
+Who was William Claude Dukenfield better known as?
+W C Fields
+10
+
+Who was William Powell's screen partner in 'The Thin Man' movie series?
+Myrna Loy 
+10
+
+Who was william shakespeare's wife?
+Ann hathaway
+10
+
+Who was with patricia hearst the night she was kidnaped?
+Steven weed
+10
+
+Who was woden to the anglo-saxons?
+Chief god
+10
+
+Who was world champion in boxing from 1952-1962?
+Archie moore
+10
+
+Who was would-be presidential assassin john hinckley jr was infatuated with?
+Jodie foster
+10
+
+Who was young cricketer of the year in 1963?
+Geoff boycott
+10
+
+Who wasn't afraid to call James Joyce 'A greasy undergraduate'?
+Virginia wolfe
+10
+
+Who waxed truly, you are, and my love?
+Lionel richie
+10
+
+Who wears The Fisherman's Ring?
+The pope
+10
+
+Who went around nicking knickers off washing lines and was a hit for Pink Floyd?
+Arnold layne
+10
+
+Who went form the Ponderosa to Battlestar Galactica?
+Lorne greene
+10
+
+Who went on to become an Eastern Communist leader after working as a pastry chef at London's Carlton Hotel?
+Ho Chi Minh
+10
+
+Who went to sea with silver buckles at his knees?
+Bobby shaftoe
+10
+
+Who were adam and eve's first two sons?
+Cain and abel
+10
+
+Who were Argentina playing in the 1966 World Cup when their captain Rattin was sent off?
+England
+10
+
+Who were Athos, Porthos and Aramis?
+The three musketeers
+10
+
+Who were believed to celebrate Walpurgis Night on the eve of May Day?
+Witches
+10
+
+Who were cain and abel's parents?
+Adam and eve
+10
+
+Who were David soul and Paul michael glaser better known as?
+Starsky and hutch
+10
+
+Who were defeated by the Mets in the 1969 world series?
+The orioles
+10
+
+Who were estrogon and vladimir waiting for, in the famous play by beckett?
+Godot
+10
+
+Who were forbidden fromwatching Olympic Games in ancient greece?
+Women
+10
+
+Who were Gaspar, Melchior & Balthasar?
+The three wise men
+10
+
+Who were Hedda Hopper and Louella Parsons?
+Hollywood gossip columnists
+10
+
+Who were howard, robbie, mark, gary and jason?
+Take that
+10
+
+Who were Kate Jackson, Jacklyn Smith and Farrah Fawcett Majors?
+Charlie's angels
+10
+
+Who were lucy and ricky's next door neighbours and best friends?
+Fred and
+10
+
+Who were moe howard, larry fine and curly howard?
+Three stooges
+10
+
+Who were mr magoo's nephews?
+Waldo and presley
+10
+
+Who were once known as 'ona friday'?
+Radiohead
+10
+
+Who were Patti, Maxine and Laverne?
+Andrews sisters
+10
+
+Who were Pumping On Your Stereo in 1999?
+Supergrass
+10
+
+Who were supposed to obey the laws of chivalry?
+Medieval knights
+10
+
+Who were the 'star crossed lovers'?
+Romeo & juliet
+10
+
+Who were the 1991 nba champions?
+Chicago bulls
+10
+
+Who were the 2 sons of adam and eve?
+Cain and abel
+10
+
+Who were the attendants of dionysus?
+Maenads
+10
+
+Who were the enemies of the federation?
+Klingons
+10
+
+Who were the enemy at the Battle of Rorke's Drift?
+Zulus
+10
+
+Who were the everly brothers trying to wake up?
+Little susie
+10
+
+Who were the fabled twins, raised by a wolf that supposedly founded Rome?
+Romulus & remus
+10
+
+Who were the famous feuding hillbilly families in pike cnty, Kentucky?
+Hatfields mccoys
+10
+
+Who were the famous feuding hillbilly families in Pike County, Kentucky?
+Hatfields & mccoys
+10
+
+Who were the first known settlers of Russia?
+Cimmerians
+10
+
+Who were the first people to be elected into the aviation hall of fame?
+Wright brothers
+10
+
+Who were the first people to make paper?
+The Chinese
+10
+
+Who were the first rock band to play 4 consecutive nights at Wembley Stadium?
+Genesis
+10
+
+Who were the first winners of the european cup in football?
+Real madrid
+10
+
+Who were the group hue and cry looking for?
+Linda
+10
+
+Who were the guests on Johnny Carson's final tonite show?
+Bette midler and
+10
+
+Who were the learned class of the ancient Celts whose name means 'knowing the oak tree'?
+Druids
+10
+
+Who were the legendry founders of Rome?
+Romulus and remus
+10
+
+Who were the main combatants in the punic wars?
+Rome and carthage
+10
+
+Who were the native people of New Zealand when the europeans arrived?
+Maoris
+10
+
+Who were the rulers of early peru?
+Incas
+10
+
+Who were the three men who perished aboard apollo 1 on a lauchpad fire (last names, c g w)?
+Chaffee grissom white
+10
+
+Who were the three musketeers?
+Athos, porthos and aramis
+10
+
+Who were the twin sons of zeus and leda?
+Castor and pollux
+10
+
+Who were the two commanders who directed the forces in the battle of el alamein?
+Montgomery and rommel
+10
+
+Who were the two conspirators made infamous for their assassination of Julius Caesar?
+Brutus and Cassius
+10
+
+Who were the two disappointed candidates when Richard Nixon was elected as US President in 1968?
+Hubert humphrey and george wallace
+10
+
+Who were the two left-handed Beatles?
+Paul mccartney and ringo starr
+10
+
+Who were Thors two sons (the brave & the powerful)?
+Modi & magni
+10
+
+Who when talking about poor countries said The US has much to offer the Third World War?
+Ronald reagan
+10
+
+Who who played the leading role in 'the good, the bad, and the ugly?
+Clint eastwood
+10
+
+Who wielded a sword called excalibur?
+King arthur
+10
+
+Who won ?85,010 in libel damages against Private Eye in 1983?
+Sir james goldsmith
+10
+
+Who won 24 grand slam titles?
+Smith-court
+10
+
+Who won 4 tennis grand slams before she was 18?
+Monica seles
+10
+
+Who won a Best Actress Academy award for her performance in Annie Hall?
+Diane keaton
+10
+
+Who won a pulitzer prize for his play cat on a hot tin roof?
+Tennessee williams
+10
+
+Who won a Pullitzer prize for Cat on a Hot Tin Roof?
+Tennessee williams
+10
+
+Who won a record 7 gold medals at the 1972 Olympics?
+Mark spitz
+10
+
+Who won a storybook race against a hare?
+Tortoise
+10
+
+Who won all 3 gold medals in alpine skiing at the 1968 olympics?
+Jean-claude killy
+10
+
+Who won an academy award for best supporting actress in the film 'the English patient'?
+Juliet binoche
+10
+
+Who won an Academy Award in 1968 as Director of Midnight Cowboy?
+John schlesinger
+10
+
+Who won an Oscar as Best Supporting actor in the 1993 film 'The Fugitive'?
+Tommy lee jones
+10
+
+Who won best actor for his role in a man for all seasons?
+Paul scofield
+10
+
+Who won best actor oscar for a man for all seasons?
+Paul scofield
+10
+
+Who won best actor oscar for gandhi?
+Ben kingsley
+10
+
+Who won best actor oscar for on golden pond?
+Henry fonda
+10
+
+Who won best actor oscar for separate tables?
+David niven
+10
+
+Who won best actor oscar for stalag 17?
+William holden
+10
+
+Who won best actress for her role in darling?
+Julie christie
+10
+
+Who won best actress for her role in hud?
+Patricia neal
+10
+
+Who won best actress oscar for come back, little sheba?
+Shirley booth
+10
+
+Who won best actress Oscar in 2000 for 'Boys don't Cry'?
+Hilary swank
+10
+
+Who won best director for ordinary people?
+Robert redford
+10
+
+Who won best director for reds?
+Warren beatty
+10
+
+Who won best director oscar for my fair lady?
+George cukor
+10
+
+Who won best international male in the 2000 brit awards?
+Beck
+10
+
+Who won best supporting actor for his role in a thousand clowns?
+Martin balsam
+10
+
+Who won best supporting actress for her role in melvin & howard?
+Mary steenburgen
+10
+
+Who won best supporting actress for her role in the last picture show?
+Cloris leachman
+10
+
+Who won best supporting actress for the film butterflies are free?
+Eileen heckart
+10
+
+Who won best supporting actress oscar for zorba the greek?
+Lila kedrova
+10
+
+Who won best supporting actress Oscar in 2000 for 'Girl Interrupted'?
+Angelina jolie
+10
+
+Who won each of golfs four grand slam tournaments at least three times?
+Jack nicklaus
+10
+
+Who won golf's 1999 British open championship?
+Peter lawrie
+10
+
+Who won his sixth Australian Open golf title in 1978?
+Jack Nicklaus
+10
+
+Who won Super Bowl X?
+Pittsburgh
+10
+
+Who won the 1940 pulitzer for fiction for 'the grapes of wrath'?
+John steinbeck
+10
+
+Who won the 1942 Nobel Peace Prize?
+No one
+10
+
+Who won the 1952 Olympic 10000 metres on the same day that his wife Dana won the javelin?
+Emil zatopek
+10
+
+Who won the 1957 world series?
+Milwaukee braves
+10
+
+Who won the 1959 u.s grand prix?
+Bruce mclaren
+10
+
+Who won the 1960 Olympic Marathon without shoes?
+Abebe bikila
+10
+
+Who won the 1965 south african grand prix?
+Jim clark
+10
+
+Who won the 1966 f1 championship?
+Jack brabham
+10
+
+Who won the 1968 f a cup final?
+West bromwich albion
+10
+
+Who won the 1969 eurovision contest with boom bang-a-abang?
+Lulu
+10
+
+Who won the 1972 nobel peace prize?
+No one
+10
+
+Who won the 1979 nobel peace prize?
+Mother teresa
+10
+
+Who won the 1980 Pullitzer prize for literature for 'The Executioner's Song'?
+Norman mailer
+10
+
+Who won the 1982 best actor oscar?
+Ben kingsley
+10
+
+Who won the 1982 Pulitzer Prize for her novel: The Colour Purple?
+Alice walker
+10
+
+Who won the 1986 Canadian Grand Prix?
+Nigel mansell
+10
+
+Who won the 1986 Super Bowl?
+Bears
+10
+
+Who won the 1990 nobel peace prize?
+Gorbachev
+10
+
+Who won the 1995 ncaa men's basketball championship?
+Ucla
+10
+
+Who won the 1995 rugby world cup?
+South africa
+10
+
+Who won the 1997 World Series?
+Marlins
+10
+
+Who won the 1998 asian television award for best comedic actor?
+Gurmit singh
+10
+
+Who won the 1998 college football national championship?
+University of tennessee
+10
+
+Who won the 1998 goodwill games men's basketball gold medal?
+Usa
+10
+
+Who won the 1998 mlb world series?
+Los angeles dodgers
+10
+
+Who won the 2000 Booker prize?
+Margaret atwood
+10
+
+Who won the 2001 ncaa mens' basketball championship?
+Duke
+10
+
+Who won the Best Actor Oscar in 1984 for his role in Amadeus?
+F murray abraham
+10
+
+Who won the best actor oscar in 1992 for the film 'scent of a woman'?
+Al pacino
+10
+
+Who won the best actor oscar in 1993 for the film 'philadelphia'?
+Tom hanks
+10
+
+Who won the Best Actress Oscar in 1987 for her role in Moonstruck?
+Cher
+10
+
+Who won the Booker Prize for the novel 'The Bone People'?
+Keri hulme
+10
+
+Who won the British Grand Prix in 1999?
+David coulthard
+10
+
+Who won the County Cricket Championship in 2001?
+Yorkshire
+10
+
+Who won the county cricket championship of 2001?
+Yorkshire
+10
+
+Who won the eurovision song contest twice?
+Johnny logan
+10
+
+Who won the first Grand Prix World Motor-racing Championship in 1950?
+Guiseppe farina
+10
+
+Who won the first single handed round the world yacht race?
+Robin knox-johnston
+10
+
+Who won the first superbowl in nfl history?
+Greenbay packers
+10
+
+Who won the first Women's Modern Pentathlon to feature in the Olympics in Sydney 2000?
+Stephanie cook
+10
+
+Who won the grammy award for best male pop vocalist in 1983?
+Michael jackson
+10
+
+Who won the men's singles title in the first open Wimbledon championship?
+Rod Laver
+10
+
+Who won the nobel peace prize in 1964?
+Martin luther king jr
+10
+
+Who won the nobel peace prize in 1983?
+Lech walesa
+10
+
+Who won the nobel prize for chemistry in 1911?
+Marie curie
+10
+
+Who won the nobel prize for literature in 1923?
+William butler yeats
+10
+
+Who won the nobel prize for physics in 1922?
+Niels bohr
+10
+
+Who won the Nobel prize in physics in 1921?
+Albert einstein
+10
+
+Who won the oscar for best actress 1987 in the film 'moonstruck'?
+Cher
+10
+
+Who won the oscar for best actress in 1936 and 1938?
+Luise rainer
+10
+
+Who won the oscar for best actress in 1988 for the film 'the accused'?
+Jodie foster
+10
+
+Who won the oscar for best director for the film the deer hunter in 1978?
+Michael cimino
+10
+
+Who won the oscar for best director for the film the french connection in 1971?
+William friedkin
+10
+
+Who won the pulitzer prize for her novel to kill a mockingbird?
+Harper lee
+10
+
+Who won the Russian power struggle to succeed lenin?
+Stalin
+10
+
+Who won the sea battle of Sluys in 1346?
+The English
+10
+
+Who won the US Open golf title?
+Jack nicklaus
+10
+
+Who won the Wimbledon in 1972/73?
+Billie jean king
+10
+
+Who won the Wimbledon singles in 1998 after twice losing in the final?
+Jana Novotna
+10
+
+Who won the woman's 400 m hurdles in the 1992 olympics?
+Sally gunnell
+10
+
+Who won the Women's 400m race in the Sydney 2000 Olympics?
+Kathy freeman
+10
+
+Who won the world cup in 1998?
+France
+10
+
+Who won the World Drivers Championship in 1975 and 1977?
+Niki lauda
+10
+
+Who won the world figure skating men's singles title in 1987?
+Brian orser
+10
+
+Who won the world Football championship in 1934?
+Italy
+10
+
+Who won the world Football championship in 1954?
+West Germany
+10
+
+Who won the world Football championship in 1958?
+Brazil
+10
+
+Who won the world Football championship in 1974?
+West Germany
+10
+
+Who won the world Football championship in 1982?
+Italy
+10
+
+Who won the world professional snooker championship 15 times between 1927 and 1946?
+Joe davis
+10
+
+Who won the world series in 1998?
+New york yankees
+10
+
+Who won this year's Nobel peace prize?
+Kim dae jung
+10
+
+Who won two 500 gp morrace this year (2001)?
+Valentino rossi
+10
+
+Who wore 2 shirts at his execution so people would not think him afraid if he shivered?
+Charles i
+10
+
+Who wore clothes made of camel's hair?
+John the baptist
+10
+
+Who wore laceless shoes and was said to regard undone shoelaces as unlucky?
+Anthony perkins
+10
+
+Who wore the coat of many colours?
+Joseph
+10
+
+Who worked for dr zorba?
+Ben casey
+10
+
+Who worked for the computer agency, intertech?
+Joe mannix
+10
+
+Who worked in a factory making toilets for airplanes before he recorded 'aint no sunshine when shes gone'?
+Bill withers
+10
+
+Who works from home?
+Open-collar workers
+10
+
+Who would a jerquer work for?
+Customs and excise
+10
+
+Who would be described as a 'sophomore'?
+Student
+10
+
+Who would be interested in definitives, overprints and tete-beches?
+A stamp collector
+10
+
+Who would finally say 'and now it's time for bed'?
+Zebedee
+10
+
+Who would use a hammer & tongs?
+A blacksmith
+10
+
+Who would use a Jacquard?
+Weaver
+10
+
+Who would use a Snellen chart in his/her work?
+Optician
+10
+
+Who would use an 'embouchure' in their work?
+Musician
+10
+
+Who writes a weekly Letter from America?
+Alistair cooke
+10
+
+Who wrote, 'Goodbye to all That'?
+Robert graves
+10
+
+Who wrote, 'This is the way the world ends, not with a bang but with a whimper'?
+T s eliot
+10
+
+Who ws nicknamed the poision dwarf in dallas?
+Lucy ewing
+10
+
+Who, according to a diary entry, said on march 17 1912 ?i am just going outside and may be some time?
+Captain oates
+10
+
+Who, according to a song, damaged her foot on a piece of wood and fell into a raging torrent?
+Clementine
+10
+
+who, according to the bible, was the brother of jacob?
+Esau
+10
+
+Who, aged 56, topped the poll of 50 sexiest brits ever (2002)?
+Joanna lumley
+10
+
+Who, as at November 28th 2000, is still the manager of Middlesbrough Football Club?
+Bryan robson
+10
+
+Who, as of October 1998, is the Prime Minister of Israel?
+Benjamin netanyahu
+10
+
+Who, by john dean's reckoning, was deep throat?
+Alexander haig
+10
+
+Who, immediately prior to maurice greene, was the fastest sprinter ever?
+Ben johnson
+10
+
+Who, in 1655, discovered Saturn's rings?
+Christiaan huygens
+10
+
+Who, in 1865, was the first U S president to be assassinated?
+Abraham lincoln
+10
+
+Who, in 1874, painted the picture called La Loge?
+Auguste renoir
+10
+
+Who, in 1889, painted the picture called The Starry Sky?
+Vincent van gogh
+10
+
+Who, in 1902, made the first million selling record?
+Enrico caruso
+10
+
+Who, in 1943, wrote the book The Gremlins, which was later turned into a successful film?
+Roald dahl
+10
+
+Who, in 1947, was the first man to break the sound barrier?
+Chuck yeager
+10
+
+Who, in 1948, became the first Prime Minister of Israel?
+David ben-gurion
+10
+
+Who, in 1952, became the only winner of the 5000m, 10000m and marathon in the same games?
+Emil zatopek
+10
+
+Who, in 1957, was the first-black player to win a singles title at Wimbledon?
+Althea gibson
+10
+
+Who, in 1968, became the oldest singer to get a number 1 hit in britain?
+Louis armstrong
+10
+
+Who, in 1975 was the first rock and roller to appear simultaneously on the covers of time and newsweek?
+Bruce springsteen
+10
+
+Who, in 1977, was the first woman to ride in the Grand National?
+Charlotte brew
+10
+
+Who, in 1984, repeated jesse owens' feat of winning the 100, 200, long jump and 4x100 relay?
+Carl lewis
+10
+
+Who, in 1990, was the first professional boxer to beat Mike Tyson?
+James (buster) Douglas
+10
+
+Who, in an effort to prove the danger of using ac (alternating current) in homes, carried out experiments where he electrocuted dogs with ultra-high voltages?
+Thomas edison
+10
+
+Who, in egyptian mythology, is the god of the dead?
+Aker
+10
+
+Who, in Greek mythology, was chained to rock with an eagle picking at his liver?
+Prometheus
+10
+
+Who, in Greek mythology, was condemned to eternally roll a stone uphill, where it continually rolled back down again?
+Sisyphus
+10
+
+Who, in literature, is eligible to be nominated for the annual award called the Carnegie Medal?
+Authors of children's books
+10
+
+Who, in the 18th Century, was known as 'sea green incorruptible'?
+Robespierre
+10
+
+Who, in the bible, was taken up to heaven in a fiery chariot?
+Elisha
+10
+
+Who, in the Holy Bible, was the father of David?
+Jesse
+10
+
+Who, in world war two, was the Japanese equivalent of 'lord haw haw'?
+Tokyo rose
+10
+
+Who, on his deathbed, said that he did not wish Queen Victoria to visit him because she would only give him a message for Albert?
+Disraeli
+10
+
+Who, or what is a trogon?
+Tropical bird
+10
+
+Who, or what, is or was a bridewell?
+Prison
+10
+
+Who, or what, is Petrushka in Stravinsky's ballet of the same name?
+A puppet
+10
+
+Who, posthumously, was the Formula 1 Drivers' World Champion in 1970?
+Jochen rindt
+10
+
+Who, recently, has been appointed as patron saint of politicians?
+Thomas moore
+10
+
+Who, when he won the Formula 1 World Championship in 1972, was the youngest driver to win it?
+Emerson fittipaldi
+10
+
+Who, with assets valued at 7.5 billion dollars in 1996, co-founded Microsoft with Bill Gates?
+Paul allen
+10
+
+Who, with the First Edition, had a number two hit in 1969 with 'Ruby, Don't Take Your Love To Town'?
+Kenny rogers
+10
+
+Who, with william gaunt and stuart damon, played the lead parts in television's the champions?
+Alexandra bastedo
+10
+
+Who's 1983 album was titled hearts & bones?
+Paul simon
+10
+
+Who's advertisement ends 'The ultimate active sports vehicle?
+' BMW
+10
+
+Who's album 'Pearl' was released posthumously?
+Janis joplin
+10
+
+Who's album is titled missundaztood?
+Pink
+10
+
+Who's best of album is called paint the sky with stars?
+Enya
+10
+
+Who's black bra fetched ?4,600.00 at auction in 1997?
+Madonna
+10
+
+Who's black bra fetched 4,600at auction in 1997?
+Madonna
+10
+
+Who's britain's best-known former kindergarten teacher?
+Diana
+10
+
+Who's bugs bunny's archenemy?
+Elmer fudd
+10
+
+Who's children are named prince Albert and princess Caroline?
+Grace Kelly
+10
+
+Who's coat of arms bears the motto El Tono Es Bueno, (The Sound is Good)?
+Elton John
+10
+
+Who's considered the first important native American novelist?
+James fenimore cooper
+10
+
+Who's considered the patron saint of travellers?
+Christopher
+10
+
+Who's current album is entitled 'Sing when you're winning'?
+Robbie williams
+10
+
+Who's Eric Cartman's father?
+His mother
+10
+
+Who's expected to cry throughout a Finnish wedding?
+The bride
+10
+
+Who's head did courtney cox say was on her body in scream 2?
+Jennifer aniston
+10
+
+Who's known as the father of geometry?
+Euclid
+10
+
+Who's kofi annan's predecessor as un secretary-general?
+Boutros boutros ghali
+10
+
+Who's last in the line as the seven dwarfs trudge home?
+Dopey
+10
+
+Who's loretta lynn's singing sister?
+Crystal gayle
+10
+
+Who's name appears fourth in credits for the honeymooners?
+Joyce randolph
+10
+
+Who's name is associated with the invention of the miners safety lamp?
+Sir humphrey davy
+10
+
+Who's olive oyl's brother?
+Castor oyl
+10
+
+Who's on the other line when you call 1-600-DOCTORB?
+Dr. Nick Riviera 
+10
+
+Who's painted soft self-portrait with grilled bacon?
+Salvador dali
+10
+
+Who's presently commander-in chief of the united states?
+President of the united states
+10
+
+Who's queen aleta's husband?
+Prince valiant
+10
+
+Who's recorded the album imagine?
+Eva cassidy
+10
+
+Who's shakespeare's moorish general in the service of venice?
+Othello
+10
+
+Who's smarter than the average bear?
+Yogi
+10
+
+Who's son formed a group called fred zeppelin?
+Frank zappa
+10
+
+Who's the bitty apprentice of the evil witch in the little lulu comics?
+Little itch
+10
+
+Who's the lead singer of simply red?
+Mick hucknall
+10
+
+Who's the leading rebounder in nba playoff history?
+Bill russell
+10
+
+Who's the only president buried in Washington, dc?
+Woodrow wilson
+10
+
+Who's the patron saint of Scotland?
+Andrew
+10
+
+Who's voice was rex the robot for disneyland's star tours?
+Pee wee herman
+10
+
+Who's woodstock's beagle buddy?
+Snoopy
+10
+
+Whom did Andrew Motion succeed as Poet Laureate?
+Ted hughes
+10
+
+Whom did aristotle onasis ditch for jacqueline kennedy?
+Maria callas
+10
+
+Whom did Colin Baker replace as Doctor Who on television?
+Peter davison
+10
+
+Whom did David Steel succeed as leader of the Liberal Party?
+Jeremy thorpe
+10
+
+Whom did Isabel Peron succeed as President of Argentina in 1974?
+Juan peron
+10
+
+Whom did joe walcott defeat at age 37 to win the heavyweight title?
+Ezzard Charles
+10
+
+Whom did mary pickford proclaim as her favorite star?
+Mickey mouse
+10
+
+Whom did Michael Portillo succeed as M.P. for Kensington and Chelsea in November 1999?
+Alan clark
+10
+
+Whoose lasting testament was 'Cubum autem in duos cubos, aut quadratoquadratum in duos quadratoquadratos, et generaliter nullam in infinitum ultra quadratum potestatem in duos ejusdem nominis fas est dividere: cujus rei demonstrationem mirabilem sane detexi. Hanc marginis exiguitas non caperet.'?
+Fermat
+10
+
+Whos first album for almost a decade was the 2001 release sex,age,death?
+Bob geldof
+10
+
+Whos funeral was the biggest televised event in history?
+Diana princess of wales
+10
+
+Whose 'talking heads 77' first release includes this song 'a statement of demented purpose'?
+Psycho killer
+10
+
+Whose 1984 album 'Private Dancer' sold 10 million copies?
+Tina turner
+10
+
+Whose 1985 hit was Run To You?
+Bryan adams
+10
+
+Whose 1986 hit was 'Walk Like an Egyptian'?
+The bangles
+10
+
+Whose 1992 book was titled sex?
+Madonna
+10
+
+Whose 1997 biography is entitled Appetite for Life?
+Julia Child
+10
+
+Whose 2001 album was titled whoa nelly?
+Nely furtado
+10
+
+Whose 31st and 38th Symphonies are the Paris and the Prague?
+Mozart
+10
+
+Whose abduction of Helen of Troy brought about the Trojan War?
+Paris
+10
+
+Whose address is 221-b baker st?
+Sherlock holmes
+10
+
+Whose adventures are told in a book subtitled adventures in a desert island?
+Swiss family robinson
+10
+
+Whose album was moon safari?
+Air
+10
+
+Whose appearance on the same stage as the Monkees was campaigned against by the Daughters of the American Revolution?
+Jimi hendrix
+10
+
+Whose arch enemy is killer kane?
+Buck rogers
+10
+
+Whose army were canned foods developed to feed?
+Napoleon
+10
+
+Whose artificial heart clicked for 112 days?
+Barney clark
+10
+
+Whose assassination precipitated WWi?
+Archduke franz ferdinand of Austria
+10
+
+Whose associate was j. wellington wimpy?
+Popeye
+10
+
+Whose attention drawing gimmicks have included waving a pair of handcuffs around at a tory party conference?
+Edwina currie
+10
+
+Whose auto biography did James Boswell write in 1791?
+Dr johnsons
+10
+
+Whose autobiographical novel was called The Bell Jar?
+Sylvia plath
+10
+
+Whose autobiography is called ' All of me'?
+Barbara windsor
+10
+
+Whose autobiography is called Where's the Rest of Me?
+Ronald reagan
+10
+
+Whose autobiography is entitled 'Part My Soul'?
+Winnie mandela
+10
+
+Whose autobiography is Parcel Arrived Safely: Tied With String?
+Micheal crawford
+10
+
+Whose autobiography is titled 'Memoirs of a Professional Cad?
+George Sanders
+10
+
+Whose autobiography is titled my wicked, wicked ways?
+Errol flynn
+10
+
+Whose autobiography was entitled My Wicked Wicked Ways?
+Errol flynn
+10
+
+Whose autobiography was titled 'In my own fashion'?
+Oleg Cassini
+10
+
+Whose baby was a frightening success for ira levin?
+Rosemary
+10
+
+Whose bama lama bamo loo hit the charts in 1964?
+Little richard
+10
+
+Whose band was known as the herd or thundering herd?
+Woody herman
+10
+
+Whose best-selling album is An Innocent Man which reached number two in the charts in 1983?
+Billy joel
+10
+
+Whose big break was playing Vinnie Barbarino on Welcome Back Kotter?
+John Travolta
+10
+
+Whose biography is entitled 'the dark side of genius'?
+Alfred hitchcock
+10
+
+Whose biography was titled The Other Side of the Rainbow?
+Judy garland's
+10
+
+Whose birth name was Thomas Mapother IV?
+Tom Cruise
+10
+
+Whose bones did pop star michael jackson offer the london medical college 1 million dollars for?
+John merrick (the elephant man)
+10
+
+Whose books describe the career of 'horatio hornblower'?
+C s forester
+10
+
+Whose boxing troupe was a familiar sight at Australia's fairs for nearly 50 years?
+Jimmy Sharman's
+10
+
+Whose business cards identified the holder as a furniture dealer?
+Al capone
+10
+
+Whose car, when found in Dallas in 1963, contained brass knuckles, a pistol holder, and a newspaper detailing JFK's motorcade route?
+Jack Ruby
+10
+
+Whose case did Charles VII reopen in 1455, 24 years after she had been sentenced to death?
+Joan of arc
+10
+
+Whose castle was camelot?
+King arthur
+10
+
+Whose catchphrase is 'can we talk'?
+Joan Rivers
+10
+
+Whose character name was also the title of the show?
+Punky Brewster
+10
+
+Whose comment on the first moon landing was This is the greatest week in the history of the world since creation?
+Richard nixon
+10
+
+Whose court was at Camelot?
+King Arthurs
+10
+
+Whose daughters were Regan,Goneril and Cordelia?
+King lear
+10
+
+Whose day long funeral in february 1989 was attended by 55 heads of state?
+Emperor hirohito
+10
+
+Whose death prompted RCA to keep its Indianapolis plant open 24 hours a day?
+Elvis Presley
+10
+
+Whose debut album is named Hot?
+Melanie b
+10
+
+Whose dictionary of the English language was published in 1755?
+Samuel johnson
+10
+
+Whose dog was gala poochie?
+Rootie kazootie
+10
+
+Whose epitaph reads - if you seek his memorial, look around you?
+Christopher wren
+10
+
+Whose epitaph reads 'workers of all lands unite...'?
+Karl marx
+10
+
+Whose equations first suggested that mass and energy are interchangeable?
+Einstein's
+10
+
+Whose face has Madonna got tattooed on her bottom?
+Marilyn monroe
+10
+
+Whose face is on the front of a quaker oat box?
+William penn
+10
+
+Whose face was crossed out in red on the cover of a 1945 issue of time?
+Adolf Hitler
+10
+
+Whose famous movie tagline is?
+Schwarzenegger
+10
+
+Whose father boxed for the iranian olympic team?
+Andre agassi
+10
+
+Whose figure was used as a model for disney's 'tinkerbell'?
+Marilyn monroe
+10
+
+Whose films include 'giant','written on the wind' and 'a farewell to arms'?
+Rock hudson
+10
+
+Whose films include 'spartacus', 'the vikings' and 'ulysses'?
+Kirk Douglas
+10
+
+Whose first 2 books are entitled the lost continent and neither here nor there?
+Bill bryson
+10
+
+Whose first album 'truth' was released in 1968?
+Jeff beck
+10
+
+Whose first album was 'jagged little pill'?
+Alanis morissette
+10
+
+Whose first novel was 'Saturday Night and Sunday Morning'?
+Alan sillitoe
+10
+
+Whose first novel was The man Within?
+Graham greene
+10
+
+Whose first novel was where angels fear to tread?
+E m forster
+10
+
+Whose first number one was Nothing Compares 2U?
+Sinead o'connor
+10
+
+Whose first play was Widowers Houses?
+George bernard shaw
+10
+
+Whose first published book, in 1961, was 'Call for the Dead'?
+John le carre
+10
+
+Whose first release was 'talking heads 77'?
+Psycho killer
+10
+
+Whose first Top Ten hit record was 5,4,3,2,1?
+Manfred mann
+10
+
+Whose first words after being shot were �Honey I forgot to duck�?
+Ronald reagan
+10
+
+Whose flying circus did Eric idle and terry gilliam belong to?
+Monty python
+10
+
+Whose friends were Bill Badger, Algy Pug and Edward Trunk?
+Rupert bear
+10
+
+Whose funeral train traveled from Washington, D.C. to Springfield, Illinois?
+Abraham lincoln's
+10
+
+Whose funeral train traveled from Washington, D.C. to Springfield,Illinois?
+Abraham lincoln
+10
+
+Whose garter is alleged to have inspired the foundation of the Most Noble Order of the Garter in 1348?
+The countess of salisbury
+10
+
+Whose grandson got the first phone call from a commercial cellular system, in 1983?
+Alexander graham bell's
+10
+
+Whose hamburger patties weigh 1.6 oz?
+Mcdonald's
+10
+
+Whose head of state is Prince Hans-Adam II?
+Lichtenstein
+10
+
+Whose head was given to herod's wife on a plate?
+John the baptist
+10
+
+Whose headstone reads '...that nothing's so sacred as honor and nothing's so loyal as love'?
+Wyatt earp
+10
+
+Whose headstone reads 'at rest, an American soldier and defender of the constitution'?
+Jefferson davis
+10
+
+Whose headstone reads 'looking into the portals of eternity teaches that the brotherhood of man is inspired by god's word; then all prejudice of race vanishes away'?
+George Washington
+10
+
+Whose headstone reads 'my jesus mercy'?
+Al capone
+10
+
+Whose headstone reads 'she did it the hard way'?
+Bette davis
+10
+
+Whose headstone reads 'that's all folks'?
+Mel blanc
+10
+
+Whose hit I Will Survive became an anthem for Women's Lib?
+Gloria gaynor
+10
+
+Whose home was mount vernon?
+George Washington
+10
+
+Whose image is alleged to be on the shroud of turin?
+Christ's
+10
+
+Whose image was alleged to be on the Shroud of Turin?
+Christ
+10
+
+Whose interpretation of dreams sold only 351 copies during its first 2 years in print?
+Sigmund freud
+10
+
+Whose is the first Canterbury tale?
+The knights
+10
+
+Whose label signed jimi hendrix in 1967?
+Frank sinatra
+10
+
+Whose last play was 'What the Butler Saw'?
+Joe orton
+10
+
+Whose last words were 'thank god i have done my duty'?
+Horatio nelson
+10
+
+Whose last words were 'thus with a kiss i die'?
+Romeo
+10
+
+Whose last words were reportedly, 'i shall hear in heaven!'?
+Beethoven
+10
+
+Whose last words were supposed to have been 'Let not poor Nelly starve'?
+Charles ii
+10
+
+Whose last words were: 'Die, my dear Doctor, that is the last thing I shall do!'?
+Lord palmerston
+10
+
+Whose latest album is G.O.A.T. (Greatest of all time)?
+L l cool j
+10
+
+Whose latest bestseller is entitled' look to Windward'?
+Lain m banks
+10
+
+Whose law illustrates that when a cork is inserted into a flask, and great amounts of pressure are forced upon the cork, the flask will explode?
+Pascal
+10
+
+Whose law is summarised as bad money drives out good?
+Greshams law
+10
+
+Whose laws first described the motion of the planets round the sun?
+Kepler
+10
+
+Whose legs were insured for one million dollars?
+Betty grable
+10
+
+Whose life story is titled 'fly me, i'm freddie!'?
+Freddie laker
+10
+
+Whose life was portrayed in the film 'great balls of fire'?
+Jerry lee lewis
+10
+
+Whose likeness is depicted on the purple heart?
+George Washington
+10
+
+Whose likeness is displayed on the purple heart medal?
+George Washington
+10
+
+Whose Los Angeles residence was described by biographer frank brady as a '30-room xanadu'?
+Hugh hefner
+10
+
+Whose manhattan triplex boasts 29 marble columns in the living room?
+Donald trump
+10
+
+Whose memoirs are entitled long walk to freedom?
+Nelson mandela
+10
+
+Whose middle names are Charles Linton?
+Tony blair
+10
+
+Whose military autobiography was titled Crusade in Europe?
+Dwight d eisenhower
+10
+
+Whose moral of the story was 'dont count your chickens before they're hatched'?
+Aesop
+10
+
+Whose moral of the story was: 'don't count your chickens before they're hatched'?
+Aesop's
+10
+
+Whose most recent book is called 'The Brethren'?
+John grisham
+10
+
+Whose most recent book is called 'The White House Connection'?
+Jack higgins
+10
+
+Whose motto is 'Be prepared'?
+Boy Scouts
+10
+
+Whose motto is 'das beste oder nichts'?
+Mercedes benz
+10
+
+Whose murder precipitated world war i?
+Archduke francis ferdinand
+10
+
+Whose music was used in Death in Venice?
+Mahler
+10
+
+Whose nametag was sewn inside the ratty Prince Albert-style coat worn by actor, Frank Morgan, in 'The Wizard of Oz'?
+L. Frank Baum
+10
+
+Whose nickname was 'babe'?
+Mildred ella didrikson
+10
+
+Whose novels always began with: 'the case of the . . .'?
+Erle stanley gardner
+10
+
+Whose novels include 'Restoration' and 'The Way I Found Her'?
+Rose tremain
+10
+
+Whose novels include 'The Cement Garden' and 'Comfort of Stangers'?
+Ian mcewan
+10
+
+Whose novels include 'The Ice-Cream Wars' and 'Brazzaville Beach'?
+William boyd
+10
+
+Whose novels include 'The Joy Luck Club' and The Kitchen God's Wife?
+'amy tan
+10
+
+Whose number 1 was You Make Me Wanna...?
+Usher
+10
+
+Whose official neutral name is 'the helvetic confederation'?
+Switzerland
+10
+
+Whose only loss in 1983 was to kathy horvath?
+Martina navratilova
+10
+
+Whose orchestra did 'wonderland by night'in 1960?
+Bert kaempfert
+10
+
+Whose orchestra was awarded the first ever Gold Disc in 1941?
+Glenn miller
+10
+
+Whose painting was stolen from Dulwich Art Gallery on four seperate occasions?
+Rembrandts
+10
+
+Whose patron is Star of the Sea?
+Sailors
+10
+
+Whose Pepsi commercial was dumped after complaints from Christian groups?
+Madonna's
+10
+
+Whose plan was 'operation sea lion' for the invasion of England?
+Adolf hitler
+10
+
+Whose porridge did goldilocks eat?
+Three bears
+10
+
+Whose portrait appeared on the reverse of the last ?1 note?
+Isaac newton
+10
+
+Whose portrait appears on the back of a ?50.00 note?
+Sir Christopher Wren
+10
+
+Whose presidential competency was questioned when he insisted during a debate that there was no Soviet domination in Poland?
+Gerald Ford
+10
+
+Whose profession is considered the greatest insurance risk in the US?
+Astronaut
+10
+
+Whose quartet provided the musical accompaniment to the Goon Show?
+Ray ellington
+10
+
+Whose real name is Douglas Trendle?
+Buster bloodvessel
+10
+
+Whose real name is vince furnier?
+Alice cooper
+10
+
+Whose real name was ellas mcdaniels?
+Bo diddley
+10
+
+Whose recent album is called Painting It Red?
+Beautiful south
+10
+
+Whose recent books include 'Crisis Four' and 'Firewall'?
+Andy mcnab
+10
+
+Whose recent books include 'Shattered' and 'Second Wind'?
+Dick francis
+10
+
+Whose record breaking performance in winning Olympic Gold in 1968 stood as a World record for 23 years?
+Bob beamon
+10
+
+Whose record did Babe Ruth break when he hit 60 home runs in 1927?
+Babe ruth's 
+10
+
+Whose rule is used to solve simultaneous linear equations by using determinants?
+Cramer
+10
+
+Whose second album was the chart-topping 'no need to argue'?
+Cranberries
+10
+
+Whose Second Symphony is called The Little Russian?
+Tchaikovsky
+10
+
+Whose shrewish wife was named Xantippe?
+Socrates
+10
+
+Whose single season strikeout record did Nolan Ryan beat by one?
+Sandy koufax
+10
+
+Whose solo release in 1970 included 'that would be something', 'maybe i'm amazed' and 'every night'?
+Paul mccartney
+10
+
+Whose song 'keep the home fires burning' was one of the most successful during wwi?
+Ivor novello
+10
+
+Whose song 'Keep the Home Fires Burning' was one of the most successful during WWl?
+Ivor novello
+10
+
+Whose stories were illustrated by 'phiz'?
+Charles dickens
+10
+
+Whose story did the books 'born free', 'living free' and 'forever free' tell?
+The lioness elsa
+10
+
+Whose symphonies include the 'Reformation', the 'Italian' and the 'Scotch'?
+Felix mendelssohn
+10
+
+Whose tale of why he didn't get drafted was the hit of the 1967 newport folk festival?
+Arlo guthrie
+10
+
+Whose teachings are collected in the Hadith?
+Muhammad
+10
+
+Whose tees are closer to the green in golf men's or women's?
+Women's
+10
+
+Whose tomb was discovered by Howard Carter in 1922?
+Tutankhamen
+10
+
+Whose tomb was opened by howard carter and lord carnarvon?
+Tutankhamen
+10
+
+Whose variety show featured the bright family, the dumbest in the world?
+Dick van dyke
+10
+
+Whose victories in the 1936 olympics upset hitler?
+Jesse owens
+10
+
+Whose Watching the Detectives was the first hit single on the Stiff record label?
+Elvis costello
+10
+
+Whose wife did the editing on American graffiti and Star Wars?
+George lucas
+10
+
+Whose wife was roxana, his horse bacephalus?
+Alexander the great
+10
+
+Whose wife was turned into a pillar of salt?
+Lot
+10
+
+Whose wife's divorce settlement was his nobel prize?
+Albert einstein's
+10
+
+Whose work is never done, according to a popular saying?
+A woman's
+10
+
+Whta card game is scored by using pegs in a wooden board?
+Cribbage
+10
+
+Whta is the name of the art movement which uses small dots and brush strokes to create a large picture?
+Pointillism
+10
+
+Why did 2 and a half million dutchmen have to walk home in 1982?
+Bicycles were stolen
+10
+
+Why did eating potatoes not make King Henry VIII so fat?
+He died before they reached England
+10
+
+Why did howdy doody have exactly forty-eight freckles?
+One for each state
+10
+
+Why did islanders from Tristan da Cunha arrive in Britain in 1961?
+Volcanic eruption
+10
+
+Why did louis washkansky achieve world wide fame in 1967?
+First human heart transplant
+10
+
+Why did Mehmet Ali Agca become famous in 1981?
+Shooting pope jean Paul ll
+10
+
+Why did Monica Coghlan make headlines in 1986?
+Jeffrey archer tried to pay her off
+10
+
+Why did scrooge's nephew come to his office on christmas eve?
+Invite him for dinner
+10
+
+Why did the House of Commons vote itself a day off on a June Wednesday in 1848?
+Go to the epsom derby
+10
+
+Why did the so called Free Presbyterian Church of Scotland ban Lord Mackay from their services?
+He attended two catholic funerals
+10
+
+Why do crocodiles swallow stones?
+To act as stabilisers
+10
+
+Why do flies rub their legs together?
+Clean themselves
+10
+
+Why do gardeners plant milk bottles in their lawns?
+To scare moles
+10
+
+Why do the Swiss have no navy?
+They have no coast
+10
+
+Why do woodpeckers peck trees?
+To catch insects
+10
+
+Why do you not hear Irish gardeners complaining about moles?
+There are no moles in Ireland
+10
+
+Why does a pendulum clock run slower in hot weather?
+It expands and swings slower
+10
+
+Why does Stonefish warrant a mention in the Guinness Book of Records?
+Worlds most venomous fish
+10
+
+Why has actor robert duvall named several of his pet dogs boo radley?
+In honor of his film role
+10
+
+Why is carbon dioxide put into certain types of fire extinguishers?
+Stop electrical fires
+10
+
+Why is Caspian Sea a misnomer?
+Its a lake
+10
+
+Why is Fleet Street so called?
+Fleet river passes beneath
+10
+
+Why is glass transparent?
+Light passes through it
+10
+
+Why is Goldbachs Conjecture not called a theory?
+It is unproven
+10
+
+Why is Homer declared insane?
+Because he wore a pink shirt 
+10
+
+Why is marsha wash 'gonna go out and let herself get absolutely soaking wet'?
+It's raining men
+10
+
+Why is Paul burrel in the news at the moment?
+Lady di's butler
+10
+
+Why is so hard to start a fire in la paz, bolivia?
+Little oxygen
+10
+
+Why is St. Paul's cathedral unique amongst English cathedrals?
+Only one with a dome
+10
+
+Why is the bates motel famous?
+Psycho
+10
+
+Why is the funny bone so called?
+It's the humerus
+10
+
+Why is the sky blue?
+The colour wavelength of blue is smaller than the other colours
+10
+
+Why is there a theory that Napoleon died by poisoning when he was imprisoned on St Helena?
+Walls contained arsenic
+10
+
+Why must Santa's Little Helper get an operation?
+He has a twisted stomach
+10
+
+Why was a last minute decision made to bomb Nagasaki rather than the chosen target of kokura?
+Because it was obscured by clouds
+10
+
+Why was Elm Street in the news in 1963?
+John f. kennedy was shot there
+10
+
+Why was Finn Volmari Iso-Hollo's 1932 steeplechase win exceptional?
+He ran an extra lap by mistake
+10
+
+Why was lead added to petrol?
+Reduce engine knock
+10
+
+Why was the dinosaur Triceratops so called?
+Three horns
+10
+
+Why was the year 1842 significant for Queen Victoria?
+She took her first journey by train
+10
+
+Why was tile making a dangerous job in the 19th century?
+Lead in the glaze
+10
+
+Why was turkey primarily barred from e.u entry?
+Human rights abuse
+10
+
+Why were pneumatic tires always bursting when they were introduced?
+Air pressure was too high
+10
+
+Why, I guess you don't know everything about women yet?
+The empire strikes back
+10
+
+Why, in 1969, did the French flag appear on some British postage stamps?
+To commemorate concorde's maiden flight
+10
+
+Wide muscular partition separating the thoracic, or chest cavity, from the abdominal cavity?
+Diaphragm
+10
+
+Widely used designation in the United States, Canada, and several other countries for the association of more than 2000 community-based organizations that work to meet local health and human-care needs?
+United Way
+10
+
+Widespread disease caused by the infestation of the human body by flukes fluke commonly called blood flukes, of the genus schistosoma?
+Schistosomiasis
+10
+
+Widespread occurrence of a disease?
+Epidemic
+10
+
+Widows in equatorial ____ actually wear sackcloth and ashes when attending a funeral
+Africa
+10
+
+Wiesmuller what was Canada's first national park?
+Banff national park
+10
+
+Wife and sister of zeus?
+Hera
+10
+
+Wife of Rajah?
+Ranee
+10
+
+Wig or patch of false hair worn to conceal a bald spot?
+Toupee
+10
+
+Wilco name the only animal with retractable horns?
+Snail
+10
+
+Wild Australian dog?
+Dingo
+10
+
+Wild Bill Hickok was shot in the back by a stranger during a poker game. The hand he was holding aces & eights is known to poker players as what?
+Dead man's hand
+10
+
+Wild canine animal with red or grey fur?
+Fox
+10
+
+Wild flowers: what's blue, comes out in spring, and smells like hyacinth?
+Bluebells
+10
+
+Wild hairy monster of Native American lore?
+Sasquatch
+10
+
+Wile E. Coyote, gets all his traps to try to catch the Road Runner from what company?
+Acme
+10
+
+William Golding won the Nobel Prize for literature in which year?
+1983
+10
+
+William Henry harrison served the shortest term of any u.s. president. how long was his term?
+32 days
+10
+
+William McIlvanney wrote the novel The Big Man, who played the title role in the film adaptation?
+Liam neeson
+10
+
+William Shakespeare's father's first name was?
+John
+10
+
+Willie Nelson is known for organizing concerts to aide what group of people?
+Farmers
+10
+
+Willie Nelson tune hummed by Donkey in the movie 'Shrek'?
+On the road again
+10
+
+Wilma Flinestone's maiden name was?
+Wilma slaghoopal
+10
+
+Wind Instruments?
+Piccolo
+10
+
+Wind speed is measured by a(n)...?
+Anemometer
+10
+
+Windhoek is the capital of ____
+Namibia
+10
+
+Windmills always turn counter-clockwise. Except for the windmills in?
+Ireland
+10
+
+Winner of four oscars, which film featured the characters joe buck and ratso?
+Midnight cowboy
+10
+
+Winners of the FA Cup in the 1980s?
+West Ham
+10
+
+Winston Churchill married in 1908, what was his wife's christian name?
+Clementine
+10
+
+Winston Smith is the central character in which novel by george Orwell?
+Nineteen eighty four
+10
+
+With a specific gravity of 22.57, what is the densest of all measurable elements?
+Osmium
+10
+
+With an average age of 16.6 yrs, this is the country where WOMEN marry the youngest?
+Democratic Republic of Congo
+10
+
+With an average age of 22.0, this is the country where MEN marry the youngest?
+Nepal
+10
+
+With the development of which computer language was grace hopper associated?
+Cobol
+10
+
+With what acid do nettles cause irritation?
+Formic acid
+10
+
+With what are alligators often confused?
+Crocodiles
+10
+
+With what are camel hair brushes made?
+Squirrel hairs
+10
+
+With what band was harvey schmidt?
+The fantasticks
+10
+
+With what book is 'the hispaniola' associated?
+Treasure island
+10
+
+With what branch of medicine is mesmer associated?
+Hypnotism
+10
+
+With what branch of science do you associate the words bug and bootstrap?
+Computer science
+10
+
+With what branch of the arts is Rudolf Von Laban associated?
+Dance
+10
+
+With what charge was al capone imprisoned?
+Tax evasion
+10
+
+With what city is alcatraz associated?
+San francisco
+10
+
+With what country is prince rainier iii associated?
+Monaco
+10
+
+With what country was catherine the great associated?
+Russia
+10
+
+With what day does a month start if it has a friday 13th?
+Sunday
+10
+
+With what day does a month start if it has a Friday the 13th?
+Sunday
+10
+
+With what did David kill goliath?
+Slingshot
+10
+
+With what did writers replace the pouncepot?
+Blotting paper
+10
+
+With what do butterflies taste?
+Back legs
+10
+
+With what do camels protect themselves from blowing sands?
+Three eyelids
+10
+
+With what does Dr. Seuss' name rhyme?
+Rejoice
+10
+
+With what instrument is the jazz musician Chet Baker associated?
+Trumpet
+10
+
+With what instrument is the jazz musician Dexter Gordon associated?
+Tenor saxophone
+10
+
+With what invention is the name James Oughtred associated?
+Slide rule
+10
+
+With what is 'Grand Marnier' flavoured?
+Orange
+10
+
+With what is 'spanakopita' filled?
+Spinach
+10
+
+With what is a diamond cut if it forms graphite dust?
+Laser
+10
+
+With what is a thanatologist concerned?
+Death
+10
+
+With what is charcoal and saltpetre mixed to make gunpowder?
+Sulphur
+10
+
+With what is charcoal and sulphur mixed to make gunpowder?
+Saltpetre
+10
+
+With what is rainfall measured?
+Ombrometer
+10
+
+With what is sulphur and charcoal mixed to make gunpowder?
+Saltpetre
+10
+
+With what is sulphur and saltpetre mixed to make gunpowder?
+Charcoal
+10
+
+With what is the inventor Charles Babbage linked?
+Computers
+10
+
+With what is the organisation CERN concerned?
+Nuclear research
+10
+
+With what is the organisation UKAEA concerned?
+Atomic energy
+10
+
+With what is the society called concerned?
+Euthanasia
+10
+
+With what kind of pen were allied bomb crews issued?
+Biro pens
+10
+
+With what line of work was mandy rice-davies associated?
+Prostitution
+10
+
+With what metal do alchemists associate Mars?
+Iron
+10
+
+With what name did pablo picasso sign his paintings?
+Picasso
+10
+
+With what part of the body is a chiropodist concerned?
+Feet
+10
+
+With what sport is frank thomas associated?
+Baseball
+10
+
+With what sport is the Zimbabwean Heath Streak associated?
+Cricket
+10
+
+With what sport was mildred ella didrikson associated?
+Athletics
+10
+
+With what three words does the bible start?
+In the beginning
+10
+
+With what type of meat would you make the dish Marengo?
+Chicken
+10
+
+With what type of painting was john singer sargent principally associated?
+Portraits
+10
+
+With what type of reference book is Joseph Whitaker associated?
+Almanack
+10
+
+With what vegetable song did dee dee sharp score big?
+Mashed potato time
+10
+
+With what was the Triangular Trade chiefly associated?
+Slavery
+10
+
+With what were queen victoria's menstrual cramps eased?
+Marijuana
+10
+
+With what were scrabble tiles first made?
+Pocket knife
+10
+
+With which 17th century plot was Francis Tresham associated?
+Gunpowder plot
+10
+
+With which 19th century plot was Arthur Thistlewood associated?
+Cato street conspiracy
+10
+
+With which 3 words does the Bible start?
+In the beginning
+10
+
+With which art form was Donald Mcgill particularly associated?
+Seaside postcards
+10
+
+With which art form would you associate the name Karsh of Ottawa?
+Photography
+10
+
+With which band did Boy George sing, besides Culture Club?
+Bow wow wow
+10
+
+With which cartoon strip is garry Trudeau most associated?
+Doonesbury
+10
+
+With which city do you associate the band 'Oasis'?
+Manchester
+10
+
+With which contemporary issue is us writer james baldwin associated?
+Civil rights
+10
+
+With which country did Britain break off diplomatic relations in April 1984?
+Libya
+10
+
+With which country did Britain break off diplomatic relations in February 1991?
+Iraq
+10
+
+With which country do you associate a group called the Tamil Tigers?
+Sri lanka
+10
+
+With which country is Prince Rainier III identified?
+Monac
+10
+
+With which creature was the Egyptian God Horus identified?
+Falcon
+10
+
+With which early twentieth century artistic movement do you associate Picasso and Braque?
+Cubism
+10
+
+With which football team did Angus Deayton have trials?
+Crystal palace
+10
+
+With which form of transport was Otto Lilienthal associated?
+Gliders
+10
+
+With which four words did samuel pepys end his diary each day?
+And so to bed
+10
+
+With which hand do soldiers salute?
+Right hand
+10
+
+With which identification system is Francis Galton associated?
+Fingerprints
+10
+
+With which natural phenomena are Baily's Beads associated?
+Solar eclipse
+10
+
+With which type of medicine is Magdi Yacoub most associated?
+Heart surgery
+10
+
+Within a few years of Columbus' discovery of America, the ____ had killed one and a half million Indians
+Spaniards
+10
+
+Wizard Of Oz: According to the Scarecrow, this is the only thing he is afraid of?
+Lighted match
+10
+
+Wolfram is the alternative name for which element?
+Tungsten
+10
+
+Womans loose gown in 17-18th century?
+Mantua
+10
+
+Women and children first name the lifeboat drill?
+Birkenhead Drill
+10
+
+Women blink nearly ____ as much as men
+Twice
+10
+
+Women burn fat more slowly than men, by a rate of about how many calories a day?
+-- Answer metadata begin
+{
+    "answers": ["50", "fifty"]
+}
+-- Answer metadata end
+10
+
+Wonder woman is a descendant of what race?
+Amazons
+10
+
+Wooden soled shoe?
+Clog
+10
+
+Woodworking tools?
+Plane
+10
+
+Woollen covering for head and neck?
+Balaclava helmet
+10
+
+What English word comes from the old French "covrefeu", meaning cover fire?
+Curfew
+10
+
+Worker ants may live up to how many years?
+-- Answer metadata begin
+{
+    "answers": ["Seven", "7"]
+}
+-- Answer metadata end
+10
+
+What is a workshop for casting metal known as?
+Foundry
+10
+
+World heavyweight boxing champion, Gene Tunney also lectured on Shakespeare at ____ University later in his life
+Yale
+10
+
+World leaders: Who emerged from the civil war as Spain's leader?
+Francisco franco
+10
+
+World's largest bookstore without a storefront?
+Amazon
+10
+
+Worn in ancient Greece, what was a 'petasus'?
+-- Answer metadata begin
+{
+    "answers": ["Hat", "A hat"]
+}
+-- Answer metadata end
+10
+
+What is awreath of flowers used as a decoration?
+Garland
+10
+
+Wrigley's promoted what new flavor chewing gum in 1915 by mailing 4 sample sticks to each of the 1.5 million names listed in us telephone books?
+Spearment
+10
+
+Wrought-iron tower in Paris, a landmark and an early example of wrought-iron construction on a gigantic scale?
+Eiffel Tower
+10
+
+What is an X-ray of the breast known as?
+Mammogram
+10
+
+Xizang is now a province of China. What is its other name?
+Tibet
+10
+
+Yale college has been serving apple pie for more than ____
+100 years
+10
+
+Yamoussoukro is the capital of which country?
+-- Answer metadata begin
+{
+    "answers": ["Cote D'ivoire", "Ivory Coast"]
+}
+-- Answer metadata end
+10
+
+Yasser Arafat was leader of the PLO starting what year?
+1969
+10
+
+In what year did the Battle of Balaklava take place?
+1854
+10
+
+In what year was the first manned space flight?
+1961
+10
+
+What is the yellow alloy of copper and zinc known as?
+Brass
+10
+
+What does yellow gold contain 10% of?
+Copper
+10
+
+Yellowish fossil resin used in jewellry?
+Amber
+10
+
+Yellowstone National Park delights visitors with incredible scenery, waterfalls, geysers, and lakes. It is located in whch state?
+Wyoming
+10
+
+Yes, Virginia, there is a Santa Claus was a famous newspaper response written by columnist Frank P. Church. For which New York newspaper did Frank P. Church work?
+The New York Sun
+10
+
+You are in a room where all walls face south. A bear walks by. What color is it?
+White
+10
+
+In baseball, you have to run 360 feet if you hit a ____
+Home run
+10
+
+You see a statue named the Little Mermaid. Where are you?
+Copenhagen, Denmark
+10
+
+You will find none of these in Las Vegas Casinos?
+Clocks
+10
+
+You would find a mummy in one of these stone coffins?
+Sarcophagus
+10
+
+you would find information on what in Debretts?
+The peerage
+10
+
+You're just as likely to die by falling out of bed then you are to get struck by lightning; each is a 1 in ____ chance
+2 million
+10
+
+Zelda Sayre was the wife of which us novelist?
+-- Answer metadata begin
+{
+    "answers": ["F. Scott Fitzgerald", "Francis Scott Fitzgerald", "F Scott Fitzgerald"]
+}
+-- Answer metadata end
+10
+
+Zenith introduced the first TV remote control 1950. What was the remote control labelled?
+Lazy Bones
+10
+
+Zephyr is the poetic name for what?
+West wind
+10
+
+Zip code 12345 is assigned to ____ ____ in Schenectady, New York
+General Electric
+10
+
+Zoologist and writer gerald durrell spent part of his childhood on which greek island?
+Corfu
+10
diff --git a/xtrn/gttrivia/qa/music_movies_and_entertainment.qa b/xtrn/gttrivia/qa/music_movies_and_entertainment.qa
index d4662c6ce6..c9e7dffb81 100644
--- a/xtrn/gttrivia/qa/music_movies_and_entertainment.qa
+++ b/xtrn/gttrivia/qa/music_movies_and_entertainment.qa
@@ -1,3 +1,9 @@
+-- QA metadata begin?
+{
+    "category_name": "Music, Movies, & Entertainment"
+}
+-- QA metadata end
+
 Amy Winehouse, Jimi Hendrix and Janis Joplin all belong to what unofficial organization?
 The 27 Club
 10
@@ -30,7 +36,7 @@ What musical artist played a whopping 27 different instruments on their debut al
 Prince
 10
 
-Where did the band ABBA form?
+In what country did the band ABBA form?
 Sweden
 10
 
@@ -43,7 +49,11 @@ Christopher
 10
 
 How old was Taylor Swift when she took home her first Album of the Year Grammy?
-20
+-- Answer metadata begin
+{
+    "answers": ["Twenty", "20"]
+}
+-- Answer metadata end
 10
 
 Starchild, Demon, Spaceman (or Space Ace), and Catman are the on-stage personas of what band?
@@ -51,7 +61,11 @@ KISS
 10
 
 How many members does BTS have?
-7
+-- Answer metadata begin
+{
+    "answers": ["Seven", "7"]
+}
+-- Answer metadata end
 10
 
 What was The Beach Boys' first No. 1 single, out of a total of four?
@@ -91,11 +105,20 @@ Alison Krauss
 10
 
 What is the name of Led Zeppelin's fourth studio album, which includes the song "Stairway to Heaven"?
-It's untitled! Although it's most often referred to as Led Zeppelin IV
+-- Answer metadata begin
+{
+    "answers": ["Untitled", "No title", "It's untitled", "It has no title", "It doesn't have a title"],
+	"answerFact": "Although it has no title, it's most often referred to as Led Zeppelin IV"
+}
+-- Answer metadata end
 10
 
 Ariana Grande started her career at age 15 in what Broadway musical?
-13
+-- Answer metadata begin
+{
+    "answers": ["Thirteen", "13"]
+}
+-- Answer metadata end
 10
 
 What movie is the Oscar-nominated song "Journey to the Past" from?
@@ -114,6 +137,18 @@ What is the highest-grossing movie of all time?
 Avatar
 10
 
+In the movie Avatar, what is the name of the moon they travel to, the home of the Na'vi?
+Pandora
+5
+
+In the movie Avatar, Pandora is the home to what highly intelligent species?
+-- Answer metadata begin
+{
+    "answers": ["Na'vi", "The Na'vi"]
+}
+-- Answer metadata end
+5
+
 What specific shade does Meryl Streep's Miranda Priestly dedicate a monologue to in The Devil Wears Prada?
 Cerulean
 10
@@ -123,15 +158,31 @@ Paris is Burning
 10
 
 What was the first feature-length animated movie ever released?
-Snow White and the Seven Dwarves
+-- Answer metadata begin
+{
+    "answers": ["Snow White and the Seven Dwarves", "Snow White and the 7 Dwarves"]
+}
+-- Answer metadata end
 10
 
 What character is played perfectly by Jeff Goldblum in Jurassic Park and significantly less perfectly by Goldblum in The Lost World: Jurassic Park?
 Ian Malcolm
 10
 
+What year was the original "Jurassic Park" movie released?
+1993
+10
+
+Who played park owner John Hammond in Jurassic Park?
+Richard Attenborough
+10
+
 What famous real-life Hollywood couple starred in the film adaptation of Who's Afraid of Virginia Woolf?
-Elizabeth Taylor and Richard Burton
+-- Answer metadata begin
+{
+    "answers": ["Elizabeth Taylor and Richard Burton", "Richard Burton and Elizabeth Taylor", "Elizabeth Taylor, Richard Burton", "Richard Burton, Elizabeth Taylor"]
+}
+-- Answer metadata end
 10
 
 What's the name of the dance number performed toward the beginning of Rocky Horror Picture Show?
@@ -143,7 +194,12 @@ Amity Island
 10
 
 What musical group is the movie Dreamgirls purportedly based on?
-Although the movie is a fictional blend of multiple Motown female-led singing groups, it's thought to most draw on the Supremes
+-- Answer metadata begin
+{
+    "answers": ["The Supremes"],
+	"answerFact": "Although the movie is a fictional blend of multiple Motown female-led singing groups, it's thought to most draw on the Supremes"
+}
+-- Answer metadata end
 10
 
 In Titanic, where is Jack Dawson from?
@@ -163,11 +219,20 @@ Clueless
 10
 
 Who is the only Disney princess to have been inspired by a real person?
-Pocahontas - although given Disney's historical inaccuracies, let's go ahead and call this one capital-L Loosely inspired.
+-- Answer metadata begin
+{
+    "answers": ["Pocahontas"],
+	"answerFact": "Given Disney's historical inaccuracies, this one could be loosely inspired"
+}
+-- Answer metadata end
 10
 
-How many suns does the planet Tatooine, Luke's home, have in Star Wars?
-Two
+How many suns does Luke's home planet Tatooine have in Star Wars?
+-- Answer metadata begin
+{
+    "answers": ["Two", "2"]
+}
+-- Answer metadata end
 10
 
 What was the first - and still only - horror movie to win the Oscar for Best Picture?
@@ -183,11 +248,19 @@ The Bates Motel
 10
 
 How many times has the movie A Star is Born been remade?
-Four times
+-- Answer metadata begin
+{
+    "answers": ["Four", "4"]
+}
+-- Answer metadata end
 10
 
 Why is Ally Sheedy's character in detention in The Breakfast Club?
-She "didn't have anything better to do."
+-- Answer metadata begin
+{
+    "answers": ["Didn't have anything better to do", "She didn't have anything better to do"]
+}
+-- Answer metadata end
 10
 
 Who was the first Black actress to win an Oscar?
@@ -222,10 +295,6 @@ Who played Mrs. Robinson in The Graduate?
 Anne Bancroft
 10
 
-What was the first feature-length animated movie ever released?
-Snow White and the Seven Dwarfs
-10
-
 In The Matrix, does Neo take the blue pill or the red pill?
 Red
 10
@@ -242,7 +311,7 @@ What's the name of the skyscraper in Die Hard?
 Nakatomi Plaza
 10
 
-What flavor of Pop Tarts does Buddy the Elf use in his spaghetti in Elf? 
+What flavor of Pop Tarts does Buddy the Elf use in his spaghetti in Elf? ?
 Chocolate
 10
 
@@ -254,10 +323,6 @@ What pop vocal group performs at the wedding in Bridesmaids?
 Wilson Phillips
 10
 
-What real-life on-again off-again Hollywood power couple starred in the film Who's Afraid of Virginia Woolf?
-Elizabeth Taylor and Richard Burton
-10
-
 What American writer/director starred in several iconic European-produced "Spaghetti Westerns"?
 Clint Eastwood
 10
@@ -266,8 +331,6 @@ Who played Juror Number 8 in 12 Angry Men?
 Henry Fonda
 10
 
-Related: The 100 Best Movies of All Time, Ranked 
-
 The head of what kind of animal is front-and-center in an infamous scene from The Godfather?
 A horse
 10
@@ -280,16 +343,10 @@ What critically panned 1984 country-musical comedy starring Dolly Parton and Syl
 Rhinestone 
 10
 
-Who played park owner John Hammond in Jurassic Park?
-Richard Attenborough
-10
-
-In what 1976 thriller does Robert De Niro famously say "You talkin' to me?"
+In what 1976 thriller does Robert De Niro famously say "You talkin' to me?"?
 Taxi Driver 
 10
 
-Related: 50 Fun Christmas Trivia Questions (with Answers)
-
 What's the name of the anthemic dance near the beginning of The Rocky Horror Picture Show?
 The Time Warp
 10
@@ -298,7 +355,7 @@ For what movie did Steven Spielberg win his first Oscar for Best Director?
 Schindler's List 
 10
 
-What is the name of the courtesan played by Nicole Kidman in Moulin Rouge! 
+What is the name of the courtesan played by Nicole Kidman in Moulin Rouge! ?
 Satine
 10
 
@@ -322,8 +379,6 @@ Who played Martin Luther King Jr. in the 2014 biopic Selma?
 David Oyelowo
 10
 
-Related: 100+ Best TV Shows on Netflix Right Now 
-
 Who directed Boris Karloff in the classics Frankenstein and Bride of Frankenstein?
 James Whale
 10
@@ -341,7 +396,11 @@ Bill Murray
 10
 
 In Risky Business, what song did Tom Cruise famously lip-sync to in his underwear?
-Old Time Rock and Roll by Bob Seger
+-- Answer metadata begin
+{
+    "answers": ["Old Time Rock and Roll", "Old Time Rock and Roll by Bob Seger"]
+}
+-- Answer metadata end
 10
 
 Who is the only actor to receive an Oscar nomination for acting in a Lord of the Rings movie?
@@ -368,7 +427,7 @@ What 1994 crime film revitalized John Travolta's career?
 Pulp Fiction 
 10
 
-Who voiced the sultry Jessica Rabbit in Who's Afraid of Roger Rabbit? 
+Who voiced the sultry Jessica Rabbit in Who's Afraid of Roger Rabbit? ?
 Kathleen Turner
 10
 
@@ -388,9 +447,6 @@ The stage play Everybody Comes to Rick's was adapted for the screen to become wh
 Casablanca 
 10
 
-Related: 250 Best Trivia Team Names
-
-movie-trivia
 In what 1979 James Bond movie does the famous spy go to outer space?
 Moonraker 
 10
@@ -399,10 +455,18 @@ Who wrote the famous, scary theme music from Halloween?
 John Carpenter
 10
 
-What animated classic was the first film of the late-twentieth-century "Disney Renaissance?"
+What animated classic was the first film of the late-twentieth-century "Disney Renaissance?"?
 The Little Mermaid
 10
 
+Who performs the character of Mark Zuckerberg in the movie "The Social Network"?
+Jesse Eisenberg
+10
+
+Alicia Silverstone starred in this Movie?
+Love's labour's lost
+10
+
 In Apocalypse Now, Robert Duvall says, "I love the smell of _____ in the morning."
 Napalm
 10
@@ -412,15 +476,13 @@ The Orca
 10
 
 What's the name of Charlie Chaplin's most famous, recurring character?
-"The Tramp"
+The Tramp
 10
 
 Aaron Sorkin won an Oscar for writing what 2010 drama about the creation of Facebook?
 The Social Network 
 10
 
-Related: 101 Disney Trivia Questions and Answers!
-
 Who played iconic femme fatale Phyllis Dietrichson in classic 1946 film noir Double Indemnity?
 Barbara Stanwyck
 10
@@ -449,8 +511,6 @@ Who played the "Unsinkable" Molly Brown in Titanic?
 Kathy Bates
 10
 
-Related: Grab the Popcorn! These Are the 14 Best Movie Streaming Sites For At-Home Screenings
-
 In the action thriller Speed, why is Annie (Sandra Bullock)'s driver's license suspended?
 She was speeding
 10
@@ -487,8 +547,6 @@ What was Quentin Tarantino's first feature as writer/director?
 Reservoir Dogs 
 10
 
-Related: We Ranked All Batman Movies, Including The Batman
-
 Which Oscar-winning blonde bombshell played James Stewart's love interest Lisa Carol Fremont in Rear Window?
 Grace Kelly
 10
@@ -497,7 +555,7 @@ Who is the only person ever to receive an Oscar nomination for acting in a Star
 Alec Guinness
 10
 
-movie-trivia
+movie-trivia?
 What actress' name, who voices Princess Elsa in the Frozen films, did John Travolta botch at the 2014 Oscars?
 Idina Menzel
 10
@@ -514,10 +572,6 @@ Three of Jim Carrey's blockbusters The Mask, Dumb and Dumber and Ace Ventura: Pe
 1994
 10
 
-How many suns does Luke's home planet of Tatooine have in Star Wars?
-Two
-10
-
 What movie holds the record for most Oscar wins without winning Best Picture (eight wins total)?
 Cabaret
 10
@@ -538,10 +592,6 @@ What is the highest-grossing movie of all time when taking inflation into accoun
 Gone With the Wind 
 10
 
-What is the highest-grossing movie of all time when not taking inflation into account?
-Avatar
-10
-
 What's the Los Angeles hotel prominently featured in Pretty Woman?
 The Beverly Wilshire by Four Seasons
 10
@@ -558,7 +608,7 @@ What is the name of the spaceship in Alien?
 USCSS Nostromo
 10
 
-This acclaimed, Oscar-winning filmmaker directed Happy Feet, Babe: Pig in the City and Mad Max: Fury Road.
+This acclaimed, Oscar-winning filmmaker directed Happy Feet, Babe: Pig in the City and Mad Max: Fury Road.?
 George Miller
 10
 
@@ -686,10 +736,12 @@ What is the name of Humperdinck's kingdom in The Princess Bride?
 Florin
 10
 
-Related: Best Psychological Thriller Movies of All Time 
-
 How many screenwriting Oscars has Quentin Tarantino won?
-Two
+-- Answer metadata begin
+{
+    "answers": ["Two", "2"]
+}
+-- Answer metadata end
 10
 
 What actress exited the set of apocalyptic comedy This is the End over objections to appearing in a scene that involved cannibalism?
@@ -768,7 +820,6 @@ Keith Moon and John Entwistle of The Who are said to have inspired the name of w
 Led Zeppelin
 10
 
-Golden Simple World Intellectual Property Day Social Media Graphic (3)
 In The Big Lebowski, The Dude can't stand which band?
 The Eagles
 10
@@ -782,7 +833,7 @@ Peter Gabriel
 10
 
 What was Madonna's first top 10 hit?
-"Holiday"
+Holiday
 10
 
 What rock star moonlights as a horror movie writer and director?
@@ -842,15 +893,17 @@ Dionne Warwick
 10
 
 "The Day the Music Died" refers to the tragic deaths of which artists?
-Buddy Holly, Ritchie Valens and The Big Bopper
+-- Answer metadata begin
+{
+    "answers": ["Buddy Holly, Ritchie Valens, and The Big Bopper", "Ritchie Valens, Buddy Holly, and The Big Bopper", "The Big Bopper, Buddy Holly, and Ritchie Valens", "The Big Bopper, Ritchie Valens, and Bdudy Holly"]
+}
+-- Answer metadata end
 10
 
-What singer is known as "The Vocal Bible?"
+What singer is known as "The Vocal Bible?"?
 Brandy
 10
 
-Related: Best Rock Bands of All Time
-
 Which classical composer was deaf?
 Ludwig van Beethoven
 10
@@ -871,7 +924,7 @@ David Crosby says who is the best singer of all time?
 Bonnie Raitt
 10
 
-What book do The Police reference in "Don't Stand So Close to Me?"
+What book do The Police reference in "Don't Stand So Close to Me?"?
 Lolita
 10
 
@@ -883,7 +936,7 @@ Where was Tupac Shakur born?
 East Harlem, New York
 10
 
-Missy Elliott references what infamous celebrity couple in "Let Me Fix My Weave?"
+Missy Elliott references what infamous celebrity couple in "Let Me Fix My Weave?"?
 Ben Affleckand Jennifer Lopez
 10
 
@@ -895,24 +948,28 @@ What singer was born Georgios Kyriacos Panayiotou?
 George Michael
 10
 
-Which astronomer is namedropped in "Bohemian Rhapsody?"
+Which astronomer is namedropped in "Bohemian Rhapsody?"?
 Galileo
 10
 
 Which Alanis Morissette song contains the phrase "jagged little pill" (the title of her debut album)?
-"You Learn"
+You Learn
 10
 
 Frank Sinatra changed the lyrics of "The Lady is a Tramp" to "The Lady is a" what?
-"Champ"
+Champ
 10
 
 Who was the first lead guitarist of Metallica?
 Dave Mustaine
 10
 
-The Weekndsamples which '80s megahit in "Blinding Lights?"
-Take On Me by A-ha
+The Weekndsamples which '80s megahit in "Blinding Lights?"?
+-- Answer metadata begin
+{
+    "answers": ["Take On Me by A-Ha", "Take On Me"]
+}
+-- Answer metadata end
 10
 
 Which Super Bowl Halftime Show performer was upstaged by a dancing shark?
@@ -920,7 +977,11 @@ Katy Perry
 10
 
 How many coaches (full and part-time) from The Voice have won Grammys?
-12
+-- Answer metadata begin
+{
+    "answers": ["Twelve", "12"]
+}
+-- Answer metadata end
 10
 
 What does Lady Gaga affectionately call her fans?
@@ -936,7 +997,11 @@ Joe Alwyn
 10
 
 Cardi Bstarred on what reality show?
-Love & Hip Hop
+-- Answer metadata begin
+{
+    "answers": ["Love & Hip Hop", "Love and Hip Hop", "Love & Hip-Hop", "Love and Hip-Hop"]
+}
+-- Answer metadata end
 10
 
 What iconic Nashville club does Garth Brooks call "the beginning and the mecca, the end"?
@@ -944,7 +1009,7 @@ Bluebird Cafe
 10
 
 George Harrison wrote what song for Eric Clapton about his sweet tooth?
-"Savoy Truffle"
+Savoy Truffle
 10
 
 What was the first rap single to hit the Billboard Top 40?
@@ -956,7 +1021,11 @@ Slash
 10
 
 Though made most famous by Ike and Tina Turner, "Proud Mary" was first recorded by whom?
-Creedence Clearwater Revival
+-- Answer metadata begin
+{
+    "answers": ["Creedence Clearwater Revival", "CCR"]
+}
+-- Answer metadata end
 10
 
 Who sang the Spongebob Squarepants theme song for the movie?
@@ -968,10 +1037,14 @@ Miranda Lambert
 10
 
 What languages does Shakira speak?
-English, Spanish, Arabic, French, Italian and Portuguese
+-- Answer metadata begin
+{
+    "answers": ["English, Spanish, Arabic, French, Italian, and Portuguese", "English, Arabic, Spanish, French, Italian, and Portuguese", "English, French, Spanish, Arabic, Italian, and Portuguese"]
+}
+-- Answer metadata end
 10
 
-What one hit wonder act is behind "Barbie Girl?"
+What one hit wonder act is behind "Barbie Girl?"?
 Aqua
 10
 
@@ -996,11 +1069,19 @@ Dee Snider of Twisted Sister
 10
 
 What was the first music video to ever air on MTV?
-Video Killed the Radio Star by The Buggles
+-- Answer metadata begin
+{
+    "answers": ["Video Killed the Radio Star by The Buggles", "Video Killed the Radio Star"]
+}
+-- Answer metadata end
 10
 
 U2 wrote the song "Stuck in a Moment" about what late frontman?
-Michael Hutchence of INXS
+-- Answer metadata begin
+{
+    "answers": ["Michael Hutchence of INXS", "Michael Hutchence", "INXS frontman Michael Hutchence"]
+}
+-- Answer metadata end
 10
 
 Which member of Kiss wore makeup to look like a cat?
@@ -1011,7 +1092,7 @@ Billie Eilish is obsessed with which classic TV show?
 The Office
 10
 
-Taylor Swiftnamed her debut country single after which singer? 
+Taylor Swiftnamed her debut country single after which singer? ?
 Tim McGraw
 10
 
@@ -1024,7 +1105,11 @@ Nikki Sixx
 10
 
 The Wu-Tang Clan recommends protecting which body part?
-Your neck
+-- Answer metadata begin
+{
+    "answers": ["Neck", "Your neck"]
+}
+-- Answer metadata end
 10
 
 What legendary pop group got their name from "Brothers Gibb"?
@@ -1039,7 +1124,7 @@ What Rolling Stones song title is also a restaurant chain?
 Ruby Tuesday
 10
 
-What smells are described in "Don't Stop Believin'?"
+What smells are described in "Don't Stop Believin'?"?
 Wine and cheap perfume
 10
 
@@ -1048,7 +1133,11 @@ The Marcy Projects
 10
 
 Members of Wilson Phillips are the daughters of which music legends?
-Brian Wilsonof The Beach Boys and John and Michelle Phillips of The Mamas & The Papas
+-- Answer metadata begin
+{
+    "answers": ["Brian Wilsonof The Beach Boys and John and Michelle Phillips of The Mamas & The Papas", "Brian Wilsonof The Beach Boys and John and Michelle Phillips"]
+}
+-- Answer metadata end
 10
 
 John Mayer wrote a song about which law of physics?
@@ -1087,7 +1176,7 @@ Which member of The Runaways competed on Jeopardy!?
 Jackie Fox
 10
 
-Which rapper inspired an entire accredited course at Syracuse University called "Hip-Hop Eshu: Queen B***h 101?"
+Which rapper inspired an entire accredited course at Syracuse University called "Hip-Hop Eshu: Queen B***h 101?"?
 Lil' Kim
 10
 
@@ -1104,14 +1193,22 @@ Bernie Taupin
 10
 
 Which Backstreet Boys are first cousins?
-Kevin Richardson and Brian Littrell
+-- Answer metadata begin
+{
+    "answers": ["Kevin Richardson and Brian Littrell", "Brian Littrell and Kevin Richardson"]
+}
+-- Answer metadata end
 10
 
 What do Drake, Taylor Swift and The Beatles have in common?
-They all replaced themselves at No. 1 on the Hot 100
+-- Answer metadata begin
+{
+    "answers": ["Replaced themselves at #1 on the Hot 100", "Replaced themselves at No. 1 on the Hot 100"]
+}
+-- Answer metadata end
 10
 
-What artists recorded two of their bestselling albums while they were behind bars?
+What artist recorded two of their bestselling albums while they were behind bars?
 Johnny Cash
 10
 
@@ -1205,4 +1302,127172 @@ David Bowie
 
 What character did Michael J. Fox play in 'Back to the Future'?
 Marty McFly
+5
+
+In "Harry Potter and the Sorcerer's Stone," what keeps the three-headed dog asleep?
+Enchanted harp
+10
+
+In the Harry Potter series, what is the name of Hagrid's half-brother?
+Grawp
+10
+
+In the Harry Potter series, what's the name of Ginny's Pygmy Puff?
+Arnold
+10
+
+In the Harry Potter series, what is Hermione's Patronus?
+Otter
+10
+
+What species of fish is Nemo?
+Clown Fish
+10
+
+What is the name of Boba Fett's ship in "Star Wars"?
+Slave 1
+10
+
+What comic series is the CW's "Riverdale" based on?
+Archie
+10
+
+In what year was "Jaws" released?
+1975
+10
+
+In "Star Wars," who built C-3P0?
+Anakin Skywalker
+10
+
+"The Princess and the Frog" is set in which American city?
+New Orleans
+10
+
+Who was the first woman ever inducted into the Rock and Roll Hall of Fame?
+Aretha Franklin
+10
+
+Who voiced Ms. Frizzle on the children's television series "Magic School Bus"?
+Lily Tomlin
+10
+
+Which astronomer is called out in the Queen song "Bohemian Rhapsody"?
+Galileo
+10
+
+Who is the villain in "Peter Pan"?
+Captain Hook
+10
+
+What is the school's mascot in "High School Musical"?
+Wild Cats
+10
+
+What country does "The Jungle Book" take place in?
+India
+10
+
+What major movie actor's first role was in "A Nightmare On Elm Street"?
+Johnny Depp
+10
+
+Which 2008 comedy had the tagline "Put this in your pipe and smoke it"?
+Pineapple Express
+10
+
+Music: Polish composer and pianist of the 19th century?
+Frederic chopin
+10
+
+Music: ____ got their name from a sexual device depicted in the book, The Naked Lunch
+Steely dan
+10
+
+Music: ____ in the name of love
+Stop
+10
+
+Music: ____ stands for ' Electrical and Musical Instruments'
+Emi
+10
+
+Music: ____ Zappa daughter of Frank; named after celestial object
+Moon
+10
+
+Music: ____- Pebbles
+Girlfriend
+10
+
+Music: ____- R.E.M
+Stand
+10
+
+Music: ____- The Beach Boys
+Kokomo
+10
+
+Music: ____- U2
+Desire
+10
+
+Music: ____2 U - The Jets
+Rocket
+10
+
+Music: ____All - Cher & Peter Cetera
+After
+10
+
+Music: ____And Day - Al B. Sure!
+Nite
+10
+
+Music: ____Blue - Icehouse
+Electric
+10
+
+Music: ____Girl - New Kids On The Block
+Cover
+10
+
+Music: ____In The Wind - Elton John
+Candle
+10
+
+Music: ____It - Def Leppard
+Armageddon
+10
+
+Music: ____It Real - The Jets
+Make
+10
+
+Music: ____It's Love - Van Halen
+When
+10
+
+Music: ____Me With Your Love - Surface
+Shower
+10
+
+Music: ____My Eyes (Forever) - Lita Ford W/ Ozzy Osbourne
+Close
+10
+
+Music: ____Of You - Sa-Fire
+Thinking
+10
+
+Music: ____On Movin' - Soul II Soul
+Keep
+10
+
+Music: ____On Water - Eddie Money
+Walk
+10
+
+Music: ____Red Wine - UB40
+Red
+10
+
+Music: ____The Seeds Of Love - Tears For Fears
+Sowing
+10
+
+Music: ____To Me - Ann Wilson & Robin Zander
+Surrender
+10
+
+Music: ____To The Jungle - Guns N' Roses
+Welcome
+10
+
+Music: ____Up - Paula Abdul
+Straight
+10
+
+Music: ____Wit'cha - Bobby Brown
+Rock
+10
+
+Music: ____World - Huey Lewis & The News
+Perfect
+10
+
+Music: ?blood sugar sex and magik was a hit for this spicy LA band in 1991?
+Red hot chili peppers
+10
+
+Music: ?I can't do the talk like they talk on tv, and I can't do a love song like the way it's meant to be ...' What's the Dire Straits song title?
+Romeo and juliet
+10
+
+Music: ?Look at me, I'm as helpless as a kitten up a tree' begins which Burke & Garner song?
+Misty
+10
+
+Music: ?Moving On Up' by M-people was released in what year?
+1993
+10
+
+Music: ?Slow Ride' was Foghat's biggest hit from this album released in 1975?
+Fool for the City
+10
+
+Music: ?summer of 69' was a hit for which canuck in 1984?
+Bryan adams
+10
+
+Music: ...but what I really want to know is...?
+Lenny kravitz (are you gonna go my way)
+10
+
+Music: ...sometimes i feel like my only friend...?
+Red hot chili peppers (under the bridge)
+10
+
+Music: ...who headlined the very first Lollapalooza Festival in 1991?
+Janes addiction
+10
+
+Music: ...who sings lead vocals alongside Chris Cornell in Temple of the Dog?
+Eddie vedder
+10
+
+Music: ' ____ of Love' by Frankie Lymon
+Abc's
+10
+
+Music: '...he went down to dinner in his sunday best...____ they all said...' what is the title of this popular warren zevon tune
+Excitable boy
+10
+
+Music: '...i got a crazy teacher, he wears dark glasses...' what is the name of this 1980's timbuk 3 smash hit?
+Future's so bright i gotta wear shades
+10
+
+Music: '2112' Was the first in a long line of gold & platinum albums for which Canadian trio?
+Rush
+10
+
+Music: 'Another one bites the ____
+Dust
+10
+
+Music: 'as free as the wind blows, as free as the grass grows' . what is the song title?
+Born free
+10
+
+Music: 'Beat It' by Michael Jackson was the single of the year What year was it?
+1983
+10
+
+Music: 'Blood, Sugar, Sex & Magik was a hit for this spicy L A band in 1991?
+Red hot chili peppers
+10
+
+Music: 'Bowser' and 'Jocko' have been two prominent members of what very successful rock and roll nostalgia act?
+Sha Na Na
+10
+
+Music: 'Destroyer' & 'Rock & Roll Over' were two best selling albums by what decidedly unusual rock band?
+Kiss
+10
+
+Music: 'Don't Go Breaking My Heart' was performed by ____
+Elton john and kiki dee
+10
+
+Music: 'Dr. Feelgood' was which group's last album with Vince Neill?
+Motley Crue
+10
+
+Music: 'fall down' was a hit for which santa barbara band?
+Toad the wet sprocket
+10
+
+Music: 'finished with my woman cause she couldn't help me with my mind...' what is the title of this popular black sabbath tune?
+Paranoid
+10
+
+Music: 'From The Big Pink' (1968) was done by what group?
+Band
+10
+
+Music: 'give me just a little more time' was recorded by which group in 1970?
+Chairman of the board
+10
+
+Music: 'go and get yourself some...' what is the name of this popular zz-top tune?
+Cheap sunglasses
+10
+
+Music: 'Going Undergound' was a hit for The Jam in which year?
+1980
+10
+
+Music: 'gonna be on sixth street in a second hand store, didn't know how to play it...but he knew for sure...' what is the Music:name of this top 20 hit by foriegner?
+Jukebox hero
+10
+
+Music: 'Hang On Sloopy' was the official rock song of which band?
+Ohio
+10
+
+Music: 'Hotel California' by the Eagles was single of the year and 'Rumours' by Fleetwood Mac was the album of the year. Which year was it?
+1977
+10
+
+Music: 'i just close my eyes again...climbed aboard the ____ train...' what is the name this gary wright hit
+Dreamweaver
+10
+
+Music: 'i'll never fall in love again' came from which musical?
+Promises promises
+10
+
+Music: 'I'm Getting Sentimental Over You' was who's theme song?
+Tommy dorsey
+10
+
+Music: 'I'm Gonna Be'(500 miles) was a hit for who?
+The proclaimers
+10
+
+Music: 'it's a mystery to me, the game commences for the usual fee ... 'what's the dire straits song title?
+Private investigations
+10
+
+Music: 'it's a shame about ray' was released in 1992 and rereleased later with a cover of simon and garfunkel's 'mrs robinson. which band was it?
+Lemonheads
+10
+
+Music: 'lady when you're with me i'm smiling' were lyrics from which group's 1973 second album?
+Styx
+10
+
+Music: 'Lady when you're with me I'm smiling' were lyrics from which groups 1973 second album?
+Styx
+10
+
+Music: 'middle of the road' was recorded by which group in 1984?
+Pretenders
+10
+
+Music: 'my name is mud' was on pork soda released in 1993 by which group?
+Primus
+10
+
+Music: 'new miserable experience' was which group's first album in 1993?
+Gin blossoms
+10
+
+Music: 'now look at them yo-yo's, that's the way you do it ...' what is the dire straits song title?
+Money for nothing
+10
+
+Music: 'One Tin Soldier' recorded by Coven, was the theme song for what movie?
+Billy Jack
+10
+
+Music: 'piano man' was which man's first successful album in 1974?
+Billy joel
+10
+
+Music: 'pushin' too hard' was the notable song recorded by which group in the 60's?
+Seeds
+10
+
+Music: 'Send in the Clowns' is a song from which Sondheim musical?
+A little night music
+10
+
+Music: 'siamese dream' was which chicago-based group's breakthrough second album?
+Smashing pumpkins
+10
+
+Music: 'teenage riot' and 'silver rocket' are two cuts off which alternative rock group's 1988 'daydream nation' album?
+Sonic youth
+10
+
+Music: 'the girls'll go crazy for a...' what is the name of this zz-top tune?
+Sharp dressed man
+10
+
+Music: 'The Merry Man and his Maid', is the alternate title for which Gilbert and Sullivan operetta?
+Yeoman of the guard
+10
+
+Music: 'the morning sun when it's in your face really shows your age' which classic song?
+Maggie may
+10
+
+Music: 'the problem is all inside your head she said to me, the answer's easy if you take it logically' is the beginning of which paul simon single?
+50 ways to leave your lover
+10
+
+Music: 'The Sabre Dance' is a well-known piece by which composer?
+Khachaturian
+10
+
+Music: 'The Slave of Duty', is the alternate title for which Gilbert and Sullivan operetta?
+Pirates of penzance
+10
+
+Music: 'this ain't no party, this ain't no disco ...' were lyrics from which group's 1979 release 'life during wartime'?
+Talking heads
+10
+
+Music: 'tres hombres' was the 1973 release by which el paso texas band known for the beards?
+Zz top
+10
+
+Music: 'under my wheels' and 'be my lover' were cuts of whose 1971 'killer' release?
+Alice cooper
+10
+
+Music: 'we had joy, we had fun ...' what is the song title?
+Seasons in the sun
+10
+
+Music: 'We Love you Baby' is the message embossed in Braille on the back of Paul McCartney and Wings, Red Rose Speedway. For which pop singer was this message intended for?
+Stevie Wonder
+10
+
+Music: 'White Room' was a hit off which Eric Clapton album?
+Cream
+10
+
+Music: 'you get a shiver in the dark, it's raining in the park ...' what's the dire straits song title?
+Sultans of swing
+10
+
+Music: (It's Just) The Way That You Love Me - ____Abdul
+Paula
+10
+
+Music: 1-2-3 - ____Estefan & Miami Sound Machine
+Gloria
+10
+
+Music: 15th Century: A popular 15th-century form in England was the two-part ____
+Carol
+10
+
+Music: 15th Century: The principal English composer of the first half of the 15th century?
+John dunstable
+10
+
+Music: 16th Century: Kind of polyphony said to reach its ultimate degree of perfection (16th c.)?
+Vocal
+10
+
+Music: 16th Century: Name one of the two best known Spanish composers of the 16th century?
+Morales
+10
+
+Music: 1930s: Song: This Bing Crosby-Guy Lombardo duet was one of the best-selling songs of 1935?
+Red sails in the sunset
+10
+
+Music: 1940s: In 1944, Glenn ____ vocalist (Little River Band-Help Is On Its, Way), was born.
+Shorrock
+10
+
+Music: 1950s: A 1957 title recorded by the Crickets, was a line taken from the classic John Ford western 'the Searchers'. What was the title?
+That'll be the day
+10
+
+Music: 1950s: Artist/Band: 'Till Then?
+The hilltoppers
+10
+
+Music: 1950s: Artist/Band: 'Till There Was You?
+Anita bryant
+10
+
+Music: 1950s: Artist/Band: 'Till We Two Are One?
+Georgie shaw
+10
+
+Music: 1950s: Artist/Band: 'Till?
+Roger williams
+10
+
+Music: 1950s: Artist/Band: ('Til) I Kissed You?
+The everly brothers
+10
+
+Music: 1950s: Artist/Band: (All of a Sudden) My Heart Sings?
+Paul anka
+10
+
+Music: 1950s: Artist/Band: (Bazoom) I Need Your Lovin'?
+The cheers
+10
+
+Music: 1950s: Artist/Band: (How Little It Matters) How Little We Know?
+Frank sinatra
+10
+
+Music: 1950s: Artist/Band: (I Love You) For Sentimental Reasons?
+Sam cooke
+10
+
+Music: 1950s: Artist/Band: (I'll Be with You in) Apple Blossom Time?
+Tab hunter
+10
+
+Music: 1950s: Artist/Band: (I'm Always Hearing) Wedding Bells?
+Eddie fisher
+10
+
+Music: 1950s: Artist/Band: (I'm Gettin') Nuttin' for Christmas?
+Ricky zahnd & the blue jeaners
+10
+
+Music: 1950s: Artist/Band: (If You Cry) True Love, True Love?
+The drifters
+10
+
+Music: 1950s: Artist/Band: (It's Been a Long Time) Pretty Baby?
+Gino & gina
+10
+
+Music: 1950s: Artist/Band: (Let Me Be Your) Teddy Bear?
+Elvis presley
+10
+
+Music: 1950s: Artist/Band: (Love Is) The Tender Trap?
+Frank sinatra
+10
+
+Music: 1950s: Artist/Band: (Mama) He Treats Your Daughter Mean?
+Ruth brown
+10
+
+Music: 1950s: Artist/Band: (My Baby Don't Love Me) No More?
+The dejohn sisters
+10
+
+Music: 1950s: Artist/Band: (Now and Then There's) A Fool Such As I?
+Elvis presley
+10
+
+Music: 1950s: Artist/Band: (There'll Be) Peace in the Valley (for Me)?
+Elvis presley
+10
+
+Music: 1950s: Artist/Band: (There's No Place Like) Home for the Holidays?
+Perry como
+10
+
+Music: 1950s: Artist/Band: (We're Gonna) Rock Around The Clock?
+Bill haley & his comets
+10
+
+Music: 1950s: Artist/Band: (You've Got) The Magic Touch?
+The platters
+10
+
+Music: 1950s: Artist/Band: 11th Hour Melody?
+Al hibbler
+10
+
+Music: 1950s: Artist/Band: 16 Candles?
+The crests
+10
+
+Music: 1950s: Artist/Band: 26 Miles (Santa Catalina)?
+The four preps
+10
+
+Music: 1950s: Artist/Band: A Big Hunk O' Love?
+Elvis presley
+10
+
+Music: 1950s: Artist/Band: A Boy Without A Girl?
+Frankie avalon
+10
+
+Music: 1950s: Artist/Band: A Carnival in Venice?
+The mills brothers
+10
+
+Music: 1950s: Artist/Band: A Casual Look?
+The six teens
+10
+
+Music: 1950s: Artist/Band: A Certain Smile?
+Johnny mathis
+10
+
+Music: 1950s: Artist/Band: A Fallen Star?
+Nick noble
+10
+
+Music: 1950s: Artist/Band: A Girl, A Girl (Zoom-Ba Di Alli Nella)?
+Eddie fisher
+10
+
+Music: 1950s: Artist/Band: A Guy Is A Guy?
+Doris day
+10
+
+Music: 1950s: Artist/Band: A House with Love in It?
+The four lads
+10
+
+Music: 1950s: Artist/Band: A Letter to an Angel?
+Jimmy clanton
+10
+
+Music: 1950s: Artist/Band: A Little Love Can Go a Long, Long Way?
+The dream weavers
+10
+
+Music: 1950s: Artist/Band: A Lover's Question?
+Clyde mcphatter
+10
+
+Music: 1950s: Artist/Band: A Man Chases a Girl (Until She Catches Him)?
+Eddie fisher
+10
+
+Music: 1950s: Artist/Band: A Part of Me?
+Jimmy clanton
+10
+
+Music: 1950s: Artist/Band: A Poor Man's Roses (or a Rich Man's Gold)?
+Patti page
+10
+
+Music: 1950s: Artist/Band: A Rose and a Baby Ruth?
+George hamilton iv
+10
+
+Music: 1950s: Artist/Band: A Story Untold?
+The crew-cuts
+10
+
+Music: 1950s: Artist/Band: A Sweet Old Fashioned Girl?
+Teresa brewer
+10
+
+Music: 1950s: Artist/Band: A Tear Fell?
+Teresa brewer
+10
+
+Music: 1950s: Artist/Band: A Teen Age Prayer?
+Gloria mann
+10
+
+Music: 1950s: Artist/Band: A Teenager In Love?
+Dion & the belmonts
+10
+
+Music: 1950s: Artist/Band: A Teenager's Romance?
+Ricky nelson
+10
+
+Music: 1950s: Artist/Band: A Very Precious Love?
+The ames brothers
+10
+
+Music: 1950s: Artist/Band: A White Sport Coat (and a Pink Carnation)?
+Marty robbins
+10
+
+Music: 1950s: Artist/Band: A Woman in Love?
+The four aces featuring al alberts
+10
+
+Music: 1950s: Artist/Band: A Wonderful Time Up There?
+Pat boone
+10
+
+Music: 1950s: Artist/Band: A Worried Man?
+The kingston trio
+10
+
+Music: 1950s: Artist/Band: After School?
+Randy starr
+10
+
+Music: 1950s: Artist/Band: After the Lights Go Down Low?
+Al hibbler
+10
+
+Music: 1950s: Artist/Band: Ain't That A Shame?
+Pat boone
+10
+
+Music: 1950s: Artist/Band: Alabama Jubilee?
+Ferko string band
+10
+
+Music: 1950s: Artist/Band: All At Once You Love Her?
+Perry como
+10
+
+Music: 1950s: Artist/Band: All I Have To Do Is Dream?
+The everly brothers
+10
+
+Music: 1950s: Artist/Band: All I Want For Christmas Is My Two Front Teeth?
+Spike jones
+10
+
+Music: 1950s: Artist/Band: All My Love (Bolero)?
+Patti page
+10
+
+Music: 1950s: Artist/Band: All Over Again?
+Johnny cash & the tennessee two
+10
+
+Music: 1950s: Artist/Band: All Shook Up?
+Elvis presley
+10
+
+Music: 1950s: Artist/Band: All the Time?
+Johnny mathis
+10
+
+Music: 1950s: Artist/Band: All the Way?
+Frank sinatra
+10
+
+Music: 1950s: Artist/Band: Allegheny Moon?
+Patti page
+10
+
+Music: 1950s: Artist/Band: Almost Grown?
+Chuck berry
+10
+
+Music: 1950s: Artist/Band: Almost Paradise?
+Roger williams
+10
+
+Music: 1950s: Artist/Band: Alone (Why Must I Be Alone)?
+Shepherd sisters
+10
+
+Music: 1950s: Artist/Band: Along Came Jones?
+The coasters
+10
+
+Music: 1950s: Artist/Band: Alvin's Harmonica?
+The chipmunks & David seville
+10
+
+Music: 1950s: Artist/Band: Always You?
+Betty madigan
+10
+
+Music: 1950s: Artist/Band: Always?
+Sammy turner
+10
+
+Music: 1950s: Artist/Band: Am I a Toy or a Treasure?
+Kay starr
+10
+
+Music: 1950s: Artist/Band: Among My Souvenirs?
+Connie francis
+10
+
+Music: 1950s: Artist/Band: Amukiriki (The Lord Willing)?
+Les paul & mary ford
+10
+
+Music: 1950s: Artist/Band: An Affair to Remember (Our Love Affair)?
+Vic damone
+10
+
+Music: 1950s: Artist/Band: Anastasia?
+Pat boone
+10
+
+Music: 1950s: Artist/Band: And That Reminds Me (My Heart Reminds Me)?
+Della reese
+10
+
+Music: 1950s: Artist/Band: Anema E Core (With All My Heart and Soul)?
+Eddie fisher
+10
+
+Music: 1950s: Artist/Band: Angel Baby?
+Dean martin
+10
+
+Music: 1950s: Artist/Band: Angels in the Sky?
+The crew-cuts
+10
+
+Music: 1950s: Artist/Band: Another Time, Another Place?
+Patti page
+10
+
+Music: 1950s: Artist/Band: Anyway You Want Me (That's How I Will Be)?
+Elvis presley
+10
+
+Music: 1950s: Artist/Band: Ape Call?
+Nervous norvus
+10
+
+Music: 1950s: Artist/Band: April In Paris?
+Count basie & his orchestra
+10
+
+Music: 1950s: Artist/Band: April Love?
+Pat boone
+10
+
+Music: 1950s: Artist/Band: Are You Really Mine?
+Jimmie rodgers
+10
+
+Music: 1950s: Artist/Band: Are You Satisfied?
+Rusty draper
+10
+
+Music: 1950s: Artist/Band: Are You Sincere?
+Andy williams
+10
+
+Music: 1950s: Artist/Band: At My Front Door (Crazy Little Mama)?
+Pat boone
+10
+
+Music: 1950s: Artist/Band: At the Darktown Strutters Ball (Italian Style)?
+Lou monte
+10
+
+Music: 1950s: Artist/Band: At the Hop?
+Danny & the juniors
+10
+
+Music: 1950s: Artist/Band: Auctioneer?
+Leroy van dyke
+10
+
+Music: 1950s: Artist/Band: Auf Wiederseh'n Sweetheart?
+Vera lynn and chorus
+10
+
+Music: 1950s: Artist/Band: Baby Baby Baby?
+Teresa brewer
+10
+
+Music: 1950s: Artist/Band: Baby Doll?
+Andy williams
+10
+
+Music: 1950s: Artist/Band: Baby Talk?
+Jan & dean
+10
+
+Music: 1950s: Artist/Band: Back In the U.S.A?
+Chuck berry
+10
+
+Music: 1950s: Artist/Band: Bad Boy?
+The jive bombers
+10
+
+Music: 1950s: Artist/Band: Ballad Of A Teenage Queen?
+Johnny cash & the tennessee two
+10
+
+Music: 1950s: Artist/Band: Ballad Of Davy Crockett?
+Bill hayes
+10
+
+Music: 1950s: Artist/Band: Banana Boat (Day-O)?
+Harry belafonte
+10
+
+Music: 1950s: Artist/Band: Battle Hymn of the Republic?
+The mormon tabernacle choir
+10
+
+Music: 1950s: Artist/Band: Baubles, Bangles and Beads?
+Kirby stone four
+10
+
+Music: 1950s: Artist/Band: Baubles, Bangles, and Beads?
+Peggy lee
+10
+
+Music: 1950s: Artist/Band: Be My Guest?
+Fats domino
+10
+
+Music: 1950s: Artist/Band: Be My Life's Companion?
+Rosemary clooney
+10
+
+Music: 1950s: Artist/Band: Be My Love?
+Mario lanza
+10
+
+Music: 1950s: Artist/Band: Be-Bop Baby?
+Ricky nelson
+10
+
+Music: 1950s: Artist/Band: Be-Bop-A-Lula?
+Gene vincent & his blue caps
+10
+
+Music: 1950s: Artist/Band: Beautiful Brown Eyes?
+Rosemary clooney
+10
+
+Music: 1950s: Artist/Band: Because Of You?
+Tony bennett
+10
+
+Music: 1950s: Artist/Band: Been So Long?
+The pastels
+10
+
+Music: 1950s: Artist/Band: Beep Beep?
+The playmates
+10
+
+Music: 1950s: Artist/Band: Believe Me?
+Royal teens
+10
+
+Music: 1950s: Artist/Band: Believe What You Say?
+Ricky nelson
+10
+
+Music: 1950s: Artist/Band: Bell Bottom Blues?
+Teresa brewer
+10
+
+Music: 1950s: Artist/Band: Belle, Belle, My Liberty Belle?
+Guy mitchell
+10
+
+Music: 1950s: Artist/Band: Belonging to Someone?
+Patti page
+10
+
+Music: 1950s: Artist/Band: Bernadine?
+Pat boone
+10
+
+Music: 1950s: Artist/Band: Betty and Dupree?
+Chuck willis
+10
+
+Music: 1950s: Artist/Band: Betty Lou Got a New Pair of Shoes?
+Bobby freeman
+10
+
+Music: 1950s: Artist/Band: Bewitched?
+Doris day
+10
+
+Music: 1950s: Artist/Band: Big Bopper's Wedding?
+Big bopper
+10
+
+Music: 1950s: Artist/Band: Big Man?
+The four preps
+10
+
+Music: 1950s: Artist/Band: Billy?
+Kathy linden
+10
+
+Music: 1950s: Artist/Band: Bimbombey?
+Jimmie rodgers
+10
+
+Music: 1950s: Artist/Band: Bird Dog?
+The everly brothers
+10
+
+Music: 1950s: Artist/Band: Birth of the Boogie?
+Bill haley & his comets
+10
+
+Music: 1950s: Artist/Band: Black Denim Trousers?
+The cheers
+10
+
+Music: 1950s: Artist/Band: Black Slacks?
+Joe bennett & the sparkletones
+10
+
+Music: 1950s: Artist/Band: Blue Blue Day?
+Don gibson
+10
+
+Music: 1950s: Artist/Band: Blue Hawaii?
+Billy vaughn & his orchestra
+10
+
+Music: 1950s: Artist/Band: Blue Monday?
+Fats domino
+10
+
+Music: 1950s: Artist/Band: Blue Suede Shoes?
+Carl perkins
+10
+
+Music: 1950s: Artist/Band: Blueberry Hill?
+Fats domino
+10
+
+Music: 1950s: Artist/Band: Blues In the Night?
+Rosemary clooney
+10
+
+Music: 1950s: Artist/Band: Bo Weevil?
+Teresa brewer
+10
+
+Music: 1950s: Artist/Band: Bobby Sox To Stockings?
+Frankie avalon
+10
+
+Music: 1950s: Artist/Band: Bongo Rock?
+Preston epps
+10
+
+Music: 1950s: Artist/Band: Bony Moronie?
+Larry williams
+10
+
+Music: 1950s: Artist/Band: Boom Boom Boomerang?
+The decastro sisters
+10
+
+Music: 1950s: Artist/Band: Born to Be With You?
+The chordettes
+10
+
+Music: 1950s: Artist/Band: Born Too Late?
+Poni-tails
+10
+
+Music: 1950s: Artist/Band: Botch-A-Me (Ba-Ba-Baciami Piccina)?
+Rosemary clooney
+10
+
+Music: 1950s: Artist/Band: Breathless?
+Jerry lee lewis
+10
+
+Music: 1950s: Artist/Band: Broken-Hearted Melody?
+Sarah vaughan
+10
+
+Music: 1950s: Artist/Band: Burn That Candle?
+Bill haley & his comets
+10
+
+Music: 1950s: Artist/Band: Butterfly?
+Andy williams
+10
+
+Music: 1950s: Artist/Band: Buzz-Buzz-Buzz?
+Hollywood flames
+10
+
+Music: 1950s: Artist/Band: Bye Bye Love?
+The everly brothers
+10
+
+Music: 1950s: Artist/Band: C.C. Rider?
+Chuck willis
+10
+
+Music: 1950s: Artist/Band: C'est La Vie?
+Sarah vaughan
+10
+
+Music: 1950s: Artist/Band: C'est Si Bon (It's So Good)?
+Eartha kitt
+10
+
+Music: 1950s: Artist/Band: C'mon Everybody?
+Eddie cochran
+10
+
+Music: 1950s: Artist/Band: Ca, C'est L'amour?
+Tony bennett
+10
+
+Music: 1950s: Artist/Band: Call Me?
+Johnny mathis
+10
+
+Music: 1950s: Artist/Band: Can I Steal a Little Love?
+Frank sinatra
+10
+
+Music: 1950s: Artist/Band: Can You Find It in Your Heart?
+Tony bennett
+10
+
+Music: 1950s: Artist/Band: Cannonball?
+Duane eddy
+10
+
+Music: 1950s: Artist/Band: Cara Mia?
+David whitfield with mantovani & his orchestra
+10
+
+Music: 1950s: Artist/Band: Caravan?
+Ralph marterie
+10
+
+Music: 1950s: Artist/Band: Caribbean?
+Mitchell torok
+10
+
+Music: 1950s: Artist/Band: Carol?
+Chuck berry
+10
+
+Music: 1950s: Artist/Band: Catch A Falling Star?
+Perry como
+10
+
+Music: 1950s: Artist/Band: Cerveza?
+Boots brown & his blockbusters
+10
+
+Music: 1950s: Artist/Band: Cha-Hua-Hua?
+The pets
+10
+
+Music: 1950s: Artist/Band: Chains Of Love?
+Pat boone
+10
+
+Music: 1950s: Artist/Band: Chances Are?
+Johnny mathis
+10
+
+Music: 1950s: Artist/Band: Chanson D'Amour (Song of Love)?
+Art & dotty todd
+10
+
+Music: 1950s: Artist/Band: Chantilly Lace?
+Big bopper
+10
+
+Music: 1950s: Artist/Band: Charlie Brown?
+The coasters
+10
+
+Music: 1950s: Artist/Band: Chattanoogie Shoe-Shine Boy?
+Red foley
+10
+
+Music: 1950s: Artist/Band: Chee Chee-Oo Chee (Sang the Little Bird)?
+Perry como & jaye p. morgan
+10
+
+Music: 1950s: Artist/Band: Cherry Pink (and Apple Blossom White)?
+Alan dale
+10
+
+Music: 1950s: Artist/Band: Choo'n Gum?
+Teresa brewer
+10
+
+Music: 1950s: Artist/Band: Chop Chop Boom?
+The crew-cuts
+10
+
+Music: 1950s: Artist/Band: Christmas Alphabet?
+The mcguire sisters
+10
+
+Music: 1950s: Artist/Band: Christmas Dragnet (Parts 1 &?
+Stan freberg
+10
+
+Music: 1950s: Artist/Band: Ciao, Ciao Bambina?
+Jacky noguez & his orchestra
+10
+
+Music: 1950s: Artist/Band: Cinco Robles (Five Oaks)?
+Russell arms
+10
+
+Music: 1950s: Artist/Band: Cinnamon Sinner?
+Tony bennett
+10
+
+Music: 1950s: Artist/Band: City of Angels?
+The highlights
+10
+
+Music: 1950s: Artist/Band: Claudette?
+The everly brothers
+10
+
+Music: 1950s: Artist/Band: Click Clack?
+Dicky doo & the don'ts
+10
+
+Music: 1950s: Artist/Band: Cocoanut Woman?
+Harry belafonte
+10
+
+Music: 1950s: Artist/Band: Cold Cold Heart?
+Tony bennett
+10
+
+Music: 1950s: Artist/Band: Come Go with Me?
+The dell-vikings
+10
+
+Music: 1950s: Artist/Band: Come Into My Heart?
+Lloyd price
+10
+
+Music: 1950s: Artist/Band: Come On and Get Me?
+Fabian
+10
+
+Music: 1950s: Artist/Band: Come On-a My House?
+Rosemary clooney
+10
+
+Music: 1950s: Artist/Band: Come Softly to Me?
+The fleetwoods
+10
+
+Music: 1950s: Artist/Band: Come What May?
+Patti page
+10
+
+Music: 1950s: Artist/Band: Confidential?
+Sonny knight
+10
+
+Music: 1950s: Artist/Band: Cool Shake?
+The dell-vikings
+10
+
+Music: 1950s: Artist/Band: Could This Be Magic?
+The dubs
+10
+
+Music: 1950s: Artist/Band: Count Your Blessings (Instead of Sheep)?
+Eddie fisher
+10
+
+Music: 1950s: Artist/Band: Crazy 'Bout Ya Baby?
+The crew-cuts
+10
+
+Music: 1950s: Artist/Band: Crazy Eyes for You?
+Bobby hamilton
+10
+
+Music: 1950s: Artist/Band: Crazy Love?
+Paul anka
+10
+
+Music: 1950s: Artist/Band: Crazy, Man, Crazy?
+Bill haley & his comets
+10
+
+Music: 1950s: Artist/Band: Croce Di Oro (Cross of Gold)?
+Patti page
+10
+
+Music: 1950s: Artist/Band: Cross Over the Bridge?
+Patti page
+10
+
+Music: 1950s: Artist/Band: Crossfire?
+Johnny & the hurricanes
+10
+
+Music: 1950s: Artist/Band: Cry Baby?
+Bonnie sisters
+10
+
+Music: 1950s: Artist/Band: Cry Me A River?
+Julie london
+10
+
+Music: 1950s: Artist/Band: Cry?
+Johnnie ray and the four lads
+10
+
+Music: 1950s: Artist/Band: Crying In the Chapel?
+The orioles
+10
+
+Music: 1950s: Artist/Band: Cuddle Me?
+Ronnie gaylord
+10
+
+Music: 1950s: Artist/Band: Daddy-O?
+The fontane sisters
+10
+
+Music: 1950s: Artist/Band: Daddy's Little Girl?
+Mills brothers
+10
+
+Music: 1950s: Artist/Band: Dance Everyone Dance?
+Betty madigan
+10
+
+Music: 1950s: Artist/Band: Dance Only with Me?
+Perry como
+10
+
+Music: 1950s: Artist/Band: Dance to the Bop?
+Gene vincent & his blue caps
+10
+
+Music: 1950s: Artist/Band: Dance With Me Henry (Wallflower)?
+Georgia gibbs
+10
+
+Music: 1950s: Artist/Band: Dance With Me?
+The drifters
+10
+
+Music: 1950s: Artist/Band: Dancin' With Someone (Longin' For You)?
+Teresa brewer
+10
+
+Music: 1950s: Artist/Band: Danger! Heartbreak Ahead?
+Jaye p. morgan
+10
+
+Music: 1950s: Artist/Band: Danny Boy?
+Conway twitty
+10
+
+Music: 1950s: Artist/Band: Dark Moon?
+Gale storm
+10
+
+Music: 1950s: Artist/Band: Deck of Cards?
+Wink martindale
+10
+
+Music: 1950s: Artist/Band: Dede Dinah?
+Frankie avalon
+10
+
+Music: 1950s: Artist/Band: Deep Purple?
+Billy ward and his dominoes
+10
+
+Music: 1950s: Artist/Band: Delicado?
+Percy faith & his orchestra
+10
+
+Music: 1950s: Artist/Band: Delicious!?
+Jim backus & friend
+10
+
+Music: 1950s: Artist/Band: Delilah Jones?
+The mcguire sisters
+10
+
+Music: 1950s: Artist/Band: Dennis the Menace?
+Rosemary clooney and jimmy boyd
+10
+
+Music: 1950s: Artist/Band: Detour?
+Patti page
+10
+
+Music: 1950s: Artist/Band: Devoted to You?
+The everly brothers
+10
+
+Music: 1950s: Artist/Band: Diana?
+Paul anka
+10
+
+Music: 1950s: Artist/Band: Dim, Dim the Lights (I Want Some Atmosphere)?
+Bill haley & his comets
+10
+
+Music: 1950s: Artist/Band: Ding Dong?
+The mcguire sisters
+10
+
+Music: 1950s: Artist/Band: Dixie Danny?
+The laurie sisters
+10
+
+Music: 1950s: Artist/Band: Do You Wanna Dance?
+Bobby freeman
+10
+
+Music: 1950s: Artist/Band: Dogface Soldier?
+Russ morgan & chorus
+10
+
+Music: 1950s: Artist/Band: Domani (Tomorrow)?
+Julius larosa
+10
+
+Music: 1950s: Artist/Band: Don't Ask Me Why?
+Elvis presley
+10
+
+Music: 1950s: Artist/Band: Don't Be Angry?
+The crew-cuts
+10
+
+Music: 1950s: Artist/Band: Don't Be Cruel?
+Elvis presley
+10
+
+Music: 1950s: Artist/Band: Don't Forbid Me?
+Pat boone
+10
+
+Music: 1950s: Artist/Band: Don't Go Home?
+The playmates
+10
+
+Music: 1950s: Artist/Band: Don't Go to Strangers?
+Vaughn monroe
+10
+
+Music: 1950s: Artist/Band: Don't Let Go?
+Roy hamilton
+10
+
+Music: 1950s: Artist/Band: Don't Let the Stars Get In Your Eyes?
+Perry como
+10
+
+Music: 1950s: Artist/Band: Don't Pity Me?
+Dion & the belmonts
+10
+
+Music: 1950s: Artist/Band: Don't Take Your Guns to Town?
+Johnny cash & the tennessee two
+10
+
+Music: 1950s: Artist/Band: Don't Take Your Love From Me?
+The three suns
+10
+
+Music: 1950s: Artist/Band: Don't Worry 'bout Me?
+Frank sinatra
+10
+
+Music: 1950s: Artist/Band: Don't You Know?
+Della reese
+10
+
+Music: 1950s: Artist/Band: Don't?
+Elvis presley
+10
+
+Music: 1950s: Artist/Band: Doncha' Think It's Time?
+Elvis presley
+10
+
+Music: 1950s: Artist/Band: Donna?
+Ritchie valens
+10
+
+Music: 1950s: Artist/Band: Dottie?
+Danny & the juniors
+10
+
+Music: 1950s: Artist/Band: Down the Aisle of Love?
+The quin-tones
+10
+
+Music: 1950s: Artist/Band: Dragnet?
+Ray anthony & his orchestra
+10
+
+Music: 1950s: Artist/Band: Dream Lover?
+Bobby darin
+10
+
+Music: 1950s: Artist/Band: Dungaree Doll?
+Eddie fisher
+10
+
+Music: 1950s: Artist/Band: Early in the Morning?
+Buddy holly
+10
+
+Music: 1950s: Artist/Band: Earth Angel (Will You Be Mine)?
+The penguins
+10
+
+Music: 1950s: Artist/Band: Ebb Tide?
+Frank chacksfield & his orchestra
+10
+
+Music: 1950s: Artist/Band: Eddie My Love?
+The fontane sisters
+10
+
+Music: 1950s: Artist/Band: El Paso?
+Marty robbins
+10
+
+Music: 1950s: Artist/Band: El Rancho Rock?
+The champs
+10
+
+Music: 1950s: Artist/Band: Eloise?
+Kay thompson
+10
+
+Music: 1950s: Artist/Band: Empty Arms?
+Teresa brewer
+10
+
+Music: 1950s: Artist/Band: Enchanted Island?
+The four lads
+10
+
+Music: 1950s: Artist/Band: Enchanted?
+The platters
+10
+
+Music: 1950s: Artist/Band: Endless Sleep?
+Jody reynolds
+10
+
+Music: 1950s: Artist/Band: Endlessly?
+Brook benton
+10
+
+Music: 1950s: Artist/Band: English Muffins and Irish Stew?
+Sylvia syms
+10
+
+Music: 1950s: Artist/Band: Ev'ry Day of My Life?
+The mcguire sisters
+10
+
+Music: 1950s: Artist/Band: Every Night (I Pray)?
+The chantels
+10
+
+Music: 1950s: Artist/Band: Everybody Likes To Cha Cha Cha?
+Sam cooke
+10
+
+Music: 1950s: Artist/Band: Everybody Loves A Lover?
+Doris day
+10
+
+Music: 1950s: Artist/Band: Everybody's Got a Home But Me?
+Eddie fisher
+10
+
+Music: 1950s: Artist/Band: Experience Unnecessary?
+Sarah vaughan
+10
+
+Music: 1950s: Artist/Band: Fabulous Character?
+Sarah vaughan
+10
+
+Music: 1950s: Artist/Band: Fabulous?
+Charlie gracie
+10
+
+Music: 1950s: Artist/Band: Fallin'?
+Connie francis
+10
+
+Music: 1950s: Artist/Band: Farmer John?
+The premiers
+10
+
+Music: 1950s: Artist/Band: Fascination?
+Jane morgan & the troubadors
+10
+
+Music: 1950s: Artist/Band: Feet Up (Pat Him On the Po-Po)?
+Guy mitchell
+10
+
+Music: 1950s: Artist/Band: Fibbin'?
+Patti page
+10
+
+Music: 1950s: Artist/Band: Firefly?
+Tony bennett
+10
+
+Music: 1950s: Artist/Band: First Date, First Kiss, First Love?
+Sonny james
+10
+
+Music: 1950s: Artist/Band: Flowers Mean Forgiveness?
+Frank sinatra
+10
+
+Music: 1950s: Artist/Band: Flying Saucer the 2nd?
+Buchanan & goodman
+10
+
+Music: 1950s: Artist/Band: Fooled?
+Perry como
+10
+
+Music: 1950s: Artist/Band: Fools' Hall of Fame?
+Pat boone
+10
+
+Music: 1950s: Artist/Band: For A Penny?
+Pat boone
+10
+
+Music: 1950s: Artist/Band: For My Good Fortune?
+Pat boone
+10
+
+Music: 1950s: Artist/Band: For Your Love?
+Ed townsend
+10
+
+Music: 1950s: Artist/Band: For Your Precious Love?
+Jerry butler & the impressions
+10
+
+Music: 1950s: Artist/Band: Forever Darling?
+The ames brothers
+10
+
+Music: 1950s: Artist/Band: Forget Me Not?
+Kalin twins
+10
+
+Music: 1950s: Artist/Band: Fortune in Dreams?
+Kay starr
+10
+
+Music: 1950s: Artist/Band: Forty Miles of Bad Road?
+Duane eddy & the rebels
+10
+
+Music: 1950s: Artist/Band: Four Walls?
+Jim reeves
+10
+
+Music: 1950s: Artist/Band: Frankie?
+Connie francis
+10
+
+Music: 1950s: Artist/Band: Fraulein?
+Bobby helms
+10
+
+Music: 1950s: Artist/Band: Free?
+Tommy leonetti
+10
+
+Music: 1950s: Artist/Band: Freight Train?
+Rusty draper
+10
+
+Music: 1950s: Artist/Band: Friendly Persuasion (Thee I Love)?
+Pat boone
+10
+
+Music: 1950s: Artist/Band: From the Candy Store on the Corner to the Chapel on the Hill?
+Tony bennett
+10
+
+Music: 1950s: Artist/Band: From the Vine Came the Grape?
+The gaylords
+10
+
+Music: 1950s: Artist/Band: Garden of Eden?
+Joe valino
+10
+
+Music: 1950s: Artist/Band: Gee Whittakers!?
+Pat boone
+10
+
+Music: 1950s: Artist/Band: Gee, But It's Lonely?
+Pat boone
+10
+
+Music: 1950s: Artist/Band: Gee?
+The crows
+10
+
+Music: 1950s: Artist/Band: Get A Job?
+The silhouettes
+10
+
+Music: 1950s: Artist/Band: Ghost Town?
+Don cherry
+10
+
+Music: 1950s: Artist/Band: Gilly Gill Ossenfeffer Katzenelle Bogen by the Sea?
+The four lads
+10
+
+Music: 1950s: Artist/Band: Ginger Bread?
+Frankie avalon
+10
+
+Music: 1950s: Artist/Band: Give Us This Day?
+Joni james
+10
+
+Music: 1950s: Artist/Band: Glad Rag Doll?
+Crazy otto
+10
+
+Music: 1950s: Artist/Band: Glendora?
+Perry como
+10
+
+Music: 1950s: Artist/Band: Go on with the Wedding?
+Patti page
+10
+
+Music: 1950s: Artist/Band: God Bless America?
+Connie francis
+10
+
+Music: 1950s: Artist/Band: Goin' Steady?
+Tommy sands
+10
+
+Music: 1950s: Artist/Band: Gone?
+Ferlin husky
+10
+
+Music: 1950s: Artist/Band: Gonna Find Me a Bluebird?
+Marvin rainwater
+10
+
+Music: 1950s: Artist/Band: Gonna Get Along Without Ya Now?
+Patience & prudence
+10
+
+Music: 1950s: Artist/Band: Gonna Get Along Without You Now?
+Teresa brewer
+10
+
+Music: 1950s: Artist/Band: Good and Lonesome?
+Kay starr
+10
+
+Music: 1950s: Artist/Band: Good Golly, Miss Molly?
+Little richard
+10
+
+Music: 1950s: Artist/Band: Goodbye Baby?
+Jack scott
+10
+
+Music: 1950s: Artist/Band: Goodbye Jimmy, Goodbye?
+Kathy linden
+10
+
+Music: 1950s: Artist/Band: Goodnight My Love, Pleasant Dreams?
+The mcguire sisters
+10
+
+Music: 1950s: Artist/Band: Goodnight, Sweetheart, Goodnight?
+The mcguire sisters
+10
+
+Music: 1950s: Artist/Band: Goody Goody?
+Frankie lymon & the teenagers
+10
+
+Music: 1950s: Artist/Band: Got a Match?
+The daddy-o's
+10
+
+Music: 1950s: Artist/Band: Gotta Travel On?
+Billy grammer
+10
+
+Music: 1950s: Artist/Band: Graduation Day?
+The rover boys
+10
+
+Music: 1950s: Artist/Band: Graduation's Here?
+The fleetwoods
+10
+
+Music: 1950s: Artist/Band: Great Balls of Fire?
+Jerry lee lewis
+10
+
+Music: 1950s: Artist/Band: Green Door?
+Jim lowe
+10
+
+Music: 1950s: Artist/Band: Grenada?
+Frankie laine
+10
+
+Music: 1950s: Artist/Band: Guess Things Happen That Way?
+Johnny cash & the tennessee two
+10
+
+Music: 1950s: Artist/Band: Guess Who?
+Jesse belvin
+10
+
+Music: 1950s: Artist/Band: Guitar Boogie Shuffle?
+The virtues
+10
+
+Music: 1950s: Artist/Band: Gum Drop?
+The crew-cuts
+10
+
+Music: 1950s: Artist/Band: Half As Lovely (Twice as True)?
+Frank sinatra
+10
+
+Music: 1950s: Artist/Band: Half As Much?
+Rosemary clooney
+10
+
+Music: 1950s: Artist/Band: Handy Man?
+Jimmy jones
+10
+
+Music: 1950s: Artist/Band: Hang Up My Rock & Roll Shoes?
+Chuck willis
+10
+
+Music: 1950s: Artist/Band: Happiness Street?
+Georgia gibbs
+10
+
+Music: 1950s: Artist/Band: Happy Christmas, Little Friend?
+Rosemary clooney
+10
+
+Music: 1950s: Artist/Band: Happy Days and Lonely Nights?
+The fontane sisters
+10
+
+Music: 1950s: Artist/Band: Happy, Happy Birthday Baby?
+The tune weavers
+10
+
+Music: 1950s: Artist/Band: Harbor Lights?
+Sammy kaye & his orchestra
+10
+
+Music: 1950s: Artist/Band: Hard Headed Woman?
+Elvis presley
+10
+
+Music: 1950s: Artist/Band: Hard To Get?
+Gisele mackenzie
+10
+
+Music: 1950s: Artist/Band: Have I Told You Lately That I Love You?
+Ricky nelson
+10
+
+Music: 1950s: Artist/Band: He'll Have to Go?
+Jim reeves
+10
+
+Music: 1950s: Artist/Band: He's Got the Whole World (In His Hands)?
+Laurie london
+10
+
+Music: 1950s: Artist/Band: He's Mine?
+The platters
+10
+
+Music: 1950s: Artist/Band: He?
+The mcguire sisters
+10
+
+Music: 1950s: Artist/Band: Heart And Soul?
+The four aces
+10
+
+Music: 1950s: Artist/Band: Heartaches By the Number?
+Guy mitchell
+10
+
+Music: 1950s: Artist/Band: Heartbreak Hotel?
+Elvis presley
+10
+
+Music: 1950s: Artist/Band: Hearts Of Stone?
+The fontane sisters
+10
+
+Music: 1950s: Artist/Band: Heaven on Earth?
+The platters
+10
+
+Music: 1950s: Artist/Band: Heavenly Lover?
+Teresa brewer
+10
+
+Music: 1950s: Artist/Band: Hello, Young Lovers?
+Perry como
+10
+
+Music: 1950s: Artist/Band: Here Comes Summer?
+Jerry keller
+10
+
+Music: 1950s: Artist/Band: Here In My Heart?
+Al martino
+10
+
+Music: 1950s: Artist/Band: Here?
+Tony martin
+10
+
+Music: 1950s: Artist/Band: Hernando's Hideaway?
+Archie bleyer
+10
+
+Music: 1950s: Artist/Band: Hey Little Girl?
+Dee clark
+10
+
+Music: 1950s: Artist/Band: Hey There?
+Rosemary clooney
+10
+
+Music: 1950s: Artist/Band: Hey, Mr. Banjo?
+The sunnysiders
+10
+
+Music: 1950s: Artist/Band: Hey! Jealous Lover?
+Frank sinatra
+10
+
+Music: 1950s: Artist/Band: Hey! Little Girl?
+Techniques
+10
+
+Music: 1950s: Artist/Band: Hi-lili Hi-lo?
+Leslie caron and mel ferrer
+10
+
+Music: 1950s: Artist/Band: Hideaway?
+The four esquires
+10
+
+Music: 1950s: Artist/Band: High Hopes?
+Frank sinatra
+10
+
+Music: 1950s: Artist/Band: High Noon (Do Not Forsake Me)?
+Frankie laine
+10
+
+Music: 1950s: Artist/Band: High School Confidential?
+Jerry lee lewis
+10
+
+Music: 1950s: Artist/Band: High School U.S.A?
+Tommy facenda
+10
+
+Music: 1950s: Artist/Band: High Sign?
+The diamonds
+10
+
+Music: 1950s: Artist/Band: Hit and Run Affair?
+Perry como
+10
+
+Music: 1950s: Artist/Band: Hold Me, Thrill Me, Kiss Me?
+Karen chandler
+10
+
+Music: 1950s: Artist/Band: Hold My Hand?
+Don cornell
+10
+
+Music: 1950s: Artist/Band: Honest I Do?
+Jimmy reed
+10
+
+Music: 1950s: Artist/Band: Honey-Babe?
+Art mooney & chorus
+10
+
+Music: 1950s: Artist/Band: Honeycomb?
+Jimmie rodgers
+10
+
+Music: 1950s: Artist/Band: Honky Tonk (Parts 1 &?
+Bill doggett
+10
+
+Music: 1950s: Artist/Band: Hoop-Dee-Doo?
+Perry como with the fontane sisters
+10
+
+Music: 1950s: Artist/Band: Hot Diggity (Dog Ziggity Boom)?
+Perry como
+10
+
+Music: 1950s: Artist/Band: Hound Dog Man?
+Fabian
+10
+
+Music: 1950s: Artist/Band: Hound Dog?
+Elvis presley
+10
+
+Music: 1950s: Artist/Band: How Are Ya' Fixed for Love?
+Frank sinatra & keely smith
+10
+
+Music: 1950s: Artist/Band: How Blue?
+The mills brothers
+10
+
+Music: 1950s: Artist/Band: How High the Moon?
+Les paul & mary ford
+10
+
+Music: 1950s: Artist/Band: How Important Can It Be?
+Joni james
+10
+
+Music: 1950s: Artist/Band: How the Time Flies?
+Jerry wallace
+10
+
+Music: 1950s: Artist/Band: Hula Love?
+Buddy knox
+10
+
+Music: 1950s: Artist/Band: Humming Bird?
+Frankie laine
+10
+
+Music: 1950s: Artist/Band: Hummingbird?
+Les paul & mary ford
+10
+
+Music: 1950s: Artist/Band: Hushabye?
+The mystics
+10
+
+Music: 1950s: Artist/Band: I Ain't Never?
+Webb pierce
+10
+
+Music: 1950s: Artist/Band: I Almost Lost My Mind?
+Pat boone
+10
+
+Music: 1950s: Artist/Band: I Beg of You?
+Elvis presley
+10
+
+Music: 1950s: Artist/Band: I Believe?
+Frankie laine
+10
+
+Music: 1950s: Artist/Band: I Can Dream, Can't I?
+The andrews sisters
+10
+
+Music: 1950s: Artist/Band: I Can't Love You Enough?
+Lavern baker
+10
+
+Music: 1950s: Artist/Band: I Can't Tell a Waltz from a Tango?
+Patti page
+10
+
+Music: 1950s: Artist/Band: I Confess?
+Perry como
+10
+
+Music: 1950s: Artist/Band: I Could Have Danced All Night?
+Sylvia syms
+10
+
+Music: 1950s: Artist/Band: I Could Have Told You?
+Frank sinatra
+10
+
+Music: 1950s: Artist/Band: I Cried a Tear?
+Lavern baker
+10
+
+Music: 1950s: Artist/Band: I Cried?
+Patti page
+10
+
+Music: 1950s: Artist/Band: I Cross My Fingers?
+Perry como
+10
+
+Music: 1950s: Artist/Band: I Dreamed?
+Betty johnson
+10
+
+Music: 1950s: Artist/Band: I Feel Good?
+Shirley & lee
+10
+
+Music: 1950s: Artist/Band: I Get So Lonely (When I Dream About You)?
+The four knights
+10
+
+Music: 1950s: Artist/Band: I Got a Feeling?
+Ricky nelson
+10
+
+Music: 1950s: Artist/Band: I Got a Wife?
+The mark iv
+10
+
+Music: 1950s: Artist/Band: I Got Stung?
+Elvis presley
+10
+
+Music: 1950s: Artist/Band: I Hear You Knocking?
+Gale storm
+10
+
+Music: 1950s: Artist/Band: I Just Don't Know?
+The four lads
+10
+
+Music: 1950s: Artist/Band: I Like Your Kind of Love?
+Andy williams
+10
+
+Music: 1950s: Artist/Band: I Live Each Day?
+Jerry vale
+10
+
+Music: 1950s: Artist/Band: I Love My Baby (My Baby Loves Me)?
+Jill corey
+10
+
+Music: 1950s: Artist/Band: I Love You Madly?
+The four coins
+10
+
+Music: 1950s: Artist/Band: I Loves You, Porgy?
+Nina simone
+10
+
+Music: 1950s: Artist/Band: I Need You Now?
+Eddie fisher
+10
+
+Music: 1950s: Artist/Band: I Need Your Love Tonight?
+Elvis presley
+10
+
+Music: 1950s: Artist/Band: I Only Have Eyes For You?
+The flamingos
+10
+
+Music: 1950s: Artist/Band: I Only Know I Love You?
+The four aces
+10
+
+Music: 1950s: Artist/Band: I Really Don't Want to Know?
+Les paul & mary ford
+10
+
+Music: 1950s: Artist/Band: I Saw Mommy Kissing Santa Claus?
+Jimmy boyd
+10
+
+Music: 1950s: Artist/Band: I Speak to the Stars?
+Doris day
+10
+
+Music: 1950s: Artist/Band: I Spoke Too Soon?
+The crew-cuts
+10
+
+Music: 1950s: Artist/Band: I Tawt I Taw a Puddy Tat?
+Mel blanc
+10
+
+Music: 1950s: Artist/Band: I Understand (Just How You Feel)?
+The four tunes
+10
+
+Music: 1950s: Artist/Band: I Waited Too Long?
+Lavern baker
+10
+
+Music: 1950s: Artist/Band: I Walk the Line?
+Johnny cash & the tennessee two
+10
+
+Music: 1950s: Artist/Band: I Want To Walk You Home?
+Fats domino
+10
+
+Music: 1950s: Artist/Band: I Want You All to Myself (Just You)?
+Kitty kallen
+10
+
+Music: 1950s: Artist/Band: I Want You to Be My Baby?
+Georgia gibbs
+10
+
+Music: 1950s: Artist/Band: I Want You to Be My Girl?
+Frankie lymon & the teenagers
+10
+
+Music: 1950s: Artist/Band: I Want You to Know?
+Fats domino
+10
+
+Music: 1950s: Artist/Band: I Want You, I Need You, I Love You?
+Elvis presley
+10
+
+Music: 1950s: Artist/Band: I Was the One?
+Elvis presley
+10
+
+Music: 1950s: Artist/Band: I Went to Your Wedding?
+Patti page
+10
+
+Music: 1950s: Artist/Band: I Wish I Wuz?
+Rosemary clooney
+10
+
+Music: 1950s: Artist/Band: I Won't Cry Anymore?
+Tony bennett
+10
+
+Music: 1950s: Artist/Band: I Wonder Why?
+Dion & the belmonts
+10
+
+Music: 1950s: Artist/Band: I Wouldn't Know Where To Begin?
+Eddy arnold
+10
+
+Music: 1950s: Artist/Band: I'll Be Home?
+Pat boone
+10
+
+Music: 1950s: Artist/Band: I'll Be Satisfied?
+Jackie wilson
+10
+
+Music: 1950s: Artist/Band: I'll Come Running Back To You?
+Sam cooke
+10
+
+Music: 1950s: Artist/Band: I'll Never Stop Loving You?
+Doris day
+10
+
+Music: 1950s: Artist/Band: I'll Remember Today?
+Patti page
+10
+
+Music: 1950s: Artist/Band: I'll Remember Tonight?
+Pat boone
+10
+
+Music: 1950s: Artist/Band: I'll Wait for You?
+Frankie avalon
+10
+
+Music: 1950s: Artist/Band: I'll Walk Alone?
+Don cornell
+10
+
+Music: 1950s: Artist/Band: I'm a Fool to Care?
+Les paul & mary ford
+10
+
+Music: 1950s: Artist/Band: I'm a Hog for You?
+The coasters
+10
+
+Music: 1950s: Artist/Band: I'm a Man?
+Fabian
+10
+
+Music: 1950s: Artist/Band: I'm Available?
+Margie rayburn
+10
+
+Music: 1950s: Artist/Band: I'm Gonna Be a Wheel Someday?
+Fats domino
+10
+
+Music: 1950s: Artist/Band: I'm Gonna Get Married?
+Lloyd price
+10
+
+Music: 1950s: Artist/Band: I'm in Love Again?
+Fats domino
+10
+
+Music: 1950s: Artist/Band: I'm Movin' On?
+Ray charles
+10
+
+Music: 1950s: Artist/Band: I'm Never Gonna Tell?
+Jimmie rodgers
+10
+
+Music: 1950s: Artist/Band: I'm Ready?
+Fats domino
+10
+
+Music: 1950s: Artist/Band: I'm Sorry I Made You Cry?
+Connie francis
+10
+
+Music: 1950s: Artist/Band: I'm Sorry?
+The platters
+10
+
+Music: 1950s: Artist/Band: I'm Walkin'?
+Fats domino
+10
+
+Music: 1950s: Artist/Band: I'm Walking Behind You?
+Eddie fisher
+10
+
+Music: 1950s: Artist/Band: I'm Walking?
+Ricky nelson
+10
+
+Music: 1950s: Artist/Band: I've Been Around?
+Fats domino
+10
+
+Music: 1950s: Artist/Band: I've Come of Age?
+Billy storm
+10
+
+Music: 1950s: Artist/Band: I've Got the World On A String?
+Frank sinatra
+10
+
+Music: 1950s: Artist/Band: I've Got You Under My Skin?
+Stan freberg
+10
+
+Music: 1950s: Artist/Band: I've Had It?
+The bell notes
+10
+
+Music: 1950s: Artist/Band: If Dreams Came True?
+Pat boone
+10
+
+Music: 1950s: Artist/Band: If I Had a Girl?
+Rod lauren
+10
+
+Music: 1950s: Artist/Band: If I Had A Penny?
+Rosemary clooney
+10
+
+Music: 1950s: Artist/Band: If Teardrops Were Pennies?
+Rosemary clooney
+10
+
+Music: 1950s: Artist/Band: If You Don't Want My Love?
+Jaye p. morgan
+10
+
+Music: 1950s: Artist/Band: If You Love Me (Really Love Me)?
+Kay starr
+10
+
+Music: 1950s: Artist/Band: If?
+Perry como
+10
+
+Music: 1950s: Artist/Band: In a Shanty in Old Shanty Town?
+Somethin' smith & the redheads
+10
+
+Music: 1950s: Artist/Band: In the Chapel in the Moonlight?
+Kitty kallen
+10
+
+Music: 1950s: Artist/Band: In the Middle Of An Island?
+Tony bennett
+10
+
+Music: 1950s: Artist/Band: In the Middle of the House?
+Vaughn monroe
+10
+
+Music: 1950s: Artist/Band: In the Still Of the Night (I'll Remember)?
+The five satins
+10
+
+Music: 1950s: Artist/Band: Indiscretion?
+Jo stafford
+10
+
+Music: 1950s: Artist/Band: Innamorata?
+Dean martin
+10
+
+Music: 1950s: Artist/Band: Into Each Life Some Rain Must Fall?
+Teresa brewer
+10
+
+Music: 1950s: Artist/Band: Island In the Sun?
+Harry belafonte
+10
+
+Music: 1950s: Artist/Band: Isle of Capri?
+The gaylords
+10
+
+Music: 1950s: Artist/Band: Istanbul (Not Constantinople)?
+The four lads
+10
+
+Music: 1950s: Artist/Band: It Doesn't Matter Anymore?
+Buddy holly
+10
+
+Music: 1950s: Artist/Band: It Isn't Right?
+The platters
+10
+
+Music: 1950s: Artist/Band: It May Sound Silly?
+The mcguire sisters
+10
+
+Music: 1950s: Artist/Band: It Only Hurts for a Little While?
+The ames brothers
+10
+
+Music: 1950s: Artist/Band: It Was I?
+Skip & flip
+10
+
+Music: 1950s: Artist/Band: It Worries Me?
+Frank sinatra
+10
+
+Music: 1950s: Artist/Band: It's a Sin to Tell a Lie?
+Somethin' smith & the redheads
+10
+
+Music: 1950s: Artist/Band: It's A Woman's World?
+The four aces featuring al alberts
+10
+
+Music: 1950s: Artist/Band: It's All in the Game?
+Tommy edwards
+10
+
+Music: 1950s: Artist/Band: It's Almost Tomorrow?
+The dream weavers
+10
+
+Music: 1950s: Artist/Band: It's In the Book (Parts 1 &?
+Johnny standley
+10
+
+Music: 1950s: Artist/Band: It's Just A Matter Of Time?
+Brook benton
+10
+
+Music: 1950s: Artist/Band: It's Late?
+Ricky nelson
+10
+
+Music: 1950s: Artist/Band: It's Not for Me To Say?
+Johnny mathis
+10
+
+Music: 1950s: Artist/Band: It's Only Make Believe?
+Conway twitty
+10
+
+Music: 1950s: Artist/Band: It's Time To Cry?
+Paul anka
+10
+
+Music: 1950s: Artist/Band: It's Too Soon To Know?
+Pat boone
+10
+
+Music: 1950s: Artist/Band: It's You I Love?
+Fats domino
+10
+
+Music: 1950s: Artist/Band: Italian Hucklebuck?
+Lou monte
+10
+
+Music: 1950s: Artist/Band: Itchy Twitchy Feeling?
+Bobby hendricks
+10
+
+Music: 1950s: Artist/Band: Ivory Tower?
+Cathy carr
+10
+
+Music: 1950s: Artist/Band: Ivy Rose?
+Perry como
+10
+
+Music: 1950s: Artist/Band: Jailhouse Rock?
+Elvis presley
+10
+
+Music: 1950s: Artist/Band: Jamaica Farewell?
+Harry belafonte
+10
+
+Music: 1950s: Artist/Band: Jennie Lee?
+Jan & arnie (jan & dean)
+10
+
+Music: 1950s: Artist/Band: Jenny, Jenny?
+Little richard
+10
+
+Music: 1950s: Artist/Band: Jilted?
+Teresa brewer
+10
+
+Music: 1950s: Artist/Band: Jim Dandy?
+Lavern baker & the gliders
+10
+
+Music: 1950s: Artist/Band: Jingle Bell Rock?
+Bobby helms
+10
+
+Music: 1950s: Artist/Band: Jo-Ann?
+The playmates
+10
+
+Music: 1950s: Artist/Band: Joey?
+Betty madigan
+10
+
+Music: 1950s: Artist/Band: John and Marsha?
+Stan freberg
+10
+
+Music: 1950s: Artist/Band: Johnny B. Goode?
+Chuck berry
+10
+
+Music: 1950s: Artist/Band: Judy?
+Frankie vaughan
+10
+
+Music: 1950s: Artist/Band: Juke Box Baby?
+Perry como
+10
+
+Music: 1950s: Artist/Band: June Night?
+Jimmy dorsey orchestra
+10
+
+Music: 1950s: Artist/Band: Just a Dream?
+Jimmy clanton & his rockets
+10
+
+Music: 1950s: Artist/Band: Just a Little Too Much?
+Ricky nelson
+10
+
+Music: 1950s: Artist/Band: Just As Much As Ever?
+Bob beckham
+10
+
+Music: 1950s: Artist/Band: Just Ask Your Heart?
+Frankie avalon
+10
+
+Music: 1950s: Artist/Band: Just Because?
+Lloyd price
+10
+
+Music: 1950s: Artist/Band: Just Between You and Me?
+The chordettes
+10
+
+Music: 1950s: Artist/Band: Just Born (to Be Your Baby)?
+Perry como
+10
+
+Music: 1950s: Artist/Band: Just Keep It Up?
+Dee clark
+10
+
+Music: 1950s: Artist/Band: Just Married?
+Marty robbins
+10
+
+Music: 1950s: Artist/Band: Just to Hold My Hand?
+Clyde mcphatter
+10
+
+Music: 1950s: Artist/Band: Just Walking in the Rain?
+Johnnie ray
+10
+
+Music: 1950s: Artist/Band: Kansas City?
+Wilbert harrison
+10
+
+Music: 1950s: Artist/Band: Kathy-O?
+The diamonds
+10
+
+Music: 1950s: Artist/Band: Keep A Knockin'?
+Little richard
+10
+
+Music: 1950s: Artist/Band: Keep It Gay?
+Perry como
+10
+
+Music: 1950s: Artist/Band: Kewpie Doll?
+Perry como
+10
+
+Music: 1950s: Artist/Band: Kiss Me Another?
+Georgia gibbs
+10
+
+Music: 1950s: Artist/Band: Kiss Of Fire?
+Georgia gibbs
+10
+
+Music: 1950s: Artist/Band: Kissin' Time?
+Bobby rydell
+10
+
+Music: 1950s: Artist/Band: Knee Deep in the Blues?
+Guy mitchell
+10
+
+Music: 1950s: Artist/Band: Ko Ko Mo (I Love You So)?
+Perry como
+10
+
+Music: 1950s: Artist/Band: Kookie, Kookie (Lend Me Your Comb)?
+Edward byrnes with connie stevens
+10
+
+Music: 1950s: Artist/Band: La Bamba?
+Ritchie valens
+10
+
+Music: 1950s: Artist/Band: La Dee Dah?
+Billy & lillie
+10
+
+Music: 1950s: Artist/Band: La Mer (Beyond the Sea)?
+Roger williams
+10
+
+Music: 1950s: Artist/Band: La Paloma?
+Billy vaughn & his orchestra
+10
+
+Music: 1950s: Artist/Band: La-Do-Dada?
+Dale hawkins
+10
+
+Music: 1950s: Artist/Band: Land of Dreams?
+Hugo winterhalter
+10
+
+Music: 1950s: Artist/Band: Lasting Love?
+Sal mineo
+10
+
+Music: 1950s: Artist/Band: Lavender-Blue?
+Sammy turner
+10
+
+Music: 1950s: Artist/Band: Lay Down Your Arms?
+The chordettes
+10
+
+Music: 1950s: Artist/Band: Lazy Mary?
+Lou monte
+10
+
+Music: 1950s: Artist/Band: Lazy Summer Night?
+The four preps
+10
+
+Music: 1950s: Artist/Band: Learnin' the Blues?
+Frank sinatra
+10
+
+Music: 1950s: Artist/Band: Left Right Out of Your Heart (Hi Lee Hi Lo Hi Lup Up Up)?
+Patti page
+10
+
+Music: 1950s: Artist/Band: Leroy?
+Jack scott
+10
+
+Music: 1950s: Artist/Band: Let Me Go, Lover?
+Joan weber
+10
+
+Music: 1950s: Artist/Band: Let the Bells Keep Ringing?
+Paul anka
+10
+
+Music: 1950s: Artist/Band: Let the Four Winds Blow?
+Roy brown
+10
+
+Music: 1950s: Artist/Band: Let the Good Times Roll?
+Shirley & lee
+10
+
+Music: 1950s: Artist/Band: Liechtensteiner Polka?
+Will glahe & his orchestra
+10
+
+Music: 1950s: Artist/Band: Lies?
+Perry como
+10
+
+Music: 1950s: Artist/Band: Lips of Wine?
+Andy williams
+10
+
+Music: 1950s: Artist/Band: Lipstick and Candy and Rubbersole Shoes?
+Julius larosa
+10
+
+Music: 1950s: Artist/Band: Lipstick On Your Collar?
+Connie francis
+10
+
+Music: 1950s: Artist/Band: Lisbon Antigua (in Old Lisbon)?
+Mitch miller & his orchestra
+10
+
+Music: 1950s: Artist/Band: Lisbon Antigua?
+Nelson riddle & his orchestra
+10
+
+Music: 1950s: Artist/Band: Little Bitty Pretty One?
+Thurston harris
+10
+
+Music: 1950s: Artist/Band: Little Blue Riding Hood?
+Stan freberg
+10
+
+Music: 1950s: Artist/Band: Little Darlin'?
+The diamonds
+10
+
+Music: 1950s: Artist/Band: Little Sandy Sleighfoot?
+Jimmy dean
+10
+
+Music: 1950s: Artist/Band: Little Space Girl?
+Jesse lee turner
+10
+
+Music: 1950s: Artist/Band: Little Star?
+The elegants
+10
+
+Music: 1950s: Artist/Band: Little White Lies?
+Betty johnson
+10
+
+Music: 1950s: Artist/Band: Living Doll?
+Cliff richard & the drifters
+10
+
+Music: 1950s: Artist/Band: Lollipop?
+The chordettes
+10
+
+Music: 1950s: Artist/Band: Lonely Blue Boy?
+Conway twitty
+10
+
+Music: 1950s: Artist/Band: Lonely Boy?
+Paul anka
+10
+
+Music: 1950s: Artist/Band: Lonely for You?
+Gary stites
+10
+
+Music: 1950s: Artist/Band: Lonely Island?
+Sam cooke
+10
+
+Music: 1950s: Artist/Band: Lonely Street?
+Andy williams
+10
+
+Music: 1950s: Artist/Band: Lonely Teardrops?
+Jackie wilson
+10
+
+Music: 1950s: Artist/Band: Lonesome Town?
+Ricky nelson
+10
+
+Music: 1950s: Artist/Band: Long Tall Sally?
+Little richard
+10
+
+Music: 1950s: Artist/Band: Longing For You?
+Teresa brewer
+10
+
+Music: 1950s: Artist/Band: Look Homeward Angel?
+Johnnie ray
+10
+
+Music: 1950s: Artist/Band: Look Out the Window (And See How I'm Standin' In the Rain)?
+Perry como
+10
+
+Music: 1950s: Artist/Band: Lotta Lovin'?
+Gene vincent & his blue caps
+10
+
+Music: 1950s: Artist/Band: Love and Marriage?
+Frank sinatra
+10
+
+Music: 1950s: Artist/Band: Love I You (You I Love)?
+The gaylords
+10
+
+Music: 1950s: Artist/Band: Love Is a Golden Ring?
+Frankie laine & easy riders
+10
+
+Music: 1950s: Artist/Band: Love Is A Many-Splendored Thing?
+The four aces
+10
+
+Music: 1950s: Artist/Band: Love Is All We Need?
+Tommy edwards
+10
+
+Music: 1950s: Artist/Band: Love Is Strange?
+Mickey & sylvia
+10
+
+Music: 1950s: Artist/Band: Love Letters In the Sand?
+Pat boone
+10
+
+Music: 1950s: Artist/Band: Love Makes the World Go 'Round?
+Perry como
+10
+
+Music: 1950s: Artist/Band: Love Me Forever?
+Eydie gorme
+10
+
+Music: 1950s: Artist/Band: Love Me or Leave Me?
+Sammy davis, jr.
+10
+
+Music: 1950s: Artist/Band: Love Me Tender?
+Elvis presley
+10
+
+Music: 1950s: Artist/Band: Love Me to Pieces?
+Jill corey
+10
+
+Music: 1950s: Artist/Band: Love Me?
+Elvis presley
+10
+
+Music: 1950s: Artist/Band: Love of My Life?
+The everly brothers
+10
+
+Music: 1950s: Artist/Band: Love Potion #9?
+The clovers
+10
+
+Music: 1950s: Artist/Band: Love You Most of All?
+Sam cooke
+10
+
+Music: 1950s: Artist/Band: Lovely One?
+The four voices
+10
+
+Music: 1950s: Artist/Band: Lovin' Spree?
+Eartha kitt
+10
+
+Music: 1950s: Artist/Band: Loving You?
+Elvis presley
+10
+
+Music: 1950s: Artist/Band: Lucille?
+Little richard
+10
+
+Music: 1950s: Artist/Band: Lucky Devil?
+Carl dobkins, jr.
+10
+
+Music: 1950s: Artist/Band: Lucky Ladybug?
+Billy & lillie
+10
+
+Music: 1950s: Artist/Band: Lucky Lips?
+Ruth brown
+10
+
+Music: 1950s: Artist/Band: Lullaby of Birdland?
+Blue stars
+10
+
+Music: 1950s: Artist/Band: M.T.A?
+The kingston trio
+10
+
+Music: 1950s: Artist/Band: Mack the Knife?
+Bobby darin
+10
+
+Music: 1950s: Artist/Band: Magic Moments?
+Perry como
+10
+
+Music: 1950s: Artist/Band: Make Love to Me!?
+Jo stafford
+10
+
+Music: 1950s: Artist/Band: Make Me a Miracle?
+Jimmie rodgers
+10
+
+Music: 1950s: Artist/Band: Makin' Love?
+Floyd robinson
+10
+
+Music: 1950s: Artist/Band: Mama from the Train?
+Patti page
+10
+
+Music: 1950s: Artist/Band: Mama Look At Bubu?
+Harry belafonte
+10
+
+Music: 1950s: Artist/Band: Mama, Teach Me to Dance?
+Eydie gorme
+10
+
+Music: 1950s: Artist/Band: Mambo Italiano?
+Rosemary clooney
+10
+
+Music: 1950s: Artist/Band: Mambo Rock?
+Bill haley & his comets
+10
+
+Music: 1950s: Artist/Band: Mandolino?
+Les paul & mary ford
+10
+
+Music: 1950s: Artist/Band: Mangos?
+Rosemary clooney
+10
+
+Music: 1950s: Artist/Band: Manhattan Spiritual?
+Reg owen & his orchestra
+10
+
+Music: 1950s: Artist/Band: Marianne?
+The hilltoppers
+10
+
+Music: 1950s: Artist/Band: Marie?
+The four tunes
+10
+
+Music: 1950s: Artist/Band: Marina?
+Rocco granata & the international quartet
+10
+
+Music: 1950s: Artist/Band: Mary Lou?
+Ronnie hawkins
+10
+
+Music: 1950s: Artist/Band: Mary's Boy Child?
+Harry belafonte
+10
+
+Music: 1950s: Artist/Band: May You Always?
+The mcguire sisters
+10
+
+Music: 1950s: Artist/Band: Maybe Baby?
+Buddy holly & the crickets
+10
+
+Music: 1950s: Artist/Band: Maybellene?
+Chuck berry
+10
+
+Music: 1950s: Artist/Band: Mecque, Mecque?
+The gaylords
+10
+
+Music: 1950s: Artist/Band: Melancholy Me?
+Eddy howard
+10
+
+Music: 1950s: Artist/Band: Melodie D'Amour (Melody of Love)?
+The ames brothers
+10
+
+Music: 1950s: Artist/Band: Memories Are Made Of This?
+Dean martin
+10
+
+Music: 1950s: Artist/Band: Memories Of You?
+The four coins
+10
+
+Music: 1950s: Artist/Band: Mexican Hat Rock?
+The applejacks
+10
+
+Music: 1950s: Artist/Band: Midnight Stroll?
+The revels
+10
+
+Music: 1950s: Artist/Band: Mighty Good?
+Ricky nelson
+10
+
+Music: 1950s: Artist/Band: Miracle of Love?
+Eileen rodgers
+10
+
+Music: 1950s: Artist/Band: Mister And Mississippi?
+Patti page
+10
+
+Music: 1950s: Artist/Band: Misty?
+Johnny mathis
+10
+
+Music: 1950s: Artist/Band: Mixed Emotions?
+Rosemary clooney
+10
+
+Music: 1950s: Artist/Band: Mockin' Bird Hill?
+Patti page
+10
+
+Music: 1950s: Artist/Band: Moments to Remember?
+The four lads
+10
+
+Music: 1950s: Artist/Band: Money Burns a Hole in My Pocket?
+Dean martin
+10
+
+Music: 1950s: Artist/Band: Mood Indigo?
+The norman petty trio
+10
+
+Music: 1950s: Artist/Band: Moon Talk?
+Perry como
+10
+
+Music: 1950s: Artist/Band: Moonlight and Roses (Bring Mem'ries of You)?
+The three suns
+10
+
+Music: 1950s: Artist/Band: Moonlight Bay?
+Bing & gary crosby
+10
+
+Music: 1950s: Artist/Band: Moonlight Gambler?
+Frankie laine
+10
+
+Music: 1950s: Artist/Band: Moonlight Swim?
+Tony perkins
+10
+
+Music: 1950s: Artist/Band: More?
+Perry como
+10
+
+Music: 1950s: Artist/Band: Morgen?
+Ivo robic & the songmasters
+10
+
+Music: 1950s: Artist/Band: Most of All?
+Don cornell
+10
+
+Music: 1950s: Artist/Band: Mostly Martha?
+The crew-cuts
+10
+
+Music: 1950s: Artist/Band: Mr. Blue?
+The fleetwoods
+10
+
+Music: 1950s: Artist/Band: Mr. Lee?
+Bobbettes
+10
+
+Music: 1950s: Artist/Band: Mr. Sandman?
+The chordettes
+10
+
+Music: 1950s: Artist/Band: Mr. Wonderful?
+Sarah vaughan
+10
+
+Music: 1950s: Artist/Band: Muskrat Ramble?
+The mcguire sisters
+10
+
+Music: 1950s: Artist/Band: Mutual Admiration Society?
+Teresa brewer
+10
+
+Music: 1950s: Artist/Band: My Baby Just Cares For Me?
+The hi-los
+10
+
+Music: 1950s: Artist/Band: My Baby Left Me?
+Elvis presley
+10
+
+Music: 1950s: Artist/Band: My Blue Heaven?
+Fats domino
+10
+
+Music: 1950s: Artist/Band: My Bonnie Lassie?
+The ames brothers
+10
+
+Music: 1950s: Artist/Band: My Boy flat top?
+Dorothy collins
+10
+
+Music: 1950s: Artist/Band: My Bucket's Got a Hole in It?
+Ricky nelson
+10
+
+Music: 1950s: Artist/Band: My Dream?
+The platters
+10
+
+Music: 1950s: Artist/Band: My Friend?
+Eddie fisher
+10
+
+Music: 1950s: Artist/Band: My Happiness?
+Connie francis
+10
+
+Music: 1950s: Artist/Band: My Heart Cries for You?
+Guy mitchell
+10
+
+Music: 1950s: Artist/Band: My Heart Is an Open Book?
+Carl dobkins, jr.
+10
+
+Music: 1950s: Artist/Band: My Heart Reminds Me (and That Reminds Me)?
+Kay starr
+10
+
+Music: 1950s: Artist/Band: My Little Angel?
+The four lads
+10
+
+Music: 1950s: Artist/Band: My Love and Devotion?
+Perry como
+10
+
+Music: 1950s: Artist/Band: My Melancholy Baby?
+Tommy edwards
+10
+
+Music: 1950s: Artist/Band: My One and Only Heart?
+Perry como
+10
+
+Music: 1950s: Artist/Band: My Own True Love?
+Jimmy clanton
+10
+
+Music: 1950s: Artist/Band: My Prayer?
+The platters
+10
+
+Music: 1950s: Artist/Band: My Restless Lover?
+Patti page
+10
+
+Music: 1950s: Artist/Band: My Special Angel?
+Bobby helms
+10
+
+Music: 1950s: Artist/Band: My Treasure?
+The hilltoppers
+10
+
+Music: 1950s: Artist/Band: My True Love?
+Jack scott
+10
+
+Music: 1950s: Artist/Band: My Truly, Truly Fair?
+Guy mitchell
+10
+
+Music: 1950s: Artist/Band: My Wish Came True?
+Elvis presley
+10
+
+Music: 1950s: Artist/Band: Near You?
+Roger williams
+10
+
+Music: 1950s: Artist/Band: Nee Nee Na Na Na Na Nu Nu?
+Dicky doo & the don'ts
+10
+
+Music: 1950s: Artist/Band: Need You?
+Donnie owens
+10
+
+Music: 1950s: Artist/Band: Nel Blu Dipinto Di Blu (Volare)?
+Domenico modugno
+10
+
+Music: 1950s: Artist/Band: Never Be Anyone Else But You?
+Ricky nelson
+10
+
+Music: 1950s: Artist/Band: Never Turn Back?
+Al hibbler
+10
+
+Music: 1950s: Artist/Band: Ninety Nine Years (Dead or Alive)?
+Guy mitchell
+10
+
+Music: 1950s: Artist/Band: Ninety-Nine Ways?
+Tab hunter
+10
+
+Music: 1950s: Artist/Band: No Arms Can Ever Hold You (Like These Arms of Mine)?
+Georgie shaw
+10
+
+Music: 1950s: Artist/Band: No Chemise, Please?
+Gerry granahan
+10
+
+Music: 1950s: Artist/Band: No Love (But Your Love)?
+Johnny mathis
+10
+
+Music: 1950s: Artist/Band: No Moon At All?
+The ames brothers with les brown
+10
+
+Music: 1950s: Artist/Band: No More?
+The mcguire sisters
+10
+
+Music: 1950s: Artist/Band: No One Knows?
+Dion & the belmonts
+10
+
+Music: 1950s: Artist/Band: No Other Arms (No Arms Can Ever Hold You)?
+Pat boone
+10
+
+Music: 1950s: Artist/Band: No Other Arms, No Other Lips?
+The chordettes
+10
+
+Music: 1950s: Artist/Band: No, Not Much?
+The four lads
+10
+
+Music: 1950s: Artist/Band: Nobody But You?
+Dee clark
+10
+
+Music: 1950s: Artist/Band: Nola?
+Billy williams
+10
+
+Music: 1950s: Artist/Band: Noodlin' Rag?
+Perry como
+10
+
+Music: 1950s: Artist/Band: Not One Minute More?
+Della reese
+10
+
+Music: 1950s: Artist/Band: Now and for Always?
+George hamilton iv
+10
+
+Music: 1950s: Artist/Band: Nuttin' for Christmas?
+Barry gordon & art mooney
+10
+
+Music: 1950s: Artist/Band: O Mein Papa (Oh! My Papa)?
+Ray anthony & his orchestra
+10
+
+Music: 1950s: Artist/Band: Off Shore?
+Richard hayman
+10
+
+Music: 1950s: Artist/Band: Oh Julie?
+The crescendos
+10
+
+Music: 1950s: Artist/Band: Oh Lonesome Me?
+Don gibson
+10
+
+Music: 1950s: Artist/Band: Oh-Oh, I'm Falling in Love Again?
+Jimmie rodgers
+10
+
+Music: 1950s: Artist/Band: Oh, Boy!?
+Buddy holly & the crickets
+10
+
+Music: 1950s: Artist/Band: Oh, Mein Papa (Oh! My Papa)?
+Eddie calvert
+10
+
+Music: 1950s: Artist/Band: Oh, What a Night?
+The dells
+10
+
+Music: 1950s: Artist/Band: Oh! Carol?
+Neil sedaka
+10
+
+Music: 1950s: Artist/Band: Oh! My Papa (O Mein Papa)?
+Eddie fisher
+10
+
+Music: 1950s: Artist/Band: Oh! Susanna?
+The singing dogs
+10
+
+Music: 1950s: Artist/Band: Old Cape Cod?
+Patti page
+10
+
+Music: 1950s: Artist/Band: On London Bridge?
+Jo stafford
+10
+
+Music: 1950s: Artist/Band: On My Word of Honor?
+The platters
+10
+
+Music: 1950s: Artist/Band: On the Alamo?
+The norman petty trio
+10
+
+Music: 1950s: Artist/Band: On the Outgoing Tide?
+Perry como
+10
+
+Music: 1950s: Artist/Band: On the Street Where You Live?
+Vic damone
+10
+
+Music: 1950s: Artist/Band: Once In A While?
+Doris day
+10
+
+Music: 1950s: Artist/Band: One in a Million?
+The platters
+10
+
+Music: 1950s: Artist/Band: One Little Candle?
+Perry como
+10
+
+Music: 1950s: Artist/Band: One Night?
+Elvis presley
+10
+
+Music: 1950s: Artist/Band: One Summer Night?
+The danleers
+10
+
+Music: 1950s: Artist/Band: Only One Love?
+George hamilton iv
+10
+
+Music: 1950s: Artist/Band: Only Sixteen?
+Sam cooke
+10
+
+Music: 1950s: Artist/Band: Only You (and You Alone) (Loin de Vous)?
+Franck pourcel's french fiddles
+10
+
+Music: 1950s: Artist/Band: Only You (and You Alone)?
+The platters
+10
+
+Music: 1950s: Artist/Band: Ooh! My Soul?
+Little richard
+10
+
+Music: 1950s: Artist/Band: Oop-Shoop?
+The crew-cuts
+10
+
+Music: 1950s: Artist/Band: Open Up Your Heart (and Let the Sunshine In)?
+The cowboy church sunday school
+10
+
+Music: 1950s: Artist/Band: Our Heartbreaking Waltz?
+Teresa brewer
+10
+
+Music: 1950s: Artist/Band: Out Of Sight, Out Of Mind?
+The five keys
+10
+
+Music: 1950s: Artist/Band: Over the Mountain, Across the Sea?
+Johnnie & joe
+10
+
+Music: 1950s: Artist/Band: P.S. I Love You?
+The hilltoppers
+10
+
+Music: 1950s: Artist/Band: Pa-Paya Mama?
+Perry como
+10
+
+Music: 1950s: Artist/Band: Padre?
+Toni arden
+10
+
+Music: 1950s: Artist/Band: Papa Loves Mambo?
+Perry como
+10
+
+Music: 1950s: Artist/Band: Party Doll?
+Buddy knox
+10
+
+Music: 1950s: Artist/Band: Pass the Jam, Sam?
+Dinah shore
+10
+
+Music: 1950s: Artist/Band: Peanuts?
+Little joe & the thrillers
+10
+
+Music: 1950s: Artist/Band: Peek-A-Boo?
+The cadillacs
+10
+
+Music: 1950s: Artist/Band: Peggy Sue?
+Buddy holly & the crickets
+10
+
+Music: 1950s: Artist/Band: Pepper-Hot Baby?
+Jaye p. morgan
+10
+
+Music: 1950s: Artist/Band: Personality?
+Lloyd price
+10
+
+Music: 1950s: Artist/Band: Peter Gunn?
+Ray anthony & his orchestra
+10
+
+Music: 1950s: Artist/Band: Petite Fleur (Little Flower)?
+Chris barber's jazz band
+10
+
+Music: 1950s: Artist/Band: Philadelphia U.S.A?
+The nu tornados
+10
+
+Music: 1950s: Artist/Band: Picnic?
+The mcguire sisters
+10
+
+Music: 1950s: Artist/Band: Pink Shoe Laces?
+Dodie stevens
+10
+
+Music: 1950s: Artist/Band: Pittsburgh, Pennsylvania?
+Guy mitchell
+10
+
+Music: 1950s: Artist/Band: Plain Jane?
+Bobby darin
+10
+
+Music: 1950s: Artist/Band: Plantation Boogie?
+Lenny dee
+10
+
+Music: 1950s: Artist/Band: Play Me Hearts and Flowers (I Wanna Cry)?
+Johnny desmond
+10
+
+Music: 1950s: Artist/Band: Playing for Keeps?
+Elvis presley
+10
+
+Music: 1950s: Artist/Band: Please Mr. Sun?
+Tommy edwards
+10
+
+Music: 1950s: Artist/Band: Please, Mr. Sun?
+Johnny ray
+10
+
+Music: 1950s: Artist/Band: Pledge of Love?
+Ken copeland
+10
+
+Music: 1950s: Artist/Band: Pledging My Love?
+Johnny ace
+10
+
+Music: 1950s: Artist/Band: Point Of Order?
+Stan freberg & daws butler
+10
+
+Music: 1950s: Artist/Band: Poison Ivy?
+The coasters
+10
+
+Music: 1950s: Artist/Band: Poor Butterfly?
+The hilltoppers
+10
+
+Music: 1950s: Artist/Band: Poor Jenny?
+The everly brothers
+10
+
+Music: 1950s: Artist/Band: Poor Little Fool?
+Ricky nelson
+10
+
+Music: 1950s: Artist/Band: Pretty Blue Eyes?
+Steve lawrence
+10
+
+Music: 1950s: Artist/Band: Pretty Girls Everywhere?
+Eugene church
+10
+
+Music: 1950s: Artist/Band: Primrose Lane?
+Jerry wallace with the jewels
+10
+
+Music: 1950s: Artist/Band: Priscilla?
+Eddie cooley & the dimples
+10
+
+Music: 1950s: Artist/Band: Problems?
+The everly brothers
+10
+
+Music: 1950s: Artist/Band: Promise Me, Love?
+Andy williams
+10
+
+Music: 1950s: Artist/Band: Pussy Cat?
+The ames brothers
+10
+
+Music: 1950s: Artist/Band: Put a Light in the Window?
+The four lads
+10
+
+Music: 1950s: Artist/Band: Put a Ring on My Finger?
+Les paul & mary ford
+10
+
+Music: 1950s: Artist/Band: Put Your Head on My Shoulder?
+Paul anka
+10
+
+Music: 1950s: Artist/Band: Que Sera, Sera (Whatever Will Be, Will Be)?
+Doris day
+10
+
+Music: 1950s: Artist/Band: Queen of the Hop?
+Bobby darin
+10
+
+Music: 1950s: Artist/Band: Queen of the Senior Prom?
+The mills brothers
+10
+
+Music: 1950s: Artist/Band: Quiet Village?
+The exotic sounds of martin denny & his orchestra
+10
+
+Music: 1950s: Artist/Band: R-O-C-K?
+Bill haley & his comets
+10
+
+Music: 1950s: Artist/Band: Rag Mop?
+The ames brothers
+10
+
+Music: 1950s: Artist/Band: Rags to Riches?
+Tony bennett
+10
+
+Music: 1950s: Artist/Band: Ragtime Cowboy Joe?
+The chipmunks & David seville
+10
+
+Music: 1950s: Artist/Band: Rain, Rain, Rain?
+Frankie laine & the four lads
+10
+
+Music: 1950s: Artist/Band: Rainbow?
+Russ hamilton
+10
+
+Music: 1950s: Artist/Band: Ramrod?
+Duane eddy
+10
+
+Music: 1950s: Artist/Band: Raunchy?
+Bill justis & his orchestra
+10
+
+Music: 1950s: Artist/Band: Rave On?
+Buddy holly & the crickets
+10
+
+Music: 1950s: Artist/Band: Raw-Hide?
+Link wray and the wraymen
+10
+
+Music: 1950s: Artist/Band: Razzle-Dazzle?
+Bill haley & his comets
+10
+
+Music: 1950s: Artist/Band: Rebel-'Rouser?
+Duane eddy
+10
+
+Music: 1950s: Artist/Band: Red River Rock?
+Johnny & the hurricanes
+10
+
+Music: 1950s: Artist/Band: Red River Rose?
+The ames brothers
+10
+
+Music: 1950s: Artist/Band: Remember You're Mine?
+Pat boone
+10
+
+Music: 1950s: Artist/Band: Return to Me?
+Dean martin
+10
+
+Music: 1950s: Artist/Band: Reveille Rock?
+Johnny & the hurricanes
+10
+
+Music: 1950s: Artist/Band: Ricochet (Rick-O-Shay)?
+Teresa brewer
+10
+
+Music: 1950s: Artist/Band: Ring-a-Ling-a-Lario?
+Jimmie rodgers
+10
+
+Music: 1950s: Artist/Band: Rip It Up?
+Little richard
+10
+
+Music: 1950s: Artist/Band: River of No Return?
+Marilyn monroe
+10
+
+Music: 1950s: Artist/Band: Robbin' the Cradle?
+Tony bellus
+10
+
+Music: 1950s: Artist/Band: Rock and Roll Is Here to Stay?
+Danny & the juniors
+10
+
+Music: 1950s: Artist/Band: Rock and Roll Music?
+Chuck berry
+10
+
+Music: 1950s: Artist/Band: Rock and Roll Waltz?
+Kay starr
+10
+
+Music: 1950s: Artist/Band: Rock Island Line?
+Lonnie donegan & his skiffle group
+10
+
+Music: 1950s: Artist/Band: Rock Love?
+The fontane sisters
+10
+
+Music: 1950s: Artist/Band: Rock Right?
+Georgia gibbs
+10
+
+Music: 1950s: Artist/Band: Rock Your Little Baby to Sleep?
+Buddy knox
+10
+
+Music: 1950s: Artist/Band: Rock-a-Beatin' Boogie?
+Bill haley & his comets
+10
+
+Music: 1950s: Artist/Band: Rock-a-Billy?
+Guy mitchell
+10
+
+Music: 1950s: Artist/Band: Rock-a-Bye Your Baby with a Dixie Melody?
+Jerry lewis
+10
+
+Music: 1950s: Artist/Band: Rock-in Robin?
+Bobby day
+10
+
+Music: 1950s: Artist/Band: Rocka-Conga?
+The applejacks
+10
+
+Music: 1950s: Artist/Band: Roll Over Beethoven?
+Chuck berry
+10
+
+Music: 1950s: Artist/Band: Rosie Lee?
+The mello-tones
+10
+
+Music: 1950s: Artist/Band: Round and Round?
+Perry como
+10
+
+Music: 1950s: Artist/Band: Ruby Baby?
+The drifters
+10
+
+Music: 1950s: Artist/Band: Ruby?
+Richard hayman & his orchestra
+10
+
+Music: 1950s: Artist/Band: Rudy's Rock?
+Bill haley & his comets
+10
+
+Music: 1950s: Artist/Band: Rumble?
+Link wray & his ray men
+10
+
+Music: 1950s: Artist/Band: Runaround?
+The three chuckles
+10
+
+Music: 1950s: Artist/Band: Running Bear?
+Johnny preston
+10
+
+Music: 1950s: Artist/Band: Sadie Thompson's Song (Blue Pacific Blues)?
+Richard hayman
+10
+
+Music: 1950s: Artist/Band: Sail Along Silvery Moon?
+Billy vaughn & his orchestra
+10
+
+Music: 1950s: Artist/Band: Same Old Saturday Night?
+Frank sinatra
+10
+
+Music: 1950s: Artist/Band: Santa and the Satellite (Parts 1 &?
+Buchanan & goodman
+10
+
+Music: 1950s: Artist/Band: Santa Baby?
+Eartha kitt
+10
+
+Music: 1950s: Artist/Band: Santo Natale (Merry Christmas)?
+David whitfield
+10
+
+Music: 1950s: Artist/Band: Say Man?
+Bo diddley
+10
+
+Music: 1950s: Artist/Band: Say You're Mine Again?
+Perry como
+10
+
+Music: 1950s: Artist/Band: Scarlett Ribbons (for Her Hair)?
+The browns
+10
+
+Music: 1950s: Artist/Band: School Day?
+Chuck berry
+10
+
+Music: 1950s: Artist/Band: Sea Cruise?
+Frankie ford
+10
+
+Music: 1950s: Artist/Band: Sea of Love?
+Phil phillips with the twilights
+10
+
+Music: 1950s: Artist/Band: Searchin'?
+The coasters
+10
+
+Music: 1950s: Artist/Band: Second Fiddle?
+Kay starr
+10
+
+Music: 1950s: Artist/Band: Secret Love?
+Doris day
+10
+
+Music: 1950s: Artist/Band: Secretly?
+Jimmie rodgers
+10
+
+Music: 1950s: Artist/Band: See Saw?
+The moonglows
+10
+
+Music: 1950s: Artist/Band: See You In September?
+The tempos
+10
+
+Music: 1950s: Artist/Band: See You Later, Alligator?
+Bill haley & his comets
+10
+
+Music: 1950s: Artist/Band: Sentimental Journey?
+Les brown & ames brothers
+10
+
+Music: 1950s: Artist/Band: Sentimental Me?
+The ames brothers
+10
+
+Music: 1950s: Artist/Band: Seven Little Girls Sitting In the Back Seat?
+Paul evans & the curls
+10
+
+Music: 1950s: Artist/Band: Seventeen?
+The fontane sisters
+10
+
+Music: 1950s: Artist/Band: Sh-Boom (Life Could Be a Dream)?
+The crew-cuts
+10
+
+Music: 1950s: Artist/Band: Shake, Rattle and Roll?
+Bill haley & his comets
+10
+
+Music: 1950s: Artist/Band: Shangri-La?
+The four coins
+10
+
+Music: 1950s: Artist/Band: She Say (Oom Dooby Doom)?
+The diamonds
+10
+
+Music: 1950s: Artist/Band: She Was Five and He Was Ten?
+The mills brothers
+10
+
+Music: 1950s: Artist/Band: She Was Only Seventeen (He Was One Year More)?
+Marty robbins
+10
+
+Music: 1950s: Artist/Band: She Wears Red Feathers?
+Guy mitchell
+10
+
+Music: 1950s: Artist/Band: She's Neat?
+Dale wright
+10
+
+Music: 1950s: Artist/Band: Shimmy, Shimmy, Ko-Ko-Bop?
+Little anthony & the imperials
+10
+
+Music: 1950s: Artist/Band: Shish-Kebab?
+Ralph marterie & his orchestra
+10
+
+Music: 1950s: Artist/Band: Short Fat Fannie?
+Larry williams
+10
+
+Music: 1950s: Artist/Band: Short Shorts?
+Royal teens
+10
+
+Music: 1950s: Artist/Band: Sick and Tired?
+Fats domino
+10
+
+Music: 1950s: Artist/Band: Silhouettes?
+The rays
+10
+
+Music: 1950s: Artist/Band: Silver Dollar?
+Teresa brewer
+10
+
+Music: 1950s: Artist/Band: Sin?
+Eddy howard & his orchestra
+10
+
+Music: 1950s: Artist/Band: Since I Don't Have You?
+The skyliners
+10
+
+Music: 1950s: Artist/Band: Since I Met You Baby?
+Ivory joe hunter
+10
+
+Music: 1950s: Artist/Band: Since You've Been Gone?
+Clyde mcphatter
+10
+
+Music: 1950s: Artist/Band: Sincerely?
+The mcguire sisters
+10
+
+Music: 1950s: Artist/Band: Sing Boy Sing?
+Tommy sands
+10
+
+Music: 1950s: Artist/Band: Singing the Blues?
+Guy mitchell
+10
+
+Music: 1950s: Artist/Band: Sittin' in the Balcony?
+Eddie cochran
+10
+
+Music: 1950s: Artist/Band: Six Nights a Week?
+The crests
+10
+
+Music: 1950s: Artist/Band: Sixty Minute Man?
+Billy ward and his dominoes
+10
+
+Music: 1950s: Artist/Band: Skinnie Minnie (Fish Tail)?
+Teresa brewer
+10
+
+Music: 1950s: Artist/Band: Skinny Minnie?
+Bill haley & his comets
+10
+
+Music: 1950s: Artist/Band: Skokiaan (South African Song)?
+The four lads
+10
+
+Music: 1950s: Artist/Band: Skokiaan?
+Ralph marterie & his orchestra
+10
+
+Music: 1950s: Artist/Band: Sleep Walk?
+Santo & johnny
+10
+
+Music: 1950s: Artist/Band: Sleep?
+Les paul
+10
+
+Music: 1950s: Artist/Band: Slippin' and Slidin' (Peepin' and a-Hidin')?
+Little richard
+10
+
+Music: 1950s: Artist/Band: Slow Poke?
+Pee wee king & his golden west cowboys
+10
+
+Music: 1950s: Artist/Band: Small World?
+Johnny mathis
+10
+
+Music: 1950s: Artist/Band: Smiles?
+Crazy otto
+10
+
+Music: 1950s: Artist/Band: Smoke Gets In Your Eyes?
+The platters
+10
+
+Music: 1950s: Artist/Band: So Close?
+Brook benton
+10
+
+Music: 1950s: Artist/Band: So Fine?
+The fiestas
+10
+
+Music: 1950s: Artist/Band: So Many Ways?
+Brook benton
+10
+
+Music: 1950s: Artist/Band: So Rare?
+Jimmy dorsey & his orchestra & chorus
+10
+
+Music: 1950s: Artist/Band: Soft?
+Bill doggett
+10
+
+Music: 1950s: Artist/Band: Some Day?
+Frankie laine
+10
+
+Music: 1950s: Artist/Band: Some Kind-a Earthquake?
+Duane eddy
+10
+
+Music: 1950s: Artist/Band: Somebody Bad Stole De Wedding Bell?
+Eartha kitt
+10
+
+Music: 1950s: Artist/Band: Somebody Touched Me?
+Buddy knox with the rhythm orchids
+10
+
+Music: 1950s: Artist/Band: Somebody Up There Likes Me?
+Perry como
+10
+
+Music: 1950s: Artist/Band: Someone Else's Love Song?
+Georgie shaw
+10
+
+Music: 1950s: Artist/Band: Someone?
+Johnny mathis
+10
+
+Music: 1950s: Artist/Band: Something's Gotta Give?
+The mcguire sisters
+10
+
+Music: 1950s: Artist/Band: Somewhere There Is Someone?
+Lou monte
+10
+
+Music: 1950s: Artist/Band: Song Of The Barefoot Contessa?
+Hugo winterhalter
+10
+
+Music: 1950s: Artist/Band: Song Of the Dreamer?
+Eddie fisher
+10
+
+Music: 1950s: Artist/Band: Sorry (I Ran All the Way Home)?
+The impalas
+10
+
+Music: 1950s: Artist/Band: South of the Border (Down Mexico Way)?
+Frank sinatra
+10
+
+Music: 1950s: Artist/Band: Sparrow In the Treetop?
+Guy mitchell
+10
+
+Music: 1950s: Artist/Band: Speedoo?
+The cadillacs
+10
+
+Music: 1950s: Artist/Band: Splish Splash?
+Bobby darin
+10
+
+Music: 1950s: Artist/Band: St. George and the Dragonet?
+Stan freberg
+10
+
+Music: 1950s: Artist/Band: St. Louis Blues Mambo?
+Richard maltby & his orchestra
+10
+
+Music: 1950s: Artist/Band: St. Therese of the Roses?
+Billy ward and his dominoes
+10
+
+Music: 1950s: Artist/Band: Stagger Lee?
+Lloyd price
+10
+
+Music: 1950s: Artist/Band: Standing on the Corner?
+The four lads
+10
+
+Music: 1950s: Artist/Band: Star Dust?
+Billy ward and his dominoes
+10
+
+Music: 1950s: Artist/Band: Stardust Mambo?
+Richard maltby & his orchestra
+10
+
+Music: 1950s: Artist/Band: Start Movin' (in My Direction)?
+Sal mineo
+10
+
+Music: 1950s: Artist/Band: Steam Heat?
+Patti page
+10
+
+Music: 1950s: Artist/Band: Stood Up?
+Ricky nelson
+10
+
+Music: 1950s: Artist/Band: Story of My Love?
+Conway twitty
+10
+
+Music: 1950s: Artist/Band: Stranded In the Jungle?
+The cadets
+10
+
+Music: 1950s: Artist/Band: Stupid Cupid?
+Connie francis
+10
+
+Music: 1950s: Artist/Band: Such a Night?
+Johnnie ray
+10
+
+Music: 1950s: Artist/Band: Suddenly There's a Valley?
+Gogi grant
+10
+
+Music: 1950s: Artist/Band: Sugar Moon?
+Pat boone
+10
+
+Music: 1950s: Artist/Band: Sugartime?
+The mcguire sisters
+10
+
+Music: 1950s: Artist/Band: Summertime Blues?
+Eddie cochran
+10
+
+Music: 1950s: Artist/Band: Summertime, Summertime?
+The jamies
+10
+
+Music: 1950s: Artist/Band: Susie Darlin'?
+Robin luke
+10
+
+Music: 1950s: Artist/Band: Suzie-Q?
+Dale hawkins
+10
+
+Music: 1950s: Artist/Band: Swanee River Rock (Talkin' 'Bout That River)?
+Ray charles
+10
+
+Music: 1950s: Artist/Band: Sway?
+Dean martin
+10
+
+Music: 1950s: Artist/Band: Sweet and Gentle?
+Alan dale
+10
+
+Music: 1950s: Artist/Band: Sweet Little Sixteen?
+Chuck berry
+10
+
+Music: 1950s: Artist/Band: Sweeter Than You?
+Ricky nelson
+10
+
+Music: 1950s: Artist/Band: Take A Message To Mary?
+The everly brothers
+10
+
+Music: 1950s: Artist/Band: Talk That Talk?
+Jackie wilson
+10
+
+Music: 1950s: Artist/Band: Talk to Me, Talk to Me?
+Little willie john
+10
+
+Music: 1950s: Artist/Band: Talkin' to the Blues?
+Jim lowe
+10
+
+Music: 1950s: Artist/Band: Tall Cool One?
+The wailers
+10
+
+Music: 1950s: Artist/Band: Tall Paul?
+Annette with the afterbeats
+10
+
+Music: 1950s: Artist/Band: Tammy?
+Debbie reynolds
+10
+
+Music: 1950s: Artist/Band: Tea for Two Cha Cha?
+Tommy dorsey orchestra
+10
+
+Music: 1950s: Artist/Band: Teach Me Tonight?
+The decastro sisters
+10
+
+Music: 1950s: Artist/Band: Teacher, Teacher?
+Johnny mathis
+10
+
+Music: 1950s: Artist/Band: Tear Drop?
+Santo & johnny
+10
+
+Music: 1950s: Artist/Band: Tear Drops?
+Lee andrews & the hearts
+10
+
+Music: 1950s: Artist/Band: Tears on My Pillow?
+Little anthony & the imperials
+10
+
+Music: 1950s: Artist/Band: Teasin'?
+Quaker city boys
+10
+
+Music: 1950s: Artist/Band: Teen Age Prayer?
+Gale storm
+10
+
+Music: 1950s: Artist/Band: Teen Beat?
+Sandy nelson
+10
+
+Music: 1950s: Artist/Band: Teenage Crush?
+Tommy sands
+10
+
+Music: 1950s: Artist/Band: Tell Him No?
+Travis & bob
+10
+
+Music: 1950s: Artist/Band: Tell Me Why?
+Four aces
+10
+
+Music: 1950s: Artist/Band: Tell Me, Tell Me?
+June valli
+10
+
+Music: 1950s: Artist/Band: Tenderly?
+Rosemary clooney
+10
+
+Music: 1950s: Artist/Band: Thank You for Calling?
+Jo stafford
+10
+
+Music: 1950s: Artist/Band: Thank You Pretty Baby?
+Brook benton
+10
+
+Music: 1950s: Artist/Band: That'll Be the Day?
+Buddy holly & the crickets
+10
+
+Music: 1950s: Artist/Band: That's All I Want from You?
+Jaye p. morgan
+10
+
+Music: 1950s: Artist/Band: That's Amore?
+Dean martin
+10
+
+Music: 1950s: Artist/Band: That's How Much I Love You?
+Pat boone
+10
+
+Music: 1950s: Artist/Band: That's My Boy?
+Stan freberg
+10
+
+Music: 1950s: Artist/Band: That's What I Like?
+Don, dick & jimmy
+10
+
+Music: 1950s: Artist/Band: That's Why (I Love You So)?
+Jackie wilson
+10
+
+Music: 1950s: Artist/Band: The All American Boy?
+Bobby bare
+10
+
+Music: 1950s: Artist/Band: The Angels Listened In?
+The crests
+10
+
+Music: 1950s: Artist/Band: The Autumn Waltz?
+Tony bennett
+10
+
+Music: 1950s: Artist/Band: The Bandit (O'Cangaceiro)?
+Eddie barclay & his orchestra
+10
+
+Music: 1950s: Artist/Band: The Banjo's Back in Town?
+Teresa brewer
+10
+
+Music: 1950s: Artist/Band: The Battle Of Kookamonga?
+Homer & jethro
+10
+
+Music: 1950s: Artist/Band: The Battle Of New Orleans?
+Johnny horton
+10
+
+Music: 1950s: Artist/Band: The Bible Tells Me So?
+Don cornell
+10
+
+Music: 1950s: Artist/Band: The Big Beat?
+Fats domino
+10
+
+Music: 1950s: Artist/Band: The Big Hurt?
+Miss toni fisher
+10
+
+Music: 1950s: Artist/Band: The Bird on My Head?
+David seville
+10
+
+Music: 1950s: Artist/Band: The Blob?
+The five blobs
+10
+
+Music: 1950s: Artist/Band: The Book of Love?
+The monotones
+10
+
+Music: 1950s: Artist/Band: The Breeze and I (Andalucia)?
+Caterina valente
+10
+
+Music: 1950s: Artist/Band: The Bus Stop Song (A Paper of Pins)?
+The four lads
+10
+
+Music: 1950s: Artist/Band: The Chain Gang?
+Bobby scott
+10
+
+Music: 1950s: Artist/Band: The Chipmunk Song (Christmas Don't Be Late)?
+The chipmunks
+10
+
+Music: 1950s: Artist/Band: The Church Bells May Ring?
+The diamonds
+10
+
+Music: 1950s: Artist/Band: The Class?
+Chubby checker
+10
+
+Music: 1950s: Artist/Band: The Crazy Otto (Medley)?
+Johnny maddox
+10
+
+Music: 1950s: Artist/Band: The Creep?
+Ralph marterie & his orchestra
+10
+
+Music: 1950s: Artist/Band: The Cry Of the Wild Goose?
+Frankie laine
+10
+
+Music: 1950s: Artist/Band: The Day the Rains Came?
+Jane morgan
+10
+
+Music: 1950s: Artist/Band: The Diary?
+Neil sedaka
+10
+
+Music: 1950s: Artist/Band: The Doggie in the Window?
+Patti page
+10
+
+Music: 1950s: Artist/Band: The Enchanted Sea?
+The islanders
+10
+
+Music: 1950s: Artist/Band: The End?
+Earl grant
+10
+
+Music: 1950s: Artist/Band: The Flying Saucer (Parts 1 &?
+Buchanan & goodman
+10
+
+Music: 1950s: Artist/Band: The Fool?
+Sanford clark
+10
+
+Music: 1950s: Artist/Band: The Freeze?
+Tony and joe
+10
+
+Music: 1950s: Artist/Band: The Gal That Got Away?
+Frank sinatra
+10
+
+Music: 1950s: Artist/Band: The Girl with the Golden Braids?
+Perry como
+10
+
+Music: 1950s: Artist/Band: The Glow-Worm?
+The mills brothers
+10
+
+Music: 1950s: Artist/Band: The Great Pretender?
+The platters
+10
+
+Music: 1950s: Artist/Band: The Green Years?
+Eddie fisher
+10
+
+Music: 1950s: Artist/Band: The Hanging Tree?
+Marty robbins
+10
+
+Music: 1950s: Artist/Band: The Happy Reindeer?
+Dancer, prancer & nervous
+10
+
+Music: 1950s: Artist/Band: The Happy Wanderer?
+Frank weir
+10
+
+Music: 1950s: Artist/Band: The Happy Whistler?
+Don robertson
+10
+
+Music: 1950s: Artist/Band: The Hawaiian Wedding Song (Ke Kali Nei Au)?
+Andy williams
+10
+
+Music: 1950s: Artist/Band: The Heat's On?
+Rita hayworth & jose ferrer
+10
+
+Music: 1950s: Artist/Band: The Hot Canary?
+Florian zabach
+10
+
+Music: 1950s: Artist/Band: The House of Blue Lights?
+Chuck miller
+10
+
+Music: 1950s: Artist/Band: The Hula Hoop Song?
+Georgia gibbs
+10
+
+Music: 1950s: Artist/Band: The Italian Theme?
+Cyril stapleton & his orchestra
+10
+
+Music: 1950s: Artist/Band: The Joker (That's What They Call Me)?
+The hilltoppers
+10
+
+Music: 1950s: Artist/Band: The Jones Boy?
+The mills brothers
+10
+
+Music: 1950s: Artist/Band: The Kentuckian Song?
+The hilltoppers
+10
+
+Music: 1950s: Artist/Band: The Kid's Last Fight?
+Frankie laine
+10
+
+Music: 1950s: Artist/Band: The Little Blue Man?
+Betty johnson
+10
+
+Music: 1950s: Artist/Band: The Little Drummer Boy?
+Harry simeone chorale
+10
+
+Music: 1950s: Artist/Band: The Little Shoemaker?
+The gaylords
+10
+
+Music: 1950s: Artist/Band: The Little White Cloud That Cried?
+Johnnie ray and the four lads
+10
+
+Music: 1950s: Artist/Band: The Lonely One?
+Duane eddy
+10
+
+Music: 1950s: Artist/Band: The Lonesome Polecat?
+The mcguire sisters
+10
+
+Music: 1950s: Artist/Band: The Longest Walk?
+Jaye p. morgan
+10
+
+Music: 1950s: Artist/Band: The Magic Tango?
+Hugo winterhalter
+10
+
+Music: 1950s: Artist/Band: The Mama Doll Song?
+Patti page
+10
+
+Music: 1950s: Artist/Band: The Man in the Raincoat?
+Marion marlowe
+10
+
+Music: 1950s: Artist/Band: The Man Upstairs?
+Kay starr
+10
+
+Music: 1950s: Artist/Band: The Man with the Banjo?
+The ames brothers
+10
+
+Music: 1950s: Artist/Band: The Mocking Bird?
+The four lads
+10
+
+Music: 1950s: Artist/Band: The Money Tree?
+Margaret whiting
+10
+
+Music: 1950s: Artist/Band: The Morning Side Of the Mountain?
+Tommy edwards
+10
+
+Music: 1950s: Artist/Band: The Mummy?
+Bob mcfadden & dor
+10
+
+Music: 1950s: Artist/Band: The Naughty Lady Of Shady Lane?
+The ames brothers
+10
+
+Music: 1950s: Artist/Band: The Night Before Christmas?
+Rosemary clooney
+10
+
+Music: 1950s: Artist/Band: The Old Master Painter?
+Richard hayes
+10
+
+Music: 1950s: Artist/Band: The Old Philosopher?
+Eddie lawrence
+10
+
+Music: 1950s: Artist/Band: The Popcorn Song?
+Cliffie stone and his orchestra
+10
+
+Music: 1950s: Artist/Band: The Purple People Eater?
+Sheb wooley
+10
+
+Music: 1950s: Artist/Band: The Roving Kind?
+Guy mitchell
+10
+
+Music: 1950s: Artist/Band: The Saints Rock 'N' Roll?
+Bill haley & his comets
+10
+
+Music: 1950s: Artist/Band: The Secret?
+Gordon macrae
+10
+
+Music: 1950s: Artist/Band: The Shifting, Whispering Sands?
+Rusty draper
+10
+
+Music: 1950s: Artist/Band: The Story of My Life?
+Marty robbins
+10
+
+Music: 1950s: Artist/Band: The Stroll?
+The diamonds
+10
+
+Music: 1950s: Artist/Band: The Swingin' Shepherd Blues?
+Moe koffman quartette
+10
+
+Music: 1950s: Artist/Band: The Syncopated Clock?
+Leroy anderson
+10
+
+Music: 1950s: Artist/Band: The Ten Commandments of Love?
+Harvey & the moonglows
+10
+
+Music: 1950s: Artist/Band: The Tennessee Waltz?
+Patti page
+10
+
+Music: 1950s: Artist/Band: The Thing?
+Phil harris
+10
+
+Music: 1950s: Artist/Band: The Things I Didn't Do?
+Perry como
+10
+
+Music: 1950s: Artist/Band: The Three Bells (Les Trois Cloches)?
+The browns
+10
+
+Music: 1950s: Artist/Band: The Tijuana Jail?
+The kingston trio
+10
+
+Music: 1950s: Artist/Band: The Tumbling Tumbleweeds?
+Billy vaughn & his orchestra
+10
+
+Music: 1950s: Artist/Band: The Twelfth of Never?
+Johnny mathis
+10
+
+Music: 1950s: Artist/Band: The Village of St. Bernadette?
+Andy williams
+10
+
+Music: 1950s: Artist/Band: The Walk?
+Jimmy mccracklin
+10
+
+Music: 1950s: Artist/Band: The Way I Walk?
+Jack scott
+10
+
+Music: 1950s: Artist/Band: The Ways of a Woman in Love?
+Johnny cash & the tennessee two
+10
+
+Music: 1950s: Artist/Band: The Wayward Wind?
+Gogi grant
+10
+
+Music: 1950s: Artist/Band: The Witch Doctor?
+David seville
+10
+
+Music: 1950s: Artist/Band: The Wonder of You?
+Ray peterson
+10
+
+Music: 1950s: Artist/Band: The World Outside?
+The four coins
+10
+
+Music: 1950s: Artist/Band: There Goes My Baby?
+The drifters
+10
+
+Music: 1950s: Artist/Band: There Goes My Heart?
+Joni james
+10
+
+Music: 1950s: Artist/Band: There Must Be a Way?
+Joni james
+10
+
+Music: 1950s: Artist/Band: There Never Was A Night So Beautiful?
+Perry como
+10
+
+Music: 1950s: Artist/Band: There'll Be No Teardrops Tonight?
+Tony bennett
+10
+
+Music: 1950s: Artist/Band: There's A Big Blue Cloud (Next To Heaven)?
+Perry como
+10
+
+Music: 1950s: Artist/Band: There's A Gold Mine In the Sky?
+Pat boone
+10
+
+Music: 1950s: Artist/Band: There's No Boat Like A Rowboat?
+Perry como
+10
+
+Music: 1950s: Artist/Band: There's Only One of You?
+The four lads
+10
+
+Music: 1950s: Artist/Band: They Were Doin' the Mambo?
+Vaughn monroe
+10
+
+Music: 1950s: Artist/Band: Things That I Used to Do?
+Guitar slim
+10
+
+Music: 1950s: Artist/Band: Think It Over?
+Buddy holly & the crickets
+10
+
+Music: 1950s: Artist/Band: This Friendly World?
+Fabian
+10
+
+Music: 1950s: Artist/Band: This I Swear?
+The skyliners
+10
+
+Music: 1950s: Artist/Band: This Little Girl of Mine?
+The everly brothers
+10
+
+Music: 1950s: Artist/Band: This Little Girl's Gone Rockin'?
+Ruth brown
+10
+
+Music: 1950s: Artist/Band: This Ole House?
+Rosemary clooney
+10
+
+Music: 1950s: Artist/Band: This Should Go On Forever?
+Rod bernard
+10
+
+Music: 1950s: Artist/Band: Three Coins In the Fountain?
+The four aces featuring al alberts
+10
+
+Music: 1950s: Artist/Band: Three Stars?
+Tommy dee with carol kay & the teen-aires
+10
+
+Music: 1950s: Artist/Band: Tiger?
+Fabian
+10
+
+Music: 1950s: Artist/Band: Till I Waltz Again With You?
+Teresa brewer
+10
+
+Music: 1950s: Artist/Band: Till We Two Are One?
+Eddy howard
+10
+
+Music: 1950s: Artist/Band: Time Waits for No One?
+The hilltoppers
+10
+
+Music: 1950s: Artist/Band: Tina Marie?
+Perry como
+10
+
+Music: 1950s: Artist/Band: To Be Loved?
+Jackie wilson
+10
+
+Music: 1950s: Artist/Band: To Ev'ry Girl, to ev'ry boy (the meaning of love)?
+Johnnie ray
+10
+
+Music: 1950s: Artist/Band: To Know Him, Is To Love Him?
+The teddy bears
+10
+
+Music: 1950s: Artist/Band: To Know You (Is To Love You)?
+Perry como
+10
+
+Music: 1950s: Artist/Band: To the Aisle?
+The five satins
+10
+
+Music: 1950s: Artist/Band: To You, My Love?
+Nick noble
+10
+
+Music: 1950s: Artist/Band: Tom Dooley?
+The kingston trio
+10
+
+Music: 1950s: Artist/Band: Tomboy?
+Perry como
+10
+
+Music: 1950s: Artist/Band: Tonight You Belong To Me?
+Patience & prudence
+10
+
+Music: 1950s: Artist/Band: Too Close for Comfort?
+Eydie gorme
+10
+
+Music: 1950s: Artist/Band: Too Much?
+Elvis presley
+10
+
+Music: 1950s: Artist/Band: Topsy I?
+Cozy cole
+10
+
+Music: 1950s: Artist/Band: Topsy II?
+Cozy cole
+10
+
+Music: 1950s: Artist/Band: Torero?
+Renato carosone
+10
+
+Music: 1950s: Artist/Band: Torquay?
+The fireballs
+10
+
+Music: 1950s: Artist/Band: Tra La La?
+Georgia gibbs
+10
+
+Music: 1950s: Artist/Band: Tragedy?
+Thomas wayne with the delons
+10
+
+Music: 1950s: Artist/Band: Transfusion?
+Nervous norvus
+10
+
+Music: 1950s: Artist/Band: Treasure of Love?
+Clyde mcphatter
+10
+
+Music: 1950s: Artist/Band: Treasure of Your Love?
+Eileen rodgers
+10
+
+Music: 1950s: Artist/Band: Treat Me Nice?
+Elvis presley
+10
+
+Music: 1950s: Artist/Band: Tricky?
+Ralph marterie & his orchestra
+10
+
+Music: 1950s: Artist/Band: Try the Impossible?
+Lee andrews & the hearts
+10
+
+Music: 1950s: Artist/Band: Try?
+Stan freberg
+10
+
+Music: 1950s: Artist/Band: Tucumcari?
+Jimmie rodgers
+10
+
+Music: 1950s: Artist/Band: Tulips and Heather?
+Perry como
+10
+
+Music: 1950s: Artist/Band: Turn Me Loose?
+Fabian
+10
+
+Music: 1950s: Artist/Band: Turvy II?
+Cozy cole
+10
+
+Music: 1950s: Artist/Band: Twilight Time?
+The platters
+10
+
+Music: 1950s: Artist/Band: Twixt Twelve and Twenty?
+Pat boone
+10
+
+Music: 1950s: Artist/Band: Two Different Worlds?
+Don rondo
+10
+
+Music: 1950s: Artist/Band: Two Hearts?
+Pat boone
+10
+
+Music: 1950s: Artist/Band: Two Lost Souls?
+Perry como & jaye p. morgan
+10
+
+Music: 1950s: Artist/Band: Two Purple Shadows?
+Jerry vale
+10
+
+Music: 1950s: Artist/Band: Uh! Oh! (Part?
+The nutty squirrels
+10
+
+Music: 1950s: Artist/Band: Unless?
+Guy mitchell
+10
+
+Music: 1950s: Artist/Band: Valley of Tears?
+Fats domino
+10
+
+Music: 1950s: Artist/Band: Vaya Con Dios (May God Be with You)?
+Les paul & mary ford
+10
+
+Music: 1950s: Artist/Band: Veni-Vidi-Vici (I Came, I Saw, I Conquered)?
+The gaylords
+10
+
+Music: 1950s: Artist/Band: Venus?
+Frankie avalon
+10
+
+Music: 1950s: Artist/Band: Volare (Nel Blu Dipinto Di Blu)?
+Dean martin
+10
+
+Music: 1950s: Artist/Band: Wait and See?
+Fats domino
+10
+
+Music: 1950s: Artist/Band: Waitin' in School?
+Ricky nelson
+10
+
+Music: 1950s: Artist/Band: Wake the Town and Tell the People?
+Les baxter & his orchestra
+10
+
+Music: 1950s: Artist/Band: Wake Up Little Susie?
+The everly brothers
+10
+
+Music: 1950s: Artist/Band: Walk Hand In Hand?
+Tony martin
+10
+
+Music: 1950s: Artist/Band: Walkin' After Midnight?
+Patsy cline
+10
+
+Music: 1950s: Artist/Band: Walkin' My Baby Back Home?
+Johnnie ray
+10
+
+Music: 1950s: Artist/Band: Walkin' to Missouri?
+Sammy kaye
+10
+
+Music: 1950s: Artist/Band: Walking Along?
+The diamonds
+10
+
+Music: 1950s: Artist/Band: Wanted?
+Perry como
+10
+
+Music: 1950s: Artist/Band: Wanting You?
+Roger williams
+10
+
+Music: 1950s: Artist/Band: Waterloo?
+Stonewall jackson
+10
+
+Music: 1950s: Artist/Band: Watermelon Weather?
+Perry como and eddie fisher
+10
+
+Music: 1950s: Artist/Band: We Belong Together?
+Robert & johnny
+10
+
+Music: 1950s: Artist/Band: We Got Love?
+Bobby rydell
+10
+
+Music: 1950s: Artist/Band: We'll Meet Again?
+Vera lynn
+10
+
+Music: 1950s: Artist/Band: Wear My Ring Around Your Neck?
+Elvis presley
+10
+
+Music: 1950s: Artist/Band: Weary Blues?
+The mcguire sisters and lawrence welk
+10
+
+Music: 1950s: Artist/Band: Week End?
+The kingsmen
+10
+
+Music: 1950s: Artist/Band: Western Movies?
+The olympics
+10
+
+Music: 1950s: Artist/Band: What A Diff'rence A Day Makes?
+Dinah Washington
+10
+
+Music: 1950s: Artist/Band: What A Dream?
+Patti page
+10
+
+Music: 1950s: Artist/Band: What Am I Living For?
+Chuck willis
+10
+
+Music: 1950s: Artist/Band: What Is Love?
+The playmates
+10
+
+Music: 1950s: Artist/Band: What It Was, Was Football (Parts I & II)?
+Andy griffith
+10
+
+Music: 1950s: Artist/Band: What'd I Say (Part?
+Ray charles
+10
+
+Music: 1950s: Artist/Band: Whatever Lola Wants (Lola Gets)?
+Dinah shore
+10
+
+Music: 1950s: Artist/Band: Whatever Lola Wants?
+Sarah vaughan
+10
+
+Music: 1950s: Artist/Band: Wheel Of Fortune?
+Kay starr
+10
+
+Music: 1950s: Artist/Band: When I Fall In Love?
+Doris day
+10
+
+Music: 1950s: Artist/Band: When I See You?
+Fats domino
+10
+
+Music: 1950s: Artist/Band: When My Blue Moon Turns to Gold Again?
+Elvis presley
+10
+
+Music: 1950s: Artist/Band: When My Dreamboat Comes Home?
+Fats domino
+10
+
+Music: 1950s: Artist/Band: When the Boys Talk About the Girls?
+Valerie carr
+10
+
+Music: 1950s: Artist/Band: When You Dance?
+The turbans
+10
+
+Music: 1950s: Artist/Band: When?
+Kalin twins
+10
+
+Music: 1950s: Artist/Band: Where Were You (on Our Wedding Day)?
+Lloyd price
+10
+
+Music: 1950s: Artist/Band: Whispering Bells?
+The dell-vikings
+10
+
+Music: 1950s: Artist/Band: White Christmas?
+Bing crosby
+10
+
+Music: 1950s: Artist/Band: White Silver Sands?
+Don rondo
+10
+
+Music: 1950s: Artist/Band: Whither Thou Goest?
+Les paul & mary ford
+10
+
+Music: 1950s: Artist/Band: Who Kissed Me Last Night?
+Rosemary clooney
+10
+
+Music: 1950s: Artist/Band: Who Needs You?
+The four lads
+10
+
+Music: 1950s: Artist/Band: Who's Sorry Now?
+Connie francis
+10
+
+Music: 1950s: Artist/Band: Whole Lot of Shakin' Going On?
+Jerry lee lewis
+10
+
+Music: 1950s: Artist/Band: Whole Lotta Loving?
+Fats domino
+10
+
+Music: 1950s: Artist/Band: Why Baby Why?
+Pat boone
+10
+
+Music: 1950s: Artist/Band: Why Do Fools Fall in Love?
+Gale storm
+10
+
+Music: 1950s: Artist/Band: Why Don't They Understand?
+George hamilton iv
+10
+
+Music: 1950s: Artist/Band: Why Don't You Believe Me?
+Joni james
+10
+
+Music: 1950s: Artist/Band: Why?
+Frankie avalon
+10
+
+Music: 1950s: Artist/Band: Wild Cherry?
+Don cherry
+10
+
+Music: 1950s: Artist/Band: Wild Horses?
+Perry como
+10
+
+Music: 1950s: Artist/Band: Wild Is the Wind?
+Johnny mathis
+10
+
+Music: 1950s: Artist/Band: Willie and the Hand Jive?
+Johnny otis show
+10
+
+Music: 1950s: Artist/Band: Win Your Love for Me?
+Sam cooke
+10
+
+Music: 1950s: Artist/Band: Winter Wonderland?
+Perry como
+10
+
+Music: 1950s: Artist/Band: Wisdom of a Fool?
+The five keys
+10
+
+Music: 1950s: Artist/Band: Wish You Were Here?
+Eddie fisher
+10
+
+Music: 1950s: Artist/Band: Wishing for Your Love?
+The voxpoppers
+10
+
+Music: 1950s: Artist/Band: Witchcraft?
+Frank sinatra
+10
+
+Music: 1950s: Artist/Band: With All My Heart?
+Jodie sands
+10
+
+Music: 1950s: Artist/Band: With My Eyes Wide Open I'm Dreaming?
+Patti page
+10
+
+Music: 1950s: Artist/Band: With Open Arms?
+Jane morgan
+10
+
+Music: 1950s: Artist/Band: With the Wind and the Rain In Your Hair?
+Pat boone
+10
+
+Music: 1950s: Artist/Band: With Your Love?
+Jack scott
+10
+
+Music: 1950s: Artist/Band: Without Love (There Is Nothing)?
+Clyde mcphatter
+10
+
+Music: 1950s: Artist/Band: Woman (Uh-Huh)?
+Jose ferrer
+10
+
+Music: 1950s: Artist/Band: Woman?
+Johnny desmond
+10
+
+Music: 1950s: Artist/Band: Wonderful You?
+Jimmie rodgers
+10
+
+Music: 1950s: Artist/Band: Wonderful! Wonderful!?
+Johnny mathis
+10
+
+Music: 1950s: Artist/Band: Wondering?
+Patti page
+10
+
+Music: 1950s: Artist/Band: Woo-Hoo?
+Rock-a-teens
+10
+
+Music: 1950s: Artist/Band: Words of Love?
+The diamonds
+10
+
+Music: 1950s: Artist/Band: Wringle Wrangle?
+Fess parker
+10
+
+Music: 1950s: Artist/Band: Wun'erful, Wun'erful! (Sides Uh-One & Uh-Two)?
+Stan freberg
+10
+
+Music: 1950s: Artist/Band: Y'all Come?
+Bing crosby
+10
+
+Music: 1950s: Artist/Band: Yakety Yak?
+The coasters
+10
+
+Music: 1950s: Artist/Band: Yep!?
+Duane eddy
+10
+
+Music: 1950s: Artist/Band: Yes, Tonight, Josephine?
+Johnnie ray
+10
+
+Music: 1950s: Artist/Band: You Alone?
+Perry como
+10
+
+Music: 1950s: Artist/Band: You Are My Destiny?
+Paul anka
+10
+
+Music: 1950s: Artist/Band: You Are My Love?
+Joni james
+10
+
+Music: 1950s: Artist/Band: You Belong To Me?
+Jo stafford
+10
+
+Music: 1950s: Artist/Band: You Better Know It?
+Jackie wilson
+10
+
+Music: 1950s: Artist/Band: You Can Make It if You Try?
+Gene allison
+10
+
+Music: 1950s: Artist/Band: You Cheated?
+The shields
+10
+
+Music: 1950s: Artist/Band: You Don't Know Me?
+Jerry vale
+10
+
+Music: 1950s: Artist/Band: You Don't Owe Me a Thing?
+Johnnie ray
+10
+
+Music: 1950s: Artist/Band: You Got What it Takes?
+Marv johnson
+10
+
+Music: 1950s: Artist/Band: You Need Hands?
+Eydie gorme
+10
+
+Music: 1950s: Artist/Band: You Send Me?
+Sam cooke
+10
+
+Music: 1950s: Artist/Band: You Were Made for Me?
+Sam cooke
+10
+
+Music: 1950s: Artist/Band: You Were Mine?
+Fireflies
+10
+
+Music: 1950s: Artist/Band: You You You?
+The ames brothers
+10
+
+Music: 1950s: Artist/Band: You'd Be Surprised?
+Johnnie ray
+10
+
+Music: 1950s: Artist/Band: You'll Never Get Away?
+Teresa brewer
+10
+
+Music: 1950s: Artist/Band: You'll Never Know?
+Rosemary clooney
+10
+
+Music: 1950s: Artist/Band: You'll Never Never Know?
+The platters
+10
+
+Music: 1950s: Artist/Band: You're Cheatin' Yourself (If You're Cheating On Me)?
+Frank sinatra
+10
+
+Music: 1950s: Artist/Band: You're Gonna Miss Me?
+Connie francis
+10
+
+Music: 1950s: Artist/Band: You're My One and Only Love?
+Ricky nelson
+10
+
+Music: 1950s: Artist/Band: You're So Fine?
+The falcons
+10
+
+Music: 1950s: Artist/Band: You?
+The aquatones
+10
+
+Music: 1950s: Artist/Band: Young Abe Lincoln?
+Don cornell
+10
+
+Music: 1950s: Artist/Band: Young and Warm and Wonderful?
+Tony bennett
+10
+
+Music: 1950s: Artist/Band: Young Blood?
+The coasters
+10
+
+Music: 1950s: Artist/Band: Young Love?
+Tab hunter
+10
+
+Music: 1950s: Artist/Band: Young-At-Heart?
+Frank sinatra
+10
+
+Music: 1950s: Artist/Band: Your Wild Heart?
+Joy layne
+10
+
+Music: 1950s: Artist/Band: Yours (Quireme Mucho)?
+Dick contino
+10
+
+Music: 1950s: Artist/Band: Zing Zing-Zoom Zoom?
+Perry como
+10
+
+Music: 1950s: Artist/Band: Zip Zip?
+The diamonds
+10
+
+Music: 1950s: Artist/Band: Zorro?
+The chordettes
+10
+
+Music: 1950s: for what crime was Merle Haggard imprisoned in 1956?
+Armed robbery
+10
+
+Music: 1950s: In the 1958 hit 'purple people eater', what is the last word spoken by the purple people eater?
+Tequila
+10
+
+Music: 1950s: What band did james brown tour and record with in the 1950's?
+Famous flames
+10
+
+Music: 1950s: What song about christmas was a hit in mid summer in 1956?
+I'm walking backwards for christmas
+10
+
+Music: 1950s: What was a 1959 number one hit for Shirley Bassey?
+As I Love You
+10
+
+Music: 1960s:  In 1968 this infectious summons to unity was The Rascals last hit?
+People got to be free
+10
+
+Music: 1960s: Artist/Band: 'Round Every Corner?
+Petula clark
+10
+
+Music: 1960s: Artist/Band: 'Til?
+The angels
+10
+
+Music: 1960s: Artist/Band: 'Till Death Do Us Part?
+Bob braun
+10
+
+Music: 1960s: Artist/Band: 'Till Then?
+The classics
+10
+
+Music: 1960s: Artist/Band: 'Till?
+The vogues
+10
+
+Music: 1960s: Artist/Band: (All of a Sudden) My Heart Sings?
+Mel carter
+10
+
+Music: 1960s: Artist/Band: (Come 'Round Here) I'm the One You Need?
+The miracles
+10
+
+Music: 1960s: Artist/Band: (Dance the) Mess Around?
+Chubby Checker
+10
+
+Music: 1960s: Artist/Band: (Dance with the) Guitar Man?
+Duane eddy & the rebelettes
+10
+
+Music: 1960s: Artist/Band: (Do the New) Continental?
+The dovells
+10
+
+Music: 1960s: Artist/Band: (Down At) Papa Joe's?
+The dixiebelles with cornbread & jerry
+10
+
+Music: 1960s: Artist/Band: (Ghost) Riders In the Sky?
+Ramrods
+10
+
+Music: 1960s: Artist/Band: (Girls, Girls, Girls) Made to Love?
+Eddie hodges
+10
+
+Music: 1960s: Artist/Band: (He's My) Dreamboat?
+Connie francis
+10
+
+Music: 1960s: Artist/Band: (He's) the Great Impostor?
+The Fleetwoods
+10
+
+Music: 1960s: Artist/Band: (I Can't Get No) Satisfaction?
+The rolling stones
+10
+
+Music: 1960s: Artist/Band: (I Can't Help You) I'm Falling Too?
+Skeeter davis
+10
+
+Music: 1960s: Artist/Band: (I Do the) Shimmy Shimmy?
+Bobby freeman
+10
+
+Music: 1960s: Artist/Band: (I Know) I'm Losing You?
+The temptations
+10
+
+Music: 1960s: Artist/Band: (I Love You) Don't You Forget It?
+Perry como
+10
+
+Music: 1960s: Artist/Band: (I Wanna) Love My Life Away?
+Gene Pitney
+10
+
+Music: 1960s: Artist/Band: (I Wanna) Testify?
+The parliaments
+10
+
+Music: 1960s: Artist/Band: (I Washed My Hands In) Muddy Water?
+Johnny rivers
+10
+
+Music: 1960s: Artist/Band: (I'm a) Road Runner?
+Jr. walker & the all-stars
+10
+
+Music: 1960s: Artist/Band: (I'm Not Your) Steppin' Stone?
+The monkees
+10
+
+Music: 1960s: Artist/Band: (I'm the Girl on) Wolverton Mountain?
+Jo ann campbell
+10
+
+Music: 1960s: Artist/Band: (I've Got) Bonnie?
+Bobby rydell
+10
+
+Music: 1960s: Artist/Band: (Just Like) Romeo & Juliet?
+The reflections
+10
+
+Music: 1960s: Artist/Band: (Loneliness Made Me Realize) It's You That I Need?
+The temptations
+10
+
+Music: 1960s: Artist/Band: (Love Is Like a) Baseball Game?
+The intruders
+10
+
+Music: 1960s: Artist/Band: (Marie's the Name) His Latest Flame?
+Elvis presley
+10
+
+Music: 1960s: Artist/Band: (Remember Me) I'm the One Who Loves You?
+Dean martin
+10
+
+Music: 1960s: Artist/Band: (Say) You're My Girl?
+Roy orbison
+10
+
+Music: 1960s: Artist/Band: (Sittin' on) the Dock of the Bay?
+Otis redding
+10
+
+Music: 1960s: Artist/Band: (Such an) Easy Question?
+Elvis presley
+10
+
+Music: 1960s: Artist/Band: (Sweet Sweet Baby) Since You've Been Gone?
+Aretha franklin
+10
+
+Music: 1960s: Artist/Band: (The Graduation Song) Pomp and Circumstance?
+Adrian kimberly
+10
+
+Music: 1960s: Artist/Band: (The Lament of the Cherokee Indian) Indian Reservation?
+Don fardon
+10
+
+Music: 1960s: Artist/Band: (Theme from) Valley of the Dolls?
+Dionne warwick
+10
+
+Music: 1960s: Artist/Band: (There Was a) Tall Oak Tree?
+Dorsey Burnette
+10
+
+Music: 1960s: Artist/Band: (Today I Met) The Boy I'm Gonna Marry?
+Darlene love
+10
+
+Music: 1960s: Artist/Band: (We Ain't Got) Nothin' Yet?
+Blues magoos
+10
+
+Music: 1960s: Artist/Band: (Welcome) New Lovers?
+Pat boone
+10
+
+Music: 1960s: Artist/Band: (When She Needs Good Lovin') She Comes to Me?
+The chicago loop
+10
+
+Music: 1960s: Artist/Band: (You Don't Have To) Paint Me a Picture?
+Gary lewis & the playboys
+10
+
+Music: 1960s: Artist/Band: (You Don't Know) How Glad I Am?
+Nancy wilson
+10
+
+Music: 1960s: Artist/Band: (You Keep Me) Hangin' On?
+Joe simon
+10
+
+Music: 1960s: Artist/Band: (You Were Made for) All My Love?
+Jackie wilson
+10
+
+Music: 1960s: Artist/Band: (You're Gonna) Hurt Yourself?
+Frankie valli
+10
+
+Music: 1960s: Artist/Band: (You're My) Soul and Inspiration?
+The righteous brothers
+10
+
+Music: 1960s: Artist/Band: (You're the) Devil in Disguise?
+Elvis presley
+10
+
+Music: 1960s: Artist/Band: (You've Got to) Move Two Mountains?
+Marv johnson
+10
+
+Music: 1960s: Artist/Band: (Your Love Keeps Lifting Me) Higher and Higher?
+Jackie wilson
+10
+
+Music: 1960s: Artist/Band: 1-2-3?
+Len barry
+10
+
+Music: 1960s: Artist/Band: 1,2,3 Red Light?
+1910 fruitgum company
+10
+
+Music: 1960s: Artist/Band: 1432 Franklin Pike Circle Hero?
+Bobby russell
+10
+
+Music: 1960s: Artist/Band: 18 Yellow Roses?
+Bobby darin
+10
+
+Music: 1960s: Artist/Band: 19th Nervous Breakdown?
+The rolling stones
+10
+
+Music: 1960s: Artist/Band: 20-75?
+Willie mitchell
+10
+
+Music: 1960s: Artist/Band: 500 Miles Away From Home?
+Bobby bare
+10
+
+Music: 1960s: Artist/Band: 634-5789 (Soulsville, U.S.A.)?
+Wilson pickett
+10
+
+Music: 1960s: Artist/Band: 7 and 7 Is?
+Love
+10
+
+Music: 1960s: Artist/Band: 7 Rooms of Gloom?
+Four tops
+10
+
+Music: 1960s: Artist/Band: 96 Tears?
+? & the mysterians
+10
+
+Music: 1960s: Artist/Band: 98.6?
+Keith
+10
+
+Music: 1960s: Artist/Band: A 1960s group and also the place in St Pauls where monks finished their paternoster on Corpus Christi day?
+Amen corner
+10
+
+Music: 1960s: Artist/Band: A Banda (Ah Bahn-da)?
+Herb alpert & the tijuana brass
+10
+
+Music: 1960s: Artist/Band: A Beautiful Morning?
+The rascals
+10
+
+Music: 1960s: Artist/Band: A Boy Named Sue?
+Johnny cash
+10
+
+Music: 1960s: Artist/Band: A Brand New Me?
+Dusty springfield
+10
+
+Music: 1960s: Artist/Band: A Change Is Gonna Come?
+Sam cooke
+10
+
+Music: 1960s: Artist/Band: A Fool in Love?
+Ike & tina turner
+10
+
+Music: 1960s: Artist/Band: A Fool Never Learns?
+Andy williams
+10
+
+Music: 1960s: Artist/Band: A Girl Like You?
+The young rascals
+10
+
+Music: 1960s: Artist/Band: A Groovy Kind of Love?
+The mindbenders
+10
+
+Music: 1960s: Artist/Band: A Hazy Shade of Winter?
+Simon & garfunkel
+10
+
+Music: 1960s: Artist/Band: A Hundred Pounds of Clay?
+Gene McDaniels
+10
+
+Music: 1960s: Artist/Band: A Little Bit Me, A Little Bit You?
+The monkees
+10
+
+Music: 1960s: Artist/Band: A Little Bit of Heaven?
+Ronnie dove
+10
+
+Music: 1960s: Artist/Band: A Little Bit of Soap?
+The jarmels
+10
+
+Music: 1960s: Artist/Band: A Little Bitty Tear?
+Burl ives
+10
+
+Music: 1960s: Artist/Band: A Love She Can Count On?
+The miracles
+10
+
+Music: 1960s: Artist/Band: A Love So Fine?
+The chiffons
+10
+
+Music: 1960s: Artist/Band: A Lover's Concerto?
+The toys
+10
+
+Music: 1960s: Artist/Band: A Man Without Love (Quando M'innamoro)?
+Engelbert humperdinck
+10
+
+Music: 1960s: Artist/Band: A Mess of Blues?
+Elvis presley
+10
+
+Music: 1960s: Artist/Band: A Million To One?
+Jimmy charles & The Revelettes
+10
+
+Music: 1960s: Artist/Band: A Must to Avoid?
+Herman's hermits
+10
+
+Music: 1960s: Artist/Band: A Natural Woman (You Make Me Feel Like)?
+Aretha franklin
+10
+
+Music: 1960s: Artist/Band: A Place in the Sun?
+Stevie wonder
+10
+
+Music: 1960s: Artist/Band: A Question of Temperature?
+The balloon farm
+10
+
+Music: 1960s: Artist/Band: A Ray of Hope?
+The rascals
+10
+
+Music: 1960s: Artist/Band: A Rockin' Good Way (to Mess Around and Fall in Love)?
+Dinah Washington & brook benton
+10
+
+Music: 1960s: Artist/Band: A Satisfied Mind?
+Bobby hebb
+10
+
+Music: 1960s: Artist/Band: A Sign of the Times?
+Petula clark
+10
+
+Music: 1960s: Artist/Band: A Steel Guitar and a Glass of Wine?
+Paul anka
+10
+
+Music: 1960s: Artist/Band: A Summer Song?
+Chad & jeremy
+10
+
+Music: 1960s: Artist/Band: A Sweet Woman Like You?
+Joe tex
+10
+
+Music: 1960s: Artist/Band: A Swingin' Safari?
+Billy vaughn & his orchestra
+10
+
+Music: 1960s: Artist/Band: A Taste Of Honey?
+Herb alpert & the tijuana brass
+10
+
+Music: 1960s: Artist/Band: A Tear?
+Gene mcdaniels
+10
+
+Music: 1960s: Artist/Band: A Thousand Stars?
+Kathy young with The Innocents
+10
+
+Music: 1960s: Artist/Band: A Walk in the Black Forest?
+Horst jankowski
+10
+
+Music: 1960s: Artist/Band: A Walkin' Miracle?
+The essex
+10
+
+Music: 1960s: Artist/Band: A Well-Respected Man?
+The kinks
+10
+
+Music: 1960s: Artist/Band: A Whiter Shade of Pale?
+Procol harum
+10
+
+Music: 1960s: Artist/Band: A Woman, a Lover, a Friend?
+Jackie Wilson
+10
+
+Music: 1960s: Artist/Band: A Wonder Like You?
+Rick nelson
+10
+
+Music: 1960s: Artist/Band: A Wonderful Dream?
+The majors
+10
+
+Music: 1960s: Artist/Band: A World Of Our Own?
+The seekers
+10
+
+Music: 1960s: Artist/Band: A World Without Love?
+Peter & gordon
+10
+
+Music: 1960s: Artist/Band: Abilene?
+George hamilton iv
+10
+
+Music: 1960s: Artist/Band: About This Thing Called Love?
+Fabian
+10
+
+Music: 1960s: Artist/Band: Agent Double-O Soul?
+Edwin starr
+10
+
+Music: 1960s: Artist/Band: Ahab, the Arab?
+Ray stevens
+10
+
+Music: 1960s: Artist/Band: Ain't Gonna Lie?
+Keith
+10
+
+Music: 1960s: Artist/Band: Ain't It True?
+Andy williams
+10
+
+Music: 1960s: Artist/Band: Ain't No Mountain High Enough?
+Marvin gaye & tammi terrell
+10
+
+Music: 1960s: Artist/Band: Ain't No Way?
+Aretha franklin
+10
+
+Music: 1960s: Artist/Band: Ain't Nothing Like the Real Thing?
+Marvin gaye & tammi terrell
+10
+
+Music: 1960s: Artist/Band: Ain't Nothing You Can Do?
+Bobby bland
+10
+
+Music: 1960s: Artist/Band: Ain't She Sweet?
+The beatles
+10
+
+Music: 1960s: Artist/Band: Ain't That A Shame?
+The 4 seasons
+10
+
+Music: 1960s: Artist/Band: Ain't That Just Like a Woman?
+Fats Domino
+10
+
+Music: 1960s: Artist/Band: Ain't That Loving You Baby?
+Elvis presley
+10
+
+Music: 1960s: Artist/Band: Ain't That Peculiar?
+Marvin gaye
+10
+
+Music: 1960s: Artist/Band: Ain't Too Proud to Beg?
+The temptations
+10
+
+Music: 1960s: Artist/Band: Alice in Wonderland?
+Neil sedaka
+10
+
+Music: 1960s: Artist/Band: Alice Long (You're Still My Favorite Girlfriend)?
+Tommy boyce & bobby hart
+10
+
+Music: 1960s: Artist/Band: All Alone Am I?
+Brenda lee
+10
+
+Music: 1960s: Artist/Band: All Along the Watchtower?
+The jimi hendrix experience
+10
+
+Music: 1960s: Artist/Band: All Day And All Of The Night?
+The kinks
+10
+
+Music: 1960s: Artist/Band: All I Could Do Was Cry?
+Etta james
+10
+
+Music: 1960s: Artist/Band: All I Have To Do Is Dream?
+Richard chamberlain
+10
+
+Music: 1960s: Artist/Band: All I Need?
+The temptations
+10
+
+Music: 1960s: Artist/Band: All I Really Want to Do?
+Cher
+10
+
+Music: 1960s: Artist/Band: All I See Is You?
+Dusty springfield
+10
+
+Music: 1960s: Artist/Band: All in My Mind?
+Maxine brown
+10
+
+Music: 1960s: Artist/Band: All Strung Out?
+Nino tempo & april stevens
+10
+
+Music: 1960s: Artist/Band: All You Need Is Love?
+The beatles
+10
+
+Music: 1960s: Artist/Band: All?
+James darren
+10
+
+Music: 1960s: Artist/Band: Alley Cat?
+Bent fabric & his piano
+10
+
+Music: 1960s: Artist/Band: Alley-Oop?
+Hollywood argyles
+10
+
+Music: 1960s: Artist/Band: Almost Persuaded?
+David houston
+10
+
+Music: 1960s: Artist/Band: Alone At Last?
+Jackie wilson
+10
+
+Music: 1960s: Artist/Band: Alone?
+The 4 seasons
+10
+
+Music: 1960s: Artist/Band: Along Came Jones?
+Ray stevens
+10
+
+Music: 1960s: Artist/Band: Along Comes Mary?
+The association
+10
+
+Music: 1960s: Artist/Band: Alvin's Orchestra?
+The chipmunks & David seville
+10
+
+Music: 1960s: Artist/Band: Am I Losing You?
+Jim reeves
+10
+
+Music: 1960s: Artist/Band: Am I the Man?
+Jackie wilson
+10
+
+Music: 1960s: Artist/Band: Ame Caline (Soul Coaxing)?
+Raymond lefevre & his orchestra
+10
+
+Music: 1960s: Artist/Band: Amor?
+Ben e. king
+10
+
+Music: 1960s: Artist/Band: An Open Letter to My Teenage Son?
+Victor lundberg
+10
+
+Music: 1960s: Artist/Band: And Get Away?
+The esquires
+10
+
+Music: 1960s: Artist/Band: And I Love Her?
+The beatles
+10
+
+Music: 1960s: Artist/Band: And Roses and Roses?
+Andy williams
+10
+
+Music: 1960s: Artist/Band: And When I Die?
+Blood, sweat & tears
+10
+
+Music: 1960s: Artist/Band: Angel Baby?
+Rosie & the originals
+10
+
+Music: 1960s: Artist/Band: Angel of the Morning?
+Merrilee rush & the turnabouts
+10
+
+Music: 1960s: Artist/Band: Angel on My Shoulder?
+Shelby flint
+10
+
+Music: 1960s: Artist/Band: Angela Jones?
+Johnny ferguson
+10
+
+Music: 1960s: Artist/Band: Another Saturday Night?
+Sam cooke
+10
+
+Music: 1960s: Artist/Band: Another Sleepless Night?
+Jimmy clanton
+10
+
+Music: 1960s: Artist/Band: Any Day Now (My Wild Beautiful Bird)?
+Chuck jackson
+10
+
+Music: 1960s: Artist/Band: Any Way You Want It?
+The dave clark five
+10
+
+Music: 1960s: Artist/Band: Anybody But Me?
+Brenda lee
+10
+
+Music: 1960s: Artist/Band: Anymore?
+Teresa brewer
+10
+
+Music: 1960s: Artist/Band: Anyone Who Had a Heart?
+Dionne warwick
+10
+
+Music: 1960s: Artist/Band: Anything That's Part of You?
+Elvis presley
+10
+
+Music: 1960s: Artist/Band: Apache?
+Jorgen ingmann & his guitar
+10
+
+Music: 1960s: Artist/Band: Apple Green?
+June valli
+10
+
+Music: 1960s: Artist/Band: Apple of My Eye?
+Roy head & the traits
+10
+
+Music: 1960s: Artist/Band: Apples, Peaches, Pumpkin Pie?
+Jay & the techniques
+10
+
+Music: 1960s: Artist/Band: Aquarius / Let the Sunshine In (The Flesh Failures)?
+The 5th dimension
+10
+
+Music: 1960s: Artist/Band: Are You Happy?
+Jerry butler
+10
+
+Music: 1960s: Artist/Band: Are You Lonely for Me?
+Freddie scott
+10
+
+Music: 1960s: Artist/Band: Are You Lonesome Tonight?
+Elvis presley
+10
+
+Music: 1960s: Artist/Band: Are You There (with Another Girl)?
+Dionne warwick
+10
+
+Music: 1960s: Artist/Band: Arizona?
+Mark lindsay
+10
+
+Music: 1960s: Artist/Band: Artificial Flowers?
+Bobby darin
+10
+
+Music: 1960s: Artist/Band: As If I Didn't Know?
+Adan wade
+10
+
+Music: 1960s: Artist/Band: As Usual?
+Brenda lee
+10
+
+Music: 1960s: Artist/Band: Asia Minor?
+Kokomo
+10
+
+Music: 1960s: Artist/Band: Ask Me?
+Elvis presley
+10
+
+Music: 1960s: Artist/Band: Ask the Lonely?
+Four tops
+10
+
+Music: 1960s: Artist/Band: At the Scene?
+The dave clark five
+10
+
+Music: 1960s: Artist/Band: At the Zoo?
+Simon & garfunkel
+10
+
+Music: 1960s: Artist/Band: Atlantis?
+Donovan
+10
+
+Music: 1960s: Artist/Band: Attack?
+The toys
+10
+
+Music: 1960s: Artist/Band: Autumn of My Life?
+Bobby goldsboro
+10
+
+Music: 1960s: Artist/Band: B-A-B-Y?
+Carla thomas
+10
+
+Music: 1960s: Artist/Band: Baby (You've Got What It Takes)?
+Dinah Washington & brook benton
+10
+
+Music: 1960s: Artist/Band: Baby Blue?
+The echoes
+10
+
+Music: 1960s: Artist/Band: Baby Don't Go?
+Sonny & cher
+10
+
+Music: 1960s: Artist/Band: Baby Don't You Do It?
+Marvin gaye
+10
+
+Music: 1960s: Artist/Band: Baby Don't You Weep?
+Garnet mimms & the enchanters
+10
+
+Music: 1960s: Artist/Band: Baby I Love You?
+Aretha franklin
+10
+
+Music: 1960s: Artist/Band: Baby I'm for Real?
+The originals
+10
+
+Music: 1960s: Artist/Band: Baby Let's Wait?
+The royal guardsmen
+10
+
+Music: 1960s: Artist/Band: Baby Love?
+The supremes
+10
+
+Music: 1960s: Artist/Band: Baby Oh Baby?
+The shells
+10
+
+Music: 1960s: Artist/Band: Baby Sittin' Boogie?
+Buzz clifford
+10
+
+Music: 1960s: Artist/Band: Baby Take Me in Your Arms?
+Jefferson
+10
+
+Music: 1960s: Artist/Band: Baby What You Want Me To Do?
+Jimmy reed
+10
+
+Music: 1960s: Artist/Band: Baby Workout?
+Jackie wilson
+10
+
+Music: 1960s: Artist/Band: Baby You Got It?
+Brenton wood
+10
+
+Music: 1960s: Artist/Band: Baby, Baby Don't Cry?
+Smokey robinson & the miracles
+10
+
+Music: 1960s: Artist/Band: Baby, Come Back?
+The equals
+10
+
+Music: 1960s: Artist/Band: Baby, Don't You Cry (The New Swingova Rhythm)?
+Ray charles
+10
+
+Music: 1960s: Artist/Band: Baby, I'm Yours?
+Barbara lewis
+10
+
+Music: 1960s: Artist/Band: Baby, Now That I've Found You?
+The foundations
+10
+
+Music: 1960s: Artist/Band: Baby, Scratch My Back?
+Slim harpo
+10
+
+Music: 1960s: Artist/Band: Baby, The Rain Must Fall?
+Glenn yarbrough
+10
+
+Music: 1960s: Artist/Band: Baby, You're a Rich Man?
+The beatles
+10
+
+Music: 1960s: Artist/Band: Baby's First Christmas?
+Connie Francis
+10
+
+Music: 1960s: Artist/Band: Back In My Arms Again?
+The supremes
+10
+
+Music: 1960s: Artist/Band: Back On the Street Again?
+The sunshine company
+10
+
+Music: 1960s: Artist/Band: Backfield In Motion?
+Mel & tim
+10
+
+Music: 1960s: Artist/Band: Backstage?
+Gene pitney
+10
+
+Music: 1960s: Artist/Band: Bad Girl?
+Neil sedaka
+10
+
+Music: 1960s: Artist/Band: Bad Man Blunder?
+The kingston trio
+10
+
+Music: 1960s: Artist/Band: Bad Moon Rising?
+Creedence clearwater revival
+10
+
+Music: 1960s: Artist/Band: Bad to Me?
+Billy j. kramer & the dakotas
+10
+
+Music: 1960s: Artist/Band: Ball of Fire?
+Tommy james & the shondells
+10
+
+Music: 1960s: Artist/Band: Ballad Of the Alamo?
+Marty robbins
+10
+
+Music: 1960s: Artist/Band: Ballad Of the Green Berets?
+Staff sgt. barry sadler
+10
+
+Music: 1960s: Artist/Band: Band of Gold?
+Mel carter
+10
+
+Music: 1960s: Artist/Band: Bang Bang (My Baby Shot Me Down)?
+Cher
+10
+
+Music: 1960s: Artist/Band: Bang-Shang-A-Lang?
+The archies
+10
+
+Music: 1960s: Artist/Band: Barbara?
+The temptations
+10
+
+Music: 1960s: Artist/Band: Barefootin'?
+Robert parker
+10
+
+Music: 1960s: Artist/Band: Batman Theme?
+Neal hefti & his orchestra
+10
+
+Music: 1960s: Artist/Band: Battle Hymn of the Republic?
+Andy williams
+10
+
+Music: 1960s: Artist/Band: Be Anything (But Be Mine)?
+Connie francis
+10
+
+Music: 1960s: Artist/Band: Be Careful of Stones That You Throw?
+Dion
+10
+
+Music: 1960s: Artist/Band: Be My Baby?
+The ronettes
+10
+
+Music: 1960s: Artist/Band: Be True to Your School?
+The beach boys
+10
+
+Music: 1960s: Artist/Band: Be True to Yourself?
+Bobby vee
+10
+
+Music: 1960s: Artist/Band: Beans in My Ears?
+The serendipity singers
+10
+
+Music: 1960s: Artist/Band: Beatnik Fly?
+Johnny & the hurricanes
+10
+
+Music: 1960s: Artist/Band: Beautiful People?
+Bobby vee & the strangers
+10
+
+Music: 1960s: Artist/Band: Beauty Is Only Skin Deep?
+The temptations
+10
+
+Music: 1960s: Artist/Band: Because They're Young?
+Duane eddy
+10
+
+Music: 1960s: Artist/Band: Because?
+The dave clark five
+10
+
+Music: 1960s: Artist/Band: Beechwood 4-5789?
+The marvelettes
+10
+
+Music: 1960s: Artist/Band: Before and After?
+Chad & jeremy
+10
+
+Music: 1960s: Artist/Band: Beg, Borrow and Steal?
+Ohio express
+10
+
+Music: 1960s: Artist/Band: Beggin'?
+The 4 seasons
+10
+
+Music: 1960s: Artist/Band: Bella Linda?
+The grass roots
+10
+
+Music: 1960s: Artist/Band: Bend Me, Shape Me?
+The American breed
+10
+
+Music: 1960s: Artist/Band: Bernadette?
+Four tops
+10
+
+Music: 1960s: Artist/Band: Best of Both Worlds?
+Lulu
+10
+
+Music: 1960s: Artist/Band: Better Tell Him No?
+The starlets
+10
+
+Music: 1960s: Artist/Band: Bewildered?
+James brown & the famous Flames
+10
+
+Music: 1960s: Artist/Band: Beyond the Sea?
+Bobby darin
+10
+
+Music: 1960s: Artist/Band: Big Bad John?
+Jimmy dean
+10
+
+Music: 1960s: Artist/Band: Big Boss Man?
+Elvis presley
+10
+
+Music: 1960s: Artist/Band: Big Cold Wind?
+Pat boone
+10
+
+Music: 1960s: Artist/Band: Big Girls Don't Cry?
+The 4 seasons
+10
+
+Music: 1960s: Artist/Band: Big Iron?
+Marty robbins
+10
+
+Music: 1960s: Artist/Band: Big John (Ain't You Gonna Marry Me)?
+The shirelles
+10
+
+Music: 1960s: Artist/Band: Big Man in Town?
+The 4 seasons
+10
+
+Music: 1960s: Artist/Band: Bill Bailey?
+Bobby darin
+10
+
+Music: 1960s: Artist/Band: Billy and Sue?
+B.j. thomas & the triumphs
+10
+
+Music: 1960s: Artist/Band: Bird Dance Beat?
+The trashmen
+10
+
+Music: 1960s: Artist/Band: Birdland?
+Chubby checker
+10
+
+Music: 1960s: Artist/Band: Birthday Party?
+The pixies three
+10
+
+Music: 1960s: Artist/Band: Birthday?
+Underground sunshine
+10
+
+Music: 1960s: Artist/Band: Bits And Pieces?
+The dave clark five
+10
+
+Music: 1960s: Artist/Band: Black is Black?
+Los bravos
+10
+
+Music: 1960s: Artist/Band: Black Pearl?
+Sonny charles & the checkmates, ltd
+10
+
+Music: 1960s: Artist/Band: Blame It On the Bossa Nova?
+Eydie gorme
+10
+
+Music: 1960s: Artist/Band: Bless Our Love?
+Gene chandler
+10
+
+Music: 1960s: Artist/Band: Bless You?
+Tony orlando
+10
+
+Music: 1960s: Artist/Band: Blue Angel?
+Roy orbison
+10
+
+Music: 1960s: Artist/Band: Blue Autumn?
+Bobby goldsboro
+10
+
+Music: 1960s: Artist/Band: Blue Bayou?
+Roy orbison
+10
+
+Music: 1960s: Artist/Band: Blue Moon?
+The marcels
+10
+
+Music: 1960s: Artist/Band: Blue on Blue?
+Bobby vinton
+10
+
+Music: 1960s: Artist/Band: Blue Tango?
+Bill black's combo
+10
+
+Music: 1960s: Artist/Band: Blue Velvet?
+Bobby vinton
+10
+
+Music: 1960s: Artist/Band: Blue Winter?
+Connie francis
+10
+
+Music: 1960s: Artist/Band: Blue's Theme?
+Davie allan & the arrows
+10
+
+Music: 1960s: Artist/Band: Blues (Stay Away from Me)?
+Ace cannon
+10
+
+Music: 1960s: Artist/Band: Bobby's Girl?
+Marcie blane
+10
+
+Music: 1960s: Artist/Band: Bonanza?
+Al caiola & his orchestra
+10
+
+Music: 1960s: Artist/Band: Bongo Stomp?
+Little joey & the flips
+10
+
+Music: 1960s: Artist/Band: Bonnie Came Back?
+Duane eddy
+10
+
+Music: 1960s: Artist/Band: Boogaloo Down Broadway?
+The fantastic johnny c
+10
+
+Music: 1960s: Artist/Band: Born a Woman?
+Sandy posey
+10
+
+Music: 1960s: Artist/Band: Born to Be Wild?
+Steppenwolf
+10
+
+Music: 1960s: Artist/Band: Boss Guitar?
+Duane eddy
+10
+
+Music: 1960s: Artist/Band: Bossa Nova Baby?
+Elvis presley
+10
+
+Music: 1960s: Artist/Band: Both Sides Now?
+Judy collins
+10
+
+Music: 1960s: Artist/Band: Bottle of Wine?
+The fireballs
+10
+
+Music: 1960s: Artist/Band: Bowling Green?
+The everly brothers
+10
+
+Music: 1960s: Artist/Band: Brass Buttons?
+The string-a-longs
+10
+
+Music: 1960s: Artist/Band: Bread and Butter?
+The newbeats
+10
+
+Music: 1960s: Artist/Band: Break Away (from That Boy)?
+The newbeats
+10
+
+Music: 1960s: Artist/Band: Break it to Me Gently?
+Brenda lee
+10
+
+Music: 1960s: Artist/Band: Break Your Promise?
+The delfonics
+10
+
+Music: 1960s: Artist/Band: Breakin' In a Brand New Broken Heart?
+Connie francis
+10
+
+Music: 1960s: Artist/Band: Breakin' Up Is Breakin' My Heart?
+Roy orbison
+10
+
+Music: 1960s: Artist/Band: Breaking Up Is Hard to Do?
+Neil sedaka
+10
+
+Music: 1960s: Artist/Band: Bring It Up?
+James brown & the famous flames
+10
+
+Music: 1960s: Artist/Band: Bristol Stomp?
+The dovells
+10
+
+Music: 1960s: Artist/Band: Bristol Twistin' Annie?
+The dovells
+10
+
+Music: 1960s: Artist/Band: Brother Love's Travelling Salvation Show?
+Neil diamond
+10
+
+Music: 1960s: Artist/Band: Brown Eyed Girl?
+Van morrison
+10
+
+Music: 1960s: Artist/Band: Build Me Up Buttercup?
+The foundations
+10
+
+Music: 1960s: Artist/Band: Bulldog?
+The fireballs
+10
+
+Music: 1960s: Artist/Band: Bumble Bee?
+The searchers
+10
+
+Music: 1960s: Artist/Band: Bumble Boogie?
+B. bumble & the Stingers
+10
+
+Music: 1960s: Artist/Band: Burning Bridges?
+Jack scott
+10
+
+Music: 1960s: Artist/Band: Bus Stop?
+The hollies
+10
+
+Music: 1960s: Artist/Band: Bust Out?
+The busters
+10
+
+Music: 1960s: Artist/Band: Busted?
+Ray charles
+10
+
+Music: 1960s: Artist/Band: But It's Alright?
+J.j. jackson
+10
+
+Music: 1960s: Artist/Band: But You Know I Love You?
+Kenny rogers & the first edition
+10
+
+Music: 1960s: Artist/Band: But You're Mine?
+Sonny & cher
+10
+
+Music: 1960s: Artist/Band: Butterfly Baby?
+Bobby rydell
+10
+
+Music: 1960s: Artist/Band: Bye, Bye, Baby (Baby Goodbye)?
+The 4 seasons
+10
+
+Music: 1960s: Artist/Band: C'est Si Bon (It's So Good)?
+Conway twitty
+10
+
+Music: 1960s: Artist/Band: C'mon and Swim?
+Bobby freeman
+10
+
+Music: 1960s: Artist/Band: C'mon Marianne?
+The 4 seasons
+10
+
+Music: 1960s: Artist/Band: Cab Driver?
+The mills brothers
+10
+
+Music: 1960s: Artist/Band: Calcutta?
+Lawrence welk
+10
+
+Music: 1960s: Artist/Band: Calendar Girl?
+Neil sedaka
+10
+
+Music: 1960s: Artist/Band: California Dreamin'?
+The mamas & the papas
+10
+
+Music: 1960s: Artist/Band: California Girls?
+The beach boys
+10
+
+Music: 1960s: Artist/Band: California Nights?
+Lesley gore
+10
+
+Music: 1960s: Artist/Band: California Soul?
+The 5th dimension
+10
+
+Music: 1960s: Artist/Band: California Sun?
+The rivieras
+10
+
+Music: 1960s: Artist/Band: Call Me Lightning?
+The who
+10
+
+Music: 1960s: Artist/Band: Call Me Mr. In-Between?
+Burl ives
+10
+
+Music: 1960s: Artist/Band: Call Me?
+Chris montez
+10
+
+Music: 1960s: Artist/Band: Call On Me?
+Bobby bland
+10
+
+Music: 1960s: Artist/Band: Can I Change My Mind?
+Tyrone davis
+10
+
+Music: 1960s: Artist/Band: Can I Get a Witness?
+Marvin gaye
+10
+
+Music: 1960s: Artist/Band: Can't Buy Me Love?
+The beatles
+10
+
+Music: 1960s: Artist/Band: Can't Get Used To Losing You?
+Andy williams
+10
+
+Music: 1960s: Artist/Band: Can't Help Falling in Love?
+Elvis presley
+10
+
+Music: 1960s: Artist/Band: Can't Take My Eyes off You?
+Frankie valli
+10
+
+Music: 1960s: Artist/Band: Can't You Hear My Heartbeat?
+Herman's hermits
+10
+
+Music: 1960s: Artist/Band: Can't You See That She's Mine?
+The dave clark five
+10
+
+Music: 1960s: Artist/Band: Candy Girl?
+The 4 seasons
+10
+
+Music: 1960s: Artist/Band: Candy Man?
+Roy orbison
+10
+
+Music: 1960s: Artist/Band: Cara Mia?
+Jay & the americans
+10
+
+Music: 1960s: Artist/Band: Cara-Lin?
+The strangeloves
+10
+
+Music: 1960s: Artist/Band: Caroline, No?
+Brian wilson
+10
+
+Music: 1960s: Artist/Band: Carpet Man?
+The 5th dimension
+10
+
+Music: 1960s: Artist/Band: Carrie-Anne?
+The hollies
+10
+
+Music: 1960s: Artist/Band: Carry Me Back?
+The rascals
+10
+
+Music: 1960s: Artist/Band: Casino Royale?
+Herb alpert & the tijuana brass
+10
+
+Music: 1960s: Artist/Band: Catch the Wind?
+Donovan
+10
+
+Music: 1960s: Artist/Band: Catch Us If You Can?
+The dave clark five
+10
+
+Music: 1960s: Artist/Band: Caterina?
+Perry como
+10
+
+Music: 1960s: Artist/Band: Cathy's Clown?
+The everly brothers
+10
+
+Music: 1960s: Artist/Band: Chain Gang?
+Sam cooke
+10
+
+Music: 1960s: Artist/Band: Chain of Fools?
+Aretha franklin
+10
+
+Music: 1960s: Artist/Band: Chained?
+Marvin gaye
+10
+
+Music: 1960s: Artist/Band: Chains?
+The cookies
+10
+
+Music: 1960s: Artist/Band: Chapel in the Moonlight?
+The bachelors
+10
+
+Music: 1960s: Artist/Band: Chapel of Love?
+The dixie cups
+10
+
+Music: 1960s: Artist/Band: Charms?
+Bobby vee
+10
+
+Music: 1960s: Artist/Band: Chattanooga Choo Choo?
+Floyd cramer
+10
+
+Music: 1960s: Artist/Band: Cherish?
+The association
+10
+
+Music: 1960s: Artist/Band: Cherry Hill Park?
+Billy joe royal
+10
+
+Music: 1960s: Artist/Band: Cherry Pie?
+Skip & flip
+10
+
+Music: 1960s: Artist/Band: Cherry, Cherry?
+Neil diamond
+10
+
+Music: 1960s: Artist/Band: Chewy Chewy?
+Ohio express
+10
+
+Music: 1960s: Artist/Band: Child of Clay?
+Jimmie rodgers
+10
+
+Music: 1960s: Artist/Band: China Doll?
+The ames brothers
+10
+
+Music: 1960s: Artist/Band: Chip Chip?
+Gene mcdaniels
+10
+
+Music: 1960s: Artist/Band: Choice of Colors?
+The impressions
+10
+
+Music: 1960s: Artist/Band: Choo Choo Train?
+The box tops
+10
+
+Music: 1960s: Artist/Band: Chug-a-Lug?
+Roger miller
+10
+
+Music: 1960s: Artist/Band: Cinderella?
+Jack ross
+10
+
+Music: 1960s: Artist/Band: Cindy's Birthday?
+Johnny crawford
+10
+
+Music: 1960s: Artist/Band: Cinnamon?
+Derek (johnny cymbal)
+10
+
+Music: 1960s: Artist/Band: Cissy Strut?
+The meters
+10
+
+Music: 1960s: Artist/Band: Classical Gas?
+Mason williams
+10
+
+Music: 1960s: Artist/Band: Clean Up Your Own Backyard?
+Elvis presley
+10
+
+Music: 1960s: Artist/Band: Clementine?
+Bobby darin
+10
+
+Music: 1960s: Artist/Band: Clinging Vine?
+Bobby vinton
+10
+
+Music: 1960s: Artist/Band: Close to Cathy?
+Mike clifford
+10
+
+Music: 1960s: Artist/Band: Close Your Eyes?
+Peaches & herb
+10
+
+Music: 1960s: Artist/Band: Cold Sweat (Part?
+James brown
+10
+
+Music: 1960s: Artist/Band: Cold Turkey?
+John lennon & the plastic ono band
+10
+
+Music: 1960s: Artist/Band: Color Him Father?
+The winstons
+10
+
+Music: 1960s: Artist/Band: Color My World?
+Petula clark
+10
+
+Music: 1960s: Artist/Band: Come A Little Bit Closer?
+Jay & the americans
+10
+
+Music: 1960s: Artist/Band: Come and Get These Memories?
+Martha & the vandellas
+10
+
+Music: 1960s: Artist/Band: Come and Stay with Me?
+Marianne faithfull
+10
+
+Music: 1960s: Artist/Band: Come Back Silly Girl?
+The lettermen
+10
+
+Music: 1960s: Artist/Band: Come Back When You Grow Up?
+Bobby vee & the strangers
+10
+
+Music: 1960s: Artist/Band: Come Home?
+The dave clark five
+10
+
+Music: 1960s: Artist/Band: Come On Down to My Boat?
+Every mothers' son
+10
+
+Music: 1960s: Artist/Band: Come On Little Angel?
+The belmonts
+10
+
+Music: 1960s: Artist/Band: Come On, Let's Go?
+The mccoys
+10
+
+Music: 1960s: Artist/Band: Come On?
+Tommy roe
+10
+
+Music: 1960s: Artist/Band: Come Running Back?
+Dean martin
+10
+
+Music: 1960s: Artist/Band: Come See?
+Major lance
+10
+
+Music: 1960s: Artist/Band: Come To the Sunshine?
+Harpers bizarre
+10
+
+Music: 1960s: Artist/Band: Come Together?
+The beatles
+10
+
+Music: 1960s: Artist/Band: Comin' Home Baby?
+Mel torme
+10
+
+Music: 1960s: Artist/Band: Coming Home Soldier?
+Bobby vinton
+10
+
+Music: 1960s: Artist/Band: Coming on Strong?
+Brenda lee
+10
+
+Music: 1960s: Artist/Band: Commotion?
+Creedence clearwater revival
+10
+
+Music: 1960s: Artist/Band: Concrete and Clay?
+Unit four + two
+10
+
+Music: 1960s: Artist/Band: Conscience?
+James darren
+10
+
+Music: 1960s: Artist/Band: Cool Jerk?
+The capitols
+10
+
+Music: 1960s: Artist/Band: Corinna, Corinna?
+Ray peterson
+10
+
+Music: 1960s: Artist/Band: Cotton Candy?
+Al hirt
+10
+
+Music: 1960s: Artist/Band: Cotton Fields?
+The highwaymen
+10
+
+Music: 1960s: Artist/Band: Count Every Star?
+Donnie & the Dreamers
+10
+
+Music: 1960s: Artist/Band: Count Me In?
+Gary lewis & the playboys
+10
+
+Music: 1960s: Artist/Band: Country Boy?
+Fats domino
+10
+
+Music: 1960s: Artist/Band: Country Girl, city man?
+Billy vera & judy clay
+10
+
+Music: 1960s: Artist/Band: Court of Love?
+The unifics
+10
+
+Music: 1960s: Artist/Band: Cousin of Mine?
+Sam cooke
+10
+
+Music: 1960s: Artist/Band: Cowboys to Girls?
+The intruders
+10
+
+Music: 1960s: Artist/Band: Cradle of Love?
+Johnny preston
+10
+
+Music: 1960s: Artist/Band: Crazy Arms?
+Bob beckham
+10
+
+Music: 1960s: Artist/Band: Crazy Downtown?
+Allan sherman
+10
+
+Music: 1960s: Artist/Band: Crazy?
+Patsy cline
+10
+
+Music: 1960s: Artist/Band: Creeque Alley?
+The mamas & the papas
+10
+
+Music: 1960s: Artist/Band: Crimson and Clover?
+Tommy james & the shondells
+10
+
+Music: 1960s: Artist/Band: Cross Fire!?
+The orlons
+10
+
+Music: 1960s: Artist/Band: Crossroads?
+Cream
+10
+
+Music: 1960s: Artist/Band: Cry Baby Cry?
+The angels
+10
+
+Music: 1960s: Artist/Band: Cry Baby?
+Garnet mimms & the enchanters
+10
+
+Music: 1960s: Artist/Band: Cry Like A Baby?
+The box tops
+10
+
+Music: 1960s: Artist/Band: Cry To Me?
+Betty harris
+10
+
+Music: 1960s: Artist/Band: Cry?
+Ronnie dove
+10
+
+Music: 1960s: Artist/Band: Crying In the Chapel?
+Elvis presley
+10
+
+Music: 1960s: Artist/Band: Crying In the Rain?
+The everly brothers
+10
+
+Music: 1960s: Artist/Band: Crying Time?
+Ray charles
+10
+
+Music: 1960s: Artist/Band: Crystal Blue Persuasion?
+Tommy james & the shondells
+10
+
+Music: 1960s: Artist/Band: Cycles?
+Frank sinatra
+10
+
+Music: 1960s: Artist/Band: D.W. Washburn?
+The monkees
+10
+
+Music: 1960s: Artist/Band: Da Doo Ron Ron (When He Walked Me Home)?
+The crystals
+10
+
+Music: 1960s: Artist/Band: Daddy Sang Bass?
+Johnny cash
+10
+
+Music: 1960s: Artist/Band: Daddy's Home?
+Shep & the limelites
+10
+
+Music: 1960s: Artist/Band: Daddy's Little Man?
+O.c. smith
+10
+
+Music: 1960s: Artist/Band: Daisy Petal Pickin'?
+Jimmy gilmer & the fireballs
+10
+
+Music: 1960s: Artist/Band: Dance on Little Girl?
+Paul anka
+10
+
+Music: 1960s: Artist/Band: Dance to the Music?
+Sly & the family stone
+10
+
+Music: 1960s: Artist/Band: Dance, Dance, Dance?
+The beach boys
+10
+
+Music: 1960s: Artist/Band: Dancin' Party?
+Chubby checker
+10
+
+Music: 1960s: Artist/Band: Dancing in the Street?
+Martha & the vandellas
+10
+
+Music: 1960s: Artist/Band: Dandelion?
+The rolling stones
+10
+
+Music: 1960s: Artist/Band: Dandy?
+Herman's hermits
+10
+
+Music: 1960s: Artist/Band: Dang Me?
+Roger miller
+10
+
+Music: 1960s: Artist/Band: Danke Schoen?
+Wayne newton
+10
+
+Music: 1960s: Artist/Band: Darlin'?
+The beach boys
+10
+
+Music: 1960s: Artist/Band: Darling Be Home Soon?
+The lovin' spoonful
+10
+
+Music: 1960s: Artist/Band: Dawn (Go Away)?
+The 4 seasons
+10
+
+Music: 1960s: Artist/Band: Day for Decision?
+Johnny sea
+10
+
+Music: 1960s: Artist/Band: Day Is Done?
+Peter, paul & mary
+10
+
+Music: 1960s: Artist/Band: Day Tripper?
+The beatles
+10
+
+Music: 1960s: Artist/Band: Daydream Believer?
+The monkees
+10
+
+Music: 1960s: Artist/Band: Daydream?
+The lovin' spoonful
+10
+
+Music: 1960s: Artist/Band: Days of Wine and Roses?
+Andy williams
+10
+
+Music: 1960s: Artist/Band: Dead End Street?
+Lou rawls
+10
+
+Music: 1960s: Artist/Band: Dead Man's Curve?
+Jan & dean
+10
+
+Music: 1960s: Artist/Band: Dear Heart?
+Andy williams
+10
+
+Music: 1960s: Artist/Band: Dear Ivan?
+Jimmy dean
+10
+
+Music: 1960s: Artist/Band: Dear One?
+Larry finnegan
+10
+
+Music: 1960s: Artist/Band: Dedicated Follower of Fashion?
+The kinks
+10
+
+Music: 1960s: Artist/Band: Deep Purple?
+Nino tempo & april stevens
+10
+
+Music: 1960s: Artist/Band: Delaware?
+Perry como
+10
+
+Music: 1960s: Artist/Band: Delilah?
+Tom jones
+10
+
+Music: 1960s: Artist/Band: Denise?
+Randy & the rainbows
+10
+
+Music: 1960s: Artist/Band: Desafinado?
+Stan getz & charlie byrd
+10
+
+Music: 1960s: Artist/Band: Desert Pete?
+The kingston trio
+10
+
+Music: 1960s: Artist/Band: Devil Or Angel?
+Bobby vee
+10
+
+Music: 1960s: Artist/Band: Devil with a Blue Dress On / Good Golly Miss Molly?
+Mitch ryder & the detroit wheels
+10
+
+Music: 1960s: Artist/Band: Devil Woman?
+Marty robbins
+10
+
+Music: 1960s: Artist/Band: Diamonds and Pearls?
+The paradons
+10
+
+Music: 1960s: Artist/Band: Diane?
+The bachelors
+10
+
+Music: 1960s: Artist/Band: Did You Ever Have to Make Up Your Mind?
+The lovin' spoonful
+10
+
+Music: 1960s: Artist/Band: Did You See Her Eyes?
+The illusion
+10
+
+Music: 1960s: Artist/Band: Different Drum?
+Linda ronstadt & the stone poneys
+10
+
+Music: 1960s: Artist/Band: Ding Dong! The Witch Is Dead?
+The fifth estate
+10
+
+Music: 1960s: Artist/Band: Ding-a-Ling?
+Bobby rydell
+10
+
+Music: 1960s: Artist/Band: Dirty Water?
+The standells
+10
+
+Music: 1960s: Artist/Band: Distant Shores?
+Chad & jeremy
+10
+
+Music: 1960s: Artist/Band: Dizzy?
+Tommy roe
+10
+
+Music: 1960s: Artist/Band: Do I Love You?
+The ronettes
+10
+
+Music: 1960s: Artist/Band: Do It Again a Little Bit Slower?
+Jon & robin & the in crowd
+10
+
+Music: 1960s: Artist/Band: Do It Again?
+The beach boys
+10
+
+Music: 1960s: Artist/Band: Do Something to Me?
+Tommy james & the shondells
+10
+
+Music: 1960s: Artist/Band: Do the Bird?
+Dee dee sharp
+10
+
+Music: 1960s: Artist/Band: Do the Boomerang?
+Jr. walker & the all-stars
+10
+
+Music: 1960s: Artist/Band: Do the Clam?
+Elvis presley
+10
+
+Music: 1960s: Artist/Band: Do the Freddie?
+Freddie & the dreamers
+10
+
+Music: 1960s: Artist/Band: Do Wah Diddy Diddy?
+Manfred mann
+10
+
+Music: 1960s: Artist/Band: Do You Believe in Magic?
+The lovin' spoonful
+10
+
+Music: 1960s: Artist/Band: Do You Know the Way to San Jose?
+Dionne warwick
+10
+
+Music: 1960s: Artist/Band: Do You Wanna Dance?
+The beach boys
+10
+
+Music: 1960s: Artist/Band: Do You Want to Know a Secret?
+The beatles
+10
+
+Music: 1960s: Artist/Band: Do Your Thing?
+Watts 103rd st. rhythm band
+10
+
+Music: 1960s: Artist/Band: Do-Re-Mi?
+Lee dorsey
+10
+
+Music: 1960s: Artist/Band: Do-Wacka-Do?
+Roger miller
+10
+
+Music: 1960s: Artist/Band: Does Anybody Know I'm Here?
+The dells
+10
+
+Music: 1960s: Artist/Band: Does Your Chewing Gum Lose Its Flavor?
+Lonnie donegan & his skiffle group
+10
+
+Music: 1960s: Artist/Band: Does Your Mama Know About Me?
+Bobby taylor & the vancouvers
+10
+
+Music: 1960s: Artist/Band: Doggin' Around?
+Jackie wilson
+10
+
+Music: 1960s: Artist/Band: Doggone Right?
+Smokey robinson & the miracles
+10
+
+Music: 1960s: Artist/Band: Doll House?
+Donnie brooks
+10
+
+Music: 1960s: Artist/Band: Dominique?
+The singing nun
+10
+
+Music: 1960s: Artist/Band: Don't Be Afraid, Little Darlin'?
+Steve lawrence
+10
+
+Music: 1960s: Artist/Band: Don't Be Cruel?
+Bill black's combo
+10
+
+Music: 1960s: Artist/Band: Don't Bet Money Honey?
+Linda scott
+10
+
+Music: 1960s: Artist/Band: Don't Blame Me?
+The everly brothers
+10
+
+Music: 1960s: Artist/Band: Don't Blame the Children?
+Sammy davis, jr
+10
+
+Music: 1960s: Artist/Band: Don't Break the Heart That Loves You?
+Connie francis
+10
+
+Music: 1960s: Artist/Band: Don't Bring Me Down?
+The animals
+10
+
+Music: 1960s: Artist/Band: Don't Come Knockin'?
+Fats domino
+10
+
+Music: 1960s: Artist/Band: Don't Cry Daddy?
+Elvis presley
+10
+
+Music: 1960s: Artist/Band: Don't Cry, Baby?
+Etta james
+10
+
+Music: 1960s: Artist/Band: Don't Forget I Still Love You?
+Bobbi martin
+10
+
+Music: 1960s: Artist/Band: Don't Give in to Him?
+Gary puckett & the union gap
+10
+
+Music: 1960s: Artist/Band: Don't Give Up?
+Petula clark
+10
+
+Music: 1960s: Artist/Band: Don't Go Near the Indians?
+Rex allen
+10
+
+Music: 1960s: Artist/Band: Don't Go Out Into the Rain (You're Going to Melt)?
+Herman's hermits
+10
+
+Music: 1960s: Artist/Band: Don't Go to Strangers?
+Etta jones
+10
+
+Music: 1960s: Artist/Band: Don't Hang Up?
+The orlons
+10
+
+Music: 1960s: Artist/Band: Don't Just Stand There?
+Patty duke
+10
+
+Music: 1960s: Artist/Band: Don't Let Me Be Misunderstood?
+The animals
+10
+
+Music: 1960s: Artist/Band: Don't Let Me Down?
+The beatles
+10
+
+Music: 1960s: Artist/Band: Don't Let the Joneses Get You Down?
+The temptations
+10
+
+Music: 1960s: Artist/Band: Don't Let the Rain Come Down (Crooked Little Man)?
+The serendipity singers
+10
+
+Music: 1960s: Artist/Band: Don't Let the Rain Fall Down on Me?
+The critters
+10
+
+Music: 1960s: Artist/Band: Don't Let the Sun Catch You Crying?
+Gerry & the pacemakers
+10
+
+Music: 1960s: Artist/Band: Don't Make Me Over?
+Dionne warwick
+10
+
+Music: 1960s: Artist/Band: Don't Mess Up A Good Thing?
+Fontella bass & bobby mclure
+10
+
+Music: 1960s: Artist/Band: Don't Mess with Bill?
+The marvelettes
+10
+
+Music: 1960s: Artist/Band: Don't Play That Song (You Lied)?
+Ben e. king
+10
+
+Music: 1960s: Artist/Band: Don't Say Goodnight and Mean Goodbye?
+The shirelles
+10
+
+Music: 1960s: Artist/Band: Don't Say Nothin' Bad (About My Baby)?
+The cookies
+10
+
+Music: 1960s: Artist/Band: Don't Set Me Free?
+Ray charles
+10
+
+Music: 1960s: Artist/Band: Don't Sleep In The Subway?
+Petula clark
+10
+
+Music: 1960s: Artist/Band: Don't Take It So Hard?
+Paul revere & the raiders
+10
+
+Music: 1960s: Artist/Band: Don't Think Twice, It's All Right?
+Peter, paul & mary
+10
+
+Music: 1960s: Artist/Band: Don't Think Twice?
+Wonder who? (4 seasons)
+10
+
+Music: 1960s: Artist/Band: Don't Throw Away All Those Teardrops?
+Frankie avalon
+10
+
+Music: 1960s: Artist/Band: Don't Throw Your Love Away?
+The searchers
+10
+
+Music: 1960s: Artist/Band: Don't Touch Me?
+Bettye swann
+10
+
+Music: 1960s: Artist/Band: Don't Worry Baby?
+The beach boys
+10
+
+Music: 1960s: Artist/Band: Don't Worry?
+Marty robbins
+10
+
+Music: 1960s: Artist/Band: Don't You Believe It?
+Andy williams
+10
+
+Music: 1960s: Artist/Band: Don't You Care?
+The buckinghams
+10
+
+Music: 1960s: Artist/Band: Donna the Prima Donna?
+Dion
+10
+
+Music: 1960s: Artist/Band: Double Shot (of My Baby's Love)?
+Swingin' medallions
+10
+
+Music: 1960s: Artist/Band: Down At Lulu's?
+Ohio express
+10
+
+Music: 1960s: Artist/Band: Down By the Station?
+The four preps
+10
+
+Music: 1960s: Artist/Band: Down In the Boondocks?
+Billy joe royal
+10
+
+Music: 1960s: Artist/Band: Down On the Corner?
+Creedence clearwater revival
+10
+
+Music: 1960s: Artist/Band: Down the Aisle (Wedding Song)?
+Patti labelle & the blue belles
+10
+
+Music: 1960s: Artist/Band: Downtown?
+Petula clark
+10
+
+Music: 1960s: Artist/Band: Drag City?
+Jan & dean
+10
+
+Music: 1960s: Artist/Band: Dream A Little Dream of Me?
+Mama cass elliot
+10
+
+Music: 1960s: Artist/Band: Dream Baby (How Long Must I Dream)?
+Roy orbison
+10
+
+Music: 1960s: Artist/Band: Dream On Little Dreamer?
+Perry como
+10
+
+Music: 1960s: Artist/Band: Dreamin'?
+Johnny burnette
+10
+
+Music: 1960s: Artist/Band: Dreams of the Everyday Housewife?
+Glen campbell
+10
+
+Music: 1960s: Artist/Band: Dreamy Eyes?
+Johnny tillotson
+10
+
+Music: 1960s: Artist/Band: Drip Drop?
+Dion
+10
+
+Music: 1960s: Artist/Band: Drownin' My Sorrows?
+Connie francis
+10
+
+Music: 1960s: Artist/Band: Drums Are My Beat?
+Sandy nelson
+10
+
+Music: 1960s: Artist/Band: Dry Your Eyes?
+Brenda & the tabulations
+10
+
+Music: 1960s: Artist/Band: Duke of Earl?
+Gene chandler
+10
+
+Music: 1960s: Artist/Band: Dum Dum?
+Brenda lee
+10
+
+Music: 1960s: Artist/Band: Dum-De-Da?
+Bobby vinton
+10
+
+Music: 1960s: Artist/Band: Dutchman's Gold?
+Walter brennan
+10
+
+Music: 1960s: Artist/Band: Early in the Morning?
+Vanity fare
+10
+
+Music: 1960s: Artist/Band: Easier Said Than Done?
+The essex
+10
+
+Music: 1960s: Artist/Band: East West?
+Herman's hermits
+10
+
+Music: 1960s: Artist/Band: Easy to Be Hard?
+Three dog night
+10
+
+Music: 1960s: Artist/Band: Ebony Eyes?
+The everly brothers
+10
+
+Music: 1960s: Artist/Band: Echo Park?
+Keith barbour
+10
+
+Music: 1960s: Artist/Band: Eight Days a Week?
+The beatles
+10
+
+Music: 1960s: Artist/Band: Eight Miles High?
+The byrds
+10
+
+Music: 1960s: Artist/Band: El Matador?
+The kingston trio
+10
+
+Music: 1960s: Artist/Band: El Watusi?
+Ray barretto y su charanga moderna
+10
+
+Music: 1960s: Artist/Band: Elenore?
+The turtles
+10
+
+Music: 1960s: Artist/Band: Eli's Coming?
+Three dog night
+10
+
+Music: 1960s: Artist/Band: Elusive Butterfly?
+Bob lind
+10
+
+Music: 1960s: Artist/Band: Emotions?
+Brenda lee
+10
+
+Music: 1960s: Artist/Band: Engine Engine #9?
+Roger miller
+10
+
+Music: 1960s: Artist/Band: England Swings?
+Roger miller
+10
+
+Music: 1960s: Artist/Band: Epistle to Dippy?
+Donovan
+10
+
+Music: 1960s: Artist/Band: Eso Beso (That Kiss!)?
+Paul anka
+10
+
+Music: 1960s: Artist/Band: Eve of Destruction?
+Barry mcguire
+10
+
+Music: 1960s: Artist/Band: Even the Bad Times Are Good?
+The tremeloes
+10
+
+Music: 1960s: Artist/Band: Everlasting Love?
+Robert knight
+10
+
+Music: 1960s: Artist/Band: Everlovin'?
+Rick nelson
+10
+
+Music: 1960s: Artist/Band: Every Beat of My Heart?
+Gladys Knight & The Pips
+10
+
+Music: 1960s: Artist/Band: Every Little Bit Hurts?
+Brenda holloway
+10
+
+Music: 1960s: Artist/Band: Every Step of the Way?
+Johnny mathis
+10
+
+Music: 1960s: Artist/Band: Everybody Knows (I Still Love You)?
+The dave clark five
+10
+
+Music: 1960s: Artist/Band: Everybody Loves a Clown?
+Gary lewis & the playboys
+10
+
+Music: 1960s: Artist/Band: Everybody Loves a Lover?
+The shirelles
+10
+
+Music: 1960s: Artist/Band: Everybody Loves Me But You?
+Brenda lee
+10
+
+Music: 1960s: Artist/Band: Everybody Loves Somebody?
+Dean martin
+10
+
+Music: 1960s: Artist/Band: Everybody Needs Love?
+Gladys knight & the pips
+10
+
+Music: 1960s: Artist/Band: Everybody Needs Somebody to Love?
+Wilson pickett
+10
+
+Music: 1960s: Artist/Band: Everybody's Somebody's Fool?
+Connie francis
+10
+
+Music: 1960s: Artist/Band: Everybody's Talkin'?
+Nilsson
+10
+
+Music: 1960s: Artist/Band: Everybody?
+Tommy roe
+10
+
+Music: 1960s: Artist/Band: Everyday People?
+Sly & the family stone
+10
+
+Music: 1960s: Artist/Band: Everyone's Gone to the Moon?
+Jonathan king
+10
+
+Music: 1960s: Artist/Band: Everything That Touches You?
+The association
+10
+
+Music: 1960s: Artist/Band: Everything's Alright?
+The newbeats
+10
+
+Music: 1960s: Artist/Band: Explosion in Your Soul?
+Soul survivors
+10
+
+Music: 1960s: Artist/Band: Expressway To Your Heart?
+Soul survivors
+10
+
+Music: 1960s: Artist/Band: Fa-Fa-Fa-Fa-Fa (Sad Song)?
+Otis redding
+10
+
+Music: 1960s: Artist/Band: Face It Girl, It's Over?
+Nancy wilson
+10
+
+Music: 1960s: Artist/Band: Fakin' It?
+Simon & garfunkel
+10
+
+Music: 1960s: Artist/Band: Falling?
+Roy orbison
+10
+
+Music: 1960s: Artist/Band: Fame and Fortune?
+Elvis presley
+10
+
+Music: 1960s: Artist/Band: Fannie Mae?
+Buster brown
+10
+
+Music: 1960s: Artist/Band: Feel So Fine (Feel So Good)?
+Johnny preston
+10
+
+Music: 1960s: Artist/Band: Fell in Love on Monday?
+Fats domino
+10
+
+Music: 1960s: Artist/Band: Ferry 'Cross The Mersey?
+Gerry & the pacemakers
+10
+
+Music: 1960s: Artist/Band: Fever?
+The mccoys
+10
+
+Music: 1960s: Artist/Band: Find Another Girl?
+Jerry butler
+10
+
+Music: 1960s: Artist/Band: Finger Poppin' Time?
+Hank ballard & the midnighters
+10
+
+Music: 1960s: Artist/Band: Fingertips, pt. 2?
+Stevie wonder
+10
+
+Music: 1960s: Artist/Band: Fire?
+The crazy world of arthur brown
+10
+
+Music: 1960s: Artist/Band: First Name Initial?
+Annette with the afterbeats
+10
+
+Music: 1960s: Artist/Band: First of May?
+Bee gees
+10
+
+Music: 1960s: Artist/Band: First Quarrel?
+Paul & paula
+10
+
+Music: 1960s: Artist/Band: Five O'Clock World?
+The vogues
+10
+
+Music: 1960s: Artist/Band: Flaming Star?
+Elvis presley
+10
+
+Music: 1960s: Artist/Band: Flamingo?
+Herb alpert & the tijuana brass
+10
+
+Music: 1960s: Artist/Band: Flowers On the Wall?
+The statler brothers
+10
+
+Music: 1960s: Artist/Band: Follow That Dream?
+Elvis presley
+10
+
+Music: 1960s: Artist/Band: Follow the Boys?
+Connie francis
+10
+
+Music: 1960s: Artist/Band: Folsom Prison Blues?
+Johnny cash
+10
+
+Music: 1960s: Artist/Band: Fool #1?
+Brenda lee
+10
+
+Music: 1960s: Artist/Band: Fool for You?
+The impressions
+10
+
+Music: 1960s: Artist/Band: Foolish Little Girl?
+The shirelles
+10
+
+Music: 1960s: Artist/Band: Fools Rush In (Where Angels Fear to Tread)?
+Brook benton
+10
+
+Music: 1960s: Artist/Band: Fools Rush In?
+Rick nelson
+10
+
+Music: 1960s: Artist/Band: Foot Stomping (Part?
+The flares
+10
+
+Music: 1960s: Artist/Band: Footsteps?
+Steve lawrence
+10
+
+Music: 1960s: Artist/Band: For Lovin' Me?
+Peter, paul & mary
+10
+
+Music: 1960s: Artist/Band: For My Baby?
+Brook benton
+10
+
+Music: 1960s: Artist/Band: For Once in My Life?
+Stevie wonder
+10
+
+Music: 1960s: Artist/Band: For What It's Worth (Stop, Hey What's That Sound)?
+The buffalo springfield
+10
+
+Music: 1960s: Artist/Band: For You?
+Rick nelson
+10
+
+Music: 1960s: Artist/Band: Forever Came Today?
+Diana ross & the supremes
+10
+
+Music: 1960s: Artist/Band: Forget Him?
+Bobby rydell
+10
+
+Music: 1960s: Artist/Band: Fortunate Son?
+Creedence clearwater revival
+10
+
+Music: 1960s: Artist/Band: Friday on My Mind?
+The easybeats
+10
+
+Music: 1960s: Artist/Band: Friday's Child?
+Nancy sinatra
+10
+
+Music: 1960s: Artist/Band: Friendship Train?
+Gladys knight & the pips
+10
+
+Music: 1960s: Artist/Band: Frogg?
+The brothers four
+10
+
+Music: 1960s: Artist/Band: From A Jack To A King?
+Ned miller
+10
+
+Music: 1960s: Artist/Band: From a Window?
+Billy j. kramer & the dakotas
+10
+
+Music: 1960s: Artist/Band: Fun, Fun, Fun?
+The beach boys
+10
+
+Music: 1960s: Artist/Band: Funky Broadway?
+Wilson pickett
+10
+
+Music: 1960s: Artist/Band: Funky Street?
+Arthur conley
+10
+
+Music: 1960s: Artist/Band: Funny How Time Slips Away?
+Jimmy elledge
+10
+
+Music: 1960s: Artist/Band: Funny Way of Laughin'?
+Burl ives
+10
+
+Music: 1960s: Artist/Band: G.T.O?
+Ronny & the daytonas
+10
+
+Music: 1960s: Artist/Band: Gallant Men?
+Senator everett mckinley dirksen
+10
+
+Music: 1960s: Artist/Band: Galveston?
+Glen campbell
+10
+
+Music: 1960s: Artist/Band: Games People Play?
+Joe south
+10
+
+Music: 1960s: Artist/Band: Gee Whiz (Look At His Eyes)?
+Carla Thomas
+10
+
+Music: 1960s: Artist/Band: Gee Whiz?
+The innocents
+10
+
+Music: 1960s: Artist/Band: Gentle on My Mind?
+Glen campbell
+10
+
+Music: 1960s: Artist/Band: Georgia on My Mind?
+Ray charles
+10
+
+Music: 1960s: Artist/Band: Georgy Girl?
+The seekers
+10
+
+Music: 1960s: Artist/Band: Get Back?
+The beatles
+10
+
+Music: 1960s: Artist/Band: Get It Together (Part?
+James brown & the famous flames
+10
+
+Music: 1960s: Artist/Band: Get Me to the World on Time?
+The electric prunes
+10
+
+Music: 1960s: Artist/Band: Get Off of My Cloud?
+The rolling stones
+10
+
+Music: 1960s: Artist/Band: Get on Up?
+The esquires
+10
+
+Music: 1960s: Artist/Band: Get Ready?
+The temptations
+10
+
+Music: 1960s: Artist/Band: Get Together?
+The youngbloods
+10
+
+Music: 1960s: Artist/Band: Gettin' Together?
+Tommy james & the shondells
+10
+
+Music: 1960s: Artist/Band: Gimme Gimme Good Lovin'?
+Crazy elephant
+10
+
+Music: 1960s: Artist/Band: Gimme Little Sign?
+Brenton wood
+10
+
+Music: 1960s: Artist/Band: Gimme Some Lovin'?
+Spencer davis group
+10
+
+Music: 1960s: Artist/Band: Gina?
+Johnny mathis
+10
+
+Music: 1960s: Artist/Band: Ginnie Bell?
+Paul dino
+10
+
+Music: 1960s: Artist/Band: Ginny Come Lately?
+Brian hyland
+10
+
+Music: 1960s: Artist/Band: Girl (Why You Wanna Make Me Blue)?
+The temptations
+10
+
+Music: 1960s: Artist/Band: Girl Come Running?
+The 4 seasons
+10
+
+Music: 1960s: Artist/Band: Girl in Love?
+The outsiders
+10
+
+Music: 1960s: Artist/Band: Girl of My Best Friend?
+Ral donner & The Starfires
+10
+
+Music: 1960s: Artist/Band: Girl on a Swing?
+Gerry & the pacemakers
+10
+
+Music: 1960s: Artist/Band: Girl Watcher?
+The o'kaysions
+10
+
+Music: 1960s: Artist/Band: Girl, You'll Be a Woman Soon?
+Neil diamond
+10
+
+Music: 1960s: Artist/Band: Girls Can't Do What the Guys Do?
+Betty wright
+10
+
+Music: 1960s: Artist/Band: Girls Grow Up Faster Than Boys?
+The cookies
+10
+
+Music: 1960s: Artist/Band: Girls in Love?
+Gary lewis & the playboys
+10
+
+Music: 1960s: Artist/Band: Gitarzan?
+Ray stevens
+10
+
+Music: 1960s: Artist/Band: Give Him a Great Big Kiss?
+The shangri-las
+10
+
+Music: 1960s: Artist/Band: Give It Up or Turn It a Loose?
+James brown
+10
+
+Music: 1960s: Artist/Band: Give Peace a Chance?
+John lennon & the plastic ono band
+10
+
+Music: 1960s: Artist/Band: Give Us Your Blessings?
+The shangri-las
+10
+
+Music: 1960s: Artist/Band: Giving Up?
+Gladys knight & the pips
+10
+
+Music: 1960s: Artist/Band: Glad All Over?
+The dave clark five
+10
+
+Music: 1960s: Artist/Band: Glad to Be Unhappy?
+The mamas & the papas
+10
+
+Music: 1960s: Artist/Band: Gloria?
+The shadows of knight
+10
+
+Music: 1960s: Artist/Band: Go Ahead and Cry?
+The righteous brothers
+10
+
+Music: 1960s: Artist/Band: Go Now!?
+The moody blues
+10
+
+Music: 1960s: Artist/Band: Go Tell It on the Mountain?
+Peter, paul & mary
+10
+
+Music: 1960s: Artist/Band: Go Where You Wanna Go?
+The 5th dimension
+10
+
+Music: 1960s: Artist/Band: Go, Jimmy, Go?
+Jimmy clanton
+10
+
+Music: 1960s: Artist/Band: God Only Knows?
+The beach boys
+10
+
+Music: 1960s: Artist/Band: God, Country and My Baby?
+Johnny Burnette
+10
+
+Music: 1960s: Artist/Band: Goin' Out of My Head / Can't Take My Eyes Off You?
+The lettermen
+10
+
+Music: 1960s: Artist/Band: Goin' Out of My Head?
+Little anthony & the imperials
+10
+
+Music: 1960s: Artist/Band: Going Going Gone?
+Brook benton
+10
+
+Music: 1960s: Artist/Band: Going in Circles?
+The friends of distinction
+10
+
+Music: 1960s: Artist/Band: Going to a Go-Go?
+The miracles
+10
+
+Music: 1960s: Artist/Band: Going Up the Country?
+Canned heat
+10
+
+Music: 1960s: Artist/Band: Goldfinger?
+Shirley bassey
+10
+
+Music: 1960s: Artist/Band: Gone, Gone, Gone?
+The everly brothers
+10
+
+Music: 1960s: Artist/Band: Gonna Give Her All the Love I've Got?
+Jimmy ruffin
+10
+
+Music: 1960s: Artist/Band: Goo Goo Barabajagal (Love Is Hot)?
+Donovan with the jeff beck group
+10
+
+Music: 1960s: Artist/Band: Good Lovin' Ain't Easy to Come By?
+Marvin gaye & tammi terrell
+10
+
+Music: 1960s: Artist/Band: Good Lovin'?
+The young rascals
+10
+
+Music: 1960s: Artist/Band: Good Luck Charm?
+Elvis presley
+10
+
+Music: 1960s: Artist/Band: Good Morning Starshine?
+Oliver
+10
+
+Music: 1960s: Artist/Band: Good News?
+Sam cooke
+10
+
+Music: 1960s: Artist/Band: Good Old Rock 'N' Roll?
+Cat mother and the all night news boys
+10
+
+Music: 1960s: Artist/Band: Good Thing?
+Paul revere & the raiders
+10
+
+Music: 1960s: Artist/Band: Good Time Baby?
+Bobby rydell
+10
+
+Music: 1960s: Artist/Band: Good Times?
+Sam cooke
+10
+
+Music: 1960s: Artist/Band: Good Timin'?
+Jimmy jones
+10
+
+Music: 1960s: Artist/Band: Good Vibrations?
+The beach boys
+10
+
+Music: 1960s: Artist/Band: Goodbye Baby (Baby Goodbye)?
+Solomon burke
+10
+
+Music: 1960s: Artist/Band: Goodbye Cruel World?
+James darren
+10
+
+Music: 1960s: Artist/Band: Goodbye My Love?
+James brown
+10
+
+Music: 1960s: Artist/Band: Goodbye?
+Mary hopkin
+10
+
+Music: 1960s: Artist/Band: Goodnight?
+Roy orbison
+10
+
+Music: 1960s: Artist/Band: Goody Goody Gumdrops?
+1910 fruitgum company
+10
+
+Music: 1960s: Artist/Band: Got a Girl?
+The four preps
+10
+
+Music: 1960s: Artist/Band: Got to Get You Off My Mind?
+Solomon burke
+10
+
+Music: 1960s: Artist/Band: Gravy (for My Mashed Potatoes)?
+Dee dee sharp
+10
+
+Music: 1960s: Artist/Band: Green Grass?
+Gary lewis & the playboys
+10
+
+Music: 1960s: Artist/Band: Green Light?
+The American breed
+10
+
+Music: 1960s: Artist/Band: Green Onions?
+Booker t. & the mg's
+10
+
+Music: 1960s: Artist/Band: Green River?
+Creedence clearwater revival
+10
+
+Music: 1960s: Artist/Band: Green Tambourine?
+The lemon pipers
+10
+
+Music: 1960s: Artist/Band: Green, Green Grass of Home?
+Tom jones
+10
+
+Music: 1960s: Artist/Band: Green, Green?
+The new christy minstrels
+10
+
+Music: 1960s: Artist/Band: Greenback Dollar?
+The kingston trio
+10
+
+Music: 1960s: Artist/Band: Greenfields?
+The brothers four
+10
+
+Music: 1960s: Artist/Band: Groovy Grubworm?
+Harlow wilcox and the oakies
+10
+
+Music: 1960s: Artist/Band: Guantanamera?
+The sandpipers
+10
+
+Music: 1960s: Artist/Band: Gypsy Woman?
+The impressions
+10
+
+Music: 1960s: Artist/Band: Hair?
+The cowsills
+10
+
+Music: 1960s: Artist/Band: Half Heaven, half heartache?
+Gene pitney
+10
+
+Music: 1960s: Artist/Band: Handy Man?
+Del shannon
+10
+
+Music: 1960s: Artist/Band: Hang 'Em High?
+Booker t. & the mg's
+10
+
+Music: 1960s: Artist/Band: Hanky Panky?
+Tommy james & the shondells
+10
+
+Music: 1960s: Artist/Band: Happenings Ten Years Time Ago?
+The yardbirds
+10
+
+Music: 1960s: Artist/Band: Happy Birthday Blues?
+Kathy young with The Innocents
+10
+
+Music: 1960s: Artist/Band: Happy Birthday, Sweet Sixteen?
+Neil Sedaka
+10
+
+Music: 1960s: Artist/Band: Happy Heart?
+Andy williams
+10
+
+Music: 1960s: Artist/Band: Happy Jack?
+The who
+10
+
+Music: 1960s: Artist/Band: Happy Summer Days?
+Ronnie dove
+10
+
+Music: 1960s: Artist/Band: Happy Together?
+The turtles
+10
+
+Music: 1960s: Artist/Band: Happy-Go-Lucky-Me?
+Paul evans
+10
+
+Music: 1960s: Artist/Band: Harbor Lights?
+The platters
+10
+
+Music: 1960s: Artist/Band: Harlem Nocturne?
+The viscounts
+10
+
+Music: 1960s: Artist/Band: Harper Valley P.T.A?
+Jeannie c. riley
+10
+
+Music: 1960s: Artist/Band: Harry the Hairy Ape?
+Ray stevens
+10
+
+Music: 1960s: Artist/Band: Hats Off to Larry?
+Del shannon
+10
+
+Music: 1960s: Artist/Band: Haunted House?
+Jumpin' gene simmons
+10
+
+Music: 1960s: Artist/Band: Have a Good Time?
+Sue thompson
+10
+
+Music: 1960s: Artist/Band: Have I the Right?
+The honeycombs
+10
+
+Music: 1960s: Artist/Band: Have You Looked into Your Heart?
+Jerry vale
+10
+
+Music: 1960s: Artist/Band: Have You Seen Your Mother, Baby, Standing in the Shadow?
+The rolling stones
+10
+
+Music: 1960s: Artist/Band: Having A Party?
+Sam cooke
+10
+
+Music: 1960s: Artist/Band: Hawaii Five-0?
+The ventures
+10
+
+Music: 1960s: Artist/Band: Hawaii Tattoo?
+The waikikis
+10
+
+Music: 1960s: Artist/Band: He Knows I Love Him Too Much?
+The paris sisters
+10
+
+Music: 1960s: Artist/Band: He Will Break Your Heart?
+Jerry butler
+10
+
+Music: 1960s: Artist/Band: He'll Have To Stay?
+Jeanne black
+10
+
+Music: 1960s: Artist/Band: He's a Rebel?
+The crystals
+10
+
+Music: 1960s: Artist/Band: He's So Fine?
+The chiffons
+10
+
+Music: 1960s: Artist/Band: He's Sure the Boy I Love?
+The crystals
+10
+
+Music: 1960s: Artist/Band: He?
+The righteous brothers
+10
+
+Music: 1960s: Artist/Band: Heart and Soul?
+The cleftones
+10
+
+Music: 1960s: Artist/Band: Heart Full of Soul?
+The yardbirds
+10
+
+Music: 1960s: Artist/Band: Heart in Hand?
+Brenda lee
+10
+
+Music: 1960s: Artist/Band: Heart of Stone?
+The rolling stones
+10
+
+Music: 1960s: Artist/Band: Heartaches By the Number?
+Johnny tillotson
+10
+
+Music: 1960s: Artist/Band: Heartaches?
+The marcels
+10
+
+Music: 1960s: Artist/Band: Heartbreak (It's Hurtin' Me)?
+Little willie john
+10
+
+Music: 1960s: Artist/Band: Hearts Of Stone?
+Bill black's combo
+10
+
+Music: 1960s: Artist/Band: Heat Wave?
+Martha & the vandellas
+10
+
+Music: 1960s: Artist/Band: Heather Honey?
+Tommy roe
+10
+
+Music: 1960s: Artist/Band: Heaven Knows?
+The grass roots
+10
+
+Music: 1960s: Artist/Band: Heaven?
+The rascals
+10
+
+Music: 1960s: Artist/Band: Hello Goodbye?
+The beatles
+10
+
+Music: 1960s: Artist/Band: Hello Heartache, Goodbye Love?
+Little peggy march
+10
+
+Music: 1960s: Artist/Band: Hello Mary Lou?
+Ricky nelson
+10
+
+Music: 1960s: Artist/Band: Hello Muddah, Hello Fadduh! (A Letter from Camp)?
+Allan sherman
+10
+
+Music: 1960s: Artist/Band: Hello Stranger?
+Barbara lewis
+10
+
+Music: 1960s: Artist/Band: Hello Walls?
+Faron young
+10
+
+Music: 1960s: Artist/Band: Hello Young Lovers?
+Paul anka
+10
+
+Music: 1960s: Artist/Band: Hello, Dolly!?
+Louis armstrong & the all stars
+10
+
+Music: 1960s: Artist/Band: Hello, I Love You?
+The doors
+10
+
+Music: 1960s: Artist/Band: Help Me Girl?
+Eric burdon & the animals
+10
+
+Music: 1960s: Artist/Band: Help Me, Rhonda?
+The beach boys
+10
+
+Music: 1960s: Artist/Band: Help Yourself?
+Tom jones
+10
+
+Music: 1960s: Artist/Band: Help!?
+The beatles
+10
+
+Music: 1960s: Artist/Band: Her Royal Majesty?
+James darren
+10
+
+Music: 1960s: Artist/Band: Here Comes My Baby?
+The tremeloes
+10
+
+Music: 1960s: Artist/Band: Here Comes the Judge?
+Shorty long
+10
+
+Music: 1960s: Artist/Band: Here Comes the Night?
+Them
+10
+
+Music: 1960s: Artist/Band: Here I Go Again?
+Smokey robinson & the miracles
+10
+
+Music: 1960s: Artist/Band: Here It Comes Again?
+The fortunes
+10
+
+Music: 1960s: Artist/Band: Here We Go Again?
+Ray charles
+10
+
+Music: 1960s: Artist/Band: Heroes and Villains?
+The beach boys
+10
+
+Music: 1960s: Artist/Band: Hey Baby (They're Playing Our Song)?
+The buckinghams
+10
+
+Music: 1960s: Artist/Band: Hey Harmonica Man?
+Stevie wonder
+10
+
+Music: 1960s: Artist/Band: Hey Jean, Hey Dean?
+Dean & jean
+10
+
+Music: 1960s: Artist/Band: Hey Joe?
+The leaves
+10
+
+Music: 1960s: Artist/Band: Hey Jude?
+The beatles
+10
+
+Music: 1960s: Artist/Band: Hey Little Cobra?
+The rip chords
+10
+
+Music: 1960s: Artist/Band: Hey Little Girl?
+Major lance
+10
+
+Music: 1960s: Artist/Band: Hey Paula?
+Paul & paula
+10
+
+Music: 1960s: Artist/Band: Hey There Lonely Boy?
+Ruby & the romantics
+10
+
+Music: 1960s: Artist/Band: Hey, Bobba Needle?
+Chubby checker
+10
+
+Music: 1960s: Artist/Band: Hey, Girl?
+Freddie scott
+10
+
+Music: 1960s: Artist/Band: Hey, Leroy, Your Mama's Callin' You?
+Jimmy castor
+10
+
+Music: 1960s: Artist/Band: Hey, Let's Twist?
+Joey dee & the starliters
+10
+
+Music: 1960s: Artist/Band: Hey, Western Union Man?
+Jerry butler
+10
+
+Music: 1960s: Artist/Band: Hey! Baby?
+Bruce channel
+10
+
+Music: 1960s: Artist/Band: Hey! Little Girl?
+Del shannon
+10
+
+Music: 1960s: Artist/Band: Hide 'Nor Hair?
+Ray charles
+10
+
+Music: 1960s: Artist/Band: Hide & Go Seek (Part?
+Bunker hill
+10
+
+Music: 1960s: Artist/Band: Hide Away?
+Freddy king
+10
+
+Music: 1960s: Artist/Band: Him or Me, what's it gonna be?
+Paul revere & the raiders
+10
+
+Music: 1960s: Artist/Band: Hip City (Part?
+Jr. walker & the all-stars
+10
+
+Music: 1960s: Artist/Band: Hip Hug-Her?
+Booker t. & the mg's
+10
+
+Music: 1960s: Artist/Band: Hippy Hippy Shake?
+The swinging blue jeans
+10
+
+Music: 1960s: Artist/Band: History Repeats Itself?
+Buddy starcher
+10
+
+Music: 1960s: Artist/Band: Hit the Road Jack?
+Ray charles
+10
+
+Music: 1960s: Artist/Band: Hitch Hike?
+Marvin gaye
+10
+
+Music: 1960s: Artist/Band: Hitch It to the Horse?
+The fantastic johnny c
+10
+
+Music: 1960s: Artist/Band: Hold Me Tight?
+Johnny nash
+10
+
+Music: 1960s: Artist/Band: Hold Me, Thrill Me, Kiss Me?
+Mel carter
+10
+
+Music: 1960s: Artist/Band: Hold On! I'm A-Comin'?
+Sam & dave
+10
+
+Music: 1960s: Artist/Band: Hold What You've Got?
+Joe tex
+10
+
+Music: 1960s: Artist/Band: Holiday?
+Bee gees
+10
+
+Music: 1960s: Artist/Band: Holly Holy?
+Neil diamond
+10
+
+Music: 1960s: Artist/Band: Holy Cow?
+Lee dorsey
+10
+
+Music: 1960s: Artist/Band: Homburg?
+Procol harum
+10
+
+Music: 1960s: Artist/Band: Home of the Brave?
+Jody miller
+10
+
+Music: 1960s: Artist/Band: Homeward Bound?
+Simon & garfunkel
+10
+
+Music: 1960s: Artist/Band: Honest I Do?
+The innocents
+10
+
+Music: 1960s: Artist/Band: Honey Chile?
+Martha & the vandellas
+10
+
+Music: 1960s: Artist/Band: Honey?
+Bobby goldsboro
+10
+
+Music: 1960s: Artist/Band: Honky Tonk Women?
+The rolling stones
+10
+
+Music: 1960s: Artist/Band: Honolulu Lulu?
+Jan & dean
+10
+
+Music: 1960s: Artist/Band: Hooka Tooka?
+Chubby checker
+10
+
+Music: 1960s: Artist/Band: Hooked On A Feeling?
+B.j. thomas
+10
+
+Music: 1960s: Artist/Band: Hooray for Hazel?
+Tommy roe
+10
+
+Music: 1960s: Artist/Band: Hootenanny?
+The glencoves
+10
+
+Music: 1960s: Artist/Band: Hopeless?
+Andy williams
+10
+
+Music: 1960s: Artist/Band: Hot Fun in the Summertime?
+Sly & the family stone
+10
+
+Music: 1960s: Artist/Band: Hot Pastrami with Mashed Potatoes (Part?
+Joey dee & the starliters
+10
+
+Music: 1960s: Artist/Band: Hot Pastrami?
+The dartells
+10
+
+Music: 1960s: Artist/Band: Hot Rod Lincoln?
+Johnny bond
+10
+
+Music: 1960s: Artist/Band: Hot Smoke and Sassafrass?
+The bubble puppy
+10
+
+Music: 1960s: Artist/Band: Hotel Happiness?
+Brook benton
+10
+
+Music: 1960s: Artist/Band: Houston?
+Dean martin
+10
+
+Music: 1960s: Artist/Band: How About That?
+Dee clark
+10
+
+Music: 1960s: Artist/Band: How Can I Be Sure?
+The young rascals
+10
+
+Music: 1960s: Artist/Band: How Do You Catch a Girl?
+Sam the sham & the pharaohs
+10
+
+Music: 1960s: Artist/Band: How Do You Do It?
+Gerry & the pacemakers
+10
+
+Music: 1960s: Artist/Band: How Does That Grab You, Darlin'?
+Nancy sinatra
+10
+
+Music: 1960s: Artist/Band: How Sweet It Is (to Be Loved By You)?
+Jr. walker & the all-stars
+10
+
+Music: 1960s: Artist/Band: How Sweet It Is to Be Loved by You?
+Marvin gaye
+10
+
+Music: 1960s: Artist/Band: How'd We Ever Get This Way?
+Andy kim
+10
+
+Music: 1960s: Artist/Band: Hully Gully Baby?
+The dovells
+10
+
+Music: 1960s: Artist/Band: Hungry for Love?
+San remo golden strings
+10
+
+Music: 1960s: Artist/Band: Hungry?
+Paul revere & the raiders
+10
+
+Music: 1960s: Artist/Band: Hurdy Gurdy Man?
+Donovan
+10
+
+Music: 1960s: Artist/Band: Hurt?
+Timi yuro
+10
+
+Music: 1960s: Artist/Band: Husbands and Wives?
+Roger miller
+10
+
+Music: 1960s: Artist/Band: Hush...Hush Sweet Charlotte?
+Patti page
+10
+
+Music: 1960s: Artist/Band: Hush?
+Deep purple
+10
+
+Music: 1960s: Artist/Band: Hypnotized?
+Linda jones
+10
+
+Music: 1960s: Artist/Band: I (Who Have Nothing)?
+Ben e. king
+10
+
+Music: 1960s: Artist/Band: I Adore Him?
+The angels
+10
+
+Music: 1960s: Artist/Band: I Am a Rock?
+Simon & garfunkel
+10
+
+Music: 1960s: Artist/Band: I Believe?
+The bachelors
+10
+
+Music: 1960s: Artist/Band: I Can Hear Music?
+The beach boys
+10
+
+Music: 1960s: Artist/Band: I Can Make It With You?
+Pozo-seco singers
+10
+
+Music: 1960s: Artist/Band: I Can Never Go Home Anymore?
+The shangri-las
+10
+
+Music: 1960s: Artist/Band: I Can See for Miles?
+The who
+10
+
+Music: 1960s: Artist/Band: I Can Sing a Rainbow / Love Is Blue?
+The dells
+10
+
+Music: 1960s: Artist/Band: I Can Take or Leave Your Loving?
+Herman's hermits
+10
+
+Music: 1960s: Artist/Band: I Can't Get Next to You?
+The temptations
+10
+
+Music: 1960s: Artist/Band: I Can't Grow Peaches on a Cherry Tree?
+Just us
+10
+
+Music: 1960s: Artist/Band: I Can't Help It (If I'm Still In Love With You)?
+Johnny tillotson
+10
+
+Music: 1960s: Artist/Band: I Can't Help Myself?
+Four tops
+10
+
+Music: 1960s: Artist/Band: I Can't See Myself Leaving You?
+Aretha franklin
+10
+
+Music: 1960s: Artist/Band: I Can't Stand Myself (When You Touch Me)?
+James brown & the famous flames
+10
+
+Music: 1960s: Artist/Band: I Can't Stay Mad At You?
+Skeeter davis
+10
+
+Music: 1960s: Artist/Band: I Can't Stop Dancing?
+Archie bell & the drells
+10
+
+Music: 1960s: Artist/Band: I Can't Stop Loving You?
+Ray charles
+10
+
+Music: 1960s: Artist/Band: I Can't Stop Talking About You?
+Steve lawrence & eydie gorme
+10
+
+Music: 1960s: Artist/Band: I Can't Turn You Loose?
+The chambers brothers
+10
+
+Music: 1960s: Artist/Band: I Chose to Sing the Blues?
+Ray charles
+10
+
+Music: 1960s: Artist/Band: I Could Never Love Another (After Loving You)?
+The temptations
+10
+
+Music: 1960s: Artist/Band: I Couldn't Live Without Your Love?
+Petula clark
+10
+
+Music: 1960s: Artist/Band: I Count the Tears?
+The drifters
+10
+
+Music: 1960s: Artist/Band: I Dig Rock and Roll Music?
+Peter, paul & mary
+10
+
+Music: 1960s: Artist/Band: I Do Love You?
+Billy stewart
+10
+
+Music: 1960s: Artist/Band: I Do?
+The marvelows
+10
+
+Music: 1960s: Artist/Band: I Don't Wanna Be a Loser?
+Lesley gore
+10
+
+Music: 1960s: Artist/Band: I Don't Wanna Lose You Baby?
+Chad & jeremy
+10
+
+Music: 1960s: Artist/Band: I Don't Want Nobody to Give Me Nothing (Open the Door, I'll?
+James brown
+10
+
+Music: 1960s: Artist/Band: I Don't Want to Cry?
+Chuck jackson
+10
+
+Music: 1960s: Artist/Band: I Don't Want to See You Again?
+Peter & gordon
+10
+
+Music: 1960s: Artist/Band: I Don't Want to Spoil the Party?
+The beatles
+10
+
+Music: 1960s: Artist/Band: I Don't Want to Take a Chance?
+Mary Wells
+10
+
+Music: 1960s: Artist/Band: I Dreamed Of A Hillbilly Heaven?
+Tex Ritter
+10
+
+Music: 1960s: Artist/Band: I Fall To Pieces?
+Patsy cline
+10
+
+Music: 1960s: Artist/Band: I Feel Fine?
+The beatles
+10
+
+Music: 1960s: Artist/Band: I Feel So Bad?
+Elvis presley
+10
+
+Music: 1960s: Artist/Band: I Fought the Law?
+Bobby fuller four
+10
+
+Music: 1960s: Artist/Band: I Found a Girl?
+Jan & dean
+10
+
+Music: 1960s: Artist/Band: I Found a Love (Part?
+Wilson pickett
+10
+
+Music: 1960s: Artist/Band: I Get Around?
+The beach boys
+10
+
+Music: 1960s: Artist/Band: I Get the Sweetest Feeling?
+Jackie wilson
+10
+
+Music: 1960s: Artist/Band: I Go to Pieces?
+Peter & gordon
+10
+
+Music: 1960s: Artist/Band: I Got a Line on You?
+Spirit
+10
+
+Music: 1960s: Artist/Band: I Got Rhythm?
+The happenings
+10
+
+Music: 1960s: Artist/Band: I Got the Feelin' (Oh No, No)?
+Neil diamond
+10
+
+Music: 1960s: Artist/Band: I Got the Feelin'?
+James brown
+10
+
+Music: 1960s: Artist/Band: I Got What I Wanted?
+Brook benton
+10
+
+Music: 1960s: Artist/Band: I Got You (I Feel Good)?
+James brown
+10
+
+Music: 1960s: Artist/Band: I Got You Babe?
+Sonny & cher
+10
+
+Music: 1960s: Artist/Band: I Gotta Dance to Keep from Crying?
+The miracles
+10
+
+Music: 1960s: Artist/Band: I Gotta Know?
+Elvis presley
+10
+
+Music: 1960s: Artist/Band: I Guess the Lord Must Be in New York City?
+Nilsson
+10
+
+Music: 1960s: Artist/Band: I Had a Dream?
+Paul revere & the raiders
+10
+
+Music: 1960s: Artist/Band: I Had Too Much to Dream (Last Night)?
+The electric prunes
+10
+
+Music: 1960s: Artist/Band: I Have a Boyfriend?
+The chiffons
+10
+
+Music: 1960s: Artist/Band: I Hear A Symphony?
+The supremes
+10
+
+Music: 1960s: Artist/Band: I Hear Trumpets Blow?
+The tokens
+10
+
+Music: 1960s: Artist/Band: I Just Don't Know What to Do with Myself?
+Dionne warwick
+10
+
+Music: 1960s: Artist/Band: I Just Don't Understand?
+Ann-margret
+10
+
+Music: 1960s: Artist/Band: I Knew You When?
+Billy joe royal
+10
+
+Music: 1960s: Artist/Band: I Know (You Don't Love Me No More)?
+Barbara george
+10
+
+Music: 1960s: Artist/Band: I Know A Place?
+Petula clark
+10
+
+Music: 1960s: Artist/Band: I Left My Heart In San Francisco?
+Tony bennett
+10
+
+Music: 1960s: Artist/Band: I Like it Like That (Part?
+Chris Kenner
+10
+
+Music: 1960s: Artist/Band: I Like It?
+Gerry & the pacemakers
+10
+
+Music: 1960s: Artist/Band: I Like the Way?
+Tommy james & the shondells
+10
+
+Music: 1960s: Artist/Band: I Love the Way You Love?
+Marv johnson
+10
+
+Music: 1960s: Artist/Band: I Love You 1000 Times?
+The platters
+10
+
+Music: 1960s: Artist/Band: I Love You Because?
+Al martino
+10
+
+Music: 1960s: Artist/Band: I Love You Drops?
+Vic dana
+10
+
+Music: 1960s: Artist/Band: I Love You in the Same Old Way?
+Paul anka
+10
+
+Music: 1960s: Artist/Band: I Love You More and More Every Day?
+Al martino
+10
+
+Music: 1960s: Artist/Band: I Love You the Way You Are?
+Bobby vinton
+10
+
+Music: 1960s: Artist/Band: I Make a Fool of Myself?
+Frankie valli
+10
+
+Music: 1960s: Artist/Band: I Met Her in Church?
+The box tops
+10
+
+Music: 1960s: Artist/Band: I Miss You So?
+Little anthony & the imperials
+10
+
+Music: 1960s: Artist/Band: I Must Be Seeing Things?
+Gene pitney
+10
+
+Music: 1960s: Artist/Band: I Need Somebody?
+? & the mysterians
+10
+
+Music: 1960s: Artist/Band: I Need Your Loving?
+Don gardner & dee dee ford
+10
+
+Music: 1960s: Artist/Band: I Never Loved a Man (the Way I Love You)?
+Aretha franklin
+10
+
+Music: 1960s: Artist/Band: I Only Want to Be with You?
+Dusty springfield
+10
+
+Music: 1960s: Artist/Band: I Really Love You?
+The stereos
+10
+
+Music: 1960s: Artist/Band: I Remember You?
+Frank ifield
+10
+
+Music: 1960s: Artist/Band: I Rise, I Fall?
+Johnny tillotson
+10
+
+Music: 1960s: Artist/Band: I Saw Her Again (Last Night)?
+The mamas & the papas
+10
+
+Music: 1960s: Artist/Band: I Saw Her Standing There?
+The beatles
+10
+
+Music: 1960s: Artist/Band: I Saw Linda Yesterday?
+Dickey lee
+10
+
+Music: 1960s: Artist/Band: I Second That Emotion?
+Smokey robinson & the miracles
+10
+
+Music: 1960s: Artist/Band: I See the Light?
+The five americans
+10
+
+Music: 1960s: Artist/Band: I Sold My Heart to the Junkman?
+The blue belles
+10
+
+Music: 1960s: Artist/Band: I Started a Joke?
+Bee gees
+10
+
+Music: 1960s: Artist/Band: I Take It Back?
+Sandy posey
+10
+
+Music: 1960s: Artist/Band: I Thank the Lord for the Night Time?
+Neil diamond
+10
+
+Music: 1960s: Artist/Band: I Thank You?
+Sam & dave
+10
+
+Music: 1960s: Artist/Band: I Think We're Alone Now?
+Tommy james & the shondells
+10
+
+Music: 1960s: Artist/Band: I Turned You On?
+The isley brothers
+10
+
+Music: 1960s: Artist/Band: I Wanna Be Around?
+Tony bennett
+10
+
+Music: 1960s: Artist/Band: I Wanna Live?
+Glen campbell
+10
+
+Music: 1960s: Artist/Band: I Wanna Love Him So Bad?
+The jelly beans
+10
+
+Music: 1960s: Artist/Band: I Wanna Thank You?
+Bobby rydell
+10
+
+Music: 1960s: Artist/Band: I Want Candy?
+The strangeloves
+10
+
+Music: 1960s: Artist/Band: I Want to (Do Everything for You)?
+Joe tex
+10
+
+Music: 1960s: Artist/Band: I Want To Be Wanted?
+Brenda lee
+10
+
+Music: 1960s: Artist/Band: I Want To Go With You?
+Eddy arnold
+10
+
+Music: 1960s: Artist/Band: I Want To Hold Your Hand?
+The beatles
+10
+
+Music: 1960s: Artist/Band: I Want to Stay Here?
+Steve lawrence & eydie gorme
+10
+
+Music: 1960s: Artist/Band: I Want You Back?
+The jackson 5
+10
+
+Music: 1960s: Artist/Band: I Want You?
+Bob dylan
+10
+
+Music: 1960s: Artist/Band: I Was Kaiser Bill's Batman?
+Whistling jack smith
+10
+
+Music: 1960s: Artist/Band: I Was Made to Love Her?
+Stevie wonder
+10
+
+Music: 1960s: Artist/Band: I Was Such a Fool (to Fall in Love with You)?
+Connie francis
+10
+
+Music: 1960s: Artist/Band: I Will Always Think About You?
+The new colony six
+10
+
+Music: 1960s: Artist/Band: I Will Follow Him?
+Little peggy march
+10
+
+Music: 1960s: Artist/Band: I Will?
+Dean martin
+10
+
+Music: 1960s: Artist/Band: I Wish I Were a Princess?
+Little peggy march
+10
+
+Music: 1960s: Artist/Band: I Wish It Would Rain?
+The temptations
+10
+
+Music: 1960s: Artist/Band: I Wish That We Were Married?
+Ronnie & the hi-lites
+10
+
+Music: 1960s: Artist/Band: I Wish You Love?
+Gloria lynne
+10
+
+Music: 1960s: Artist/Band: I Wonder?
+Brenda lee
+10
+
+Music: 1960s: Artist/Band: I'd Wait A Million Years?
+The grass roots
+10
+
+Music: 1960s: Artist/Band: I'll Always Love You?
+Spinners
+10
+
+Music: 1960s: Artist/Band: I'll Be Doggone?
+Marvin gaye
+10
+
+Music: 1960s: Artist/Band: I'll Be In Trouble?
+The temptations
+10
+
+Music: 1960s: Artist/Band: I'll Cry Instead?
+The beatles
+10
+
+Music: 1960s: Artist/Band: I'll Keep Holding On?
+The marvelettes
+10
+
+Music: 1960s: Artist/Band: I'll Keep You Satisfied?
+Billy j. kramer & the dakotas
+10
+
+Music: 1960s: Artist/Band: I'll Make All Your Dreams Come True?
+Ronnie dove
+10
+
+Music: 1960s: Artist/Band: I'll Never Dance Again?
+Bobby rydell
+10
+
+Music: 1960s: Artist/Band: I'll Never Find Another You?
+The seekers
+10
+
+Music: 1960s: Artist/Band: I'll Never Smile Again?
+The platters
+10
+
+Music: 1960s: Artist/Band: I'll Save the Last Dance for You?
+Damita jo
+10
+
+Music: 1960s: Artist/Band: I'll See You in My Dreams?
+Pat boone
+10
+
+Music: 1960s: Artist/Band: I'll Take Care of Your Cares?
+Frankie laine
+10
+
+Music: 1960s: Artist/Band: I'll Take Good Care of You?
+Garnet mimms
+10
+
+Music: 1960s: Artist/Band: I'll Take You Home?
+The drifters
+10
+
+Music: 1960s: Artist/Band: I'll Touch a Star?
+Terry stafford
+10
+
+Music: 1960s: Artist/Band: I'll Try Anything?
+Dusty springfield
+10
+
+Music: 1960s: Artist/Band: I'm A Believer?
+The monkees
+10
+
+Music: 1960s: Artist/Band: I'm a Better Man?
+Engelbert humperdinck
+10
+
+Music: 1960s: Artist/Band: I'm a Fool to Care?
+Joe barry
+10
+
+Music: 1960s: Artist/Band: I'm a Fool?
+Dino, desi & billy
+10
+
+Music: 1960s: Artist/Band: I'm a Happy Man?
+The jive five
+10
+
+Music: 1960s: Artist/Band: I'm a Midnight Mover?
+Wilson pickett
+10
+
+Music: 1960s: Artist/Band: I'm A-Telling You?
+Jerry butler
+10
+
+Music: 1960s: Artist/Band: I'm Blue (The Gong-Gong Song)?
+The ikettes
+10
+
+Music: 1960s: Artist/Band: I'm Comin' Home, Cindy?
+Trini lopez
+10
+
+Music: 1960s: Artist/Band: I'm Comin' on Back to You?
+Jackie Wilson
+10
+
+Music: 1960s: Artist/Band: I'm Crying?
+The animals
+10
+
+Music: 1960s: Artist/Band: I'm Free?
+The who
+10
+
+Music: 1960s: Artist/Band: I'm Gettin' Better?
+Jim reeves
+10
+
+Music: 1960s: Artist/Band: I'm Gonna Be Strong?
+Gene pitney
+10
+
+Music: 1960s: Artist/Band: I'm Gonna Knock on Your Door?
+Eddie Hodges
+10
+
+Music: 1960s: Artist/Band: I'm Gonna Make You Mine?
+Lou christie
+10
+
+Music: 1960s: Artist/Band: I'm Henry VIII I Am?
+Herman's hermits
+10
+
+Music: 1960s: Artist/Band: I'm Hurtin'?
+Roy orbison
+10
+
+Music: 1960s: Artist/Band: I'm in the Mood for Love?
+The chimes
+10
+
+Music: 1960s: Artist/Band: I'm Into Something Good?
+Herman's hermits
+10
+
+Music: 1960s: Artist/Band: I'm Learning About Love?
+Brenda lee
+10
+
+Music: 1960s: Artist/Band: I'm Leaving It Up to You?
+Dale & grace
+10
+
+Music: 1960s: Artist/Band: I'm Livin' In Shame?
+Diana ross & the supremes
+10
+
+Music: 1960s: Artist/Band: I'm Not Afraid?
+Ricky nelson
+10
+
+Music: 1960s: Artist/Band: I'm On the Outside (Looking In)?
+Little anthony & the imperials
+10
+
+Music: 1960s: Artist/Band: I'm Ready for Love?
+Martha & the vandellas
+10
+
+Music: 1960s: Artist/Band: I'm So Lonesome I Could Cry?
+B.j. thomas & the triumphs
+10
+
+Music: 1960s: Artist/Band: I'm So Proud?
+The impressions
+10
+
+Music: 1960s: Artist/Band: I'm Sorry?
+Brenda lee
+10
+
+Music: 1960s: Artist/Band: I'm Telling You Now?
+Freddie & the dreamers
+10
+
+Music: 1960s: Artist/Band: I'm Wondering?
+Stevie wonder
+10
+
+Music: 1960s: Artist/Band: I'm Your Puppet?
+James & bobby purify
+10
+
+Music: 1960s: Artist/Band: I'm Yours?
+Elvis presley
+10
+
+Music: 1960s: Artist/Band: I've Been Hurt?
+Bill deal & the rhondels
+10
+
+Music: 1960s: Artist/Band: I've Been Lonely Too Long?
+The young rascals
+10
+
+Music: 1960s: Artist/Band: I've Been Loving You Too Long (to Stop Now)?
+Otis redding
+10
+
+Music: 1960s: Artist/Band: I've Got a Tiger By the Tail?
+Buck owens
+10
+
+Music: 1960s: Artist/Band: I've Got a Woman (Part?
+Jimmy mcgriff
+10
+
+Music: 1960s: Artist/Band: I've Got Sand in My Shoes?
+The drifters
+10
+
+Music: 1960s: Artist/Band: I've Got to Be Somebody?
+Billy joe royal
+10
+
+Music: 1960s: Artist/Band: I've Got You Under My Skin?
+The 4 seasons
+10
+
+Music: 1960s: Artist/Band: I've Gotta Be Me?
+Sammy davis, jr
+10
+
+Music: 1960s: Artist/Band: I've Gotta Get A Message To You?
+Bee gees
+10
+
+Music: 1960s: Artist/Band: I've Never Found a Girl (to Love Me Like You Do)?
+Eddie floyd
+10
+
+Music: 1960s: Artist/Band: I've Passed This Way Before?
+Jimmy ruffin
+10
+
+Music: 1960s: Artist/Band: I've Told Every Little Star?
+Linda Scott
+10
+
+Music: 1960s: Artist/Band: If a Man Answers?
+Bobby darin
+10
+
+Music: 1960s: Artist/Band: If a Woman Answers (Hang Up the Phone)?
+Leroy van dyke
+10
+
+Music: 1960s: Artist/Band: If I Can Dream?
+Elvis presley
+10
+
+Music: 1960s: Artist/Band: If I Could Build My Whole World Around You?
+Marvin gaye & tammi terrell
+10
+
+Music: 1960s: Artist/Band: If I Didn't Care?
+The platters
+10
+
+Music: 1960s: Artist/Band: If I Had a Hammer (The Hammer Song)?
+Peter, paul & mary
+10
+
+Music: 1960s: Artist/Band: If I Had A Hammer?
+Trini lopez
+10
+
+Music: 1960s: Artist/Band: If I Loved You?
+Chad & jeremy
+10
+
+Music: 1960s: Artist/Band: If I Ruled the World?
+Tony bennett
+10
+
+Music: 1960s: Artist/Band: If My Pillow Could Talk?
+Connie francis
+10
+
+Music: 1960s: Artist/Band: If You Can Want?
+Smokey robinson & the miracles
+10
+
+Music: 1960s: Artist/Band: If You Gotta Make a Fool of Somebody?
+James ray
+10
+
+Music: 1960s: Artist/Band: If You Need Me?
+Solomon burke
+10
+
+Music: 1960s: Artist/Band: If You Wanna Be Happy?
+Jimmy soul
+10
+
+Music: 1960s: Artist/Band: Iko Iko?
+The dixie cups
+10
+
+Music: 1960s: Artist/Band: Image of a Girl?
+Safaris
+10
+
+Music: 1960s: Artist/Band: In a Moment?
+The intrigues
+10
+
+Music: 1960s: Artist/Band: In and Out of Love?
+Diana ross & the supremes
+10
+
+Music: 1960s: Artist/Band: In Dreams?
+Roy orbison
+10
+
+Music: 1960s: Artist/Band: In My Little Corner of the World?
+Anita bryant
+10
+
+Music: 1960s: Artist/Band: In My Room?
+The beach boys
+10
+
+Music: 1960s: Artist/Band: In the Chapel in the Moonlight?
+Dean martin
+10
+
+Music: 1960s: Artist/Band: In the Ghetto?
+Elvis presley
+10
+
+Music: 1960s: Artist/Band: In the Heat of the Night?
+Ray charles
+10
+
+Music: 1960s: Artist/Band: In the Middle of a Heartache?
+Wanda Jackson
+10
+
+Music: 1960s: Artist/Band: In the Midnight Hour?
+Wilson pickett
+10
+
+Music: 1960s: Artist/Band: In the Misty Moonlight?
+Jerry wallace
+10
+
+Music: 1960s: Artist/Band: In the Still Of the Night?
+Dion & the belmonts
+10
+
+Music: 1960s: Artist/Band: In the Year 2525 (Exordium & Terminus)?
+Zager & evans
+10
+
+Music: 1960s: Artist/Band: In-A-Gadda-Da-Vida?
+Iron butterfly
+10
+
+Music: 1960s: Artist/Band: Incense and Peppermints?
+Strawberry alarm clock
+10
+
+Music: 1960s: Artist/Band: Indescribably Blue?
+Elvis presley
+10
+
+Music: 1960s: Artist/Band: Indian Giver?
+1910 fruitgum company
+10
+
+Music: 1960s: Artist/Band: Indian Lake?
+The cowsills
+10
+
+Music: 1960s: Artist/Band: Inside, looking out?
+The animals
+10
+
+Music: 1960s: Artist/Band: Irresistible You?
+Bobby darin
+10
+
+Music: 1960s: Artist/Band: Is a Blue Bird Blue?
+Conway twitty
+10
+
+Music: 1960s: Artist/Band: Is It Something You've Got?
+Tyrone davis
+10
+
+Music: 1960s: Artist/Band: Is It True?
+Brenda lee
+10
+
+Music: 1960s: Artist/Band: Is That All There Is?
+Peggy lee
+10
+
+Music: 1960s: Artist/Band: Is There Any Chance?
+Marty robbins
+10
+
+Music: 1960s: Artist/Band: Israelites?
+Desmond dekker & the aces
+10
+
+Music: 1960s: Artist/Band: It Ain't Me Babe?
+The turtles
+10
+
+Music: 1960s: Artist/Band: It Hurts Me?
+Elvis presley
+10
+
+Music: 1960s: Artist/Band: It Hurts To Be In Love?
+Gene pitney
+10
+
+Music: 1960s: Artist/Band: It Keeps Rainin'?
+Fats domino
+10
+
+Music: 1960s: Artist/Band: It Keeps Right On A-Hurtin'?
+Johnny tillotson
+10
+
+Music: 1960s: Artist/Band: It Might As Well Rain Until September?
+Carole king
+10
+
+Music: 1960s: Artist/Band: It Must Be Him?
+Vikki carr
+10
+
+Music: 1960s: Artist/Band: It Only Happened Yesterday?
+Jack scott
+10
+
+Music: 1960s: Artist/Band: It Should Have Been Me?
+Gladys knight & the pips
+10
+
+Music: 1960s: Artist/Band: It Started All Over Again?
+Brenda lee
+10
+
+Music: 1960s: Artist/Band: It Takes Two?
+Marvin gaye & kim weston
+10
+
+Music: 1960s: Artist/Band: It Tears Me Up?
+Percy sledge
+10
+
+Music: 1960s: Artist/Band: It Was a Very Good Year?
+Frank sinatra
+10
+
+Music: 1960s: Artist/Band: It's a Man's Man's Man's World?
+James brown
+10
+
+Music: 1960s: Artist/Band: It's All in the Game?
+Cliff richard
+10
+
+Music: 1960s: Artist/Band: It's All Over Now?
+The rolling stones
+10
+
+Music: 1960s: Artist/Band: It's Getting Better?
+Mama cass elliot
+10
+
+Music: 1960s: Artist/Band: It's Gonna Be Alright?
+Gerry & the pacemakers
+10
+
+Music: 1960s: Artist/Band: It's Gonna Work Out Fine?
+Ike & tina Turner
+10
+
+Music: 1960s: Artist/Band: It's Growing?
+The temptations
+10
+
+Music: 1960s: Artist/Band: It's My Life?
+The animals
+10
+
+Music: 1960s: Artist/Band: It's My Party?
+Lesley gore
+10
+
+Music: 1960s: Artist/Band: It's Not Unusual?
+Tom jones
+10
+
+Music: 1960s: Artist/Band: It's Now Or Never?
+Elvis presley
+10
+
+Music: 1960s: Artist/Band: It's Now Winter's Day?
+Tommy roe
+10
+
+Music: 1960s: Artist/Band: It's Only Love?
+Tommy james & the shondells
+10
+
+Music: 1960s: Artist/Band: It's the Same Old Song?
+Four tops
+10
+
+Music: 1960s: Artist/Band: It's Too Late?
+Bobby goldsboro
+10
+
+Music: 1960s: Artist/Band: It's Up to You?
+Rick nelson
+10
+
+Music: 1960s: Artist/Band: It's Wonderful?
+The young rascals
+10
+
+Music: 1960s: Artist/Band: It's Your Thing?
+The isley brothers
+10
+
+Music: 1960s: Artist/Band: Itchycoo Park?
+Small faces
+10
+
+Music: 1960s: Artist/Band: Itsy Bitsy Teenie Weenie Yellow Polka-Dot Bikini?
+Brian hyland
+10
+
+Music: 1960s: Artist/Band: Jackson?
+Nancy sinatra & lee hazlewood
+10
+
+Music: 1960s: Artist/Band: Jam Up and Jelly Tight?
+Tommy roe
+10
+
+Music: 1960s: Artist/Band: Jambalaya (On the Bayou)?
+Fats domino
+10
+
+Music: 1960s: Artist/Band: James (Hold the Ladder Steady)?
+Sue thompson
+10
+
+Music: 1960s: Artist/Band: Jamie?
+Eddie holland
+10
+
+Music: 1960s: Artist/Band: Java?
+Al hirt
+10
+
+Music: 1960s: Artist/Band: Jealous Kind of Fella?
+Garland green
+10
+
+Music: 1960s: Artist/Band: Jealous of You (Tango Della Gelosia)?
+Connie francis
+10
+
+Music: 1960s: Artist/Band: Jean?
+Oliver
+10
+
+Music: 1960s: Artist/Band: Jennifer Eccles?
+The hollies
+10
+
+Music: 1960s: Artist/Band: Jennifer Juniper?
+Donovan
+10
+
+Music: 1960s: Artist/Band: Jenny Take a Ride!?
+Mitch ryder & the detroit wheels
+10
+
+Music: 1960s: Artist/Band: Jeremiah Peabody's Poly Unsaturated ... Pills?
+Ray stevens
+10
+
+Music: 1960s: Artist/Band: Jesus is a Soul Man?
+Lawrence reynolds
+10
+
+Music: 1960s: Artist/Band: Jimmy Mack?
+Martha & the vandellas
+10
+
+Music: 1960s: Artist/Band: Jimmy's Girl?
+Johnny tillotson
+10
+
+Music: 1960s: Artist/Band: Jingle Bell Rock?
+Bobby rydell & Chubby Checker
+10
+
+Music: 1960s: Artist/Band: Johnny Angel?
+Shelly fabares
+10
+
+Music: 1960s: Artist/Band: Johnny Get Angry?
+Joanie sommers
+10
+
+Music: 1960s: Artist/Band: Johnny Jingo?
+Hayley mills
+10
+
+Music: 1960s: Artist/Band: Johnny Loves Me?
+Shelly fabares
+10
+
+Music: 1960s: Artist/Band: Johnny Will?
+Pat boone
+10
+
+Music: 1960s: Artist/Band: Josephine?
+Bill black's combo
+10
+
+Music: 1960s: Artist/Band: Journey to the Center of the Mind?
+The amboy dukes
+10
+
+Music: 1960s: Artist/Band: Ju Ju Hand?
+Sam the sham & the pharaohs
+10
+
+Music: 1960s: Artist/Band: Judy in Disguise (with Glasses)?
+John fred & his playboy band
+10
+
+Music: 1960s: Artist/Band: Judy's Turn to Cry?
+Lesley gore
+10
+
+Music: 1960s: Artist/Band: Jumpin' Jack Flash?
+The rolling stones
+10
+
+Music: 1960s: Artist/Band: Jura (I Swear I Love You)?
+Les paul & Mary Ford
+10
+
+Music: 1960s: Artist/Band: Just a Little Bit Better?
+Herman's hermits
+10
+
+Music: 1960s: Artist/Band: Just a Little Bit?
+Roy head & the traits
+10
+
+Music: 1960s: Artist/Band: Just as Much as Ever?
+Bobby vinton
+10
+
+Music: 1960s: Artist/Band: Just Be True?
+Gene chandler
+10
+
+Music: 1960s: Artist/Band: Just Come Home?
+Hugo & luigi and chorus
+10
+
+Music: 1960s: Artist/Band: Just Dropped In (to See What Condition My Condition Was In)?
+Kenny rogers & the first Edition
+10
+
+Music: 1960s: Artist/Band: Just For Old Time's Sake?
+The McGuire Sisters
+10
+
+Music: 1960s: Artist/Band: Just Like a Woman?
+Bob dylan
+10
+
+Music: 1960s: Artist/Band: Just Like Me?
+Paul revere & the raiders
+10
+
+Music: 1960s: Artist/Band: Just Once in My Life?
+The righteous brothers
+10
+
+Music: 1960s: Artist/Band: Just One Look?
+Doris troy
+10
+
+Music: 1960s: Artist/Band: Just One Time?
+Don gibson
+10
+
+Music: 1960s: Artist/Band: Just Out of Reach (of My Two Open Arms)?
+Solomon burke
+10
+
+Music: 1960s: Artist/Band: Just You?
+Sonny & cher
+10
+
+Music: 1960s: Artist/Band: Kansas City Star?
+Roger miller
+10
+
+Music: 1960s: Artist/Band: Kansas City?
+Trini lopez
+10
+
+Music: 1960s: Artist/Band: Keem-O-Sabe?
+The electric indian
+10
+
+Music: 1960s: Artist/Band: Keep on Dancing?
+The gentrys
+10
+
+Music: 1960s: Artist/Band: Keep on Lovin' Me, Honey?
+Marvin gaye & tammi terrell
+10
+
+Music: 1960s: Artist/Band: Keep on Pushing?
+The impressions
+10
+
+Music: 1960s: Artist/Band: Keep Searchin' (We'll Follow the Sun)?
+Del shannon
+10
+
+Music: 1960s: Artist/Band: Keep the Ball Rollin'?
+Jay & the techniques
+10
+
+Music: 1960s: Artist/Band: Keep Your Hands Off My Baby?
+Little eva
+10
+
+Music: 1960s: Artist/Band: Kicks?
+Paul revere & the raiders
+10
+
+Music: 1960s: Artist/Band: Kiddio?
+Brook benton
+10
+
+Music: 1960s: Artist/Band: Killer Joe?
+The rocky fellers
+10
+
+Music: 1960s: Artist/Band: Kind Of A Drag?
+The buckinghams
+10
+
+Music: 1960s: Artist/Band: King of the Road?
+Roger miller
+10
+
+Music: 1960s: Artist/Band: King of the Whole Wide World?
+Elvis presley
+10
+
+Music: 1960s: Artist/Band: Kiss Away?
+Ronnie dove
+10
+
+Music: 1960s: Artist/Band: Kiss Me Goodbye?
+Petula clark
+10
+
+Music: 1960s: Artist/Band: Kiss Me Quick?
+Elvis presley
+10
+
+Music: 1960s: Artist/Band: Kiss Me Sailor?
+Diane renay
+10
+
+Music: 1960s: Artist/Band: Kissin' Cousins?
+Elvis presley
+10
+
+Music: 1960s: Artist/Band: Kissin' on the Phone?
+Paul anka
+10
+
+Music: 1960s: Artist/Band: Knight in Rusty Armour?
+Peter & gordon
+10
+
+Music: 1960s: Artist/Band: L-O-N-E-L-Y?
+Bobby vinton
+10
+
+Music: 1960s: Artist/Band: La La La (If I Had You)?
+Bobby sherman
+10
+
+Music: 1960s: Artist/Band: La-La Means I Love You?
+The delfonics
+10
+
+Music: 1960s: Artist/Band: Lady Bird?
+Nancy sinatra & lee hazlewood
+10
+
+Music: 1960s: Artist/Band: Lady Godiva?
+Peter & gordon
+10
+
+Music: 1960s: Artist/Band: Lady Jane?
+The rolling stones
+10
+
+Music: 1960s: Artist/Band: Lady Luck?
+Lloyd price
+10
+
+Music: 1960s: Artist/Band: Lady Madonna?
+The beatles
+10
+
+Music: 1960s: Artist/Band: Lady Willpower?
+Gary puckett & the union gap
+10
+
+Music: 1960s: Artist/Band: Lady?
+Jack jones
+10
+
+Music: 1960s: Artist/Band: Lalena?
+Donovan
+10
+
+Music: 1960s: Artist/Band: Language of Love?
+John d. loudermilk
+10
+
+Music: 1960s: Artist/Band: Last Chance To Turn Around?
+Gene pitney
+10
+
+Music: 1960s: Artist/Band: Last Date?
+Floyd cramer
+10
+
+Music: 1960s: Artist/Band: Last Kiss?
+J. frank wilson & the cavaliers
+10
+
+Music: 1960s: Artist/Band: Last Night?
+Mar-keys
+10
+
+Music: 1960s: Artist/Band: Last Train to Clarksville?
+The monkees
+10
+
+Music: 1960s: Artist/Band: Laugh at Me?
+Sonny bono
+10
+
+Music: 1960s: Artist/Band: Laugh, Laugh?
+The beau brummels
+10
+
+Music: 1960s: Artist/Band: Laughing Boy?
+Mary wells
+10
+
+Music: 1960s: Artist/Band: Laughing?
+The guess who
+10
+
+Music: 1960s: Artist/Band: Laurie (Strange Things Happen)?
+Dickey lee
+10
+
+Music: 1960s: Artist/Band: Lay Lady Lay?
+Bob dylan
+10
+
+Music: 1960s: Artist/Band: Lazy Day?
+Spanky & our gang
+10
+
+Music: 1960s: Artist/Band: Lazy Elsie Molly?
+Chubby checker
+10
+
+Music: 1960s: Artist/Band: Lazy River?
+Bobby darin
+10
+
+Music: 1960s: Artist/Band: Leader of the Laundromat?
+The detergents
+10
+
+Music: 1960s: Artist/Band: Leader of the Pack?
+The shangri-las
+10
+
+Music: 1960s: Artist/Band: Leah?
+Roy orbison
+10
+
+Music: 1960s: Artist/Band: Leaning on the Lamp Post?
+Herman's hermits
+10
+
+Music: 1960s: Artist/Band: Leaving on a Jet Plane?
+Peter, paul & mary
+10
+
+Music: 1960s: Artist/Band: Les Bicyclettes De Belsize?
+Engelbert humperdinck
+10
+
+Music: 1960s: Artist/Band: Let A Man Come in and Do the Popcorn (Part?
+James brown
+10
+
+Music: 1960s: Artist/Band: Let A Woman Be A Woman, let a man be a man?
+Dyke & the blazers
+10
+
+Music: 1960s: Artist/Band: Let It Out (Let It All Hang Out)?
+The hombres
+10
+
+Music: 1960s: Artist/Band: Let Love Come Between Us?
+James & bobby purify
+10
+
+Music: 1960s: Artist/Band: Let Me Be?
+The turtles
+10
+
+Music: 1960s: Artist/Band: Let Me Belong to You?
+Brian hyland
+10
+
+Music: 1960s: Artist/Band: Let Me In?
+The sensations
+10
+
+Music: 1960s: Artist/Band: Let Me?
+Paul revere & the raiders
+10
+
+Music: 1960s: Artist/Band: Let the Four Winds Blow?
+Fats domino
+10
+
+Music: 1960s: Artist/Band: Let the Good Times Roll / Feel So Good?
+Bunny sigler
+10
+
+Music: 1960s: Artist/Band: Let the Little Girl Dance?
+Billy bland
+10
+
+Music: 1960s: Artist/Band: Let There Be Drums?
+Sandy nelson
+10
+
+Music: 1960s: Artist/Band: Let's Dance?
+Chris montez
+10
+
+Music: 1960s: Artist/Band: Let's Do the Freddie?
+Chubby checker
+10
+
+Music: 1960s: Artist/Band: Let's Fall in Love?
+Peaches & herb
+10
+
+Music: 1960s: Artist/Band: Let's Go (Pony)?
+The routers
+10
+
+Music: 1960s: Artist/Band: Let's Go Again (Where We Went Last Night)?
+Hank ballard & the midnighters
+10
+
+Music: 1960s: Artist/Band: Let's Go Get Stoned?
+Ray charles
+10
+
+Music: 1960s: Artist/Band: Let's Go Steady Again?
+Neil sedaka
+10
+
+Music: 1960s: Artist/Band: Let's Go, Let's Go, Let's Go?
+Hank Ballard & The Midnighters
+10
+
+Music: 1960s: Artist/Band: Let's Hang On?
+The 4 seasons
+10
+
+Music: 1960s: Artist/Band: Let's Have a Party?
+Wanda jackson
+10
+
+Music: 1960s: Artist/Band: Let's Kiss and Make Up?
+Bobby vinton
+10
+
+Music: 1960s: Artist/Band: Let's Limbo Some More?
+Chubby checker
+10
+
+Music: 1960s: Artist/Band: Let's Live for Today?
+The grass roots
+10
+
+Music: 1960s: Artist/Band: Let's Lock The Door (And Throw Away The Key)?
+Jay & the americans
+10
+
+Music: 1960s: Artist/Band: Let's Start All Over Again?
+Ronnie dove
+10
+
+Music: 1960s: Artist/Band: Let's Think About Living?
+Bob luman
+10
+
+Music: 1960s: Artist/Band: Let's Turkey Trot?
+Little eva
+10
+
+Music: 1960s: Artist/Band: Let's Twist Again?
+Chubby checker
+10
+
+Music: 1960s: Artist/Band: Letter from Sherry?
+Dale ward
+10
+
+Music: 1960s: Artist/Band: Letter Full of Tears?
+Gladys knight & The Pips
+10
+
+Music: 1960s: Artist/Band: Liar, Liar?
+The castaways
+10
+
+Music: 1960s: Artist/Band: Licking Stick?
+James brown & the famous flames
+10
+
+Music: 1960s: Artist/Band: Lie To Me?
+Brook benton
+10
+
+Music: 1960s: Artist/Band: Lies?
+The knickerbockers
+10
+
+Music: 1960s: Artist/Band: Lightnin' Strikes?
+Lou christie
+10
+
+Music: 1960s: Artist/Band: Lightning's Girl?
+Nancy sinatra
+10
+
+Music: 1960s: Artist/Band: Like A Baby?
+Len barry
+10
+
+Music: 1960s: Artist/Band: Like a Rolling Stone?
+Bob dylan
+10
+
+Music: 1960s: Artist/Band: Like An Old Time Movie?
+Scott mckenzie
+10
+
+Music: 1960s: Artist/Band: Like Strangers?
+The everly brothers
+10
+
+Music: 1960s: Artist/Band: Like to Get to Know You?
+Spanky & our gang
+10
+
+Music: 1960s: Artist/Band: Like, Long Hair?
+Paul revere & the Raiders
+10
+
+Music: 1960s: Artist/Band: Lil' Red Riding Hood?
+Sam the sham & the pharaohs
+10
+
+Music: 1960s: Artist/Band: Linda?
+Jan & dean
+10
+
+Music: 1960s: Artist/Band: Listen People?
+Herman's hermits
+10
+
+Music: 1960s: Artist/Band: Little Arrows?
+Leapy lee
+10
+
+Music: 1960s: Artist/Band: Little Band of Gold?
+James gilreath
+10
+
+Music: 1960s: Artist/Band: Little Bit o' Soul?
+The music explosion
+10
+
+Music: 1960s: Artist/Band: Little Bitty Girl?
+Bobby rydell
+10
+
+Music: 1960s: Artist/Band: Little Bitty Pretty One?
+Clyde mcphatter
+10
+
+Music: 1960s: Artist/Band: Little Black Book?
+Jimmy dean
+10
+
+Music: 1960s: Artist/Band: Little Boy Sad?
+Johnny burnette
+10
+
+Music: 1960s: Artist/Band: Little Children?
+Billy j. kramer & the dakotas
+10
+
+Music: 1960s: Artist/Band: Little Coco Palm?
+Jerry wallace
+10
+
+Music: 1960s: Artist/Band: Little Deuce Coupe?
+The beach boys
+10
+
+Music: 1960s: Artist/Band: Little Devil?
+Neil sedaka
+10
+
+Music: 1960s: Artist/Band: Little Diane?
+Dion
+10
+
+Music: 1960s: Artist/Band: Little Egypt (Ying-Yang)?
+The Coasters
+10
+
+Music: 1960s: Artist/Band: Little Girl?
+Syndicate of sound
+10
+
+Music: 1960s: Artist/Band: Little Green Apples?
+Roger miller
+10
+
+Music: 1960s: Artist/Band: Little Honda?
+The hondells
+10
+
+Music: 1960s: Artist/Band: Little Latin Lupe Lu?
+Mitch ryder & the detroit wheels
+10
+
+Music: 1960s: Artist/Band: Little Man?
+Sonny & cher
+10
+
+Music: 1960s: Artist/Band: Little Ole Wine Drinker, Me?
+Dean martin
+10
+
+Music: 1960s: Artist/Band: Little Ole' Man (Uptight everything's alright)?
+Bill cosby
+10
+
+Music: 1960s: Artist/Band: Little Red Rented Rowboat?
+Joe dowell
+10
+
+Music: 1960s: Artist/Band: Little Red Rooster?
+Sam cooke
+10
+
+Music: 1960s: Artist/Band: Little Sister?
+Elvis presley
+10
+
+Music: 1960s: Artist/Band: Little Things?
+Bobby goldsboro
+10
+
+Music: 1960s: Artist/Band: Little Town Flirt?
+Del shannon
+10
+
+Music: 1960s: Artist/Band: Little Woman?
+Bobby sherman
+10
+
+Music: 1960s: Artist/Band: Living A Lie?
+Al martino
+10
+
+Music: 1960s: Artist/Band: Lo Mucho Que Te Quiero (The More I Love You)?
+Rene & rene
+10
+
+Music: 1960s: Artist/Band: Loddy Lo?
+Chubby checker
+10
+
+Music: 1960s: Artist/Band: Lonely Man?
+Elvis presley
+10
+
+Music: 1960s: Artist/Band: Lonely Teenager?
+Dion
+10
+
+Music: 1960s: Artist/Band: Lonely Weekends?
+Charlie rich
+10
+
+Music: 1960s: Artist/Band: Long Live Our Love?
+The shangri-las
+10
+
+Music: 1960s: Artist/Band: Long Lonely Nights?
+Bobby vinton
+10
+
+Music: 1960s: Artist/Band: Look For A Star (Part?
+Gary mills
+10
+
+Music: 1960s: Artist/Band: Look in My Eyes?
+The chantels
+10
+
+Music: 1960s: Artist/Band: Look Through Any Window?
+The hollies
+10
+
+Music: 1960s: Artist/Band: Look Through My Window?
+The mamas & the papas
+10
+
+Music: 1960s: Artist/Band: Look What You've Done?
+Pozo-seco singers
+10
+
+Music: 1960s: Artist/Band: Looking Through the Eyes Of Love?
+Gene pitney
+10
+
+Music: 1960s: Artist/Band: Loop De Loop?
+Johnny thunder
+10
+
+Music: 1960s: Artist/Band: Losing You?
+Brenda lee
+10
+
+Music: 1960s: Artist/Band: Lost Love?
+H.b. barnum
+10
+
+Music: 1960s: Artist/Band: Love (Can Make You Happy)?
+Mercy
+10
+
+Music: 1960s: Artist/Band: Love (Makes the World Go 'Round)?
+Paul anka
+10
+
+Music: 1960s: Artist/Band: Love Bug Leave My Heart Alone?
+Martha & the vandellas
+10
+
+Music: 1960s: Artist/Band: Love Came to Me?
+Dion
+10
+
+Music: 1960s: Artist/Band: Love Child?
+Diana ross & the supremes
+10
+
+Music: 1960s: Artist/Band: Love Eyes?
+Nancy sinatra
+10
+
+Music: 1960s: Artist/Band: Love Is a Hurtin' Thing?
+Lou rawls
+10
+
+Music: 1960s: Artist/Band: Love Is All Around?
+The troggs
+10
+
+Music: 1960s: Artist/Band: Love Is Blue (L'Amour Est Bleu)?
+Paul mauriat & his orchestra
+10
+
+Music: 1960s: Artist/Band: Love Is Here and Now You're Gone?
+The supremes
+10
+
+Music: 1960s: Artist/Band: Love Is Like an Itching in My Heart?
+The supremes
+10
+
+Music: 1960s: Artist/Band: Love is Strange?
+Peaches & herb
+10
+
+Music: 1960s: Artist/Band: Love Makes A Woman?
+Barbara acklin
+10
+
+Music: 1960s: Artist/Band: Love Makes the World Go 'Round?
+Deon jackson
+10
+
+Music: 1960s: Artist/Band: Love Me Do?
+The beatles
+10
+
+Music: 1960s: Artist/Band: Love Me Tonight?
+Tom jones
+10
+
+Music: 1960s: Artist/Band: Love Me Two Times?
+The doors
+10
+
+Music: 1960s: Artist/Band: Love Me Warm and Tender?
+Paul anka
+10
+
+Music: 1960s: Artist/Band: Love Me with All of Your Heart?
+The bachelors
+10
+
+Music: 1960s: Artist/Band: Love Me With All Your Heart (Cuando Calienta El Sol)?
+Ray charles singers
+10
+
+Music: 1960s: Artist/Band: Love Potion #9?
+The searchers
+10
+
+Music: 1960s: Artist/Band: Love Power?
+The sandpebbles
+10
+
+Music: 1960s: Artist/Band: Love Walked In?
+Dinah Washington
+10
+
+Music: 1960s: Artist/Band: Love Will Find a Way?
+Jackie deshannon
+10
+
+Music: 1960s: Artist/Band: Love You So?
+Ron holden
+10
+
+Music: 1960s: Artist/Band: Love's Made a Fool of You?
+Bobby fuller four
+10
+
+Music: 1960s: Artist/Band: Lover Please?
+Clyde mcphatter
+10
+
+Music: 1960s: Artist/Band: Lover's Holiday?
+Peggy scott & jo jo benson
+10
+
+Music: 1960s: Artist/Band: Lovers by Night, Strangers by Day?
+The fleetwoods
+10
+
+Music: 1960s: Artist/Band: Lovers Who Wander?
+Dion
+10
+
+Music: 1960s: Artist/Band: Lovers' Island?
+The blue jays
+10
+
+Music: 1960s: Artist/Band: Lovey Dovey?
+Buddy knox
+10
+
+Music: 1960s: Artist/Band: Lovin' You?
+Bobby darin
+10
+
+Music: 1960s: Artist/Band: Lucille?
+The everly brothers
+10
+
+Music: 1960s: Artist/Band: Lullaby of Love?
+Frank gari
+10
+
+Music: 1960s: Artist/Band: MacArthur Park?
+Richard harris
+10
+
+Music: 1960s: Artist/Band: Mack the Knife?
+Ella fitzgerald
+10
+
+Music: 1960s: Artist/Band: Magic Bus?
+The who
+10
+
+Music: 1960s: Artist/Band: Magic Carpet Ride?
+Steppenwolf
+10
+
+Music: 1960s: Artist/Band: Magic Town?
+The vogues
+10
+
+Music: 1960s: Artist/Band: Make Believe?
+Wind
+10
+
+Music: 1960s: Artist/Band: Make Me Belong To You?
+Barbara lewis
+10
+
+Music: 1960s: Artist/Band: Make Me Your Baby?
+Barbara lewis
+10
+
+Music: 1960s: Artist/Band: Make Me Yours?
+Bettye swann
+10
+
+Music: 1960s: Artist/Band: Make Your Own Kind of Music?
+Mama cass elliot
+10
+
+Music: 1960s: Artist/Band: Making Every Minute Count?
+Spanky & our gang
+10
+
+Music: 1960s: Artist/Band: Making Memories?
+Frankie laine
+10
+
+Music: 1960s: Artist/Band: Mama Didn't Lie?
+Jan bradley
+10
+
+Music: 1960s: Artist/Band: Mama Said?
+The shirelles
+10
+
+Music: 1960s: Artist/Band: Mame?
+Herb alpert & the tijuana brass
+10
+
+Music: 1960s: Artist/Band: Many Tears Ago?
+Connie francis
+10
+
+Music: 1960s: Artist/Band: Maria Elena?
+Los indios tabajaras
+10
+
+Music: 1960s: Artist/Band: Marie?
+The bachelors
+10
+
+Music: 1960s: Artist/Band: Marlena?
+The 4 seasons
+10
+
+Music: 1960s: Artist/Band: Marrakesh Express?
+Crosby, stills & nash
+10
+
+Music: 1960s: Artist/Band: Mary Ann Regrets?
+Burl ives
+10
+
+Music: 1960s: Artist/Band: Mary In the Morning?
+Al martino
+10
+
+Music: 1960s: Artist/Band: Mary's Little Lamb?
+James darren
+10
+
+Music: 1960s: Artist/Band: Mashed Potato Time?
+Dee dee sharp
+10
+
+Music: 1960s: Artist/Band: Master Jack?
+Four jacks & a jill
+10
+
+Music: 1960s: Artist/Band: Matchbox?
+The beatles
+10
+
+Music: 1960s: Artist/Band: May I?
+Bill deal & the rhondels
+10
+
+Music: 1960s: Artist/Band: Maybe I Know?
+Lesley gore
+10
+
+Music: 1960s: Artist/Band: Maybellene?
+Johnny rivers
+10
+
+Music: 1960s: Artist/Band: Mean Woman Blues?
+Roy orbison
+10
+
+Music: 1960s: Artist/Band: Mecca?
+Gene pitney
+10
+
+Music: 1960s: Artist/Band: Medicine Man (Part?
+Buchanan brothers
+10
+
+Music: 1960s: Artist/Band: Mellow Yellow?
+Donovan
+10
+
+Music: 1960s: Artist/Band: Memories?
+Elvis presley
+10
+
+Music: 1960s: Artist/Band: Memphis Soul Stew?
+King curtis
+10
+
+Music: 1960s: Artist/Band: Men Are Gettin' Scarce?
+Joe tex
+10
+
+Music: 1960s: Artist/Band: Mendocino?
+Sir douglas quintet
+10
+
+Music: 1960s: Artist/Band: Mercy, Mercy?
+Don covay & the goodtimers
+10
+
+Music: 1960s: Artist/Band: Mercy?
+Ohio express
+10
+
+Music: 1960s: Artist/Band: Message to Michael?
+Dionne warwick
+10
+
+Music: 1960s: Artist/Band: Mexico?
+Bob moore & his orchestra
+10
+
+Music: 1960s: Artist/Band: Michael (Row the Boat Ashore)?
+The highwaymen
+10
+
+Music: 1960s: Artist/Band: Michelle?
+David & jonathan
+10
+
+Music: 1960s: Artist/Band: Mickey's Monkey?
+The miracles
+10
+
+Music: 1960s: Artist/Band: Midnight Confessions?
+The grass roots
+10
+
+Music: 1960s: Artist/Band: Midnight In Moscow?
+Kenny ball & his jazzmen
+10
+
+Music: 1960s: Artist/Band: Midnight Mary?
+Joey powers
+10
+
+Music: 1960s: Artist/Band: Mighty Quinn (Quinn the Eskimo)?
+Manfred mann
+10
+
+Music: 1960s: Artist/Band: Miller's Cave?
+Bobby bare
+10
+
+Music: 1960s: Artist/Band: Mind, Body and Soul?
+The flaming ember
+10
+
+Music: 1960s: Artist/Band: Mirage?
+Tommy james & the shondells
+10
+
+Music: 1960s: Artist/Band: Missing You?
+Ray peterson
+10
+
+Music: 1960s: Artist/Band: Mission Bell?
+Donnie brooks
+10
+
+Music: 1960s: Artist/Band: Misty?
+Lloyd price
+10
+
+Music: 1960s: Artist/Band: Mixed-Up, Shook-Up Girl?
+Patty & the emblems
+10
+
+Music: 1960s: Artist/Band: Mockingbird?
+Inez & charlie foxx
+10
+
+Music: 1960s: Artist/Band: Model Girl?
+Johnny maestro, the voice of the crests
+10
+
+Music: 1960s: Artist/Band: Mohair Sam?
+Charlie rich
+10
+
+Music: 1960s: Artist/Band: Monday, Monday?
+The mamas & the papas
+10
+
+Music: 1960s: Artist/Band: Money (That's What I Want)?
+Barrett Strong
+10
+
+Music: 1960s: Artist/Band: Money?
+The kingsmen
+10
+
+Music: 1960s: Artist/Band: Monster?
+Steppenwolf
+10
+
+Music: 1960s: Artist/Band: Monterey?
+Eric burdon & the animals
+10
+
+Music: 1960s: Artist/Band: Mony Mony?
+Tommy james & the shondells
+10
+
+Music: 1960s: Artist/Band: Moody River?
+Pat boone
+10
+
+Music: 1960s: Artist/Band: Moody Woman?
+Jerry butler
+10
+
+Music: 1960s: Artist/Band: Moon River?
+Jerry butler
+10
+
+Music: 1960s: Artist/Band: Moonflight?
+Vik venus
+10
+
+Music: 1960s: Artist/Band: More Love?
+Smokey robinson & the miracles
+10
+
+Music: 1960s: Artist/Band: More Money for You and Me (Medley)?
+The four preps
+10
+
+Music: 1960s: Artist/Band: More Today Than Yesterday?
+Spiral starecase
+10
+
+Music: 1960s: Artist/Band: More?
+Kai winding
+10
+
+Music: 1960s: Artist/Band: Morning Girl?
+The neon philharmonic
+10
+
+Music: 1960s: Artist/Band: Most People Get Married?
+Patti page
+10
+
+Music: 1960s: Artist/Band: Mother Popcorn (You Got to Have a Mother for Me) (Part?
+James brown
+10
+
+Music: 1960s: Artist/Band: Mother-in-Law?
+Ernie k-doe
+10
+
+Music: 1960s: Artist/Band: Mother's Little Helper?
+The rolling stones
+10
+
+Music: 1960s: Artist/Band: Move Over?
+Steppenwolf
+10
+
+Music: 1960s: Artist/Band: Mr. Bass Man?
+Johnny cymbal
+10
+
+Music: 1960s: Artist/Band: Mr. Businessman?
+Ray stevens
+10
+
+Music: 1960s: Artist/Band: Mr. Custer?
+Larry verne
+10
+
+Music: 1960s: Artist/Band: Mr. Dieingly Sad?
+The critters
+10
+
+Music: 1960s: Artist/Band: Mr. Dream Merchant?
+Jerry butler
+10
+
+Music: 1960s: Artist/Band: Mr. Lonely?
+Bobby vinton
+10
+
+Music: 1960s: Artist/Band: Mr. Lucky?
+Henry mancini & his Orchestra
+10
+
+Music: 1960s: Artist/Band: Mr. Spaceman?
+The byrds
+10
+
+Music: 1960s: Artist/Band: Mr. Sun, Mr. Moon?
+Paul revere & the raiders
+10
+
+Music: 1960s: Artist/Band: Mr. Tambourine Man?
+The byrds
+10
+
+Music: 1960s: Artist/Band: Mrs. Brown You've Got a Lovely Daughter?
+Herman's hermits
+10
+
+Music: 1960s: Artist/Band: Mule Skinner Blues?
+The fendermen
+10
+
+Music: 1960s: Artist/Band: Multiplication?
+Bobby darin
+10
+
+Music: 1960s: Artist/Band: Museum?
+Herman's hermits
+10
+
+Music: 1960s: Artist/Band: Mustang Sally?
+Wilson pickett
+10
+
+Music: 1960s: Artist/Band: My Baby Loves Me?
+Martha & the vandellas
+10
+
+Music: 1960s: Artist/Band: My Baby Must Be a Magician?
+The marvelettes
+10
+
+Music: 1960s: Artist/Band: My Baby?
+The temptations
+10
+
+Music: 1960s: Artist/Band: My Back Pages?
+The byrds
+10
+
+Music: 1960s: Artist/Band: My Bonnie (Lies Over the Ocean)?
+The beatles with tony sheridan
+10
+
+Music: 1960s: Artist/Band: My Boomerang Won't Come Back?
+Charlie drake
+10
+
+Music: 1960s: Artist/Band: My Boy Lollipop?
+Millie small
+10
+
+Music: 1960s: Artist/Band: My Boyfriend's Back?
+The angels
+10
+
+Music: 1960s: Artist/Band: My Cherie Amour?
+Stevie wonder
+10
+
+Music: 1960s: Artist/Band: My Coloring Book?
+Kitty kallen
+10
+
+Music: 1960s: Artist/Band: My Cup Runneth Over?
+Ed ames
+10
+
+Music: 1960s: Artist/Band: My Dad?
+Paul petersen
+10
+
+Music: 1960s: Artist/Band: My Dearest Darling?
+Etta james
+10
+
+Music: 1960s: Artist/Band: My Empty Arms?
+Jackie wilson
+10
+
+Music: 1960s: Artist/Band: My Girl Has Gone?
+The miracles
+10
+
+Music: 1960s: Artist/Band: My Girl Sloopy?
+The vibrations
+10
+
+Music: 1960s: Artist/Band: My Girl?
+The temptations
+10
+
+Music: 1960s: Artist/Band: My Girl/Hey Girl?
+Bobby vee
+10
+
+Music: 1960s: Artist/Band: My Guy?
+Mary wells
+10
+
+Music: 1960s: Artist/Band: My Heart Belongs to Only You?
+Bobby vinton
+10
+
+Music: 1960s: Artist/Band: My Heart Cries for You?
+Ray charles
+10
+
+Music: 1960s: Artist/Band: My Heart Has a Mind of Its Own?
+Connie francis
+10
+
+Music: 1960s: Artist/Band: My Heart's Symphony?
+Gary lewis & the playboys
+10
+
+Music: 1960s: Artist/Band: My Home Town?
+Paul anka
+10
+
+Music: 1960s: Artist/Band: My Kind of Girl?
+Matt monro
+10
+
+Music: 1960s: Artist/Band: My Last Date (with You)?
+Skeeter davis
+10
+
+Music: 1960s: Artist/Band: My Love, Forgive Me (Amore Scusami)?
+Robert goulet
+10
+
+Music: 1960s: Artist/Band: My Love?
+Petula clark
+10
+
+Music: 1960s: Artist/Band: My Mammy?
+The happenings
+10
+
+Music: 1960s: Artist/Band: My Own True Love?
+The duprees
+10
+
+Music: 1960s: Artist/Band: My Pledge of Love?
+Joe jeffrey group
+10
+
+Music: 1960s: Artist/Band: My Song?
+Aretha franklin
+10
+
+Music: 1960s: Artist/Band: My Special Angel?
+The vogues
+10
+
+Music: 1960s: Artist/Band: My Summer Love?
+Ruby & the romantics
+10
+
+Music: 1960s: Artist/Band: My Town, My Guy, and Me?
+Lesley gore
+10
+
+Music: 1960s: Artist/Band: My True Confession?
+Brook benton
+10
+
+Music: 1960s: Artist/Band: My True Story?
+The jive five
+10
+
+Music: 1960s: Artist/Band: My Way?
+Frank sinatra
+10
+
+Music: 1960s: Artist/Band: My Whole World Ended (the Moment You Left Me)?
+David ruffin
+10
+
+Music: 1960s: Artist/Band: My Whole World Is Falling Down?
+Brenda lee
+10
+
+Music: 1960s: Artist/Band: My World Is Empty Without You?
+The supremes
+10
+
+Music: 1960s: Artist/Band: Mystic Eyes?
+Them
+10
+
+Music: 1960s: Artist/Band: Na Na Hey Hey Kiss Him Goodbye?
+Steam
+10
+
+Music: 1960s: Artist/Band: Nadine (Is It You?)?
+Chuck berry
+10
+
+Music: 1960s: Artist/Band: Nag?
+The halos
+10
+
+Music: 1960s: Artist/Band: Nashville Cats?
+The lovin' spoonful
+10
+
+Music: 1960s: Artist/Band: Natural Born Lover?
+Fats domino
+10
+
+Music: 1960s: Artist/Band: Naturally Stoned?
+The avante-garde
+10
+
+Music: 1960s: Artist/Band: Nature Boy?
+Bobby darin
+10
+
+Music: 1960s: Artist/Band: Navy Blue?
+Diane renay
+10
+
+Music: 1960s: Artist/Band: Need to Belong?
+Jerry butler
+10
+
+Music: 1960s: Artist/Band: Needles and Pins?
+The searchers
+10
+
+Music: 1960s: Artist/Band: Neon Rainbow?
+The box tops
+10
+
+Music: 1960s: Artist/Band: Never Give You Up?
+Jerry butler
+10
+
+Music: 1960s: Artist/Band: Never My Love?
+The association
+10
+
+Music: 1960s: Artist/Band: New Mexican Rose?
+The 4 seasons
+10
+
+Music: 1960s: Artist/Band: New York Mining Disaster 1941 (Have You Seen My Wife, Mr. Jo)?
+Bee gees
+10
+
+Music: 1960s: Artist/Band: New York's a Lonely Town?
+The trade winds
+10
+
+Music: 1960s: Artist/Band: Next Door to an Angel?
+Neil sedaka
+10
+
+Music: 1960s: Artist/Band: Next Plane to London?
+The rose garden
+10
+
+Music: 1960s: Artist/Band: Night Time?
+The strangeloves
+10
+
+Music: 1960s: Artist/Band: Night Train?
+James brown & the famous flames
+10
+
+Music: 1960s: Artist/Band: Night?
+Jackie wilson
+10
+
+Music: 1960s: Artist/Band: Niki Hoeky?
+P.j. proby
+10
+
+Music: 1960s: Artist/Band: No Arms Can Ever Hold You?
+The bachelors
+10
+
+Music: 1960s: Artist/Band: No Ifs no ands?
+Lloyd price
+10
+
+Music: 1960s: Artist/Band: No Matter What Shape (Your Stomach's In)?
+The t-bones
+10
+
+Music: 1960s: Artist/Band: No Matter What Sign You Are?
+Diana ross & the supremes
+10
+
+Music: 1960s: Artist/Band: No Milk Today?
+Herman's hermits
+10
+
+Music: 1960s: Artist/Band: No Particular Place To Go?
+Chuck berry
+10
+
+Music: 1960s: Artist/Band: No, Not Much?
+The vogues
+10
+
+Music: 1960s: Artist/Band: Nobody But Me?
+The human beinz
+10
+
+Music: 1960s: Artist/Band: Nobody But You Babe?
+Clarence reid
+10
+
+Music: 1960s: Artist/Band: Nobody I Know?
+Peter & gordon
+10
+
+Music: 1960s: Artist/Band: Nobody Loves Me Like You?
+The Flamingos
+10
+
+Music: 1960s: Artist/Band: Norman?
+Sue thompson
+10
+
+Music: 1960s: Artist/Band: North To Alaska?
+Johnny horton
+10
+
+Music: 1960s: Artist/Band: Not Me?
+The orlons
+10
+
+Music: 1960s: Artist/Band: Not the Lovin' Kind?
+Dino, desi & billy
+10
+
+Music: 1960s: Artist/Band: Nothing But a Heartache?
+The flirtations
+10
+
+Music: 1960s: Artist/Band: Nothing But Heartaches?
+The supremes
+10
+
+Music: 1960s: Artist/Band: Nothing Can Change This Love?
+Sam cooke
+10
+
+Music: 1960s: Artist/Band: Nothing Can Stop Me?
+Gene chandler
+10
+
+Music: 1960s: Artist/Band: Nothing's Too Good for My Baby?
+Stevie wonder
+10
+
+Music: 1960s: Artist/Band: Nowhere Man?
+The beatles
+10
+
+Music: 1960s: Artist/Band: Nowhere to Run?
+Martha & the vandellas
+10
+
+Music: 1960s: Artist/Band: Nut Rocker?
+B. bumble & the stingers
+10
+
+Music: 1960s: Artist/Band: O Dio Mio?
+Annette
+10
+
+Music: 1960s: Artist/Band: Oh Baby Don't You Weep (Part?
+James brown & the famous flames
+10
+
+Music: 1960s: Artist/Band: Oh Happy Day?
+Edwin hawkins singers
+10
+
+Music: 1960s: Artist/Band: Oh How Happy?
+Shades of blue
+10
+
+Music: 1960s: Artist/Band: Oh Me, Oh My (I'm a Fool for You Baby)?
+Lulu
+10
+
+Music: 1960s: Artist/Band: Oh No, Not My Baby?
+Maxine brown
+10
+
+Music: 1960s: Artist/Band: Oh Yeah?
+The shadows of knight
+10
+
+Music: 1960s: Artist/Band: Oh, Little One?
+Jack scott
+10
+
+Music: 1960s: Artist/Band: Oh, Pretty Woman?
+Roy orbison & the candymen
+10
+
+Music: 1960s: Artist/Band: Ol' MacDonald?
+Frank sinatra
+10
+
+Music: 1960s: Artist/Band: Old Rivers?
+Walter brennan
+10
+
+Music: 1960s: Artist/Band: Ole Buttermilk Sky?
+Bill black's combo
+10
+
+Music: 1960s: Artist/Band: On A Carousel?
+The hollies
+10
+
+Music: 1960s: Artist/Band: On Broadway?
+The drifters
+10
+
+Music: 1960s: Artist/Band: On the Rebound?
+Floyd cramer
+10
+
+Music: 1960s: Artist/Band: On the Road Again?
+Canned heat
+10
+
+Music: 1960s: Artist/Band: On the Street Where You Live?
+Andy williams
+10
+
+Music: 1960s: Artist/Band: On Top Of Spaghetti?
+Tom glazer
+10
+
+Music: 1960s: Artist/Band: Once In Awhile?
+The chimes
+10
+
+Music: 1960s: Artist/Band: One Broken Heart for Sale?
+Elvis presley
+10
+
+Music: 1960s: Artist/Band: One Dyin' and a Buryin'?
+Roger miller
+10
+
+Music: 1960s: Artist/Band: One Fine Day?
+The chiffons
+10
+
+Music: 1960s: Artist/Band: One Has My Name (The Other Has My Heart)?
+Barry young
+10
+
+Music: 1960s: Artist/Band: One Kiss for Old Times' Sake?
+Ronnie dove
+10
+
+Music: 1960s: Artist/Band: One Mint Julep?
+Ray charles
+10
+
+Music: 1960s: Artist/Band: One More Heartache?
+Marvin gaye
+10
+
+Music: 1960s: Artist/Band: One More Time?
+Ray charles singers
+10
+
+Music: 1960s: Artist/Band: One of Us (Will Weep Tonight)?
+Patti Page
+10
+
+Music: 1960s: Artist/Band: One Summer Night?
+The diamonds
+10
+
+Music: 1960s: Artist/Band: One Tin Soldier?
+The original caste
+10
+
+Music: 1960s: Artist/Band: One Track Mind?
+Bobby lewis
+10
+
+Music: 1960s: Artist/Band: One?
+Three dog night
+10
+
+Music: 1960s: Artist/Band: Only in America?
+Jay & the americans
+10
+
+Music: 1960s: Artist/Band: Only Love Can Break A Heart?
+Gene pitney
+10
+
+Music: 1960s: Artist/Band: Only the Lonely (Know How I Feel)?
+Roy orbison
+10
+
+Music: 1960s: Artist/Band: Only The Strong Survive?
+Jerry butler
+10
+
+Music: 1960s: Artist/Band: Oo Wee Baby, I Love You?
+Fred hughes
+10
+
+Music: 1960s: Artist/Band: Ooh Baby Baby?
+The miracles
+10
+
+Music: 1960s: Artist/Band: Ooh Poo Pah Doo (Part?
+Jessie hill
+10
+
+Music: 1960s: Artist/Band: Open the Door to Your Heart?
+Darrell banks
+10
+
+Music: 1960s: Artist/Band: Opus 17 (Don't You Worry 'Bout Me)?
+The 4 seasons
+10
+
+Music: 1960s: Artist/Band: Our Day Will Come?
+Ruby & the romantics
+10
+
+Music: 1960s: Artist/Band: Our Winter Love?
+Bill pursell
+10
+
+Music: 1960s: Artist/Band: Out & About?
+Tommy boyce & bobby hart
+10
+
+Music: 1960s: Artist/Band: Out Of Limits?
+The marketts
+10
+
+Music: 1960s: Artist/Band: Out Of My Mind?
+Johnny tillotson
+10
+
+Music: 1960s: Artist/Band: Out Of Sight?
+James brown & his orchestra
+10
+
+Music: 1960s: Artist/Band: Outside My Window?
+The fleetwoods
+10
+
+Music: 1960s: Artist/Band: Over and Over?
+The dave clark five
+10
+
+Music: 1960s: Artist/Band: Over the Mountain (Across the Sea)?
+Bobby vinton
+10
+
+Music: 1960s: Artist/Band: Over the Rainbow?
+The demensions
+10
+
+Music: 1960s: Artist/Band: Over Under Sideways Down?
+The yardbirds
+10
+
+Music: 1960s: Artist/Band: Over You?
+Gary puckett & the union gap
+10
+
+Music: 1960s: Artist/Band: P.S. I Love You?
+The beatles
+10
+
+Music: 1960s: Artist/Band: P.T. 109?
+Jimmy dean
+10
+
+Music: 1960s: Artist/Band: Paint It, Black?
+The rolling stones
+10
+
+Music: 1960s: Artist/Band: Painted, Tainted Rose?
+Al martino
+10
+
+Music: 1960s: Artist/Band: Pandora's Golden Heebie Jeebies?
+The association
+10
+
+Music: 1960s: Artist/Band: Papa's Got a Brand New Bag (Part?
+James brown
+10
+
+Music: 1960s: Artist/Band: Papa's Got a Brand New Bag?
+Otis redding
+10
+
+Music: 1960s: Artist/Band: Paper Cup?
+The 5th dimension
+10
+
+Music: 1960s: Artist/Band: Paper Roses?
+Anita bryant
+10
+
+Music: 1960s: Artist/Band: Paper Tiger?
+Sue thompson
+10
+
+Music: 1960s: Artist/Band: Paperback Writer?
+The beatles
+10
+
+Music: 1960s: Artist/Band: Part Time Love?
+Little johnny taylor
+10
+
+Music: 1960s: Artist/Band: Party Lights?
+Claudine clark
+10
+
+Music: 1960s: Artist/Band: Pata Pata?
+Miriam makeba
+10
+
+Music: 1960s: Artist/Band: Patches?
+Dickey lee
+10
+
+Music: 1960s: Artist/Band: Pay You Back with Interest?
+The hollies
+10
+
+Music: 1960s: Artist/Band: Paying the Cost to Be the Boss?
+B.b. king
+10
+
+Music: 1960s: Artist/Band: Peaches 'N' Cream?
+The ikettes
+10
+
+Music: 1960s: Artist/Band: Peanut Butter?
+The marathons
+10
+
+Music: 1960s: Artist/Band: Penetration?
+The pyramids
+10
+
+Music: 1960s: Artist/Band: Pennies from Heaven?
+The skyliners
+10
+
+Music: 1960s: Artist/Band: Penny Lane?
+The beatles
+10
+
+Music: 1960s: Artist/Band: People Are Strange?
+The doors
+10
+
+Music: 1960s: Artist/Band: People Get Ready?
+The impressions
+10
+
+Music: 1960s: Artist/Band: People Got To Be Free?
+The rascals
+10
+
+Music: 1960s: Artist/Band: People Say?
+The dixie cups
+10
+
+Music: 1960s: Artist/Band: Pepe?
+Duane eddy
+10
+
+Music: 1960s: Artist/Band: Pepino the Italian Mouse?
+Lou monte
+10
+
+Music: 1960s: Artist/Band: Peppermint Twist (Part?
+Joey dee & the starlighters
+10
+
+Music: 1960s: Artist/Band: Percolator (Twist)?
+Billy joe & the checkmates
+10
+
+Music: 1960s: Artist/Band: Perfidia?
+The ventures
+10
+
+Music: 1960s: Artist/Band: Peter Gunn?
+Duane eddy
+10
+
+Music: 1960s: Artist/Band: Pickin' Wild Mountain Berries?
+Peggy scott & jo jo benson
+10
+
+Music: 1960s: Artist/Band: Pictures of Matchstick Men?
+The status quo
+10
+
+Music: 1960s: Artist/Band: Pinball Wizard?
+The who
+10
+
+Music: 1960s: Artist/Band: Pineapple Princess?
+Annette with the Afterbeats
+10
+
+Music: 1960s: Artist/Band: Pipeline?
+Chantays
+10
+
+Music: 1960s: Artist/Band: Pleasant Valley Sunday?
+The monkees
+10
+
+Music: 1960s: Artist/Band: Please Don't Ask About Barbara?
+Bobby vee
+10
+
+Music: 1960s: Artist/Band: Please Don't Go?
+Ral donner
+10
+
+Music: 1960s: Artist/Band: Please Don't Talk to the Lifeguard?
+Diane ray
+10
+
+Music: 1960s: Artist/Band: Please Help Me, I'm Falling?
+Hank Locklin
+10
+
+Music: 1960s: Artist/Band: Please Mr. Postman?
+The marvelettes
+10
+
+Music: 1960s: Artist/Band: Please Please Me?
+The beatles
+10
+
+Music: 1960s: Artist/Band: Please Return Your Love to Me?
+The temptations
+10
+
+Music: 1960s: Artist/Band: Please Stay?
+The drifters
+10
+
+Music: 1960s: Artist/Band: Pocketful of Miracles?
+Frank sinatra
+10
+
+Music: 1960s: Artist/Band: Poetry In Motion?
+Johnny tillotson
+10
+
+Music: 1960s: Artist/Band: Point It Out?
+Smokey robinson & the miracles
+10
+
+Music: 1960s: Artist/Band: Point Of No Return?
+Gene mcdaniels
+10
+
+Music: 1960s: Artist/Band: Polk Salad Annie?
+Tony joe white
+10
+
+Music: 1960s: Artist/Band: Pony Time?
+Chubby checker
+10
+
+Music: 1960s: Artist/Band: Poor Fool?
+Ike & tina turner
+10
+
+Music: 1960s: Artist/Band: Poor Little Rich Girl?
+Steve lawrence
+10
+
+Music: 1960s: Artist/Band: Poor Side of Town?
+Johnny rivers
+10
+
+Music: 1960s: Artist/Band: Pop Pop Pop-Pie?
+The sherrys
+10
+
+Music: 1960s: Artist/Band: Popeye (The Hitchhiker)?
+Chubby checker
+10
+
+Music: 1960s: Artist/Band: Popsicle?
+Jan & dean
+10
+
+Music: 1960s: Artist/Band: Popsicles and Icicles?
+The murmaids
+10
+
+Music: 1960s: Artist/Band: Positively 4th Street?
+Bob dylan
+10
+
+Music: 1960s: Artist/Band: Pretty Ballerina?
+The left banke
+10
+
+Music: 1960s: Artist/Band: Pretty Flamingo?
+Manfred mann
+10
+
+Music: 1960s: Artist/Band: Pretty Little Angel Eyes?
+Curtis lee
+10
+
+Music: 1960s: Artist/Band: Pretty Little Baby?
+Marvin gaye
+10
+
+Music: 1960s: Artist/Band: Pretty Paper?
+Roy orbison
+10
+
+Music: 1960s: Artist/Band: Pride and Joy?
+Marvin gaye
+10
+
+Music: 1960s: Artist/Band: Princess In Rags?
+Gene pitney
+10
+
+Music: 1960s: Artist/Band: Princess?
+Frank gari
+10
+
+Music: 1960s: Artist/Band: Prisoner Of Love?
+James brown & the famous flames
+10
+
+Music: 1960s: Artist/Band: Promises, Promises?
+Dionne warwick
+10
+
+Music: 1960s: Artist/Band: Proud Mary?
+Creedence clearwater revival
+10
+
+Music: 1960s: Artist/Band: Proud?
+Johnny crawford
+10
+
+Music: 1960s: Artist/Band: Psychotic Reaction?
+Count five
+10
+
+Music: 1960s: Artist/Band: Pucker Up Buttercup?
+Jr. walker & the all-stars
+10
+
+Music: 1960s: Artist/Band: Puff the Magic Dragon?
+Peter, paul & mary
+10
+
+Music: 1960s: Artist/Band: Punish Her?
+Bobby vee
+10
+
+Music: 1960s: Artist/Band: Puppet on a String?
+Elvis presley
+10
+
+Music: 1960s: Artist/Band: Pushin' Too Hard?
+The seeds
+10
+
+Music: 1960s: Artist/Band: Pushover?
+Etta james
+10
+
+Music: 1960s: Artist/Band: Put a Little Love in Your Heart?
+Jackie deshannon
+10
+
+Music: 1960s: Artist/Band: Queen of the House?
+Jody miller
+10
+
+Music: 1960s: Artist/Band: Quentin's Theme?
+Charles randolph grean sounde
+10
+
+Music: 1960s: Artist/Band: Question?
+Lloyd price
+10
+
+Music: 1960s: Artist/Band: Quick Joey Small (Run, Joey, Run)?
+Kasenetz-katz singing orchestral circus
+10
+
+Music: 1960s: Artist/Band: Quicksand?
+Martha & the vandellas
+10
+
+Music: 1960s: Artist/Band: Quiet Night Of Quiet Stars (Corcovado)?
+Andy williams
+10
+
+Music: 1960s: Artist/Band: Quite a Party?
+The fireballs
+10
+
+Music: 1960s: Artist/Band: Rag Doll?
+The 4 seasons
+10
+
+Music: 1960s: Artist/Band: Rain on the Roof?
+The lovin' spoonful
+10
+
+Music: 1960s: Artist/Band: Rain Rain Go Away?
+Bobby vinton
+10
+
+Music: 1960s: Artist/Band: Rain?
+The beatles
+10
+
+Music: 1960s: Artist/Band: Raindrops?
+Dee clark
+10
+
+Music: 1960s: Artist/Band: Rainin' in My Heart?
+Slim harpo
+10
+
+Music: 1960s: Artist/Band: Rainy Day Women #12 & 35?
+Bob dylan
+10
+
+Music: 1960s: Artist/Band: Ram-Bunk-Shush?
+The ventures
+10
+
+Music: 1960s: Artist/Band: Rama Lama Ding Dong?
+The edsels
+10
+
+Music: 1960s: Artist/Band: Ramblin' Gamblin' Man?
+Bob seger system
+10
+
+Music: 1960s: Artist/Band: Reach Out For Me?
+Dionne warwick
+10
+
+Music: 1960s: Artist/Band: Reach Out I'll Be There?
+Four tops
+10
+
+Music: 1960s: Artist/Band: Reach Out of the Darkness?
+Friend & lover
+10
+
+Music: 1960s: Artist/Band: Ready or Not Here I Come (Can't Hide from Love)?
+The delfonics
+10
+
+Music: 1960s: Artist/Band: Reconsider Me?
+Johnny adams
+10
+
+Music: 1960s: Artist/Band: Recovery?
+Fontella bass
+10
+
+Music: 1960s: Artist/Band: Red Rubber Ball?
+The cyrkle
+10
+
+Music: 1960s: Artist/Band: Reelin' & Rockin'?
+The dave clark five
+10
+
+Music: 1960s: Artist/Band: Reflections?
+Diana ross & the supremes
+10
+
+Music: 1960s: Artist/Band: Release Me (and Let Me Love Again)?
+Engelbert humperdinck
+10
+
+Music: 1960s: Artist/Band: Release Me?
+Esther phillips
+10
+
+Music: 1960s: Artist/Band: Remember (Walkin' in the Sand)?
+The shangri-las
+10
+
+Music: 1960s: Artist/Band: Remember Diana?
+Paul anka
+10
+
+Music: 1960s: Artist/Band: Remember Me?
+Rita pavone
+10
+
+Music: 1960s: Artist/Band: Remember Then?
+The earls
+10
+
+Music: 1960s: Artist/Band: Rescue Me?
+Fontella bass
+10
+
+Music: 1960s: Artist/Band: Respectable?
+The outsiders
+10
+
+Music: 1960s: Artist/Band: Return to Sender?
+Elvis presley
+10
+
+Music: 1960s: Artist/Band: Revenge?
+Brook benton
+10
+
+Music: 1960s: Artist/Band: Reverend Mr. Black?
+The kingston trio
+10
+
+Music: 1960s: Artist/Band: Revolution?
+The beatles
+10
+
+Music: 1960s: Artist/Band: Rhapsody in the Rain?
+Lou christie
+10
+
+Music: 1960s: Artist/Band: Rhythm of the Rain?
+The cascades
+10
+
+Music: 1960s: Artist/Band: Rhythm?
+Major lance
+10
+
+Music: 1960s: Artist/Band: Ride Away?
+Roy orbison
+10
+
+Music: 1960s: Artist/Band: Ride the Wild Surf?
+Jan & dean
+10
+
+Music: 1960s: Artist/Band: Ride Your Pony?
+Lee dorsey
+10
+
+Music: 1960s: Artist/Band: Ride, Ride, Ride?
+Brenda lee
+10
+
+Music: 1960s: Artist/Band: Ride!?
+Dee dee sharp
+10
+
+Music: 1960s: Artist/Band: Ring Dang Doo?
+Sam the sham & the pharaohs
+10
+
+Music: 1960s: Artist/Band: Ring of Fire?
+Johnny cash
+10
+
+Music: 1960s: Artist/Band: Ringo?
+Lorne greene
+10
+
+Music: 1960s: Artist/Band: Rip Van Winkle?
+The devotions
+10
+
+Music: 1960s: Artist/Band: Rock Me Baby?
+B.b. king
+10
+
+Music: 1960s: Artist/Band: Rock Me?
+Steppenwolf
+10
+
+Music: 1960s: Artist/Band: Rock-a-Bye Your Baby With A Dixie Melody?
+Aretha franklin
+10
+
+Music: 1960s: Artist/Band: Rockin' Around the Christmas Tree?
+Brenda lee
+10
+
+Music: 1960s: Artist/Band: Rockin' Little Angel?
+Ray smith
+10
+
+Music: 1960s: Artist/Band: Ronnie?
+The 4 seasons
+10
+
+Music: 1960s: Artist/Band: Roses Are Red (My Love)?
+Bobby vinton
+10
+
+Music: 1960s: Artist/Band: Route 66 Theme?
+Nelson riddle & his orchestra
+10
+
+Music: 1960s: Artist/Band: Rubber Ball?
+Bobby vee
+10
+
+Music: 1960s: Artist/Band: Ruben James?
+Kenny rogers & the first edition
+10
+
+Music: 1960s: Artist/Band: Ruby Ann?
+Marty robbins
+10
+
+Music: 1960s: Artist/Band: Ruby Baby?
+Dion
+10
+
+Music: 1960s: Artist/Band: Ruby Duby Du?
+Tobin mathews & co
+10
+
+Music: 1960s: Artist/Band: Ruby Tuesday?
+The rolling stones
+10
+
+Music: 1960s: Artist/Band: Ruby, Don't Take Your Love to Town?
+Kenny rogers & the first edition
+10
+
+Music: 1960s: Artist/Band: Ruby?
+Ray charles
+10
+
+Music: 1960s: Artist/Band: Rudolph the Red-Nosed Reindeer?
+The Chipmunks
+10
+
+Music: 1960s: Artist/Band: Rumors?
+Johnny crawford
+10
+
+Music: 1960s: Artist/Band: Run Away Child, Running Wild?
+The temptations
+10
+
+Music: 1960s: Artist/Band: Run Baby Run (Back Into My Arms)?
+The newbeats
+10
+
+Music: 1960s: Artist/Band: Run Red Run?
+The coasters
+10
+
+Music: 1960s: Artist/Band: Run Samson Run?
+Neil sedaka
+10
+
+Music: 1960s: Artist/Band: Run To Him?
+Bobby vee
+10
+
+Music: 1960s: Artist/Band: Run, Run, Look and See?
+Brian hyland
+10
+
+Music: 1960s: Artist/Band: Runaround Sue?
+Dion
+10
+
+Music: 1960s: Artist/Band: Runaway?
+Del shannon
+10
+
+Music: 1960s: Artist/Band: Running Scared?
+Roy orbison
+10
+
+Music: 1960s: Artist/Band: Rusty Bells?
+Brenda lee
+10
+
+Music: 1960s: Artist/Band: S.Y.S.L.J.F.M. (The Letter Song)?
+Joe tex
+10
+
+Music: 1960s: Artist/Band: Sacred?
+The castells
+10
+
+Music: 1960s: Artist/Band: Sad Mood?
+Sam cooke
+10
+
+Music: 1960s: Artist/Band: Sad Movies (Make Me Cry)?
+Sue thompson
+10
+
+Music: 1960s: Artist/Band: Sad, Sad Girl?
+Barbara mason
+10
+
+Music: 1960s: Artist/Band: Sailor (Your Home is the Sea)?
+Lolita
+10
+
+Music: 1960s: Artist/Band: Sally, Go 'Round the Roses?
+The jaynetts
+10
+
+Music: 1960s: Artist/Band: San Antonio Rose?
+Floyd cramer
+10
+
+Music: 1960s: Artist/Band: San Franciscan Nights?
+Eric burdon & the animals
+10
+
+Music: 1960s: Artist/Band: San Francisco (Be Sure to Wear Flowers in Your Hair)?
+Scott mckenzie
+10
+
+Music: 1960s: Artist/Band: Santa Claus Is Coming To Town?
+The 4 seasons
+10
+
+Music: 1960s: Artist/Band: Satin Pillows?
+Bobby vinton
+10
+
+Music: 1960s: Artist/Band: Satisfaction?
+Otis redding
+10
+
+Music: 1960s: Artist/Band: Saturday Night at the Movies?
+The drifters
+10
+
+Music: 1960s: Artist/Band: Saturday Night?
+The new christy minstrels
+10
+
+Music: 1960s: Artist/Band: Save It for Me?
+The 4 seasons
+10
+
+Music: 1960s: Artist/Band: Save the Last Dance For Me?
+The Drifters
+10
+
+Music: 1960s: Artist/Band: Save Your Heart for Me?
+Gary lewis & the playboys
+10
+
+Music: 1960s: Artist/Band: Saved?
+Lavern baker
+10
+
+Music: 1960s: Artist/Band: Say I Am (What I Am)?
+Tommy james & the shondells
+10
+
+Music: 1960s: Artist/Band: Say It Loud, i'm black and i'm proud?
+James brown
+10
+
+Music: 1960s: Artist/Band: Say Something Funny?
+Patty duke
+10
+
+Music: 1960s: Artist/Band: Say You?
+Ronnie dove
+10
+
+Music: 1960s: Artist/Band: Scarborough Fair (Canticle)?
+Simon & garfunkel
+10
+
+Music: 1960s: Artist/Band: Sea of Heartbreak?
+Don gibson
+10
+
+Music: 1960s: Artist/Band: Searching for My Love?
+Bobby moore & the rhythm aces
+10
+
+Music: 1960s: Artist/Band: Seattle?
+Perry como
+10
+
+Music: 1960s: Artist/Band: Second Hand Love?
+Connie francis
+10
+
+Music: 1960s: Artist/Band: Second-Hand Rose?
+Barbra streisand
+10
+
+Music: 1960s: Artist/Band: Secret Agent Man?
+Johnny rivers
+10
+
+Music: 1960s: Artist/Band: Secret Love?
+Billy stewart
+10
+
+Music: 1960s: Artist/Band: Security?
+Etta james
+10
+
+Music: 1960s: Artist/Band: See Saw?
+Aretha franklin
+10
+
+Music: 1960s: Artist/Band: See the Funny Little Clown?
+Bobby goldsboro
+10
+
+Music: 1960s: Artist/Band: See You in September?
+The happenings
+10
+
+Music: 1960s: Artist/Band: See?
+The rascals
+10
+
+Music: 1960s: Artist/Band: Selfish One?
+Jackie ross
+10
+
+Music: 1960s: Artist/Band: Send Me Some Lovin'?
+Sam cooke
+10
+
+Music: 1960s: Artist/Band: September In the Rain?
+Dinah Washington
+10
+
+Music: 1960s: Artist/Band: Set Me Free?
+The kinks
+10
+
+Music: 1960s: Artist/Band: Seventh Son?
+Johnny rivers
+10
+
+Music: 1960s: Artist/Band: Sha La La?
+Manfred mann
+10
+
+Music: 1960s: Artist/Band: Shadrack?
+Brook benton
+10
+
+Music: 1960s: Artist/Band: Shaggy Dog?
+Mickey lee lane
+10
+
+Music: 1960s: Artist/Band: Shake a Tail Feather?
+James & bobby purify
+10
+
+Music: 1960s: Artist/Band: Shake and Fingerpop?
+Jr. walker & the all-stars
+10
+
+Music: 1960s: Artist/Band: Shake Me, Wake Me (When It's Over)?
+Four tops
+10
+
+Music: 1960s: Artist/Band: Shake Shake Shake?
+Jackie wilson
+10
+
+Music: 1960s: Artist/Band: Shake, Rattle and Roll?
+Arthur conley
+10
+
+Music: 1960s: Artist/Band: Shake?
+Sam cooke
+10
+
+Music: 1960s: Artist/Band: Shakin' All Over?
+Chad allan & the expressions (the guess who)
+10
+
+Music: 1960s: Artist/Band: Shame on Me?
+Bobby bare
+10
+
+Music: 1960s: Artist/Band: Shame, Shame?
+Magic lanterns
+10
+
+Music: 1960s: Artist/Band: Shape of Things to Come?
+Max frost & the troopers
+10
+
+Music: 1960s: Artist/Band: Shapes of Things?
+The yardbirds
+10
+
+Music: 1960s: Artist/Band: Share Your Love With Me?
+Aretha franklin
+10
+
+Music: 1960s: Artist/Band: Sharing You?
+Bobby vee
+10
+
+Music: 1960s: Artist/Band: She Belongs to Me?
+Rick nelson & the stone canyon band
+10
+
+Music: 1960s: Artist/Band: She Can't Find Her Keys?
+Paul petersen
+10
+
+Music: 1960s: Artist/Band: She Cried?
+Jay & the americans
+10
+
+Music: 1960s: Artist/Band: She Is Still a Mystery?
+The lovin' spoonful
+10
+
+Music: 1960s: Artist/Band: She Loves You?
+The beatles
+10
+
+Music: 1960s: Artist/Band: She Understands Me?
+Johnny tillotson
+10
+
+Music: 1960s: Artist/Band: She'd Rather Be with Me?
+The turtles
+10
+
+Music: 1960s: Artist/Band: She's a Fool?
+Lesley gore
+10
+
+Music: 1960s: Artist/Band: She's a Heartbreaker?
+Gene pitney
+10
+
+Music: 1960s: Artist/Band: She's a Rainbow?
+The rolling stones
+10
+
+Music: 1960s: Artist/Band: She's a Woman?
+The beatles
+10
+
+Music: 1960s: Artist/Band: She's About A Mover?
+Sir douglas quintet
+10
+
+Music: 1960s: Artist/Band: She's Everything (I Wanted You to Be)?
+Ral donner
+10
+
+Music: 1960s: Artist/Band: She's Got You?
+Patsy cline
+10
+
+Music: 1960s: Artist/Band: She's Just My Style?
+Gary lewis & the playboys
+10
+
+Music: 1960s: Artist/Band: She's Lookin' Good?
+Wilson pickett
+10
+
+Music: 1960s: Artist/Band: She's My Girl?
+The turtles
+10
+
+Music: 1960s: Artist/Band: She's Not There?
+The zombies
+10
+
+Music: 1960s: Artist/Band: She's Not You?
+Elvis presley
+10
+
+Music: 1960s: Artist/Band: She's the One?
+The chartbusters
+10
+
+Music: 1960s: Artist/Band: She?
+Tommy james & the shondells
+10
+
+Music: 1960s: Artist/Band: Sheila?
+Tommy roe
+10
+
+Music: 1960s: Artist/Band: Sherry?
+The 4 seasons
+10
+
+Music: 1960s: Artist/Band: Shoo-Be-Doo-Be-Doo-Da-Day?
+Stevie wonder
+10
+
+Music: 1960s: Artist/Band: Shoot 'Em Up, Baby?
+Andy kim
+10
+
+Music: 1960s: Artist/Band: Shop Around?
+The miracles
+10
+
+Music: 1960s: Artist/Band: Shotgun?
+Jr. walker & the all-stars
+10
+
+Music: 1960s: Artist/Band: Shout (Part?
+Joey dee & the starliters
+10
+
+Music: 1960s: Artist/Band: Shout! Shout! (Knock Yourself Out)?
+Ernie maresca
+10
+
+Music: 1960s: Artist/Band: Show Me?
+Joe tex
+10
+
+Music: 1960s: Artist/Band: Shu Rah?
+Fats domino
+10
+
+Music: 1960s: Artist/Band: Shut Down (Part?
+The beach boys
+10
+
+Music: 1960s: Artist/Band: Shutters and Boards?
+Jerry wallace
+10
+
+Music: 1960s: Artist/Band: Sidewalk Surfin'?
+Jan & dean
+10
+
+Music: 1960s: Artist/Band: Silence Is Golden?
+The tremeloes
+10
+
+Music: 1960s: Artist/Band: Silhouettes?
+Herman's hermits
+10
+
+Music: 1960s: Artist/Band: Silver Threads and Golden Needles?
+The springfields
+10
+
+Music: 1960s: Artist/Band: Simon Says?
+1910 fruitgum company
+10
+
+Music: 1960s: Artist/Band: Since I Fell for You?
+Lenny welch
+10
+
+Music: 1960s: Artist/Band: Since I Lost My Baby?
+The temptations
+10
+
+Music: 1960s: Artist/Band: Since You Showed Me How to Be Happy?
+Jackie wilson
+10
+
+Music: 1960s: Artist/Band: Single Girl?
+Sandy posey
+10
+
+Music: 1960s: Artist/Band: Sink the Bismarck?
+Johnny horton
+10
+
+Music: 1960s: Artist/Band: Sit Down, I Think I Love You?
+The mojo men
+10
+
+Music: 1960s: Artist/Band: Sitting in the Park?
+Billy stewart
+10
+
+Music: 1960s: Artist/Band: Six Days On the Road?
+Dave dudley
+10
+
+Music: 1960s: Artist/Band: Six O'Clock?
+The lovin' spoonful
+10
+
+Music: 1960s: Artist/Band: Sixteen Reasons?
+Connie stevens
+10
+
+Music: 1960s: Artist/Band: Skinny Legs and All?
+Joe tex
+10
+
+Music: 1960s: Artist/Band: Skip a Rope?
+Henson cargill
+10
+
+Music: 1960s: Artist/Band: Sky Pilot (Part?
+Eric burdon & the animals
+10
+
+Music: 1960s: Artist/Band: Slaughter on Tenth Avenue?
+The ventures
+10
+
+Music: 1960s: Artist/Band: Sleep?
+Little willie john
+10
+
+Music: 1960s: Artist/Band: Slip Away?
+Clarence carter
+10
+
+Music: 1960s: Artist/Band: Sloop John B?
+The beach boys
+10
+
+Music: 1960s: Artist/Band: Slow Down?
+The beatles
+10
+
+Music: 1960s: Artist/Band: Slow Twistin'?
+Chubby checker
+10
+
+Music: 1960s: Artist/Band: Small Sad Sam?
+Phil mclean
+10
+
+Music: 1960s: Artist/Band: Smile A Little Smile For Me?
+The flying machine
+10
+
+Music: 1960s: Artist/Band: Smokie (Part?
+Bill black's combo
+10
+
+Music: 1960s: Artist/Band: Smoky Places?
+Corsairs
+10
+
+Music: 1960s: Artist/Band: Snap Your Fingers?
+Joe henderson
+10
+
+Music: 1960s: Artist/Band: Snatching It Back?
+Clarence carter
+10
+
+Music: 1960s: Artist/Band: Snoopy vs. the Red Baron?
+The royal guardsmen
+10
+
+Music: 1960s: Artist/Band: So Good Together?
+Andy kim
+10
+
+Music: 1960s: Artist/Band: So I Can Love You?
+The emotions
+10
+
+Music: 1960s: Artist/Band: So Long Baby?
+Del shannon
+10
+
+Music: 1960s: Artist/Band: So Much in Love?
+The tymes
+10
+
+Music: 1960s: Artist/Band: So Sad (To Watch Good Love Go Bad)?
+The everly brothers
+10
+
+Music: 1960s: Artist/Band: So This Is Love?
+The castells
+10
+
+Music: 1960s: Artist/Band: So You Want to Be a Rock & Roll Star?
+The byrds
+10
+
+Music: 1960s: Artist/Band: Society's Child (Baby I've Been Thinking)?
+Janis ian
+10
+
+Music: 1960s: Artist/Band: Sock It To Me baby!?
+Mitch ryder & the detroit wheels
+10
+
+Music: 1960s: Artist/Band: Softly As I Leave You?
+Matt monro
+10
+
+Music: 1960s: Artist/Band: Softly, As I Leave You?
+Frank sinatra
+10
+
+Music: 1960s: Artist/Band: Soldier Boy?
+The shirelles
+10
+
+Music: 1960s: Artist/Band: Some Day We're Gonna Love Again?
+The searchers
+10
+
+Music: 1960s: Artist/Band: Some Enchanted Evening?
+Jay & the americans
+10
+
+Music: 1960s: Artist/Band: Some Kind of Wonderful?
+The drifters
+10
+
+Music: 1960s: Artist/Band: Some Things You Never Get Used To?
+Diana ross & the supremes
+10
+
+Music: 1960s: Artist/Band: Some Velvet Morning?
+Nancy sinatra & lee hazlewood
+10
+
+Music: 1960s: Artist/Band: Somebody to Love?
+Jefferson airplane
+10
+
+Music: 1960s: Artist/Band: Someday We'll Be Together?
+Diana ross & the supremes
+10
+
+Music: 1960s: Artist/Band: Somethin' Stupid?
+Nancy & frank sinatra
+10
+
+Music: 1960s: Artist/Band: Something About You?
+Four tops
+10
+
+Music: 1960s: Artist/Band: Something in the Air?
+Thunderclap newman
+10
+
+Music: 1960s: Artist/Band: Something's Got a Hold on Me?
+Etta james
+10
+
+Music: 1960s: Artist/Band: Something?
+The beatles
+10
+
+Music: 1960s: Artist/Band: Somewhere In Your Heart?
+Frank sinatra
+10
+
+Music: 1960s: Artist/Band: Somewhere There's A Someone?
+Dean martin
+10
+
+Music: 1960s: Artist/Band: Somewhere, My Love?
+Ray conniff & the singers
+10
+
+Music: 1960s: Artist/Band: Son-of-a-Preacher Man?
+Dusty springfield
+10
+
+Music: 1960s: Artist/Band: Sophisticated Cissy?
+The meters
+10
+
+Music: 1960s: Artist/Band: Soul Deep?
+The box tops
+10
+
+Music: 1960s: Artist/Band: Soul Finger?
+Bar-kays
+10
+
+Music: 1960s: Artist/Band: Soul Man?
+Sam & dave
+10
+
+Music: 1960s: Artist/Band: Soul Serenade?
+Willie mitchell
+10
+
+Music: 1960s: Artist/Band: Soul Twist?
+King curtis & the noble knights
+10
+
+Music: 1960s: Artist/Band: Soul-Limbo?
+Booker t. & the mg's
+10
+
+Music: 1960s: Artist/Band: Soulful Strut?
+Young-holt unlimited
+10
+
+Music: 1960s: Artist/Band: Soulshake?
+Peggy scott & jo jo benson
+10
+
+Music: 1960s: Artist/Band: Sound of Love?
+The five americans
+10
+
+Music: 1960s: Artist/Band: South Street?
+The orlons
+10
+
+Music: 1960s: Artist/Band: Southtown, U.S.A?
+The dixiebelles with cornbread & jerry
+10
+
+Music: 1960s: Artist/Band: Spanish Eyes?
+Al martino
+10
+
+Music: 1960s: Artist/Band: Spanish Flea?
+Herb alpert & the tijuana brass
+10
+
+Music: 1960s: Artist/Band: Spanish Harlem?
+Ben e. king
+10
+
+Music: 1960s: Artist/Band: Spanish Lace?
+Gene mcdaniels
+10
+
+Music: 1960s: Artist/Band: Special Delivery?
+1910 fruitgum company
+10
+
+Music: 1960s: Artist/Band: Special Occasion?
+Smokey robinson & the miracles
+10
+
+Music: 1960s: Artist/Band: Speedy Gonzales?
+Pat boone
+10
+
+Music: 1960s: Artist/Band: Spinning Wheel?
+Blood, sweat & tears
+10
+
+Music: 1960s: Artist/Band: Spinout?
+Elvis presley
+10
+
+Music: 1960s: Artist/Band: Spooky?
+Classics iv
+10
+
+Music: 1960s: Artist/Band: Stag-O-Lee?
+Wilson pickett
+10
+
+Music: 1960s: Artist/Band: Stairway to Heaven?
+Neil sedaka
+10
+
+Music: 1960s: Artist/Band: Stand By Your Man?
+Tammy wynette
+10
+
+Music: 1960s: Artist/Band: Stand!?
+Sly & the family stone
+10
+
+Music: 1960s: Artist/Band: Standing in the Shadows of Love?
+Four tops
+10
+
+Music: 1960s: Artist/Band: Starbright?
+Johnny mathis
+10
+
+Music: 1960s: Artist/Band: Stardust?
+Nino tempo & april stevens
+10
+
+Music: 1960s: Artist/Band: Stay Awhile?
+Dusty springfield
+10
+
+Music: 1960s: Artist/Band: Stay in My Corner?
+The dells
+10
+
+Music: 1960s: Artist/Band: Stayin' In?
+Bobby vee
+10
+
+Music: 1960s: Artist/Band: Steal Away?
+Jimmy hughes
+10
+
+Music: 1960s: Artist/Band: Step by Step?
+The crests
+10
+
+Music: 1960s: Artist/Band: Step Out of Your Mind?
+The American breed
+10
+
+Music: 1960s: Artist/Band: Stewball?
+Peter, paul & mary
+10
+
+Music: 1960s: Artist/Band: Stick Shift?
+Duals
+10
+
+Music: 1960s: Artist/Band: Sticks and Stones?
+Ray charles
+10
+
+Music: 1960s: Artist/Band: Still?
+Bill anderson
+10
+
+Music: 1960s: Artist/Band: Stoned Soul Picnic?
+The 5th dimension
+10
+
+Music: 1960s: Artist/Band: Stop and Think it Over?
+Dale & grace
+10
+
+Music: 1960s: Artist/Band: Stop Stop Stop?
+The hollies
+10
+
+Music: 1960s: Artist/Band: Stop the Music?
+The shirelles
+10
+
+Music: 1960s: Artist/Band: Stop the Wedding?
+Etta james
+10
+
+Music: 1960s: Artist/Band: Stop! in the Name of Love?
+The supremes
+10
+
+Music: 1960s: Artist/Band: Stranger In Town?
+Del shannon
+10
+
+Music: 1960s: Artist/Band: Strangers In the Night?
+Frank sinatra
+10
+
+Music: 1960s: Artist/Band: Strawberry Fields Forever?
+The beatles
+10
+
+Music: 1960s: Artist/Band: Strawberry Shortcake?
+Jay & the techniques
+10
+
+Music: 1960s: Artist/Band: Stuck on You?
+Elvis presley
+10
+
+Music: 1960s: Artist/Band: Subterranean Homesick Blues?
+Bob dylan
+10
+
+Music: 1960s: Artist/Band: Such a Night?
+Elvis presley
+10
+
+Music: 1960s: Artist/Band: Sugar Dumpling?
+Sam cooke
+10
+
+Music: 1960s: Artist/Band: Sugar Lips?
+Al hirt
+10
+
+Music: 1960s: Artist/Band: Sugar On Sunday?
+The clique
+10
+
+Music: 1960s: Artist/Band: Sugar Shack?
+Jimmy gilmer & the fireballs
+10
+
+Music: 1960s: Artist/Band: Sugar Town?
+Nancy sinatra
+10
+
+Music: 1960s: Artist/Band: Sugar, Sugar?
+The archies
+10
+
+Music: 1960s: Artist/Band: Sukiyaki?
+Kyu sakamoto
+10
+
+Music: 1960s: Artist/Band: Summer in the City?
+The lovin' spoonful
+10
+
+Music: 1960s: Artist/Band: Summer Nights?
+Marianne faithfull
+10
+
+Music: 1960s: Artist/Band: Summer Rain?
+Johnny rivers
+10
+
+Music: 1960s: Artist/Band: Summer Samba (So Nice)?
+Walter wanderley
+10
+
+Music: 1960s: Artist/Band: Summer Set?
+Monty kelly & his Orchestra
+10
+
+Music: 1960s: Artist/Band: Summer Wind?
+Frank sinatra
+10
+
+Music: 1960s: Artist/Band: Summer's Gone?
+Paul anka
+10
+
+Music: 1960s: Artist/Band: Summertime Blues?
+Blue cheer
+10
+
+Music: 1960s: Artist/Band: Summertime?
+Billy stewart
+10
+
+Music: 1960s: Artist/Band: Sunday and Me?
+Jay & the americans
+10
+
+Music: 1960s: Artist/Band: Sunday for Tea?
+Peter & gordon
+10
+
+Music: 1960s: Artist/Band: Sunday Will Never Be the Same?
+Spanky & our gang
+10
+
+Music: 1960s: Artist/Band: Sunny Afternoon?
+The kinks
+10
+
+Music: 1960s: Artist/Band: Sunny?
+Bobby hebb
+10
+
+Music: 1960s: Artist/Band: Sunshine Girl?
+The parade
+10
+
+Music: 1960s: Artist/Band: Sunshine of Your Love?
+Cream
+10
+
+Music: 1960s: Artist/Band: Sunshine Superman?
+Donovan
+10
+
+Music: 1960s: Artist/Band: Sunshine, Lollipops and Rainbows?
+Lesley gore
+10
+
+Music: 1960s: Artist/Band: Sure Gonna Miss Her?
+Gary lewis & the playboys
+10
+
+Music: 1960s: Artist/Band: Surf City?
+Jan & dean
+10
+
+Music: 1960s: Artist/Band: Surfer Girl?
+The beach boys
+10
+
+Music: 1960s: Artist/Band: Surfer's Stomp?
+The marketts
+10
+
+Music: 1960s: Artist/Band: Surfin' Bird?
+The trashmen
+10
+
+Music: 1960s: Artist/Band: Surfin' Safari?
+The beach boys
+10
+
+Music: 1960s: Artist/Band: Surfin' U.S.A?
+The beach boys
+10
+
+Music: 1960s: Artist/Band: Surrender?
+Elvis presley
+10
+
+Music: 1960s: Artist/Band: Susan?
+The buckinghams
+10
+
+Music: 1960s: Artist/Band: Susie Darlin'?
+Tommy roe
+10
+
+Music: 1960s: Artist/Band: Suspicion?
+Terry stafford
+10
+
+Music: 1960s: Artist/Band: Suspicious Minds?
+Elvis presley
+10
+
+Music: 1960s: Artist/Band: Suzie-Q (Part?
+Creedence clearwater revival
+10
+
+Music: 1960s: Artist/Band: Sway?
+Bobby rydell
+10
+
+Music: 1960s: Artist/Band: Sweet Blindness?
+The 5th dimension
+10
+
+Music: 1960s: Artist/Band: Sweet Caroline (Good Times Never Seemed So Good)?
+Neil diamond
+10
+
+Music: 1960s: Artist/Band: Sweet Cherry Wine?
+Tommy james & the shondells
+10
+
+Music: 1960s: Artist/Band: Sweet Cream Ladies, Forward March?
+The box tops
+10
+
+Music: 1960s: Artist/Band: Sweet Dreams?
+Tommy mclain
+10
+
+Music: 1960s: Artist/Band: Sweet Inspiration?
+The sweet inspirations
+10
+
+Music: 1960s: Artist/Band: Sweet Nothin's?
+Brenda lee
+10
+
+Music: 1960s: Artist/Band: Sweet Pea?
+Tommy roe
+10
+
+Music: 1960s: Artist/Band: Sweet Soul Music?
+Arthur conley
+10
+
+Music: 1960s: Artist/Band: Sweet Talkin' Guy?
+The chiffons
+10
+
+Music: 1960s: Artist/Band: Sweet William?
+Millie small
+10
+
+Music: 1960s: Artist/Band: Sweets For My Sweet?
+The drifters
+10
+
+Music: 1960s: Artist/Band: Swingin' On A Rainbow?
+Frankie Avalon
+10
+
+Music: 1960s: Artist/Band: Swingin' School?
+Bobby rydell
+10
+
+Music: 1960s: Artist/Band: Swinging On A Star?
+Big dee irwin with little eva
+10
+
+Music: 1960s: Artist/Band: T.L.C. (Tender Love and Care)?
+Jimmie rodgers
+10
+
+Music: 1960s: Artist/Band: Ta Ta?
+Clyde mcphatter
+10
+
+Music: 1960s: Artist/Band: Take A Letter, Maria?
+R.b. greaves
+10
+
+Music: 1960s: Artist/Band: Take Care of Your Homework?
+Johnnie taylor
+10
+
+Music: 1960s: Artist/Band: Take Five?
+Dave brubeck quartet
+10
+
+Music: 1960s: Artist/Band: Take Good Care Of Her?
+Adam wade
+10
+
+Music: 1960s: Artist/Band: Take Me Back?
+Little anthony & the imperials
+10
+
+Music: 1960s: Artist/Band: Take Me For A Little While?
+Vanilla fudge
+10
+
+Music: 1960s: Artist/Band: Take These Chains From My Heart?
+Ray charles
+10
+
+Music: 1960s: Artist/Band: Take Time to Know Her?
+Percy sledge
+10
+
+Music: 1960s: Artist/Band: Talk Back Trembling Lips?
+Johnny tillotson
+10
+
+Music: 1960s: Artist/Band: Talk Talk?
+The music machine
+10
+
+Music: 1960s: Artist/Band: Talk to Me?
+Sunny & the sunglows
+10
+
+Music: 1960s: Artist/Band: Talking About My Baby?
+The impressions
+10
+
+Music: 1960s: Artist/Band: Tapioca Tundra?
+The monkees
+10
+
+Music: 1960s: Artist/Band: Tar and Cement?
+Verdelle smith
+10
+
+Music: 1960s: Artist/Band: Teach Me Tonight?
+George maharis
+10
+
+Music: 1960s: Artist/Band: Tears and Roses?
+Al martino
+10
+
+Music: 1960s: Artist/Band: Teddy?
+Connie francis
+10
+
+Music: 1960s: Artist/Band: Teen Age Idol?
+Rick nelson
+10
+
+Music: 1960s: Artist/Band: Teen Angel?
+Mark dinning
+10
+
+Music: 1960s: Artist/Band: Tell Her No?
+The zombies
+10
+
+Music: 1960s: Artist/Band: Tell Him?
+The exciters
+10
+
+Music: 1960s: Artist/Band: Tell It Like It Is?
+Aaron neville
+10
+
+Music: 1960s: Artist/Band: Tell It on the Mountain?
+Peter, paul & mary
+10
+
+Music: 1960s: Artist/Band: Tell It to the Rain?
+The 4 seasons
+10
+
+Music: 1960s: Artist/Band: Tell Laura I Love Her?
+Ray peterson
+10
+
+Music: 1960s: Artist/Band: Tell Mama?
+Etta james
+10
+
+Music: 1960s: Artist/Band: Tell Me (You're Coming Back)?
+The rolling stones
+10
+
+Music: 1960s: Artist/Band: Tell Me to My Face?
+Keith
+10
+
+Music: 1960s: Artist/Band: Tell Me?
+Dick & deedee
+10
+
+Music: 1960s: Artist/Band: Telstar?
+The tornadoes
+10
+
+Music: 1960s: Artist/Band: Temptation?
+The everly brothers
+10
+
+Music: 1960s: Artist/Band: Tenderly?
+Bert kaempfert & his orchestra
+10
+
+Music: 1960s: Artist/Band: Testify (I Wanna)?
+Johnnie taylor
+10
+
+Music: 1960s: Artist/Band: Thank You Girl?
+The beatles
+10
+
+Music: 1960s: Artist/Band: That Lucky Old Sun?
+Ray charles
+10
+
+Music: 1960s: Artist/Band: That Old Black Magic?
+Bobby rydell
+10
+
+Music: 1960s: Artist/Band: That Stranger Used to Be My Girl?
+Trade martin
+10
+
+Music: 1960s: Artist/Band: That's All You Gotta Do?
+Brenda lee
+10
+
+Music: 1960s: Artist/Band: That's How Heartaches Are Made?
+Baby Washington
+10
+
+Music: 1960s: Artist/Band: That's It, i quit, i'm movin' on?
+Sam cooke
+10
+
+Music: 1960s: Artist/Band: That's Life?
+Frank sinatra
+10
+
+Music: 1960s: Artist/Band: That's Old Fashioned (That's the Way Love Should Be)?
+The everly brothers
+10
+
+Music: 1960s: Artist/Band: That's the Way Boys Are?
+Lesley gore
+10
+
+Music: 1960s: Artist/Band: That's What Girls Are For?
+Spinners
+10
+
+Music: 1960s: Artist/Band: That's What Love Is Made of?
+The miracles
+10
+
+Music: 1960s: Artist/Band: The (Best Part Of) Breakin' Up?
+The ronettes
+10
+
+Music: 1960s: Artist/Band: The (Lights Went Out in) Massachusetts?
+Bee gees
+10
+
+Music: 1960s: Artist/Band: The (Man Who Shot) Liberty Valance?
+Gene pitney
+10
+
+Music: 1960s: Artist/Band: The 59th Street Bridge Song (Feelin' Groovy)?
+Harpers bizarre
+10
+
+Music: 1960s: Artist/Band: The Alvin Twist?
+The chipmunks & David seville
+10
+
+Music: 1960s: Artist/Band: The April Fools?
+Dionne warwick
+10
+
+Music: 1960s: Artist/Band: The Astronaut (Parts 1 &?
+Jose Jimenez
+10
+
+Music: 1960s: Artist/Band: The Ballad Of Bonnie and Clyde?
+Georgie fame
+10
+
+Music: 1960s: Artist/Band: The Ballad Of Irving?
+Frank gallop
+10
+
+Music: 1960s: Artist/Band: The Ballad Of John and Yoko?
+The beatles
+10
+
+Music: 1960s: Artist/Band: The Ballad of Paladin?
+Duane eddy
+10
+
+Music: 1960s: Artist/Band: The Beat Goes On?
+Sonny & cher
+10
+
+Music: 1960s: Artist/Band: The Beginning Of My End?
+The unifics
+10
+
+Music: 1960s: Artist/Band: The Bilbao Song?
+Andy williams
+10
+
+Music: 1960s: Artist/Band: The Birds and the Bees?
+Jewel akens
+10
+
+Music: 1960s: Artist/Band: The Boll Weevil Song?
+Brook benton
+10
+
+Music: 1960s: Artist/Band: The Bounce?
+The olympics
+10
+
+Music: 1960s: Artist/Band: The Boxer?
+Simon & garfunkel
+10
+
+Music: 1960s: Artist/Band: The Boy from New York City?
+The ad libs
+10
+
+Music: 1960s: Artist/Band: The Boy Next Door?
+The secrets
+10
+
+Music: 1960s: Artist/Band: The Cajun Queen?
+Jimmy dean
+10
+
+Music: 1960s: Artist/Band: The Cat in the Window (The Bird in the Sky)?
+Petula clark
+10
+
+Music: 1960s: Artist/Band: The Cha-Cha-Cha?
+Bobby rydell
+10
+
+Music: 1960s: Artist/Band: The Cheater?
+Bob kuban & the in-men
+10
+
+Music: 1960s: Artist/Band: The Chipmunk Song (Christmas Don't Be Late)?
+The chipmunks & David seville
+10
+
+Music: 1960s: Artist/Band: The Chokin' Kind?
+Joe simon
+10
+
+Music: 1960s: Artist/Band: The Cinnamon Cinder (It's a Very Nice Dance)?
+The pastel six
+10
+
+Music: 1960s: Artist/Band: The Clapping Song (Clap Pat Clap Slap)?
+Shirley ellis
+10
+
+Music: 1960s: Artist/Band: The Composer?
+Diana ross & the supremes
+10
+
+Music: 1960s: Artist/Band: The Continental Walk?
+Hank ballard & The Midnighters
+10
+
+Music: 1960s: Artist/Band: The Crowd?
+Roy orbison
+10
+
+Music: 1960s: Artist/Band: The Dangling Conversation?
+Simon & garfunkel
+10
+
+Music: 1960s: Artist/Band: The Dawn of Correction?
+The spokesmen
+10
+
+Music: 1960s: Artist/Band: The Days of Sand and Shovels?
+Bobby vinton
+10
+
+Music: 1960s: Artist/Band: The Dis-Advantages of You?
+The brass ring
+10
+
+Music: 1960s: Artist/Band: The Door Is Still Open to My Heart?
+Dean martin
+10
+
+Music: 1960s: Artist/Band: The Duck?
+Jackie lee
+10
+
+Music: 1960s: Artist/Band: The End of Our Road?
+Gladys knight & the pips
+10
+
+Music: 1960s: Artist/Band: The End of the World?
+Skeeter davis
+10
+
+Music: 1960s: Artist/Band: The Entertainer?
+Tony clarke
+10
+
+Music: 1960s: Artist/Band: The Eyes Of A New York Woman?
+B.j. thomas
+10
+
+Music: 1960s: Artist/Band: The Fish?
+Bobby rydell
+10
+
+Music: 1960s: Artist/Band: The Fly?
+Chubby checker
+10
+
+Music: 1960s: Artist/Band: The Fool on the Hill?
+Sergio mendes & Brazil '66
+10
+
+Music: 1960s: Artist/Band: The Funky Judge?
+Bull & the matadors
+10
+
+Music: 1960s: Artist/Band: The Girl from Ipanema?
+Stan getz & astrud gilberto
+10
+
+Music: 1960s: Artist/Band: The Girl I Knew Somewhere?
+The monkees
+10
+
+Music: 1960s: Artist/Band: The Good Life?
+Tony bennett
+10
+
+Music: 1960s: Artist/Band: The Good, The Bad, and The Ugly?
+Hugo montenegro & his orchestra
+10
+
+Music: 1960s: Artist/Band: The Grass Is Greener?
+Brenda lee
+10
+
+Music: 1960s: Artist/Band: The Great Airplane Strike?
+Paul revere & the raiders
+10
+
+Music: 1960s: Artist/Band: The Greatest Hurt?
+Jackie wilson
+10
+
+Music: 1960s: Artist/Band: The Gypsy Cried?
+Lou christie
+10
+
+Music: 1960s: Artist/Band: The Hair on My Chinny Chin Chin?
+Sam the sham & the pharaohs
+10
+
+Music: 1960s: Artist/Band: The Happy Song (Dum-Dum)?
+Otis redding
+10
+
+Music: 1960s: Artist/Band: The Hoochi Coochi Coo?
+Hank ballard & The Midnighters
+10
+
+Music: 1960s: Artist/Band: The Horse?
+Cliff nobles & co
+10
+
+Music: 1960s: Artist/Band: The House Of the Rising Sun?
+The animals
+10
+
+Music: 1960s: Artist/Band: The House That Jack Built?
+Aretha franklin
+10
+
+Music: 1960s: Artist/Band: The Hucklebuck?
+Chubby checker
+10
+
+Music: 1960s: Artist/Band: The Hunter Gets Captured by the Game?
+The marvelettes
+10
+
+Music: 1960s: Artist/Band: The Impossible Dream (The Quest)?
+Jack jones
+10
+
+Music: 1960s: Artist/Band: The Jam (Part?
+Bobby gregg & his friends
+10
+
+Music: 1960s: Artist/Band: The Jerk?
+The larks
+10
+
+Music: 1960s: Artist/Band: The Joker Went Wild?
+Brian hyland
+10
+
+Music: 1960s: Artist/Band: The Jolly Green Giant?
+The kingsmen
+10
+
+Music: 1960s: Artist/Band: The Kind of Boy You Can't Forget?
+The raindrops
+10
+
+Music: 1960s: Artist/Band: The Land of Milk and Honey?
+The vogues
+10
+
+Music: 1960s: Artist/Band: The Last Time?
+The rolling stones
+10
+
+Music: 1960s: Artist/Band: The Last Waltz?
+Engelbert humperdinck
+10
+
+Music: 1960s: Artist/Band: The Last Word In Lonesome Is Me?
+Eddy arnold
+10
+
+Music: 1960s: Artist/Band: The Lesson?
+Vikki carr
+10
+
+Music: 1960s: Artist/Band: The Lion Sleeps Tonight?
+The tokens
+10
+
+Music: 1960s: Artist/Band: The Little Girl I Once Knew?
+The beach boys
+10
+
+Music: 1960s: Artist/Band: The Little Old Lady (From Pasadena)?
+Jan & dean
+10
+
+Music: 1960s: Artist/Band: The Loco-Motion?
+Little eva
+10
+
+Music: 1960s: Artist/Band: The Lonely Bull (El Solo Torro)?
+Herb alpert & the tijuana brass
+10
+
+Music: 1960s: Artist/Band: The Lonely Surfer?
+Jack nitzsche
+10
+
+Music: 1960s: Artist/Band: The Love I Saw in You Was Just a Mirage?
+Smokey robinson & the miracles
+10
+
+Music: 1960s: Artist/Band: The Love of My Man?
+Theola kilgore
+10
+
+Music: 1960s: Artist/Band: The Madison Time (Part?
+Ray bryant Combo
+10
+
+Music: 1960s: Artist/Band: The Magnificent Seven?
+Al caiola & his orchestra
+10
+
+Music: 1960s: Artist/Band: The Majestic?
+Dion
+10
+
+Music: 1960s: Artist/Band: The Martian Hop?
+The ran-dells
+10
+
+Music: 1960s: Artist/Band: The Matador?
+Major lance
+10
+
+Music: 1960s: Artist/Band: The Men in My Little Girl's Life?
+Mike douglas
+10
+
+Music: 1960s: Artist/Band: The Minotaur?
+Dick hyman & his electric eclectics
+10
+
+Music: 1960s: Artist/Band: The Monkey Time?
+Major lance
+10
+
+Music: 1960s: Artist/Band: The More I See You?
+Chris montez
+10
+
+Music: 1960s: Artist/Band: The Mountain's High?
+Dick & deedee
+10
+
+Music: 1960s: Artist/Band: The Name Game?
+Shirley ellis
+10
+
+Music: 1960s: Artist/Band: The New Girl in School?
+Jan & dean
+10
+
+Music: 1960s: Artist/Band: The Night Has A Thousand Eyes?
+Bobby vee
+10
+
+Music: 1960s: Artist/Band: The Old Lamplighter?
+The browns
+10
+
+Music: 1960s: Artist/Band: The One Who Really Loves You?
+Mary wells
+10
+
+Music: 1960s: Artist/Band: The Oogum Boogum Song?
+Brenton wood
+10
+
+Music: 1960s: Artist/Band: The Other Man's Grass is Always Greener?
+Petula clark
+10
+
+Music: 1960s: Artist/Band: The Pied Piper?
+Crispian st. peters
+10
+
+Music: 1960s: Artist/Band: The Pink Panther Theme?
+Henry mancini & his orchestra
+10
+
+Music: 1960s: Artist/Band: The Popcorn?
+James brown
+10
+
+Music: 1960s: Artist/Band: The Push and Kick?
+Mark valentino
+10
+
+Music: 1960s: Artist/Band: The Race Is On?
+Jack jones
+10
+
+Music: 1960s: Artist/Band: The Rain, The Park, and Other Things?
+The cowsills
+10
+
+Music: 1960s: Artist/Band: The Rains Came?
+Sir douglas quintet
+10
+
+Music: 1960s: Artist/Band: The Return of the Red Baron?
+The royal guardsmen
+10
+
+Music: 1960s: Artist/Band: The River Is Wide?
+The grass roots
+10
+
+Music: 1960s: Artist/Band: The Same One?
+Brook benton
+10
+
+Music: 1960s: Artist/Band: The Shelter Of Your Arms?
+Sammy davis, jr
+10
+
+Music: 1960s: Artist/Band: The Shoop Shoop Song (It's In His Kiss)?
+Betty everett
+10
+
+Music: 1960s: Artist/Band: The Snake?
+Al wilson
+10
+
+Music: 1960s: Artist/Band: The Son of Hickory Holler's Tramp?
+O.c. smith
+10
+
+Music: 1960s: Artist/Band: The Sounds of Silence?
+Simon & garfunkel
+10
+
+Music: 1960s: Artist/Band: The Story of My Love?
+Paul anka
+10
+
+Music: 1960s: Artist/Band: The Straight Life?
+Bobby goldsboro
+10
+
+Music: 1960s: Artist/Band: The Stripper?
+David rose & his orchestra
+10
+
+Music: 1960s: Artist/Band: The Sun Ain't Gonna Shine (Anymore)?
+The walker brothers
+10
+
+Music: 1960s: Artist/Band: The Sweetest Thing This Side of Heaven?
+Chris bartley
+10
+
+Music: 1960s: Artist/Band: The Switch-a-Roo?
+Hank ballard & the midnighters
+10
+
+Music: 1960s: Artist/Band: The Tennessee Waltz?
+Sam cooke
+10
+
+Music: 1960s: Artist/Band: The Theme from Dixie?
+Duane eddy
+10
+
+Music: 1960s: Artist/Band: The Ties That Bind?
+Brook benton
+10
+
+Music: 1960s: Artist/Band: The Twist?
+Chubby checker
+10
+
+Music: 1960s: Artist/Band: The Unicorn?
+The Irish rovers
+10
+
+Music: 1960s: Artist/Band: The Unknown Soldier?
+The doors
+10
+
+Music: 1960s: Artist/Band: The Very Thought of You?
+Rick nelson
+10
+
+Music: 1960s: Artist/Band: The Wah Watusi?
+The orlons
+10
+
+Music: 1960s: Artist/Band: The Wanderer?
+Dion
+10
+
+Music: 1960s: Artist/Band: The Watusi?
+The vibrations
+10
+
+Music: 1960s: Artist/Band: The Way You Do the Things You Do?
+The temptations
+10
+
+Music: 1960s: Artist/Band: The Way You Look Tonight?
+The lettermen
+10
+
+Music: 1960s: Artist/Band: The Wedding?
+Julie rogers
+10
+
+Music: 1960s: Artist/Band: The Weight?
+Aretha franklin
+10
+
+Music: 1960s: Artist/Band: The Wheel of Hurt?
+Margaret whiting
+10
+
+Music: 1960s: Artist/Band: The Windmills of Your Mind?
+Dusty springfield
+10
+
+Music: 1960s: Artist/Band: The Windows of the World?
+Dionne warwick
+10
+
+Music: 1960s: Artist/Band: The Work Song?
+Herb alpert & the tijuana brass
+10
+
+Music: 1960s: Artist/Band: The World We Knew (Over and Over)?
+Frank sinatra
+10
+
+Music: 1960s: Artist/Band: The Writing on the Wall?
+Adam wade
+10
+
+Music: 1960s: Artist/Band: Theme for Young Lovers?
+Percy faith & His Orchestra
+10
+
+Music: 1960s: Artist/Band: Then He Kissed Me?
+The crystals
+10
+
+Music: 1960s: Artist/Band: Then You Can Tell Me Goodbye?
+The casinos
+10
+
+Music: 1960s: Artist/Band: There Goes My Everything?
+Engelbert humperdinck
+10
+
+Music: 1960s: Artist/Band: There Is a Mountain?
+Donovan
+10
+
+Music: 1960s: Artist/Band: There Is?
+The dells
+10
+
+Music: 1960s: Artist/Band: There She Goes?
+Jerry wallace
+10
+
+Music: 1960s: Artist/Band: There Was a Time?
+James brown & the famous flames
+10
+
+Music: 1960s: Artist/Band: There Will Never Be Another You?
+Chris montez
+10
+
+Music: 1960s: Artist/Band: There! I've Said It Again?
+Bobby vinton
+10
+
+Music: 1960s: Artist/Band: There'll Come A Time?
+Betty everett
+10
+
+Music: 1960s: Artist/Band: There's a Kind of Hush?
+Herman's hermits
+10
+
+Music: 1960s: Artist/Band: There's a Moon Out Tonight?
+The capris
+10
+
+Music: 1960s: Artist/Band: There's Gonna Be a Showdown?
+Archie bell & the drells
+10
+
+Music: 1960s: Artist/Band: There's Got to Be a Word!?
+The innocence
+10
+
+Music: 1960s: Artist/Band: There's No Other (Like My Baby)?
+The crystals
+10
+
+Music: 1960s: Artist/Band: There's Something on Your Mind (Part?
+Bobby marchan
+10
+
+Music: 1960s: Artist/Band: These Boots Are Made For Walkin'?
+Nancy sinatra
+10
+
+Music: 1960s: Artist/Band: They're Coming to Take Me Away, Ha-Haaa!?
+Napoleon xiv
+10
+
+Music: 1960s: Artist/Band: Things I Should Have Said?
+The grass roots
+10
+
+Music: 1960s: Artist/Band: Things I'd Like to Say?
+The new colony six
+10
+
+Music: 1960s: Artist/Band: Things?
+Bobby darin
+10
+
+Music: 1960s: Artist/Band: Think I'll Go Somewhere and Cry Myself to Sleep?
+Al martino
+10
+
+Music: 1960s: Artist/Band: Think Twice?
+Brook benton
+10
+
+Music: 1960s: Artist/Band: This Bitter Earth?
+Dinah Washington
+10
+
+Music: 1960s: Artist/Band: This Diamond Ring?
+Gary lewis & the playboys
+10
+
+Music: 1960s: Artist/Band: This Door Swings Both Ways?
+Herman's hermits
+10
+
+Music: 1960s: Artist/Band: This Girl is a Woman Now?
+Gary puckett & the union gap
+10
+
+Music: 1960s: Artist/Band: This Girl's In Love with You?
+Dionne warwick
+10
+
+Music: 1960s: Artist/Band: This Guy's In Love With You?
+Herb alpert
+10
+
+Music: 1960s: Artist/Band: This Is My Country?
+The impressions
+10
+
+Music: 1960s: Artist/Band: This Is My Song?
+Petula clark
+10
+
+Music: 1960s: Artist/Band: This Little Bird?
+Marianne faithfull
+10
+
+Music: 1960s: Artist/Band: This Little Girl?
+Dion
+10
+
+Music: 1960s: Artist/Band: This Old Heart of Mine (Is Weak for You)?
+The isley brothers
+10
+
+Music: 1960s: Artist/Band: This Time?
+Troy shondell
+10
+
+Music: 1960s: Artist/Band: Those Oldies But Goodies (Remind Me of You)?
+Little caesar & the romans
+10
+
+Music: 1960s: Artist/Band: Those Were the Days?
+Mary hopkin
+10
+
+Music: 1960s: Artist/Band: Thou Shalt Not Steal?
+Dick & deedee
+10
+
+Music: 1960s: Artist/Band: Three Hearts in a Tangle?
+Roy drusky
+10
+
+Music: 1960s: Artist/Band: Three Nights a Week?
+Fats domino
+10
+
+Music: 1960s: Artist/Band: Three O'Clock In the Morning?
+Bert kaempfert & his orchestra
+10
+
+Music: 1960s: Artist/Band: Three Window Coupe?
+The rip chords
+10
+
+Music: 1960s: Artist/Band: Through 1963 this duo's total record sales exceeded 18 million with successes including 'Cathy's Clown' and 'Wake Up Little Suzie'?
+The Everly Brothers
+10
+
+Music: 1960s: Artist/Band: Thunderball?
+Tom jones
+10
+
+Music: 1960s: Artist/Band: Ticket To Ride?
+The beatles
+10
+
+Music: 1960s: Artist/Band: Tie Me Kangaroo Down, Sport?
+Rolf harris
+10
+
+Music: 1960s: Artist/Band: Tighten Up?
+Archie bell & the drells
+10
+
+Music: 1960s: Artist/Band: Tijuana Taxi?
+Herb alpert & the tijuana brass
+10
+
+Music: 1960s: Artist/Band: Time After Time?
+Chris montez
+10
+
+Music: 1960s: Artist/Band: Time for Livin'?
+The association
+10
+
+Music: 1960s: Artist/Band: Time Has Come Today?
+The chambers brothers
+10
+
+Music: 1960s: Artist/Band: Time Is on My Side?
+The rolling stones
+10
+
+Music: 1960s: Artist/Band: Time Is Tight?
+Booker t. & the mg's
+10
+
+Music: 1960s: Artist/Band: Time of the Season?
+The zombies
+10
+
+Music: 1960s: Artist/Band: Time Won't Let Me?
+The outsiders
+10
+
+Music: 1960s: Artist/Band: Tip-Toe Thru the Tulips with Me?
+Tiny tim
+10
+
+Music: 1960s: Artist/Band: Tired of Waiting for You?
+The kinks
+10
+
+Music: 1960s: Artist/Band: To a Sleeping Beauty?
+Jimmy dean
+10
+
+Music: 1960s: Artist/Band: To Each His Own?
+The platters
+10
+
+Music: 1960s: Artist/Band: To Give (The Reason I Live)?
+Frankie valli
+10
+
+Music: 1960s: Artist/Band: To Know You Is To Love You?
+Bobby vinton
+10
+
+Music: 1960s: Artist/Band: To Know You, Is To Love You?
+Peter & gordon
+10
+
+Music: 1960s: Artist/Band: To Love Somebody?
+Bee gees
+10
+
+Music: 1960s: Artist/Band: To Sir With Love?
+Lulu
+10
+
+Music: 1960s: Artist/Band: To Susan on the West Coast Waiting?
+Donovan
+10
+
+Music: 1960s: Artist/Band: Tobacco Road?
+The nashville teens
+10
+
+Music: 1960s: Artist/Band: Today?
+The new christy minstrels
+10
+
+Music: 1960s: Artist/Band: Together Again?
+Ray charles
+10
+
+Music: 1960s: Artist/Band: Together?
+Connie francis
+10
+
+Music: 1960s: Artist/Band: Togetherness?
+Frankie avalon
+10
+
+Music: 1960s: Artist/Band: Tom Cat?
+The rooftop singers
+10
+
+Music: 1960s: Artist/Band: Tomorrow?
+Strawberry alarm clock
+10
+
+Music: 1960s: Artist/Band: Tonight (Could Be the Night)?
+The velvets
+10
+
+Music: 1960s: Artist/Band: Tonight I Fell in Love?
+The tokens
+10
+
+Music: 1960s: Artist/Band: Tonight My Love, Tonight?
+Paul anka
+10
+
+Music: 1960s: Artist/Band: Tonight?
+Ferrante & teicher
+10
+
+Music: 1960s: Artist/Band: Too Busy Thinking About My Baby?
+Marvin gaye
+10
+
+Music: 1960s: Artist/Band: Too Many Fish in the Sea / Three Little Fishes?
+Mitch ryder & the detroit wheels
+10
+
+Music: 1960s: Artist/Band: Too Many Fish in the Sea?
+The marvelettes
+10
+
+Music: 1960s: Artist/Band: Too Many Rivers?
+Brenda lee
+10
+
+Music: 1960s: Artist/Band: Too Much of Nothing?
+Peter, paul & mary
+10
+
+Music: 1960s: Artist/Band: Too Much Talk?
+Paul revere & the raiders
+10
+
+Music: 1960s: Artist/Band: Too Much Tequila?
+The champs
+10
+
+Music: 1960s: Artist/Band: Too Weak to Fight?
+Clarence carter
+10
+
+Music: 1960s: Artist/Band: Torture?
+Kris jensen
+10
+
+Music: 1960s: Artist/Band: Tossin' and Turnin'?
+Bobby lewis
+10
+
+Music: 1960s: Artist/Band: Touch Me?
+The doors
+10
+
+Music: 1960s: Artist/Band: Tower of Strength?
+Gene mcdaniels
+10
+
+Music: 1960s: Artist/Band: Town Without Pity?
+Gene pitney
+10
+
+Music: 1960s: Artist/Band: Tra La La La Suzy?
+Dean & jean
+10
+
+Music: 1960s: Artist/Band: Tracy's Theme?
+Spencer ross
+10
+
+Music: 1960s: Artist/Band: Tracy?
+The cuff links
+10
+
+Music: 1960s: Artist/Band: Tragedy?
+The fleetwoods
+10
+
+Music: 1960s: Artist/Band: Train of Love?
+Annette with the Afterbeats
+10
+
+Music: 1960s: Artist/Band: Trains and Boats and Planes?
+Dionne warwick
+10
+
+Music: 1960s: Artist/Band: Tramp?
+Otis redding & carla thomas
+10
+
+Music: 1960s: Artist/Band: Travelin' Man?
+Ricky nelson
+10
+
+Music: 1960s: Artist/Band: Travlin' Man?
+Stevie wonder
+10
+
+Music: 1960s: Artist/Band: Treat Her Right?
+Roy head & the traits
+10
+
+Music: 1960s: Artist/Band: Triangle?
+Janie grant
+10
+
+Music: 1960s: Artist/Band: Trouble in Paradise?
+The crests
+10
+
+Music: 1960s: Artist/Band: Trouble Is My Middle Name?
+Bobby vinton
+10
+
+Music: 1960s: Artist/Band: True Grit?
+Glen campbell
+10
+
+Music: 1960s: Artist/Band: True Love Never Runs Smooth?
+Gene pitney
+10
+
+Music: 1960s: Artist/Band: True Love Ways?
+Peter & gordon
+10
+
+Music: 1960s: Artist/Band: Trust in Me?
+Etta james
+10
+
+Music: 1960s: Artist/Band: Try A Little Kindness?
+Glen campbell
+10
+
+Music: 1960s: Artist/Band: Try It Baby?
+Marvin gaye
+10
+
+Music: 1960s: Artist/Band: Try Too Hard?
+The dave clark five
+10
+
+Music: 1960s: Artist/Band: Tuesday Afternoon (Forever Afternoon)?
+The moody blues
+10
+
+Music: 1960s: Artist/Band: Tuff?
+Ace cannon
+10
+
+Music: 1960s: Artist/Band: Turn Around, Look At Me?
+The vogues
+10
+
+Music: 1960s: Artist/Band: Turn Around?
+Dick & deedee
+10
+
+Music: 1960s: Artist/Band: Turn on Your Love Light?
+Bobby bland
+10
+
+Music: 1960s: Artist/Band: Turn-Down Day?
+The cyrkle
+10
+
+Music: 1960s: Artist/Band: Turn! Turn! Turn! (To Everything There Is a Season)?
+The byrds
+10
+
+Music: 1960s: Artist/Band: Twelve Thirty (Young Girls Are Coming to the Canyon)?
+The mamas & the papas
+10
+
+Music: 1960s: Artist/Band: Twenty Four Hours From Tulsa?
+Gene pitney
+10
+
+Music: 1960s: Artist/Band: Twenty Miles?
+Chubby checker
+10
+
+Music: 1960s: Artist/Band: Twenty-Five Miles?
+Edwin starr
+10
+
+Music: 1960s: Artist/Band: Twine Time?
+Alvin cash & the crawlers
+10
+
+Music: 1960s: Artist/Band: Twinkle Toes?
+Roy orbison
+10
+
+Music: 1960s: Artist/Band: Twist It Up?
+Chubby checker
+10
+
+Music: 1960s: Artist/Band: Twist-Her?
+Bill black's combo
+10
+
+Music: 1960s: Artist/Band: Twistin' Matilda?
+Jimmy soul
+10
+
+Music: 1960s: Artist/Band: Twistin' Postman?
+The marvelettes
+10
+
+Music: 1960s: Artist/Band: Twistin' the Night Away?
+Sam cooke
+10
+
+Music: 1960s: Artist/Band: Twistin' U.S.A?
+Danny & the juniors
+10
+
+Music: 1960s: Artist/Band: Two Faces Have I?
+Lou christie
+10
+
+Music: 1960s: Artist/Band: Two Little Kids?
+Peaches & herb
+10
+
+Music: 1960s: Artist/Band: Two Lovers?
+Mary wells
+10
+
+Music: 1960s: Artist/Band: Two Tickets To Paradise?
+Brook benton
+10
+
+Music: 1960s: Artist/Band: U.S. Male?
+Elvis presley
+10
+
+Music: 1960s: Artist/Band: Um, Um, Um, Um, Um, Um?
+Major lance
+10
+
+Music: 1960s: Artist/Band: Unchain My Heart?
+Ray charles
+10
+
+Music: 1960s: Artist/Band: Unchained Melody?
+The righteous brothers
+10
+
+Music: 1960s: Artist/Band: Under the Boardwalk?
+The drifters
+10
+
+Music: 1960s: Artist/Band: Under Your Spell Again?
+Johnny rivers
+10
+
+Music: 1960s: Artist/Band: Understand Your Man?
+Johnny cash
+10
+
+Music: 1960s: Artist/Band: Undun?
+The guess who
+10
+
+Music: 1960s: Artist/Band: Up on the Roof?
+The drifters
+10
+
+Music: 1960s: Artist/Band: Up up and away?
+The 5th dimension
+10
+
+Music: 1960s: Artist/Band: Ups and Downs?
+Paul revere & the raiders
+10
+
+Music: 1960s: Artist/Band: Uptight (Everything's Alright)?
+Stevie wonder
+10
+
+Music: 1960s: Artist/Band: Uptown?
+The crystals
+10
+
+Music: 1960s: Artist/Band: Use Your Head?
+Mary wells
+10
+
+Music: 1960s: Artist/Band: Utopia?
+Frank gari
+10
+
+Music: 1960s: Artist/Band: Vacation?
+Connie francis
+10
+
+Music: 1960s: Artist/Band: Valleri?
+The monkees
+10
+
+Music: 1960s: Artist/Band: Venus in Blue Jeans?
+Jimmy clanton
+10
+
+Music: 1960s: Artist/Band: Venus?
+The shocking blue
+10
+
+Music: 1960s: Artist/Band: Village of Love?
+Nathaniel mayer and the fabulous twilights
+10
+
+Music: 1960s: Artist/Band: Viva Las Vegas?
+Elvis presley
+10
+
+Music: 1960s: Artist/Band: Volare?
+Bobby rydell
+10
+
+Music: 1960s: Artist/Band: Voodoo Woman?
+Bobby goldsboro
+10
+
+Music: 1960s: Artist/Band: Wack Wack?
+The young-holt trio
+10
+
+Music: 1960s: Artist/Band: Wait 'Till My Bobby Gets Home?
+Darlene love
+10
+
+Music: 1960s: Artist/Band: Wait a Minute?
+The coasters
+10
+
+Music: 1960s: Artist/Band: Wait for Me?
+The playmates
+10
+
+Music: 1960s: Artist/Band: Walk Away?
+Matt monro
+10
+
+Music: 1960s: Artist/Band: Walk Like A Man?
+The 4 seasons
+10
+
+Music: 1960s: Artist/Band: Walk On the Wild Side (Part?
+Jimmy smith & the big band
+10
+
+Music: 1960s: Artist/Band: Walk Right Back?
+The everly brothers
+10
+
+Music: 1960s: Artist/Band: Walk Right In?
+The rooftop singers
+10
+
+Music: 1960s: Artist/Band: Walkin' In the Rain?
+Jay & the americans
+10
+
+Music: 1960s: Artist/Band: Walkin' In the Sunshine?
+Roger miller
+10
+
+Music: 1960s: Artist/Band: Walkin' My Cat Named Dog?
+Norma tanega
+10
+
+Music: 1960s: Artist/Band: Walking In the Rain?
+The ronettes
+10
+
+Music: 1960s: Artist/Band: Walking Proud?
+Steve lawrence
+10
+
+Music: 1960s: Artist/Band: Walking the Dog?
+Rufus thomas
+10
+
+Music: 1960s: Artist/Band: Walking To New Orleans?
+Fats domino
+10
+
+Music: 1960s: Artist/Band: Warm and Tender Love?
+Percy sledge
+10
+
+Music: 1960s: Artist/Band: Warmed Over Kisses (Left Over Love)?
+Brian hyland
+10
+
+Music: 1960s: Artist/Band: Washington Square?
+The village stompers
+10
+
+Music: 1960s: Artist/Band: Watch the Flowers Grow?
+The 4 seasons
+10
+
+Music: 1960s: Artist/Band: Water Boy?
+Don shirley trio
+10
+
+Music: 1960s: Artist/Band: Watermelon Man?
+Mongo santamaria
+10
+
+Music: 1960s: Artist/Band: We Can Fly?
+The cowsills
+10
+
+Music: 1960s: Artist/Band: We Can Work It Out?
+The beatles
+10
+
+Music: 1960s: Artist/Band: We Got More Soul?
+Dyke & the blazers
+10
+
+Music: 1960s: Artist/Band: We Gotta Get Out of This Place?
+The animals
+10
+
+Music: 1960s: Artist/Band: We Love You Beatles?
+The carefrees
+10
+
+Music: 1960s: Artist/Band: We'll Sing In the Sunshine?
+Gale garnett
+10
+
+Music: 1960s: Artist/Band: We're a Winner?
+The impressions
+10
+
+Music: 1960s: Artist/Band: We're Gonna Make It?
+Little milton
+10
+
+Music: 1960s: Artist/Band: Wear Your Love Like Heaven?
+Donovan
+10
+
+Music: 1960s: Artist/Band: Wedding Bell Blues?
+The 5th dimension
+10
+
+Music: 1960s: Artist/Band: Welcome Home Baby?
+The shirelles
+10
+
+Music: 1960s: Artist/Band: Well, I Told You?
+The chantels
+10
+
+Music: 1960s: Artist/Band: West of the Wall?
+Miss toni fisher
+10
+
+Music: 1960s: Artist/Band: Western Union?
+The five americans
+10
+
+Music: 1960s: Artist/Band: Wham!?
+Lonnie mack
+10
+
+Music: 1960s: Artist/Band: What A Party?
+Fats domino
+10
+
+Music: 1960s: Artist/Band: What A Price?
+Fats domino
+10
+
+Music: 1960s: Artist/Band: What A Surprise?
+Johnny maestro, the voice of the crests
+10
+
+Music: 1960s: Artist/Band: What A Woman In Love Won't Do?
+Sandy posey
+10
+
+Music: 1960s: Artist/Band: What Am I Living For?
+Conway twitty
+10
+
+Music: 1960s: Artist/Band: What Becomes of the Brokenhearted?
+Jimmy ruffin
+10
+
+Music: 1960s: Artist/Band: What Color (Is a Man)?
+Bobby vinton
+10
+
+Music: 1960s: Artist/Band: What Does It Take (to Win Your Love)?
+Jr. walker & the all-stars
+10
+
+Music: 1960s: Artist/Band: What Have They Done To The Rain?
+The searchers
+10
+
+Music: 1960s: Artist/Band: What in the World's Come Over You?
+Jack scott
+10
+
+Music: 1960s: Artist/Band: What Kind of Fool (Do You Think I Am)?
+The tams
+10
+
+Music: 1960s: Artist/Band: What Kind of Fool Am I?
+Sammy davis, jr
+10
+
+Music: 1960s: Artist/Band: What Kind of Fool Do You Think I Am?
+Bill deal & the rhondels
+10
+
+Music: 1960s: Artist/Band: What Kind of Love Is This?
+Joey dee & the starliters
+10
+
+Music: 1960s: Artist/Band: What Now?
+Gene chandler
+10
+
+Music: 1960s: Artist/Band: What the World Needs Now is Love?
+Jackie deshannon
+10
+
+Music: 1960s: Artist/Band: What Will Mary Say?
+Johnny mathis
+10
+
+Music: 1960s: Artist/Band: What'd I Say (Part?
+Bobby darin
+10
+
+Music: 1960s: Artist/Band: What's A Matter Baby (Is It Hurting You)?
+Timi yuro
+10
+
+Music: 1960s: Artist/Band: What's New Pussycat?
+Tom jones
+10
+
+Music: 1960s: Artist/Band: What's So Easy for Two Is So Hard for One?
+Mary wells
+10
+
+Music: 1960s: Artist/Band: What's So Good About Goodbye?
+The miracles
+10
+
+Music: 1960s: Artist/Band: What's the Matter with You Baby?
+Marvin gaye & mary wells
+10
+
+Music: 1960s: Artist/Band: What's the Use of Breaking Up?
+Jerry butler
+10
+
+Music: 1960s: Artist/Band: What's Your Name?
+Don & juan
+10
+
+Music: 1960s: Artist/Band: When A Man Loves A Woman?
+Percy sledge
+10
+
+Music: 1960s: Artist/Band: When I Die?
+Motherlode
+10
+
+Music: 1960s: Artist/Band: When I Fall In Love?
+The lettermen
+10
+
+Music: 1960s: Artist/Band: When I Grow Up (To Be A Man)?
+The beach boys
+10
+
+Music: 1960s: Artist/Band: When I Was Young?
+Eric burdon & the animals
+10
+
+Music: 1960s: Artist/Band: When I'm Gone?
+Brenda holloway
+10
+
+Music: 1960s: Artist/Band: When Liking Turns to Loving?
+Ronnie dove
+10
+
+Music: 1960s: Artist/Band: When My Little Girl Is Smiling?
+The drifters
+10
+
+Music: 1960s: Artist/Band: When the Boy in Your Arms (Is the Boy in Your Heart)?
+Connie francis
+10
+
+Music: 1960s: Artist/Band: When the Lovelight Starts Shining Through His Eyes?
+The supremes
+10
+
+Music: 1960s: Artist/Band: When We Get Married?
+The dreamlovers
+10
+
+Music: 1960s: Artist/Band: When Will I Be Loved?
+The everly Brothers
+10
+
+Music: 1960s: Artist/Band: When You Walk in the Room?
+The searchers
+10
+
+Music: 1960s: Artist/Band: When You Wish Upon a Star?
+Dion & The Belmonts
+10
+
+Music: 1960s: Artist/Band: When You're Hot, You're Hot?
+Porter wagoner
+10
+
+Music: 1960s: Artist/Band: When You're Young and In Love?
+The marvelettes
+10
+
+Music: 1960s: Artist/Band: Whenever He Holds You?
+Bobby goldsboro
+10
+
+Music: 1960s: Artist/Band: Where Did Our Love Go?
+The supremes
+10
+
+Music: 1960s: Artist/Band: Where Do You Go?
+Cher
+10
+
+Music: 1960s: Artist/Band: Where Or When?
+Dion & the belmonts
+10
+
+Music: 1960s: Artist/Band: Where the Boys Are?
+Connie francis
+10
+
+Music: 1960s: Artist/Band: Where Were You When I Needed You?
+The grass roots
+10
+
+Music: 1960s: Artist/Band: Where Will the Words Come From?
+Gary lewis & the playboys
+10
+
+Music: 1960s: Artist/Band: Where's the Playground Susie?
+Glen campbell
+10
+
+Music: 1960s: Artist/Band: Whispering?
+Nino tempo & april stevens
+10
+
+Music: 1960s: Artist/Band: Whispers (Gettin' Louder)?
+Jackie wilson
+10
+
+Music: 1960s: Artist/Band: White on White?
+Danny williams
+10
+
+Music: 1960s: Artist/Band: White Rabbit?
+Jefferson airplane
+10
+
+Music: 1960s: Artist/Band: White Room?
+Cream
+10
+
+Music: 1960s: Artist/Band: White Silver Sands?
+Bill black's Combo
+10
+
+Music: 1960s: Artist/Band: Who Am I?
+Petula clark
+10
+
+Music: 1960s: Artist/Band: Who Can I Turn To (When Nobody Needs Me)?
+Tony bennett
+10
+
+Music: 1960s: Artist/Band: Who Do You Love?
+The sapphires
+10
+
+Music: 1960s: Artist/Band: Who had a number 1 hit in 1966 with keep on running?
+Spencer davis group
+10
+
+Music: 1960s: Artist/Band: Who had a number 1 hit in 1969 with something in the air?
+Thunderclap newman
+10
+
+Music: 1960s: Artist/Band: Who had a number 1 hit record in 1964 with 'Don't Throw Your Love Away'?
+The searchers
+10
+
+Music: 1960s: Artist/Band: Who had a number 1 hit record in 1965 with 'I'm Alive'?
+The hollies
+10
+
+Music: 1960s: Artist/Band: Who Is Gonna Love Me?
+Dionne warwick
+10
+
+Music: 1960s: Artist/Band: Who Put the Bomp (In the Bomp, Bomp, Bomp)?
+Barry mann
+10
+
+Music: 1960s: Artist/Band: Who Will Answer?
+Ed ames
+10
+
+Music: 1960s: Artist/Band: Who'll Be the Next in Line?
+The kinks
+10
+
+Music: 1960s: Artist/Band: Who's Making Love?
+Johnnie taylor
+10
+
+Music: 1960s: Artist/Band: Whole Lotta Love?
+Led zeppelin
+10
+
+Music: 1960s: Artist/Band: Why Do Lovers Break Each Other's Heart?
+Bob b. soxx & the blue jeans
+10
+
+Music: 1960s: Artist/Band: Wichita Lineman?
+Glen campbell
+10
+
+Music: 1960s: Artist/Band: Wiggle Wobble?
+Les cooper & the soul rockers
+10
+
+Music: 1960s: Artist/Band: Wild Honey?
+The beach boys
+10
+
+Music: 1960s: Artist/Band: Wild in the Country?
+Elvis presley
+10
+
+Music: 1960s: Artist/Band: Wild Weekend?
+The rebels
+10
+
+Music: 1960s: Artist/Band: Wild!?
+Dee dee sharp
+10
+
+Music: 1960s: Artist/Band: Wildwood Days?
+Bobby rydell
+10
+
+Music: 1960s: Artist/Band: Will You Be Staying After Sunday?
+The peppermint rainbow
+10
+
+Music: 1960s: Artist/Band: Willow Weep For Me?
+Chad & jeremy
+10
+
+Music: 1960s: Artist/Band: Winchester Cathedral?
+The new vaudeville band
+10
+
+Music: 1960s: Artist/Band: Windy?
+The association
+10
+
+Music: 1960s: Artist/Band: Wings Of A Dove?
+Ferlin husky
+10
+
+Music: 1960s: Artist/Band: Wipe Out?
+The surfaris
+10
+
+Music: 1960s: Artist/Band: Wish Someone Would Care?
+Irma thomas
+10
+
+Music: 1960s: Artist/Band: Wish You Didn't Have to Go?
+James & bobby purify
+10
+
+Music: 1960s: Artist/Band: Wishin' and Hopin'?
+Dusty springfield
+10
+
+Music: 1960s: Artist/Band: Witchcraft?
+Elvis presley
+10
+
+Music: 1960s: Artist/Band: With A Girl Like You?
+The troggs
+10
+
+Music: 1960s: Artist/Band: With Pen in Hand?
+Vikki carr
+10
+
+Music: 1960s: Artist/Band: With These Hands?
+Tom jones
+10
+
+Music: 1960s: Artist/Band: With This Ring?
+The platters
+10
+
+Music: 1960s: Artist/Band: Without You?
+Johnny tillotson
+10
+
+Music: 1960s: Artist/Band: Wives and Lovers?
+Jack jones
+10
+
+Music: 1960s: Artist/Band: Wolverton Mountain?
+Claude king
+10
+
+Music: 1960s: Artist/Band: Woman, Woman?
+Gary puckett & the union gap
+10
+
+Music: 1960s: Artist/Band: Woman's Got Soul?
+The impressions
+10
+
+Music: 1960s: Artist/Band: Woman?
+Peter & gordon
+10
+
+Music: 1960s: Artist/Band: Won't You Come Home Bill Bailey?
+Bobby darin
+10
+
+Music: 1960s: Artist/Band: Wonderful Summer?
+Robin ward
+10
+
+Music: 1960s: Artist/Band: Wonderful! Wonderful!?
+The tymes
+10
+
+Music: 1960s: Artist/Band: Wooden Heart?
+Joe dowell
+10
+
+Music: 1960s: Artist/Band: Wooly Bully?
+Sam the sham & the pharaohs
+10
+
+Music: 1960s: Artist/Band: Words of Love?
+The mamas & the papas
+10
+
+Music: 1960s: Artist/Band: Workin' for the Man?
+Roy orbison
+10
+
+Music: 1960s: Artist/Band: Workin' on a Groovy Thing?
+The 5th dimension
+10
+
+Music: 1960s: Artist/Band: Working in the Coal Mine?
+Lee dorsey
+10
+
+Music: 1960s: Artist/Band: Working My Way Back to You?
+The 4 seasons
+10
+
+Music: 1960s: Artist/Band: Workout Stevie, Workout?
+Stevie wonder
+10
+
+Music: 1960s: Artist/Band: World (Part?
+James brown
+10
+
+Music: 1960s: Artist/Band: Worried Guy?
+Johnny tillotson
+10
+
+Music: 1960s: Artist/Band: Wouldn't It Be Nice?
+The beach boys
+10
+
+Music: 1960s: Artist/Band: Wrong for Each Other?
+Andy williams
+10
+
+Music: 1960s: Artist/Band: Ya Ya?
+Lee dorsey
+10
+
+Music: 1960s: Artist/Band: Yakety Sax?
+Boots randolph
+10
+
+Music: 1960s: Artist/Band: Years from Now?
+Jackie wilson
+10
+
+Music: 1960s: Artist/Band: Yeh, Yeh?
+Georgie fame & the blue flames
+10
+
+Music: 1960s: Artist/Band: Yellow Balloon?
+The yellow balloon
+10
+
+Music: 1960s: Artist/Band: Yellow Bird?
+Arthur lyman group
+10
+
+Music: 1960s: Artist/Band: Yellow Submarine?
+The beatles
+10
+
+Music: 1960s: Artist/Band: Yes Sir, That's My Baby?
+Ricky Nelson
+10
+
+Music: 1960s: Artist/Band: Yes, I'm Ready?
+Barbara mason
+10
+
+Music: 1960s: Artist/Band: Yester Love?
+Smokey robinson & the miracles
+10
+
+Music: 1960s: Artist/Band: Yester-Me, Yester-You, Yesterday?
+Stevie wonder
+10
+
+Music: 1960s: Artist/Band: Yesterday, When I Was Young?
+Roy clark
+10
+
+Music: 1960s: Artist/Band: Yesterday's Gone?
+Chad & jeremy
+10
+
+Music: 1960s: Artist/Band: Yogi?
+The ivy three
+10
+
+Music: 1960s: Artist/Band: You Are Mine?
+Frankie avalon
+10
+
+Music: 1960s: Artist/Band: You Are My Sunshine?
+Ray charles
+10
+
+Music: 1960s: Artist/Band: You Are the Only One?
+Ricky nelson
+10
+
+Music: 1960s: Artist/Band: You Baby?
+The turtles
+10
+
+Music: 1960s: Artist/Band: You Beat Me to the Punch?
+Mary wells
+10
+
+Music: 1960s: Artist/Band: You Belong to Me?
+The duprees
+10
+
+Music: 1960s: Artist/Band: You Better Move On?
+Arthur alexander
+10
+
+Music: 1960s: Artist/Band: You Better Run?
+The young rascals
+10
+
+Music: 1960s: Artist/Band: You Better Sit Down Kids?
+Cher
+10
+
+Music: 1960s: Artist/Band: You Can Depend On Me?
+Brenda lee
+10
+
+Music: 1960s: Artist/Band: You Can Have Her?
+Roy hamilton
+10
+
+Music: 1960s: Artist/Band: You Can Never Stop Me Loving You?
+Johnny tillotson
+10
+
+Music: 1960s: Artist/Band: You Can't Hurry Love?
+The supremes
+10
+
+Music: 1960s: Artist/Band: You Can't Roller Skate in a Buffalo Herd?
+Roger miller
+10
+
+Music: 1960s: Artist/Band: You Can't Sit Down (Part?
+Philip upchurch combo
+10
+
+Music: 1960s: Artist/Band: You Can't Sit Down?
+The dovells
+10
+
+Music: 1960s: Artist/Band: You Didn't Have to Be So Nice?
+The lovin' spoonful
+10
+
+Music: 1960s: Artist/Band: You Don't Have To Be A Baby To Cry?
+The caravelles
+10
+
+Music: 1960s: Artist/Band: You Don't Have To Say You Love Me?
+Dusty springfield
+10
+
+Music: 1960s: Artist/Band: You Don't Know Me?
+Ray charles
+10
+
+Music: 1960s: Artist/Band: You Don't Know What You've Got (Until You Lose It)?
+Ral donner
+10
+
+Music: 1960s: Artist/Band: You Don't Own Me?
+Lesley gore
+10
+
+Music: 1960s: Artist/Band: You Gave Me a Mountain?
+Frankie laine
+10
+
+Music: 1960s: Artist/Band: You Got to Me?
+Neil diamond
+10
+
+Music: 1960s: Artist/Band: You Got What It Takes?
+The dave clark five
+10
+
+Music: 1960s: Artist/Band: You Got Yours and I'll Get Mine?
+The delfonics
+10
+
+Music: 1960s: Artist/Band: You Keep Running Away?
+Four tops
+10
+
+Music: 1960s: Artist/Band: You Know What I Mean?
+The turtles
+10
+
+Music: 1960s: Artist/Band: You Lost the Sweetest Boy?
+Mary wells
+10
+
+Music: 1960s: Artist/Band: You Mean Everything to Me?
+Neil Sedaka
+10
+
+Music: 1960s: Artist/Band: You Met Your Match?
+Stevie wonder
+10
+
+Music: 1960s: Artist/Band: You Must Believe Me?
+The impressions
+10
+
+Music: 1960s: Artist/Band: You Never Can Tell (C'est La Vie)?
+Chuck berry
+10
+
+Music: 1960s: Artist/Band: You Really Got Me?
+The kinks
+10
+
+Music: 1960s: Artist/Band: You Really Know How to Hurt a Guy?
+Jan & dean
+10
+
+Music: 1960s: Artist/Band: You Should Have Seen the Way He Looked at Me?
+The dixie cups
+10
+
+Music: 1960s: Artist/Band: You Showed Me?
+The turtles
+10
+
+Music: 1960s: Artist/Band: You Talk Too Much?
+Joe jones
+10
+
+Music: 1960s: Artist/Band: You Tell Me Why?
+The beau brummels
+10
+
+Music: 1960s: Artist/Band: You Turn Me On (Turn On Song)?
+Ian whitcomb & bluesville
+10
+
+Music: 1960s: Artist/Band: You Were Made for Me?
+Freddie & the dreamers
+10
+
+Music: 1960s: Artist/Band: You Were Only Fooling (While I Was Falling in Love)?
+Vic damone
+10
+
+Music: 1960s: Artist/Band: You Win Again?
+Fats domino
+10
+
+Music: 1960s: Artist/Band: You, I?
+The rugbys
+10
+
+Music: 1960s: Artist/Band: You'd Better Come Home?
+Petula clark
+10
+
+Music: 1960s: Artist/Band: You'll Lose a Good Thing?
+Barbara lynn
+10
+
+Music: 1960s: Artist/Band: You'll Never Get To Heaven (If You Break My Heart)?
+Dionne warwick
+10
+
+Music: 1960s: Artist/Band: You'll Never Walk Alone?
+Patti labelle & the blue belles
+10
+
+Music: 1960s: Artist/Band: You're a Wonderful One?
+Marvin gaye
+10
+
+Music: 1960s: Artist/Band: You're All I Need to Get By?
+Marvin gaye & tammi terrell
+10
+
+Music: 1960s: Artist/Band: You're My Everything?
+The temptations
+10
+
+Music: 1960s: Artist/Band: You're My World?
+Cilla black
+10
+
+Music: 1960s: Artist/Band: You're Nobody 'Till Somebody Loves You?
+Dean martin
+10
+
+Music: 1960s: Artist/Band: You're Sixteen?
+Johnny burnette
+10
+
+Music: 1960s: Artist/Band: You're the One?
+The vogues
+10
+
+Music: 1960s: Artist/Band: You're the Reason I'm Living?
+Bobby darin
+10
+
+Music: 1960s: Artist/Band: You're the Reason?
+Bobby edwards
+10
+
+Music: 1960s: Artist/Band: You've Been Cheatin'?
+The impressions
+10
+
+Music: 1960s: Artist/Band: You've Been in Love Too Long?
+Martha & the vandellas
+10
+
+Music: 1960s: Artist/Band: You've Got to Hide Your Love Away?
+The silkie
+10
+
+Music: 1960s: Artist/Band: You've Got Your Troubles?
+The fortunes
+10
+
+Music: 1960s: Artist/Band: You've Really Got a Hold on Me?
+The miracles
+10
+
+Music: 1960s: Artist/Band: You?
+Marvin gaye
+10
+
+Music: 1960s: Artist/Band: Young and in Love?
+Dick & deedee
+10
+
+Music: 1960s: Artist/Band: Young Emotions?
+Ricky nelson
+10
+
+Music: 1960s: Artist/Band: Young Girl?
+Gary puckett & the union gap
+10
+
+Music: 1960s: Artist/Band: Young Lovers?
+Paul & paula
+10
+
+Music: 1960s: Artist/Band: Young World?
+Rick nelson
+10
+
+Music: 1960s: Artist/Band: Your Cheatin' Heart?
+Ray charles
+10
+
+Music: 1960s: Artist/Band: Your Friends?
+Dee clark
+10
+
+Music: 1960s: Artist/Band: Your Good Thing (Is About to End)?
+Lou rawls
+10
+
+Music: 1960s: Artist/Band: Your Ma Said You Cried in Your Sleep Last Night?
+Kenny dino
+10
+
+Music: 1960s: Artist/Band: Your Nose Is Gonna Grow?
+Johnny crawford
+10
+
+Music: 1960s: Artist/Band: Your Old Stand By?
+Mary wells
+10
+
+Music: 1960s: Artist/Band: Your One and Only Love?
+Jackie wilson
+10
+
+Music: 1960s: Artist/Band: Your Other Love?
+Connie francis
+10
+
+Music: 1960s: Artist/Band: Your Precious Love?
+Marvin gaye & tammi terrell
+10
+
+Music: 1960s: Artist/Band: Your Unchanging Love?
+Marvin gaye
+10
+
+Music: 1960s: Artist/Band: Your Used to Be?
+Brenda lee
+10
+
+Music: 1960s: Artist/Band: Yummy Yummy Yummy?
+Ohio express
+10
+
+Music: 1960s: Artist/Band: Zip Code?
+The five americans
+10
+
+Music: 1960s: Artist/Band: Zip-A-Dee Doo-Dah?
+Bob b. soxx & the blue jeans
+10
+
+Music: 1960s: Artist/Band: Zorba the Greek?
+Herb alpert & the tijuana brass
+10
+
+Music: 1960s: Couples slow danced to his dreamy eyes in 1962?
+Johnny tillotson
+10
+
+Music: 1960s: Gene Pitney hurt when he was in ____
+Love
+10
+
+Music: 1960s: In 1969, this honey dripping song by the Archies spent four weeks at the top of the charts?
+Sugar sugar
+10
+
+Music: 1960s: Instrumental group performed Alka-Seltzer theme?
+T-bones
+10
+
+Music: 1960s: Mamas and Papas sure liked this day of the week?
+Monday
+10
+
+Music: 1960s: Micky Dolenz found fame in which simian-sounding group?
+The monkees
+10
+
+Music: 1960s: Name of the 1963 Beatles debut album?
+Please please me
+10
+
+Music: 1960s: On october 9, 1966, when the rolling stones gave a famous concert in london, the show was recorded to produce their first live album. Name that album?
+Got live if you want it
+10
+
+Music: 1960s: Song: Critics said Donovan was a British copy of which US performer?
+Bob dylan
+10
+
+Music: 1960s: Song: Deep purple started their career with which one-word song in 1968?
+Hush
+10
+
+Music: 1960s: Song: Which dance was Chubby Checker doing at the start of the 60s?
+The twist
+10
+
+Music: 1960s: Song: Which Marianne was linked with Mick Jagger?
+Faithfull
+10
+
+Music: 1960s: Song: Who backed Brian Poole?
+The tremeloes
+10
+
+Music: 1960s: Status Quo first charted with Pictures of what type of Men?
+Matchstick
+10
+
+Music: 1960s: The Beatles: Beatle that was rumored to be dead in the late '60s?
+Paul
+10
+
+Music: 1960s: The Beatles: Song: Mccartney achieved his biggest ballad with which song released on the album help in 1965?
+Yesterday
+10
+
+Music: 1960s: This many members were in the group The Dave Clark Five?
+Five
+10
+
+Music: 1960s: This musical about a New York mayor won the Pulitzer Prize in 1960?
+Fiorello!
+10
+
+Music: 1960s: What 1960s female rock group consisted of two sets of sisters?
+Shangri las
+10
+
+Music: 1960s: What was the Beatles' first single released in 1962?
+Love Me Do
+10
+
+Music: 1960s: Which city did the Searchers come from?
+Liverpool
+10
+
+Music: 1960s: Which George produced the Beatles' records?
+Martin
+10
+
+Music: 1960s: Which part of her body did Sandie Shaw bare on stage?
+Her feet
+10
+
+Music: 1960s: who had a big hit with Who's sorry now?
+Connie Francis
+10
+
+Music: 1960s: Who was backed by Hermits?
+Herman
+10
+
+Music: 1960s: Who was Crying in the Chapel?
+Elvis presley
+10
+
+Music: 1960s: Whose Five were in Bits and Pieces?
+Dave clark
+10
+
+Music: 1970s: 1970 chart-topper by Ernie of Sesame Street?
+Rubber duckie
+10
+
+Music: 1970s: 1972 Deep Purple track?
+Smoke on the water
+10
+
+Music: 1970s: 1973 rock classic, which group or artist released Freebird?
+Lynyrd Skynyrd
+10
+
+Music: 1970s: 1975 Queen record?
+Bohemian Rhapsody
+10
+
+Music: 1970s: 1976 Boston track?
+More than a feeling
+10
+
+Music: 1970s: 1977 rock classic by Status Quo?
+Rockin all over the world
+10
+
+Music: 1970s: 1977 rock classic, Rockin all over the world?
+Status Quo
+10
+
+Music: 1970s: 1978 Toto track?
+Hold the Line
+10
+
+Music: 1970s: America had a big hit in 1972 with this song?
+A horse with no name
+10
+
+Music: 1970s: Artist/Band: (Don't Fear) The Reaper?
+Blue oyster cult
+10
+
+Music: 1970s: Artist/Band: (You're) Havin' My Baby?
+Paul anka
+10
+
+Music: 1970s: Artist/Band: A Cowboys Work Is Never Done?
+Sonny & cher
+10
+
+Music: 1970s: Artist/Band: A Dose Of Rock 'N' Roll?
+Ringo starr
+10
+
+Music: 1970s: Artist/Band: A Fifth Of Beethoven?
+Walter murphy
+10
+
+Music: 1970s: Artist/Band: A Horse With No Name?
+America
+10
+
+Music: 1970s: Artist/Band: A Letter To Myself?
+Chi-lites
+10
+
+Music: 1970s: Artist/Band: A Little Bit More?
+Dr. hook
+10
+
+Music: 1970s: Artist/Band: A Little More Love?
+Olivia newton-john
+10
+
+Music: 1970s: Artist/Band: A Man I'll Never Be?
+Boston
+10
+
+Music: 1970s: Artist/Band: A Million To One?
+Donny osmond
+10
+
+Music: 1970s: Artist/Band: A Natural Man?
+Lou rawls
+10
+
+Music: 1970s: Artist/Band: A Rock 'N' Roll Fantasy?
+Kinks
+10
+
+Music: 1970s: Artist/Band: A Song Of Joy?
+Miguel rios
+10
+
+Music: 1970s: Artist/Band: A Very Special Love Song?
+Charlie rich
+10
+
+Music: 1970s: Artist/Band: Abc?
+Jackson 5
+10
+
+Music: 1970s: Artist/Band: Abra Ca Dabra?
+Defranco family
+10
+
+Music: 1970s: Artist/Band: Absolutely Right?
+Five man electrical band
+10
+
+Music: 1970s: Artist/Band: Action?
+Sweet
+10
+
+Music: 1970s: Artist/Band: After Midnight?
+Eric clapton
+10
+
+Music: 1970s: Artist/Band: After The Goldrush?
+Prelude
+10
+
+Music: 1970s: Artist/Band: After The Love Has Gone?
+Earth wind & fire
+10
+
+Music: 1970s: Artist/Band: After The Lovin'?
+Engelbert humperdinck
+10
+
+Music: 1970s: Artist/Band: Afternoon Delight?
+Starland vocal band
+10
+
+Music: 1970s: Artist/Band: Ain't Gonna Bump No More?
+Joe tex
+10
+
+Music: 1970s: Artist/Band: Ain't Love A Bitch?
+Rod stewart
+10
+
+Music: 1970s: Artist/Band: Ain't No Mountain High Enough?
+Diana ross
+10
+
+Music: 1970s: Artist/Band: Ain't No Stopin' Us Now?
+Mcfadden & whitehead
+10
+
+Music: 1970s: Artist/Band: Ain't No Sunshine?
+Bill withers
+10
+
+Music: 1970s: Artist/Band: Ain't No Way To Treat A Lady?
+Helen reddy
+10
+
+Music: 1970s: Artist/Band: Ain't No Woman?
+Four tops
+10
+
+Music: 1970s: Artist/Band: Ain't Nothing Like The Real Thing?
+Donny & marie osmond
+10
+
+Music: 1970s: Artist/Band: Ain't That A Shame?
+Cheap trick
+10
+
+Music: 1970s: Artist/Band: Ain't Too Proud To Beg?
+Rolling stones
+10
+
+Music: 1970s: Artist/Band: Ain't Understanding Mellow?
+Jerry butler & brenda lee eager
+10
+
+Music: 1970s: Artist/Band: Airport Love Theme?
+Vincent bell
+10
+
+Music: 1970s: Artist/Band: Albert Flash?
+Guess who
+10
+
+Music: 1970s: Artist/Band: Alive Again?
+Chicago
+10
+
+Music: 1970s: Artist/Band: Alive?
+Bee gees
+10
+
+Music: 1970s: Artist/Band: All By Myself?
+Eric carmen
+10
+
+Music: 1970s: Artist/Band: All Day Music?
+War
+10
+
+Music: 1970s: Artist/Band: All I Ever Need Is You?
+Sonny & cher
+10
+
+Music: 1970s: Artist/Band: All I Have To Do Is Dream?
+Glen campbell & bobbie gentry
+10
+
+Music: 1970s: Artist/Band: All I Know?
+Art garfunkel
+10
+
+Music: 1970s: Artist/Band: All Right Now?
+Free
+10
+
+Music: 1970s: Artist/Band: All Strung Out On You?
+John travolta
+10
+
+Music: 1970s: Artist/Band: All The King's Horses?
+Aretha franklin
+10
+
+Music: 1970s: Artist/Band: All The Young Dudes?
+Mott the hoople
+10
+
+Music: 1970s: Artist/Band: All You Get From Love Is A Love Song?
+Carpenters
+10
+
+Music: 1970s: Artist/Band: Almost Like Being In Love?
+Michael johnson
+10
+
+Music: 1970s: Artist/Band: Almost Summer?
+Celebration
+10
+
+Music: 1970s: Artist/Band: Alone Again?
+Gilbert o'sullivan
+10
+
+Music: 1970s: Artist/Band: Already Gone?
+Eagles
+10
+
+Music: 1970s: Artist/Band: Also Sprach Zarathustra (2001)?
+Deodato
+10
+
+Music: 1970s: Artist/Band: Always And Forever?
+Heatwave
+10
+
+Music: 1970s: Artist/Band: Always Something There To Remind Me?
+R.b. greaves
+10
+
+Music: 1970s: Artist/Band: American City Suite?
+Cashman & west
+10
+
+Music: 1970s: Artist/Band: American Pie?
+Don mclean
+10
+
+Music: 1970s: Artist/Band: American Tune?
+Paul simon
+10
+
+Music: 1970s: Artist/Band: American Woman?
+Guess who
+10
+
+Music: 1970s: Artist/Band: Americans?
+Byron macgregor
+10
+
+Music: 1970s: Artist/Band: Amie?
+Pure prairie league
+10
+
+Music: 1970s: Artist/Band: Amos Moses?
+Jerry reed
+10
+
+Music: 1970s: Artist/Band: An American Trilogy?
+Mickey newbury
+10
+
+Music: 1970s: Artist/Band: An Everlasting Love?
+Andy gibb
+10
+
+Music: 1970s: Artist/Band: An Old Fashioned Love Song?
+Three Dog Night
+10
+
+Music: 1970s: Artist/Band: And I Love You So?
+Perry como
+10
+
+Music: 1970s: Artist/Band: Angel In Your Arms?
+Hot
+10
+
+Music: 1970s: Artist/Band: Angie Baby?
+Helen reddy
+10
+
+Music: 1970s: Artist/Band: Angie?
+Rolling stones
+10
+
+Music: 1970s: Artist/Band: Annie's Song?
+John denver
+10
+
+Music: 1970s: Artist/Band: Another Day?
+Paul mccartney
+10
+
+Music: 1970s: Artist/Band: Another Park, Another Sunday?
+Doobie Brothers
+10
+
+Music: 1970s: Artist/Band: Another Rainy Day In New York City?
+Chicago
+10
+
+Music: 1970s: Artist/Band: Another Saturday Night?
+Cat stevens
+10
+
+Music: 1970s: Artist/Band: Another Somebody Done Somebody Wrong Song?
+B.j. thomas
+10
+
+Music: 1970s: Artist/Band: Another Star?
+Stevie wonder
+10
+
+Music: 1970s: Artist/Band: Anticipation?
+Carly simon
+10
+
+Music: 1970s: Artist/Band: Anything You Want?
+John valenti
+10
+
+Music: 1970s: Artist/Band: Anytime (I'll Be There)?
+Paul anka
+10
+
+Music: 1970s: Artist/Band: Are You Lonesome Tonight?
+Donny Osmond
+10
+
+Music: 1970s: Artist/Band: Are You Man Enough?
+Four tops
+10
+
+Music: 1970s: Artist/Band: Are You Ready?
+Pacific gas & Electric
+10
+
+Music: 1970s: Artist/Band: Ariel?
+Dean friedman
+10
+
+Music: 1970s: Artist/Band: Armed And Extremely Dangerous?
+First Choice
+10
+
+Music: 1970s: Artist/Band: Arrow Through Me?
+Wings
+10
+
+Music: 1970s: Artist/Band: As Tears Go By?
+Mashmakhan
+10
+
+Music: 1970s: Artist/Band: As?
+Stevie wonder
+10
+
+Music: 1970s: Artist/Band: Ask Me No Questions?
+B.b. king
+10
+
+Music: 1970s: Artist/Band: Ask Me What You Want?
+Millie jackson
+10
+
+Music: 1970s: Artist/Band: At Midnight?
+Rufus
+10
+
+Music: 1970s: Artist/Band: At Seventeen?
+Janis ian
+10
+
+Music: 1970s: Artist/Band: Attitude Dancing?
+Carly simon
+10
+
+Music: 1970s: Artist/Band: Aubrey?
+Bread
+10
+
+Music: 1970s: Artist/Band: Autobahn?
+Kraftwerk
+10
+
+Music: 1970s: Artist/Band: Automatically Sunshine?
+Supremes
+10
+
+Music: 1970s: Artist/Band: Babe?
+Styx
+10
+
+Music: 1970s: Artist/Band: Baby Blue?
+Badfinger
+10
+
+Music: 1970s: Artist/Band: Baby Come Back?
+Player
+10
+
+Music: 1970s: Artist/Band: Baby Come Closer?
+Smokey robinson
+10
+
+Music: 1970s: Artist/Band: Baby Don't Get Hooked On Me?
+Mac davis
+10
+
+Music: 1970s: Artist/Band: Baby Face?
+Wing & a prayer fife & drum corps.
+10
+
+Music: 1970s: Artist/Band: Baby I Love Your Way?
+Peter frampton
+10
+
+Music: 1970s: Artist/Band: Baby I'm Burnin'?
+Dolly parton
+10
+
+Music: 1970s: Artist/Band: Baby I'm-A Want You?
+Bread
+10
+
+Music: 1970s: Artist/Band: Baby Let Me Kiss You?
+King floyd
+10
+
+Music: 1970s: Artist/Band: Baby Let Me Take You?
+Detroit emeralds
+10
+
+Music: 1970s: Artist/Band: Baby That's Backatcha?
+Smokey robinson
+10
+
+Music: 1970s: Artist/Band: Baby, What A Big Surprise?
+Chicago
+10
+
+Music: 1970s: Artist/Band: Back Home Again?
+John denver
+10
+
+Music: 1970s: Artist/Band: Back In Love Again?
+L.t.d.
+10
+
+Music: 1970s: Artist/Band: Back In The Saddle?
+Aerosmith
+10
+
+Music: 1970s: Artist/Band: Back In The U.S.A?
+Linda ronstadt
+10
+
+Music: 1970s: Artist/Band: Back Off Boogaloo?
+Ringo starr
+10
+
+Music: 1970s: Artist/Band: Back Stabbers?
+O'jays
+10
+
+Music: 1970s: Artist/Band: Back Together Again?
+Daryl hall & john oates
+10
+
+Music: 1970s: Artist/Band: Back When My Hair Was Short?
+Gunhill road
+10
+
+Music: 1970s: Artist/Band: Bad Blood?
+Neil sedaka
+10
+
+Music: 1970s: Artist/Band: Bad Case Of Loving You?
+Robert palmer
+10
+
+Music: 1970s: Artist/Band: Bad Girls?
+Donna summer
+10
+
+Music: 1970s: Artist/Band: Bad Luck?
+Harold melvin & the blue notes
+10
+
+Music: 1970s: Artist/Band: Bad Time?
+Grand funk railroad
+10
+
+Music: 1970s: Artist/Band: Bad, Bad Leroy Brown?
+Jim croce
+10
+
+Music: 1970s: Artist/Band: Baker Street?
+Gerry rafferty
+10
+
+Music: 1970s: Artist/Band: Ball Of Confusion?
+Temptations
+10
+
+Music: 1970s: Artist/Band: Ballero?
+War
+10
+
+Music: 1970s: Artist/Band: Ballroom Blitz?
+Sweet
+10
+
+Music: 1970s: Artist/Band: Band Of Gold?
+Freda payne
+10
+
+Music: 1970s: Artist/Band: Band On The Run?
+Wings
+10
+
+Music: 1970s: Artist/Band: Bang A Gong?
+T. rex
+10
+
+Music: 1970s: Artist/Band: Bangla Desh?
+George harrison
+10
+
+Music: 1970s: Artist/Band: Barracuda?
+Heart
+10
+
+Music: 1970s: Artist/Band: Barretta's Theme?
+Rhythm heritage
+10
+
+Music: 1970s: Artist/Band: Basketball Jones Featuring Tyrone Shoelaces?
+Cheech & chong
+10
+
+Music: 1970s: Artist/Band: Battle Hymn Of Lt. Calley?
+C company
+10
+
+Music: 1970s: Artist/Band: Be My Baby?
+Andy kim
+10
+
+Music: 1970s: Artist/Band: Be Thankful For What You Got?
+William devaughn
+10
+
+Music: 1970s: Artist/Band: Be?
+Neil diamond
+10
+
+Music: 1970s: Artist/Band: Beach Baby?
+First class
+10
+
+Music: 1970s: Artist/Band: Beast Of Burden?
+Rolling stones
+10
+
+Music: 1970s: Artist/Band: Beautiful Sunday?
+Daniel boone
+10
+
+Music: 1970s: Artist/Band: Because The Night?
+Patti smith group
+10
+
+Music: 1970s: Artist/Band: Been To Canaan?
+Carole king
+10
+
+Music: 1970s: Artist/Band: Beer Barrel Polka?
+Bobby vinton
+10
+
+Music: 1970s: Artist/Band: Before My Heart Finds Out?
+Gene cotton
+10
+
+Music: 1970s: Artist/Band: Before The Next Teardrop Falls?
+Freddy fender
+10
+
+Music: 1970s: Artist/Band: Beginnings?
+Chicago
+10
+
+Music: 1970s: Artist/Band: Behind Blue Eyes?
+Who
+10
+
+Music: 1970s: Artist/Band: Behind Closed Doors?
+Charlie rich
+10
+
+Music: 1970s: Artist/Band: Believe In Humanity?
+Carole king
+10
+
+Music: 1970s: Artist/Band: Ben?
+Michael jackson
+10
+
+Music: 1970s: Artist/Band: Bennie And The Jets?
+Elton john
+10
+
+Music: 1970s: Artist/Band: Best Thing That Ever Happened To Me?
+Gladys knight & the pips
+10
+
+Music: 1970s: Artist/Band: Betcha By Golly, Wow?
+Stylistics
+10
+
+Music: 1970s: Artist/Band: Beth?
+Kiss
+10
+
+Music: 1970s: Artist/Band: Better Love Next Time?
+Dr. hook
+10
+
+Music: 1970s: Artist/Band: Bicycle Race?
+Queen
+10
+
+Music: 1970s: Artist/Band: Big City Miss Ruth Ann?
+Galley
+10
+
+Music: 1970s: Artist/Band: Big Shot?
+Billy joel
+10
+
+Music: 1970s: Artist/Band: Billy Don't Be A Hero?
+Bo donaldson & the heywoods
+10
+
+Music: 1970s: Artist/Band: Birds Of A Feather?
+Paul revere & the raiders
+10
+
+Music: 1970s: Artist/Band: Bite Your Lip?
+Elton john
+10
+
+Music: 1970s: Artist/Band: Bitter Bad?
+Melanie
+10
+
+Music: 1970s: Artist/Band: Black & White?
+Three dog night
+10
+
+Music: 1970s: Artist/Band: Black Betty?
+Ram jam
+10
+
+Music: 1970s: Artist/Band: Black Dog?
+Led zeppelin
+10
+
+Music: 1970s: Artist/Band: Black Friday?
+Steely dan
+10
+
+Music: 1970s: Artist/Band: Black Magic Woman?
+Santana
+10
+
+Music: 1970s: Artist/Band: Black Water?
+Doobie brothers
+10
+
+Music: 1970s: Artist/Band: Blinded By The Light?
+Manfred mann's earth band
+10
+
+Music: 1970s: Artist/Band: Bloody Well Right?
+Supertramp
+10
+
+Music: 1970s: Artist/Band: Blow Away?
+George harrison
+10
+
+Music: 1970s: Artist/Band: Blowing Away?
+5th dimension
+10
+
+Music: 1970s: Artist/Band: Blue Bayou?
+Linda ronstadt
+10
+
+Music: 1970s: Artist/Band: Blue Collar Man?
+Styx
+10
+
+Music: 1970s: Artist/Band: Blue Eyes Crying In The Rain?
+Willie nelson
+10
+
+Music: 1970s: Artist/Band: Blue Money?
+Van morrison
+10
+
+Music: 1970s: Artist/Band: Blue Morning Blue Day?
+Foreigner
+10
+
+Music: 1970s: Artist/Band: Blue Suede Shoes?
+Johnny rivers
+10
+
+Music: 1970s: Artist/Band: Bluebird?
+Helen reddy
+10
+
+Music: 1970s: Artist/Band: Bluer Than Blue?
+Michael johnson
+10
+
+Music: 1970s: Artist/Band: Bohemian Rhapsody?
+Queen
+10
+
+Music: 1970s: Artist/Band: Boogie Child?
+Bee gees
+10
+
+Music: 1970s: Artist/Band: Boogie Down?
+Eddie kendricks
+10
+
+Music: 1970s: Artist/Band: Boogie Fever?
+Sylvers
+10
+
+Music: 1970s: Artist/Band: Boogie Nights?
+Heatwave
+10
+
+Music: 1970s: Artist/Band: Boogie On Reggae Woman?
+Stevie wonder
+10
+
+Music: 1970s: Artist/Band: Boogie Oogie Oogie?
+A taste of honey
+10
+
+Music: 1970s: Artist/Band: Boogie Shoes?
+Kc & the sunshine band
+10
+
+Music: 1970s: Artist/Band: Boogie Wonderland?
+Earth wind & fire with the emotions
+10
+
+Music: 1970s: Artist/Band: Boogie Woogie Bugle Boy?
+Bette midler
+10
+
+Music: 1970s: Artist/Band: Booty Butt?
+Ray charles
+10
+
+Music: 1970s: Artist/Band: Border Song?
+Aretha franklin
+10
+
+Music: 1970s: Artist/Band: Born To Be Alive?
+Patrick hernandez
+10
+
+Music: 1970s: Artist/Band: Born To Run?
+Bruce springsteen
+10
+
+Music: 1970s: Artist/Band: Born To Wander?
+Rare earth
+10
+
+Music: 1970s: Artist/Band: Brand New Key?
+Melanie
+10
+
+Music: 1970s: Artist/Band: Brandy (You're A Fine Girl)?
+Looking glass
+10
+
+Music: 1970s: Artist/Band: Brazil?
+Ritchie family
+10
+
+Music: 1970s: Artist/Band: Break Away?
+Art garfunkel
+10
+
+Music: 1970s: Artist/Band: Break Up To Make Up?
+Stylistics
+10
+
+Music: 1970s: Artist/Band: Breakdown?
+Tom petty & the heartbreakers
+10
+
+Music: 1970s: Artist/Band: Breaking Up Is Hard To Do (Slow Ver.)?
+Neil sedaka
+10
+
+Music: 1970s: Artist/Band: Brick House?
+Commodores
+10
+
+Music: 1970s: Artist/Band: Bring The Boys Home?
+Freda payne
+10
+
+Music: 1970s: Artist/Band: Broken Hearted Me?
+Anne murray
+10
+
+Music: 1970s: Artist/Band: Brother Louie?
+Stories
+10
+
+Music: 1970s: Artist/Band: Brother Rapp?
+James brown
+10
+
+Music: 1970s: Artist/Band: Brown Sugar?
+Rolling stones
+10
+
+Music: 1970s: Artist/Band: Bungle In The Jungle?
+Jethro tull
+10
+
+Music: 1970s: Artist/Band: Burning Bridges?
+Mike curb congregation
+10
+
+Music: 1970s: Artist/Band: Burning Love?
+Elvis presley
+10
+
+Music: 1970s: Artist/Band: Bustin' Loose?
+Chuck brown & the soul searches
+10
+
+Music: 1970s: Artist/Band: Butter Boy?
+Fanny
+10
+
+Music: 1970s: Artist/Band: C'mon Marianne?
+Donny osmond
+10
+
+Music: 1970s: Artist/Band: Call On Me?
+Chicago
+10
+
+Music: 1970s: Artist/Band: Calling Dr. Love?
+Kiss
+10
+
+Music: 1970s: Artist/Band: Calling Occupants Of Interplanetary Craft?
+Carpenters
+10
+
+Music: 1970s: Artist/Band: Calypso?
+John denver
+10
+
+Music: 1970s: Artist/Band: Can I Get A Witness?
+Lee michaels
+10
+
+Music: 1970s: Artist/Band: Can This Be Real?
+Natural four
+10
+
+Music: 1970s: Artist/Band: Can We Still Be Friends?
+Todd rundgren
+10
+
+Music: 1970s: Artist/Band: Can You Fool?
+Glen campbell
+10
+
+Music: 1970s: Artist/Band: Can't Get Enough Of Your Love, Babe?
+Barry white
+10
+
+Music: 1970s: Artist/Band: Can't Get Enough?
+Bad company
+10
+
+Music: 1970s: Artist/Band: Can't Get It Out Of My Head?
+Electric light orchestra
+10
+
+Music: 1970s: Artist/Band: Can't Hide Love?
+Earth wind & fire
+10
+
+Music: 1970s: Artist/Band: Can't Smile Without You?
+Barry manilow
+10
+
+Music: 1970s: Artist/Band: Can't Stop Dancin'?
+Captain & tennille
+10
+
+Music: 1970s: Artist/Band: Can't Stop Loving You?
+Tom jones
+10
+
+Music: 1970s: Artist/Band: Candida?
+Dawn
+10
+
+Music: 1970s: Artist/Band: Car Wash?
+Rose royce
+10
+
+Music: 1970s: Artist/Band: Carefree Highway?
+Gordon lightfoot
+10
+
+Music: 1970s: Artist/Band: Carolina In The Pines?
+Michael martin purphey
+10
+
+Music: 1970s: Artist/Band: Carry On Wayward Son?
+Kansas
+10
+
+Music: 1970s: Artist/Band: Castles In The Air?
+Don mclean
+10
+
+Music: 1970s: Artist/Band: Cat Scratch Fever?
+Ted nugent
+10
+
+Music: 1970s: Artist/Band: Cat's In The Cradle?
+Harry chapin
+10
+
+Music: 1970s: Artist/Band: Cecilia?
+Simon & garfunkel
+10
+
+Music: 1970s: Artist/Band: Celebrate?
+Three dog night
+10
+
+Music: 1970s: Artist/Band: Change Of Heart?
+Eric carmen
+10
+
+Music: 1970s: Artist/Band: Changes In Latitudes, Changes In Attitudes?
+Jimmy buffett
+10
+
+Music: 1970s: Artist/Band: Charity Ball?
+Fanny
+10
+
+Music: 1970s: Artist/Band: Chase?
+Giorgio moroder
+10
+
+Music: 1970s: Artist/Band: Chattanooga Choo Choo?
+Tuxedo junction
+10
+
+Music: 1970s: Artist/Band: Cheaper To Keep Her?
+Johnnie taylor
+10
+
+Music: 1970s: Artist/Band: Check It Out?
+Tavares
+10
+
+Music: 1970s: Artist/Band: Check Out Your Mind?
+Impressions
+10
+
+Music: 1970s: Artist/Band: Cheeseburger In Paradise?
+Jimmy buffett
+10
+
+Music: 1970s: Artist/Band: Cherish?
+David cassidy
+10
+
+Music: 1970s: Artist/Band: Cherry Baby?
+Starz
+10
+
+Music: 1970s: Artist/Band: Cherry Cherry?
+Neil diamond
+10
+
+Music: 1970s: Artist/Band: Chevy Van?
+Sammy johns
+10
+
+Music: 1970s: Artist/Band: Chicago?
+Graham nash
+10
+
+Music: 1970s: Artist/Band: Chick A Boom (Don't Ya Jes' Love It)?
+Daddy dewdrop
+10
+
+Music: 1970s: Artist/Band: China Grove?
+Doobie brothers
+10
+
+Music: 1970s: Artist/Band: Chiquitita?
+Abba
+10
+
+Music: 1970s: Artist/Band: Chirpy Chirpy Cheep Cheep?
+Mac & katie kissoon
+10
+
+Music: 1970s: Artist/Band: Christine Sixteen?
+Kiss
+10
+
+Music: 1970s: Artist/Band: Chuck E.'S Love?
+Rickie lee jones
+10
+
+Music: 1970s: Artist/Band: Cinderella?
+Firefall
+10
+
+Music: 1970s: Artist/Band: Clair?
+Gilbert o'sullivan
+10
+
+Music: 1970s: Artist/Band: Clap For The Wolfman?
+Guess who
+10
+
+Music: 1970s: Artist/Band: Clean Up Woman?
+Betty wright
+10
+
+Music: 1970s: Artist/Band: Cleopatra Jones (Theme)?
+Joe simon
+10
+
+Music: 1970s: Artist/Band: Close Encounters (Theme)?
+Meco
+10
+
+Music: 1970s: Artist/Band: Close Encounters Of The Third Kind (Theme)?
+John williams
+10
+
+Music: 1970s: Artist/Band: Close The Door?
+Teddy pendergrass
+10
+
+Music: 1970s: Artist/Band: Close To You?
+Carpenters
+10
+
+Music: 1970s: Artist/Band: Close Your Eyes?
+Edward bear
+10
+
+Music: 1970s: Artist/Band: Closer To Home?
+Grand funk railroad
+10
+
+Music: 1970s: Artist/Band: Coconut?
+Nilsson
+10
+
+Music: 1970s: Artist/Band: Cold As Ice?
+Foreigner
+10
+
+Music: 1970s: Artist/Band: Colour My World?
+Chicago
+10
+
+Music: 1970s: Artist/Band: Come And Get It?
+Badfinger
+10
+
+Music: 1970s: Artist/Band: Come And Get Your Love?
+Redbone
+10
+
+Music: 1970s: Artist/Band: Come Get To This?
+Marvin gaye
+10
+
+Music: 1970s: Artist/Band: Come Monday?
+Jimmy buffett
+10
+
+Music: 1970s: Artist/Band: Come On Over?
+Olivia newton-john
+10
+
+Music: 1970s: Artist/Band: Come Running?
+Van morrison
+10
+
+Music: 1970s: Artist/Band: Come Sail Away?
+Styx
+10
+
+Music: 1970s: Artist/Band: Come Saturday Morning?
+Sandpipers
+10
+
+Music: 1970s: Artist/Band: Come To Me?
+France joli
+10
+
+Music: 1970s: Artist/Band: Come Together?
+Aerosmith
+10
+
+Music: 1970s: Artist/Band: Confusion?
+Electric light orchestra
+10
+
+Music: 1970s: Artist/Band: Conquistador?
+Procol harum
+10
+
+Music: 1970s: Artist/Band: Convention '72?
+Delegates
+10
+
+Music: 1970s: Artist/Band: Convoy?
+C.w. mccall
+10
+
+Music: 1970s: Artist/Band: Cook With Honey?
+Judy collins
+10
+
+Music: 1970s: Artist/Band: Cool Aid?
+Paul humphrey
+10
+
+Music: 1970s: Artist/Band: Cool Change?
+Little river band
+10
+
+Music: 1970s: Artist/Band: Copacabana (At The Copa)?
+Barry manilow
+10
+
+Music: 1970s: Artist/Band: Corazon?
+Carole king
+10
+
+Music: 1970s: Artist/Band: Corner Of The Sky?
+Jackson 5
+10
+
+Music: 1970s: Artist/Band: Could It Be Forever?
+David cassidy
+10
+
+Music: 1970s: Artist/Band: Could It Be I'm Falling In Love?
+Spinners
+10
+
+Music: 1970s: Artist/Band: Could It Be Magic?
+Barry manilow
+10
+
+Music: 1970s: Artist/Band: Couldn't Get It Right?
+Climax blues band
+10
+
+Music: 1970s: Artist/Band: Count On Me?
+Jefferson starship
+10
+
+Music: 1970s: Artist/Band: Country Boy?
+Glen campbell
+10
+
+Music: 1970s: Artist/Band: Country Road?
+James taylor
+10
+
+Music: 1970s: Artist/Band: Coward Of The County?
+Kenny rogers
+10
+
+Music: 1970s: Artist/Band: Crackerbox Palace?
+George harrison
+10
+
+Music: 1970s: Artist/Band: Cracklin' Rosie?
+Neil diamond
+10
+
+Music: 1970s: Artist/Band: Crazy Horses?
+Osmonds
+10
+
+Music: 1970s: Artist/Band: Crazy Mama?
+J.j. cale
+10
+
+Music: 1970s: Artist/Band: Crazy On You?
+Heart
+10
+
+Music: 1970s: Artist/Band: Cried Like A Baby?
+Bobby sherman
+10
+
+Music: 1970s: Artist/Band: Crocodile Rock?
+Elton john
+10
+
+Music: 1970s: Artist/Band: Cruel To Be Kind?
+Nick lowe
+10
+
+Music: 1970s: Artist/Band: Cruisin'?
+Smokey robinson
+10
+
+Music: 1970s: Artist/Band: Cry Me A River?
+Joe cocker
+10
+
+Music: 1970s: Artist/Band: Cupid?
+Dawn
+10
+
+Music: 1970s: Artist/Band: Cut The Cake?
+Average white band
+10
+
+Music: 1970s: Artist/Band: D.O.A?
+Bloodrock
+10
+
+Music: 1970s: Artist/Band: D'yer Mak'er?
+Led zeppelin
+10
+
+Music: 1970s: Artist/Band: Da Doo Ron Ron?
+Shaun cassidy
+10
+
+Music: 1970s: Artist/Band: Da Ya Think I'm Sexy?
+Rod stewart
+10
+
+Music: 1970s: Artist/Band: Daddy Could Swear, I Declare?
+Gladys knight & the pips
+10
+
+Music: 1970s: Artist/Band: Daddy Don't You Walk So Fast?
+Wayne newton
+10
+
+Music: 1970s: Artist/Band: Daddy's Home?
+Jermaine jackson
+10
+
+Music: 1970s: Artist/Band: Daisey Jane?
+America
+10
+
+Music: 1970s: Artist/Band: Daisy A Day?
+Jud strunk
+10
+
+Music: 1970s: Artist/Band: Damned If I Do?
+Alan parsons project
+10
+
+Music: 1970s: Artist/Band: Dance The Night Away?
+Van halen
+10
+
+Music: 1970s: Artist/Band: Dance Wit Me?
+Rufus
+10
+
+Music: 1970s: Artist/Band: Dance, Dance, Dance?
+Chic
+10
+
+Music: 1970s: Artist/Band: Dance?
+Sylvester
+10
+
+Music: 1970s: Artist/Band: Dancin' Fool?
+Guess who
+10
+
+Music: 1970s: Artist/Band: Dancin' Man?
+Q
+10
+
+Music: 1970s: Artist/Band: Dancin' Shoes?
+Nigel olsson
+10
+
+Music: 1970s: Artist/Band: Dancing In The Moonlight?
+King harvest
+10
+
+Music: 1970s: Artist/Band: Dancing Machine?
+Jackson 5
+10
+
+Music: 1970s: Artist/Band: Dancing Queen?
+Abba
+10
+
+Music: 1970s: Artist/Band: Dangling On A String?
+Chairmen of the board
+10
+
+Music: 1970s: Artist/Band: Daniel?
+Elton john
+10
+
+Music: 1970s: Artist/Band: Danny's Song?
+Anne murray
+10
+
+Music: 1970s: Artist/Band: Dark Horse?
+George harrison
+10
+
+Music: 1970s: Artist/Band: Dark Lady?
+Cher
+10
+
+Music: 1970s: Artist/Band: Daughter Of Darkness?
+Tom jones
+10
+
+Music: 1970s: Artist/Band: Day After Day?
+Badfinger
+10
+
+Music: 1970s: Artist/Band: Day By Day?
+Godspell
+10
+
+Music: 1970s: Artist/Band: Day Dreaming?
+Aretha franklin
+10
+
+Music: 1970s: Artist/Band: Days Gone Down?
+Gerry rafferty
+10
+
+Music: 1970s: Artist/Band: Daytime Friends?
+Kenny rogers
+10
+
+Music: 1970s: Artist/Band: Dazz?
+Brick
+10
+
+Music: 1970s: Artist/Band: Deacon Blues?
+Steely dan
+10
+
+Music: 1970s: Artist/Band: Dead Skunk?
+Loudon wainwright iii
+10
+
+Music: 1970s: Artist/Band: December 1963 (Oh What A Night)?
+Four seasons
+10
+
+Music: 1970s: Artist/Band: Deep Purple?
+Donny & marie osmond
+10
+
+Music: 1970s: Artist/Band: Deeper & Deeper?
+Freda payne
+10
+
+Music: 1970s: Artist/Band: Deeper Than The Night?
+Olivia newton-john
+10
+
+Music: 1970s: Artist/Band: Deja Vu?
+Dionne warwick
+10
+
+Music: 1970s: Artist/Band: Delta Dawn?
+Helen reddy
+10
+
+Music: 1970s: Artist/Band: Dependin' On You?
+Doobie brothers
+10
+
+Music: 1970s: Artist/Band: Desiderata?
+Les crane
+10
+
+Music: 1970s: Artist/Band: Desiree?
+Neil diamond
+10
+
+Music: 1970s: Artist/Band: Devil Woman?
+Cliff richard
+10
+
+Music: 1970s: Artist/Band: Devil's Gun?
+C.j. & co.
+10
+
+Music: 1970s: Artist/Band: Devotion?
+Earth wind & fire
+10
+
+Music: 1970s: Artist/Band: Dialogue?
+Chicago
+10
+
+Music: 1970s: Artist/Band: Diamond Girl?
+Seals & crofts
+10
+
+Music: 1970s: Artist/Band: Diamonds And Rust?
+Joan baez
+10
+
+Music: 1970s: Artist/Band: Diary?
+Bread
+10
+
+Music: 1970s: Artist/Band: Did You Boogie?
+Flash cadillac & the continental kids
+10
+
+Music: 1970s: Artist/Band: Didn't I (Blow Your Mind This Time)?
+Delfonics
+10
+
+Music: 1970s: Artist/Band: Different Worlds?
+Maureen mcgovern
+10
+
+Music: 1970s: Artist/Band: Dim All The Lights?
+Donna summer
+10
+
+Music: 1970s: Artist/Band: Ding Dong Ding Dong?
+George harrison
+10
+
+Music: 1970s: Artist/Band: Dirty White Boy?
+Foreigner
+10
+
+Music: 1970s: Artist/Band: Disco Duck?
+Rick dees & his cast of idiots
+10
+
+Music: 1970s: Artist/Band: Disco Inferno?
+Trammps
+10
+
+Music: 1970s: Artist/Band: Disco Lady?
+Johnnie taylor
+10
+
+Music: 1970s: Artist/Band: Disco Lucy?
+Wilton place street band
+10
+
+Music: 1970s: Artist/Band: Disco Nights?
+Gq
+10
+
+Music: 1970s: Artist/Band: Disco Queen?
+Hot chocolate
+10
+
+Music: 1970s: Artist/Band: Distant Lover?
+Marvin gaye
+10
+
+Music: 1970s: Artist/Band: Do It Again?
+Steely dan
+10
+
+Music: 1970s: Artist/Band: Do It Anyway You Wanna?
+Peoples choice
+10
+
+Music: 1970s: Artist/Band: Do It Baby?
+Miracles
+10
+
+Music: 1970s: Artist/Band: Do It Or Die?
+Atlanta rhythm section
+10
+
+Music: 1970s: Artist/Band: Do That To Me One More Time?
+Captain & tennille
+10
+
+Music: 1970s: Artist/Band: Do The Funky Chicken?
+Rufus thomas
+10
+
+Music: 1970s: Artist/Band: Do What You Wanna Do?
+Five flights up
+10
+
+Music: 1970s: Artist/Band: Do What You Want, Be What You Are?
+Daryl hall & john oates
+10
+
+Music: 1970s: Artist/Band: Do Ya Wanna Get Funky With Me?
+Peter brown
+10
+
+Music: 1970s: Artist/Band: Do Ya?
+Electric light orchestra
+10
+
+Music: 1970s: Artist/Band: Do You Believe In Magic?
+Shaun cassidy
+10
+
+Music: 1970s: Artist/Band: Do You Feel Like We Do?
+Peter frampton
+10
+
+Music: 1970s: Artist/Band: Do You Know What I Mean?
+Lee michaels
+10
+
+Music: 1970s: Artist/Band: Do You See My Love?
+Jr. walker & the all stars
+10
+
+Music: 1970s: Artist/Band: Do You Wanna Make Love?
+Peter mccann
+10
+
+Music: 1970s: Artist/Band: Do You Want To Dance?
+Bette midler
+10
+
+Music: 1970s: Artist/Band: Do Your Dance?
+Rose royce
+10
+
+Music: 1970s: Artist/Band: Do Your Thing?
+Isaac hayes
+10
+
+Music: 1970s: Artist/Band: Doctor My Eyes?
+Jackson browne
+10
+
+Music: 1970s: Artist/Band: Doctor Tarr And Professor Fether?
+Alan parsons project
+10
+
+Music: 1970s: Artist/Band: Doctor's Orders?
+Carol douglas
+10
+
+Music: 1970s: Artist/Band: Does Anybody Really Know What Time It Is?
+Chicago
+10
+
+Music: 1970s: Artist/Band: Does Your Mother Know?
+Abba
+10
+
+Music: 1970s: Artist/Band: Doesn't Somebody Want To Be Wanted?
+Partridge family
+10
+
+Music: 1970s: Artist/Band: Dog & Butterfly?
+Heart
+10
+
+Music: 1970s: Artist/Band: Doing It To Death?
+J.b.'s
+10
+
+Music: 1970s: Artist/Band: Domino?
+Van morrison
+10
+
+Music: 1970s: Artist/Band: Don't Bring Me Down?
+Electric light orchestra
+10
+
+Music: 1970s: Artist/Band: Don't Call Us, We'll Call You?
+Sugarloaf
+10
+
+Music: 1970s: Artist/Band: Don't Change Horses?
+Tower of power
+10
+
+Music: 1970s: Artist/Band: Don't Change On Me?
+Ray charles
+10
+
+Music: 1970s: Artist/Band: Don't Cross The River?
+America
+10
+
+Music: 1970s: Artist/Band: Don't Cry Out Loud?
+Melissa Manchester
+10
+
+Music: 1970s: Artist/Band: Don't Do It?
+The band
+10
+
+Music: 1970s: Artist/Band: Don't Do Me Like That?
+Tom petty & the heartbreakers
+10
+
+Music: 1970s: Artist/Band: Don't Ever Be Lonely?
+Cornelius brothers & sister rose
+10
+
+Music: 1970s: Artist/Band: Don't Ever Wanna Lose Ya?
+New England
+10
+
+Music: 1970s: Artist/Band: Don't Expect Me To Be Your Friend?
+Lobo
+10
+
+Music: 1970s: Artist/Band: Don't Give Up On Us?
+David soul
+10
+
+Music: 1970s: Artist/Band: Don't Go Breaking My Heart?
+Elton john & kiki dee
+10
+
+Music: 1970s: Artist/Band: Don't Hold Back?
+Chanson
+10
+
+Music: 1970s: Artist/Band: Don't It Make My Brown Eyes Blue?
+Crystal gayle
+10
+
+Music: 1970s: Artist/Band: Don't Knock My Love?
+Wilson pickett
+10
+
+Music: 1970s: Artist/Band: Don't Leave Me This Way?
+Thelma houston
+10
+
+Music: 1970s: Artist/Band: Don't Let Go?
+Isaac hayes
+10
+
+Music: 1970s: Artist/Band: Don't Let Me Be Lonely Tonight?
+James taylor
+10
+
+Music: 1970s: Artist/Band: Don't Let Me Be Misunderstood?
+Santa esmeralda
+10
+
+Music: 1970s: Artist/Band: Don't Let The Green Grass Fool You?
+Wilson pickett
+10
+
+Music: 1970s: Artist/Band: Don't Let The Sun Go Down On Me?
+Elton john
+10
+
+Music: 1970s: Artist/Band: Don't Look Back?
+Boston
+10
+
+Music: 1970s: Artist/Band: Don't Play That Song?
+Aretha franklin
+10
+
+Music: 1970s: Artist/Band: Don't Say You Don't Remember?
+Beverly bremers
+10
+
+Music: 1970s: Artist/Band: Don't Stop 'Til You Get Enough?
+Michael jackson
+10
+
+Music: 1970s: Artist/Band: Don't Stop Believin'?
+Olivia newton-john
+10
+
+Music: 1970s: Artist/Band: Don't Stop?
+Fleetwood mac
+10
+
+Music: 1970s: Artist/Band: Don't Take Away The Music?
+Tavares
+10
+
+Music: 1970s: Artist/Band: Don't Take Your Love?
+Manhattans
+10
+
+Music: 1970s: Artist/Band: Don't Tell Me Goodnight?
+Lobo
+10
+
+Music: 1970s: Artist/Band: Don't Throw It All Away?
+Andy gibb
+10
+
+Music: 1970s: Artist/Band: Don't Want To Live Without It?
+Pablo cruise
+10
+
+Music: 1970s: Artist/Band: Don't Worry Baby?
+B.j. thomas
+10
+
+Music: 1970s: Artist/Band: Don't You Worry 'Bout A Thing?
+Stevie wonder
+10
+
+Music: 1970s: Artist/Band: Don't You Write Her Off?
+Mcguinn, clark & hillman
+10
+
+Music: 1970s: Artist/Band: Doo Doo Doo Doo Doo?
+Rolling stones
+10
+
+Music: 1970s: Artist/Band: Doraville?
+Atlanta rhythm section
+10
+
+Music: 1970s: Artist/Band: Double Barrel?
+Dave & ansel collins
+10
+
+Music: 1970s: Artist/Band: Double Lovin'?
+Osmonds
+10
+
+Music: 1970s: Artist/Band: Double Vision?
+Foreigner
+10
+
+Music: 1970s: Artist/Band: Down By The Lazy River?
+Osmonds
+10
+
+Music: 1970s: Artist/Band: Draggin' The Line?
+Tommy james
+10
+
+Music: 1970s: Artist/Band: Dream Baby?
+Glen campbell
+10
+
+Music: 1970s: Artist/Band: Dream Merchant?
+New birth
+10
+
+Music: 1970s: Artist/Band: Dream On [R] Orig. Charted 1973?
+Aerosmith
+10
+
+Music: 1970s: Artist/Band: Dream On?
+Righteous brothers
+10
+
+Music: 1970s: Artist/Band: Dream Police?
+Cheap trick
+10
+
+Music: 1970s: Artist/Band: Dream Weaver?
+Gary wright
+10
+
+Music: 1970s: Artist/Band: Dreaming?
+Blondie
+10
+
+Music: 1970s: Artist/Band: Dreams?
+Fleetwood mac
+10
+
+Music: 1970s: Artist/Band: Dreidel?
+Don mclean
+10
+
+Music: 1970s: Artist/Band: Drift Away?
+Dobie gray
+10
+
+Music: 1970s: Artist/Band: Driver's Seat?
+Sniff 'n' the tears
+10
+
+Music: 1970s: Artist/Band: Drivin' Wheel?
+Foghat
+10
+
+Music: 1970s: Artist/Band: Drowning In The Sea Of Love?
+Joe simon
+10
+
+Music: 1970s: Artist/Band: Dueling Banjos?
+Eric weissberg & steve mandell
+10
+
+Music: 1970s: Artist/Band: Dusic?
+Brick
+10
+
+Music: 1970s: Artist/Band: Dust In The Wind?
+Kansas
+10
+
+Music: 1970s: Artist/Band: Dynomite?
+Bazuka
+10
+
+Music: 1970s: Artist/Band: Earache My Eye Featuring Alice Bowie?
+Cheech & chong
+10
+
+Music: 1970s: Artist/Band: Easy Come, Easy Go?
+Bobby sherman
+10
+
+Music: 1970s: Artist/Band: Easy Livin?
+Uriah heep
+10
+
+Music: 1970s: Artist/Band: Easy Loving?
+Freddie hart
+10
+
+Music: 1970s: Artist/Band: Easy To Love?
+Leo sayer
+10
+
+Music: 1970s: Artist/Band: Easy?
+Commodores
+10
+
+Music: 1970s: Artist/Band: Ebony Eyes?
+Bob welch
+10
+
+Music: 1970s: Artist/Band: Ecstasy?
+Ohio players
+10
+
+Music: 1970s: Artist/Band: Edge Of The Universe?
+Bee gees
+10
+
+Music: 1970s: Artist/Band: Ego?
+Elton john
+10
+
+Music: 1970s: Artist/Band: Eighteen With A Bullet?
+Pete wingfield
+10
+
+Music: 1970s: Artist/Band: Eighteen?
+Alice cooper
+10
+
+Music: 1970s: Artist/Band: El Condor Pasa?
+Simon & garfunkel
+10
+
+Music: 1970s: Artist/Band: Elected?
+Alice cooper
+10
+
+Music: 1970s: Artist/Band: Emma?
+Hot chocolate
+10
+
+Music: 1970s: Artist/Band: Energy Crisis '74?
+Dickie goodman
+10
+
+Music: 1970s: Artist/Band: Engine Number 9?
+Wilson pickett
+10
+
+Music: 1970s: Artist/Band: Enjoy Yourself?
+Jacksons
+10
+
+Music: 1970s: Artist/Band: Eres Tu?
+Mocedades
+10
+
+Music: 1970s: Artist/Band: Escape-Ism?
+James brown
+10
+
+Music: 1970s: Artist/Band: Escape?
+Rupert holmes
+10
+
+Music: 1970s: Artist/Band: Even Now?
+Barry manilow
+10
+
+Music: 1970s: Artist/Band: Evergreen?
+Barbra streisand
+10
+
+Music: 1970s: Artist/Band: Everlasting Love?
+Carl carlton
+10
+
+Music: 1970s: Artist/Band: Every 1's A Winner?
+Hot chocolate
+10
+
+Music: 1970s: Artist/Band: Every Day Of My Life?
+Bobby vinton
+10
+
+Music: 1970s: Artist/Band: Every Kinda People?
+Robert palmer
+10
+
+Music: 1970s: Artist/Band: Every Time I Think Of You?
+Babys
+10
+
+Music: 1970s: Artist/Band: Every Time You Touch Me?
+Charlie rich
+10
+
+Music: 1970s: Artist/Band: Every Which Way But Loose?
+Eddie rabbitt
+10
+
+Music: 1970s: Artist/Band: Everybody Be Dancin'?
+Starbuck
+10
+
+Music: 1970s: Artist/Band: Everybody Dance?
+Chic
+10
+
+Music: 1970s: Artist/Band: Everybody Needs Love?
+Stephen bishop
+10
+
+Music: 1970s: Artist/Band: Everybody Plays The Fool?
+Main ingredient
+10
+
+Music: 1970s: Artist/Band: Everybody's Everything?
+Santana
+10
+
+Music: 1970s: Artist/Band: Everybody's Got The Right To Love?
+Supremes
+10
+
+Music: 1970s: Artist/Band: Everybody's Out Of Town?
+B.j. thomas
+10
+
+Music: 1970s: Artist/Band: Everything I Own?
+Bread
+10
+
+Music: 1970s: Artist/Band: Everything Is Beautiful?
+Ray stevens
+10
+
+Music: 1970s: Artist/Band: Everything's Tuesday?
+Chairmen of the board
+10
+
+Music: 1970s: Artist/Band: Evil Ways?
+Santana
+10
+
+Music: 1970s: Artist/Band: Evil Woman?
+Electric light orchestra
+10
+
+Music: 1970s: Artist/Band: Express Yourself?
+Watts 103rd street rhythm band
+10
+
+Music: 1970s: Artist/Band: Express?
+B.t. express
+10
+
+Music: 1970s: Artist/Band: Eyes Of Laura Mars (Theme)?
+Barbra streisand
+10
+
+Music: 1970s: Artist/Band: Fairytale?
+Pointer sisters
+10
+
+Music: 1970s: Artist/Band: Fallen Angel?
+Frankie valli
+10
+
+Music: 1970s: Artist/Band: Falling?
+Leblanc & carr
+10
+
+Music: 1970s: Artist/Band: Fame?
+David bowie
+10
+
+Music: 1970s: Artist/Band: Family Affair?
+Sly & the family stone
+10
+
+Music: 1970s: Artist/Band: Fancy Dancer?
+Commodores
+10
+
+Music: 1970s: Artist/Band: Fancy?
+Bobbie gentry
+10
+
+Music: 1970s: Artist/Band: Fanny (Be Tender With My Love)?
+Bee gees
+10
+
+Music: 1970s: Artist/Band: Fantasy?
+Earth wind & fire
+10
+
+Music: 1970s: Artist/Band: Fat Bottomed Girls?
+Queen
+10
+
+Music: 1970s: Artist/Band: Feelin' Stronger Every Day?
+Chicago
+10
+
+Music: 1970s: Artist/Band: Feeling Alright?
+Joe cocker
+10
+
+Music: 1970s: Artist/Band: Feelings?
+Morris albert
+10
+
+Music: 1970s: Artist/Band: Feels Like The First Time?
+Foreigner
+10
+
+Music: 1970s: Artist/Band: Feels So Good?
+Chuck mangione
+10
+
+Music: 1970s: Artist/Band: Fernando?
+Abba
+10
+
+Music: 1970s: Artist/Band: Ffun?
+Con funk shun
+10
+
+Music: 1970s: Artist/Band: Fight The Power?
+Isley brothers
+10
+
+Music: 1970s: Artist/Band: Finally Got Myself Together?
+Impressions
+10
+
+Music: 1970s: Artist/Band: Fins?
+Jimmy buffett
+10
+
+Music: 1970s: Artist/Band: Fire And Rain?
+James taylor
+10
+
+Music: 1970s: Artist/Band: Fire And Water?
+Wilson pickett
+10
+
+Music: 1970s: Artist/Band: Fire On The Mountain?
+Marshall tucker band
+10
+
+Music: 1970s: Artist/Band: Fire, Baby I'm On Fire?
+Andy kim
+10
+
+Music: 1970s: Artist/Band: Fish Ain't Bitin'?
+Lamont dozier
+10
+
+Music: 1970s: Artist/Band: Flash Light?
+Parliament
+10
+
+Music: 1970s: Artist/Band: Float On?
+Floaters
+10
+
+Music: 1970s: Artist/Band: Floy Joy?
+Supremes
+10
+
+Music: 1970s: Artist/Band: Fly Away?
+John denver
+10
+
+Music: 1970s: Artist/Band: Fly Like An Eagle?
+Steve miller band
+10
+
+Music: 1970s: Artist/Band: Fly Robin Fly?
+Silver convention
+10
+
+Music: 1970s: Artist/Band: Flying High?
+Commodores
+10
+
+Music: 1970s: Artist/Band: Fm?
+Steely dan
+10
+
+Music: 1970s: Artist/Band: Follow You Follow Me?
+Genesis
+10
+
+Music: 1970s: Artist/Band: Fool To Cry?
+Rolling stones
+10
+
+Music: 1970s: Artist/Band: Fool?
+Chris rea
+10
+
+Music: 1970s: Artist/Band: Fooled Around And Fell In Love?
+Elvin bishop
+10
+
+Music: 1970s: Artist/Band: Fooling Yourself?
+Styx
+10
+
+Music: 1970s: Artist/Band: Footstompin' Music?
+Grand funk railroad
+10
+
+Music: 1970s: Artist/Band: For All We Know?
+Carpenters
+10
+
+Music: 1970s: Artist/Band: For The Good Times?
+Ray price
+10
+
+Music: 1970s: Artist/Band: For The Love Of Him?
+Bobbi martin
+10
+
+Music: 1970s: Artist/Band: For The Love Of Money?
+O'jays
+10
+
+Music: 1970s: Artist/Band: For The Love Of You?
+Isley brothers
+10
+
+Music: 1970s: Artist/Band: Forever In Blue Jeans?
+Neil diamond
+10
+
+Music: 1970s: Artist/Band: Found A Cure?
+Ashford & simpson
+10
+
+Music: 1970s: Artist/Band: Fox On The Run?
+Sweet
+10
+
+Music: 1970s: Artist/Band: Frankenstein?
+Edgar winter group
+10
+
+Music: 1970s: Artist/Band: Freddie's Dead?
+Curtis mayfield
+10
+
+Music: 1970s: Artist/Band: Free Bird?
+Lynyrd skynyrd
+10
+
+Music: 1970s: Artist/Band: Free Man In Paris?
+Joni mitchell
+10
+
+Music: 1970s: Artist/Band: Free Ride?
+Edgar winter group
+10
+
+Music: 1970s: Artist/Band: From His Woman To You?
+Barbara mason
+10
+
+Music: 1970s: Artist/Band: From The Beginning?
+Emerson lake & palmer
+10
+
+Music: 1970s: Artist/Band: Full Of Fire?
+Al green
+10
+
+Music: 1970s: Artist/Band: Funky Nassua?
+Beginning of the end
+10
+
+Music: 1970s: Artist/Band: Funky Stuff?
+Kool & the gang
+10
+
+Music: 1970s: Artist/Band: Funky Worm?
+Ohio players
+10
+
+Music: 1970s: Artist/Band: Funny Face?
+Donna fargo
+10
+
+Music: 1970s: Artist/Band: Future Shock?
+Curtis mayfield
+10
+
+Music: 1970s: Artist/Band: Galaxy?
+War
+10
+
+Music: 1970s: Artist/Band: Games?
+Redeye
+10
+
+Music: 1970s: Artist/Band: Garden Party?
+Rick nelson & the stone canyon band
+10
+
+Music: 1970s: Artist/Band: George Jackson?
+Bob dylan
+10
+
+Music: 1970s: Artist/Band: Geronimo's Cadillac?
+Michael martin murphey
+10
+
+Music: 1970s: Artist/Band: Get Closer?
+Seals & crofts
+10
+
+Music: 1970s: Artist/Band: Get Dancin'?
+Disco tex & the sex o lettes
+10
+
+Music: 1970s: Artist/Band: Get Down Tonight?
+Kc & the sunshine band
+10
+
+Music: 1970s: Artist/Band: Get Down, Get Down?
+Joe simon
+10
+
+Music: 1970s: Artist/Band: Get Down?
+Gilbert o'sullivan
+10
+
+Music: 1970s: Artist/Band: Get It On?
+Chase
+10
+
+Music: 1970s: Artist/Band: Get It Right Next Time?
+Gerry rafferty
+10
+
+Music: 1970s: Artist/Band: Get It Together?
+Jackson 5
+10
+
+Music: 1970s: Artist/Band: Get Off?
+Foxy
+10
+
+Music: 1970s: Artist/Band: Get On The Good Foot?
+James brown
+10
+
+Music: 1970s: Artist/Band: Get Ready?
+Rare earth
+10
+
+Music: 1970s: Artist/Band: Get The Funk Out Ma Face?
+Brothers johnson
+10
+
+Music: 1970s: Artist/Band: Get Up And Boogie?
+Silver convention
+10
+
+Music: 1970s: Artist/Band: Get Up I Feel Like Being Like A Sex Machine?
+James brown
+10
+
+Music: 1970s: Artist/Band: Get Up, Get Into It, Get Involved?
+James brown
+10
+
+Music: 1970s: Artist/Band: Get Used To It?
+Roger voudouris
+10
+
+Music: 1970s: Artist/Band: Getaway?
+Earth wind & fire
+10
+
+Music: 1970s: Artist/Band: Gettin' Ready For Love?
+Diana ross
+10
+
+Music: 1970s: Artist/Band: Getting Closer?
+Wings
+10
+
+Music: 1970s: Artist/Band: Ghetto Child?
+Spinners
+10
+
+Music: 1970s: Artist/Band: Gimme Dat Ding?
+Pipkins
+10
+
+Music: 1970s: Artist/Band: Girl Of My Dreams?
+Bram tchaikovsky
+10
+
+Music: 1970s: Artist/Band: Girls' School?
+Wings
+10
+
+Music: 1970s: Artist/Band: Give A Little Bit?
+Supertramp
+10
+
+Music: 1970s: Artist/Band: Give Ireland Back To The Irish?
+Wings
+10
+
+Music: 1970s: Artist/Band: Give It To Me?
+J. geils band
+10
+
+Music: 1970s: Artist/Band: Give It To The People?
+Righteous brothers
+10
+
+Music: 1970s: Artist/Band: Give It Up?
+Tyrone davis
+10
+
+Music: 1970s: Artist/Band: Give It What You Got?
+B.t. express
+10
+
+Music: 1970s: Artist/Band: Give Me Just A Little More Time?
+Chairmen of the board
+10
+
+Music: 1970s: Artist/Band: Give Me Love?
+George harrison
+10
+
+Music: 1970s: Artist/Band: Give Me Your Love?
+Barbara mason
+10
+
+Music: 1970s: Artist/Band: Give More Power To The People?
+Chi-lites
+10
+
+Music: 1970s: Artist/Band: Give Your Baby A Standing Ovation?
+Dells
+10
+
+Music: 1970s: Artist/Band: Glasshouse?
+Temptations
+10
+
+Music: 1970s: Artist/Band: Gloria?
+Enchantment
+10
+
+Music: 1970s: Artist/Band: Glory Bound?
+Grass roots
+10
+
+Music: 1970s: Artist/Band: Go All The Way?
+Raspberries
+10
+
+Music: 1970s: Artist/Band: Go Away Little Girl?
+Donny osmond
+10
+
+Music: 1970s: Artist/Band: Go Back?
+Crabby appleton
+10
+
+Music: 1970s: Artist/Band: Go Down Gamblin'?
+Blood, sweat & tears
+10
+
+Music: 1970s: Artist/Band: Go Your Own Way?
+Fleetwood mac
+10
+
+Music: 1970s: Artist/Band: God, Love And Rock & Roll?
+Teegarden & van winkle
+10
+
+Music: 1970s: Artist/Band: Goin' Home?
+Osmonds
+10
+
+Music: 1970s: Artist/Band: Gold?
+John stewart
+10
+
+Music: 1970s: Artist/Band: Golden Years?
+David bowie
+10
+
+Music: 1970s: Artist/Band: Gone Too Far?
+England dan & john ford coley
+10
+
+Music: 1970s: Artist/Band: Gone?
+Joey heatherton
+10
+
+Music: 1970s: Artist/Band: Gonna Fly Now?
+Maynard ferguson
+10
+
+Music: 1970s: Artist/Band: Good Friend?
+Mary macgregor
+10
+
+Music: 1970s: Artist/Band: Good Girls Don't?
+Knack
+10
+
+Music: 1970s: Artist/Band: Good Hearted Woman?
+Willie nelson & waylon jennings
+10
+
+Music: 1970s: Artist/Band: Good Lovin' Gone Bad?
+Bad company
+10
+
+Music: 1970s: Artist/Band: Good Morning Heartache?
+Diana ross
+10
+
+Music: 1970s: Artist/Band: Good Time Charlie's Got The Blues?
+Danny o'keefe
+10
+
+Music: 1970s: Artist/Band: Good Times?
+Chic
+10
+
+Music: 1970s: Artist/Band: Good Timin'?
+Beach boys
+10
+
+Music: 1970s: Artist/Band: Good Vibrations?
+Todd rundgren
+10
+
+Music: 1970s: Artist/Band: Goodbye Girl?
+David gates
+10
+
+Music: 1970s: Artist/Band: Goodbye Stranger?
+Supertramp
+10
+
+Music: 1970s: Artist/Band: Goodbye To Love?
+Carpenters
+10
+
+Music: 1970s: Artist/Band: Goodbye Yellow Brick Road?
+Elton john
+10
+
+Music: 1970s: Artist/Band: Goodnight Tonight?
+Wings
+10
+
+Music: 1970s: Artist/Band: Got To Be Real?
+Cheryl lynn
+10
+
+Music: 1970s: Artist/Band: Got To Be There?
+Michael jackson
+10
+
+Music: 1970s: Artist/Band: Got To Give It Up?
+Marvin gaye
+10
+
+Music: 1970s: Artist/Band: Gotta Hold On To This Feeling?
+Jr. walker & the all stars
+10
+
+Music: 1970s: Artist/Band: Gotta Serve Somebody?
+Bob dylan
+10
+
+Music: 1970s: Artist/Band: Grease?
+Frankie valli
+10
+
+Music: 1970s: Artist/Band: Green-Eyed Lady?
+Sugarloaf
+10
+
+Music: 1970s: Artist/Band: Groove Me?
+King floyd
+10
+
+Music: 1970s: Artist/Band: Groovey Situation?
+Gene chandler
+10
+
+Music: 1970s: Artist/Band: Grow Some Funk Of Your Own?
+Elton john
+10
+
+Music: 1970s: Artist/Band: Gypsy Man?
+War
+10
+
+Music: 1970s: Artist/Band: Gypsy Woman?
+Brian hyland
+10
+
+Music: 1970s: Artist/Band: Gypsys, Tramps & Thieves?
+Cher
+10
+
+Music: 1970s: Artist/Band: Half The Way?
+Crystal gayle
+10
+
+Music: 1970s: Artist/Band: Half-Breed?
+Cher
+10
+
+Music: 1970s: Artist/Band: Hallelujah Day?
+Jackson 5
+10
+
+Music: 1970s: Artist/Band: Hallelujah?
+Sweathog
+10
+
+Music: 1970s: Artist/Band: Hand Me Down World?
+Guess who
+10
+
+Music: 1970s: Artist/Band: Handy Man?
+James taylor
+10
+
+Music: 1970s: Artist/Band: Hang On In There Baby?
+Johnny bristol
+10
+
+Music: 1970s: Artist/Band: Happiness Is Just Around The Bend?
+Main ingredient
+10
+
+Music: 1970s: Artist/Band: Happiness?
+Pointer sisters
+10
+
+Music: 1970s: Artist/Band: Happy Anniversary?
+Little river band
+10
+
+Music: 1970s: Artist/Band: Happy Days?
+Pratt & mcclain
+10
+
+Music: 1970s: Artist/Band: Happy Music?
+Blackbyrds
+10
+
+Music: 1970s: Artist/Band: Happy People?
+Temptations
+10
+
+Music: 1970s: Artist/Band: Happy?
+Rolling stones
+10
+
+Music: 1970s: Artist/Band: Hard Luck Woman?
+Kiss
+10
+
+Music: 1970s: Artist/Band: Hard Rock Cafe?
+Carole king
+10
+
+Music: 1970s: Artist/Band: Harry Hippie?
+Bobby womack
+10
+
+Music: 1970s: Artist/Band: Harry Truman?
+Chicago
+10
+
+Music: 1970s: Artist/Band: Have You Ever Seen The Rain?
+Creedence clearwater revival
+10
+
+Music: 1970s: Artist/Band: Have You Never Been Mellow?
+Olivia newton-john
+10
+
+Music: 1970s: Artist/Band: Have You Seen Her?
+Chi-lites
+10
+
+Music: 1970s: Artist/Band: Haven't Got Time For The Pain?
+Carly simon
+10
+
+Music: 1970s: Artist/Band: Haven't Stopped Dancing Yet?
+Gonzalez
+10
+
+Music: 1970s: Artist/Band: Having My Baby?
+Paul anka
+10
+
+Music: 1970s: Artist/Band: He Don't Love You (Like I Love You)?
+Dawn
+10
+
+Music: 1970s: Artist/Band: He's A Friend?
+Eddie kendricks
+10
+
+Music: 1970s: Artist/Band: He's The Greatest Dancer?
+Sister sledge
+10
+
+Music: 1970s: Artist/Band: Head Games?
+Foreigner
+10
+
+Music: 1970s: Artist/Band: Heard It In A Love Song?
+Marshall tucker band
+10
+
+Music: 1970s: Artist/Band: Heart Of Glass?
+Blondie
+10
+
+Music: 1970s: Artist/Band: Heart Of Gold?
+Neil young
+10
+
+Music: 1970s: Artist/Band: Heart Of The Night?
+Poco
+10
+
+Music: 1970s: Artist/Band: Heartache Tonight?
+Eagles
+10
+
+Music: 1970s: Artist/Band: Heartbeat It's A Lovebeat?
+Defranco family
+10
+
+Music: 1970s: Artist/Band: Heartbreaker?
+Dolly parton
+10
+
+Music: 1970s: Artist/Band: Heartless?
+Heart
+10
+
+Music: 1970s: Artist/Band: Hearts Of Stone?
+Blue ridge rangers
+10
+
+Music: 1970s: Artist/Band: Heaven Help Us All?
+Stevie wonder
+10
+
+Music: 1970s: Artist/Band: Heaven Must Be Kissing An Angel?
+Tavares
+10
+
+Music: 1970s: Artist/Band: Heaven Must Have Sent You?
+Bonnie pointer
+10
+
+Music: 1970s: Artist/Band: Heaven On The 7th Floor?
+Paul nicholas
+10
+
+Music: 1970s: Artist/Band: Heavy Makes You Happy?
+Staple singers
+10
+
+Music: 1970s: Artist/Band: Heed The Call?
+Kenny rogers & the first edition
+10
+
+Music: 1970s: Artist/Band: Helen Wheels?
+Wings
+10
+
+Music: 1970s: Artist/Band: Hello Hurray?
+Alice cooper
+10
+
+Music: 1970s: Artist/Band: Hello It's Me?
+Todd rundgren
+10
+
+Music: 1970s: Artist/Band: Hello Old Friend?
+Eric clapton
+10
+
+Music: 1970s: Artist/Band: Hello Stranger?
+Yvonne elliman
+10
+
+Music: 1970s: Artist/Band: Help Is On Its Way?
+Little river band
+10
+
+Music: 1970s: Artist/Band: Help Me Rhonda?
+Johnny rivers
+10
+
+Music: 1970s: Artist/Band: Help Me?
+Joni mitchell
+10
+
+Music: 1970s: Artist/Band: Here Come Those Tears Again?
+Jackson browne
+10
+
+Music: 1970s: Artist/Band: Here Comes That Rainy Day Feeling Again?
+Fortunes
+10
+
+Music: 1970s: Artist/Band: Here Comes The Sun?
+Richie havens
+10
+
+Music: 1970s: Artist/Band: Here I Am?
+Al green
+10
+
+Music: 1970s: Artist/Band: Here You Come Again?
+Dolly parton
+10
+
+Music: 1970s: Artist/Band: Hey Big Brother?
+Rare earth
+10
+
+Music: 1970s: Artist/Band: Hey Deanie?
+Shaun cassidy
+10
+
+Music: 1970s: Artist/Band: Hey Lawdy Mama?
+Steppenwolf
+10
+
+Music: 1970s: Artist/Band: Hey Mister Sun?
+Bobby sherman
+10
+
+Music: 1970s: Artist/Band: Hey There Lonely Girl?
+Eddie holman
+10
+
+Music: 1970s: Artist/Band: Hey You?
+Bachman-turner overdrive
+10
+
+Music: 1970s: Artist/Band: Hi-De-Ho?
+Blood, sweat & tears
+10
+
+Music: 1970s: Artist/Band: Hi, Hi, Hi?
+Wings
+10
+
+Music: 1970s: Artist/Band: High School Dance?
+Sylvers
+10
+
+Music: 1970s: Artist/Band: High Time We Went?
+Joe cocker
+10
+
+Music: 1970s: Artist/Band: Higher Ground?
+Stevie wonder
+10
+
+Music: 1970s: Artist/Band: Higher Plane?
+Kool & the gang
+10
+
+Music: 1970s: Artist/Band: Highway Song?
+Blackfoot
+10
+
+Music: 1970s: Artist/Band: Hijack?
+Herbie mann
+10
+
+Music: 1970s: Artist/Band: Hit The Road Jack?
+Stampeders
+10
+
+Music: 1970s: Artist/Band: Hitchin' A Ride?
+Vanity fare
+10
+
+Music: 1970s: Artist/Band: Hocus Pocus?
+Focus
+10
+
+Music: 1970s: Artist/Band: Hold Back The Night?
+Trammps
+10
+
+Music: 1970s: Artist/Band: Hold Her Tight?
+Osmonds
+10
+
+Music: 1970s: Artist/Band: Hold The Line?
+Toto
+10
+
+Music: 1970s: Artist/Band: Hold Your Head Up?
+Argent
+10
+
+Music: 1970s: Artist/Band: Holdin' On To Yesterday?
+Ambrosia
+10
+
+Music: 1970s: Artist/Band: Hollywood Nights?
+Bob seger & the silver bullet band
+10
+
+Music: 1970s: Artist/Band: Hollywood Swinging?
+Kool & the gang
+10
+
+Music: 1970s: Artist/Band: Hollywood?
+Rufus
+10
+
+Music: 1970s: Artist/Band: Home And Dry?
+Gerry rafferty
+10
+
+Music: 1970s: Artist/Band: Honesty?
+Billy joel
+10
+
+Music: 1970s: Artist/Band: Honey Come Back?
+Glen campbell
+10
+
+Music: 1970s: Artist/Band: Honey,Honey?
+Abba
+10
+
+Music: 1970s: Artist/Band: Honky Cat?
+Elton john
+10
+
+Music: 1970s: Artist/Band: Hooked On A Feeling?
+Blue swede
+10
+
+Music: 1970s: Artist/Band: Hopelessly Devoted To You?
+Olivia newton-john
+10
+
+Music: 1970s: Artist/Band: Hot Blooded?
+Foreigner
+10
+
+Music: 1970s: Artist/Band: Hot Child In The City?
+Nick gilder
+10
+
+Music: 1970s: Artist/Band: Hot Legs?
+Rod stewart
+10
+
+Music: 1970s: Artist/Band: Hot Line?
+Sylvers
+10
+
+Music: 1970s: Artist/Band: Hot Love, Cold World?
+Bob welch
+10
+
+Music: 1970s: Artist/Band: Hot Number?
+Foxy
+10
+
+Music: 1970s: Artist/Band: Hot Pants?
+James brown
+10
+
+Music: 1970s: Artist/Band: Hot Rod Lincoln?
+Commander cody & his lost planet airmen
+10
+
+Music: 1970s: Artist/Band: Hot Stuff?
+Donna summer
+10
+
+Music: 1970s: Artist/Band: Hot Summer Nights?
+Night
+10
+
+Music: 1970s: Artist/Band: Hotel California?
+Eagles
+10
+
+Music: 1970s: Artist/Band: House Of The Rising Sun?
+Frijid pink
+10
+
+Music: 1970s: Artist/Band: How Can I Be Sure?
+David cassidy
+10
+
+Music: 1970s: Artist/Band: How Can I Tell Her?
+Lobo
+10
+
+Music: 1970s: Artist/Band: How Can You Mend A Broken Heart?
+Bee gees
+10
+
+Music: 1970s: Artist/Band: How Deep Is Your Love?
+Bee gees
+10
+
+Music: 1970s: Artist/Band: How Do You Do?
+Mouth & macneal
+10
+
+Music: 1970s: Artist/Band: How Much I Feel?
+Ambrosia
+10
+
+Music: 1970s: Artist/Band: How Much Love?
+Leo sayer
+10
+
+Music: 1970s: Artist/Band: How Sweet It Is?
+James taylor
+10
+
+Music: 1970s: Artist/Band: How You Gonna See Me Now?
+Alice cooper
+10
+
+Music: 1970s: Artist/Band: Hummingbird?
+Seals & crofts
+10
+
+Music: 1970s: Artist/Band: Hurricane?
+Bob dylan
+10
+
+Music: 1970s: Artist/Band: Hurt?
+Elvis presley
+10
+
+Music: 1970s: Artist/Band: Hurting Each Other?
+Carpenters
+10
+
+Music: 1970s: Artist/Band: Hurts So Good?
+Millie jackson
+10
+
+Music: 1970s: Artist/Band: I Ain't Got Time Anymore?
+Glass bottle
+10
+
+Music: 1970s: Artist/Band: I Am I Said?
+Neil diamond
+10
+
+Music: 1970s: Artist/Band: I Am Love?
+Jacksons
+10
+
+Music: 1970s: Artist/Band: I Am Somebody?
+Johnnie taylor
+10
+
+Music: 1970s: Artist/Band: I Am Woman?
+Helen reddy
+10
+
+Music: 1970s: Artist/Band: I Believe In Music?
+Galley
+10
+
+Music: 1970s: Artist/Band: I Believe In You?
+Johnnie taylor
+10
+
+Music: 1970s: Artist/Band: I Believe You?
+Dorothy moore
+10
+
+Music: 1970s: Artist/Band: I Belong To You?
+Love unlimited
+10
+
+Music: 1970s: Artist/Band: I Can Help?
+Billy swan
+10
+
+Music: 1970s: Artist/Band: I Can See Clearly Now?
+Johnny nash
+10
+
+Music: 1970s: Artist/Band: I Can Understand It?
+New birth
+10
+
+Music: 1970s: Artist/Band: I Can't Hear You No More?
+Helen reddy
+10
+
+Music: 1970s: Artist/Band: I Can't Help Myself?
+Donnie elbert
+10
+
+Music: 1970s: Artist/Band: I Can't Stand It No More?
+Peter frampton
+10
+
+Music: 1970s: Artist/Band: I Didn't Get To Sleep At All?
+5th dimension
+10
+
+Music: 1970s: Artist/Band: I Didn't Know I Loved You?
+Gary glitter
+10
+
+Music: 1970s: Artist/Band: I Do Love You?
+Gq
+10
+
+Music: 1970s: Artist/Band: I Do, I Do, I Do, I Do?
+Abba
+10
+
+Music: 1970s: Artist/Band: I Don't Blame You At All?
+Smokey robinson & the miracles
+10
+
+Music: 1970s: Artist/Band: I Don't Like To Sleep Alone?
+Paul anka
+10
+
+Music: 1970s: Artist/Band: I Don't Want To Do Wrong?
+Gladys knight & the pips
+10
+
+Music: 1970s: Artist/Band: I Feel A Song?
+Kiss
+10
+
+Music: 1970s: Artist/Band: I Feel Like A Bullet?
+Elton john
+10
+
+Music: 1970s: Artist/Band: I Feel Love?
+Donna summer
+10
+
+Music: 1970s: Artist/Band: I Feel The Earth Move?
+Carole king
+10
+
+Music: 1970s: Artist/Band: I Get Lifted?
+George mccrae
+10
+
+Music: 1970s: Artist/Band: I Go Crazy?
+Paul davis
+10
+
+Music: 1970s: Artist/Band: I Got A Name?
+Jim croce
+10
+
+Music: 1970s: Artist/Band: I Got Ants In My Pants?
+James brown
+10
+
+Music: 1970s: Artist/Band: I Got My Mind Made Up?
+Instant funk
+10
+
+Music: 1970s: Artist/Band: I Got Stoned And I Missed It?
+Jim stafford
+10
+
+Music: 1970s: Artist/Band: I Gotcha?
+Joe tex
+10
+
+Music: 1970s: Artist/Band: I Hear You Knocking?
+Dave edmunds
+10
+
+Music: 1970s: Artist/Band: I Honestly Love You?
+Olivia newton-john
+10
+
+Music: 1970s: Artist/Band: I Just Can't Help Believing?
+B.j. thomas
+10
+
+Music: 1970s: Artist/Band: I Just Fall In Love Again?
+Anne murray
+10
+
+Music: 1970s: Artist/Band: I Just Wanna Stop?
+Gino vannelli
+10
+
+Music: 1970s: Artist/Band: I Just Want to Be Your Everything?
+Andy gibb
+10
+
+Music: 1970s: Artist/Band: I Just Want To Celebrate?
+Rare earth
+10
+
+Music: 1970s: Artist/Band: I Just Want To Make Love To You?
+Foghat
+10
+
+Music: 1970s: Artist/Band: I Know A Heartache When I See One?
+Jennifer warnes
+10
+
+Music: 1970s: Artist/Band: I Like Dreamin'?
+Kenny nolan
+10
+
+Music: 1970s: Artist/Band: I Like To Do It?
+Kc & the sunshine band
+10
+
+Music: 1970s: Artist/Band: I Like To Live The Love?
+B.b. king
+10
+
+Music: 1970s: Artist/Band: I Likes To Do It?
+Peoples choice
+10
+
+Music: 1970s: Artist/Band: I Love Music?
+O'jays
+10
+
+Music: 1970s: Artist/Band: I Love My Friend?
+Charlie rich
+10
+
+Music: 1970s: Artist/Band: I Love The Nightlife?
+Alicia bridges
+10
+
+Music: 1970s: Artist/Band: I Love You For All Seasons?
+Fuzz
+10
+
+Music: 1970s: Artist/Band: I Love You?
+Donna summer
+10
+
+Music: 1970s: Artist/Band: I Love?
+Tom t. hall
+10
+
+Music: 1970s: Artist/Band: I Need A Lover?
+John cougar mellencamp
+10
+
+Music: 1970s: Artist/Band: I Need To Be In Love?
+Carpenters
+10
+
+Music: 1970s: Artist/Band: I Need You?
+America
+10
+
+Music: 1970s: Artist/Band: I Never Cry?
+Alice cooper
+10
+
+Music: 1970s: Artist/Band: I Only Have Eyes For You?
+Art garfunkel
+10
+
+Music: 1970s: Artist/Band: I Only Want To Be With You?
+Bay city rollers
+10
+
+Music: 1970s: Artist/Band: I Play And Sing?
+Dawn
+10
+
+Music: 1970s: Artist/Band: I Really Don't Want To Know?
+Elvis presley
+10
+
+Music: 1970s: Artist/Band: I Saw The Light?
+Todd rundgren
+10
+
+Music: 1970s: Artist/Band: I Shall Sing?
+Art garfunkel
+10
+
+Music: 1970s: Artist/Band: I Shot The Sheriff?
+Eric clapton
+10
+
+Music: 1970s: Artist/Band: I Still Have Dreams?
+Richie furay
+10
+
+Music: 1970s: Artist/Band: I Think I Love You?
+Partridge family
+10
+
+Music: 1970s: Artist/Band: I Wanna Be Where You Are?
+Michael jackson
+10
+
+Music: 1970s: Artist/Band: I Wanna Be With You?
+Raspberries
+10
+
+Music: 1970s: Artist/Band: I Wanna Be Your Lover?
+Prince
+10
+
+Music: 1970s: Artist/Band: I Wanna Dance Wit' Choo?
+Disco tex & the sex o lettes
+10
+
+Music: 1970s: Artist/Band: I Wanna Get Next To You?
+Rose royce
+10
+
+Music: 1970s: Artist/Band: I Want You To Want Me?
+Cheap trick
+10
+
+Music: 1970s: Artist/Band: I Want You Tonight?
+Pablo cruise
+10
+
+Music: 1970s: Artist/Band: I Want You?
+Marvin gaye
+10
+
+Music: 1970s: Artist/Band: I Want Your Love?
+Chic
+10
+
+Music: 1970s: Artist/Band: I Want'a Do Something Freaky To You?
+Leon haywood
+10
+
+Music: 1970s: Artist/Band: I Was Checkin' Out She Was Checkin' In?
+Don covay
+10
+
+Music: 1970s: Artist/Band: I Was Made For Dancin'?
+Leif garrett
+10
+
+Music: 1970s: Artist/Band: I Was Made For Lovin' You?
+Kiss
+10
+
+Music: 1970s: Artist/Band: I Was Only Joking?
+Rod stewart
+10
+
+Music: 1970s: Artist/Band: I Will Be In Love With You?
+Livingston taylor
+10
+
+Music: 1970s: Artist/Band: I Will Still Love You?
+Stonebolt
+10
+
+Music: 1970s: Artist/Band: I Will Survive?
+Gloria gaynor
+10
+
+Music: 1970s: Artist/Band: I Wish?
+Stevie wonder
+10
+
+Music: 1970s: Artist/Band: I Woke Up In Love This Morning?
+Partridge family
+10
+
+Music: 1970s: Artist/Band: I Won't Last A Day Without You?
+Carpenters
+10
+
+Music: 1970s: Artist/Band: I Wouldn't Want To Be Like You?
+Alan parsons project
+10
+
+Music: 1970s: Artist/Band: I Write The Songs?
+Barry manilow
+10
+
+Music: 1970s: Artist/Band: I.O.U?
+Jimmy dean
+10
+
+Music: 1970s: Artist/Band: I'd Love To Change The World?
+Ten years after
+10
+
+Music: 1970s: Artist/Band: I'd Love You To Want Me?
+Lobo
+10
+
+Music: 1970s: Artist/Band: I'd Really Love To See You Tonight?
+Endland dan & john ford coley
+10
+
+Music: 1970s: Artist/Band: I'll Always Love My Mama?
+Intruders
+10
+
+Music: 1970s: Artist/Band: I'll Be Around?
+Spinners
+10
+
+Music: 1970s: Artist/Band: I'll Be Good To You?
+Brothers johnson
+10
+
+Music: 1970s: Artist/Band: I'll Be The Other Woman?
+Soul children
+10
+
+Music: 1970s: Artist/Band: I'll Be There?
+Jackson 5
+10
+
+Music: 1970s: Artist/Band: I'll Be Your Shelter?
+Luther ingram
+10
+
+Music: 1970s: Artist/Band: I'll Do For You Anything You Want Me To?
+Barry white
+10
+
+Music: 1970s: Artist/Band: I'll Have To Say I Love You In A Song?
+Jim croce
+10
+
+Music: 1970s: Artist/Band: I'll Meet You Halfway?
+Partridge family
+10
+
+Music: 1970s: Artist/Band: I'll Never Love This Way Again?
+Dionne warwick
+10
+
+Music: 1970s: Artist/Band: I'll Play For You?
+Seals & crofts
+10
+
+Music: 1970s: Artist/Band: I'll Take You There?
+Staple singers
+10
+
+Music: 1970s: Artist/Band: I'm A Greedy Man?
+James brown
+10
+
+Music: 1970s: Artist/Band: I'm A Man?
+Chicago
+10
+
+Music: 1970s: Artist/Band: I'm A Train?
+Albert hammond
+10
+
+Music: 1970s: Artist/Band: I'm A Woman?
+Maria muldaur
+10
+
+Music: 1970s: Artist/Band: I'm Comin' Home?
+Tommy james
+10
+
+Music: 1970s: Artist/Band: I'm Coming Home?
+Spinners
+10
+
+Music: 1970s: Artist/Band: I'm Doin' Fine Now?
+New york city
+10
+
+Music: 1970s: Artist/Band: I'm Easy?
+Keith carradine
+10
+
+Music: 1970s: Artist/Band: I'm Every Woman?
+Chaka khan
+10
+
+Music: 1970s: Artist/Band: I'm Gonna Let My Heart Do The Walking?
+Supremes
+10
+
+Music: 1970s: Artist/Band: I'm Gonna Love You Just A Little More?
+Barry white
+10
+
+Music: 1970s: Artist/Band: I'm Gonna Take Care Of Everything?
+Rubicon
+10
+
+Music: 1970s: Artist/Band: I'm In Love?
+Aretha franklin
+10
+
+Music: 1970s: Artist/Band: I'm In You?
+Peter frampton
+10
+
+Music: 1970s: Artist/Band: I'm Just A Singer?
+Moody blues
+10
+
+Music: 1970s: Artist/Band: I'm Leavin'?
+Elvis presley
+10
+
+Music: 1970s: Artist/Band: I'm Leaving It Up To You?
+Donny & marie osmond
+10
+
+Music: 1970s: Artist/Band: I'm Never Gonna Be Alone Anymore?
+Cornelius brothers & sister rose
+10
+
+Music: 1970s: Artist/Band: I'm Not Gonna Let It Bother Me?
+Atlanta rhythm section
+10
+
+Music: 1970s: Artist/Band: I'm Not In Love?
+10cc
+10
+
+Music: 1970s: Artist/Band: I'm Not Lisa?
+Jessi colter
+10
+
+Music: 1970s: Artist/Band: I'm Not Your Brothers Keeper?
+Flaming amber
+10
+
+Music: 1970s: Artist/Band: I'm Sorry?
+John denver
+10
+
+Music: 1970s: Artist/Band: I'm Still In Love With You?
+Al green
+10
+
+Music: 1970s: Artist/Band: I'm Stone In Love With You?
+Stylistics
+10
+
+Music: 1970s: Artist/Band: I'm Your Boogie Man?
+Kc & the sunshine band
+10
+
+Music: 1970s: Artist/Band: I've Been Lonely For So Long?
+Frederick knight
+10
+
+Music: 1970s: Artist/Band: I've Been This Way Before?
+Neil diamond
+10
+
+Music: 1970s: Artist/Band: I've Found Someone Of My Own?
+Free movement
+10
+
+Music: 1970s: Artist/Band: I've Got A Feeling?
+Al wilson
+10
+
+Music: 1970s: Artist/Band: I've Got A Thing About You Baby?
+Elvis presley
+10
+
+Music: 1970s: Artist/Band: I've Got Love On My Mind?
+Natalie cole
+10
+
+Music: 1970s: Artist/Band: I've Got So Much To Give?
+Barry white
+10
+
+Music: 1970s: Artist/Band: I've Got The Music In Me?
+Kiki dee
+10
+
+Music: 1970s: Artist/Band: I've Got To Use My Imagination?
+Gladys knight & the pips
+10
+
+Music: 1970s: Artist/Band: I've Had Enough?
+Wings
+10
+
+Music: 1970s: Artist/Band: I've Lost You?
+Elvis presley
+10
+
+Music: 1970s: Artist/Band: If Ever I See You Again?
+Roberta flack
+10
+
+Music: 1970s: Artist/Band: If I Can't Have You?
+Yvonne elliman
+10
+
+Music: 1970s: Artist/Band: If I Could Reach You?
+5th dimension
+10
+
+Music: 1970s: Artist/Band: If I Lose This Heaven?
+Average white band
+10
+
+Music: 1970s: Artist/Band: If I Said You Have A Beatiful Body?
+Bellamy brothers
+10
+
+Music: 1970s: Artist/Band: If I Were A Carpenter?
+Johnny cash & june carter
+10
+
+Music: 1970s: Artist/Band: If I Were Your Woman?
+Gladys knight & the pips
+10
+
+Music: 1970s: Artist/Band: If Not For You?
+Olivia newton-john
+10
+
+Music: 1970s: Artist/Band: If There's A Hell Below?
+Curtis mayfield
+10
+
+Music: 1970s: Artist/Band: If We Make It Through December?
+Merle haggard
+10
+
+Music: 1970s: Artist/Band: If You Could Read My Mind?
+Gordon lightfoot
+10
+
+Music: 1970s: Artist/Band: If You Don't Know Me By Now?
+Harold melvin & the blue notes
+10
+
+Music: 1970s: Artist/Band: If You Know What I Mean?
+Neil diamond
+10
+
+Music: 1970s: Artist/Band: If You Leave Me Now?
+Chicago
+10
+
+Music: 1970s: Artist/Band: If You Leave Me Tonight I'll Cry?
+Jerry wallace
+10
+
+Music: 1970s: Artist/Band: If You Love Me?
+Olivia newton-john
+10
+
+Music: 1970s: Artist/Band: If You Really Love Me?
+Stevie wonder
+10
+
+Music: 1970s: Artist/Band: If You Remember Me?
+Night
+10
+
+Music: 1970s: Artist/Band: If You Talk In Your Sleep?
+Elvis presley
+10
+
+Music: 1970s: Artist/Band: If You Wanna Get To Heaven?
+Ozark mountain daredevils
+10
+
+Music: 1970s: Artist/Band: If You Want It?
+Niteflyte
+10
+
+Music: 1970s: Artist/Band: If You Want Me To Stay?
+Sly & the family stone
+10
+
+Music: 1970s: Artist/Band: If You're Ready?
+Staple singers
+10
+
+Music: 1970s: Artist/Band: If?
+Bread
+10
+
+Music: 1970s: Artist/Band: Imaginary Lover?
+Atlanta rhythm section
+10
+
+Music: 1970s: Artist/Band: Imagine?
+John lennon
+10
+
+Music: 1970s: Artist/Band: Immigrant Song?
+Led zeppelin
+10
+
+Music: 1970s: Artist/Band: In 1979, which group/artist sang Jane?
+Jefferson Starship
+10
+
+Music: 1970s: Artist/Band: In The Midnight Hour?
+Cross country
+10
+
+Music: 1970s: Artist/Band: In The Navy?
+Village people
+10
+
+Music: 1970s: Artist/Band: In The Rain?
+Dramatics
+10
+
+Music: 1970s: Artist/Band: In The Summertime?
+Mungo jerry
+10
+
+Music: 1970s: Artist/Band: Indian Reservation?
+Paul revere & the raiders
+10
+
+Music: 1970s: Artist/Band: Indiana Wants Me?
+R. dean taylor
+10
+
+Music: 1970s: Artist/Band: Inner City Blues?
+Marvin gaye
+10
+
+Music: 1970s: Artist/Band: Inseparable?
+Natalie cole
+10
+
+Music: 1970s: Artist/Band: Instant Karma?
+John lennon
+10
+
+Music: 1970s: Artist/Band: Instant Replay?
+Dan hartman
+10
+
+Music: 1970s: Artist/Band: Is She Really Going Out With Him?
+Joe jackson
+10
+
+Music: 1970s: Artist/Band: Island Girl?
+Elton john
+10
+
+Music: 1970s: Artist/Band: Isn't It A Pity?
+George harrison
+10
+
+Music: 1970s: Artist/Band: Isn't It Time?
+Babys
+10
+
+Music: 1970s: Artist/Band: Isn't Life Strange?
+Moody blues
+10
+
+Music: 1970s: Artist/Band: It Don't Come Easy?
+Ringo starr
+10
+
+Music: 1970s: Artist/Band: It Don't Matter To Me?
+Bread
+10
+
+Music: 1970s: Artist/Band: It Keeps You Runnin'?
+Doobie brothers
+10
+
+Music: 1970s: Artist/Band: It Must Be Love?
+Alton mcclain & destiny
+10
+
+Music: 1970s: Artist/Band: It Never Rains In Southern California?
+Albert hammond
+10
+
+Music: 1970s: Artist/Band: It Only Takes A Minute?
+Tavares
+10
+
+Music: 1970s: Artist/Band: It Sure Took A Long Long Time?
+Lobo
+10
+
+Music: 1970s: Artist/Band: It Was Almost Like A Song?
+Ronnie milsap
+10
+
+Music: 1970s: Artist/Band: It's A Crazy World?
+Mac mcanally
+10
+
+Music: 1970s: Artist/Band: It's A Heartache?
+Bonnie tyler
+10
+
+Music: 1970s: Artist/Band: It's A Laugh?
+Daryl hall & john oates
+10
+
+Music: 1970s: Artist/Band: It's A Long Way There?
+Little river band
+10
+
+Music: 1970s: Artist/Band: It's A Miracle?
+Barry manilow
+10
+
+Music: 1970s: Artist/Band: It's A New Day?
+James brown
+10
+
+Music: 1970s: Artist/Band: It's A Shame?
+Spinners
+10
+
+Music: 1970s: Artist/Band: It's All Down To Goodnight Vienna?
+Ringo starr
+10
+
+Music: 1970s: Artist/Band: It's All In The Game?
+Four tops
+10
+
+Music: 1970s: Artist/Band: It's Ecstasy When You Lay Down Next To Me?
+Barry white
+10
+
+Music: 1970s: Artist/Band: It's Going To Take Some Time?
+Carpenters
+10
+
+Music: 1970s: Artist/Band: It's Impossible?
+Perry como
+10
+
+Music: 1970s: Artist/Band: It's Ok?
+Beach boys
+10
+
+Music: 1970s: Artist/Band: It's One Of Those Nights?
+Partridge family
+10
+
+Music: 1970s: Artist/Band: It's Only Make Believe?
+Glen campbell
+10
+
+Music: 1970s: Artist/Band: It's Only Rock 'N Roll?
+Rolling stones
+10
+
+Music: 1970s: Artist/Band: It's Over?
+Boz scaggs
+10
+
+Music: 1970s: Artist/Band: It's Sad To Belong?
+England dan & john ford coley
+10
+
+Music: 1970s: Artist/Band: It's So Easy?
+Linda ronstadt
+10
+
+Music: 1970s: Artist/Band: It's The Same Old Song?
+Kc & the sunshine band
+10
+
+Music: 1970s: Artist/Band: It's Too Late?
+Carole king
+10
+
+Music: 1970s: Artist/Band: It's You That I Need?
+Enchantment
+10
+
+Music: 1970s: Artist/Band: Jack And Jill?
+Raydio
+10
+
+Music: 1970s: Artist/Band: Jackie Blue?
+Ozark mountain daredevils
+10
+
+Music: 1970s: Artist/Band: Jambalaya?
+Blue ridge rangers
+10
+
+Music: 1970s: Artist/Band: Jane?
+Jefferson starship
+10
+
+Music: 1970s: Artist/Band: Jaws (Theme)?
+John williams
+10
+
+Music: 1970s: Artist/Band: Jazzman?
+Carole king
+10
+
+Music: 1970s: Artist/Band: Jeans On?
+David dundas
+10
+
+Music: 1970s: Artist/Band: Jennifer Tomkins?
+Street people
+10
+
+Music: 1970s: Artist/Band: Jesse?
+Roberta flack
+10
+
+Music: 1970s: Artist/Band: Jesus Is Just Alright?
+Doobie brothers
+10
+
+Music: 1970s: Artist/Band: Jet Airliner?
+Steve miller band
+10
+
+Music: 1970s: Artist/Band: Jet?
+Wings
+10
+
+Music: 1970s: Artist/Band: Jim Dandy?
+Black oak arkansas
+10
+
+Music: 1970s: Artist/Band: Jimmy Loves Mary-Anne?
+Looking glass
+10
+
+Music: 1970s: Artist/Band: Jive Talkin'?
+Bee gees
+10
+
+Music: 1970s: Artist/Band: Joanne?
+Michael nesmith
+10
+
+Music: 1970s: Artist/Band: Jody's Got Your Girl And Gone?
+Johnnie taylor
+10
+
+Music: 1970s: Artist/Band: Join Together?
+Who
+10
+
+Music: 1970s: Artist/Band: Josie?
+Steely dan
+10
+
+Music: 1970s: Artist/Band: Joy To The World?
+Three dog night
+10
+
+Music: 1970s: Artist/Band: Judy Mae?
+Boomer castleman
+10
+
+Music: 1970s: Artist/Band: Julie Do Ya Love Me?
+Bobby sherman
+10
+
+Music: 1970s: Artist/Band: Jump Into The Fire?
+Nilsson
+10
+
+Music: 1970s: Artist/Band: Jungle Boogie?
+Kool & the gang
+10
+
+Music: 1970s: Artist/Band: Jungle Fever?
+Chakachas
+10
+
+Music: 1970s: Artist/Band: Jungle Love?
+Steve miller band
+10
+
+Music: 1970s: Artist/Band: Junior's Farm?
+Wings
+10
+
+Music: 1970s: Artist/Band: Junk Food Junkie?
+Larry groce
+10
+
+Music: 1970s: Artist/Band: Just A Little Bit Of You?
+Michael jackson
+10
+
+Music: 1970s: Artist/Band: Just A Song Before I Go?
+Crosby stills & nash
+10
+
+Music: 1970s: Artist/Band: Just Don't Want To Be Lonely?
+Main ingredient
+10
+
+Music: 1970s: Artist/Band: Just My Imagination?
+Temptations
+10
+
+Music: 1970s: Artist/Band: Just Remember I Love You?
+Firefall
+10
+
+Music: 1970s: Artist/Band: Just Seven Numbers?
+Four tops
+10
+
+Music: 1970s: Artist/Band: Just The Way You Are?
+Billy joel
+10
+
+Music: 1970s: Artist/Band: Just To Be Close To You?
+Commodores
+10
+
+Music: 1970s: Artist/Band: Just Too Many People?
+Melissa Manchester
+10
+
+Music: 1970s: Artist/Band: Just What I Needed?
+Cars
+10
+
+Music: 1970s: Artist/Band: Just When I Need You Most?
+Randy vanwarmer
+10
+
+Music: 1970s: Artist/Band: Just You 'N' Me?
+Chicago
+10
+
+Music: 1970s: Artist/Band: Just You And I?
+Melissa Manchester
+10
+
+Music: 1970s: Artist/Band: K-Jee?
+Nite-liters
+10
+
+Music: 1970s: Artist/Band: Keep It Comin' Love?
+Kc & the sunshine band
+10
+
+Music: 1970s: Artist/Band: Keep Me Cryin'?
+Al green
+10
+
+Music: 1970s: Artist/Band: Keep On Singing?
+Helen reddy
+10
+
+Music: 1970s: Artist/Band: Keep On Smilin'?
+Wet willie
+10
+
+Music: 1970s: Artist/Band: Keep On Truckin'?
+Eddie kendricks
+10
+
+Music: 1970s: Artist/Band: Keeper Of The Castle?
+Four tops
+10
+
+Music: 1970s: Artist/Band: Kentucky Rain?
+Elvis presley
+10
+
+Music: 1970s: Artist/Band: Killer Queen?
+Queen
+10
+
+Music: 1970s: Artist/Band: Killing Me Softly With His Song?
+Roberta flack
+10
+
+Music: 1970s: Artist/Band: King Heroin?
+James brown
+10
+
+Music: 1970s: Artist/Band: King Tut?
+Steve martin
+10
+
+Music: 1970s: Artist/Band: Kings Of The Party?
+Brownsville station
+10
+
+Music: 1970s: Artist/Band: Kiss An Angel Good Mornin'?
+Charley pride
+10
+
+Music: 1970s: Artist/Band: Kiss And Say Goodbye?
+Manhattans
+10
+
+Music: 1970s: Artist/Band: Kiss In The Dark?
+Pink lady
+10
+
+Music: 1970s: Artist/Band: Kiss You All Over?
+Exile
+10
+
+Music: 1970s: Artist/Band: Kissing My Love?
+Bill withers
+10
+
+Music: 1970s: Artist/Band: Knock On Wood?
+Amii stewart
+10
+
+Music: 1970s: Artist/Band: Knock Three Times?
+Dawn
+10
+
+Music: 1970s: Artist/Band: Knockin' On Heavens Door?
+Bob dylan
+10
+
+Music: 1970s: Artist/Band: Knowing Me, Knowing You?
+Abba
+10
+
+Music: 1970s: Artist/Band: Kodachrome?
+Paul simon
+10
+
+Music: 1970s: Artist/Band: Kung Fu Fighting?
+Carl douglas
+10
+
+Music: 1970s: Artist/Band: Kung Fu?
+Curtis mayfield
+10
+
+Music: 1970s: Artist/Band: La La Peace Song?
+Al wilson
+10
+
+Music: 1970s: Artist/Band: Ladies Night?
+Kool & the gang
+10
+
+Music: 1970s: Artist/Band: Lady Blue?
+Leon russell
+10
+
+Music: 1970s: Artist/Band: Lady Love?
+Lou rawls
+10
+
+Music: 1970s: Artist/Band: Lady Marmalade?
+Labelle
+10
+
+Music: 1970s: Artist/Band: Last Child?
+Aerosmith
+10
+
+Music: 1970s: Artist/Band: Last Dance?
+Donna summer
+10
+
+Music: 1970s: Artist/Band: Last Kiss?
+Wednesday
+10
+
+Music: 1970s: Artist/Band: Last Song?
+Edward bear
+10
+
+Music: 1970s: Artist/Band: Last Time I Saw Him?
+Diana ross
+10
+
+Music: 1970s: Artist/Band: Laughter In The Rain?
+Neil sedaka
+10
+
+Music: 1970s: Artist/Band: Lay A Little Lovin' On Me?
+Robin mcnamara
+10
+
+Music: 1970s: Artist/Band: Lay Down Sally?
+Eric clapton
+10
+
+Music: 1970s: Artist/Band: Lay Down?
+Melanie
+10
+
+Music: 1970s: Artist/Band: Layla?
+Derek & the dominos
+10
+
+Music: 1970s: Artist/Band: Le Freak?
+Chic
+10
+
+Music: 1970s: Artist/Band: Lead Me On?
+Maxine nightingale
+10
+
+Music: 1970s: Artist/Band: Lean On Me?
+Bill withers
+10
+
+Music: 1970s: Artist/Band: Leave Me Alone?
+Helen reddy
+10
+
+Music: 1970s: Artist/Band: Leaving Me?
+Independents
+10
+
+Music: 1970s: Artist/Band: Let A Man Come In And Do The Popcorn Ii?
+James brown
+10
+
+Music: 1970s: Artist/Band: Let Em' In?
+Wings
+10
+
+Music: 1970s: Artist/Band: Let Her In?
+John travolta
+10
+
+Music: 1970s: Artist/Band: Let It Be?
+Beatles
+10
+
+Music: 1970s: Artist/Band: Let It Ride?
+Bachman-turner overdrive
+10
+
+Music: 1970s: Artist/Band: Let It Shine?
+Olivia newton-john
+10
+
+Music: 1970s: Artist/Band: Let Me Be There?
+Olivia newton-john
+10
+
+Music: 1970s: Artist/Band: Let Me Go To Him?
+Dionne warwick
+10
+
+Music: 1970s: Artist/Band: Let Me In?
+Osmonds
+10
+
+Music: 1970s: Artist/Band: Let Me Serenade You?
+Three dog night
+10
+
+Music: 1970s: Artist/Band: Let The Music Play?
+Barry white
+10
+
+Music: 1970s: Artist/Band: Let Your Hair Down?
+Temptations
+10
+
+Music: 1970s: Artist/Band: Let Your Love Flow?
+Bellamy brothers
+10
+
+Music: 1970s: Artist/Band: Let Your Love Go?
+Bread
+10
+
+Music: 1970s: Artist/Band: Let's All Chant?
+Michael zager band
+10
+
+Music: 1970s: Artist/Band: Let's Do It Again?
+Staple singers
+10
+
+Music: 1970s: Artist/Band: Let's Get It On?
+Marvin gaye
+10
+
+Music: 1970s: Artist/Band: Let's Get Married?
+Al green
+10
+
+Music: 1970s: Artist/Band: Let's Go?
+Cars
+10
+
+Music: 1970s: Artist/Band: Let's Live Together?
+Road apples
+10
+
+Music: 1970s: Artist/Band: Let's Pretend?
+Raspberries
+10
+
+Music: 1970s: Artist/Band: Let's Put It All Together?
+Stylistics
+10
+
+Music: 1970s: Artist/Band: Let's Stay Together?
+Al green
+10
+
+Music: 1970s: Artist/Band: Let's Straighten It Out?
+Latimore
+10
+
+Music: 1970s: Artist/Band: Letting Go?
+Wings
+10
+
+Music: 1970s: Artist/Band: Levon?
+Elton john
+10
+
+Music: 1970s: Artist/Band: Liar?
+Three dog night
+10
+
+Music: 1970s: Artist/Band: Lido Shuffle?
+Boz scaggs
+10
+
+Music: 1970s: Artist/Band: Life In The Fast Lane?
+Eagles
+10
+
+Music: 1970s: Artist/Band: Life Is A Rock?
+Reunion
+10
+
+Music: 1970s: Artist/Band: Life's Been Good?
+Joe walsh
+10
+
+Music: 1970s: Artist/Band: Like A Sad Song?
+John denver
+10
+
+Music: 1970s: Artist/Band: Like A Sunday In Salem?
+Gene cotton
+10
+
+Music: 1970s: Artist/Band: Listen To The Music?
+Doobie brothers
+10
+
+Music: 1970s: Artist/Band: Listen To What The Man Said?
+Wings
+10
+
+Music: 1970s: Artist/Band: Little Bit Of Soap?
+Nigel olsson
+10
+
+Music: 1970s: Artist/Band: Little Bitty Pretty On?
+Jackson 5
+10
+
+Music: 1970s: Artist/Band: Little Green Bag?
+George baker selection
+10
+
+Music: 1970s: Artist/Band: Little Willy?
+Sweet
+10
+
+Music: 1970s: Artist/Band: Live And Let Die?
+Wings
+10
+
+Music: 1970s: Artist/Band: Livin' For The Weekend?
+O'jays
+10
+
+Music: 1970s: Artist/Band: Livin' For You?
+Al green
+10
+
+Music: 1970s: Artist/Band: Livin' In The Life?
+Isley brothers
+10
+
+Music: 1970s: Artist/Band: Livin' It Up (Friday Night)?
+Bell & james
+10
+
+Music: 1970s: Artist/Band: Livin' Thing?
+Electric light orchestra
+10
+
+Music: 1970s: Artist/Band: Living A Little, Laughing A Little?
+Spinners
+10
+
+Music: 1970s: Artist/Band: Living For The City?
+Stevie wonder
+10
+
+Music: 1970s: Artist/Band: Living In A House Divided?
+Cher
+10
+
+Music: 1970s: Artist/Band: Living In The Past?
+Jethro tull
+10
+
+Music: 1970s: Artist/Band: Living Next Door To Alice?
+Smokie
+10
+
+Music: 1970s: Artist/Band: Living Together, Growing Together?
+5th dimension
+10
+
+Music: 1970s: Artist/Band: Lizzie And The Rainman?
+Tanya tucker
+10
+
+Music: 1970s: Artist/Band: Lola?
+Kinks
+10
+
+Music: 1970s: Artist/Band: London Town?
+Wings
+10
+
+Music: 1970s: Artist/Band: Lonely Boy?
+Andrew gold
+10
+
+Music: 1970s: Artist/Band: Lonely Days?
+Bee gees
+10
+
+Music: 1970s: Artist/Band: Lonely Night?
+Captain & tennille
+10
+
+Music: 1970s: Artist/Band: Lonely People?
+America
+10
+
+Music: 1970s: Artist/Band: Lonesome Loser?
+Little river band
+10
+
+Music: 1970s: Artist/Band: Long Ago And Far Away?
+James taylor
+10
+
+Music: 1970s: Artist/Band: Long Cool Woman?
+Hollies
+10
+
+Music: 1970s: Artist/Band: Long Dark Road?
+Hollies
+10
+
+Music: 1970s: Artist/Band: Long Haired Lover From Liverpool?
+Little jimmy osmond
+10
+
+Music: 1970s: Artist/Band: Long Lonesome Highway?
+Michael parks
+10
+
+Music: 1970s: Artist/Band: Long Long Time?
+Linda ronstadt
+10
+
+Music: 1970s: Artist/Band: Long Long Way From Home?
+Foreigner
+10
+
+Music: 1970s: Artist/Band: Long Tall Glasses?
+Leo sayer
+10
+
+Music: 1970s: Artist/Band: Long Time?
+Boston
+10
+
+Music: 1970s: Artist/Band: Long Train Runnin'?
+Doobie brothers
+10
+
+Music: 1970s: Artist/Band: Longfellow Serenade?
+Neil diamond
+10
+
+Music: 1970s: Artist/Band: Look At Me?
+Moments
+10
+
+Music: 1970s: Artist/Band: Look In My Eyes Pretty Woman?
+Dawn
+10
+
+Music: 1970s: Artist/Band: Look What They've Done To My Song Ma?
+New seekers
+10
+
+Music: 1970s: Artist/Band: Look What You Done For Me?
+Al green
+10
+
+Music: 1970s: Artist/Band: Lookin' For A Love?
+Bobby womack
+10
+
+Music: 1970s: Artist/Band: Lookin' Out My Back Door?
+Creedence clearwater revival
+10
+
+Music: 1970s: Artist/Band: Lookin' Through The Windows?
+Jackson 5
+10
+
+Music: 1970s: Artist/Band: Looking For A Love?
+J. geils band
+10
+
+Music: 1970s: Artist/Band: Looking For Space?
+John denver
+10
+
+Music: 1970s: Artist/Band: Looking Trhough The Eyes Of Love?
+Partridge family
+10
+
+Music: 1970s: Artist/Band: Looks Like We Made It?
+Barry manilow
+10
+
+Music: 1970s: Artist/Band: Lorelei?
+Styx
+10
+
+Music: 1970s: Artist/Band: Lost Without Your Love?
+Bread
+10
+
+Music: 1970s: Artist/Band: Lotta Love?
+Nicolette larson
+10
+
+Music: 1970s: Artist/Band: Love Being Your Fool?
+Travis wammack
+10
+
+Music: 1970s: Artist/Band: Love Don't Live Here Anymore?
+Rose royce
+10
+
+Music: 1970s: Artist/Band: Love Don't Love Nobody?
+Spinners
+10
+
+Music: 1970s: Artist/Band: Love Fire?
+Jigsaw
+10
+
+Music: 1970s: Artist/Band: Love Grows (Where My Rosemary Goes)?
+Edison lighthouse
+10
+
+Music: 1970s: Artist/Band: Love Hangover?
+Diana ross
+10
+
+Music: 1970s: Artist/Band: Love Her Madly?
+Doors
+10
+
+Music: 1970s: Artist/Band: Love Hurts?
+Nazareth
+10
+
+Music: 1970s: Artist/Band: Love In 'C' Minor?
+Cerrone
+10
+
+Music: 1970s: Artist/Band: Love In The Shadows?
+Neil sedaka
+10
+
+Music: 1970s: Artist/Band: Love Is Alive?
+Gary wright
+10
+
+Music: 1970s: Artist/Band: Love Is In The Air?
+John paul young
+10
+
+Music: 1970s: Artist/Band: Love Is Like Oxygen?
+Sweet
+10
+
+Music: 1970s: Artist/Band: Love Is The Answer?
+England dan & john ford coley
+10
+
+Music: 1970s: Artist/Band: Love Is The Drug?
+Roxy music
+10
+
+Music: 1970s: Artist/Band: Love Jones?
+Brighter side of darkness
+10
+
+Music: 1970s: Artist/Band: Love Land?
+Watts 103rd street rhythm band
+10
+
+Music: 1970s: Artist/Band: Love Machine?
+Miracles
+10
+
+Music: 1970s: Artist/Band: Love Me For A Reason?
+Osmonds
+10
+
+Music: 1970s: Artist/Band: Love Me?
+Yvonne elliman
+10
+
+Music: 1970s: Artist/Band: Love Means?
+Sounds of sunshine
+10
+
+Music: 1970s: Artist/Band: Love On A Two-Way Street?
+Moments
+10
+
+Music: 1970s: Artist/Band: Love Or Leave?
+Spinners
+10
+
+Music: 1970s: Artist/Band: Love Or Let Me Be Lonely?
+Friends of distinction
+10
+
+Music: 1970s: Artist/Band: Love Or Something Like It?
+Kenny rogers
+10
+
+Music: 1970s: Artist/Band: Love Pains?
+Yvonne elliman
+10
+
+Music: 1970s: Artist/Band: Love Really Hurts Without You?
+Billy ocean
+10
+
+Music: 1970s: Artist/Band: Love Rollercoaster?
+Ohio players
+10
+
+Music: 1970s: Artist/Band: Love So Right?
+Bee gees
+10
+
+Music: 1970s: Artist/Band: Love Song?
+Anne murray
+10
+
+Music: 1970s: Artist/Band: Love Story?
+Andy williams
+10
+
+Music: 1970s: Artist/Band: Love Takes Time?
+Orleans
+10
+
+Music: 1970s: Artist/Band: Love To Love You Baby?
+Donna summer
+10
+
+Music: 1970s: Artist/Band: Love Train?
+O'jays
+10
+
+Music: 1970s: Artist/Band: Love Will Find A Way?
+Pablo cruise
+10
+
+Music: 1970s: Artist/Band: Love Will Keep Us Together?
+Captain & tennille
+10
+
+Music: 1970s: Artist/Band: Love Won't Let Me Wait?
+Major harris
+10
+
+Music: 1970s: Artist/Band: Love You Inside Out?
+Bee gees
+10
+
+Music: 1970s: Artist/Band: Love's Grown Deep?
+Kenny nolan
+10
+
+Music: 1970s: Artist/Band: Love's Lines Angles And Rhymes?
+5th dimension
+10
+
+Music: 1970s: Artist/Band: Love's Theme?
+Love unlimited orchestra
+10
+
+Music: 1970s: Artist/Band: Love?
+Al green
+10
+
+Music: 1970s: Artist/Band: Lovely Day?
+Bill withers
+10
+
+Music: 1970s: Artist/Band: Loves Me Like A Rock?
+Paul simon
+10
+
+Music: 1970s: Artist/Band: Lovin' You?
+Minnie riperton
+10
+
+Music: 1970s: Artist/Band: Lovin', Touchin', Squeezin'?
+Journey
+10
+
+Music: 1970s: Artist/Band: Loving Her Was Easier?
+Kris kristofferson
+10
+
+Music: 1970s: Artist/Band: Loving You Just Crossed My Mind?
+Sam neely
+10
+
+Music: 1970s: Artist/Band: Low Rider?
+War
+10
+
+Music: 1970s: Artist/Band: Lucille?
+Kenny rogers
+10
+
+Music: 1970s: Artist/Band: Luckenbach, Texas?
+Waylon jennings
+10
+
+Music: 1970s: Artist/Band: Lucretia Mac Evil?
+Blood, sweat & tears
+10
+
+Music: 1970s: Artist/Band: Lucy In The Sky With Diamonds?
+Elton john
+10
+
+Music: 1970s: Artist/Band: Lyin' Eyes?
+Eagles
+10
+
+Music: 1970s: Artist/Band: Ma Belle Amie?
+Tee set
+10
+
+Music: 1970s: Artist/Band: Mac Arthur Park?
+Four tops
+10
+
+Music: 1970s: Artist/Band: Macarthur Park?
+Donna summer
+10
+
+Music: 1970s: Artist/Band: Machine Gun?
+Commodores
+10
+
+Music: 1970s: Artist/Band: Macho Man?
+Village people
+10
+
+Music: 1970s: Artist/Band: Mademoiselle?
+Styx
+10
+
+Music: 1970s: Artist/Band: Maggie May?
+Rod stewart
+10
+
+Music: 1970s: Artist/Band: Magic Man?
+Heart
+10
+
+Music: 1970s: Artist/Band: Magic?
+Pilot
+10
+
+Music: 1970s: Artist/Band: Magical Mystery Tour?
+Ambrosia
+10
+
+Music: 1970s: Artist/Band: Magnet And Steel?
+Walter egan
+10
+
+Music: 1970s: Artist/Band: Mahogany (Theme)?
+Diana ross
+10
+
+Music: 1970s: Artist/Band: Mainstreet?
+Bob seger
+10
+
+Music: 1970s: Artist/Band: Make It Easy On Yourself?
+Dionne warwick
+10
+
+Music: 1970s: Artist/Band: Make It Funky?
+James brown
+10
+
+Music: 1970s: Artist/Band: Make It With You?
+Bread
+10
+
+Music: 1970s: Artist/Band: Make Me Smile?
+Chicago
+10
+
+Music: 1970s: Artist/Band: Make Me The Woman That You Go Home To?
+Gladys knight & the pips
+10
+
+Music: 1970s: Artist/Band: Makin' It?
+David naughton
+10
+
+Music: 1970s: Artist/Band: Making Our Dreams Come True?
+Cyndi grecco
+10
+
+Music: 1970s: Artist/Band: Mama Can't Buy You Love?
+Elton john
+10
+
+Music: 1970s: Artist/Band: Mama Told Me?
+Three dog night
+10
+
+Music: 1970s: Artist/Band: Mama's Pearl?
+Jackson 5
+10
+
+Music: 1970s: Artist/Band: Mamma Mia?
+Abba
+10
+
+Music: 1970s: Artist/Band: Mandy?
+Barry manilow
+10
+
+Music: 1970s: Artist/Band: Margaritaville?
+Jimmy buffett
+10
+
+Music: 1970s: Artist/Band: Married Men?
+Bette midler
+10
+
+Music: 1970s: Artist/Band: Mary Had A Little Lamb?
+Wings
+10
+
+Music: 1970s: Artist/Band: Master Of Eyes?
+Aretha franklin
+10
+
+Music: 1970s: Artist/Band: Masterpiece?
+Temptations
+10
+
+Music: 1970s: Artist/Band: Maybe I'm A Fool?
+Eddie money
+10
+
+Music: 1970s: Artist/Band: Maybe I'm Amazed?
+Wings
+10
+
+Music: 1970s: Artist/Band: Maybe Tommorrow?
+Jackson 5
+10
+
+Music: 1970s: Artist/Band: Maybe?
+Three degrees
+10
+
+Music: 1970s: Artist/Band: Me And Baby Brother?
+War
+10
+
+Music: 1970s: Artist/Band: Me And Julio Down By The Schoolyard?
+Paul simon
+10
+
+Music: 1970s: Artist/Band: Me And Mrs. Jones?
+Billy paul
+10
+
+Music: 1970s: Artist/Band: Me And My Arrow?
+Nilsson
+10
+
+Music: 1970s: Artist/Band: Me And You And A Dog Named Boo?
+Lobo
+10
+
+Music: 1970s: Artist/Band: Mercy Mercy Me?
+Marvin gaye
+10
+
+Music: 1970s: Artist/Band: Midnight At The Oasis?
+Maria muldaur
+10
+
+Music: 1970s: Artist/Band: Midnight Blue?
+Melissa Manchester
+10
+
+Music: 1970s: Artist/Band: Midnight Train To Georgia?
+Gladys knight & the pips
+10
+
+Music: 1970s: Artist/Band: Midnight Wind?
+John stewart
+10
+
+Music: 1970s: Artist/Band: Mighty Clouds Of Joy?
+B.j. thomas
+10
+
+Music: 1970s: Artist/Band: Mighty Love?
+Spinners
+10
+
+Music: 1970s: Artist/Band: Mighty Mighty?
+Earth wind & fire
+10
+
+Music: 1970s: Artist/Band: Mind Games?
+John lennon
+10
+
+Music: 1970s: Artist/Band: Minute By Minute?
+Doobie brothers
+10
+
+Music: 1970s: Artist/Band: Miracles?
+Jefferson starship
+10
+
+Music: 1970s: Artist/Band: Misdemeanor?
+Foster sylvers
+10
+
+Music: 1970s: Artist/Band: Miss You?
+Rolling stones
+10
+
+Music: 1970s: Artist/Band: Mississippi Queen?
+Mountain
+10
+
+Music: 1970s: Artist/Band: Mississippi?
+John phillips
+10
+
+Music: 1970s: Artist/Band: Mister Can't You See?
+Buffy sainte-marie
+10
+
+Music: 1970s: Artist/Band: Misty Blue?
+Dorothy moore
+10
+
+Music: 1970s: Artist/Band: Misty?
+Ray stevens
+10
+
+Music: 1970s: Artist/Band: Money Honey?
+Bay city rollers
+10
+
+Music: 1970s: Artist/Band: Money?
+Pink floyd
+10
+
+Music: 1970s: Artist/Band: Montego Bay?
+Bobby bloom
+10
+
+Music: 1970s: Artist/Band: Moody Blue?
+Elvis presley
+10
+
+Music: 1970s: Artist/Band: Moon Shadow?
+Cat stevens
+10
+
+Music: 1970s: Artist/Band: Moonlight Feels Right?
+Starbuck
+10
+
+Music: 1970s: Artist/Band: More Than A Feeling?
+Boston
+10
+
+Music: 1970s: Artist/Band: More Than A Woman?
+Tavares
+10
+
+Music: 1970s: Artist/Band: More, More, More?
+Andrea true connection
+10
+
+Music: 1970s: Artist/Band: Mornin' Beautiful?
+Dawn
+10
+
+Music: 1970s: Artist/Band: Morning Dance?
+Spyro gyra
+10
+
+Music: 1970s: Artist/Band: Morning Has Broken?
+Cat stevens
+10
+
+Music: 1970s: Artist/Band: Morning Side Of The Mountain?
+Donny & marie osmond
+10
+
+Music: 1970s: Artist/Band: Most Of All?
+B.j. thomas
+10
+
+Music: 1970s: Artist/Band: Mother And Child Reunion?
+Paul simon
+10
+
+Music: 1970s: Artist/Band: Mother Freedom?
+Bread
+10
+
+Music: 1970s: Artist/Band: Motorcycle Mama?
+Sailcat
+10
+
+Music: 1970s: Artist/Band: Movin' On?
+Bad company
+10
+
+Music: 1970s: Artist/Band: Movin' Out?
+Billy joel
+10
+
+Music: 1970s: Artist/Band: Movin'?
+Brass construction
+10
+
+Music: 1970s: Artist/Band: Mr. Big Stuff?
+Jean knight
+10
+
+Music: 1970s: Artist/Band: Mr. Blue Sky?
+Electric light orchestra
+10
+
+Music: 1970s: Artist/Band: Mr. Bojangles?
+Nitty gritty dirt band
+10
+
+Music: 1970s: Artist/Band: Mr. Jaws?
+Dickie goodman
+10
+
+Music: 1970s: Artist/Band: Music Box Dancer?
+Frank mills
+10
+
+Music: 1970s: Artist/Band: Muskrat Love?
+Captain & tennille
+10
+
+Music: 1970s: Artist/Band: Must Of Got Lost?
+J. geils band
+10
+
+Music: 1970s: Artist/Band: My Angel Baby?
+Toby beau
+10
+
+Music: 1970s: Artist/Band: My Baby Loves Lovin'?
+White plains
+10
+
+Music: 1970s: Artist/Band: My Best Freind's Girl?
+Cars
+10
+
+Music: 1970s: Artist/Band: My Boy?
+Elvis presley
+10
+
+Music: 1970s: Artist/Band: My Ding-A-Ling?
+Chuck berry
+10
+
+Music: 1970s: Artist/Band: My Eyes Adored You?
+Frankie valli
+10
+
+Music: 1970s: Artist/Band: My Fair Share?
+Seals & crofts
+10
+
+Music: 1970s: Artist/Band: My Girl Bill?
+Jim stafford
+10
+
+Music: 1970s: Artist/Band: My Heart Belongs To Me?
+Barbra streisand
+10
+
+Music: 1970s: Artist/Band: My Life?
+Billy joel
+10
+
+Music: 1970s: Artist/Band: My Little Town?
+Simon & garfunkel
+10
+
+Music: 1970s: Artist/Band: My Maria?
+B.w. stevenson
+10
+
+Music: 1970s: Artist/Band: My Melody Of Love?
+Bobby vinton
+10
+
+Music: 1970s: Artist/Band: My Music?
+Loggins & messina
+10
+
+Music: 1970s: Artist/Band: My Sharona?
+Knack
+10
+
+Music: 1970s: Artist/Band: My Sweet Lord?
+George harrison
+10
+
+Music: 1970s: Artist/Band: My Thang?
+James brown
+10
+
+Music: 1970s: Artist/Band: My Way?
+Elvis presley
+10
+
+Music: 1970s: Artist/Band: My World?
+Bee gees
+10
+
+Music: 1970s: Artist/Band: N.Y., You Got Me Dancing?
+Andrea true connection
+10
+
+Music: 1970s: Artist/Band: Nadia's Theme?
+Barry devorzon & perry botkin jr.
+10
+
+Music: 1970s: Artist/Band: Nathan Jones?
+Supremes
+10
+
+Music: 1970s: Artist/Band: Native New Yorker?
+Odyssey
+10
+
+Music: 1970s: Artist/Band: Natural High?
+Bloodstone
+10
+
+Music: 1970s: Artist/Band: Neanderthal Man?
+Hotlegs
+10
+
+Music: 1970s: Artist/Band: Neither One Of Us?
+Gladys knight & the pips
+10
+
+Music: 1970s: Artist/Band: Never Been To Spain?
+Three dog night
+10
+
+Music: 1970s: Artist/Band: Never Ending Song Of Love?
+Delaney & bonnie & friends
+10
+
+Music: 1970s: Artist/Band: Never Gonna Fall In Love Again?
+Eric carmen
+10
+
+Music: 1970s: Artist/Band: Never Had A Dream Come True?
+Stevie wonder
+10
+
+Music: 1970s: Artist/Band: Never Let Her Go?
+David gates
+10
+
+Music: 1970s: Artist/Band: Never, Never Gonna Give Ya Up?
+Barry white
+10
+
+Music: 1970s: Artist/Band: New Kid In Town?
+Eagles
+10
+
+Music: 1970s: Artist/Band: New York Groove?
+Ace frehley
+10
+
+Music: 1970s: Artist/Band: Nice 'N' Naasty?
+Salsoul orchestra
+10
+
+Music: 1970s: Artist/Band: Nice To Be With You?
+Gallery
+10
+
+Music: 1970s: Artist/Band: Night Fever?
+Bee gees
+10
+
+Music: 1970s: Artist/Band: Night Moves?
+Bob seger
+10
+
+Music: 1970s: Artist/Band: Nightingale?
+Carole king
+10
+
+Music: 1970s: Artist/Band: Nights Are Forever Without You?
+England dan & john ford coley
+10
+
+Music: 1970s: Artist/Band: Nights In White Satin?
+Moody blues
+10
+
+Music: 1970s: Artist/Band: Nights On Broadway?
+Bee gees
+10
+
+Music: 1970s: Artist/Band: No Charge?
+Melba montgomery
+10
+
+Music: 1970s: Artist/Band: No Love At All?
+B.j. thomas
+10
+
+Music: 1970s: Artist/Band: No Matter What?
+Badfinger
+10
+
+Music: 1970s: Artist/Band: No More Mr. Nice Guy?
+Alice cooper
+10
+
+Music: 1970s: Artist/Band: No No Song?
+Ringo starr
+10
+
+Music: 1970s: Artist/Band: No One To Depend On?
+Santana
+10
+
+Music: 1970s: Artist/Band: No Sugar Tonight?
+Guess who
+10
+
+Music: 1970s: Artist/Band: No Tell Lover?
+Chicago
+10
+
+Music: 1970s: Artist/Band: No Time?
+Guess who
+10
+
+Music: 1970s: Artist/Band: Nobody Does It Better?
+Carly simon
+10
+
+Music: 1970s: Artist/Band: Nobody Wants You When You're Down?
+Bobby womack
+10
+
+Music: 1970s: Artist/Band: Nothing From Nothing?
+Billy preston
+10
+
+Music: 1970s: Artist/Band: Nutbush City Limits?
+Ike & tina turner
+10
+
+Music: 1970s: Artist/Band: Oh Babe, What Would You Say?
+Hurricane smith
+10
+
+Music: 1970s: Artist/Band: Oh Darling?
+Robin gibb
+10
+
+Music: 1970s: Artist/Band: Oh Girl?
+Chi-lites
+10
+
+Music: 1970s: Artist/Band: Oh Happy Day?
+Glen campbell
+10
+
+Music: 1970s: Artist/Band: Oh La De Da?
+Staple singers
+10
+
+Music: 1970s: Artist/Band: Oh Me Oh My?
+Lulu
+10
+
+Music: 1970s: Artist/Band: Oh My My?
+Ringo starr
+10
+
+Music: 1970s: Artist/Band: Oh Very Young?
+Cat stevens
+10
+
+Music: 1970s: Artist/Band: Oh Well?
+Rockets
+10
+
+Music: 1970s: Artist/Band: Oh What A Night For Dancing?
+Barry white
+10
+
+Music: 1970s: Artist/Band: Ohio?
+Crosby stills nash & young
+10
+
+Music: 1970s: Artist/Band: Old Days?
+Chicago
+10
+
+Music: 1970s: Artist/Band: Old Fashioned Boy?
+Stallion
+10
+
+Music: 1970s: Artist/Band: Old Man?
+Neil young
+10
+
+Music: 1970s: Artist/Band: Old Schoolyard?
+Cat stevens
+10
+
+Music: 1970s: Artist/Band: Old Time Rock & Roll?
+Bob seger & the silver bullet band
+10
+
+Music: 1970s: Artist/Band: On Broadway?
+George benson
+10
+
+Music: 1970s: Artist/Band: On The Shelf?
+Donny & marie osmond
+10
+
+Music: 1970s: Artist/Band: Once You Get Started?
+Rufus
+10
+
+Music: 1970s: Artist/Band: Once You Understand?
+Think
+10
+
+Music: 1970s: Artist/Band: One Bad Apple?
+Osmonds
+10
+
+Music: 1970s: Artist/Band: One Day At A Time?
+Marilyn sellars
+10
+
+Music: 1970s: Artist/Band: One Fine Morning?
+Lighthouse
+10
+
+Music: 1970s: Artist/Band: One Hell Of A Woman?
+Mac davis
+10
+
+Music: 1970s: Artist/Band: One Last Kiss?
+J. geils band
+10
+
+Music: 1970s: Artist/Band: One Less Bell To Answer?
+5th dimension
+10
+
+Music: 1970s: Artist/Band: One Less Set Of Footsteps?
+Jim croce
+10
+
+Music: 1970s: Artist/Band: One Love In My Lifetime?
+Diana ross
+10
+
+Music: 1970s: Artist/Band: One Man Woman/One Woman Man?
+Paul anka
+10
+
+Music: 1970s: Artist/Band: One Monkey Don't Stop No Show?
+Honey cone
+10
+
+Music: 1970s: Artist/Band: One Nation Under A Groove?
+Funkadelic
+10
+
+Music: 1970s: Artist/Band: One Of A Kind?
+Spinners
+10
+
+Music: 1970s: Artist/Band: One Of These Nights?
+Eagles
+10
+
+Music: 1970s: Artist/Band: One Piece At A Time?
+Johnny cash
+10
+
+Music: 1970s: Artist/Band: One Toke Over The Line?
+Brewer & shipley
+10
+
+Music: 1970s: Artist/Band: One Way Or Another?
+Blondie
+10
+
+Music: 1970s: Artist/Band: Only Love Can Break Your Heart?
+Neil young
+10
+
+Music: 1970s: Artist/Band: Only Love Is Real?
+Carole king
+10
+
+Music: 1970s: Artist/Band: Only Sixteen?
+Dr. hook
+10
+
+Music: 1970s: Artist/Band: Only The Good Die Young?
+Billy joel
+10
+
+Music: 1970s: Artist/Band: Only Woman?
+Alice cooper
+10
+
+Music: 1970s: Artist/Band: Only Yesterday?
+Carpenters
+10
+
+Music: 1970s: Artist/Band: Only You Know And I Know?
+Delaney & bonnie & friends
+10
+
+Music: 1970s: Artist/Band: Only You?
+Ringo starr
+10
+
+Music: 1970s: Artist/Band: Ooh Baby Baby?
+Linda ronstadt
+10
+
+Music: 1970s: Artist/Band: Ooh Baby?
+Gilbert o'sullivan
+10
+
+Music: 1970s: Artist/Band: Ooh Child?
+Five stairsteps
+10
+
+Music: 1970s: Artist/Band: Operator (That's Not The Way It Feels)?
+Jim croce
+10
+
+Music: 1970s: Artist/Band: Operator?
+Manhattan transfer
+10
+
+Music: 1970s: Artist/Band: Our Day Will Come?
+Frankie valli
+10
+
+Music: 1970s: Artist/Band: Our House?
+Crosby stills nash & young
+10
+
+Music: 1970s: Artist/Band: Our Love?
+Natalie cole
+10
+
+Music: 1970s: Artist/Band: Out In The Country?
+Three dog night
+10
+
+Music: 1970s: Artist/Band: Out Of The Question?
+Gilbert o'sullivan
+10
+
+Music: 1970s: Artist/Band: Outside Woman?
+Bloodstone
+10
+
+Music: 1970s: Artist/Band: Outta-Space?
+Billy preston
+10
+
+Music: 1970s: Artist/Band: Over My Head?
+Fleetwood mac
+10
+
+Music: 1970s: Artist/Band: Overnight Sensation?
+Raspberries
+10
+
+Music: 1970s: Artist/Band: Overture From Tommy?
+Assembled multitude
+10
+
+Music: 1970s: Artist/Band: Oye Como Va?
+Santana
+10
+
+Music: 1970s: Artist/Band: Painted Ladies?
+Ian thomas
+10
+
+Music: 1970s: Artist/Band: Paloma Blanca?
+George baker selection
+10
+
+Music: 1970s: Artist/Band: Papa Don't Take No Mess?
+James brown
+10
+
+Music: 1970s: Artist/Band: Papa Was A Rollin' Stone?
+Temptations
+10
+
+Music: 1970s: Artist/Band: Paper Roses?
+Marie osmond
+10
+
+Music: 1970s: Artist/Band: Paradise By The Dashboard Light?
+Meat loaf
+10
+
+Music: 1970s: Artist/Band: Part Of The Plan?
+Dan fogelberg
+10
+
+Music: 1970s: Artist/Band: Patches?
+Clarence carter
+10
+
+Music: 1970s: Artist/Band: Pay To The Piper?
+Chairmen of the board
+10
+
+Music: 1970s: Artist/Band: Peace Of Mind?
+Boston
+10
+
+Music: 1970s: Artist/Band: Peace Pipe?
+B.t. express
+10
+
+Music: 1970s: Artist/Band: Peace Train?
+Cat stevens
+10
+
+Music: 1970s: Artist/Band: Peace Will Come?
+Melanie
+10
+
+Music: 1970s: Artist/Band: Peaceful Easy Feeling?
+Eagles
+10
+
+Music: 1970s: Artist/Band: Peaceful?
+Helen reddy
+10
+
+Music: 1970s: Artist/Band: Peg?
+Steely dan
+10
+
+Music: 1970s: Artist/Band: People Gotta Move?
+Gino vannelli
+10
+
+Music: 1970s: Artist/Band: People In Love?
+10cc
+10
+
+Music: 1970s: Artist/Band: People Make The World Go Round?
+Stylistics
+10
+
+Music: 1970s: Artist/Band: People Of The South Wind?
+Kansas
+10
+
+Music: 1970s: Artist/Band: Philadelphia Freedom?
+Elton john
+10
+
+Music: 1970s: Artist/Band: Photograph?
+Ringo starr
+10
+
+Music: 1970s: Artist/Band: Piano Man?
+Billy joel
+10
+
+Music: 1970s: Artist/Band: Pick Up The Pieces?
+Average white band
+10
+
+Music: 1970s: Artist/Band: Pieces Of April?
+Three dog night
+10
+
+Music: 1970s: Artist/Band: Pillow Talk?
+Sylvia (vanderpool)
+10
+
+Music: 1970s: Artist/Band: Pinball Wizard/See Me, Feel Me?
+New seekers
+10
+
+Music: 1970s: Artist/Band: Play Me?
+Neil diamond
+10
+
+Music: 1970s: Artist/Band: Play Something Sweet?
+Three dog night
+10
+
+Music: 1970s: Artist/Band: Play That Funky Music?
+Wild cherry
+10
+
+Music: 1970s: Artist/Band: Playground In My Mind?
+Clint holmes
+10
+
+Music: 1970s: Artist/Band: Please Come Home For Christmas?
+Eagles
+10
+
+Music: 1970s: Artist/Band: Please Come To Boston?
+Dave loggins
+10
+
+Music: 1970s: Artist/Band: Please Don't Go?
+Kc & the sunshine band
+10
+
+Music: 1970s: Artist/Band: Please Don't Leave?
+Lauren wood
+10
+
+Music: 1970s: Artist/Band: Please Mr. Please?
+Olivia newton-john
+10
+
+Music: 1970s: Artist/Band: Please Mr. Postman?
+Carpenters
+10
+
+Music: 1970s: Artist/Band: Poetry Man?
+Phoebe snow
+10
+
+Music: 1970s: Artist/Band: Point Of Know Return?
+Kansas
+10
+
+Music: 1970s: Artist/Band: Poor Poor Pitiful Me?
+Linda ronstadt
+10
+
+Music: 1970s: Artist/Band: Pop Muzik?
+M
+10
+
+Music: 1970s: Artist/Band: Pop That Thang?
+Isley brothers
+10
+
+Music: 1970s: Artist/Band: Popcorn?
+Hot butter
+10
+
+Music: 1970s: Artist/Band: Power Of Love?
+Joe simon
+10
+
+Music: 1970s: Artist/Band: Power To The People?
+John lennon
+10
+
+Music: 1970s: Artist/Band: Precious And Few?
+Climax
+10
+
+Music: 1970s: Artist/Band: Precious Love?
+Bob welch
+10
+
+Music: 1970s: Artist/Band: Precious, Precious?
+Jackie moore
+10
+
+Music: 1970s: Artist/Band: Pretty Girls?
+Melissa Manchester
+10
+
+Music: 1970s: Artist/Band: Prisoner Of Your Love?
+Player
+10
+
+Music: 1970s: Artist/Band: Promised Land?
+Elvis presley
+10
+
+Music: 1970s: Artist/Band: Promises?
+Eric clapton
+10
+
+Music: 1970s: Artist/Band: Proud Mary?
+Ike & tina turner
+10
+
+Music: 1970s: Artist/Band: Prove It All Night?
+Bruce springsteen
+10
+
+Music: 1970s: Artist/Band: Psychedelic Shack?
+Temptations
+10
+
+Music: 1970s: Artist/Band: Puppy Love?
+Donny osmond
+10
+
+Music: 1970s: Artist/Band: Push And Pull?
+Rufus thomas
+10
+
+Music: 1970s: Artist/Band: Put Your Hand In The Hand?
+Ocean
+10
+
+Music: 1970s: Artist/Band: Put Your Hands Together?
+O'jays
+10
+
+Music: 1970s: Artist/Band: Queen Of My Soul?
+Average white band
+10
+
+Music: 1970s: Artist/Band: Question?
+Moody blues
+10
+
+Music: 1970s: Artist/Band: Questions 67 And 68?
+Chicago
+10
+
+Music: 1970s: Artist/Band: Radar Love?
+Golden earring
+10
+
+Music: 1970s: Artist/Band: Rags To Riches?
+Elvis presley
+10
+
+Music: 1970s: Artist/Band: Rain Dance?
+Guess who
+10
+
+Music: 1970s: Artist/Band: Rainbow Connection?
+Kermit
+10
+
+Music: 1970s: Artist/Band: Rainy Day People?
+Gordon lightfoot
+10
+
+Music: 1970s: Artist/Band: Rainy Days And Mondays?
+Carpenters
+10
+
+Music: 1970s: Artist/Band: Rainy Night In Georgia?
+Brook benton
+10
+
+Music: 1970s: Artist/Band: Ramblin Man?
+Allman brothers band
+10
+
+Music: 1970s: Artist/Band: Re'll Never Be?
+Switch
+10
+
+Music: 1970s: Artist/Band: Reach Out And Touch?
+Diana ross
+10
+
+Music: 1970s: Artist/Band: Reach Out I'll Be There?
+Diana ross
+10
+
+Music: 1970s: Artist/Band: Ready To Take A Chance?
+Barry manilow
+10
+
+Music: 1970s: Artist/Band: Ready?
+Cat stevens
+10
+
+Music: 1970s: Artist/Band: Reelin' & Rockin'?
+Chuck berry
+10
+
+Music: 1970s: Artist/Band: Reeling In The Years?
+Steely dan
+10
+
+Music: 1970s: Artist/Band: Reflections Of My Life?
+Marmalade
+10
+
+Music: 1970s: Artist/Band: Remember Me?
+Diana ross
+10
+
+Music: 1970s: Artist/Band: Remember What I Told You To Forget?
+Tavares
+10
+
+Music: 1970s: Artist/Band: Reminiscing?
+Little river band
+10
+
+Music: 1970s: Artist/Band: Rendezvous?
+Hudson brothers
+10
+
+Music: 1970s: Artist/Band: Respect Yourself?
+Staple singers
+10
+
+Music: 1970s: Artist/Band: Reunited?
+Peaches & herb
+10
+
+Music: 1970s: Artist/Band: Rhiannon?
+Fleetwood mac
+10
+
+Music: 1970s: Artist/Band: Rhinestone Cowboy?
+Glen campbell
+10
+
+Music: 1970s: Artist/Band: Ride 'Em Cowboy?
+Paul davis
+10
+
+Music: 1970s: Artist/Band: Ride Captain Ride?
+Blues image
+10
+
+Music: 1970s: Artist/Band: Riders On The Storm?
+Doors
+10
+
+Music: 1970s: Artist/Band: Right Back Where We Started From?
+Maxine nightingale
+10
+
+Music: 1970s: Artist/Band: Right Down The Line?
+Gerry rafferty
+10
+
+Music: 1970s: Artist/Band: Right On The Tip Of My Tongue?
+Brenda & the tabulations
+10
+
+Music: 1970s: Artist/Band: Right Time Of The Night?
+Jennifer warnes
+10
+
+Music: 1970s: Artist/Band: Rikki Don't Lose That Number?
+Steely dan
+10
+
+Music: 1970s: Artist/Band: Ring My Bell?
+Anita ward
+10
+
+Music: 1970s: Artist/Band: Ring The Living Bell?
+Melanie
+10
+
+Music: 1970s: Artist/Band: Rings?
+Cymarron
+10
+
+Music: 1970s: Artist/Band: Rise?
+Herb alpert
+10
+
+Music: 1970s: Artist/Band: River Deep, Mountain High?
+Supremes
+10
+
+Music: 1970s: Artist/Band: River's Risin'?
+Edgar winter group
+10
+
+Music: 1970s: Artist/Band: Rivers Of Babylon?
+Boney m
+10
+
+Music: 1970s: Artist/Band: Rock 'N' Roll Fantasy?
+Bad company
+10
+
+Music: 1970s: Artist/Band: Rock 'N' Roll Soul?
+Grand funk railroad
+10
+
+Music: 1970s: Artist/Band: Rock And Roll All Night?
+Kiss
+10
+
+Music: 1970s: Artist/Band: Rock And Roll Heaven?
+Righteous brothers
+10
+
+Music: 1970s: Artist/Band: Rock And Roll Love Letter?
+Bay city rollers
+10
+
+Music: 1970s: Artist/Band: Rock And Roll Lullaby?
+B.j. thomas
+10
+
+Music: 1970s: Artist/Band: Rock And Roll Music?
+Beach boys
+10
+
+Music: 1970s: Artist/Band: Rock And Roll Part 2?
+Gary glitter
+10
+
+Music: 1970s: Artist/Band: Rock And Roll, Hoochie Koo?
+Rick derringer
+10
+
+Music: 1970s: Artist/Band: Rock Around The Clock?
+Bill haley & his comets
+10
+
+Music: 1970s: Artist/Band: Rock Me Baby?
+David cassidy
+10
+
+Music: 1970s: Artist/Band: Rock Me Gently?
+Andy kim
+10
+
+Music: 1970s: Artist/Band: Rock N' Roll?
+Mac davis
+10
+
+Music: 1970s: Artist/Band: Rock On?
+David essex
+10
+
+Music: 1970s: Artist/Band: Rock Steady?
+Aretha franklin
+10
+
+Music: 1970s: Artist/Band: Rock The Boat?
+Hues corporation
+10
+
+Music: 1970s: Artist/Band: Rock With You?
+Michael jackson
+10
+
+Music: 1970s: Artist/Band: Rock Your Baby?
+George mccrae
+10
+
+Music: 1970s: Artist/Band: Rock'n Me?
+Steve miller band
+10
+
+Music: 1970s: Artist/Band: Rocket Man?
+Elton john
+10
+
+Music: 1970s: Artist/Band: Rocket Ride?
+Kiss
+10
+
+Music: 1970s: Artist/Band: Rockin' All Over The World?
+John fogerty
+10
+
+Music: 1970s: Artist/Band: Rockin' Chair?
+Gwen mccrae
+10
+
+Music: 1970s: Artist/Band: Rockin' Pneumonia - Boogie Woogie Flu?
+Johnny rivers
+10
+
+Music: 1970s: Artist/Band: Rockin' Robin?
+Michael jackson
+10
+
+Music: 1970s: Artist/Band: Rockin' Roll Baby?
+Stylistics
+10
+
+Music: 1970s: Artist/Band: Rockin' Soul?
+Hues corporation
+10
+
+Music: 1970s: Artist/Band: Rocky Mountain High?
+John denver
+10
+
+Music: 1970s: Artist/Band: Rocky Mountain Way?
+Joe walsh
+10
+
+Music: 1970s: Artist/Band: Rocky?
+Austin roberts
+10
+
+Music: 1970s: Artist/Band: Rolene?
+Moon martin
+10
+
+Music: 1970s: Artist/Band: Roll On Down The Highway?
+Bachman-turner overdrive
+10
+
+Music: 1970s: Artist/Band: Roller?
+April wine
+10
+
+Music: 1970s: Artist/Band: Rose Garden?
+Lynn anderson
+10
+
+Music: 1970s: Artist/Band: Rotation?
+Herb alpert
+10
+
+Music: 1970s: Artist/Band: Roundabout?
+Yes
+10
+
+Music: 1970s: Artist/Band: Roxanne?
+Police
+10
+
+Music: 1970s: Artist/Band: Rubber Biscuit?
+Blues brothers
+10
+
+Music: 1970s: Artist/Band: Rubber Duckie?
+Ernie
+10
+
+Music: 1970s: Artist/Band: Run For Home?
+Lindisfarne
+10
+
+Music: 1970s: Artist/Band: Run Joey Run?
+David geddes
+10
+
+Music: 1970s: Artist/Band: Run Run Run?
+Jo jo gunne
+10
+
+Music: 1970s: Artist/Band: Run To Me?
+Bee gees
+10
+
+Music: 1970s: Artist/Band: Runaround Sue?
+Leif garrett
+10
+
+Music: 1970s: Artist/Band: Runaway?
+Jefferson starship
+10
+
+Music: 1970s: Artist/Band: Runnin' Away?
+Sly & the family stone
+10
+
+Music: 1970s: Artist/Band: Running On Empty?
+Jackson browne
+10
+
+Music: 1970s: Artist/Band: S.W.A.T. (Theme)?
+Rhythm heritage
+10
+
+Music: 1970s: Artist/Band: Sad Eyes?
+Robert john
+10
+
+Music: 1970s: Artist/Band: Sad Sweet Dreamer?
+Sweet sensation
+10
+
+Music: 1970s: Artist/Band: Sail On?
+Commodores
+10
+
+Music: 1970s: Artist/Band: Sally G?
+Wings
+10
+
+Music: 1970s: Artist/Band: Sam?
+Olivia newton-john
+10
+
+Music: 1970s: Artist/Band: Sara Smile?
+Daryl hall & john oates
+10
+
+Music: 1970s: Artist/Band: Sara?
+Fleetwood mac
+10
+
+Music: 1970s: Artist/Band: Satin Sheets?
+Jeanne pruett
+10
+
+Music: 1970s: Artist/Band: Satin Soul?
+Love unlimited orchestra
+10
+
+Music: 1970s: Artist/Band: Saturday In The Park?
+Chicago
+10
+
+Music: 1970s: Artist/Band: Saturday Morning Confusion?
+Bobby russell
+10
+
+Music: 1970s: Artist/Band: Saturday Night Special?
+Lynyrd skynyrd
+10
+
+Music: 1970s: Artist/Band: Saturday Night Sunday Morning?
+Thelma houston
+10
+
+Music: 1970s: Artist/Band: Saturday Night?
+Bay city rollers
+10
+
+Music: 1970s: Artist/Band: Saturday Nights Alright For Fighting?
+Elton john
+10
+
+Music: 1970s: Artist/Band: Saturday Nite?
+Earth wind & fire
+10
+
+Music: 1970s: Artist/Band: Saturdaynight?
+Herman brood
+10
+
+Music: 1970s: Artist/Band: Save It For A Rainy Day?
+Stephen bishop
+10
+
+Music: 1970s: Artist/Band: Save The Country?
+5th dimension
+10
+
+Music: 1970s: Artist/Band: Save The Last Dance For Me?
+Defranco family
+10
+
+Music: 1970s: Artist/Band: Save Your Kisses For Me?
+Brotherhood of man
+10
+
+Music: 1970s: Artist/Band: Say Has Anybody Seen My Sweet Gypsy Rose?
+Dawn
+10
+
+Music: 1970s: Artist/Band: Say You Love Me?
+Fleetwood mac
+10
+
+Music: 1970s: Artist/Band: Say You'll Stay Until Tommorrow?
+Tom jones
+10
+
+Music: 1970s: Artist/Band: School Boy Crush?
+Average white band
+10
+
+Music: 1970s: Artist/Band: School's Out?
+Alice cooper
+10
+
+Music: 1970s: Artist/Band: Scorpio?
+Dennis coffey & the detroit guitar band
+10
+
+Music: 1970s: Artist/Band: Sealed With A Kiss?
+Bobby vinton
+10
+
+Music: 1970s: Artist/Band: Searchin' So Long?
+Chicago
+10
+
+Music: 1970s: Artist/Band: Seasons in the Sun?
+Terry jacks
+10
+
+Music: 1970s: Artist/Band: Second Avenue?
+Art garfunkel
+10
+
+Music: 1970s: Artist/Band: Secret Love?
+Freddy fender
+10
+
+Music: 1970s: Artist/Band: See Me, Feel Me?
+Who
+10
+
+Music: 1970s: Artist/Band: Send In The Clowns?
+Judy collins
+10
+
+Music: 1970s: Artist/Band: Send One Your Love?
+Stevie wonder
+10
+
+Music: 1970s: Artist/Band: Sentimental Lady?
+Bob welch
+10
+
+Music: 1970s: Artist/Band: Separate Ways?
+Elvis presley
+10
+
+Music: 1970s: Artist/Band: September?
+Earth wind & fire
+10
+
+Music: 1970s: Artist/Band: Serpentine Fire?
+Earth wind & fire
+10
+
+Music: 1970s: Artist/Band: Sexy Mama?
+Moments
+10
+
+Music: 1970s: Artist/Band: Sha La La?
+Al green
+10
+
+Music: 1970s: Artist/Band: Shadow Dancing?
+Andy gibb
+10
+
+Music: 1970s: Artist/Band: Shadows In The Moonlight?
+Anne murray
+10
+
+Music: 1970s: Artist/Band: Shaft (Theme From Shaft)?
+Isaac hayes
+10
+
+Music: 1970s: Artist/Band: Shake It?
+Ian matthews
+10
+
+Music: 1970s: Artist/Band: Shake Your Body?
+Jacksons
+10
+
+Music: 1970s: Artist/Band: Shake Your Booty?
+Kc & the sunshine band
+10
+
+Music: 1970s: Artist/Band: Shake Your Groove Thing?
+Peaches & herb
+10
+
+Music: 1970s: Artist/Band: Shake Your Rump To The Funk?
+Bar-kays
+10
+
+Music: 1970s: Artist/Band: Shakedown Cruise?
+Jay ferguson
+10
+
+Music: 1970s: Artist/Band: Shakey Ground?
+Temptations
+10
+
+Music: 1970s: Artist/Band: Shambala?
+Three dog night
+10
+
+Music: 1970s: Artist/Band: Shame, Shame, Shame?
+Shirley & company
+10
+
+Music: 1970s: Artist/Band: Shannon?
+Henry gross
+10
+
+Music: 1970s: Artist/Band: Share The Land?
+Guess who
+10
+
+Music: 1970s: Artist/Band: Sharing The Night Together?
+Dr. hook
+10
+
+Music: 1970s: Artist/Band: Shattered?
+Rolling stones
+10
+
+Music: 1970s: Artist/Band: Shaving Cream?
+Benny bell
+10
+
+Music: 1970s: Artist/Band: She Believes In Me?
+Kenny rogers
+10
+
+Music: 1970s: Artist/Band: She Came In Through The Bathroom Window?
+Joe cocker
+10
+
+Music: 1970s: Artist/Band: She Did It?
+Eric carmen
+10
+
+Music: 1970s: Artist/Band: She's A Lady?
+Tom jones
+10
+
+Music: 1970s: Artist/Band: She's All I Got?
+Freddie north
+10
+
+Music: 1970s: Artist/Band: She's Always A Woman To Me?
+Billy joel
+10
+
+Music: 1970s: Artist/Band: She's Gone?
+Daryl hall & john oates
+10
+
+Music: 1970s: Artist/Band: She's Not Just Another Woman?
+8th day
+10
+
+Music: 1970s: Artist/Band: She's Not There?
+Santana
+10
+
+Music: 1970s: Artist/Band: Shilo?
+Neil diamond
+10
+
+Music: 1970s: Artist/Band: Shine A Little Love?
+Electric light orchestra
+10
+
+Music: 1970s: Artist/Band: Shinin' On?
+Grand funk railroad
+10
+
+Music: 1970s: Artist/Band: Shining Star?
+Earth wind & fire
+10
+
+Music: 1970s: Artist/Band: Ships?
+Barry manilow
+10
+
+Music: 1970s: Artist/Band: Shoeshine Boy?
+Eddie kendricks
+10
+
+Music: 1970s: Artist/Band: Shop Around?
+Captain & tennille
+10
+
+Music: 1970s: Artist/Band: Short People?
+Randy newman
+10
+
+Music: 1970s: Artist/Band: Shout It Out Loud?
+Kiss
+10
+
+Music: 1970s: Artist/Band: Show And Tell?
+Al wilson
+10
+
+Music: 1970s: Artist/Band: Show Me The Way?
+Peter frampton
+10
+
+Music: 1970s: Artist/Band: Show You The Way To Go?
+Jacksons
+10
+
+Music: 1970s: Artist/Band: Shower The People?
+James taylor
+10
+
+Music: 1970s: Artist/Band: Sideshow?
+Blue magic
+10
+
+Music: 1970s: Artist/Band: Signed Sealed Delivered?
+Peter frampton
+10
+
+Music: 1970s: Artist/Band: Signed, Sealed, Delivered I'm Yours?
+Stevie wonder
+10
+
+Music: 1970s: Artist/Band: Signs?
+Five man electrical band
+10
+
+Music: 1970s: Artist/Band: Silly Love Songs?
+Wings
+10
+
+Music: 1970s: Artist/Band: Silver Bird?
+Mark lindsay
+10
+
+Music: 1970s: Artist/Band: Silver Star?
+Four seasons
+10
+
+Music: 1970s: Artist/Band: Sing A Song?
+Earth wind & fire
+10
+
+Music: 1970s: Artist/Band: Sing?
+Carpenters
+10
+
+Music: 1970s: Artist/Band: Sir Duke?
+Stevie wonder
+10
+
+Music: 1970s: Artist/Band: Sister Golden Hair?
+America
+10
+
+Music: 1970s: Artist/Band: Sister Mary Elephant?
+Cheech & chong
+10
+
+Music: 1970s: Artist/Band: Sit Yourself Down?
+Stephen stills
+10
+
+Music: 1970s: Artist/Band: Sitting?
+Cat stevens
+10
+
+Music: 1970s: Artist/Band: Skin Tight?
+Ohio players
+10
+
+Music: 1970s: Artist/Band: Sky High?
+Jigsaw
+10
+
+Music: 1970s: Artist/Band: Slide?
+Slave
+10
+
+Music: 1970s: Artist/Band: Slip Slidin' Away?
+Paul simon
+10
+
+Music: 1970s: Artist/Band: Slippery When Wet?
+Commodores
+10
+
+Music: 1970s: Artist/Band: Slippin' Into Darkness?
+War
+10
+
+Music: 1970s: Artist/Band: Slow Dancin' Don't Turn Me On?
+Addrisi brothers
+10
+
+Music: 1970s: Artist/Band: Slow Ride?
+Foghat
+10
+
+Music: 1970s: Artist/Band: Slowdown?
+John miles
+10
+
+Music: 1970s: Artist/Band: Small Beginnings?
+Flash
+10
+
+Music: 1970s: Artist/Band: Smiling Faces Sometimes?
+Undisputed truth
+10
+
+Music: 1970s: Artist/Band: Smoke From A Distant Fire?
+Sanford/townsend band
+10
+
+Music: 1970s: Artist/Band: Smoke Gets In Your Eyes?
+Blue haze
+10
+
+Music: 1970s: Artist/Band: Smoke On The Water?
+Deep purple
+10
+
+Music: 1970s: Artist/Band: Smokin' In The Boy's Room?
+Brownsville station
+10
+
+Music: 1970s: Artist/Band: Snowbird?
+Anne murray
+10
+
+Music: 1970s: Artist/Band: So Far Away?
+Carole king
+10
+
+Music: 1970s: Artist/Band: So Good, So Right?
+Brenda russell
+10
+
+Music: 1970s: Artist/Band: So In To You?
+Atlanta rhythm section
+10
+
+Music: 1970s: Artist/Band: So Very Hard To Go?
+Tower of power
+10
+
+Music: 1970s: Artist/Band: So You Are A Star?
+Hudson brothers
+10
+
+Music: 1970s: Artist/Band: So You Win Again?
+Hot chocolate
+10
+
+Music: 1970s: Artist/Band: Softly Whispering I Love You?
+English congregation
+10
+
+Music: 1970s: Artist/Band: Solitaire?
+Carpenters
+10
+
+Music: 1970s: Artist/Band: Solitary Man?
+Neil diamond
+10
+
+Music: 1970s: Artist/Band: Some Guys Have All The Luck?
+Persuaders
+10
+
+Music: 1970s: Artist/Band: Some Kind Of Wonderful?
+Grand funk railroad
+10
+
+Music: 1970s: Artist/Band: Somebody To Love?
+Queen
+10
+
+Music: 1970s: Artist/Band: Somebody's Been Sleeping?
+100 proof aged in soul
+10
+
+Music: 1970s: Artist/Band: Somebody's Gettin' It?
+Johnnie taylor
+10
+
+Music: 1970s: Artist/Band: Somebody's Watching You?
+Little sister
+10
+
+Music: 1970s: Artist/Band: Someday Never Comes?
+Creedence clearwater revival
+10
+
+Music: 1970s: Artist/Band: Someone Saved My Life Tonight?
+Elton john
+10
+
+Music: 1970s: Artist/Band: Somethin Bout Cha?
+Latimore
+10
+
+Music: 1970s: Artist/Band: Something Better To Do?
+Olivia newton-john
+10
+
+Music: 1970s: Artist/Band: Something He Can Feel?
+Aretha franklin
+10
+
+Music: 1970s: Artist/Band: Something's Burning?
+Kenny rogers & the first edition
+10
+
+Music: 1970s: Artist/Band: Something's Wrong With Me?
+Austin roberts
+10
+
+Music: 1970s: Artist/Band: Sometimes When We Touch?
+Dan hill
+10
+
+Music: 1970s: Artist/Band: Sometimes?
+Facts of life
+10
+
+Music: 1970s: Artist/Band: Son Of Sagittarius?
+Eddie kendricks
+10
+
+Music: 1970s: Artist/Band: Song On The Radio?
+Al stewart
+10
+
+Music: 1970s: Artist/Band: Song Sung Blue?
+Neil diamond
+10
+
+Music: 1970s: Artist/Band: Songbird?
+Barbra streisand
+10
+
+Music: 1970s: Artist/Band: Soolaimon?
+Neil diamond
+10
+
+Music: 1970s: Artist/Band: Sooner Or Later?
+Grass roots
+10
+
+Music: 1970s: Artist/Band: Sophisticated Lady?
+Natalie cole
+10
+
+Music: 1970s: Artist/Band: Sorry Seems To Be The Hardest Word?
+Elton john
+10
+
+Music: 1970s: Artist/Band: Sos?
+Abba
+10
+
+Music: 1970s: Artist/Band: Soul And Inspiration?
+Donny & marie osmond
+10
+
+Music: 1970s: Artist/Band: Soul Makossa?
+Manu dibango
+10
+
+Music: 1970s: Artist/Band: Soul Man?
+Blues brothers
+10
+
+Music: 1970s: Artist/Band: Soul Power?
+James brown
+10
+
+Music: 1970s: Artist/Band: Soul Song?
+Joe stampley
+10
+
+Music: 1970s: Artist/Band: Southern Nights?
+Glen campbell
+10
+
+Music: 1970s: Artist/Band: Space Oddity?
+David bowie
+10
+
+Music: 1970s: Artist/Band: Space Race?
+Billy preston
+10
+
+Music: 1970s: Artist/Band: Spaceman?
+Nilsson
+10
+
+Music: 1970s: Artist/Band: Spanish Harlem?
+Aretha franklin
+10
+
+Music: 1970s: Artist/Band: Speak Softly To Me?
+Andy williams
+10
+
+Music: 1970s: Artist/Band: Speak To The Sky?
+Rick springfield
+10
+
+Music: 1970s: Artist/Band: Spiders & Snakes?
+Jim stafford
+10
+
+Music: 1970s: Artist/Band: Spirit In The Dark?
+Aretha franklin
+10
+
+Music: 1970s: Artist/Band: Spirit In The Night?
+Manfred mann's earth band
+10
+
+Music: 1970s: Artist/Band: Spirit In The Sky?
+Norman greenbaum
+10
+
+Music: 1970s: Artist/Band: Spirit Of The Boogie?
+Kool & the gang
+10
+
+Music: 1970s: Artist/Band: Spooky?
+Atlanta rhythm section
+10
+
+Music: 1970s: Artist/Band: Spring Rain?
+Silvetti
+10
+
+Music: 1970s: Artist/Band: Springtime Mama?
+Henry gross
+10
+
+Music: 1970s: Artist/Band: Squeeze Box?
+Who
+10
+
+Music: 1970s: Artist/Band: Stagger Lee?
+Tommy roe
+10
+
+Music: 1970s: Artist/Band: Stand By Me?
+John lennon
+10
+
+Music: 1970s: Artist/Band: Stand By Your Man?
+Candi staton
+10
+
+Music: 1970s: Artist/Band: Stand Tall?
+Burton cummings
+10
+
+Music: 1970s: Artist/Band: Standing At The End Of The Line?
+Lobo
+10
+
+Music: 1970s: Artist/Band: Star Baby?
+Guess who
+10
+
+Music: 1970s: Artist/Band: Star Wars (Main Title)?
+John williams
+10
+
+Music: 1970s: Artist/Band: Star Wars (Theme)?
+Meco
+10
+
+Music: 1970s: Artist/Band: Star?
+Stealers wheel
+10
+
+Music: 1970s: Artist/Band: Starting All Over Again?
+Mel & tim
+10
+
+Music: 1970s: Artist/Band: Stay Awhile?
+Bells
+10
+
+Music: 1970s: Artist/Band: Stay With Me?
+Faces
+10
+
+Music: 1970s: Artist/Band: Stayin' Alive?
+Bee gees
+10
+
+Music: 1970s: Artist/Band: Steal Away?
+Johnnie taylor
+10
+
+Music: 1970s: Artist/Band: Steamroller Blues?
+Elvis presley
+10
+
+Music: 1970s: Artist/Band: Step By Step?
+Joe simon
+10
+
+Music: 1970s: Artist/Band: Steppin Out?
+Neil sedaka
+10
+
+Music: 1970s: Artist/Band: Steppin' In A Slide Zone?
+Moody blues
+10
+
+Music: 1970s: Artist/Band: Steppin' Out?
+Dawn
+10
+
+Music: 1970s: Artist/Band: Stick Up?
+Honey cone
+10
+
+Music: 1970s: Artist/Band: Still Crazy After All These Years?
+Paul simon
+10
+
+Music: 1970s: Artist/Band: Still The One?
+Orleans
+10
+
+Music: 1970s: Artist/Band: Still The Same?
+Bob seger & the silver bullet band
+10
+
+Music: 1970s: Artist/Band: Still Water (Love)?
+Four tops
+10
+
+Music: 1970s: Artist/Band: Still?
+Commodores
+10
+
+Music: 1970s: Artist/Band: Stir It Up?
+Johnny nash
+10
+
+Music: 1970s: Artist/Band: Stone Blue?
+Foghat
+10
+
+Music: 1970s: Artist/Band: Stoned Love?
+Supremes
+10
+
+Music: 1970s: Artist/Band: Stoned Out Of My Mind?
+Chi-lites
+10
+
+Music: 1970s: Artist/Band: Stones?
+Neil diamonds
+10
+
+Music: 1970s: Artist/Band: Stoney End?
+Barbra streisand
+10
+
+Music: 1970s: Artist/Band: Stop And Smell The Roses?
+Mac davis
+10
+
+Music: 1970s: Artist/Band: Stop The War Now?
+Edwin starr
+10
+
+Music: 1970s: Artist/Band: Stop, Look, Listen?
+Stylistics
+10
+
+Music: 1970s: Artist/Band: Stormy?
+Santana
+10
+
+Music: 1970s: Artist/Band: Straight On?
+Heart
+10
+
+Music: 1970s: Artist/Band: Straight Shootin' Woman?
+Steppenwolf
+10
+
+Music: 1970s: Artist/Band: Strange Magic?
+Electric light orchestra
+10
+
+Music: 1970s: Artist/Band: Strange Way?
+Firefall
+10
+
+Music: 1970s: Artist/Band: Strawberry Letter 23?
+Brothers johnson
+10
+
+Music: 1970s: Artist/Band: Street Corner Serenade?
+Wet willie
+10
+
+Music: 1970s: Artist/Band: Street Life?
+Crusaders
+10
+
+Music: 1970s: Artist/Band: Street Singin'?
+Lady flash
+10
+
+Music: 1970s: Artist/Band: Struttin'?
+Billy preston
+10
+
+Music: 1970s: Artist/Band: Stuck In The Middle With You?
+Stealers wheel
+10
+
+Music: 1970s: Artist/Band: Stuff Like That?
+Quincy jones
+10
+
+Music: 1970s: Artist/Band: Stumblin' In?
+Suzi quatro & chris norman
+10
+
+Music: 1970s: Artist/Band: Suavecito?
+Malo
+10
+
+Music: 1970s: Artist/Band: Such A Woman?
+Tycoon
+10
+
+Music: 1970s: Artist/Band: Sugar Baby Love?
+Rubettes
+10
+
+Music: 1970s: Artist/Band: Sugar Daddy?
+Jackson 5
+10
+
+Music: 1970s: Artist/Band: Sugar Sugar?
+Wilson pickett
+10
+
+Music: 1970s: Artist/Band: Sultans Of Swing?
+Dire straits
+10
+
+Music: 1970s: Artist/Band: Summer (The First Time)?
+Bobby goldsboro
+10
+
+Music: 1970s: Artist/Band: Summer Breeze?
+Seals & crofts
+10
+
+Music: 1970s: Artist/Band: Summer Nights?
+John travolta & olivia newton-john
+10
+
+Music: 1970s: Artist/Band: Summer Of 42 (Theme)?
+Peter nero
+10
+
+Music: 1970s: Artist/Band: Summer Sand?
+Dawn
+10
+
+Music: 1970s: Artist/Band: Summer?
+War
+10
+
+Music: 1970s: Artist/Band: Summertime Blues?
+Who
+10
+
+Music: 1970s: Artist/Band: Sundown?
+Gordon lightfoot
+10
+
+Music: 1970s: Artist/Band: Sunflower?
+Glen campbell
+10
+
+Music: 1970s: Artist/Band: Sunny Days?
+Lighthouse
+10
+
+Music: 1970s: Artist/Band: Sunrise?
+Eric carmen
+10
+
+Music: 1970s: Artist/Band: Sunshine On My Shoulders?
+John denver
+10
+
+Music: 1970s: Artist/Band: Sunshine?
+Jonathan edwards
+10
+
+Music: 1970s: Artist/Band: Super Bad?
+James brown
+10
+
+Music: 1970s: Artist/Band: Super Fly Meets Shaft?
+John & ernest
+10
+
+Music: 1970s: Artist/Band: Superfly?
+Curtis mayfield
+10
+
+Music: 1970s: Artist/Band: Superman?
+Herbie mann
+10
+
+Music: 1970s: Artist/Band: Supernatural Thing?
+Ben e. king
+10
+
+Music: 1970s: Artist/Band: Superstition?
+Stevie wonder
+10
+
+Music: 1970s: Artist/Band: Superwoman?
+Stevie wonder
+10
+
+Music: 1970s: Artist/Band: Sure As I'm Sittin' Here?
+Three dog night
+10
+
+Music: 1970s: Artist/Band: Surfin' Usa (Re-Release)?
+Beach boys
+10
+
+Music: 1970s: Artist/Band: Surfin' Usa?
+Leif garrett
+10
+
+Music: 1970s: Artist/Band: Surrender?
+Diana ross
+10
+
+Music: 1970s: Artist/Band: Suspicions?
+Eddie rabbitt
+10
+
+Music: 1970s: Artist/Band: Swamp Witch?
+Jim stafford
+10
+
+Music: 1970s: Artist/Band: Swayin' To The Music?
+Johnny rivers
+10
+
+Music: 1970s: Artist/Band: Swearin' To God?
+Frankie valli
+10
+
+Music: 1970s: Artist/Band: Sweet And Innocent?
+Donny osmond
+10
+
+Music: 1970s: Artist/Band: Sweet City Woman?
+Stampeders
+10
+
+Music: 1970s: Artist/Band: Sweet Emotion?
+Aerosmith
+10
+
+Music: 1970s: Artist/Band: Sweet Hitch-Hiker?
+Creedence clearwater revival
+10
+
+Music: 1970s: Artist/Band: Sweet Home Alabama?
+Lynyrd skynyrd
+10
+
+Music: 1970s: Artist/Band: Sweet Inspiration?
+Barbra streisand
+10
+
+Music: 1970s: Artist/Band: Sweet Life?
+Paul davis
+10
+
+Music: 1970s: Artist/Band: Sweet Love?
+Commodores
+10
+
+Music: 1970s: Artist/Band: Sweet Lui Louise?
+Ironhorse
+10
+
+Music: 1970s: Artist/Band: Sweet Mary?
+Wadsworth mansion
+10
+
+Music: 1970s: Artist/Band: Sweet Maxine?
+Doobie brothers
+10
+
+Music: 1970s: Artist/Band: Sweet Seasons?
+Carole king
+10
+
+Music: 1970s: Artist/Band: Sweet Sticky Thing?
+Ohio players
+10
+
+Music: 1970s: Artist/Band: Sweet Talkin' Woman?
+Electric light orchestra
+10
+
+Music: 1970s: Artist/Band: Sweet Thing?
+Rufus
+10
+
+Music: 1970s: Artist/Band: Sweet Understanding Love?
+Four tops
+10
+
+Music: 1970s: Artist/Band: Swingtown?
+Steve miller band
+10
+
+Music: 1970s: Artist/Band: Sylvia's Mother?
+Dr. hook
+10
+
+Music: 1970s: Artist/Band: T-R-O-U-B-L-E?
+Elvis presley
+10
+
+Music: 1970s: Artist/Band: Take A Chance On Me?
+Abba
+10
+
+Music: 1970s: Artist/Band: Take A Look Around?
+Temptations
+10
+
+Music: 1970s: Artist/Band: Take It Easy?
+Eagles
+10
+
+Music: 1970s: Artist/Band: Take It Like A Man?
+Bachman-turner overdrive
+10
+
+Music: 1970s: Artist/Band: Take It To The Limit?
+Eagles
+10
+
+Music: 1970s: Artist/Band: Take Me Home Country Roads?
+John denver
+10
+
+Music: 1970s: Artist/Band: Take Me Home?
+Cher
+10
+
+Music: 1970s: Artist/Band: Take Me In Your Arms?
+Doobie brothers
+10
+
+Music: 1970s: Artist/Band: Take Me To The River?
+Talking heads
+10
+
+Music: 1970s: Artist/Band: Take The Long Way Home?
+Supertramp
+10
+
+Music: 1970s: Artist/Band: Take The Money And Run?
+Steve miller band
+10
+
+Music: 1970s: Artist/Band: Takin' Care Of Business?
+Bachman-turner overdrive
+10
+
+Music: 1970s: Artist/Band: Takin' It To The Streets?
+Doobie brothers
+10
+
+Music: 1970s: Artist/Band: Talking In Your Sleep?
+Crystal gayle
+10
+
+Music: 1970s: Artist/Band: Talking Loud And Saying Nothing?
+James brown
+10
+
+Music: 1970s: Artist/Band: Tangerine?
+Salsoul orchestra
+10
+
+Music: 1970s: Artist/Band: Tangled Up In Blue?
+Bob dylan
+10
+
+Music: 1970s: Artist/Band: Taurus?
+Dennis coffey & the detroit guitar band
+10
+
+Music: 1970s: Artist/Band: Taxi?
+Harry chapin
+10
+
+Music: 1970s: Artist/Band: Teach Your Children?
+Crosby stills nash & young
+10
+
+Music: 1970s: Artist/Band: Tear The Roof Off The Sucker?
+Parliament
+10
+
+Music: 1970s: Artist/Band: Teddy Bear Song?
+Barbara fairchild
+10
+
+Music: 1970s: Artist/Band: Teddy Bear?
+Red sovine
+10
+
+Music: 1970s: Artist/Band: Telephone Line?
+Electric light orchestra
+10
+
+Music: 1970s: Artist/Band: Telephone Man?
+Meri wilson
+10
+
+Music: 1970s: Artist/Band: Tell Her She's Lovely?
+El chicano
+10
+
+Music: 1970s: Artist/Band: Tell It All Brother?
+Kenny rogers & the first edition
+10
+
+Music: 1970s: Artist/Band: Tell Me A Lie?
+Sami jo
+10
+
+Music: 1970s: Artist/Band: Tell Me Something Good?
+Rufus
+10
+
+Music: 1970s: Artist/Band: Temma Harbour?
+Mary hopkin
+10
+
+Music: 1970s: Artist/Band: Temptation Eyes?
+Grass roots
+10
+
+Music: 1970s: Artist/Band: Tennessee Bird Walk?
+Jack blanchard & misty morgan
+10
+
+Music: 1970s: Artist/Band: Thank God I'm A Country Boy?
+John denver
+10
+
+Music: 1970s: Artist/Band: Thank God It's Friday?
+Love & kisses
+10
+
+Music: 1970s: Artist/Band: Thank You For Being A Friend?
+Andrew gold
+10
+
+Music: 1970s: Artist/Band: Thank You?
+Sly & the family stone
+10
+
+Music: 1970s: Artist/Band: That Lady?
+Isley brothers
+10
+
+Music: 1970s: Artist/Band: That'll Be The Day?
+Linda ronstadt
+10
+
+Music: 1970s: Artist/Band: That's Rock 'N' Roll?
+Shaun cassidy
+10
+
+Music: 1970s: Artist/Band: That's The Way I Feel About Cha?
+Bobby womack
+10
+
+Music: 1970s: Artist/Band: That's The Way I've Always Heard It?
+Carly simon
+10
+
+Music: 1970s: Artist/Band: That's The Way Of The World?
+Earth wind & fire
+10
+
+Music: 1970s: Artist/Band: That's The Way?
+Kc & the sunshine band
+10
+
+Music: 1970s: Artist/Band: That's When The Music Takes Me?
+Neil sedaka
+10
+
+Music: 1970s: Artist/Band: That's Where I Went Wrong?
+Poppy family
+10
+
+Music: 1970s: Artist/Band: That's Where The Happy People Go?
+Trammps
+10
+
+Music: 1970s: Artist/Band: The Agony And The Ecstasy?
+Smokey robinson
+10
+
+Music: 1970s: Artist/Band: The Air That I Breathe?
+Hollies
+10
+
+Music: 1970s: Artist/Band: The Americans?
+Gordon sinclair
+10
+
+Music: 1970s: Artist/Band: The Bells?
+Originals
+10
+
+Music: 1970s: Artist/Band: The Bertha Butt Boogie?
+Jimmy castor bunch
+10
+
+Music: 1970s: Artist/Band: The Best Disco In Town?
+Ritchie family
+10
+
+Music: 1970s: Artist/Band: The Bitch Is Back?
+Elton john
+10
+
+Music: 1970s: Artist/Band: The Boss?
+Diana ross
+10
+
+Music: 1970s: Artist/Band: The Boys Are Back In Town?
+Thin lizzy
+10
+
+Music: 1970s: Artist/Band: The Breakdown?
+Rufus thomas
+10
+
+Music: 1970s: Artist/Band: The Candy Man?
+Sammy davis jr.
+10
+
+Music: 1970s: Artist/Band: The Circle Is Small?
+Gordon lightfoot
+10
+
+Music: 1970s: Artist/Band: The Cisco Kid?
+War
+10
+
+Music: 1970s: Artist/Band: The City Of New Orleans?
+Arlo guthrie
+10
+
+Music: 1970s: Artist/Band: The Closer I Get To You?
+Roberta flack & donny hathaway
+10
+
+Music: 1970s: Artist/Band: The Cover Of The Rolling Stone?
+Dr. hook
+10
+
+Music: 1970s: Artist/Band: The Day I Found Myself?
+Honey cone
+10
+
+Music: 1970s: Artist/Band: The Devil Went Down To Georgia?
+Charlie daniels band
+10
+
+Music: 1970s: Artist/Band: The Drum?
+Bobby sherman
+10
+
+Music: 1970s: Artist/Band: The End Of The Road?
+Marvin gaye
+10
+
+Music: 1970s: Artist/Band: The Family Of Man?
+Three dog night
+10
+
+Music: 1970s: Artist/Band: The First Cut Is The Deepest?
+Rod stewart
+10
+
+Music: 1970s: Artist/Band: The First Time Ever I Saw Your Face?
+Roberta flack
+10
+
+Music: 1970s: Artist/Band: The Gambler?
+Kenny rogers
+10
+
+Music: 1970s: Artist/Band: The Greatest Love Of All?
+George benson
+10
+
+Music: 1970s: Artist/Band: The Groove Line?
+Heatwave
+10
+
+Music: 1970s: Artist/Band: The Guitar Man?
+Bread
+10
+
+Music: 1970s: Artist/Band: The Happiest Girl In The U.S.A?
+Donna fargo
+10
+
+Music: 1970s: Artist/Band: The Heartbreak Kid?
+Bo donaldson & the heywoods
+10
+
+Music: 1970s: Artist/Band: The Hurt?
+Cat stevens
+10
+
+Music: 1970s: Artist/Band: The Hustle?
+Van mccoy
+10
+
+Music: 1970s: Artist/Band: The Immigrant?
+Neil sedaka
+10
+
+Music: 1970s: Artist/Band: The Joker?
+Steve miller band
+10
+
+Music: 1970s: Artist/Band: The Killing Of Georgie?
+Rod stewart
+10
+
+Music: 1970s: Artist/Band: The King Is Gone?
+Ronnie mcdowell
+10
+
+Music: 1970s: Artist/Band: The Last Farewell?
+Roger whittaker
+10
+
+Music: 1970s: Artist/Band: The Last Game Of The Season?
+David geddes
+10
+
+Music: 1970s: Artist/Band: The Letter?
+Joe cocker
+10
+
+Music: 1970s: Artist/Band: The Lion Sleeps Tonight?
+Robert john
+10
+
+Music: 1970s: Artist/Band: The Load-Out?
+Jackson browne
+10
+
+Music: 1970s: Artist/Band: The Loco Motion?
+Grand funk railroad
+10
+
+Music: 1970s: Artist/Band: The Logical Song?
+Supertramp
+10
+
+Music: 1970s: Artist/Band: The Long And Winding Road?
+Beatles
+10
+
+Music: 1970s: Artist/Band: The Long Run?
+Eagles
+10
+
+Music: 1970s: Artist/Band: The Lord's Prayer?
+Sister janet mead
+10
+
+Music: 1970s: Artist/Band: The Love I Lost?
+Harold melvin & the blue notes
+10
+
+Music: 1970s: Artist/Band: The Love We Had (Stays On My Mind)?
+Dells
+10
+
+Music: 1970s: Artist/Band: The Love You Save?
+Jackson 5
+10
+
+Music: 1970s: Artist/Band: The Main Event?
+Barbra streisand
+10
+
+Music: 1970s: Artist/Band: The Morning After?
+Maureen mcgovern
+10
+
+Music: 1970s: Artist/Band: The Most Beautiful Girl?
+Charlie rich
+10
+
+Music: 1970s: Artist/Band: The Name Of The Game?
+Abba
+10
+
+Music: 1970s: Artist/Band: The Need To Be?
+Jim weatherly
+10
+
+Music: 1970s: Artist/Band: The Next Step Is Love?
+Elvis presley
+10
+
+Music: 1970s: Artist/Band: The Nickel Song?
+Melanie
+10
+
+Music: 1970s: Artist/Band: The Night Chicago Died?
+Paper lace
+10
+
+Music: 1970s: Artist/Band: The Night The Lights Went Out In Georgia?
+Vicki lawrence
+10
+
+Music: 1970s: Artist/Band: The Night They Drove Old Dixie Down?
+Joan baez
+10
+
+Music: 1970s: Artist/Band: The Payback?
+James brown
+10
+
+Music: 1970s: Artist/Band: The Plastic Man?
+Temptations
+10
+
+Music: 1970s: Artist/Band: The Power Of Gold?
+Dan fogelberg & tim weisberg
+10
+
+Music: 1970s: Artist/Band: The Proud One?
+Osmonds
+10
+
+Music: 1970s: Artist/Band: The Rapper?
+Jaggerz
+10
+
+Music: 1970s: Artist/Band: The Relay?
+Who
+10
+
+Music: 1970s: Artist/Band: The Right Thing To Do?
+Carly simon
+10
+
+Music: 1970s: Artist/Band: The Rockford Files?
+Mike post
+10
+
+Music: 1970s: Artist/Band: The Rubberband Man?
+Spinners
+10
+
+Music: 1970s: Artist/Band: The Runway?
+Grass roots
+10
+
+Music: 1970s: Artist/Band: The Show Must Go On?
+Three dog night
+10
+
+Music: 1970s: Artist/Band: The Sly, Slick, And The Wicked?
+Lost generation
+10
+
+Music: 1970s: Artist/Band: The South's Gonna Do It?
+Charlie daniels band
+10
+
+Music: 1970s: Artist/Band: The Story In Your Eyes?
+Moody blues
+10
+
+Music: 1970s: Artist/Band: The Streak?
+Ray stevens
+10
+
+Music: 1970s: Artist/Band: The Tears Of A Clown?
+Smokey robinson & the miracles
+10
+
+Music: 1970s: Artist/Band: The Things We Do For Love?
+10cc
+10
+
+Music: 1970s: Artist/Band: The Thrill Is Gone?
+B.b. king
+10
+
+Music: 1970s: Artist/Band: The Twelfth Of Never?
+Donny osmond
+10
+
+Music: 1970s: Artist/Band: The Way I Feel Tonight?
+Bay city rollers
+10
+
+Music: 1970s: Artist/Band: The Way I Want To Touch You?
+Captain & tennille
+10
+
+Music: 1970s: Artist/Band: The Way Of Love?
+Cher
+10
+
+Music: 1970s: Artist/Band: The Way We Were /Try To Remember?
+Kiss
+10
+
+Music: 1970s: Artist/Band: The Way We Were?
+Barbra streisand
+10
+
+Music: 1970s: Artist/Band: The Way You Do The Things You Do?
+Rita coolidge
+10
+
+Music: 1970s: Artist/Band: The White Knight?
+Cledus maggard & the citizen's band
+10
+
+Music: 1970s: Artist/Band: The Witch Queen Of New Orleans?
+Redbone
+10
+
+Music: 1970s: Artist/Band: The Wizard Of Oz (Theme)?
+Meco
+10
+
+Music: 1970s: Artist/Band: The Wonder Of You?
+Elvis presley
+10
+
+Music: 1970s: Artist/Band: The World Is A Ghetto?
+War
+10
+
+Music: 1970s: Artist/Band: Theme From The Men?
+Isaac hayes
+10
+
+Music: 1970s: Artist/Band: There Goes Another Love Song?
+Outlaws
+10
+
+Music: 1970s: Artist/Band: There Goes My Everything?
+Elvis presley
+10
+
+Music: 1970s: Artist/Band: There It Is?
+Tyrone davis
+10
+
+Music: 1970s: Artist/Band: There Won't Be Anymore?
+Charlie rich
+10
+
+Music: 1970s: Artist/Band: There's A Kind Of Hush?
+Carpenters
+10
+
+Music: 1970s: Artist/Band: There's Nothing Stronger Than Love?
+Paul anka
+10
+
+Music: 1970s: Artist/Band: They Just Can't Stop It?
+Spinners
+10
+
+Music: 1970s: Artist/Band: Thicker Than Water?
+Andy gibb
+10
+
+Music: 1970s: Artist/Band: Thin Line Between Love & Hate?
+Persuaders
+10
+
+Music: 1970s: Artist/Band: Think It Over?
+Cheryl ladd
+10
+
+Music: 1970s: Artist/Band: Thinking Of You?
+Loggins & messina
+10
+
+Music: 1970s: Artist/Band: Third Rate Romance?
+Amazing rhythm aces
+10
+
+Music: 1970s: Artist/Band: Third Time Lucky?
+Foghat
+10
+
+Music: 1970s: Artist/Band: This Heart?
+Gene redding
+10
+
+Music: 1970s: Artist/Band: This Is It?
+Kenny loggins
+10
+
+Music: 1970s: Artist/Band: This Is Love?
+Paul anka
+10
+
+Music: 1970s: Artist/Band: This Is The Way That I Feel?
+Marie osmond
+10
+
+Music: 1970s: Artist/Band: This Masquerade?
+George benson
+10
+
+Music: 1970s: Artist/Band: This Night Won't Last Forever?
+Michael johnson
+10
+
+Music: 1970s: Artist/Band: This One's For You?
+Barry manilow
+10
+
+Music: 1970s: Artist/Band: This Song?
+George harrison
+10
+
+Music: 1970s: Artist/Band: This Time I'm In It For Love?
+Player
+10
+
+Music: 1970s: Artist/Band: This Will Be?
+Natalie cole
+10
+
+Music: 1970s: Artist/Band: This World?
+Staple singers
+10
+
+Music: 1970s: Artist/Band: Three Ring Circus?
+Blue magic
+10
+
+Music: 1970s: Artist/Band: Three Times A Lady?
+Commodores
+10
+
+Music: 1970s: Artist/Band: Thunder And Lightning?
+Chi coltrane
+10
+
+Music: 1970s: Artist/Band: Thunder In My Heart?
+Leo sayer
+10
+
+Music: 1970s: Artist/Band: Thunder Island?
+Jay ferguson
+10
+
+Music: 1970s: Artist/Band: Tie A Yellow Ribbon Round The Ole Oak Tree?
+Dawn
+10
+
+Music: 1970s: Artist/Band: Tight Rope?
+Leon russell
+10
+
+Music: 1970s: Artist/Band: Tighter, Tighter?
+Alive & kicking
+10
+
+Music: 1970s: Artist/Band: Til The World Ends?
+Three dog night
+10
+
+Music: 1970s: Artist/Band: Time For Livin'?
+Sly & the family stone
+10
+
+Music: 1970s: Artist/Band: Time In A Bottle?
+Jim croce
+10
+
+Music: 1970s: Artist/Band: Time Passages?
+Al stewart
+10
+
+Music: 1970s: Artist/Band: Time To Get Down?
+O'jays
+10
+
+Music: 1970s: Artist/Band: Times Of Your Life?
+Paul anka
+10
+
+Music: 1970s: Artist/Band: Timothy?
+Buoys
+10
+
+Music: 1970s: Artist/Band: Tin Man?
+America
+10
+
+Music: 1970s: Artist/Band: Tired Of Being Alone?
+Al green
+10
+
+Music: 1970s: Artist/Band: To Know You Is To Love You?
+B.b. king
+10
+
+Music: 1970s: Artist/Band: To The Door Of The Sun?
+Al martino
+10
+
+Music: 1970s: Artist/Band: Toast And Marmalade For Tea?
+Tin tin
+10
+
+Music: 1970s: Artist/Band: Today's The Day?
+America
+10
+
+Music: 1970s: Artist/Band: Together Let's Find Love?
+5th dimension
+10
+
+Music: 1970s: Artist/Band: Tonight's The Night?
+Rod stewart
+10
+
+Music: 1970s: Artist/Band: Too Hot Ta Trot?
+Commodores
+10
+
+Music: 1970s: Artist/Band: Too Late To Turn Back Now?
+Cornelius brothers & sister rose
+10
+
+Music: 1970s: Artist/Band: Too Much Heaven?
+Bee gees
+10
+
+Music: 1970s: Artist/Band: Too Young?
+Donny osmond
+10
+
+Music: 1970s: Artist/Band: Took The Last Train?
+David gates
+10
+
+Music: 1970s: Artist/Band: Top Of The World?
+Carpenters
+10
+
+Music: 1970s: Artist/Band: Torn Between Two Lovers?
+Mary macgregor
+10
+
+Music: 1970s: Artist/Band: Touch A Hand, Make A Friend?
+Staple singers
+10
+
+Music: 1970s: Artist/Band: Touch Me in the Morning?
+Diana ross
+10
+
+Music: 1970s: Artist/Band: Touch Me?
+Fancy
+10
+
+Music: 1970s: Artist/Band: Tracks Of My Tears?
+Linda ronstadt
+10
+
+Music: 1970s: Artist/Band: Tragedy?
+Bee gees
+10
+
+Music: 1970s: Artist/Band: Train Of Thought?
+Cher
+10
+
+Music: 1970s: Artist/Band: Train, Train?
+Blackfoot
+10
+
+Music: 1970s: Artist/Band: Trampled Under Foot?
+Led zeppelin
+10
+
+Music: 1970s: Artist/Band: Trapped By A Thing Called Love?
+Denise lasalle
+10
+
+Music: 1970s: Artist/Band: Travelin' Band?
+Creedence clearwater revival
+10
+
+Music: 1970s: Artist/Band: Treat Her Like A Lady?
+Cornelius brothers & sister rose
+10
+
+Music: 1970s: Artist/Band: Troglodyte (Cave Man)?
+Jimmy castor bunch
+10
+
+Music: 1970s: Artist/Band: Trouble Man?
+Marvin gaye
+10
+
+Music: 1970s: Artist/Band: Tryin' To Get The Feeling Again?
+Barry manilow
+10
+
+Music: 1970s: Artist/Band: Tryin' To Love Two?
+William bell
+10
+
+Music: 1970s: Artist/Band: Trying To Hold On To My Woman?
+Lamont dozier
+10
+
+Music: 1970s: Artist/Band: Trying To Make A Fool Of Me?
+Delfonics
+10
+
+Music: 1970s: Artist/Band: Tubular Bells?
+Mike oldfield
+10
+
+Music: 1970s: Artist/Band: Turn Back The Hands Of Time?
+Tyrone davis
+10
+
+Music: 1970s: Artist/Band: Turn The Beat Around?
+Vicki sue robinson
+10
+
+Music: 1970s: Artist/Band: Turn To Stone?
+Electric light orchestra
+10
+
+Music: 1970s: Artist/Band: Tush?
+Zz top
+10
+
+Music: 1970s: Artist/Band: Tusk?
+Fleetwood mac
+10
+
+Music: 1970s: Artist/Band: Two Divided By Love?
+Grass roots
+10
+
+Music: 1970s: Artist/Band: Two Doors Down?
+Dolly parton
+10
+
+Music: 1970s: Artist/Band: Two Fine People?
+Cat stevens
+10
+
+Music: 1970s: Artist/Band: Two Out Of Three Ain't Bad?
+Meat loaf
+10
+
+Music: 1970s: Artist/Band: Two Tickets To Paradise?
+Eddie money
+10
+
+Music: 1970s: Artist/Band: Uncle Albert?
+Paul mccartney & linda mccartney
+10
+
+Music: 1970s: Artist/Band: Undercover Angel?
+Alan o'day
+10
+
+Music: 1970s: Artist/Band: Uneasy Rider?
+Charlie daniels band
+10
+
+Music: 1970s: Artist/Band: Ungena Za Ulimwengu?
+Temptations
+10
+
+Music: 1970s: Artist/Band: Union Man?
+Cate brothers
+10
+
+Music: 1970s: Artist/Band: United We Stand?
+Brotherhood of man
+10
+
+Music: 1970s: Artist/Band: Until It's Time For You To Go?
+Elvis presley
+10
+
+Music: 1970s: Artist/Band: Until You Come Back To Me?
+Aretha franklin
+10
+
+Music: 1970s: Artist/Band: Up Around The Bend?
+Creedence clearwater revival
+10
+
+Music: 1970s: Artist/Band: Up In A Puff Of Smoke?
+Polly brown
+10
+
+Music: 1970s: Artist/Band: Up On The Roof?
+James taylor
+10
+
+Music: 1970s: Artist/Band: Up The Ladder To The Roof?
+Supremes
+10
+
+Music: 1970s: Artist/Band: Uptown Festival?
+Shalamar
+10
+
+Music: 1970s: Artist/Band: Use Me?
+Bill withers
+10
+
+Music: 1970s: Artist/Band: Use To Be My Girl?
+O'jays
+10
+
+Music: 1970s: Artist/Band: Ventura Highway?
+America
+10
+
+Music: 1970s: Artist/Band: Venus And Mars Rock Show?
+Wings
+10
+
+Music: 1970s: Artist/Band: Victim Of Love?
+Elton john
+10
+
+Music: 1970s: Artist/Band: Video Killed The Radio Star?
+Buggles
+10
+
+Music: 1970s: Artist/Band: Vincent?
+Don mclean
+10
+
+Music: 1970s: Artist/Band: Viva Tirado?
+El chicano
+10
+
+Music: 1970s: Artist/Band: Volare?
+Al martino
+10
+
+Music: 1970s: Artist/Band: W-O-L-D?
+Harry chapin
+10
+
+Music: 1970s: Artist/Band: Wait For Me?
+Daryl hall & john oates
+10
+
+Music: 1970s: Artist/Band: Wake Up Everybody?
+Harold melvin & the blue notes
+10
+
+Music: 1970s: Artist/Band: Walk A Mile In My Shoes?
+Joe south & the believers
+10
+
+Music: 1970s: Artist/Band: Walk Away From Love?
+David ruffin
+10
+
+Music: 1970s: Artist/Band: Walk Like A Man?
+Grand funk railroad
+10
+
+Music: 1970s: Artist/Band: Walk On The Wild Side?
+Lou reed
+10
+
+Music: 1970s: Artist/Band: Walk On Water?
+Neil diamond
+10
+
+Music: 1970s: Artist/Band: Walk This Way?
+Aerosmith
+10
+
+Music: 1970s: Artist/Band: Walkin' In The Rain With The One I Love?
+Love unlimited
+10
+
+Music: 1970s: Artist/Band: Walking In Rhythm?
+Blackbyrds
+10
+
+Music: 1970s: Artist/Band: Want Ads?
+Honey cone
+10
+
+Music: 1970s: Artist/Band: War?
+Edwin starr
+10
+
+Music: 1970s: Artist/Band: Warm Ride?
+Rare earth
+10
+
+Music: 1970s: Artist/Band: Wasted Days And Wasted Nights?
+Freddy fender
+10
+
+Music: 1970s: Artist/Band: Watch Ou For Lucy?
+Eric clapton
+10
+
+Music: 1970s: Artist/Band: Watching Scotty Grow?
+Bobby goldsboro
+10
+
+Music: 1970s: Artist/Band: Waterloo?
+Abba
+10
+
+Music: 1970s: Artist/Band: Way Down?
+Elvis presley
+10
+
+Music: 1970s: Artist/Band: We Are Family?
+Sister sledge
+10
+
+Music: 1970s: Artist/Band: We Are The Champions?
+Queen
+10
+
+Music: 1970s: Artist/Band: We Can Work It Out?
+Stevie wonder
+10
+
+Music: 1970s: Artist/Band: We Can't Hide It Anymore?
+Larry santos
+10
+
+Music: 1970s: Artist/Band: We Don't Talk Anymore?
+Cliff richard
+10
+
+Music: 1970s: Artist/Band: We Gotta Get You A Woman?
+Todd rundgren
+10
+
+Music: 1970s: Artist/Band: We Just Disagree?
+Dave mason
+10
+
+Music: 1970s: Artist/Band: We May Never Pass This Way?
+Seals & crofts
+10
+
+Music: 1970s: Artist/Band: We Will Rock You?
+Queen
+10
+
+Music: 1970s: Artist/Band: We'll Never Have To Say Goodbye Again?
+England dan & john ford coley
+10
+
+Music: 1970s: Artist/Band: We're All Alone?
+Rita coolidge
+10
+
+Music: 1970s: Artist/Band: We're An American Band?
+Grand funk railroad
+10
+
+Music: 1970s: Artist/Band: We're Free?
+Beverly bremers
+10
+
+Music: 1970s: Artist/Band: We're Getting Careless With Our Love?
+Johnnie taylor
+10
+
+Music: 1970s: Artist/Band: We've Got To Get It On Again?
+Addrisi brothers
+10
+
+Music: 1970s: Artist/Band: We've Got Tonight?
+Bob seger & the silver bullet band
+10
+
+Music: 1970s: Artist/Band: We've Only Just Begun?
+Carpenters
+10
+
+Music: 1970s: Artist/Band: Wedding Song?
+Paul stookey
+10
+
+Music: 1970s: Artist/Band: Weekend In New England?
+Barry manilow
+10
+
+Music: 1970s: Artist/Band: Weekend?
+Wet willie
+10
+
+Music: 1970s: Artist/Band: Welcome Back?
+John sebastian
+10
+
+Music: 1970s: Artist/Band: Werewolves Of London?
+Warren zevon
+10
+
+Music: 1970s: Artist/Band: Westbound #9?
+Flaming amber
+10
+
+Music: 1970s: Artist/Band: Wham Bam?
+Silver
+10
+
+Music: 1970s: Artist/Band: What A Diff'rence A Day Makes?
+Esther phillips
+10
+
+Music: 1970s: Artist/Band: What A Fool Believes?
+Doobie brothers
+10
+
+Music: 1970s: Artist/Band: What Am I Crying For?
+Classics iv
+10
+
+Music: 1970s: Artist/Band: What Am I Gonna Do With You?
+Barry white
+10
+
+Music: 1970s: Artist/Band: What Are You Doing Sunday?
+Dawn
+10
+
+Music: 1970s: Artist/Band: What Cha Gonna Do With My Lovin'?
+Stephanie mills
+10
+
+Music: 1970s: Artist/Band: What Is Life?
+George harrison
+10
+
+Music: 1970s: Artist/Band: What Is Truth?
+Johnny cash
+10
+
+Music: 1970s: Artist/Band: What The World Needs Now Is Love?
+Tom clay
+10
+
+Music: 1970s: Artist/Band: What You Won't Do For Love?
+Bobby caldwell
+10
+
+Music: 1970s: Artist/Band: What's Going On?
+Marvin gaye
+10
+
+Music: 1970s: Artist/Band: What's Your Name?
+Lynyrd skynyrd
+10
+
+Music: 1970s: Artist/Band: Whatcha Gonna Do?
+Pablo cruise
+10
+
+Music: 1970s: Artist/Band: Whatcha See Is Whatcha Get?
+Dramatics
+10
+
+Music: 1970s: Artist/Band: Whatever Gets You Thru The Night?
+John lennon & elton john
+10
+
+Music: 1970s: Artist/Band: Whatever You Got I Want?
+Jackson 5
+10
+
+Music: 1970s: Artist/Band: When I Need You?
+Leo sayer
+10
+
+Music: 1970s: Artist/Band: When Will I Be Loved?
+Linda ronstadt
+10
+
+Music: 1970s: Artist/Band: When Will I See You Again?
+Three degrees
+10
+
+Music: 1970s: Artist/Band: When You Say Love?
+Sonny & cher
+10
+
+Music: 1970s: Artist/Band: When You're Hot, You're Hot?
+Jerry reed
+10
+
+Music: 1970s: Artist/Band: When You're In Love With A Beautiful Woman?
+Dr. hook
+10
+
+Music: 1970s: Artist/Band: Whenever I'm Away From You?
+John travolta
+10
+
+Music: 1970s: Artist/Band: Where Did Our Love Go?
+Donnie elbert
+10
+
+Music: 1970s: Artist/Band: Where Did They Go, Lord?
+Elvis presley
+10
+
+Music: 1970s: Artist/Band: Where Is Your Love?
+Roberta flack & donny hathaway
+10
+
+Music: 1970s: Artist/Band: Where Peaceful Waters Flow?
+Gladys knight & the pips
+10
+
+Music: 1970s: Artist/Band: Where Were You When I Was Falling In Love?
+Lobo
+10
+
+Music: 1970s: Artist/Band: Where You Lead?
+Barbra streisand
+10
+
+Music: 1970s: Artist/Band: Which group/artist sang Parisienne Walkways in 1978?
+Gary Moore
+10
+
+Music: 1970s: Artist/Band: Which Way Is Up (Theme)?
+Stargard
+10
+
+Music: 1970s: Artist/Band: Which Way You Goin' Billy?
+Poppy family
+10
+
+Music: 1970s: Artist/Band: Whispering?
+Dr. buzzard's original savannah band
+10
+
+Music: 1970s: Artist/Band: White Lies, Blue Eyes?
+Bullet
+10
+
+Music: 1970s: Artist/Band: Who Are You?
+Who
+10
+
+Music: 1970s: Artist/Band: Who Do You Think You Are?
+Bo donaldson & the heywoods
+10
+
+Music: 1970s: Artist/Band: Who had a hit in 1974 with 'when will i see you again'?
+Three degrees
+10
+
+Music: 1970s: Artist/Band: Who had a number 1 hit in 1970 with in the summertime?
+Mungo jerry
+10
+
+Music: 1970s: Artist/Band: Who had a number 1 hit with Shadow Dancing?
+Andy Gibb
+10
+
+Music: 1970s: Artist/Band: Who Loves You?
+Four seasons
+10
+
+Music: 1970s: Artist/Band: Who'll Stop The Rain?
+Creedence clearwater revival
+10
+
+Music: 1970s: Artist/Band: Who's In The Srawberry Patch With Sally?
+Dawn
+10
+
+Music: 1970s: Artist/Band: Who's Sorry Now?
+Marie osmond
+10
+
+Music: 1970s: Artist/Band: Who's Your Baby?
+Archies
+10
+
+Music: 1970s: Artist/Band: Whodunit?
+Tavares
+10
+
+Music: 1970s: Artist/Band: Why Can't I Touch You?
+Ronnie dyson
+10
+
+Music: 1970s: Artist/Band: Why Can't We Be Friends?
+War
+10
+
+Music: 1970s: Artist/Band: Why Can't We Live Together?
+Timmy thomas
+10
+
+Music: 1970s: Artist/Band: Why Me?
+Kris kristofferson
+10
+
+Music: 1970s: Artist/Band: Why?
+Donny osmond
+10
+
+Music: 1970s: Artist/Band: Wild Horses?
+Rolling stones
+10
+
+Music: 1970s: Artist/Band: Wild Night?
+Van morrison
+10
+
+Music: 1970s: Artist/Band: Wild Thing?
+Fancy
+10
+
+Music: 1970s: Artist/Band: Wild World?
+Cat stevens
+10
+
+Music: 1970s: Artist/Band: Wildfire?
+Michael martin murphey
+10
+
+Music: 1970s: Artist/Band: Wildflower?
+Skylark
+10
+
+Music: 1970s: Artist/Band: Wildwood Weed?
+Jim stafford
+10
+
+Music: 1970s: Artist/Band: Will It Go Round In Circles?
+Billy preston
+10
+
+Music: 1970s: Artist/Band: Will You Still Love Me Tommorrow?
+Dave mason
+10
+
+Music: 1970s: Artist/Band: Willie And The Hand Jive?
+Eric clapton
+10
+
+Music: 1970s: Artist/Band: Winners And Losers?
+Hamilton, joe frank & reynolds
+10
+
+Music: 1970s: Artist/Band: Winter World Of Love?
+Engelbert humperdinck
+10
+
+Music: 1970s: Artist/Band: Wishing You Were Here?
+Chicago
+10
+
+Music: 1970s: Artist/Band: Witchy Woman?
+Eagles
+10
+
+Music: 1970s: Artist/Band: With A Little Luck?
+Wings
+10
+
+Music: 1970s: Artist/Band: With Your Love?
+Jefferson starship
+10
+
+Music: 1970s: Artist/Band: Without Love?
+Tom jones
+10
+
+Music: 1970s: Artist/Band: Without You?
+Nilsson
+10
+
+Music: 1970s: Artist/Band: Wolf Creek Pass?
+C.w. mccall
+10
+
+Music: 1970s: Artist/Band: Woman To Woman?
+Shirley brown
+10
+
+Music: 1970s: Artist/Band: Woman's Love Rights?
+Laura lee
+10
+
+Music: 1970s: Artist/Band: Won't Get Fooled Again?
+Who
+10
+
+Music: 1970s: Artist/Band: Wonderful Tonight?
+Eric clapton
+10
+
+Music: 1970s: Artist/Band: Wonderful World?
+Paul simon/art garfunkel/james taylor
+10
+
+Music: 1970s: Artist/Band: Workin' At The Car Wash Blues?
+Jim croce
+10
+
+Music: 1970s: Artist/Band: Wreck Of The Edmund Fitzgerald?
+Gordon lightfoot
+10
+
+Music: 1970s: Artist/Band: Y.M.C.A?
+Village people
+10
+
+Music: 1970s: Artist/Band: Year Of The Cat?
+Al stewart
+10
+
+Music: 1970s: Artist/Band: Yellow River?
+Christie
+10
+
+Music: 1970s: Artist/Band: Yes We Can Can?
+Pointer sisters
+10
+
+Music: 1970s: Artist/Band: Yes, I'm Ready?
+Teri desario with k.c.
+10
+
+Music: 1970s: Artist/Band: Yesterday Once More?
+Carpenters
+10
+
+Music: 1970s: Artist/Band: You Ain't Seen Nothing Yet?
+Bachman-turner overdrive
+10
+
+Music: 1970s: Artist/Band: You And I?
+Rick james
+10
+
+Music: 1970s: Artist/Band: You And Me Against The World?
+Helen reddy
+10
+
+Music: 1970s: Artist/Band: You And Me?
+Alice cooper
+10
+
+Music: 1970s: Artist/Band: You Are Everything?
+Stylistics
+10
+
+Music: 1970s: Artist/Band: You Are My Starship?
+Norman connors
+10
+
+Music: 1970s: Artist/Band: You Are So Beautiful?
+Joe cocker
+10
+
+Music: 1970s: Artist/Band: You Are The Sunshine Of My Life?
+Stevie wonder
+10
+
+Music: 1970s: Artist/Band: You Are The Woman?
+Firefall
+10
+
+Music: 1970s: Artist/Band: You Belong To Me?
+Carly simon
+10
+
+Music: 1970s: Artist/Band: You Can Do It?
+Dobie gray
+10
+
+Music: 1970s: Artist/Band: You Can Have Her?
+Sam neely
+10
+
+Music: 1970s: Artist/Band: You Can't Change That?
+Raydio
+10
+
+Music: 1970s: Artist/Band: You Can't Turn Me Off?
+High inergy
+10
+
+Music: 1970s: Artist/Band: You Could Have Been A Lady?
+April wine
+10
+
+Music: 1970s: Artist/Band: You Decorated My Life?
+Kenny rogers
+10
+
+Music: 1970s: Artist/Band: You Don't Bring Me Flowers?
+Barbra streisand
+10
+
+Music: 1970s: Artist/Band: You Don't Have To Be A Star?
+Marilyn mccoo & billy davis jr.
+10
+
+Music: 1970s: Artist/Band: You Don't Have To Say You Love Me?
+Elvis presley
+10
+
+Music: 1970s: Artist/Band: You Don't Mess Around With Jim?
+Jim croce
+10
+
+Music: 1970s: Artist/Band: You Gonna Make Me Love Somebody Else?
+Jones girls
+10
+
+Music: 1970s: Artist/Band: You Got The Love?
+Rufus
+10
+
+Music: 1970s: Artist/Band: You Haven't Done Nothin?
+Stevie wonder
+10
+
+Music: 1970s: Artist/Band: You Light Up My Life?
+Debby boone
+10
+
+Music: 1970s: Artist/Band: You Little Trustmaker?
+Tymes
+10
+
+Music: 1970s: Artist/Band: You Made Me Believe In Magic?
+Bay city rollers
+10
+
+Music: 1970s: Artist/Band: You Make Loving Fun?
+Fleetwood mac
+10
+
+Music: 1970s: Artist/Band: You Make Me Feel Brand New?
+Stylistics
+10
+
+Music: 1970s: Artist/Band: You Make Me Feel Like Dancing?
+Leo sayer
+10
+
+Music: 1970s: Artist/Band: You Make Me Feel?
+Sylvester
+10
+
+Music: 1970s: Artist/Band: You Need A Woman Tonight?
+Captain & tennille
+10
+
+Music: 1970s: Artist/Band: You Need Love Like I Do?
+Gladys knight & the pips
+10
+
+Music: 1970s: Artist/Band: You Needed Me?
+Anne murray
+10
+
+Music: 1970s: Artist/Band: You Never Done It Like That?
+Captain & tennille
+10
+
+Music: 1970s: Artist/Band: You Ought To Be With Me?
+Al green
+10
+
+Music: 1970s: Artist/Band: You Really Got Me?
+Van halen
+10
+
+Music: 1970s: Artist/Band: You Sexy Thing?
+Hot chocolate
+10
+
+Music: 1970s: Artist/Band: You Should Be Dancing?
+Bee gees
+10
+
+Music: 1970s: Artist/Band: You Take My Breath Away?
+Rex smith
+10
+
+Music: 1970s: Artist/Band: You Thrill Me?
+Exile
+10
+
+Music: 1970s: Artist/Band: You Took The Words Right Out Of My Mouth?
+Meat loaf
+10
+
+Music: 1970s: Artist/Band: You Turn Me On, I'm A Radio?
+Joni mitchell
+10
+
+Music: 1970s: Artist/Band: You Want It, You Got It?
+Detroit emeralds
+10
+
+Music: 1970s: Artist/Band: You Wear It Well?
+Rod stewart
+10
+
+Music: 1970s: Artist/Band: You Won't See Me?
+Anne murray
+10
+
+Music: 1970s: Artist/Band: You'll Lose A Good Thing?
+Freddy fender
+10
+
+Music: 1970s: Artist/Band: You'll Never Find Another Love?
+Lou rawls
+10
+
+Music: 1970s: Artist/Band: You'll Never Get To Heaven?
+Stylistics
+10
+
+Music: 1970s: Artist/Band: You're A Part Of Me?
+Gene cotton with kin carnes
+10
+
+Music: 1970s: Artist/Band: You're A Special Part Of Me?
+Marvin gaye & diana ross
+10
+
+Music: 1970s: Artist/Band: You're In My Heart?
+Rod stewart
+10
+
+Music: 1970s: Artist/Band: You're My Best Friend?
+Queen
+10
+
+Music: 1970s: Artist/Band: You're My World?
+Helen reddy
+10
+
+Music: 1970s: Artist/Band: You're No Good?
+Linda ronstadt
+10
+
+Music: 1970s: Artist/Band: You're Only Lonely?
+J.d. souther
+10
+
+Music: 1970s: Artist/Band: You're Sixteen?
+Ringo starr
+10
+
+Music: 1970s: Artist/Band: You're So Vain?
+Carly simon
+10
+
+Music: 1970s: Artist/Band: You're Still A Young Man?
+Tower of power
+10
+
+Music: 1970s: Artist/Band: You're The First, The Last, My Everything?
+Barry white
+10
+
+Music: 1970s: Artist/Band: You're The Love?
+Seals & crofts
+10
+
+Music: 1970s: Artist/Band: You're The One That I Want?
+John travolta & olivia newton-john
+10
+
+Music: 1970s: Artist/Band: You're The One?
+Little sister
+10
+
+Music: 1970s: Artist/Band: You've Got Me Runnin'?
+Gene cotton
+10
+
+Music: 1970s: Artist/Band: You've Got To Crawl?
+8th day
+10
+
+Music: 1970s: Artist/Band: Young Americans?
+David bowie
+10
+
+Music: 1970s: Artist/Band: Young Hearts Run Free?
+Candi staton
+10
+
+Music: 1970s: Artist/Band: Young Love?
+Donny osmond
+10
+
+Music: 1970s: Artist/Band: Your Bulldog Drinks Champagne?
+Jim stafford
+10
+
+Music: 1970s: Artist/Band: Your Love Has Lifted Me Higher?
+Rita coolidge
+10
+
+Music: 1970s: Artist/Band: Your Mama Don't Dance?
+Loggins & messina
+10
+
+Music: 1970s: Artist/Band: Your Move?
+Yes
+10
+
+Music: 1970s: Artist/Band: Your Smiling Face?
+James taylor
+10
+
+Music: 1970s: Artist/Band: Your Song?
+Elton john
+10
+
+Music: 1970s: Artist/Band: Your Time To Cry?
+Joe simon
+10
+
+Music: 1970s: Barry Manilow's first #1 was this 1975 song...?
+Mandy
+10
+
+Music: 1970s: Daryl Hall and John Oates hat their first #1 in 1977 with this song...?
+Rich girl
+10
+
+Music: 1970s: Elton John: Elton John and ____ had a No.1 hit in 1977 with 'Don't Go Breaking My Heart'
+Kiki Dee
+10
+
+Music: 1970s: Gilbert O'Sullivan had a #1 with this song?
+Alone again
+10
+
+Music: 1970s: Helen Reddy pronounced this to the world in 1972?
+I am woman
+10
+
+Music: 1970s: In 1973 Deep Purple released this popular double live album here in the U S?
+Made in japan
+10
+
+Music: 1970s: Instead of the newspaper, this Honey Cone title could be found on the radio?
+Want ads
+10
+
+Music: 1970s: Johnnie Nash had a smash with this hit?
+I can see clearly now
+10
+
+Music: 1970s: Lead Singer: band Sweet?
+Brian Connolly
+10
+
+Music: 1970s: Mac Davis had a number #1 in 1972 with this song?
+Baby dont get hooked on me
+10
+
+Music: 1970s: Name 1 of the 2 artists who shared the title of 1972 #1 sigles artist?
+Al green
+10
+
+Music: 1970s: Name 1 of the 2 former Beatles that went to a solo #1 in 1971?
+Harrison
+10
+
+Music: 1970s: Name the 1977 hit single for Elvis Costello?
+Watching the detectives
+10
+
+Music: 1970s: Nilsson had a four week run at #1 with this song?
+Without you
+10
+
+Music: 1970s: On the 1976 release, who 'wanted to fly like an eagle'?
+Steve miller band
+10
+
+Music: 1970s: She was named the #1 album artist of 1972?
+Roberta flack
+10
+
+Music: 1970s: Song: Roberta Flack and Bad Company both had a song with this title?
+Feel like makin love
+10
+
+Music: 1970s: The #1 male album vocalist in 1972?
+Cat stevens
+10
+
+Music: 1970s: The #1 singles female of 1972?
+Melanie
+10
+
+Music: 1970s: The #1 singles new artist of the year in 1972?
+America
+10
+
+Music: 1970s: The Bee Gees had their first #1 in this year...?
+1971
+10
+
+Music: 1970s: The Chi-Lites hit #1 in 1972 with this song?
+Oh girl
+10
+
+Music: 1970s: The number of #1's in 1971?
+Nineteen
+10
+
+Music: 1970s: The Temptations hit #1 in 1972 with this song?
+Papa was a rolling stone
+10
+
+Music: 1970s: This 1972 #1 is the longest song to ever hit #1...?
+American pie
+10
+
+Music: 1970s: This 1975 David Bowie #1 was also the title of an Irene Cara hit...?
+Fame
+10
+
+Music: 1970s: This 1976 Johnnie Taylor #1 was the first single certified platinum...?
+Disco lady
+10
+
+Music: 1970s: This 1978 Frankie Valli #1 was written by the Bee Gees...?
+Grease
+10
+
+Music: 1970s: This animal is in the title of Harry Chapin's 1974 #1?
+Cat
+10
+
+Music: 1970s: This brother act had 4 #1's in 1970...?
+Jackson 5
+10
+
+Music: 1970s: This Roberta Flack song was the #1 single of 1972?
+First time ever i saw your face
+10
+
+Music: 1970s: This singer starred in Clams on the Half Shell Review?
+Bette midler
+10
+
+Music: 1970s: This singer was the first to have his first 3 singles hit #1?
+Andy gibb
+10
+
+Music: 1970s: This song about a rodent was one of Michael Jackson's first solo hits?
+Ben
+10
+
+Music: 1970s: This song spent more weeks at #1 than any other in the 70s?
+You light up my life
+10
+
+Music: 1970s: This song was a 5 week #1 for Rod Stewart?
+Maggie may
+10
+
+Music: 1970s: This Three Dog Night song was #1 for 6 weeks, the longest of 1971?
+Joy to the world
+10
+
+Music: 1970s: This was a hit for Neil Diamond in July of 1972?
+Song sung blue
+10
+
+Music: 1970s: This was Abba's only #1 song...?
+Dancing queen
+10
+
+Music: 1970s: Which British artist changed personas once again and portrayed the 'thin white duke'?
+David bowie
+10
+
+Music: 1970s: Which raucous strand of popular music made ample use of safety pins?
+Punk
+10
+
+Music: 1980s: Artist/Band: 1 2 3?
+Miami sound machine
+10
+
+Music: 1980s: Artist/Band: 10 9 8?
+Face to face
+10
+
+Music: 1980s: Artist/Band: 17?
+Rick james
+10
+
+Music: 1980s: Artist/Band: 18 And Life?
+Skid row
+10
+
+Music: 1980s: Artist/Band: 19?
+Paul hardcastle
+10
+
+Music: 1980s: Artist/Band: 1999?
+Prince
+10
+
+Music: 1980s: Artist/Band: 65 Love Affair?
+Paul davis
+10
+
+Music: 1980s: Artist/Band: 853 5937?
+Squeeze
+10
+
+Music: 1980s: Artist/Band: 867 5309?
+Tommy tutone
+10
+
+Music: 1980s: Artist/Band: 9 To 5?
+Dolly parton
+10
+
+Music: 1980s: Artist/Band: 99 Luftballons?
+Nena
+10
+
+Music: 1980s: Artist/Band: 99?
+Toto
+10
+
+Music: 1980s: Artist/Band: A Different Corner?
+George michael
+10
+
+Music: 1980s: Artist/Band: A Fine Fine Day?
+Tony carey
+10
+
+Music: 1980s: Artist/Band: A Girl In Trouble?
+Romeo void
+10
+
+Music: 1980s: Artist/Band: A Life Of Illusion?
+Joe walsh
+10
+
+Music: 1980s: Artist/Band: A Little Bit Of Love?
+New edition
+10
+
+Music: 1980s: Artist/Band: A Little In Love?
+Cliff richard
+10
+
+Music: 1980s: Artist/Band: A Little Respect?
+Erasure
+10
+
+Music: 1980s: Artist/Band: A Love Bizarre?
+Sheila e.
+10
+
+Music: 1980s: Artist/Band: A Lover's Holiday?
+Change
+10
+
+Music: 1980s: Artist/Band: A Matter Of Trust?
+Billy joel
+10
+
+Music: 1980s: Artist/Band: A Nightmare On My Street?
+D.j. jazzy jeff & the fresh prince
+10
+
+Music: 1980s: Artist/Band: A Penny For Your Thoughts?
+Tavares
+10
+
+Music: 1980s: Artist/Band: A Shoulder To Cry On?
+Tommy page
+10
+
+Music: 1980s: Artist/Band: A View To A Kill?
+Duran duran
+10
+
+Music: 1980s: Artist/Band: A Woman Needs Love?
+Ray parker jr. & raydio
+10
+
+Music: 1980s: Artist/Band: A Word In Spanish?
+Elton john
+10
+
+Music: 1980s: Artist/Band: Abacab?
+Genesis
+10
+
+Music: 1980s: Artist/Band: Abracadabra?
+Steve miller band
+10
+
+Music: 1980s: Artist/Band: Addicted To Love?
+Robert palmer
+10
+
+Music: 1980s: Artist/Band: Adult Education?
+Daryl hall & john oates
+10
+
+Music: 1980s: Artist/Band: Affair Of The Heart?
+Rick springfield
+10
+
+Music: 1980s: Artist/Band: Africa?
+Toto
+10
+
+Music: 1980s: Artist/Band: After All?
+Peter cetera/cher
+10
+
+Music: 1980s: Artist/Band: After The Fall?
+Journey
+10
+
+Music: 1980s: Artist/Band: After The Glitter Fades?
+Stevie nicks
+10
+
+Music: 1980s: Artist/Band: Against All Odds?
+Phil collins
+10
+
+Music: 1980s: Artist/Band: Against The Wind?
+Bob seger
+10
+
+Music: 1980s: Artist/Band: Ah! Leah!?
+Donnie iris
+10
+
+Music: 1980s: Artist/Band: Ai No Corrida?
+Quincy jones
+10
+
+Music: 1980s: Artist/Band: Ain't Even Done With The Night?
+John cougar mellencamp
+10
+
+Music: 1980s: Artist/Band: Ain't Nobody?
+Rufus & chaka khan
+10
+
+Music: 1980s: Artist/Band: Album: Tel Aviv, Planet Earth, Girls on Film?
+Duran duran
+10
+
+Music: 1980s: Artist/Band: Alibis?
+Sergio mendes
+10
+
+Music: 1980s: Artist/Band: Alien?
+Atlanta rhythm section
+10
+
+Music: 1980s: Artist/Band: Alive & Kicking?
+Simple minds
+10
+
+Music: 1980s: Artist/Band: All Cried Out?
+Lisa lisa & cult jam
+10
+
+Music: 1980s: Artist/Band: All Fired Up?
+Pat benatar
+10
+
+Music: 1980s: Artist/Band: All I Need Is A Miracle?
+Mike + the mechanics
+10
+
+Music: 1980s: Artist/Band: All I Need?
+Jack wagner
+10
+
+Music: 1980s: Artist/Band: All I Wanted?
+Kansas
+10
+
+Music: 1980s: Artist/Band: All My Life?
+Kenny rogers
+10
+
+Music: 1980s: Artist/Band: All Of You?
+Julio iglesias & diana ross
+10
+
+Music: 1980s: Artist/Band: All Our Tommorrows?
+Eddie schwartz
+10
+
+Music: 1980s: Artist/Band: All Out Of Love?
+Air supply
+10
+
+Music: 1980s: Artist/Band: All Over The World?
+Electric light orchestra
+10
+
+Music: 1980s: Artist/Band: All Right?
+Christopher cross
+10
+
+Music: 1980s: Artist/Band: All She Wants Is?
+Duran duran
+10
+
+Music: 1980s: Artist/Band: All She Wants To Do Is Dance?
+Don henley
+10
+
+Music: 1980s: Artist/Band: All The Love In The World?
+Outfield
+10
+
+Music: 1980s: Artist/Band: All The Things She Said?
+Simple minds
+10
+
+Music: 1980s: Artist/Band: All This Love?
+Debarge
+10
+
+Music: 1980s: Artist/Band: All This Time?
+Tiffany
+10
+
+Music: 1980s: Artist/Band: All Those Years Ago?
+George harrison
+10
+
+Music: 1980s: Artist/Band: All Through The Night?
+Cyndi lauper
+10
+
+Music: 1980s: Artist/Band: All Time High?
+Rita coolidge
+10
+
+Music: 1980s: Artist/Band: Allentown?
+Billy joel
+10
+
+Music: 1980s: Artist/Band: Almost Over You?
+Sheena easton
+10
+
+Music: 1980s: Artist/Band: Almost Paradise?
+Mike reno & ann wilson
+10
+
+Music: 1980s: Artist/Band: Alone?
+Heart
+10
+
+Music: 1980s: Artist/Band: Along Comes A Woman?
+Chicago
+10
+
+Music: 1980s: Artist/Band: Alphabet St?
+Prince & the revolution
+10
+
+Music: 1980s: Artist/Band: Always Something There To Remind Me?
+Naked eyes
+10
+
+Music: 1980s: Artist/Band: Always?
+Atlantic starr
+10
+
+Music: 1980s: Artist/Band: Amanda?
+Boston
+10
+
+Music: 1980s: Artist/Band: America?
+Neil diamond
+10
+
+Music: 1980s: Artist/Band: American Heartbeat?
+Survivor
+10
+
+Music: 1980s: Artist/Band: American Music?
+Pointer sisters
+10
+
+Music: 1980s: Artist/Band: American Storm?
+Bob seger & the silver bullet band
+10
+
+Music: 1980s: Artist/Band: An American Dream?
+Dirt band
+10
+
+Music: 1980s: Artist/Band: An Innocent Man?
+Billy joel
+10
+
+Music: 1980s: Artist/Band: And I'm Telling You I'm Not Going?
+Jennifer holliday
+10
+
+Music: 1980s: Artist/Band: And The Beat Goes On?
+Whispers
+10
+
+Music: 1980s: Artist/Band: And We Danced?
+Hooters
+10
+
+Music: 1980s: Artist/Band: Angel Eyes?
+Jeff healey band
+10
+
+Music: 1980s: Artist/Band: Angel In Blue?
+J. geils band
+10
+
+Music: 1980s: Artist/Band: Angel Of Harlem?
+U2
+10
+
+Music: 1980s: Artist/Band: Angel Of The Morning?
+Juice newton
+10
+
+Music: 1980s: Artist/Band: Angel Say No?
+Tommy tutone
+10
+
+Music: 1980s: Artist/Band: Angel?
+Aerosmith
+10
+
+Music: 1980s: Artist/Band: Angel?
+Madonna
+10
+
+Music: 1980s: Artist/Band: Angelia?
+Richard marx
+10
+
+Music: 1980s: Artist/Band: Animal?
+Def leppard
+10
+
+Music: 1980s: Artist/Band: Another Brick In The Wall?
+Pink floyd
+10
+
+Music: 1980s: Artist/Band: Another Day In Paradise?
+Phil collins
+10
+
+Music: 1980s: Artist/Band: Another Lover?
+Giant steps
+10
+
+Music: 1980s: Artist/Band: Another Night?
+Aretha franklin
+10
+
+Music: 1980s: Artist/Band: Another One Bites The Dust?
+Queen
+10
+
+Music: 1980s: Artist/Band: Another Part Of Me?
+Michael jackson
+10
+
+Music: 1980s: Artist/Band: Answering Machine?
+Rupert holmes
+10
+
+Music: 1980s: Artist/Band: Any Day Now?
+Ronnie milsap
+10
+
+Music: 1980s: Artist/Band: Any Way You Want It?
+Journey
+10
+
+Music: 1980s: Artist/Band: Anything For You?
+Miami sound machine
+10
+
+Music: 1980s: Artist/Band: Are We Ourselves?
+Fixx
+10
+
+Music: 1980s: Artist/Band: Armageddon It?
+Def leppard
+10
+
+Music: 1980s: Artist/Band: As We Lay?
+Shirley murdock
+10
+
+Music: 1980s: Artist/Band: Ashes By Now?
+Rodney crowell
+10
+
+Music: 1980s: Artist/Band: At This Moment?
+Billy vera & the beaters
+10
+
+Music: 1980s: Artist/Band: Athena?
+Who
+10
+
+Music: 1980s: Artist/Band: Atlanta Lady?
+Marty balin
+10
+
+Music: 1980s: Artist/Band: Atomic?
+Blondie
+10
+
+Music: 1980s: Artist/Band: Authority Song?
+John cougar mellencamp
+10
+
+Music: 1980s: Artist/Band: Automatic Man?
+Michael sembello
+10
+
+Music: 1980s: Artist/Band: Automatic?
+Pointer sisters
+10
+
+Music: 1980s: Artist/Band: Axel F?
+Harold faltermeyer
+10
+
+Music: 1980s: Artist/Band: Baby Come To Me?
+Patti austin & james ingram
+10
+
+Music: 1980s: Artist/Band: Baby Don't Forget My Number?
+Milli vanilli
+10
+
+Music: 1980s: Artist/Band: Baby I Lied?
+Deborah allen
+10
+
+Music: 1980s: Artist/Band: Baby Jane?
+Rod stewart
+10
+
+Music: 1980s: Artist/Band: Baby Love?
+Regina
+10
+
+Music: 1980s: Artist/Band: Baby Makes Her Blue Jeans Talk?
+Dr. hook
+10
+
+Music: 1980s: Artist/Band: Baby Talks Dirty?
+Knack
+10
+
+Music: 1980s: Artist/Band: Baby, I Love Your Way?
+Will to power
+10
+
+Music: 1980s: Artist/Band: Back In Black?
+Ac/dc
+10
+
+Music: 1980s: Artist/Band: Back In The High Life Again?
+Steve winwood
+10
+
+Music: 1980s: Artist/Band: Back On Holiday?
+Robbie nevil
+10
+
+Music: 1980s: Artist/Band: Back On My Feet Again?
+Babys
+10
+
+Music: 1980s: Artist/Band: Back On The Chain Gang?
+Pretenders
+10
+
+Music: 1980s: Artist/Band: Back Where You Belong?
+38 special
+10
+
+Music: 1980s: Artist/Band: Bad Medicine?
+Bon jovi
+10
+
+Music: 1980s: Artist/Band: Bad?
+Michael jackson
+10
+
+Music: 1980s: Artist/Band: Ballerina?
+Lionel richie
+10
+
+Music: 1980s: Artist/Band: Bang Your Head?
+Quiet riot
+10
+
+Music: 1980s: Artist/Band: Batdance?
+Prince
+10
+
+Music: 1980s: Artist/Band: Be Good To Yourself?
+Journey
+10
+
+Music: 1980s: Artist/Band: Be Mine Tonight?
+Neil diamond
+10
+
+Music: 1980s: Artist/Band: Be My Lady?
+Jefferson starship
+10
+
+Music: 1980s: Artist/Band: Be Near Me?
+Abc
+10
+
+Music: 1980s: Artist/Band: Be Still My Beating Heart?
+Sting
+10
+
+Music: 1980s: Artist/Band: Be With You?
+Bangles
+10
+
+Music: 1980s: Artist/Band: Beat It?
+Michael jackson
+10
+
+Music: 1980s: Artist/Band: Beat's So Lonely?
+Charlie sexton
+10
+
+Music: 1980s: Artist/Band: Because Of You?
+Cover girls
+10
+
+Music: 1980s: Artist/Band: Beds Are Burning?
+Midnight oil
+10
+
+Music: 1980s: Artist/Band: Being With You?
+Smokey robinson
+10
+
+Music: 1980s: Artist/Band: Believe It Or Not?
+Joey scarbury
+10
+
+Music: 1980s: Artist/Band: Betcha Say That?
+Miami sound machine
+10
+
+Music: 1980s: Artist/Band: Bette Davis Eyes?
+Kim carnes
+10
+
+Music: 1980s: Artist/Band: Better Be Good To Me?
+Tina turner
+10
+
+Music: 1980s: Artist/Band: Big Fun?
+Kool & the gang
+10
+
+Music: 1980s: Artist/Band: Big Log?
+Robert plant
+10
+
+Music: 1980s: Artist/Band: Big Love?
+Fleetwood mac
+10
+
+Music: 1980s: Artist/Band: Big Time?
+Peter gabriel
+10
+
+Music: 1980s: Artist/Band: Biggest Part Of Me?
+Ambrosia
+10
+
+Music: 1980s: Artist/Band: Billie Jean?
+Michael jackson
+10
+
+Music: 1980s: Artist/Band: Birthday Suit?
+Johnny kemp
+10
+
+Music: 1980s: Artist/Band: Black And Blue?
+Van halen
+10
+
+Music: 1980s: Artist/Band: Blame It On The Rain?
+Milli vanilli
+10
+
+Music: 1980s: Artist/Band: Blessed Are The Believers?
+Anne murray
+10
+
+Music: 1980s: Artist/Band: Blue Eyes?
+Elton john
+10
+
+Music: 1980s: Artist/Band: Blue Jean?
+David bowie
+10
+
+Music: 1980s: Artist/Band: Bobbie Sue?
+Oak ridge boys
+10
+
+Music: 1980s: Artist/Band: Body Language?
+Queen
+10
+
+Music: 1980s: Artist/Band: Bop 'Til You Drop?
+Rick springfield
+10
+
+Music: 1980s: Artist/Band: Borderline?
+Madonna
+10
+
+Music: 1980s: Artist/Band: Born In The U.S.A?
+Bruce springsteen
+10
+
+Music: 1980s: Artist/Band: Born To Be My Baby?
+Bon jovi
+10
+
+Music: 1980s: Artist/Band: Boulevard?
+Jackson brown
+10
+
+Music: 1980s: Artist/Band: Boy From New York City?
+Manhattan transfer
+10
+
+Music: 1980s: Artist/Band: Boy In The Box?
+Corey hart
+10
+
+Music: 1980s: Artist/Band: Boys Do Fall In Love?
+Robin gibb
+10
+
+Music: 1980s: Artist/Band: Boys Night Out?
+Timothy b. schmit
+10
+
+Music: 1980s: Artist/Band: Brand New Lover?
+Dead or alive
+10
+
+Music: 1980s: Artist/Band: Brass In Pocket?
+Pretenders
+10
+
+Music: 1980s: Artist/Band: Break It To Me Gently?
+Juice newton
+10
+
+Music: 1980s: Artist/Band: Break It Up?
+Foreigner
+10
+
+Music: 1980s: Artist/Band: Break My Stride?
+Matthew wilder
+10
+
+Music: 1980s: Artist/Band: Breakdance?
+Irene cara
+10
+
+Music: 1980s: Artist/Band: Breakdown Dead Ahead?
+Boz scaggs
+10
+
+Music: 1980s: Artist/Band: Breakin'... There's No Stopping Us?
+Ollie & jerry
+10
+
+Music: 1980s: Artist/Band: Breaking Away?
+Balance
+10
+
+Music: 1980s: Artist/Band: Breaking Us In Two?
+Joe jackson
+10
+
+Music: 1980s: Artist/Band: Breakout?
+Swing out sister
+10
+
+Music: 1980s: Artist/Band: Brilliant Disguise?
+Bruce springsteen & the e street band
+10
+
+Music: 1980s: Artist/Band: Broken Wings?
+Mr. mister
+10
+
+Music: 1980s: Artist/Band: Bruce?
+Rick springfield
+10
+
+Music: 1980s: Artist/Band: Buffalo Stance?
+Neneh cherry
+10
+
+Music: 1980s: Artist/Band: Burnin' For You?
+Blue oyster cult
+10
+
+Music: 1980s: Artist/Band: Burning Down The House?
+Talking heads
+10
+
+Music: 1980s: Artist/Band: Bust A Move?
+Young mc
+10
+
+Music: 1980s: Artist/Band: C I T Y?
+John cafferty & the beaver brown band
+10
+
+Music: 1980s: Artist/Band: C'est La Vie?
+Robbie nevil
+10
+
+Music: 1980s: Artist/Band: California Girls?
+David lee roth
+10
+
+Music: 1980s: Artist/Band: Call It Love?
+Poco
+10
+
+Music: 1980s: Artist/Band: Calling America?
+Electric light orchestra
+10
+
+Music: 1980s: Artist/Band: Can't Fight This Feeling?
+Reo speedwagon
+10
+
+Music: 1980s: Artist/Band: Can't Help Falling In Love?
+Corey hart
+10
+
+Music: 1980s: Artist/Band: Can't Shake Loose?
+Agnetha faltskog
+10
+
+Music: 1980s: Artist/Band: Can't Stay Away From You?
+Miami sound machine
+10
+
+Music: 1980s: Artist/Band: Can't We Try?
+Dan hill
+10
+
+Music: 1980s: Artist/Band: Can'tcha Say/Still In Love?
+Boston
+10
+
+Music: 1980s: Artist/Band: Candle In The Wind?
+Elton john
+10
+
+Music: 1980s: Artist/Band: Candy?
+Cameo
+10
+
+Music: 1980s: Artist/Band: Cannonball?
+Supertramp
+10
+
+Music: 1980s: Artist/Band: Careless Whisper?
+Wham!
+10
+
+Music: 1980s: Artist/Band: Caribbean Queen?
+Billy ocean
+10
+
+Music: 1980s: Artist/Band: Carol decker sang in which group?
+T-pau
+10
+
+Music: 1980s: Artist/Band: Cars?
+Gary numan
+10
+
+Music: 1980s: Artist/Band: Casanova?
+Levert
+10
+
+Music: 1980s: Artist/Band: Catch Me I'm Falling?
+Real life
+10
+
+Music: 1980s: Artist/Band: Catch Me?
+Pretty poison
+10
+
+Music: 1980s: Artist/Band: Caught Up In The Rapture?
+Anita baker
+10
+
+Music: 1980s: Artist/Band: Caught Up In You?
+38 special
+10
+
+Music: 1980s: Artist/Band: Causing A Commotion?
+Madonna
+10
+
+Music: 1980s: Artist/Band: Celebrate Youth?
+Rick springfield
+10
+
+Music: 1980s: Artist/Band: Celebration?
+Kool & the gang
+10
+
+Music: 1980s: Artist/Band: Centerfold?
+J. geils band
+10
+
+Music: 1980s: Artist/Band: Centipede?
+Rebbie jackson
+10
+
+Music: 1980s: Artist/Band: Chains Of Love?
+Erasure
+10
+
+Music: 1980s: Artist/Band: Chariots Of Fire?
+Vangelis
+10
+
+Music: 1980s: Artist/Band: Check It Out?
+John cougar mellencamp
+10
+
+Music: 1980s: Artist/Band: Cherry Bomb?
+John cougar mellencamp
+10
+
+Music: 1980s: Artist/Band: China Girl?
+David bowie
+10
+
+Music: 1980s: Artist/Band: Chloe?
+Elton john
+10
+
+Music: 1980s: Artist/Band: Church Of The Poison Mind?
+Culture club
+10
+
+Music: 1980s: Artist/Band: Circle In The Sand?
+Belinda carlisle
+10
+
+Music: 1980s: Artist/Band: Clones (We're All)?
+Alice cooper
+10
+
+Music: 1980s: Artist/Band: Cocaine?
+Eric clapton
+10
+
+Music: 1980s: Artist/Band: Cold Blooded?
+Rick james
+10
+
+Music: 1980s: Artist/Band: Cold Hearted?
+Paula abdul
+10
+
+Music: 1980s: Artist/Band: Cold Love?
+Donna summer
+10
+
+Music: 1980s: Artist/Band: Come As You Are?
+Peter wolf
+10
+
+Music: 1980s: Artist/Band: Come Back And Stay?
+Paul young
+10
+
+Music: 1980s: Artist/Band: Come Back?
+J. geils band
+10
+
+Music: 1980s: Artist/Band: Come Dancing?
+Kinks
+10
+
+Music: 1980s: Artist/Band: Come On Eileen?
+Dexys midnight runners
+10
+
+Music: 1980s: Artist/Band: Come On, Let's Go?
+Los lobos
+10
+
+Music: 1980s: Artist/Band: Comin' In And Out Of Your Life?
+Barbra streisand
+10
+
+Music: 1980s: Artist/Band: Coming Around Again?
+Carly simon
+10
+
+Music: 1980s: Artist/Band: Coming Home?
+Cinderella
+10
+
+Music: 1980s: Artist/Band: Coming Up?
+Paul mccartney & wings
+10
+
+Music: 1980s: Artist/Band: Communication?
+Power station
+10
+
+Music: 1980s: Artist/Band: Conga?
+Miami sound machine
+10
+
+Music: 1980s: Artist/Band: Control?
+Janet jackson
+10
+
+Music: 1980s: Artist/Band: Cool It Now?
+New edition
+10
+
+Music: 1980s: Artist/Band: Cool Love?
+Pablo cruise
+10
+
+Music: 1980s: Artist/Band: Cool Night?
+Paul davis
+10
+
+Music: 1980s: Artist/Band: Could I Have This Dance?
+Anne murray
+10
+
+Music: 1980s: Artist/Band: Could've Been?
+Tiffany
+10
+
+Music: 1980s: Artist/Band: Cover Girl?
+New kids on the block
+10
+
+Music: 1980s: Artist/Band: Cover Me?
+Bruce springsteen
+10
+
+Music: 1980s: Artist/Band: Cover Of Love?
+Michael damian
+10
+
+Music: 1980s: Artist/Band: Crazy About Her?
+Rod stewart
+10
+
+Music: 1980s: Artist/Band: Crazy For You?
+Madonna
+10
+
+Music: 1980s: Artist/Band: Crazy In The Night?
+Kenny rogers/kim carnes/james ingram
+10
+
+Music: 1980s: Artist/Band: Crazy Little Thing Called Love?
+Queen
+10
+
+Music: 1980s: Artist/Band: Crazy?
+Icehouse
+10
+
+Music: 1980s: Artist/Band: Crimson And Clover?
+Joan jett & the blackhearts
+10
+
+Music: 1980s: Artist/Band: Cross My Broken Heart?
+Jets
+10
+
+Music: 1980s: Artist/Band: Cruel Summer?
+Bananarama
+10
+
+Music: 1980s: Artist/Band: Crumblin' Down?
+John cougar mellencamp
+10
+
+Music: 1980s: Artist/Band: Crush On You?
+Jets
+10
+
+Music: 1980s: Artist/Band: Cry?
+Waterfront
+10
+
+Music: 1980s: Artist/Band: Cryin'?
+Vixen
+10
+
+Music: 1980s: Artist/Band: Crying?
+Don mclean
+10
+
+Music: 1980s: Artist/Band: Cuddly Toy (Feel For Me)?
+Roachford
+10
+
+Music: 1980s: Artist/Band: Cult Of Personality?
+Living colour
+10
+
+Music: 1980s: Artist/Band: Cum On Feel The Noise?
+Quiet riot
+10
+
+Music: 1980s: Artist/Band: Cupid?
+Spinners
+10
+
+Music: 1980s: Artist/Band: Cuts Like A Knife?
+Bryan adams
+10
+
+Music: 1980s: Artist/Band: Da 'Butt?
+E.u.
+10
+
+Music: 1980s: Artist/Band: Daddy's Home?
+Cliff richard
+10
+
+Music: 1980s: Artist/Band: Dance Hall Days?
+Wang chung
+10
+
+Music: 1980s: Artist/Band: Dance Little Sister?
+Terence trent d'arby
+10
+
+Music: 1980s: Artist/Band: Dancing In The Dark?
+Bruce springsteen
+10
+
+Music: 1980s: Artist/Band: Dancing In The Streets?
+Shalamar
+10
+
+Music: 1980s: Artist/Band: Dancing On The Ceiling?
+Lionel richie
+10
+
+Music: 1980s: Artist/Band: Danger Zone?
+Kenny loggins
+10
+
+Music: 1980s: Artist/Band: Dare Me?
+Pointer sisters
+10
+
+Music: 1980s: Artist/Band: Day By Day?
+Hooters
+10
+
+Music: 1980s: Artist/Band: Day In Day Out?
+David bowie
+10
+
+Music: 1980s: Artist/Band: Daydream Believer?
+Anne murray
+10
+
+Music: 1980s: Artist/Band: De Do Do Do, De Da Da Da?
+Police
+10
+
+Music: 1980s: Artist/Band: Dead Giveaway?
+Shalamar
+10
+
+Music: 1980s: Artist/Band: Deep Inside My Heart?
+Randy meisner
+10
+
+Music: 1980s: Artist/Band: Delirious?
+Prince
+10
+
+Music: 1980s: Artist/Band: Der Kommissar?
+After the fire
+10
+
+Music: 1980s: Artist/Band: Desert Moon?
+Dennis deyoung
+10
+
+Music: 1980s: Artist/Band: Devil Inside?
+Inxs
+10
+
+Music: 1980s: Artist/Band: Dial My Heart?
+The boys
+10
+
+Music: 1980s: Artist/Band: Diamonds?
+Herb alpert
+10
+
+Music: 1980s: Artist/Band: Did It In A Minute?
+Daryl hall & john oates
+10
+
+Music: 1980s: Artist/Band: Didn't I (Blow Your Mind)?
+New kids on the block
+10
+
+Music: 1980s: Artist/Band: Didn't We Almost Have It All?
+Whitney houston
+10
+
+Music: 1980s: Artist/Band: Died In Your Arms?
+Cutting crew
+10
+
+Music: 1980s: Artist/Band: Digging Your Scene?
+Blow monkeys
+10
+
+Music: 1980s: Artist/Band: Digital Display?
+Ready for the world
+10
+
+Music: 1980s: Artist/Band: Dirty Diana?
+Michael jackson
+10
+
+Music: 1980s: Artist/Band: Dirty Laundry?
+Don henley
+10
+
+Music: 1980s: Artist/Band: Do I Do?
+Stevie wonder
+10
+
+Music: 1980s: Artist/Band: Do It For Love?
+Sheena easton
+10
+
+Music: 1980s: Artist/Band: Do Right?
+Paul davis
+10
+
+Music: 1980s: Artist/Band: Do They Know It's Christmas?
+Band aid
+10
+
+Music: 1980s: Artist/Band: Do What You Do?
+Jermaine jackson
+10
+
+Music: 1980s: Artist/Band: Do You Believe In Love?
+Huey lewis & the news
+10
+
+Music: 1980s: Artist/Band: Do You Love Me?
+Contours
+10
+
+Music: 1980s: Artist/Band: Do You Love What You Feel?
+Rufus & chaka khan
+10
+
+Music: 1980s: Artist/Band: Do You Really Want To Hurt Me?
+Culture club
+10
+
+Music: 1980s: Artist/Band: Do You Wanna Touch Me?
+Joan jett & the blackhearts
+10
+
+Music: 1980s: Artist/Band: Doctor! Doctor!?
+Thompson twins
+10
+
+Music: 1980s: Artist/Band: Does It Make You Remember?
+Kim carnes
+10
+
+Music: 1980s: Artist/Band: Doing It All For My Baby?
+Huey lewis & the news
+10
+
+Music: 1980s: Artist/Band: Domino Dancing?
+Pet shop boys
+10
+
+Music: 1980s: Artist/Band: Dominoes?
+Robbie nevil
+10
+
+Music: 1980s: Artist/Band: Don't Answer Me?
+Alan parsons project
+10
+
+Music: 1980s: Artist/Band: Don't Close Your Eyes?
+Kix
+10
+
+Music: 1980s: Artist/Band: Don't Come Around Here No More?
+Tom petty & the heartbreakers
+10
+
+Music: 1980s: Artist/Band: Don't Cry?
+Asia
+10
+
+Music: 1980s: Artist/Band: Don't Disturb This Groove?
+System
+10
+
+Music: 1980s: Artist/Band: Don't Fall In Love With A Dreamer?
+Kenny rogers
+10
+
+Music: 1980s: Artist/Band: Don't Forget To Dance?
+Kinks
+10
+
+Music: 1980s: Artist/Band: Don't Get Me Wrong?
+Pretenders
+10
+
+Music: 1980s: Artist/Band: Don't Give It Up?
+Robbie patton
+10
+
+Music: 1980s: Artist/Band: Don't Know Much?
+Aaron neville/linda ronstadt
+10
+
+Music: 1980s: Artist/Band: Don't Know What You Got?
+Cinderella
+10
+
+Music: 1980s: Artist/Band: Don't Leave Me This Way?
+Communards
+10
+
+Music: 1980s: Artist/Band: Don't Let Go?
+Wang chung
+10
+
+Music: 1980s: Artist/Band: Don't Let Him Go?
+Reo speedwagon
+10
+
+Music: 1980s: Artist/Band: Don't Let Him Know?
+Prism
+10
+
+Music: 1980s: Artist/Band: Don't Let It End?
+Styx
+10
+
+Music: 1980s: Artist/Band: Don't Look Back?
+Fine young cannibals
+10
+
+Music: 1980s: Artist/Band: Don't Lose My Number?
+Phil collins
+10
+
+Music: 1980s: Artist/Band: Don't Make Me Over?
+Sybil
+10
+
+Music: 1980s: Artist/Band: Don't Make Me Wait For Love?
+Kenny g
+10
+
+Music: 1980s: Artist/Band: Don't Mean Nothing?
+Richard marx
+10
+
+Music: 1980s: Artist/Band: Don't Need A Gun?
+Billy idol
+10
+
+Music: 1980s: Artist/Band: Don't Play The Ferryman?
+Chris deburgh
+10
+
+Music: 1980s: Artist/Band: Don't Rush Me?
+Taylor dayne
+10
+
+Music: 1980s: Artist/Band: Don't Say Goodnight?
+Isley brothers
+10
+
+Music: 1980s: Artist/Band: Don't Shed A Tear?
+Paul carrack
+10
+
+Music: 1980s: Artist/Band: Don't Shut Me Out?
+Kevin paige
+10
+
+Music: 1980s: Artist/Band: Don't Stand So Close To Me?
+Police
+10
+
+Music: 1980s: Artist/Band: Don't Stop Believin'?
+Journey
+10
+
+Music: 1980s: Artist/Band: Don't Stop The Music?
+Yarbrough & peoples
+10
+
+Music: 1980s: Artist/Band: Don't Talk To Strangers?
+Rick springfield
+10
+
+Music: 1980s: Artist/Band: Don't Tell Me Lies?
+Breathe
+10
+
+Music: 1980s: Artist/Band: Don't Tell Me You Love Me?
+Night ranger
+10
+
+Music: 1980s: Artist/Band: Don't Walk Away?
+Rick springfield
+10
+
+Music: 1980s: Artist/Band: Don't Wanna Lose You?
+Gloria estefan
+10
+
+Music: 1980s: Artist/Band: Don't Want To Wait Anymore?
+Tubes
+10
+
+Music: 1980s: Artist/Band: Don't Worry Be Happy?
+Bobby mcferrin
+10
+
+Music: 1980s: Artist/Band: Don't You Get So Mad?
+Jeffrey osborne
+10
+
+Music: 1980s: Artist/Band: Don't You?
+Simple minds
+10
+
+Music: 1980s: Artist/Band: Double Dutch Bus?
+Frankie smith
+10
+
+Music: 1980s: Artist/Band: Down Boys?
+Warrant
+10
+
+Music: 1980s: Artist/Band: Down Under?
+Men at work
+10
+
+Music: 1980s: Artist/Band: Downtown Life?
+Daryl hall & john oates
+10
+
+Music: 1980s: Artist/Band: Downtown Train?
+Rod stewart
+10
+
+Music: 1980s: Artist/Band: Downtown?
+One 2 many
+10
+
+Music: 1980s: Artist/Band: Dr. Feelgood?
+Motley crue
+10
+
+Music: 1980s: Artist/Band: Dr. Heckyll & Mr. Jive?
+Men at work
+10
+
+Music: 1980s: Artist/Band: Draw Of The Cards?
+Kim carnes
+10
+
+Music: 1980s: Artist/Band: Dreamer?
+Supertramp
+10
+
+Music: 1980s: Artist/Band: Dreamin' Is Easy?
+Steel breeze
+10
+
+Music: 1980s: Artist/Band: Dreamin'?
+Vanessa williams
+10
+
+Music: 1980s: Artist/Band: Dreams?
+Van halen
+10
+
+Music: 1980s: Artist/Band: Dreamtime?
+Daryl hall
+10
+
+Music: 1980s: Artist/Band: Dress You Up?
+Madonna
+10
+
+Music: 1980s: Artist/Band: Dressed For Success?
+Roxette
+10
+
+Music: 1980s: Artist/Band: Drive?
+Cars
+10
+
+Music: 1980s: Artist/Band: Drivin' My Life Away?
+Eddie rabbitt
+10
+
+Music: 1980s: Artist/Band: Dude (Looks Like A Lady)?
+Aerosmith
+10
+
+Music: 1980s: Artist/Band: Dynamite?
+Jermaine jackson
+10
+
+Music: 1980s: Artist/Band: Early '80's British Punk band who's frontman was Mark E. Smith?
+The fall
+10
+
+Music: 1980s: Artist/Band: Earth Angel?
+New edition
+10
+
+Music: 1980s: Artist/Band: Eat It?
+Wierd al yankovic
+10
+
+Music: 1980s: Artist/Band: Edge Of A Broken Heart?
+Vixen
+10
+
+Music: 1980s: Artist/Band: Edge Of Seventeen?
+Stevie nicks
+10
+
+Music: 1980s: Artist/Band: Election Day?
+Arcadia
+10
+
+Music: 1980s: Artist/Band: Electric Avenue?
+Eddy grant
+10
+
+Music: 1980s: Artist/Band: Electric Blue?
+Icehouse
+10
+
+Music: 1980s: Artist/Band: Electric Youth?
+Debbie gibson
+10
+
+Music: 1980s: Artist/Band: Elvira?
+Oak ridge boys
+10
+
+Music: 1980s: Artist/Band: Emergency?
+Kool & the gang
+10
+
+Music: 1980s: Artist/Band: Emotion In Motion?
+Ric ocasek
+10
+
+Music: 1980s: Artist/Band: Emotional Rescue?
+Rolling stones
+10
+
+Music: 1980s: Artist/Band: Empty Garden?
+Elton john
+10
+
+Music: 1980s: Artist/Band: Endless Nights?
+Eddie money
+10
+
+Music: 1980s: Artist/Band: Endless Summer Nights?
+Richard marx
+10
+
+Music: 1980s: Artist/Band: Eternal Flame?
+Bangles
+10
+
+Music: 1980s: Artist/Band: Even It Up?
+Heart
+10
+
+Music: 1980s: Artist/Band: Even Now?
+Bob seger & the silver bullet band
+10
+
+Music: 1980s: Artist/Band: Even The Nights Are Better?
+Air supply
+10
+
+Music: 1980s: Artist/Band: Every Breath You Take?
+Police
+10
+
+Music: 1980s: Artist/Band: Every Little Kiss?
+Bruce hornsby & the range
+10
+
+Music: 1980s: Artist/Band: Every Little Step?
+Bobby brown
+10
+
+Music: 1980s: Artist/Band: Every Little Thing She Does Is Magic?
+Police
+10
+
+Music: 1980s: Artist/Band: Every Rose Has Its Thorn?
+Poison
+10
+
+Music: 1980s: Artist/Band: Every Step Of The Way?
+John waite
+10
+
+Music: 1980s: Artist/Band: Every Woman In The World?
+Air supply
+10
+
+Music: 1980s: Artist/Band: Everybody Dance?
+Ta mara & the seen
+10
+
+Music: 1980s: Artist/Band: Everybody Have Fun Tonight?
+Wang chung
+10
+
+Music: 1980s: Artist/Band: Everybody Wants To Rule The World?
+Tears for fears
+10
+
+Music: 1980s: Artist/Band: Everybody Wants You?
+Billy squire
+10
+
+Music: 1980s: Artist/Band: Everybody's Got To Learn Sometime?
+Korgis
+10
+
+Music: 1980s: Artist/Band: Everyday I Write The Book?
+Elvis costello & the attractions
+10
+
+Music: 1980s: Artist/Band: Everyday People?
+Joan jett & the blackhearts
+10
+
+Music: 1980s: Artist/Band: Everything In My Heart?
+Corey hart
+10
+
+Music: 1980s: Artist/Band: Everything She Wants?
+Wham!
+10
+
+Music: 1980s: Artist/Band: Everything Your Heart Desires?
+Daryl hall & john oates
+10
+
+Music: 1980s: Artist/Band: Everything?
+Jody watley
+10
+
+Music: 1980s: Artist/Band: Everytime You Go Away?
+Paul young
+10
+
+Music: 1980s: Artist/Band: Everywhere?
+Fleetwood mac
+10
+
+Music: 1980s: Artist/Band: Express Yourself?
+Madonna
+10
+
+Music: 1980s: Artist/Band: Eye In The Sky?
+Alan parsons project
+10
+
+Music: 1980s: Artist/Band: Eye Of The Tiger?
+Survivor
+10
+
+Music: 1980s: Artist/Band: Eyes Without A Face?
+Billy idol
+10
+
+Music: 1980s: Artist/Band: Face The Face?
+Peter townshend
+10
+
+Music: 1980s: Artist/Band: Fade Away?
+Bruce springsteen
+10
+
+Music: 1980s: Artist/Band: Faith?
+George michael
+10
+
+Music: 1980s: Artist/Band: Faithfully?
+Journey
+10
+
+Music: 1980s: Artist/Band: Fake Friends?
+Joan jett & the blackhearts
+10
+
+Music: 1980s: Artist/Band: Fake?
+Alexander o'neal
+10
+
+Music: 1980s: Artist/Band: Fall In Love With Me?
+Earth wind & fire
+10
+
+Music: 1980s: Artist/Band: Fallen Angel?
+Poison
+10
+
+Music: 1980s: Artist/Band: Falling In Love?
+Miami sound machine
+10
+
+Music: 1980s: Artist/Band: Fame?
+Irene cara
+10
+
+Music: 1980s: Artist/Band: Family Man?
+Daryl hall & john oates
+10
+
+Music: 1980s: Artist/Band: Fantasy?
+Aldo nova
+10
+
+Music: 1980s: Artist/Band: Far From Over?
+Frank stallone
+10
+
+Music: 1980s: Artist/Band: Farewell My Summer Love?
+Michael jackson
+10
+
+Music: 1980s: Artist/Band: Fascinated?
+Company b
+10
+
+Music: 1980s: Artist/Band: Fascination?
+Human league
+10
+
+Music: 1980s: Artist/Band: Fast Car?
+Tracy chapman
+10
+
+Music: 1980s: Artist/Band: Father Figure?
+George michael
+10
+
+Music: 1980s: Artist/Band: Feel It Again?
+Honeymoon suite
+10
+
+Music: 1980s: Artist/Band: Feels So Good?
+Van halen
+10
+
+Music: 1980s: Artist/Band: Feels So Right?
+Alabama
+10
+
+Music: 1980s: Artist/Band: Fight For Your Right?
+Beastie boys
+10
+
+Music: 1980s: Artist/Band: Find A Way?
+Amy grant
+10
+
+Music: 1980s: Artist/Band: Find Another Fool?
+Quarterflash
+10
+
+Music: 1980s: Artist/Band: Find Your Way Back?
+Jefferson starship
+10
+
+Music: 1980s: Artist/Band: Finish What Ya Started?
+Van halen
+10
+
+Music: 1980s: Artist/Band: Fire And Ice?
+Pat benatar
+10
+
+Music: 1980s: Artist/Band: Fire In The Morning?
+Melissa Manchester
+10
+
+Music: 1980s: Artist/Band: Fire Lake?
+Bob seger
+10
+
+Music: 1980s: Artist/Band: First Time Love?
+Livingston taylor
+10
+
+Music: 1980s: Artist/Band: Fishnet?
+Morris day
+10
+
+Music: 1980s: Artist/Band: Flames Of Paradise?
+Elton john
+10
+
+Music: 1980s: Artist/Band: Flash Dance ... What A Feeling?
+Irene cara
+10
+
+Music: 1980s: Artist/Band: Flesh Of Fantasy?
+Billy idol
+10
+
+Music: 1980s: Artist/Band: Fool For Your Loving?
+Whitesnake
+10
+
+Music: 1980s: Artist/Band: Fool In Love With You?
+Photoglo
+10
+
+Music: 1980s: Artist/Band: Fool In The Rain?
+Led zeppelin
+10
+
+Music: 1980s: Artist/Band: Foolin'?
+Def leppard
+10
+
+Music: 1980s: Artist/Band: Foolish Beat?
+Debbie gibson
+10
+
+Music: 1980s: Artist/Band: Foolish Heart?
+Steve perry
+10
+
+Music: 1980s: Artist/Band: Foolish Pride?
+Daryl hall
+10
+
+Music: 1980s: Artist/Band: Footloose?
+Kenny loggins
+10
+
+Music: 1980s: Artist/Band: For Tonight?
+Nancy martinez
+10
+
+Music: 1980s: Artist/Band: For Your Eyes Only?
+Sheena easton
+10
+
+Music: 1980s: Artist/Band: Forever Man?
+Eric clapton
+10
+
+Music: 1980s: Artist/Band: Forever Mine?
+O'jays
+10
+
+Music: 1980s: Artist/Band: Forever Young?
+Rod stewart
+10
+
+Music: 1980s: Artist/Band: Forever Your Girl?
+Paula abdul
+10
+
+Music: 1980s: Artist/Band: Forever?
+Kenny loggins
+10
+
+Music: 1980s: Artist/Band: Forget Me Nots?
+Patrice rushen
+10
+
+Music: 1980s: Artist/Band: Fortress Around Your Heart?
+Sting
+10
+
+Music: 1980s: Artist/Band: Four In The Morning?
+Night ranger
+10
+
+Music: 1980s: Artist/Band: Free Fallin'?
+Tom petty
+10
+
+Music: 1980s: Artist/Band: Freedom Overspill?
+Steve winwood
+10
+
+Music: 1980s: Artist/Band: Freedom?
+Wham!
+10
+
+Music: 1980s: Artist/Band: Freeway Of Love?
+Aretha franklin
+10
+
+Music: 1980s: Artist/Band: Freeze Frame?
+J. geils band
+10
+
+Music: 1980s: Artist/Band: Fresh?
+Kool & the gang
+10
+
+Music: 1980s: Artist/Band: Friends And Lovers?
+Gloria loring & carl anderson
+10
+
+Music: 1980s: Artist/Band: Friends?
+Jody watley
+10
+
+Music: 1980s: Artist/Band: Funky Cold Medina?
+Tone loc
+10
+
+Music: 1980s: Artist/Band: Funky Town?
+Pseudo echo
+10
+
+Music: 1980s: Artist/Band: Funkytown?
+Lipps, inc.
+10
+
+Music: 1980s: Artist/Band: Games People Play?
+Alan parsons project
+10
+
+Music: 1980s: Artist/Band: Gee Whiz?
+Bernadette peters
+10
+
+Music: 1980s: Artist/Band: Gemini Dream?
+Moody blues
+10
+
+Music: 1980s: Artist/Band: General Hospi Tale?
+Afternoon delights
+10
+
+Music: 1980s: Artist/Band: Genius Of Love?
+Tom tom club
+10
+
+Music: 1980s: Artist/Band: Get Closer?
+Linda ronstadt
+10
+
+Music: 1980s: Artist/Band: Get Down On It?
+Kool & the gang
+10
+
+Music: 1980s: Artist/Band: Get It On?
+Power station
+10
+
+Music: 1980s: Artist/Band: Get On Your Feet?
+Gloria estefan
+10
+
+Music: 1980s: Artist/Band: Get Outta My Dreams?
+Billy ocean
+10
+
+Music: 1980s: Artist/Band: Get That Love?
+Thompson twins
+10
+
+Music: 1980s: Artist/Band: Getcha Back?
+Beach boys
+10
+
+Music: 1980s: Artist/Band: Ghost Town?
+Cheap trick
+10
+
+Music: 1980s: Artist/Band: Ghostbusters?
+Ray parker jr.
+10
+
+Music: 1980s: Artist/Band: Gimme All Your Lovin?
+Zz top
+10
+
+Music: 1980s: Artist/Band: Gimme Some Lovin'?
+Blues brothers
+10
+
+Music: 1980s: Artist/Band: Girl Can't Help It?
+Journey
+10
+
+Music: 1980s: Artist/Band: Girl I'm Gonna Miss You?
+Milli vanilli
+10
+
+Music: 1980s: Artist/Band: Girl You Know It's True?
+Milli vanilli
+10
+
+Music: 1980s: Artist/Band: Girlfriend?
+Pebbles
+10
+
+Music: 1980s: Artist/Band: Girls Are More Fun?
+Ray parker jr.
+10
+
+Music: 1980s: Artist/Band: Girls Can Get It?
+Dr. hook
+10
+
+Music: 1980s: Artist/Band: Girls Just Want To Have Fun?
+Cyndi lauper
+10
+
+Music: 1980s: Artist/Band: Girls With Guns?
+Tommy shaw
+10
+
+Music: 1980s: Artist/Band: Girls, Girls, Girls?
+Motley crue
+10
+
+Music: 1980s: Artist/Band: Girls?
+Dwight twilley
+10
+
+Music: 1980s: Artist/Band: Give It All You Got?
+Chuck mangione
+10
+
+Music: 1980s: Artist/Band: Give It To Me Baby?
+Rick james
+10
+
+Music: 1980s: Artist/Band: Give It Up?
+Kc
+10
+
+Music: 1980s: Artist/Band: Give Me The Night?
+George benson
+10
+
+Music: 1980s: Artist/Band: Give To Live?
+Sammy hagar
+10
+
+Music: 1980s: Artist/Band: Giving It Up For Love?
+Delbert mcclinton
+10
+
+Music: 1980s: Artist/Band: Giving Up On Love?
+Rick astley
+10
+
+Music: 1980s: Artist/Band: Giving You The Best That I Got?
+Anita baker
+10
+
+Music: 1980s: Artist/Band: Glamour Boys?
+Living colour
+10
+
+Music: 1980s: Artist/Band: Gloria?
+Laura branigan
+10
+
+Music: 1980s: Artist/Band: Glory Days?
+Bruce springsteen
+10
+
+Music: 1980s: Artist/Band: Glory Of Love?
+Peter cetera
+10
+
+Music: 1980s: Artist/Band: Go Home?
+Stevie wonder
+10
+
+Music: 1980s: Artist/Band: Go Insane?
+Lindsey buckingham
+10
+
+Music: 1980s: Artist/Band: Goin' Down?
+Greg guidry
+10
+
+Music: 1980s: Artist/Band: Going Back To Cali?
+L.l. cool j
+10
+
+Music: 1980s: Artist/Band: Going To A Go Go?
+Rolling stones
+10
+
+Music: 1980s: Artist/Band: Gold?
+Spandau ballet
+10
+
+Music: 1980s: Artist/Band: Goldmine?
+Pointer sisters
+10
+
+Music: 1980s: Artist/Band: Good Thing?
+Fine young cannibals
+10
+
+Music: 1980s: Artist/Band: Goodbye Is Forever?
+Arcadia
+10
+
+Music: 1980s: Artist/Band: Goodbye?
+Night ranger
+10
+
+Music: 1980s: Artist/Band: Goody Two Shoes?
+Adam ant
+10
+
+Music: 1980s: Artist/Band: Got A Hold On Me?
+Christine mcvie
+10
+
+Music: 1980s: Artist/Band: Got My Mind Set On You?
+George harrison
+10
+
+Music: 1980s: Artist/Band: Greatest Love Of All?
+Whitney houston
+10
+
+Music: 1980s: Artist/Band: Groovy Kind Of Love?
+Phil collins
+10
+
+Music: 1980s: Artist/Band: Group who had success with fields of Fire and chance?
+Big Country
+10
+
+Music: 1980s: Artist/Band: Group whose lead singer Stuart Adamson died in 2001?
+Big Country
+10
+
+Music: 1980s: Artist/Band: Guilty?
+Barbra streisand & barry gibb
+10
+
+Music: 1980s: Artist/Band: Guitar Man?
+Elvis presley
+10
+
+Music: 1980s: Artist/Band: Gypsy?
+Fleetwood mac
+10
+
+Music: 1980s: Artist/Band: Hand To Hold On To?
+John cougar mellencamp
+10
+
+Music: 1980s: Artist/Band: Hang Fire?
+Rolling stones
+10
+
+Music: 1980s: Artist/Band: Hangin' Tough?
+New kids on the block
+10
+
+Music: 1980s: Artist/Band: Hanging On A Heart Attack?
+Device
+10
+
+Music: 1980s: Artist/Band: Happy?
+Surface
+10
+
+Music: 1980s: Artist/Band: Hard Habit To Break?
+Chicago
+10
+
+Music: 1980s: Artist/Band: Hard To Say I'm Sorry?
+Chicago
+10
+
+Music: 1980s: Artist/Band: Hard To Say?
+Dan fogelberg
+10
+
+Music: 1980s: Artist/Band: Harden My Heart?
+Quarterflash
+10
+
+Music: 1980s: Artist/Band: Harlem Shuffle?
+Rolling stones
+10
+
+Music: 1980s: Artist/Band: Hazy Shade Of Winter?
+Bangles
+10
+
+Music: 1980s: Artist/Band: He Can't Love You?
+Michael stanley band
+10
+
+Music: 1980s: Artist/Band: He'll Never Love You (Like I Do)?
+Freddie jackson
+10
+
+Music: 1980s: Artist/Band: He's A Liar?
+Bee gees
+10
+
+Music: 1980s: Artist/Band: He's So Shy?
+Pointer sisters
+10
+
+Music: 1980s: Artist/Band: Head Over Heals?
+Tears for fears
+10
+
+Music: 1980s: Artist/Band: Head Over Heels?
+Go go's
+10
+
+Music: 1980s: Artist/Band: Head To Toe?
+Lisa lisa & cult jam
+10
+
+Music: 1980s: Artist/Band: Headed For A Fall?
+Firefall
+10
+
+Music: 1980s: Artist/Band: Headed For A Heartbreak?
+Winger
+10
+
+Music: 1980s: Artist/Band: Healing Hands?
+Elton john
+10
+
+Music: 1980s: Artist/Band: Heart Attack?
+Olivia newton john
+10
+
+Music: 1980s: Artist/Band: Heart Hotels?
+Dan fogelberg
+10
+
+Music: 1980s: Artist/Band: Heart Like A Wheel?
+Steve miller band
+10
+
+Music: 1980s: Artist/Band: Heart Of Mine?
+Boz scaggs
+10
+
+Music: 1980s: Artist/Band: Heart Of The Night?
+Juice newton
+10
+
+Music: 1980s: Artist/Band: Heart To Heart?
+Kenny loggins
+10
+
+Music: 1980s: Artist/Band: Heartbeat?
+Don johnson
+10
+
+Music: 1980s: Artist/Band: Heartbreak Beat?
+Psychedelic furs
+10
+
+Music: 1980s: Artist/Band: Heartbreak Hotel?
+Jacksons
+10
+
+Music: 1980s: Artist/Band: Heartlight?
+Neil diamond
+10
+
+Music: 1980s: Artist/Band: Hearts?
+Marty balin
+10
+
+Music: 1980s: Artist/Band: Heat Of The Moment?
+Asia
+10
+
+Music: 1980s: Artist/Band: Heat Of The Night?
+Bryan adams & tina turner
+10
+
+Music: 1980s: Artist/Band: Heaven Help Me?
+Deon estus/george michael
+10
+
+Music: 1980s: Artist/Band: Heaven In Your Eyes?
+Loverboy
+10
+
+Music: 1980s: Artist/Band: Heaven Is A Place On Earth?
+Belinda carlisle
+10
+
+Music: 1980s: Artist/Band: Hello?
+Lionel richie
+10
+
+Music: 1980s: Artist/Band: Here Comes The Rain Again?
+Eurythmics
+10
+
+Music: 1980s: Artist/Band: Here I Am?
+Air supply
+10
+
+Music: 1980s: Artist/Band: Here I Go Again?
+Whitesnake
+10
+
+Music: 1980s: Artist/Band: Here With Me?
+Reo speedwagon
+10
+
+Music: 1980s: Artist/Band: Hey Baby?
+Henry lee summer
+10
+
+Music: 1980s: Artist/Band: Hey Ladies?
+Beastie boys
+10
+
+Music: 1980s: Artist/Band: Hey Nineteen?
+Steely dan
+10
+
+Music: 1980s: Artist/Band: Hey There Lonely Girl?
+Robert john
+10
+
+Music: 1980s: Artist/Band: High On You?
+Survivor
+10
+
+Music: 1980s: Artist/Band: Higher Love?
+Steve winwood
+10
+
+Music: 1980s: Artist/Band: Hill Street Blues (Theme)?
+Mike post
+10
+
+Music: 1980s: Artist/Band: Him?
+Rupert holmes
+10
+
+Music: 1980s: Artist/Band: Hip To Be Square?
+Huey lewis & the News
+10
+
+Music: 1980s: Artist/Band: Hit Me With Your Best Shot?
+Pat Benatar
+10
+
+Music: 1980s: Artist/Band: Hold Me Now?
+Thompson twins
+10
+
+Music: 1980s: Artist/Band: Hold Me Til The Mornin Comes?
+Paul Anka
+10
+
+Music: 1980s: Artist/Band: Hold Me?
+Fleetwood mac
+10
+
+Music: 1980s: Artist/Band: Hold On Loosely?
+38 special
+10
+
+Music: 1980s: Artist/Band: Hold On Tight?
+Electric light Orchestra
+10
+
+Music: 1980s: Artist/Band: Hold On To My Love?
+Jimmy ruffin
+10
+
+Music: 1980s: Artist/Band: Hold On To The Nights?
+Richard marx
+10
+
+Music: 1980s: Artist/Band: Holdin' On?
+Tane cain
+10
+
+Music: 1980s: Artist/Band: Holding Back The Years?
+Simply red
+10
+
+Music: 1980s: Artist/Band: Holding On?
+Steve winwood
+10
+
+Music: 1980s: Artist/Band: Holding Out For A Hero?
+Bonnie tyler
+10
+
+Music: 1980s: Artist/Band: Honestly?
+Stryper
+10
+
+Music: 1980s: Artist/Band: Hooked On Classics?
+Royal Philharmonic Orchestra
+10
+
+Music: 1980s: Artist/Band: Hooked On Swing (Medley)?
+Larry Elgart & His Manhattan Swing Band
+10
+
+Music: 1980s: Artist/Band: Hooked On You?
+Sweet sensation
+10
+
+Music: 1980s: Artist/Band: Hope You Love Me Like You Say You Do?
+Huey lewis & the news
+10
+
+Music: 1980s: Artist/Band: Hot Girls In Love?
+Loverboy
+10
+
+Music: 1980s: Artist/Band: Hot In The City?
+Billy idol
+10
+
+Music: 1980s: Artist/Band: Hot Rod Hearts?
+Robbie dupree
+10
+
+Music: 1980s: Artist/Band: Hourglass?
+Squeeze
+10
+
+Music: 1980s: Artist/Band: How 'Bout Us?
+Champaign
+10
+
+Music: 1980s: Artist/Band: How Do I Make You?
+Linda ronstadt
+10
+
+Music: 1980s: Artist/Band: How Do I Survive?
+Amy holland
+10
+
+Music: 1980s: Artist/Band: How Does It Feel To Be Back?
+Daryl Hall & John Oates
+10
+
+Music: 1980s: Artist/Band: How Will I Know?
+Whitney houston
+10
+
+Music: 1980s: Artist/Band: Human Nature?
+Michael jackson
+10
+
+Music: 1980s: Artist/Band: Human Touch?
+Rick springfield
+10
+
+Music: 1980s: Artist/Band: Human?
+Human league
+10
+
+Music: 1980s: Artist/Band: Hungry Eyes?
+Eric carmen
+10
+
+Music: 1980s: Artist/Band: Hungry Heart?
+Bruce springsteen
+10
+
+Music: 1980s: Artist/Band: Hungry Like A Wolf?
+Duran duran
+10
+
+Music: 1980s: Artist/Band: Hurts So Bad?
+Linda ronstadt
+10
+
+Music: 1980s: Artist/Band: Hurts So Good?
+John cougar
+10
+
+Music: 1980s: Artist/Band: Hyperactive?
+Robert palmer
+10
+
+Music: 1980s: Artist/Band: Hypnotize Me?
+Wang chung
+10
+
+Music: 1980s: Artist/Band: Hysteria?
+Def leppard
+10
+
+Music: 1980s: Artist/Band: I Ain't Gonna Stand For It?
+Stevie Wonder
+10
+
+Music: 1980s: Artist/Band: I Am By Your Side?
+Corey hart
+10
+
+Music: 1980s: Artist/Band: I Beg Your Pardon?
+Kon kan
+10
+
+Music: 1980s: Artist/Band: I Believe In You?
+Don williams
+10
+
+Music: 1980s: Artist/Band: I Believe?
+Chilliwack
+10
+
+Music: 1980s: Artist/Band: I Can Dream About You?
+Dan hartman
+10
+
+Music: 1980s: Artist/Band: I Can Take Care Of Myself?
+Billy Vera & The Beaters
+10
+
+Music: 1980s: Artist/Band: I Can't Drive 55?
+Sammy hagar
+10
+
+Music: 1980s: Artist/Band: I Can't Go For That (No Can Do)?
+Daryl hall & john oates
+10
+
+Music: 1980s: Artist/Band: I Can't Help It?
+Olivia newton john & Andy Gibb
+10
+
+Music: 1980s: Artist/Band: I Can't Help Myself?
+Bonnie pointer
+10
+
+Music: 1980s: Artist/Band: I Can't Hold Back?
+Survivor
+10
+
+Music: 1980s: Artist/Band: I Can't Let Go?
+Linda ronstadt
+10
+
+Music: 1980s: Artist/Band: I Can't Stand It?
+Eric clapton
+10
+
+Music: 1980s: Artist/Band: I Can't Tell You Why?
+Eagles
+10
+
+Music: 1980s: Artist/Band: I Could Never Miss You?
+Lulu
+10
+
+Music: 1980s: Artist/Band: I Could Never Take The Place?
+Prince & The Revolution
+10
+
+Music: 1980s: Artist/Band: I Couldn't Say No?
+Robert ellis Orral
+10
+
+Music: 1980s: Artist/Band: I Didn't Mean To Turn You On?
+Robert Palmer
+10
+
+Music: 1980s: Artist/Band: I Do What I Do?
+John taylor
+10
+
+Music: 1980s: Artist/Band: I Do You?
+Jets
+10
+
+Music: 1980s: Artist/Band: I Do' Wanna Know?
+Reo speedwagon
+10
+
+Music: 1980s: Artist/Band: I Do?
+J. geils band
+10
+
+Music: 1980s: Artist/Band: I Don't Care Anymore?
+Phil collins
+10
+
+Music: 1980s: Artist/Band: I Don't Know Where To Start?
+Eddie Rabbitt
+10
+
+Music: 1980s: Artist/Band: I Don't Mind At All?
+Bourgeois tagg
+10
+
+Music: 1980s: Artist/Band: I Don't Need You?
+Kenny rogers
+10
+
+Music: 1980s: Artist/Band: I Don't Wanna Live Without Your Love?
+Chicago
+10
+
+Music: 1980s: Artist/Band: I Don't Want To Be A Hero?
+Johnny Hates Jazz
+10
+
+Music: 1980s: Artist/Band: I Don't Want To Live Without You?
+Foreigner
+10
+
+Music: 1980s: Artist/Band: I Don't Want To Walk Without You?
+Barry manilow
+10
+
+Music: 1980s: Artist/Band: I Don't Want Your Love?
+Duran duran
+10
+
+Music: 1980s: Artist/Band: I Drove All Night?
+Cyndi lauper
+10
+
+Music: 1980s: Artist/Band: I Feel For You?
+Chaka khan
+10
+
+Music: 1980s: Artist/Band: I Found Somebody?
+Glenn frey
+10
+
+Music: 1980s: Artist/Band: I Found Someone?
+Cher
+10
+
+Music: 1980s: Artist/Band: I Get Excited?
+Rick springfield
+10
+
+Music: 1980s: Artist/Band: I Get Weak?
+Belinda carlisle
+10
+
+Music: 1980s: Artist/Band: I Got You Babe?
+Ub40
+10
+
+Music: 1980s: Artist/Band: I Hate Myself For Loving You?
+Joan Jett & The Blackhearts
+10
+
+Music: 1980s: Artist/Band: I Heard A Rumour?
+Bananarama
+10
+
+Music: 1980s: Artist/Band: I Just Called To Say I Love You?
+Stevie wonder
+10
+
+Music: 1980s: Artist/Band: I Just Can't Stop Loving You?
+Michael jackson
+10
+
+Music: 1980s: Artist/Band: I Keep Forgettin'?
+Michael mcdonald
+10
+
+Music: 1980s: Artist/Band: I Knew You Were Waiting?
+Aretha Franklin/George Michael
+10
+
+Music: 1980s: Artist/Band: I Knew You When?
+Linda ronstadt
+10
+
+Music: 1980s: Artist/Band: I Know There's Something Going On?
+Frida
+10
+
+Music: 1980s: Artist/Band: I Know What I Like?
+Huey lewis & the News
+10
+
+Music: 1980s: Artist/Band: I Know You're Out There Somewhere?
+Moody blues
+10
+
+Music: 1980s: Artist/Band: I Live By The Groove?
+Paul carrack
+10
+
+Music: 1980s: Artist/Band: I Live For Your Love?
+Natalie cole
+10
+
+Music: 1980s: Artist/Band: I Love A Rainy Night?
+Eddir rabbitt
+10
+
+Music: 1980s: Artist/Band: I Love Rock 'N Roll?
+Joan jett & the Blackhearts
+10
+
+Music: 1980s: Artist/Band: I Love You?
+Climax blues band
+10
+
+Music: 1980s: Artist/Band: I Loved 'Em Every One?
+T.g. sheppard
+10
+
+Music: 1980s: Artist/Band: I Made It Through The Rain?
+Barry Manilow
+10
+
+Music: 1980s: Artist/Band: I Miss You?
+Klymaxx
+10
+
+Music: 1980s: Artist/Band: I Missed Again?
+Phil collins
+10
+
+Music: 1980s: Artist/Band: I Need Love?
+L.l. cool j
+10
+
+Music: 1980s: Artist/Band: I Need You Lovin'?
+Teena marie
+10
+
+Music: 1980s: Artist/Band: I Need You Tonight?
+Peter wolf
+10
+
+Music: 1980s: Artist/Band: I Need You?
+Paul carrack
+10
+
+Music: 1980s: Artist/Band: I Only Wanna Be With You?
+Samantha Fox
+10
+
+Music: 1980s: Artist/Band: I Pledge My Love?
+Peaches & herb
+10
+
+Music: 1980s: Artist/Band: I Ran (So Far Away)?
+Flock of Seagulls
+10
+
+Music: 1980s: Artist/Band: I Really Don't Need No Light?
+Jeffrey osborne
+10
+
+Music: 1980s: Artist/Band: I Remember Holding You?
+Boys club
+10
+
+Music: 1980s: Artist/Band: I Remember You?
+Skid row
+10
+
+Music: 1980s: Artist/Band: I Saw Him Standing There?
+Tiffany
+10
+
+Music: 1980s: Artist/Band: I Should Be So Lucky?
+Kylie minogue
+10
+
+Music: 1980s: Artist/Band: I Still Believe?
+Brenda k. starr
+10
+
+Music: 1980s: Artist/Band: I Still Can't Get Over Loving You?
+Ray parker jr
+10
+
+Music: 1980s: Artist/Band: I Thank You?
+Zz top
+10
+
+Music: 1980s: Artist/Band: I Think It's Love?
+Jermaine jackson
+10
+
+Music: 1980s: Artist/Band: I Think We're Alone Now?
+Tiffany
+10
+
+Music: 1980s: Artist/Band: I Wanna Be A Cowboy?
+Boys don't cry
+10
+
+Music: 1980s: Artist/Band: I Wanna Be The One?
+Stevie b
+10
+
+Music: 1980s: Artist/Band: I Wanna Dance With Somebody?
+Whitney Houston
+10
+
+Music: 1980s: Artist/Band: I Wanna Go Back?
+Eddie money
+10
+
+Music: 1980s: Artist/Band: I Wanna Have Some Fun?
+Samantha fox
+10
+
+Music: 1980s: Artist/Band: I Wanna Hear It From Your Lips?
+Eric Carmen
+10
+
+Music: 1980s: Artist/Band: I Want A New Drug?
+Huey lewis & the News
+10
+
+Music: 1980s: Artist/Band: I Want Her?
+Keith sweat
+10
+
+Music: 1980s: Artist/Band: I Want To Be Your Man?
+Roger
+10
+
+Music: 1980s: Artist/Band: I Want To Know What Love Is?
+Foreigner
+10
+
+Music: 1980s: Artist/Band: I Want You, I Need You?
+Chris Christian
+10
+
+Music: 1980s: Artist/Band: I Want Your Sex?
+George michael
+10
+
+Music: 1980s: Artist/Band: I Wish I Had A Girl?
+Henry lee Summer
+10
+
+Music: 1980s: Artist/Band: I Won't Back Down?
+Tom petty
+10
+
+Music: 1980s: Artist/Band: I Won't Forget You?
+Poison
+10
+
+Music: 1980s: Artist/Band: I Won't Hold You Back?
+Toto
+10
+
+Music: 1980s: Artist/Band: I Won't Stand In Your Way?
+Stray Cats
+10
+
+Music: 1980s: Artist/Band: I Wonder If I Take You Home?
+Lisa Lisa & Cult Jam
+10
+
+Music: 1980s: Artist/Band: I Would Die 4 U?
+Prince & the Revolution
+10
+
+Music: 1980s: Artist/Band: I Wouldn't Have Missed It For The World?
+Ronnie milsap
+10
+
+Music: 1980s: Artist/Band: I.G.Y?
+Donald fagen
+10
+
+Music: 1980s: Artist/Band: I'd Rather Leave While I'm In Love?
+Rita coolidge
+10
+
+Music: 1980s: Artist/Band: I'd Still Say Yes?
+Klymaxx
+10
+
+Music: 1980s: Artist/Band: I'll Always Love You?
+Taylor dayne
+10
+
+Music: 1980s: Artist/Band: I'll Be Alright Without You?
+Journey
+10
+
+Music: 1980s: Artist/Band: I'll Be Good To You?
+Ray Charles/Quincy Jones/Chaka Khan
+10
+
+Music: 1980s: Artist/Band: I'll Be Loving You (Forever)?
+New Kids On The Block
+10
+
+Music: 1980s: Artist/Band: I'll Be Over You?
+Toto
+10
+
+Music: 1980s: Artist/Band: I'll Be There For You?
+Bon jovi
+10
+
+Music: 1980s: Artist/Band: I'll Still Be Loving You?
+Restless Heart
+10
+
+Music: 1980s: Artist/Band: I'll Tumble 4 Ya?
+Culture club
+10
+
+Music: 1980s: Artist/Band: I'll Wait?
+Van halen
+10
+
+Music: 1980s: Artist/Band: I'm Almost Ready?
+Pure prairie League
+10
+
+Music: 1980s: Artist/Band: I'm Alright?
+Kenny loggins
+10
+
+Music: 1980s: Artist/Band: I'm Coming Out?
+Diana ross
+10
+
+Music: 1980s: Artist/Band: I'm Free?
+Kenny loggins
+10
+
+Music: 1980s: Artist/Band: I'm Goin' Down?
+Bruce springsteen
+10
+
+Music: 1980s: Artist/Band: I'm Happy That Love Has Found You?
+Jimmy hall
+10
+
+Music: 1980s: Artist/Band: I'm Not The One?
+Cars
+10
+
+Music: 1980s: Artist/Band: I'm On Fire?
+Bruce springsteen
+10
+
+Music: 1980s: Artist/Band: I'm So Excited?
+Pointer sisters
+10
+
+Music: 1980s: Artist/Band: I'm Still Searching?
+Glass tiger
+10
+
+Music: 1980s: Artist/Band: I'm Still Standing?
+Elton john
+10
+
+Music: 1980s: Artist/Band: I'm That Type Of Guy?
+L.l. cool j
+10
+
+Music: 1980s: Artist/Band: I'm Your Man?
+Wham!
+10
+
+Music: 1980s: Artist/Band: I've Been In Love Before?
+Cutting Crew
+10
+
+Music: 1980s: Artist/Band: I've Done Everything For You?
+Rick Springfield
+10
+
+Music: 1980s: Artist/Band: I've Got A Rock N' Roll Heart?
+Eric Clapton
+10
+
+Music: 1980s: Artist/Band: I've Never Been To Me?
+Charlene
+10
+
+Music: 1980s: Artist/Band: If Anyone Falls?
+Stevie nicks
+10
+
+Music: 1980s: Artist/Band: If Ever You're In My Arms Again?
+Peabo bryson
+10
+
+Music: 1980s: Artist/Band: If I Could Turn Back Time?
+Cher
+10
+
+Music: 1980s: Artist/Band: If I Had My Wish Tonight?
+David Lasley
+10
+
+Music: 1980s: Artist/Band: If I'd Been The One?
+38 special
+10
+
+Music: 1980s: Artist/Band: If It Isn't Love?
+New edition
+10
+
+Music: 1980s: Artist/Band: If She Knew What She Wants?
+Bangles
+10
+
+Music: 1980s: Artist/Band: If She Would Have Been Faithful?
+Chicago
+10
+
+Music: 1980s: Artist/Band: If The Love Fits Wear It?
+Leslie Pearl
+10
+
+Music: 1980s: Artist/Band: If This Is It?
+Huey lewis & the news
+10
+
+Music: 1980s: Artist/Band: If You Don't Know Me By Now?
+Simply Red
+10
+
+Music: 1980s: Artist/Band: If You Leave?
+Orchestral manoeuvres In The Dark
+10
+
+Music: 1980s: Artist/Band: If You Should Sail?
+Nielson/pearson
+10
+
+Music: 1980s: Artist/Band: Iko Iko?
+Belle stars
+10
+
+Music: 1980s: Artist/Band: In 1981, which group sang Dont stop believin?
+Journey
+10
+
+Music: 1980s: Artist/Band: In 1985, whose album Born in the USA was a massive bestseller?
+Bruce Springsteen
+10
+
+Music: 1980s: Artist/Band: In 1987, which group/artist sang Incommunicado?
+Marillion
+10
+
+Music: 1980s: Artist/Band: In A Big Country?
+Big country
+10
+
+Music: 1980s: Artist/Band: In America?
+Charlie daniels band
+10
+
+Music: 1980s: Artist/Band: In My Dreams?
+Reo speedwagon
+10
+
+Music: 1980s: Artist/Band: In My Eyes?
+Stevie b
+10
+
+Music: 1980s: Artist/Band: In My House?
+Mary jane girls
+10
+
+Music: 1980s: Artist/Band: In Neon?
+Elton john
+10
+
+Music: 1980s: Artist/Band: In The Air Tonight?
+Phil collins
+10
+
+Music: 1980s: Artist/Band: In The Dark?
+Billy squier
+10
+
+Music: 1980s: Artist/Band: In The Mood?
+Robert plant
+10
+
+Music: 1980s: Artist/Band: In The Name Of Love?
+Naked eyes
+10
+
+Music: 1980s: Artist/Band: In Too Deep?
+Genesis
+10
+
+Music: 1980s: Artist/Band: In Your Eyes?
+Peter gabriel
+10
+
+Music: 1980s: Artist/Band: In Your Letter?
+Reo speedwagon
+10
+
+Music: 1980s: Artist/Band: In Your Room?
+Bangles
+10
+
+Music: 1980s: Artist/Band: In Your Soul?
+Corey hart
+10
+
+Music: 1980s: Artist/Band: Indestuctible?
+Four tops
+10
+
+Music: 1980s: Artist/Band: Infatuation?
+Rod stewart
+10
+
+Music: 1980s: Artist/Band: Into The Night?
+Benny mardones
+10
+
+Music: 1980s: Artist/Band: Into Venus...?
+Stars on 45
+10
+
+Music: 1980s: Artist/Band: Invincible?
+Pat benatar
+10
+
+Music: 1980s: Artist/Band: Invisible Hands?
+Kim carnes
+10
+
+Music: 1980s: Artist/Band: Invisible Touch?
+Genesis
+10
+
+Music: 1980s: Artist/Band: Invisible?
+Alison moyet
+10
+
+Music: 1980s: Artist/Band: Is It Love?
+Mr. mister
+10
+
+Music: 1980s: Artist/Band: Is It You?
+Lee ritenour
+10
+
+Music: 1980s: Artist/Band: Is There Something I Should Know?
+Duran duran
+10
+
+Music: 1980s: Artist/Band: Is This Love?
+Survivor
+10
+
+Music: 1980s: Artist/Band: Is This Love?
+Whitesnake
+10
+
+Music: 1980s: Artist/Band: Island Of Lost Souls?
+Blondie
+10
+
+Music: 1980s: Artist/Band: Islands In The Stream?
+Dolly parton & Kenny Rogers
+10
+
+Music: 1980s: Artist/Band: It Ain't Enough?
+Corey hart
+10
+
+Music: 1980s: Artist/Band: It Might Be You?
+Stephen bishop
+10
+
+Music: 1980s: Artist/Band: It Must Be Love?
+Madness
+10
+
+Music: 1980s: Artist/Band: It Takes Two?
+Rob base & d.j. e z Rock
+10
+
+Music: 1980s: Artist/Band: It Would Take A Strong Strong Man?
+Rick astley
+10
+
+Music: 1980s: Artist/Band: It's A Love Thing?
+Whispers
+10
+
+Music: 1980s: Artist/Band: It's A Mistake?
+Men at work
+10
+
+Music: 1980s: Artist/Band: It's A Sin?
+Pet shop boys
+10
+
+Music: 1980s: Artist/Band: It's Gonna Take A Miracle?
+Deniece Williams
+10
+
+Music: 1980s: Artist/Band: It's Inevitable?
+Charlie
+10
+
+Music: 1980s: Artist/Band: It's My Life?
+Talk talk
+10
+
+Music: 1980s: Artist/Band: It's My Turn?
+Diana ross
+10
+
+Music: 1980s: Artist/Band: It's No Crime?
+Babyface
+10
+
+Music: 1980s: Artist/Band: It's No Secret?
+Kylie minogue
+10
+
+Music: 1980s: Artist/Band: It's Not Enough?
+Jefferson starship
+10
+
+Music: 1980s: Artist/Band: It's Not Over?
+Jefferson starship
+10
+
+Music: 1980s: Artist/Band: It's Now Or Never?
+John schneider
+10
+
+Music: 1980s: Artist/Band: It's Raining Again?
+Supertramp
+10
+
+Music: 1980s: Artist/Band: It's Still Rock And Roll To Me?
+Billy joel
+10
+
+Music: 1980s: Artist/Band: Its A Miracle?
+Culture club
+10
+
+Music: 1980s: Artist/Band: Jack & Diane?
+John cougar
+10
+
+Music: 1980s: Artist/Band: Jacob's Ladder?
+Huey lewis & the News
+10
+
+Music: 1980s: Artist/Band: Jam Tonight?
+Freddie jackson
+10
+
+Music: 1980s: Artist/Band: Jamie?
+Ray parker jr
+10
+
+Music: 1980s: Artist/Band: Jammin' Me?
+Tom petty & the Heartbreakers
+10
+
+Music: 1980s: Artist/Band: Janie's Got A Gun?
+Aerosmith
+10
+
+Music: 1980s: Artist/Band: Jeopardy?
+Greg kihn band
+10
+
+Music: 1980s: Artist/Band: Jesse?
+Carly simon
+10
+
+Music: 1980s: Artist/Band: Jessie's Girl?
+Rick springfield
+10
+
+Music: 1980s: Artist/Band: Jimmy Lee?
+Aretha franklin
+10
+
+Music: 1980s: Artist/Band: Joanna?
+Kool & the gang
+10
+
+Music: 1980s: Artist/Band: Jojo?
+Boz scaggs
+10
+
+Music: 1980s: Artist/Band: Jones Vs. Jones?
+Kool & the gang
+10
+
+Music: 1980s: Artist/Band: Juke Box Hero?
+Foreigner
+10
+
+Music: 1980s: Artist/Band: Jump Start?
+Natalie cole
+10
+
+Music: 1980s: Artist/Band: Jump To It?
+Aretha franklin
+10
+
+Music: 1980s: Artist/Band: Jumpin' Jack Flash?
+Aretha franklin
+10
+
+Music: 1980s: Artist/Band: Jungle Love?
+Time
+10
+
+Music: 1980s: Artist/Band: Just A Gigolo/I Ain't Got Nobody?
+David lee roth
+10
+
+Music: 1980s: Artist/Band: Just A Little Paradise?
+David lee Roth
+10
+
+Music: 1980s: Artist/Band: Just Another Night?
+Mick jagger
+10
+
+Music: 1980s: Artist/Band: Just As I Am?
+Air supply
+10
+
+Music: 1980s: Artist/Band: Just Because?
+Anita baker
+10
+
+Music: 1980s: Artist/Band: Just Can't Win 'Em All?
+Stevie woods
+10
+
+Music: 1980s: Artist/Band: Just Got Lucky?
+Joboxers
+10
+
+Music: 1980s: Artist/Band: Just Got Paid?
+Johnny kemp
+10
+
+Music: 1980s: Artist/Band: Just Like Heaven?
+The cure
+10
+
+Music: 1980s: Artist/Band: Just Like Jesse James?
+Cher
+10
+
+Music: 1980s: Artist/Band: Just Like Starting Over?
+John lennon
+10
+
+Music: 1980s: Artist/Band: Just Once?
+James ingram
+10
+
+Music: 1980s: Artist/Band: Just So Lonely?
+Get wet
+10
+
+Music: 1980s: Artist/Band: Just The Two Of Us?
+Bill withers
+10
+
+Music: 1980s: Artist/Band: Just To See Her?
+Smokey robinson
+10
+
+Music: 1980s: Artist/Band: Karma Chameleon?
+Culture club
+10
+
+Music: 1980s: Artist/Band: Keep On Loving You?
+Reo speedwagon
+10
+
+Music: 1980s: Artist/Band: Keep On Movin'?
+Soul ii soul
+10
+
+Music: 1980s: Artist/Band: Keep The Fire Burnin'?
+Reo Speedwagon
+10
+
+Music: 1980s: Artist/Band: Keep The Fire?
+Kenny loggins
+10
+
+Music: 1980s: Artist/Band: Keep Your Hands To Yourself?
+Georgia Satellites
+10
+
+Music: 1980s: Artist/Band: Keeping The Faith?
+Billy joel
+10
+
+Music: 1980s: Artist/Band: Key Largo?
+Bertie higgins
+10
+
+Music: 1980s: Artist/Band: Kids In America?
+Kim wilde
+10
+
+Music: 1980s: Artist/Band: Killin' Time?
+Fred knoblock & susan Anton
+10
+
+Music: 1980s: Artist/Band: King For A Day?
+Thompson twins
+10
+
+Music: 1980s: Artist/Band: King Of Pain?
+Police
+10
+
+Music: 1980s: Artist/Band: King Of The Hill?
+Rick pinette & oak
+10
+
+Music: 1980s: Artist/Band: Kiss And Tell?
+Bryan ferry
+10
+
+Music: 1980s: Artist/Band: Kiss Him Goodbye?
+Nylons
+10
+
+Music: 1980s: Artist/Band: Kiss Me Deadly?
+Lita ford
+10
+
+Music: 1980s: Artist/Band: Kiss Me In The Rain?
+Barbra Streisand
+10
+
+Music: 1980s: Artist/Band: Kiss On My List?
+Daryl hall & john Oates
+10
+
+Music: 1980s: Artist/Band: Kiss The Bride?
+Elton john
+10
+
+Music: 1980s: Artist/Band: Kisses On The Wind?
+Neneh cherry
+10
+
+Music: 1980s: Artist/Band: Kissing A Fool?
+George michael
+10
+
+Music: 1980s: Artist/Band: Kokomo?
+Beach boys
+10
+
+Music: 1980s: Artist/Band: Kyrie?
+Mr. mister
+10
+
+Music: 1980s: Artist/Band: La Bamba?
+Los lobos
+10
+
+Music: 1980s: Artist/Band: La Isla Bonita?
+Madonna
+10
+
+Music: 1980s: Artist/Band: Lady (You Bring Me Up)?
+Commodores
+10
+
+Music: 1980s: Artist/Band: Lady Love Me (One More Time)?
+George Benson
+10
+
+Music: 1980s: Artist/Band: Land Of Confusion?
+Genesis
+10
+
+Music: 1980s: Artist/Band: Last Train To London?
+Electric light Orchestra
+10
+
+Music: 1980s: Artist/Band: Late In The Evening?
+Paul simon
+10
+
+Music: 1980s: Artist/Band: Lawyers In Love?
+Jackson brown
+10
+
+Music: 1980s: Artist/Band: Lay It Down?
+Ratt
+10
+
+Music: 1980s: Artist/Band: Leader Of The Band?
+Dan fogelberg
+10
+
+Music: 1980s: Artist/Band: Lean On Me?
+Club nouveau
+10
+
+Music: 1980s: Artist/Band: Leather And Lace?
+Stevie nicks
+10
+
+Music: 1980s: Artist/Band: Leave A Light On?
+Belinda carlisle
+10
+
+Music: 1980s: Artist/Band: Leave A Tender Moment Alone?
+Billy Joel
+10
+
+Music: 1980s: Artist/Band: Leave It?
+Yes
+10
+
+Music: 1980s: Artist/Band: Legs?
+Zz top
+10
+
+Music: 1980s: Artist/Band: Lessons In Love?
+Level 42
+10
+
+Music: 1980s: Artist/Band: Let Go?
+Sharon bryant
+10
+
+Music: 1980s: Artist/Band: Let Him Go?
+Animotion
+10
+
+Music: 1980s: Artist/Band: Let It Be Me?
+Willie nelson
+10
+
+Music: 1980s: Artist/Band: Let It Whip?
+Dazz band
+10
+
+Music: 1980s: Artist/Band: Let Me Be The Clock?
+Smokey robinson
+10
+
+Music: 1980s: Artist/Band: Let Me Be The One?
+Expose'
+10
+
+Music: 1980s: Artist/Band: Let Me Be Your Angel?
+Stacy lattisaw
+10
+
+Music: 1980s: Artist/Band: Let Me Go Lover?
+Nicolette larson
+10
+
+Music: 1980s: Artist/Band: Let Me Go?
+Ray parker jr
+10
+
+Music: 1980s: Artist/Band: Let Me Love You Tonight?
+Pure Prairie League
+10
+
+Music: 1980s: Artist/Band: Let Me Tickle Your Fancy?
+Jermaine Jackson
+10
+
+Music: 1980s: Artist/Band: Let My Love Open The Door?
+Peter Townshend
+10
+
+Music: 1980s: Artist/Band: Let The Music Play?
+Shannon
+10
+
+Music: 1980s: Artist/Band: Let's Dance?
+David bowie
+10
+
+Music: 1980s: Artist/Band: Let's Get Serious?
+Jermaine jackson
+10
+
+Music: 1980s: Artist/Band: Let's Go All The Way?
+Sly fox
+10
+
+Music: 1980s: Artist/Band: Let's Go Crazy?
+Prince & the Revolution
+10
+
+Music: 1980s: Artist/Band: Let's Go Dancin?
+Kool & the gang
+10
+
+Music: 1980s: Artist/Band: Let's Go!?
+Wang chung
+10
+
+Music: 1980s: Artist/Band: Let's Groove?
+Earth wind & fire
+10
+
+Music: 1980s: Artist/Band: Let's Hang On?
+Barry manilow
+10
+
+Music: 1980s: Artist/Band: Let's Hear It For The Boy?
+Deniece Williams
+10
+
+Music: 1980s: Artist/Band: Let's Stay Together?
+Tina turner
+10
+
+Music: 1980s: Artist/Band: Let's Wait Awhile?
+Janet jackson
+10
+
+Music: 1980s: Artist/Band: Let's Work?
+Mick jagger
+10
+
+Music: 1980s: Artist/Band: Licence To Chill?
+Billy ocean
+10
+
+Music: 1980s: Artist/Band: Life In A Northern Town?
+Dream Academy
+10
+
+Music: 1980s: Artist/Band: Life In One Day?
+Howard johnson
+10
+
+Music: 1980s: Artist/Band: Light Of Day?
+Joan jett & the Blackhearts
+10
+
+Music: 1980s: Artist/Band: Lights Out?
+Peter wolf
+10
+
+Music: 1980s: Artist/Band: Like A Prayer?
+Madonna
+10
+
+Music: 1980s: Artist/Band: Like A Rock?
+Bob seger & the silver Bullet Band
+10
+
+Music: 1980s: Artist/Band: Like A Virgin?
+Madonna
+10
+
+Music: 1980s: Artist/Band: Like No Other Night?
+38 special
+10
+
+Music: 1980s: Artist/Band: Listen To Your Heart?
+Roxette
+10
+
+Music: 1980s: Artist/Band: Little By Little?
+Robert plant
+10
+
+Music: 1980s: Artist/Band: Little Jackie Wants To Be A Star?
+Lisa lisa and the cult jam
+10
+
+Music: 1980s: Artist/Band: Little Jeannie?
+Elton john
+10
+
+Music: 1980s: Artist/Band: Little Liar?
+Joan jett & the Blackhearts
+10
+
+Music: 1980s: Artist/Band: Little Lies?
+Fleetwood mac
+10
+
+Music: 1980s: Artist/Band: Little Red Corvette?
+Prince
+10
+
+Music: 1980s: Artist/Band: Little Too Late?
+Pat benatar
+10
+
+Music: 1980s: Artist/Band: Live And Die?
+Orchestral manoeuvres
+10
+
+Music: 1980s: Artist/Band: Live Every Moment?
+Reo speedwagon
+10
+
+Music: 1980s: Artist/Band: Live Is Life?
+Opus
+10
+
+Music: 1980s: Artist/Band: Live My Life?
+Boy george
+10
+
+Music: 1980s: Artist/Band: Live To Tell?
+Madonna
+10
+
+Music: 1980s: Artist/Band: Livin' In Desperate Times?
+Olivia Newton John
+10
+
+Music: 1980s: Artist/Band: Livin' On A Prayer?
+Bon jovi
+10
+
+Music: 1980s: Artist/Band: Living In A Box?
+Living in a box
+10
+
+Music: 1980s: Artist/Band: Living In A Fantasy?
+Leo sayer
+10
+
+Music: 1980s: Artist/Band: Living In America?
+James brown
+10
+
+Music: 1980s: Artist/Band: Living In Sin?
+Bon jovi
+10
+
+Music: 1980s: Artist/Band: Living Inside Myself?
+Gino vannelli
+10
+
+Music: 1980s: Artist/Band: Lonely Ol' Night?
+John cougar Mellencamp
+10
+
+Music: 1980s: Artist/Band: Longer?
+Dan fogelberg
+10
+
+Music: 1980s: Artist/Band: Look Away?
+Chicago
+10
+
+Music: 1980s: Artist/Band: Look Out Any Window?
+Bruce hornsby & The Range
+10
+
+Music: 1980s: Artist/Band: Look What You've Done To Me?
+Boz Scaggs
+10
+
+Music: 1980s: Artist/Band: Lookin' For Love?
+Johnny lee
+10
+
+Music: 1980s: Artist/Band: Looking For A New Love?
+Jody watley
+10
+
+Music: 1980s: Artist/Band: Looking For A Stranger?
+Pat benatar
+10
+
+Music: 1980s: Artist/Band: Lost Her In The Sun?
+John stewart
+10
+
+Music: 1980s: Artist/Band: Lost In Emotion?
+Lisa lisa & cult Jam
+10
+
+Music: 1980s: Artist/Band: Lost In You?
+Rod stewart
+10
+
+Music: 1980s: Artist/Band: Lost In Your Eyes?
+Debbie gibson
+10
+
+Music: 1980s: Artist/Band: Love Bites?
+Def leppard
+10
+
+Music: 1980s: Artist/Band: Love Changes?
+Climie fisher
+10
+
+Music: 1980s: Artist/Band: Love In The Elevator?
+Aerosmith
+10
+
+Music: 1980s: Artist/Band: Love In The First Degree?
+Alabama
+10
+
+Music: 1980s: Artist/Band: Love Is A Battlefield?
+Pat benatar
+10
+
+Music: 1980s: Artist/Band: Love Is Alright Tonight?
+Rick Springfield
+10
+
+Music: 1980s: Artist/Band: Love Is Forever?
+Billy ocean
+10
+
+Music: 1980s: Artist/Band: Love Is In Control?
+Donna summer
+10
+
+Music: 1980s: Artist/Band: Love Is Like A Rock?
+Donnie iris
+10
+
+Music: 1980s: Artist/Band: Love Is Strange?
+Eurythmics
+10
+
+Music: 1980s: Artist/Band: Love Is The Seventh Wave?
+Sting
+10
+
+Music: 1980s: Artist/Band: Love Light In Flight?
+Stevie wonder
+10
+
+Music: 1980s: Artist/Band: Love Me Tommorrow?
+Chicago
+10
+
+Music: 1980s: Artist/Band: Love On A Two Way Street?
+Stacy Lattisaw
+10
+
+Music: 1980s: Artist/Band: Love On The Rocks?
+Neil diamond
+10
+
+Music: 1980s: Artist/Band: Love Or Let Me Be Lonley?
+Paul davis
+10
+
+Music: 1980s: Artist/Band: Love Overboard?
+Gladys knight & the Pips
+10
+
+Music: 1980s: Artist/Band: Love Shack?
+B 52's
+10
+
+Music: 1980s: Artist/Band: Love Somebody?
+Rick springfield
+10
+
+Music: 1980s: Artist/Band: Love Stinks?
+J. geils band
+10
+
+Music: 1980s: Artist/Band: Love The World Away?
+Kenny rogers & Kim Carnes
+10
+
+Music: 1980s: Artist/Band: Love Touch?
+Rod stewart
+10
+
+Music: 1980s: Artist/Band: Love Walks In?
+Van halen
+10
+
+Music: 1980s: Artist/Band: Love Will Conquer All?
+Lionel richie
+10
+
+Music: 1980s: Artist/Band: Love Will Find A Way?
+Yes
+10
+
+Music: 1980s: Artist/Band: Love Will Save The Day?
+Whitney Houston
+10
+
+Music: 1980s: Artist/Band: Love Will Show Us How?
+Christine Mcvie
+10
+
+Music: 1980s: Artist/Band: Love Will Turn You Around?
+Kenny Rogers
+10
+
+Music: 1980s: Artist/Band: Love You Down?
+Ready for the world
+10
+
+Music: 1980s: Artist/Band: Love Zone?
+Billy ocean
+10
+
+Music: 1980s: Artist/Band: Love's Been A Little Hard On Me?
+Juice newton
+10
+
+Music: 1980s: Artist/Band: Lovely?
+Jacksons
+10
+
+Music: 1980s: Artist/Band: Loverboy?
+Billy ocean
+10
+
+Music: 1980s: Artist/Band: Lovergirl?
+Teena marie
+10
+
+Music: 1980s: Artist/Band: Lovin' Every Minute Of It?
+Loverboy
+10
+
+Music: 1980s: Artist/Band: Lucky In Love?
+Mick jagger
+10
+
+Music: 1980s: Artist/Band: Lucky Star?
+Madonna
+10
+
+Music: 1980s: Artist/Band: Lucky?
+Greg kihn band
+10
+
+Music: 1980s: Artist/Band: Luka?
+Suzanne vega
+10
+
+Music: 1980s: Artist/Band: Mad About You?
+Belinda carlisle
+10
+
+Music: 1980s: Artist/Band: Magnum P.I. (Theme)?
+Mike post
+10
+
+Music: 1980s: Artist/Band: Major Tom?
+Peter schilling
+10
+
+Music: 1980s: Artist/Band: Make A Little Magic?
+Dirt band
+10
+
+Music: 1980s: Artist/Band: Make A Move On Me?
+Olivia newton john
+10
+
+Music: 1980s: Artist/Band: Make Believe?
+Toto
+10
+
+Music: 1980s: Artist/Band: Make It Real?
+Jets
+10
+
+Music: 1980s: Artist/Band: Make Love Stay?
+Dan fogelberg
+10
+
+Music: 1980s: Artist/Band: Make Me Lose Control?
+Eric carmen
+10
+
+Music: 1980s: Artist/Band: Making Love In The Rain?
+Herb alpert
+10
+
+Music: 1980s: Artist/Band: Making Love Out Of Nothing At All?
+Air supply
+10
+
+Music: 1980s: Artist/Band: Making Love?
+Roberta flack
+10
+
+Music: 1980s: Artist/Band: Mama Used To Say?
+Junior
+10
+
+Music: 1980s: Artist/Band: Man In The Mirror?
+Michael jackson
+10
+
+Music: 1980s: Artist/Band: Man On The Corner?
+Genesis
+10
+
+Music: 1980s: Artist/Band: Man On Your Mind?
+Little river band
+10
+
+Music: 1980s: Artist/Band: Man Size Love?
+Klymaxx
+10
+
+Music: 1980s: Artist/Band: Mandolin Rain?
+Bruce hornsby & the range
+10
+
+Music: 1980s: Artist/Band: Maneater?
+Daryl hall & john oates
+10
+
+Music: 1980s: Artist/Band: Maniac - Michael ____
+Sembello
+10
+
+Music: 1980s: Artist/Band: Maniac?
+Michael sembello
+10
+
+Music: 1980s: Artist/Band: Manic Monday?
+Bangles
+10
+
+Music: 1980s: Artist/Band: Manic Monday?
+Bangles
+10
+
+Music: 1980s: Artist/Band: Mary's Prayer?
+Danny wilson
+10
+
+Music: 1980s: Artist/Band: Master Blaster (Jammin') - Stevie ____
+Wonder
+10
+
+Music: 1980s: Artist/Band: Master Blaster?
+Stevie wonder
+10
+
+Music: 1980s: Artist/Band: Material Girl?
+Madonna
+10
+
+Music: 1980s: Artist/Band: Me (Without You)?
+Andy gibb
+10
+
+Music: 1980s: Artist/Band: Me Myself And I?
+De la soul
+10
+
+Music: 1980s: Artist/Band: Me So Horny?
+2 live crew
+10
+
+Music: 1980s: Artist/Band: Meet Me Half Way?
+Kenny loggins
+10
+
+Music: 1980s: Artist/Band: Memory?
+Barry manilow
+10
+
+Music: 1980s: Artist/Band: Mercedes Boy?
+Pebbles
+10
+
+Music: 1980s: Artist/Band: Method Of Modern Love?
+Daryl hall & john oates
+10
+
+Music: 1980s: Artist/Band: Miami Vice Theme?
+Jan hammer
+10
+
+Music: 1980s: Artist/Band: Mickey?
+Toni basil
+10
+
+Music: 1980s: Artist/Band: Middle Of The Road?
+Pretenders
+10
+
+Music: 1980s: Artist/Band: Midnight Blue?
+Lou gramm
+10
+
+Music: 1980s: Artist/Band: Midnight Rocks?
+Al stewart
+10
+
+Music: 1980s: Artist/Band: Millionaire?
+Abc
+10
+
+Music: 1980s: Artist/Band: Miracles?
+Stacy lattisaw
+10
+
+Music: 1980s: Artist/Band: Mirror Man?
+Human league
+10
+
+Music: 1980s: Artist/Band: Mirror, Mirror?
+Diana ross
+10
+
+Music: 1980s: Artist/Band: Misled?
+Kool & the gang
+10
+
+Music: 1980s: Artist/Band: Miss Me Blind?
+Culture club
+10
+
+Music: 1980s: Artist/Band: Miss Sun?
+Boz scaggs
+10
+
+Music: 1980s: Artist/Band: Miss You Like Crazy?
+Natalie cole
+10
+
+Music: 1980s: Artist/Band: Miss You Much?
+Janet jackson
+10
+
+Music: 1980s: Artist/Band: Missed Opportunity?
+Daryl hall & john oates
+10
+
+Music: 1980s: Artist/Band: Missionary Man?
+Eurythmics & aretha franklin
+10
+
+Music: 1980s: Artist/Band: Mistake #3?
+Culture club
+10
+
+Music: 1980s: Artist/Band: Mister Sandman?
+Emmylou harris
+10
+
+Music: 1980s: Artist/Band: Misunderstanding?
+Genesis
+10
+
+Music: 1980s: Artist/Band: Mixed Emotions?
+Rolling stones
+10
+
+Music: 1980s: Artist/Band: Modern Day Delilah?
+Van stephenson
+10
+
+Music: 1980s: Artist/Band: Modern Girl?
+Sheena easton
+10
+
+Music: 1980s: Artist/Band: Modern Love?
+David bowie
+10
+
+Music: 1980s: Artist/Band: Modern Woman?
+Billy joel
+10
+
+Music: 1980s: Artist/Band: Money Changes Everything?
+Cyndi lauper
+10
+
+Music: 1980s: Artist/Band: Money For Nothing?
+Dire straits
+10
+
+Music: 1980s: Artist/Band: Money$ Too Tight (To Mention)?
+Simply red
+10
+
+Music: 1980s: Artist/Band: Monkey?
+George michael
+10
+
+Music: 1980s: Artist/Band: Moonlighting?
+Al jarreau
+10
+
+Music: 1980s: Artist/Band: More Love?
+Kim carnes
+10
+
+Music: 1980s: Artist/Band: More Than I Can Say?
+Leo sayer
+10
+
+Music: 1980s: Artist/Band: More Than Just The Two Of Us?
+Sneaker
+10
+
+Music: 1980s: Artist/Band: Mornin'?
+Al jarreau
+10
+
+Music: 1980s: Artist/Band: Morning Train (Nine To Five)?
+Sheena easton
+10
+
+Music: 1980s: Artist/Band: Mothers Talk?
+Tears for fears
+10
+
+Music: 1980s: Artist/Band: Motortown?
+The kane gang
+10
+
+Music: 1980s: Artist/Band: Mountains?
+Prince & the revolution
+10
+
+Music: 1980s: Artist/Band: Move Away?
+Culture club
+10
+
+Music: 1980s: Artist/Band: Mr. Roboto?
+Styx
+10
+
+Music: 1980s: Artist/Band: Mr. Telephone Man?
+New edition
+10
+
+Music: 1980s: Artist/Band: Murphy's Law?
+Cheri
+10
+
+Music: 1980s: Artist/Band: Muscles?
+Diana ross
+10
+
+Music: 1980s: Artist/Band: Music Time?
+Styx
+10
+
+Music: 1980s: Artist/Band: My Brave Face?
+Paul mccartney
+10
+
+Music: 1980s: Artist/Band: My Ever Changing Moods?
+Style council
+10
+
+Music: 1980s: Artist/Band: My Guy?
+Sister sledge
+10
+
+Music: 1980s: Artist/Band: My Heart Can't Tell You No?
+Rod stewart
+10
+
+Music: 1980s: Artist/Band: My Heart Skips A Beat?
+Cover girls
+10
+
+Music: 1980s: Artist/Band: My Hometown?
+Bruce springsteen
+10
+
+Music: 1980s: Artist/Band: My Kind Of Lady?
+Supertramp
+10
+
+Music: 1980s: Artist/Band: My Love?
+Lionel richie
+10
+
+Music: 1980s: Artist/Band: My Mother's Eyes?
+Bette midler
+10
+
+Music: 1980s: Artist/Band: My Oh My?
+Slade
+10
+
+Music: 1980s: Artist/Band: My Perogative?
+Bobby brown
+10
+
+Music: 1980s: Artist/Band: My Town?
+Michael stanley band
+10
+
+Music: 1980s: Artist/Band: Mystery Lady?
+Billy ocean
+10
+
+Music: 1980s: Artist/Band: Name the Academy Award-winning artist who scored a No. 1 hit with 'Chariots of Fire - Titles.'?
+Vangelis
+10
+
+Music: 1980s: Artist/Band: Name the late eighties band that named the sides of their first album Hardware and Software and also used samples from Star Trek movies in their songs?
+Information Society
+10
+
+Music: 1980s: Artist/Band: Nasty?
+Janet jackson
+10
+
+Music: 1980s: Artist/Band: Naughty Girls (Need Love Too)?
+Samantha fox
+10
+
+Music: 1980s: Artist/Band: Naughty Naughty?
+John parr
+10
+
+Music: 1980s: Artist/Band: Need You Tonight?
+Inxs
+10
+
+Music: 1980s: Artist/Band: Needles And Pins?
+Tom petty & the heartbreakers/stevie nicks
+10
+
+Music: 1980s: Artist/Band: Neutron Dance?
+Pointer sisters
+10
+
+Music: 1980s: Artist/Band: Never As Good As The First Time?
+Sade
+10
+
+Music: 1980s: Artist/Band: Never Be The Same?
+Christopher cross
+10
+
+Music: 1980s: Artist/Band: Never Been In Love?
+Randy meisner
+10
+
+Music: 1980s: Artist/Band: Never Ending Story?
+Limahl
+10
+
+Music: 1980s: Artist/Band: Never Gonna Give You Up?
+Rick astley
+10
+
+Music: 1980s: Artist/Band: Never Gonna Let You Go?
+Sergio mendes
+10
+
+Music: 1980s: Artist/Band: Never Knew Love Like This Before?
+Stephanie mills
+10
+
+Music: 1980s: Artist/Band: Never Knew Love Like This?
+Alexander o'neal
+10
+
+Music: 1980s: Artist/Band: Never Let Me Down?
+David bowie
+10
+
+Music: 1980s: Artist/Band: Never Surrender?
+Corey hart
+10
+
+Music: 1980s: Artist/Band: Never Tear Us Apart?
+Inxs
+10
+
+Music: 1980s: Artist/Band: Never Too Much?
+Luther vandross
+10
+
+Music: 1980s: Artist/Band: Never?
+Heart
+10
+
+Music: 1980s: Artist/Band: New Attitude?
+Patti labelle
+10
+
+Music: 1980s: Artist/Band: New Moon On Monday?
+Duran duran
+10
+
+Music: 1980s: Artist/Band: New Romance?
+Spider
+10
+
+Music: 1980s: Artist/Band: New Sensation?
+Inxs
+10
+
+Music: 1980s: Artist/Band: New Song?
+Howard jones
+10
+
+Music: 1980s: Artist/Band: New World Man?
+Rush
+10
+
+Music: 1980s: Artist/Band: New York, New York?
+Frank sinatra
+10
+
+Music: 1980s: Artist/Band: Nice Girls?
+Eye to eye
+10
+
+Music: 1980s: Artist/Band: Nicole?
+Point blank
+10
+
+Music: 1980s: Artist/Band: Night Moves?
+Marilyn martin
+10
+
+Music: 1980s: Artist/Band: Night Shift?
+Commodores
+10
+
+Music: 1980s: Artist/Band: Nightbird?
+Stevie nicks
+10
+
+Music: 1980s: Artist/Band: Nightime?
+Pretty poison
+10
+
+Music: 1980s: Artist/Band: Nikita?
+Elton john
+10
+
+Music: 1980s: Artist/Band: Nite And Day?
+Al b. sure!
+10
+
+Music: 1980s: Artist/Band: No Easy Way Out?
+Robert tepper
+10
+
+Music: 1980s: Artist/Band: No Gettin' Over Me?
+Ronnie milsap
+10
+
+Music: 1980s: Artist/Band: No Lookin' Back?
+Michael mcdonald
+10
+
+Music: 1980s: Artist/Band: No More Lonely Nights?
+Paul mccartney
+10
+
+Music: 1980s: Artist/Band: No More Rhyme?
+Debbie gibson
+10
+
+Music: 1980s: Artist/Band: No More Words?
+Berlin
+10
+
+Music: 1980s: Artist/Band: No Night So Long Long?
+Dionne warwick
+10
+
+Music: 1980s: Artist/Band: No One Is To Blame?
+Howard jones
+10
+
+Music: 1980s: Artist/Band: No Reply At All?
+Genesis
+10
+
+Music: 1980s: Artist/Band: No Time For Talk?
+Christopher cross
+10
+
+Music: 1980s: Artist/Band: No Way Out?
+Jefferson starship
+10
+
+Music: 1980s: Artist/Band: Nobody Said It Was Easy?
+Le roux
+10
+
+Music: 1980s: Artist/Band: Nobody Told Me?
+John lennon
+10
+
+Music: 1980s: Artist/Band: Nobody Wins?
+Elton john
+10
+
+Music: 1980s: Artist/Band: Nobody?
+Sylvia
+10
+
+Music: 1980s: Artist/Band: Not Enough Love In The World?
+Don henley
+10
+
+Music: 1980s: Artist/Band: Not Just Another Girl?
+Ivan neville
+10
+
+Music: 1980s: Artist/Band: Nothin' At All?
+Heart
+10
+
+Music: 1980s: Artist/Band: Nothin' But A Good Time?
+Poison
+10
+
+Music: 1980s: Artist/Band: Nothing's Gonna Stop Us Now?
+Jefferson starship
+10
+
+Music: 1980s: Artist/Band: Object Of My Desire?
+Starpoint
+10
+
+Music: 1980s: Artist/Band: Obscene Phone Caller?
+Rockwell
+10
+
+Music: 1980s: Artist/Band: Obsession?
+Animotion
+10
+
+Music: 1980s: Artist/Band: Off The Wall?
+Michael jackson
+10
+
+Music: 1980s: Artist/Band: Oh Father?
+Madonna
+10
+
+Music: 1980s: Artist/Band: Oh Girl?
+Boy meets girl
+10
+
+Music: 1980s: Artist/Band: Oh Julie?
+Barry manilow
+10
+
+Music: 1980s: Artist/Band: Oh No?
+Commodores
+10
+
+Music: 1980s: Artist/Band: Oh People?
+Patti labelle
+10
+
+Music: 1980s: Artist/Band: Oh Sheila?
+Ready for the world
+10
+
+Music: 1980s: Artist/Band: Oh Sherri?
+Steve perry
+10
+
+Music: 1980s: Artist/Band: Old Fashion Love?
+Commodores
+10
+
+Music: 1980s: Artist/Band: On Our Own?
+Bobby brown
+10
+
+Music: 1980s: Artist/Band: On The Dark Side?
+John cafferty & the beaver brown band
+10
+
+Music: 1980s: Artist/Band: On The Loose?
+Saga
+10
+
+Music: 1980s: Artist/Band: On The Radio?
+Donna summer
+10
+
+Music: 1980s: Artist/Band: On The Road Again?
+Willie nelson
+10
+
+Music: 1980s: Artist/Band: On The Way To The Sky?
+Neil diamond
+10
+
+Music: 1980s: Artist/Band: On The Wings Of Love?
+Jeffrey osborne
+10
+
+Music: 1980s: Artist/Band: Once Bitten Twice Shy?
+Great white
+10
+
+Music: 1980s: Artist/Band: One Fine Day?
+Carole king
+10
+
+Music: 1980s: Artist/Band: One For The Mockingbird?
+Cutting crew
+10
+
+Music: 1980s: Artist/Band: One Good Reason?
+Paul carrack
+10
+
+Music: 1980s: Artist/Band: One Good Woman?
+Peter cetera
+10
+
+Music: 1980s: Artist/Band: One Heartbeat?
+Smokey robinson
+10
+
+Music: 1980s: Artist/Band: One Hit?
+Rolling stones
+10
+
+Music: 1980s: Artist/Band: One Hundred Ways?
+James ingram
+10
+
+Music: 1980s: Artist/Band: One In A Million You?
+Larry graham
+10
+
+Music: 1980s: Artist/Band: One In A Million?
+Romantics
+10
+
+Music: 1980s: Artist/Band: One Lonely Night?
+Reo speedwagon
+10
+
+Music: 1980s: Artist/Band: One Moment In Time?
+Whitney houston
+10
+
+Music: 1980s: Artist/Band: One More Night?
+Phil collins
+10
+
+Music: 1980s: Artist/Band: One More Try?
+George michael
+10
+
+Music: 1980s: Artist/Band: One Night In Bangkok?
+Murray head
+10
+
+Music: 1980s: Artist/Band: One Night Love Affair?
+Bryan adams
+10
+
+Music: 1980s: Artist/Band: One Of The Living?
+Tina turner
+10
+
+Music: 1980s: Artist/Band: One On One?
+Daryl hall & john oates
+10
+
+Music: 1980s: Artist/Band: One Step Closer To You?
+Gavin chistopher
+10
+
+Music: 1980s: Artist/Band: One Step Closer?
+Doobie brothers
+10
+
+Music: 1980s: Artist/Band: One Step Up?
+Bruce springsteen & the e street band
+10
+
+Music: 1980s: Artist/Band: One Thing Leads To Another?
+Fixx
+10
+
+Music: 1980s: Artist/Band: One Trick Pony?
+Paul simon
+10
+
+Music: 1980s: Artist/Band: Only A Lonely Heart Sees?
+Felix cavaliere
+10
+
+Music: 1980s: Artist/Band: Only In My Dreams?
+Debbie gibson
+10
+
+Music: 1980s: Artist/Band: Only The Lonely?
+Motels
+10
+
+Music: 1980s: Artist/Band: Only The Young?
+Journey
+10
+
+Music: 1980s: Artist/Band: Only Time Will Tell?
+Asia
+10
+
+Music: 1980s: Artist/Band: Only When You Leave?
+Spandau ballet
+10
+
+Music: 1980s: Artist/Band: Ooh Ooh Song?
+Pat benatar
+10
+
+Music: 1980s: Artist/Band: Open Arms?
+Journey
+10
+
+Music: 1980s: Artist/Band: Open Your Heart?
+Madonna
+10
+
+Music: 1980s: Artist/Band: Operator?
+Midnight star
+10
+
+Music: 1980s: Artist/Band: Opportunities?
+Pet shop boys
+10
+
+Music: 1980s: Artist/Band: Orinoco Flow (Sail Away)?
+Enya
+10
+
+Music: 1980s: Artist/Band: Our House?
+Madness
+10
+
+Music: 1980s: Artist/Band: Our Lips Are Sealed?
+Go go's
+10
+
+Music: 1980s: Artist/Band: Out Here On My Own?
+Irene cara
+10
+
+Music: 1980s: Artist/Band: Out Of Mind Out Of Sight?
+Models
+10
+
+Music: 1980s: Artist/Band: Out Of The Blue?
+Debbie gibson
+10
+
+Music: 1980s: Artist/Band: Out Of Touch?
+Daryl hall & john oates
+10
+
+Music: 1980s: Artist/Band: Overjoyed?
+Stevie wonder
+10
+
+Music: 1980s: Artist/Band: Overkill?
+Men at work
+10
+
+Music: 1980s: Artist/Band: Owner Of A Lonely Heart?
+Yes
+10
+
+Music: 1980s: Artist/Band: P.Y.T?
+Michael jackson
+10
+
+Music: 1980s: Artist/Band: Pac Man Fever?
+Buckner & garcia
+10
+
+Music: 1980s: Artist/Band: Pamela?
+Toto
+10
+
+Music: 1980s: Artist/Band: Panama?
+Van halen
+10
+
+Music: 1980s: Artist/Band: Papa Don't Preach?
+Madonna
+10
+
+Music: 1980s: Artist/Band: Paper In Fire?
+John cougar mellencamp
+10
+
+Music: 1980s: Artist/Band: Paperplate?
+Genesis
+10
+
+Music: 1980s: Artist/Band: Paradise City?
+Guns n' roses
+10
+
+Music: 1980s: Artist/Band: Paradise?
+Sade
+10
+
+Music: 1980s: Artist/Band: Parents Just Don't Understand?
+D.j. jazzy jeff & the fresh prince
+10
+
+Music: 1980s: Artist/Band: Part Time Lover?
+Stevie wonder
+10
+
+Music: 1980s: Artist/Band: Party All The Time?
+Eddie murphy
+10
+
+Music: 1980s: Artist/Band: Partyman?
+Prince
+10
+
+Music: 1980s: Artist/Band: Pass The Dutchie?
+Musical youth
+10
+
+Music: 1980s: Artist/Band: Passion?
+Rod stewart
+10
+
+Music: 1980s: Artist/Band: Patience?
+Guns n' roses
+10
+
+Music: 1980s: Artist/Band: Penny Lover?
+Lionel richie
+10
+
+Music: 1980s: Artist/Band: People Are People?
+Depeche mode
+10
+
+Music: 1980s: Artist/Band: Perfect Way?
+Scritti politti
+10
+
+Music: 1980s: Artist/Band: Perfect World?
+Huey lewis & the news
+10
+
+Music: 1980s: Artist/Band: Personally?
+Karla bonoff
+10
+
+Music: 1980s: Artist/Band: Photograph?
+Def leppard
+10
+
+Music: 1980s: Artist/Band: Physical?
+Olivia newton john
+10
+
+Music: 1980s: Artist/Band: Piano In The Dark?
+Brenda russell
+10
+
+Music: 1980s: Artist/Band: Pieces Of Ice?
+Diana ross
+10
+
+Music: 1980s: Artist/Band: Pilot Of The Airwaves?
+Charlie dore
+10
+
+Music: 1980s: Artist/Band: Pink Cadillac?
+Natalie cole
+10
+
+Music: 1980s: Artist/Band: Pink Houses?
+John cougar mellencamp
+10
+
+Music: 1980s: Artist/Band: Play The Game Tonight?
+Kansas
+10
+
+Music: 1980s: Artist/Band: Please Don't Go Girl?
+New kids on the block
+10
+
+Music: 1980s: Artist/Band: Poison Arrow?
+Abc
+10
+
+Music: 1980s: Artist/Band: Poison?
+Alice cooper
+10
+
+Music: 1980s: Artist/Band: Poor Man's Son?
+Survivor
+10
+
+Music: 1980s: Artist/Band: Pop Goes The Movies?
+Meco
+10
+
+Music: 1980s: Artist/Band: Pop Goes The World?
+Men without hats
+10
+
+Music: 1980s: Artist/Band: Pop Life?
+Prince & the revolution
+10
+
+Music: 1980s: Artist/Band: Pop Singer?
+John cougar mellencamp
+10
+
+Music: 1980s: Artist/Band: Posession Obsession?
+Daryl hall & john oates
+10
+
+Music: 1980s: Artist/Band: Pour Some Sugar On Me?
+Def leppard
+10
+
+Music: 1980s: Artist/Band: Power Of Love?
+Laura branigan
+10
+
+Music: 1980s: Artist/Band: Precious To Me?
+Phil seymour
+10
+
+Music: 1980s: Artist/Band: Press?
+Paul mccartney
+10
+
+Music: 1980s: Artist/Band: Pressure?
+Billy joel
+10
+
+Music: 1980s: Artist/Band: Pretty Woman?
+Van halen
+10
+
+Music: 1980s: Artist/Band: Pride (In The Name Of Love)?
+U2
+10
+
+Music: 1980s: Artist/Band: Prime Time?
+Alan parsons
+10
+
+Music: 1980s: Artist/Band: Private Dancer?
+Tina turner
+10
+
+Music: 1980s: Artist/Band: Private Eyes?
+Daryl hall & john oates
+10
+
+Music: 1980s: Artist/Band: Promise Me?
+Cover girls
+10
+
+Music: 1980s: Artist/Band: Promises In The Dark?
+Pat benatar
+10
+
+Music: 1980s: Artist/Band: Promises, Promises?
+Naked eyes
+10
+
+Music: 1980s: Artist/Band: Prove Your Heart?
+Taylor dayne
+10
+
+Music: 1980s: Artist/Band: Pump Up The Jam?
+Technotronic
+10
+
+Music: 1980s: Artist/Band: Pump Up The Volume?
+M/a/r/r/s
+10
+
+Music: 1980s: Artist/Band: Purple Rain?
+Prince & the revolution
+10
+
+Music: 1980s: Artist/Band: Push It?
+Salt n pepa
+10
+
+Music: 1980s: Artist/Band: Put A Little Love In Your Heart?
+Annie lennox & al green
+10
+
+Music: 1980s: Artist/Band: Put It In A Magazine?
+Sonny charles
+10
+
+Music: 1980s: Artist/Band: Put Your Mouth On Me?
+Eddie murphy
+10
+
+Music: 1980s: Artist/Band: Puttin' On The Ritz?
+Taco
+10
+
+Music: 1980s: Artist/Band: Queen Of Hearts?
+Juice newton
+10
+
+Music: 1980s: Artist/Band: Queen Of The Broken Hearts?
+Loverboy
+10
+
+Music: 1980s: Artist/Band: R.O.C.K. In The U.S.A?
+John cougar mellencamp
+10
+
+Music: 1980s: Artist/Band: Radio Ga Ga?
+Queen
+10
+
+Music: 1980s: Artist/Band: Radio Romance?
+Tiffany
+10
+
+Music: 1980s: Artist/Band: Rag Doll?
+Aerosmith
+10
+
+Music: 1980s: Artist/Band: Rain On The Scarecrow?
+John cougar mellencamp
+10
+
+Music: 1980s: Artist/Band: Rapper's Delight?
+Sugarhill gang
+10
+
+Music: 1980s: Artist/Band: Rapture?
+Blondie
+10
+
+Music: 1980s: Artist/Band: Raspberry Beret?
+Prince & the revolution
+10
+
+Music: 1980s: Artist/Band: Read Em' And Weep?
+Barry manilow
+10
+
+Music: 1980s: Artist/Band: Really Wanna Know You?
+Gary wright
+10
+
+Music: 1980s: Artist/Band: Red Red Wine?
+Ub40
+10
+
+Music: 1980s: Artist/Band: Redhead who had back-to-back #1s in 1988?
+Rick astley
+10
+
+Music: 1980s: Artist/Band: Refugee?
+Tom petty & the heartbreakers
+10
+
+Music: 1980s: Artist/Band: Relax?
+Frankie goes to hollywood
+10
+
+Music: 1980s: Artist/Band: Remember The Nights?
+Motels
+10
+
+Music: 1980s: Artist/Band: Respect Yourself?
+Bruce willis
+10
+
+Music: 1980s: Artist/Band: Rhythm Is Gonna Get You?
+Miami sound machine
+10
+
+Music: 1980s: Artist/Band: Rhythm Nation?
+Janet jackson
+10
+
+Music: 1980s: Artist/Band: Rhythm Of Love?
+Yes
+10
+
+Music: 1980s: Artist/Band: Rhythm Of The Night?
+Debarge
+10
+
+Music: 1980s: Artist/Band: Ride Like The Wind?
+Christopher cross
+10
+
+Music: 1980s: Artist/Band: Riders In The Sky?
+Outlaws
+10
+
+Music: 1980s: Artist/Band: Right By Your Side?
+Eurythmics
+10
+
+Music: 1980s: Artist/Band: Right Here Waiting?
+Richard marx
+10
+
+Music: 1980s: Artist/Band: Right On Track?
+Breakfast club
+10
+
+Music: 1980s: Artist/Band: Rio?
+Duran duran
+10
+
+Music: 1980s: Artist/Band: Ritual?
+Dan reed network
+10
+
+Music: 1980s: Artist/Band: Rock 'N' Roll Is King?
+Electric light orchestra
+10
+
+Music: 1980s: Artist/Band: Rock And A Hard Place?
+Rolling stones
+10
+
+Music: 1980s: Artist/Band: Rock And Roll Dreams Come Through?
+Jim steinman
+10
+
+Music: 1980s: Artist/Band: Rock And Roll Girls?
+John fogerty
+10
+
+Music: 1980s: Artist/Band: Rock Me Amadeus?
+Falco
+10
+
+Music: 1980s: Artist/Band: Rock Me Tonight?
+Freddie jackson
+10
+
+Music: 1980s: Artist/Band: Rock Me Tonite?
+Billy squier
+10
+
+Music: 1980s: Artist/Band: Rock Of Ages?
+Def leppard
+10
+
+Music: 1980s: Artist/Band: Rock Of Life?
+Rick springfield
+10
+
+Music: 1980s: Artist/Band: Rock On?
+Michael damian
+10
+
+Music: 1980s: Artist/Band: Rock Steady?
+Whispers
+10
+
+Music: 1980s: Artist/Band: Rock The Casbah?
+Clash
+10
+
+Music: 1980s: Artist/Band: Rock The Night?
+Europe
+10
+
+Music: 1980s: Artist/Band: Rock This Town?
+Stray cats
+10
+
+Music: 1980s: Artist/Band: Rock Wit'cha?
+Bobby brown
+10
+
+Music: 1980s: Artist/Band: Rock You Like A Hurricane?
+Scorpions
+10
+
+Music: 1980s: Artist/Band: Rocket 2 U?
+Jets
+10
+
+Music: 1980s: Artist/Band: Rocket?
+Def leppard
+10
+
+Music: 1980s: Artist/Band: Rockin' At Midnight?
+Honeydrippers
+10
+
+Music: 1980s: Artist/Band: Roll Me Away?
+Bob seger & the silver bullet band
+10
+
+Music: 1980s: Artist/Band: Roll With It?
+Steve winwood
+10
+
+Music: 1980s: Artist/Band: Romancing The Stone?
+Eddy grant
+10
+
+Music: 1980s: Artist/Band: Romeo's Tune?
+Steve forbert
+10
+
+Music: 1980s: Artist/Band: Roni?
+Bobby brown
+10
+
+Music: 1980s: Artist/Band: Room To Move?
+Animotion
+10
+
+Music: 1980s: Artist/Band: Rooms On Fire?
+Stevie nicks
+10
+
+Music: 1980s: Artist/Band: Rosanna?
+Toto
+10
+
+Music: 1980s: Artist/Band: Rough Boy?
+Zz top
+10
+
+Music: 1980s: Artist/Band: Round And Round?
+Ratt
+10
+
+Music: 1980s: Artist/Band: Route 101?
+Herb alpert
+10
+
+Music: 1980s: Artist/Band: Rumbleseat?
+John cougar mellencamp
+10
+
+Music: 1980s: Artist/Band: Rumors?
+Timex social club
+10
+
+Music: 1980s: Artist/Band: Run For The Roses?
+Dan fogelberg
+10
+
+Music: 1980s: Artist/Band: Run Runaway?
+Slade
+10
+
+Music: 1980s: Artist/Band: Run To You?
+Bryan adams
+10
+
+Music: 1980s: Artist/Band: Runaway?
+Bon jovi
+10
+
+Music: 1980s: Artist/Band: Runner?
+Manfred mann's earth band
+10
+
+Music: 1980s: Artist/Band: Runnin' Down A Dream?
+Tom petty
+10
+
+Music: 1980s: Artist/Band: Running Up That Hill?
+Kate bush
+10
+
+Music: 1980s: Artist/Band: Running With The Night?
+Lionel richie
+10
+
+Music: 1980s: Artist/Band: Rush Hour?
+Jane wiedlin
+10
+
+Music: 1980s: Artist/Band: Russians?
+Sting
+10
+
+Music: 1980s: Artist/Band: Sacred Emotion?
+Donny osmond
+10
+
+Music: 1980s: Artist/Band: Sad Songs?
+Elton john
+10
+
+Music: 1980s: Artist/Band: Sailing?
+Christopher cross
+10
+
+Music: 1980s: Artist/Band: Same Old Lang Syne?
+Dan fogelberg
+10
+
+Music: 1980s: Artist/Band: Sanctify Yourself?
+Simple minds
+10
+
+Music: 1980s: Artist/Band: Sara?
+Jefferson starship
+10
+
+Music: 1980s: Artist/Band: Satisfied?
+Richard marx
+10
+
+Music: 1980s: Artist/Band: Saturday Love?
+Alexander o'neal
+10
+
+Music: 1980s: Artist/Band: Sausalito Summernight?
+Diesel
+10
+
+Music: 1980s: Artist/Band: Savannah Nights?
+Tom johnston
+10
+
+Music: 1980s: Artist/Band: Save A Prayer?
+Duran duran
+10
+
+Music: 1980s: Artist/Band: Saved By Zero?
+Fixx
+10
+
+Music: 1980s: Artist/Band: Saving All My Love For You?
+Whitney houston
+10
+
+Music: 1980s: Artist/Band: Say Goodbye To Hollywood?
+Billy joel
+10
+
+Music: 1980s: Artist/Band: Say It Again?
+Jermaine stewart
+10
+
+Music: 1980s: Artist/Band: Say It Isn't So?
+Daryl hall & john oates
+10
+
+Music: 1980s: Artist/Band: Say Say Say?
+Paul mccartney & michael jackson
+10
+
+Music: 1980s: Artist/Band: Say What?
+Jesse winchester
+10
+
+Music: 1980s: Artist/Band: Say You Will?
+Foreigner
+10
+
+Music: 1980s: Artist/Band: Say You, Say Me?
+Lionel richie
+10
+
+Music: 1980s: Artist/Band: Say You'll Be Mine?
+Christopher cross
+10
+
+Music: 1980s: Artist/Band: Say You're Wrong?
+Julian lennon
+10
+
+Music: 1980s: Artist/Band: Sayin' Sorry?
+Denise lopez
+10
+
+Music: 1980s: Artist/Band: Se La?
+Lionel richie
+10
+
+Music: 1980s: Artist/Band: Seasons Change?
+Expose
+10
+
+Music: 1980s: Artist/Band: Second Chance?
+38 special
+10
+
+Music: 1980s: Artist/Band: Second Nature?
+Dan hartman
+10
+
+Music: 1980s: Artist/Band: Secret Lovers?
+Atlantic starr
+10
+
+Music: 1980s: Artist/Band: Secret Rendezvous?
+Karyn white
+10
+
+Music: 1980s: Artist/Band: Secret Separation?
+Fixx
+10
+
+Music: 1980s: Artist/Band: Self Control?
+Laura branigan
+10
+
+Music: 1980s: Artist/Band: Send Her My Love?
+Journey
+10
+
+Music: 1980s: Artist/Band: Send Me An Angel '89?
+Real life
+10
+
+Music: 1980s: Artist/Band: Send Me An Angel?
+Real life
+10
+
+Music: 1980s: Artist/Band: Sentimental Street?
+Night ranger
+10
+
+Music: 1980s: Artist/Band: Separate Ways?
+Journey
+10
+
+Music: 1980s: Artist/Band: September Morn'?
+Neil diamond
+10
+
+Music: 1980s: Artist/Band: Sequel?
+Harry chapin
+10
+
+Music: 1980s: Artist/Band: Serious?
+Donna allen
+10
+
+Music: 1980s: Artist/Band: Set Me Free?
+Utopia
+10
+
+Music: 1980s: Artist/Band: Seven Bridges Road?
+Eagles
+10
+
+Music: 1980s: Artist/Band: Seven Wonders?
+Fleetwood mac
+10
+
+Music: 1980s: Artist/Band: Seven Year Ache?
+Rosanne cash
+10
+
+Music: 1980s: Artist/Band: Seventeen?
+Winger
+10
+
+Music: 1980s: Artist/Band: Sex As A Weapon?
+Pat benatar
+10
+
+Music: 1980s: Artist/Band: Sexual Healing?
+Marvin gaye
+10
+
+Music: 1980s: Artist/Band: Sexy + 17?
+Stray cats
+10
+
+Music: 1980s: Artist/Band: Sexy Eyes?
+Dr. hook
+10
+
+Music: 1980s: Artist/Band: Sexy Girl?
+Glenn frey
+10
+
+Music: 1980s: Artist/Band: Shadows Of The Night?
+Pat benatar
+10
+
+Music: 1980s: Artist/Band: Shake For The Sheik?
+Escape club
+10
+
+Music: 1980s: Artist/Band: Shake It Up?
+Cars
+10
+
+Music: 1980s: Artist/Band: Shake You Down?
+Gregory abbott
+10
+
+Music: 1980s: Artist/Band: Shake Your Love?
+Debbie gibson
+10
+
+Music: 1980s: Artist/Band: Shakedown?
+Bob seger
+10
+
+Music: 1980s: Artist/Band: Shame On The Moon?
+Bob seger & the silver bullet band
+10
+
+Music: 1980s: Artist/Band: Shame?
+Motels
+10
+
+Music: 1980s: Artist/Band: Shanghai Breezes?
+John denver
+10
+
+Music: 1980s: Artist/Band: Share Your Love With Me?
+Kenny rogers
+10
+
+Music: 1980s: Artist/Band: Shattered Dreams?
+Johnny hates jazz
+10
+
+Music: 1980s: Artist/Band: She Blinded Me With Science?
+Thomas dolby
+10
+
+Music: 1980s: Artist/Band: She Bop?
+Cyndi lauper
+10
+
+Music: 1980s: Artist/Band: She Drives Me Crazy?
+Fine young cannibals
+10
+
+Music: 1980s: Artist/Band: She Wants To Dance With Me?
+Rick astley
+10
+
+Music: 1980s: Artist/Band: She Won't Talk To Me?
+Luther vandross
+10
+
+Music: 1980s: Artist/Band: She Works Hard For The Money?
+Donna summer
+10
+
+Music: 1980s: Artist/Band: She's A Bad Mama Jack?
+Carl carlton
+10
+
+Music: 1980s: Artist/Band: She's A Beauty?
+Tubes
+10
+
+Music: 1980s: Artist/Band: She's Got A Way?
+Billy joel
+10
+
+Music: 1980s: Artist/Band: She's Like The Wind?
+Patrick swayze
+10
+
+Music: 1980s: Artist/Band: She's Mine?
+Steve perry
+10
+
+Music: 1980s: Artist/Band: She's Out Of My Life - ____Jackson
+Michael
+10
+
+Music: 1980s: Artist/Band: She's Out Of My Life?
+Michael jackson
+10
+
+Music: 1980s: Artist/Band: She's So Cold?
+Rolling stones
+10
+
+Music: 1980s: Artist/Band: Shine On?
+L.t.d
+10
+
+Music: 1980s: Artist/Band: Shine Shine?
+Barry gibb
+10
+
+Music: 1980s: Artist/Band: Shining Star?
+Manhattans
+10
+
+Music: 1980s: Artist/Band: Ship Of Fools?
+World party
+10
+
+Music: 1980s: Artist/Band: Shock The Monkey?
+Peter gabriel
+10
+
+Music: 1980s: Artist/Band: Should I Do It?
+Pointer sisters
+10
+
+Music: 1980s: Artist/Band: Should've Know Better?
+Richard marx
+10
+
+Music: 1980s: Artist/Band: Should've Never Let You Go?
+Neil sedaka & dara sedaka
+10
+
+Music: 1980s: Artist/Band: Shout! Shout!?
+Ernie maresca
+10
+
+Music: 1980s: Artist/Band: Shout?
+Tears for fears
+10
+
+Music: 1980s: Artist/Band: Show Me?
+Pretenders
+10
+
+Music: 1980s: Artist/Band: Show Some Respect?
+Tina turner
+10
+
+Music: 1980s: Artist/Band: Shower Me With Your Love?
+Surface
+10
+
+Music: 1980s: Artist/Band: Sidewalk Talk?
+Jellybean
+10
+
+Music: 1980s: Artist/Band: Sign 'O' The Times?
+Prince & the revolution
+10
+
+Music: 1980s: Artist/Band: Sign Your Name?
+Terence trent d'arby
+10
+
+Music: 1980s: Artist/Band: Silent Running?
+Mike + the mechanics
+10
+
+Music: 1980s: Artist/Band: Silhouette?
+Kenny g
+10
+
+Music: 1980s: Artist/Band: Simply Irresistible?
+Robert palmer
+10
+
+Music: 1980s: Artist/Band: Since I Don't Have You?
+Don mclean
+10
+
+Music: 1980s: Artist/Band: Since You've Been Gone?
+Outfield
+10
+
+Music: 1980s: Artist/Band: Sincerely Yours?
+Sweet sensation
+10
+
+Music: 1980s: Artist/Band: Sister Christian?
+Night ranger
+10
+
+Music: 1980s: Artist/Band: Sisters Are Doin' It For Themselves?
+Aretha franklin & the eurythmics
+10
+
+Music: 1980s: Artist/Band: Sitting At The Wheel?
+Moody blues
+10
+
+Music: 1980s: Artist/Band: Skeletons?
+Stevie wonder
+10
+
+Music: 1980s: Artist/Band: Skin Trade?
+Duran duran
+10
+
+Music: 1980s: Artist/Band: Sledgehammer?
+Peter gabriel
+10
+
+Music: 1980s: Artist/Band: Sleeping Bag?
+Zz top
+10
+
+Music: 1980s: Artist/Band: Slipping Away?
+Dave edmunds
+10
+
+Music: 1980s: Artist/Band: Slow Hand?
+Pointer sisters
+10
+
+Music: 1980s: Artist/Band: Small Town?
+John cougar mellencamp
+10
+
+Music: 1980s: Artist/Band: Small World?
+Huey lewis & the news
+10
+
+Music: 1980s: Artist/Band: Smokin' In The Boys Room?
+Motley crue
+10
+
+Music: 1980s: Artist/Band: Smoking Gun?
+Robert cray band
+10
+
+Music: 1980s: Artist/Band: Smoky Mountain Rain?
+Ronnie milsap
+10
+
+Music: 1980s: Artist/Band: Smooth Criminal?
+Michael jackson
+10
+
+Music: 1980s: Artist/Band: Smooth Operator?
+Sade
+10
+
+Music: 1980s: Artist/Band: Smuggler's Blues?
+Glenn frey
+10
+
+Music: 1980s: Artist/Band: So Alive?
+Love and rockets
+10
+
+Music: 1980s: Artist/Band: So Bad?
+Paul mccartney
+10
+
+Music: 1980s: Artist/Band: So Close?
+Diana ross
+10
+
+Music: 1980s: Artist/Band: So Emotional?
+Whitney houston
+10
+
+Music: 1980s: Artist/Band: So Far Away?
+Dire straits
+10
+
+Music: 1980s: Artist/Band: So In Love?
+Orchestral manoeuvres in the dark
+10
+
+Music: 1980s: Artist/Band: So Wrong?
+Patrick simmons
+10
+
+Music: 1980s: Artist/Band: Soldier Of Love?
+Donny osmond
+10
+
+Music: 1980s: Artist/Band: Solid?
+Ashford & simpson
+10
+
+Music: 1980s: Artist/Band: Solitaire?
+Laura branigan
+10
+
+Music: 1980s: Artist/Band: Some Days Are Diamonds?
+John denver
+10
+
+Music: 1980s: Artist/Band: Some Guys Have All The Luck?
+Rod stewart
+10
+
+Music: 1980s: Artist/Band: Some Kind Of Friend?
+Barry manilow
+10
+
+Music: 1980s: Artist/Band: Some Kind Of Lover?
+Jody watley
+10
+
+Music: 1980s: Artist/Band: Some Like It Hot?
+Power station
+10
+
+Music: 1980s: Artist/Band: Somebody's Baby?
+Jackson brown
+10
+
+Music: 1980s: Artist/Band: Somebody's Knockin'?
+Terri gibbs
+10
+
+Music: 1980s: Artist/Band: Somebody's Out There?
+Triumph
+10
+
+Music: 1980s: Artist/Band: Somebody's Watching Me?
+Rockwell
+10
+
+Music: 1980s: Artist/Band: Somebody?
+Bryan adams
+10
+
+Music: 1980s: Artist/Band: Someday, Someday?
+Marshall crenshaw
+10
+
+Music: 1980s: Artist/Band: Someone That I Used To Love?
+Natalie cole
+10
+
+Music: 1980s: Artist/Band: Something About You?
+Level 42
+10
+
+Music: 1980s: Artist/Band: Something Real?
+Mr. mister
+10
+
+Music: 1980s: Artist/Band: Sometimes A Fantasy?
+Billy joel
+10
+
+Music: 1980s: Artist/Band: Somewhere Down The Road?
+Barry manilow
+10
+
+Music: 1980s: Artist/Band: Songbird?
+Kenny g
+10
+
+Music: 1980s: Artist/Band: Soul City?
+Partland brothers
+10
+
+Music: 1980s: Artist/Band: Soul Kiss?
+Olivia newton john
+10
+
+Music: 1980s: Artist/Band: Soul Provider?
+Michael bolton
+10
+
+Music: 1980s: Artist/Band: Souls?
+Rick springfield
+10
+
+Music: 1980s: Artist/Band: Southern Cross?
+Crosby stills & nash
+10
+
+Music: 1980s: Artist/Band: Space Age Love Song?
+Flock of seagulls
+10
+
+Music: 1980s: Artist/Band: Spanish Eddie?
+Laura branigan
+10
+
+Music: 1980s: Artist/Band: Special Lady?
+Ray, goodman & brown
+10
+
+Music: 1980s: Artist/Band: Spice Of Life?
+Manhattan transfer
+10
+
+Music: 1980s: Artist/Band: Spies Like Us?
+Paul mccartney
+10
+
+Music: 1980s: Artist/Band: Spirits In The Material World?
+Police
+10
+
+Music: 1980s: Artist/Band: Spy In The House Of Love?
+Was
+10
+
+Music: 1980s: Artist/Band: St. Elmo's Fire (Love Theme)?
+David foster
+10
+
+Music: 1980s: Artist/Band: St. Elmo's Fire?
+John parr
+10
+
+Music: 1980s: Artist/Band: Stages?
+Zz top
+10
+
+Music: 1980s: Artist/Band: Stand Back?
+Stevie nicks
+10
+
+Music: 1980s: Artist/Band: Stand By Me?
+Mickey gilley
+10
+
+Music: 1980s: Artist/Band: Stand?
+R.e.m
+10
+
+Music: 1980s: Artist/Band: Stars On 45 Iii?
+Stars on 45
+10
+
+Music: 1980s: Artist/Band: Stars On 45?
+Stars on 45
+10
+
+Music: 1980s: Artist/Band: Start Me Up?
+Rolling stones
+10
+
+Music: 1980s: Artist/Band: Starting Over Again?
+Dolly parton
+10
+
+Music: 1980s: Artist/Band: State Of Shock?
+Jacksons
+10
+
+Music: 1980s: Artist/Band: State Of The Heart?
+Rick springfield
+10
+
+Music: 1980s: Artist/Band: Stay With Me Tonight?
+Jeffrey osborne
+10
+
+Music: 1980s: Artist/Band: Staying Together?
+Debbie gibson
+10
+
+Music: 1980s: Artist/Band: Staying With It?
+Firefall
+10
+
+Music: 1980s: Artist/Band: Steal Away?
+Robbie dupree
+10
+
+Music: 1980s: Artist/Band: Steal The Night?
+Stevie woods
+10
+
+Music: 1980s: Artist/Band: Step By Step?
+Eddie rabbitt
+10
+
+Music: 1980s: Artist/Band: Steppin' Out?
+Joe jackson
+10
+
+Music: 1980s: Artist/Band: Stick Around?
+Julian lennon
+10
+
+Music: 1980s: Artist/Band: Still In Saigon?
+Charlie daniels band
+10
+
+Music: 1980s: Artist/Band: Still Right Here In My Heart?
+Pure prairie league
+10
+
+Music: 1980s: Artist/Band: Still They Ride?
+Journey
+10
+
+Music: 1980s: Artist/Band: Stomp!?
+Brothers johnson
+10
+
+Music: 1980s: Artist/Band: Stone Cold?
+Rainbow
+10
+
+Music: 1980s: Artist/Band: Stone Love?
+Kool & the gang
+10
+
+Music: 1980s: Artist/Band: Stop Draggin' My Heart Around?
+Tom petty & the heartbreakers
+10
+
+Music: 1980s: Artist/Band: Stop Draggin' Your Heart Around?
+Stevie nicks
+10
+
+Music: 1980s: Artist/Band: Stop In The Name Of Love?
+Hollies
+10
+
+Music: 1980s: Artist/Band: Stop To Love?
+Luther vandross
+10
+
+Music: 1980s: Artist/Band: Straight Up?
+Paula abdul
+10
+
+Music: 1980s: Artist/Band: Strange But True?
+Times two
+10
+
+Music: 1980s: Artist/Band: Stranger In My House?
+Ronnie milsap
+10
+
+Music: 1980s: Artist/Band: Stranger In Town?
+Toto
+10
+
+Music: 1980s: Artist/Band: Stray Cat Strut?
+Stray cats
+10
+
+Music: 1980s: Artist/Band: Stronger Than Before?
+Carole bayer sager
+10
+
+Music: 1980s: Artist/Band: Strung Out?
+Steve perry
+10
+
+Music: 1980s: Artist/Band: Strut?
+Sheena easton
+10
+
+Music: 1980s: Artist/Band: Stuck On You?
+Lionel richie
+10
+
+Music: 1980s: Artist/Band: Stuck With You?
+Huey lewis & the news
+10
+
+Music: 1980s: Artist/Band: Suddenly Last Summer?
+Motels
+10
+
+Music: 1980s: Artist/Band: Sugar Daddy?
+Thompson twins
+10
+
+Music: 1980s: Artist/Band: Sugar Don't Bite?
+Sam harris
+10
+
+Music: 1980s: Artist/Band: Sugar Free?
+Wa wa nee
+10
+
+Music: 1980s: Artist/Band: Sugar Walls?
+Sheena easton
+10
+
+Music: 1980s: Artist/Band: Sukiyaki?
+A taste of honey
+10
+
+Music: 1980s: Artist/Band: Summer Of '69?
+Bryan adams
+10
+
+Music: 1980s: Artist/Band: Sun City?
+Artist united against apartheid
+10
+
+Music: 1980s: Artist/Band: Sunglasses At Night?
+Corey hart
+10
+
+Music: 1980s: Artist/Band: Sunset Grill?
+Don henley
+10
+
+Music: 1980s: Artist/Band: Sunshine?
+Dino
+10
+
+Music: 1980s: Artist/Band: Super Freak?
+Rick james
+10
+
+Music: 1980s: Artist/Band: Supersonic?
+J.j. fad
+10
+
+Music: 1980s: Artist/Band: Superstitious?
+Europe
+10
+
+Music: 1980s: Artist/Band: Superwoman?
+Karyn white
+10
+
+Music: 1980s: Artist/Band: Surrender To Me?
+Ann wilson
+10
+
+Music: 1980s: Artist/Band: Sussudio?
+Phil collins
+10
+
+Music: 1980s: Artist/Band: Suzanne?
+Journey
+10
+
+Music: 1980s: Artist/Band: Sweet Baby?
+Stanley clarke & george duke
+10
+
+Music: 1980s: Artist/Band: Sweet Child O' Mine?
+Guns n' roses
+10
+
+Music: 1980s: Artist/Band: Sweet Dreams (Are Made Of This)?
+Eurythmics
+10
+
+Music: 1980s: Artist/Band: Sweet Dreams?
+Air supply
+10
+
+Music: 1980s: Artist/Band: Sweet Freedom?
+Michael mcdonald
+10
+
+Music: 1980s: Artist/Band: Sweet Love?
+Anita baker
+10
+
+Music: 1980s: Artist/Band: Sweet Sixteen?
+Billy idol
+10
+
+Music: 1980s: Artist/Band: Sweet Time?
+Reo speedwagon
+10
+
+Music: 1980s: Artist/Band: Sweetheart?
+Franke & the knockouts
+10
+
+Music: 1980s: Artist/Band: Swept Away?
+Diana ross
+10
+
+Music: 1980s: Artist/Band: Swing The Mood?
+Jive bunny & the mastermixers
+10
+
+Music: 1980s: Artist/Band: Symptoms Of True Love?
+Tracie spencer
+10
+
+Music: 1980s: Artist/Band: Synchronicity Ii?
+Police
+10
+
+Music: 1980s: Artist/Band: Tainted Love?
+Soft cell
+10
+
+Music: 1980s: Artist/Band: Take A Little Rhythm?
+Ali thomson
+10
+
+Music: 1980s: Artist/Band: Take It Away?
+Paul maccartney
+10
+
+Music: 1980s: Artist/Band: Take It Easy On Me?
+Little river band
+10
+
+Music: 1980s: Artist/Band: Take It Easy?
+Andy taylor
+10
+
+Music: 1980s: Artist/Band: Take It On The Run?
+Reo speedwagon
+10
+
+Music: 1980s: Artist/Band: Take Me Down?
+Alabama
+10
+
+Music: 1980s: Artist/Band: Take Me Home Tonight?
+Eddie money
+10
+
+Music: 1980s: Artist/Band: Take Me Home?
+Phil collins
+10
+
+Music: 1980s: Artist/Band: Take Me To Heart?
+Quarterflash
+10
+
+Music: 1980s: Artist/Band: Take Me With U?
+Prince & the revolution
+10
+
+Music: 1980s: Artist/Band: Take My Breath Away?
+Berlin
+10
+
+Music: 1980s: Artist/Band: Take My Heart?
+Kool & the gang
+10
+
+Music: 1980s: Artist/Band: Take Off?
+Bob & doug mckenzie
+10
+
+Music: 1980s: Artist/Band: Take On Me?
+A ha
+10
+
+Music: 1980s: Artist/Band: Take Your Time?
+S.o.s. band
+10
+
+Music: 1980s: Artist/Band: Taken In?
+Mike + the mechanics
+10
+
+Music: 1980s: Artist/Band: Talk Dirty To Me?
+Poison
+10
+
+Music: 1980s: Artist/Band: Talking In Your Sleep?
+Romantics
+10
+
+Music: 1980s: Artist/Band: Tall Cool One?
+Robert plant
+10
+
+Music: 1980s: Artist/Band: Tarzan Boy?
+Baltimora
+10
+
+Music: 1980s: Artist/Band: Teacher Teacher?
+38 special
+10
+
+Music: 1980s: Artist/Band: Tears?
+John waite
+10
+
+Music: 1980s: Artist/Band: Telefone (Long Distance Love Affair)?
+Sheena easton
+10
+
+Music: 1980s: Artist/Band: Tell Her About It?
+Billy joel
+10
+
+Music: 1980s: Artist/Band: Tell Her No?
+Juice newton
+10
+
+Music: 1980s: Artist/Band: Tell It Like It Is?
+Heart
+10
+
+Music: 1980s: Artist/Band: Tell It To My Heart?
+Taylor dayne
+10
+
+Music: 1980s: Artist/Band: Tell Me Tommorrow?
+Smokey robinson
+10
+
+Music: 1980s: Artist/Band: Tender Is The Night?
+Jackson brown
+10
+
+Music: 1980s: Artist/Band: Tender Years?
+John cafferty & the beaver brown band
+10
+
+Music: 1980s: Artist/Band: Thanks For My Child?
+Cheryl pepsii riley
+10
+
+Music: 1980s: Artist/Band: That Ain't Love?
+Reo speedwagon
+10
+
+Music: 1980s: Artist/Band: That Girl Could Sing?
+Jackson brown
+10
+
+Music: 1980s: Artist/Band: That Girl?
+Stevie wonder
+10
+
+Music: 1980s: Artist/Band: That Old Song?
+Ray parker jr. & raydio
+10
+
+Music: 1980s: Artist/Band: That Was Then, This Is Now?
+Monkees
+10
+
+Music: 1980s: Artist/Band: That Was Yesterday?
+Foreigner
+10
+
+Music: 1980s: Artist/Band: That's All?
+Genesis
+10
+
+Music: 1980s: Artist/Band: That's Love?
+Jim capaldi
+10
+
+Music: 1980s: Artist/Band: That's The Way?
+Katrina and the waves
+10
+
+Music: 1980s: Artist/Band: That's What Friends Are For?
+Dionne warwick & friends
+10
+
+Music: 1980s: Artist/Band: That's What Love Is All About?
+Michael bolton
+10
+
+Music: 1980s: Artist/Band: The Angel Song?
+Great white
+10
+
+Music: 1980s: Artist/Band: The Beach Boys Medley?
+Beach boys
+10
+
+Music: 1980s: Artist/Band: The Beatles Movie Medley?
+Beatles
+10
+
+Music: 1980s: Artist/Band: The Belle Of St. Mark?
+Sheila e
+10
+
+Music: 1980s: Artist/Band: The Best Of Times?
+Styx
+10
+
+Music: 1980s: Artist/Band: The Best?
+Tina turner
+10
+
+Music: 1980s: Artist/Band: The Bird?
+Time
+10
+
+Music: 1980s: Artist/Band: The Border?
+America
+10
+
+Music: 1980s: Artist/Band: The Borderlines?
+Jeffrey osborne
+10
+
+Music: 1980s: Artist/Band: The Boys Of Summer?
+Don henley
+10
+
+Music: 1980s: Artist/Band: The Breakup Song?
+Greg kihn band
+10
+
+Music: 1980s: Artist/Band: The Captain Of Her Heart?
+Double
+10
+
+Music: 1980s: Artist/Band: The Clapping Song?
+Pia zadora
+10
+
+Music: 1980s: Artist/Band: The Closer You Get?
+Alabama
+10
+
+Music: 1980s: Artist/Band: The Colour Of Love?
+Billy ocean
+10
+
+Music: 1980s: Artist/Band: The Curly Shuffle?
+Jump 'n the saddle
+10
+
+Music: 1980s: Artist/Band: The Dock Of The Bay?
+Michael bolton
+10
+
+Music: 1980s: Artist/Band: The Doctor?
+Doobie brothers
+10
+
+Music: 1980s: Artist/Band: The Dream (Hold On To Your Dream)?
+Irene cara
+10
+
+Music: 1980s: Artist/Band: The Edge Of Heaven?
+Wham!
+10
+
+Music: 1980s: Artist/Band: The End Of The Innocence?
+Don henley
+10
+
+Music: 1980s: Artist/Band: The Final Countdown?
+Europe
+10
+
+Music: 1980s: Artist/Band: The Finer Things?
+Steve winwood
+10
+
+Music: 1980s: Artist/Band: The First Day Of Summer?
+Tony carey
+10
+
+Music: 1980s: Artist/Band: The Flame?
+Cheap trick
+10
+
+Music: 1980s: Artist/Band: The Future's So Bright?
+Timbuk 3
+10
+
+Music: 1980s: Artist/Band: The Girl Is Mine?
+Paul mccartney & michael jackson
+10
+
+Music: 1980s: Artist/Band: The Glamorous Life?
+Sheila e
+10
+
+Music: 1980s: Artist/Band: The Goonies 'R' Good Enough?
+Cyndi lauper
+10
+
+Music: 1980s: Artist/Band: The Heart Of Rock & Roll?
+Huey lewis & the news
+10
+
+Music: 1980s: Artist/Band: The Heat Is On?
+Glenn frey
+10
+
+Music: 1980s: Artist/Band: The Honeythief?
+Hipsway
+10
+
+Music: 1980s: Artist/Band: The Kid's American?
+Matthew wilder
+10
+
+Music: 1980s: Artist/Band: The Lady In Red?
+Chris deburgh
+10
+
+Music: 1980s: Artist/Band: The Language Of Love?
+Dan fogelberg
+10
+
+Music: 1980s: Artist/Band: The Last Mile?
+Cinderella
+10
+
+Music: 1980s: Artist/Band: The Last Time I Made Love?
+Joyce kennedy & jeffrey osborne
+10
+
+Music: 1980s: Artist/Band: The Last Worthless Evening?
+Don henley
+10
+
+Music: 1980s: Artist/Band: The Legend Of Wooley Swamp?
+Charlie daniels band
+10
+
+Music: 1980s: Artist/Band: The Living Years?
+Mike + the mechanics
+10
+
+Music: 1980s: Artist/Band: The Loco Motion?
+Kylie minogue
+10
+
+Music: 1980s: Artist/Band: The Longest Time?
+Billy joel
+10
+
+Music: 1980s: Artist/Band: The Look Of Love?
+Abc
+10
+
+Music: 1980s: Artist/Band: The Look?
+Roxette
+10
+
+Music: 1980s: Artist/Band: The Love In Your Eyes?
+Eddie money
+10
+
+Music: 1980s: Artist/Band: The Love Parade?
+Dream academy
+10
+
+Music: 1980s: Artist/Band: The Lover In Me?
+Sheena easton
+10
+
+Music: 1980s: Artist/Band: The Lucky One?
+Laura branigan
+10
+
+Music: 1980s: Artist/Band: The Night Is Still Young?
+Billy joel
+10
+
+Music: 1980s: Artist/Band: The Night Owls?
+Little river band
+10
+
+Music: 1980s: Artist/Band: The Old Man Down The Road?
+John fogerty
+10
+
+Music: 1980s: Artist/Band: The Old Songs?
+Barry manilow
+10
+
+Music: 1980s: Artist/Band: The One I Love?
+R.e.m
+10
+
+Music: 1980s: Artist/Band: The One That You Love?
+Air supply
+10
+
+Music: 1980s: Artist/Band: The One Thing?
+Inxs
+10
+
+Music: 1980s: Artist/Band: The One You Love?
+Glenn frey
+10
+
+Music: 1980s: Artist/Band: The Other Guy?
+Little river band
+10
+
+Music: 1980s: Artist/Band: The Other Woman?
+Ray parker jr
+10
+
+Music: 1980s: Artist/Band: The Party's Over?
+Journey
+10
+
+Music: 1980s: Artist/Band: The Pleasure Principle?
+Janet jackson
+10
+
+Music: 1980s: Artist/Band: The Politics Of Dancing?
+Re flex
+10
+
+Music: 1980s: Artist/Band: The Power Of Love?
+Huey lewis & the news
+10
+
+Music: 1980s: Artist/Band: The Prisoner?
+Howard jones
+10
+
+Music: 1980s: Artist/Band: The Promise?
+When in rome
+10
+
+Music: 1980s: Artist/Band: The Reflex?
+Duran duran
+10
+
+Music: 1980s: Artist/Band: The Right Thing?
+Simply red
+10
+
+Music: 1980s: Artist/Band: The Rose?
+Bette midler
+10
+
+Music: 1980s: Artist/Band: The Saftey Dance?
+Men without hats
+10
+
+Music: 1980s: Artist/Band: The Salt In My Tears?
+Martin briley
+10
+
+Music: 1980s: Artist/Band: The Search Is Over?
+Survivor
+10
+
+Music: 1980s: Artist/Band: The Second Time Around?
+Shalamar
+10
+
+Music: 1980s: Artist/Band: The Seduction (Love Theme)?
+James last
+10
+
+Music: 1980s: Artist/Band: The Sign Of Fire?
+Fixx
+10
+
+Music: 1980s: Artist/Band: The Smile Has Left Your Eyes?
+Asia
+10
+
+Music: 1980s: Artist/Band: The Stroke?
+Billy squier
+10
+
+Music: 1980s: Artist/Band: The Sun Always Shines On T.V?
+A ha
+10
+
+Music: 1980s: Artist/Band: The Sweetest Taboo?
+Sade
+10
+
+Music: 1980s: Artist/Band: The Sweetest Thing?
+Juice newton
+10
+
+Music: 1980s: Artist/Band: The Tide Is High?
+Blondie
+10
+
+Music: 1980s: Artist/Band: The Time Of My Life?
+Jennifer warnes & bill medley
+10
+
+Music: 1980s: Artist/Band: The Twist?
+Fat boys with chubby checker
+10
+
+Music: 1980s: Artist/Band: The Valley Road?
+Bruce hornsby & the range
+10
+
+Music: 1980s: Artist/Band: The Voice?
+Moody blues
+10
+
+Music: 1980s: Artist/Band: The Waiting?
+Tom petty & the heartbreakers
+10
+
+Music: 1980s: Artist/Band: The Wanderer?
+Donna summer
+10
+
+Music: 1980s: Artist/Band: The War Song?
+Culture club
+10
+
+Music: 1980s: Artist/Band: The Warrior?
+Scandal
+10
+
+Music: 1980s: Artist/Band: The Way He Makes Me Feel?
+Barbra streisand
+10
+
+Music: 1980s: Artist/Band: The Way It Is?
+Bruce hornsby & the range
+10
+
+Music: 1980s: Artist/Band: The Way That You Love Me?
+Paula abdul
+10
+
+Music: 1980s: Artist/Band: The Way You Love Me?
+Karyn white
+10
+
+Music: 1980s: Artist/Band: The Way You Make Me Feel?
+Michael jackson
+10
+
+Music: 1980s: Artist/Band: The Wild Boys?
+Duran duran
+10
+
+Music: 1980s: Artist/Band: The Winner Takes It All?
+Abba
+10
+
+Music: 1980s: Artist/Band: The Woman In Me?
+Donna summer
+10
+
+Music: 1980s: Artist/Band: The Woman In You?
+Bee gees
+10
+
+Music: 1980s: Artist/Band: There Goes My Baby?
+Donna summer
+10
+
+Music: 1980s: Artist/Band: There Must Be An Angel?
+Eurythmics
+10
+
+Music: 1980s: Artist/Band: There'll Be Sad Songs?
+Billy ocean
+10
+
+Music: 1980s: Artist/Band: There's That Girl?
+Heart
+10
+
+Music: 1980s: Artist/Band: These Dreams?
+Heart
+10
+
+Music: 1980s: Artist/Band: They Don't Know?
+Tracey ullman
+10
+
+Music: 1980s: Artist/Band: Things Can Only Get Better?
+Howard jones
+10
+
+Music: 1980s: Artist/Band: Think About Me?
+Fleetwood mac
+10
+
+Music: 1980s: Artist/Band: Think I'm In Love?
+Eddie money
+10
+
+Music: 1980s: Artist/Band: Think Of Laura?
+Christopher cross
+10
+
+Music: 1980s: Artist/Band: Thinking Of You?
+Sa fire
+10
+
+Music: 1980s: Artist/Band: This Could Be The Night?
+Loverboy
+10
+
+Music: 1980s: Artist/Band: This Is Not America?
+David bowie
+10
+
+Music: 1980s: Artist/Band: This Is The Time?
+Billy joel
+10
+
+Music: 1980s: Artist/Band: This Man Is Mine?
+Heart
+10
+
+Music: 1980s: Artist/Band: This One's For The Children?
+New kids on the block
+10
+
+Music: 1980s: Artist/Band: This singer had the #1 song of 1988 solo, and the #1 song of 1985 in a duo...?
+George michael
+10
+
+Music: 1980s: Artist/Band: This singer had the most #1s in the 1980s, a total of 9?
+Michael jackson
+10
+
+Music: 1980s: Artist/Band: This Time I Know It's For Real?
+Donna summer
+10
+
+Music: 1980s: Artist/Band: This Woman?
+Kenny rogers
+10
+
+Music: 1980s: Artist/Band: Three Times In Love?
+Tommy james
+10
+
+Music: 1980s: Artist/Band: Thriller?
+Michael jackson
+10
+
+Music: 1980s: Artist/Band: Through The Storm?
+Aretha franklin/elton john
+10
+
+Music: 1980s: Artist/Band: Through The Years?
+Kenny rogers
+10
+
+Music: 1980s: Artist/Band: Throwing It All Away?
+Genesis
+10
+
+Music: 1980s: Artist/Band: Tied Up?
+Olivia newton john
+10
+
+Music: 1980s: Artist/Band: Til My Baby Comes Home?
+Luther vandross
+10
+
+Music: 1980s: Artist/Band: Time (Clock Of The Heart)?
+Culture club
+10
+
+Music: 1980s: Artist/Band: Time After Time?
+Cyndi lauper
+10
+
+Music: 1980s: Artist/Band: Time And Tide?
+Basia
+10
+
+Music: 1980s: Artist/Band: Time Is Time?
+Andy gibb
+10
+
+Music: 1980s: Artist/Band: Time Out Of Mind?
+Steely dan
+10
+
+Music: 1980s: Artist/Band: Time Will Reveal?
+Debarge
+10
+
+Music: 1980s: Artist/Band: Time?
+Alan parsons project
+10
+
+Music: 1980s: Artist/Band: Tired Of Toein' The Line?
+Rocky burnette
+10
+
+Music: 1980s: Artist/Band: To Be A Lover?
+Billy idol
+10
+
+Music: 1980s: Artist/Band: Together Forever?
+Rick astley
+10
+
+Music: 1980s: Artist/Band: Together?
+Tierra
+10
+
+Music: 1980s: Artist/Band: Tommorrow People?
+Ziggy marley & the melody makers
+10
+
+Music: 1980s: Artist/Band: Tomorrow Doesn't Matter Tonight?
+Jefferson starship
+10
+
+Music: 1980s: Artist/Band: Tonight I'm Yours?
+Rod stewart
+10
+
+Music: 1980s: Artist/Band: Tonight She Comes?
+Cars
+10
+
+Music: 1980s: Artist/Band: Tonight, I Celebrate My Love?
+Peabo bryson & roberta flack
+10
+
+Music: 1980s: Artist/Band: Tonight, Tonight, Tonight?
+Genesis
+10
+
+Music: 1980s: Artist/Band: Tonight?
+Kool & the gang
+10
+
+Music: 1980s: Artist/Band: Too Hot?
+Kool & the gang
+10
+
+Music: 1980s: Artist/Band: Too Late For Goodbyes?
+Julian lennon
+10
+
+Music: 1980s: Artist/Band: Too Much Time On My Hands?
+Styx
+10
+
+Music: 1980s: Artist/Band: Too Shy?
+Kajagoogoo
+10
+
+Music: 1980s: Artist/Band: Too Tight?
+Con funk shun
+10
+
+Music: 1980s: Artist/Band: Torture?
+Jacksons
+10
+
+Music: 1980s: Artist/Band: Total Eclipse Of The Heart?
+Bonnie tyler
+10
+
+Music: 1980s: Artist/Band: Touch And Go?
+Cars
+10
+
+Music: 1980s: Artist/Band: Touch Me When We're Dancing?
+Carpenters
+10
+
+Music: 1980s: Artist/Band: Touch Me?
+Samantha fox
+10
+
+Music: 1980s: Artist/Band: Touch Of Grey?
+Grateful dead
+10
+
+Music: 1980s: Artist/Band: Tough All Over?
+John cafferty & the beaver brown band
+10
+
+Music: 1980s: Artist/Band: Tragedy?
+John hunter
+10
+
+Music: 1980s: Artist/Band: Treat Me Right?
+Pat benatar
+10
+
+Music: 1980s: Artist/Band: Trian In Vain?
+Clash
+10
+
+Music: 1980s: Artist/Band: True Blue?
+Madonna
+10
+
+Music: 1980s: Artist/Band: True Colors?
+Cyndi lauper
+10
+
+Music: 1980s: Artist/Band: True Faith?
+New order
+10
+
+Music: 1980s: Artist/Band: True Love?
+Glenn frey
+10
+
+Music: 1980s: Artist/Band: True?
+Spandau ballet
+10
+
+Music: 1980s: Artist/Band: Truly?
+Lionel richie
+10
+
+Music: 1980s: Artist/Band: Try Again?
+Champaign
+10
+
+Music: 1980s: Artist/Band: Tuff Enuff?
+The fabulous thunderbirds
+10
+
+Music: 1980s: Artist/Band: Tulsa Time?
+Eric clapton
+10
+
+Music: 1980s: Artist/Band: Tunnel Of Love?
+Bruce springsteen & the e street band
+10
+
+Music: 1980s: Artist/Band: Turn Me Loose?
+Loverboy
+10
+
+Music: 1980s: Artist/Band: Turn To You?
+Go go's
+10
+
+Music: 1980s: Artist/Band: Turn Up The Radio?
+Autograph
+10
+
+Music: 1980s: Artist/Band: Turn Your Love Around?
+George benson
+10
+
+Music: 1980s: Artist/Band: Turning Japanese?
+Vapors
+10
+
+Music: 1980s: Artist/Band: Twilight World?
+Swing out sister
+10
+
+Music: 1980s: Artist/Band: Twilight Zone?
+Golden earring
+10
+
+Music: 1980s: Artist/Band: Twilight Zone/Twilight Tone?
+Manhattan transfer
+10
+
+Music: 1980s: Artist/Band: Twilight?
+Electric light orchestra
+10
+
+Music: 1980s: Artist/Band: Twist And Shout?
+Beatles
+10
+
+Music: 1980s: Artist/Band: Twist Of Fate?
+Olivia newton john
+10
+
+Music: 1980s: Artist/Band: Two Less Lonely People In The World?
+Air supply
+10
+
+Music: 1980s: Artist/Band: Two Occasions?
+Deele
+10
+
+Music: 1980s: Artist/Band: Two Of Hearts?
+Stacey q
+10
+
+Music: 1980s: Artist/Band: Two People?
+Tina turner
+10
+
+Music: 1980s: Artist/Band: Two Places At The Same Time?
+Ray parker jr. & raydio
+10
+
+Music: 1980s: Artist/Band: Two Sides Of Love?
+Sammy hagar
+10
+
+Music: 1980s: Artist/Band: Two To Make It Right?
+Seduction
+10
+
+Music: 1980s: Artist/Band: Typical Male?
+Tina turner
+10
+
+Music: 1980s: Artist/Band: U Got The Look?
+Prince & the revolution
+10
+
+Music: 1980s: Artist/Band: Under Preasure?
+Queen
+10
+
+Music: 1980s: Artist/Band: Under The Milky Way?
+Church
+10
+
+Music: 1980s: Artist/Band: Undercover Of The Night?
+Rolling stones
+10
+
+Music: 1980s: Artist/Band: Understanding?
+Bob seger & the silver bullet band
+10
+
+Music: 1980s: Artist/Band: Union Of The Snake?
+Duran duran
+10
+
+Music: 1980s: Artist/Band: Upside Down?
+Diana ross
+10
+
+Music: 1980s: Artist/Band: Uptown Girl?
+Billy joel
+10
+
+Music: 1980s: Artist/Band: Urgent?
+Foreigner
+10
+
+Music: 1980s: Artist/Band: Vacation?
+Go go's
+10
+
+Music: 1980s: Artist/Band: Valerie?
+Steve winwood
+10
+
+Music: 1980s: Artist/Band: Valley Girl?
+Frank zappa
+10
+
+Music: 1980s: Artist/Band: Valotte?
+Julian lennon
+10
+
+Music: 1980s: Artist/Band: Velcro Fly?
+Zz top
+10
+
+Music: 1980s: Artist/Band: Venus?
+Bananarama
+10
+
+Music: 1980s: Artist/Band: Veronica?
+Elvis costello
+10
+
+Music: 1980s: Artist/Band: Victim Of Love?
+Bryan adams & tina turner
+10
+
+Music: 1980s: Artist/Band: Victory?
+Kool & the gang
+10
+
+Music: 1980s: Artist/Band: Vienna Calling?
+Falco
+10
+
+Music: 1980s: Artist/Band: Voices Carry?
+'til tuesday
+10
+
+Music: 1980s: Artist/Band: Voices Of Babylon?
+Outfield
+10
+
+Music: 1980s: Artist/Band: Voices?
+Cheap trick
+10
+
+Music: 1980s: Artist/Band: Vox Humana?
+Kenny loggins
+10
+
+Music: 1980s: Artist/Band: Voyeur?
+Kim carnes
+10
+
+Music: 1980s: Artist/Band: Wait?
+White lion
+10
+
+Music: 1980s: Artist/Band: Waiting For A Girl Like You?
+Foreigner
+10
+
+Music: 1980s: Artist/Band: Waiting For A Star To Fall?
+Boy meets girl
+10
+
+Music: 1980s: Artist/Band: Waiting On A Friend?
+Rolling stones
+10
+
+Music: 1980s: Artist/Band: Wake Me Up Before You Go Go?
+Wham!
+10
+
+Music: 1980s: Artist/Band: Wake Up Little Susie?
+Simon & garfunkel
+10
+
+Music: 1980s: Artist/Band: Wake Up?
+Graham parker & the shot
+10
+
+Music: 1980s: Artist/Band: Walk Away?
+Donna summer
+10
+
+Music: 1980s: Artist/Band: Walk Like An Egyptian?
+Bangles
+10
+
+Music: 1980s: Artist/Band: Walk Of Life?
+Dire straits
+10
+
+Music: 1980s: Artist/Band: Walk On Water?
+Eddie money
+10
+
+Music: 1980s: Artist/Band: Walk The Dinosaur?
+Was (not was)
+10
+
+Music: 1980s: Artist/Band: Walk This Way?
+Run d.m.c
+10
+
+Music: 1980s: Artist/Band: Walking Away?
+Information society
+10
+
+Music: 1980s: Artist/Band: Walking Down Your Street?
+Bangles
+10
+
+Music: 1980s: Artist/Band: Walking On A Thin Line?
+Huey lewis & the news
+10
+
+Music: 1980s: Artist/Band: Walks Like A Lady?
+Journey
+10
+
+Music: 1980s: Artist/Band: Wanna Be Startin' Somethin'?
+Michael jackson
+10
+
+Music: 1980s: Artist/Band: Wanted Dead Or Alive?
+Bon jovi
+10
+
+Music: 1980s: Artist/Band: War?
+Bruce springsteen & the e street band
+10
+
+Music: 1980s: Artist/Band: Wasted On The Way?
+Crosby stills & nash
+10
+
+Music: 1980s: Artist/Band: Watching The Wheels?
+John lennon
+10
+
+Music: 1980s: Artist/Band: We All Sleep Alone?
+Cher
+10
+
+Music: 1980s: Artist/Band: We Are The World?
+Usa for africa
+10
+
+Music: 1980s: Artist/Band: We Are The Young?
+Dan hartman
+10
+
+Music: 1980s: Artist/Band: We Belong?
+Pat benatar
+10
+
+Music: 1980s: Artist/Band: We Built This City?
+Jefferson starship
+10
+
+Music: 1980s: Artist/Band: We Connect?
+Stacey q
+10
+
+Music: 1980s: Artist/Band: We Didn't Start The Fire?
+Billy joel
+10
+
+Music: 1980s: Artist/Band: We Don't Have To?
+Jermaine stewart
+10
+
+Music: 1980s: Artist/Band: We Don't Need Another Hero?
+Tina turner
+10
+
+Music: 1980s: Artist/Band: We Got The Beat?
+Go go's
+10
+
+Music: 1980s: Artist/Band: We Live For Love?
+Pat benatar
+10
+
+Music: 1980s: Artist/Band: We Two?
+Little river band
+10
+
+Music: 1980s: Artist/Band: We Were Meant To Be Lovers?
+Photoglo
+10
+
+Music: 1980s: Artist/Band: We'll Be Together?
+Sting
+10
+
+Music: 1980s: Artist/Band: We're In This Love Together?
+Al jarreau
+10
+
+Music: 1980s: Artist/Band: We're Not Gonna Take It?
+Twisted sister
+10
+
+Music: 1980s: Artist/Band: We're Ready?
+Boston
+10
+
+Music: 1980s: Artist/Band: We've Got Tonight?
+Kenny rogers & sheena easton
+10
+
+Music: 1980s: Artist/Band: Welcome To Heartlight?
+Kenny loggins
+10
+
+Music: 1980s: Artist/Band: Welcome To The Boomtown?
+David & David
+10
+
+Music: 1980s: Artist/Band: Welcome To The Jungle?
+Guns n' roses
+10
+
+Music: 1980s: Artist/Band: West End Girls?
+Pet shop boys
+10
+
+Music: 1980s: Artist/Band: What A Wonderful World?
+Louis armstrong
+10
+
+Music: 1980s: Artist/Band: What About Love?
+Heart
+10
+
+Music: 1980s: Artist/Band: What About Love?
+'til tuesday
+10
+
+Music: 1980s: Artist/Band: What Am I Gonna Do?
+Rod stewart
+10
+
+Music: 1980s: Artist/Band: What Are We Doin' In Love?
+Dottie west/kenny rogers
+10
+
+Music: 1980s: Artist/Band: What Have I Done To Deserve This?
+Dusty springfield/petshop boys
+10
+
+Music: 1980s: Artist/Band: What Have You Done For Me Lately?
+Janet jackson
+10
+
+Music: 1980s: Artist/Band: What I Am?
+Brickell
+10
+
+Music: 1980s: Artist/Band: What I Like About You?
+Michael morales
+10
+
+Music: 1980s: Artist/Band: What Is Love?
+Howard jones
+10
+
+Music: 1980s: Artist/Band: What is the name of the disgraced duet that had three consecutive No. 1 songs in 1989 before surrendering their Grammy Award?
+Milli Vanilli
+10
+
+Music: 1980s: Artist/Band: What Kind Of Fool Am I?
+Rick springfield
+10
+
+Music: 1980s: Artist/Band: What Kind Of Fool?
+Barbra streisand & barry gibb
+10
+
+Music: 1980s: Artist/Band: What Kind Of Man Would I Be?
+Chicago
+10
+
+Music: 1980s: Artist/Band: What musician produced four self-titled albums?
+Peter gabriel
+10
+
+Music: 1980s: Artist/Band: What You Don't Know?
+Expose
+10
+
+Music: 1980s: Artist/Band: What You Get Is What You See?
+Tina turner
+10
+
+Music: 1980s: Artist/Band: What You Need?
+Inxs
+10
+
+Music: 1980s: Artist/Band: What You See Is What You Get?
+Brenda k. starr
+10
+
+Music: 1980s: Artist/Band: What's Forever For?
+Michael martin murphey
+10
+
+Music: 1980s: Artist/Band: What's Going On?
+Cyndi lauper
+10
+
+Music: 1980s: Artist/Band: What's Love Got To Do With It?
+Tina turner
+10
+
+Music: 1980s: Artist/Band: What's On Your Mind?
+Information society
+10
+
+Music: 1980s: Artist/Band: When A Man Loves A Woman?
+Bette midler
+10
+
+Music: 1980s: Artist/Band: When All Is Said And Done?
+Abba
+10
+
+Music: 1980s: Artist/Band: When Doves Cry?
+Prince
+10
+
+Music: 1980s: Artist/Band: When He Shines?
+Sheena easton
+10
+
+Music: 1980s: Artist/Band: When I Looked At Him?
+Expose
+10
+
+Music: 1980s: Artist/Band: When I See You Smile?
+Bad English
+10
+
+Music: 1980s: Artist/Band: When I Think Of You?
+Janet jackson
+10
+
+Music: 1980s: Artist/Band: When I Wanted You?
+Barry manilow
+10
+
+Music: 1980s: Artist/Band: When I'm With You?
+Sheriff
+10
+
+Music: 1980s: Artist/Band: When It's Love?
+Van halen
+10
+
+Music: 1980s: Artist/Band: When It's Over?
+Loverboy
+10
+
+Music: 1980s: Artist/Band: When She Was My Girl?
+Four tops
+10
+
+Music: 1980s: Artist/Band: When Smokey Sings?
+Abc
+10
+
+Music: 1980s: Artist/Band: When The Children Cry?
+White lion
+10
+
+Music: 1980s: Artist/Band: When The Going Gets Tough?
+Billy ocean
+10
+
+Music: 1980s: Artist/Band: When The Lights Go Out?
+Naked eyes
+10
+
+Music: 1980s: Artist/Band: When The Night Comes?
+Joe cocker
+10
+
+Music: 1980s: Artist/Band: When We Kiss?
+Bardeux
+10
+
+Music: 1980s: Artist/Band: When We Was Fab?
+George harrison
+10
+
+Music: 1980s: Artist/Band: When You Close Your Eyes?
+Night ranger
+10
+
+Music: 1980s: Artist/Band: When Your Heart Is Weak?
+Cock robin
+10
+
+Music: 1980s: Artist/Band: Where Are You Now?
+Synch
+10
+
+Music: 1980s: Artist/Band: Where Do Broken Hearts Go?
+Whitney houston
+10
+
+Music: 1980s: Artist/Band: Where Do The Children Go?
+Hooters
+10
+
+Music: 1980s: Artist/Band: Where The Streets Have No Name?
+U2
+10
+
+Music: 1980s: Artist/Band: Which group/artist sang All night long in 1980?
+Rainbow
+10
+
+Music: 1980s: Artist/Band: Which instrumentalist played 'Chariots of Fire'?
+Vengelis
+10
+
+Music: 1980s: Artist/Band: While You See A Chance?
+Steve winwood
+10
+
+Music: 1980s: Artist/Band: Whip It?
+Devo
+10
+
+Music: 1980s: Artist/Band: Whirly Girl?
+Oxo
+10
+
+Music: 1980s: Artist/Band: Whisper To A Scream?
+Icicle works
+10
+
+Music: 1980s: Artist/Band: White Horse?
+Laid back
+10
+
+Music: 1980s: Artist/Band: White Wedding?
+Billy idol
+10
+
+Music: 1980s: Artist/Band: Who Can It Be Now?
+Men at work
+10
+
+Music: 1980s: Artist/Band: Who Do You Give Your Love To?
+Michael morales
+10
+
+Music: 1980s: Artist/Band: Who Do You Think You're Foolin'?
+Donna summer
+10
+
+Music: 1980s: Artist/Band: Who Found Who?
+Jellybean
+10
+
+Music: 1980s: Artist/Band: Who had a hit in 1983 with 'True'?
+Spandau ballet
+10
+
+Music: 1980s: Artist/Band: Who had a hit in 1986 with 'Don't Leave Me This Way'?
+The communards
+10
+
+Music: 1980s: Artist/Band: Who had a massive hit in 1985 with their album born in the usa?
+Bruce springsteen
+10
+
+Music: 1980s: Artist/Band: Who released Burning heart in 1985?
+Survivor
+10
+
+Music: 1980s: Artist/Band: Who sang 'Anything For You'?
+Miami Sound Machine
+10
+
+Music: 1980s: Artist/Band: Who sang 'Can't Fight This Feeling'?
+REO Speedwagon
+10
+
+Music: 1980s: Artist/Band: Who sang 'Carribean Queen'?
+Billy Ocean
+10
+
+Music: 1980s: Artist/Band: Who sang 'Eternal Flame'?
+The Bangles
+10
+
+Music: 1980s: Artist/Band: Who sang 'Every Rose Has It's Thorn'?
+Poison
+10
+
+Music: 1980s: Artist/Band: Who sang 'Funky Town'?
+Lipps Inc
+10
+
+Music: 1980s: Artist/Band: Who sang 'Head To Toe'?
+Lisa Lisa and the cult Jam
+10
+
+Music: 1980s: Artist/Band: Who sang 'Holding Back The Years'?
+Simply Red
+10
+
+Music: 1980s: Artist/Band: Who sang 'One More Try'?
+George Michael
+10
+
+Music: 1980s: Artist/Band: Who sang 'Shakedown'?
+Bob Seger
+10
+
+Music: 1980s: Artist/Band: Who sang 'Stuck With You'?
+Huey Lewis and the news
+10
+
+Music: 1980s: Artist/Band: Who sang 'The One That You Love'?
+Air Supply
+10
+
+Music: 1980s: Artist/Band: Who sang 'The Way It Is'?
+Bruce Hornsby and the range
+10
+
+Music: 1980s: Artist/Band: Who sang 'Total Eclipse Of The Heart'?
+Bonnie Tyler
+10
+
+Music: 1980s: Artist/Band: Who sang 'Two Hearts'?
+Phil Collins
+10
+
+Music: 1980s: Artist/Band: Who sang 'When I'm With You'?
+Sheriff 
+10
+
+Music: 1980s: Artist/Band: Who sang True?
+Spandau Ballet
+10
+
+Music: 1980s: Artist/Band: Who teamed up with Jennifer Warnes on the song '(I've) Had The Time Of My Life'?
+Bill Medley
+10
+
+Music: 1980s: Artist/Band: Who was the first country star to top the Top-40 charts in the 1980s?
+Kenny Rogers
+10
+
+Music: 1980s: Artist/Band: Who was the teacher who saw success with 'Shake You Down,' a No. 1 ballad in 1987?
+Gregory Abbott
+10
+
+Music: 1980s: Artist/Band: Who Wears These Shoes?
+Elton john
+10
+
+Music: 1980s: Artist/Band: Who Will You Run To?
+Heart
+10
+
+Music: 1980s: Artist/Band: Who'll Be The Fool Tonight?
+Larsen feiten band
+10
+
+Music: 1980s: Artist/Band: Who's Crying Now?
+Journey
+10
+
+Music: 1980s: Artist/Band: Who's Holding Donna Now?
+Debarge
+10
+
+Music: 1980s: Artist/Band: Who's Johnny?
+El debarge
+10
+
+Music: 1980s: Artist/Band: Who's Making Love?
+Blues brothers
+10
+
+Music: 1980s: Artist/Band: Who's That Girl?
+Eurythmics
+10
+
+Music: 1980s: Artist/Band: Who's That Girl?
+Madonna
+10
+
+Music: 1980s: Artist/Band: Who's Zoomin' Who?
+Aretha franklin
+10
+
+Music: 1980s: Artist/Band: Why Can't I Have You?
+Cars
+10
+
+Music: 1980s: Artist/Band: Why Can't This Be Love?
+Van halen
+10
+
+Music: 1980s: Artist/Band: Why Do Fools Fall In Love?
+Diana ross
+10
+
+Music: 1980s: Artist/Band: Why Me?
+Irene cara
+10
+
+Music: 1980s: Artist/Band: Why Me?
+Styx
+10
+
+Music: 1980s: Artist/Band: Why Not Me?
+Fred knoblock
+10
+
+Music: 1980s: Artist/Band: Why You Treat Me So Bad?
+Club nouveau
+10
+
+Music: 1980s: Artist/Band: Wild Thing?
+Tone loc
+10
+
+Music: 1980s: Artist/Band: Wild Wild Life?
+Talking heads
+10
+
+Music: 1980s: Artist/Band: Wild World?
+Maxi priest
+10
+
+Music: 1980s: Artist/Band: Wild, Wild West?
+Escape club
+10
+
+Music: 1980s: Artist/Band: Will You Still Love Me?
+Chicago
+10
+
+Music: 1980s: Artist/Band: Wind Beneath My Wings?
+Bette midler
+10
+
+Music: 1980s: Artist/Band: Winds Of Change?
+Jefferson starship
+10
+
+Music: 1980s: Artist/Band: Winning?
+Santana
+10
+
+Music: 1980s: Artist/Band: Wipeout?
+Fat boys
+10
+
+Music: 1980s: Artist/Band: Wishing Well?
+Terence trent d'arby
+10
+
+Music: 1980s: Artist/Band: Wishing?
+Flock of seagulls
+10
+
+Music: 1980s: Artist/Band: With Every Beat Of My Heart?
+Taylor dayne
+10
+
+Music: 1980s: Artist/Band: With Or Without You?
+U2
+10
+
+Music: 1980s: Artist/Band: With You I'm Born Again?
+Billy preston
+10
+
+Music: 1980s: Artist/Band: Without You?
+Franke & the knockouts
+10
+
+Music: 1980s: Artist/Band: Woman In Love?
+Barbra streisand
+10
+
+Music: 1980s: Artist/Band: Woman?
+John lennon
+10
+
+Music: 1980s: Artist/Band: Wondering Where The Lions Are?
+Bruce cockburn
+10
+
+Music: 1980s: Artist/Band: Wonderland?
+Commodores
+10
+
+Music: 1980s: Artist/Band: Word Up?
+Cameo
+10
+
+Music: 1980s: Artist/Band: Words Get In The Way?
+Miami sound machine
+10
+
+Music: 1980s: Artist/Band: Working For The Weekend?
+Loverboy
+10
+
+Music: 1980s: Artist/Band: Working My Way Back To You?
+Spinners
+10
+
+Music: 1980s: Artist/Band: Wot's It To Ya?
+Robbie nevil
+10
+
+Music: 1980s: Artist/Band: Would I Lie To You?
+Eurythmics
+10
+
+Music: 1980s: Artist/Band: Wrack My Brain?
+Ringo starr
+10
+
+Music: 1980s: Artist/Band: Wrap Her Up?
+Elton john
+10
+
+Music: 1980s: Artist/Band: Wrapped Around Your Finger?
+Police
+10
+
+Music: 1980s: Artist/Band: Xanadu?
+Olivia newton john
+10
+
+Music: 1980s: Artist/Band: Yankee Rose?
+David lee roth
+10
+
+Music: 1980s: Artist/Band: Yeah, Yeah, Yeah?
+Judson spence
+10
+
+Music: 1980s: Artist/Band: Years?
+Wayne newton
+10
+
+Music: 1980s: Artist/Band: Yesterday's Songs?
+Neil diamond
+10
+
+Music: 1980s: Artist/Band: You And I?
+Eddie rabbitt
+10
+
+Music: 1980s: Artist/Band: You Are My Lady?
+Freddie jackson
+10
+
+Music: 1980s: Artist/Band: You Are The Girl?
+Cars
+10
+
+Music: 1980s: Artist/Band: You Are?
+Lionel richie
+10
+
+Music: 1980s: Artist/Band: You Be Illin'?
+Run d.m.c
+10
+
+Music: 1980s: Artist/Band: You Belong To The City?
+Glenn frey
+10
+
+Music: 1980s: Artist/Band: You Better You Bet?
+Who
+10
+
+Music: 1980s: Artist/Band: You Can Call Me Al?
+Paul simon
+10
+
+Music: 1980s: Artist/Band: You Can Do Magic?
+America
+10
+
+Music: 1980s: Artist/Band: You Can't Get What You Want?
+Joe jackson
+10
+
+Music: 1980s: Artist/Band: You Can't Hurry Love?
+Phil collins
+10
+
+Music: 1980s: Artist/Band: You Could Have Been With Me?
+Sheena easton
+10
+
+Music: 1980s: Artist/Band: You Could Take My Heart Away?
+Silver condor
+10
+
+Music: 1980s: Artist/Band: You Don't Know?
+Scarlett & black
+10
+
+Music: 1980s: Artist/Band: You Don't Want Me Anymore?
+Steel breeze
+10
+
+Music: 1980s: Artist/Band: You Dropped A Bomb On Me?
+Gap band
+10
+
+Music: 1980s: Artist/Band: You Give Good Love?
+Whitney houston
+10
+
+Music: 1980s: Artist/Band: You Give Love A Bad Name?
+Bon jovi
+10
+
+Music: 1980s: Artist/Band: You Got It (The Right Stuff)?
+New kids on the block
+10
+
+Music: 1980s: Artist/Band: You Got It All?
+Jets
+10
+
+Music: 1980s: Artist/Band: You Got It?
+Roy orbison
+10
+
+Music: 1980s: Artist/Band: You Got Lucky?
+Tom petty & the heartbreakers
+10
+
+Music: 1980s: Artist/Band: You Keep Me Hangin' On?
+Kim wilde
+10
+
+Music: 1980s: Artist/Band: You Keep Runnin' Away?
+38 special
+10
+
+Music: 1980s: Artist/Band: You Know I Love You Don't You?
+Howard jones
+10
+
+Music: 1980s: Artist/Band: You Know That I Love You?
+Santana
+10
+
+Music: 1980s: Artist/Band: You Make My Dreams?
+Daryl hall & john oates
+10
+
+Music: 1980s: Artist/Band: You May Be Right?
+Billy joel
+10
+
+Music: 1980s: Artist/Band: You Might Think?
+Cars
+10
+
+Music: 1980s: Artist/Band: You Saved My Soul?
+Burton cummings
+10
+
+Music: 1980s: Artist/Band: You Shook Me All Night Long?
+Ac/dc
+10
+
+Music: 1980s: Artist/Band: You Should Be Mine?
+Jeffrey osborne
+10
+
+Music: 1980s: Artist/Band: You Should Hear How She Talks About You?
+Melissa Manchester
+10
+
+Music: 1980s: Artist/Band: You Spin Me Around?
+Dead or alive
+10
+
+Music: 1980s: Artist/Band: You'll Accomp'ny Me?
+Bob seger
+10
+
+Music: 1980s: Artist/Band: You're A Friend Of Mine?
+Jackson browne
+10
+
+Music: 1980s: Artist/Band: You're Driving Me Out Of My Mind?
+Little river band
+10
+
+Music: 1980s: Artist/Band: You're My Girl?
+Franke & the knockouts
+10
+
+Music: 1980s: Artist/Band: You're Not Alone?
+Chicago
+10
+
+Music: 1980s: Artist/Band: You're Only Human?
+Billy joel
+10
+
+Music: 1980s: Artist/Band: You're Supposed To Keep You Love For Me?
+Jermaine jackson
+10
+
+Music: 1980s: Artist/Band: You're The Inspiration?
+Chicago
+10
+
+Music: 1980s: Artist/Band: You're The Only Woman?
+Ambrosia
+10
+
+Music: 1980s: Artist/Band: You've Lost That Lovin' Feeling?
+Daryl hall & john oates
+10
+
+Music: 1980s: Artist/Band: Young Love?
+Air supply
+10
+
+Music: 1980s: Artist/Band: Young Turks?
+Rod stewart
+10
+
+Music: 1980s: Artist/Band: Your Imagination?
+Daryl hall & john oates
+10
+
+Music: 1980s: Artist/Band: Your Love Is Driving Me Crazy?
+Sammy hagar
+10
+
+Music: 1980s: Artist/Band: Your Love?
+Outfield
+10
+
+Music: 1980s: Artist/Band: Your Mama Don't Dance?
+Poison
+10
+
+Music: 1980s: Artist/Band: Your Wildest Dreams?
+Moody blues
+10
+
+Music: 1980s: Girl's name in the title of a 1986 #1 from Boston...?
+Amanda
+10
+
+Music: 1980s: Guns N' Roses hit #1 in 1988 with this song...?
+Sweet child o mine
+10
+
+Music: 1980s: How many No. 1 songs did Paula Abdul have in the 1980s?
+Three
+10
+
+Music: 1980s: How many No. 1 songs were on Michael Jackson's 'Thriller' album?
+Two
+10
+
+Music: 1980s: In 1982 which group declared they were 'hungry like the wolf'?
+Duran duran
+10
+
+Music: 1980s: In 1983 #1 song by Dexy's Midnight Runners?
+Come on eileen
+10
+
+Music: 1980s: In 1983, Frank Zappa wrote an anti ____ song
+Cocaine
+10
+
+Music: 1980s: In 1983, who sang Domo Origato Mr Roboto?
+Styx
+10
+
+Music: 1980s: In 1989 Michael Bolton won a Grammy with this song that asked a question?
+How am i supposed to live without you
+10
+
+Music: 1980s: KC and the Sunshine Band's last #1, in 1980...?
+Please dont go
+10
+
+Music: 1980s: Michael Jackson sang this song in 1987?
+Smooth criminal
+10
+
+Music: 1980s: Song:  Boy versus girl in the world series of love?
+U got the look
+10
+
+Music: 1980s: Song:  Didn't get to tell him all the things I had to say?
+The living years
+10
+
+Music: 1980s: Song:  Don't go for second best, baby?
+Express yourself
+10
+
+Music: 1980s: Song:  I'd sacrifice tomorrow just to have you here today?
+Seasons change
+10
+
+Music: 1980s: Song:  I'm never gonna dance again?
+Careless whisper
+10
+
+Music: 1980s: Song: ____ 'O' The Times - Prince
+Sign
+10
+
+Music: 1980s: Song: ____ (Clock Of The Heart) - Culture Club
+Time
+10
+
+Music: 1980s: Song: ____ About You - Level 42
+Something
+10
+
+Music: 1980s: Song: ____ After Time - Cyndi Lauper
+Time
+10
+
+Music: 1980s: Song: ____ All My Love For You - Whitney Houston
+Saving
+10
+
+Music: 1980s: Song: ____ All Odds (Take A Look At Me Now) - Phil Collins
+Against
+10
+
+Music: 1980s: Song: ____ And Clover - Joan Jett & The Blackhearts
+Crimson
+10
+
+Music: 1980s: Song: ____ And Ivory - Paul Mccartney & Stevie Wonder
+Ebony
+10
+
+Music: 1980s: Song: ____ Arms - Journey
+Open
+10
+
+Music: 1980s: Song: ____ At Night - Corey Hart
+Sunglasses
+10
+
+Music: 1980s: Song: ____ Baby - Jackson Browne
+Somebody's
+10
+
+Music: 1980s: Song: ____ Be Startin' Somethin' - Michael Jackson
+Wanna
+10
+
+Music: 1980s: Song: ____ Blue - Madonna
+True
+10
+
+Music: 1980s: Song: ____ By Me - Ben E. King
+Stand
+10
+
+Music: 1980s: Song: ____ Can It Be Now? - Men At Work
+Who
+10
+
+Music: 1980s: Song: ____ Can Only Get Better - Howard Jones
+Things
+10
+
+Music: 1980s: Song: ____ Can't This Be Love - Van Halen
+Why
+10
+
+Music: 1980s: Song: ____ Carry - 'Til Tuesday
+Voices
+10
+
+Music: 1980s: Song: ____ Cat Strut - Stray Cats
+Stray
+10
+
+Music: 1980s: Song: ____ Change - Expose
+Seasons
+10
+
+Music: 1980s: Song: ____ Christian - Night Ranger
+Sister
+10
+
+Music: 1980s: Song: ____ Dance - Pointer Sisters
+Neutron
+10
+
+Music: 1980s: Song: ____ Days - Bruce Springsteen
+Glory
+10
+
+Music: 1980s: Song: ____ Dead Ahead - Boz Scaggs
+Breakdown
+10
+
+Music: 1980s: Song: ____ Do Me Like That - Tom Petty & The Heartbreakers
+Don't
+10
+
+Music: 1980s: Song: ____ Don't Preach - Madonna
+Papa
+10
+
+Music: 1980s: Song: ____ Doves Cry - Prince
+When
+10
+
+Music: 1980s: Song: ____ Down The House - Talking Heads
+Burning
+10
+
+Music: 1980s: Song: ____ Eyes - Eric Carmen
+Hungry
+10
+
+Music: 1980s: Song: ____ For A Day - Thompson Twins
+King
+10
+
+Music: 1980s: Song: ____ For You - Gloria Estefan & Miami Sound Machine
+Anything
+10
+
+Music: 1980s: Song: ____ Girl - Lionel Richie
+Ballerina
+10
+
+Music: 1980s: Song: ____ Girl - Madonna
+Material
+10
+
+Music: 1980s: Song: ____ Girls (Need Love Too) - Samantha Fox
+Naughty
+10
+
+Music: 1980s: Song: ____ Go With Me - Expose
+Come
+10
+
+Music: 1980s: Song: ____ Gonna Give You Up - Rick Astley
+Never
+10
+
+Music: 1980s: Song: ____ Guys Have All The Luck - Rod Stewart
+Some
+10
+
+Music: 1980s: Song: ____ Have Fun Tonight - Wang Chung
+Everybody
+10
+
+Music: 1980s: Song: ____ Heart - Bruce Springsteen
+Hungry
+10
+
+Music: 1980s: Song: ____ I Am (Just When I Thought I Was Over You) - Air Supply
+Here
+10
+
+Music: 1980s: Song: ____ I Lie To You? - Eurythmics
+Would
+10
+
+Music: 1980s: Song: ____ I'm In Love - Eddie Money
+Think
+10
+
+Music: 1980s: Song: ____ In Love - Jackson Browne
+Lawyers
+10
+
+Music: 1980s: Song: ____ In The Dark - Bruce Springsteen
+Dancing
+10
+
+Music: 1980s: Song: ____ In The Stream - Kenny Rogers & Dolly Parton
+Islands
+10
+
+Music: 1980s: Song: ____ In The U.S.A. - Bruce Springsteen
+Born
+10
+
+Music: 1980s: Song: ____ In Your Sleep - The Romantics
+Talking
+10
+
+Music: 1980s: Song: ____ Inside - INXS
+Devil
+10
+
+Music: 1980s: Song: ____ Inside Myself - Gino Vannelli
+Living
+10
+
+Music: 1980s: Song: ____ Is A Place On Earth - Belinda Carlisle
+Heaven
+10
+
+Music: 1980s: Song: ____ Is In Control (Finger On The Trigger) - Donna Summer
+Love
+10
+
+Music: 1980s: Song: ____ It - Devo
+Whip
+10
+
+Music: 1980s: Song: ____ It - Michael Jackson
+Beat
+10
+
+Music: 1980s: Song: ____ It All Away - Genesis
+Throwing
+10
+
+Music: 1980s: Song: ____ It Away - Paul Mccartney
+Take
+10
+
+Music: 1980s: Song: ____ It Like It Is - Heart
+Tell
+10
+
+Music: 1980s: Song: ____ It Now - New Edition
+Cool
+10
+
+Music: 1980s: Song: ____ It To Me Gently - Juice Newton
+Break
+10
+
+Music: 1980s: Song: ____ It Up - The Cars
+Shake
+10
+
+Music: 1980s: Song: ____ It Up For Your Love - Delbert Mcclinton
+Giving
+10
+
+Music: 1980s: Song: ____ Like The Wolf - Duran Duran
+Hungry
+10
+
+Music: 1980s: Song: ____ Lives - Phil Collins & Marilyn Martin
+Separate
+10
+
+Music: 1980s: Song: ____ Lost That Lovin' Feeling - Daryl Hall & John Oates
+You've
+10
+
+Music: 1980s: Song: ____ Love - Diana Ross & Lionel Richie
+Endless
+10
+
+Music: 1980s: Song: ____ Love Of All - Whitney Houston
+Greatest
+10
+
+Music: 1980s: Song: ____ Me Now - Thompson Twins
+Hold
+10
+
+Music: 1980s: Song: ____ More Night - Phil Collins
+One
+10
+
+Music: 1980s: Song: ____ Much Time On My Hands - Styx
+Too
+10
+
+Music: 1980s: Song: ____ My Way Back To You/Forgive Me Girl - Spinners
+Working
+10
+
+Music: 1980s: Song: ____ Of A Lonely Heart - Yes
+Owner
+10
+
+Music: 1980s: Song: ____ Of Heart - Cyndi Lauper
+Change
+10
+
+Music: 1980s: Song: ____ Of Love - Aretha Franklin
+Freeway
+10
+
+Music: 1980s: Song: ____ Of Shock - The Jacksons
+State
+10
+
+Music: 1980s: Song: ____ Of The Airwaves - Charlie Dore
+Pilot
+10
+
+Music: 1980s: Song: ____ Of The County - Kenny Rogers
+Coward
+10
+
+Music: 1980s: Song: ____ Of The Heart - Rick Springfield
+Affair
+10
+
+Music: 1980s: Song: ____ Ol' Night - John Cougar Mellencamp
+Lonely
+10
+
+Music: 1980s: Song: ____ On Feel The Noize - Quiet Riot
+Cum
+10
+
+Music: 1980s: Song: ____ On Me - A-Ha
+Take
+10
+
+Music: 1980s: Song: ____ On The Ceiling - Lionel Richie
+Dancing
+10
+
+Music: 1980s: Song: ____ On The Way - Crosby, Stills & Nash
+Wasted
+10
+
+Music: 1980s: Song: ____ On To The Nights - Richard Marx
+Hold
+10
+
+Music: 1980s: Song: ____ On You - Lionel Richie
+Stuck
+10
+
+Music: 1980s: Song: ____ On You - The Jets
+Crush
+10
+
+Music: 1980s: Song: ____ One Is To Blame - Howard Jones
+No
+10
+
+Music: 1980s: Song: ____ Queen (No More Love On The Run) - Billy Ocean
+Caribbean
+10
+
+Music: 1980s: Song: ____ Rain - Bruce Hornsby & The Range
+Mandolin
+10
+
+Music: 1980s: Song: ____ Shade Of Winter - Bangles
+Hazy
+10
+
+Music: 1980s: Song: ____ She Comes - The Cars
+Tonight
+10
+
+Music: 1980s: Song: ____ She Wants - Wham!
+Everything
+10
+
+Music: 1980s: Song: ____ She Was My Girl - Four Tops
+When
+10
+
+Music: 1980s: Song: ____ Sheila - Ready For The World
+Oh
+10
+
+Music: 1980s: Song: ____ Than I Can Say - Leo Sayer
+More
+10
+
+Music: 1980s: Song: ____ That Girl - Madonna
+Who's
+10
+
+Music: 1980s: Song: ____ The Going Gets Tough, The Tough Get Going - Billy Ocean
+When
+10
+
+Music: 1980s: Song: ____ The Wind - Bob Seger
+Against
+10
+
+Music: 1980s: Song: ____ The Years - Kenny Rogers
+Through
+10
+
+Music: 1980s: Song: ____ This Town - Stray Cats
+Rock
+10
+
+Music: 1980s: Song: ____ This Way - Run D.M.C
+Walk
+10
+
+Music: 1980s: Song: ____ Time - Peter Gabriel
+Big
+10
+
+Music: 1980s: Song: ____ To Heaven - Breathe
+Hands
+10
+
+Music: 1980s: Song: ____ To Love - Robert Palmer
+Addicted
+10
+
+Music: 1980s: Song: ____ Up In You - .38 Special
+Caught
+10
+
+Music: 1980s: Song: ____ Vice Theme - Jon Hammer
+Miami
+10
+
+Music: 1980s: Song: ____ View To A Kill - Duran Duran
+A
+10
+
+Music: 1980s: Song: ____ Wings - Mr. Mister
+Broken
+10
+
+Music: 1980s: Song: ____ With The Night - Lionel Richie
+Running
+10
+
+Music: 1980s: Song: ____ Without A Face - Billy Idol
+Eyes
+10
+
+Music: 1980s: Song: ____ You - John Waite
+Missing
+10
+
+Music: 1980s: Song: ____ You (Forget About Me) - Simple Minds
+Don't
+10
+
+Music: 1980s: Song: ____ You Believe In Love - Huey Lewis & The News
+Do
+10
+
+Music: 1980s: Song: ____ Your Hands On Me - Thompson Twins
+Lay
+10
+
+Music: 1980s: Song: ____ Zone - Kenny Loggins
+Danger
+10
+
+Music: 1980s: Song: '...i got a crazy teacher, he wears dark glasses...' what is the name of this 1980's timbuk 3 smash hit?
+Future's so bright i gotta wear shades
+10
+
+Music: 1980s: Song: '65 Love Affair - ____Davis
+Paul
+10
+
+Music: 1980s: Song: 'til Tuesday?
+Voices carry
+10
+
+Music: 1980s: Song: (I Just) Died In Your Arms - ____Crew
+Cutting
+10
+
+Music: 1980s: Song: (I've Had) The ____Of My Life - Bill Medley & Jennifer Warnes
+Time
+10
+
+Music: 1980s: Song: (Keep Feeling) ____- Human League
+Fascination
+10
+
+Music: 1980s: Song: (Oh) Pretty ____- Van Halen
+Woman
+10
+
+Music: 1980s: Song: (She's) Sexy + 17 - ____Cats
+Stray
+10
+
+Music: 1980s: Song: (There's) No Gettin' Over Me - ____Milsap
+Ronnie
+10
+
+Music: 1980s: Song: #1 ballad by Bryan Adams from 1985?
+Heaven
+10
+
+Music: 1980s: Song: 1980 Rainbow song?
+All night long
+10
+
+Music: 1980s: Song: 1985 Starship record?
+Nothing's gonna stop us now
+10
+
+Music: 1980s: Song: 1987 spoof of Star Trek which hit #1 in the UK?
+Star trekkin
+10
+
+Music: 1980s: Song: 38 Special?
+Second chance
+10
+
+Music: 1980s: Song: 867-5309/Jenny - ____Tutone
+Tommy
+10
+
+Music: 1980s: Song: 9 To 5 - ____Parton
+Dolly
+10
+
+Music: 1980s: Song: 99 Luftballons?
+Nena
+10
+
+Music: 1980s: Song: A Different Corner - George ____
+Michael
+10
+
+Music: 1980s: Song: A Little In Love - ____Richard
+Cliff
+10
+
+Music: 1980s: Song: A Woman Needs Love - Ray Parker Jr. & ____
+Raydio
+10
+
+Music: 1980s: Song: A-ha?
+Take on me
+10
+
+Music: 1980s: Song: ABC?
+Poison arrow
+10
+
+Music: 1980s: Song: ABC?
+The look of love
+10
+
+Music: 1980s: Song: Abracadabra - Steve ____Band
+Miller
+10
+
+Music: 1980s: Song: Adam Ant?
+Goody two shoes
+10
+
+Music: 1980s: Song: Adult ____- Daryl Hall & John Oates
+Education
+10
+
+Music: 1980s: Song: Africa?
+Toto
+10
+
+Music: 1980s: Song: After the Fire?
+Der kommissar
+10
+
+Music: 1980s: Song: Ain't Even ____With The Night - John Cougar
+Done
+10
+
+Music: 1980s: Song: Air Supply?
+Lost in love
+10
+
+Music: 1980s: Song: Air Supply?
+Making love out of nothing at all
+10
+
+Music: 1980s: Song: Alan Parsons Project?
+Don't answer me
+10
+
+Music: 1980s: Song: Alan Parsons Project?
+Eye in the sky
+10
+
+Music: 1980s: Song: Alan Parsons Project?
+Time
+10
+
+Music: 1980s: Song: Alive And Kicking - Simple ____
+Minds
+10
+
+Music: 1980s: Song: All ____- Christopher Cross
+Right
+10
+
+Music: 1980s: Song: All ____Long (All Night) - Lionel Richie
+Night
+10
+
+Music: 1980s: Song: All ____Out - Lisa Lisa & Cult Jam W/ Full Force
+Cried
+10
+
+Music: 1980s: Song: All I Need - Jack ____
+Wagner
+10
+
+Music: 1980s: Song: All I Need Is A ____- Mike + The Mechanics
+Miracle
+10
+
+Music: 1980s: Song: All Out Of ____- Air Supply
+Love
+10
+
+Music: 1980s: Song: All Over The World - Electric Light ____
+Orchastra
+10
+
+Music: 1980s: Song: All She ____To Do Is Dance - Don Henley
+Wants
+10
+
+Music: 1980s: Song: All Those Years Ago - ____Harrison
+George
+10
+
+Music: 1980s: Song: All Through The Night - ____Lauper
+Cyndi
+10
+
+Music: 1980s: Song: All you could do was wish on a four-leaf clover?
+Foolish beat
+10
+
+Music: 1980s: Song: All your life is channel 13?
+Pressure
+10
+
+Music: 1980s: Song: Almost ____- Mike Reno & Ann Wilson
+Paradise
+10
+
+Music: 1980s: Song: Alone?
+Heart
+10
+
+Music: 1980s: Song: Alphaville?
+Forever young
+10
+
+Music: 1980s: Song: Always ____There To Remind Me - Naked Eyes
+Something
+10
+
+Music: 1980s: Song: Always On My Mind - ____Nelson
+Willie
+10
+
+Music: 1980s: Song: Amanda?
+Boston
+10
+
+Music: 1980s: Song: Ambrosia?
+Biggest part of me
+10
+
+Music: 1980s: Song: America?
+Right before your eyes
+10
+
+Music: 1980s: Song: America?
+You can do magic
+10
+
+Music: 1980s: Song: An ____Dream - Dirt Band
+American
+10
+
+Music: 1980s: Song: An ____Man - Billy Joel
+Innocent
+10
+
+Music: 1980s: Song: Angel Of The ____- Juice Newton
+Morning
+10
+
+Music: 1980s: Song: Animotion?
+Obsession
+10
+
+Music: 1980s: Song: Another ____In The Wall - Pink Floyd
+Brick
+10
+
+Music: 1980s: Song: Another One Bites The ____- Queen
+Dust
+10
+
+Music: 1980s: Song: Arthur's ____(Best That You Can Do) - Christer Cross
+Theme
+10
+
+Music: 1980s: Song: Asia?
+Heat of the moment
+10
+
+Music: 1980s: Song: Asia?
+Only time will tell
+10
+
+Music: 1980s: Song: At This ____- Billy Vera & The Beaters
+Moment
+10
+
+Music: 1980s: Song: Atlantic Starr?
+Always
+10
+
+Music: 1980s: Song: Atlantic Starr?
+Always
+10
+
+Music: 1980s: Song: Axel F - Harold ____
+Faltermeyer
+10
+
+Music: 1980s: Song: B-52s?
+Love shack
+10
+
+Music: 1980s: Song: B-52s?
+Rock lobster
+10
+
+Music: 1980s: Song: Baby Come To Me - ____Austin W/ James Ingram
+Patty
+10
+
+Music: 1980s: Song: Baby Love?
+Regina
+10
+
+Music: 1980s: Song: Baby, I Love Your Way/Freebird Medley - Will To ____
+Power
+10
+
+Music: 1980s: Song: Back On The Chain Gang?
+Pretenders
+10
+
+Music: 1980s: Song: Bad ____- Bon Jovi
+Medicine
+10
+
+Music: 1980s: Song: Bad Boy - Miami Sound ____
+Machine
+10
+
+Music: 1980s: Song: Bad English?
+When i see you smile
+10
+
+Music: 1980s: Song: Bananarama?
+Cruel summer
+10
+
+Music: 1980s: Song: Bananarama?
+Venus
+10
+
+Music: 1980s: Song: Band-Aid?
+Do they know it's christmas?
+10
+
+Music: 1980s: Song: Bangles?
+Manic monday
+10
+
+Music: 1980s: Song: Bangles?
+Walk like an egyptian
+10
+
+Music: 1980s: Song: Barry Manilow?
+Copacabana
+10
+
+Music: 1980s: Song: Barry Manilow?
+Read 'em and weep
+10
+
+Music: 1980s: Song: Basia?
+Cruising for bruising
+10
+
+Music: 1980s: Song: Basia?
+Time and tide
+10
+
+Music: 1980s: Song: Be Near ____- ABC
+Me
+10
+
+Music: 1980s: Song: Beach Boys comeback hit in 1988 that went to #1...?
+Kokomo
+10
+
+Music: 1980s: Song: Beach Boys?
+Kokomo
+10
+
+Music: 1980s: Song: Being With You - ____Robinson
+Smokey
+10
+
+Music: 1980s: Song: Belinda Carlisle?
+Circle in the sand
+10
+
+Music: 1980s: Song: Belinda Carlisle?
+Mad about you
+10
+
+Music: 1980s: Song: Benny Mardones?
+Into the night
+10
+
+Music: 1980s: Song: Berlin?
+Take my breath away
+10
+
+Music: 1980s: Song: Bertie Higgins?
+Key largo
+10
+
+Music: 1980s: Song: Bette ____Eyes - Kim Carnes
+Davis
+10
+
+Music: 1980s: Song: Bette Midler?
+The rose
+10
+
+Music: 1980s: Song: Better Be Good To Me - Tina ____
+Turner
+10
+
+Music: 1980s: Song: Better Love ____Time - Dr. Hook
+Next
+10
+
+Music: 1980s: Song: Big ____- Fleetwood Mac
+Love
+10
+
+Music: 1980s: Song: Big Country?
+In a big country
+10
+
+Music: 1980s: Song: Biggest Part Of Me?
+Ambrosia
+10
+
+Music: 1980s: Song: Bill Medley & Jennifer Warnes?
+(i've had) the Time of My Life
+10
+
+Music: 1980s: Song: Billie Jean - Michael ____
+Jackson
+10
+
+Music: 1980s: Song: Billy Idol?
+Eyes without a face
+10
+
+Music: 1980s: Song: Billy Idol?
+White wedding
+10
+
+Music: 1980s: Song: Billy Joel?
+Allentown
+10
+
+Music: 1980s: Song: Billy Joel?
+Allentown
+10
+
+Music: 1980s: Song: Billy Joel?
+I go to extremes
+10
+
+Music: 1980s: Song: Billy Joel?
+It's still rock and roll to me
+10
+
+Music: 1980s: Song: Billy Joel?
+Leave a tender moment alone
+10
+
+Music: 1980s: Song: Billy Joel?
+The longest time
+10
+
+Music: 1980s: Song: Billy Joel?
+We didn't start the fire
+10
+
+Music: 1980s: Song: Billy Ocean?
+Loverboy
+10
+
+Music: 1980s: Song: Billy Squier?
+Everybody wants you
+10
+
+Music: 1980s: Song: Billy Squier?
+The stroke
+10
+
+Music: 1980s: Song: Billy Vera & the Beaters?
+At this moment
+10
+
+Music: 1980s: Song: Blondie?
+Rapture
+10
+
+Music: 1980s: Song: Blondie?
+Rapture
+10
+
+Music: 1980s: Song: Blondie?
+The tide is high
+10
+
+Music: 1980s: Song: Blue ____- Elton John
+Eyes
+10
+
+Music: 1980s: Song: Blue Jean - ____Bowie
+David
+10
+
+Music: 1980s: Song: Bob Seger & the Silver Bullet Band?
+Against the Wind
+10
+
+Music: 1980s: Song: Bob Seger & the Silver Bullet Band?
+Old time rock & Roll
+10
+
+Music: 1980s: Song: Bob Seger & the Silver Bullet Band?
+Shame on the Moon
+10
+
+Music: 1980s: Song: Bob Seger?
+Shakedown
+10
+
+Music: 1980s: Song: Bobby McFerrin?
+Don't worry, be happy
+10
+
+Music: 1980s: Song: Bon Jovi?
+Livin' on a prayer
+10
+
+Music: 1980s: Song: Bon Jovi?
+Never say goodbye
+10
+
+Music: 1980s: Song: Bonnie Tyler?
+Total eclipse of the heart
+10
+
+Music: 1980s: Song: Boston?
+Amanda
+10
+
+Music: 1980s: Song: Bourgeois Tagg?
+I don't mind at all
+10
+
+Music: 1980s: Song: Boy From New York City - ____Transfer
+Manhattan
+10
+
+Music: 1980s: Song: Boys Don't Cry?
+I wanna be a cowboy
+10
+
+Music: 1980s: Song: Brass In ____(I'm Special) - The Pretenders
+Pocket
+10
+
+Music: 1980s: Song: Break My Stride - Mathew ____
+Wilder
+10
+
+Music: 1980s: Song: Breakin'...There's No ____Us - Ollie & Jerry
+Stopping
+10
+
+Music: 1980s: Song: Breakout - Swing ____Sister
+Out
+10
+
+Music: 1980s: Song: Breathe?
+Hands to heaven
+10
+
+Music: 1980s: Song: Brilliant Disguise - Bruce ____
+Springsteen
+10
+
+Music: 1980s: Song: Bruce Hornsby & the Range?
+Mandolin rain
+10
+
+Music: 1980s: Song: Bruce Hornsby & the Range?
+The way it is
+10
+
+Music: 1980s: Song: Bruce Springsteen?
+Brilliant disguise
+10
+
+Music: 1980s: Song: Bruce Springsteen?
+Hungry heart
+10
+
+Music: 1980s: Song: Bruce Springsteen?
+I'm on fire
+10
+
+Music: 1980s: Song: Bryan Adams?
+Heaven
+10
+
+Music: 1980s: Song: Bryan Adams?
+Heaven
+10
+
+Music: 1980s: Song: Bryan Adams?
+Straight from the heart
+10
+
+Music: 1980s: Song: Bryan Adams?
+Summer of '69
+10
+
+Music: 1980s: Song: Burning ____- Survivor
+Heart
+10
+
+Music: 1980s: Song: C'est La Vie - ____Nevil
+Robbie
+10
+
+Music: 1980s: Song: California Girls - ____Lee Roth
+David
+10
+
+Music: 1980s: Song: Call Me?
+Blondie
+10
+
+Music: 1980s: Song: Can't Fight ____Feeling - REO Speedwagon
+This
+10
+
+Music: 1980s: Song: Can't We Try - Dan ____W/ Vonda Sheppard
+Hill
+10
+
+Music: 1980s: Song: Can't you see, you belong to me?
+Every breath you take
+10
+
+Music: 1980s: Song: Careless ____- Wham!
+Whisper
+10
+
+Music: 1980s: Song: Carrie?
+Europe
+10
+
+Music: 1980s: Song: Cars - Gary ____
+Newman
+10
+
+Music: 1980s: Song: Cars?
+Drive
+10
+
+Music: 1980s: Song: Cars?
+My best friend's girl
+10
+
+Music: 1980s: Song: Cars?
+You might think
+10
+
+Music: 1980s: Song: Casanova?
+Levert
+10
+
+Music: 1980s: Song: Catch ____(I'm Falling) - Pretty Poison
+Me
+10
+
+Music: 1980s: Song: Causing A ____- Madonna
+Commotion
+10
+
+Music: 1980s: Song: Centerfold - J. Geils ____
+Band
+10
+
+Music: 1980s: Song: Chariots Of Fire?
+Vangelis
+10
+
+Music: 1980s: Song: Charlie Sexton?
+Hold me
+10
+
+Music: 1980s: Song: Cheap Trick?
+The flame
+10
+
+Music: 1980s: Song: Chicago?
+Hard habit to break
+10
+
+Music: 1980s: Song: Chicago?
+Will you still love me
+10
+
+Music: 1980s: Song: China Girl - ____Bowie
+David
+10
+
+Music: 1980s: Song: Chris DeBurgh?
+Don't pay the ferryman
+10
+
+Music: 1980s: Song: Chris DeBurgh?
+The lady in red
+10
+
+Music: 1980s: Song: Chris Isaak?
+You owe me some kind of love
+10
+
+Music: 1980s: Song: Christopher Cross?
+Arthur's theme (best that you Can Do)
+10
+
+Music: 1980s: Song: Christopher Cross?
+Sailing
+10
+
+Music: 1980s: Song: Christopher Cross?
+Think of laura
+10
+
+Music: 1980s: Song: Church Of The Poison Mind - ____Club
+Culture
+10
+
+Music: 1980s: Song: Church?
+Under the milky way
+10
+
+Music: 1980s: Song: Clash?
+Rock the casbah
+10
+
+Music: 1980s: Song: Climax Blues Band?
+I love you
+10
+
+Music: 1980s: Song: Come ____- The Kinks
+Dancing
+10
+
+Music: 1980s: Song: Come On ____- Dexy's Midnight Runners
+Eileen
+10
+
+Music: 1980s: Song: Comeback hit for Cheap Trick that hit #1 in 1988?
+The flame
+10
+
+Music: 1980s: Song: Comin' In And ____Of Your Life - Barbra Streisand
+Out
+10
+
+Music: 1980s: Song: Coming Up (Live At Glasgow) - ____Mccartney & Wings
+Paul
+10
+
+Music: 1980s: Song: Commodores?
+Night shift
+10
+
+Music: 1980s: Song: Commodores?
+Nightshift
+10
+
+Music: 1980s: Song: Commodores?
+Sail on
+10
+
+Music: 1980s: Song: Conga - ____Sound Machine
+Miami
+10
+
+Music: 1980s: Song: Cool ____- Little River Band
+Change
+10
+
+Music: 1980s: Song: Cool Love - ____Cruise
+Pablo
+10
+
+Music: 1980s: Song: Cool Night - Paul ____
+Davis
+10
+
+Music: 1980s: Song: Corey Hart?
+Sunglasses at night
+10
+
+Music: 1980s: Song: Could've Been?
+Tiffany
+10
+
+Music: 1980s: Song: Cover Me - Bruce ____
+Springsteen
+10
+
+Music: 1980s: Song: Crazy ____Thing Called Love - Queen
+Little
+10
+
+Music: 1980s: Song: Crazy For You?
+Madonna
+10
+
+Music: 1980s: Song: Crosby, Stills & Nash?
+Southern cross
+10
+
+Music: 1980s: Song: Crosby, Stills & Nash?
+Wasted on the way
+10
+
+Music: 1980s: Song: Cross My ____Heart - The Jets
+Broken
+10
+
+Music: 1980s: Song: Crowded House?
+Don't dream it's over
+10
+
+Music: 1980s: Song: Cruel ____- Bananarama
+Summer
+10
+
+Music: 1980s: Song: Cruisin' - Smokey ____
+Robinson
+10
+
+Music: 1980s: Song: Crumblin' Down - John ____Mellencamp
+Cougar
+10
+
+Music: 1980s: Song: Crying - ____Mclean
+Don
+10
+
+Music: 1980s: Song: Culture Club?
+Do you really want to hurt me
+10
+
+Music: 1980s: Song: Culture Club?
+Karma chameleon
+10
+
+Music: 1980s: Song: Culture Club?
+Time (clock of the heart)
+10
+
+Music: 1980s: Song: Cupid/I've Loved You For A ____Time - Spinners
+Long
+10
+
+Music: 1980s: Song: Cure?
+Love cats
+10
+
+Music: 1980s: Song: Cutting Crew?
+(i just) died in your arms
+10
+
+Music: 1980s: Song: Cyndi Lauper?
+Girls just want to have fun
+10
+
+Music: 1980s: Song: Cyndi Lauper?
+Time after time
+10
+
+Music: 1980s: Song: Cyndi Lauper?
+True colors
+10
+
+Music: 1980s: Song: Dan Fogelberg?
+Longer
+10
+
+Music: 1980s: Song: Dan Fogelberg?
+Longer
+10
+
+Music: 1980s: Song: Dan Fogelberg?
+Same old lang syne
+10
+
+Music: 1980s: Song: Dan Hartman?
+I can dream about you
+10
+
+Music: 1980s: Song: Dancing In The Sheets?
+Shalamar
+10
+
+Music: 1980s: Song: Danny Wilson?
+Mary's prayer
+10
+
+Music: 1980s: Song: Dare Me - ____Sisters
+Pointer
+10
+
+Music: 1980s: Song: Daryl Hall & John Oates?
+Kiss is on my list
+10
+
+Music: 1980s: Song: Daryl Hall & John Oates?
+Maneater
+10
+
+Music: 1980s: Song: Daryl Hall & John Oates?
+Private eyes
+10
+
+Music: 1980s: Song: David Bowie?
+China girl
+10
+
+Music: 1980s: Song: David Bowie?
+Let's dance
+10
+
+Music: 1980s: Song: David Bowie?
+Modern love
+10
+
+Music: 1980s: Song: David Lee Roth?
+Just a gigolo
+10
+
+Music: 1980s: Song: Daydream ____- Anne Murray
+Believer
+10
+
+Music: 1980s: Song: De Do Do Do, De Da Da Da - The ____
+Police
+10
+
+Music: 1980s: Song: Dead Milkmen?
+Bitchin' camaro
+10
+
+Music: 1980s: Song: Def Leppard?
+Photograph
+10
+
+Music: 1980s: Song: Del Fuegos?
+I still want you
+10
+
+Music: 1980s: Song: Dennis DeYoung?
+Desert moon
+10
+
+Music: 1980s: Song: Depeche Mode?
+Blasphemous rumours
+10
+
+Music: 1980s: Song: Depeche Mode?
+Somebody
+10
+
+Music: 1980s: Song: Depeche Mode?
+The sun and the rainfall
+10
+
+Music: 1980s: Song: Der ____- After The Fire
+Kommissar
+10
+
+Music: 1980s: Song: Desert Moon - ____Deyoung
+Dennis
+10
+
+Music: 1980s: Song: Desire - Andy ____
+Gibb
+10
+
+Music: 1980s: Song: Devo?
+Whip it
+10
+
+Music: 1980s: Song: Dexys Midnight Runners?
+Come on eileen
+10
+
+Music: 1980s: Song: Diamonds - ____Alpert
+Herb
+10
+
+Music: 1980s: Song: Diana Ross & Lionel Richie?
+Endless love
+10
+
+Music: 1980s: Song: Did It In A ____- Daryl Hall & John Oates
+Minute
+10
+
+Music: 1980s: Song: Didn't We ____Have It All - Whitney Houston
+Almost
+10
+
+Music: 1980s: Song: Dionne Warwick?
+Heartbreaker
+10
+
+Music: 1980s: Song: Dire Straits?
+Money for nothing
+10
+
+Music: 1980s: Song: Dire Straits?
+Sultans of swing
+10
+
+Music: 1980s: Song: Dire Straits?
+Walk of life
+10
+
+Music: 1980s: Song: Dire Straits?
+Why worry
+10
+
+Music: 1980s: Song: Dirty ____- Don Henley
+Laundry
+10
+
+Music: 1980s: Song: DJ Jazzy Jeff & the Fresh Prince?
+Parents just Don't Understand
+10
+
+Music: 1980s: Song: Do I ____- Stevie Wonder
+Do
+10
+
+Music: 1980s: Song: Do That To Me One ____Time - Captain & Tennille
+More
+10
+
+Music: 1980s: Song: Do What You Do - ____Jackson
+Jermaine
+10
+
+Music: 1980s: Song: Do You ____Want To Hurt Me - Culture Club
+Really
+10
+
+Music: 1980s: Song: Doctor! Doctor! - ____Twins
+Thompson
+10
+
+Music: 1980s: Song: Doing It All For My ____- Huey Lewis & The News
+Baby
+10
+
+Music: 1980s: Song: Don Henley?
+Boys of summer
+10
+
+Music: 1980s: Song: Don Henley?
+Dirty laundry
+10
+
+Music: 1980s: Song: Don Henley?
+End of the innocence
+10
+
+Music: 1980s: Song: Don't ____Me (When I'm Gone) - Glass Tiger
+Forget
+10
+
+Music: 1980s: Song: Don't ____So Close To Me - The Police
+Stand
+10
+
+Music: 1980s: Song: Don't Cry?
+Asia
+10
+
+Music: 1980s: Song: Don't Disterb This ____- The System
+Groove
+10
+
+Music: 1980s: Song: Don't Dream It's Over - ____House
+Crowded
+10
+
+Music: 1980s: Song: Don't Fall In Love With A ____- Kenny Rogers/Kim Carnes
+Dreamer
+10
+
+Music: 1980s: Song: Don't Get Me ____- Pretenders
+Wrong
+10
+
+Music: 1980s: Song: Don't Let Go - Issac ____
+Hayes
+10
+
+Music: 1980s: Song: Don't Let It End?
+Styx
+10
+
+Music: 1980s: Song: Don't Lose My ____- Phil Collins
+Number
+10
+
+Music: 1980s: Song: Don't Mean ____- Richard Marx
+Nothing
+10
+
+Music: 1980s: Song: Don't Stop Believin'?
+Journey
+10
+
+Music: 1980s: Song: Don't Talk To ____- Rick Springfield
+Strangers
+10
+
+Music: 1980s: Song: Don't Worry Be ____- Bobby Mcferrin
+Happy
+10
+
+Music: 1980s: Song: Don't You ____Me - Human League
+Want
+10
+
+Music: 1980s: Song: Don't You Want Me - Jody ____
+Watley
+10
+
+Music: 1980s: Song: Donald Fagen?
+I.g.y
+10
+
+Music: 1980s: Song: Donna Summer?
+This time i know it's for real
+10
+
+Music: 1980s: Song: Double?
+Captain of her heart
+10
+
+Music: 1980s: Song: Down ____- Men At Work
+Under
+10
+
+Music: 1980s: Song: Dream Academy?
+Life in a northern town
+10
+
+Music: 1980s: Song: Dreaming - ____Richard
+Cliff
+10
+
+Music: 1980s: Song: Dreamtime - ____Hall
+Daryl
+10
+
+Music: 1980s: Song: Dress You Up?
+Madonna 
+10
+
+Music: 1980s: Song: Drivin' My ____Away - Eddie Rabbitt
+Life
+10
+
+Music: 1980s: Song: Duran Duran?
+Hungry like the wolf
+10
+
+Music: 1980s: Song: Duran Duran?
+Is there something i should know
+10
+
+Music: 1980s: Song: Duran Duran?
+Notorious
+10
+
+Music: 1980s: Song: Duran Duran?
+Rio
+10
+
+Music: 1980s: Song: Duran Duran?
+Save a prayer
+10
+
+Music: 1980s: Song: Duran Duran?
+View to a kill
+10
+
+Music: 1980s: Song: Eagles?
+Heartache tonight
+10
+
+Music: 1980s: Song: Eagles?
+Hotel California
+10
+
+Music: 1980s: Song: Easy Lover - Philip Bailey W/ Phil ____
+Collins
+10
+
+Music: 1980s: Song: Eddie Money?
+I think i'm in love
+10
+
+Music: 1980s: Song: Eddie Rabbitt and Crystal Gayle?
+You and i
+10
+
+Music: 1980s: Song: Eddie Rabbitt?
+I love a rainy night
+10
+
+Music: 1980s: Song: Eddy Grant?
+Electric avenue
+10
+
+Music: 1980s: Song: Edge Of ____(Just Like The White Winged Dove)-S Nicks
+Seventeen
+10
+
+Music: 1980s: Song: Edie Brickell & New Bohemians?
+Circle
+10
+
+Music: 1980s: Song: Edie Brickell & New Bohemians?
+What i am
+10
+
+Music: 1980s: Song: Election Day?
+Arcadia
+10
+
+Music: 1980s: Song: Electric Avenue - ____Grant
+Eddy
+10
+
+Music: 1980s: Song: Electric Light Orchestra?
+All over the world
+10
+
+Music: 1980s: Song: Electric Light Orchestra?
+Don't bring me down
+10
+
+Music: 1980s: Song: Elton John?
+Blue eyes
+10
+
+Music: 1980s: Song: Elton John?
+Candle in the wind
+10
+
+Music: 1980s: Song: Elton John?
+I guess that's why they call it the Blues
+10
+
+Music: 1980s: Song: Elton John?
+Little jeannie
+10
+
+Music: 1980s: Song: Elvis Costello?
+Everyday i write the book
+10
+
+Music: 1980s: Song: Elvis Costello?
+Veronica
+10
+
+Music: 1980s: Song: Emotional Rescue - The ____Stones
+Rolling
+10
+
+Music: 1980s: Song: Empty ____(Hey Hey Johnny) - Elton John
+Garden
+10
+
+Music: 1980s: Song: Endless ____Nights - Richard Marx
+Summer
+10
+
+Music: 1980s: Song: Enya?
+Orinoco flow (sail away)
+10
+
+Music: 1980s: Song: Eric Carmen?
+Make me lose control
+10
+
+Music: 1980s: Song: Escape Club?
+I'll be there
+10
+
+Music: 1980s: Song: Escape Club?
+Wild, wild west
+10
+
+Music: 1980s: Song: Europe?
+Carrie
+10
+
+Music: 1980s: Song: Eurythmics?
+Here comes the rain again
+10
+
+Music: 1980s: Song: Eurythmics?
+Sweet dreams (are made of this)
+10
+
+Music: 1980s: Song: Even The Nights Are Better - ____Supply
+Air
+10
+
+Music: 1980s: Song: Every ____In The World - Air Supply
+Woman
+10
+
+Music: 1980s: Song: Every ____You Take - The Police
+Breath
+10
+
+Music: 1980s: Song: Every Little Thing She Does Is Magic - The ____
+Police
+10
+
+Music: 1980s: Song: Every Rose Has It's Thorn?
+Poison
+10
+
+Music: 1980s: Song: Everybody ____To Rule The World - Tears For Fears
+Wants
+10
+
+Music: 1980s: Song: Everytime You Go Away - ____Young
+Paul
+10
+
+Music: 1980s: Song: Eye In The Sky - Alan ____Project
+Parsons
+10
+
+Music: 1980s: Song: Eye Of The Tiger?
+Survivor
+10
+
+Music: 1980s: Song: Faith - George ____
+Michael
+10
+
+Music: 1980s: Song: Family Man - Daryl Hall & ____Oates
+John
+10
+
+Music: 1980s: Song: Far From Over - Frank ____
+Stallone
+10
+
+Music: 1980s: Song: Fat Boys & The Beach Boys?
+Wipeout
+10
+
+Music: 1980s: Song: Father ____- George Michael
+Figure
+10
+
+Music: 1980s: Song: Fine Young Cannibals?
+Good thing
+10
+
+Music: 1980s: Song: Fine Young Cannibals?
+She drives me crazy
+10
+
+Music: 1980s: Song: Fire Lake - ____Seger
+Bob
+10
+
+Music: 1980s: Song: Fixx?
+One thing leads to another
+10
+
+Music: 1980s: Song: Fixx?
+Saved by zero
+10
+
+Music: 1980s: Song: Flashdance - ____Cara
+Irene
+10
+
+Music: 1980s: Song: Fleetwood Mac?
+Gypsy
+10
+
+Music: 1980s: Song: Fleetwood Mac?
+Sara
+10
+
+Music: 1980s: Song: Flock of Seagulls?
+I ran
+10
+
+Music: 1980s: Song: Foolish Beat - Debbie ____
+Gibson
+10
+
+Music: 1980s: Song: For Your Eyes Only - ____Easton
+Sheena
+10
+
+Music: 1980s: Song: Foreigner?
+I want to know what love is
+10
+
+Music: 1980s: Song: Foreigner?
+That was yesterday
+10
+
+Music: 1980s: Song: Fortress ____Your Heart - Sting
+Around
+10
+
+Music: 1980s: Song: Frankie Goes to Hollywood?
+Relax
+10
+
+Music: 1980s: Song: Frankie Goes to Hollywood?
+The power of love
+10
+
+Music: 1980s: Song: Frankie Goes to Hollywood?
+Two tribes
+10
+
+Music: 1980s: Song: Freeze-Frame - J. ____Band
+Geils
+10
+
+Music: 1980s: Song: Fresh - Kool & The ____
+Gang
+10
+
+Music: 1980s: Song: Frida?
+I know there's something going on
+10
+
+Music: 1980s: Song: Friends ____Lovers - Gloria Loring & Carl Anderson
+And
+10
+
+Music: 1980s: Song: Gap Band?
+You dropped a bomb on me
+10
+
+Music: 1980s: Song: Gary Numan?
+Cars
+10
+
+Music: 1980s: Song: Gemini ____- The Moody Blues
+Dream
+10
+
+Music: 1980s: Song: General Public?
+Tenderness
+10
+
+Music: 1980s: Song: Genesis?
+Misunderstanding
+10
+
+Music: 1980s: Song: Genesis?
+No reply at all
+10
+
+Music: 1980s: Song: Genesis?
+That's all
+10
+
+Music: 1980s: Song: George Harrison?
+All those years ago
+10
+
+Music: 1980s: Song: George Harrison?
+When we was fab
+10
+
+Music: 1980s: Song: George Michael?
+Kissing a fool
+10
+
+Music: 1980s: Song: Georgia Satellites?
+Keep your hands to yourself
+10
+
+Music: 1980s: Song: Gerry Rafferty?
+Right down the line
+10
+
+Music: 1980s: Song: Get ____On It - Kool & The Gang
+Down
+10
+
+Music: 1980s: Song: Get It On (____A Gong) - Power Station
+Bang
+10
+
+Music: 1980s: Song: Get Outta My Dreams, Get Into My Car - Billy ____
+Ocean
+10
+
+Music: 1980s: Song: Giorgio Morodor?
+Together in electric dreams
+10
+
+Music: 1980s: Song: Girls Just Want To ____Fun - Cyndi Lauper
+Have
+10
+
+Music: 1980s: Song: Give Me The Night - George ____
+Benson
+10
+
+Music: 1980s: Song: Giving You The Best That I Got - ____Baker
+Anita
+10
+
+Music: 1980s: Song: Glass Tiger?
+Someday
+10
+
+Music: 1980s: Song: Glenn Frey?
+The heat is on
+10
+
+Music: 1980s: Song: Glenn Frey?
+You belong to the city
+10
+
+Music: 1980s: Song: Gloria - ____Branigan
+Laura
+10
+
+Music: 1980s: Song: Glory Of Love - ____Cetera
+Peter
+10
+
+Music: 1980s: Song: Go ____- Stevie Wonder
+Home
+10
+
+Music: 1980s: Song: Go-Go's?
+Vacation
+10
+
+Music: 1980s: Song: Go-Go's?
+Vacation
+10
+
+Music: 1980s: Song: Go-Go's?
+We got the beat
+10
+
+Music: 1980s: Song: Goin' Down - Greg ____
+Guidry
+10
+
+Music: 1980s: Song: Golden Earring?
+Twilight zone
+10
+
+Music: 1980s: Song: Goody Two ____- Adam Ant
+Shoes
+10
+
+Music: 1980s: Song: Got A ____On Me - Christine Mcvie
+Hold
+10
+
+Music: 1980s: Song: Got My Mind Set On You - ____Harrison
+George
+10
+
+Music: 1980s: Song: Grateful Dead?
+Touch of grey
+10
+
+Music: 1980s: Song: Greg Kihn Band?
+Jeopardy
+10
+
+Music: 1980s: Song: Groovy Kind Of Love - Phil ____
+Collins
+10
+
+Music: 1980s: Song: Grover Washington, Jr?
+Just the two of us
+10
+
+Music: 1980s: Song: Guilty - Barbra ____& Barry Gibb
+Streisand
+10
+
+Music: 1980s: Song: Guns-n-Roses?
+Patience
+10
+
+Music: 1980s: Song: Hard Habit To Break?
+Chicago
+10
+
+Music: 1980s: Song: Hard To Say - ____Fogelberg
+Dan
+10
+
+Music: 1980s: Song: Hard To Say I'm ____- Chicago
+Sorry
+10
+
+Music: 1980s: Song: Harden My ____- Quarterflash
+Heart
+10
+
+Music: 1980s: Song: Harlem ____- The Rolling Stones
+Shuffle
+10
+
+Music: 1980s: Song: Harold Faltermeyer?
+Axel f (instrumental)
+10
+
+Music: 1980s: Song: He's So ____- Pointer Sisters
+Shy
+10
+
+Music: 1980s: Song: Head ____Heals - Tears For Fears
+Over
+10
+
+Music: 1980s: Song: Head Over ____- The Go-Go's
+Heels
+10
+
+Music: 1980s: Song: Head To Toe - ____Lisa & Cult Jam
+Lisa
+10
+
+Music: 1980s: Song: Heart ____- Olivia Newton-John
+Attack
+10
+
+Music: 1980s: Song: Heart And ____- T'Pau
+Soul
+10
+
+Music: 1980s: Song: Heart And Soul - Huey ____& The News
+Lewis
+10
+
+Music: 1980s: Song: Heart To ____- Kenny Loggins
+Heart
+10
+
+Music: 1980s: Song: Heart?
+These dreams
+10
+
+Music: 1980s: Song: Heartbeat - Don ____
+Johnson
+10
+
+Music: 1980s: Song: Heartbreaker - Dionne ____
+Warwick
+10
+
+Music: 1980s: Song: Hearts - ____Balin
+Marty
+10
+
+Music: 1980s: Song: Heat Of The ____- Asia
+Moment
+10
+
+Music: 1980s: Song: Heat Of The Night - Bryan ____
+Adams
+10
+
+Music: 1980s: Song: Hello Again - ____Diamond
+Neil
+10
+
+Music: 1980s: Song: Her Town Too - ____Taylor & J.D. Souther
+James
+10
+
+Music: 1980s: Song: Here ____The Rain Again - Eurythmics
+Comes
+10
+
+Music: 1980s: Song: Here I Go Again?
+Whitesnake
+10
+
+Music: 1980s: Song: Hey ____- Steely Dan
+Nineteen
+10
+
+Music: 1980s: Song: Higher ____- Steve Winwood
+Love
+10
+
+Music: 1980s: Song: Him - Rupert ____
+Holmes
+10
+
+Music: 1980s: Song: Hip To Be ____- Huey Lewis & The News
+Square
+10
+
+Music: 1980s: Song: Hit Me With Your ____Shot - Pat Benatar
+Best
+10
+
+Music: 1980s: Song: Hold Me - ____Mac
+Fleetwood
+10
+
+Music: 1980s: Song: Hold On Tight - Electric ____Orchestra
+Light
+10
+
+Music: 1980s: Song: Hold On?
+Santana
+10
+
+Music: 1980s: Song: Holding Back The Years - ____Red
+Simply
+10
+
+Music: 1980s: Song: Honeydrippers?
+Sea of love
+10
+
+Music: 1980s: Song: Hooked On ____- Royal Philharmonic Orchestra
+Classics
+10
+
+Music: 1980s: Song: Hooters?
+And we danced
+10
+
+Music: 1980s: Song: Hot ____In Love - Loverboy
+Girls
+10
+
+Music: 1980s: Song: Hot Rod ____- Robbie Dupree
+Hearts
+10
+
+Music: 1980s: Song: How ____I Fall? - Breathe
+Can
+10
+
+Music: 1980s: Song: How Am I ____To Live Without You - Laura Branigan
+Supposed
+10
+
+Music: 1980s: Song: How Do I ____You - Linda Ronstadt
+Make
+10
+
+Music: 1980s: Song: How Will I Know - ____Houston
+Whitney
+10
+
+Music: 1980s: Song: Howard Jones?
+Life in one day
+10
+
+Music: 1980s: Song: Howard Jones?
+No one is to blame
+10
+
+Music: 1980s: Song: Huey Lewis & the News?
+Do you believe in love
+10
+
+Music: 1980s: Song: Huey Lewis & the News?
+If this is it
+10
+
+Music: 1980s: Song: Huey Lewis & the News?
+The heart of rock & roll
+10
+
+Music: 1980s: Song: Human - ____League
+Human
+10
+
+Music: 1980s: Song: Human League?
+Don't you want me
+10
+
+Music: 1980s: Song: Human League?
+Human
+10
+
+Music: 1980s: Song: Human Nature - Michael ____
+Jackson
+10
+
+Music: 1980s: Song: Hurt So Bad - Linda ____
+Ronstadt
+10
+
+Music: 1980s: Song: Hurts So Good - John ____
+Cougar
+10
+
+Music: 1980s: Song: I ____A Rumour - Bananarama
+Heard
+10
+
+Music: 1980s: Song: I ____For You - Chaka Khan
+Feel
+10
+
+Music: 1980s: Song: I ____We're Alone Now - Tiffany
+Think
+10
+
+Music: 1980s: Song: I ____Your Sex - George Michael
+Want
+10
+
+Music: 1980s: Song: I Ain't Gonna Stand For It - Stevie ____
+Wonder
+10
+
+Music: 1980s: Song: I Can ____About You - Don Hartman
+Dream
+10
+
+Music: 1980s: Song: I Can't Go ____That (No Can Do) - Daryl Hall & John Oates
+For
+10
+
+Music: 1980s: Song: I Can't Stand It - ____Clapton
+Eric
+10
+
+Music: 1980s: Song: I Can't Tell You Why?
+Eagles
+10
+
+Music: 1980s: Song: I Can't Wait - Nu ____
+Shooz
+10
+
+Music: 1980s: Song: I Didn't Mean To Turn You On - ____Palmer
+Robert
+10
+
+Music: 1980s: Song: I Don't Need You - ____Rogers
+Kenny
+10
+
+Music: 1980s: Song: I feel her breath in my face?
+Shes like the wind
+10
+
+Music: 1980s: Song: I Guess That's Why They Call It The ____- Elton John
+Blues
+10
+
+Music: 1980s: Song: I Just ____To Say I Love You - Stevie Wonder
+Called
+10
+
+Music: 1980s: Song: I Just Can't Stop ____You - Michael J. & Siedah Garrett
+Loving
+10
+
+Music: 1980s: Song: I just get more attached to you?
+When i think of you
+10
+
+Music: 1980s: Song: I Keep Fogettin' (____Time You're Near) - Michael Mcdonald
+Every
+10
+
+Music: 1980s: Song: I Knew You Were Waiting (For Me) - ____F. & George M
+Aretha
+10
+
+Music: 1980s: Song: I Know There's ____Going On - Frida
+Something
+10
+
+Music: 1980s: Song: I Love A ____Night - Eddie Rabbitt
+Rainy
+10
+
+Music: 1980s: Song: I Love Rock'n ____- Joan Jett & The Blackhearts
+Roll
+10
+
+Music: 1980s: Song: I Love You - ____Blues Band
+Climax
+10
+
+Music: 1980s: Song: I Made It Through The Rain - ____Manilow
+Barry
+10
+
+Music: 1980s: Song: I Miss You?
+Klymaxx
+10
+
+Music: 1980s: Song: I Ran (So Far Away) - A ____Of Seagulls
+Flock
+10
+
+Music: 1980s: Song: I Still Haven't Found What I'm Looking For?
+U2
+10
+
+Music: 1980s: Song: I Wanna Be Your ____- Prince
+Lover
+10
+
+Music: 1980s: Song: I Wanna Dance With ____- Whitney Houston
+Somebody
+10
+
+Music: 1980s: Song: I Want A New Drug - Huey ____& The News
+Lewis
+10
+
+Music: 1980s: Song: I Want To Know ____Love Is - Foreigner
+What
+10
+
+Music: 1980s: Song: I Won't Hold You Back?
+Toto
+10
+
+Music: 1980s: Song: I Wouldn't ____Missed It For The World - Ronnie Milsap
+Have
+10
+
+Music: 1980s: Song: I'll Always Love You - ____Dayne
+Taylor
+10
+
+Music: 1980s: Song: I'll Tumble 4 Ya - Culture ____
+Club
+10
+
+Music: 1980s: Song: I'm ____- Kenny Loggins
+Alright
+10
+
+Music: 1980s: Song: I'm ____Out - Diana Ross
+Coming
+10
+
+Music: 1980s: Song: I'm ____Standing - Elton John
+Still
+10
+
+Music: 1980s: Song: I'm On ____- Bruce Springsteen
+Fire
+10
+
+Music: 1980s: Song: I'm So Excited - ____Sisters
+Pointer
+10
+
+Music: 1980s: Song: I'm Your ____- Wham!
+Man
+10
+
+Music: 1980s: Song: I've ____In Love Before - Cutting Crew
+Been
+10
+
+Music: 1980s: Song: I've Done ____For You - Rick Springfield
+Everything
+10
+
+Music: 1980s: Song: I've Never ____To Me - Charlene
+Been
+10
+
+Music: 1980s: Song: Icicle Works?
+Birds fly (whisper to a scream)
+10
+
+Music: 1980s: Song: If Ever You're In My Arms Again - Peabo ____
+Bryson
+10
+
+Music: 1980s: Song: If This Is It - ____Lewis & The News
+Huey
+10
+
+Music: 1980s: Song: If You Leave - Orchestral ____In The Dark
+Manoeuvres
+10
+
+Music: 1980s: Song: If You Love Somebody Set Them Free?
+Sting
+10
+
+Music: 1980s: Song: In My ____- Mary Jane Girls
+House
+10
+
+Music: 1980s: Song: In Too Deep?
+Genesis
+10
+
+Music: 1980s: Song: Infatuation - Rod ____
+Stewart
+10
+
+Music: 1980s: Song: Information Society?
+What's on your mind (pure Energy)
+10
+
+Music: 1980s: Song: Into The Night - Benny ____
+Mardones
+10
+
+Music: 1980s: Song: Invincible - Pat ____
+Benatar
+10
+
+Music: 1980s: Song: Invisible Touch?
+Genesis
+10
+
+Music: 1980s: Song: INXS?
+Need you tonight
+10
+
+Music: 1980s: Song: Irene Cara?
+Breakdance
+10
+
+Music: 1980s: Song: Irene Cara?
+Fame
+10
+
+Music: 1980s: Song: Is It Love - Mr. ____
+Mister
+10
+
+Music: 1980s: Song: Is There ____I Should Know - Duran Duran
+Something
+10
+
+Music: 1980s: Song: It's ____Again - Supertramp
+Raining
+10
+
+Music: 1980s: Song: It's ____Take A Miracle - Deniece Williams
+Gonna
+10
+
+Music: 1980s: Song: It's A ____- Men At Work
+Mistake
+10
+
+Music: 1980s: Song: It's A Sin - Pet ____Boys
+Shop
+10
+
+Music: 1980s: Song: It's My ____- Diana Ross
+Turn
+10
+
+Music: 1980s: Song: It's Still ____And Roll To Me - Billy Joel
+Rock
+10
+
+Music: 1980s: Song: J. Geils Band?
+Centerfold
+10
+
+Music: 1980s: Song: J. Geils Band?
+Freeze-frame
+10
+
+Music: 1980s: Song: Jack And Diane - John ____
+Cougar
+10
+
+Music: 1980s: Song: Jack Wagner?
+All i need
+10
+
+Music: 1980s: Song: Jackson Browne?
+Boulevard
+10
+
+Music: 1980s: Song: Jackson Browne?
+Somebody's baby
+10
+
+Music: 1980s: Song: Jacob's ____- Huey Lewis & The News
+Ladder
+10
+
+Music: 1980s: Song: Jane - ____Starship
+Jefferson
+10
+
+Music: 1980s: Song: Janet Jackson?
+Control
+10
+
+Music: 1980s: Song: Janet Jackson?
+Let's wait awhile
+10
+
+Music: 1980s: Song: Jeff Healey Band?
+Angel eyes
+10
+
+Music: 1980s: Song: Jeopardy - ____Kihn Band
+Greg
+10
+
+Music: 1980s: Song: Jermaine Jackson?
+Do what you do
+10
+
+Music: 1980s: Song: Jesse - ____Simon
+Carly
+10
+
+Music: 1980s: Song: Jessie's ____- Rick Springfield
+Girl
+10
+
+Music: 1980s: Song: Jets?
+Make it real
+10
+
+Music: 1980s: Song: Jim Carroll Band?
+People who died
+10
+
+Music: 1980s: Song: Jimmy Harnen with Synch?
+Where are you now
+10
+
+Music: 1980s: Song: Joan Jett & the Blackhearts?
+I love rock-n-roll
+10
+
+Music: 1980s: Song: Joe Cocker & Jennifer Warnes?
+Up where we belong
+10
+
+Music: 1980s: Song: Joe Jackson?
+Breaking us in two
+10
+
+Music: 1980s: Song: Joe Jackson?
+Steppin' out
+10
+
+Music: 1980s: Song: Joe Jackson?
+You can't get what you want
+10
+
+Music: 1980s: Song: Joe Walsh?
+Life's been good
+10
+
+Music: 1980s: Song: John Cougar Mellencamp?
+Cherry bomb
+10
+
+Music: 1980s: Song: John Cougar Mellencamp?
+Pink houses
+10
+
+Music: 1980s: Song: John Cougar?
+Hurts so good
+10
+
+Music: 1980s: Song: John Cougar?
+Jack & diane
+10
+
+Music: 1980s: Song: John Fogerty?
+Centerfield
+10
+
+Music: 1980s: Song: John Fogerty?
+Old man down the road
+10
+
+Music: 1980s: Song: John Lennon?
+(just like) starting over
+10
+
+Music: 1980s: Song: John Lennon?
+Woman
+10
+
+Music: 1980s: Song: John Lennon?
+Woman
+10
+
+Music: 1980s: Song: John Waite?
+Missing you
+10
+
+Music: 1980s: Song: Johnny Hates Jazz?
+Turn back the clock
+10
+
+Music: 1980s: Song: Journey?
+Don't stop believin'
+10
+
+Music: 1980s: Song: Journey?
+Faithfully
+10
+
+Music: 1980s: Song: Journey?
+Faithfully
+10
+
+Music: 1980s: Song: Journey?
+Send her my love
+10
+
+Music: 1980s: Song: Juice Newton?
+Angel of the morning
+10
+
+Music: 1980s: Song: Julian Lennon?
+Too late for goodbyes
+10
+
+Music: 1980s: Song: Julian Lennon?
+Valotte
+10
+
+Music: 1980s: Song: Jump - ____Halen
+Van
+10
+
+Music: 1980s: Song: Jump (For My Love) - ____Sisters
+Pointer
+10
+
+Music: 1980s: Song: Just The Two Of Us - ____Washington Jr. W/ Bill Withers
+Grover
+10
+
+Music: 1980s: Song: Just To See Her - ____Robinson
+Smokey
+10
+
+Music: 1980s: Song: Kajagoogoo?
+Too shy
+10
+
+Music: 1980s: Song: Kansas?
+Play the game tonight
+10
+
+Music: 1980s: Song: Karel Fialka?
+Hey matthew
+10
+
+Music: 1980s: Song: Karla Bonoff?
+Personally
+10
+
+Music: 1980s: Song: Karma ____- Culture Club
+Chameleon
+10
+
+Music: 1980s: Song: Keep On Loving You - REO ____
+Speedwagon
+10
+
+Music: 1980s: Song: Keep The Fire Burnin' - ____Speedwagon
+REO
+10
+
+Music: 1980s: Song: Keep Your Hands To ____- Georgia Satellites
+Yourself
+10
+
+Music: 1980s: Song: Kenny Loggins?
+Footloose
+10
+
+Music: 1980s: Song: Kenny Loggins?
+Footloose
+10
+
+Music: 1980s: Song: Kenny Loggins?
+I'm alright
+10
+
+Music: 1980s: Song: Kenny Rogers?
+Coward of the county
+10
+
+Music: 1980s: Song: Kid Creole & the Coconuts?
+Annie i'm not your Daddy
+10
+
+Music: 1980s: Song: Kim Carnes?
+Bette davis eyes
+10
+
+Music: 1980s: Song: Kim Wilde?
+Kids in America
+10
+
+Music: 1980s: Song: King Of ____- The Police
+Pain
+10
+
+Music: 1980s: Song: Kinks?
+Come dancing
+10
+
+Music: 1980s: Song: Kiss On My List - Daryl Hall & ____Oates
+John
+10
+
+Music: 1980s: Song: Kiss?
+Prince
+10
+
+Music: 1980s: Song: Knack?
+My sharona
+10
+
+Music: 1980s: Song: Kon-Kan?
+I beg your pardon
+10
+
+Music: 1980s: Song: Kool & the Gang?
+Celebration
+10
+
+Music: 1980s: Song: Kool & The Gang?
+Celebration
+10
+
+Music: 1980s: Song: Kool & the Gang?
+Cherish
+10
+
+Music: 1980s: Song: Kool & The Gang?
+Cherish
+10
+
+Music: 1980s: Song: Kool & the Gang?
+Joanna
+10
+
+Music: 1980s: Song: Kool & The Gang?
+Joanna
+10
+
+Music: 1980s: Song: Kyrie - Mr. ____
+Mister
+10
+
+Music: 1980s: Song: La ____- Los Lobos
+Bamba
+10
+
+Music: 1980s: Song: La Isla Bonita?
+Madonna
+10
+
+Music: 1980s: Song: Ladies ____- Kool & The Gang
+Night
+10
+
+Music: 1980s: Song: Lady - ____Rogers
+Kenny
+10
+
+Music: 1980s: Song: Lady (You ____Me Up) - Commodores
+Bring
+10
+
+Music: 1980s: Song: Land Of ____- Genesis
+Confusion
+10
+
+Music: 1980s: Song: Late In The ____- Paul Simon
+Evening
+10
+
+Music: 1980s: Song: Laura Branigan?
+Gloria
+10
+
+Music: 1980s: Song: Leader Of The Band - Dan ____
+Fogelberg
+10
+
+Music: 1980s: Song: Lean On Me - Club ____
+Nouveau
+10
+
+Music: 1980s: Song: Leather And Lace - ____Nicks W/ Don Henley
+Stevie
+10
+
+Music: 1980s: Song: Legs - ZZ ____
+Top
+10
+
+Music: 1980s: Song: Lenny Kravitz?
+It ain't over till it's over
+10
+
+Music: 1980s: Song: Let It Whip - Dazz ____
+Band
+10
+
+Music: 1980s: Song: Let Me Be The One?
+Expose
+10
+
+Music: 1980s: Song: Let Me Love You Tonight - Pure ____League
+Prairy
+10
+
+Music: 1980s: Song: Let My Love Open The Door - ____Townshend
+Pete
+10
+
+Music: 1980s: Song: Let The Music Play?
+Shannon
+10
+
+Music: 1980s: Song: Let's ____- Earth, Wind & Fire
+Groove
+10
+
+Music: 1980s: Song: Let's ____Awhile - Janet Jackson
+Wait
+10
+
+Music: 1980s: Song: Let's ____It For The Boy - Deniece Williams
+Hear
+10
+
+Music: 1980s: Song: Let's Dance - David ____
+Bowie
+10
+
+Music: 1980s: Song: Let's Get Serious - ____Jackson
+Jermaine
+10
+
+Music: 1980s: Song: Let's Go ____The Way - Sly Fox
+All
+10
+
+Music: 1980s: Song: Let's Go Crazy - Prince & The ____
+Revolution
+10
+
+Music: 1980s: Song: Let's go make a family?
+Always
+10
+
+Music: 1980s: Song: Level 42?
+Something about you
+10
+
+Music: 1980s: Song: Ley Largo - ____Higgins
+Bertie
+10
+
+Music: 1980s: Song: Life In A ____Town - The Dream Academy
+Northern
+10
+
+Music: 1980s: Song: Lights Out - Peter ____
+Wolf
+10
+
+Music: 1980s: Song: Like A Virgin?
+Madonna
+10
+
+Music: 1980s: Song: Lindsey Buckingham?
+Go insane
+10
+
+Music: 1980s: Song: Lionel Richie?
+Hello
+10
+
+Music: 1980s: Song: Lionel Ritchie?
+Hello
+10
+
+Music: 1980s: Song: Lipps, Inc?
+Funkytown
+10
+
+Music: 1980s: Song: Lisa Lisa & Cult Jam?
+All cried out
+10
+
+Music: 1980s: Song: Little ____- Elton John
+Jeannie
+10
+
+Music: 1980s: Song: Little Lies - ____Mac
+Fleetwood
+10
+
+Music: 1980s: Song: Little Red ____- Prince
+Corvette
+10
+
+Music: 1980s: Song: Little River Band?
+Cool change
+10
+
+Music: 1980s: Song: Little River Band?
+Lonesome loser
+10
+
+Music: 1980s: Song: Little River Band?
+Take it easy on me
+10
+
+Music: 1980s: Song: Little River Band?
+We two
+10
+
+Music: 1980s: Song: Live To Tell?
+Madonna
+10
+
+Music: 1980s: Song: Livin' On A Prayer - ____Jovi
+Bon
+10
+
+Music: 1980s: Song: Living Colour?
+Cult of personality
+10
+
+Music: 1980s: Song: Living In ____- James Brown
+America
+10
+
+Music: 1980s: Song: Look ____You've Done To Me - Boz Scaggs
+What
+10
+
+Music: 1980s: Song: Look Away?
+Chicago
+10
+
+Music: 1980s: Song: Lookin' For Love - ____Lee
+Johnny
+10
+
+Music: 1980s: Song: Looking For A New Love - Jody ____
+Watley
+10
+
+Music: 1980s: Song: Lost In ____- Lisa Lisa & Cult Jam
+Emotion
+10
+
+Music: 1980s: Song: Lost In Love - Air ____
+Supply
+10
+
+Music: 1980s: Song: Lou Gramm?
+Just between you and me
+10
+
+Music: 1980s: Song: Love Bites - Def ____
+Leppard
+10
+
+Music: 1980s: Song: Love Is A ____- Pat Benatar
+Battlefield
+10
+
+Music: 1980s: Song: Love On The Rocks - ____Diamond
+Neil
+10
+
+Music: 1980s: Song: Love Somebody - ____Springfield
+Rick
+10
+
+Music: 1980s: Song: Love Touch - ____Stewart
+Rod
+10
+
+Music: 1980s: Song: Love Will ____All - Lionel Richie
+Conquer
+10
+
+Music: 1980s: Song: Love Will Turn You Around - ____Rogers
+Kenny
+10
+
+Music: 1980s: Song: Love Zone - Billy ____
+Ocean
+10
+
+Music: 1980s: Song: Love's ____A Little Bit Hard On Me - Juice Newton
+Been
+10
+
+Music: 1980s: Song: Lovin' ____Minute Of It - Loverboy
+Every
+10
+
+Music: 1980s: Song: Lucky Star?
+Madonna
+10
+
+Music: 1980s: Song: Luka - ____Vega
+Suzanne
+10
+
+Music: 1980s: Song: M?
+Pop musik
+10
+
+Music: 1980s: Song: Mad About You - ____Carlisle
+Belinda
+10
+
+Music: 1980s: Song: Madness?
+Our house
+10
+
+Music: 1980s: Song: Madonna?
+Borderline
+10
+
+Music: 1980s: Song: Madonna?
+Borderline
+10
+
+Music: 1980s: Song: Madonna?
+Crazy for you
+10
+
+Music: 1980s: Song: Madonna?
+Into the groove
+10
+
+Music: 1980s: Song: Madonna?
+La isla bonita
+10
+
+Music: 1980s: Song: Magic - ____Newton-John
+Olivia
+10
+
+Music: 1980s: Song: Magic - The ____
+Cars
+10
+
+Music: 1980s: Song: Make A Move On Me - ____Newton-John
+Olivia
+10
+
+Music: 1980s: Song: Making Love - ____Flack
+Roberta
+10
+
+Music: 1980s: Song: Making Love Out OF Nothing At All - Air ____
+Supply
+10
+
+Music: 1980s: Song: Man In The ____- Michael Jackson
+Mirror
+10
+
+Music: 1980s: Song: Man On Your ____- Little River Band
+Mind
+10
+
+Music: 1980s: Song: Maneater - Daryl ____& John Oates
+Hall
+10
+
+Music: 1980s: Song: Manhattans?
+Shining star
+10
+
+Music: 1980s: Song: Markita?
+Toy soldiers
+10
+
+Music: 1980s: Song: Martin Briley?
+Salt in my tears
+10
+
+Music: 1980s: Song: Marvin Gaye?
+Sexual healing
+10
+
+Music: 1980s: Song: Melissa Manchester?
+You should hear how she talks About You
+10
+
+Music: 1980s: Song: Men At Work?
+Down under
+10
+
+Music: 1980s: Song: Men At Work?
+Overkill
+10
+
+Music: 1980s: Song: Men At Work?
+Who can it be now?
+10
+
+Music: 1980s: Song: Men Without Hats?
+Safety dance
+10
+
+Music: 1980s: Song: Method Of ____Love - Daryl Hall & John Oates
+Modern
+10
+
+Music: 1980s: Song: Michael Jackson & Paul McCartney?
+The girl is Mine
+10
+
+Music: 1980s: Song: Michael Jackson?
+Bad
+10
+
+Music: 1980s: Song: Michael Jackson?
+Billie jean
+10
+
+Music: 1980s: Song: Michael Jackson?
+Thriller
+10
+
+Music: 1980s: Song: Midnight Blue - ____Gramm
+Lou
+10
+
+Music: 1980s: Song: Midnight Oil?
+Beds are burning
+10
+
+Music: 1980s: Song: Mike + the Mechanics?
+Living years
+10
+
+Music: 1980s: Song: Mike + the Mechanics?
+Silent running
+10
+
+Music: 1980s: Song: Mike + the Mechanics?
+Taken in
+10
+
+Music: 1980s: Song: Mirror, ____- Diana Ross
+Mirror
+10
+
+Music: 1980s: Song: Miss Me ____- Culture Club
+Blind
+10
+
+Music: 1980s: Song: Miss Sun - Boz ____
+Scaggs
+10
+
+Music: 1980s: Song: Modern English?
+I melt with you
+10
+
+Music: 1980s: Song: Money For Nothing - Dire ____
+Straits
+10
+
+Music: 1980s: Song: Monkees?
+That was then, this is now
+10
+
+Music: 1980s: Song: Mony ____- Billy Idol
+Mony
+10
+
+Music: 1980s: Song: Moody Blues?
+The voice
+10
+
+Music: 1980s: Song: Moody Blues?
+Your wildest dreams
+10
+
+Music: 1980s: Song: More ____- Kim Carnes
+Love
+10
+
+Music: 1980s: Song: Morning ____(Nine To Five) - Sheena Easton
+Train
+10
+
+Music: 1980s: Song: Motels?
+Only the lonely
+10
+
+Music: 1980s: Song: Motels?
+Suddenly last summer
+10
+
+Music: 1980s: Song: Moving Pictures?
+What about me
+10
+
+Music: 1980s: Song: Mr. ____- Styx
+Roboto
+10
+
+Music: 1980s: Song: Mr. Mister?
+Broken wings
+10
+
+Music: 1980s: Song: Mr. Mister?
+Kyrie
+10
+
+Music: 1980s: Song: Murray Head?
+One night in bangkok
+10
+
+Music: 1980s: Song: Muscles - ____Ross
+Diana
+10
+
+Music: 1980s: Song: My ____- Bruce Springsteen
+Hometown
+10
+
+Music: 1980s: Song: My Love - Lionel ____
+Richie
+10
+
+Music: 1980s: Song: Nails?
+88 lines about 44 women
+10
+
+Music: 1980s: Song: Naked Eyes?
+Always something there to remind me
+10
+
+Music: 1980s: Song: Naked Eyes?
+Promises, promises
+10
+
+Music: 1980s: Song: Nasty - ____Jackson
+Janet
+10
+
+Music: 1980s: Song: Natalie Cole?
+Miss you like crazy
+10
+
+Music: 1980s: Song: Need You ____- INXS
+Tonight
+10
+
+Music: 1980s: Song: Neil Diamond?
+America
+10
+
+Music: 1980s: Song: Neil Diamond?
+Heartlight
+10
+
+Music: 1980s: Song: Nena?
+99 luftballons
+10
+
+Music: 1980s: Song: Never ____- Corey Hart
+Surrender
+10
+
+Music: 1980s: Song: Never ____Let You Go - Sergio Mendes
+Gonna
+10
+
+Music: 1980s: Song: Never?
+Heart
+10
+
+Music: 1980s: Song: New Moon On ____- Duran Duran
+Monday
+10
+
+Music: 1980s: Song: Nick Lowe?
+Cruel to be kind
+10
+
+Music: 1980s: Song: Night Ranger?
+Goodbye
+10
+
+Music: 1980s: Song: Night Ranger?
+Sister christian
+10
+
+Music: 1980s: Song: Night Ranger?
+When you close your eyes
+10
+
+Music: 1980s: Song: Nik Kershaw?
+Wouldn't it be good
+10
+
+Music: 1980s: Song: Nikita - ____John
+Elton
+10
+
+Music: 1980s: Song: Nitty Gritty Dirt Band?
+An American dream
+10
+
+Music: 1980s: Song: Nobody Told Me - John ____
+Lennon
+10
+
+Music: 1980s: Song: Nobody?
+Sylvia
+10
+
+Music: 1980s: Song: Nothing's ____Stop Us Now - Starship
+Gonna
+10
+
+Music: 1980s: Song: Nothing's Gonna ____My Love For You - Glenn Medeiros
+Change
+10
+
+Music: 1980s: Song: Nu Shooz?
+I can't wait
+10
+
+Music: 1980s: Song: Oak Ridge Boys?
+Elvira
+10
+
+Music: 1980s: Song: Oak Ridge Boys?
+Elvira
+10
+
+Music: 1980s: Song: Obsession?
+Animotion
+10
+
+Music: 1980s: Song: Oceans apart, day after day?
+Right here waiting
+10
+
+Music: 1980s: Song: Off The ____- Michael Jackson
+Wall
+10
+
+Music: 1980s: Song: Oh ____- Steve Perry
+Sherrie
+10
+
+Music: 1980s: Song: Oh No?
+Commodores
+10
+
+Music: 1980s: Song: Oingo Boingo?
+Dead man's party
+10
+
+Music: 1980s: Song: Olivia Newton-John?
+Physical
+10
+
+Music: 1980s: Song: Olivia Newton-John?
+Xanadu
+10
+
+Music: 1980s: Song: OMD?
+If you leave
+10
+
+Music: 1980s: Song: On My Own - ____Labelle/Michael Mcdonald
+Patti
+10
+
+Music: 1980s: Song: On The Dark Side - John ____& The Beaver Brown Band
+Cafferty
+10
+
+Music: 1980s: Song: On The Radio - ____Summer
+Donna
+10
+
+Music: 1980s: Song: One ____Day - Carole King
+Fine
+10
+
+Music: 1980s: Song: One ____Leads To Another - The Fixx
+Thing
+10
+
+Music: 1980s: Song: One More Try - ____Michael
+George
+10
+
+Music: 1980s: Song: One Night In ____- Murray Head
+Bangkok
+10
+
+Music: 1980s: Song: One On One - Daryl Hall & John ____
+Oates
+10
+
+Music: 1980s: Song: Only In My ____- Debbie Gibson
+Dreams
+10
+
+Music: 1980s: Song: Only The ____- The Motels
+Lonely
+10
+
+Music: 1980s: Song: Open Your Heart?
+Madonna
+10
+
+Music: 1980s: Song: Our House?
+Madness
+10
+
+Music: 1980s: Song: Out Of Touch - ____Hall & John Oates
+Daryl
+10
+
+Music: 1980s: Song: Outfield?
+Your love
+10
+
+Music: 1980s: Song: Overkill - Men At ____
+Work
+10
+
+Music: 1980s: Song: Pac-Man ____- Buckner & Garcia
+Fever
+10
+
+Music: 1980s: Song: Part-Time ____- Stevie Wonder
+Lover
+10
+
+Music: 1980s: Song: Party All The Time - ____Murphy
+Eddie
+10
+
+Music: 1980s: Song: Passion - Rod ____
+Stewart
+10
+
+Music: 1980s: Song: Pat Benatar?
+Heartbreaker
+10
+
+Music: 1980s: Song: Pat Benatar?
+Love is a battlefield
+10
+
+Music: 1980s: Song: Paul Carrack?
+Don't shed a tear
+10
+
+Music: 1980s: Song: Paul Davis?
+'65 love affair
+10
+
+Music: 1980s: Song: Paul Hardcastle?
+19
+10
+
+Music: 1980s: Song: Paul McCartney & Michael Jackson?
+Say, say, say
+10
+
+Music: 1980s: Song: Paul McCartney and Stevie Wonder sang together on this 1982 hit...?
+Ebony and ivory
+10
+
+Music: 1980s: Song: Paul McCartney?
+Take it away
+10
+
+Music: 1980s: Song: Paul Simon?
+You can call me al
+10
+
+Music: 1980s: Song: Penny ____- Lionel Richie
+Lover
+10
+
+Music: 1980s: Song: Perfect Way - ____Politti
+Scritty
+10
+
+Music: 1980s: Song: Pet Shop Boys?
+Opportunities (let's make lots of Money)
+10
+
+Music: 1980s: Song: Pet Shop Boys?
+West end girls
+10
+
+Music: 1980s: Song: Peter Gabriel?
+In your eyes
+10
+
+Music: 1980s: Song: Peter Gabriel?
+Sledgehammer
+10
+
+Music: 1980s: Song: Peter Schilling?
+Major tom (coming home)
+10
+
+Music: 1980s: Song: Phil Collins & Philip Bailey?
+Easy lover
+10
+
+Music: 1980s: Song: Phil Collins?
+Against all odds
+10
+
+Music: 1980s: Song: Phil Collins?
+In the air tonight
+10
+
+Music: 1980s: Song: Phil Collins?
+Sussudio
+10
+
+Music: 1980s: Song: Physical - ____Newton-John
+Olivia
+10
+
+Music: 1980s: Song: Pink Floyd?
+Another brick in the wall, part ii
+10
+
+Music: 1980s: Song: Pink Houses - ____Cougar
+John
+10
+
+Music: 1980s: Song: Please Don't Go - KC & The ____Band
+Sunshine
+10
+
+Music: 1980s: Song: Point Of No ____- Expose
+Return
+10
+
+Music: 1980s: Song: Pointer Sisters?
+Automatic
+10
+
+Music: 1980s: Song: Police?
+Don't stand so close to me
+10
+
+Music: 1980s: Song: Police?
+Every breath you take
+10
+
+Music: 1980s: Song: Police?
+Wrapped around your finger
+10
+
+Music: 1980s: Song: Pop Life - Prince & The ____
+Revolution
+10
+
+Music: 1980s: Song: Pour Some Sugar On Me - ____Leppard
+Def
+10
+
+Music: 1980s: Song: Power Station?
+Some like it hot
+10
+
+Music: 1980s: Song: Pretenders?
+Brass in pocket (i'm special)
+10
+
+Music: 1980s: Song: Pretenders?
+Chain gang
+10
+
+Music: 1980s: Song: Prince?
+1999
+10
+
+Music: 1980s: Song: Prince?
+Delirious
+10
+
+Music: 1980s: Song: Prince?
+Little red corvette
+10
+
+Music: 1980s: Song: Prince?
+When doves cry
+10
+
+Music: 1980s: Song: Private Dancer - ____Turner
+Tina
+10
+
+Music: 1980s: Song: Private Eyes - ____Hall & John Oates
+Daryl
+10
+
+Music: 1980s: Song: Promises, Priomises - ____Eyes
+Naked
+10
+
+Music: 1980s: Song: Psychedelic Furs?
+Pretty in pink
+10
+
+Music: 1980s: Song: Purple ____- Prince & The Revolution
+Rain
+10
+
+Music: 1980s: Song: Puttin' On The ____- Taco
+Ritz
+10
+
+Music: 1980s: Song: Quarterflash?
+Harden my heart
+10
+
+Music: 1980s: Song: Queen Of Hearts - Juice ____
+Newton
+10
+
+Music: 1980s: Song: Queen?
+Another one bites the dust
+10
+
+Music: 1980s: Song: Queen?
+Crazy little thing called love
+10
+
+Music: 1980s: Song: Quiet Riot?
+Cum on feel the noize
+10
+
+Music: 1980s: Song: R.E.M?
+It's the end of the world as we know it
+10
+
+Music: 1980s: Song: R.E.M?
+The one i love
+10
+
+Music: 1980s: Song: R.O.C.K. In The U.S.A - John ____Mellencamp
+Cougar
+10
+
+Music: 1980s: Song: Randy Travis?
+Forever and ever, amen
+10
+
+Music: 1980s: Song: Randy Vanwarmer?
+Just when i needed you most
+10
+
+Music: 1980s: Song: Raspberry Beret - Prince & The ____
+Revolution
+10
+
+Music: 1980s: Song: Ray Parker Jr?
+Ghostbusters
+10
+
+Music: 1980s: Song: Ray Parker, Jr?
+Ghostbusters
+10
+
+Music: 1980s: Song: Read 'Em And Weep - Barry ____
+Manilow
+10
+
+Music: 1980s: Song: Real Life?
+Send me an angel
+10
+
+Music: 1980s: Song: Real Love - Doobie ____
+Brothers
+10
+
+Music: 1980s: Song: Refugee - Tom Petty & The ____
+Heartbreakers
+10
+
+Music: 1980s: Song: REO Speedwagon?
+Can't fight this feeling
+10
+
+Music: 1980s: Song: REO Speedwagon?
+Take it on the run
+10
+
+Music: 1980s: Song: REO Speedwagon?
+Time for me to fly
+10
+
+Music: 1980s: Song: Respect ____- Bruce Willis
+Yourself
+10
+
+Music: 1980s: Song: Restless Heart?
+I'll still be loving you
+10
+
+Music: 1980s: Song: Rhythm Is ____Get You - Gloria Estefan & MSM
+Gonna
+10
+
+Music: 1980s: Song: Rhythm Of The Night?
+Debarge
+10
+
+Music: 1980s: Song: Richard Marx?
+Endless summer nights
+10
+
+Music: 1980s: Song: Rick Astley?
+Never gonna give you up
+10
+
+Music: 1980s: Song: Rick Springfield?
+Don't talk to strangers
+10
+
+Music: 1980s: Song: Rick Springfield?
+Jessie's girl
+10
+
+Music: 1980s: Song: Ride Like The ____- Christopher Cross
+Wind
+10
+
+Music: 1980s: Song: Right On Track - ____Club
+Breakfast
+10
+
+Music: 1980s: Song: Robbie Dupree?
+Steal away
+10
+
+Music: 1980s: Song: Robert John?
+Sad eyes
+10
+
+Music: 1980s: Song: Robert Palmer?
+Addicted to love
+10
+
+Music: 1980s: Song: Robert Plant?
+Big log
+10
+
+Music: 1980s: Song: Robert Plant?
+Ship of fools
+10
+
+Music: 1980s: Song: Rock ____- The Whispers
+Steady
+10
+
+Music: 1980s: Song: Rock Me Amadeus?
+Falco
+10
+
+Music: 1980s: Song: Rock The Casbah - The ____
+Clash
+10
+
+Music: 1980s: Song: Rock With You - ____Jackson
+Michael
+10
+
+Music: 1980s: Song: Rockwell?
+Somebody's watching me
+10
+
+Music: 1980s: Song: Rod Stewart?
+Some guys have all the luck
+10
+
+Music: 1980s: Song: Rod Stewart?
+Young turks
+10
+
+Music: 1980s: Song: Roll With It - Steve ____
+Winwood
+10
+
+Music: 1980s: Song: Rolling Stones?
+Emotional rescue
+10
+
+Music: 1980s: Song: Romantics?
+Talking in your sleep
+10
+
+Music: 1980s: Song: Romeo's Tune - Steve ____
+Forbert
+10
+
+Music: 1980s: Song: Round And ____- Ratt
+Round
+10
+
+Music: 1980s: Song: Roxette?
+It must have been love
+10
+
+Music: 1980s: Song: Roxette?
+The look
+10
+
+Music: 1980s: Song: Roy Orbison?
+You got it
+10
+
+Music: 1980s: Song: Run To You - ____Adams
+Bryan
+10
+
+Music: 1980s: Song: Sad ____(Say So Much) - Elton John
+Songs
+10
+
+Music: 1980s: Song: Sade?
+Smooth operator
+10
+
+Music: 1980s: Song: Sailing - ____Cross
+Christopher
+10
+
+Music: 1980s: Song: Same Old Lang ____- Dan Fogelberg
+Syne
+10
+
+Music: 1980s: Song: Sammy Hagar?
+Your love is driving me crazy
+10
+
+Music: 1980s: Song: Sara - Fleetwood ____
+Mac
+10
+
+Music: 1980s: Song: Sara?
+Starship
+10
+
+Music: 1980s: Song: Say It Isn't So - Daryl Hall & John ____
+Oates
+10
+
+Music: 1980s: Song: Say You, Say Me - ____Richie
+Lionel
+10
+
+Music: 1980s: Song: Say, Say, Say - Paul Mccartney & ____Jackson
+Michael
+10
+
+Music: 1980s: Song: Scandal?
+Goodbye to you
+10
+
+Music: 1980s: Song: Scorpions?
+Still loving you
+10
+
+Music: 1980s: Song: Sea Of Love - The ____
+Honeydrippers
+10
+
+Music: 1980s: Song: Secret ____- Atlantic Starr
+Lovers
+10
+
+Music: 1980s: Song: Self ____- Laura Branigan
+Control
+10
+
+Music: 1980s: Song: Sentimental Street - ____Ranger
+Night
+10
+
+Music: 1980s: Song: Seperate Ways (Worlds Apart)?
+Journey
+10
+
+Music: 1980s: Song: Sexual ____- Marvin Gaye
+Healing
+10
+
+Music: 1980s: Song: Sexy Eyes - Dr. ____
+Hook
+10
+
+Music: 1980s: Song: Shadows Of The ____- Pat Benatar
+Night
+10
+
+Music: 1980s: Song: Shake You Down - ____Abbott
+Gregory
+10
+
+Music: 1980s: Song: Shake Your Love - ____Gibson
+Debbie
+10
+
+Music: 1980s: Song: Shame On The Moon - Bob ____& The Silver Bullet Band
+Seger
+10
+
+Music: 1980s: Song: Share Your Love With Me - ____Rogers
+Kenny
+10
+
+Music: 1980s: Song: She ____- Cyndi Lauper
+Bop
+10
+
+Music: 1980s: Song: She ____Me With Science - Thomas Dolby
+Blinded
+10
+
+Music: 1980s: Song: She Works Hard For The Money - ____Summer
+Donna
+10
+
+Music: 1980s: Song: She's A ____- The Tubes
+Beauty
+10
+
+Music: 1980s: Song: Sheena Easton?
+Morning train
+10
+
+Music: 1980s: Song: Sheriff?
+When i'm with you
+10
+
+Music: 1980s: Song: Shining Star - The ____
+Manhattans
+10
+
+Music: 1980s: Song: Should I Do It - Pointer ____
+Sisters
+10
+
+Music: 1980s: Song: Should've Known Better - ____Marx
+Richard
+10
+
+Music: 1980s: Song: Shout - Tears For ____
+Fears
+10
+
+Music: 1980s: Song: Silent ____(On Dangerous Ground) - Mike + The Mechanics
+Running
+10
+
+Music: 1980s: Song: Simple Minds?
+Don't you forget about me
+10
+
+Music: 1980s: Song: Simply ____- Robert Palmer
+Irresistible
+10
+
+Music: 1980s: Song: Simply Red?
+Holding back the years
+10
+
+Music: 1980s: Song: Simply Red?
+If you don't know me by now
+10
+
+Music: 1980s: Song: Sin?ad O'Connor?
+Troy
+10
+
+Music: 1980s: Song: Slade?
+My oh my
+10
+
+Music: 1980s: Song: Slade?
+Run runaway
+10
+
+Music: 1980s: Song: Sledgehammer - ____Gabriel
+Peter
+10
+
+Music: 1980s: Song: Sleeping Bag - ZZ ____
+Top
+10
+
+Music: 1980s: Song: Slow Hand - ____Sisters
+Pointer
+10
+
+Music: 1980s: Song: Small Town - ____Cougar Mellencamp
+John
+10
+
+Music: 1980s: Song: Smiths?
+Please please please let me get what i Want
+10
+
+Music: 1980s: Song: Smokey Robinson?
+Being with you
+10
+
+Music: 1980s: Song: Smooth ____- Sade
+Operator
+10
+
+Music: 1980s: Song: So Emotional - ____Houston
+Whitney
+10
+
+Music: 1980s: Song: Soft Cell?
+Tainted love
+10
+
+Music: 1980s: Song: Solitare - Laura ____
+Branigan
+10
+
+Music: 1980s: Song: Some Like It Hot - ____Station
+Power
+10
+
+Music: 1980s: Song: Somebody's ____Me - Rockwell
+Watching
+10
+
+Music: 1980s: Song: Somebody's Knockin' - ____Gibbs
+Terri
+10
+
+Music: 1980s: Song: Someday - ____Tiger
+Glass
+10
+
+Music: 1980s: Song: Something So Strong - ____House
+Crowded
+10
+
+Music: 1980s: Song: Somewhere Out There - Linda ____& James Ingram
+Ronstadt
+10
+
+Music: 1980s: Song: Song appearing first on the charts in 1984, the four years later to go to #1?
+Red red wine
+10
+
+Music: 1980s: Song: Songbird - ____G
+Kenny
+10
+
+Music: 1980s: Song: Spandau Ballet?
+True
+10
+
+Music: 1980s: Song: Special Lady - Ray, ____& Brown
+Goodman
+10
+
+Music: 1980s: Song: Spies ____Us - Paul Mccartney
+Like
+10
+
+Music: 1980s: Song: Spin Doctors?
+Little miss can't be wrong
+10
+
+Music: 1980s: Song: Spinners?
+Working my way back to you
+10
+
+Music: 1980s: Song: Spirits In The ____World - The Police
+Material
+10
+
+Music: 1980s: Song: St. ____Fire (Man In Motion) - John Parr
+Elmo's
+10
+
+Music: 1980s: Song: Stand ____- Stevie Nicks
+Back
+10
+
+Music: 1980s: Song: Starship?
+Sara
+10
+
+Music: 1980s: Song: Starship?
+We built this city
+10
+
+Music: 1980s: Song: Start Me Up - The ____Stones
+Rolling
+10
+
+Music: 1980s: Song: Steal ____- Robbie Dupree
+Away
+10
+
+Music: 1980s: Song: Steely Dan?
+Hey 19
+10
+
+Music: 1980s: Song: Step By ____- Eddie Rabbitt
+Step
+10
+
+Music: 1980s: Song: Steppin' Out - Joe ____
+Jackson
+10
+
+Music: 1980s: Song: Steve Miller Band?
+Abracadabra
+10
+
+Music: 1980s: Song: Steve Perry?
+Oh sherrie
+10
+
+Music: 1980s: Song: Steve Winwood?
+Back in the high life again
+10
+
+Music: 1980s: Song: Steve Winwood?
+Valerie
+10
+
+Music: 1980s: Song: Stevie Nicks and Don Henley?
+Leather and lace
+10
+
+Music: 1980s: Song: Stevie Wonder?
+I just called to say i love you
+10
+
+Music: 1980s: Song: Sting?
+Fortress around your heart
+10
+
+Music: 1980s: Song: Sting?
+Russians
+10
+
+Music: 1980s: Song: Stomp! The ____Johnson
+Brothers
+10
+
+Music: 1980s: Song: Stop ____My Heart Around - Stevie Nicks W/ Tom Petty
+Dragging
+10
+
+Music: 1980s: Song: Stray Cats?
+Rock this town
+10
+
+Music: 1980s: Song: Stray Cats?
+Stray cat strut
+10
+
+Music: 1980s: Song: Strut - Sheena ____
+Easton
+10
+
+Music: 1980s: Song: Stuck With You - Huey ____& The News
+Lewis
+10
+
+Music: 1980s: Song: Styx?
+Babe
+10
+
+Music: 1980s: Song: Styx?
+Don't let it end
+10
+
+Music: 1980s: Song: Styx?
+Mr. roboto
+10
+
+Music: 1980s: Song: Suddenly - ____Ocean
+Billy
+10
+
+Music: 1980s: Song: Suddenly Last Summer - The ____
+Motels
+10
+
+Music: 1980s: Song: Sukiyaki - Taste Of ____
+Honey
+10
+
+Music: 1980s: Song: Summer Of '69 - ____Adams
+Bryan
+10
+
+Music: 1980s: Song: Super ____(Part 1) - Rick James
+Freak
+10
+
+Music: 1980s: Song: Supertramp?
+It's raining again
+10
+
+Music: 1980s: Song: Supertramp?
+Long way home
+10
+
+Music: 1980s: Song: Supertramp?
+The logical song
+10
+
+Music: 1980s: Song: Survivor?
+Eye of the tiger
+10
+
+Music: 1980s: Song: Survivor?
+The search is over
+10
+
+Music: 1980s: Song: Suzanne Vega?
+Luka
+10
+
+Music: 1980s: Song: Sweet ____- Air Supply
+Dreams
+10
+
+Music: 1980s: Song: Sweet ____(Are Made Of This) - Eurythmics
+Dreams
+10
+
+Music: 1980s: Song: Sweet Child O' ____- Guns N' Roses
+Mine
+10
+
+Music: 1980s: Song: Sweet Freedom - Michael ____
+Mcdonald
+10
+
+Music: 1980s: Song: Sweet Love - ____Baker
+Anita
+10
+
+Music: 1980s: Song: Sweetheart - Franke & The ____
+Knockouts
+10
+
+Music: 1980s: Song: Sylvia?
+Nobody
+10
+
+Music: 1980s: Song: T'Pau?
+Heart and soul
+10
+
+Music: 1980s: Song: Taco?
+Puttin' on the ritz
+10
+
+Music: 1980s: Song: Tainted ____- Soft Cell
+Love
+10
+
+Music: 1980s: Song: Take It ____On Me - Little River Band
+Easy
+10
+
+Music: 1980s: Song: Take It On The ____- REO Speedwagon
+Run
+10
+
+Music: 1980s: Song: Take Me ____- Phil Collins
+Home
+10
+
+Music: 1980s: Song: Take Me Home ____- Eddie Money
+Tonight
+10
+
+Music: 1980s: Song: Take Me To Heart?
+Quarterflash
+10
+
+Music: 1980s: Song: Take My ____(You Can Have It If You Want It)- Kool & Gang
+Heart
+10
+
+Music: 1980s: Song: Take My Breath Away?
+Berlin
+10
+
+Music: 1980s: Song: Take Your ____(Do It Right) - S.O.S. Band
+Time
+10
+
+Music: 1980s: Song: Talk To Me - ____Nicks
+Stevie
+10
+
+Music: 1980s: Song: Talking Heads?
+And she was
+10
+
+Music: 1980s: Song: Talking Heads?
+Burning down the house
+10
+
+Music: 1980s: Song: Taylor Dayne?
+I'll always love you
+10
+
+Music: 1980s: Song: Tears for Fears?
+Everybody wants to rule the World
+10
+
+Music: 1980s: Song: Tears for Fears?
+Shout
+10
+
+Music: 1980s: Song: Teena Marie?
+Lovergirl
+10
+
+Music: 1980s: Song: Telefone (Long Distance Love Affair) - ____Easton
+Sheena
+10
+
+Music: 1980s: Song: Tell Her ____It - Billy Joel
+About
+10
+
+Music: 1980s: Song: Tell It To My ____- Taylor Dayne
+Heart
+10
+
+Music: 1980s: Song: Terence Trent D'Arby?
+Wishing well
+10
+
+Music: 1980s: Song: That ____- Stevie Wonder
+Girl
+10
+
+Music: 1980s: Song: That's All!?
+Genesis
+10
+
+Music: 1980s: Song: That's What ____Are For - Dionne And Friends
+Friends
+10
+
+Music: 1980s: Song: The ____- Cheap Trick
+Flame
+10
+
+Music: 1980s: Song: The ____- Duran Duran
+Reflex
+10
+
+Music: 1980s: Song: The ____- Scandal/Patty Smyth
+Warrior
+10
+
+Music: 1980s: Song: The ____Boys Medley - The Beach Boys
+Beach
+10
+
+Music: 1980s: Song: The ____Dance - Men Without Hats
+Safety
+10
+
+Music: 1980s: Song: The ____In Red - Chris Deburgh
+Lady
+10
+
+Music: 1980s: Song: The ____It Is - Bruce Hornsby & The Range
+Way
+10
+
+Music: 1980s: Song: The ____Life - Sheila E
+Glamorous
+10
+
+Music: 1980s: Song: The ____Move Medley - The Beatles
+Beatles
+10
+
+Music: 1980s: Song: The ____Of Love - Huey Lewis & The News
+Power
+10
+
+Music: 1980s: Song: The ____Of Rock & Roll - Huey Lewis & The News
+Heart
+10
+
+Music: 1980s: Song: The ____Of Times - Styx
+Best
+10
+
+Music: 1980s: Song: The ____Song (They Don't Write 'Em) - Greg Kihn Band
+Breakup
+10
+
+Music: 1980s: Song: The ____Thing (I've Ever Known) - Juice Newton
+Sweetest
+10
+
+Music: 1980s: Song: The ____Things - Steve Winwood
+Finer
+10
+
+Music: 1980s: Song: The ____Time - Billy Joel
+Longest
+10
+
+Music: 1980s: Song: The ____Time I Fall - Peter Cetera And Amy Grant
+Next
+10
+
+Music: 1980s: Song: The Boys Of Summer - Don ____
+Henley
+10
+
+Music: 1980s: Song: The Cars?
+Drive
+10
+
+Music: 1980s: Song: The Girl Is ____- Michael Jackson & Paul Mccartney
+Mine
+10
+
+Music: 1980s: Song: The Heat Is On - Glenn ____
+Frey
+10
+
+Music: 1980s: Song: The Language Of Love - Dan ____
+Fogelberg
+10
+
+Music: 1980s: Song: The Long Run?
+Eagles
+10
+
+Music: 1980s: Song: The Look Of Love (Part One)?
+ABC
+10
+
+Music: 1980s: Song: The Night ____- Little River Band
+Owls
+10
+
+Music: 1980s: Song: The One I ____- R.E.M
+Love
+10
+
+Music: 1980s: Song: The One That You Love - ____Supply
+Air
+10
+
+Music: 1980s: Song: The Other ____- Ray Parker Jr
+Woman
+10
+
+Music: 1980s: Song: The Other Guy - ____River Band
+Little
+10
+
+Music: 1980s: Song: The Rose - ____Midler
+Bette
+10
+
+Music: 1980s: Song: The Search Is Over?
+Survivor
+10
+
+Music: 1980s: Song: The Second Time ____- Shalamar
+Around
+10
+
+Music: 1980s: Song: The Sweetest ____- Sade
+Taboo
+10
+
+Music: 1980s: Song: The Tide Is High?
+Blondie
+10
+
+Music: 1980s: Song: The Wanderer - ____Summer
+Donna
+10
+
+Music: 1980s: Song: The Way You ____Me Feel - Michael Jackson
+Make
+10
+
+Music: 1980s: Song: The Wild ____- Duran Duran
+Boys
+10
+
+Music: 1980s: Song: The Winner Takes It All?
+Abba
+10
+
+Music: 1980s: Song: There are things that I don't want to learn?
+One more try
+10
+
+Music: 1980s: Song: There'll Be Sad Songs (To Make You Cry) - ____Ocean
+Billy
+10
+
+Music: 1980s: Song: These ____- Heart
+Dreams
+10
+
+Music: 1980s: Song: They Don't Know - ____Ullman
+Tracey
+10
+
+Music: 1980s: Song: Think Of Laura - ____Cross
+Christopher
+10
+
+Music: 1980s: Song: This Is It - ____Loggins
+Kenny
+10
+
+Music: 1980s: Song: This is not the end of it all?
+What you need
+10
+
+Music: 1980s: Song: This Little Girl - Gary U.S. ____
+Bonds
+10
+
+Music: 1980s: Song: This song spent more weeks at #1 than any other in the 1980s?
+Physical
+10
+
+Music: 1980s: Song: Thomas Dolby?
+Airwaves
+10
+
+Music: 1980s: Song: Thomas Dolby?
+She blinded me with science
+10
+
+Music: 1980s: Song: Thompson Twins?
+Hold me now
+10
+
+Music: 1980s: Song: Thompson Twins?
+Lies
+10
+
+Music: 1980s: Song: Tierra?
+Together
+10
+
+Music: 1980s: Song: Tim Cappello?
+I still believe
+10
+
+Music: 1980s: Song: Timbuk3?
+The future's so bright i gotta wear Shades
+10
+
+Music: 1980s: Song: Time - Alan ____Project
+Parsons
+10
+
+Music: 1980s: Song: Timex Social Club?
+Rumors
+10
+
+Music: 1980s: Song: Timothy B. Schmit?
+So in love
+10
+
+Music: 1980s: Song: Tina Turner?
+Private dancer
+10
+
+Music: 1980s: Song: Tina Turner?
+What's love got to do with it
+10
+
+Music: 1980s: Song: Tired Of Toein' The Line - Tocky ____
+Burnette
+10
+
+Music: 1980s: Song: To All The Girls I've Loved Before - ____Iglasias/Willie Nelson
+Julio
+10
+
+Music: 1980s: Song: To Be A ____- Billy Idol
+Lover
+10
+
+Music: 1980s: Song: Tom Petty & the Heartbreakers?
+Don't do me like That
+10
+
+Music: 1980s: Song: Tom Petty & the Heartbreakers?
+You got lucky
+10
+
+Music: 1980s: Song: Tommy Conwell & the Young Rumblers?
+If we never Meet Again
+10
+
+Music: 1980s: Song: Tommy Tutone?
+Jenny (867-5309)
+10
+
+Music: 1980s: Song: Tones on Tail?
+Slender fungus
+10
+
+Music: 1980s: Song: Toni Basil?
+Mickey
+10
+
+Music: 1980s: Song: Tonight, ____, Tonight - Genesis
+Tonight
+10
+
+Music: 1980s: Song: Tonight, I ____My Love - Peabo Bryson & Roberta Flack
+Celebrate
+10
+
+Music: 1980s: Song: Too Hot - ____& The Gang
+Kool
+10
+
+Music: 1980s: Song: Too Late For ____- Julian Lennon
+Goodbyes
+10
+
+Music: 1980s: Song: Too Shy?
+Kajagoogoo
+10
+
+Music: 1980s: Song: Total ____Of The Heart - Bonnie Tyler
+Eclipse
+10
+
+Music: 1980s: Song: Toto Coelo?
+I eat cannibals
+10
+
+Music: 1980s: Song: Toto?
+Africa
+10
+
+Music: 1980s: Song: Toto?
+Rosanna
+10
+
+Music: 1980s: Song: Toto?
+Rosanna
+10
+
+Music: 1980s: Song: Toto?
+Stranger in town
+10
+
+Music: 1980s: Song: Touch Me (I Want Your____) - Samantha Fox
+Body
+10
+
+Music: 1980s: Song: Tracey Ullman?
+They don't know
+10
+
+Music: 1980s: Song: Tracy Chapman?
+Fast car
+10
+
+Music: 1980s: Song: Traveling Wilburys?
+Handle with care
+10
+
+Music: 1980s: Song: Treat Me Right - Pat ____
+Benatar
+10
+
+Music: 1980s: Song: Trio?
+Da da da
+10
+
+Music: 1980s: Song: Trouble - ____Buckingham
+Lindsey
+10
+
+Music: 1980s: Song: True ____- Cyndi Lauper
+Colors
+10
+
+Music: 1980s: Song: True - ____Ballet
+Spandau
+10
+
+Music: 1980s: Song: Truly - Lionel ____
+Richie
+10
+
+Music: 1980s: Song: Tryin' To Live My Life ____You - Bob Seger
+Without
+10
+
+Music: 1980s: Song: Tubes?
+She's a beauty
+10
+
+Music: 1980s: Song: Turn Your Love ____- George Benson
+Around
+10
+
+Music: 1980s: Song: Twilight Zone - Golden ____
+Earring
+10
+
+Music: 1980s: Song: Twist Of Fate - ____Newton-John
+Olivia
+10
+
+Music: 1980s: Song: Twisted Sister?
+We're not gonna take it
+10
+
+Music: 1980s: Song: Two Of Hearts - ____Q
+Stacy
+10
+
+Music: 1980s: Song: Typical Male - ____Turner
+Tina
+10
+
+Music: 1980s: Song: U Got The Look?
+Prince
+10
+
+Music: 1980s: Song: U2?
+I still haven't found what i'm looking for
+10
+
+Music: 1980s: Song: U2?
+Where the streets have no name
+10
+
+Music: 1980s: Song: U2?
+With or without you
+10
+
+Music: 1980s: Song: UB40?
+Red red wine
+10
+
+Music: 1980s: Song: Union Of The Snake - ____Duran
+Duran
+10
+
+Music: 1980s: Song: Up Where We ____- Joe Cocker & Jennifer Warnes
+Belong
+10
+
+Music: 1980s: Song: Upside Down - ____Ross
+Diana
+10
+
+Music: 1980s: Song: Uptown Girl - ____Joel
+Billy
+10
+
+Music: 1980s: Song: Urgent?
+Foreigner
+10
+
+Music: 1980s: Song: Valerie - Steve ____
+Winwood
+10
+
+Music: 1980s: Song: Valotte - Julian ____
+Lennon
+10
+
+Music: 1980s: Song: Van Halen?
+Dreams
+10
+
+Music: 1980s: Song: Van Halen?
+Hot for teacher
+10
+
+Music: 1980s: Song: Van Halen?
+Jump
+10
+
+Music: 1980s: Song: Van Halen?
+Love walks in
+10
+
+Music: 1980s: Song: Vapors?
+Turning japanese
+10
+
+Music: 1980s: Song: Venus?
+Bananarama
+10
+
+Music: 1980s: Song: Victory - Kool & The ____
+Gang
+10
+
+Music: 1980s: Song: Village People?
+Y.m.c.a
+10
+
+Music: 1980s: Song: Violent Femmes?
+Blister in the sun
+10
+
+Music: 1980s: Song: Violent Femmes?
+Prove my love
+10
+
+Music: 1980s: Song: Waiting For A ____Like You - Foreigner
+Girl
+10
+
+Music: 1980s: Song: Waiting For A Star To Fall - ____Meets Girl
+Boy
+10
+
+Music: 1980s: Song: Waiting On A Friend - ____Rolling Stones
+The
+10
+
+Music: 1980s: Song: Wake Me Up ____You Go-Go - Wham!
+Before
+10
+
+Music: 1980s: Song: Walk Like An ____- Bangles
+Egyptian
+10
+
+Music: 1980s: Song: Walk Of Life - ____Straits
+Dire
+10
+
+Music: 1980s: Song: Walking On Sunshine - ____& The Waves
+Katrina
+10
+
+Music: 1980s: Song: Wall of Voodoo?
+Mexican radio
+10
+
+Music: 1980s: Song: Wang Chung?
+Dance hall days
+10
+
+Music: 1980s: Song: Wang Chung?
+Everybody have fun tonight
+10
+
+Music: 1980s: Song: Wanted Dead Or Alive - ____Jovi
+Bon
+10
+
+Music: 1980s: Song: Warrant?
+Heaven
+10
+
+Music: 1980s: Song: Watching The ____- John Lennon
+Wheels
+10
+
+Music: 1980s: Song: We ____The Beat - The Go-Go's
+Got
+10
+
+Music: 1980s: Song: We ____This City - Starship
+Built
+10
+
+Music: 1980s: Song: We Are The World - USA For ____
+Africa
+10
+
+Music: 1980s: Song: We Belong - ____Benatar
+Pat
+10
+
+Music: 1980s: Song: We Don't Have To Take Our ____Off - Jermaine Sterwart
+Clothes
+10
+
+Music: 1980s: Song: We Don't Need ____Hero (Thunderdome) - Tina Turner
+Another
+10
+
+Music: 1980s: Song: We Don't Talk Anymore - Cliff ____
+Richard
+10
+
+Music: 1980s: Song: We'll Be Together?
+Sting
+10
+
+Music: 1980s: Song: We're saving our own lives?
+We are the world
+10
+
+Music: 1980s: Song: We've Got Tonight - ____Rogers & Sheena Easton
+Kenny
+10
+
+Music: 1980s: Song: Weather Girls?
+It's raining men
+10
+
+Music: 1980s: Song: West End Girls - ____Shop Boys
+Pet
+10
+
+Music: 1980s: Song: Wham!?
+Careless whisper
+10
+
+Music: 1980s: Song: Wham!?
+Freedom
+10
+
+Music: 1980s: Song: Wham!?
+Freedom
+10
+
+Music: 1980s: Song: What ____You Done For Me Lately - Janet Jackson
+Have
+10
+
+Music: 1980s: Song: What About Love?
+Heart
+10
+
+Music: 1980s: Song: What Are We Doing In Love - ____West
+Dottie
+10
+
+Music: 1980s: Song: What is the title of Janet Jackson's first No. 1 song?
+When I think of you
+10
+
+Music: 1980s: Song: What Kind Of Fool - Barbra ____& Barry Gibb
+Streisand
+10
+
+Music: 1980s: Song: what was the title of Bryan Adams' only No. 1 song of the 1980s?
+Heaven
+10
+
+Music: 1980s: Song: what was the title of Poison's only No. 1 hit?
+Every rose has its thorn
+10
+
+Music: 1980s: Song: what was the title of the 1986 number one by the spitting image puppets?
+The chicken song
+10
+
+Music: 1980s: Song: What You Need?
+INXS
+10
+
+Music: 1980s: Song: What's Forever For - ____Murphey
+Michael
+10
+
+Music: 1980s: Song: What's Love ____To Do With It - Tina Turner
+Got
+10
+
+Music: 1980s: Song: When ____Sings - ABC
+Smokey
+10
+
+Music: 1980s: Song: When I Think Of You - Janet ____
+Jackson
+10
+
+Music: 1980s: Song: When in Rome?
+The promise
+10
+
+Music: 1980s: Song: Where Do ____Hearts Go - Whitney Houston
+Broken
+10
+
+Music: 1980s: Song: While You See A Chance - Steve ____
+Winwood
+10
+
+Music: 1980s: Song: Whitesnake?
+Here i go again
+10
+
+Music: 1980s: Song: Who will dance on the floor in the round?
+Billie jean
+10
+
+Music: 1980s: Song: Who Will You Run To?
+Heart
+10
+
+Music: 1980s: Song: Who's Crying Now?
+Journey
+10
+
+Music: 1980s: Song: Who's Johnny - El ____
+Debarge
+10
+
+Music: 1980s: Song: Who's Zommin' ____- Aretha Franklin
+Who
+10
+
+Music: 1980s: Song: Why Do Fools ____In Love - Diana Ross
+Fall
+10
+
+Music: 1980s: Song: Wild, Wild ____- Escape Club
+West
+10
+
+Music: 1980s: Song: Will to Power?
+Baby i love your way
+10
+
+Music: 1980s: Song: Will You Still Love Me?
+Chicago
+10
+
+Music: 1980s: Song: Wishing Well - ____Trent D'Arby
+Terence
+10
+
+Music: 1980s: Song: With Or ____You - U2
+Without
+10
+
+Music: 1980s: Song: With You I'm ____Again - Billy Preston & Syreeta
+Born
+10
+
+Music: 1980s: Song: Woman In Love - ____Streisand
+Barbra
+10
+
+Music: 1980s: Song: Word Up?
+Cameo
+10
+
+Music: 1980s: Song: Words Get In The Way - ____Sound Machine
+Miami
+10
+
+Music: 1980s: Song: Wrapped Around Your ____- The Police
+Finger
+10
+
+Music: 1980s: Song: Xanadu - ____Newton-John
+Olivia
+10
+
+Music: 1980s: Song: Yes, I'm ____- Teri Desario W/ KC
+Ready
+10
+
+Music: 1980s: Song: Yesterday's ____- Neil Diamond
+Songs
+10
+
+Music: 1980s: Song: You ____Be Mine (The Woo Woo Song) - Jeffrey Osboune
+Should
+10
+
+Music: 1980s: Song: You ____Be Right - Billy Joel
+May
+10
+
+Music: 1980s: Song: You ____Hear How She Talks About You - M. Manchester
+Should
+10
+
+Music: 1980s: Song: You ____It All - The Jets
+Got
+10
+
+Music: 1980s: Song: You ____Me Hangin' On - Kim Wilde
+Keep
+10
+
+Music: 1980s: Song: You ____Think - The Cars
+Might
+10
+
+Music: 1980s: Song: You ____To The City - Glenn Frey
+Belong
+10
+
+Music: 1980s: Song: You And I - ____Rabbitt W/ Crystal Gayle
+Eddie
+10
+
+Music: 1980s: Song: You Are - ____Richie
+Lionel
+10
+
+Music: 1980s: Song: You Can Do ____- America
+Magic
+10
+
+Music: 1980s: Song: You Can't Hurry Love - Phil ____
+Collins
+10
+
+Music: 1980s: Song: You Don't ____Me Anymore - Steel Breeze
+Want
+10
+
+Music: 1980s: Song: You Give Good Love - ____Houston
+Whitney
+10
+
+Music: 1980s: Song: You Give Love A ____Name - Bon Jovi
+Bad
+10
+
+Music: 1980s: Song: You Make My Dreams - ____Hall & John Oates
+Daryl
+10
+
+Music: 1980s: Song: You say, 'go slow,' I fall behind?
+Time after time
+10
+
+Music: 1980s: Song: You were just a girl I knew?
+The search is over
+10
+
+Music: 1980s: Song: You're Only ____(Second Wind) - Billy Joel
+Human
+10
+
+Music: 1980s: Song: You're The Inspiration?
+Chicago
+10
+
+Music: 1980s: Song: Young Turks - Rod ____
+Stewart
+10
+
+Music: 1980s: Song: Your ____Dreams - The Moody Blues
+Wildest
+10
+
+Music: 1980s: Song: Your ____Is Driving Me Crazy - Sammy Hagar
+Love
+10
+
+Music: 1980s: Song: Your Are My ____- Freddie Jackson
+Lady
+10
+
+Music: 1980s: Song: Your Love - The ____
+Outfield
+10
+
+Music: 1980s: the biggest selling single from paul simon's graceland?
+You can call me al
+10
+
+Music: 1980s: The first all-girl group to hit #1?
+Bangles
+10
+
+Music: 1980s: The Flying Pickets took a cover version of this Yaz song to #1 in the U.K?
+Only you
+10
+
+Music: 1980s: The group Styx had a hit with a sailing song in the 1970's ('Come Sail Away'). Who sang 'Sailing' in the 1980's?
+Christopher Cross
+10
+
+Music: 1980s: The singer/model/transvestite Marilyn was this singer's lover circa 1984?
+Boy george
+10
+
+Music: 1980s: This 1985 benefit song hit #1 and was the biggest selling single of the decade?
+We are the world
+10
+
+Music: 1980s: This is the only album to ever have five #1s...?
+Bad
+10
+
+Music: 1980s: TV/Film: Song: Duran Duran hit #1 in 1985 with this movie song...?
+A view to a kill
+10
+
+Music: 1990s: Album: What album did Jimmy Buffett release in 1996?
+Banana wind
+10
+
+Music: 1990s: Artist/Band: ...Baby One More Time?
+Britney spears
+10
+
+Music: 1990s: Artist/Band: 'Til You Do Me Right?
+After 7
+10
+
+Music: 1990s: Artist/Band: (Everything I Do I Do It For You?
+Brian adams
+10
+
+Music: 1990s: Artist/Band: (God Must Have Spent) A Little More Time On You?
+'n sync
+10
+
+Music: 1990s: Artist/Band: (I Know I Got Skillz?
+Shaquille o'neal
+10
+
+Music: 1990s: Artist/Band: (If There Was Any Other Way?
+Celine dion
+10
+
+Music: 1990s: Artist/Band: 1,2,3,4 (Sumpin'New)?
+Coolio
+10
+
+Music: 1990s: Artist/Band: 100% Pure Love?
+Crystal waters
+10
+
+Music: 1990s: Artist/Band: 1979?
+The smashing pumpkins
+10
+
+Music: 1990s: Artist/Band: 1st Of Tha Month?
+Bone thugs-n-harmony
+10
+
+Music: 1990s: Artist/Band: 2 Become 1?
+Spice girls
+10
+
+Music: 1990s: Artist/Band: 2 Legit 2 Quit?
+Hammer
+10
+
+Music: 1990s: Artist/Band: 3 A.M. Eternal?
+The klf
+10
+
+Music: 1990s: Artist/Band: 4 Seasons Of Loneliness?
+Boyz ii men
+10
+
+Music: 1990s: Artist/Band: 7?
+Prince and the new power generation
+10
+
+Music: 1990s: Artist/Band: 70's Love Groove?
+Janet jackson
+10
+
+Music: 1990s: Artist/Band: A Better Love?
+Londonbeat
+10
+
+Music: 1990s: Artist/Band: A Little Love?
+Corey hart
+10
+
+Music: 1990s: Artist/Band: A Song For Mama?
+Boyz ii men
+10
+
+Music: 1990s: Artist/Band: Achy Breaky Heart?
+Billy ray cyrus
+10
+
+Music: 1990s: Artist/Band: Across The River?
+Bruce hornsby and the range
+10
+
+Music: 1990s: Artist/Band: Addams Groove?
+Hammer
+10
+
+Music: 1990s: Artist/Band: Adia?
+Sarah mclachlan
+10
+
+Music: 1990s: Artist/Band: After The Rain?
+Nelson
+10
+
+Music: 1990s: Artist/Band: Again Tonight?
+John mellencamp
+10
+
+Music: 1990s: Artist/Band: Again?
+Janet jackson
+10
+
+Music: 1990s: Artist/Band: Ain't 2 Proud 2 Beg?
+Tlc
+10
+
+Music: 1990s: Artist/Band: Ain't Nuthin' But A She Thing?
+Salt-n-pepa
+10
+
+Music: 1990s: Artist/Band: All 4 Love/Color Me Badd?
+Color me badd
+10
+
+Music: 1990s: Artist/Band: All About Soul?
+Billy joel
+10
+
+Music: 1990s: Artist/Band: All Around The World?
+Lisa stansfield
+10
+
+Music: 1990s: Artist/Band: All By Myself?
+Celine dion
+10
+
+Music: 1990s: Artist/Band: All For Love?
+Bryan adams/rod stewart/sting
+10
+
+Music: 1990s: Artist/Band: All I Have To Give?
+Backstreet boys
+10
+
+Music: 1990s: Artist/Band: All I Wanna Do Is Make Love To You?
+Heart
+10
+
+Music: 1990s: Artist/Band: All I Wanna Do?
+Sheryl crow
+10
+
+Music: 1990s: Artist/Band: All I Want?
+Toad the wet sprocket
+10
+
+Music: 1990s: Artist/Band: All My Life?
+Linda ronstadt & aaron neville
+10
+
+Music: 1990s: Artist/Band: All Or Nothing?
+Milli vanilli
+10
+
+Music: 1990s: Artist/Band: All That She Wants?
+Ace of base
+10
+
+Music: 1990s: Artist/Band: All The Man That I Need?
+Whitney houston
+10
+
+Music: 1990s: Artist/Band: All The Places (I Will Kiss You)?
+Aaron hall
+10
+
+Music: 1990s: Artist/Band: All The Things (Your Man Won't Do)?
+Del amitri
+10
+
+Music: 1990s: Artist/Band: All This Time?
+Sting
+10
+
+Music: 1990s: Artist/Band: Alright?
+Janet jackson
+10
+
+Music: 1990s: Artist/Band: Always Be My Baby?
+Mariah carey
+10
+
+Music: 1990s: Artist/Band: Always In My Heart?
+Tevin campbell
+10
+
+Music: 1990s: Artist/Band: Always The Last To Know?
+Del amitri
+10
+
+Music: 1990s: Artist/Band: Amazing?
+Aerosmith
+10
+
+Music: 1990s: Artist/Band: And Our Feelings?
+Babyface
+10
+
+Music: 1990s: Artist/Band: And So It Goes?
+Billy joel
+10
+
+Music: 1990s: Artist/Band: Angel Baby?
+Angelica
+10
+
+Music: 1990s: Artist/Band: Angel Of Mine?
+Monica
+10
+
+Music: 1990s: Artist/Band: Anniversary?
+Tony! toni! tone!
+10
+
+Music: 1990s: Artist/Band: Another Night?
+Real mccoy
+10
+
+Music: 1990s: Artist/Band: Another Sad Love Song?
+Toni braxton
+10
+
+Music: 1990s: Artist/Band: Any Man Of Mine?
+Shania twain
+10
+
+Music: 1990s: Artist/Band: Any Time, Any Place/And On And On?
+Janet jackson
+10
+
+Music: 1990s: Artist/Band: Anything I Want?
+Kevin paige
+10
+
+Music: 1990s: Artist/Band: Anything Is Possible?
+Debbie gibson
+10
+
+Music: 1990s: Artist/Band: Anytime You Need A Friend?
+Mariah carey
+10
+
+Music: 1990s: Artist/Band: Are You That Somebody?
+Aaliyah
+10
+
+Music: 1990s: Artist/Band: Around The Way Girl?
+L.l. cool j
+10
+
+Music: 1990s: Artist/Band: As I Lay Me Down?
+Sophie b. hawkins
+10
+
+Music: 1990s: Artist/Band: Ask Of You Raphael?
+Saadiq
+10
+
+Music: 1990s: Artist/Band: At Your Best (You Are Love?
+Aaliyah
+10
+
+Music: 1990s: Artist/Band: B.B.D. (I Thought It Was Me?
+Bell biv devoe
+10
+
+Music: 1990s: Artist/Band: Baby Baby?
+Amy grant
+10
+
+Music: 1990s: Artist/Band: Baby Got Back?
+Sir mix-a-lot
+10
+
+Music: 1990s: Artist/Band: Baby Hold On To Me?
+Gerald levert
+10
+
+Music: 1990s: Artist/Band: Baby I Love Your Way?
+Big mountain
+10
+
+Music: 1990s: Artist/Band: Baby I'm Yours?
+Shai
+10
+
+Music: 1990s: Artist/Band: Baby-Baby-Baby?
+Tlc
+10
+
+Music: 1990s: Artist/Band: Baby, It's Tonight?
+Jude cole
+10
+
+Music: 1990s: Artist/Band: Baby?
+Brandy
+10
+
+Music: 1990s: Artist/Band: Back 2 Good?
+Matchbox 20
+10
+
+Music: 1990s: Artist/Band: Back And Forth?
+Aaliyah
+10
+
+Music: 1990s: Artist/Band: Back For Good?
+Take that
+10
+
+Music: 1990s: Artist/Band: Back In The Day?
+Ahmad
+10
+
+Music: 1990s: Artist/Band: Back To The Hotel?
+N2deep
+10
+
+Music: 1990s: Artist/Band: Bad Boys?
+Inner circle
+10
+
+Music: 1990s: Artist/Band: Bad Girl?
+Madonna
+10
+
+Music: 1990s: Artist/Band: Bad Of The Heart?
+George lamond
+10
+
+Music: 1990s: Artist/Band: Bang And Blame?
+R.e.m.
+10
+
+Music: 1990s: Artist/Band: Barbie Girl?
+Aqua
+10
+
+Music: 1990s: Artist/Band: Barely Breathing?
+Duncan sheik
+10
+
+Music: 1990s: Artist/Band: Be Happy?
+Mary j. blige
+10
+
+Music: 1990s: Artist/Band: Be My Lover?
+La bouche
+10
+
+Music: 1990s: Artist/Band: Beautiful In My Eyes?
+Joshua kadison
+10
+
+Music: 1990s: Artist/Band: Beautiful Life?
+Ace of base
+10
+
+Music: 1990s: Artist/Band: Beauty And The Beast?
+Celine dion and peabo bryson
+10
+
+Music: 1990s: Artist/Band: Because Of Love?
+Janet jackson
+10
+
+Music: 1990s: Artist/Band: Because Of You?
+98 degrees
+10
+
+Music: 1990s: Artist/Band: Because The Night?
+10,000 maniacs
+10
+
+Music: 1990s: Artist/Band: Because You Loved Me?
+Celine dion
+10
+
+Music: 1990s: Artist/Band: Bed Of Roses?
+Bon jovi
+10
+
+Music: 1990s: Artist/Band: Before I Let You Go?
+Blackstreet
+10
+
+Music: 1990s: Artist/Band: Before You Walk Out Of My Life?
+Monica
+10
+
+Music: 1990s: Artist/Band: Best Friend?
+Brandy
+10
+
+Music: 1990s: Artist/Band: Better Than You?
+Lisa keith
+10
+
+Music: 1990s: Artist/Band: Big Daddy?
+Heavy d
+10
+
+Music: 1990s: Artist/Band: Big Poppa?
+The notorious b.i.g.
+10
+
+Music: 1990s: Artist/Band: Bitch?
+Meredith brooks
+10
+
+Music: 1990s: Artist/Band: Black Cat?
+Janet jackson
+10
+
+Music: 1990s: Artist/Band: Black Or White?
+Michael jackson
+10
+
+Music: 1990s: Artist/Band: Black Velvet?
+Alannah myles
+10
+
+Music: 1990s: Artist/Band: Blaze Of Glory?
+Jon bon jovi
+10
+
+Music: 1990s: Artist/Band: Blessed?
+Elton john
+10
+
+Music: 1990s: Artist/Band: Blowing Kisses In The Wind?
+Paula abdul
+10
+
+Music: 1990s: Artist/Band: Body & Soul?
+Anita baker
+10
+
+Music: 1990s: Artist/Band: Boom Shake The Room?
+Jazzy jeff and the fresh prince
+10
+
+Music: 1990s: Artist/Band: Boombastic?
+Shaggy
+10
+
+Music: 1990s: Artist/Band: Booti Call?
+Blackstreet
+10
+
+Music: 1990s: Artist/Band: Born To Roll?
+Masta ace incorporated
+10
+
+Music: 1990s: Artist/Band: Both Sides Of The Story?
+Phil collins
+10
+
+Music: 1990s: Artist/Band: Break It Down Again?
+Tears for fears
+10
+
+Music: 1990s: Artist/Band: Breakfast At Tiffany's?
+Deep blue something
+10
+
+Music: 1990s: Artist/Band: Breakin' My Heart (Pretty Brown Eyes?
+Mint condition
+10
+
+Music: 1990s: Artist/Band: Breathe Again?
+Toni braxton
+10
+
+Music: 1990s: Artist/Band: Broken Arrow?
+Rod stewart
+10
+
+Music: 1990s: Artist/Band: Brokenhearted?
+Brandy
+10
+
+Music: 1990s: Artist/Band: Brown Sugar?
+D'angelo
+10
+
+Music: 1990s: Artist/Band: Building A Mystery?
+Sarah mclachlan
+10
+
+Music: 1990s: Artist/Band: Bullet With Butterfly Wings?
+Smashing pumpkins
+10
+
+Music: 1990s: Artist/Band: Bump N' Grind?
+R. kelly
+10
+
+Music: 1990s: Artist/Band: By The Time This Night Is Over?
+Kenny g
+10
+
+Music: 1990s: Artist/Band: C'Mon N'Ride It (The Train)?
+Quad city dj's
+10
+
+Music: 1990s: Artist/Band: Can I Touch You... There?
+Michael bolton
+10
+
+Music: 1990s: Artist/Band: Can We Talk?
+Tevin campbell
+10
+
+Music: 1990s: Artist/Band: Can You Feel The Love Tonight?
+Elton john
+10
+
+Music: 1990s: Artist/Band: Can't Cry Anymore?
+Sheryl crow
+10
+
+Music: 1990s: Artist/Band: Can't Get Enough Of Your Love?
+Taylor dayne
+10
+
+Music: 1990s: Artist/Band: Can't Help Falling In Love?
+Ub40
+10
+
+Music: 1990s: Artist/Band: Can't Let Go?
+Mariah carey
+10
+
+Music: 1990s: Artist/Band: Can't Stop Fallin' Into Love?
+Cheap trick
+10
+
+Music: 1990s: Artist/Band: Can't Stop Lovin' You?
+Van halen
+10
+
+Music: 1990s: Artist/Band: Can't Stop This Thing We Started?
+Bryan adams
+10
+
+Music: 1990s: Artist/Band: Can't Stop?
+After 7
+10
+
+Music: 1990s: Artist/Band: Can't You See Total featuring?
+The notorious b.i.g.
+10
+
+Music: 1990s: Artist/Band: Candle In The Wind 1997?
+Elton john
+10
+
+Music: 1990s: Artist/Band: Candy Rain?
+Soul for real
+10
+
+Music: 1990s: Artist/Band: Candy?
+Iggy pop
+10
+
+Music: 1990s: Artist/Band: Cantaloop (Flip Fantasia?
+Us3
+10
+
+Music: 1990s: Artist/Band: Carnival?
+Natalie merchant
+10
+
+Music: 1990s: Artist/Band: Cat's In The Cradle?
+Ugly kid joe
+10
+
+Music: 1990s: Artist/Band: Cell Therapy?
+Goodie mob
+10
+
+Music: 1990s: Artist/Band: Change The World?
+Eric clapton
+10
+
+Music: 1990s: Artist/Band: Change?
+Lisa stansfield
+10
+
+Music: 1990s: Artist/Band: Changes?
+2pac
+10
+
+Music: 1990s: Artist/Band: Chasin' The Wind?
+Chicago
+10
+
+Music: 1990s: Artist/Band: Cherry Pie?
+Warrant
+10
+
+Music: 1990s: Artist/Band: Childhood?
+Michael jackson
+10
+
+Music: 1990s: Artist/Band: Children (instrumental)?
+Robert miles
+10
+
+Music: 1990s: Artist/Band: Children Of The Night?
+Richard marx
+10
+
+Music: 1990s: Artist/Band: Choose?
+Color me badd
+10
+
+Music: 1990s: Artist/Band: Church Of Your Heart?
+Roxette
+10
+
+Music: 1990s: Artist/Band: Circle Of Life?
+Elton john
+10
+
+Music: 1990s: Artist/Band: Close To You?
+Maxi priest
+10
+
+Music: 1990s: Artist/Band: Closer To Free?
+Bodeans
+10
+
+Music: 1990s: Artist/Band: Club At The End Of The Street?
+Elton john
+10
+
+Music: 1990s: Artist/Band: Coco Jamboo?
+Mr. president
+10
+
+Music: 1990s: Artist/Band: Colors Of The Wind?
+Vanessa williams
+10
+
+Music: 1990s: Artist/Band: Come And Get Your Love?
+Real mccoy
+10
+
+Music: 1990s: Artist/Band: Come And Talk To Me?
+Jodeci
+10
+
+Music: 1990s: Artist/Band: Come As You Are?
+Nirvana
+10
+
+Music: 1990s: Artist/Band: Come Baby Come?
+K7
+10
+
+Music: 1990s: Artist/Band: Come Back To Me?
+Janet jackson
+10
+
+Music: 1990s: Artist/Band: Come Inside?
+Intro
+10
+
+Music: 1990s: Artist/Band: Come To My Window?
+Melissa etheridge
+10
+
+Music: 1990s: Artist/Band: Come Undone?
+Duran duran
+10
+
+Music: 1990s: Artist/Band: Comedown?
+Bush
+10
+
+Music: 1990s: Artist/Band: Comforter?
+Shai
+10
+
+Music: 1990s: Artist/Band: Coming Out Of The Dark?
+Gloria estefan
+10
+
+Music: 1990s: Artist/Band: Completely?
+Michael bolton
+10
+
+Music: 1990s: Artist/Band: Connected?
+Stereo mc's
+10
+
+Music: 1990s: Artist/Band: Constant Craving?
+K.d. lang
+10
+
+Music: 1990s: Artist/Band: Constantly?
+Immature
+10
+
+Music: 1990s: Artist/Band: Cotton Eye Joe?
+Rednex
+10
+
+Music: 1990s: Artist/Band: Could This Be Love?
+Seduction
+10
+
+Music: 1990s: Artist/Band: Count On Me?
+Whitney houston & ce ce winans
+10
+
+Music: 1990s: Artist/Band: Counting Blue Cars?
+Dishwalla
+10
+
+Music: 1990s: Artist/Band: Couple Days Off?
+Huey lewis and the news
+10
+
+Music: 1990s: Artist/Band: Cradle Of Love?
+Billy idol
+10
+
+Music: 1990s: Artist/Band: Cruel Summer?
+Ace of base
+10
+
+Music: 1990s: Artist/Band: Cruising For Bruising?
+Basia
+10
+
+Music: 1990s: Artist/Band: Crush?
+Jennifer paige
+10
+
+Music: 1990s: Artist/Band: Cry For Help?
+Rick astley
+10
+
+Music: 1990s: Artist/Band: Cry For You?
+Jodeci
+10
+
+Music: 1990s: Artist/Band: Cryin'?
+Aerosmith
+10
+
+Music: 1990s: Artist/Band: Da Dip?
+Freaknasty
+10
+
+Music: 1990s: Artist/Band: Damn I Wish I Was Your Lover?
+Sophie b. hawkins
+10
+
+Music: 1990s: Artist/Band: Dare To Fall In Love?
+Brent bourgeois
+10
+
+Music: 1990s: Artist/Band: Daydreamin'?
+Tatyana ali
+10
+
+Music: 1990s: Artist/Band: Dazzey Duks?
+Duice
+10
+
+Music: 1990s: Artist/Band: Deadbeat Club?
+The b-52's
+10
+
+Music: 1990s: Artist/Band: Dear Mama?
+2 pac
+10
+
+Music: 1990s: Artist/Band: December 1963 (Oh What A Night?
+The four seasons
+10
+
+Music: 1990s: Artist/Band: December?
+Collective soul
+10
+
+Music: 1990s: Artist/Band: Dedicated?
+R. kelly
+10
+
+Music: 1990s: Artist/Band: Deeper And Deeper?
+Madonna
+10
+
+Music: 1990s: Artist/Band: Deeper Shade Of Soul?
+Urban dance squad
+10
+
+Music: 1990s: Artist/Band: Diamonds And Pearls?
+Prince and the new power generation
+10
+
+Music: 1990s: Artist/Band: Diggin' On You?
+Tlc
+10
+
+Music: 1990s: Artist/Band: Dirty Deeds?
+Joan jett
+10
+
+Music: 1990s: Artist/Band: Disappear?
+Inxs
+10
+
+Music: 1990s: Artist/Band: Ditty?
+Paperboy
+10
+
+Music: 1990s: Artist/Band: Divine Thing?
+The soup dragons
+10
+
+Music: 1990s: Artist/Band: Do I Have To Say The Words?
+Bryan adams
+10
+
+Music: 1990s: Artist/Band: Do It To Me?
+Lionel richie
+10
+
+Music: 1990s: Artist/Band: Do Me?
+Bell biv devoe
+10
+
+Music: 1990s: Artist/Band: Do You Believe In Us?
+Jon secada
+10
+
+Music: 1990s: Artist/Band: Do You Know (What It Takes)?
+Robyn
+10
+
+Music: 1990s: Artist/Band: Do You Remember?
+Phil collins
+10
+
+Music: 1990s: Artist/Band: Do You Sleep?
+Lisa loeb & nine stories
+10
+
+Music: 1990s: Artist/Band: Do You Wanna Get Funky?
+C & c music factory
+10
+
+Music: 1990s: Artist/Band: Do You Want Me?
+Salt-n-pepa
+10
+
+Music: 1990s: Artist/Band: Does Anybody Really Fall In Love Anymore?
+Kane roberts
+10
+
+Music: 1990s: Artist/Band: Doin' It?
+Ll cool j
+10
+
+Music: 1990s: Artist/Band: Don't Cry For Me Argentina?
+Madonna
+10
+
+Music: 1990s: Artist/Band: Don't Let Go (Love)?
+En vogue
+10
+
+Music: 1990s: Artist/Band: Don't Let The Sun Go Down On Me?
+George michael/elton john
+10
+
+Music: 1990s: Artist/Band: Don't Take It Personal?
+Monica
+10
+
+Music: 1990s: Artist/Band: Don't Take The Girl?
+Tim mcgraw
+10
+
+Music: 1990s: Artist/Band: Don't Treat Me Bad?
+Firehouse
+10
+
+Music: 1990s: Artist/Band: Don't Turn Around?
+Ace of base
+10
+
+Music: 1990s: Artist/Band: Don't Walk Away?
+Jade
+10
+
+Music: 1990s: Artist/Band: Don't Wanna Fall In Love?
+Jane child
+10
+
+Music: 1990s: Artist/Band: Don't Want To Be A Fool?
+Luther vandross
+10
+
+Music: 1990s: Artist/Band: Doo Wop (That Thing)?
+Lauryn hill
+10
+
+Music: 1990s: Artist/Band: Down Low (Nobody Has To Know)?
+R. kelly
+10
+
+Music: 1990s: Artist/Band: Down With The King?
+Run-d.m.c.
+10
+
+Music: 1990s: Artist/Band: Dream About You?
+Stevie b
+10
+
+Music: 1990s: Artist/Band: Dreaming Of You?
+Selena
+10
+
+Music: 1990s: Artist/Band: Dreamlover?
+Mariah carey
+10
+
+Music: 1990s: Artist/Band: Dreams?
+Gabrielle
+10
+
+Music: 1990s: Artist/Band: Drive?
+R.e.m.
+10
+
+Music: 1990s: Artist/Band: Dunkie Butt (Please Please Please?
+12 gauge
+10
+
+Music: 1990s: Artist/Band: Elevate My Mind?
+Stereo mc's
+10
+
+Music: 1990s: Artist/Band: Elevators (Me & You)?
+Outkast
+10
+
+Music: 1990s: Artist/Band: Emotions?
+Mariah carey
+10
+
+Music: 1990s: Artist/Band: End Of The Road?
+Boyz ii men
+10
+
+Music: 1990s: Artist/Band: Endless Love?
+Luther vandross and mariah carey
+10
+
+Music: 1990s: Artist/Band: Enjoy The Silence?
+Depeche mode
+10
+
+Music: 1990s: Artist/Band: Enter Sandman?
+Metallica
+10
+
+Music: 1990s: Artist/Band: Epic?
+Faith no more
+10
+
+Music: 1990s: Artist/Band: Erotica?
+Madonna
+10
+
+Music: 1990s: Artist/Band: Escapade?
+Janet jackson
+10
+
+Music: 1990s: Artist/Band: Even Better Than The Real Thing?
+U2
+10
+
+Music: 1990s: Artist/Band: Everlasting Love?
+Gloria estefan
+10
+
+Music: 1990s: Artist/Band: Every Day Of The Week?
+Jade
+10
+
+Music: 1990s: Artist/Band: Every Heartbeat?
+Amy grant
+10
+
+Music: 1990s: Artist/Band: Every Little Thing I Do?
+Soul for real
+10
+
+Music: 1990s: Artist/Band: Every Morning?
+Sugar ray
+10
+
+Music: 1990s: Artist/Band: Every Time I Close My Eyes?
+Babyface
+10
+
+Music: 1990s: Artist/Band: Everybody (Backstreet's Back)?
+Backstreet boys
+10
+
+Music: 1990s: Artist/Band: Everybody Everybody?
+Black box
+10
+
+Music: 1990s: Artist/Band: Everybody Hurts?
+R.e.m.
+10
+
+Music: 1990s: Artist/Band: Everybody Plays The Fool?
+Aaron neville
+10
+
+Music: 1990s: Artist/Band: Everybody's Free (To Feel Good?
+Rozalla
+10
+
+Music: 1990s: Artist/Band: Everyday Is A Winding Road?
+Sheryl crow
+10
+
+Music: 1990s: Artist/Band: Everyday?
+Phil collins
+10
+
+Music: 1990s: Artist/Band: Everything About You?
+Ugly kid joe
+10
+
+Music: 1990s: Artist/Band: Everything Changes?
+Kathy troccoli
+10
+
+Music: 1990s: Artist/Band: Everything's Gonna Be Alright?
+Father mc
+10
+
+Music: 1990s: Artist/Band: Everything?
+Jody wately
+10
+
+Music: 1990s: Artist/Band: Ex-Factor?
+Lauryn hill
+10
+
+Music: 1990s: Artist/Band: Exhale (Shoop Shoop)?
+Whitney houston
+10
+
+Music: 1990s: Artist/Band: Expression?
+Salt-n-pepa
+10
+
+Music: 1990s: Artist/Band: Fa All Y'all?
+Da brat
+10
+
+Music: 1990s: Artist/Band: Faded Pictures?
+Case & joe
+10
+
+Music: 1990s: Artist/Band: Fairweather Friend?
+Johnny gill
+10
+
+Music: 1990s: Artist/Band: Faithful?
+Go west
+10
+
+Music: 1990s: Artist/Band: Fall Down?
+Toad the wet sprocket
+10
+
+Music: 1990s: Artist/Band: Fantastic Voyage?
+Coolio
+10
+
+Music: 1990s: Artist/Band: Fantasy?
+Mariah carey
+10
+
+Music: 1990s: Artist/Band: Far Behind?
+Candlebox
+10
+
+Music: 1990s: Artist/Band: Fast Love?
+George michael
+10
+
+Music: 1990s: Artist/Band: Feel Me Flow?
+Naughty by nature
+10
+
+Music: 1990s: Artist/Band: Feel So Good?
+Mase
+10
+
+Music: 1990s: Artist/Band: Feels So Good?
+Xscape
+10
+
+Music: 1990s: Artist/Band: Feenin'?
+Jodeci
+10
+
+Music: 1990s: Artist/Band: Fields Of Gold?
+Sting
+10
+
+Music: 1990s: Artist/Band: Finally?
+Cece pennison
+10
+
+Music: 1990s: Artist/Band: Flava In Ya Ear?
+Craig mack
+10
+
+Music: 1990s: Artist/Band: Flex?
+Mad cobra
+10
+
+Music: 1990s: Artist/Band: Fly Away?
+Lenny kravitz
+10
+
+Music: 1990s: Artist/Band: Fly Like An Eagle?
+Seal
+10
+
+Music: 1990s: Artist/Band: Fly To The Angels?
+Slaughter
+10
+
+Music: 1990s: Artist/Band: Follow You Down?
+Gin blossoms
+10
+
+Music: 1990s: Artist/Band: Foolin' Around?
+Changing faces
+10
+
+Music: 1990s: Artist/Band: For A Little While?
+Tim mcgraw
+10
+
+Music: 1990s: Artist/Band: For You I Will?
+Monica
+10
+
+Music: 1990s: Artist/Band: For You?
+The outfield
+10
+
+Music: 1990s: Artist/Band: Forever In Love?
+Kenny g
+10
+
+Music: 1990s: Artist/Band: Forever Love?
+Color me badd
+10
+
+Music: 1990s: Artist/Band: Forever My Lady?
+Jodeci
+10
+
+Music: 1990s: Artist/Band: Forever?
+Kiss
+10
+
+Music: 1990s: Artist/Band: Found Out About You?
+The gin blossoms
+10
+
+Music: 1990s: Artist/Band: Freak Like Me?
+Adina howard
+10
+
+Music: 1990s: Artist/Band: Freak Me?
+Silk
+10
+
+Music: 1990s: Artist/Band: Free As A Bird?
+The beatles
+10
+
+Music: 1990s: Artist/Band: Free Your Mind?
+En vogue
+10
+
+Music: 1990s: Artist/Band: Freedom?
+George michael
+10
+
+Music: 1990s: Artist/Band: Freek'n You?
+Jodeci
+10
+
+Music: 1990s: Artist/Band: Friday I'm In Love?
+The cure
+10
+
+Music: 1990s: Artist/Band: From A Distance?
+Bette midler
+10
+
+Music: 1990s: Artist/Band: From This Moment On?
+Shania twain
+10
+
+Music: 1990s: Artist/Band: Frozen?
+Madonna
+10
+
+Music: 1990s: Artist/Band: Funkdafied?
+Da brat
+10
+
+Music: 1990s: Artist/Band: Funky Y-2-C?
+The puppies
+10
+
+Music: 1990s: Artist/Band: G.H.E.T.T.O.U.T?
+Changing faces
+10
+
+Music: 1990s: Artist/Band: Gangsta Lean?
+Drs
+10
+
+Music: 1990s: Artist/Band: Gangsta's Paradise?
+Coolio
+10
+
+Music: 1990s: Artist/Band: Gangsta?
+Bell biv devoe
+10
+
+Music: 1990s: Artist/Band: Gentle?
+Dino
+10
+
+Music: 1990s: Artist/Band: Georgia On My Mind?
+Michael bolton
+10
+
+Music: 1990s: Artist/Band: Get A Leg Up?
+John cougar mellencamp
+10
+
+Music: 1990s: Artist/Band: Get Away?
+Bobby brown
+10
+
+Music: 1990s: Artist/Band: Get Down?
+Craig mack
+10
+
+Music: 1990s: Artist/Band: Get Here?
+Oleta adams
+10
+
+Music: 1990s: Artist/Band: Get It Together?
+702
+10
+
+Music: 1990s: Artist/Band: Get Off?
+Prince
+10
+
+Music: 1990s: Artist/Band: Get Over It?
+Eagles
+10
+
+Music: 1990s: Artist/Band: Get Ready For This?
+2 unlimited
+10
+
+Music: 1990s: Artist/Band: Gettin' Jiggy Wit It?
+Will smith
+10
+
+Music: 1990s: Artist/Band: Getting Away With It?
+Electronic
+10
+
+Music: 1990s: Artist/Band: Getto Jam?
+Domino
+10
+
+Music: 1990s: Artist/Band: Gin And Juice?
+Snoop doggy dog
+10
+
+Music: 1990s: Artist/Band: Girl U For Me?
+Silk
+10
+
+Music: 1990s: Artist/Band: Girl, I've Been Hurt?
+Snow
+10
+
+Music: 1990s: Artist/Band: Girls Nite Out?
+Tyler collins
+10
+
+Music: 1990s: Artist/Band: Give It 2 You?
+Da brat
+10
+
+Music: 1990s: Artist/Band: Give It Up, Turn It Loose?
+En vogue
+10
+
+Music: 1990s: Artist/Band: Give Me One Reason?
+Tracy chapman
+10
+
+Music: 1990s: Artist/Band: Giving Him Something He Can Feel?
+En vogue
+10
+
+Music: 1990s: Artist/Band: Giving You The Benefit?
+Pebbles
+10
+
+Music: 1990s: Artist/Band: Gone Til November?
+Wyclef jean
+10
+
+Music: 1990s: Artist/Band: Good Enough?
+Bobby brown
+10
+
+Music: 1990s: Artist/Band: Good For Me?
+Amy grant
+10
+
+Music: 1990s: Artist/Band: Good Stuff?
+The b-52's
+10
+
+Music: 1990s: Artist/Band: Good?
+Better than ezra
+10
+
+Music: 1990s: Artist/Band: Goodbye?
+Spice girls
+10
+
+Music: 1990s: Artist/Band: Got A Love For You?
+Jomanda
+10
+
+Music: 1990s: Artist/Band: Got Me Waiting?
+Heavy d and the boyz
+10
+
+Music: 1990s: Artist/Band: Gotham City?
+R. kelly
+10
+
+Music: 1990s: Artist/Band: Groove Is In The Heart?
+Deee-lite
+10
+
+Music: 1990s: Artist/Band: Groove Thang?
+Zhane
+10
+
+Music: 1990s: Artist/Band: Hands?
+Jewel
+10
+
+Music: 1990s: Artist/Band: Hang In Long Enough?
+Phil collins
+10
+
+Music: 1990s: Artist/Band: Hanky Panky?
+Madonna
+10
+
+Music: 1990s: Artist/Band: Hard Knock Life (Ghetto Anthem)?
+Jay-z
+10
+
+Music: 1990s: Artist/Band: Hard To Handle?
+The black crowes
+10
+
+Music: 1990s: Artist/Band: Hat 2 Da Back?
+Tlc
+10
+
+Music: 1990s: Artist/Band: Have I Told You Lately?
+Rod stewart
+10
+
+Music: 1990s: Artist/Band: Have You Ever Needed Someone So Bad?
+Def leppard
+10
+
+Music: 1990s: Artist/Band: Have You Ever Really Loved A Woman?
+Bryan adams
+10
+
+Music: 1990s: Artist/Band: Have You Ever?
+Brandy
+10
+
+Music: 1990s: Artist/Band: Have You Seen Her?
+M.c. hammer
+10
+
+Music: 1990s: Artist/Band: Having A Party?
+Rod stewart (with ronnie wood
+10
+
+Music: 1990s: Artist/Band: Hay?
+Crucial conflict
+10
+
+Music: 1990s: Artist/Band: Hazard?
+Richard marx
+10
+
+Music: 1990s: Artist/Band: He's Mine?
+Mokenstef
+10
+
+Music: 1990s: Artist/Band: Heal The World?
+Michael jackson
+10
+
+Music: 1990s: Artist/Band: Heart Like A Wheel?
+The human league
+10
+
+Music: 1990s: Artist/Band: Heartbeat?
+Seduction
+10
+
+Music: 1990s: Artist/Band: Hearts Don't Think (They Feel!?
+Natural selection
+10
+
+Music: 1990s: Artist/Band: Heat Of The Moment?
+After 7
+10
+
+Music: 1990s: Artist/Band: Here And Now?
+Luther vandross
+10
+
+Music: 1990s: Artist/Band: Here Comes The Hotstepper?
+Ini kamoze
+10
+
+Music: 1990s: Artist/Band: Here I Am (Come And Take Me?
+Ub40
+10
+
+Music: 1990s: Artist/Band: Here We Are?
+Gloria estefan
+10
+
+Music: 1990s: Artist/Band: Here We Go Again?
+Portrait
+10
+
+Music: 1990s: Artist/Band: Hero?
+Mariah carey
+10
+
+Music: 1990s: Artist/Band: Hey Donna?
+Rhythm syndicate
+10
+
+Music: 1990s: Artist/Band: Hey Jealousy?
+The gin blossoms
+10
+
+Music: 1990s: Artist/Band: Hey Lover?
+L.l. cool j
+10
+
+Music: 1990s: Artist/Band: Hey Mr. D.J?
+Zhane
+10
+
+Music: 1990s: Artist/Band: High Enough?
+Damn yankees
+10
+
+Music: 1990s: Artist/Band: Hip Hop Hooray?
+Naughty by nature
+10
+
+Music: 1990s: Artist/Band: Hippychick?
+Soho
+10
+
+Music: 1990s: Artist/Band: Hit Me Off?
+New edition
+10
+
+Music: 1990s: Artist/Band: Hold Me, Thrill Me, Kiss Me, Kill Me?
+U2
+10
+
+Music: 1990s: Artist/Band: Hold My Hand?
+Hootie & the blowfish
+10
+
+Music: 1990s: Artist/Band: Hold On My Heart?
+Genesis
+10
+
+Music: 1990s: Artist/Band: Hold On To Me?
+John michael
+10
+
+Music: 1990s: Artist/Band: Hold You Tight?
+Tara kemp
+10
+
+Music: 1990s: Artist/Band: Hole Hearted?
+Extreme
+10
+
+Music: 1990s: Artist/Band: Home Sweet Home '91?
+M?tley cr?e
+10
+
+Music: 1990s: Artist/Band: Honey Love?
+R. kelly
+10
+
+Music: 1990s: Artist/Band: Honey?
+Mariah carey
+10
+
+Music: 1990s: Artist/Band: Hook Blues?
+Traveler
+10
+
+Music: 1990s: Artist/Band: Hopelessly?
+Rick astley
+10
+
+Music: 1990s: Artist/Band: House Of Love?
+Amy grant with vince gill
+10
+
+Music: 1990s: Artist/Band: House Of Pain?
+Faster pussycat
+10
+
+Music: 1990s: Artist/Band: How About That?
+Bad company
+10
+
+Music: 1990s: Artist/Band: How Am I Supposed To Live Without You?
+Michael bolton
+10
+
+Music: 1990s: Artist/Band: How Can I Ease The Pain?
+Lisa fischer
+10
+
+Music: 1990s: Artist/Band: How Can We Be Lovers?
+Michael bolton
+10
+
+Music: 1990s: Artist/Band: How Do I Live?
+Leann rimes
+10
+
+Music: 1990s: Artist/Band: How Do You Talk To An Angel?
+The heights
+10
+
+Music: 1990s: Artist/Band: How High?
+Redman & method man
+10
+
+Music: 1990s: Artist/Band: How Many Ways?
+Toni braxton
+10
+
+Music: 1990s: Artist/Band: How Much Is Enough?
+The fixx
+10
+
+Music: 1990s: Artist/Band: How's It Going To Be?
+Third eye blind
+10
+
+Music: 1990s: Artist/Band: Human Touch?
+Bruce springsteen
+10
+
+Music: 1990s: Artist/Band: Humpin' Around?
+Bobby brown
+10
+
+Music: 1990s: Artist/Band: Husbands And Wives?
+Brooks & dunn
+10
+
+Music: 1990s: Artist/Band: Hypnotize?
+The notorious b.i.g.
+10
+
+Music: 1990s: Artist/Band: I Adore Mi Amor?
+Color me badd
+10
+
+Music: 1990s: Artist/Band: I Believe I Can Fly?
+R. kelly
+10
+
+Music: 1990s: Artist/Band: I Believe In You And Me?
+Whitney houston
+10
+
+Music: 1990s: Artist/Band: I Believe?
+Blessid union of souls
+10
+
+Music: 1990s: Artist/Band: I Belong To You (Every Time I See Your Face)?
+Rome
+10
+
+Music: 1990s: Artist/Band: I Belong To You?
+Toni braxton
+10
+
+Music: 1990s: Artist/Band: I Can Love You Like That?
+All-4-one
+10
+
+Music: 1990s: Artist/Band: I Can See Clearly Now?
+Jimmy cliff
+10
+
+Music: 1990s: Artist/Band: I Can't Dance?
+Genesis
+10
+
+Music: 1990s: Artist/Band: I Can't Make You Love Me?
+Bonnie raitt
+10
+
+Music: 1990s: Artist/Band: I Can't Sleep Baby(If I)?
+R.kelly
+10
+
+Music: 1990s: Artist/Band: I Can't Wait Another Minute?
+Hi-five
+10
+
+Music: 1990s: Artist/Band: I Didn't Want To Need You?
+Heart
+10
+
+Music: 1990s: Artist/Band: I Don't Ever Want To See You Again?
+Uncle sam
+10
+
+Music: 1990s: Artist/Band: I Don't Have The Heart?
+James ingram
+10
+
+Music: 1990s: Artist/Band: I Don't Know Anybody Else?
+Black box
+10
+
+Music: 1990s: Artist/Band: I Don't Wanna Cry?
+Mariah carey
+10
+
+Music: 1990s: Artist/Band: I Don't Wanna Fight?
+Tina turner
+10
+
+Music: 1990s: Artist/Band: I Don't Want To Miss A Thing?
+Aerosmith
+10
+
+Music: 1990s: Artist/Band: I Don't Want To?
+Toni braxton
+10
+
+Music: 1990s: Artist/Band: I Feel You?
+Depeche mode
+10
+
+Music: 1990s: Artist/Band: I Finally Found Someone?
+Barbra streisand & bryan adams
+10
+
+Music: 1990s: Artist/Band: I Get Around/Keep Ya Head Up?
+2pac
+10
+
+Music: 1990s: Artist/Band: I Go To Extremes?
+Billy joel
+10
+
+Music: 1990s: Artist/Band: I Got 5 On It?
+Luniz
+10
+
+Music: 1990s: Artist/Band: I Got A Man?
+Positive k
+10
+
+Music: 1990s: Artist/Band: I Got A Thang 4 Ya!?
+Lo-key?
+10
+
+Music: 1990s: Artist/Band: I Got Id?
+Pearl jam
+10
+
+Music: 1990s: Artist/Band: I Hate U?
+Prince symbol
+10
+
+Music: 1990s: Artist/Band: I Have Nothing?
+Whitney houston
+10
+
+Music: 1990s: Artist/Band: I Know?
+Dionne farris
+10
+
+Music: 1990s: Artist/Band: I Like It, I Love It?
+Tim mcgraw
+10
+
+Music: 1990s: Artist/Band: I Like It?
+The blackout allstars
+10
+
+Music: 1990s: Artist/Band: I Like The Way (The Kissing Game?
+Hi-five
+10
+
+Music: 1990s: Artist/Band: I Like?
+Kut klose
+10
+
+Music: 1990s: Artist/Band: I Live My Life For You?
+Firehouse
+10
+
+Music: 1990s: Artist/Band: I Love You Always Forever?
+Donna lewis
+10
+
+Music: 1990s: Artist/Band: I Love You Period?
+Dan baird
+10
+
+Music: 1990s: Artist/Band: I Love Your Smile?
+Shanice
+10
+
+Music: 1990s: Artist/Band: I Never Seen A Man Cry (aka I Seen A Man Die)?
+Scarface
+10
+
+Music: 1990s: Artist/Band: I Saw Red?
+Warrant
+10
+
+Music: 1990s: Artist/Band: I Shot The Sheriff?
+Warren g
+10
+
+Music: 1990s: Artist/Band: I Still Love You?
+Next
+10
+
+Music: 1990s: Artist/Band: I Swear?
+All-4-one
+10
+
+Music: 1990s: Artist/Band: I Touch Myself?
+The divinyls
+10
+
+Music: 1990s: Artist/Band: I Wanna Be Down?
+Brandy
+10
+
+Music: 1990s: Artist/Band: I Wanna Be Rich?
+Calloway
+10
+
+Music: 1990s: Artist/Band: I Wanna Love You?
+Jade
+10
+
+Music: 1990s: Artist/Band: I Wanna Sex You Up?
+Color me badd
+10
+
+Music: 1990s: Artist/Band: I Want To Come Over?
+Melissa etheridge
+10
+
+Music: 1990s: Artist/Band: I Will Always Love You?
+Whitney houston
+10
+
+Music: 1990s: Artist/Band: I Will Be Here For You?
+Michael w. smith
+10
+
+Music: 1990s: Artist/Band: I Will Get There?
+Boyz ii men
+10
+
+Music: 1990s: Artist/Band: I Will Remember You?
+Amy grant
+10
+
+Music: 1990s: Artist/Band: I Wish It Would Rain Down?
+Phil collins
+10
+
+Music: 1990s: Artist/Band: I Wish The Phone Would Ring?
+Expos?
+10
+
+Music: 1990s: Artist/Band: I Wish?
+Skee-lo
+10
+
+Music: 1990s: Artist/Band: I Wonder Why /A>?
+Curtis stigers
+10
+
+Music: 1990s: Artist/Band: I'd Die Without You?
+P.m. dawn
+10
+
+Music: 1990s: Artist/Band: I'd Do Anything For Love (But I Won't Do That?
+Meat loaf
+10
+
+Music: 1990s: Artist/Band: I'd Give Anything?
+Gerald levert
+10
+
+Music: 1990s: Artist/Band: I'd Lie For You (And That's The Truth)?
+Meat loaf
+10
+
+Music: 1990s: Artist/Band: I'll Be Around Rappin'?
+4-tay featuring the spinners
+10
+
+Music: 1990s: Artist/Band: I'll Be By Your Side?
+Stevie b
+10
+
+Music: 1990s: Artist/Band: I'll Be There For You?
+The rembrandts
+10
+
+Music: 1990s: Artist/Band: I'll Be Your Everything?
+Tommy page
+10
+
+Music: 1990s: Artist/Band: I'll Be Your Shelter?
+Taylor dayne
+10
+
+Music: 1990s: Artist/Band: I'll Be?
+Edwin mccain
+10
+
+Music: 1990s: Artist/Band: I'll Do 4 U?
+Father mc
+10
+
+Music: 1990s: Artist/Band: I'll Get By?
+Eddie money
+10
+
+Music: 1990s: Artist/Band: I'll Give All My Love To You?
+Keith sweat
+10
+
+Music: 1990s: Artist/Band: I'll Make Love To You?
+Boyz ii men
+10
+
+Music: 1990s: Artist/Band: I'll Never Break Your Heart?
+Backstreet boys
+10
+
+Music: 1990s: Artist/Band: I'll Never Get Over You (Getting Over Me?
+Expose
+10
+
+Music: 1990s: Artist/Band: I'll Never Let You Go (Angel Eyes?
+Steelheart
+10
+
+Music: 1990s: Artist/Band: I'll Remember?
+Madonna
+10
+
+Music: 1990s: Artist/Band: I'll See You In My Dreams?
+Giant
+10
+
+Music: 1990s: Artist/Band: I'll Stand By You?
+The pretenders
+10
+
+Music: 1990s: Artist/Band: I'll Take You There?
+General public
+10
+
+Music: 1990s: Artist/Band: I'm Every Woman?
+Whitney houston
+10
+
+Music: 1990s: Artist/Band: I'm Free?
+Jon secada
+10
+
+Music: 1990s: Artist/Band: I'm Goin' Down?
+Mary j. blige
+10
+
+Music: 1990s: Artist/Band: I'm Gonna Be (500 Miles?
+The proclaimers
+10
+
+Music: 1990s: Artist/Band: I'm In The Mood?
+Ce ce peniston
+10
+
+Music: 1990s: Artist/Band: I'm Not In Love?
+Will to power
+10
+
+Music: 1990s: Artist/Band: I'm Ready?
+Tevin campbell
+10
+
+Music: 1990s: Artist/Band: I'm Still In Love With You?
+New edition
+10
+
+Music: 1990s: Artist/Band: I'm The One You Need?
+Jody watley
+10
+
+Music: 1990s: Artist/Band: I'm The Only One?
+Melissa etheridge
+10
+
+Music: 1990s: Artist/Band: I'm Too Sexy?
+Right said fred
+10
+
+Music: 1990s: Artist/Band: I'm Your Baby Tonight?
+Whitney houston
+10
+
+Music: 1990s: Artist/Band: I've Been Thinking About You?
+Londonbeat
+10
+
+Music: 1990s: Artist/Band: I've Got A Lot To Learn About Love?
+The storm
+10
+
+Music: 1990s: Artist/Band: Ice Cream?
+Chef raekwon
+10
+
+Music: 1990s: Artist/Band: Ice Ice Baby?
+Vanilla ice
+10
+
+Music: 1990s: Artist/Band: Iesha?
+Another bad creation
+10
+
+Music: 1990s: Artist/Band: If I Ever Fall In Love?
+Shai
+10
+
+Music: 1990s: Artist/Band: If I Ever Lose My Faith In You?
+Sting
+10
+
+Music: 1990s: Artist/Band: If I Had No Loot?
+Tony! toni! tone!
+10
+
+Music: 1990s: Artist/Band: If I Wanted To?
+Melissa etheridge
+10
+
+Music: 1990s: Artist/Band: If It Makes You Happy?
+Sheryl crow
+10
+
+Music: 1990s: Artist/Band: If U Were Mine?
+The u-krew
+10
+
+Music: 1990s: Artist/Band: If Wishes Came True?
+Sweet sensation
+10
+
+Music: 1990s: Artist/Band: If You Asked Me To?
+Celine dion
+10
+
+Music: 1990s: Artist/Band: If You Go Away?
+New kids on the block
+10
+
+Music: 1990s: Artist/Band: If You Go?
+Jon secada
+10
+
+Music: 1990s: Artist/Band: If You Love Me?
+Brownstone
+10
+
+Music: 1990s: Artist/Band: If You Needed Somebody?
+Bad company
+10
+
+Music: 1990s: Artist/Band: If You Think You're Lonely Now?
+K-ci hailey
+10
+
+Music: 1990s: Artist/Band: If Your Girl Only Knew?
+Aaliyah
+10
+
+Music: 1990s: Artist/Band: If?
+Janet jackson
+10
+
+Music: 1990s: Artist/Band: Impulsive?
+Wilson phillips
+10
+
+Music: 1990s: Artist/Band: In 1990, which group/artist sang Wind of Change?
+Scorpions
+10
+
+Music: 1990s: Artist/Band: In My Bed?
+Dru hill
+10
+
+Music: 1990s: Artist/Band: In My Dreams?
+The party
+10
+
+Music: 1990s: Artist/Band: In The Closet?
+Michael jackson
+10
+
+Music: 1990s: Artist/Band: In The House Of Stone And Light?
+Martin page
+10
+
+Music: 1990s: Artist/Band: In The Still Of The Nite (I'll Remember?
+Boyz ii men
+10
+
+Music: 1990s: Artist/Band: In These Arms?
+Bon jovi
+10
+
+Music: 1990s: Artist/Band: Indian Outlaw?
+Tim mcgraw
+10
+
+Music: 1990s: Artist/Band: Informer?
+Snow
+10
+
+Music: 1990s: Artist/Band: Insane In The Brain?
+Cypress hill
+10
+
+Music: 1990s: Artist/Band: Insensitive?
+Jann arden
+10
+
+Music: 1990s: Artist/Band: Inside Out?
+Eve 6
+10
+
+Music: 1990s: Artist/Band: Invisible Man?
+98 degrees
+10
+
+Music: 1990s: Artist/Band: Iris?
+Goo goo dolls
+10
+
+Music: 1990s: Artist/Band: Ironic?
+Alanis morissette
+10
+
+Music: 1990s: Artist/Band: Is It Good To You?
+Heavy d. & the boyz
+10
+
+Music: 1990s: Artist/Band: It Ain't Over 'Til It's Over?
+Lenny kravitz
+10
+
+Music: 1990s: Artist/Band: It Hit Me Like A Hammer?
+Huey lewis and the news
+10
+
+Music: 1990s: Artist/Band: It Must Be Love?
+Ty hemdon
+10
+
+Music: 1990s: Artist/Band: It Must Have Been Love?
+Roxette
+10
+
+Music: 1990s: Artist/Band: It Was A Good Day?
+Ice cube
+10
+
+Music: 1990s: Artist/Band: It's All About Me?
+Mya & sisqo
+10
+
+Music: 1990s: Artist/Band: It's All Coming Back To Me Now?
+Celine dion
+10
+
+Music: 1990s: Artist/Band: It's So Hard To Say Goodbye To Yesterday?
+Boyz ii men
+10
+
+Music: 1990s: Artist/Band: It's Your Love?
+Tim mcgraw with faith hill
+10
+
+Music: 1990s: Artist/Band: Jam?
+Michael jackson
+10
+
+Music: 1990s: Artist/Band: Jealousy?
+Natalie mercahnt
+10
+
+Music: 1990s: Artist/Band: Jerk Out?
+The time
+10
+
+Music: 1990s: Artist/Band: Jessie?
+Joshua kadison
+10
+
+Music: 1990s: Artist/Band: Jesus He Knows Me?
+Genesis
+10
+
+Music: 1990s: Artist/Band: Joey?
+Concrete blonde
+10
+
+Music: 1990s: Artist/Band: Joyride?
+Roxette
+10
+
+Music: 1990s: Artist/Band: Juicy?
+The notorious b.i.g.
+10
+
+Music: 1990s: Artist/Band: Jump Around?
+House of pain
+10
+
+Music: 1990s: Artist/Band: Jump?
+Kris kross
+10
+
+Music: 1990s: Artist/Band: Jumper?
+Third eye blind
+10
+
+Music: 1990s: Artist/Band: Just A Friend?
+Biz markie
+10
+
+Music: 1990s: Artist/Band: Just A Girl?
+No doubt
+10
+
+Music: 1990s: Artist/Band: Just Another Day?
+Jon secada
+10
+
+Music: 1990s: Artist/Band: Just Another Dream?
+Cathy dennis
+10
+
+Music: 1990s: Artist/Band: Just For Tonight?
+Vanessa williams
+10
+
+Music: 1990s: Artist/Band: Just Kickin' It?
+Xscape
+10
+
+Music: 1990s: Artist/Band: Just Take My Heart?
+Mr. big
+10
+
+Music: 1990s: Artist/Band: Just The Way It Is, Baby?
+The rembrandts
+10
+
+Music: 1990s: Artist/Band: Just Want To Hold You?
+Jasmine guy
+10
+
+Music: 1990s: Artist/Band: Justify My Love?
+Madonna
+10
+
+Music: 1990s: Artist/Band: Keep Coming Back?
+Richard marx
+10
+
+Music: 1990s: Artist/Band: Keep It Comin'?
+Keith sweat
+10
+
+Music: 1990s: Artist/Band: Keep It Together?
+Madonna
+10
+
+Music: 1990s: Artist/Band: Keep On Walkin'?
+Cece peniston
+10
+
+Music: 1990s: Artist/Band: Keep The Faith?
+Bon jovi
+10
+
+Music: 1990s: Artist/Band: Keep Their Heads Ringin'?
+Dr. dre
+10
+
+Music: 1990s: Artist/Band: Keep Ya Head Up?
+2pac
+10
+
+Music: 1990s: Artist/Band: Key West Intermezzo (I Saw You First)?
+John mellencamp
+10
+
+Music: 1990s: Artist/Band: King Of Wishful Thinking?
+Go west
+10
+
+Music: 1990s: Artist/Band: Kiss From A Rose?
+Seal
+10
+
+Music: 1990s: Artist/Band: Kiss Them For Me?
+Siouxsie and the banshees
+10
+
+Music: 1990s: Artist/Band: Kiss This Thing Goodbye?
+Del amitri
+10
+
+Music: 1990s: Artist/Band: Kiss You Back?
+Digital underground
+10
+
+Music: 1990s: Artist/Band: Kissin' You?
+Total
+10
+
+Music: 1990s: Artist/Band: Kissing You?
+Keith Washington
+10
+
+Music: 1990s: Artist/Band: Knockin' Boots?
+Candyman
+10
+
+Music: 1990s: Artist/Band: Knockin' Da Boots?
+H-town
+10
+
+Music: 1990s: Artist/Band: Lady?
+D'angelo
+10
+
+Music: 1990s: Artist/Band: Last Night?
+Az yet
+10
+
+Music: 1990s: Artist/Band: Layla?
+Eric clapton
+10
+
+Music: 1990s: Artist/Band: Learning To Fly?
+Tom petty and the heartbreakers
+10
+
+Music: 1990s: Artist/Band: Let Her Cry?
+Hootie & the blowfish
+10
+
+Music: 1990s: Artist/Band: Let It Snow?
+Boyz ii men
+10
+
+Music: 1990s: Artist/Band: Let Me Be The One?
+Blessid union of souls
+10
+
+Music: 1990s: Artist/Band: Let Me Clear My Throat?
+Dj kool
+10
+
+Music: 1990s: Artist/Band: Let Me Let Go?
+Faith hill
+10
+
+Music: 1990s: Artist/Band: Let Me Ride?
+Dr. dre
+10
+
+Music: 1990s: Artist/Band: Let The Beat Hit 'Em?
+Lisa lisa and cult jam
+10
+
+Music: 1990s: Artist/Band: Let's Get Rocked?
+Def leppard
+10
+
+Music: 1990s: Artist/Band: Let's Talk About Sex?
+Salt-n-pepa
+10
+
+Music: 1990s: Artist/Band: Letitgo?
+Prince
+10
+
+Music: 1990s: Artist/Band: Life Goes On?
+Poison
+10
+
+Music: 1990s: Artist/Band: Life Is A Highway?
+Tom cochrane
+10
+
+Music: 1990s: Artist/Band: Lift Me Up?
+Howard jones
+10
+
+Music: 1990s: Artist/Band: Like This And Like That?
+Monica
+10
+
+Music: 1990s: Artist/Band: Lily Was Here?
+David a. stewart & candy duffer
+10
+
+Music: 1990s: Artist/Band: Linger?
+The cranberries
+10
+
+Music: 1990s: Artist/Band: Little Miss Can't Be Wrong?
+Spin doctors
+10
+
+Music: 1990s: Artist/Band: Live And Learn?
+Joe public
+10
+
+Music: 1990s: Artist/Band: Live And Let Die?
+Guns n' roses
+10
+
+Music: 1990s: Artist/Band: Live For Loving You?
+Gloria estefan
+10
+
+Music: 1990s: Artist/Band: Livin' On The Edge?
+Aerosmith
+10
+
+Music: 1990s: Artist/Band: Living In Danger?
+Ace of base
+10
+
+Music: 1990s: Artist/Band: Look Into My Eyes Bone?
+Thugs-n-harmony
+10
+
+Music: 1990s: Artist/Band: Looking Through Patient Eyes?
+P.m. dawn
+10
+
+Music: 1990s: Artist/Band: Loser?
+Beck
+10
+
+Music: 1990s: Artist/Band: Losing My Religion?
+R.e.m
+10
+
+Music: 1990s: Artist/Band: Loungin?
+Ll cool j
+10
+
+Music: 1990s: Artist/Band: Love & Emotion?
+Stevie b
+10
+
+Music: 1990s: Artist/Band: Love And Affection?
+Nelson
+10
+
+Music: 1990s: Artist/Band: Love And Understanding?
+Cher
+10
+
+Music: 1990s: Artist/Band: Love At First Sight?
+Styx
+10
+
+Music: 1990s: Artist/Band: Love Can Move Mountains?
+Celine dion
+10
+
+Music: 1990s: Artist/Band: Love Child?
+Sweet sensation
+10
+
+Music: 1990s: Artist/Band: Love Don't Love You?
+En vogue
+10
+
+Music: 1990s: Artist/Band: Love Is A Wonderful Thing?
+Michael bolton
+10
+
+Music: 1990s: Artist/Band: Love Is On The Way?
+Saigon kick
+10
+
+Music: 1990s: Artist/Band: Love Like This?
+Faith evans
+10
+
+Music: 1990s: Artist/Band: Love Makes Things Happen?
+Pebbles
+10
+
+Music: 1990s: Artist/Band: Love Me All Up?
+Stacy earl
+10
+
+Music: 1990s: Artist/Band: Love Me For Life?
+Stevie b
+10
+
+Music: 1990s: Artist/Band: Love Of A Lifetime?
+Firehouse
+10
+
+Music: 1990s: Artist/Band: Love On A Rooftop?
+Desmond child
+10
+
+Music: 1990s: Artist/Band: Love Shoulda Brought You Home?
+Toni braxton
+10
+
+Music: 1990s: Artist/Band: Love Sneakin' Up On You?
+Bonnie raitt
+10
+
+Music: 1990s: Artist/Band: Love Takes Time?
+Mariah carey
+10
+
+Music: 1990s: Artist/Band: Love U 4 Life?
+Jodeci
+10
+
+Music: 1990s: Artist/Band: Love U More?
+Sunscreem
+10
+
+Music: 1990s: Artist/Band: Love Will Lead You Back?
+Taylor dayne
+10
+
+Music: 1990s: Artist/Band: Love Will Never Do (Without You?
+Janet jackson
+10
+
+Music: 1990s: Artist/Band: Lucas With The Lid Off?
+Lucas
+10
+
+Music: 1990s: Artist/Band: Lucky One?
+Amy grant
+10
+
+Music: 1990s: Artist/Band: Lullaby?
+Shawn mullins
+10
+
+Music: 1990s: Artist/Band: Lyin' To Myself?
+David cassidy
+10
+
+Music: 1990s: Artist/Band: Macarena?
+Los del rio
+10
+
+Music: 1990s: Artist/Band: Make It Happen?
+Mariah carey
+10
+
+Music: 1990s: Artist/Band: Make Love Like A Man?
+Def leppard
+10
+
+Music: 1990s: Artist/Band: Make You Sweat?
+Keith sweat
+10
+
+Music: 1990s: Artist/Band: Mama Said Knock You Out?
+L.l. cool j
+10
+
+Music: 1990s: Artist/Band: Mama, I'm Coming Home?
+Ozzy osbourne
+10
+
+Music: 1990s: Artist/Band: Man On The Moon?
+R.e.m.
+10
+
+Music: 1990s: Artist/Band: Mary Jane's Last Dance?
+Tom petty and the heartbreakers
+10
+
+Music: 1990s: Artist/Band: Masterpiece?
+Atlantic starr
+10
+
+Music: 1990s: Artist/Band: Mental Picture?
+Jon secada
+10
+
+Music: 1990s: Artist/Band: Mentirosa?
+Mellow man ace
+10
+
+Music: 1990s: Artist/Band: Mercy Mercy Me (The Ecology / I Want You?
+Robert palmer
+10
+
+Music: 1990s: Artist/Band: Miami?
+Will smith
+10
+
+Music: 1990s: Artist/Band: Miles Away?
+Winger
+10
+
+Music: 1990s: Artist/Band: Mind Playing Tricks On Me?
+The geto boys
+10
+
+Music: 1990s: Artist/Band: Misery?
+Soul asylum
+10
+
+Music: 1990s: Artist/Band: Mishale?
+Andru donalds
+10
+
+Music: 1990s: Artist/Band: Misled?
+Celine dion
+10
+
+Music: 1990s: Artist/Band: Miss You In A Heartbeat?
+Def leppard
+10
+
+Music: 1990s: Artist/Band: Missing You Now?
+Michael bolton
+10
+
+Music: 1990s: Artist/Band: Mmm Mmm Mmm Mmm?
+Crash test dummies
+10
+
+Music: 1990s: Artist/Band: Mmmbop?
+Hanson
+10
+
+Music: 1990s: Artist/Band: Money Don't Matter 2 Night?
+Prince
+10
+
+Music: 1990s: Artist/Band: Moneytalks?
+Ac/dc
+10
+
+Music: 1990s: Artist/Band: More And More?
+The captain hollywood project
+10
+
+Music: 1990s: Artist/Band: More Than Ever?
+Nelson
+10
+
+Music: 1990s: Artist/Band: More Than Words Can Say?
+Alias
+10
+
+Music: 1990s: Artist/Band: More Than Words?
+Extreme
+10
+
+Music: 1990s: Artist/Band: Motownphilly?
+Boyz ii men
+10
+
+Music: 1990s: Artist/Band: Mouth?
+Merril bainbridge
+10
+
+Music: 1990s: Artist/Band: Move Any Mountain (Progen 9?
+The shamen
+10
+
+Music: 1990s: Artist/Band: Moving On Up?
+M people
+10
+
+Music: 1990s: Artist/Band: Mr. Loverman?
+Shabba ranks
+10
+
+Music: 1990s: Artist/Band: Mr. Vain?
+Culture beat
+10
+
+Music: 1990s: Artist/Band: Mr. Wendal?
+Arrested development
+10
+
+Music: 1990s: Artist/Band: My All?
+Mariah carey
+10
+
+Music: 1990s: Artist/Band: My Baby?
+Daddy b-rock & the bizz
+10
+
+Music: 1990s: Artist/Band: My Body?
+Lsg
+10
+
+Music: 1990s: Artist/Band: My Boo?
+Ghost town dj's
+10
+
+Music: 1990s: Artist/Band: My Favorite Mistake?
+Sheryl crow
+10
+
+Music: 1990s: Artist/Band: My Heart Belongs To You?
+Russ irwin
+10
+
+Music: 1990s: Artist/Band: My Heart Is Failing Me?
+Riff
+10
+
+Music: 1990s: Artist/Band: My Heart Will Go On?
+Celine dion
+10
+
+Music: 1990s: Artist/Band: My Kinda Girl?
+Babyface
+10
+
+Music: 1990s: Artist/Band: My Little Secret?
+Xscape
+10
+
+Music: 1990s: Artist/Band: My Love Is A Fire?
+Donny osmond
+10
+
+Music: 1990s: Artist/Band: My Love Is For Real?
+Paula abdul
+10
+
+Music: 1990s: Artist/Band: My Lovin' (You're Never Gonna Get It?
+En vogue
+10
+
+Music: 1990s: Artist/Band: My Name Is Not Susan?
+Whitney houston
+10
+
+Music: 1990s: Artist/Band: My Name Is Prince?
+Prince
+10
+
+Music: 1990s: Artist/Band: My Side Of The Bed?
+Susanna hoffs
+10
+
+Music: 1990s: Artist/Band: My Way?
+Usher
+10
+
+Music: 1990s: Artist/Band: My, My, My?
+Johnny gill
+10
+
+Music: 1990s: Artist/Band: Mysterious Ways?
+U2
+10
+
+Music: 1990s: Artist/Band: Naked Eye?
+Luscious jackson
+10
+
+Music: 1990s: Artist/Band: Name?
+Goo goo dolls
+10
+
+Music: 1990s: Artist/Band: Never A Time?
+Genesis
+10
+
+Music: 1990s: Artist/Band: Never Ever?
+All saints
+10
+
+Music: 1990s: Artist/Band: Never Forget You?
+Mariah carey
+10
+
+Music: 1990s: Artist/Band: Never Gonna Let You Down?
+Surface
+10
+
+Music: 1990s: Artist/Band: Never Keeping Secrets?
+Babyface
+10
+
+Music: 1990s: Artist/Band: Never Lie?
+Immature
+10
+
+Music: 1990s: Artist/Band: Never Make A Promise?
+Dru hill
+10
+
+Music: 1990s: Artist/Band: Never Should've Let You Go?
+Hi-five
+10
+
+Music: 1990s: Artist/Band: New Age Girl?
+Deadeye dick
+10
+
+Music: 1990s: Artist/Band: Nice & Slow?
+Usher
+10
+
+Music: 1990s: Artist/Band: Nicety?
+Michel'le (ruthless
+10
+
+Music: 1990s: Artist/Band: Nights Like This?
+After 7
+10
+
+Music: 1990s: Artist/Band: No Mistakes?
+Patty smyth
+10
+
+Music: 1990s: Artist/Band: No More Lies?
+Michel'le (ruthless
+10
+
+Music: 1990s: Artist/Band: No Myth?
+Michael penn
+10
+
+Music: 1990s: Artist/Band: No One Else?
+Total
+10
+
+Music: 1990s: Artist/Band: No Ordinary Love?
+Sade
+10
+
+Music: 1990s: Artist/Band: No Place That Far?
+Sara evans
+10
+
+Music: 1990s: Artist/Band: No Rain?
+Blind melon
+10
+
+Music: 1990s: Artist/Band: No Son Of Mine?
+Genesis
+10
+
+Music: 1990s: Artist/Band: No, No, No?
+Destiny's child
+10
+
+Music: 1990s: Artist/Band: Nobody Knows?
+The tony rich project
+10
+
+Music: 1990s: Artist/Band: Nobody's Supposed To Be Here?
+Deborah cox
+10
+
+Music: 1990s: Artist/Band: None Of Your Business?
+Salt-n-pepa
+10
+
+Music: 1990s: Artist/Band: Not Enough Time?
+Inxs
+10
+
+Music: 1990s: Artist/Band: Not Gon'Cry?
+Mary j.blige
+10
+
+Music: 1990s: Artist/Band: Not The Only One?
+Bonnie raitt
+10
+
+Music: 1990s: Artist/Band: Nothin' My Love Can't Fix?
+Joey lawrence
+10
+
+Music: 1990s: Artist/Band: Nothin' To Hide?
+Poco
+10
+
+Music: 1990s: Artist/Band: Nothing Broken But My Heart?
+Celine dion
+10
+
+Music: 1990s: Artist/Band: Nothing Compares 2 U?
+Sinead o'connor
+10
+
+Music: 1990s: Artist/Band: Nothing Else Matters?
+Metallica
+10
+
+Music: 1990s: Artist/Band: Notice Me?
+Nikki
+10
+
+Music: 1990s: Artist/Band: November Rain?
+Guns n' roses
+10
+
+Music: 1990s: Artist/Band: Now And Forever?
+Richard marx
+10
+
+Music: 1990s: Artist/Band: Now That We've Found Love?
+Heavy d. and the boyz
+10
+
+Music: 1990s: Artist/Band: Nu Nu?
+Lidell townsell & m.t.f.
+10
+
+Music: 1990s: Artist/Band: Nuthin' But A G Thang?
+Dr. dre
+10
+
+Music: 1990s: Artist/Band: Nuttin' But Love?
+Heavy d. & the boyz
+10
+
+Music: 1990s: Artist/Band: O.P.P?
+Naughty by nature
+10
+
+Music: 1990s: Artist/Band: Objects In The Rear View Mirror May Appear Closer Than They Are?
+Meat loaf
+10
+
+Music: 1990s: Artist/Band: Oh Girl?
+Paul young
+10
+
+Music: 1990s: Artist/Band: Old Man & Me?
+Hootie & the blowfish
+10
+
+Music: 1990s: Artist/Band: On A Sunday Afternoon?
+A lighter shade of brown
+10
+
+Music: 1990s: Artist/Band: On And On?
+Erykah badu
+10
+
+Music: 1990s: Artist/Band: On Bended Knee?
+Boyz ii men
+10
+
+Music: 1990s: Artist/Band: On The Way Up?
+Elisa fiorillo
+10
+
+Music: 1990s: Artist/Band: One And Only Man?
+Steve winwood
+10
+
+Music: 1990s: Artist/Band: One Last Cry?
+Brian mcknight
+10
+
+Music: 1990s: Artist/Band: One More Chance / Stay With Me?
+The notorious b.i.g.
+10
+
+Music: 1990s: Artist/Band: One More Time?
+Real mccoy
+10
+
+Music: 1990s: Artist/Band: One More Try?
+Timmy t.
+10
+
+Music: 1990s: Artist/Band: One Of Us?
+Joan osborne
+10
+
+Music: 1990s: Artist/Band: One Sweet Day Mariah Carey w/?
+Boyz ii men
+10
+
+Music: 1990s: Artist/Band: One Week?
+Barenaked ladies
+10
+
+Music: 1990s: Artist/Band: One Woman?
+Jade
+10
+
+Music: 1990s: Artist/Band: One?
+U2
+10
+
+Music: 1990s: Artist/Band: Only Time Will Tell?
+Nelson
+10
+
+Music: 1990s: Artist/Band: Only Wanna Be With You?
+Hootie & the blowfish
+10
+
+Music: 1990s: Artist/Band: Only You 112 feat?
+The notorious b.i.g.
+10
+
+Music: 1990s: Artist/Band: Oochie Coochie?
+M.c. brains
+10
+
+Music: 1990s: Artist/Band: Ooh Aah... Just A Little Bit?
+Gina g
+10
+
+Music: 1990s: Artist/Band: Ooh Child?
+Dino
+10
+
+Music: 1990s: Artist/Band: Ooops Up?
+Snap!
+10
+
+Music: 1990s: Artist/Band: Ordinary World?
+Duran duran
+10
+
+Music: 1990s: Artist/Band: P.A.S.S.I.O.N?
+Rythm syndicate
+10
+
+Music: 1990s: Artist/Band: Paper Doll?
+Pm dawn
+10
+
+Music: 1990s: Artist/Band: Peace In Our Time?
+Eddie money
+10
+
+Music: 1990s: Artist/Band: People Are Still Having Sex?
+Latour
+10
+
+Music: 1990s: Artist/Band: People Everyday?
+Arrested development
+10
+
+Music: 1990s: Artist/Band: Personal Jesus?
+Depeche mode
+10
+
+Music: 1990s: Artist/Band: Piece Of My Heart?
+Tara kemp
+10
+
+Music: 1990s: Artist/Band: Place In This World?
+Michael w. smith
+10
+
+Music: 1990s: Artist/Band: Play That Funky Music?
+Vanilla ice
+10
+
+Music: 1990s: Artist/Band: Playaz Club?
+Rappin' 4-tay
+10
+
+Music: 1990s: Artist/Band: Player's Anthem?
+Junior m.a.f.i.a.
+10
+
+Music: 1990s: Artist/Band: Player's Ball?
+Outkast
+10
+
+Music: 1990s: Artist/Band: Playground?
+Another bad creation
+10
+
+Music: 1990s: Artist/Band: Please Don't Go?
+K.w.s.
+10
+
+Music: 1990s: Artist/Band: Please Forgive Me?
+Bryan adams
+10
+
+Music: 1990s: Artist/Band: Poison?
+Bell biv devoe
+10
+
+Music: 1990s: Artist/Band: Policy Of Truth?
+Depeche mode
+10
+
+Music: 1990s: Artist/Band: Pop Goes The Weasel?
+3rd bass
+10
+
+Music: 1990s: Artist/Band: Possession?
+Bad English
+10
+
+Music: 1990s: Artist/Band: Power Of Love/Love Power (Medley?
+Luther vandross
+10
+
+Music: 1990s: Artist/Band: Power Windows?
+Billy falcon
+10
+
+Music: 1990s: Artist/Band: Practice What You Preach?
+Barry white
+10
+
+Music: 1990s: Artist/Band: Pray?
+M.c. hammer
+10
+
+Music: 1990s: Artist/Band: Prayer For The Dying?
+Seal
+10
+
+Music: 1990s: Artist/Band: Praying For Time?
+George michael
+10
+
+Music: 1990s: Artist/Band: Pretty Girl?
+Jon b.
+10
+
+Music: 1990s: Artist/Band: Price Of Love?
+Bad English
+10
+
+Music: 1990s: Artist/Band: Principal's Office?
+Young mc
+10
+
+Music: 1990s: Artist/Band: Pumps And A Bump?
+M.c. hammer
+10
+
+Music: 1990s: Artist/Band: Pure?
+The lightning seeds
+10
+
+Music: 1990s: Artist/Band: Quality Time?
+Hi-five
+10
+
+Music: 1990s: Artist/Band: Quit Playing Games (With My Heart)?
+Backstreet boys
+10
+
+Music: 1990s: Artist/Band: Rain?
+Madonna
+10
+
+Music: 1990s: Artist/Band: Ray Of Light?
+Madonna
+10
+
+Music: 1990s: Artist/Band: Ready Or Not?
+After 7
+10
+
+Music: 1990s: Artist/Band: Real Love?
+Mary j. blige
+10
+
+Music: 1990s: Artist/Band: Real Real Real?
+Jesus jones
+10
+
+Music: 1990s: Artist/Band: Real World?
+Matchbox 20
+10
+
+Music: 1990s: Artist/Band: Reason To Believe?
+Rod stewart with ronnie wood
+10
+
+Music: 1990s: Artist/Band: Red Light Special?
+Tlc
+10
+
+Music: 1990s: Artist/Band: Regret?
+New order
+10
+
+Music: 1990s: Artist/Band: Regulate?
+Warren g and nate dog
+10
+
+Music: 1990s: Artist/Band: Release Me?
+Wilson phillips
+10
+
+Music: 1990s: Artist/Band: Released the album Postcards from heaven?
+Lighthouse family
+10
+
+Music: 1990s: Artist/Band: Remember The Time?
+Michael jackson
+10
+
+Music: 1990s: Artist/Band: Rescue Me?
+Madonna
+10
+
+Music: 1990s: Artist/Band: Restless Heart?
+Peter cetera
+10
+
+Music: 1990s: Artist/Band: Return Of The Mack?
+Mark morrison
+10
+
+Music: 1990s: Artist/Band: Return To Innocence?
+Enigma
+10
+
+Music: 1990s: Artist/Band: Rhythm Is A Dancer?
+Snap
+10
+
+Music: 1990s: Artist/Band: Rhythm Of My Heart?
+Rod stewart
+10
+
+Music: 1990s: Artist/Band: Rico Suave?
+Gerardo
+10
+
+Music: 1990s: Artist/Band: Ride The Wind?
+Poison
+10
+
+Music: 1990s: Artist/Band: Right Here, Right Now?
+Jesus jones
+10
+
+Music: 1990s: Artist/Band: Ring My Bell?
+D.j. jazzy jeff & the fresh prince
+10
+
+Music: 1990s: Artist/Band: Roam?
+The b-52's
+10
+
+Music: 1990s: Artist/Band: Rock And Roll Dreams Come Through?
+Meat loaf
+10
+
+Music: 1990s: Artist/Band: Roll To Me?
+Del amitri
+10
+
+Music: 1990s: Artist/Band: Romantic?
+Karyn white
+10
+
+Music: 1990s: Artist/Band: Romeo?
+Dino
+10
+
+Music: 1990s: Artist/Band: Room At The Top?
+Adam ant
+10
+
+Music: 1990s: Artist/Band: Round And Round?
+Tevin campbell
+10
+
+Music: 1990s: Artist/Band: Rub You The Right Way?
+Johnny gill
+10
+
+Music: 1990s: Artist/Band: RuffNeck?
+Mc lyte
+10
+
+Music: 1990s: Artist/Band: Rump Shaker?
+Wreckx-n-effect
+10
+
+Music: 1990s: Artist/Band: Run Away?
+Real mccoy
+10
+
+Music: 1990s: Artist/Band: Run To You?
+Whitney houston
+10
+
+Music: 1990s: Artist/Band: Run-Around?
+Blues traveler
+10
+
+Music: 1990s: Artist/Band: Runaway Train?
+Soul asylum
+10
+
+Music: 1990s: Artist/Band: Runaway?
+Janet jackson
+10
+
+Music: 1990s: Artist/Band: Running Back To You?
+Vanessa williams
+10
+
+Music: 1990s: Artist/Band: Rush Rush?
+Paula abdul
+10
+
+Music: 1990s: Artist/Band: Rush?
+Big audio dynamite ii
+10
+
+Music: 1990s: Artist/Band: Sacrifice?
+Elton john
+10
+
+Music: 1990s: Artist/Band: Sadeness (Part?
+Enigma
+10
+
+Music: 1990s: Artist/Band: Said I Loved You...But I Lied?
+Michael bolton
+10
+
+Music: 1990s: Artist/Band: Sang Lifted?
+Lighthouse family
+10
+
+Music: 1990s: Artist/Band: Sang Ocean Drive?
+Lighthouse family
+10
+
+Music: 1990s: Artist/Band: Save Me?
+Fleetwood mac
+10
+
+Music: 1990s: Artist/Band: Save Some Love?
+Keedy
+10
+
+Music: 1990s: Artist/Band: Save The Best For Last?
+Vanessa williams
+10
+
+Music: 1990s: Artist/Band: Save Tonight?
+Eagle-eye cherry
+10
+
+Music: 1990s: Artist/Band: Save Up All Your Tears?
+Cher
+10
+
+Music: 1990s: Artist/Band: Saving Forever For You?
+Shanice
+10
+
+Music: 1990s: Artist/Band: Say A Prayer?
+Breathe
+10
+
+Music: 1990s: Artist/Band: Say It?
+Voices of theory
+10
+
+Music: 1990s: Artist/Band: Say You'll Be There?
+Spice girls
+10
+
+Music: 1990s: Artist/Band: Secret Garden?
+Bruce springsteen
+10
+
+Music: 1990s: Artist/Band: Secret?
+Madonna
+10
+
+Music: 1990s: Artist/Band: See The Lights?
+Simple minds
+10
+
+Music: 1990s: Artist/Band: Semi-Charmed Life?
+Third eye blind
+10
+
+Music: 1990s: Artist/Band: Sending All My Love?
+Linear
+10
+
+Music: 1990s: Artist/Band: Sensitivity?
+Ralph tresvant
+10
+
+Music: 1990s: Artist/Band: Sentimental?
+Deborah cox
+10
+
+Music: 1990s: Artist/Band: Set Adrift On Memory Bliss?
+P.m. dawn
+10
+
+Music: 1990s: Artist/Band: Set The Night To Music?
+Roberta flack with maxi priest
+10
+
+Music: 1990s: Artist/Band: Set U Free?
+Planet soul
+10
+
+Music: 1990s: Artist/Band: Sex And Candy?
+Marcy playground
+10
+
+Music: 1990s: Artist/Band: She Talks To Angels?
+The black crowes
+10
+
+Music: 1990s: Artist/Band: She's Playing Hard To Get?
+Hi-five
+10
+
+Music: 1990s: Artist/Band: Shelter Me?
+Cinderella
+10
+
+Music: 1990s: Artist/Band: Shine?
+Collective soul
+10
+
+Music: 1990s: Artist/Band: Shiny Happy People?
+R.e.m.
+10
+
+Music: 1990s: Artist/Band: Shoop?
+Salt-n-pepa
+10
+
+Music: 1990s: Artist/Band: Short Dick Man?
+20 fingers featuring gillette
+10
+
+Music: 1990s: Artist/Band: Show Me Love?
+Robyn
+10
+
+Music: 1990s: Artist/Band: Show Me The Way?
+Styx
+10
+
+Music: 1990s: Artist/Band: Shy Guy?
+Diana king
+10
+
+Music: 1990s: Artist/Band: Signs?
+Tesla
+10
+
+Music: 1990s: Artist/Band: Silent Lucidity?
+Queensryche
+10
+
+Music: 1990s: Artist/Band: Simple Life?
+Elton john
+10
+
+Music: 1990s: Artist/Band: Sittin' In The Lap Of Luxury?
+Louie louie
+10
+
+Music: 1990s: Artist/Band: Sittin' Up In My Room?
+Brandy
+10
+
+Music: 1990s: Artist/Band: Six Feet Deep?
+The geto boys
+10
+
+Music: 1990s: Artist/Band: Slam?
+Onyx
+10
+
+Music: 1990s: Artist/Band: Sleeping Satellite?
+Tasmin archer
+10
+
+Music: 1990s: Artist/Band: Slide?
+Goo goo dolls
+10
+
+Music: 1990s: Artist/Band: Slow Motion?
+Color me badd
+10
+
+Music: 1990s: Artist/Band: Smells Like Teen Spirit?
+Nirvana
+10
+
+Music: 1990s: Artist/Band: So Alone?
+Men at large
+10
+
+Music: 1990s: Artist/Band: So Close?
+Daryl hall & john oates
+10
+
+Music: 1990s: Artist/Band: So Much In Love?
+All-4-one
+10
+
+Music: 1990s: Artist/Band: Someday?
+Mariah carey
+10
+
+Music: 1990s: Artist/Band: Someone To Hold?
+Trey lorenz
+10
+
+Music: 1990s: Artist/Band: Someone To Love?
+Jon b.
+10
+
+Music: 1990s: Artist/Band: Someone You Used To Know?
+Collin raye
+10
+
+Music: 1990s: Artist/Band: Somethin' 4 Da Honeyz?
+Montell jordan
+10
+
+Music: 1990s: Artist/Band: Something Got Me Started?
+Simply red
+10
+
+Music: 1990s: Artist/Band: Something Happened On The Way To Heaven?
+Phil collins
+10
+
+Music: 1990s: Artist/Band: Something In My Heart?
+Michel'le
+10
+
+Music: 1990s: Artist/Band: Something In Your Eyes?
+Bell biv devoe
+10
+
+Music: 1990s: Artist/Band: Something To Believe In?
+Poison
+10
+
+Music: 1990s: Artist/Band: Something To Talk About?
+Bonnie raitt
+10
+
+Music: 1990s: Artist/Band: Something's Goin' On?
+Unv
+10
+
+Music: 1990s: Artist/Band: Sometimes Love Just Ain't Enough?
+Patti smyth & don henley
+10
+
+Music: 1990s: Artist/Band: Sometimes She Cries?
+Warrant
+10
+
+Music: 1990s: Artist/Band: Soon As I Get Home?
+Faith evans
+10
+
+Music: 1990s: Artist/Band: Soul To Squeeze?
+Red hot chili peppers
+10
+
+Music: 1990s: Artist/Band: Spend My Life?
+Slaughter
+10
+
+Music: 1990s: Artist/Band: Spending My Time?
+Roxette
+10
+
+Music: 1990s: Artist/Band: Stand Beside Me?
+Jo dee messina
+10
+
+Music: 1990s: Artist/Band: Stand Up (Kick Love Into Motion?
+Def leppard
+10
+
+Music: 1990s: Artist/Band: Steam?
+Peter gabriel
+10
+
+Music: 1990s: Artist/Band: Steamy Windows?
+Tina turner
+10
+
+Music: 1990s: Artist/Band: Step By Step?
+The new kids on the block
+10
+
+Music: 1990s: Artist/Band: Stone Cold Gentleman?
+Ralph tresvant
+10
+
+Music: 1990s: Artist/Band: Stranded?
+Heart
+10
+
+Music: 1990s: Artist/Band: Street Of Dreams?
+Nia peeples
+10
+
+Music: 1990s: Artist/Band: Streets Of Philadelphia?
+Bruce springsteen
+10
+
+Music: 1990s: Artist/Band: Strike It Up?
+Black box
+10
+
+Music: 1990s: Artist/Band: Stroke You Up?
+Changing faces
+10
+
+Music: 1990s: Artist/Band: Strong Enough?
+Sheryl crow
+10
+
+Music: 1990s: Artist/Band: Sugar Hill?
+Az the visualiza
+10
+
+Music: 1990s: Artist/Band: Suicide Blonde?
+Inxs
+10
+
+Music: 1990s: Artist/Band: Sukiyaki?
+4 p.m.
+10
+
+Music: 1990s: Artist/Band: Summer Rain?
+Belinda carlisle
+10
+
+Music: 1990s: Artist/Band: Summer Time?
+Shaggy
+10
+
+Music: 1990s: Artist/Band: Sunny Came Home?
+Shawn colvin
+10
+
+Music: 1990s: Artist/Band: Sweet Dreams?
+La bouche
+10
+
+Music: 1990s: Artist/Band: Sweet Potatoe Pie?
+Domino
+10
+
+Music: 1990s: Artist/Band: Sweet Thing?
+Mary j. blige
+10
+
+Music: 1990s: Artist/Band: Swing My Way?
+K.p. & envyi
+10
+
+Music: 1990s: Artist/Band: T.L.C?
+Linear
+10
+
+Music: 1990s: Artist/Band: Take A Bow?
+Madonna
+10
+
+Music: 1990s: Artist/Band: Take This Heart?
+Richard marx
+10
+
+Music: 1990s: Artist/Band: Take Time?
+Chris walker
+10
+
+Music: 1990s: Artist/Band: Taking Everything?
+Gerald levert
+10
+
+Music: 1990s: Artist/Band: Tears In Heaven?
+Eric clapton
+10
+
+Music: 1990s: Artist/Band: Tell Me Something?
+Indecent obsession
+10
+
+Music: 1990s: Artist/Band: Tell Me What You Want Me To Do?
+Tevin campbell
+10
+
+Music: 1990s: Artist/Band: Tell Me When?
+The human league
+10
+
+Music: 1990s: Artist/Band: Tell Me?
+Groove theory
+10
+
+Music: 1990s: Artist/Band: Temple Of Love?
+Harriet
+10
+
+Music: 1990s: Artist/Band: Temptation?
+Corina
+10
+
+Music: 1990s: Artist/Band: Tender Lover?
+Babyface
+10
+
+Music: 1990s: Artist/Band: Tennessee?
+Arrested development
+10
+
+Music: 1990s: Artist/Band: Tha Crossroads Bone?
+Thugs-n-harmony
+10
+
+Music: 1990s: Artist/Band: Thank U?
+Alanis morissette
+10
+
+Music: 1990s: Artist/Band: Thank You?
+Boyz ii men
+10
+
+Music: 1990s: Artist/Band: That Girl I Used To Know?
+Brother beyond
+10
+
+Music: 1990s: Artist/Band: That's The Way Love Goes?
+Janet jackson
+10
+
+Music: 1990s: Artist/Band: That's What Love Can Do?
+Boy krazy
+10
+
+Music: 1990s: Artist/Band: That's What Love Is For?
+Amy grant
+10
+
+Music: 1990s: Artist/Band: The Arms Of The One Who Loves You?
+Xscape
+10
+
+Music: 1990s: Artist/Band: The Ballad of Jayne?
+L.a. guns
+10
+
+Music: 1990s: Artist/Band: The Best Things In Life Are Free?
+Luther vandross and janet jackson
+10
+
+Music: 1990s: Artist/Band: The Boy Is Mine?
+Brandy & monica
+10
+
+Music: 1990s: Artist/Band: The Crying Game?
+Boy george
+10
+
+Music: 1990s: Artist/Band: The Deeper The Love?
+Whitesnake
+10
+
+Music: 1990s: Artist/Band: The Dream Is Still Alive?
+Wilson phillips
+10
+
+Music: 1990s: Artist/Band: The Earth,The Sun The Rain?
+Color me badd
+10
+
+Music: 1990s: Artist/Band: The First Night?
+Monica
+10
+
+Music: 1990s: Artist/Band: The First Time?
+Surface
+10
+
+Music: 1990s: Artist/Band: The Freshmen?
+The verve pipe
+10
+
+Music: 1990s: Artist/Band: The Heart Of The Matter?
+Don henley
+10
+
+Music: 1990s: Artist/Band: The Humpty Dance?
+Digital underground
+10
+
+Music: 1990s: Artist/Band: The Last Song?
+Elton john
+10
+
+Music: 1990s: Artist/Band: The Most Beautiful Girl In The World?
+The artist formally known as prince
+10
+
+Music: 1990s: Artist/Band: The Motown Song?
+Rod stewart
+10
+
+Music: 1990s: Artist/Band: The One And Only?
+Chesney hawkes
+10
+
+Music: 1990s: Artist/Band: The One I Gave My Heart To?
+Aaliyah
+10
+
+Music: 1990s: Artist/Band: The One?
+Elton john
+10
+
+Music: 1990s: Artist/Band: The Other Side?
+Aerosmith
+10
+
+Music: 1990s: Artist/Band: The Place Where You Belong?
+Shai
+10
+
+Music: 1990s: Artist/Band: The Power Of Good-Bye?
+Madonna
+10
+
+Music: 1990s: Artist/Band: The Power Of Love?
+Celine dion
+10
+
+Music: 1990s: Artist/Band: The Power?
+Snap!
+10
+
+Music: 1990s: Artist/Band: The Promise Of A New Day?
+Paula abdul
+10
+
+Music: 1990s: Artist/Band: The Real Love?
+Bob seger
+10
+
+Music: 1990s: Artist/Band: The Rhythm Of The Night?
+Corona
+10
+
+Music: 1990s: Artist/Band: The Right Kind Of Love?
+Jeremy jordan
+10
+
+Music: 1990s: Artist/Band: The River Of Dreams?
+Billy joel
+10
+
+Music: 1990s: Artist/Band: The Shoop Shoop Song (It's In His Kiss?
+Cher
+10
+
+Music: 1990s: Artist/Band: The Sign?
+Ace of base
+10
+
+Music: 1990s: Artist/Band: The Sound Of Your Voice?
+38 special
+10
+
+Music: 1990s: Artist/Band: The Star Spangled Banner?
+Whitney houston
+10
+
+Music: 1990s: Artist/Band: The Sweetest Days?
+Vanessa williams
+10
+
+Music: 1990s: Artist/Band: The Truth?
+Tami show
+10
+
+Music: 1990s: Artist/Band: The Unforgiven?
+Metallica
+10
+
+Music: 1990s: Artist/Band: The Way I Feel About You?
+Karyn white
+10
+
+Music: 1990s: Artist/Band: The Way She Loves Me?
+Richard marx
+10
+
+Music: 1990s: Artist/Band: The Way You Do The Things You Do?
+Ub40
+10
+
+Music: 1990s: Artist/Band: The What?
+The notorious b.i.g.
+10
+
+Music: 1990s: Artist/Band: The World I Know?
+Collective soul
+10
+
+Music: 1990s: Artist/Band: There Will Never Be Another Tonight?
+Bryan adans
+10
+
+Music: 1990s: Artist/Band: These Are The Times?
+Dru hill
+10
+
+Music: 1990s: Artist/Band: They Don't Know?
+Jon b.
+10
+
+Music: 1990s: Artist/Band: They Want Efx?
+Das efx
+10
+
+Music: 1990s: Artist/Band: Thieves In The Temple?
+Prince
+10
+
+Music: 1990s: Artist/Band: Think?
+Information society
+10
+
+Music: 1990s: Artist/Band: Thinkin' Back?
+Color me badd
+10
+
+Music: 1990s: Artist/Band: Thinkin' Problem?
+David ball
+10
+
+Music: 1990s: Artist/Band: This Ain't A Love Song?
+Bon jovi
+10
+
+Music: 1990s: Artist/Band: This D.J?
+Warren g
+10
+
+Music: 1990s: Artist/Band: This House?
+Tracie spencer
+10
+
+Music: 1990s: Artist/Band: This Is How We Do It?
+Montell jordan
+10
+
+Music: 1990s: Artist/Band: This Is The Right Time?
+Lisa stansfield
+10
+
+Music: 1990s: Artist/Band: This Is Your Night?
+Amber
+10
+
+Music: 1990s: Artist/Band: This Kiss?
+Faith hill
+10
+
+Music: 1990s: Artist/Band: This Lil' Game We Play?
+Subway featuring 702
+10
+
+Music: 1990s: Artist/Band: This Used To Be My Playground?
+Madonna
+10
+
+Music: 1990s: Artist/Band: Thought I'd Died And Gone To Heaven?
+Bryan adams
+10
+
+Music: 1990s: Artist/Band: Three Little Pigs?
+Green jelly
+10
+
+Music: 1990s: Artist/Band: Thuggish-Ruggish-Bone?
+Bone thugs-n-harmony
+10
+
+Music: 1990s: Artist/Band: Tic-Tac-Toe?
+Kyper
+10
+
+Music: 1990s: Artist/Band: Time And Chance?
+Color me badd
+10
+
+Music: 1990s: Artist/Band: Time For Letting Go?
+Jude cole
+10
+
+Music: 1990s: Artist/Band: Time, Love, And Tenderness?
+Michael bolton
+10
+
+Music: 1990s: Artist/Band: To Be With You?
+Mr. big
+10
+
+Music: 1990s: Artist/Band: To Love Somebody?
+Michael bolton
+10
+
+Music: 1990s: Artist/Band: Together Again?
+Janet jackson
+10
+
+Music: 1990s: Artist/Band: Together Forever?
+Lisette melendez
+10
+
+Music: 1990s: Artist/Band: Tonight?
+New kids on the block
+10
+
+Music: 1990s: Artist/Band: Tonite's Tha Night?
+Kris kross
+10
+
+Music: 1990s: Artist/Band: Too Blind To See It?
+Kym sims
+10
+
+Music: 1990s: Artist/Band: Too Close?
+Next
+10
+
+Music: 1990s: Artist/Band: Too Funky?
+George michael
+10
+
+Music: 1990s: Artist/Band: Too Hot?
+Coolio
+10
+
+Music: 1990s: Artist/Band: Too Late To Say Goodbye?
+Richard marx
+10
+
+Music: 1990s: Artist/Band: Too Many Walls?
+Cathy dennis
+10
+
+Music: 1990s: Artist/Band: Too Much Passion?
+The smithereens
+10
+
+Music: 1990s: Artist/Band: Too Much?
+Spice girls
+10
+
+Music: 1990s: Artist/Band: Tootsee Roll?
+69 boyz
+10
+
+Music: 1990s: Artist/Band: Top Of The World?
+Van halen
+10
+
+Music: 1990s: Artist/Band: Total Eclipse Of The Heart?
+Nicki french
+10
+
+Music: 1990s: Artist/Band: Touch It?
+Monifah
+10
+
+Music: 1990s: Artist/Band: Touch Me (All Night Long?
+Cathy dennis
+10
+
+Music: 1990s: Artist/Band: True Blue Love?
+Lou gramm
+10
+
+Music: 1990s: Artist/Band: Truly Madly Deeply?
+Savage garden
+10
+
+Music: 1990s: Artist/Band: Tubthumping?
+Chumbawamba
+10
+
+Music: 1990s: Artist/Band: Turn The Beat Around?
+Gloria estefan
+10
+
+Music: 1990s: Artist/Band: Turtle Power!?
+Partners in kryme
+10
+
+Music: 1990s: Artist/Band: Twisted?
+Keith sweat
+10
+
+Music: 1990s: Artist/Band: Two Princes?
+The spin doctors
+10
+
+Music: 1990s: Artist/Band: Two Steps Behind?
+Def leppard
+10
+
+Music: 1990s: Artist/Band: U Can't Touch This?
+M.c. hammer
+10
+
+Music: 1990s: Artist/Band: U Send Me Swingin'?
+Mint condition
+10
+
+Music: 1990s: Artist/Band: U Will Know?
+B.m.u. (black men united
+10
+
+Music: 1990s: Artist/Band: U.N.I.T.Y?
+Queen latifah
+10
+
+Music: 1990s: Artist/Band: Uhh Ahh?
+Boyz ii men
+10
+
+Music: 1990s: Artist/Band: Un-Break My Heart?
+Toni blaxton
+10
+
+Music: 1990s: Artist/Band: Under The Bridge?
+The red hot chili peppers
+10
+
+Music: 1990s: Artist/Band: Understanding?
+Xscape
+10
+
+Music: 1990s: Artist/Band: Unskinny Bop?
+Poison
+10
+
+Music: 1990s: Artist/Band: Until Your Love Comes Back Around?
+Rtz
+10
+
+Music: 1990s: Artist/Band: Untill It Sleeps?
+Metallica
+10
+
+Music: 1990s: Artist/Band: Up All Night?
+Slaughter
+10
+
+Music: 1990s: Artist/Band: Very Special?
+Big daddy kane
+10
+
+Music: 1990s: Artist/Band: Vibeology?
+Paula abdul
+10
+
+Music: 1990s: Artist/Band: Vision Of Love?
+Mariah carey
+10
+
+Music: 1990s: Artist/Band: Vogue?
+Madonna
+10
+
+Music: 1990s: Artist/Band: Voices That Care?
+Voices that care
+10
+
+Music: 1990s: Artist/Band: Waiting For Love?
+Alias
+10
+
+Music: 1990s: Artist/Band: Waiting For That Day?
+George michael
+10
+
+Music: 1990s: Artist/Band: Walk On The Ocean?
+Toad the wet sprocket
+10
+
+Music: 1990s: Artist/Band: Walk Through Fire?
+Bad company
+10
+
+Music: 1990s: Artist/Band: Walking In Memphis?
+Marc cohn
+10
+
+Music: 1990s: Artist/Band: Walking On Broken Glass?
+Annie lennox
+10
+
+Music: 1990s: Artist/Band: Wannabe?
+Spice girls
+10
+
+Music: 1990s: Artist/Band: Wannagirl?
+Jeremy jordan
+10
+
+Music: 1990s: Artist/Band: Warm It Up?
+Kris kross
+10
+
+Music: 1990s: Artist/Band: Warning?
+The notorious b.i.g.
+10
+
+Music: 1990s: Artist/Band: Was It Nothing At All?
+Michael damian
+10
+
+Music: 1990s: Artist/Band: Water Runs Dry?
+Boyz ii men
+10
+
+Music: 1990s: Artist/Band: Waterfalls?
+Tlc
+10
+
+Music: 1990s: Artist/Band: We Can't Go Wrong?
+The cover girls
+10
+
+Music: 1990s: Artist/Band: We Got A Love Thang?
+Cece peniston
+10
+
+Music: 1990s: Artist/Band: We Want The Funk?
+Gerardo
+10
+
+Music: 1990s: Artist/Band: We're All In The Same Gang?
+The west coast rap all-stars
+10
+
+Music: 1990s: Artist/Band: Weak?
+Swv (sisters with voices
+10
+
+Music: 1990s: Artist/Band: Westside?
+Tq
+10
+
+Music: 1990s: Artist/Band: What About Us?
+Total
+10
+
+Music: 1990s: Artist/Band: What About Your Friends?
+Tlc
+10
+
+Music: 1990s: Artist/Band: What Becomes Of The Brokenhearted?
+Paul young
+10
+
+Music: 1990s: Artist/Band: What Comes Naturally?
+Sheena easton
+10
+
+Music: 1990s: Artist/Band: What Is Love?
+Haddaway
+10
+
+Music: 1990s: Artist/Band: What It Takes?
+Aerosmith
+10
+
+Music: 1990s: Artist/Band: What Kind Of Man Would I Be?
+Chicago
+10
+
+Music: 1990s: Artist/Band: What Miami artist broke her back in March 1990?
+Gloria estefan
+10
+
+Music: 1990s: Artist/Band: What's My Name?
+Snoop doggy dog
+10
+
+Music: 1990s: Artist/Band: What's On Tonight?
+Montell jordan
+10
+
+Music: 1990s: Artist/Band: What's The Frequency, Kenneth?
+R.e.m.
+10
+
+Music: 1990s: Artist/Band: What's Up?
+4 non blondes
+10
+
+Music: 1990s: Artist/Band: When A Man Loves A Woman?
+Michael bolton
+10
+
+Music: 1990s: Artist/Band: When I Can See You?
+Babyface
+10
+
+Music: 1990s: Artist/Band: When I Fall In Love?
+Celine dion and clive griffin
+10
+
+Music: 1990s: Artist/Band: When I Look Into Your Eyes?
+Firehouse
+10
+
+Music: 1990s: Artist/Band: When I'm Back On My Feet Again?
+Michael bolton
+10
+
+Music: 1990s: Artist/Band: When She Cries?
+Restless heart
+10
+
+Music: 1990s: Artist/Band: When The Lights Go Out?
+Five
+10
+
+Music: 1990s: Artist/Band: When We Dance?
+Sting
+10
+
+Music: 1990s: Artist/Band: When You Believe?
+Whitney houston & mariah carey
+10
+
+Music: 1990s: Artist/Band: When You Love A Woman?
+Journey
+10
+
+Music: 1990s: Artist/Band: When You're Gone T?
+He cranberries
+10
+
+Music: 1990s: Artist/Band: Where Do You Go?
+No mercy
+10
+
+Music: 1990s: Artist/Band: Where Does My Heart Beat Now?
+Celine dion
+10
+
+Music: 1990s: Artist/Band: Where Have All The Cowboys Gone?
+Paula cole
+10
+
+Music: 1990s: Artist/Band: Where You Goin' Now?
+Damn yankees
+10
+
+Music: 1990s: Artist/Band: Whip Appeal?
+Babyface
+10
+
+Music: 1990s: Artist/Band: Who Can I Run To?
+Xscape
+10
+
+Music: 1990s: Artist/Band: Who Do U Love?
+Deborah cox
+10
+
+Music: 1990s: Artist/Band: Who had the top grossing concert?
+Billy joel
+10
+
+Music: 1990s: Artist/Band: Who Will Save Your Soul?
+Jewel
+10
+
+Music: 1990s: Artist/Band: Who's Gonna Ride Your Wild Horses?
+U2
+10
+
+Music: 1990s: Artist/Band: Whole Wide World?
+A'me lorain
+10
+
+Music: 1990s: Artist/Band: Whoomp (There It Is?
+Tag team
+10
+
+Music: 1990s: Artist/Band: Whoot, There It Is?
+95 south
+10
+
+Music: 1990s: Artist/Band: Why I Love You So Much?
+Monica
+10
+
+Music: 1990s: Artist/Band: Why?
+Annie lennox
+10
+
+Music: 1990s: Artist/Band: Wicked Game?
+Chris isaak
+10
+
+Music: 1990s: Artist/Band: Wiggle It?
+2 in a room
+10
+
+Music: 1990s: Artist/Band: Wild Women Do?
+Natalie cole
+10
+
+Music: 1990s: Artist/Band: Wild World?
+Mr. big
+10
+
+Music: 1990s: Artist/Band: Wildside?
+Marky mark and the funky bunch
+10
+
+Music: 1990s: Artist/Band: Will You Be There (In The Morning?
+Heart
+10
+
+Music: 1990s: Artist/Band: Will You Be There?
+Michael jackson
+10
+
+Music: 1990s: Artist/Band: Will You Marry Me?
+Paula abdul
+10
+
+Music: 1990s: Artist/Band: Willing To Forgive?
+Aretha franklin
+10
+
+Music: 1990s: Artist/Band: Wind Of Change?
+The scorpions
+10
+
+Music: 1990s: Artist/Band: Wishing On A Star?
+The cover girls
+10
+
+Music: 1990s: Artist/Band: With You?
+Tony terry
+10
+
+Music: 1990s: Artist/Band: Without You?
+Motley crue
+10
+
+Music: 1990s: Artist/Band: Without You/Never Forget You?
+Mariah carey
+10
+
+Music: 1990s: Artist/Band: Woman In Chains?
+Tears for fears
+10
+
+Music: 1990s: Artist/Band: Wonder?
+Natalie merchant
+10
+
+Music: 1990s: Artist/Band: Wonderful?
+Adam ant
+10
+
+Music: 1990s: Artist/Band: Wonderwall?
+Oasis
+10
+
+Music: 1990s: Artist/Band: Woo-Hah!! Got You All In Check?
+Busta rhymes
+10
+
+Music: 1990s: Artist/Band: Would I Lie To You?
+Charles and eddie
+10
+
+Music: 1990s: Artist/Band: Written All Over Your Face?
+Rude boys
+10
+
+Music: 1990s: Artist/Band: Wrong Again?
+Martina mcbride
+10
+
+Music: 1990s: Artist/Band: You Are Not Alone?
+Michael jackson
+10
+
+Music: 1990s: Artist/Band: You Better Wait?
+Steve perry
+10
+
+Music: 1990s: Artist/Band: You Can't Deny It?
+Lisa stansfield
+10
+
+Music: 1990s: Artist/Band: You Could Be Mine?
+Guns n' roses
+10
+
+Music: 1990s: Artist/Band: You Don't Have To Go Home Tonight?
+The triplets
+10
+
+Music: 1990s: Artist/Band: You Don't Know How It Feels?
+Tom petty
+10
+
+Music: 1990s: Artist/Band: You Got It?
+Bonnie raitt
+10
+
+Music: 1990s: Artist/Band: You Gotta Be?
+Des'ree
+10
+
+Music: 1990s: Artist/Band: You Know How We Do It?
+Ice cube
+10
+
+Music: 1990s: Artist/Band: You Learn?
+Alanis morissete
+10
+
+Music: 1990s: Artist/Band: You Lied To Me?
+Cathy dennis
+10
+
+Music: 1990s: Artist/Band: You Make Me Wanna...?
+Usher
+10
+
+Music: 1990s: Artist/Band: You Mean The World To Me?
+Toni braxton
+10
+
+Music: 1990s: Artist/Band: You Must Love Me?
+Madonna
+10
+
+Music: 1990s: Artist/Band: You Remind Me Of Something?
+R. kelly
+10
+
+Music: 1990s: Artist/Band: You Remind Me?
+Mary j. blige
+10
+
+Music: 1990s: Artist/Band: You Remind Of Something?
+R.kelly
+10
+
+Music: 1990s: Artist/Band: You Think You Know Her?
+Cause & effect
+10
+
+Music: 1990s: Artist/Band: You Used To Love Me?
+Faith
+10
+
+Music: 1990s: Artist/Band: You Want This?
+Janet jackson
+10
+
+Music: 1990s: Artist/Band: You Were Meant For Me/Foolish Games?
+Jewel
+10
+
+Music: 1990s: Artist/Band: You Won't See Me Cry?
+Wilson phillips
+10
+
+Music: 1990s: Artist/Band: You'll See?
+Madonna
+10
+
+Music: 1990s: Artist/Band: You're Amazing?
+Robert palmer
+10
+
+Music: 1990s: Artist/Band: You're Beginning To Get To Me?
+Clay walker
+10
+
+Music: 1990s: Artist/Band: You're Easy On The Eyes?
+Terri clark
+10
+
+Music: 1990s: Artist/Band: You're In Love?
+Wilson phillips
+10
+
+Music: 1990s: Artist/Band: You're Makin' Me High?
+Toni braxton
+10
+
+Music: 1990s: Artist/Band: You're Still The One?
+Shania twain
+10
+
+Music: 1990s: Artist/Band: You're The One?
+Swv
+10
+
+Music: 1990s: Artist/Band: You're The Only Woman?
+The brat pack
+10
+
+Music: 1990s: Artist/Band: You?
+Jesse powell
+10
+
+Music: 1990s: Artist/Band: Your Baby Never Looked Good In Blue?
+Expos?
+10
+
+Music: 1990s: Artist/Band: Your Body's Callin'?
+R. kelly
+10
+
+Music: 1990s: Artist/Band: Your Woman?
+White town
+10
+
+Music: 1990s: Cyndi Lauper sang this song 1994?
+Hey now(girls just want to have fun)
+10
+
+Music: 1990s: D?Arcy was the bass player of what 90's band?
+Smashing Pumpkins
+10
+
+Music: 1990s: In 1990 Madonna made a documentary feature film. What was the title?
+Truth or dare
+10
+
+Music: 1990s: In 1992, which album did neil young release as a sequel to his 1972 lp harvest?
+Harvest moon
+10
+
+Music: 1990s: In 1993 why were Liz Taylor, Liza Minnelli, Guns N' Roses and Elton John all on the same London stage?
+Freddie mercury tribute
+10
+
+Music: 1990s: name an album by Lighthouse family?
+Postcards from Heaven
+10
+
+Music: 1990s: Song: According to this number one song everybody's free to wear...?
+Sunscreen
+10
+
+Music: 1990s: Song: The first rap song to hit #1 in 1990 on the pop charts was by who?
+Mc hammer
+10
+
+Music: 1990s: This rock satirist died in December 1993?
+Frank zappa
+10
+
+Music: 1990s: what album did neil young release as a sequel to his 1972 lp harvest?
+Harvest moon
+10
+
+Music: 1990s: What group's album sales were banned in Browling County , Florida?
+2 live crew
+10
+
+Music: 1990s: What pop star chose to name one of her companies slutco in 1992?
+Madonna
+10
+
+Music: 1990s: What pop star chose to name one of her companies Slutco?
+Madonna
+10
+
+Music: 1990s: What rock group thought Incesticide would make a nice album title?
+Nirvana
+10
+
+Music: 1990s: What singer's sister, Laura, penned the memoir 'Love, Janis'?
+Janis joplin
+10
+
+Music: 1990s: What song did Glen Medieros and Bobby Brown do together?
+She aint worth it
+10
+
+Music: 1990s: What video did MTV refuse to play because it was too suggestive?
+Justify my love
+10
+
+Music: 1990s: What was the song title used by both En Vogue and Wilson Phillips?
+Hold on
+10
+
+Music: 1990s: Which boy band had three number ones in 1993?
+Take That
+10
+
+Music: 1990s: Who did the Blonde Ambition tour?
+Madonna
+10
+
+Music: 1990s: Who had animal rights activists angry over taking a panther on stage?
+Janet jackson
+10
+
+Music: 1990s: Whose 1992 Bucharest concert had 22,000 policemen and security guards?
+Michael jackson's
+10
+
+Music: 1993 Crash test dummies classic(?)?
+Mmm mmm mmm mmm
+10
+
+Music: 1996 was the year of long-staying hits. How manly No 1s were there?
+Nine
+10
+
+Music: 2000s: 2002 album released by The Pet Shop Boys?
+Release
+10
+
+Music: 2000s: 2002 crossroads name the artist?
+Blazin' squad
+10
+
+Music: 2000s: 2002 name the artist 'too bad'?
+Nickelback
+10
+
+Music: 2000s: 2002 name the artist underneath your clothes?
+Shakira
+10
+
+Music: 2000s: 2002 what is the sugarbabe secon hit single?
+Round round
+10
+
+Music: 2000s: 2002 who sang kiss kiss?
+Holly valance
+10
+
+Music: 2000s: 2002, a rare appearance in the UK charts for Marilyn Manson with which song?
+Tainted Love
+10
+
+Music: 2000s: 2002, record in the Uk charts by Jennifer Lopez?
+Ain't it funny
+10
+
+Music: 2000s: 2002, top 10 (UK) hit by faithless?
+One step too far
+10
+
+Music: 2000s: 2002, top 20(UK) who ad a hit with Aint it funny?
+Jennifer Lopez
+10
+
+Music: 2000s: 2002, which group featured in the UK chart with How you remind Me?
+Nickelback
+10
+
+Music: 2000s: 2002, who appeared in the UK charts with Ride wid us?
+So solid crew
+10
+
+Music: 2000s: 2002, who sang the spoof record, Me Julia?
+Ali G and Shaggy
+10
+
+Music: 2000s: 2002, whose double single Anything is Possible/Evergreen stormed the UK charts?
+Will Young
+10
+
+Music: 2000s: 2002, whose reworking of the old Soft Cell record Tainted Love saw him make a rare popular chart appearace in 2002?
+Marilyn Manson
+10
+
+Music: 2000s: Artist/Band: Who had a Number 1 hit in 2000 with 'American Pie'?
+Madonna
+10
+
+Music: 2000s: June 2002, Kylies top ten hit?
+Love at first sight
+10
+
+Music: 2000s: June 2002, Top 10 album for Kylie Minogue?
+Fever
+10
+
+Music: 2000s: June 2002, Top 10 hit for Scooter?
+The logical song
+10
+
+Music: 2000s: May 2002, Eminems top 10 hit?
+Without me
+10
+
+Music: 2000s: May 2002, Liberty Xs top 10 hit?
+Just a little
+10
+
+Music: 2000s: May 2002, name of S Club Juniors top 20 hit?
+One step closer
+10
+
+Music: 2000s: May 2002, Name of the World Cup anthem by ant and dec?
+We're on the ball
+10
+
+Music: 2000s: May 2002, name of Westlifes top 20 hit?
+Bop bop baby
+10
+
+Music: 2000s: May 2002, Ronan Keatings top 10 hit?
+Tomorrow never comes
+10
+
+Music: 2000s: May 2002, top ten album by Liberty X?
+Thinking it over
+10
+
+Music: 2000s: May 2002, top ten album by Ronan keating?
+Destination
+10
+
+Music: 2000s: May 2002, which vaughan williams violin piece has been voted top British classical composition of all time?
+The lark ascending
+10
+
+Music: 2000s: May 2002, Who did the World Cup anthem?
+Ant and dec
+10
+
+Music: 2000s: May 2002, Who had a top 10 hit with Escape?
+Enrique iglesias
+10
+
+Music: 2000s: May 2002, who had a top 10 hit with Kiss Kiss?
+Holly valance
+10
+
+Music: 2000s: May 2002, who had a top 20 hit with Dont let me get me?
+Pink
+10
+
+Music: 2000s: May 2002, who had a top 20 hit with It takes more?
+Ms dynamite
+10
+
+Music: 2000s: May 2002, who had a top 20 hit with Reason?
+Ian van dahl
+10
+
+Music: 2000s: May 2002, Who had a top ten hit with Its Ok?
+Atomic kitten
+10
+
+Music: 2000s: May 2002, Will Youngs 2nd No 1?
+Light my fire
+10
+
+Music: 2000s: Who topped the uk charts with a blondie cover in 2002?
+Atomic kitten
+10
+
+Music: 2000s: Whose 2002 album is called Release?
+Pet Shop Boys
+10
+
+Music: 2010s: What 2015 song by Adele debuted at #1 on the Billboard charts?
+Hello
+10
+
+Music: 2010s: What dance move did Miley Cyrus famously perform at the Video Music Awards?
+Twerking
+10
+
+Music: 2010s: What does the D stand for in EDM?
+Dance
+10
+
+Music: 2010s: What female singer's last name is something that you can order at Starbucks?
+Ariana Grande
+10
+
+Music: 2010s: What headphones company, co-founded by Dr. Dre, was purchased by Apple?
+Beats
+10
+
+Music: 2010s: What is the real name of rapper Childish Gambino?
+Donald Glover
+10
+
+Music: 2010s: What song by Mark Ronson dominated the radio airwaves during the spring of 2015?
+Uptown Funk
+10
+
+Music: 2010s: What song by Psy is the most-viewed Youtube video of all time?
+Gangnam Style
+10
+
+Music: 2010s: What two female singers have recorded the most U.S. #1 hits during the decade?
+Katy Perry and Rihanna
+10
+
+Music: 2010s: Where does Hozier want you to take him?
+Church
+10
+
+Music: 2010s: Who are the best-selling boy band of the decade?
+One Direction
+10
+
+Music: 2010s: Who is the lead singer of Maroon 5?
+Adam Levine
+10
+
+Music: 2nd Fiddles: Archie Bell and the ____
+Drells
+10
+
+Music: 2nd Fiddles: Herb Alpert and the ____
+Tijuana brass
+10
+
+Music: 2nd Fiddles: MC Skat Kat and the ____ ____
+Stray mob
+10
+
+Music: 2nd Fiddles: Paul Shaffer and the ____
+Worlds most dangerous band
+10
+
+Music: 2nd Fiddles: Peaches and ____
+Herb
+10
+
+Music: 311 Got their name from a police code for what offense?
+Indecent exposure
+10
+
+Music: A baby angel smoking a cigarette was the cover for this group's album?
+Van Halen
+10
+
+Music: a beatles song sung by ringo starr with lyrics by other beatles?
+What goes on
+10
+
+Music: A brass instrument which normally uses a slide?
+Trombone
+10
+
+Music: A Cadence on a V chord is known most commonly in the US as what?
+Deceptive cadence
+10
+
+Music: A dance from Brazil which was considered very very suggestive?
+Lambada
+10
+
+Music: A gritty psychedelic version of Dale Hawkin's 'Suzy Q' was on which group's first album in 1968?
+Creedence clearwater revival
+10
+
+Music: A guitarist with the band Television?
+Richard lloyd
+10
+
+Music: A lively Spanish dance in triple time to guitar and castanets?
+Fandango
+10
+
+Music: A medieval bowed musical instrument of the violin family?
+Lyre
+10
+
+Music: A method of voice production by male singers used to vocalise notes higher than their normal range?
+Falsetto
+10
+
+Music: A printed form of a composition showing vocal and instrumental parts on separate staves?
+Score
+10
+
+Music: A short version of her name rhymes with dress?
+Thessaly
+10
+
+Music: Abbreviation of rinforzando?
+Rfz
+10
+
+Music: Abbreviation of rinforzando?
+Rin
+10
+
+Music: Abbreviation of the minor scale?
+Mi
+10
+
+Music: Abbreviation of the minor scale?
+Min
+10
+
+Music: About whose sister is John Lennons song Dear Prudence?
+Mia farrows
+10
+
+Music: According to Elton John, what time is 'Zero Hour' in the song 'Rocket Man'?
+9am
+10
+
+Music: According to many singers over the years ... What keep falling on their head?
+Raindrops
+10
+
+Music: According to Roy Orbison 'No one could look as good as____
+Pretty woman
+10
+
+Music: According to the 70s no 1 what did video kill?
+The radio Star
+10
+
+Music: According to the Duke, you take this to Harlem?
+The a train
+10
+
+Music: According to this song by Blood, Sweat and Tears, what goes up must come down?
+Spinning wheel
+10
+
+Music: According to Tommy Tutone, whose phone number is 867 5309?
+Jenny
+10
+
+Music: According to Voice of the Beehive this is a flame from the devil's fire?
+The beat of love
+10
+
+Music: Adam Ant advocates we do this in the title cut of his 1983 album?
+Strip
+10
+
+Music: Adam Ants first solo single?
+Goody two shoes
+10
+
+Music: Adam Ants real name?
+Stuart Goddard
+10
+
+Music: Adrian Belew's pop quartet?
+The bears
+10
+
+Music: Aerosmith: Album: Includes the songs F.I.N.E. and What It Takes?
+Pump
+10
+
+Music: Aerosmith: Song about lust in a place you find in a department store?
+Love in an elevator
+10
+
+Music: Aerosmith: Songs?
+Walk This Way
+10
+
+Music: Aerosmith: What is the name of Aerosmith's first box set?
+Pandoras box
+10
+
+Music: Aerosmith: What is the name of the Aerosmith fan club?
+Aero force one
+10
+
+Music: Aerosmith: What song did Aerosmith perform live at MTV-10?
+Dream on
+10
+
+Music: Aerosmith: When Joe Perry briefly left the group. who was his replacement?
+Jimmy crespo
+10
+
+Music: Alan Parsons Project: David Paton plays this instrument for the Alan Parsons Project?
+Bass
+10
+
+Music: Alan Parsons Project: This video features a smiling moon?
+Dont answer me
+10
+
+Music: Alan Parsons Project: Which album is based on the works of an artist?
+Gaudi
+10
+
+Music: Album: 'Sliver' 'Son of a Gun' 'Downer'?
+Incesticide
+10
+
+Music: Album: Biscuit, Sour Times, Glory Box (Portishead)?
+Dummy
+10
+
+Music: Album: Breeder's songs Divine Hammer, Driving On Nine, No Aloha?
+Last splash
+10
+
+Music: Album: First Police album?
+Outlandos damour
+10
+
+Music: Album: Hyperactive, I Didnt Mean To Turn You On, Addicted to Love?
+Riptide
+10
+
+Music: Album: Iris, Lime House, Doe?
+Pod
+10
+
+Music: Album: Name the album on which natalie cole sang 'duets' with her deceased father?
+Unforgettable
+10
+
+Music: Album: need You Tonight, Devil Inside?
+Kick
+10
+
+Music: Album: Nick The Stripper, Cry, King Ink?
+Prayers on fire
+10
+
+Music: Album: Paper Moon, Unforgettable, Route 66?
+Unforgettable
+10
+
+Music: Album: Pissant, Spaced, Blue?
+Pisces iscariot
+10
+
+Music: Album: Popscene, Sunday Sunday, For Tomorrow?
+Modern life is rubbish
+10
+
+Music: Album: Queen Jane, Armchair Anarchist, Ten Years Asleep?
+Sleepwalking
+10
+
+Music: Album: Rolling Stones songs All Down the Line, Rocks Off, Sweet Virginia?
+Exile on main street
+10
+
+Music: Album: Ruined in a Day, Young Offender, Special?
+Republic
+10
+
+Music: Album: Sarah, Reggaejunkiejew, Big Jilm?
+Pure guava
+10
+
+Music: Album: Secrets, Forest, M?
+Seventeen seconds
+10
+
+Music: Album: Shoop, Whatta Man?
+Very necessary
+10
+
+Music: Album: Star Power, Marilyn Moore, Tom Violence?
+Evol
+10
+
+Music: Album: Suburbia, I Want A Lover, Later Tonight (Pet Shop Boys)?
+Please
+10
+
+Music: Album: Suffer Little Children, Pretty Girls Make Graves?
+The smiths
+10
+
+Music: Album: Sugar Hiccup, Glass Candle Grenades?
+Head over heels
+10
+
+Music: Album: The Anchor Song, Violently Happy?
+Debut
+10
+
+Music: Album: The year, 1994. The artist, Pink Floyd?
+The division bell
+10
+
+Music: Album: Too Young To Die, Blow Your Mind?
+Emergency on planet earth
+10
+
+Music: Album: Used To Be, Out The Window?
+Why do birds sing
+10
+
+Music: Album: What is the name of Dead Can Dance's 'greatest hits' album?
+Passage in time
+10
+
+Music: Album: You, I Sho Do, Circle Dance, Love Sneaking Up On You?
+Longing in their hearts
+10
+
+Music: Albums 2002, top 10 (UK) by Celine Dion?
+A new day has come
+10
+
+Music: Albums 2002, top 10 (UK) by Darren Hayes?
+Spin
+10
+
+Music: Albums 2002, top 10 (UK) by Nickelback?
+Silver side up
+10
+
+Music: Albums 2002, top 10 (UK) which artist/group - A new day has come?
+Celine Dion
+10
+
+Music: Albums 2002, top 10 (UK) which artist/group - Spin?
+Darren Hayes
+10
+
+Music: Albums 2002, top 10 album by Anastacia?
+Freak of nature
+10
+
+Music: Albums 2002, which group/artist had a top 10 (UK) with Silver side Up?
+Nickelback
+10
+
+Music: Albums 2002, whose album is called Freak of nature?
+Anastacia
+10
+
+Music: Albums: Balls to the Wall, London Leatherboys, Head Over Heels?
+Balls to the wall
+10
+
+Music: Albums: Captain Fantastic & The ____ ____ ____
+Brown dirt cowboy
+10
+
+Music: Albums: Classic Sinatra with Count Basie in Las Vegas, 1966?
+Sinatra at the sands
+10
+
+Music: Albums: Dark Side Of The ____ (pink floyd)
+Moon
+10
+
+Music: Albums: Down Under, Who Can It Be Now, Helpless Automaton?
+Business as usual
+10
+
+Music: Albums: Dr Dre's debut, the funkiest thing since Parliament?
+The chronic
+10
+
+Music: Albums: Every Heartbeat, Baby Baby?
+Heart in motion
+10
+
+Music: Albums: Funky Jam, Struttin, (Im Gonna) Cry Myself Blind?
+Give out but dont give up
+10
+
+Music: Albums: Guns In The Sky, Never Tear Us Apart, Devil Inside?
+Kick
+10
+
+Music: Albums: I Think That I Would Die, Violet, Gutless?
+Live through this
+10
+
+Music: Albums: I Wish, Sir Duke?
+Songs in the key of life
+10
+
+Music: Albums: Im Your Man, careless Whisper, freedom?
+Make it big
+10
+
+Music: Albums: Keith Richards' solo debut?
+Talk is cheap
+10
+
+Music: Albums: Kim The Waitress, Goin' Through Your Purse, She's Going Through My Head?
+Freak city soundtrack
+10
+
+Music: Albums: Kinda I Want To, Sin, The Only Time?
+Pretty hate machine
+10
+
+Music: Albums: Livin on A Prayer, You Give Love a Bad Name?
+Slippery when wet
+10
+
+Music: Albums: Lose My Breath, Feed Me With Your Kiss?
+Isnt anything
+10
+
+Music: Albums: Mars, Call Mr. Lee?
+Television
+10
+
+Music: Albums: Miami 2017, Angry Young Man, I've Loved These Days?
+Turnstiles
+10
+
+Music: Albums: Mick Jagger's solo album which has covers of James Brown and Bill Withers?
+Wandering spirit
+10
+
+Music: Albums: New Kid In Town, Life in The Fast Lane, The Sad Cafe?
+Hotel California
+10
+
+Music: Albums: New York new York, What Now My Love, Ive Got the World On A String?
+Duets
+10
+
+Music: Albums: One of the top selling albums of all time, Peter Frampton's live album?
+Frampton comes alive
+10
+
+Music: Albums: Pale Blue Eyes, The Murder Mystery?
+The velvet underground
+10
+
+Music: Albums: Paradise City, Sweet Child O Mine?
+Appetite for destruction
+10
+
+Music: Albums: Pigs, Sheep, Dogs?
+Animals
+10
+
+Music: Albums: Posession, Mary, Circle, Ice Cream?
+Fumbling toward ecstasy
+10
+
+Music: Albums: Romance, Heavenly Bodies, Bop 'Til You Drop?
+One size Fits All
+10
+
+Music: Albums: Sledgehammer, Big Time, Dont Give Up?
+So
+10
+
+Music: Albums: Stayin Alive, How Deep Is Your Love, If I Cant Have You?
+Saturday night fever
+10
+
+Music: Albums: Sub-culture, Sooner Than You Think, Face Up?
+Low life
+10
+
+Music: Albums: Two Out of Three Aint Bad, Paradise By The Dashboard Light?
+Bat out of hell
+10
+
+Music: Albums: Union Of The Snake, The Seventh Stranger, New Moon On Monday?
+Seven and the ragged tiger
+10
+
+Music: Albums: When Doves Cry, I Would Die 4 U?
+Purple rain
+10
+
+Music: Albums: While there are only a few actual songs, Denis Leary makes it all funny?
+No cure for cancer
+10
+
+Music: Albums: Would, Sickman, Rooster?
+Dirt
+10
+
+Music: Alice Cooper (original psycho rocker) played ____ for Bob Dylan before he was famous?
+Keyboards
+10
+
+Music: Alice In Chains: Album: Junkhead, Rooster, Rain When I Die?
+Dirt
+10
+
+Music: All ____Time - Tiffany
+This
+10
+
+Music: All Over The World - Electric Light ____
+Orchestra
+10
+
+Music: All that she wants is another baby?
+All that she wants
+10
+
+Music: Alt Tune: A heart, a heart that hurts is a heart, a heart that worked-Juliana Hatfield?
+Universal heart-beat
+10
+
+Music: Alt Tune: Buying toys & gifts for friends youve been wasting gold on love...-Spookey?
+Ruben
+10
+
+Music: Alt Tune: He walks in the cold sun & the wind All these years will not begin-Soundgarden?
+Room a thousand years Wide
+10
+
+Music: Alt Tune: I love all of you Hurt by the cold So hard an lonely too-Red Hot Chili Peppers?
+My friends
+10
+
+Music: Alt Tune: If you should die before me ask if you can bring a friend-Stone Temple Pilots?
+Still remains
+10
+
+Music: Alt Tune: If youre lonely you get lazy If youre lazy you get lonely-Neds Atomic Dustbin?
+Who goes first
+10
+
+Music: Alt Tune: Is there something you lack when Im flat on my back...-Elastica?
+Stutter
+10
+
+Music: Alt Tune: LA Lakers Fast break makers Kings of the court Shake and bake...-R.H.C.P?
+Magic johnson
+10
+
+Music: Alt Tune: She knows & she knows, she knows, she knows. And she knows...-Smashing Pumpkins?
+Rhinoceros
+10
+
+Music: Alt Tune: Stand up Youve got to manage I wont sympathize Anymore...-Bjork?
+Army of me
+10
+
+Music: Alt Tune: The will outweighs the pain, hes already jumped in...-hHead?
+Moron
+10
+
+Music: Alt Tune: Thinning ice...14 hairdryers...-Bush [my favourite line :)]?
+Swim
+10
+
+Music: Alt Tune: When your chained to the mirror and the razor blade...-oasis?
+Morning glory
+10
+
+Music: Although his early career was snuffed out in the same plane crash that killed Buddy Holly, this east L A kid had a memorable top ten hit about his girlfriend, Donna?
+Richie valens
+10
+
+Music: Although the 'fabulous thunderbirds' sang 'i thank you' it was originally released by what soul duo in 1968?
+Sam and dave
+10
+
+Music: Although the fabulous Thunderbirds sang 'I Thank You' it was originally released by this soul duo in 1968?
+Sam & dave
+10
+
+Music: Alvin & the ____
+Chipmunks
+10
+
+Music: Alvin and the Chipmunks sang about what colour 'People Eater'?
+Purple
+10
+
+Music: Always On My ____- Pet Shop Boys
+Mind
+10
+
+Music: Ambient-Pop English/French group founded by Laetitia Sadier and Tim Gane?
+Stereolab
+10
+
+Music: American composer who wrote the songs for the film 'Holiday Inn'?
+Irving Berlin
+10
+
+Music: Amy's home is located just outside this Tennessee city?
+Nashville
+10
+
+Music: An example of Renaissance secular music, this type of music is designed for mixed chorus and is usually about love?
+Madrigal
+10
+
+Music: An intrigue with future blank diary pages inspired her to write Book of Days?
+Enya
+10
+
+Music: An R&B song which catalogues many dance moves of the day?
+Land of 1000 dances
+10
+
+Music: An underground party, with lots of dance music?
+Rave
+10
+
+Music: Andy Bell was in this group before Erasure?
+Yaz
+10
+
+Music: Andy Warhol created an album cover for what band?
+The Velvet Underground
+10
+
+Music: Angel ____- Jeff Healey Band
+Eyes
+10
+
+Music: Angelia - ____Marx
+Richard
+10
+
+Music: Angry young man who leads Nine Inch Nails?
+Trent reznor
+10
+
+Music: Angus Young takes his band on a highway to ____
+Hell
+10
+
+Music: Animaniacs Tunes: Magellan, in his ballad, is looking for...?
+East indies
+10
+
+Music: Animaniacs Tunes: Planet forgotten by Yakko in the galaxy touring song...?
+Uranus
+10
+
+Music: Animaniacs Tunes: Second place Magellan mistakes for the East Indies...?
+Chile
+10
+
+Music: Animaniacs Tunes: Song Titles: Wakko's America, Yakko's World, and Yakko's...?
+Universe
+10
+
+Music: Animaniacs Tunes: What famous singer does the voice of Rita, the musical cat?
+Bernadette peters
+10
+
+Music: Another Day In Paradise - ____Collins
+Phil
+10
+
+Music: Architect of Bebop who outlived his contemporary C Parker by many decades?
+Dizzy gillespie
+10
+
+Music: Art Of Noise remade this popular theme song by Mancini?
+Peter gunn theme
+10
+
+Music: article of clothing worn by little girl in brian hyland's chart- topper?
+Itsy bitsy teenie weenie yellow polkadot bikini
+10
+
+Music: Artis the Spoonman is the subject of a song by this Seattle band?
+Soundgarden
+10
+
+Music: Artist talking about being a free man in Paris?
+Joni mitchell
+10
+
+Music: Artist: Wise man says/Only fools rush in/But I can't help/Falling in love with you?
+Elvis
+10
+
+Music: Artist/Band: ____ jett
+Joan
+10
+
+Music: Artist/Band: ...And Justice for All (Hammett/Hetfield/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: ...Baby One More Time (Martin)?
+Britney spears
+10
+
+Music: Artist/Band: ...come together with your hands, save me, I'm together with your plan...?
+Soundgarden
+10
+
+Music: Artist/Band: '... Baby One More Time' & 'Sometimes'?
+Britney spears
+10
+
+Music: Artist/Band: '25 or 6 to 4'?
+Chicago
+10
+
+Music: Artist/Band: 'a kiss is just a kiss' in the film 'casablanca'?
+Dooley wilson
+10
+
+Music: Artist/Band: 'all i want to do'?
+Sheryl crow
+10
+
+Music: Artist/Band: 'all right now'?
+The free
+10
+
+Music: Artist/Band: 'an innocent man'?
+Billy joel
+10
+
+Music: Artist/Band: 'another one bites the dust'?
+Queen
+10
+
+Music: Artist/Band: 'band on the run'?
+Paul mccartney
+10
+
+Music: Artist/Band: 'beds are burning'?
+Midnight oil
+10
+
+Music: Artist/Band: 'ben'?
+Michael jackson
+10
+
+Music: Artist/Band: 'born in the u.s.a'?
+Bruce springsteen
+10
+
+Music: Artist/Band: 'bridge over troubled water'?
+Simon and garfunkel
+10
+
+Music: Artist/Band: 'Champagne Supernova' & 'Don't Go Away'?
+Oasis
+10
+
+Music: Artist/Band: 'dreamy eyes' in 1962?
+Johnny tillotson
+10
+
+Music: Artist/Band: 'Fire & Rain'?
+James taylor
+10
+
+Music: Artist/Band: 'foolish games'?
+Jewel
+10
+
+Music: Artist/Band: 'Forever Young' and 'Big in Japan'?
+Alphaville
+10
+
+Music: Artist/Band: 'friends in low places' and 'thunder rolls'?
+Garth brooks
+10
+
+Music: Artist/Band: 'god told abraham kill me your son. abe said man you must be puttin' me on'?
+Bob dylan
+10
+
+Music: Artist/Band: 'have you ever seen the rain'?
+Creedence clearwater revival
+10
+
+Music: Artist/Band: 'I Don't Want To Miss A Thing' & 'Pink'?
+Aerosmith
+10
+
+Music: Artist/Band: 'i will always love you'?
+Whitney houston
+10
+
+Music: Artist/Band: 'I'm a Believer'?
+The Monkees
+10
+
+Music: Artist/Band: 'if a problem comes along, you must whip it ...'?
+Devo
+10
+
+Music: Artist/Band: 'jet airliner'?
+Steve miller
+10
+
+Music: Artist/Band: 'kind of a drag' in 1966?
+Buckinghams
+10
+
+Music: Artist/Band: 'lonely boy'?
+Paul anka
+10
+
+Music: Artist/Band: 'lullabye'?
+Shawn mullins
+10
+
+Music: Artist/Band: 'moon river'?
+Andy williams
+10
+
+Music: Artist/Band: 'mr sandman'?
+Andrews sisters
+10
+
+Music: Artist/Band: 'my prerogative'?
+Bobby brown
+10
+
+Music: Artist/Band: 'Popsicle', 'Hangin' Tough', 'Please Don't Go Girl' & 'Step By Step'?
+New kids on the block
+10
+
+Music: Artist/Band: 'popsicle', 'hangin' tough', please don't go girl' and 'step by step'?
+New kids on the block
+10
+
+Music: Artist/Band: 'respect'?
+Aretha franklin
+10
+
+Music: Artist/Band: 'rockin' down the highway'?
+Grand funk railroad
+10
+
+Music: Artist/Band: 'runaround'?
+Blues traveler
+10
+
+Music: Artist/Band: 'The Sweetest Thing'?
+U2
+10
+
+Music: Artist/Band: 'think' in the original 'blues brothers' film?
+Aretha franklin
+10
+
+Music: Artist/Band: 'tiptoe through the tulips' in 1969?
+Tiny tim
+10
+
+Music: Artist/Band: 'Truly Madly Deeply'?
+Savage garden
+10
+
+Music: Artist/Band: 'Two of Us'?
+Grover Washington with Bill Withers
+10
+
+Music: Artist/Band: 'winonna's big brown beaver'?
+Primus
+10
+
+Music: Artist/Band: 'wooly bully'?
+Sham and the pharaohs
+10
+
+Music: Artist/Band: (Anesthesia) Pulling Teeth?
+Metallica
+10
+
+Music: Artist/Band: (Don't Go Back to) Rockville (Berry/Buck/Mills/Stipe)?
+R.e.m.
+10
+
+Music: Artist/Band: (Everything I Do I Do It For You?
+Bryan adams
+10
+
+Music: Artist/Band: (I Know) I'm Losing You (Grand/Holland/Whitfield)?
+Rod stewart
+10
+
+Music: Artist/Band: (I'm Caught Between) Goodbye and I Love... (Bettis/Carpenter)?
+The carpenters
+10
+
+Music: Artist/Band: (Just Like) Starting Over?
+John lennon
+10
+
+Music: Artist/Band: (Last Night I Had the Strangest Dream (McCurdy)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: (Remember The Days Of The) Old School Yard?
+Cat stevens
+10
+
+Music: Artist/Band: (Remember the Days of the) Old Schoolyard (Stevens)?
+Cat stevens
+10
+
+Music: Artist/Band: (Something Inside) So Strong?
+Labi siffre
+10
+
+Music: Artist/Band: (They Long to Be) Close to You (Bacharach/David)?
+The carpenters
+10
+
+Music: Artist/Band: (Want You) Back in My Life Again (Chater/Christian)?
+The carpenters
+10
+
+Music: Artist/Band: (You Drive Me) Crazy (Elofsson/Krueger/Magnusson/Martin)?
+Britney spears
+10
+
+Music: Artist/Band: 1-2-3 (Estefan/Garcia)?
+Gloria estefan
+10
+
+Music: Artist/Band: 1000 Miles Away - The?
+Heartbeats
+10
+
+Music: Artist/Band: 11-17-70 (17-11-70 in Europe)?
+Elton john
+10
+
+Music: Artist/Band: 16 Candles - The?
+Crests
+10
+
+Music: Artist/Band: 17 Days (Coleman/Fink/Melvion/Nelson)?
+Living colour
+10
+
+Music: Artist/Band: 1979 (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: 1996 ( Manson/Ramirez)?
+Marilyn manson
+10
+
+Music: Artist/Band: 2000 Miles (Hynde)?
+The pretenders
+10
+
+Music: Artist/Band: 3 a.m. (Goff/Stanley/Thomas/Yale)?
+Matchbox 20
+10
+
+Music: Artist/Band: 4th of July (Cornell)?
+Soundgarden
+10
+
+Music: Artist/Band: 59th Street Bridge Song (Feelin' Groovy) (Simon)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: 665 (Cornell/Yamamoto)?
+Soundgarden
+10
+
+Music: Artist/Band: 7 Chinese Brothers (Berry/Buck/Mills/Stipe)?
+R.e.m.
+10
+
+Music: Artist/Band: 7 O'Clock News/Silent Night (Simon)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: 9-9 (Berry/Buck/Mills/Stipe)?
+R.e.m.
+10
+
+Music: Artist/Band: 96 Tears ? And - The?
+Mysterians
+10
+
+Music: Artist/Band: A Day In The Life - The?
+Beatles
+10
+
+Music: Artist/Band: A Day In The Life?
+The beatles
+10
+
+Music: Artist/Band: a duet with Elton John that produced the hit 'Don't Let The Sun Go Down On Me' in 1991?
+George Michael
+10
+
+Music: Artist/Band: a duet with Peter Cetera on the song 'Next Time I Fall' in 1986?
+Amy Grant
+10
+
+Music: Artist/Band: A Hard Day's Night - The?
+Beatles
+10
+
+Music: Artist/Band: A Little Bit More?
+Dr hook
+10
+
+Music: Artist/Band: A singer, she lost her Miss America crown because she posed in Penthouse?
+Vanessa williams
+10
+
+Music: Artist/Band: a song inspired by 'alice in wonderland'?
+Jefferson airplane
+10
+
+Music: Artist/Band: A Taste Of Honey?
+The beatles
+10
+
+Music: Artist/Band: about 'the boogie boogie bugle boy of company b'?
+Andrews sisters
+10
+
+Music: Artist/Band: about 'the bugle boy of company b'?
+Andrews sisters
+10
+
+Music: Artist/Band: about a 'white wedding'?
+Billy idol
+10
+
+Music: Artist/Band: About a Girl (Cobain)?
+Nirvana
+10
+
+Music: Artist/Band: about a pretty flamingo in 1966?
+Manfred mann
+10
+
+Music: Artist/Band: about cars and girls in 1988?
+Prefab sprout
+10
+
+Music: Artist/Band: about desmond & molly jones?
+The beatles
+10
+
+Music: Artist/Band: about desmond and molly jones?
+Beatles
+10
+
+Music: Artist/Band: about the 'Werewolves of London'?
+Warren zevon
+10
+
+Music: Artist/Band: about the fall of man in 'the tall oak tree'?
+Dorsey burnette
+10
+
+Music: Artist/Band: Absolute Beginners?
+David bowie
+10
+
+Music: Artist/Band: Abuse Me (Johns)?
+Silverchair
+10
+
+Music: Artist/Band: Acquiesce (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: Across The Universe?
+The beatles
+10
+
+Music: Artist/Band: Act Naturally?
+The beatles
+10
+
+Music: Artist/Band: Adhesive (DeLeo/Weiland)?
+Stone temple pilots
+10
+
+Music: Artist/Band: Aero Zeppelin (Cobain)?
+Nirvana
+10
+
+Music: Artist/Band: Aeroplane Flies High (Turns Left, Looks... (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Affirmation?
+Savage garden
+10
+
+Music: Artist/Band: After All?
+Cher & peter cetera
+10
+
+Music: Artist/Band: After Forever (Butler/Iommi/Osbourne/Ward)?
+Black sabbath
+10
+
+Music: Artist/Band: After Jane's Addiction broke up the lead singer formed this band?
+Porno for pyros
+10
+
+Music: Artist/Band: After The Love Has Gone?
+Earth, wind & fire
+10
+
+Music: Artist/Band: Against The Wind?
+Bob seger & the silver bullet band
+10
+
+Music: Artist/Band: Age of Innocence (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Ain't It Fun (Chrome/Laughner)?
+Guns n' roses
+10
+
+Music: Artist/Band: Ain't No Fun (Waiting Round to Be a... (Scott/Young/Young)?
+Ac/dc
+10
+
+Music: Artist/Band: Ain't Too Proud To Beg - The?
+Temptations
+10
+
+Music: Artist/Band: Aja?
+Steely dan
+10
+
+Music: Artist/Band: Al Despertar (Iglesias/Morales)?
+Enrique iglesias
+10
+
+Music: Artist/Band: Albatross (Green)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Album entitled Talk on corners?
+The Corrs
+10
+
+Music: Artist/Band: Albums: Black Sunday?
+Cypress hill
+10
+
+Music: Artist/Band: Albums: Blue Sky Mining?
+Midnight oil
+10
+
+Music: Artist/Band: Albums: Check Your Head?
+Beastie boys
+10
+
+Music: Artist/Band: Albums: Disintegration?
+The cure
+10
+
+Music: Artist/Band: Albums: Kerosene Hat?
+Cracker
+10
+
+Music: Artist/Band: Albums: Kick?
+Inxs
+10
+
+Music: Artist/Band: Albums: Mellow Gold?
+Beck
+10
+
+Music: Artist/Band: Albums: Rastaman Vibration?
+Bob marley
+10
+
+Music: Artist/Band: Albums: The Rhythm of the Saints?
+Paul simon
+10
+
+Music: Artist/Band: Albums: War?
+U2
+10
+
+Music: Artist/Band: Albums: What's Goin' On?
+Marvin gaye
+10
+
+Music: Artist/Band: Albums: Wildflowers?
+Tom petty
+10
+
+Music: Artist/Band: Ali Campbell sings lead with which group?
+Ub40
+10
+
+Music: Artist/Band: Alien Nation (Meine/Schenker)?
+Scorpions
+10
+
+Music: Artist/Band: Alive (Gossard/Vedder)?
+Pearl jam
+10
+
+Music: Artist/Band: All Apologies (Cobain)?
+Nirvana
+10
+
+Music: Artist/Band: All Around (Farriss/Hutchence)?
+Inxs
+10
+
+Music: Artist/Band: All Around the World (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: All by Myself (Carmen/Rachmaninov)?
+Celine dion
+10
+
+Music: Artist/Band: All Down the Line (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: All I Ask (Finn/Finn)?
+Crowded house
+10
+
+Music: Artist/Band: All I Ever Need Is You (Holiday/Reeves)?
+Cher
+10
+
+Music: Artist/Band: All I Ever Wanted (Kravitz)?
+Lenny kravitz
+10
+
+Music: Artist/Band: All I Ever Wanted (Ligertwood/Santana/Solberg)?
+Santana
+10
+
+Music: Artist/Band: All I Have To Do Is Dream - The?
+Everly Brothers
+10
+
+Music: Artist/Band: All I Have To Do Is Dream?
+Bobby gentry & glen campbell
+10
+
+Music: Artist/Band: All I Have to Give (Full Force)?
+Backstreet boys
+10
+
+Music: Artist/Band: All I Really Want to Do (Dylan)?
+Cher
+10
+
+Music: Artist/Band: All I Want Is You This Christmas (Briley/Calitri)?
+'n sync
+10
+
+Music: Artist/Band: All I've Got To Do?
+The beatles
+10
+
+Music: Artist/Band: All in the Name of Rock & Roll (Stewart)?
+Rod stewart
+10
+
+Music: Artist/Band: All My Loving - The?
+Beatles
+10
+
+Music: Artist/Band: All My Loving?
+The beatles
+10
+
+Music: Artist/Band: All night long at the 1984 Los Angeles Olympics closing ceremony?
+Lionel richie
+10
+
+Music: Artist/Band: All Round the World (Reprise) (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: All Saints [#] (Bowie)?
+David bowie
+10
+
+Music: Artist/Band: All She Wants Is (Lebon/Rhodes/Taylor)?
+Duran duran
+10
+
+Music: Artist/Band: All Sold Out (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: All the Voices (Farriss/Hutchence)?
+Inxs
+10
+
+Music: Artist/Band: All the Way (Cahn/VanHeusen)?
+Celine dion
+10
+
+Music: Artist/Band: All Things Must Pass?
+George harrison
+10
+
+Music: Artist/Band: All Together Now?
+The beatles
+10
+
+Music: Artist/Band: All You Get from Love Is a Long Song (Eaton)?
+The carpenters
+10
+
+Music: Artist/Band: All Your Lies (Cornell/Thayil/Yamamoto)?
+Soundgarden
+10
+
+Music: Artist/Band: Alma Mater (Smith)?
+Alice cooper
+10
+
+Music: Artist/Band: Already Gone (Stradlund/Tempchin)?
+Eagles
+10
+
+Music: Artist/Band: Alright (Harris/Jackson/Lewis)?
+Janet jackson
+10
+
+Music: Artist/Band: Alright for an Hour (Davis/Stewart)?
+Rod stewart
+10
+
+Music: Artist/Band: Although his career was snuffed out in the same plane crash that killed buddy 'this ain't no party, this ain't no disco ...' were lyrics from which group's 1979 release 'life during wartime'?
+Pigskin 
+10
+
+Music: Artist/Band: Although his career was snuffed out in the same plane crash that killed buddy holly, which east l.a kid had a memorable top ten hit about his girlfriend donna?
+Richie valens
+10
+
+Music: Artist/Band: Although the Sun Is Shining (Kirwan)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Although they recorded more that should have been u.s hits, 'tell her no', 'time of the season' and 'she's not there were the only ones to make it to the u.s top ten for which band?
+Zombies
+10
+
+Music: Artist/Band: Always Crashing in the Same Car (Bowie)?
+David bowie
+10
+
+Music: Artist/Band: Always Have Always Will?
+Ace of base
+10
+
+Music: Artist/Band: Always on the Run (Kravitz/Slash)?
+Lenny kravitz
+10
+
+Music: Artist/Band: Am I Blue (Akst/Clark)?
+Cher
+10
+
+Music: Artist/Band: Am I Inside (Cantrell/Staley)?
+Alice in chains
+10
+
+Music: Artist/Band: Amar Haciendo el Amor (Benito/Mann/Rich Denise)?
+Celine dion
+10
+
+Music: Artist/Band: America (Simon)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: Among the Living (Anthrax)?
+Anthrax
+10
+
+Music: Artist/Band: Amor (Barlow/Quintana/Rosa)?
+Ricky martin
+10
+
+Music: Artist/Band: Amy Ray, Emily Saliers?
+Indigo girls
+10
+
+Music: Artist/Band: An Innocent Man?
+Billy joel
+10
+
+Music: Artist/Band: An Old Raincoat Wont Ever Let You Down (Stewart)?
+Rod stewart
+10
+
+Music: Artist/Band: And do you feel scared/I do/But I won't stop and falter?
+Howard jones
+10
+
+Music: Artist/Band: And I Love You So?
+Don mclean
+10
+
+Music: Artist/Band: And It Stoned Me (Morrison)?
+Van morrison
+10
+
+Music: Artist/Band: And So I Know (DeLeo/Weiland)?
+Stone temple pilots
+10
+
+Music: Artist/Band: And you run and you run/To catch up with the sun/but it's sinking?
+Pink floyd
+10
+
+Music: Artist/Band: And Your Bird Can Sing?
+The beatles
+10
+
+Music: Artist/Band: Angel (Hendrix)?
+Rod stewart
+10
+
+Music: Artist/Band: Angel (Nicks)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Angel With the Scabbed Wings (Gacy/Manson/Ramirez)?
+Marilyn manson
+10
+
+Music: Artist/Band: Angels (Chambers/Williams)?
+Robbie williams
+10
+
+Music: Artist/Band: Angry (Thomas)?
+Matchbox 20
+10
+
+Music: Artist/Band: Angry Chair (Staley)?
+Alice in chains
+10
+
+Music: Artist/Band: Angus Young, Bon Scott?
+Ac/dc
+10
+
+Music: Artist/Band: Animal Magic (Gabriel)?
+Peter gabriel
+10
+
+Music: Artist/Band: Animal?
+Pearl jam
+10
+
+Music: Artist/Band: Anji (Graham)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: Anna (Go To Him)?
+The beatles
+10
+
+Music: Artist/Band: Another Girl?
+The beatles
+10
+
+Music: Artist/Band: Another Sad Love Song?
+Toni braxton
+10
+
+Music: Artist/Band: Another Saturday Night (Stevens)?
+Cat stevens
+10
+
+Music: Artist/Band: Another Time, Another Place (Bono/Clayton/Edge/Mullen)?
+U2
+10
+
+Music: Artist/Band: Answer to Our Life (Carter/Dorough/Littrell/McLean/Richardson)?
+Backstreet boys
+10
+
+Music: Artist/Band: Antichrist Superstar (Gacy/ Manson/Ramirez)?
+Marilyn manson
+10
+
+Music: Artist/Band: Antisocial (Bonvoisin/Krief)?
+Anthrax
+10
+
+Music: Artist/Band: Any Time At All?
+The beatles
+10
+
+Music: Artist/Band: Anything (Elizondo/Harris/Jackson/Lewis)?
+Janet jackson
+10
+
+Music: Artist/Band: Anything for You (Estefan)?
+Gloria estefan
+10
+
+Music: Artist/Band: Anywhere for You (Baker/Perry)?
+Backstreet boys
+10
+
+Music: Artist/Band: Apache Rose Peacock (Flea/Frusciante/Kiedis/Smith)?
+Red hot chili peppers
+10
+
+Music: Artist/Band: Applebite (Cameron/Cornell)?
+Soundgarden
+10
+
+Music: Artist/Band: April Come She Will (Simon)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: april love?
+Pat boone
+10
+
+Music: Artist/Band: Aqua Marine?
+Santana
+10
+
+Music: Artist/Band: Aquarius - The?
+Fifth Dimension
+10
+
+Music: Artist/Band: Are You Gonna Go My Way (Kravitz/Ross)?
+Lenny kravitz
+10
+
+Music: Artist/Band: Are You in It for Love (Barry/Child)?
+Ricky martin
+10
+
+Music: Artist/Band: Are You Lonesome Tonight?
+Elvis Presley
+10
+
+Music: Artist/Band: Argue (Thomas)?
+Matchbox 20
+10
+
+Music: Artist/Band: Army Ants (DeLeo/Weiland)?
+Stone temple pilots
+10
+
+Music: Artist/Band: Around the Bend (Vedder)?
+Pearl jam
+10
+
+Music: Artist/Band: Around the World (Flea/Frusciante/Kiedis/Kiedis/Smith)?
+Red hot chili peppers
+10
+
+Music: Artist/Band: Art Decade (Bowie)?
+David bowie
+10
+
+Music: Artist/Band: Art School Girl (DeLeo/Weiland)?
+Stone temple pilots
+10
+
+Music: Artist/Band: arthur's theme (best that you can do)?
+Christopher cross
+10
+
+Music: Artist/Band: As Long as You Love Me (Martin)?
+Backstreet boys
+10
+
+Music: Artist/Band: As Sure as I Am (Finn)?
+Crowded house
+10
+
+Music: Artist/Band: Ashes in the Fall (Morello/Rocha/Wilk)?
+Rage against the machine
+10
+
+Music: Artist/Band: Ashes to Ashes (Bordin/Bottum/Gould/Hudson/Patton)?
+Faith no more
+10
+
+Music: Artist/Band: Ashes to Ashes (Bowie)?
+David bowie
+10
+
+Music: Artist/Band: Ashes To Ashes?
+David bowie
+10
+
+Music: Artist/Band: Asi Es la Vida (Escolar/Flores)?
+Ricky martin
+10
+
+Music: Artist/Band: Ask Me Why?
+The beatles
+10
+
+Music: Artist/Band: At the Zoo (Simon)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: Atlanta (DeLeo/Weiland)?
+Stone temple pilots
+10
+
+Music: Artist/Band: Attitude (Danzig)?
+Guns n' roses
+10
+
+Music: Artist/Band: Attitude (Hetfield/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Ausl?nder (Glover/Reid)?
+Living colour
+10
+
+Music: Artist/Band: Avalon was a No1 hit album for which group?
+Roxy music
+10
+
+Music: Artist/Band: Avalon?
+Bryan ferry
+10
+
+Music: Artist/Band: Ave Maria (Public Domain)?
+The carpenters
+10
+
+Music: Artist/Band: Awakening (Cooper/Ezrin/Wagner)?
+Alice cooper
+10
+
+Music: Artist/Band: Aye Davanita (Pearl)?
+Pearl jam
+10
+
+Music: Artist/Band: Ayudame (Calderon)?
+Ricky martin
+10
+
+Music: Artist/Band: Baby Blue - The?
+Echoes
+10
+
+Music: Artist/Band: Baby Don't Cry (Farriss)?
+Inxs
+10
+
+Music: Artist/Band: Baby Driver (Simon)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: Baby I'm A Want You?
+Bread
+10
+
+Music: Artist/Band: Baby Love - The?
+Supremes
+10
+
+Music: Artist/Band: Baby Oh Baby - The?
+Shells
+10
+
+Music: Artist/Band: Baby One More Time?
+Britney spears
+10
+
+Music: Artist/Band: Baby Please Don't Go (Williams)?
+Van morrison
+10
+
+Music: Artist/Band: Baby Please Dont Go?
+Van morrison
+10
+
+Music: Artist/Band: Baby You're A Rich Man?
+The beatles
+10
+
+Music: Artist/Band: Baby, I Love Your Way?
+Peter frampton
+10
+
+Music: Artist/Band: Baby, It's You?
+The beatles
+10
+
+Music: Artist/Band: Baby, Now That I Found You?
+The foundations
+10
+
+Music: Artist/Band: Baby's Breath (Hydne/Kelly/Steinberg)?
+The pretenders
+10
+
+Music: Artist/Band: Baby's In Black?
+The beatles
+10
+
+Music: Artist/Band: Bacharach/David Medley (Bacharach/David) -?
+The carpenters
+10
+
+Music: Artist/Band: Back for Good [live] (Barlow)?
+Robbie williams
+10
+
+Music: Artist/Band: Back in Black (Johnson/Young/Young)?
+Ac/dc
+10
+
+Music: Artist/Band: Back In The U.S.S.R?
+The beatles
+10
+
+Music: Artist/Band: Back off Bitch (Huge/Rose)?
+Guns n' roses
+10
+
+Music: Artist/Band: Back on Earth [#] (Rhodes/Supa)?
+Ozzy osbourne
+10
+
+Music: Artist/Band: Back on the Borderline (Garrett/Hirst/James)?
+Midnight oil
+10
+
+Music: Artist/Band: Back on the Chain Gang (Hynde)?
+The pretenders
+10
+
+Music: Artist/Band: Back Street Kids (Butler/Iommi/Osbourne/Ward)?
+Black sabbath
+10
+
+Music: Artist/Band: Back to Your Heart (Baker/Blume/Richardson)?
+Backstreet boys
+10
+
+Music: Artist/Band: Back-up group for heavy D?
+Boyz
+10
+
+Music: Artist/Band: Bad Apples (McKagan/Rose/Slash/Stradlin')?
+Guns n' roses
+10
+
+Music: Artist/Band: Bad Bad?
+Leroy Brown Jim Croce
+10
+
+Music: Artist/Band: Bad Boy Boogie (Scott/Young/Young)?
+Ac/dc
+10
+
+Music: Artist/Band: Bad Boy?
+The beatles
+10
+
+Music: Artist/Band: Bad Boys Running Wild (Meine/Rarebell/Schenker)?
+Scorpions
+10
+
+Music: Artist/Band: Bad Case Of Loving You (Doctor Doctor)?
+Robert palmer
+10
+
+Music: Artist/Band: Bad habit, Genocide, Killboy Powerhead?
+Offspring
+10
+
+Music: Artist/Band: Bad Moon Rising (Fogerty)?
+Creedence clearwater revival
+10
+
+Music: Artist/Band: Bad Obsession (Arkeen/Stradlin')?
+Guns n' roses
+10
+
+Music: Artist/Band: Bad Seed (Hammett/Hetfield/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Bad, Bad Leroy Brown (Croce)?
+Jim croce
+10
+
+Music: Artist/Band: Bag it up?
+Melanie c
+10
+
+Music: Artist/Band: Bailamos (Barry/Taylor)?
+Enrique iglesias
+10
+
+Music: Artist/Band: Bailamos (Paul/Taylor)?
+Enrique iglesias
+10
+
+Music: Artist/Band: Bailamos?
+Enrique iglesias
+10
+
+Music: Artist/Band: Bakerman [instrumental] (Hirst)?
+Midnight oil
+10
+
+Music: Artist/Band: Ball of Confusion (Strong/Whitfield)?
+Anthrax
+10
+
+Music: Artist/Band: Bang Bang (My Baby Shot Me Down) (Bono)?
+Cher
+10
+
+Music: Artist/Band: Banks Of The Ohio?
+Olivia newton john
+10
+
+Music: Artist/Band: Bare Trees (Kirwan)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Bark at the Moon (Osbourne)?
+Ozzy osbourne
+10
+
+Music: Artist/Band: Barney Greenway, Shane Embury, Mitch Harris, etc...?
+Napalm death
+10
+
+Music: Artist/Band: Battery (Hetfield/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Be (Kravitz)?
+Lenny kravitz
+10
+
+Music: Artist/Band: Be Bop A Lula?
+Gene Vincent
+10
+
+Music: Artist/Band: Be Here Now (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: Be My Baby - The?
+Ronettes
+10
+
+Music: Artist/Band: Be My Wife (Bowie)?
+David bowie
+10
+
+Music: Artist/Band: Be the Man (Foster/Miles)?
+Celine dion
+10
+
+Music: Artist/Band: Beast of Burden (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: Beating Around the Bush (Scott/Young/Young)?
+Ac/dc
+10
+
+Music: Artist/Band: Beautiful Boy (Darling Boy)?
+John lennon
+10
+
+Music: Artist/Band: Beautiful Child (Nicks)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Beautiful Girl (Farriss)?
+Inxs
+10
+
+Music: Artist/Band: Beautiful Noise?
+Neil diamond
+10
+
+Music: Artist/Band: Beautiful People ( Manson/Ramirez)?
+Marilyn manson
+10
+
+Music: Artist/Band: Beautiful World (Casale/Mothersbaugh)?
+Rage against the machine
+10
+
+Music: Artist/Band: Beauty and the Beast (Ashman/Menken)?
+Celine dion
+10
+
+Music: Artist/Band: Beauty and the Beast (Bowie)?
+David bowie
+10
+
+Music: Artist/Band: Because - The?
+Dave Clark 5
+10
+
+Music: Artist/Band: Because We Are in Love (The Wedding Song) (Bettis/Carpenter)?
+The carpenters
+10
+
+Music: Artist/Band: Because You Loved Me (Warren)?
+Celine dion
+10
+
+Music: Artist/Band: Because You're Young (Bowie)?
+David bowie
+10
+
+Music: Artist/Band: Because?
+The beatles
+10
+
+Music: Artist/Band: Bed of Lies (Serletic/Thomas)?
+Matchbox 20
+10
+
+Music: Artist/Band: Bed of Nails (Child/Cooper/Warren)?
+Alice cooper
+10
+
+Music: Artist/Band: Beechwood (Gaye/Gordy/Stevenson)?
+The carpenters
+10
+
+Music: Artist/Band: Beeswax (Cobain)?
+Nirvana
+10
+
+Music: Artist/Band: Before the Beginning (Green)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Before They Make Me Run (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: Before You Accuse Me (McDaniels)?
+Creedence clearwater revival
+10
+
+Music: Artist/Band: Behind the Wall of Sleep [#] (Butler/Iommi/Osbourne/Ward)?
+Ozzy osbourne
+10
+
+Music: Artist/Band: Being For The Benefit Of Mr. Kite?
+The beatles
+10
+
+Music: Artist/Band: Being With You in 1981?
+Smokey robinson
+10
+
+Music: Artist/Band: Believe (Hirsch/Kravitz)?
+Lenny kravitz
+10
+
+Music: Artist/Band: Believe (Iha)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Believe in Love (Meine/Schenker)?
+Scorpions
+10
+
+Music: Artist/Band: Believer (Daisley/Osbourne/Rhoads)?
+Ozzy osbourne
+10
+
+Music: Artist/Band: Bella (Crew/Santana/Thompson)?
+Santana
+10
+
+Music: Artist/Band: Bells (Iha)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Bells and Horns in the Back of Beyond (Midnight Oil)?
+Midnight oil
+10
+
+Music: Artist/Band: Benedictus (Garfunkel/Simon/Traditional)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: Bent (Thomas)?
+Matchbox 20
+10
+
+Music: Artist/Band: Bernard Sumner ,Johnny Marr?
+Electronic
+10
+
+Music: Artist/Band: Best of Both Worlds (Hirst/Moginie)?
+Midnight oil
+10
+
+Music: Artist/Band: Best of My Love (Frey/Henley/Souther)?
+Eagles
+10
+
+Music: Artist/Band: Betcha Say That (Dermer/Galdo/Vigil)?
+Gloria estefan
+10
+
+Music: Artist/Band: Better Be Home Soon (Finn)?
+Crowded house
+10
+
+Music: Artist/Band: Better Man (Chambers/Williams)?
+Robbie williams
+10
+
+Music: Artist/Band: Better Man (Vedder)?
+Pearl jam
+10
+
+Music: Artist/Band: Better Than You (Hetfield/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Better the Devil You Know (Aitken/Stock/Stock)?
+Kylie minogue
+10
+
+Music: Artist/Band: Beyond the Wheel (Cornell)?
+Soundgarden
+10
+
+Music: Artist/Band: big bad john?
+Jimmy dean
+10
+
+Music: Artist/Band: Big Balls (Scott/Young/Young)?
+Ac/dc
+10
+
+Music: Artist/Band: Big Bang Baby (DeLeo/Weiland)?
+Stone temple pilots
+10
+
+Music: Artist/Band: Big Bayou (Gilbeau)?
+Rod stewart
+10
+
+Music: Artist/Band: Big Boat (Boyd)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Big Bright Green Pleasure Machine (Simon)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: Big City Nights (Meine/Schenker)?
+Scorpions
+10
+
+Music: Artist/Band: Big Empty (DeLeo/Weiland)?
+Stone temple pilots
+10
+
+Music: Artist/Band: Big Girls Don't Cry - The?
+FourSeasons
+10
+
+Music: Artist/Band: Big In Japan?
+Alphaville
+10
+
+Music: Artist/Band: Big Long Now (Cobain)?
+Nirvana
+10
+
+Music: Artist/Band: Biker (Hynde)?
+The pretenders
+10
+
+Music: Artist/Band: Billion Dollar Babies (Bruce/Cooper/Reggie)?
+Alice cooper
+10
+
+Music: Artist/Band: Billy, Don't Be A Hero?
+Bo donaldson and the Heywoods
+10
+
+Music: Artist/Band: Birthday?
+The beatles
+10
+
+Music: Artist/Band: Bitch (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: Biting Bullets (Hutchence/Pengilly)?
+Inxs
+10
+
+Music: Artist/Band: Bitter Creek (Leadon)?
+Eagles
+10
+
+Music: Artist/Band: Black (Gossard/Vedder)?
+Pearl jam
+10
+
+Music: Artist/Band: Black & White People (Thomas)?
+Matchbox 20
+10
+
+Music: Artist/Band: Black Cat (Jackson)?
+Janet jackson
+10
+
+Music: Artist/Band: Black Girl (Kravitz)?
+Lenny kravitz
+10
+
+Music: Artist/Band: Black Hole Sun - Spoonman - Superunknown?
+Soundgarden
+10
+
+Music: Artist/Band: Black Hole Sun (Cornell)?
+Soundgarden
+10
+
+Music: Artist/Band: Black Leather (Jones)?
+Guns n' roses
+10
+
+Music: Artist/Band: Black Magic Woman/Gypsy Queen (Green/Szabo)?
+Santana
+10
+
+Music: Artist/Band: Black Majic Woman (Green)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Black Sabbath (Butler/Iommi/Osbourne/Ward)?
+Black sabbath
+10
+
+Music: Artist/Band: Black Sabbath [#] (Butler/Iommi/Osbourne/Ward)?
+Ozzy osbourne
+10
+
+Music: Artist/Band: Black Widow (Cooper/Ezrin/Wagner)?
+Alice cooper
+10
+
+Music: Artist/Band: Blackbird?
+The beatles
+10
+
+Music: Artist/Band: Blackened (Hetfield/Newsted/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Blackout (Bowie)?
+David bowie
+10
+
+Music: Artist/Band: Blackout (Kittelsen/Meine/Rarebell/Schenker)?
+Scorpions
+10
+
+Music: Artist/Band: Blank (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Bleed the Freak (Cantrell)?
+Alice in chains
+10
+
+Music: Artist/Band: Bleed Together (Cornell)?
+Soundgarden
+10
+
+Music: Artist/Band: Bleeding Me (Hammett/Hetfield/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Bleeker Street (Simon)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: Bless the Beasts and Child (Botkin/Devorzon)?
+The carpenters
+10
+
+Music: Artist/Band: Blessed (Simon)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: Blood Sugar Sex Magik (Flea/Frusciante/Kiedis/Smith)?
+Red hot chili peppers
+10
+
+Music: Artist/Band: Blood?
+Pearl jam
+10
+
+Music: Artist/Band: Blow up the Outside World (Cornell)?
+Soundgarden
+10
+
+Music: Artist/Band: Blue Jay Way?
+The beatles
+10
+
+Music: Artist/Band: Blue Moon - The?
+Marcels
+10
+
+Music: Artist/Band: Blue Skies Bring Tears (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Blue Suede Shoes?
+Elvis Presley
+10
+
+Music: Artist/Band: Blue Turk (Bruce/Cooper)?
+Alice cooper
+10
+
+Music: Artist/Band: Blue?
+Joni mitchell
+10
+
+Music: Artist/Band: Blues for Sister Someone (Kravitz)?
+Lenny kravitz
+10
+
+Music: Artist/Band: Bob Weir, Jerry Garcia, etc...?
+Grateful dead
+10
+
+Music: Artist/Band: Bobby's Girl?
+Marcie Blain
+10
+
+Music: Artist/Band: Bomba (Escolar/Porter/Rosa)?
+Ricky martin
+10
+
+Music: Artist/Band: Bombon de Azucar (Engel/Kilpatrick/Laureano/Rolon)?
+Ricky martin
+10
+
+Music: Artist/Band: bone thugs 'n ____
+Harmony
+10
+
+Music: Artist/Band: Book Of Love - The?
+Monotones
+10
+
+Music: Artist/Band: Bookends Theme (Simon)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: Bookends Theme [instrumental] (Simon)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: Boom boom boom boom name the group?
+Vengaboys
+10
+
+Music: Artist/Band: Boot Camp (Cornell)?
+Soundgarden
+10
+
+Music: Artist/Band: Boot Scoot Boogie?
+Brooks and dunn
+10
+
+Music: Artist/Band: Bootleg (Fogerty)?
+Creedence clearwater revival
+10
+
+Music: Artist/Band: Born Again ( Manson)?
+Marilyn manson
+10
+
+Music: Artist/Band: Born as Ghosts (Morello/Rocha/Wilk)?
+Rage against the machine
+10
+
+Music: Artist/Band: Born Georgios Panayiotou in England in 1963, by what name is this singer better known?
+George michael
+10
+
+Music: Artist/Band: Born in the USA?
+Bruce springsteen
+10
+
+Music: Artist/Band: Born of a Broken Man (Morello/Rocha/Wilk)?
+Rage against the machine
+10
+
+Music: Artist/Band: Born on the Bayou (Fogerty)?
+Creedence clearwater revival
+10
+
+Music: Artist/Band: Born to Make You Happy (Carlsson/Lundin)?
+Britney spears
+10
+
+Music: Artist/Band: Boxer (Simon)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: Boy (Iha)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Boy George went as Lieutenant Lush when he sang with this group?
+Bow wow wow
+10
+
+Music: Artist/Band: Boys?
+The beatles
+10
+
+Music: Artist/Band: Brain Salad Surgery (U.S. title)?
+Emerson lake and palmer
+10
+
+Music: Artist/Band: Brandy?
+Looking Glass
+10
+
+Music: Artist/Band: Breakerfall (Vedder)?
+Pearl jam
+10
+
+Music: Artist/Band: Breaking Glass (Bowie)?
+David bowie
+10
+
+Music: Artist/Band: Breaking the Girl (Flea/Frusciante/Kiedis/Smith)?
+Red hot chili peppers
+10
+
+Music: Artist/Band: Breathe (Ball/Minogue/Vauk)?
+Kylie minogue
+10
+
+Music: Artist/Band: Breathless?
+The Corrs
+10
+
+Music: Artist/Band: Bridge over Troubled Water (Simon)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: Bright Side of the Road (Morrison)?
+Van morrison
+10
+
+Music: Artist/Band: Bright Side Of The Road?
+Van morrison
+10
+
+Music: Artist/Band: Bring It On Down (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: Bring It on Home to Me/You Send Me (Cooke)?
+Rod stewart
+10
+
+Music: Artist/Band: Bring the Noise (Anthrax/Chuck D./Shocklee)?
+Anthrax
+10
+
+Music: Artist/Band: Bring the Noise (Anthrax/Ridenhour/Sadler/Shocklee)?
+Anthrax
+10
+
+Music: Artist/Band: Bringin' da Noise (Chasez/Renn)?
+'n sync
+10
+
+Music: Artist/Band: Bristol Stomp - The?
+Dovells
+10
+
+Music: Artist/Band: Broken Hearts (Reid)?
+Living colour
+10
+
+Music: Artist/Band: Brother (Cantrell)?
+Alice in chains
+10
+
+Music: Artist/Band: Brother Louie?
+Modern talking
+10
+
+Music: Artist/Band: Brothers in Arms (Knopfler)?
+Dire straits
+10
+
+Music: Artist/Band: Brothers In Arms?
+Dire straits
+10
+
+Music: Artist/Band: Brown Eyed Girl (Morrison)?
+Van morrison
+10
+
+Music: Artist/Band: Brown Eyes (McVie)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Brown Sugar - The?
+Rolling Stones
+10
+
+Music: Artist/Band: Brown Sugar (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: Bruce, Baker, Clapton?
+Cream
+10
+
+Music: Artist/Band: buddy holly and the ____
+Crickets
+10
+
+Music: Artist/Band: Bugs?
+Pearl jam
+10
+
+Music: Artist/Band: Buick MacKane (Big Dumb Sex) [medley] (Bolan/Buick/Cornell/Wizard)?
+Guns n' roses
+10
+
+Music: Artist/Band: Build Me Up Buttercup - The?
+Foundations
+10
+
+Music: Artist/Band: Bullet the Blue Sky (Clayton/Evans/Hewson/Mullen)?
+U2
+10
+
+Music: Artist/Band: Bullet With Butterfly Wings (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Burden in My Hand (Cornell)?
+Soundgarden
+10
+
+Music: Artist/Band: Burn (Thomas)?
+Matchbox 20
+10
+
+Music: Artist/Band: Burn for You (Farriss/Hutchence)?
+Inxs
+10
+
+Music: Artist/Band: Burning Flag ( Manson)?
+Marilyn manson
+10
+
+Music: Artist/Band: Burning of the Midnight Lamp (Hendrix)?
+Living colour
+10
+
+Music: Artist/Band: Bury Me (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Bus Stop - The?
+Hollies
+10
+
+Music: Artist/Band: Bushfire (Garrett/Moginie)?
+Midnight oil
+10
+
+Music: Artist/Band: Busted (Thomas)?
+Matchbox 20
+10
+
+Music: Artist/Band: Butterfly (Kravitz)?
+Lenny kravitz
+10
+
+Music: Artist/Band: By All Means Necessary (Chambers/Williams)?
+Robbie williams
+10
+
+Music: Artist/Band: By Baby (Hynde)?
+The pretenders
+10
+
+Music: Artist/Band: Bye Bye Bye (Carlsson/Jake/Lundin)?
+'n sync
+10
+
+Music: Artist/Band: Bye Bye Love - The?
+Everly Brothers
+10
+
+Music: Artist/Band: Bye Bye Love (Bryant/Bryant)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: California Dreaming - The?
+Mamas & Papas
+10
+
+Music: Artist/Band: California Girls - The?
+Beach Boys
+10
+
+Music: Artist/Band: Californication (Flea/Frusciante/Kiedis/Smith)?
+Red hot chili peppers
+10
+
+Music: Artist/Band: Call (Martin/Rami)?
+Backstreet boys
+10
+
+Music: Artist/Band: Call of Kyulu (Burton/Hetfield/Mustaine/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Call of the Ktulu (Burton/Hetfield/Mustaine/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Call the Man (Hill/Sinfield)?
+Celine dion
+10
+
+Music: Artist/Band: Calling All Nations (Farriss/Hutchence)?
+Inxs
+10
+
+Music: Artist/Band: Calling Elvis (Knopfler)?
+Dire straits
+10
+
+Music: Artist/Band: Calling Occupants of Interplanet Craft (Klaatu)?
+The carpenters
+10
+
+Music: Artist/Band: Calm Like a Bomb (Morello/Rocha/Wilk)?
+Rage against the machine
+10
+
+Music: Artist/Band: Cambia la Piel (Cirera)?
+Ricky martin
+10
+
+Music: Artist/Band: Camera (Berry/Buck/Mills/Stipe)?
+R.e.m.
+10
+
+Music: Artist/Band: Can I Sit Next to You Girl (Young/Young)?
+Ac/dc
+10
+
+Music: Artist/Band: Can't Carry On (Finn)?
+Crowded house
+10
+
+Music: Artist/Band: Can't Help Myself - The?
+Four Tops
+10
+
+Music: Artist/Band: Can't Keep It In (Stevens)?
+Cat stevens
+10
+
+Music: Artist/Band: Can't Live Without You (Meine/Schenker)?
+Scorpions
+10
+
+Music: Artist/Band: Can't Make You Love Me (Carlsson/Lundin/Martin)?
+Britney spears
+10
+
+Music: Artist/Band: Can't Stay Away from You (Estefan)?
+Gloria estefan
+10
+
+Music: Artist/Band: Can't You Hear Me Knocking (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: Canciones de mi padre?
+Linda ronstadt
+10
+
+Music: Artist/Band: Candy Girl - The?
+FourSeasons
+10
+
+Music: Artist/Band: Canned Heat?
+Jamiroquai
+10
+
+Music: Artist/Band: Captain Fantastic & The Brown Dirt Cowboy?
+Elton john
+10
+
+Music: Artist/Band: Cara Mia Jay & - The?
+Americans
+10
+
+Music: Artist/Band: Careless Whisper (Michael/Ridgeley)?
+George michael
+10
+
+Music: Artist/Band: Carney?
+Leon russell
+10
+
+Music: Artist/Band: Carolina in My Mind (Taylor)?
+James taylor
+10
+
+Music: Artist/Band: Carolina In My Mind?
+James taylor
+10
+
+Music: Artist/Band: Carousel Man (Durrill)?
+Cher
+10
+
+Music: Artist/Band: Carpe Diem Baby (Hammett/Hetfield/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Carry That Weight?
+The beatles
+10
+
+Music: Artist/Band: Casi un Bolero (Escolar/Porter/Rosa)?
+Ricky martin
+10
+
+Music: Artist/Band: Casi un Bolero [instrumental] (Escolar/Porter/Rosa)?
+Ricky martin
+10
+
+Music: Artist/Band: Casino Boogie (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: Cast No Shadow (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: Cat Dubh (Bono/Clayton/Edge/Mullen)?
+U2
+10
+
+Music: Artist/Band: Catapult (Berry/Buck/Mills/Stipe)?
+R.e.m.
+10
+
+Music: Artist/Band: Cathy's Clown - The?
+Everly Brothers
+10
+
+Music: Artist/Band: Cecilia (Simon)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: Celebration (Bell/Taylor)?
+Kylie minogue
+10
+
+Music: Artist/Band: Cemetery (Johns)?
+Silverchair
+10
+
+Music: Artist/Band: Certain Kind of Fool (Frey/Henley/Meisner)?
+Eagles
+10
+
+Music: Artist/Band: Chains?
+The beatles
+10
+
+Music: Artist/Band: Champagne Supernova (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: Changes (Butler/Iommi/Osbourne/Ward)?
+Black sabbath
+10
+
+Music: Artist/Band: Changes?
+David bowie
+10
+
+Music: Artist/Band: Chantilly Lace - The?
+Big Bopper
+10
+
+Music: Artist/Band: Chapel Bells - The?
+Fascinators
+10
+
+Music: Artist/Band: Chapel Of Dreams - The?
+Dubs
+10
+
+Music: Artist/Band: Chapel Of Love - The?
+Dixie Cups
+10
+
+Music: Artist/Band: Charles Shaw, John Davis, & Brad Howe were the true singers for this group?
+Milli vanilli
+10
+
+Music: Artist/Band: Charlie Brown - The?
+Coasters
+10
+
+Music: Artist/Band: Chastity Sun (AKA Ruby Jean and Billie... (Crofts/Seals)?
+Cher
+10
+
+Music: Artist/Band: Chatahoocie?
+Alan jackson
+10
+
+Music: Artist/Band: Cheap Love Song (Abbot/Morris/Williams)?
+Robbie williams
+10
+
+Music: Artist/Band: Cherish - The?
+Association
+10
+
+Music: Artist/Band: Cherry (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Cherub Rock (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Child of Mine (Kirwan)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Chill Factor (Hynde)?
+The pretenders
+10
+
+Music: Artist/Band: China In Your Hand?
+T'pau
+10
+
+Music: Artist/Band: China White (Meine/Schenker)?
+Scorpions
+10
+
+Music: Artist/Band: Chocolate Cake (Finn/Finn)?
+Crowded house
+10
+
+Music: Artist/Band: Christmas Song (Chestnuts Roasting on an... (Torme/Wells)?
+'n sync
+10
+
+Music: Artist/Band: Christmas Through Your Eyes (Estefan/Warren)?
+Gloria estefan
+10
+
+Music: Artist/Band: Chromatic Death (Benante/Lilker/Milano/Rosenfeld)?
+Anthrax
+10
+
+Music: Artist/Band: Church Bells May Ring - The?
+Willows
+10
+
+Music: Artist/Band: Church on Tuesday (DeLeo/Weiland)?
+Stone temple pilots
+10
+
+Music: Artist/Band: Cicada (Gillies/Johns)?
+Silverchair
+10
+
+Music: Artist/Band: Cigarettes and Alcochol (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: Cigarettes and Alcohol (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: Circle of Power (Thayil/Yamamoto)?
+Soundgarden
+10
+
+Music: Artist/Band: City Of New Orleans?
+Arlo Guthrie
+10
+
+Music: Artist/Band: Classified 1a (Bono)?
+Cher
+10
+
+Music: Artist/Band: Cleaning Windows (Morrison)?
+Van morrison
+10
+
+Music: Artist/Band: Clones (We're All) (Carron)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Close To You - The?
+Carpenters
+10
+
+Music: Artist/Band: Closing (Gillies/Johns)?
+Silverchair
+10
+
+Music: Artist/Band: Closing My Eyes (Green)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Cloud 9?
+George harrison
+10
+
+Music: Artist/Band: Cloudy (Simon)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: Coast to Coast [live] (Schenker)?
+Scorpions
+10
+
+Music: Artist/Band: Cold Cold Change (Hirst/Moginie)?
+Midnight oil
+10
+
+Music: Artist/Band: Cold Ethyl (Cooper/Ezrin)?
+Alice cooper
+10
+
+Music: Artist/Band: Cold Turkey?
+John lennon
+10
+
+Music: Artist/Band: Collision (Hudson/Patton)?
+Faith no more
+10
+
+Music: Artist/Band: Columbia (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: Coma (Rose/Slash) -?
+Guns n' roses
+10
+
+Music: Artist/Band: Coma Back ( Manson)?
+Marilyn manson
+10
+
+Music: Artist/Band: Come as You Are (Cobain)?
+Nirvana
+10
+
+Music: Artist/Band: Come Back to Me (Harris/Jackson/Lewis)?
+Janet jackson
+10
+
+Music: Artist/Band: Come Go With Me - The?
+Del-Vikings
+10
+
+Music: Artist/Band: Come Into My Life?
+Joyce sims
+10
+
+Music: Artist/Band: Come on and Love Me (Kravitz)?
+Lenny kravitz
+10
+
+Music: Artist/Band: Come Softly To Me - The?
+Fleetwoods
+10
+
+Music: Artist/Band: Come to Me (Goodwin/Resnik/Rosa)?
+Ricky martin
+10
+
+Music: Artist/Band: Come Together - The?
+Beatles
+10
+
+Music: Artist/Band: Comin' Home (James)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Coming Home (Meine/Schenker)?
+Scorpions
+10
+
+Music: Artist/Band: Coming Out of the Dark (Estefan/Estefan/Secada)?
+Gloria estefan
+10
+
+Music: Artist/Band: Coming Your Way (Kirwan)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Common People?
+Pulp
+10
+
+Music: Artist/Band: Commotion (Fogerty)?
+Creedence clearwater revival
+10
+
+Music: Artist/Band: Communication (Farriss/Hutchence)?
+Inxs
+10
+
+Music: Artist/Band: Como Decirte Adios (Flores)?
+Ricky martin
+10
+
+Music: Artist/Band: Complicated (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: Coney Island Baby - The?
+Excellents
+10
+
+Music: Artist/Band: Confusion (Cantrell/Staley/Starr)?
+Alice in chains
+10
+
+Music: Artist/Band: Conga (Garcia)?
+Gloria estefan
+10
+
+Music: Artist/Band: Connection (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: Control (Harris/Jackson/Lewis)?
+Janet jackson
+10
+
+Music: Artist/Band: Cool, Calm and Collected (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: Copperline (Price/Taylor)?
+James taylor
+10
+
+Music: Artist/Band: Coraz?n (Angel/Porter)?
+Ricky martin
+10
+
+Music: Artist/Band: Corazonado (Escolar/Porter/Rosa)?
+Ricky martin
+10
+
+Music: Artist/Band: Corduroy?
+Pearl jam
+10
+
+Music: Artist/Band: Cornflake Girl?
+Tori amos
+10
+
+Music: Artist/Band: Cornucopia [live] (Butler/Iommi/Osbourne/Ward)?
+Black sabbath
+10
+
+Music: Artist/Band: Cosas del Amor (P?rez-Botija/Ramos)?
+Enrique iglesias
+10
+
+Music: Artist/Band: Cotton Fields (Leadbelly)?
+Creedence clearwater revival
+10
+
+Music: Artist/Band: Could This Be Magic - The?
+Dubs
+10
+
+Music: Artist/Band: Count to 6 and Die ( Manson)?
+Marilyn manson
+10
+
+Music: Artist/Band: Country Comforts (John/Taupin)?
+Rod stewart
+10
+
+Music: Artist/Band: Country Honk (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: Country Road (Taylor)?
+James taylor
+10
+
+Music: Artist/Band: Cowboy Style (Anderson/Minogue/Seaman)?
+Kylie minogue
+10
+
+Music: Artist/Band: Cowboy's Work Is Never Done (Bono)?
+Cher
+10
+
+Music: Artist/Band: Cowboys and Angels (Michael)?
+George michael
+10
+
+Music: Artist/Band: Cracklin Rosie?
+Neil diamond
+10
+
+Music: Artist/Band: Crazy About Her - Rod ____
+Stewart
+10
+
+Music: Artist/Band: Crazy Babies (Castillo/Daisy/Osbourne/Wylde)?
+Ozzy osbourne
+10
+
+Music: Artist/Band: Crazy for You (Bertoni/Hamm)?
+'n sync
+10
+
+Music: Artist/Band: Crazy Train (Daisley/Osbourne/Rhoads)?
+Ozzy osbourne
+10
+
+Music: Artist/Band: Creeping Death (Burton/Hammett/Hetfield/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Cross-Tie Walker (Fogerty)?
+Creedence clearwater revival
+10
+
+Music: Artist/Band: Cruci-Fiction in Space ( Manson)?
+Marilyn manson
+10
+
+Music: Artist/Band: Crunchy Granola Suite?
+Neil diamond
+10
+
+Music: Artist/Band: Crush (Benante/Bush/Ian)?
+Anthrax
+10
+
+Music: Artist/Band: Crush (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Crutch (Thomas)?
+Matchbox 20
+10
+
+Music: Artist/Band: Cry Baby Cry?
+The beatles
+10
+
+Music: Artist/Band: Cryhtorchid (Gacy/Manson)?
+Marilyn manson
+10
+
+Music: Artist/Band: Crying In The Chapel?
+Sonny Til & The Orioles
+10
+
+Music: Artist/Band: Crying Tree of Mercury (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Cuba Libre (Estefan/Estefan/Santander)?
+Gloria estefan
+10
+
+Music: Artist/Band: Cuba Libre [/version] (Estefan/Estefan/Santander)?
+Gloria estefan
+10
+
+Music: Artist/Band: Cui, Borodin, Rimsky-Korsakov, Mussorsky, and Balakierev?
+The Russian Five
+10
+
+Music: Artist/Band: Cult of Personality (Calhoun/Glover/Reid/Reid/Skillings)?
+Living colour
+10
+
+Music: Artist/Band: Cult of Personality (Calhoun/Glover/Reid/Skillings)?
+Living colour
+10
+
+Music: Artist/Band: Curly MC, F. Gregorian, Angel?
+Enigma
+10
+
+Music: Artist/Band: Cut Across Shorty (Walker/Wilkin)?
+Rod stewart
+10
+
+Music: Artist/Band: Cyndi Lauper was the original singer of what group?
+The Blue Angels
+10
+
+Music: Artist/Band: D.I.Y. (Gabriel)?
+Peter gabriel
+10
+
+Music: Artist/Band: D'You Know What I Mean? (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: Da Doo Ron Ron - The?
+Crystals
+10
+
+Music: Artist/Band: Da Ya Think I'm Sexy? (Appice/Stewart)?
+Rod stewart
+10
+
+Music: Artist/Band: Daisy (DeLeo)?
+Stone temple pilots
+10
+
+Music: Artist/Band: Dam That River (Cantrell)?
+Alice in chains
+10
+
+Music: Artist/Band: Damage, Inc. (Burton/Hammett/Hetfield/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Dame Mas (Blades/Gaitan/Gaitan/Noriega/Rosa/Secada)?
+Ricky martin
+10
+
+Music: Artist/Band: Damn (Thomas)?
+Matchbox 20
+10
+
+Music: Artist/Band: Dance Sister Dance (Baila Mi Hermana) (Chancler/Coster/Rubinson)?
+Santana
+10
+
+Music: Artist/Band: Dancin' On The Ceiling?
+Lionel richie
+10
+
+Music: Artist/Band: Dancing on the Jetty (Farriss/Hutchence)?
+Inxs
+10
+
+Music: Artist/Band: Dangling Conversation (Simon)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: Danny's Chant (Kirwan)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Dark Lady (Durrill)?
+Cher
+10
+
+Music: Artist/Band: Darlin' (Allen/Morton)?
+Backstreet boys
+10
+
+Music: Artist/Band: Darling Lorraine - The?
+Knockouts
+10
+
+Music: Artist/Band: Darren Hayes is just 50% of Savage Garden, who makes up the other half?
+Daniel Jones
+10
+
+Music: Artist/Band: Daughter?
+Pearl jam
+10
+
+Music: Artist/Band: David Ball was the less flamboyant member of which duo?
+Soft cell
+10
+
+Music: Artist/Band: David Gilmour, Rick Wright, Nick Mason?
+Pink floyd
+10
+
+Music: Artist/Band: David's Song (Paich)?
+Cher
+10
+
+Music: Artist/Band: Davies, Davies, Quaife, Avory?
+The kinks
+10
+
+Music: Artist/Band: Dawn Go Away - The?
+Four Seasons
+10
+
+Music: Artist/Band: Day I Tried to Live (Cornell)?
+Soundgarden
+10
+
+Music: Artist/Band: Day Without Me (Bono/Clayton/Edge/Mullen)?
+U2
+10
+
+Music: Artist/Band: Daydream (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Daydream Believer - The?
+Monkees
+10
+
+Music: Artist/Band: Dead Flowers (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: Dead Horse (Rose)?
+Guns n' roses
+10
+
+Music: Artist/Band: Dear Diary (Blume/Spears/Wilde)?
+Britney spears
+10
+
+Music: Artist/Band: Dear Prudence?
+The beatles
+10
+
+Music: Artist/Band: Death Song ( Manson)?
+Marilyn manson
+10
+
+Music: Artist/Band: Deceased musician, albums include Sheikh Yerbouti, Joes Garage?
+Frank Zappa
+10
+
+Music: Artist/Band: Declan McManus is the real name of which pop singer?
+Elvis costello
+10
+
+Music: Artist/Band: Declaration of Love (Gaudette/Jay)?
+Celine dion
+10
+
+Music: Artist/Band: Dedicated To The One I Love - The?
+Shirelles
+10
+
+Music: Artist/Band: Deep (Ament/Gossard/Vedder)?
+Pearl jam
+10
+
+Music: Artist/Band: deeply dippy?
+Right said fred
+10
+
+Music: Artist/Band: Deformography (Manson/Ramirez/Renzor)?
+Marilyn manson
+10
+
+Music: Artist/Band: Department of Youth (Cooper/Ezrin/Wagner)?
+Alice cooper
+10
+
+Music: Artist/Band: Desafinado (DeMoraes/Jobim)?
+George michael
+10
+
+Music: Artist/Band: Desirie - The?
+Charts
+10
+
+Music: Artist/Band: Desperado?
+Eagles
+10
+
+Music: Artist/Band: Desperate People (Calhoun/Glover/Reid/Skillings)?
+Living colour
+10
+
+Music: Artist/Band: Destination Unknown (Bozzio/Bozzio/Cuccurullo)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Devil In Her Heart?
+The beatles
+10
+
+Music: Artist/Band: Devil Inside (Farriss/Hutchence)?
+Inxs
+10
+
+Music: Artist/Band: Devil Or Angel - The?
+Clovers
+10
+
+Music: Artist/Band: Devil's Dance (Hetfield/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Devil's Food (Cooper/Ezrin/Jay)?
+Alice cooper
+10
+
+Music: Artist/Band: Diamonds & Pearls - The?
+Paradons
+10
+
+Music: Artist/Band: Diary of a Madman (Daisley/Kerslake/Osbourne/Rhoads)?
+Ozzy osbourne
+10
+
+Music: Artist/Band: Did It Again (Anderson/Minogue/Seaman)?
+Kylie minogue
+10
+
+Music: Artist/Band: Did the album All mod cons?
+The jam
+10
+
+Music: Artist/Band: Did the album Blow up your video?
+AC/DC
+10
+
+Music: Artist/Band: Did the album Bury the hatchet?
+The Cranberries
+10
+
+Music: Artist/Band: Did the album Hooray for boobies?
+The bloodhound gang
+10
+
+Music: Artist/Band: Did the album Invincible?
+5ive
+10
+
+Music: Artist/Band: Did the album Let there be rock?
+AC/DC
+10
+
+Music: Artist/Band: Did the album Out of the blue?
+Electric light orchestra
+10
+
+Music: Artist/Band: Did the album Stiff upper lip?
+AC/DC
+10
+
+Music: Artist/Band: Did the album Talk on corners?
+The corrs
+10
+
+Music: Artist/Band: Did the album Trampoline?
+The mavericks
+10
+
+Music: Artist/Band: Did Ye Get Healed? (Morrison)?
+Van morrison
+10
+
+Music: Artist/Band: Didnt We Almost Have It All?
+Whitney houston
+10
+
+Music: Artist/Band: Die Young (Black Sabbath)?
+Black sabbath
+10
+
+Music: Artist/Band: Died (Cantrell/Staley)?
+Alice in chains
+10
+
+Music: Artist/Band: Difference Is Why (Kravitz)?
+Lenny kravitz
+10
+
+Music: Artist/Band: Different Corner (Michael)?
+George michael
+10
+
+Music: Artist/Band: Dig A Pony?
+The beatles
+10
+
+Music: Artist/Band: Dig It?
+The beatles
+10
+
+Music: Artist/Band: Digital Bitch (Butler/Gillan/Iommi/Ward)?
+Black sabbath
+10
+
+Music: Artist/Band: Digital Get Down (Chasez/Nicoll/Renn)?
+'n sync
+10
+
+Music: Artist/Band: Digsy Diner (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: dion and the ____
+Belmonts
+10
+
+Music: Artist/Band: Dionne Warwick had a No.1 hit song, 'Then Came You,' with what artists?
+The Spinners
+10
+
+Music: Artist/Band: Dirt (Cantrell/Staley)?
+Alice in chains
+10
+
+Music: Artist/Band: Dirty Deeds Done Dirt Cheap (Scott/Young/Young)?
+Ac/dc
+10
+
+Music: Artist/Band: Dirty Women (Black Sabbath/Black Sabbath/Black Sabbath/Black Sabbath)?
+Black sabbath
+10
+
+Music: Artist/Band: Disarm (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Disposable Heroes (Hammett/Hetfield/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Disposable Teens ( Manson)?
+Marilyn manson
+10
+
+Music: Artist/Band: Dissident?
+Pearl jam
+10
+
+Music: Artist/Band: Disturbance at the Heron House (Berry/Buck/Mills/Stripe)?
+R.e.m.
+10
+
+Music: Artist/Band: Dive (Cobain/Novoselic)?
+Nirvana
+10
+
+Music: Artist/Band: Dixie Girl (Durrill)?
+Cher
+10
+
+Music: Artist/Band: Dizzy Miss Lizzy?
+The beatles
+10
+
+Music: Artist/Band: Do Wah Diddy?
+Manfred Mann
+10
+
+Music: Artist/Band: Do Ya Think I'm Sexy?
+Rod stewart
+10
+
+Music: Artist/Band: Do You Believe In Magic - The?
+Lovin' Spoonful
+10
+
+Music: Artist/Band: Do You Love Me - The?
+Contours
+10
+
+Music: Artist/Band: Dock Of The Bay?
+Otis Redding
+10
+
+Music: Artist/Band: Does Anybody Out There Even Care (Kravitz)?
+Lenny kravitz
+10
+
+Music: Artist/Band: Dog Eat Dog (Scott/Young/Young)?
+Ac/dc
+10
+
+Music: Artist/Band: Domino (Morrison)?
+Van morrison
+10
+
+Music: Artist/Band: Don't Ask Me To Be Lonely - The?
+Dubs
+10
+
+Music: Artist/Band: Don't Believe Her (Meine/Rarebell/Schenker/Vallance)?
+Scorpions
+10
+
+Music: Artist/Band: Don't Bother Me?
+The beatles
+10
+
+Music: Artist/Band: Don't Cry for Me Agentina (Rive/Webber)?
+The carpenters
+10
+
+Music: Artist/Band: Don't Damn Me (Lank/Rose/Slash)?
+Guns n' roses
+10
+
+Music: Artist/Band: Don't Dream It's Over (Finn)?
+Crowded house
+10
+
+Music: Artist/Band: Don't Ever Try to Close a Rose (Greco)?
+Cher
+10
+
+Music: Artist/Band: Don't Forget to Remember (Gibb/Gibb/Gibb)?
+Bee gees
+10
+
+Music: Artist/Band: Don't Get Me Wrong (Hynde)?
+The pretenders
+10
+
+Music: Artist/Band: Don't Go Away (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: Don't Go Knockin' on My Door (Jake/Kronlund/Martin/Rami)?
+Britney spears
+10
+
+Music: Artist/Band: Don't Hide Your Love (Greenfield/Sedaka)?
+Cher
+10
+
+Music: Artist/Band: Don't Knock My Love?
+Diana ross and marvin gaye
+10
+
+Music: Artist/Band: Don't Know Much?
+Linda ronstadt & aaron neville
+10
+
+Music: Artist/Band: Don't Let Me Be Lonely Tonight (Taylor)?
+James taylor
+10
+
+Music: Artist/Band: Don't Let Me Be the Last to Know (Lange/Scott/Twain)?
+Britney spears
+10
+
+Music: Artist/Band: Don't Let the Sun Go Down on Me (John/Taupin)?
+George michael
+10
+
+Music: Artist/Band: Don't Let This Moment End (Blades/Dermer/Estefan/Estefan)?
+Gloria estefan
+10
+
+Music: Artist/Band: Don't Look Back in Anger (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: Don't Look Now (Fogerty)?
+Creedence clearwater revival
+10
+
+Music: Artist/Band: Don't Pass Me By?
+The beatles
+10
+
+Music: Artist/Band: Don't Put It on Me (Bono)?
+Cher
+10
+
+Music: Artist/Band: Don't Release Me (Dermer/Jean)?
+Gloria estefan
+10
+
+Music: Artist/Band: Don't Release Me [] (Dermer/Estefan)?
+Gloria estefan
+10
+
+Music: Artist/Band: Don't Shoot Me I'm Only the Piano Player?
+Elton john
+10
+
+Music: Artist/Band: Don't Stop (Chirino/Estefan/Moran)?
+Gloria estefan
+10
+
+Music: Artist/Band: Don't Stop (McVie)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Don't Stop at the Top (Meine/Rarebell/Schenker)?
+Scorpions
+10
+
+Music: Artist/Band: Don't Talk Just Kiss?
+Right said fred
+10
+
+Music: Artist/Band: Don't wanna be a girl like that do you wanna see a grown man cry?
+John Parr
+10
+
+Music: Artist/Band: Don't Wanna Lose You (Estefan)?
+Gloria estefan
+10
+
+Music: Artist/Band: Don't Wanna Lose You Now (Martin)?
+Backstreet boys
+10
+
+Music: Artist/Band: Don't Want You Back (Martin)?
+Backstreet boys
+10
+
+Music: Artist/Band: Don't Worry Baby - The?
+Beach Boys
+10
+
+Music: Artist/Band: Donald Fagen, Walter Becker, Michael McDonald, Rick Derringer...?
+Steely dan
+10
+
+Music: Artist/Band: Doncha Bother Me (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: Donde Estaras (Nogueras/Sansano)?
+Ricky martin
+10
+
+Music: Artist/Band: Donna?
+Richie Valens
+10
+
+Music: Artist/Band: Doobie Wah?
+Peter frampton
+10
+
+Music: Artist/Band: Doolin Dalton (Browne/Frey/Henley/Souther)?
+Eagles
+10
+
+Music: Artist/Band: Doolin Dalton [instrumental] (Browne/Frey/Henley/Souther)?
+Eagles
+10
+
+Music: Artist/Band: Doolin Dalton/Desperado (Reprise) (Browne/Frey/Henley/Souther)?
+Eagles
+10
+
+Music: Artist/Band: Door (Johns)?
+Silverchair
+10
+
+Music: Artist/Band: Door To Your Heart?
+The dramatics
+10
+
+Music: Artist/Band: Double Shot - The?
+Swingin' Medallions
+10
+
+Music: Artist/Band: Double Talkin' Jive (Stradlin')?
+Guns n' roses
+10
+
+Music: Artist/Band: Down (DeLeo/Weiland)?
+Stone temple pilots
+10
+
+Music: Artist/Band: Down in a Hole (Cantrell)?
+Alice in chains
+10
+
+Music: Artist/Band: Down on the Corner (Fogerty)?
+Creedence clearwater revival
+10
+
+Music: Artist/Band: Down on the Farm (Garrett/Gibbs/Harper)?
+Guns n' roses
+10
+
+Music: Artist/Band: Down To The Waterline?
+Dire straits
+10
+
+Music: Artist/Band: Downer (Cobain)?
+Nirvana
+10
+
+Music: Artist/Band: Dr. Robert?
+The beatles
+10
+
+Music: Artist/Band: Dragway 4z (Hynde)?
+The pretenders
+10
+
+Music: Artist/Band: Drawing Flies (Cameron/Cornell)?
+Soundgarden
+10
+
+Music: Artist/Band: Dream A Little Dream Of Me?
+Mama cass
+10
+
+Music: Artist/Band: Dreaming (Harry)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Dreaming of You (Barbeau/Nova)?
+Celine dion
+10
+
+Music: Artist/Band: Dreams (Anderson/Minogue/Seaman)?
+Kylie minogue
+10
+
+Music: Artist/Band: Dreams (Nicks)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Dried up, Tried up, Dead to the World (Manson/Ramirez)?
+Marilyn manson
+10
+
+Music: Artist/Band: Drift Away (Gray)?
+Rod stewart
+10
+
+Music: Artist/Band: Drinking In LA?
+Bran van 3000
+10
+
+Music: Artist/Band: Drive (Berry/Buck/Mills/Stipe)?
+R.e.m.
+10
+
+Music: Artist/Band: Drive My Car?
+The beatles
+10
+
+Music: Artist/Band: Drums of Heaven (Garrett/Hirst/Moginie)?
+Midnight oil
+10
+
+Music: Artist/Band: Drunk (Anderson/Minogue/Seaman)?
+Kylie minogue
+10
+
+Music: Artist/Band: Dumb (Cobain)?
+Nirvana
+10
+
+Music: Artist/Band: Duo who had a hit song with 'I got you babe'?
+Sonny and cher
+10
+
+Music: Artist/Band: Dust (Kirwan)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Dust N' Bones (McKagan/Slash/Stradlin')?
+Guns n' roses
+10
+
+Music: Artist/Band: Dusty (Cornell/Shepherd)?
+Soundgarden
+10
+
+Music: Artist/Band: Dwayne Goettel was the keyboardist for what industrial band?
+Skinny puppy
+10
+
+Music: Artist/Band: Dweller on the Threshold (Morrison/Morrison)?
+Van morrison
+10
+
+Music: Artist/Band: Dyers Eve (Hammett/Hetfield/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Dynamite (Meine/Rarebell/Schenker)?
+Scorpions
+10
+
+Music: Artist/Band: E-Mail My Heart (White)?
+Britney spears
+10
+
+Music: Artist/Band: Each member of this family band from Tonga plays at least two instruments?
+Jets
+10
+
+Music: Artist/Band: Earth and Sun and Moon (Moginie)?
+Midnight oil
+10
+
+Music: Artist/Band: Earth Angel - The?
+Penguins
+10
+
+Music: Artist/Band: Easily (Flea/Frusciante/Kiedis/Kiedis/Smith)?
+Red hot chili peppers
+10
+
+Music: Artist/Band: Easy?
+Lionel richie
+10
+
+Music: Artist/Band: Eat a Peach?
+Allman brothers band
+10
+
+Music: Artist/Band: Ebb Tide - The?
+Righteous Brothers
+10
+
+Music: Artist/Band: Ecstasy of Gold (Morricone)?
+Metallica
+10
+
+Music: Artist/Band: Eddie mahoney is better known as this pop singer?
+Eddie money
+10
+
+Music: Artist/Band: Eddie My Love - The?
+Teen Queens
+10
+
+Music: Artist/Band: Eddie Veddar and Jeff Ament?
+Pearl jam
+10
+
+Music: Artist/Band: Effigy (Fogerty)?
+Creedence clearwater revival
+10
+
+Music: Artist/Band: Eine Kleine Nachtsmusik?
+Mozart
+10
+
+Music: Artist/Band: El Condor Pasa (If I Could) (Milchberg/Robles/Simon)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: El Nicoya (Areas)?
+Santana
+10
+
+Music: Artist/Band: Elderly Woman Behind the Counter in a...?
+Pearl jam
+10
+
+Music: Artist/Band: Elected (Bruce/Buxton/Cooper/Dunaway/Smith)?
+Alice cooper
+10
+
+Music: Artist/Band: Electric Co. (Bono/Clayton/Edge/Mullen)?
+U2
+10
+
+Music: Artist/Band: Eleutheria (Kravitz)?
+Lenny kravitz
+10
+
+Music: Artist/Band: Eleven fans were trampled to death at one of their concerts in 1979?
+Who
+10
+
+Music: Artist/Band: Elizabeth Fraser, Robin Guthrie, Simon Raymonde?
+Cocteau twins
+10
+
+Music: Artist/Band: Ella Es (Calderon)?
+Ricky martin
+10
+
+Music: Artist/Band: Elvis Is Dead (Reid)?
+Living colour
+10
+
+Music: Artist/Band: Emitremmnus (Flea/Frusciante/Kiedis/Smith)?
+Red hot chili peppers
+10
+
+Music: Artist/Band: Empty (Elizondo/Harris/Jackson/Lewis)?
+Janet jackson
+10
+
+Music: Artist/Band: Empty Hands (Kravitz)?
+Lenny kravitz
+10
+
+Music: Artist/Band: Enamorado Por Primera Vez (Iglesias)?
+Enrique iglesias
+10
+
+Music: Artist/Band: Endless Love?
+Diana Ross & Lionel
+10
+
+Music: Artist/Band: Enter Sandman (Hammett/Hetfield/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Entre el Amor y los Halagos (Calderon)?
+Ricky martin
+10
+
+Music: Artist/Band: Eres Como el Aire (Calderon)?
+Ricky martin
+10
+
+Music: Artist/Band: Es Mejor Decirse Adios (Calderon)?
+Ricky martin
+10
+
+Music: Artist/Band: Escapade (Harris/Jackson/Lewis)?
+Janet jackson
+10
+
+Music: Artist/Band: Escape (Anthony/Cooper/Fowley)?
+Alice cooper
+10
+
+Music: Artist/Band: Escape (Hammett/Hetfield/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Especially for You (Aitken/Aitken/Waterman)?
+Kylie minogue
+10
+
+Music: Artist/Band: Esperanza (Garcia/Iglesias)?
+Enrique iglesias
+10
+
+Music: Artist/Band: Eternal Flame?
+The bangles
+10
+
+Music: Artist/Band: Eternal Idol (Iommi)?
+Black sabbath
+10
+
+Music: Artist/Band: Europa (Earth's Cry Heaven's Smile) (Coster/Santana)?
+Santana
+10
+
+Music: Artist/Band: Evacuation (Cameron/Vedder)?
+Pearl jam
+10
+
+Music: Artist/Band: Evan Dando's band?
+Lemonheads
+10
+
+Music: Artist/Band: Even Flow - Jeremy - Alive?
+Pearl jam
+10
+
+Music: Artist/Band: Even Flow (Gossard/Vedder)?
+Pearl jam
+10
+
+Music: Artist/Band: Everlasting Gaze (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Every Beat Of My Heart?
+Rod stewart
+10
+
+Music: Artist/Band: Every Breath You Take - The?
+Police
+10
+
+Music: Artist/Band: Every Day Of The Week - The?
+Students
+10
+
+Music: Artist/Band: Every Little Step - ____Brown
+Bobby
+10
+
+Music: Artist/Band: Every Little Thing?
+The beatles
+10
+
+Music: Artist/Band: Every Picture Tells a Story (Stewart/Wood)?
+Rod stewart
+10
+
+Music: Artist/Band: Every Picture Tells a Story?
+Rod stewart
+10
+
+Music: Artist/Band: Every Time (Elizondo/Harris/Jackson/Lewis)?
+Janet jackson
+10
+
+Music: Artist/Band: Everybody (Backstreet's Back) (Martin/Skinner)?
+Backstreet boys
+10
+
+Music: Artist/Band: Everybody Has the Blues (Taylor)?
+James taylor
+10
+
+Music: Artist/Band: Everybody Hurts (Berry/Buck/Mills/Stipe)?
+R.e.m.
+10
+
+Music: Artist/Band: Everybody's Everything (Brown/Moss/Santana)?
+Santana
+10
+
+Music: Artist/Band: Everybody's Got Something To Hide Except Me and My Monkey?
+The beatles
+10
+
+Music: Artist/Band: Everybody's Trying To Be My Baby?
+The beatles
+10
+
+Music: Artist/Band: Everyday?
+Buddy holly
+10
+
+Music: Artist/Band: Everyone (Carlsson/Lundin)?
+Backstreet boys
+10
+
+Music: Artist/Band: Everything I Own (Gates)?
+'n sync
+10
+
+Music: Artist/Band: Everything I Own?
+Boy george
+10
+
+Music: Artist/Band: Everytime You Go Away?
+Daryl hall and john oates
+10
+
+Music: Artist/Band: Evil Ways (Henry)?
+Santana
+10
+
+Music: Artist/Band: Evil Woman (Wiegand)?
+Black sabbath
+10
+
+Music: Artist/Band: Exhuming McCarthy (Berry/Buck/Mills/Stripe)?
+R.e.m.
+10
+
+Music: Artist/Band: Exit (Bono/Clayton/Edge/Mullen)?
+U2
+10
+
+Music: Artist/Band: Experiencia Religiosa (Garcia-Alonso)?
+Enrique iglesias
+10
+
+Music: Artist/Band: Exposure (Fripp/Gabriel)?
+Peter gabriel
+10
+
+Music: Artist/Band: Express Yourself?
+Madonna
+10
+
+Music: Artist/Band: Eye of the Beholder (Hammett/Hetfield/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Eyes - The?
+Earls
+10
+
+Music: Artist/Band: Eyes Of Silver?
+The doobie brothers
+10
+
+Music: Artist/Band: Face Pollution (Cornell/Shepherd)?
+Soundgarden
+10
+
+Music: Artist/Band: Face the Change (Farriss/Hutchence/Pengilly)?
+Inxs
+10
+
+Music: Artist/Band: Fade Away (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: Fade in-Out (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: Fade to Black (Burton/Hammett/Hetfield/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Fairies Wear Boots (Butler/Iommi/Osbourne/Ward) -?
+Ozzy osbourne
+10
+
+Music: Artist/Band: Faith (Michael)?
+George michael
+10
+
+Music: Artist/Band: Fakin' It (Simon)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: Fall at Your Feet (Finn)?
+Crowded house
+10
+
+Music: Artist/Band: Fall of Adam ( Manson)?
+Marilyn manson
+10
+
+Music: Artist/Band: Falling into You (DUbaldo/Nowels/Steinberg)?
+Celine dion
+10
+
+Music: Artist/Band: Falling off the Edge of the World (Butler/Dio/Iommi)?
+Black sabbath
+10
+
+Music: Artist/Band: Falta Tanto Amor (Iglesias/Morales)?
+Enrique iglesias
+10
+
+Music: Artist/Band: Falta Tanto Amor (Morales/P?rez-Botija)?
+Enrique iglesias
+10
+
+Music: Artist/Band: Fame Is (Finn)?
+Crowded house
+10
+
+Music: Artist/Band: Far Away Eyes (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: Farewell (Quittenton/Stewart)?
+Rod stewart
+10
+
+Music: Artist/Band: Fashion (Bowie)?
+David bowie
+10
+
+Music: Artist/Band: Fashion?
+David bowie
+10
+
+Music: Artist/Band: Fast Car - Tracy ____
+Chapman
+10
+
+Music: Artist/Band: Fastlove (McFadden/Michael/Rushen/Washington)?
+George michael
+10
+
+Music: Artist/Band: Father & Son?
+Cat stevens
+10
+
+Music: Artist/Band: Father and Son (Stevens)?
+Cat stevens
+10
+
+Music: Artist/Band: Father Figure (Michael)?
+George michael
+10
+
+Music: Artist/Band: Faultline (Gillies/Johns)?
+Silverchair
+10
+
+Music: Artist/Band: Fear (Bonet/Kravitz)?
+Lenny kravitz
+10
+
+Music: Artist/Band: Fear the Voices (Cantrell/Staley/Starr)?
+Alice in chains
+10
+
+Music: Artist/Band: Feeding Frenzy (Garrett/Moginie)?
+Midnight oil
+10
+
+Music: Artist/Band: Feelin Groovy - Cecilia - Bridge Over Troubled Water?
+Simon and garfunkel
+10
+
+Music: Artist/Band: Feelin' [] (Dermer)?
+Gloria estefan
+10
+
+Music: Artist/Band: Feelin' Blue (Fogerty)?
+Creedence clearwater revival
+10
+
+Music: Artist/Band: Felix Cavaliere and Dino Danelli were in which group?
+Rascals
+10
+
+Music: Artist/Band: Fell on Black Days (Cornell)?
+Soundgarden
+10
+
+Music: Artist/Band: Female Vocalists: Bjork's real last name?
+Gudmansdottir
+10
+
+Music: Artist/Band: Female Vocalists: Cher's first solo releases were released under this name?
+Cherilyn
+10
+
+Music: Artist/Band: Female Vocalists: Deee-lite's singer?
+Lady miss kier
+10
+
+Music: Artist/Band: Female Vocalists: The only constant member of the Supremes from 1960-1978?
+Mary wilson
+10
+
+Music: Artist/Band: Female Vocalists: This singer renounced her US citizenship in 1937 to become French?
+Josephine baker
+10
+
+Music: Artist/Band: Female Vocalists: This woman had a solo single that spent 9 weeks of 1981 at #1?
+Kim carnes
+10
+
+Music: Artist/Band: Female Vocalists: This woman refused to see the movie based on her life?
+Tina turner
+10
+
+Music: Artist/Band: Fields of Joy (Fredricks/Kamen)?
+Lenny kravitz
+10
+
+Music: Artist/Band: Fields of Joy (Reprise) (Fredricks/Kamen)?
+Lenny kravitz
+10
+
+Music: Artist/Band: Fight Fire with Fire (Burton/Hetfield/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Fight Song ( Manson)?
+Marilyn manson
+10
+
+Music: Artist/Band: Fighting for Madge (Fleetwood)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Find the River (Berry/Buck/Mills/Stipe)?
+R.e.m.
+10
+
+Music: Artist/Band: Findaway (Johns)?
+Silverchair
+10
+
+Music: Artist/Band: Finer Feelings (Stock/Waterman)?
+Kylie minogue
+10
+
+Music: Artist/Band: Finest Worksong (Berry/Buck/Mills/Stipe)?
+R.e.m.
+10
+
+Music: Artist/Band: Fire and Rain (Taylor)?
+James taylor
+10
+
+Music: Artist/Band: Fireplace (Berry/Buck/Mills/Stipe)?
+R.e.m.
+10
+
+Music: Artist/Band: First name of the younger of the two Everly Brothers?
+Phil
+10
+
+Music: Artist/Band: First Noel (Traditional)?
+'n sync
+10
+
+Music: Artist/Band: First of May (Gibb/Gibb/Gibb)?
+Bee gees
+10
+
+Music: Artist/Band: First Time Ever I Saw Your Face (MacColl)?
+Celine dion
+10
+
+Music: Artist/Band: First Time?
+Robin beck
+10
+
+Music: Artist/Band: Fish was lead singer with which band, before going solo?
+Marillion
+10
+
+Music: Artist/Band: Fixing A Hole?
+The beatles
+10
+
+Music: Artist/Band: Fixxxer (Hammett/Hetfield/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Flame trees, Cheap Wine, Breakfast at Sweethearts (Australian)?
+Cold chisel
+10
+
+Music: Artist/Band: Flight 505 (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: Florence - The?
+Paragons
+10
+
+Music: Artist/Band: Flotsam and Jetsam (Gabriel)?
+Peter gabriel
+10
+
+Music: Artist/Band: Flower (Cornell/Thayil)?
+Soundgarden
+10
+
+Music: Artist/Band: Flower Child (Kravitz)?
+Lenny kravitz
+10
+
+Music: Artist/Band: Flowers for Zo? (Kravitz)?
+Lenny kravitz
+10
+
+Music: Artist/Band: Flowers Never Bend With the Rainfall (Simon)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: Fly (Galston/Goldman)?
+Celine dion
+10
+
+Music: Artist/Band: Fly Me To The Moon?
+Julie london
+10
+
+Music: Artist/Band: Flying High Again (Daisley/Kerslake/Osbourne/Rhoads)?
+Ozzy osbourne
+10
+
+Music: Artist/Band: Flying Without Wings?
+Westlife
+10
+
+Music: Artist/Band: Flying?
+The beatles
+10
+
+Music: Artist/Band: Fool for You (Stewart)?
+Rod stewart
+10
+
+Music: Artist/Band: For All We Know (James/Karlin/Wilson)?
+The carpenters
+10
+
+Music: Artist/Band: For Emily, Whenever I May Find Her (Simon)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: For No One?
+The beatles
+10
+
+Music: Artist/Band: For the Girl Who Has Everything (Renn/Skinner)?
+'n sync
+10
+
+Music: Artist/Band: For Whom the Bell Tolls (Burton/Hetfield/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: For You Blue?
+The beatles
+10
+
+Music: Artist/Band: For Your Precious Love?
+Jerry Butler
+10
+
+Music: Artist/Band: Foreigner Suite (Stevens)?
+Cat stevens
+10
+
+Music: Artist/Band: Forever Texas (Chambers/Williams)?
+Robbie williams
+10
+
+Music: Artist/Band: Fortunate Son (Fogerty)?
+Creedence clearwater revival
+10
+
+Music: Artist/Band: Four Horsemen (Hetfield/Mustaine/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Four Seasons in One Day (Finn/Finn)?
+Crowded house
+10
+
+Music: Artist/Band: Foxy Lady - Purple Haze?
+Jimi hendrix
+10
+
+Music: Artist/Band: Frances Farmer Will Have Her Revenge on... (Cobain)?
+Nirvana
+10
+
+Music: Artist/Band: Frank Zappa's sons' group?
+Z
+10
+
+Music: Artist/Band: Frayed Ends of Sanity (Hammett/Hetfield/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Freak (Johns)?
+Silverchair
+10
+
+Music: Artist/Band: Free Xone (Brown/Buti/Elizondo/Harris/Jackson/Lewis)?
+Janet jackson
+10
+
+Music: Artist/Band: Freedom 90 (Michael)?
+George michael
+10
+
+Music: Artist/Band: Freedom Train (Kravitz)?
+Lenny kravitz
+10
+
+Music: Artist/Band: Fresh Tendrils (Cameron/Cornell)?
+Soundgarden
+10
+
+Music: Artist/Band: Frogs (Cantrell/Inez/Kinney/Staley)?
+Alice in chains
+10
+
+Music: Artist/Band: From the Bottom of My Broken Heart (White)?
+Britney spears
+10
+
+Music: Artist/Band: From the Heart Down (Hydne/Kelly/Steinberg)?
+The pretenders
+10
+
+Music: Artist/Band: Fuego de Noche, Nieve de Dia (Blake/Escolar/Porter)?
+Ricky martin
+10
+
+Music: Artist/Band: Fuel (Hammett/Hetfield/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Fueled (Benante/Bush/Ian)?
+Anthrax
+10
+
+Music: Artist/Band: Full Force Gale (Morrison)?
+Van morrison
+10
+
+Music: Artist/Band: Fun Fun Fun - The?
+Beach Boys
+10
+
+Music: Artist/Band: Funeral For A Friend?
+Elton john
+10
+
+Music: Artist/Band: Funky Monks (Flea/Frusciante/Kiedis/Smith)?
+Red hot chili peppers
+10
+
+Music: Artist/Band: Funny Vibe (Reid)?
+Living colour
+10
+
+Music: Artist/Band: FXXXin' in the Bushes (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: Garden (Ament/Gossard/Vedder)?
+Pearl jam
+10
+
+Music: Artist/Band: Garden (Arkeen/James/Rose)?
+Guns n' roses
+10
+
+Music: Artist/Band: Garden of Eden (Rose/Slash)?
+Guns n' roses
+10
+
+Music: Artist/Band: Gas Panic! (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: Gasoline Alley (Stewart/Wood)?
+Rod stewart
+10
+
+Music: Artist/Band: Geek U.S.A. (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Gene simmons, ace frehley, and paul stanley are members of which rock group?
+Kiss
+10
+
+Music: Artist/Band: Generation Landslide (Bruce/Buxton/Cooper/Dunaway)?
+Alice cooper
+10
+
+Music: Artist/Band: George O'Dowd's nickname?
+Boy george
+10
+
+Music: Artist/Band: Get A Job - The?
+Silhouettes
+10
+
+Music: Artist/Band: Get Another Boyfriend (Martin/Rami)?
+Backstreet boys
+10
+
+Music: Artist/Band: Get Back - The?
+Beatles
+10
+
+Music: Artist/Band: Get Born Again (Cantrell/Staley)?
+Alice in chains
+10
+
+Music: Artist/Band: Get Down (You're the One for Me) (Aris/Cottura)?
+Backstreet boys
+10
+
+Music: Artist/Band: Get It Hot (Scott/Young/Young)?
+Ac/dc
+10
+
+Music: Artist/Band: Get on the Snake (Cornell/Thayil)?
+Soundgarden
+10
+
+Music: Artist/Band: Get on Top (Flea/Frusciante/Kiedis/Kiedis/Smith)?
+Red hot chili peppers
+10
+
+Music: Artist/Band: Get on Your Feet (Casas/DeFaria/Ostwald)?
+Gloria estefan
+10
+
+Music: Artist/Band: Get over It (Frey/Henley)?
+Eagles
+10
+
+Music: Artist/Band: Getting Better?
+The beatles
+10
+
+Music: Artist/Band: Ghostbusters?
+Ray parker jnr
+10
+
+Music: Artist/Band: Gimmie Shelter (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: Girl from Yesterday (Frey/Tempchin)?
+Eagles
+10
+
+Music: Artist/Band: Girl in the Dirty Shirt (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: Girl Like That (Thomas)?
+Matchbox 20
+10
+
+Music: Artist/Band: Girl You Know Its True?
+Milli vanilli
+10
+
+Music: Artist/Band: Girl?
+The beatles
+10
+
+Music: Artist/Band: Girls Got Rhythm (Scott/Young/Young)?
+Ac/dc
+10
+
+Music: Artist/Band: Girls on Film (Lebon/Rhodes/Taylor/Taylor/Taylor)?
+Duran duran
+10
+
+Music: Artist/Band: Gitano (Peraza)?
+Santana
+10
+
+Music: Artist/Band: Give It Away (Flea/Frusciante/Kiedis/Kiedis/Smith)?
+Red hot chili peppers
+10
+
+Music: Artist/Band: Give It To You?
+Jordan knight
+10
+
+Music: Artist/Band: Give It Up (Barlow/Estefan/Garcia)?
+Gloria estefan
+10
+
+Music: Artist/Band: Give Me Just a Little More Time (Dunbar/Wayne)?
+Kylie minogue
+10
+
+Music: Artist/Band: Give Peace A Chance?
+John lennon
+10
+
+Music: Artist/Band: Given the Dog a Bone (Johnson/Young/Young)?
+Ac/dc
+10
+
+Music: Artist/Band: Glad All Over - The?
+Dave Clark 5
+10
+
+Music: Artist/Band: Glamour Boys (Reid)?
+Living colour
+10
+
+Music: Artist/Band: Glass and the Ghost Children (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Glass Onion?
+The beatles
+10
+
+Music: Artist/Band: Glide (DeLeo/Weiland)?
+Stone temple pilots
+10
+
+Music: Artist/Band: Gloria - The?
+Cadillacs
+10
+
+Music: Artist/Band: Gloria (Morrison)?
+Van morrison
+10
+
+Music: Artist/Band: Glorified G?
+Pearl jam
+10
+
+Music: Artist/Band: Go Away (Calhoun/Glover/Reid/Wimbish)?
+Living colour
+10
+
+Music: Artist/Band: Go Away [#] (Dermer/Estefan)?
+Gloria estefan
+10
+
+Music: Artist/Band: Go Deep (Elizondo/Harris/Jackson/Lewis)?
+Janet jackson
+10
+
+Music: Artist/Band: Go Down (Scott/Young/Young)?
+Ac/dc
+10
+
+Music: Artist/Band: Go Let It Out (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: Go Now?
+Moody blues
+10
+
+Music: Artist/Band: Go Tell It on the Mountain (Traditional)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: Go Your Own Way (Buckingham)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Go?
+Pearl jam
+10
+
+Music: Artist/Band: God (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: God Am (Cantrell/Inez/Kinnewy/Staley)?
+Alice in chains
+10
+
+Music: Artist/Band: God Must Have Spent a Little More Time on... (Rogers/Sturken)?
+'n sync
+10
+
+Music: Artist/Band: God Smack (Cantrell/Staley)?
+Alice in chains
+10
+
+Music: Artist/Band: Godeatgod ( Manson)?
+Marilyn manson
+10
+
+Music: Artist/Band: Gods' Dice (Ament)?
+Pearl jam
+10
+
+Music: Artist/Band: Going Home (Jagger/Richards) -?
+The rolling stones
+10
+
+Music: Artist/Band: Going Nowhere (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: Gold Dust Woman (Nicks)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Golden Slumbers?
+The beatles
+10
+
+Music: Artist/Band: Good & Bad Times (Hutchence/Pengilly)?
+Inxs
+10
+
+Music: Artist/Band: Good Day Sunshine?
+The beatles
+10
+
+Music: Artist/Band: Good Golly Miss Molly (Blackwell/Marascalco)?
+Creedence clearwater revival
+10
+
+Music: Artist/Band: Good Morning, Good Morning?
+The beatles
+10
+
+Music: Artist/Band: Good Night?
+The beatles
+10
+
+Music: Artist/Band: Good Vibrations - The?
+Beach Boys
+10
+
+Music: Artist/Band: Goodbye to Love (Bettis/Carpenter)?
+The carpenters
+10
+
+Music: Artist/Band: Goodbye to Romance (Daisley/Osbourne/Rhoads)?
+Ozzy osbourne
+10
+
+Music: Artist/Band: Goodbye to Romance (Daisy/Osbourne/Rhoads)?
+Ozzy osbourne
+10
+
+Music: Artist/Band: Goody Goody?
+Frankie Lymon
+10
+
+Music: Artist/Band: Got 'Til It's Gone (Elizondo/Fareed/Harris/Jackson/Lewis/Mitchell)?
+Janet jackson
+10
+
+Music: Artist/Band: Got Me Under Pressure?
+Zz top
+10
+
+Music: Artist/Band: Got Me Wrong (Cantrell)?
+Alice in chains
+10
+
+Music: Artist/Band: Got That Feeling (Patton)?
+Faith no more
+10
+
+Music: Artist/Band: Got the Time (Jackson)?
+Anthrax
+10
+
+Music: Artist/Band: Got to Be Certain (Aitken/Stock/Stock)?
+Kylie minogue
+10
+
+Music: Artist/Band: Got To Get You Into My Life?
+The beatles
+10
+
+Music: Artist/Band: Grace (Chambers/Williams)?
+Robbie williams
+10
+
+Music: Artist/Band: Gracias Por Pensar en Mi (Russo)?
+Ricky martin
+10
+
+Music: Artist/Band: Grand Finale (Bernstein/Cooper/David/Dunaway/Elmer/Ezrin/Smith)?
+Alice cooper
+10
+
+Music: Artist/Band: Graveyard Train (Fogerty)?
+Creedence clearwater revival
+10
+
+Music: Artist/Band: Greased Lightnin'?
+Olivia newton john & john travolta
+10
+
+Music: Artist/Band: Greatest Song I Ever Heard (Holler)?
+Cher
+10
+
+Music: Artist/Band: Green River (Fogerty)?
+Creedence clearwater revival
+10
+
+Music: Artist/Band: Greeting Song (Flea/Frusciante/Kiedis/Smith)?
+Red hot chili peppers
+10
+
+Music: Artist/Band: Greg Ridley left Spooky Tooth to join what group?
+Humble pie
+10
+
+Music: Artist/Band: Grievance (Vedder)?
+Pearl jam
+10
+
+Music: Artist/Band: Grind (Cantrell)?
+Alice in chains
+10
+
+Music: Artist/Band: Groovin' - The?
+Rascals
+10
+
+Music: Artist/Band: Group composed of Agnetha, Bjorn, Benny, & Annifrid?
+Abba
+10
+
+Music: Artist/Band: Group stripped of a Grammy for not doing much more than posing for the cover?
+Milli vanilli
+10
+
+Music: Artist/Band: Group with album _Head Games?
+Foreigner
+10
+
+Music: Artist/Band: Group with album _Nursery Cryme?
+Genesis
+10
+
+Music: Artist/Band: Guerrilla Radio (Morello/Rocha/Wilk)?
+Rage against the machine
+10
+
+Music: Artist/Band: Guns in the Sky (Hutchence)?
+Inxs
+10
+
+Music: Artist/Band: Gutter Cats Vs. The Jets (Bernstein/Buxton/Dunaway/Sondheim)?
+Alice cooper
+10
+
+Music: Artist/Band: Gypsys, Tramps and Thieves (Stone)?
+Cher
+10
+
+Music: Artist/Band: Habit (Vedder)?
+Pearl jam
+10
+
+Music: Artist/Band: Hagamos el Amor (Escolar/Rosa)?
+Ricky martin
+10
+
+Music: Artist/Band: Hail Hail (Ament/Gossard/McCready/Vedder)?
+Pearl jam
+10
+
+Music: Artist/Band: Hair of the Dog (Agnew/Charlton/Darrell/McCafferty/Sweet)?
+Guns n' roses
+10
+
+Music: Artist/Band: Hairspray Queen (Cobain/Novoselic)?
+Nirvana
+10
+
+Music: Artist/Band: Half (Shepherd)?
+Soundgarden
+10
+
+Music: Artist/Band: Half the World Away (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: Half-Breed (Capps/Dean)?
+Cher
+10
+
+Music: Artist/Band: Hand of Doom (Butler/Iommi/Osbourne/Ward)?
+Black sabbath
+10
+
+Music: Artist/Band: Hand on Your Heart (Aitken/Aitken/Aitken/Stock/Stock/Waterman/Waterman)?
+Kylie minogue
+10
+
+Music: Artist/Band: Hand to Mouth (Michael)?
+George michael
+10
+
+Music: Artist/Band: Handbags and Gladrags (D'Abo)?
+Rod stewart
+10
+
+Music: Artist/Band: Hands All Over (Cornell/Thayil)?
+Soundgarden
+10
+
+Music: Artist/Band: Handy Man (Blackwell/Jones)?
+James taylor
+10
+
+Music: Artist/Band: Hang (Thomas)?
+Matchbox 20
+10
+
+Music: Artist/Band: Happiness Is A Warm Gun?
+The beatles
+10
+
+Music: Artist/Band: Happy (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: Happy Birthday Sweet 16?
+Neil Sedaka
+10
+
+Music: Artist/Band: Happy Birthday to John F Kennedy for his 45th?
+Marilyn Monroe
+10
+
+Music: Artist/Band: Happy Happy Birthday Baby - The?
+Tuneweavers
+10
+
+Music: Artist/Band: Happy Together - The?
+Turtles
+10
+
+Music: Artist/Band: Happy Xmas (War Is Over)?
+John lennon
+10
+
+Music: Artist/Band: Harbor Lights - The?
+Platters
+10
+
+Music: Artist/Band: Harborcoat (Berry/Buck/Mills/Stipe)?
+R.e.m.
+10
+
+Music: Artist/Band: Hard Day (Michael)?
+George michael
+10
+
+Music: Artist/Band: Hard Headed Woman (Stevens)?
+Cat stevens
+10
+
+Music: Artist/Band: Hard Road (Butler/Iommi/Osbourne/Ward)?
+Black sabbath
+10
+
+Music: Artist/Band: Harrisburg (Kevans/Moginie)?
+Midnight oil
+10
+
+Music: Artist/Band: Harvester of Sorrow (Hetfield/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Hate to Feel (Staley)?
+Alice in chains
+10
+
+Music: Artist/Band: Have a Drink on Me (Johnson/Young/Young)?
+Ac/dc
+10
+
+Music: Artist/Band: Have I Told You Lately (Morrison)?
+Van morrison
+10
+
+Music: Artist/Band: Have You Ever Been Mellow?
+Olivia newton john
+10
+
+Music: Artist/Band: Have You Heard - The?
+Duprees
+10
+
+Music: Artist/Band: Hawaiian Wedding Song?
+Elvis Presley
+10
+
+Music: Artist/Band: Hazy Shade of Winter (Simon)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: Hazy Shade Of Winter?
+Simon & garfunkel
+10
+
+Music: Artist/Band: He Ain't Heavy He's My Brother?
+The hollies
+10
+
+Music: Artist/Band: He Ain't Heavy, He's My - The?
+Hollies
+10
+
+Music: Artist/Band: He composed Night and Day, I Get a Kick Out of You?
+Cole porter
+10
+
+Music: Artist/Band: He Didn't (Cameron/Cornell)?
+Soundgarden
+10
+
+Music: Artist/Band: He often ended a gig by destroying his guitar?
+Jimi hendrix
+10
+
+Music: Artist/Band: He Was My Brother (Kane)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: He'll Never Know (Sklerov)?
+Cher
+10
+
+Music: Artist/Band: He's A Rebel - The?
+Crystals
+10
+
+Music: Artist/Band: He's So Fine - The?
+Chiffons
+10
+
+Music: Artist/Band: Head Creeps (Staley)?
+Alice in chains
+10
+
+Music: Artist/Band: Head Injury (Cornell)?
+Soundgarden
+10
+
+Music: Artist/Band: Headshrinker (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: Heal the Pain (Michael)?
+George michael
+10
+
+Music: Artist/Band: Heart And Soul - The?
+Cleftones
+10
+
+Music: Artist/Band: Heart Like a Wheel (Iommi)?
+Black sabbath
+10
+
+Music: Artist/Band: Heart Like a Wheel?
+Linda ronstadt
+10
+
+Music: Artist/Band: Heart-Shaped Boc (Cobain)?
+Nirvana
+10
+
+Music: Artist/Band: Heartache?
+Pepsi & shirlie
+10
+
+Music: Artist/Band: Heartbreak Hotel?
+Elvis presley
+10
+
+Music: Artist/Band: Heaven and Hell (Black Sabbath)?
+Black sabbath
+10
+
+Music: Artist/Band: Heaven and Hot Rods (DeLeo/Weiland)?
+Stone temple pilots
+10
+
+Music: Artist/Band: Heaven Beside You (Cantrell/Inez)?
+Alice in chains
+10
+
+Music: Artist/Band: Heaven from Here (Chambers/Williams)?
+Robbie williams
+10
+
+Music: Artist/Band: Heaven Help (Britten/DeVeaux)?
+Lenny kravitz
+10
+
+Music: Artist/Band: Heaven Sent (Farriss)?
+Inxs
+10
+
+Music: Artist/Band: Heaven's What I Feel (Estefan/Santander)?
+Gloria estefan
+10
+
+Music: Artist/Band: Heaven's What I Feel (Santander)?
+Gloria estefan
+10
+
+Music: Artist/Band: Heavy Fuel (Knopfler)?
+Dire straits
+10
+
+Music: Artist/Band: Heavy Metal Machine (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Hell Ain't a Bad Place to Be (Scott/Young/Young)?
+Ac/dc
+10
+
+Music: Artist/Band: Hell Is Living Without You (BonJovi/Child/Cooper/Sambora)?
+Alice cooper
+10
+
+Music: Artist/Band: Hello (Gallagher/Glitter/Leander)?
+Oasis
+10
+
+Music: Artist/Band: Hello, Goodbye?
+The beatles
+10
+
+Music: Artist/Band: Hello, Hooray (Kempf)?
+Alice cooper
+10
+
+Music: Artist/Band: Hello, This Is Joannie?
+Paul Evans
+10
+
+Music: Artist/Band: Hells Bells (Johnson/Young/Young)?
+Ac/dc
+10
+
+Music: Artist/Band: Help Me Rhonda - The?
+Beach Boys
+10
+
+Music: Artist/Band: Help Me Rhonda?
+The beach boys
+10
+
+Music: Artist/Band: Help! - The?
+Beatles
+10
+
+Music: Artist/Band: Help! (Lennon/McCartney)?
+The carpenters
+10
+
+Music: Artist/Band: Helpless (Bordin/Gould/Patton)?
+Faith no more
+10
+
+Music: Artist/Band: Helps Me Helps You (Hirst/Moginie)?
+Midnight oil
+10
+
+Music: Artist/Band: Helter Skelter?
+The beatles
+10
+
+Music: Artist/Band: Henry Rollins led this group?
+Black flag
+10
+
+Music: Artist/Band: Her maiden name was Gloria Fajardo?
+Gloria estefan
+10
+
+Music: Artist/Band: Her Majesty?
+The beatles
+10
+
+Music: Artist/Band: Her real name is Sheila Escovedo?
+Shiela e
+10
+
+Music: Artist/Band: Here Comes the Flood (Gabriel)?
+Peter gabriel
+10
+
+Music: Artist/Band: Here Comes the Night (Berns)?
+Van morrison
+10
+
+Music: Artist/Band: Here Comes The Sun?
+The beatles
+10
+
+Music: Artist/Band: Here We Are (Estefan)?
+Gloria estefan
+10
+
+Music: Artist/Band: Here We Go (Aris/Cottural)?
+'n sync
+10
+
+Music: Artist/Band: Here, There and Everywhere?
+The beatles
+10
+
+Music: Artist/Band: Hero of the Day (Hammett/Hetfield/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Heroes (Bowie/Eno)?
+David bowie
+10
+
+Music: Artist/Band: Hey Bulldog?
+The beatles
+10
+
+Music: Artist/Band: Hey Foxymophandlemama, That's Me?
+Pearl jam
+10
+
+Music: Artist/Band: Hey Hey, My My (Into the Black) (Young)?
+Oasis
+10
+
+Music: Artist/Band: Hey Jude - The?
+Beatles
+10
+
+Music: Artist/Band: Hey Now! (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: Hey, Mr. DJ (Keep Playin' This Song) (Allen/Campbell/Skinner)?
+Backstreet boys
+10
+
+Music: Artist/Band: High and Dry (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: High Voltage (Scott/Young/Young)?
+Ac/dc
+10
+
+Music: Artist/Band: Higher And Higher?
+Jackie Wilson
+10
+
+Music: Artist/Band: higher at woodstock?
+Sly and the family stone
+10
+
+Music: Artist/Band: Highway to Hell (Scott/Young/Young)?
+Ac/dc
+10
+
+Music: Artist/Band: Hit Between the Eyes (Meine/Rarebell/Schenker/Vallance)?
+Scorpions
+10
+
+Music: Artist/Band: Hit the Lights (Hetfield/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Hod Did I Fall in Love with You (Dorough/Fromm/MacColl)?
+Backstreet boys
+10
+
+Music: Artist/Band: Hold Me Tight?
+The beatles
+10
+
+Music: Artist/Band: Hold On (Thomas)?
+Santana
+10
+
+Music: Artist/Band: Hole in the River (Finn/Rayner)?
+Crowded house
+10
+
+Music: Artist/Band: Hole in the Sky?
+Black sabbath
+10
+
+Music: Artist/Band: Holy Water (Cornell)?
+Soundgarden
+10
+
+Music: Artist/Band: Home for Christmas (Haase/Moorehead)?
+'n sync
+10
+
+Music: Artist/Band: Home Sick Home (Patton)?
+Faith no more
+10
+
+Music: Artist/Band: Homeward Bound (McVie)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Homeward Bound (Simon)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: Honey Don't?
+The beatles
+10
+
+Music: Artist/Band: Honey Hi (McVie)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Honey Pie?
+The beatles
+10
+
+Music: Artist/Band: Honky Tonk Women - The?
+Rolling Stones
+10
+
+Music: Artist/Band: Honolulu City Limits (Beamer)?
+The carpenters
+10
+
+Music: Artist/Band: Hooray! Hooray! It's a Holi-Holiday (Faria/Jay/Parnaspo)?
+Ricky martin
+10
+
+Music: Artist/Band: Hope I die before I get old - and learned to live with it?
+Roger daltrey
+10
+
+Music: Artist/Band: Hope You're Feeling Better (Rolie)?
+Santana
+10
+
+Music: Artist/Band: Hopelessly Devoted To You?
+Olivia newton john
+10
+
+Music: Artist/Band: Hot Legs (Stewart)?
+Rod stewart
+10
+
+Music: Artist/Band: Hot Line (Butler/Gillan/Iommi/Ward)?
+Black sabbath
+10
+
+Music: Artist/Band: hot love?
+T rex
+10
+
+Music: Artist/Band: Hotel California - The?
+Eagles
+10
+
+Music: Artist/Band: Hotel California - Your Lyin Eyes?
+Eagles
+10
+
+Music: Artist/Band: Hotel California (Felder/Frey/Henley)?
+Eagles
+10
+
+Music: Artist/Band: House of Fire (Child/Cooper/Jett)?
+Alice cooper
+10
+
+Music: Artist/Band: House Of The Rising Sun - The?
+Animals
+10
+
+Music: Artist/Band: How Can I Be Sure - The?
+Rascals
+10
+
+Music: Artist/Band: How Can You Mend a Broken Heart (Gibb/Gibb)?
+Cher
+10
+
+Music: Artist/Band: How Deep Is Your Love (Gibb/Gibb/Gibb)?
+Bee gees
+10
+
+Music: Artist/Band: How Do You Do It?
+Gerry and the pacemakers
+10
+
+Music: Artist/Band: How I Could Just Kill A Man (Freese/Muggerud/Reyes)?
+Rage against the machine
+10
+
+Music: Artist/Band: How Much Did You Get for Your Soul? (Hynde)?
+The pretenders
+10
+
+Music: Artist/Band: How Sweet It Is (Dozier/Holland/Holland)?
+James taylor
+10
+
+Music: Artist/Band: How Sweet It Is (To Be Loved By You)?
+James taylor
+10
+
+Music: Artist/Band: How Sweet It Is?
+Marvin gaye
+10
+
+Music: Artist/Band: How Will You Go (Finn/Finn)?
+Crowded house
+10
+
+Music: Artist/Band: Human (Hetfield/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Human (McCentee/Pieken)?
+The pretenders
+10
+
+Music: Artist/Band: Human Being (Johansen/Thunders)?
+Guns n' roses
+10
+
+Music: Artist/Band: Humdrum (Gabriel)?
+Peter gabriel
+10
+
+Music: Artist/Band: Hummer (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Hungry Like the Wolf (Lebon/Rhodes/Taylor)?
+Duran duran
+10
+
+Music: Artist/Band: Hurting Each Other (Geld/Udell)?
+The carpenters
+10
+
+Music: Artist/Band: Husband to Bianca Perez Morena de Macia from 1971-1979?
+Mick jagger
+10
+
+Music: Artist/Band: Hushabye - The?
+Mystics
+10
+
+Music: Artist/Band: Hymn for Her (Keene)?
+The pretenders
+10
+
+Music: Artist/Band: I Am a Rock (Simon)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: I Am One (Corgan/Iha)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: I Am the Walrus [live] (Lennon/McCartney)?
+Oasis
+10
+
+Music: Artist/Band: I Am The Walrus?
+The beatles
+10
+
+Music: Artist/Band: I Am Waiting (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: I Am, I Said?
+Neil diamond
+10
+
+Music: Artist/Band: I Am... I Said?
+Neil Diamond
+10
+
+Music: Artist/Band: I Believe - The?
+Earls
+10
+
+Music: Artist/Band: I Believe My Time Ain't Long (Spencer)?
+Fleetwood mac
+10
+
+Music: Artist/Band: I Build This Garden for Us (Kravitz)?
+Lenny kravitz
+10
+
+Music: Artist/Band: I Call Your Name?
+The beatles
+10
+
+Music: Artist/Band: I Can See a Liar (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: I Can't Explain (Townshend)?
+Scorpions
+10
+
+Music: Artist/Band: I Can't Have You Blues (Cantrell)?
+Alice in chains
+10
+
+Music: Artist/Band: I Can't Let Maggie Go?
+Honeybus
+10
+
+Music: Artist/Band: I Can't Make You Love Me (Reid/Shamblin)?
+George michael
+10
+
+Music: Artist/Band: I Can't Remember (Cantrell/Staley)?
+Alice in chains
+10
+
+Music: Artist/Band: I Can't Tell You Why (Frey/Henley/Schmit)?
+Eagles
+10
+
+Music: Artist/Band: I Can't Watch This?
+Weird al
+10
+
+Music: Artist/Band: I could drink to this Cop Killer's tunes?
+Ice t
+10
+
+Music: Artist/Band: I Could Have Lied (Flea/Frusciante/Kiedis/Smith)?
+Red hot chili peppers
+10
+
+Music: Artist/Band: I could say day/And you'd say night/Tell me it's black when I know it's white?
+Genesis
+10
+
+Music: Artist/Band: I Don't Care About You (Ving)?
+Guns n' roses
+10
+
+Music: Artist/Band: I Don't Know (Daisley/Osbourne/Rhoads)?
+Ozzy osbourne
+10
+
+Music: Artist/Band: I Don't Know (Galdston/Goldman/Kapler)?
+Celine dion
+10
+
+Music: Artist/Band: I Don't Need Anyone (Bradfield/Jones/Minogue)?
+Kylie minogue
+10
+
+Music: Artist/Band: I Don't Want to Change the World [live] (Castillo/Lemmy/Osbourne/Wylde)?
+Ozzy osbourne
+10
+
+Music: Artist/Band: I Don't Want to Know (Nicks)?
+Fleetwood mac
+10
+
+Music: Artist/Band: I Don't Want to Talk About It (Whitten)?
+Rod stewart
+10
+
+Music: Artist/Band: I Don't Want Your Love (Lebon/Rhodes/Taylor)?
+Duran duran
+10
+
+Music: Artist/Band: I Dont Want To Talk About It?
+Rod stewart
+10
+
+Music: Artist/Band: I Drive Myself Crazy (Nowles/Rich/Shipley)?
+'n sync
+10
+
+Music: Artist/Band: I Feel Possessed (Finn)?
+Crowded house
+10
+
+Music: Artist/Band: I FINALLY GOT MYSELF TOGETHER I'm a Changed Man?
+The impressions
+10
+
+Music: Artist/Band: I Get Around - The?
+Beach Boys
+10
+
+Music: Artist/Band: I Get Lonely (Elizondo/Harris/Jackson/Lewis)?
+Janet jackson
+10
+
+Music: Artist/Band: I Got a Name (Fox/Gimbel)?
+Jim croce
+10
+
+Music: Artist/Band: I Got It Bad (And That Ain't Good) (Ellington/Webster)?
+Cher
+10
+
+Music: Artist/Band: I Got the Blues (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: I Got You (DeLeo/Weiland)?
+Stone temple pilots
+10
+
+Music: Artist/Band: I Got You Babe (Bono)?
+Cher
+10
+
+Music: Artist/Band: I Guess It's Christmas Time (Bliss/Peiken)?
+'n sync
+10
+
+Music: Artist/Band: I Guess Thats Why They Call It The Blues?
+Elton john
+10
+
+Music: Artist/Band: I Hate to Sleep Alone (Clinger)?
+Cher
+10
+
+Music: Artist/Band: I Hate You Then I Love You (Falla/Newell/Renis/Testa/Testa)?
+Celine dion
+10
+
+Music: Artist/Band: I Heard It Through the Grapevine (Strong/Whitfield) -?
+Creedence clearwater revival
+10
+
+Music: Artist/Band: I Heard It Through The?
+Marvin Gaye
+10
+
+Music: Artist/Band: I Honestly Love You?
+Olivia newton john
+10
+
+Music: Artist/Band: I Hope, I Think, I Know (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: I Hurt You (Hynde)?
+The pretenders
+10
+
+Music: Artist/Band: I Just Called To Say I Love?
+Stevie Wonder
+10
+
+Music: Artist/Band: I Just Fall in Love Again (Dorff/Herbstrit/Lloyd)?
+The carpenters
+10
+
+Music: Artist/Band: I Just Wanna Be Happy (Dermer)?
+Gloria estefan
+10
+
+Music: Artist/Band: I Just Wanna Be Loved?
+Culture club
+10
+
+Music: Artist/Band: I Just Wanna Be With You (Full Force)?
+'n sync
+10
+
+Music: Artist/Band: I Just Want to See His Face (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: I Just Want You (Osbourne/Vallance)?
+Ozzy osbourne
+10
+
+Music: Artist/Band: I Kept on Loving You (Nicholas/Williams)?
+The carpenters
+10
+
+Music: Artist/Band: I Knew You Were Waiting (For Me) (Climie/Morgan)?
+George michael
+10
+
+Music: Artist/Band: I Know I'm Not Wrong (Bucki?
+Fleetwood mac
+10
+
+Music: Artist/Band: I Like Dirt (Flea/Frusciante/Kiedis/Smith)?
+Red hot chili peppers
+10
+
+Music: Artist/Band: I Love A Rainy Night?
+Eddie rabbitt
+10
+
+Music: Artist/Band: I Love the Dead (Cooper/Ezrin)?
+Alice cooper
+10
+
+Music: Artist/Band: I Love You (Nova)?
+Celine dion
+10
+
+Music: Artist/Band: I Me Mine?
+The beatles
+10
+
+Music: Artist/Band: I Miss You?
+Haddaway
+10
+
+Music: Artist/Band: I Need Love (Carolla)?
+'n sync
+10
+
+Music: Artist/Band: I Need Love?
+Ll cool j
+10
+
+Music: Artist/Band: I Need to Be in Love (Bettis/Carpenter/Hammond)?
+The carpenters
+10
+
+Music: Artist/Band: I Need You Tonight (Fromm)?
+Backstreet boys
+10
+
+Music: Artist/Band: I Need You?
+The beatles
+10
+
+Music: Artist/Band: I Never Knew the Meaning of Christmas (Rogers/Sturken)?
+'n sync
+10
+
+Music: Artist/Band: I of the Mourning (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: I Only Have Eyes For You - The?
+Flamingos
+10
+
+Music: Artist/Band: I Promise You (With Everything I Am) (Hill)?
+Backstreet boys
+10
+
+Music: Artist/Band: I Ran All The Way Home - The?
+Impalas
+10
+
+Music: Artist/Band: I Remember You (Hynde)?
+The pretenders
+10
+
+Music: Artist/Band: I Saved The World Today?
+Eurythmics
+10
+
+Music: Artist/Band: I Saw a Man and He Danced with His Wife (Durrill)?
+Cher
+10
+
+Music: Artist/Band: I See Your Smile [#] (Morejon/Secada)?
+Gloria estefan
+10
+
+Music: Artist/Band: I Send a Message (Farriss/Hutchence)?
+Inxs
+10
+
+Music: Artist/Band: I Should Be So Lucky (Aitken/Aitken/Waterman)?
+Kylie minogue
+10
+
+Music: Artist/Band: I Should Have Known Better?
+The beatles
+10
+
+Music: Artist/Band: I Stay Away (Cantrell/Inez/Staley)?
+Alice in chains
+10
+
+Music: Artist/Band: I Still Haven't Found What I'm Looking For (Bono/Clayton/Edge/Mullen)?
+U2
+10
+
+Music: Artist/Band: I Think We're Alone Now?
+Tommy James 
+10
+
+Music: Artist/Band: I Thought She Knew (Wiley)?
+'n sync
+10
+
+Music: Artist/Band: I Walk Away (Finn)?
+Crowded house
+10
+
+Music: Artist/Band: I Wanna Be Your Man?
+The beatles
+10
+
+Music: Artist/Band: I wanna sex you up who sang it?
+Color me badd
+10
+
+Music: Artist/Band: I Want It That Way (Carlsson/Martin)?
+Backstreet boys
+10
+
+Music: Artist/Band: I Want To Hold Your Hand - The?
+Beatles
+10
+
+Music: Artist/Band: I Want to Know (Reid)?
+Living colour
+10
+
+Music: Artist/Band: I Want To Tell You?
+The beatles
+10
+
+Music: Artist/Band: I Want You (She's So Heavy)?
+The beatles
+10
+
+Music: Artist/Band: I Want You Back (Martin/Pop)?
+'n sync
+10
+
+Music: Artist/Band: I Want You So Bad (Dermer/Galdo/Vigil)?
+Gloria estefan
+10
+
+Music: Artist/Band: I Want You to Need Me (Warren)?
+Celine dion
+10
+
+Music: Artist/Band: I Want You, I Need You, I Love?
+Elvis Presley
+10
+
+Music: Artist/Band: I want you/I need you/But there ain't no way I'm ever gonna love you?
+Meatloaf
+10
+
+Music: Artist/Band: I Want Your Sex Pt. II (Michael)?
+George michael
+10
+
+Music: Artist/Band: I Want Your Sex, Pt. 1 & 2 (Michael)?
+George michael
+10
+
+Music: Artist/Band: I Was Only Joking (Stewart)?
+Rod stewart
+10
+
+Music: Artist/Band: I Will Always Love You?
+Dolly parton
+10
+
+Music: Artist/Band: I Will Be There (Carlsson/Martin)?
+Britney spears
+10
+
+Music: Artist/Band: I Will Follow (Bono/Clayton/Edge/Mullen)?
+U2
+10
+
+Music: Artist/Band: I Will Follow (Taylor)?
+James taylor
+10
+
+Music: Artist/Band: I Will Still Love You (White)?
+Britney spears
+10
+
+Music: Artist/Band: I Will?
+The beatles
+10
+
+Music: Artist/Band: I Wish It Would Rain [live] (Penzabene/Strong/Whitfield)?
+Rod stewart
+10
+
+Music: Artist/Band: I Won't Last a Say Without YOu (Nicholas/Williams)?
+The carpenters
+10
+
+Music: Artist/Band: I Wonder Why?
+Curtis stigers
+10
+
+Music: Artist/Band: I Woudn't Normally Do This Kind of Thing (Lowe/Tennant)?
+Robbie williams
+10
+
+Music: Artist/Band: I'd Rather Go Blind (Foster/Jordan)?
+Rod stewart
+10
+
+Music: Artist/Band: I'll Be Back?
+The beatles
+10
+
+Music: Artist/Band: I'll Be Good for You (Antunes/Calloway/Calloway/Pendergrass/Timberlake)?
+'n sync
+10
+
+Music: Artist/Band: I'll Be There - The?
+Jackson 5
+10
+
+Music: Artist/Band: I'll Follow The Sun?
+The beatles
+10
+
+Music: Artist/Band: I'll Get You?
+The beatles
+10
+
+Music: Artist/Band: I'll Have to Say I Love You in a Song (Croce)?
+Jim croce
+10
+
+Music: Artist/Band: I'll Never Break Your Heart (Manno/Wilde)?
+Backstreet boys
+10
+
+Music: Artist/Band: I'll shine up my old brown shoes/I'll put on a brand new shirt?
+Cheap trick
+10
+
+Music: Artist/Band: I'm A Loser?
+The beatles
+10
+
+Music: Artist/Band: I'm Gonna be (500 miles)?
+Proclaimers
+10
+
+Music: Artist/Band: I'm Happy Just To Dance With You?
+The beatles
+10
+
+Music: Artist/Band: I'm Housin' (EPMD)?
+Rage against the machine
+10
+
+Music: Artist/Band: I'm In The Mood For Love - The?
+Chimes
+10
+
+Music: Artist/Band: I'M LEAVING IT (All) UP TO YOU?
+Donny & marie osmond
+10
+
+Music: Artist/Band: I'm Looking Through You?
+The beatles
+10
+
+Music: Artist/Band: I'm not in love/So don't forget it/It's just a silly stage I'm going through?
+10cc
+10
+
+Music: Artist/Band: I'm Only Sleeping?
+The beatles
+10
+
+Music: Artist/Band: I'm Open (Irons/Vedder)?
+Pearl jam
+10
+
+Music: Artist/Band: I'm So Excited?
+The pointer sisters
+10
+
+Music: Artist/Band: I'm So Tired?
+The beatles
+10
+
+Music: Artist/Band: I'm So Young - The?
+Students
+10
+
+Music: Artist/Band: I'm the Man '91 (Anthrax/Rooney)?
+Anthrax
+10
+
+Music: Artist/Band: I'm the Man (Belladonna/Bello/Benante/Ian/Rooney/Spitz)?
+Anthrax
+10
+
+Music: Artist/Band: I'm Your Angel (Kelly)?
+Celine dion
+10
+
+Music: Artist/Band: I'm Your Gun (Child/Cooper/McCurry)?
+Alice cooper
+10
+
+Music: Artist/Band: I've been around for you/Been up and down for you/but I can't get any relief...?
+Reo speedwagon
+10
+
+Music: Artist/Band: I've been trying to get down/To the heart of the matter/But my will gets weak/?
+Don henley
+10
+
+Music: Artist/Band: I've Got A Feeling?
+The beatles
+10
+
+Music: Artist/Band: I've Got a Thing About Seeing My Grandson... [#] (Stevens)?
+Cat stevens
+10
+
+Music: Artist/Band: I've Got You Under My Skin - The?
+Four Seasons
+10
+
+Music: Artist/Band: I've Gotta Get a Message to You (Gibb/Gibb/Gibb)?
+Bee gees
+10
+
+Music: Artist/Band: I've just closed my eyes again/Climbed aboard the dream weaver train?
+Gary wright
+10
+
+Music: Artist/Band: I've Just Seen A Face?
+The beatles
+10
+
+Music: Artist/Band: I've paid my dues/Time after time/I've done my sentence/But committed no crime?
+Queen
+10
+
+Music: Artist/Band: Ian McCulloch, Les Pattinson, Will Sergeant, Pete de Freitas?
+Echo and the bunnymen
+10
+
+Music: Artist/Band: Ideal World?
+The christians
+10
+
+Music: Artist/Band: If Ever You're in My Arms Again?
+Bryson
+10
+
+Music: Artist/Band: If I Could Turn Back The Hands Of Time?
+R kelly
+10
+
+Music: Artist/Band: If I Fell - The?
+Beatles
+10
+
+Music: Artist/Band: If I Fell?
+The beatles
+10
+
+Music: Artist/Band: If I Needed Someone?
+The beatles
+10
+
+Music: Artist/Band: If It's Hurting You (Chambers/Williams)?
+Robbie williams
+10
+
+Music: Artist/Band: If Not For You?
+Olivia newton john
+10
+
+Music: Artist/Band: If That's What It Takes (Galdston/Goldman)?
+Celine dion
+10
+
+Music: Artist/Band: If Walls Could Talk (Lange)?
+Celine dion
+10
+
+Music: Artist/Band: If You Asked Me To (Warren)?
+Celine dion
+10
+
+Music: Artist/Band: If You Ever Saw Her (Barry/Taylor)?
+Ricky martin
+10
+
+Music: Artist/Band: If You Have to Ask (Flea/Frusciante/Kiedis/Smith)?
+Red hot chili peppers
+10
+
+Music: Artist/Band: If You Love Me (Let Me Know)?
+Olivia newton john
+10
+
+Music: Artist/Band: If You Want Blood (You've Got It) (Scott/Young/Young)?
+Ac/dc
+10
+
+Music: Artist/Band: If You Want It to Be Good Girl (Get... (Lange)?
+Backstreet boys
+10
+
+Music: Artist/Band: If You Were With Me Now (Minogue/Stock/Stock/Washington)?
+Kylie minogue
+10
+
+Music: Artist/Band: If You're Gone (Thomas)?
+Matchbox 20
+10
+
+Music: Artist/Band: Ignoreland (Berry/Buck/Mills/Stipe)?
+R.e.m.
+10
+
+Music: Artist/Band: Image Of A Girl - The?
+Safaris
+10
+
+Music: Artist/Band: Imagination (Strong/Whitfield)?
+The rolling stones
+10
+
+Music: Artist/Band: Immortality (Gibb/Gibb/Gibb)?
+Celine dion
+10
+
+Music: Artist/Band: Immortality?
+Pearl jam
+10
+
+Music: Artist/Band: Imploding Voice (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: In A Lifetime?
+Clannad & bono
+10
+
+Music: Artist/Band: In for the Kill (Iommi)?
+Black sabbath
+10
+
+Music: Artist/Band: In God's Country (Bono/Clayton/Edge/Mullen)?
+U2
+10
+
+Music: Artist/Band: In Love on Christmas (Bennett/Hailey/Hailey)?
+'n sync
+10
+
+Music: Artist/Band: In My Eyes (MacKaye/Minor Threat)?
+Rage against the machine
+10
+
+Music: Artist/Band: In My Life - The?
+Beatles
+10
+
+Music: Artist/Band: In My Life?
+The beatles
+10
+
+Music: Artist/Band: In My Tree (Gossard/Irons/Vedder)?
+Pearl jam
+10
+
+Music: Artist/Band: In the City (Devorzon/Walsh)?
+Eagles
+10
+
+Music: Artist/Band: In the Lowlands (Finn)?
+Crowded house
+10
+
+Music: Artist/Band: In the Shadow of the Valley of Death ( Manson)?
+Marilyn manson
+10
+
+Music: Artist/Band: In The Still Of The Night - The?
+5 Satins
+10
+
+Music: Artist/Band: In the Valley (Garrett/Hirst/Moginie)?
+Midnight oil
+10
+
+Music: Artist/Band: In The Year 2525?
+Zager & Evans
+10
+
+Music: Artist/Band: In Trance [live] (Meine/Schenker)?
+Scorpions
+10
+
+Music: Artist/Band: in which Nick Cave's lead guitarist, Blixa Bargeld sings?
+Einstuerzende neubauten
+10
+
+Music: Artist/Band: Inalcanzable (Iglesias/Martinelli)?
+Enrique iglesias
+10
+
+Music: Artist/Band: Incessant Mace (Cornell/Thayil)?
+Soundgarden
+10
+
+Music: Artist/Band: Incident at Neshabur (Gianquinto/Santana)?
+Santana
+10
+
+Music: Artist/Band: Indians (Anthrax)?
+Anthrax
+10
+
+Music: Artist/Band: Indifference?
+Pearl jam
+10
+
+Music: Artist/Band: Indigo (Gabriel)?
+Peter gabriel
+10
+
+Music: Artist/Band: Infatuation?
+Stewart
+10
+
+Music: Artist/Band: Inside Out (Benante/Bush/Ian)?
+Anthrax
+10
+
+Music: Artist/Band: Insignificance (Vedder)?
+Pearl jam
+10
+
+Music: Artist/Band: Interlude: Twisted Elegance?
+Janet jackson
+10
+
+Music: Artist/Band: Interstate Love Song (DeLeo/Weiland)?
+Stone temple pilots
+10
+
+Music: Artist/Band: Into Temptation (Finn)?
+Crowded house
+10
+
+Music: Artist/Band: Into the Heart (Bono/Clayton/Edge/Mullen)?
+U2
+10
+
+Music: Artist/Band: Into the Void (Butler/Iommi/Osbourne/Ward)?
+Black sabbath
+10
+
+Music: Artist/Band: Iron Gland (Cantrell)?
+Alice in chains
+10
+
+Music: Artist/Band: Irresponisible Hate Anthem (Berkowitz/Gacy/Manson/Ramirez)?
+Marilyn manson
+10
+
+Music: Artist/Band: Is It Now? (Garrett/Moginie)?
+Midnight oil
+10
+
+Music: Artist/Band: Is There Any Love in Your Heart (Kravitz/Ross)?
+Lenny kravitz
+10
+
+Music: Artist/Band: Is There Something I Should Know? (Lebon/Rhodes/Taylor/Taylor/Taylor)?
+Duran duran
+10
+
+Music: Artist/Band: Israel's Son (Johns)?
+Silverchair
+10
+
+Music: Artist/Band: issing to be Clever?
+Boy george
+10
+
+Music: Artist/Band: It Ain't Like That (Cantrell/Kinney/Starr)?
+Alice in chains
+10
+
+Music: Artist/Band: It Ain't over Till It's Over (Kravitz)?
+Lenny kravitz
+10
+
+Music: Artist/Band: It Came Out of the Sky (Fogerty)?
+Creedence clearwater revival
+10
+
+Music: Artist/Band: It Doesn't Hve To Be This Way?
+Blow monkeys
+10
+
+Music: Artist/Band: It Makes Me Ill (Briggs/Kandi)?
+'n sync
+10
+
+Music: Artist/Band: It Might as Well Stay Monday (From Now On) (Chandler)?
+Cher
+10
+
+Music: Artist/Band: It Won't Be Long?
+The beatles
+10
+
+Music: Artist/Band: It's a Long Way to the Top (If You Wanna... (Scott/Young/Young)?
+Ac/dc
+10
+
+Music: Artist/Band: It's All Coming Back to Me Now (Steinman)?
+Celine dion
+10
+
+Music: Artist/Band: It's All over Now (Womack/Womack)?
+Rod stewart
+10
+
+Music: Artist/Band: It's All Too Much?
+The beatles
+10
+
+Music: Artist/Band: It's Christmas (Ries/Thomas)?
+'n sync
+10
+
+Music: Artist/Band: It's Gettin' Better (Man!!) (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: It's Gonna Be Me (Carlsson/Martin/Rami)?
+'n sync
+10
+
+Music: Artist/Band: It's Gonna Take A Miracle?
+Denise Williams
+10
+
+Music: Artist/Band: It's Good to Be Free (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: It's Gotta Be You (Lange/Martin)?
+Backstreet boys
+10
+
+Music: Artist/Band: It's No Game (Pt. 1) (Bowie)?
+David bowie
+10
+
+Music: Artist/Band: It's No Secret (Aitken/Stock/Stock)?
+Kylie minogue
+10
+
+Music: Artist/Band: It's Not Easy (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: It's Not the Spotlight (Goffin/Goldberg)?
+Rod stewart
+10
+
+Music: Artist/Band: It's Only Love?
+The beatles
+10
+
+Music: Artist/Band: It's Only Natural (Finn/Finn)?
+Crowded house
+10
+
+Music: Artist/Band: It's Only Rock 'N Roll But I Like It?
+The rolling Stones
+10
+
+Music: Artist/Band: It's So Easy?
+Buddy holly
+10
+
+Music: Artist/Band: It's the End of the World as We Know It... (Berry/Buck/Mills/Stripe)?
+R.e.m.
+10
+
+Music: Artist/Band: It's True (Carlsson/Martin/Richardson)?
+Backstreet boys
+10
+
+Music: Artist/Band: Italian Plastic (Hester)?
+Crowded house
+10
+
+Music: Artist/Band: Jack (Scott/Young/Young)?
+Ac/dc
+10
+
+Music: Artist/Band: Jackie Wilson Said (I'm in Heaven When You (Morrison)?
+Van morrison
+10
+
+Music: Artist/Band: Jam on It?
+Newcleus
+10
+
+Music: Artist/Band: Jambalaya (On the Bayou) (Williams)?
+The carpenters
+10
+
+Music: Artist/Band: Japanese Boy?
+Aneka
+10
+
+Music: Artist/Band: Je Ne Sais Pourquoi (Aitken/Stock/Waterman)?
+Kylie minogue
+10
+
+Music: Artist/Band: Jealous Guy [live] (Lennon)?
+Rod stewart
+10
+
+Music: Artist/Band: Jealous Guy?
+John lennon
+10
+
+Music: Artist/Band: Jean Genie?
+David bowie
+10
+
+Music: Artist/Band: Jeremy (Ament/Vedder)?
+Pearl jam
+10
+
+Music: Artist/Band: jerry butler & the ____
+Impressions
+10
+
+Music: Artist/Band: Jerry Garcia's long lived group?
+The grateful dead
+10
+
+Music: Artist/Band: Jessie's Girl?
+Rick springfield
+10
+
+Music: Artist/Band: Jesus Christ Pose (Cameron/Cornell/Shepherd/Thayil)?
+Soundgarden
+10
+
+Music: Artist/Band: Jesus Doesn't Want Me for a Sunbeam (Kelly/McKee)?
+Nirvana
+10
+
+Music: Artist/Band: Jesus in a Camper Van (Chambers/Wainwright/Williams)?
+Robbie williams
+10
+
+Music: Artist/Band: Jesus to a Child (Michael)?
+George michael
+10
+
+Music: Artist/Band: Jezabel (Amato/Child)?
+Ricky martin
+10
+
+Music: Artist/Band: Jigsaw Puzzle Blues (Kirwan)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Jimmy Iovine produced an album for ____
+U2
+10
+
+Music: Artist/Band: Jimmy Sharman's Boxers (Hirst/Moginie)?
+Midnight oil
+10
+
+Music: Artist/Band: Jingo (Olatunji)?
+Santana
+10
+
+Music: Artist/Band: Jive Talkin' (Gibb/Gibb/Gibb)?
+Bee gees
+10
+
+Music: Artist/Band: JIVE TURKEY?
+The ohio players
+10
+
+Music: Artist/Band: Jodie (McLagan/Stewart/Wood)?
+Rod stewart
+10
+
+Music: Artist/Band: Joe the Lion (Bowie)?
+David bowie
+10
+
+Music: Artist/Band: John Barleycorn Must Die?
+Traffic
+10
+
+Music: Artist/Band: Johnny Rotten, Sid Vicious, etc...?
+Sex pistols
+10
+
+Music: Artist/Band: Johnson's Aeroplane (Farriss)?
+Inxs
+10
+
+Music: Artist/Band: Jon Anderson, Rick Wakeman, Steve Howe, etc...?
+Yes
+10
+
+Music: Artist/Band: Joy To The World?
+ThreeDog Night
+10
+
+Music: Artist/Band: Julia?
+The beatles
+10
+
+Music: Artist/Band: Jump (Dougan/Minogue)?
+Kylie minogue
+10
+
+Music: Artist/Band: Jump in the Fire (Hetfield/Mustaine/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Jumping Jack Flash - The?
+Rolling Stones
+10
+
+Music: Artist/Band: junior walker & the ____
+All stars
+10
+
+Music: Artist/Band: Junkhead (Cantrell/Staley)?
+Alice in chains
+10
+
+Music: Artist/Band: Jupiter's Lament (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Just a Little Bit of Love (Christensen/Jacobson/Roman)?
+Celine dion
+10
+
+Music: Artist/Band: Just Another Night (Stevens)?
+Cat stevens
+10
+
+Music: Artist/Band: Just Be a Woman (Kravitz)?
+Lenny kravitz
+10
+
+Music: Artist/Band: Just For You?
+M people
+10
+
+Music: Artist/Band: Just Got Paid (Griffin/Hall/Kemp/Riley)?
+'n sync
+10
+
+Music: Artist/Band: Just the Blues (Boyd)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Just To Be With You - The?
+Passions
+10
+
+Music: Artist/Band: Kansas City/Hey Hey Hey Hey?
+The beatles
+10
+
+Music: Artist/Band: Karma Killer (Chambers/Williams)?
+Robbie williams
+10
+
+Music: Artist/Band: Kathy's Song (Simon)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: Kay, Edmonton, McJohn, Monarch, Moreve?
+Steppenwolf
+10
+
+Music: Artist/Band: Keep It in the Family [live] (Anthrax)?
+Anthrax
+10
+
+Music: Artist/Band: Keep on Chooglin' (Fogerty)?
+Creedence clearwater revival
+10
+
+Music: Artist/Band: Keep the Customer Satisfied (Simon)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: Kerry King, Tom Araya, Jeff Hanneman, Dave Lombardo?
+Slayer
+10
+
+Music: Artist/Band: Kick (Farriss/Hutchence)?
+Inxs
+10
+
+Music: Artist/Band: Kick Out The Jams (Davis/Kramer/Smith/Thompson/Tyner)?
+Rage against the machine
+10
+
+Music: Artist/Band: Kickstand (Cornell/Thayil)?
+Soundgarden
+10
+
+Music: Artist/Band: Kids (Chambers/Williams)?
+Robbie williams
+10
+
+Music: Artist/Band: Kill Eye (Finn)?
+Crowded house
+10
+
+Music: Artist/Band: Killer/Papa Was a Rolling Stone (Samuel/Tinley)?
+George michael
+10
+
+Music: Artist/Band: Killing of Georgie (Pts. I & II) (Stewart)?
+Rod stewart
+10
+
+Music: Artist/Band: Killing of Georgie, Pt. 1 - 2 (Stewart)?
+Rod stewart
+10
+
+Music: Artist/Band: Killing Yourself (Cantrell/Staley)?
+Alice in chains
+10
+
+Music: Artist/Band: Killing Yourself to Live (Black Sabbath)?
+Black sabbath
+10
+
+Music: Artist/Band: Kinderfeld (Gacy/Manson/Ramirez)?
+Marilyn manson
+10
+
+Music: Artist/Band: King Diamond, Snowy Shaw, Michael Denner, etc...?
+Mercyful fate
+10
+
+Music: Artist/Band: King Kill ( Manson)?
+Marilyn manson
+10
+
+Music: Artist/Band: King of Birds (Berry/Buck/Mills/Stripe)?
+R.e.m.
+10
+
+Music: Artist/Band: Kingdom Come (Verlaline)?
+David bowie
+10
+
+Music: Artist/Band: Kiss Me at Midnight (Lamb/Renn)?
+'n sync
+10
+
+Music: Artist/Band: Kiss the Dirt (Falling Down the Mountain) (Farriss/Hutchence)?
+Inxs
+10
+
+Music: Artist/Band: Kissing a Fool (Michael)?
+George michael
+10
+
+Music: Artist/Band: Kitchen Ware & Candy Bars (DeLeo/Weiland)?
+Stone temple pilots
+10
+
+Music: Artist/Band: Knutsford City Limits (Andrews/Chambers/Williams)?
+Robbie williams
+10
+
+Music: Artist/Band: Koala Sprint (Garrett/Moginie/Rotsey)?
+Midnight oil
+10
+
+Music: Artist/Band: Kody (Thomas)?
+Matchbox 20
+10
+
+Music: Artist/Band: Kokomo?
+The beach boys
+10
+
+Music: Artist/Band: Komm, Gib Mir Deine Hand?
+The beatles
+10
+
+Music: Artist/Band: Kosciusko (Hirst/Moginie)?
+Midnight oil
+10
+
+Music: Artist/Band: Kurt Cobain, Dave Grohl, Krist Novoselic, and Pat Smear?
+Nirvana
+10
+
+Music: Artist/Band: La Bamba?
+Richie Valens
+10
+
+Music: Artist/Band: La Grange?
+Zz top
+10
+
+Music: Artist/Band: Lady d'Arbanville (Stevens)?
+Cat stevens
+10
+
+Music: Artist/Band: Lady D'Arbanville?
+Cat stevens
+10
+
+Music: Artist/Band: Lady In Red?
+Chris de burgh
+10
+
+Music: Artist/Band: Lady Jane (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: Lady Picture Show (DeLeo/Weiland)?
+Stone temple pilots
+10
+
+Music: Artist/Band: Lady Writer (Knopfler)?
+Dire straits
+10
+
+Music: Artist/Band: Laguna Sunrise (Butler/Iommi/Osbourne/Ward)?
+Black sabbath
+10
+
+Music: Artist/Band: Lake of Fire (Kirkwood)?
+Nirvana
+10
+
+Music: Artist/Band: Lamb of God ( Manson)?
+Marilyn manson
+10
+
+Music: Artist/Band: Lambada?
+Kaoma
+10
+
+Music: Artist/Band: Larger Than Life (Littrell/Lundin/Martin)?
+Backstreet boys
+10
+
+Music: Artist/Band: Larger Than Life?
+Back street boys
+10
+
+Music: Artist/Band: Last Beautiful Girl (Serletic/Thomas)?
+Matchbox 20
+10
+
+Music: Artist/Band: Last Cup of Sorrow (Gould/Patton)?
+Faith no more
+10
+
+Music: Artist/Band: Last Exit?
+Pearl jam
+10
+
+Music: Artist/Band: Last Request (I Want Your Sex, Pt. 3) (Michael)?
+George michael
+10
+
+Music: Artist/Band: Last Resort (Frey/Henley)?
+Eagles
+10
+
+Music: Artist/Band: Last Song (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Laughing (Berry/Buck/Mills/Stipe)?
+R.e.m.
+10
+
+Music: Artist/Band: Layla?
+Derek & The Dominoes
+10
+
+Music: Artist/Band: laypool, Lalonde, Alexander?
+Primus
+10
+
+Music: Artist/Band: Lead by Matt Johnson in which Johnny Marr can be found?
+The the
+10
+
+Music: Artist/Band: Leader Of The Pack - The?
+Shangri-Las
+10
+
+Music: Artist/Band: Leader singer of the group Simply Red?
+Mick hucknell
+10
+
+Music: Artist/Band: Learn to Be Still (Henley/Lynch)?
+Eagles
+10
+
+Music: Artist/Band: Learn to Hate (Gillies/Johns)?
+Silverchair
+10
+
+Music: Artist/Band: Leash?
+Pearl jam
+10
+
+Music: Artist/Band: Leave (Thomas)?
+Matchbox 20
+10
+
+Music: Artist/Band: Leave It Alone (Glover/Reid/Wimbish)?
+Living colour
+10
+
+Music: Artist/Band: Leave Me Out (Gillies/Johns)?
+Silverchair
+10
+
+Music: Artist/Band: Leaves That Are Green (Simon)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: Ledge (Buckingham)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Legalise Me (Hynde)?
+The pretenders
+10
+
+Music: Artist/Band: Leper Messiah (Hetfield/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Let It Be - The?
+Beatles
+10
+
+Music: Artist/Band: Let It Be Me - The?
+Everly Brothers
+10
+
+Music: Artist/Band: Let It Be?
+The beatles
+10
+
+Music: Artist/Band: Let It Bleed (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: Let It Loose (Dermer/Galdo/Vigil)?
+Gloria estefan
+10
+
+Music: Artist/Band: Let It Loose (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: Let It Shine (Brown/Gardner)?
+Santana
+10
+
+Music: Artist/Band: Let Love Be Your Energy (Chambers/Williams)?
+Robbie williams
+10
+
+Music: Artist/Band: Let Love Rule (Kravitz)?
+Lenny kravitz
+10
+
+Music: Artist/Band: Let Me (Coster/Santana)?
+Santana
+10
+
+Music: Artist/Band: Let Me Be There?
+Olivia newton john
+10
+
+Music: Artist/Band: Let Me Be Your Car (John/Taupin)?
+Rod stewart
+10
+
+Music: Artist/Band: Let Me Entertain You (Chambers/Williams)?
+Robbie williams
+10
+
+Music: Artist/Band: Let Me Put My Love into You (Johnson/Young/Young)?
+Ac/dc
+10
+
+Music: Artist/Band: Let There Be Love?
+Nat king cole with george shearing
+10
+
+Music: Artist/Band: Let There Be Rock (Scott/Young/Young)?
+Ac/dc
+10
+
+Music: Artist/Band: Let's All Make Believe (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: Let's Hang On - The?
+Four Seasons
+10
+
+Music: Artist/Band: Let's Hear It For The Boy?
+Denise Williams
+10
+
+Music: Artist/Band: Let's Lock The Door?
+Jay & The Americans
+10
+
+Music: Artist/Band: Let's Speak the Same Language (Hablemos el (Estefan/Estefan)?
+Gloria estefan
+10
+
+Music: Artist/Band: Let's Spend the Night Together (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: Let's Stick Together?
+Bryan ferry
+10
+
+Music: Artist/Band: Let's Talk About Love (Adams/Goldman/Kennedy)?
+Celine dion
+10
+
+Music: Artist/Band: Let's Wait a While (Andrews/Harris/Jackson/Lewis)?
+Janet jackson
+10
+
+Music: Artist/Band: Letter From America?
+Proclaimers
+10
+
+Music: Artist/Band: Letter Never Sent (Berry/Buck/Mills/Stipe)?
+R.e.m.
+10
+
+Music: Artist/Band: Liberian Girl?
+Michael jackson
+10
+
+Music: Artist/Band: Lie to Me (Johns)?
+Silverchair
+10
+
+Music: Artist/Band: Lies (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: Life Goes Around [#] (Meine/Schenker)?
+Scorpions
+10
+
+Music: Artist/Band: Life in the Fast Lane (Frey/Henley/Walsh)?
+Eagles
+10
+
+Music: Artist/Band: Life Is But A Dream - The?
+Earls
+10
+
+Music: Artist/Band: Life's Too Short?
+Lightning seeds
+10
+
+Music: Artist/Band: Lifted?
+Lighthouse family
+10
+
+Music: Artist/Band: Light My Fire - The?
+Doors
+10
+
+Music: Artist/Band: Light of the Moon (Alomar/Gazon/Ragland)?
+The pretenders
+10
+
+Music: Artist/Band: Light Years (Gossard/McCready/Vedder)?
+Pearl jam
+10
+
+Music: Artist/Band: Lightnin' Hopkins (Berry/Buck/Mills/Stripe)?
+R.e.m.
+10
+
+Music: Artist/Band: Lightning Strikes?
+Lou Christie
+10
+
+Music: Artist/Band: Like Crying Like Dying (Kirwan)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Like Suicide (Cornell)?
+Soundgarden
+10
+
+Music: Artist/Band: Limbo (Ball/Minogue/Vauk)?
+Kylie minogue
+10
+
+Music: Artist/Band: Limo Wreck (Cameron/Cornell/Thayil)?
+Soundgarden
+10
+
+Music: Artist/Band: Lines On My Face?
+Peter frampton
+10
+
+Music: Artist/Band: Listen Like Thieves (INXS)?
+Inxs
+10
+
+Music: Artist/Band: Listen Up (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: Little America (Berry/Buck/Mills/Stipe)?
+R.e.m.
+10
+
+Music: Artist/Band: Little Child?
+The beatles
+10
+
+Music: Artist/Band: Little Darlin' - The?
+Diamonds
+10
+
+Music: Artist/Band: Little Dolls (Daisley/Kerslake/Osbourne/Rhoads)?
+Ozzy osbourne
+10
+
+Music: Artist/Band: Little Girl Of Mine - The?
+Cleftones
+10
+
+Music: Artist/Band: Little Horn (Manson)?
+Marilyn manson
+10
+
+Music: Artist/Band: Little James (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: Little Lover (Scott/Young/Young)?
+Ac/dc
+10
+
+Music: Artist/Band: Little Old Lady From Pasadena?
+Jan & Dean
+10
+
+Music: Artist/Band: Little Star - The?
+Elegants
+10
+
+Music: Artist/Band: Live (Cocciante)?
+Celine dion
+10
+
+Music: Artist/Band: Live Forever (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: Live Wire (Scott/Young/Young)?
+Ac/dc
+10
+
+Music: Artist/Band: Live With Me (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: Living in a House Divided (Bahler)?
+Cher
+10
+
+Music: Artist/Band: living on the ceiling?
+Blamange
+10
+
+Music: Artist/Band: Lluvia Cae (Botija/Iglesias)?
+Enrique iglesias
+10
+
+Music: Artist/Band: Lo Que Nos Pase, Pasara (Calderon)?
+Ricky martin
+10
+
+Music: Artist/Band: Loaded (Noriega/Rosa/Sacada)?
+Ricky martin
+10
+
+Music: Artist/Band: Local Hero/Wild Theme [live] (Knopfler)?
+Dire straits
+10
+
+Music: Artist/Band: Loco-Motion (Goffin/King)?
+Kylie minogue
+10
+
+Music: Artist/Band: Locomotion?
+Little Eva
+10
+
+Music: Artist/Band: Lodi (Fogerty)?
+Creedence clearwater revival
+10
+
+Music: Artist/Band: Lola, Lola (Escolar/Porter/Rosa)?
+Ricky martin
+10
+
+Music: Artist/Band: lonely boy?
+Paul anka
+10
+
+Music: Artist/Band: Lonely Is the Word (Black Sabbath)?
+Black sabbath
+10
+
+Music: Artist/Band: Lonely Monday Morning?
+Snow
+10
+
+Music: Artist/Band: Long as I Can See the Light (Fogerty)?
+Creedence clearwater revival
+10
+
+Music: Artist/Band: Long Day (Thomas)?
+Matchbox 20
+10
+
+Music: Artist/Band: Long Lonely Nights?
+Lee Andrews & The Hearts
+10
+
+Music: Artist/Band: Long Tall Sally?
+The beatles
+10
+
+Music: Artist/Band: Long, Long, Long?
+The beatles
+10
+
+Music: Artist/Band: Longfellow Seranade?
+Neil diamond
+10
+
+Music: Artist/Band: Look at Your Hands (Austin/Michael)?
+George michael
+10
+
+Music: Artist/Band: Lookin' Out My Back Door (Fogerty)?
+Creedence clearwater revival
+10
+
+Music: Artist/Band: Looking For Freedom?
+David hasselhoff
+10
+
+Music: Artist/Band: Looking for Somebody (Green)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Lord of the World (Butler/Iommi/Osbourne/Ward)?
+Black sabbath
+10
+
+Music: Artist/Band: Lost Paraguayos (Stewart/Wood)?
+Rod stewart
+10
+
+Music: Artist/Band: Loud Love (Cornell)?
+Soundgarden
+10
+
+Music: Artist/Band: Louie Louie - The?
+Kingsmen
+10
+
+Music: Artist/Band: Lounge Fly (DeLeo/Weiland)?
+Stone temple pilots
+10
+
+Music: Artist/Band: Love at First Feel (Scott/Young/Young)?
+Ac/dc
+10
+
+Music: Artist/Band: Love Calling Earth (Andrews/Chambers/Williams)?
+Robbie williams
+10
+
+Music: Artist/Band: Love Can Move Mountains (Warren)?
+Celine dion
+10
+
+Music: Artist/Band: Love Child - The?
+Supremes
+10
+
+Music: Artist/Band: Love Hungry Man (Scott/Young/Young)?
+Ac/dc
+10
+
+Music: Artist/Band: Love In The First Degree?
+Bananarama
+10
+
+Music: Artist/Band: Love in Vain (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: Love Is (What I Say) (Beers/Farriss/Farriss/Farriss/Hutchence/Pengilly)?
+Inxs
+10
+
+Music: Artist/Band: Love Is A Drug?
+Bryan ferry
+10
+
+Music: Artist/Band: Love Is on the Way (Rich/Shafer/Zizzo)?
+Celine dion
+10
+
+Music: Artist/Band: love letters in the sand?
+Pat boone
+10
+
+Music: Artist/Band: Love Of The Common People?
+Paul young
+10
+
+Music: Artist/Band: Love over Gold [live] (Knopfler)?
+Dire straits
+10
+
+Music: Artist/Band: Love Rears Its Ugly Head (Reid)?
+Living colour
+10
+
+Music: Artist/Band: Love Song ( Manson)?
+Marilyn manson
+10
+
+Music: Artist/Band: Love Spreads?
+Stone roses
+10
+
+Music: Artist/Band: Love This Life (Finn)?
+Crowded house
+10
+
+Music: Artist/Band: Love Toy (Dermer/Galdo/Vigil)?
+Gloria estefan
+10
+
+Music: Artist/Band: Love Will Keep Us Alive (Capaldi/Carrack/Pete/Vale)?
+Eagles
+10
+
+Music: Artist/Band: Love Will Never Do (Without You) (Harris/Lewis)?
+Janet jackson
+10
+
+Music: Artist/Band: Love You 'Til the Day I Die (Finn)?
+Crowded house
+10
+
+Music: Artist/Band: Love You To?
+The beatles
+10
+
+Music: Artist/Band: Love, Hate, Love (Cantrell/Staley)?
+Alice in chains
+10
+
+Music: Artist/Band: Love, shine a light was the 1997 eurovision winner for the uk, who performed it?
+Katrina and the waves
+10
+
+Music: Artist/Band: Love's in Our Hearts on Christmas Day (Haase/Lowell/Werking)?
+'n sync
+10
+
+Music: Artist/Band: Loved One (Clyne/Humphries/Lovett)?
+Inxs
+10
+
+Music: Artist/Band: Lovely Rita?
+The beatles
+10
+
+Music: Artist/Band: Lover's Concerto - The?
+Toys
+10
+
+Music: Artist/Band: Lover's Cross (Croce)?
+Jim croce
+10
+
+Music: Artist/Band: Lovers Never Say Good-Bye - The?
+Flamingos
+10
+
+Music: Artist/Band: Loving Cup (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: Loving You Sunday Morning (Meine/Rarebell/Schenker)?
+Scorpions
+10
+
+Music: Artist/Band: Low Man's Lyric (Hetfield/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Lucky (Kronlund/Martin/Rami)?
+Britney spears
+10
+
+Music: Artist/Band: Lucky Girl (Dermer/Estefan)?
+Gloria estefan
+10
+
+Music: Artist/Band: Lucy In The Sky With Diamonds?
+The beatles
+10
+
+Music: Artist/Band: Lukin (Vedder)?
+Pearl jam
+10
+
+Music: Artist/Band: Luna (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Luney Tune (Cooper/Dunaway)?
+Alice cooper
+10
+
+Music: Artist/Band: Lyin' Eyes (Frey/Henley)?
+Eagles
+10
+
+Music: Artist/Band: Lying Season (Cantrell/Staley)?
+Alice in chains
+10
+
+Music: Artist/Band: macho man?
+The village people
+10
+
+Music: Artist/Band: Mad Season (Thomas)?
+Matchbox 20
+10
+
+Music: Artist/Band: Madman (Johns)?
+Silverchair
+10
+
+Music: Artist/Band: Magazine?
+Heart
+10
+
+Music: Artist/Band: Maggie Mae?
+The beatles
+10
+
+Music: Artist/Band: Maggie May (Quittenton/Stewart)?
+Rod stewart
+10
+
+Music: Artist/Band: Magic Pie (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: Magical Mystery Tour?
+The beatles
+10
+
+Music: Artist/Band: Mainstreet?
+Bob seger & the silver bullet band
+10
+
+Music: Artist/Band: Maire Brennan, Eithne ni Bhroanain?
+Clannad
+10
+
+Music: Artist/Band: Majik of Majiks (Stevens)?
+Cat stevens
+10
+
+Music: Artist/Band: Make It Real (Rarebell/Schenker)?
+Scorpions
+10
+
+Music: Artist/Band: Make the Man Love Me (Mann/Weil)?
+Cher
+10
+
+Music: Artist/Band: Make You Happy (Marvel)?
+Celine dion
+10
+
+Music: Artist/Band: Mama, I'm Coming Home (Lemmy/Osbourne/Wylde)?
+Ozzy osbourne
+10
+
+Music: Artist/Band: Mambo No.5?
+Lou bega
+10
+
+Music: Artist/Band: Man in the Box (Cantrell/Kinney/Staley/Starr)?
+Alice in chains
+10
+
+Music: Artist/Band: Man Machine (Chambers/Williams)?
+Robbie williams
+10
+
+Music: Artist/Band: Man of Constant Sorrow (Stewart)?
+Rod stewart
+10
+
+Music: Artist/Band: Man on the Moon (Berry/Buck/Mills/Stipe)?
+R.e.m.
+10
+
+Music: Artist/Band: Man That You Fear (Berkowitz/Gacy/Manson/Ramirez)?
+Marilyn manson
+10
+
+Music: Artist/Band: Man Who Sold the World (Bowie)?
+Nirvana
+10
+
+Music: Artist/Band: Mandolin Wind (Stewart)?
+Rod stewart
+10
+
+Music: Artist/Band: Maneater?
+Hall & oates
+10
+
+Music: Artist/Band: Mankind (Gossard)?
+Pearl jam
+10
+
+Music: Artist/Band: Mansion in the Slums (Finn)?
+Crowded house
+10
+
+Music: Artist/Band: Mar?a (Blake/Escolar/Porter)?
+Ricky martin
+10
+
+Music: Artist/Band: Maralinga (Garrett/Moginie)?
+Midnight oil
+10
+
+Music: Artist/Band: Marc Bolan?
+T rex
+10
+
+Music: Artist/Band: Marcia Baila (Chichin/Ringer)?
+Ricky martin
+10
+
+Music: Artist/Band: Maria (DeLaRocha/Morello/Wilk)?
+Rage against the machine
+10
+
+Music: Artist/Band: Marquis in Spades (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Married With Children (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: Martha My Dear?
+The beatles
+10
+
+Music: Artist/Band: Marti Pellow sang lead with which group?
+Wet wet wet
+10
+
+Music: Artist/Band: Mary-Ann (Bruce/Cooper)?
+Alice cooper
+10
+
+Music: Artist/Band: Massachusetts (Gibb/Gibb/Gibb)?
+Bee gees
+10
+
+Music: Artist/Band: Master of Puppets (Burton/Hammett/Hetfield/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Master of Puppets (Burton/Hetfield/Mustaine/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Master Plan (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: Matthew & Son (Stevens)?
+Cat stevens
+10
+
+Music: Artist/Band: Matthew & Son?
+Cat stevens
+10
+
+Music: Artist/Band: Maxwell's Silver Hammer?
+The beatles
+10
+
+Music: Artist/Band: Mayonaise (Corgan/Iha)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Mayonaise, Soma, Luna, Silverfck?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Me Amaras (Calderon)?
+Ricky martin
+10
+
+Music: Artist/Band: Mean Mr. Mustard?
+The beatles
+10
+
+Music: Artist/Band: Mean to Me (Finn)?
+Crowded house
+10
+
+Music: Artist/Band: Meat Plow (DeLeo/DeLeo/Weiland)?
+Stone temple pilots
+10
+
+Music: Artist/Band: Medellia of the Gray Skies (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Medio Vivir (DeVita)?
+Ricky martin
+10
+
+Music: Artist/Band: Meditate (Farriss)?
+Inxs
+10
+
+Music: Artist/Band: Medley of Songs: from the Motion Picture... (Harley)?
+Robbie williams
+10
+
+Music: Artist/Band: Meladori Magpie (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: mellow yellow?
+Donovan
+10
+
+Music: Artist/Band: Mellowship Slinky in B Major (Flea/Frusciante/Kiedis/Smith)?
+Red hot chili peppers
+10
+
+Music: Artist/Band: Melody (Crofford/Garrett)?
+Cher
+10
+
+Music: Artist/Band: Melting in the Sun (Farriss/Farriss/Hutchence)?
+Inxs
+10
+
+Music: Artist/Band: Memories Can't Wait (Byrne/Harrison)?
+Living colour
+10
+
+Music: Artist/Band: Memories Can't Wait [live] (Byrne/Harrison)?
+Living colour
+10
+
+Music: Artist/Band: Memory Remains (Hetfield/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Memphis Tennessee?
+Chuck berry
+10
+
+Music: Artist/Band: Men and Women (Hutchence)?
+Inxs
+10
+
+Music: Artist/Band: Merry Christmas, Happy Holidays (Chasez/Degiorgio/Renn/Timberlake)?
+'n sync
+10
+
+Music: Artist/Band: Metal Militia (Hetfield/Mustaine/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Mexican Seafood (Cobain)?
+Nirvana
+10
+
+Music: Artist/Band: Mexico (Taylor)?
+James taylor
+10
+
+Music: Artist/Band: Mi Chico Latino?
+Geri haliwell
+10
+
+Music: Artist/Band: Mic Check (DeLaRocha/Morello/Wilk)?
+Rage against the machine
+10
+
+Music: Artist/Band: Michelle - The?
+Beatles
+10
+
+Music: Artist/Band: Microphone Fiend (B./Rakim)?
+Rage against the machine
+10
+
+Music: Artist/Band: Middle Man (Glover/Reid)?
+Living colour
+10
+
+Music: Artist/Band: Middle of the Road (Hynde)?
+The pretenders
+10
+
+Music: Artist/Band: Midnight Confessions - The?
+Grass Roots
+10
+
+Music: Artist/Band: MIDNIGHT FLOWER?
+The four tops
+10
+
+Music: Artist/Band: Midnight Rambler (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: Midnight Special (Traditional)?
+Creedence clearwater revival
+10
+
+Music: Artist/Band: Miente (Botija)?
+Enrique iglesias
+10
+
+Music: Artist/Band: Miente (P?rez-Botija/Ramos)?
+Enrique iglesias
+10
+
+Music: Artist/Band: Miles to Go (Before I Sleep) (Hart)?
+Celine dion
+10
+
+Music: Artist/Band: Milk (Ode to Billy) (Benante/Lilker/Milano/Rosenfeld)?
+Anthrax
+10
+
+Music: Artist/Band: Milk It (Cobain)?
+Nirvana
+10
+
+Music: Artist/Band: Millennium (Barry/Bricusse/Chambers/Williams)?
+Robbie williams
+10
+
+Music: Artist/Band: Millworker (Taylor)?
+James taylor
+10
+
+Music: Artist/Band: Mind Riot (Cornell)?
+Soundgarden
+10
+
+Music: Artist/Band: Mine for Me (McCartney)?
+Rod stewart
+10
+
+Music: Artist/Band: Minute of Decay (Manson)?
+Marilyn manson
+10
+
+Music: Artist/Band: Minutes to Midnight (Garrett/Moginie)?
+Midnight oil
+10
+
+Music: Artist/Band: Mirrors on the ceiling/Pink champagne on ice/We are all just prisoners here,?
+Eagles
+10
+
+Music: Artist/Band: Misery?
+The beatles
+10
+
+Music: Artist/Band: Miss Amanda Jones (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: Miss You (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: Miss You Much (Harris/Lewis)?
+Janet jackson
+10
+
+Music: Artist/Band: Missionary Man?
+Eurythmics
+10
+
+Music: Artist/Band: Mister Superstar (Manson/Ramirez)?
+Marilyn manson
+10
+
+Music: Artist/Band: Mistletoe And Wine?
+Cliff richard
+10
+
+Music: Artist/Band: Mob Rules [live] (Butler/Dio/Iommi)?
+Black sabbath
+10
+
+Music: Artist/Band: Modern Love (Gabriel)?
+Peter gabriel
+10
+
+Music: Artist/Band: Moment With You (Michael)?
+George michael
+10
+
+Music: Artist/Band: Monday Monday - The?
+Mamas & Papas
+10
+
+Music: Artist/Band: Money for Nothing (Knopfler/Sting)?
+Dire straits
+10
+
+Music: Artist/Band: money for nothing?
+Dire straits
+10
+
+Music: Artist/Band: Money Talks (Reid)?
+Living colour
+10
+
+Music: Artist/Band: Money?
+The beatles
+10
+
+Music: Artist/Band: Monkey (Michael)?
+George michael
+10
+
+Music: Artist/Band: Monkey Man (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: Montuno (Montuno) (Marquez)?
+Gloria estefan
+10
+
+Music: Artist/Band: Monty Got a Raw Deal (Berry/Buck/Mills/Stipe)?
+R.e.m.
+10
+
+Music: Artist/Band: Mood for Trouble (Cornell)?
+Soundgarden
+10
+
+Music: Artist/Band: Moon River?
+Danny williams
+10
+
+Music: Artist/Band: Moondance (Morrison)?
+Van morrison
+10
+
+Music: Artist/Band: Moondance?
+Van morrison
+10
+
+Music: Artist/Band: Moonlight Mile (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: Moonshadow (Stevens)?
+Cat stevens
+10
+
+Music: Artist/Band: Moonshadow?
+Cat stevens
+10
+
+Music: Artist/Band: Moral Kiosk (Berry/Buck/Mills/Stipe)?
+R.e.m.
+10
+
+Music: Artist/Band: More Than a Woman (Gibb/Gibb/Gibb)?
+Bee gees
+10
+
+Music: Artist/Band: More Than Anything in This World (Kravitz)?
+Lenny kravitz
+10
+
+Music: Artist/Band: More Than That (ANders/Franciz/LePont)?
+Backstreet boys
+10
+
+Music: Artist/Band: Moribund the Burgermeister (Gabriel)?
+Peter gabriel
+10
+
+Music: Artist/Band: Morning Glory (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: Morning Has Broken (Stevens)?
+Cat stevens
+10
+
+Music: Artist/Band: Morningside?
+Neil diamond
+10
+
+Music: Artist/Band: Morse Code Of Love - The?
+Capris
+10
+
+Music: Artist/Band: Moss Garden (Bowie/Eno)?
+David bowie
+10
+
+Music: Artist/Band: Most Of All - The?
+Moonglows
+10
+
+Music: Artist/Band: Most Peculiar Man (Simon)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: Mother - Goodbye Blue Sky - Comfortably Numb?
+Pink floyd
+10
+
+Music: Artist/Band: Mother Nature's Son?
+The beatles
+10
+
+Music: Artist/Band: Mother of Violence (Gabriel/Gabriel)?
+Peter gabriel
+10
+
+Music: Artist/Band: Mother's Daughter (Rolie)?
+Santana
+10
+
+Music: Artist/Band: Mothers of the Disappeared (Bono/Clayton/Edge/Mullen)?
+U2
+10
+
+Music: Artist/Band: Motorbreath (Hetfield)?
+Metallica
+10
+
+Music: Artist/Band: Mouth to Mouth (Bordin/Gould/Hudson/Patton)?
+Faith no more
+10
+
+Music: Artist/Band: Mouths of Babes (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Move Closer?
+Phyllis nelson
+10
+
+Music: Artist/Band: Moving?
+Supergrass
+10
+
+Music: Artist/Band: Mr writer?
+Stereophonics
+10
+
+Music: Artist/Band: Mr. Blue - The?
+Fleetwoods
+10
+
+Music: Artist/Band: Mr. Cabdriver (Kravitz)?
+Lenny kravitz
+10
+
+Music: Artist/Band: Mr. Crowley (Daisley/Osbourne/Rhoads)?
+Ozzy osbourne
+10
+
+Music: Artist/Band: Mr. Dieingly Sad - The?
+Critters
+10
+
+Music: Artist/Band: Mr. Guder (Bettis/Carpenter)?
+The carpenters
+10
+
+Music: Artist/Band: Mr. Moonlight?
+The beatles
+10
+
+Music: Artist/Band: Mrs Robinson?
+Simon & garfunkel
+10
+
+Music: Artist/Band: Muro (Botija)?
+Enrique iglesias
+10
+
+Music: Artist/Band: My Baby Left Me (Crudup)?
+Creedence clearwater revival
+10
+
+Music: Artist/Band: My Big Mouth (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: My Blue Heaven (Donaldson/Whiting)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: My Boyfriend's Back - The?
+Angels
+10
+
+Music: Artist/Band: My City Was Gone (Hynde)?
+The pretenders
+10
+
+Music: Artist/Band: My Country (Hirst)?
+Midnight oil
+10
+
+Music: Artist/Band: My Dream (Kirwan)?
+Fleetwood mac
+10
+
+Music: Artist/Band: My Girl - The?
+Temptations
+10
+
+Music: Artist/Band: My Girl?
+Temptations
+10
+
+Music: Artist/Band: My Heart Will Go On (Horner/Jennings)?
+Celine dion
+10
+
+Music: Artist/Band: My Heart Will Go on {Love Theme from... (Horner/Jennings)?
+Celine dion
+10
+
+Music: Artist/Band: My Homeland (Mi Tierra) (Estefan)?
+Gloria estefan
+10
+
+Music: Artist/Band: My Juanita - The?
+Crests
+10
+
+Music: Artist/Band: My Love (Kravitz/Ross)?
+Lenny kravitz
+10
+
+Music: Artist/Band: My Love (McCartney/McCartney)?
+Cher
+10
+
+Music: Artist/Band: My Lovely Man (Flea/Frusciante/Kiedis/Smith)?
+Red hot chili peppers
+10
+
+Music: Artist/Band: My Need (Elizondo/Harris/Jackson/Lewis/McLeod/Stewart)?
+Janet jackson
+10
+
+Music: Artist/Band: My Obsession (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: My Own True Love - The?
+Duprees
+10
+
+Music: Artist/Band: My Prayer - The?
+Platters
+10
+
+Music: Artist/Band: My Precious Love (Kravitz)?
+Lenny kravitz
+10
+
+Music: Artist/Band: My Special Angel - The?
+Vogues
+10
+
+Music: Artist/Band: My Stars (Cooper/Ezrin)?
+Alice cooper
+10
+
+Music: Artist/Band: My True Love (Mi Buen Amor) (Estefan)?
+Gloria estefan
+10
+
+Music: Artist/Band: My True Story - The?
+Jive Five
+10
+
+Music: Artist/Band: My Way of Giving (Lane/Marriott)?
+Rod stewart
+10
+
+Music: Artist/Band: Mystify (Farriss/Hutchence)?
+Inxs
+10
+
+Music: Artist/Band: N.I.B. (Butler/Iommi/Osbourne/Ward)?
+Black sabbath
+10
+
+Music: Artist/Band: Nada Es Imposible (Sanz)?
+Ricky martin
+10
+
+Music: Artist/Band: Nadine?
+Chuck berry
+10
+
+Music: Artist/Band: Nails in the Road (Hydne/Kelly/Steinberg)?
+The pretenders
+10
+
+Music: Artist/Band: Naked Flame (Hirst/Moginie/Rotsey)?
+Midnight oil
+10
+
+Music: Artist/Band: Naked in Front of the Computer (Patton)?
+Faith no more
+10
+
+Music: Artist/Band: Naked in the Rain (Flea/Frusciante/Kiedis/Kiedis/Smith)?
+Red hot chili peppers
+10
+
+Music: Artist/Band: Name the band formed by shaun ryder after the break-up of happy mondays?
+Black grape
+10
+
+Music: Artist/Band: Name the band made-up of the five also-rans from the popstars tv series?
+Liberty
+10
+
+Music: Artist/Band: Name the band that backed desmond dekker?
+The aces
+10
+
+Music: Artist/Band: Name the lead singer of Blood, Sweat, and Tears?
+David Clayton Thomas
+10
+
+Music: Artist/Band: Name the lead singer of wet wet wet?
+Marti pellow
+10
+
+Music: Artist/Band: Named not for a band member, but a 17th century agronomist?
+Jethro tull
+10
+
+Music: Artist/Band: Nasty (Harris/Jackson/Lewis)?
+Janet jackson
+10
+
+Music: Artist/Band: Natalie Merchant used to sing with this band?
+10000 maniacs
+10
+
+Music: Artist/Band: Natalie Merchant's old band?
+10000 maniacs
+10
+
+Music: Artist/Band: Nazi Driver (Cornell/Yamamoto)?
+Soundgarden
+10
+
+Music: Artist/Band: Need You Tonight (Farriss/Hutchence)?
+Inxs
+10
+
+Music: Artist/Band: Need Your Love So Bad (Little Willie John)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Neon Knights (Black Sabbath)?
+Black sabbath
+10
+
+Music: Artist/Band: Neuk?ln (Bowie/Eno)?
+David bowie
+10
+
+Music: Artist/Band: Never - The?
+Earls
+10
+
+Music: Artist/Band: Never Be the Same (Finn)?
+Crowded house
+10
+
+Music: Artist/Band: Never Been to Spain (Axton)?
+Cher
+10
+
+Music: Artist/Band: Never Can Say Goodbye?
+The communards
+10
+
+Music: Artist/Band: Never Forget (McVie)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Never Going Back Again (Buckingham)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Never Let You Down?
+Honeyz
+10
+
+Music: Artist/Band: Never Let You Go - The?
+5 Discs
+10
+
+Music: Artist/Band: Never Make Me Cry (McVie)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Never My Love - The?
+Association
+10
+
+Music: Artist/Band: Never Named (Cornell/Shepherd)?
+Soundgarden
+10
+
+Music: Artist/Band: Never Satisfied (Glover/Reid)?
+Living colour
+10
+
+Music: Artist/Band: Never Say Die (Butler/Iommi/Osbourne/Ward)?
+Black sabbath
+10
+
+Music: Artist/Band: Never Say Never,?
+Romeo Void
+10
+
+Music: Artist/Band: Never Tear Us Apart (Farriss/Hutchence)?
+Inxs
+10
+
+Music: Artist/Band: Never the Machine Forever (Thayil)?
+Soundgarden
+10
+
+Music: Artist/Band: Never Too Late (Aitken/Stock/Stock)?
+Kylie minogue
+10
+
+Music: Artist/Band: New Career in a New Town (Bowie)?
+David bowie
+10
+
+Music: Artist/Band: New Damage (Cameron/Cornell/Thayil)?
+Soundgarden
+10
+
+Music: Artist/Band: New Hymn (Price/Taylor)?
+James taylor
+10
+
+Music: Artist/Band: New Jack Theme (Reid)?
+Living colour
+10
+
+Music: Artist/Band: New Kid in Town (Frey/Henley/Souther)?
+Eagles
+10
+
+Music: Artist/Band: New Millennium Homes (Morello/Rocha/Wilk)?
+Rage against the machine
+10
+
+Music: Artist/Band: New Orleans Instrumental No. 1 (Berry/Buck/Mills/Stipe)?
+R.e.m.
+10
+
+Music: Artist/Band: New Rose (James)?
+Guns n' roses
+10
+
+Music: Artist/Band: New Sensation (Farriss/Hutchence)?
+Inxs
+10
+
+Music: Artist/Band: New York Minute (Henley/Kortchmar/Winding)?
+Eagles
+10
+
+Music: Artist/Band: New York State Of Mind?
+Billy joel
+10
+
+Music: Artist/Band: New York's Not My Home (Croce)?
+Jim croce
+10
+
+Music: Artist/Band: NewNew York Mining Disaster 1941 (Gibb/Gibb)?
+Bee gees
+10
+
+Music: Artist/Band: Nicety?
+Michelle
+10
+
+Music: Artist/Band: Night Fever (Gibb/Gibb/Gibb)?
+Bee gees
+10
+
+Music: Artist/Band: Night Like This (Smith)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Night Moves?
+Bob seger & the silver bullet band
+10
+
+Music: Artist/Band: Night Prowler (Scott/Young/Young)?
+Ac/dc
+10
+
+Music: Artist/Band: Night Time Is the Right Time (Brown/Cadena/Herman)?
+Creedence clearwater revival
+10
+
+Music: Artist/Band: Night Time Is the Right Time (Cadena/Herman)?
+Creedence clearwater revival
+10
+
+Music: Artist/Band: Nights In White Satin - The?
+Moody Blues
+10
+
+Music: Artist/Band: Nights in white satin/Never reaching the end/Letters I've written...?
+Moody blues
+10
+
+Music: Artist/Band: Nights on Broadway (Gibb/Gibb/Gibb)?
+Bee gees
+10
+
+Music: Artist/Band: Nightswimming (Berry/Buck/Mills/Stipe)?
+R.e.m.
+10
+
+Music: Artist/Band: Nineteen?
+Paul hardcastle
+10
+
+Music: Artist/Band: No Association (Gillies/Johns)?
+Silverchair
+10
+
+Music: Artist/Band: No Attention (Cornell)?
+Soundgarden
+10
+
+Music: Artist/Band: No Bone Movies (Daisley/Kerslake/Osbourne/Rhoads)?
+Ozzy osbourne
+10
+
+Music: Artist/Band: No Bone Movies (Daisley/Osbourne/Rhoads)?
+Ozzy osbourne
+10
+
+Music: Artist/Band: No Excuses (Cantrell)?
+Alice in chains
+10
+
+Music: Artist/Band: No Importa la Distancia (Go the Distance) (Lopez/Menken/Ponton/Zippel)?
+Ricky martin
+10
+
+Music: Artist/Band: No Leaf Clover (Hetfield/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: No Llores Por Mi (Iglesias/Morales)?
+Enrique iglesias
+10
+
+Music: Artist/Band: No Matter What?
+Boyzone
+10
+
+Music: Artist/Band: No Me Pidas M?s (Calderon)?
+Ricky martin
+10
+
+Music: Artist/Band: No more heros made number 8 for this 80's punk band?
+The stranglers
+10
+
+Music: Artist/Band: No More Mr. Nice Guy (Bruce/Cooper)?
+Alice cooper
+10
+
+Music: Artist/Band: No One Else Comes Close (Baker/Perry/Thomas)?
+Backstreet boys
+10
+
+Music: Artist/Band: No One Like You (Meine/Schenker)?
+Scorpions
+10
+
+Music: Artist/Band: No One to Depend On (Carabello/Escovedo/Rolie)?
+Santana
+10
+
+Music: Artist/Band: No Reaction (Hirst/Moginie/Rotsey)?
+Midnight oil
+10
+
+Music: Artist/Band: No Regrets (Chambers/Williams)?
+Robbie williams
+10
+
+Music: Artist/Band: No Remorse (Hetfield/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: No Reply?
+The beatles
+10
+
+Music: Artist/Band: No Strings Attached (Chasez/Daymond/Greggs)?
+'n sync
+10
+
+Music: Artist/Band: No Way Out (DeLeo/Weiland)?
+Stone temple pilots
+10
+
+Music: Artist/Band: Nobodies ( Manson)?
+Marilyn manson
+10
+
+Music: Artist/Band: Nobody Came (Gillies/Johns)?
+Silverchair
+10
+
+Music: Artist/Band: Nobody Wants to Be Lonely (Burr/Child/Shjaw)?
+Ricky martin
+10
+
+Music: Artist/Band: Norwegian Wood (This Bird Has Flown)?
+The beatles
+10
+
+Music: Artist/Band: Not A Second Time?
+The beatles
+10
+
+Music: Artist/Band: Not Enough Time (Farriss/Hutchence)?
+Inxs
+10
+
+Music: Artist/Band: Not for Me (Carlsson/Jake/Lundin)?
+Backstreet boys
+10
+
+Music: Artist/Band: Not for You?
+Pearl jam
+10
+
+Music: Artist/Band: Not Over You Yet?
+Diana ross
+10
+
+Music: Artist/Band: Not That Funny (Buckingham)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Nothing as It Seems (Ament)?
+Pearl jam
+10
+
+Music: Artist/Band: Nothing Else Matters (Hetfield/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Nothing to Say (Cornell/Thayil)?
+Soundgarden
+10
+
+Music: Artist/Band: Nothing's Gonna Stop Us Now?
+Starship
+10
+
+Music: Artist/Band: Nothingman (Ament)?
+Pearl jam
+10
+
+Music: Artist/Band: Nothingness (Calhoun)?
+Living colour
+10
+
+Music: Artist/Band: Notorious (Lebon/Rhodes/Taylor)?
+Duran duran
+10
+
+Music: Artist/Band: November Rain (Rose)?
+Guns n' roses
+10
+
+Music: Artist/Band: Now (Nicholas/Pitchford)?
+The carpenters
+10
+
+Music: Artist/Band: Now or Never Land (Garrett/Moginie)?
+Midnight oil
+10
+
+Music: Artist/Band: Now We're Getting Somewhere (Finn)?
+Crowded house
+10
+
+Music: Artist/Band: Nowhere Man - The?
+Beatles
+10
+
+Music: Artist/Band: Nunca Te Olvidar? (Iglesias)?
+Enrique iglesias
+10
+
+Music: Artist/Band: Nunca Te Olvidar? (Iglesias/Morales)?
+Enrique iglesias
+10
+
+Music: Artist/Band: O Otherside (Flea/Frusciante/Kiedis/Smith)?
+Red hot chili peppers
+10
+
+Music: Artist/Band: Ob-La-Di, Ob-La-Da?
+The beatles
+10
+
+Music: Artist/Band: Ocean (Bono/Clayton/Edge/Mullen)?
+U2
+10
+
+Music: Artist/Band: Oceans (Ament/Gossard/Vedder)?
+Pearl jam
+10
+
+Music: Artist/Band: Octopus's Garden?
+The beatles
+10
+
+Music: Artist/Band: Oddfellows Local 151 (Berry/Buck/Mills/Stripe)?
+R.e.m.
+10
+
+Music: Artist/Band: Of the Girl (Gossard)?
+Pearl jam
+10
+
+Music: Artist/Band: Of Wolf and Man (Hammett/Hetfield/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Off He Goes (Vedder)?
+Pearl jam
+10
+
+Music: Artist/Band: Oh Boy?
+Buddy Holly
+10
+
+Music: Artist/Band: Oh Daddy (McVie)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Oh No, Not My Baby (Goffin/King)?
+Rod stewart
+10
+
+Music: Artist/Band: Oh Pretty Woman?
+Roy orbison
+10
+
+Music: Artist/Band: Oh the shark babe/Has such teeth, yeah/When he shows them/Pearly whites?
+Bobby darin
+10
+
+Music: Artist/Band: Oh Very Young (Stevens)?
+Cat stevens
+10
+
+Music: Artist/Band: Oh Well (Green)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Oh, Me (Kirkwood)?
+Nirvana
+10
+
+Music: Artist/Band: Oh! Darling?
+The beatles
+10
+
+Music: Artist/Band: Oh! Pretty Woman?
+Roy Orbison
+10
+
+Music: Artist/Band: Old Brown Shoe?
+The beatles
+10
+
+Music: Artist/Band: Old Friends (Simon)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: Old Time Rock And Roll?
+Bob Seger
+10
+
+Music: Artist/Band: On a Plain (Cobain)?
+Nirvana
+10
+
+Music: Artist/Band: On Broadway - The?
+Drifters
+10
+
+Music: Artist/Band: On Every Street (Knopfler)?
+Dire straits
+10
+
+Music: Artist/Band: On the Air (Gabriel)?
+Peter gabriel
+10
+
+Music: Artist/Band: On the Balcony of Casa Rosada (Rive/Webber)?
+The carpenters
+10
+
+Music: Artist/Band: Once (Gossard/Vedder)?
+Pearl jam
+10
+
+Music: Artist/Band: Once In A While - The?
+Chimes
+10
+
+Music: Artist/Band: One - Creeping Death - Unforgiven?
+Metallica
+10
+
+Music: Artist/Band: One (Hetfield/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: One (Littrell/Martin)?
+Backstreet boys
+10
+
+Music: Artist/Band: One After 909?
+The beatles
+10
+
+Music: Artist/Band: One Day In Your Life?
+Michael jackson
+10
+
+Music: Artist/Band: One I Love (Berry/Buck/Mills/Stipe)?
+R.e.m.
+10
+
+Music: Artist/Band: One Kiss from You (Lunt)?
+Britney spears
+10
+
+Music: Artist/Band: One Less Set of Footsteps (Croce)?
+Jim croce
+10
+
+Music: Artist/Band: One Minute of Silence (Lennon)?
+Soundgarden
+10
+
+Music: Artist/Band: One More Time (Hynde)?
+The pretenders
+10
+
+Music: Artist/Band: One More Try (Michael)?
+George michael
+10
+
+Music: Artist/Band: One Night Man (Dioguardi/Lopez/Morales/Secada/Siegel)?
+Ricky martin
+10
+
+Music: Artist/Band: One of These Nights (Frey/Henley)?
+Eagles
+10
+
+Music: Artist/Band: one of this groups greatest albums was 'slippery when wet' released in 1986?
+Bon jovi
+10
+
+Music: Artist/Band: One Summer Night - The?
+Danleers
+10
+
+Music: Artist/Band: One Tree Hill (Bono/Clayton/Edge/Mullen)?
+U2
+10
+
+Music: Artist/Band: One X One (Farriss/Hutchence)?
+Inxs
+10
+
+Music: Artist/Band: Only (Benante/Bush/Ian)?
+Anthrax
+10
+
+Music: Artist/Band: Only a Hobo (Dylan)?
+Rod stewart
+10
+
+Music: Artist/Band: Only A Northern Song?
+The beatles
+10
+
+Music: Artist/Band: Only Gift (Christensen/Franzell)?
+'n sync
+10
+
+Music: Artist/Band: Only Living Boy in New York (Simon)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: Only My Heart Talkin' (Cooper/Goldmark/Roberts)?
+Alice cooper
+10
+
+Music: Artist/Band: Only One (Taylor)?
+James taylor
+10
+
+Music: Artist/Band: Only Sixteen?
+Dr hook
+10
+
+Music: Artist/Band: Only The Lonely?
+Roy Orbison
+10
+
+Music: Artist/Band: Only the Strong (Hirst/Moginie)?
+Midnight oil
+10
+
+Music: Artist/Band: Only Women Bleed (Cooper/Wagner)?
+Alice cooper
+10
+
+Music: Artist/Band: Only Yesterday (Bettis/Carpenter)?
+The carpenters
+10
+
+Music: Artist/Band: Only You - The?
+Platters
+10
+
+Music: Artist/Band: Ooby Dooby (Moore/Penner)?
+Creedence clearwater revival
+10
+
+Music: Artist/Band: Ooh Baby Baby?
+Smokey Robinson & The Miracles
+10
+
+Music: Artist/Band: Oops! ...I Did It Again (Martin/Rami)?
+Britney spears
+10
+
+Music: Artist/Band: Open Invitation (Lambert/Margen/Potter/Santana/Walker)?
+Santana
+10
+
+Music: Artist/Band: Open Letter (To a Landlord) (Morris/Reid)?
+Living colour
+10
+
+Music: Artist/Band: Operator (That's Not the Way It Feels) (Croce)?
+Jim croce
+10
+
+Music: Artist/Band: Opus 17 - The?
+FourSeasons
+10
+
+Music: Artist/Band: Orchid (Iommi)?
+Black sabbath
+10
+
+Music: Artist/Band: Original Sin (Farriss/Hutchence)?
+Inxs
+10
+
+Music: Artist/Band: Orion [instrumental] (Burton/Hetfield/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Other Woman?
+Ray Parker Jr
+10
+
+Music: Artist/Band: Out of All Bad, Some Good Things Come (No... (Cachao/Estefan/Estefan/Secada)?
+Gloria estefan
+10
+
+Music: Artist/Band: Out of Control (Bono/Clayton/Edge/Mullen)?
+U2
+10
+
+Music: Artist/Band: Out of Control (Frey/Henley/Nexon)?
+Eagles
+10
+
+Music: Artist/Band: Outbreak of Love (Hirst)?
+Midnight oil
+10
+
+Music: Artist/Band: Outlaw Man (Blue)?
+Eagles
+10
+
+Music: Artist/Band: Outlaw Torn (Hetfield/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Outshined (Cornell)?
+Soundgarden
+10
+
+Music: Artist/Band: Outside (Michael)?
+George michael
+10
+
+Music: Artist/Band: Outside World (Moginie)?
+Midnight oil
+10
+
+Music: Artist/Band: Over & Over (McVie)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Over the Mountain (Daisley/Kerslake/Osbourne/Rhoads)?
+Ozzy osbourne
+10
+
+Music: Artist/Band: Over The Mountain?
+Johnnie & Joe
+10
+
+Music: Artist/Band: Over The Rainbow - The?
+Dimensions
+10
+
+Music: Artist/Band: Over the Top [#] (Jabs)?
+Scorpions
+10
+
+Music: Artist/Band: Overdose (Scott/Young/Young)?
+Ac/dc
+10
+
+Music: Artist/Band: Overfloater (Cornell)?
+Soundgarden
+10
+
+Music: Artist/Band: Overs (Simon)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: Oye (Barlow/Chirino/Estefan/Estefan)?
+Gloria estefan
+10
+
+Music: Artist/Band: Oye [/version] (Barlow/Chirino/Estefan/Estefan)?
+Gloria estefan
+10
+
+Music: Artist/Band: Oye Como Va (Puente)?
+Santana
+10
+
+Music: Artist/Band: Paint It Black (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: Palisades Park?
+Freddy Cannon
+10
+
+Music: Artist/Band: Paperback Writer - The?
+Beatles
+10
+
+Music: Artist/Band: Parallel Universe (Flea/Frusciante/Kiedis/Kiedis/Smith)?
+Red hot chili peppers
+10
+
+Music: Artist/Band: Paranoid [live] (Daisy/Kerslake/Osbourne/Rhoads)?
+Ozzy osbourne
+10
+
+Music: Artist/Band: Paranomia?
+Art of Noise
+10
+
+Music: Artist/Band: Parasite (Frehley)?
+Anthrax
+10
+
+Music: Artist/Band: Parting Ways (Vedder)?
+Pearl jam
+10
+
+Music: Artist/Band: Passion Rules the Game (Meine/Rarebell)?
+Scorpions
+10
+
+Music: Artist/Band: Pastichio Medley -?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Paths of Glory (Bordin/Bottum/Gould/Hudson/Patton)?
+Faith no more
+10
+
+Music: Artist/Band: Patriarch of the Grateful Dead tours with this band during the off seasons?
+Jerry garcia band
+10
+
+Music: Artist/Band: Patterns (Simon)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: Peace Train (Stevens)?
+Cat stevens
+10
+
+Music: Artist/Band: Peaceful Easy Feeling (Tempchin)?
+Eagles
+10
+
+Music: Artist/Band: Peaceful, Easy Feeling?
+Eagles
+10
+
+Music: Artist/Band: Peggy Sue?
+Buddy holly
+10
+
+Music: Artist/Band: Peggy-O (Traditional)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: Pennies (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Pennies From Heaven - The?
+Skyliners
+10
+
+Music: Artist/Band: Penny Lane - The?
+Beatles
+10
+
+Music: Artist/Band: Pennyroyal Tea (Cobain)?
+Nirvana
+10
+
+Music: Artist/Band: Penthouse Pauper (Fogerty)?
+Creedence clearwater revival
+10
+
+Music: Artist/Band: Perdido Sin Ti (Escolar/Porter/Rosa)?
+Ricky martin
+10
+
+Music: Artist/Band: Perfect Circle (Berry/Buck/Mills/Stipe)?
+R.e.m.
+10
+
+Music: Artist/Band: Perfect Crime (Rose/Slash/Stradlin)?
+Guns n' roses
+10
+
+Music: Artist/Band: Perfect Fan (Littrell/Smith)?
+Backstreet boys
+10
+
+Music: Artist/Band: Performs classic song, La Grange?
+Zztop
+10
+
+Music: Artist/Band: Permanent Vacation - Ragg Doll - Angel?
+Aerosmith
+10
+
+Music: Artist/Band: Perry Ferrel's band before Porno For Pyros?
+Janes addiction
+10
+
+Music: Artist/Band: Perspective (Gabriel)?
+Peter gabriel
+10
+
+Music: Artist/Band: Pete Townshend, Roger Daltrey, John Entwistle, Kieth Moon?
+The who
+10
+
+Music: Artist/Band: Petrol & Chlorine (Johns)?
+Silverchair
+10
+
+Music: Artist/Band: Phantom Lord (Hetfield/Mustaine/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Phoenix from the Flames (Chambers/Williams)?
+Robbie williams
+10
+
+Music: Artist/Band: Photographs & Memories (Croce)?
+Jim croce
+10
+
+Music: Artist/Band: Piggies?
+The beatles
+10
+
+Music: Artist/Band: Piggy - The Downward Spiral - The Becoming?
+Nine inch nails
+10
+
+Music: Artist/Band: Pilgrimage (Berry/Buck/Mills/Stipe)?
+R.e.m.
+10
+
+Music: Artist/Band: Pipeline (Carman/Spickard)?
+Anthrax
+10
+
+Music: Artist/Band: Pistolgrip Pump (Volume Ten)?
+Rage against the machine
+10
+
+Music: Artist/Band: Place in the Dirt ( Manson)?
+Marilyn manson
+10
+
+Music: Artist/Band: Planet Caravan (Butler/Iommi/Osbourne/Ward)?
+Black sabbath
+10
+
+Music: Artist/Band: Planet Earth (Lebon/Rhodes/Taylor/Taylor/Taylor)?
+Duran duran
+10
+
+Music: Artist/Band: Planet Of Women?
+Zz top
+10
+
+Music: Artist/Band: Plastic Fantastic Lover?
+Jefferson airplane
+10
+
+Music: Artist/Band: Plateau (Kirkwood)?
+Nirvana
+10
+
+Music: Artist/Band: Please Mr. Postman - The?
+Marvelettes
+10
+
+Music: Artist/Band: Please Mr. Postman?
+The beatles
+10
+
+Music: Artist/Band: Please Please Me - The?
+Beatles
+10
+
+Music: Artist/Band: Please Say You Want Me - The?
+Schoolboys
+10
+
+Music: Artist/Band: Please to Be in Love (Bateman/Dobbins/Garrett/Holland)?
+The carpenters
+10
+
+Music: Artist/Band: Pleasure Principle (Moir)?
+Janet jackson
+10
+
+Music: Artist/Band: Poem on the Underground Wall (Simon)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: Poison (Child/Cooper/McCurry)?
+Alice cooper
+10
+
+Music: Artist/Band: Poison Ivy - The?
+Coasters
+10
+
+Music: Artist/Band: Polly (Cobain)?
+Nirvana
+10
+
+Music: Artist/Band: Poly, Come as you are, Lithium?
+Nirvana
+10
+
+Music: Artist/Band: Polythene Pam?
+The beatles
+10
+
+Music: Artist/Band: Poor Little Fool?
+Rick Nelson
+10
+
+Music: Artist/Band: Poorboy Shuffle (Fogerty)?
+Creedence clearwater revival
+10
+
+Music: Artist/Band: Pop Song for Us Rejects (Johns)?
+Silverchair
+10
+
+Music: Artist/Band: Pop's Love Suicide (DeLeo/Weiland)?
+Stone temple pilots
+10
+
+Music: Artist/Band: Popstar (Hynde/Seymour)?
+The pretenders
+10
+
+Music: Artist/Band: Por Amarte (Iglesias/Morales)?
+Enrique iglesias
+10
+
+Music: Artist/Band: Por Arriba Por Abajo (Aponte/Escolar/Lemos/Rosa)?
+Ricky martin
+10
+
+Music: Artist/Band: Porcelain (Flea/Frusciante/Kiedis/Smith)?
+Red hot chili peppers
+10
+
+Music: Artist/Band: Porch (Vedder)?
+Pearl jam
+10
+
+Music: Artist/Band: Postman (Reid)?
+Living colour
+10
+
+Music: Artist/Band: Power and the Passion (Garrett/Hirst/Moginie)?
+Midnight oil
+10
+
+Music: Artist/Band: Power of Equality (Flea/Frusciante/Kiedis/Smith)?
+Red hot chili peppers
+10
+
+Music: Artist/Band: Power of Love (Applegate/Derouge/Mende/Rush)?
+Celine dion
+10
+
+Music: Artist/Band: Praise You?
+Fat boy slim
+10
+
+Music: Artist/Band: Praying for Time (Michael)?
+George michael
+10
+
+Music: Artist/Band: Present Tense (McCready/Vedder)?
+Pearl jam
+10
+
+Music: Artist/Band: President Dead ( Manson)?
+Marilyn manson
+10
+
+Music: Artist/Band: Press Play (Stone Temple Pilots)?
+Stone temple pilots
+10
+
+Music: Artist/Band: Pretty Boys and Pretty Girls?
+Book of love
+10
+
+Music: Artist/Band: Pretty Flamingo (Barkan)?
+Rod stewart
+10
+
+Music: Artist/Band: Pretty Maids All in a Row (Vitale/Walsh)?
+Eagles
+10
+
+Music: Artist/Band: Pretty Noose (Cornell)?
+Soundgarden
+10
+
+Music: Artist/Band: Pretty Penny (DeLeo/Weiland)?
+Stone temple pilots
+10
+
+Music: Artist/Band: Pretty Persuasion (Berry/Buck/Mills/Stipe)?
+R.e.m.
+10
+
+Music: Artist/Band: Pride (Calhoun)?
+Living colour
+10
+
+Music: Artist/Band: Prince Charming (Hetfield/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Pristina (Gould/Patton)?
+Faith no more
+10
+
+Music: Artist/Band: Private Investigations (Knopfler)?
+Dire straits
+10
+
+Music: Artist/Band: Problem Child (Scott/Young/Young)?
+Ac/dc
+10
+
+Music: Artist/Band: Profiteers (Hirst/Moginie/Rotsey)?
+Midnight oil
+10
+
+Music: Artist/Band: Protest and Survive (Maloney/Morris/Roberts/Wainwright)?
+Anthrax
+10
+
+Music: Artist/Band: Proud Mary (Fogerty)?
+Creedence clearwater revival
+10
+
+Music: Artist/Band: Proud Mary?
+Creedence Clearwater
+10
+
+Music: Artist/Band: Pruno (DeLeo/Weiland)?
+Stone temple pilots
+10
+
+Music: Artist/Band: Pry, To?
+Pearl jam
+10
+
+Music: Artist/Band: Psychedelic rock band headed by Gerald Garcia?
+The grateful dead
+10
+
+Music: Artist/Band: Public Animal #9 (Bruce/Cooper)?
+Alice cooper
+10
+
+Music: Artist/Band: Punky's Dilemma (Simon)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: Pure Massacre (Gillies/Johns)?
+Silverchair
+10
+
+Music: Artist/Band: Purple Stain (Flea/Frusciante/Kiedis/Smith)?
+Red hot chili peppers
+10
+
+Music: Artist/Band: Push (Serletic/Thomas)?
+Matchbox 20
+10
+
+Music: Artist/Band: Put Yer Money Where Yer Mouth Is (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: Que Dia Es Hoy (Self Control) (Herzog)?
+Ricky martin
+10
+
+Music: Artist/Band: Queen of the Rodeo (Silver/Staley)?
+Alice in chains
+10
+
+Music: Artist/Band: Queen of the Slipstream (Morrison)?
+Van morrison
+10
+
+Music: Artist/Band: Questions (Farriss)?
+Inxs
+10
+
+Music: Artist/Band: Quiet (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Quit Playing Games (With My Heart) (Crichlow/Martin)?
+Backstreet boys
+10
+
+Music: Artist/Band: Rabo de Nube (Rodr?guez)?
+The pretenders
+10
+
+Music: Artist/Band: Radio Free Europe (Berry/Buck/Mills/Stipe)?
+R.e.m.
+10
+
+Music: Artist/Band: Radio Friendly Unit Shifter (Cobain)?
+Nirvana
+10
+
+Music: Artist/Band: Rag Doll - The?
+FourSeasons
+10
+
+Music: Artist/Band: Rain When I Die (Cantrell/Kinney/Staley/Starr)?
+Alice in chains
+10
+
+Music: Artist/Band: Raindrops + Sunshowers (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Rainy Days and Mondays (Nicholas/Williams)?
+The carpenters
+10
+
+Music: Artist/Band: Ramble Tamble (Fogerty)?
+Creedence clearwater revival
+10
+
+Music: Artist/Band: Rambling Pony (Green)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Randy Meisner, Bernie Leadon, Don Henley, Glen Fry were part of which band?
+The eagles
+10
+
+Music: Artist/Band: Rape Me (Cobain)?
+Nirvana
+10
+
+Music: Artist/Band: Raped and Freezin' (Bruce/Cooper)?
+Alice cooper
+10
+
+Music: Artist/Band: Rapid Roy (The Stock Car Boy) (Croce)?
+Jim croce
+10
+
+Music: Artist/Band: Rats?
+Pearl jam
+10
+
+Music: Artist/Band: Rattlesnake Shake (Green)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Rave On?
+Buddy Holly
+10
+
+Music: Artist/Band: Raw Power (Pop/Williamson)?
+Guns n' roses
+10
+
+Music: Artist/Band: Reach Out - The?
+FourTops
+10
+
+Music: Artist/Band: Read About It (Garrett/Hirst/Moginie)?
+Midnight oil
+10
+
+Music: Artist/Band: Real Woman (Dermer/Estefan/Estefan)?
+Gloria estefan
+10
+
+Music: Artist/Band: Real World (Thomas)?
+Matchbox 20
+10
+
+Music: Artist/Band: Reaon to Believe (Hardin)?
+Rod stewart
+10
+
+Music: Artist/Band: Rear View Mirror?
+Pearl jam
+10
+
+Music: Artist/Band: Reason (Hudson/King/Wells)?
+Celine dion
+10
+
+Music: Artist/Band: Recorded the album Tapestry?
+Carole king
+10
+
+Music: Artist/Band: Red Hill Mining Town (Bono/Clayton/Edge/Mullen)?
+U2
+10
+
+Music: Artist/Band: Red Mosquito (Pearl Jam/Vedder)?
+Pearl jam
+10
+
+Music: Artist/Band: Red Red Sun (Farriss/Farriss)?
+Inxs
+10
+
+Music: Artist/Band: Red Rubber Ball?
+Cyrkle
+10
+
+Music: Artist/Band: Red, Red Wine?
+Ub40
+10
+
+Music: Artist/Band: Redemption Song?
+Marley
+10
+
+Music: Artist/Band: Reflecting God ( Manson/Ramirez/Reznor)?
+Marilyn manson
+10
+
+Music: Artist/Band: Reflex (Lebon/Rhodes/Taylor/Taylor/Taylor)?
+Duran duran
+10
+
+Music: Artist/Band: Release (Ament/Gossard/Krusen/McCready/Vedder)?
+Pearl jam
+10
+
+Music: Artist/Band: Release the Pressure (Calhoun/Glover/Reid/Reid/Stewart/Wimbish)?
+Living colour
+10
+
+Music: Artist/Band: Remember Then - The?
+Earls
+10
+
+Music: Artist/Band: Renaissance Man (Garrett/Moginie/Rotsey)?
+Midnight oil
+10
+
+Music: Artist/Band: Renegades Of Funk (Baker/Bambaataa/Miller/Robie)?
+Rage against the machine
+10
+
+Music: Artist/Band: Respectable (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: Respectable?
+Mel & kim
+10
+
+Music: Artist/Band: Rest Stop (Thomas)?
+Matchbox 20
+10
+
+Music: Artist/Band: Revelation (Mother Earth) (Daisley/Osbourne/Rhoads)?
+Ozzy osbourne
+10
+
+Music: Artist/Band: Revoluci?n (Alonso)?
+Enrique iglesias
+10
+
+Music: Artist/Band: Revoluci?n (Blake/Escolar/Porter)?
+Ricky martin
+10
+
+Music: Artist/Band: Revolution - The?
+Beatles
+10
+
+Music: Artist/Band: Rhinoceros (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Rhinosaur (Cameron/Cornell)?
+Soundgarden
+10
+
+Music: Artist/Band: Rhythm Is Gonna Get You (Estefan)?
+Gloria estefan
+10
+
+Music: Artist/Band: Rhythm Is Gonna Get You (Estefan/Garcia)?
+Gloria estefan
+10
+
+Music: Artist/Band: Rhythm Nation (Harris/Jackson/Lewis)?
+Janet jackson
+10
+
+Music: Artist/Band: Rhythm of Love (Meine/Schenker)?
+Scorpions
+10
+
+Music: Artist/Band: Rhythm Of The Rain - The?
+Cascades
+10
+
+Music: Artist/Band: Richard Cory (Simon)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: Richard Thompson, Sandy Denny, Simon Nicol...?
+Fairport convention
+10
+
+Music: Artist/Band: Ride On (Scott/Young/Young)?
+Ac/dc
+10
+
+Music: Artist/Band: Ride the Clich? (DeLeo/Weiland)?
+Stone temple pilots
+10
+
+Music: Artist/Band: Ride the Lightning (Burton/Hetfield/Mustaine/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Riding on a Railroad (Taylor)?
+James taylor
+10
+
+Music: Artist/Band: Right Here Waiting?
+Richard marks
+10
+
+Music: Artist/Band: Right Next Door to Hell (Caltia/Rose/Stradlin')?
+Guns n' roses
+10
+
+Music: Artist/Band: Right on Time (Flea/Frusciante/Kiedis/Kiedis/Smith)?
+Red hot chili peppers
+10
+
+Music: Artist/Band: Right Turn (Cantrell)?
+Alice in chains
+10
+
+Music: Artist/Band: Righteous & The Wicked (Flea/Frusciante/Kiedis/Smith)?
+Red hot chili peppers
+10
+
+Music: Artist/Band: Rio (Lebon/Rhodes/Taylor/Taylor/Taylor)?
+Duran duran
+10
+
+Music: Artist/Band: Rip This Joint (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: Rival (Gossard)?
+Pearl jam
+10
+
+Music: Artist/Band: River Deep-Mountain High (Barry/Greenwich/Spector)?
+Celine dion
+10
+
+Music: Artist/Band: Road to Mandalay (Chambers/Williams)?
+Robbie williams
+10
+
+Music: Artist/Band: Road To Nowhere?
+Talking heads
+10
+
+Music: Artist/Band: Road Trippin' (Flea/Frusciante/Kiedis/Kiedis/Smith)?
+Red hot chili peppers
+10
+
+Music: Artist/Band: Robert Smith, Boris Williams, Laurence Tolhurst, Simon Gallup, Porl Thompson?
+The cure
+10
+
+Music: Artist/Band: Rock 'N' Roll Star (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: Rock & Roll Ain't Noise Pollution (Johnson/Young/Young)?
+Ac/dc
+10
+
+Music: Artist/Band: Rock & Roll Doctor (Butler/Iommi/Osbourne/Ward)?
+Black sabbath
+10
+
+Music: Artist/Band: Rock & Roll Singer (Scott/Young/Young)?
+Ac/dc
+10
+
+Music: Artist/Band: Rock And Roll Music?
+The beatles
+10
+
+Music: Artist/Band: Rock Around The Clock?
+Bill Haley & The Comets
+10
+
+Music: Artist/Band: Rock DJ (Andrews/Chambers/Paris/Pigford/Williams)?
+Robbie williams
+10
+
+Music: Artist/Band: Rock The Boat?
+The hues corporation
+10
+
+Music: Artist/Band: Rock You Like a Hurricane (Meine/Rarebell/Schenker)?
+Scorpions
+10
+
+Music: Artist/Band: Rocker (Scott/Young/Young)?
+Ac/dc
+10
+
+Music: Artist/Band: Rocket (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Rockin' Chair (Gallagher/Griffiths)?
+Oasis
+10
+
+Music: Artist/Band: Rockin' Robin?
+Bobby Day
+10
+
+Music: Artist/Band: Rocks Off (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: Rocky Racoon?
+The beatles
+10
+
+Music: Artist/Band: Rod Stewart, Ron Wood, Steve Marriot...?
+The faces
+10
+
+Music: Artist/Band: Roll It Over (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: Roll Over Beethoven?
+The beatles
+10
+
+Music: Artist/Band: Roll with It (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: Roller Derby Queen (Croce)?
+Jim croce
+10
+
+Music: Artist/Band: Romeo & Juliet?
+Dire straits
+10
+
+Music: Artist/Band: Romeo and Juliet (Knopfler)?
+Dire straits
+10
+
+Music: Artist/Band: Ronnie - The?
+Four Seasons
+10
+
+Music: Artist/Band: Room a Thousand Years Wide (Cameron/Thayil)?
+Soundgarden
+10
+
+Music: Artist/Band: Room for One More (Benante/Bush/Ian)?
+Anthrax
+10
+
+Music: Artist/Band: Rooster (Cantrell)?
+Alice in chains
+10
+
+Music: Artist/Band: Rope Burn (Elizondo/Harris/Jackson/Lewis)?
+Janet jackson
+10
+
+Music: Artist/Band: Rosemary (Bonet/Kravitz)?
+Lenny kravitz
+10
+
+Music: Artist/Band: Roses (Gillies/Johns)?
+Silverchair
+10
+
+Music: Artist/Band: Roses Are Red?
+Bobby Vinton
+10
+
+Music: Artist/Band: rosie & the ____
+Originals
+10
+
+Music: Artist/Band: Rotten Apples (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Rowland S. Howard, Genevieve McGuckin, Epic Soundtracks etc?
+These immortal souls
+10
+
+Music: Artist/Band: Ruby Tuesday (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: Run For Your Life?
+The beatles
+10
+
+Music: Artist/Band: Run Through the Jungle (Fogerty)?
+Creedence clearwater revival
+10
+
+Music: Artist/Band: Run to Me (Gibb/Gibb/Gibb)?
+Bee gees
+10
+
+Music: Artist/Band: Runaway (Harris/Jackson/Lewis)?
+Janet jackson
+10
+
+Music: Artist/Band: Running In The Family?
+Level 42
+10
+
+Music: Artist/Band: Running to Stand Still (Bono/Clayton/Edge/Mullen)?
+U2
+10
+
+Music: Artist/Band: Rusty Cage (Cornell)?
+Soundgarden
+10
+
+Music: Artist/Band: S Club Party?
+S club 7
+10
+
+Music: Artist/Band: S.A.T.O. (Daisley/Kerslake/Osbourne/Rhoads)?
+Ozzy osbourne
+10
+
+Music: Artist/Band: Sabbath Bloody Sabbath (Black Sabbath)?
+Black sabbath
+10
+
+Music: Artist/Band: Sacred and Profane (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Sacred Ground [#] (Calhoun/Glover/Reid/Stewart/Wimbish)?
+Living colour
+10
+
+Music: Artist/Band: Sad But True (Hetfield/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Sad Lisa?
+Cat stevens
+10
+
+Music: Artist/Band: Sad Songs (Say So Much)?
+Elton john
+10
+
+Music: Artist/Band: Said Sadly (Iha)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Sailing (Cross)?
+'n sync
+10
+
+Music: Artist/Band: Sailing (Sutherland)?
+Rod stewart
+10
+
+Music: Artist/Band: Sailing?
+Rod stewart
+10
+
+Music: Artist/Band: Saint Tropez (Child/Rosa)?
+Ricky martin
+10
+
+Music: Artist/Band: Sam?
+Olivia newton john
+10
+
+Music: Artist/Band: Samba Pa Ti (Santana)?
+Santana
+10
+
+Music: Artist/Band: Samba Pi Ta?
+Santana
+10
+
+Music: Artist/Band: Same Direction (Farriss/Hutchence)?
+Inxs
+10
+
+Music: Artist/Band: Samurai (Hynde)?
+The pretenders
+10
+
+Music: Artist/Band: Sarah Mclachlan played piano and sang on several tracks on their new album?
+Blue rodeo
+10
+
+Music: Artist/Band: Satan's Bed (Gossard)?
+Pearl jam
+10
+
+Music: Artist/Band: Satisfaction - The?
+Rolling Stones
+10
+
+Music: Artist/Band: Satisfaction (I Can't Get No) (Jagger/Richards)?
+Britney spears
+10
+
+Music: Artist/Band: Saturday Night (Frey/Henley/Leadon/Meisner)?
+Eagles
+10
+
+Music: Artist/Band: Saturday Night?
+Whigfield
+10
+
+Music: Artist/Band: Save a Prayer (Lebon/Rhodes/Taylor/Taylor/Taylor)?
+Duran duran
+10
+
+Music: Artist/Band: Save Me a Place (Buckingham)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Save The Last Dance For Me - The?
+Drifters
+10
+
+Music: Artist/Band: Save the Life of My Child (Simon)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: Save your kisses for me in 1976?
+Brotherhood of Man
+10
+
+Music: Artist/Band: Saved by the Bell (Gibb/Gibb/Gibb)?
+Bee gees
+10
+
+Music: Artist/Band: Savior (Flea/Frusciante/Kiedis/Smith)?
+Red hot chili peppers
+10
+
+Music: Artist/Band: Savoy Truffle?
+The beatles
+10
+
+Music: Artist/Band: Say Hey (Minogue)?
+Kylie minogue
+10
+
+Music: Artist/Band: Scar Tissue (Flea/Frusciante/Kiedis/Kiedis/Smith)?
+Red hot chili peppers
+10
+
+Music: Artist/Band: Scarborough Fair?
+Simon & garfunkel
+10
+
+Music: Artist/Band: Scarborough Fair/Canticle (Garfunkel/Simon)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: ScarboroughFair?
+Simon & garfunkel
+10
+
+Music: Artist/Band: Scary Monsters (And Super Creeps) (Bowie)?
+David bowie
+10
+
+Music: Artist/Band: Scentless Apprentice (Cobain/Grohl/Novoselic)?
+Nirvana
+10
+
+Music: Artist/Band: School's Out (Bruce/Buxton/Cooper/Dunaway/Smith)?
+Alice cooper
+10
+
+Music: Artist/Band: Scream in Blue (Garrett/Moginie/Rotsey)?
+Midnight oil
+10
+
+Music: Artist/Band: Scream Like a Baby (Bowie)?
+David bowie
+10
+
+Music: Artist/Band: Se a Cab? (Areas)?
+Santana
+10
+
+Music: Artist/Band: Sea Of Love?
+Phil Phillips
+10
+
+Music: Artist/Band: Sea of Sorrow (Cantrell)?
+Alice in chains
+10
+
+Music: Artist/Band: Searching for Madge (McVie)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Searching With My Good Eye Closed (Cornell)?
+Soundgarden
+10
+
+Music: Artist/Band: Second Guessing (Berry/Buck/Mills/Stipe)?
+R.e.m.
+10
+
+Music: Artist/Band: Second Hand News (Buckingham)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Secret Life of Arabia (Alomar/Bowie/Eno)?
+David bowie
+10
+
+Music: Artist/Band: Secret O' Life (Taylor)?
+James taylor
+10
+
+Music: Artist/Band: Section 5 (Bus to Bondi) (Garrett/Hirst/Moginie/Rotsey)?
+Midnight oil
+10
+
+Music: Artist/Band: Sects (Bonvoisin/Krief)?
+Anthrax
+10
+
+Music: Artist/Band: Seduces Me (Hill/Sheard)?
+Celine dion
+10
+
+Music: Artist/Band: See You In September - The?
+Happenings
+10
+
+Music: Artist/Band: Seek & Destroy (Hetfield/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Self Control?
+Laura brannigan
+10
+
+Music: Artist/Band: Send Me an Angel (Meine/Schenker)?
+Scorpions
+10
+
+Music: Artist/Band: Send Me An Angel?
+Scorpions
+10
+
+Music: Artist/Band: Sense of Doubt (Bowie)?
+David bowie
+10
+
+Music: Artist/Band: Sentimental Lady (Welch)?
+Fleetwood mac
+10
+
+Music: Artist/Band: September Morn?
+Neil diamond
+10
+
+Music: Artist/Band: Serve the Servants (Cobain)?
+Nirvana
+10
+
+Music: Artist/Band: Set Adrift on Memory Bliss (Cordes/Kemp)?
+Backstreet boys
+10
+
+Music: Artist/Band: Set the Ray to Jerry (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Seven Caged Tigers (DeLeo/Weiland)?
+Stone temple pilots
+10
+
+Music: Artist/Band: Seven Little Girls Sitting In The Back Seat?
+Paul Evans
+10
+
+Music: Artist/Band: Seven?
+Prince
+10
+
+Music: Artist/Band: Seventh Star (Iommi)?
+Black sabbath
+10
+
+Music: Artist/Band: Sex and Violence (DeLeo/Weiland)?
+Stone temple pilots
+10
+
+Music: Artist/Band: Sexy Sadie?
+The beatles
+10
+
+Music: Artist/Band: Sgt. Pepper's Lonely Hearts Club Band?
+The beatles
+10
+
+Music: Artist/Band: Sh-Boom - The?
+Chords
+10
+
+Music: Artist/Band: Shade (Gillies/Johns)?
+Silverchair
+10
+
+Music: Artist/Band: Shadows and Tall Trees (Bono/Clayton/Edge/Mullen)?
+U2
+10
+
+Music: Artist/Band: Shake a Leg (Johnson/Young/Young)?
+Ac/dc
+10
+
+Music: Artist/Band: Shake Your Bon-Bon?
+Ricky martin
+10
+
+Music: Artist/Band: Shake Your Hips (Harpo)?
+The rolling stones
+10
+
+Music: Artist/Band: Shake, Rattle And Roll?
+Bill Haley & The Comets
+10
+
+Music: Artist/Band: Shaker Maker (Backer/Cook/Davis/Gallagher/Greenaway)?
+Oasis
+10
+
+Music: Artist/Band: Shakermaker (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: Shaking Through (Berry/Buck/Mills/Stipe)?
+R.e.m.
+10
+
+Music: Artist/Band: Shame (Thomas)?
+Matchbox 20
+10
+
+Music: Artist/Band: Shape of My Heart (Martin/Miskovsky/Rami)?
+Backstreet boys
+10
+
+Music: Artist/Band: Share Frankie?
+Lymon
+10
+
+Music: Artist/Band: Sharing The Night Together?
+Dr hook
+10
+
+Music: Artist/Band: Sharp Dressed Man?
+Zz top
+10
+
+Music: Artist/Band: Shattered (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: She Bangs (Afanasieff/Child/Lopez/Monrig/Rosa/Sierra)?
+Ricky martin
+10
+
+Music: Artist/Band: She Bangs (Afanasieff/Child/Rosa)?
+Ricky martin
+10
+
+Music: Artist/Band: She Came In Through The Bathroom Window?
+The beatles
+10
+
+Music: Artist/Band: She Goes On (Finn)?
+Crowded house
+10
+
+Music: Artist/Band: She led the group Blue Angel before moving onto greater fame?
+Cyndi lauper
+10
+
+Music: Artist/Band: She Loves Me Not (Bordin/Gould/Patton)?
+Faith no more
+10
+
+Music: Artist/Band: She Loves You - The?
+Beatles
+10
+
+Music: Artist/Band: She Said, She Said?
+The beatles
+10
+
+Music: Artist/Band: She Smiled Sweetly (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: She Thinks I Still Care (Lipscomb)?
+James taylor
+10
+
+Music: Artist/Band: She's Always A Woman?
+Billy joel
+10
+
+Music: Artist/Band: She's Electric (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: She's Gone (Butler/Iommi/Osbourne/Ward)?
+Black sabbath
+10
+
+Music: Artist/Band: She's Got Balls (Scott/Young/Young)?
+Ac/dc
+10
+
+Music: Artist/Band: She's just 16 years old/Leave her alone/They said?
+Benny mardonez
+10
+
+Music: Artist/Band: She's Leaving Home?
+The beatles
+10
+
+Music: Artist/Band: She's Not There (Argent)?
+Santana
+10
+
+Music: Artist/Band: She's the One (Wallinger)?
+Robbie williams
+10
+
+Music: Artist/Band: She's The One?
+Robbie Williams
+10
+
+Music: Artist/Band: Shed a Little Light (Taylor)?
+James taylor
+10
+
+Music: Artist/Band: Sherry - The?
+Four Seasons
+10
+
+Music: Artist/Band: Shine a Light (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: Shine Like It Does (Farriss/Hutchence)?
+Inxs
+10
+
+Music: Artist/Band: Shining (Iommi)?
+Black sabbath
+10
+
+Music: Artist/Band: Shining Star (Carter/Dorough/Franciz/Lepont)?
+Backstreet boys
+10
+
+Music: Artist/Band: Shipyards of New Zealand (Garrett/Moginie)?
+Midnight oil
+10
+
+Music: Artist/Band: Shocked (Aitken/Aitken/Aitken/Stock/Stock/Waterman/Waterman)?
+Kylie minogue
+10
+
+Music: Artist/Band: Shoop?
+Salt n pepa
+10
+
+Music: Artist/Band: Shoot to Thrill (Johnson/Young/Young)?
+Ac/dc
+10
+
+Music: Artist/Band: Short Memory (Garrett/Hirst/Moginie)?
+Midnight oil
+10
+
+Music: Artist/Band: Shortest Straw (Hetfield/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Shot Down in Flames (Scott/Young/Young)?
+Ac/dc
+10
+
+Music: Artist/Band: Shot in Dark (Osbourne/Susan)?
+Ozzy osbourne
+10
+
+Music: Artist/Band: Shout - The?
+Isley Brothers
+10
+
+Music: Artist/Band: Show Me (Hynde)?
+The pretenders
+10
+
+Music: Artist/Band: Show Me Heaven?
+Maria mckee
+10
+
+Music: Artist/Band: Show Me the Meaning of Being Lonely (Crichlow/Martin)?
+Backstreet boys
+10
+
+Music: Artist/Band: Showbiz Blues (Green)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Shower the People (Taylor)?
+James taylor
+10
+
+Music: Artist/Band: Si Juras Regresar (Botija/Perez)?
+Enrique iglesias
+10
+
+Music: Artist/Band: Si Juras Regresar (P?rez-Botija)?
+Enrique iglesias
+10
+
+Music: Artist/Band: Si Tu Te Vas (Iglesias/Morales)?
+Enrique iglesias
+10
+
+Music: Artist/Band: Sick Things (Bruce/Ezrin)?
+Alice cooper
+10
+
+Music: Artist/Band: Sickman (Cantrell/Staley)?
+Alice in chains
+10
+
+Music: Artist/Band: Side O' the Road (Fogerty)?
+Creedence clearwater revival
+10
+
+Music: Artist/Band: Sidewinder Sleeps Tonite (Berry/Buck/Mills/Stipe)?
+R.e.m.
+10
+
+Music: Artist/Band: Sign of the Southern Cross (Butler/Dio/Iommi)?
+Black sabbath
+10
+
+Music: Artist/Band: Signed Sealed Delivered (I'm Yours)?
+Peter frampton
+10
+
+Music: Artist/Band: Silhouettes - The?
+Rays
+10
+
+Music: Artist/Band: Silver Gun Superman (DeLeo/DeLeo/Weiland)?
+Stone temple pilots
+10
+
+Music: Artist/Band: Silverfuck (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Simple Desultory Philippic (Or How I Was... (Simon)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: Simply Irresistable?
+Robert palmer
+10
+
+Music: Artist/Band: Since I Don't Have You - The?
+Skyliners
+10
+
+Music: Artist/Band: Since I Don't Have You (Beaumont/Rock)?
+Guns n' roses
+10
+
+Music: Artist/Band: Sincerely - The?
+Moonglows
+10
+
+Music: Artist/Band: Sing (Raposo)?
+The carpenters
+10
+
+Music: Artist/Band: Sing It Back?
+Moloko
+10
+
+Music: Artist/Band: Singer who had IRS problems; sold posessions to pay back taxes?
+Willie nelson
+10
+
+Music: Artist/Band: Singing for the Lonely (Chambers/Williams)?
+Robbie williams
+10
+
+Music: Artist/Band: Singing Winds, Crying Beasts (Carabello)?
+Santana
+10
+
+Music: Artist/Band: Sinister Purpose (Fogerty)?
+Creedence clearwater revival
+10
+
+Music: Artist/Band: Sir Psycho Sexy (Flea/Frusciante/Kiedis/Smith)?
+Red hot chili peppers
+10
+
+Music: Artist/Band: Sister (Kravitz)?
+Lenny kravitz
+10
+
+Music: Artist/Band: Sister Madly (Finn)?
+Crowded house
+10
+
+Music: Artist/Band: Sister Morphine (Faithfull/Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: Sisters Are Doin' It For Themselves?
+Eurythmics
+10
+
+Music: Artist/Band: Sisters of the Moon (Nicks)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Sittin' on Top of the World (Kravitz)?
+Lenny kravitz
+10
+
+Music: Artist/Band: Sitting (Stevens)?
+Cat stevens
+10
+
+Music: Artist/Band: Sitting on the dock of the bay?
+Ottis redding
+10
+
+Music: Artist/Band: Sitting Still (Berry/Buck/Mills/Stipe)?
+R.e.m.
+10
+
+Music: Artist/Band: Siva (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Skin Trade (Lebon/Rhodes/Taylor)?
+Duran duran
+10
+
+Music: Artist/Band: Slap Leather (Taylor)?
+James taylor
+10
+
+Music: Artist/Band: Slave (Gillies/Johns)?
+Silverchair
+10
+
+Music: Artist/Band: Slaves & Bulldozers (Cornell/Shepherd)?
+Soundgarden
+10
+
+Music: Artist/Band: Sleep (Garrett/Hirst/Moginie)?
+Midnight oil
+10
+
+Music: Artist/Band: Sleep Now in the Fire (Morello/Rocha/Wilk)?
+Rage against the machine
+10
+
+Music: Artist/Band: Sleight of Hand (Ament/Vedder)?
+Pearl jam
+10
+
+Music: Artist/Band: Slide Away (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: Slim Jim Phillips & Lee Rocker?
+Stray cats
+10
+
+Music: Artist/Band: Slither (Hammett/Hetfield/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Sliver (Cobain)?
+Nirvana
+10
+
+Music: Artist/Band: Slowburn (Gabriel)?
+Peter gabriel
+10
+
+Music: Artist/Band: Smile (Ament/Vedder)?
+Pearl jam
+10
+
+Music: Artist/Band: Smoke Gets In Your Eyes - The?
+Platters
+10
+
+Music: Artist/Band: Smokestack Lightning (Howlin' Wolf)?
+Soundgarden
+10
+
+Music: Artist/Band: Smoky Places - The?
+Corsairs
+10
+
+Music: Artist/Band: Snail (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Snoop Doggy Dogg's mentor?
+Dr dre
+10
+
+Music: Artist/Band: Snowblind (Butler/Iommi/Osbourne/Ward)?
+Black sabbath
+10
+
+Music: Artist/Band: So Far Away (Knopfler)?
+Dire straits
+10
+
+Music: Artist/Band: So Long, Frank Lloyd Wright (Simon)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: So Much In Love - The?
+Tymes
+10
+
+Music: Artist/Band: So ya/Thought ya/Might like to/Go to the show?
+Pink floyd
+10
+
+Music: Artist/Band: Social Parasite (Cantrell)?
+Alice in chains
+10
+
+Music: Artist/Band: Soda Pop (Bassie/White)?
+Britney spears
+10
+
+Music: Artist/Band: Solace of You (Glover/Reid)?
+Living colour
+10
+
+Music: Artist/Band: Soldier Boy - The?
+Shirelles
+10
+
+Music: Artist/Band: Solo en Ti (Only You) (Clarke)?
+Enrique iglesias
+10
+
+Music: Artist/Band: Solsbury Hill (Gabriel)?
+Peter gabriel
+10
+
+Music: Artist/Band: Soma (Corgan/Iha)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Some Are [#] (Bowie)?
+David bowie
+10
+
+Music: Artist/Band: Some Folks (Cooper/Ezrin/Gordon)?
+Alice cooper
+10
+
+Music: Artist/Band: Some Girls (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: Some Guys Have All The Luck?
+Robert palmer
+10
+
+Music: Artist/Band: Some Kind of Bliss (Bradfield/Minogue/Moore)?
+Kylie minogue
+10
+
+Music: Artist/Band: Some Might Say (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: Somebody to Love (Mercury)?
+George michael
+10
+
+Music: Artist/Band: Somebody's out there/Somewhere/Waiting for someone to come their way?
+Triumph
+10
+
+Music: Artist/Band: Somebody's Trying to Tell Me Something (Garrett/Gifford/Hirst/Moginie/Rotsey)?
+Midnight oil
+10
+
+Music: Artist/Band: Something - The?
+Beatles
+10
+
+Music: Artist/Band: Something About The Way You Look Tonight?
+Elton john
+10
+
+Music: Artist/Band: Something Happened to Me Yesterday (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: Something in the Way (Cobain)?
+Nirvana
+10
+
+Music: Artist/Band: Something in the Way She Moves (Taylor)?
+James taylor
+10
+
+Music: Artist/Band: Something In The Way She Moves?
+James taylor
+10
+
+Music: Artist/Band: Something So Strong (Finn/Froom)?
+Crowded house
+10
+
+Music: Artist/Band: Sometimes (Elofsson)?
+Britney spears
+10
+
+Music: Artist/Band: Sometimes (Mancini/Mancini)?
+The carpenters
+10
+
+Music: Artist/Band: Sometimes (Vedder)?
+Pearl jam
+10
+
+Music: Artist/Band: Sometimes?
+Erasure
+10
+
+Music: Artist/Band: Somewhere (Shepherd)?
+Soundgarden
+10
+
+Music: Artist/Band: Somewhere They Can't Find Me (Simon)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: Somos la Semilla (Blake/Porter/Tena)?
+Ricky martin
+10
+
+Music: Artist/Band: Song Black Betty?
+Ram Jam
+10
+
+Music: Artist/Band: Song for the Asking (Simon)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: Songbird (McVie)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Sons of the Silent Age (Bowie)?
+David bowie
+10
+
+Music: Artist/Band: Soon Forget (Ukelele/Vedder)?
+Pearl jam
+10
+
+Music: Artist/Band: Soul And Inspiration - The?
+Righteous Brothers
+10
+
+Music: Artist/Band: Soul Sacrifice (Brown/Malone/Rolie/Santana)?
+Santana
+10
+
+Music: Artist/Band: Soul Survivor (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: Sound and Vision (Bowie)?
+David bowie
+10
+
+Music: Artist/Band: Sound of Silence (Simon)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: Sounds Of Silence?
+Simon & Garfunkel
+10
+
+Music: Artist/Band: Sour Girl (DeLeo/Weiland)?
+Stone temple pilots
+10
+
+Music: Artist/Band: South of the Border (Chambers/Williams)?
+Robbie williams
+10
+
+Music: Artist/Band: Southern Central Rain (I'm Sorry) (Berry/Buck/Mills/Stipe)?
+R.e.m.
+10
+
+Music: Artist/Band: Space Cowboy (Yippie-Yi-Yay) (Chasez/Daymond/Greggs/Lopes/Willis)?
+'n sync
+10
+
+Music: Artist/Band: Spaceboy (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Spanish Eyes (Fromm/Linzer)?
+Backstreet boys
+10
+
+Music: Artist/Band: Spare Me a Little of Your Love (McVie)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Spark in the Dark (Child/Cooper)?
+Alice cooper
+10
+
+Music: Artist/Band: Sparrow (Simon)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: Special (Elizondo/Harris/Jackson/Lewis)?
+Janet jackson
+10
+
+Music: Artist/Band: Speed of Life (Bowie)?
+David bowie
+10
+
+Music: Artist/Band: Speedo - The?
+Cadillacs
+10
+
+Music: Artist/Band: Spin the Black Circle?
+Pearl jam
+10
+
+Music: Artist/Band: Spinning the Wheel (Douglas/Michael)?
+George michael
+10
+
+Music: Artist/Band: Spoonman (Cornell)?
+Soundgarden
+10
+
+Music: Artist/Band: Squealer (Scott/Young/Young)?
+Ac/dc
+10
+
+Music: Artist/Band: Stain (Cobain)?
+Nirvana
+10
+
+Music: Artist/Band: Stairway to Heaven - Whole Lotta Love?
+Led zeppelin
+10
+
+Music: Artist/Band: Stairway To Heaven?
+Led Zeppelin
+10
+
+Music: Artist/Band: Stand & Deliver?
+Adam & the ants
+10
+
+Music: Artist/Band: Stand by Me (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: Stand By Me?
+Ben e king
+10
+
+Music: Artist/Band: Stand by My Woman (Hirsch/Kravitz/Krizan/Pasch)?
+Lenny kravitz
+10
+
+Music: Artist/Band: Stand in Line (Garrett/Hirst/Moginie/Rotsey)?
+Midnight oil
+10
+
+Music: Artist/Band: Stand Inside Your Love (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Stand Up?
+Jethro tull
+10
+
+Music: Artist/Band: Star Me Kitten (Berry/Buck/Mills/Stipe)?
+R.e.m.
+10
+
+Music: Artist/Band: Star People 97 (Michael)?
+George michael
+10
+
+Music: Artist/Band: Stardust?
+Billy Ward & His Dominoes
+10
+
+Music: Artist/Band: Stars?
+Simply red
+10
+
+Music: Artist/Band: Starting Over?
+John Lennon
+10
+
+Music: Artist/Band: Stay Another Day?
+East 17
+10
+
+Music: Artist/Band: Stay With Me [live] (Stewart/Wood)?
+Rod stewart
+10
+
+Music: Artist/Band: Stay Young (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: Stay?
+Shakespear's sister
+10
+
+Music: Artist/Band: Stay/With me/My love/I hope you'll always be/Right here by my side/?
+Genesis
+10
+
+Music: Artist/Band: Stayin' Alive (Gibb/Gibb/Gibb)?
+Bee gees
+10
+
+Music: Artist/Band: Steal Away (The Night) (Daisley/Osbourne/Rhoads)?
+Ozzy osbourne
+10
+
+Music: Artist/Band: Steamroller Blues (Taylor)?
+James taylor
+10
+
+Music: Artist/Band: Step Back in Time (Aitken/Aitken/Aitken/Stock/Stock/Waterman/Waterman)?
+Kylie minogue
+10
+
+Music: Artist/Band: Step By Step - The?
+Crests
+10
+
+Music: Artist/Band: Step Out (Crosby/Gallagher/Moy/Wonder)?
+Oasis
+10
+
+Music: Artist/Band: Steven (Cooper/Ezrin)?
+Alice cooper
+10
+
+Music: Artist/Band: Still Love You (Stewart)?
+Rod stewart
+10
+
+Music: Artist/Band: Still Loving You (Meine/Schenker)?
+Scorpions
+10
+
+Music: Artist/Band: Still Remains (DeLeo/DeLeo/Weiland)?
+Stone temple pilots
+10
+
+Music: Artist/Band: Still?
+Lionel richie
+10
+
+Music: Artist/Band: Stone Cold Sober (Cropper/Stewart)?
+Rod stewart
+10
+
+Music: Artist/Band: Stop (Doucette/Thomas)?
+Matchbox 20
+10
+
+Music: Artist/Band: Stop Breaking Down (Traditional)?
+The rolling stones
+10
+
+Music: Artist/Band: Stop Draggin' Around (Kravitz)?
+Lenny kravitz
+10
+
+Music: Artist/Band: Stop Messin' Round (Adams/Green)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Stop! In The Name Of Love - The?
+Supremes
+10
+
+Music: Artist/Band: Stories for Boys (Bono/Clayton/Edge/Mullen)?
+U2
+10
+
+Music: Artist/Band: Storms (Nicks)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Story Untold - The?
+Nutmegs
+10
+
+Music: Artist/Band: Strange (Berry/Buck/Mills/Stripe)?
+R.e.m.
+10
+
+Music: Artist/Band: Strange Desire (Farriss/Hutchence)?
+Inxs
+10
+
+Music: Artist/Band: Street Fight (Bruce/Buxton/Cooper/Dunaway/Smith)?
+Alice cooper
+10
+
+Music: Artist/Band: Stripsearch (Bordin/Hudson/Patton)?
+Faith no more
+10
+
+Music: Artist/Band: Strong (Barry/Bricusse/Chambers/Williams)?
+Robbie williams
+10
+
+Music: Artist/Band: Strong Enough?
+Cher
+10
+
+Music: Artist/Band: Stronger (Martin/Rami)?
+Britney spears
+10
+
+Music: Artist/Band: Stupid Girl (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: Subterraneans (Bowie)?
+David bowie
+10
+
+Music: Artist/Band: Suck my Kiss - Breaking the Girl?
+Red hot chili peppers
+10
+
+Music: Artist/Band: Suck My Kiss (Flea/Frusciante/Kiedis/Smith)?
+Red hot chili peppers
+10
+
+Music: Artist/Band: Suffer (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Sugar (Kravitz)?
+Lenny kravitz
+10
+
+Music: Artist/Band: Sugar Sugar - The?
+Archies
+10
+
+Music: Artist/Band: Suicidal Dream (Johns)?
+Silverchair
+10
+
+Music: Artist/Band: Suicide Solution (Daisley/Osbourne/Rhoads)?
+Ozzy osbourne
+10
+
+Music: Artist/Band: Sultans of Swing (Knopfler)?
+Dire straits
+10
+
+Music: Artist/Band: Summer Holiday?
+Cliff richard
+10
+
+Music: Artist/Band: Summer Nights?
+Olivia newton john & john travolta
+10
+
+Music: Artist/Band: Summer Sun?
+Texas
+10
+
+Music: Artist/Band: Sun Is Burning (Campbell)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: Sun Is Shining?
+Bob marley vs funkstar de luxe
+10
+
+Music: Artist/Band: Sun Is Shinning (James)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Sun King?
+The beatles
+10
+
+Music: Artist/Band: Sun on the Moon (Taylor)?
+James taylor
+10
+
+Music: Artist/Band: Sunday Kind Of Love - The?
+Harptones
+10
+
+Music: Artist/Band: Sunday Morning Call (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: Sunny Side of Heaven (Kirwan)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Sunshine?
+Gabrielle
+10
+
+Music: Artist/Band: Supernaut (Butler/Iommi/Osbourne/Ward)?
+Black sabbath
+10
+
+Music: Artist/Band: Supersonic (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: Superstar (Bramlett/Russell)?
+The carpenters
+10
+
+Music: Artist/Band: Supreme (Chambers/Fekaris/Perren/Williams)?
+Robbie williams
+10
+
+Music: Artist/Band: Surfer Girl - The?
+Beach Boys
+10
+
+Music: Artist/Band: Surfin' Usa - The?
+Beach Boys
+10
+
+Music: Artist/Band: Surfin' USA?
+The beach boys
+10
+
+Music: Artist/Band: Surfing USA?
+Beach boys
+10
+
+Music: Artist/Band: Surrender (Dermer/Galdo/Vigil)?
+Gloria estefan
+10
+
+Music: Artist/Band: Swamp Song (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: Sway (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: Swedish duo, Marie Fredriksson and Per Gessle?
+Roxette
+10
+
+Music: Artist/Band: Sweet Baby James (Taylor)?
+James taylor
+10
+
+Music: Artist/Band: Sweet Baby James?
+James taylor
+10
+
+Music: Artist/Band: Sweet Black Angel (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: Sweet Caroline?
+Neil diamond
+10
+
+Music: Artist/Band: Sweet Dreams?
+Eurythmics
+10
+
+Music: Artist/Band: Sweet Leaf (Butler/Iommi/Osbourne/Ward)?
+Black sabbath
+10
+
+Music: Artist/Band: Sweet Little 16?
+Chuck Berry
+10
+
+Music: Artist/Band: Sweet Little Rock & Roller (Berry)?
+Rod stewart
+10
+
+Music: Artist/Band: Sweet Sweet (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Sweet Thing (Morrison)?
+Van morrison
+10
+
+Music: Artist/Band: Sweet Virginia (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: Sweet, Sweet Smile (Newton/Young)?
+The carpenters
+10
+
+Music: Artist/Band: Sweetness Follows (Berry/Buck/Mills/Stipe)?
+R.e.m.
+10
+
+Music: Artist/Band: Sweets For My Sweet?
+The searchers
+10
+
+Music: Artist/Band: Switch Opens (Cornell/Shepherd)?
+Soundgarden
+10
+
+Music: Artist/Band: Symptom of the Universe (Black Sabbath)?
+Black sabbath
+10
+
+Music: Artist/Band: T.L.C.A.S.A.P?
+Alabama
+10
+
+Music: Artist/Band: T.N.T. (Scott/Young/Young)?
+Ac/dc
+10
+
+Music: Artist/Band: Take It Easy (Browne/Frey)?
+Eagles
+10
+
+Music: Artist/Band: Take It to the Limit (Frey/Henley/Meisner)?
+Eagles
+10
+
+Music: Artist/Band: Take Me Home (Aller/Esty)?
+Cher
+10
+
+Music: Artist/Band: Take Me With You (Chancler/Coster)?
+Santana
+10
+
+Music: Artist/Band: Take On Me?
+A-ha
+10
+
+Music: Artist/Band: Talk About the Passion (Berry/Buck/Mills/Stipe)?
+R.e.m.
+10
+
+Music: Artist/Band: Talk Tonight (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: Talkin' Loud and Sayin' Nothing (Brown/Byrd)?
+Living colour
+10
+
+Music: Artist/Band: Tall Trees (Finn/Finn)?
+Crowded house
+10
+
+Music: Artist/Band: Target Audience ( Manson)?
+Marilyn manson
+10
+
+Music: Artist/Band: Tarkus?
+Emerson lake and palmer
+10
+
+Music: Artist/Band: Taste It (Farriss/Hutchence)?
+Inxs
+10
+
+Music: Artist/Band: Taxman?
+The beatles
+10
+
+Music: Artist/Band: Te Extra?o, Te Olvido, Te Amo (Lara)?
+Ricky martin
+10
+
+Music: Artist/Band: Teardrops?
+Lee Andrews & The Hearts
+10
+
+Music: Artist/Band: Tearin' Up My Heart (Lundin/Martin)?
+'n sync
+10
+
+Music: Artist/Band: Tears Of A Clown?
+Smokey Robinson & The Miracles
+10
+
+Music: Artist/Band: Tears on My Pillow (Bradford/Lewis)?
+Kylie minogue
+10
+
+Music: Artist/Band: Tease Me, Please Me (Jabs/Meine/Rarebell/Vallance)?
+Scorpions
+10
+
+Music: Artist/Band: Teaser and the Firecat?
+Cat stevens
+10
+
+Music: Artist/Band: Teddy Bear?
+Elvis Presley
+10
+
+Music: Artist/Band: teenage dirtbag?
+Wheatus
+10
+
+Music: Artist/Band: Teenage Wildlife (Bowie)?
+David bowie
+10
+
+Music: Artist/Band: Tell Him - The?
+Exciters
+10
+
+Music: Artist/Band: Tell Him (Afanasieff/Foster/Thompson)?
+Celine dion
+10
+
+Music: Artist/Band: Tell Me Are You Tired (Chancler/Coster)?
+Santana
+10
+
+Music: Artist/Band: Tell Me the Truth (Garrett/Moginie)?
+Midnight oil
+10
+
+Music: Artist/Band: Tell Me What You See?
+The beatles
+10
+
+Music: Artist/Band: Temple of the Dog was formed to pay tribute to the leader of this ex-band?
+Mother love bone
+10
+
+Music: Artist/Band: Temptation Eyes - The?
+Grass Roots
+10
+
+Music: Artist/Band: Ten Commandments Of Love - The?
+Moonglows
+10
+
+Music: Artist/Band: Tender?
+Blur
+10
+
+Music: Artist/Band: Tequila Sunrise (Frey/Henley)?
+Eagles
+10
+
+Music: Artist/Band: Tequila Sunrise?
+Eagles
+10
+
+Music: Artist/Band: Testify (De La Rocha/Morello/Wilk)?
+Rage against the machine
+10
+
+Music: Artist/Band: That don't impress me much' a hit in 1999?
+Shania Twain
+10
+
+Music: Artist/Band: That Don't Impress Me Much?
+Shania twain
+10
+
+Music: Artist/Band: that Juliana Hatfield was in before The Juliana Hatfield Three?
+Blake babies
+10
+
+Music: Artist/Band: That Lonesome Road (Grolnick/Taylor)?
+James taylor
+10
+
+Music: Artist/Band: That'll Be The Day?
+Buddy holly
+10
+
+Music: Artist/Band: That's All for Everyone (Buckingham)?
+Fleetwood mac
+10
+
+Music: Artist/Band: That's Enough for Me (Buckingham)?
+Fleetwood mac
+10
+
+Music: Artist/Band: That's My Desire - The?
+Channels
+10
+
+Music: Artist/Band: That's My Desire?
+Dion & The Belmonts
+10
+
+Music: Artist/Band: That's the Way It Is (Carlsson/Lundin/Martin)?
+Celine dion
+10
+
+Music: Artist/Band: That's the Way Love Goes (Harris/Jackson/Lewis)?
+Janet jackson
+10
+
+Music: Artist/Band: That's What I Call Love (Finn/Hester)?
+Crowded house
+10
+
+Music: Artist/Band: That's When I'll Stop Loving You (Warren)?
+'n sync
+10
+
+Music: Artist/Band: The 59th Street Bridge Song?
+Simon & garfunkel
+10
+
+Music: Artist/Band: THE AIR THAT I BREATHE?
+The hollies
+10
+
+Music: Artist/Band: The Angels Listened In - The?
+Crests
+10
+
+Music: Artist/Band: The Balltrap (Stewart)?
+Rod stewart
+10
+
+Music: Artist/Band: The Chain (Buckingham/Fleetwood/McVie/McVie/Nicks)?
+Fleetwood mac
+10
+
+Music: Artist/Band: the Christmas number one in 1997?
+Spice girls
+10
+
+Music: Artist/Band: The Closer You Are - The?
+Channels
+10
+
+Music: Artist/Band: The Continuing Story of Bungalow Bill?
+The beatles
+10
+
+Music: Artist/Band: The Day I Tried to Live (Cornell)?
+Soundgarden
+10
+
+Music: Artist/Band: the emotional song the little white dove that cried?
+Johnny ray
+10
+
+Music: Artist/Band: The End?
+The beatles
+10
+
+Music: Artist/Band: The First Cut Is the Deepest (Stevens)?
+Rod stewart
+10
+
+Music: Artist/Band: The Fool On The Hill?
+The beatles
+10
+
+Music: Artist/Band: The Ghost (Welch)?
+Fleetwood mac
+10
+
+Music: Artist/Band: the grease theme?
+John travolta & olivia newton john
+10
+
+Music: Artist/Band: The Great Pretender - The?
+Platters
+10
+
+Music: Artist/Band: The Groove is a new fanzine directed toward fans of this English pop group?
+Duran duran
+10
+
+Music: Artist/Band: The guitarist who replaced C.C. DeVille in Poison for Native Tongue?
+Ritchie kotzen
+10
+
+Music: Artist/Band: the hit 'mister bass man'?
+Johnny cymbal
+10
+
+Music: Artist/Band: the hit the banana song?
+Harry belafonte
+10
+
+Music: Artist/Band: The Kentucky ____
+Headhunters
+10
+
+Music: Artist/Band: The Lion Sleeps Tonight - The?
+Tokens
+10
+
+Music: Artist/Band: The Long And Winding Road - The?
+Beatles
+10
+
+Music: Artist/Band: The Long And Winding Road?
+The beatles
+10
+
+Music: Artist/Band: The members are T-Boz, Left Eye, and Chili?
+Tlc
+10
+
+Music: Artist/Band: The Miracle Of Love?
+Eurythmics
+10
+
+Music: Artist/Band: The New Kids on the Block of the '70s?
+The bay city rollers
+10
+
+Music: Artist/Band: The Next Time?
+Cliff richard
+10
+
+Music: Artist/Band: The Night Before?
+The beatles
+10
+
+Music: Artist/Band: the oscar winning song The Windmills of Your Mind?
+Noel harrison
+10
+
+Music: Artist/Band: The phone rings in the middle of the night my father yells 'what you gonna do with your life?'?
+Cyndi Lauper
+10
+
+Music: Artist/Band: The Power Of Love?
+Frankie goes to hollywood
+10
+
+Music: Artist/Band: The Price Of Love?
+Bryan ferry
+10
+
+Music: Artist/Band: The Shoop Shoop Song (It's In His Kiss)?
+Cher
+10
+
+Music: Artist/Band: The Shoop Shoop Song?
+Cher
+10
+
+Music: Artist/Band: The solution to a problem?
+The cure
+10
+
+Music: Artist/Band: the song 'jack your body' in 1987?
+Steve 'silk' hurley
+10
+
+Music: Artist/Band: the song from the Disney movie 'Can You Feel The Love Tonight?
+Elton john
+10
+
+Music: Artist/Band: the song the sun aint gonna shine anymore?
+The walker brothers
+10
+
+Music: Artist/Band: the songs 'hands?
+Jewel
+10
+
+Music: Artist/Band: The Sound Of Silence?
+Simon & garfunkel
+10
+
+Music: Artist/Band: The Sun Ain't Gonna Shine Anymore?
+The walker brothers
+10
+
+Music: Artist/Band: The sun goes down/The night rolls in/You can feel it starting/All over again?
+Glenn frey
+10
+
+Music: Artist/Band: the theme from mahogany?
+Diana ross
+10
+
+Music: Artist/Band: the theme song for 'chico and the man'?
+Jose feliciano
+10
+
+Music: Artist/Band: the theme song for baretta?
+Sammy davis jr
+10
+
+Music: Artist/Band: the theme song for chico & the man?
+Jose feliciano
+10
+
+Music: Artist/Band: the theme song to goldfinger?
+Shirley bassey
+10
+
+Music: Artist/Band: the theme tune to Ghostbusters?
+Ray parker junior
+10
+
+Music: Artist/Band: the theme tune to moonraker?
+Shirley bassey
+10
+
+Music: Artist/Band: the theme tune to the james bond film tomorrow never dies?
+Sheryl crow
+10
+
+Music: Artist/Band: the theme tune to the James Bond movie, The Man with the Golden Gun?
+Lulu
+10
+
+Music: Artist/Band: the theme tune to the latest James Bond film 'Tornorrow never dies'?
+Sheryl crow
+10
+
+Music: Artist/Band: The Things I Love - The?
+Fidelitys
+10
+
+Music: Artist/Band: the title song and appeared in the film to sir with love?
+Lulu
+10
+
+Music: Artist/Band: the title song to Goldfinger?
+Shirley bassey
+10
+
+Music: Artist/Band: the title theme of the james bond film a view to a kill?
+Duran duran
+10
+
+Music: Artist/Band: the title theme of the james bond film the living daylights?
+Aha
+10
+
+Music: Artist/Band: The Tracks Of My Tears?
+Smokey robinson & the miracles
+10
+
+Music: Artist/Band: The Wild Side of Life (Carter/Warren W)?
+Rod stewart
+10
+
+Music: Artist/Band: The Wind - The?
+Jesters
+10
+
+Music: Artist/Band: The Word?
+The beatles
+10
+
+Music: Artist/Band: Their Masterpiece has been turned into a watered down musical?
+The who
+10
+
+Music: Artist/Band: Their one hit wonder was later butchered by Tesla?
+Five man electrical band
+10
+
+Music: Artist/Band: Their Red and Blue compilation CDs were remastered and released in 1993?
+Beatles
+10
+
+Music: Artist/Band: Them Bones - Rooster - Dirt?
+Alice in chains
+10
+
+Music: Artist/Band: Them Bones (Cantrell)?
+Alice in chains
+10
+
+Music: Artist/Band: Theme From A Summer Place?
+Percy Faith
+10
+
+Music: Artist/Band: Then He Kissed Me - The?
+Crystals
+10
+
+Music: Artist/Band: Then You Can Tell Me Good-Bye - The?
+Casinos
+10
+
+Music: Artist/Band: Then You Look at Me (Horner/Jennings)?
+Celine dion
+10
+
+Music: Artist/Band: There Goes God (Finn/Finn)?
+Crowded house
+10
+
+Music: Artist/Band: There Goes My Baby - The?
+Drifters
+10
+
+Music: Artist/Band: There Must Be An Angel (Playing With My Heart)?
+Eurythmics
+10
+
+Music: Artist/Band: There's a Kind of Hush (ReedmLes/Stephens)?
+The carpenters
+10
+
+Music: Artist/Band: There's A Moon Out Tonight - The?
+Capris
+10
+
+Music: Artist/Band: There's A Place?
+The beatles
+10
+
+Music: Artist/Band: There's Gonna Be Some Rockin' (Scott/Young/Young)?
+Ac/dc
+10
+
+Music: Artist/Band: There's so many things/You should have told her/But night after night/?
+Eagles
+10
+
+Music: Artist/Band: These Are Happy Times [#] (Calhoun/Glover/Reid/Wimbish)?
+Living colour
+10
+
+Music: Artist/Band: These Dreams (Chambers/Williams)?
+Robbie williams
+10
+
+Music: Artist/Band: These Dreams (Croce)?
+Jim croce
+10
+
+Music: Artist/Band: They called it Paradise/I don't know why/Somebody laid the mountains low?
+Eagles
+10
+
+Music: Artist/Band: They originated the folk music craze of the early 1960s?
+Kingston trio
+10
+
+Music: Artist/Band: They went searching in 1957?
+The coasters
+10
+
+Music: Artist/Band: They were originally know as the Bangs?
+The bangles
+10
+
+Music: Artist/Band: They're Red Hot (Johnson)?
+Red hot chili peppers
+10
+
+Music: Artist/Band: Thin Air (Gossard)?
+Pearl jam
+10
+
+Music: Artist/Band: Thin Line Between Love and Hate (Members/Poindexter/Poindexter)?
+The pretenders
+10
+
+Music: Artist/Band: Thing That Should Not Be (Hammett/Hetfield/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Things We Said Today?
+The beatles
+10
+
+Music: Artist/Band: Think (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: Think About Me (McVie)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Think For Yourself?
+The beatles
+10
+
+Music: Artist/Band: Thinkin' About You (Bassie/White)?
+Britney spears
+10
+
+Music: Artist/Band: Thirty-Three (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: This 70's/80's band isn't the Air National Guard. They're just all out of love?
+Air supply
+10
+
+Music: Artist/Band: This band's four lettered name was meant to be phonetic. (Hint- Kick)?
+Inxs
+10
+
+Music: Artist/Band: This band's name is an echo?
+The the
+10
+
+Music: Artist/Band: This band's name is supposedly the band members' code for marijuana?
+Green day
+10
+
+Music: Artist/Band: This Boy?
+The beatles
+10
+
+Music: Artist/Band: This group has had 4 remakes hit top ten, with two going to #1?
+Ub40
+10
+
+Music: Artist/Band: This group named itself after an 18th century agronomist?
+Jethro tull
+10
+
+Music: Artist/Band: This group's name comes from a term used for a 1911 firetruck?
+Reo speedwagon
+10
+
+Music: Artist/Band: This group's name was inspired by reports of Sinatras move to the film industry?
+Frankie goes to hollywood
+10
+
+Music: Artist/Band: This group's second album is titled with a Chinese character?
+Stone temple pilots
+10
+
+Music: Artist/Band: This I Promise You (Marx)?
+'n sync
+10
+
+Music: Artist/Band: This I Swear - The?
+Skyliners
+10
+
+Music: Artist/Band: This Is My Love - The?
+Passions
+10
+
+Music: Artist/Band: This is the Way We Roll?
+Hammer
+10
+
+Music: Artist/Band: This Is Tomorrow?
+Bryan ferry
+10
+
+Music: Artist/Band: This LA band's debut album was produced by Ric Ocasek?
+Weezer
+10
+
+Music: Artist/Band: This Little Pig (Calhoun/Glover/Reid/Wimbish)?
+Living colour
+10
+
+Music: Artist/Band: This Magic Moment - The?
+Drifters
+10
+
+Music: Artist/Band: This Maniac Is in Love With You (Child/Cooper/Held/Teeley)?
+Alice cooper
+10
+
+Music: Artist/Band: This Masquerade (Russell)?
+The carpenters
+10
+
+Music: Artist/Band: This Old Heart of Mine (Dozier/Holland/Holland)?
+Rod stewart
+10
+
+Music: Artist/Band: This pop star at one time recorded as David Jones & the King Bees?
+David bowie
+10
+
+Music: Artist/Band: This San Diego band was initially accused of sounding too much like Pearl Jam?
+Stone temple pilots
+10
+
+Music: Artist/Band: this singer-actress got her start in a gays' bath house in New York City?
+Bette midler
+10
+
+Music: Artist/Band: This Time (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: This Time (Farriss)?
+Inxs
+10
+
+Music: Artist/Band: This Velvet Glove (Flea/Frusciante/Kiedis/Smith)?
+Red hot chili peppers
+10
+
+Music: Artist/Band: Thorn In My Side?
+Eurythmics
+10
+
+Music: Artist/Band: Those Good Old Dreams (Bettis/Carpenter)?
+The carpenters
+10
+
+Music: Artist/Band: Thoughts on a Grey Day (Mrs. Scarrot)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Three Sisters (Farriss)?
+Inxs
+10
+
+Music: Artist/Band: Three Time Loser (Stewart)?
+Rod stewart
+10
+
+Music: Artist/Band: Three Times A Lady?
+Lionel richie
+10
+
+Music: Artist/Band: Through the Years (Ball/Minogue/Vauk)?
+Kylie minogue
+10
+
+Music: Artist/Band: Thumbelina (Hynde)?
+The pretenders
+10
+
+Music: Artist/Band: Thunder Rolls?
+Garth brooks
+10
+
+Music: Artist/Band: Ticket to Ride (Lennon/McCartney)?
+The carpenters
+10
+
+Music: Artist/Band: Tie A Yellow Ribbon 'Round The Old Oak Tree?
+Tony Orlando
+10
+
+Music: Artist/Band: Tighter & Tighter (Cornell)?
+Soundgarden
+10
+
+Music: Artist/Band: Till - The?
+Angels
+10
+
+Music: Artist/Band: Till Then - The?
+Classics
+10
+
+Music: Artist/Band: Till There Was You?
+The beatles
+10
+
+Music: Artist/Band: Time (Carter/Dorough/Littrel/McLean/Richardson)?
+Backstreet boys
+10
+
+Music: Artist/Band: Time After Time (Annelise) (Berry/Buck/Mills/Stipe)?
+R.e.m.
+10
+
+Music: Artist/Band: Time in a Bottle (Croce)?
+Jim croce
+10
+
+Music: Artist/Band: Time the Avenger (Hynde)?
+The pretenders
+10
+
+Music: Artist/Band: Time's Up (Calhoun/Glover/Reid/Reid/Skillings)?
+Living colour
+10
+
+Music: Artist/Band: Time's Up (Calhoun/Glover/Reid/Skillings)?
+Living colour
+10
+
+Music: Artist/Band: Times They Are A-Changing (Dylan)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: Tin Legs and Tin Mines (Garrett/Moginie/Rotsey)?
+Midnight oil
+10
+
+Music: Artist/Band: Tiny Daggers (Farriss/Hutchence)?
+Inxs
+10
+
+Music: Artist/Band: To Know Him Is To Love Him - The?
+Teddy Bears
+10
+
+Music: Artist/Band: To Live Is to Die (Burton/Hetfield/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: To Love Somebody (Gibb/Gibb)?
+Bee gees
+10
+
+Music: Artist/Band: To Love You More (Foster/Miles)?
+Celine dion
+10
+
+Music: Artist/Band: To Our Childrens Childrens Children?
+The moody blues
+10
+
+Music: Artist/Band: To The Aisle - The?
+5 Satins
+10
+
+Music: Artist/Band: To The Extreme?
+Vanilla ice
+10
+
+Music: Artist/Band: Today (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Together Again (Elizondo/Harris/Jackson/Lewis)?
+Janet jackson
+10
+
+Music: Artist/Band: Tom Petty and the ____
+Heartbreakers
+10
+
+Music: Artist/Band: Tombstone (Finn)?
+Crowded house
+10
+
+Music: Artist/Band: Tombstone Shadow (Fogerty)?
+Creedence clearwater revival
+10
+
+Music: Artist/Band: tommy james & the ____
+Shondells
+10
+
+Music: Artist/Band: Tomorrow (Gillies/Johns)?
+Silverchair
+10
+
+Music: Artist/Band: Tomorrow Never Knows?
+The beatles
+10
+
+Music: Artist/Band: Tomorrow's Dream (Butler/Iommi/Osbourne/Ward)?
+Black sabbath
+10
+
+Music: Artist/Band: Tonight (Daisley/Kerslake/Osbourne/Rhoads)?
+Ozzy osbourne
+10
+
+Music: Artist/Band: Tonight Could Be The Night - The?
+Velvets
+10
+
+Music: Artist/Band: Tonight I Celebrate My Love?
+Peabo bryson & roberta flack
+10
+
+Music: Artist/Band: Tonight, Tonight (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Tonight's the Night (Gonna Be Alright) (Stewart)?
+Rod stewart
+10
+
+Music: Artist/Band: Tonights The Night?
+Rod stewart
+10
+
+Music: Artist/Band: Tonite Reprise (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Tonite-Tonite - The?
+Mello-Kings
+10
+
+Music: Artist/Band: Too Far (Minogue)?
+Kylie minogue
+10
+
+Music: Artist/Band: Too Funky (Michael)?
+George michael
+10
+
+Music: Artist/Band: Too Much Heaven (Gibb/Gibb/Gibb)?
+Bee gees
+10
+
+Music: Artist/Band: TooShy?
+Kajagoogoo
+10
+
+Music: Artist/Band: Top of the World (Bettis/Carpenter)?
+The carpenters
+10
+
+Music: Artist/Band: Topsy Part Ii?
+Cozy Cole
+10
+
+Music: Artist/Band: Torn and Frayed (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: Torn?
+Natalie imbruglia
+10
+
+Music: Artist/Band: Touch (Child/Warren)?
+Ricky martin
+10
+
+Music: Artist/Band: Touch and Go (Fuller)?
+Cher
+10
+
+Music: Artist/Band: Touch Me (I Want Your Body)?
+Sam fox
+10
+
+Music: Artist/Band: Touch Me When We're Dancing (Bell/Skinner/Wallace)?
+The carpenters
+10
+
+Music: Artist/Band: Touch Too Much (Scott/Young/Young)?
+Ac/dc
+10
+
+Music: Artist/Band: Touched by an Angel (Estefan/Estefan/Santander)?
+Gloria estefan
+10
+
+Music: Artist/Band: Tourette's (Cobain)?
+Nirvana
+10
+
+Music: Artist/Band: Tourniquet (Berkowitz/ Manson/Ramirez)?
+Marilyn manson
+10
+
+Music: Artist/Band: Traces - The?
+Classics Iv
+10
+
+Music: Artist/Band: Trade Winds (MacDonald/Salter)?
+Rod stewart
+10
+
+Music: Artist/Band: Tradition (Tradici?n) (Estefan/Estefan)?
+Gloria estefan
+10
+
+Music: Artist/Band: Tradition of Love (Hynde)?
+The pretenders
+10
+
+Music: Artist/Band: Traffic Jam (Taylor)?
+James taylor
+10
+
+Music: Artist/Band: Tragedy (Gibb/Gibb/Gibb)?
+Bee gees
+10
+
+Music: Artist/Band: Tragedy?
+Steps
+10
+
+Music: Artist/Band: Train of Thought (O'Day)?
+Cher
+10
+
+Music: Artist/Band: Transformer (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Trapecista (P?rez-Botija/Ramos)?
+Enrique iglesias
+10
+
+Music: Artist/Band: Trapped Under Ice (Hammett/Hetfield/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Trash (Child/Cooper/Frazier/Sever)?
+Alice cooper
+10
+
+Music: Artist/Band: Trashed (Butler/Gillan/Iommi/Ward)?
+Black sabbath
+10
+
+Music: Artist/Band: Travelin' Band (Fogerty)?
+Creedence clearwater revival
+10
+
+Music: Artist/Band: Travelin' Man?
+Rick Nelson
+10
+
+Music: Artist/Band: Treat Her Like a Lady (Dion/King/Mann/Marvel)?
+Celine dion
+10
+
+Music: Artist/Band: Tremor Christ?
+Pearl jam
+10
+
+Music: Artist/Band: Trent Reznor?
+Nine inch nails
+10
+
+Music: Artist/Band: Tribute to Johnny (Corgan/Iha)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Trickle Trickle?
+Videos
+10
+
+Music: Artist/Band: Trip Through Your Wires (Bono/Clayton/Edge/Mullen)?
+U2
+10
+
+Music: Artist/Band: Trippin' on a Hole in a Paper Heart (Kretz/Weiland)?
+Stone temple pilots
+10
+
+Music: Artist/Band: Tristessa (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Trout Mask Replica was a popular album by which offbeat musician and his Magic Band?
+Captain beefheart
+10
+
+Music: Artist/Band: True Blue (Stewart/Wood)?
+Rod stewart
+10
+
+Music: Artist/Band: True Love Ways?
+Buddy holly
+10
+
+Music: Artist/Band: Truganini (Hirst/Moginie)?
+Midnight oil
+10
+
+Music: Artist/Band: Try Again?
+Champaigne
+10
+
+Music: Artist/Band: Try and Love Again (Meisner)?
+Eagles
+10
+
+Music: Artist/Band: Try Not to Breathe (Berry/Buck/Mills/Stipe)?
+R.e.m.
+10
+
+Music: Artist/Band: Try, Try, Try (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Tu Vacio (Botija-Perez)?
+Enrique iglesias
+10
+
+Music: Artist/Band: Tu Vacio (Botija)?
+Enrique iglesias
+10
+
+Music: Artist/Band: Tumble in the Rough (Weiland)?
+Stone temple pilots
+10
+
+Music: Artist/Band: Tumbling Dice (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: Tunnel of Love (Knopfler)?
+Dire straits
+10
+
+Music: Artist/Band: Turd on the Run (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: Turn Around Look At Me - The?
+Vogues
+10
+
+Music: Artist/Band: Turn Back Time?
+Aqua
+10
+
+Music: Artist/Band: Turn It into Love (Aitken/Aitken/Stock/Waterman/Waterman)?
+Kylie minogue
+10
+
+Music: Artist/Band: Turn The Page?
+Bob seger and the silver bullet band
+10
+
+Music: Artist/Band: Turn Turn Turn - The?
+Byrds
+10
+
+Music: Artist/Band: Turn up the Night (Butler/Dio/Iommi)?
+Black sabbath
+10
+
+Music: Artist/Band: Tusk (Buckingham)?
+Fleetwood mac
+10
+
+Music: Artist/Band: TV News (Calhoun/Glover/Reid/Wimbrish)?
+Living colour
+10
+
+Music: Artist/Band: Twelve Dreams of Dr. Sardonicus?
+Spirit
+10
+
+Music: Artist/Band: Twenty Foreplay (Harris/Jackson/Lewis)?
+Janet jackson
+10
+
+Music: Artist/Band: Twenty-One (Leadon)?
+Eagles
+10
+
+Music: Artist/Band: Twilight (Bono/Clayton/Edge/Mullen)?
+U2
+10
+
+Music: Artist/Band: Twilight Time - The?
+Platters
+10
+
+Music: Artist/Band: Twist And Shout - The?
+Beatles
+10
+
+Music: Artist/Band: Twist In My Sobriety?
+Tanita tikaram
+10
+
+Music: Artist/Band: Twistin' the Night Away (Cooke)?
+Rod stewart
+10
+
+Music: Artist/Band: Twisting by the Pool (Knopfler)?
+Dire straits
+10
+
+Music: Artist/Band: Twisting By The Pool?
+Dire straits
+10
+
+Music: Artist/Band: Two Kinds Of People In The World?
+Little Anthony & The Imperials
+10
+
+Music: Artist/Band: Two Lives (Jordan)?
+The carpenters
+10
+
+Music: Artist/Band: Two Of Us?
+The beatles
+10
+
+Music: Artist/Band: Two People Clinging to a Thread (Lloyd/Sklerov)?
+Cher
+10
+
+Music: Artist/Band: Ty Cobb (Cornell/Shepherd)?
+Soundgarden
+10
+
+Music: Artist/Band: Type (Reid)?
+Living colour
+10
+
+Music: Artist/Band: Ugly (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Unchained Melody - The?
+Righteous Brothers
+10
+
+Music: Artist/Band: Unchained Melody?
+Vito & The Salutations
+10
+
+Music: Artist/Band: Undecided (Gillies/Johns)?
+Silverchair
+10
+
+Music: Artist/Band: Under My Thumb (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: Under My Tree (Peiken/Roche)?
+'n sync
+10
+
+Music: Artist/Band: Under Pressure?
+Queen
+10
+
+Music: Artist/Band: Under The Boardwalk - The?
+Drifters
+10
+
+Music: Artist/Band: Under the Bridge (Flea/Frusciante/Kiedis/Kiedis/Smith)?
+Red hot chili peppers
+10
+
+Music: Artist/Band: Under the Same Sun (Fairbairn/Hudson/Meine)?
+Scorpions
+10
+
+Music: Artist/Band: Under what name did high-voiced William Robison Jr. sing (FULL NAME)?
+Smokey robinson
+10
+
+Music: Artist/Band: Underneath the Sky (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: Underway (Green)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Unfinished Sweet (Bruce/Cooper/Smith)?
+Alice cooper
+10
+
+Music: Artist/Band: Unforgiven II (Hammett/Hetfield/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Unglued (DeLeo/Weiland)?
+Stone temple pilots
+10
+
+Music: Artist/Band: Union of the Snake (Lebon/Rhodes/Taylor/Taylor/Taylor)?
+Duran duran
+10
+
+Music: Artist/Band: Unkind (Shepherd)?
+Soundgarden
+10
+
+Music: Artist/Band: Until It Sleeps (Hetfield/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Up Around the Bend (Fogerty)?
+Creedence clearwater revival
+10
+
+Music: Artist/Band: Up In The Sky (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: Up On The Roof - The?
+Drifters
+10
+
+Music: Artist/Band: Up on the Roof (Goffin/King)?
+James taylor
+10
+
+Music: Artist/Band: Up the Hill Backwards (Bowie)?
+David bowie
+10
+
+Music: Artist/Band: Us (Pace)?
+Celine dion
+10
+
+Music: Artist/Band: Us Forces (Garrett/Moginie)?
+Midnight oil
+10
+
+Music: Artist/Band: V-2 Schneider (Bowie)?
+David bowie
+10
+
+Music: Artist/Band: Valentines's Day ( Manson)?
+Marilyn manson
+10
+
+Music: Artist/Band: Valerie?
+Stevie winwood
+10
+
+Music: Artist/Band: Vasoline (Stone Temple Pilots/Weiland)?
+Stone temple pilots
+10
+
+Music: Artist/Band: Velvet Rope (Elizondo/Harris/Jackson/Lewis/McLaren)?
+Janet jackson
+10
+
+Music: Artist/Band: Ven a Mi (Come to Me) (Goodwin/Lopez/Resnik/Rosa)?
+Ricky martin
+10
+
+Music: Artist/Band: Ventilator Blues (Jagger/Richards/Taylor)?
+The rolling stones
+10
+
+Music: Artist/Band: Vera Cruz?
+Santana
+10
+
+Music: Artist/Band: Vermont band's albums that included Rift, Junta, Hoist, Picture of Nectar?
+Phish
+10
+
+Music: Artist/Band: Very Ape (Cobain)?
+Nirvana
+10
+
+Music: Artist/Band: Victim of Love (Felder/Frey/Henley/Souther)?
+Eagles
+10
+
+Music: Artist/Band: View to Kill (Lebon/Rhodes/Taylor/Taylor/T?
+Duran duran
+10
+
+Music: Artist/Band: Visions [#] (Calhoun/Reid/Reid/Wimbish)?
+Living colour
+10
+
+Music: Artist/Band: Vivire y Morire (Iglesias)?
+Enrique iglesias
+10
+
+Music: Artist/Band: vocals for led zepplin?
+Robert plant
+10
+
+Music: Artist/Band: Voice of the Voiceless (Morello/Rocha/Wilk)?
+Rage against the machine
+10
+
+Music: Artist/Band: Voices of Old People (Garfunkel/Simon)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: Volver? (Iglesias/Morales)?
+Enrique iglesias
+10
+
+Music: Artist/Band: Volver?s (Blake/Escolar/Martin/Porter)?
+Ricky martin
+10
+
+Music: Artist/Band: Volvere (Iglesias/Morales)?
+Enrique iglesias
+10
+
+Music: Artist/Band: Voodoo [live] (Butler/Dio/Iommi)?
+Black sabbath
+10
+
+Music: Artist/Band: Vuelve (DeVita)?
+Ricky martin
+10
+
+Music: Artist/Band: W.M.A?
+Pearl jam
+10
+
+Music: Artist/Band: Wait?
+The beatles
+10
+
+Music: Artist/Band: Waiting for That Day/You Can'y Always Get... (Jagger/Michael/Richards)?
+George michael
+10
+
+Music: Artist/Band: Waiting for the Big One (Gabriel)?
+Peter gabriel
+10
+
+Music: Artist/Band: Wake Up Little Susie - The?
+Everly Brothers
+10
+
+Music: Artist/Band: Wake up Little Susie?
+Everly brothers
+10
+
+Music: Artist/Band: Walk a Thin Line (Buckingham)?
+Fleetwood mac
+10
+
+Music: Artist/Band: Walk All over You (Scott/Young/Young)?
+Ac/dc
+10
+
+Music: Artist/Band: Walk Away Renee - The?
+Left Banke
+10
+
+Music: Artist/Band: Walk Like A Man - The?
+FourSeasons
+10
+
+Music: Artist/Band: Walk of Life (Knopfler)?
+Dire straits
+10
+
+Music: Artist/Band: Walking In The Rain - The?
+Ronettes
+10
+
+Music: Artist/Band: Walking Man (Taylor)?
+James taylor
+10
+
+Music: Artist/Band: Walking Man?
+James taylor
+10
+
+Music: Artist/Band: Walking on the Edge (Meine/Schenker)?
+Scorpions
+10
+
+Music: Artist/Band: War Pigs (Butler/Iommi/Osbourne/Ward)?
+Black sabbath
+10
+
+Music: Artist/Band: War Pigs [#] (Butler/Iommi/Osbourne/Ward)?
+Ozzy osbourne
+10
+
+Music: Artist/Band: War Within a Breath (Morello/Rocha/Wilk)?
+Rage against the machine
+10
+
+Music: Artist/Band: Warm Love (Morrison)?
+Van morrison
+10
+
+Music: Artist/Band: Warszawa (Bowie)?
+David bowie
+10
+
+Music: Artist/Band: Wasted Time (Frey/Henley)?
+Eagles
+10
+
+Music: Artist/Band: Watching the Clothes (Hynde)?
+The pretenders
+10
+
+Music: Artist/Band: Wated Time (Reprise) (Frey/Henley/Norman)?
+Eagles
+10
+
+Music: Artist/Band: Way of Love (Dieval/Stillman)?
+Cher
+10
+
+Music: Artist/Band: We All Fall In Love Sometimes?
+Elton john
+10
+
+Music: Artist/Band: We Belong Together?
+Robert & Johnnie
+10
+
+Music: Artist/Band: We Built This City?
+Starship
+10
+
+Music: Artist/Band: We Die Young (Cantrell)?
+Alice in chains
+10
+
+Music: Artist/Band: We Dont Talk Anymore?
+Cliff richard
+10
+
+Music: Artist/Band: We sing the Nightingale's Song...?
+Toad the wet sprocket
+10
+
+Music: Artist/Band: We Walk (Berry/Buck/Mills/Stipe)?
+R.e.m.
+10
+
+Music: Artist/Band: We're Going To Ibiza!?
+Vengaboys
+10
+
+Music: Artist/Band: We're just/Two lost souls/Living in a fish bowl/Year after year?
+Pink floyd
+10
+
+Music: Artist/Band: We've Got a Groovey Thing Goin' (Simon)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: We've Got It Goin' On (Crichlow/Martin/Pop)?
+Backstreet boys
+10
+
+Music: Artist/Band: We've Only Just Begun - The?
+Carpenters
+10
+
+Music: Artist/Band: We've Only Just Begun (Nicholas/Williams)?
+The carpenters
+10
+
+Music: Artist/Band: Weather with You (Finn/Finn)?
+Crowded house
+10
+
+Music: Artist/Band: Wednesday Morning, 3 A.M. (Simon)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: Weeping Wall (Bowie)?
+David bowie
+10
+
+Music: Artist/Band: Welcome Home (Sanitarium) (Hammett/Hetfield/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Welcome Me Love - The?
+Brooklyn Bridge
+10
+
+Music: Artist/Band: Welcome to My Nightmare (Cooper/Wagner)?
+Alice cooper
+10
+
+Music: Artist/Band: Welcome to the Occupation (Berry/Buck/Mills/Stripe)?
+R.e.m.
+10
+
+Music: Artist/Band: Well All Right?
+Buddy holly
+10
+
+Music: Artist/Band: West of the Fields (Berry/Bogan/Buck/Mills/Stipe)?
+R.e.m.
+10
+
+Music: Artist/Band: What About (Elizondo/Harris/Jackson/Lewis)?
+Janet jackson
+10
+
+Music: Artist/Band: What Australian band was originally known as The Farriss Brothers?
+Inxs
+10
+
+Music: Artist/Band: what backup group accompanied singer little anthony?
+The imperials
+10
+
+Music: Artist/Band: What band backed neil young on his album after the gold rush?
+Crazy horse
+10
+
+Music: Artist/Band: What band did Dion form in 1958?
+The Belmonts
+10
+
+Music: Artist/Band: What band did James Brown tour and record with in the 1950's?
+The Famous Flames
+10
+
+Music: Artist/Band: What band did the music for the 1970s film saturday night fever?
+The bee gees
+10
+
+Music: Artist/Band: What band do geezer butler, and bill ward play in?
+Black sabbath
+10
+
+Music: Artist/Band: What band got their name from the sixties movie Barbarella?
+Duran Duran
+10
+
+Music: Artist/Band: What band had a hit song titled after ol' blue eyes, frank sinatra?
+Cake
+10
+
+Music: Artist/Band: What band had a hit with itchycoo park?
+The small faces
+10
+
+Music: Artist/Band: What band had their first hit with 'radar love'?
+Golden earring
+10
+
+Music: Artist/Band: What band have the following all performed in at one time or another,ginger baker,mick jagger,eric burdon,paul jones and danny thompson?
+Alexis corners blues incorporated
+10
+
+Music: Artist/Band: What band in the late 80's were exposed for not recording their own hits?
+Milli vanilli
+10
+
+Music: Artist/Band: What band is named after a scuplture in Seattle that hums in the wind?
+Soundgarden
+10
+
+Music: Artist/Band: What band leader did singer jo stafford marry?
+Paul weston
+10
+
+Music: Artist/Band: What band played to 2.5 million people in 37 countries on its 1993 keep the faith tour?
+Bon jovi
+10
+
+Music: Artist/Band: What band recorded earschplittenloudenboomer?
+Steppenwolf
+10
+
+Music: Artist/Band: What band recorded the 1978 hit album: 'Briefcase Full of Blues'?
+The Blues Brothers
+10
+
+Music: Artist/Band: What band recorded the 1990'2 hit 'slide'?
+Goo goo dolls
+10
+
+Music: Artist/Band: What band sang 'White Rabbit'?
+Jefferson Airplane
+10
+
+Music: Artist/Band: What band sang about 'the wall'?
+Pink floyd
+10
+
+Music: Artist/Band: What band sold the most number of records in the 1970's?
+Led zepplin
+10
+
+Music: Artist/Band: What band urged you to sit down?
+James
+10
+
+Music: Artist/Band: What band was cory wells with?
+Three dog night
+10
+
+Music: Artist/Band: What band was frankie valli the lead man for?
+The four seasons
+10
+
+Music: Artist/Band: What bandleader had the themes satin doll and take the a train?
+Duke ellington
+10
+
+Music: Artist/Band: What Do I Have to Do? (Stock/Stock/Stock)?
+Kylie minogue
+10
+
+Music: Artist/Band: What Do You Do for Money Honey (Johnson/Young/Young)?
+Ac/dc
+10
+
+Music: Artist/Band: What Goes Around Comes Around (Kravitz)?
+Lenny kravitz
+10
+
+Music: Artist/Band: What Goes On?
+The beatles
+10
+
+Music: Artist/Band: What Have You Done for Me Lately? (Harris/Jackson/Lewis)?
+Janet jackson
+10
+
+Music: Artist/Band: What in the World (Bowie)?
+David bowie
+10
+
+Music: Artist/Band: What Is Love?
+Howard jones
+10
+
+Music: Artist/Band: What Kind of Fool (Heard All That Before) (Minogue/Stock/Waterman)?
+Kylie minogue
+10
+
+Music: Artist/Band: What Makes You Think Your the One (Buckingham)?
+Fleetwood mac
+10
+
+Music: Artist/Band: what names precede yarrow, stookey and travers?
+Peter, paul and mary
+10
+
+Music: Artist/Band: What the Fuck Are We Saying? (Kravitz)?
+Lenny kravitz
+10
+
+Music: Artist/Band: What Time Is It - The?
+Jive Five
+10
+
+Music: Artist/Band: What U See (Is What U Get) (Elofsson/Kreuger/Magnusson/Rami)?
+Britney spears
+10
+
+Music: Artist/Band: What was Primus called before they were called 'Primus'?
+Primate
+10
+
+Music: Artist/Band: What You Need (Farriss/Hutchence)?
+Inxs
+10
+
+Music: Artist/Band: What You're Doing?
+The beatles
+10
+
+Music: Artist/Band: What You're Proposing?
+Status quo
+10
+
+Music: Artist/Band: What'cha Gonna Do? (Cantrell/Staley)?
+Alice in chains
+10
+
+Music: Artist/Band: What'll I Do? (Berlin)?
+Cher
+10
+
+Music: Artist/Band: What's Another Year?
+Johnny logan
+10
+
+Music: Artist/Band: What's Made Milwaukee Famous (Has Made a... (Sutton)?
+Rod stewart
+10
+
+Music: Artist/Band: What's Your Favorite Color? (Theme Song) (Glover/Reid)?
+Living colour
+10
+
+Music: Artist/Band: Wheels of Confusion (Butler/Iommi/Osbourne/Ward)?
+Black sabbath
+10
+
+Music: Artist/Band: Wheels of Fire?
+Cream
+10
+
+Music: Artist/Band: When I Change My Life (Hynde)?
+The pretenders
+10
+
+Music: Artist/Band: When I Fall In Love?
+Nat king cole
+10
+
+Music: Artist/Band: When I Get Home?
+The beatles
+10
+
+Music: Artist/Band: When I Need You (Hammond/Sager)?
+Celine dion
+10
+
+Music: Artist/Band: When I say I love you you say you better/You better, you better you bet?
+The who
+10
+
+Music: Artist/Band: When I Think of You (Harris/Jackson/Lewis)?
+Janet jackson
+10
+
+Music: Artist/Band: When I'm Sixty Four?
+The beatles
+10
+
+Music: Artist/Band: When the Generals Talk (Garrett/Hirst/Moginie)?
+Midnight oil
+10
+
+Music: Artist/Band: When The Going Gets Tough, The Tough Get Going?
+Billy ocean
+10
+
+Music: Artist/Band: When The Heartache Is Over?
+Tina turner
+10
+
+Music: Artist/Band: When the Morning Turns to Night (Kravitz)?
+Lenny kravitz
+10
+
+Music: Artist/Band: When the Whip Comes Down (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: When Tomorrow Comes?
+Eurythmics
+10
+
+Music: Artist/Band: When You Come (Finn)?
+Crowded house
+10
+
+Music: Artist/Band: When You Dance - The?
+Turbans
+10
+
+Music: Artist/Band: When You Find Out Where You're Goin', Let... (Laurie)?
+Cher
+10
+
+Music: Artist/Band: When You Say (Kirwan)?
+Fleetwood mac
+10
+
+Music: Artist/Band: When You Say Love (Foster/Karman/Rice)?
+Cher
+10
+
+Music: Artist/Band: When You Say Nothing At All?
+Ronan keating
+10
+
+Music: Artist/Band: When Your Eyes Say It (Warren)?
+Britney spears
+10
+
+Music: Artist/Band: When Your're In Love With A Beautiful Woman?
+Dr hook
+10
+
+Music: Artist/Band: Whenever God Shines His Light (Morrison)?
+Van morrison
+10
+
+Music: Artist/Band: Where Are You Now (Carlsson/Martin)?
+Britney spears
+10
+
+Music: Artist/Band: Where Did It Go All Wrong? (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: Where Did Our Love Go - The?
+Supremes
+10
+
+Music: Artist/Band: Where Did You Sleep Last Night? (Ledbetter)?
+Nirvana
+10
+
+Music: Artist/Band: Where Do the Children Play? (Stevens)?
+Cat stevens
+10
+
+Music: Artist/Band: Where Do The Children Play?
+Cat stevens
+10
+
+Music: Artist/Band: Where in the World? (Minogue/Stock/Stock)?
+Kylie minogue
+10
+
+Music: Artist/Band: Where Is the Love (Hart)?
+Celine dion
+10
+
+Music: Artist/Band: Where the Streets Have No Name (Bono/Clayton/Edge/Mullen)?
+U2
+10
+
+Music: Artist/Band: Where the Wild Things Are (Hetfield/Newsted/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Wherever I Lay My Hat?
+Paul young
+10
+
+Music: Artist/Band: Wherever I May Roam (Hetfield/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Which country does Shirley Bassey come from?
+Wales
+10
+
+Music: Artist/Band: which member of the jackson five married into the berry gordy family?
+Jermaine jackson
+10
+
+Music: Artist/Band: Which singer's daughter is called Lourdes Maria?
+Madonna
+10
+
+Music: Artist/Band: Which singer/songwriter received a knighthood in January of 1997?
+Paul mccartney
+10
+
+Music: Artist/Band: Which Way to America? (Reid)?
+Living colour
+10
+
+Music: Artist/Band: While My Guitar Gently Weeps?
+The beatles
+10
+
+Music: Artist/Band: Whiplash (Hetfield/Ulrich)?
+Metallica
+10
+
+Music: Artist/Band: Whipping?
+Pearl jam
+10
+
+Music: Artist/Band: Whispering Bells - The?
+Del-Vikings
+10
+
+Music: Artist/Band: Whispers and Moans (Finn)?
+Crowded house
+10
+
+Music: Artist/Band: Who Can Stand in the Way (Garrett/Moginie)?
+Midnight oil
+10
+
+Music: Artist/Band: Who Feels Love? (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: Who Feels the Love? (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: Who had a huge hit with Pretty Woman?
+Roy orbison
+10
+
+Music: Artist/Band: Who had a major hit with joni mitchell's 'both sides now'?
+Judy collins
+10
+
+Music: Artist/Band: Who had a number 1 hit with I Should Be So Lucky?
+Kylie minogue
+10
+
+Music: Artist/Band: Who had a number 1 hit with shaddap your face?
+Joe dolce
+10
+
+Music: Artist/Band: Who had a number 1 hit with the song 'two little boys'?
+Rolf harris
+10
+
+Music: Artist/Band: Who had an acting career in the u.k and got his first break in music when he was chosen to be a replacement drummer in genesis in 1970?
+Phil collins
+10
+
+Music: Artist/Band: Who had the hit single 'Plush'?
+Stone temple pilots
+10
+
+Music: Artist/Band: Who has the edge over other bands?
+U2
+10
+
+Music: Artist/Band: Who is the ex-lead singer of the Dead Kennedys?
+Biafra
+10
+
+Music: Artist/Band: who made it big with tiptoe through the tulips in 1968?
+Tiny tim
+10
+
+Music: Artist/Band: Who Put The Bomp?
+Barry Mann
+10
+
+Music: Artist/Band: Who recorded 'A Boy Named Sue'?
+Johnny Cash
+10
+
+Music: Artist/Band: Who recorded 'be true to your school' in 1963?
+The beach boys
+10
+
+Music: Artist/Band: Who recorded 'blue morning blue day' in 1978?
+Foreigner
+10
+
+Music: Artist/Band: Who recorded 'cuts like a knife' in 1983?
+Bryan adams
+10
+
+Music: Artist/Band: Who recorded 'hejira' in 1976?
+Joni mitchell
+10
+
+Music: Artist/Band: Who recorded 'hey jealousy'?
+Gin blossoms
+10
+
+Music: Artist/Band: Who recorded 'i can't explain' in 1965?
+The who
+10
+
+Music: Artist/Band: Who recorded 'I Love Rock And Roll'?
+Joan jett and the blackhearts
+10
+
+Music: Artist/Band: Who recorded 'in the air tonight' in 1981?
+Phil collins
+10
+
+Music: Artist/Band: Who recorded 'long tall sally' in 1956?
+Little richard
+10
+
+Music: Artist/Band: Who recorded 'rubber soul' in 1965?
+The beatles
+10
+
+Music: Artist/Band: Who recorded 'save the last dance for me' in 1960?
+The drifters
+10
+
+Music: Artist/Band: Who recorded 'shadows of the night' in 1982?
+Pat benatar
+10
+
+Music: Artist/Band: Who recorded 'sos'?
+Abba
+10
+
+Music: Artist/Band: Who recorded a best selling album called Thriller?
+Michael Jackson
+10
+
+Music: Artist/Band: Who recorded a live album with the Australian symphony orchestra in 1987?
+Elton john
+10
+
+Music: Artist/Band: Who recorded A Walk in the Black Forest in 1965?
+Horst jankowski
+10
+
+Music: Artist/Band: Who recorded after the gold rush in 1970?
+Neil young
+10
+
+Music: Artist/Band: Who recorded albums called Hounds of Love, Never for ever and The Whole Story?
+Kate Bush
+10
+
+Music: Artist/Band: Who recorded and produced 'instant karma'?
+John lennon
+10
+
+Music: Artist/Band: Who recorded blue morning blue day in 1978?
+Foreigner
+10
+
+Music: Artist/Band: Who recorded Captain Fantastic and The Brown Dirt Cowboy?
+Elton John
+10
+
+Music: Artist/Band: Who recorded everybody's somebody's fool in 1960?
+Connie francis
+10
+
+Music: Artist/Band: Who recorded his first single 'Good Morning Little School Girl' with future Led Zeppelin bassist John Paul Jones, on September 10, 1964?
+Rod Stewart
+10
+
+Music: Artist/Band: Who recorded i want you, i need you, i love you in 1956?
+Elvis presley
+10
+
+Music: Artist/Band: Who recorded it's now or never in 1960?
+Elvis presley
+10
+
+Music: Artist/Band: Who recorded left overture in 1976?
+Kansas
+10
+
+Music: Artist/Band: Who recorded Macarena (bayside boys mix)?
+Los Del Rio
+10
+
+Music: Artist/Band: Who recorded running bear in 1960?
+Johnny preston
+10
+
+Music: Artist/Band: Who recorded such popular songs as 'policy of truth' and 'personal jesus'?
+Depeche mode
+10
+
+Music: Artist/Band: Who recorded such popular songs as 'whose zoomin' who' and is known as 'the queen of soul'?
+Aretha franklin
+10
+
+Music: Artist/Band: Who recorded such songs as 'toys in the attic' and 'angel', and also did the music for the film 'armageddon'?
+Aerosmith
+10
+
+Music: Artist/Band: Who recorded Teen Angel in 1960?
+Mark dinning
+10
+
+Music: Artist/Band: Who recorded the 1957 hit 'Tammy'?
+Debby Reynolds
+10
+
+Music: Artist/Band: Who recorded the 1957 hit Tammy?
+Debbie reynolds
+10
+
+Music: Artist/Band: Who recorded the 1968 hit song 'valleri'?
+The monkees
+10
+
+Music: Artist/Band: Who recorded the 1969 hit song 'oh, what a night'?
+The dells
+10
+
+Music: Artist/Band: Who recorded the 1985 top-40 hit about wolfgang amadeus mozart?
+Falco
+10
+
+Music: Artist/Band: Who recorded the album 'hotel California'?
+The eagles
+10
+
+Music: Artist/Band: Who recorded the album 'Spike'?
+Elvis costello
+10
+
+Music: Artist/Band: Who recorded the album beggars banquet?
+Rolling stones
+10
+
+Music: Artist/Band: Who recorded the album business as usual in 1983?
+Men at work
+10
+
+Music: Artist/Band: Who recorded the album john wesley harding after two years of seclusion?
+Bob dylan
+10
+
+Music: Artist/Band: Who recorded the album London Calling in 1975?
+Clash
+10
+
+Music: Artist/Band: Who recorded the album never a dull moment in 1972?
+Rod stewart
+10
+
+Music: Artist/Band: Who recorded the album Stranger In Town?
+Bob Serger
+10
+
+Music: Artist/Band: Who recorded the albums blonde on blonde and blood on the tracks?
+Bob dylan
+10
+
+Music: Artist/Band: Who recorded the original song 'the twist'?
+The beatles
+10
+
+Music: Artist/Band: Who recorded the song 'Rocket Man'?
+Elton john
+10
+
+Music: Artist/Band: Who recorded the song 'Space Oddity'?
+David bowie
+10
+
+Music: Artist/Band: Who recorded the song 'the humpty dance'?
+Digital underground
+10
+
+Music: Artist/Band: Who recorded the Tubular Bells album in 1973?
+Mike Oldfield
+10
+
+Music: Artist/Band: Who recorded the tune 'dream weaver'?
+Gary wright
+10
+
+Music: Artist/Band: Who recorded the twist in 1960?
+Chubby checker
+10
+
+Music: Artist/Band: Who recorded theme from a summer place in 1960?
+Percy faith
+10
+
+Music: Artist/Band: Who recorded to know him is to love him in 1958?
+Teddy bears
+10
+
+Music: Artist/Band: Who recorded tom dooley in 1958?
+Kingston trio
+10
+
+Music: Artist/Band: Who released 'love roller coaster' in 1984?
+Ohio players
+10
+
+Music: Artist/Band: Who released 'my pledge of love' in 1969?
+Joe jeffrey group
+10
+
+Music: Artist/Band: Who released 'pretty hate machine' in 1989?
+Nine inch nails
+10
+
+Music: Artist/Band: Who released 'she's so unusual' in 1984, and won a grammy for best new artist?
+Cyndi lauper
+10
+
+Music: Artist/Band: Who released 'tell him' in november 1962?
+The exciters
+10
+
+Music: Artist/Band: Who released 'the gypsy cried' in january 1963?
+Lou christie
+10
+
+Music: Artist/Band: Who released 'Time, Love and Tenderness' in 1981?
+Michael Bolton
+10
+
+Music: Artist/Band: Who released 'Tuesday Night Music Club' in 1993?
+Sheryl Crow
+10
+
+Music: Artist/Band: Who released a 14 minute video for a 6 minute song?
+Michael jackson
+10
+
+Music: Artist/Band: Who released a 1974 album entitled Caribou?
+Elton john
+10
+
+Music: Artist/Band: Who released a chart-busting album in 1976 which featured 'The Lido Shuffle'?
+Boz Scaggs
+10
+
+Music: Artist/Band: Who released a record, which has been condemned by the catholic church as it refers to some nuns as, 'daughters of hell'?
+Cher
+10
+
+Music: Artist/Band: Who released an album called Miss Bette Davis in 1976?
+Bette Davis
+10
+
+Music: Artist/Band: Who released Back Home in 1970?
+England world cup football squad
+10
+
+Music: Artist/Band: Who released his first solo album 'Wonderwall Music' on November 2, 1968?
+George Harrison
+10
+
+Music: Artist/Band: Who released the 1976 album we sold our soul to rock n roll?
+Black sabbath
+10
+
+Music: Artist/Band: Who released the album 'superunknown' in 1994?
+Soundgarden
+10
+
+Music: Artist/Band: Who released the album synkronised?
+Jamiroquai
+10
+
+Music: Artist/Band: Who released the double album 'Goodbye Yellow Brick Road' in 1973?
+Elton John
+10
+
+Music: Artist/Band: Who released the double album 'yellow brick road' in 1973?
+Elton john
+10
+
+Music: Artist/Band: Who released the No.1 hit single 'Barbie Girl' in October 1997?
+Aqua
+10
+
+Music: Artist/Band: Who released the smash hit 'she drives me crazy'?
+Fine young cannibals
+10
+
+Music: Artist/Band: Who sang 'All Right Now'?
+Free
+10
+
+Music: Artist/Band: Who sang 'Any Way You Want Me'?
+Elvis Presley
+10
+
+Music: Artist/Band: Who sang 'anything for you'?
+Gloria estefan
+10
+
+Music: Artist/Band: Who sang 'Bad Case Of Loving You'?
+Robert Palmer
+10
+
+Music: Artist/Band: Who sang 'Beat It'?
+Michael Jackson
+10
+
+Music: Artist/Band: Who sang 'Beauty and the Beast'?
+Celine Dion
+10
+
+Music: Artist/Band: Who sang 'Born In The USA'?
+Bruce Springsteen
+10
+
+Music: Artist/Band: Who sang 'Forever and Ever, Amen'?
+Randy Travis
+10
+
+Music: Artist/Band: Who sang 'Good Morning To You?
+Mildred and Patty Hill
+10
+
+Music: Artist/Band: Who sang 'I'm A Believer'?
+Monkees
+10
+
+Music: Artist/Band: Who sang 'i'm just a girl'?
+No doubt
+10
+
+Music: Artist/Band: Who sang 'i'm so blind'?
+Korn
+10
+
+Music: Artist/Band: Who sang 'In The Air Tonight'?
+Phil Collins
+10
+
+Music: Artist/Band: Who sang 'Islands In The Stream' with Dolly Parton?
+Kenny Rogers
+10
+
+Music: Artist/Band: Who sang 'Islands In The Stream' with Kenny Rogers?
+Dolly Parton
+10
+
+Music: Artist/Band: Who sang 'Jet Airliner'?
+Steve Miller Band
+10
+
+Music: Artist/Band: Who sang 'plush'?
+Stone temple pilots
+10
+
+Music: Artist/Band: Who sang 'Rescue Me'?
+Fontella Bass
+10
+
+Music: Artist/Band: Who sang 'That's Alright Mama'?
+Elvis Presley
+10
+
+Music: Artist/Band: Who sang 'the animal song'?
+Savage garden
+10
+
+Music: Artist/Band: Who sang 'the moon may be high, but i can't see a thing in the sky, i only have eyes for you'?
+Flamingos
+10
+
+Music: Artist/Band: Who sang 'We've only just begun'?
+Carpenters
+10
+
+Music: Artist/Band: Who sang 'You Can Call Me Al'?
+Paul Simon
+10
+
+Music: Artist/Band: Who sang 'you've got a friend'?
+Carole king
+10
+
+Music: Artist/Band: Who sang about 'Commitment'?
+Leann Rhimes
+10
+
+Music: Artist/Band: Who sang about 'The Boogie Woogie Bugle Boy Of Company B'?
+The Andrews Sisters
+10
+
+Music: Artist/Band: Who sang about Desmond and Molly Jones?
+The Beatles
+10
+
+Music: Artist/Band: Who sang about midnight in Chelsea in 1997?
+Jon Bon Jovi
+10
+
+Music: Artist/Band: Who sang about parsley, sage, rosemary and thyme?
+Simon and
+10
+
+Music: Artist/Band: Who sang and played the theme song for the tv show 'frasier'?
+Kelsey grammar
+10
+
+Music: Artist/Band: Who sang bobby mcgee?
+Janis joplin
+10
+
+Music: Artist/Band: Who sang burn one down?
+Ben harper
+10
+
+Music: Artist/Band: Who sang everything changes?
+Take That
+10
+
+Music: Artist/Band: Who sang for 'Bad company' and 'Free', then went out on his own?
+Paul Rodgers
+10
+
+Music: Artist/Band: Who sang I'm Leaving It Up To You with Dale?
+Grace
+10
+
+Music: Artist/Band: Who sang lead vocals for lynyrd skynyrd?
+Ronnie van zandt
+10
+
+Music: Artist/Band: Who sang lead with T. Rex?
+Marc bolan
+10
+
+Music: Artist/Band: Who sang the music hall classic My old man said follow the van?
+Matilda wood
+10
+
+Music: Artist/Band: Who sang the song Sweet Nicole?
+Point Blank
+10
+
+Music: Artist/Band: Who sang the theme song for Pee Wee's playhouse?
+Cyndi Lauper
+10
+
+Music: Artist/Band: Who sang with 'The Dakotas'?
+Billy J. Kramer
+10
+
+Music: Artist/Band: Who sang with the Wailers?
+Bob marley
+10
+
+Music: Artist/Band: Who teamed with grace kelly on true love, his last hit song, from high society in 1956?
+Fred astaire
+10
+
+Music: Artist/Band: Who teamed with neil diamond on you don't send me flowers?
+Barbra streisand
+10
+
+Music: Artist/Band: Who You Are (Gossard/Irons/Vedder)?
+Pearl jam
+10
+
+Music: Artist/Band: Who'll Stop the Rain (Fogerty)?
+Creedence clearwater revival
+10
+
+Music: Artist/Band: Who's Been Sleeping Here (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: Who's Sorry Now?
+Connie Francis
+10
+
+Music: Artist/Band: Who's That Girl?
+Eurythmics
+10
+
+Music: Artist/Band: Who's Who (Hynde)?
+The pretenders
+10
+
+Music: Artist/Band: Whole Lotta Rosie (Scott/Young/Young)?
+Ac/dc
+10
+
+Music: Artist/Band: Whole Lotta Shakin' Going On?
+Jerry Lee Lewis
+10
+
+Music: Artist/Band: Whoomp! There it is?
+Tag team
+10
+
+Music: Artist/Band: Whose debut album is titled 'Suck on This??
+Primus
+10
+
+Music: Artist/Band: Why Do Fools Fall In Love?
+Frankie Lymon
+10
+
+Music: Artist/Band: Why Don't We Do It In The Road?
+The beatles
+10
+
+Music: Artist/Band: Why Don't You Write Me (Simon)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: Why Go (Ament/Vedder)?
+Pearl jam
+10
+
+Music: Artist/Band: Why Oh Why (Sembello/Sharon)?
+Celine dion
+10
+
+Music: Artist/Band: Why Trust You (Child/Cooper)?
+Alice cooper
+10
+
+Music: Artist/Band: Wicked World (Butler/Iommi/Osbourne/Ward)?
+Black sabbath
+10
+
+Music: Artist/Band: Wild Boys (Lebon/Rhodes/Taylor/Taylor/Taylor)?
+Duran duran
+10
+
+Music: Artist/Band: Wild Honey Pie?
+The beatles
+10
+
+Music: Artist/Band: Wild Horses (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: Wild Life (Farriss/Hutchence)?
+Inxs
+10
+
+Music: Artist/Band: Wild Night (Morrison)?
+Van morrison
+10
+
+Music: Artist/Band: Wild World (Stevens)?
+Cat stevens
+10
+
+Music: Artist/Band: Will You Love Me Tomorrow - The?
+Shirelles
+10
+
+Music: Artist/Band: Will you meet him on the main line or will you catch him on the rebound?
+Laura Branigan
+10
+
+Music: Artist/Band: Win Some, Lose Some (Chambers G/Williams)?
+Robbie williams
+10
+
+Music: Artist/Band: Wind (Stevens)?
+Cat stevens
+10
+
+Music: Artist/Band: Wind of Change (Meine)?
+Scorpions
+10
+
+Music: Artist/Band: Wind Of Change?
+Scorpions
+10
+
+Music: Artist/Band: Window Paine (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Winning (Ballard)?
+Santana
+10
+
+Music: Artist/Band: Wipeout - The?
+Surfaris
+10
+
+Music: Artist/Band: Wipeout?
+The fat boys
+10
+
+Music: Artist/Band: Wired For Sound?
+Cliff richard
+10
+
+Music: Artist/Band: Wishing Well (Farriss/Hutchence)?
+Inxs
+10
+
+Music: Artist/Band: Witchy Woman (Henley/Leadon)?
+Eagles
+10
+
+Music: Artist/Band: with 'the dakotas'?
+Billy j kramer
+10
+
+Music: Artist/Band: With A Little Help From My Friends?
+The beatles
+10
+
+Music: Artist/Band: With Every Light (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: with Michael Jackson to record 'Say,Say,Say'?
+Paul McCartney
+10
+
+Music: Artist/Band: With or Without You (Bono/Clayton/Edge [1]/Mullen)?
+U2
+10
+
+Music: Artist/Band: with the Tremeloes?
+Brian poole
+10
+
+Music: Artist/Band: With the Years That I Have Left (Con los... (Estefan/Estefan)?
+Gloria estefan
+10
+
+Music: Artist/Band: Within You, Without You?
+The beatles
+10
+
+Music: Artist/Band: Wizard (Butler/Iommi/Osbourne/Ward)?
+Black sabbath
+10
+
+Music: Artist/Band: Woman (Meine/Schenker)?
+Scorpions
+10
+
+Music: Artist/Band: Woman Woman - The?
+Union Gap
+10
+
+Music: Artist/Band: Wonderful Life?
+Black
+10
+
+Music: Artist/Band: Wonderful Remark (Morrison)?
+Van morrison
+10
+
+Music: Artist/Band: Wonderwall (Gallagher)?
+Oasis
+10
+
+Music: Artist/Band: Wooly Bully Sam - The?
+Sham
+10
+
+Music: Artist/Band: Word Is Out (Stock/Stock)?
+Kylie minogue
+10
+
+Music: Artist/Band: Words (Gibb/Gibb/Gibb)?
+Bee gees
+10
+
+Music: Artist/Band: Words Get in the Way (Estefan)?
+Gloria estefan
+10
+
+Music: Artist/Band: Words Of Love?
+The beatles
+10
+
+Music: Artist/Band: Workin' at the Car Wash Blues (Croce)?
+Jim croce
+10
+
+Music: Artist/Band: World (Gibb/Gibb/Gibb)?
+Bee gees
+10
+
+Music: Artist/Band: World Where You Live (Finn)?
+Crowded house
+10
+
+Music: Artist/Band: Wormboy (Berkowitz/Manson)?
+Marilyn manson
+10
+
+Music: Artist/Band: Would I Lie To You?
+Eurythmics
+10
+
+Music: Artist/Band: Would? (Cantrell)?
+Alice in chains
+10
+
+Music: Artist/Band: Wouldn't Change a Thing (Aitken/Stock/Stock)?
+Kylie minogue
+10
+
+Music: Artist/Band: Wouldn't It Be Nice - The?
+Beach Boys
+10
+
+Music: Artist/Band: Wouldnt It Be Nice?
+The beach boys
+10
+
+Music: Artist/Band: Wound (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Writ (Black Sabbath)?
+Black sabbath
+10
+
+Music: Artist/Band: Wrote a Song for Everyone (Fogerty)?
+Creedence clearwater revival
+10
+
+Music: Artist/Band: WTFF (Betts/Calhoun/Glover/Reid/Wimbish)?
+Living colour
+10
+
+Music: Artist/Band: Yakety Yak - The?
+Coasters
+10
+
+Music: Artist/Band: Yamatsuka Eye, John Zorn, Bill Laswell, Fred Frith, etc...?
+Naked city
+10
+
+Music: Artist/Band: Yanovsky, Butler, Sebastian, Boone?
+The lovin spoonful
+10
+
+Music: Artist/Band: Years Ago (Cooper/Wagner)?
+Alice cooper
+10
+
+Music: Artist/Band: Yer Blues?
+The beatles
+10
+
+Music: Artist/Band: Yes I Will (Kierulf/McLean/Schwartz)?
+Backstreet boys
+10
+
+Music: Artist/Band: Yes It Is?
+The beatles
+10
+
+Music: Artist/Band: Yesterday - The?
+Beatles
+10
+
+Music: Artist/Band: Yesterday (Ayer) (Marquez)?
+Gloria estefan
+10
+
+Music: Artist/Band: Yesterday and Today?
+The beatles
+10
+
+Music: Artist/Band: Yesterday Once More/Fun, Fun, Fun/The End... (Barry/Bettis/Carpenter/Dee/Greenwich/Kent/Love/Specto/Wilson) -?
+The carpenters
+10
+
+Music: Artist/Band: Yesterday's Papers (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: ymca?
+The village people
+10
+
+Music: Artist/Band: You (All/Brown/Elizondo/Harris/Jackson/Lewis)?
+Janet jackson
+10
+
+Music: Artist/Band: You Ain't the First (Stradlin')?
+Guns n' roses
+10
+
+Music: Artist/Band: You Are Everything?
+Diana ross & marvin gaye
+10
+
+Music: Artist/Band: You Belong To Me - The?
+Duprees
+10
+
+Music: Artist/Band: You Better Sit Down Kids (Bono)?
+Cher
+10
+
+Music: Artist/Band: You Can Tell the World (Camp/Gibson)?
+Simon & garfunkel
+10
+
+Music: Artist/Band: You Can't Always Get What You Want (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: YOU CAN'T BE A BEACON If Your Light Don't Shine?
+Donna fargo
+10
+
+Music: Artist/Band: You Can't Do That?
+The beatles
+10
+
+Music: Artist/Band: You Can't Hurry Love - The?
+Supremes
+10
+
+Music: Artist/Band: You Can't Hurry Love?
+Supremes
+10
+
+Music: Artist/Band: You Can't Kill Rock & Roll (Daisley/Osbourne/Rhoads)?
+Ozzy osbourne
+10
+
+Music: Artist/Band: You Can't Put Your Arms Around a Momory (Thunders)?
+Guns n' roses
+10
+
+Music: Artist/Band: You Don't Mess Around With Jim (Croce)?
+Jim croce
+10
+
+Music: Artist/Band: You Dont Bring Me Flowers?
+Barbra streisand
+10
+
+Music: Artist/Band: You Drive Me Crazy?
+Shakin stevens
+10
+
+Music: Artist/Band: You Got It (Renn)?
+'n sync
+10
+
+Music: Artist/Band: You Got the Silver (Jagger/Richards)?
+The rolling stones
+10
+
+Music: Artist/Band: You Gotta Move (Davis/McDowell)?
+The rolling stones
+10
+
+Music: Artist/Band: You Have Been Loved (Austin/Michael)?
+George michael
+10
+
+Music: Artist/Band: You Like Me Too Much?
+The beatles
+10
+
+Music: Artist/Band: You Make It Easy (Taylor)?
+James taylor
+10
+
+Music: Artist/Band: You Make Loving Fun (McVie)?
+Fleetwood mac
+10
+
+Music: Artist/Band: you make me sick?
+Pink
+10
+
+Music: Artist/Band: You Might Need Somebody?
+Randy crawford
+10
+
+Music: Artist/Band: You Never Give Me Your Money?
+The beatles
+10
+
+Music: Artist/Band: You Really Got A Hold On Me?
+The beatles
+10
+
+Music: Artist/Band: You Shook Me All Night Long (Johnson/Young/Young)?
+Ac/dc
+10
+
+Music: Artist/Band: You Should Be Dancing (Gibb/Gibb/Gibb)?
+Bee gees
+10
+
+Music: Artist/Band: You The?
+Aquatones
+10
+
+Music: Artist/Band: You Wear It Well (Quittenton/Stewart)?
+Rod stewart
+10
+
+Music: Artist/Band: You Were Mine - The?
+Fireflies
+10
+
+Music: Artist/Band: You Won't Be Mine (Thomas)?
+Matchbox 20
+10
+
+Music: Artist/Band: You Won't See Me?
+The beatles
+10
+
+Music: Artist/Band: You'll Be Back (Volver?s) (Estefan/Ferro)?
+Gloria estefan
+10
+
+Music: Artist/Band: You'll Be In My Heart?
+Phil collins
+10
+
+Music: Artist/Band: You're All I've Got Tonight (Ocasek)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: You're Going To Lose That Girl?
+The beatles
+10
+
+Music: Artist/Band: You're in My Heart (The Final Acclaim) (Stewart)?
+Rod stewart
+10
+
+Music: Artist/Band: You're Talking About Me (Hablas de M?) (Piloto)?
+Gloria estefan
+10
+
+Music: Artist/Band: You're The One That I Want?
+Olivia newton john & john travolta
+10
+
+Music: Artist/Band: You've Got a Friend (King)?
+James taylor
+10
+
+Music: Artist/Band: You've Got To Hide Your Love Away?
+The beatles
+10
+
+Music: Artist/Band: You've Lost That Lovin' Feeling - The?
+Righteous Brothers
+10
+
+Music: Artist/Band: Young Girl - The?
+Union Gap
+10
+
+Music: Artist/Band: Young Love?
+Sonny James
+10
+
+Music: Artist/Band: Your Baby Never Looked Good In Blue?
+Expose
+10
+
+Music: Artist/Band: Your Eyes (Tus Ojos) (Estefan/Estefan)?
+Gloria estefan
+10
+
+Music: Artist/Band: Your Husband, My Wife - The?
+Brooklyn Bridge
+10
+
+Music: Artist/Band: Your Latest Trick [live] (Knopfler)?
+Dire straits
+10
+
+Music: Artist/Band: Your Latest Trick?
+Dire straits
+10
+
+Music: Artist/Band: Your Mother Should Know?
+The beatles
+10
+
+Music: Artist/Band: Your Smiling Face (Taylor)?
+James taylor
+10
+
+Music: Artist/Band: Zero (Corgan)?
+Smashing pumpkins
+10
+
+Music: Artist/Band: Zero Chance (Cornell/Shepherd)?
+Soundgarden
+10
+
+Music: Artist/Band: Ziggy Stardust?
+David bowie
+10
+
+Music: Artist/Band: Zoo (Meine/Schenker)?
+Scorpions
+10
+
+Music: Artists Albums: August?
+Eric clapton
+10
+
+Music: Artists Hometowns: Beastie Boys?
+Brooklyn
+10
+
+Music: Artists Hometowns: Fugazi?
+Washington dc
+10
+
+Music: Artists Hometowns: Nirvana?
+Seattle
+10
+
+Music: Artists Hometowns: RUN-DMC?
+Queens
+10
+
+Music: Artists Hometowns: Superchunk?
+Chapel hill
+10
+
+Music: As a friend, as an old enemy?
+Come as you are
+10
+
+Music: As what is Merle Haggard also known as?
+Okie from Muskogee
+10
+
+Music: At the 1996 Brit awards who caused a scene when Michael Jackson was on stage?
+Jarvis Cocker
+10
+
+Music: Avant-Garde guitarist with Skeleton Crew and and Art Bears?
+Fred frith
+10
+
+Music: Axl Rose was an anagram for what phrase?
+Oral Sex
+10
+
+Music: Axl rose's then girlfirend erin everly was the subject of which guns n roses track?
+Sweet child of mine
+10
+
+Music: Baby Don't ____My Number - Milli Vanilli
+Forget
+10
+
+Music: Baccara sang yes sir i can ____
+Boogie
+10
+
+Music: Back To Life - Soul II ____
+Soul
+10
+
+Music: Backup singer on Dark side of the Moon; she also sang with Nick Drake?
+Doris troy
+10
+
+Music: Barbra Streisand has also had a long career. Many will immediately think of 'Funny Girl' when they hear her name. Which of these songs is NOT from the movie?
+Second Hand Rose
+10
+
+Music: Batdance?
+Prince
+10
+
+Music: Bauhaus did a remake of Ziggy Stardust from this singer?
+David bowie
+10
+
+Music: Beautiful Schonberg musical based on the Victor Hugo novel?
+Les miserables
+10
+
+Music: Beethoven wrote his 3rd symphony for who?
+Napoleon
+10
+
+Music: Before enya went solo, she played with her family in this Irish band?
+Clannad
+10
+
+Music: Before going solo, the singer louise was a member of which pop group?
+Eternal
+10
+
+Music: Before moving onto greater fame, Bing Crosby sang with this group?
+Rhythm boys
+10
+
+Music: Belly sings a song that has the same name as what fictional toymaker?
+Gepetto
+10
+
+Music: Bert Berns produced what song for Van Morrison?
+Brown eyed girl
+10
+
+Music: Bertha don't you come around here...?
+Anymore
+10
+
+Music: Besides being a singer, the Big Boppa was also working as a?
+Disc jockey
+10
+
+Music: Besides singing, Karen Carpenter also played what?
+The Drums
+10
+
+Music: Besides Sonny Bono, what other famous male celebrity does Cher have a child with?
+Gregg allman
+10
+
+Music: Besides the stones which group had the longest touring career until the founder's death in 1995?
+Grateful dead
+10
+
+Music: Besides the Stones, which group had the longest touring career until the founder's death in 1995?
+The Grateful Dead
+10
+
+Music: Best known for 'dancin' in the streets', martha and the vandella's also hit the charts with the song about which man?
+Jimmy mack
+10
+
+Music: Best known for musicals, his last directorial effort was Star 80?
+Bob fosse
+10
+
+Music: Between 1969 & 1977, this male entertainer performed more than 700 times, exclusively at the Las Vegas Hilton. Who was he?
+Elvis presley
+10
+
+Music: biggest hit for the group cyrkle?
+Red rubber ball
+10
+
+Music: Biggest Hits: Ace of Base?
+The sign
+10
+
+Music: Biggest Hits: Amy Holland?
+How do i survive
+10
+
+Music: Biggest Hits: Barry White?
+Fame
+10
+
+Music: Biggest Hits: BB King?
+The thrill is gone
+10
+
+Music: Biggest Hits: Bruce Springsteen?
+Dancing in the dark
+10
+
+Music: Biggest Hits: Enya?
+Orinoco flow
+10
+
+Music: Biggest Hits: Etta James?
+Tell mama
+10
+
+Music: Biggest Hits: Jackson Browne?
+Somebodys baby
+10
+
+Music: Biggest Hits: Leif Garrett?
+I was made for dancin
+10
+
+Music: Biggest Hits: Little River BAND?
+Reminiscing
+10
+
+Music: Biggest Hits: Mariah Carey?
+I'll be there
+10
+
+Music: Biggest Hits: Miracles?
+Tears of a clown
+10
+
+Music: Biggest Hits: Monie Love?
+Its a shame
+10
+
+Music: Biggest Hits: Neil Sedaka?
+Bad blood
+10
+
+Music: Biggest Hits: Partners in Kryme?
+Turtle power
+10
+
+Music: Biggest Hits: Paula Abdul?
+Rush rush
+10
+
+Music: Biggest Hits: Salt-N-Pepa?
+Whatta man
+10
+
+Music: Biggest Hits: Sweet?
+Little willy
+10
+
+Music: Biggest Hits: The Pointer Sisters?
+Slow hand
+10
+
+Music: Biggest Hits: The Supremes?
+Baby love
+10
+
+Music: Biggest Hits: The U-Krew?
+If u were mine
+10
+
+Music: Biggest Hits: Whistling Jack Smith?
+I was kaiser bills batman
+10
+
+Music: Bill Clinton is known for playing what musical instrument?
+Saxophone
+10
+
+Music: Bill Haley sings 'See you later ____ '
+Alligator
+10
+
+Music: Bill Justis was a studio musician when he recorded this 'sloppy' instrumental in october 1957?
+Raunchy
+10
+
+Music: Bill Medley and ____ teamed up to record '(I've Had) The Time of My Life'
+Jennifer Warnes
+10
+
+Music: Bills,bills,bills us female trio?
+Destiny's child
+10
+
+Music: Billy Corgan is the lead singer of this band?
+Smashing pumpkins
+10
+
+Music: Billy Idol sang about this popular type of wedding?
+White
+10
+
+Music: Billy Joel: Billy's daughter's name (First & Middle)?
+Alexa ray
+10
+
+Music: Billy Joel: Billy's recent 'dreamy' #1 hit?
+River of dreams
+10
+
+Music: Billy Joel: Only song for Christie Brinkley which mentions her first name?
+Christie lee
+10
+
+Music: Billy Joel: Song in which Virginia appears?
+Only the good die young
+10
+
+Music: Billy Joel: Which Billy video was a parody of Elvis on Ed Sullivan?
+Tell her about it
+10
+
+Music: Billy Joel: Who did Billy & Christie name their daughter after?
+Ray charles
+10
+
+Music: Billy once dated this famous widow of Kurt Cobain?
+Courtney love
+10
+
+Music: Billy ray cyrus sang '____ breaky heart'
+Achy
+10
+
+Music: Bing Crosby is perhaps best known for 'White Christmas'. In what movie did he sing the song?
+Holiday Inn
+10
+
+Music: Birth place of Luciano Pavarotti?
+Italy
+10
+
+Music: Black superman and in zaire were mid-seventies hits for whom?
+Johnny wakelin
+10
+
+Music: Blame It On The Rain - Milli ____
+Vanilli
+10
+
+Music: Blondie's final #1?
+The tide is high
+10
+
+Music: Blondie's first no 1 was?
+Heart of glass
+10
+
+Music: Blue collar man (1978) was a hit by what group?
+Styx
+10
+
+Music: Blue eyed crooner who does it 'My Way'?
+Frank sinatra
+10
+
+Music: Blue Swede might have invented heavy metal with this #1 hit?
+Hooked on a feeling
+10
+
+Music: Blue(da ba dee) was a no 1 hit name the band?
+Eiffel 65
+10
+
+Music: Blues Brothers: Who played the energetic preacher?
+James brown
+10
+
+Music: Bluesy scary Stones song, staple of live shows, often running 11-12 minutes?
+Midnight rambler
+10
+
+Music: Bob Carlisle 'Thanks god for all the joy in his life, but most of all for ____
+Butterfly kisses
+10
+
+Music: Bob Dylan foils bootleggers by releasing his own 58 song?
+Bootleg series
+10
+
+Music: Bob Dylan, Jeff Lynne, Roy Orbison, Tom Petty & George Harrison formed this group briefly?
+Traveling wilburys
+10
+
+Music: Bob Dylan: 1992 Album of traditional folk songs?
+Good as i been to you
+10
+
+Music: Bob Dylan: Dylan song covered by U2, Jimi Hendrix, Neil Young?
+All along the watchtower
+10
+
+Music: Bob Dylan: Dylans name on the first Travelling Wilbury's album?
+Lucky wilbury
+10
+
+Music: Bob Dylan: Fraternity Dylan pledged in college but never finished pledgeship?
+Sigma alpha mu
+10
+
+Music: Bob Seger's band for many years?
+The silver bullet band
+10
+
+Music: Bobby Darin's recording of a Tim Hardin composition hit the top ten in 1966. The song was 'If I Were A____
+Carpenter
+10
+
+Music: Bobby hatfield and bill medley formed which dynamite singing duo?
+Righteous brothers
+10
+
+Music: Body Count's controvesial song about revenge for police brutality?
+Cop killer
+10
+
+Music: Bone Thugs 'n?
+Harmony
+10
+
+Music: Bonnie raitt sang 'something to talk ____'
+About
+10
+
+Music: Bono, The Edge, Adam Clayton; name the fourth member of this band?
+Larry Mullen jr
+10
+
+Music: Bonzo?
+John bonham
+10
+
+Music: Born To Be My ____- Bon Jovi
+Baby
+10
+
+Music: Both Joe South and the Spinners recorded different Top- 20 tunes with the exact same title. What is that title?
+Games People Play
+10
+
+Music: Bow wow wow asked one of their early members to leave the group because he was too outspoken. who was he?
+Boy george
+10
+
+Music: Boy george was the lead singer for what group?
+Culture club
+10
+
+Music: Brandy and ____ had a No.1 with 'The Boy Is Mine' in 1998
+Monica
+10
+
+Music: Brass instrument resembling a trumpet?
+Cornet
+10
+
+Music: Brazil's most well-known classical music composer?
+Hector villa-lobos
+10
+
+Music: Brett Anderson & Bernard Butler formed which band in 1990?
+Suede
+10
+
+Music: Brian connolly was singer with which 70's band?
+Sweet
+10
+
+Music: Brian Robertson & Jimmy Bain formed what group?
+Wild horses
+10
+
+Music: Brit Isle Bands: According to Elastica, who may lurk in every little Honda?
+Peter fonda
+10
+
+Music: Brit Isle Bands: According to Neds Atomic Dustbin, what does 2 and 2 make?
+Five
+10
+
+Music: Brit Isle Bands: Bush song that is also a hormone?
+Testosterone
+10
+
+Music: Brit Isle Bands: Formerly of the Eurythmics, now this woman is a successful solo artist?
+Annie lennox
+10
+
+Music: Brit Isle Bands: Half of Enya's songs are in English. What language are the others sung in?
+Gaelic
+10
+
+Music: Brit Isle Bands: Lineup: Dolores Oriordan, Noel Hogan, Mike Hogan, Feargal Lawler?
+The cranberries
+10
+
+Music: Brit Isle Bands: Lineup: Justine Frischmann, Donna Matthews, Annie Holland, Justin Welch?
+Elastica
+10
+
+Music: Brit Isle Bands: Neds Atomic Dustbin asks the question: Are You?
+Normal
+10
+
+Music: Brit Isle Bands: Oasis sings about what type of supernova?
+Champagne
+10
+
+Music: Brit Isle Bands: Radiohead's baby has got this, a diver's problem?
+The bends
+10
+
+Music: Brit Isle Bands: Sinead O'Connor covered this Nirvana song on Universal Mother?
+All apologies
+10
+
+Music: Brit Isle Bands: Tanya Donelly (Belly) has a stepsister. What band does she sing in?
+Throwing muses
+10
+
+Music: Brit Isle Bands: This band, clown's fave, features Flea and isn't British, but who cares?
+Red hot chili peppers
+10
+
+Music: Brit Isle Bands: This singer got in trouble for ripping the Pope's picture on SNL?
+Sinead oconnor
+10
+
+Music: Brit Isle Bands: What colour is Catherine Wheels skin, according to the song?
+Black metallic
+10
+
+Music: British full-lipped singer who once studied economics?
+Mick jagger
+10
+
+Music: British Scientist Sir Charles Wheatstone is said to be the inventor of the concertina and which other instrument?
+Harmonica
+10
+
+Music: Broadway musical about carnival barker Billy Bigelow?
+Carousel
+10
+
+Music: Broadway musical about Mayor LaGuardia of NYC?
+Fiorello!
+10
+
+Music: Broadway Musical about the life of Jelly Roll Morton?
+Jellys last jam
+10
+
+Music: Broadway Musical tribute to the music of Louis Jordan?
+5 guys named moe
+10
+
+Music: Brother, wanna thank your mother for a butt like that?
+Shoop
+10
+
+Music: Bruce Hornsby & the ____
+Range
+10
+
+Music: Bruce Hornsby: Bruce now records at a self-built studio in his home state of?
+Virginia
+10
+
+Music: Bruce Hornsby: Bruce was the backing piano player for this female pop singer in 1983?
+Sheena easton
+10
+
+Music: Bruce Hornsby: The second album song that takes its title from a Robert Frost poem?
+The road not taken
+10
+
+Music: Bruce-penned song that another artist took to #1 in 1977?
+Blinded by the light
+10
+
+Music: Bryan Adams and Warrant found it?
+Heaven
+10
+
+Music: Bryan adams wants to know how does it feel behind ____
+Those eyes of blue
+10
+
+Music: Buddy holly released a solo 'peggy sue' that, by the end of 1957 was challenging which song recorded with the crickets?
+Oh boy
+10
+
+Music: Buffalo Stance - Neneh ____
+Cherry
+10
+
+Music: Burt Bacharach has performed with the this band in an unlikely match up?
+Barenaked ladies
+10
+
+Music: Bust A Move - ____M.C
+Young
+10
+
+Music: By what name is Adeste Fideles better known?
+Oh Come,all ye faithful
+10
+
+Music: By what name is Emma Bunton better known?
+Baby spice
+10
+
+Music: By which name is David robert jones better known?
+David bowie
+10
+
+Music: By which name is Mendelssohn's Third Symphony known?
+Scottish
+10
+
+Music: Calling occupants of interplanetary craft was a best-selling single for which American duo?
+Carpenters
+10
+
+Music: Car mentioned in Fun, Fun, Fun by the Beach Boys?
+Thunderbird
+10
+
+Music: Cat stevens sings 'i can't keep it in, i gotta ____'
+Let it out
+10
+
+Music: Cat Stevens wanted us all to ride this in 1971?
+Peace train
+10
+
+Music: CDEFGABC is an example of what?
+Scale
+10
+
+Music: Celebrity Albums: And Awaaay We Go!?
+Jackie gleason
+10
+
+Music: Celebrity Albums: Another Fine Mess?
+Stan laurel
+10
+
+Music: Celebrity Albums: Babalu?
+Desi arnaz
+10
+
+Music: Celebrity Albums: Boy Wonder, I Love You?
+Burt ward
+10
+
+Music: Celebrity Albums: Cuchi-Cuchi?
+Charo
+10
+
+Music: Celebrity Albums: Cybill does it to Cole Porter?
+Cybill shepard
+10
+
+Music: Celebrity Albums: Dobie!?
+Dwayne hickman
+10
+
+Music: Celebrity Albums: Gomer Pyle U.S.M.C?
+Jim nabors
+10
+
+Music: Celebrity Albums: Hawaiiannette?
+Annette funicello
+10
+
+Music: Celebrity Albums: Hi, Guys!?
+Ted knight
+10
+
+Music: Celebrity Albums: I am the Greatest?
+Cassius clay
+10
+
+Music: Celebrity Albums: Knight Lover?
+David hasselhoff
+10
+
+Music: Celebrity Albums: Laverne & Shirley Sing?
+Penny marshall
+10
+
+Music: Celebrity Albums: Mahvelous!?
+Billy crystal
+10
+
+Music: Celebrity Albums: Marilyn!?
+Marilyn monroe
+10
+
+Music: Celebrity Albums: Miss Rona Sings Hollywood's Greatest Hits?
+Rona barrett
+10
+
+Music: Celebrity Albums: Ol' Yellow Eyes is Back?
+Brent spiner
+10
+
+Music: Celebrity Albums: Shaq Diesel?
+Shaquille oneal
+10
+
+Music: Celebrity Albums: The Man from Shaft?
+Richard roundtree
+10
+
+Music: Celebrity Albums: The Odd Couple Sings?
+Tony randall
+10
+
+Music: Celebrity Albums: Voice of Fire (recorded pre-Waco)?
+David koresh
+10
+
+Music: Celebrity Lovers: Emilio Estevez was once happily married to this singer, dancer, & choreographer?
+Paula abdul
+10
+
+Music: Celtic folk group featuring Richard Thompson, Dave Pegg, Simon Nicols...?
+Fairport convention
+10
+
+Music: Certainly ironic if this sensitive songwriter really mistreated Daryl Hannah?
+Jackson browne
+10
+
+Music: Certainly the most well known Indian Sitar player in the west?
+Ravi shankar
+10
+
+Music: Cher sang about Gypsies, Tramps, and...this?
+Thieves
+10
+
+Music: Cherish?
+Madonna
+10
+
+Music: Cherry ____- John Cougar Mellencamp
+Bomb
+10
+
+Music: Chicago guitar rock band who headlined Lollapalooza '94?
+Smashing pumpkins
+10
+
+Music: Chili Peppers' Bassist who left the band shortly before Lollapalooza II?
+John frusciante
+10
+
+Music: Chris Isaak did a cover of this Neil Diamond song on 'San Francisco Days'?
+Solitary man
+10
+
+Music: Chris Mars fronted this alternative group, a media darling in the 1980s?
+The replacements
+10
+
+Music: Chrissie Hynde led which band?
+The Pretenders
+10
+
+Music: Christina Ricci appears in a video by what artist?
+Moby
+10
+
+Music: Christine Aguilera sang about a what '...In A Bottle' in 1999?
+Genie
+10
+
+Music: Christmas Songs: This Tchaikovsky piece from the Nutcracker uses the celeste?
+Dance of the sugar-plum fairy
+10
+
+Music: Christmas Songs: To avoid controversy, many record stores didn't carry his 1958 Christmas album?
+Elvis presley
+10
+
+Music: Christmas Songs: What Jeannette Isabella is asked to bring?
+Torch
+10
+
+Music: Cilla black had a hit with the title song from which movie in 1966?
+Alfie
+10
+
+Music: Circle In The ____- Belinda Carlisle
+Sand
+10
+
+Music: Clapton's Love Song from Slow Hand?
+Wonderful tonight
+10
+
+Music: Clash: Joe Strummer plays a troublemaker in Memphis in this Jim Jarmusch Film?
+Mystery train
+10
+
+Music: Clash: Joe Strummer stars in this Alex Cox Western with D Hopper & E Costello?
+Straight to hell
+10
+
+Music: Clash: This Clash member went on to form B.A.D?
+Mick jones
+10
+
+Music: Classical: 80 years after his death, Bach was all but forgotten by the general public. Which composer is credited with reviving interest in Bach after his death?
+Felix Mendelssohn
+10
+
+Music: Classical: A cadenza is?
+A passage in the style of brilliant improvisation
+10
+
+Music: Classical: A Canzone is?
+A transcribed madrigal or chanson
+10
+
+Music: Classical: A common name for a canon so devised that it can be repeated indefinitely is?
+A round
+10
+
+Music: Classical: A feature of Franz Schubert's life was the Schubertiad. What was it?
+Musical party
+10
+
+Music: Classical: A Gigue is?
+A lively dance in 6/8 meter
+10
+
+Music: Classical: A IV-I chord progression is called a?
+Plagal cadence
+10
+
+Music: Classical: A Motive or Motif is?
+A brief melodic fragment too short to be called a theme
+10
+
+Music: Classical: A performance by this folk-orchestra at the Paris Exhibition is said to have made a marked impression on Debussy?
+A Javanese gamelan
+10
+
+Music: Classical: A Polish court dance in triple rhythm , moderately fast is a?
+Polonaise
+10
+
+Music: Classical: A style of vocal music from the fifteenth century of Italian origin is?
+Madrigal
+10
+
+Music: Classical: Adagio refers to?
+A tempo indication meaning very slow
+10
+
+Music: Classical: After being left an orphan at the age of 10, he was taken care of by his older brother Johann Cristoph?
+Bach
+10
+
+Music: Classical: After what river did Robert Schumann entitle a symphony?
+The Rhine
+10
+
+Music: Classical: Alexander Glazounov (1865-1936) was which of the following?
+A composer
+10
+
+Music: Classical: Although he breezed through the Paris Conservatory's entrance exams, who was refused admission because he was age 7?
+Albeniz
+10
+
+Music: Classical: Although Mussorgsky wrote Pictures at an Exhibition, whose orchestration of it is usually heard?
+Ravel
+10
+
+Music: Classical: An American popular-song composer based this hit song on Chopin's Fantasie-Impromptu. This tune is?
+I'm Always chasing Rainbows
+10
+
+Music: Classical: Approximately how many waltzes did Johann Strauss Jr. compose?
+Over 500
+10
+
+Music: Classical: Arturo Toscanini (1867-1957) was best known as what?
+A conductor
+10
+
+Music: Classical: As a choir boy, Haydn was considered a practical joker. On one occasion, he...?
+Cut off the pigtails of another singer
+10
+
+Music: Classical: At the beginning of his career, Glenn Gould recorded a work which he recorded again shortly before he died. This was ?
+The Goldberg Variations
+10
+
+Music: Classical: Bach wrote a charming collection of easy piano pieces for his second wife?
+Anna Magdalena
+10
+
+Music: Classical: Bach's Two & Three part inventions are a primer for this opus?
+Well tempered clavier
+10
+
+Music: Classical: Baroque composer famous for the oratorio Messiah in 1742?
+Handel
+10
+
+Music: Classical: Beethoven incorporated a poem by Schiller into what opus?
+Symphony no. 9
+10
+
+Music: Classical: Beethoven's piano sonatas were influenced by those of an earlier composer whose B-flat major sonat was the subject of a competition with Mozart?
+Clementi
+10
+
+Music: Classical: Beethoven's Sonata in F major for Violin and Piano, Op. 24 bearswhich seasonal nickname?
+Spring
+10
+
+Music: Classical: Berlioz was a proficient player of only this instrument?
+Guitar
+10
+
+Music: Classical: Between 1791 and 1795, this continental composer spent most of his time writing symphonies in London?
+Haydn
+10
+
+Music: Classical: British composer known for A London Symphony & the opera Hugh the Drover?
+Vaughan williams
+10
+
+Music: Classical: By what first name was the French composer Berlioz known?
+Hector
+10
+
+Music: Classical: Chopin and George Sand hoped to have an idyllic holiday on this island paradise. Instead it turned into a nightmare. Name this island?
+Majorca
+10
+
+Music: Classical: Chopin's Polonaise #53 in Ab was adapted for what popular song?
+Till the End of Time
+10
+
+Music: Classical: Composer Heitor Villa-Lobos was born in which country?
+Brazil
+10
+
+Music: Classical: Composer of Swedish Rhapsody?
+Hugo alfven
+10
+
+Music: Classical: Composers Rimsky-Korsakov, Borodin, Balakirev, Cui and Mussorgskybelonged to what group?
+The Five
+10
+
+Music: Classical: Conductor for Fantasia?
+Leopold stokowski
+10
+
+Music: Classical: Debussy is noted for his use of this non-traditional scale?
+Whole tone
+10
+
+Music: Classical: Did Johannes Brahms...?
+Remain a bachelor
+10
+
+Music: Classical: Domenico Scarlatti acquired novel ideas on the use of rhythm and harmony during his sojourn in what country?
+Spain
+10
+
+Music: Classical: Each movement of Vaughan William's Sinfonia Antarctica contains quotes from the journals of which explorer?
+Scott
+10
+
+Music: Classical: Eduard Hanslick (1825-1904) was famous in what capacity?
+Music critic
+10
+
+Music: Classical: For what instrument did Girolamo Frescobaldi become one of the firstgreat composers of music?
+Organ
+10
+
+Music: Classical: For what two solo instruments did Brahms write his DoubleConcerto in A minor Op. 102?
+Violin and cello
+10
+
+Music: Classical: For which British monarch's water party did Handel write his WaterMusic?
+George I
+10
+
+Music: Classical: For which of his operas did Rimsky-Korsakov write The Flight ofthe Bumblebee?
+Tsar Saltan
+10
+
+Music: Classical: For which trio of solo instruments did Beethoven write his TripleConcerto in C maior?
+Piano, violin and cello
+10
+
+Music: Classical: For whom did Berlioz write his viola concerto Harold in Italy?
+Paganini
+10
+
+Music: Classical: For whom did Mozart write the Requiem in D minor, K.626?
+Walsegg-Stuppach
+10
+
+Music: Classical: For whom was an arrest warrant issued in Dresden in 1849?
+Verdi
+10
+
+Music: Classical: French composer known for the operas Carmen, Djmileh, & The Pearlfishers?
+Georges bizet
+10
+
+Music: Classical: French writer George Sand is remembered for her affair with which composer?
+Chopin
+10
+
+Music: Classical: Gaspard de la Nuit refers to?
+A set of three piano pieces by Ravel
+10
+
+Music: Classical: Gluck, Haydn, Mozart and Beethoven?
+Were exponents of the classic Sonata
+10
+
+Music: Classical: Grieg's Peer Gynt was originally incidental music to a play of the same name. Who wrote the play?
+Henrik Ibsen
+10
+
+Music: Classical: Haydn was taken in by this noble patron in 1761 and remained in the service of his family for the next 30 years?
+Prince Paul von Esterhazy
+10
+
+Music: Classical: Haydn's wife was not exactly a music lover. Her insensitivity really showed when she...?
+Used Haydn's manuscript for hair curlers
+10
+
+Music: Classical: He was a patient of Freud's for a short time?
+Mahler
+10
+
+Music: Classical: He was Leipzig's leading piano teacher in 1830. Schumann was sent to study with him and fell in love with his daughter?
+Frederick Wieck
+10
+
+Music: Classical: He wrote over 100 symphonies...and he created the string quartet?
+Haydn
+10
+
+Music: Classical: His principal works are the operas Wozzeck & Lulu?
+Alban berg
+10
+
+Music: Classical: How did French pianist and composer Charles Alkan meet his death?
+Crushed to death by a falling bookcase
+10
+
+Music: Classical: How many symphonies did Beethoven write{Beethoven was born in Bonn, Germany in 1770. He died inVienna, Austria in 1827.}?
+Nine
+10
+
+Music: Classical: How many symphonies did Chopin write?
+None
+10
+
+Music: Classical: How many symphonies did Tchaikovsky write?
+6
+10
+
+Music: Classical: Humoresque was published in 1890 and has remained a favorite. Who wrote it?
+Dvorak
+10
+
+Music: Classical: In 1705, J.S. Bach was exposed to a composer who influenced him greatly. Who was he?
+Buxtehude
+10
+
+Music: Classical: In 1723, J .S. Bach left Cothen to take up a new job in which city?
+Leipzig
+10
+
+Music: Classical: In 1835 Chopin had a traumatic experience, sharing the stage with a more dazzling pianist. Chopin attracted only a fraction of the applause garnered by his rival?
+None of the above
+10
+
+Music: Classical: In 1853 this virtuoso had to transpose Beethoven's C minor symphony into C# minor?
+Brahms
+10
+
+Music: Classical: In 1867 Paul Dukas published this piece based on a story by Goethe?
+The Sorceror's Apprentice
+10
+
+Music: Classical: In 1923, Arthur Honegger wrote Pacific 231. What inspired it?
+A train engine
+10
+
+Music: Classical: In 1970, 100 cellists played Sardana in tribute to what composer?
+Casals
+10
+
+Music: Classical: In his Dance of the Sugar Plum Fairies (1892), Tchaikovsky made use of what newly invented instrument?
+Celesta
+10
+
+Music: Classical: In the music of J.S. Bach, one can find evidence of...?
+Numerology
+10
+
+Music: Classical: In the slow, gentle second movement of Haydn's Symphony in G Major (No.94), a loud chord for full orchestra suddenly bursts forth. What is this Symphony better known as?
+The Surprise Symphony 
+10
+
+Music: Classical: In what Austrian city is an annual Mozart festival held?
+Salzburg
+10
+
+Music: Classical: In what city did Chopin die in 1849?
+Paris
+10
+
+Music: Classical: In what city did the barcarolle originate?
+Venice
+10
+
+Music: Classical: In what city was Tchaikovsky's Piano Concerto No. 1 in B-flat minorgiven its world premiere?
+Boston
+10
+
+Music: Classical: In what country was Mikhail Glinka born in 1804?
+Russia
+10
+
+Music: Classical: In what German city was Handel born?
+Halle
+10
+
+Music: Classical: In what key did Franz Liszt write the beautiful Liebestraum #3?
+A-flat
+10
+
+Music: Classical: In what key is Grieg's only piano concerto, Op. 16?
+A minor
+10
+
+Music: Classical: In what key is the Moonlight Sonata?
+C# minor
+10
+
+Music: Classical: In what work did Tchaikovsky employ a celesta?
+The Nutcracker
+10
+
+Music: Classical: In which tempo should a piece of music annotated with term 'presto' be played?
+Very fast
+10
+
+Music: Classical: John Field was the first to use this title for a short piano piece in a romantic mood. Chopin acheived great success in developing this form?
+Nocturne
+10
+
+Music: Classical: Leonard Bernstein's last minute conducting debut with the N.Y. Philharmonic in 1943 launched his career. Who was he filling in for?
+Bruno Walter
+10
+
+Music: Classical: List some Classical Composers?
+Bach
+10
+
+Music: Classical: Mendelssohn's wedding march begins on an unusual chord of which type?
+Diminished
+10
+
+Music: Classical: Most present day composers would consider 4 or 5 Symphonies to be a good Symphonic output for a lifetime. Name the composer who wrote 102 Symphonies?
+Haydn
+10
+
+Music: Classical: Mozart, Haydn and Beethoven are sometimes collectively refered to as...?
+Composers of the First Viennese School
+10
+
+Music: Classical: Name the composer who tried to commit suicide by jumping in the Rhine?
+Robert Schumann
+10
+
+Music: Classical: Name the composer who wrote a an opus to specifically demonstrate equal temperament?
+Bach
+10
+
+Music: Classical: Name the Ibsen play for which Edward Grieg composed incidental music?
+Peer Gynt
+10
+
+Music: Classical: Name the piano virtuoso who spent the earlier years ofhis life pursuing sensual pleasures and many love affairs, but spent the last years of his life in prayer and contemplation as an Abbe?
+Franz Liszt
+10
+
+Music: Classical: Near the end of this symphony, the players gradually leave the stage until at the end there are only two first violins left. The composer was?
+Haydn
+10
+
+Music: Classical: Of these four great pianist-composers, which was the only one towrite operas?
+Mozart
+10
+
+Music: Classical: On what opera was Puccini working when he died in 1924?
+Turandot
+10
+
+Music: Classical: One of Brahm's most difficult pieces is based on a theme by this composer who lived from 1782 to 1840?
+Paganini
+10
+
+Music: Classical: Puccini's finest opera was completed after his death by his frend Franco Alfano. It is a fairy tale about a cruel but beautiful Chinese princess?
+Turandot
+10
+
+Music: Classical: Richard Strauss, Claude Debussy, Serge Rachmaninov and Bela Bartok were all composers of the?
+Modern period
+10
+
+Music: Classical: Richard Wagner's second wife Cosima was the illegitimatedaughter of what famous virtuoso?
+Liszt
+10
+
+Music: Classical: Schubert, Mendelssohn, Chopin and Verdi were composers of the?
+Romantic period
+10
+
+Music: Classical: Schumann's wife hung around him after her husband Robert Schumann died?
+Brahms
+10
+
+Music: Classical: Several independent voices, each entering separately with the subject or answer are identifying characteristics of?
+The fugue
+10
+
+Music: Classical: Sonata No. 8, Opus No.13 in C minor by Beethoven is referred to as?
+Sonata Pathetique
+10
+
+Music: Classical: Tchaikovsky's Sleeping Beauty,Op. 66, is which of the following?
+Ballet
+10
+
+Music: Classical: The 11th and youngest son of J.S. Bach studied in Italy before moving to which country where his musical career fluorished?
+England
+10
+
+Music: Classical: The Classical Sonata form usually has how many movements?
+-- Answer metadata begin
+{
+    "answers": ["Four", "4"]
+}
+-- Answer metadata end
+10
+
+Music: Classical: The composer is said to have written this piece upon learning of the capture of Warsaw by the Russians?
+Etude in C minor
+10
+
+Music: Classical: The Concerto for Orchestra was written by whom?
+Bartok
+10
+
+Music: Classical: The first four notes (of the melody) of Beethoven's Sonata Pathetique in C minor are?
+C, C, D, Eb
+10
+
+Music: Classical: The first four notes of the first main theme of Chopin's Grande Valse Brilliante in Eb major are?
+Bb, D, Eb, F
+10
+
+Music: Classical: The first movement of a Sonata is usually?
+Sonata form allegro
+10
+
+Music: Classical: The first three notes of the main theme of the second movement in Beethoven's Pathetique Sonata are?
+C, Bb, Eb
+10
+
+Music: Classical: What is the formalized solo song used in the opera?
+-- Answer metadata begin
+{
+    "answers": ["Aria", "The Aria"]
+}
+-- Answer metadata end
+10
+
+Music: Classical: The literal imitation of one melody, instrumental or vocal, by another at a specific time interval is?
+-- Answer metadata begin
+{
+    "answers": ["Canon", "A canon"]
+}
+-- Answer metadata end
+10
+
+Music: Classical: The Love Theme from Elvira Madigan is this number piano concerto?
+-- Answer metadata begin
+{
+    "answers": ["Twenty-one", "21", "Twenty one"]
+}
+-- Answer metadata end
+10
+
+Music: Classical: The music of which composer was banned in Nazi Germany?
+Mendelssohn
+10
+
+Music: Classical: The musical term for a fast tempo is?
+Allegro
+10
+
+Music: Classical: The National Anthem of Austria has been referred to as musically the finest National Anthem ever written. Who composed this work?
+Josef Haydn
+10
+
+Music: Classical: The Opera Don Giovanni was based on what character?
+Don Juan
+10
+
+Music: Classical: The Rakoczy March is named for the leader of what country's campaign against Austria?
+Hungary
+10
+
+Music: Classical: The second movement of a Symphony is usually?
+Slow
+10
+
+Music: Classical: The second movement of the Sonata form is usually?
+Slow
+10
+
+Music: Classical: The song Tonight We Love was taken from the opening theme of which concerto?
+Tchaikovsky's Piano Concerto
+10
+
+Music: Classical: The story behind Wagner's Der Ring Des Nibelungen is drawn from...?
+Norse mythology
+10
+
+Music: Classical: The striking innovation of Beethoven's 9th Symphony is the use of chorus and solo voices. Who's text did Beethoven use?
+Johann Von Schiller
+10
+
+Music: Classical: The Symphony form owes its development to?
+The Sonata form
+10
+
+Music: Classical: The Symphony form usually consists of?
+Four movements
+10
+
+Music: Classical: The work of which artist inspired Mussorssky's Pictures at anExhibition?
+Victor Hartmann
+10
+
+Music: Classical: This ballet was first performed in 1892 in St. Petersburg?
+The Nutcracker
+10
+
+Music: Classical: This Chopin etude calls for extended chromatic runs executed by the last three fingers of the right hand?
+-- Answer metadata begin
+{
+    "answers": ["Opus 10 No. 2 in A minor", "Opus 10 #2 in A minor"]
+}
+-- Answer metadata end
+10
+
+Music: Classical: This composer born in 1875 is of Basque origin?
+Ravel
+10
+
+Music: Classical: This composer died in Paris from cancer of the rectum while the city was being shelled by the German Army in 1918?
+Debussy
+10
+
+Music: Classical: This composer travelled extensively in Eastern Europe to research the elements of Magyar folk-music?
+Bartok
+10
+
+Music: Classical: This composer was a pupil of Beethoven & a teacher of Liszt?
+Czerny
+10
+
+Music: Classical: This composer was born in 1860 in Bohemia and died in 1911 in Vienna?
+Mahler
+10
+
+Music: Classical: This European composer spent the last years of his life living in appalling poverty in New York City. Near the end, he was commissioned to write a piece for the Boston Symphony Orchestra. His name?
+Bartok
+10
+
+Music: Classical: This famours astronomer was the son of a composer?
+Gallileo
+10
+
+Music: Classical: This hugely prolific composer was ill equipped to deal with the ways of the world. Despite the aid of friends in having his songs published he dies in poverty at the age of 31?
+Schubert
+10
+
+Music: Classical: This major key, Chopin's favorite, has five sharps?
+B
+10
+
+Music: Classical: This pianist gave his first public performance in 1892, his last in 1976?
+Rubinstein
+10
+
+Music: Classical: This Russian composer is known for his children's piano pieces?
+Kabalevsky
+10
+
+Music: Classical: This Russian composer is responsible for the stirring Prelude in C# minor?
+Rachmanninov
+10
+
+Music: Classical: This Russian pianist and composer endured the German siege of Leningrad?
+Shostakovich
+10
+
+Music: Classical: Two composers who concentrated on writing opera were both bornin 1813. Who were they?
+Verdi and Wagner
+10
+
+Music: Classical: Two of this composer's better-remembered lovers were the Comtesse D'Agoult and Princess Sayn-Wittgenstein?
+Liszt
+10
+
+Music: Classical: Two popular one-act operas are often paired together to form anevening's bill: I Pagliacci by Leoncavallo and Cavalleria Rusticana by whom?
+Mascagni
+10
+
+Music: Classical: Upon what instrument was Pablo Casals a virtuoso?
+Cello
+10
+
+Music: Classical: Vivaldi, Purcell, Handle, and Bach were composers of the?
+Baroque period
+10
+
+Music: Classical: Vivaldi's Four Seasons concertos feature which solo instrument?
+Violin
+10
+
+Music: Classical: What are the Goldberg Variations?
+Thirty variations by Bach on theme of his own
+10
+
+Music: Classical: What city was Mozart was born in?
+Salzburg
+10
+
+Music: Classical: What classical composition was the popular song Full Moon And Empty Arms derived from?
+Rachmanninov's Piano Concerto No. 2
+10
+
+Music: Classical: What composer adapted Edgar Allan Poe's Fall of the House of Usher for an operatic libretto?
+Debussy
+10
+
+Music: Classical: What composer at age 44 became tragically insane and was confined to anasylum?
+Schumann
+10
+
+Music: Classical: What composer became so depressed, he needed hypnotism before he could write again?
+Rachmaninov
+10
+
+Music: Classical: What composer conducted a mammoth performance of 20,000 musicians andsingers during a visit to the United States?
+Strauss
+10
+
+Music: Classical: What composer had a daughter named Chouchou to whom he dedicated the Children's Corner suite?
+Debussy
+10
+
+Music: Classical: What composer was born in Rohfrau, Lower Austria in 1732 and dies in Vienna in 1809?
+Haydn
+10
+
+Music: Classical: What composer was famous for his Polonaises?
+Frederic Chopin
+10
+
+Music: Classical: What composer wrote a piece which became the nationalanthem of two different countries?
+Haydn
+10
+
+Music: Classical: What composer, when not awarded the Grand Prix, forced the resignation of the head of the Paris Conservatory?
+Ravel
+10
+
+Music: Classical: What composition can be sung forward and backward, then turned upside down and sung forward and backward again?
+Oh Sing Unto The Lord
+10
+
+Music: Classical: What composition was structured on a single theme repeated over and over?
+None of the above
+10
+
+Music: Classical: What composition was used as the theme of the Lone Ranger TV series?
+William Tell Overture
+10
+
+Music: Classical: What did the ladies of Dublin agree to do so more people could attendHandel's Messiah?
+Go without their hoops
+10
+
+Music: Classical: What did Tzar Alexander I of Russia give to Chopin after a performance?
+Diamond ring
+10
+
+Music: Classical: What director of the Paris Conservatory refused admission to Liszt?
+Cherubini
+10
+
+Music: Classical: What does piano really mean in Italian?
+Soft
+10
+
+Music: Classical: What does the indication Da CaPo mean?
+Repeat
+10
+
+Music: Classical: What does the term appoggiatura mean?
+Replacement of a note by it's upper or lower note
+10
+
+Music: Classical: What group was Mozart a member of?
+Freemasons
+10
+
+Music: Classical: What instrument did Johannes Brahms' father play?
+Double bass
+10
+
+Music: Classical: What instrument did Queen Elizabeth I of England play?
+Virginal
+10
+
+Music: Classical: What is considered to be the first true Italian opera?
+Eurydice
+10
+
+Music: Classical: What is peculiar about Schubert's _Symphony No. 8?
+Unfinished
+10
+
+Music: Classical: What is the Heiligenstadt Testament?
+Beethoven's letter of personal despair
+10
+
+Music: Classical: What is the highest female voice?
+Soprano
+10
+
+Music: Classical: What is the meaning of fermata?
+To pause
+10
+
+Music: Classical: What is the nickname of Beethoven's Piano Concerto No. 5?
+Emperor
+10
+
+Music: Classical: What is the only left handed instrument in the orchestra?
+French horn
+10
+
+Music: Classical: What kind of music is Schoenberg credited with creating?
+Atonal
+10
+
+Music: Classical: What or who is the Diabolus in Musica (the devil in music)?
+Late medieval name for the Tritone interval
+10
+
+Music: Classical: What poem by Goethe inspired music by Wagner, Schumann, Gounod, and Liszt?
+Faust
+10
+
+Music: Classical: What popular song was based on Chopin's Fantasie Impromptu, Opus 66?
+I'm Always Chasing Rainbows
+10
+
+Music: Classical: What popular song was based on Chopin's Polonaise, Opus 53?
+Till the End of Time
+10
+
+Music: Classical: What role did Michael Puchberg play in Mozart's life?
+Creditor
+10
+
+Music: Classical: What small town in Upper Franconia is synonymous with the music of Wagner?
+Bayreuth
+10
+
+Music: Classical: What term indicates that the music should be plucked rather than bowed?
+Pizzicato
+10
+
+Music: Classical: What two composers died within one and a half years of each other?
+Beethoven and Schubert
+10
+
+Music: Classical: What violinist was said to have sold his soul to the devil?
+Paganini
+10
+
+Music: Classical: What virtuoso pianist had to turn to composing after he injured his hand when he tried to strengthen his third and fourth fingers using a self-invented apparatus?
+Robert Schumann
+10
+
+Music: Classical: What was Albert Ketelbey's real name?
+Albert Ketelbey
+10
+
+Music: Classical: What was Anton Bruckner's principal instrument?
+Organ
+10
+
+Music: Classical: What was Beethoven's only opera?
+Fidelio
+10
+
+Music: Classical: What was Jean Sibelius' real first name?
+Johan
+10
+
+Music: Classical: What was known as Paganini's widow?
+His favorite violin
+10
+
+Music: Classical: What was Sir George Grove's contribution to music?
+A musical dictionary
+10
+
+Music: Classical: What was the connection between Alessandro and Domenico Scarlatti?
+Vice versa
+10
+
+Music: Classical: What was the family relationship between Richard and JohannStrauss?
+None of the above
+10
+
+Music: Classical: What's a Fermata?
+A long pause
+10
+
+Music: Classical: When an independent Poland was carved out from Russian, German, and Austrian territory after WWI, this pianist became its first prime minister?
+Paderewski
+10
+
+Music: Classical: When Gershwin's Rhapsody in Blue was premiered in 1924, whose orchestra accompanied?
+Paul Whiteman's
+10
+
+Music: Classical: When Liszt played his Piano Sonata to Brahms in 1853, what didBrahms do?
+Fell asleep
+10
+
+Music: Classical: Which author inspired Liszt's Mephisto Waltz No. 1?
+Nikolaus Lenau
+10
+
+Music: Classical: Which Beethoven symphony bears the opus number 125?
+No. 9 in D minor
+10
+
+Music: Classical: Which century did Johann Sebastian Bach die in?
+18th
+10
+
+Music: Classical: Which composer died at the age of 91?
+Sibelius
+10
+
+Music: Classical: Which composer is credited with having first developed the twelve tone technique?
+Arnold Schoenberg
+10
+
+Music: Classical: Which composer is known for a lullaby which bears his name?
+Brahms
+10
+
+Music: Classical: Which composer sent a lock of goat's hair to an ardent admirer?
+Beethoven
+10
+
+Music: Classical: Which composer used the Prelude No. 1 in C from the Well Tempered Clavier by Bach as an accompaniment for a beautiful and famous religious melody?
+Charles Gounod
+10
+
+Music: Classical: Which composer was Norwegian?
+Grieg
+10
+
+Music: Classical: Which composer was so fastidious in his preparation of coffee that he would actually count out the number of beans per cup?
+Beethoven
+10
+
+Music: Classical: Which composer wrote a concerto for three pianos and orchestra?
+Mozart
+10
+
+Music: Classical: Which love inspired Wagner's libretto for Tristan und Isolde?
+Mathilde
+10
+
+Music: Classical: Which monarch performed, composed and published flute concertosand sonatas?
+Frederick the Great of Prussia
+10
+
+Music: Classical: Which one of the following works was penned by Gustav Holst?
+The Planets
+10
+
+Music: Classical: Which opera contains the aria 'La ci darem la mano'?
+Don Giovanni
+10
+
+Music: Classical: Which pianist served as Prime Minister of Poland?
+Paderewski
+10
+
+Music: Classical: Which pianist-composer permanently injured his hand by wearing a home-made contraption designed to immobilize the fourth finger while practising?
+None of the above
+10
+
+Music: Classical: Which pianist-composer was the first to publish Nocturnes for solopiano?
+John Field
+10
+
+Music: Classical: Which popular song was based on Toselli's Serenade?
+Years and Years Ago
+10
+
+Music: Classical: Which was an alumnus of the Vienna Boys' Choir?
+Franz Schubert
+10
+
+Music: Classical: Which well-known composer was confined to an insane asylum in Bonn near the end of his life?
+Robert Schumann
+10
+
+Music: Classical: Which work does not belong in the following list?
+Das Rheingold
+10
+
+Music: Classical: Which work does not belong in this group?
+Der Freischutz
+10
+
+Music: Classical: Which work was not written by Richard Wagner?
+Die Fledermaus
+10
+
+Music: Classical: Who achieved fame as an organist and a tester of church organs?
+Bach
+10
+
+Music: Classical: Who became intrigued by mechanical player pianos and wrote an Etude for Pianola?
+Stravinsky
+10
+
+Music: Classical: Who celebrated a birthday every four years?
+Gioacchino Rossini
+10
+
+Music: Classical: Who composed Finlandia?
+Sibelius
+10
+
+Music: Classical: Who composed Rhapsody on a Theme by Paganini?
+Rachmaninov
+10
+
+Music: Classical: Who composed the opera Aida?
+Verdi
+10
+
+Music: Classical: Who dedicated his first three piano sonatas to Josef Haydn?
+Beethoven
+10
+
+Music: Classical: Who did Herbert Von Karajan replace as conductor of the Berlin Philharmonic?
+Furtwangler
+10
+
+Music: Classical: Who did Liszt's daughter Cosima marry?
+Both
+10
+
+Music: Classical: Who employed Josef Haydn?
+Prince Esterhazy
+10
+
+Music: Classical: Who envisioned a work for 2000 performers combining music, poetry, dancing, colours and perfumes?
+Scriabin
+10
+
+Music: Classical: Who founded the American Society of Composers, Authors and Publishers(ASCAP) in 1914?
+Herbert
+10
+
+Music: Classical: Who had Beethoven originally dedicated his 3rd symphony, the Eroica to?
+Napoleon
+10
+
+Music: Classical: Who helped inaugurate New York's Carnegie Hall in 1891?
+Tchaikovsky
+10
+
+Music: Classical: Who never wrote an opera, symphony, choral piece or produce a string quartet, but was very influential in the history of piano music?
+Chopin
+10
+
+Music: Classical: Who of the following was a piano manufacturer?
+Muzio Clementi
+10
+
+Music: Classical: Who paid Scriabin a annual fee for composing and took him on an orchestral tour down the Volga by boat?
+Koussenitzky
+10
+
+Music: Classical: Who studied under and married the daughter of Friedrich Wieck?
+Schumann
+10
+
+Music: Classical: Who transcribed all nine of Beethoven's symphonies for solo piano?
+Liszt
+10
+
+Music: Classical: Who was Chopin's lover?
+George Sand
+10
+
+Music: Classical: Who was credited with completing Mozart's last work, The Requiem?
+His pupil
+10
+
+Music: Classical: Who was Gerard Hoffnung?
+British musical humorist
+10
+
+Music: Classical: Who was infatuated with Liszt's daughter and the wife of one of his best friends?
+Wagner
+10
+
+Music: Classical: Who was Louis Moreau Gottschalk?
+American-born Pianist
+10
+
+Music: Classical: Who was refused admission to the Paris Conservatory at age 12 because the director disliked child prodigies?
+Liszt
+10
+
+Music: Classical: Who was rumoured to have poisoned Mozart?
+Salieri
+10
+
+Music: Classical: Who was the first musician to become a member of the Austrian House ofLords?
+Dvorak
+10
+
+Music: Classical: Who was the founder of French Grand Opera?
+Lully
+10
+
+Music: Classical: Who was the violinist when Beethoven's Kreutzer Sonata for Violinand Piano had its first public performance?
+Georse Bridgetower
+10
+
+Music: Classical: Who was Wagner's great patron?
+Ludwig II of Bavaria
+10
+
+Music: Classical: Who wrote _The Four Seasons?
+Antonio vivaldi
+10
+
+Music: Classical: Who wrote 11 great polonaises for solo piano?
+Chopin
+10
+
+Music: Classical: Who wrote a collection of 24 compositions, comprising one in each of the major and minor keys, to demonstrate the benefits of the equal temperament system?
+J.S.Bach
+10
+
+Music: Classical: Who wrote a piano concerto for left hand alone for a friend who had lost his right hand in World War I?
+Ravel
+10
+
+Music: Classical: Who wrote a rondo over the loss of a penny?
+Beethoven
+10
+
+Music: Classical: Who wrote a set of piano pieces, each named for a month of theyear?
+Tchaikovsky
+10
+
+Music: Classical: Who wrote most of Mozart's Symphony No. 37, K. 444?
+Michael Haydn
+10
+
+Music: Classical: Who wrote piano pieces entitled Dessicated Embryos, and ThreePieces in the Shape of a Pear?
+Satie
+10
+
+Music: Classical: Who wrote Porgy and Bess?
+George Gershwin
+10
+
+Music: Classical: Who wrote the 1829 opera William Tell?
+Rossini
+10
+
+Music: Classical: Who wrote the ballet Harlequin's Millions?
+Drigo
+10
+
+Music: Classical: Who wrote the Can Can?
+Offenbach
+10
+
+Music: Classical: Who wrote the Devil's Trill Sonata?
+Tartini
+10
+
+Music: Classical: Who wrote the famous string quartet known as Death and theMaiden?
+Schubert
+10
+
+Music: Classical: Who wrote the Hammerklavier Piano Sonata in B-flat, Op. 106?
+Beethoven
+10
+
+Music: Classical: Who wrote the most piano sonatas?
+Haydn
+10
+
+Music: Classical: Who wrote the most violin concertos?
+Viotti
+10
+
+Music: Classical: Who wrote the operetta Orpheus in the Underworld?
+Lehar
+10
+
+Music: Classical: Who wrote the perennial children's opera Hansel und Gretel?
+Engelbert Humperdinck
+10
+
+Music: Classical: Who wrote the Rage Over a Lost Penny?
+Schumann
+10
+
+Music: Classical: Who wrote the Russian historical opera A Life For The Tzar?
+Glinka
+10
+
+Music: Classical: Who wrote the Scheherazade suite?
+Rimsky-Korsakov
+10
+
+Music: Classical: Who wrote the score for the ballet Coppelia of 1870?
+Delibes
+10
+
+Music: Classical: Who wrote the Skater's Waltz?
+Waldtoufel
+10
+
+Music: Classical: Who wrote The Trout (Die Forelle)?
+Schubert
+10
+
+Music: Classical: Whose father was a professional musician?
+Brahms'
+10
+
+Music: Classical: Whose father was not a professional musician?
+Haydn's
+10
+
+Music: Classical: Whose Ninth Symphony is universally known as the New World?
+Dvorak's
+10
+
+Music: Classical: With which composer would you link the following musical forms. Fugues; Preludes; Passions; Partitas; organ works etc?
+Bach
+10
+
+Music: Classical: With which composer would you link the following musical forms. Nocturnes; Etudes; Waltzes; Polonaises; Mazurkas; Impromptus etc?
+Chopin
+10
+
+Music: Classical: With which composer would you link the following musical forms. Symphonies; Overtures; Choral music; piano sonatas; concertos; string quartets?
+Beethoven
+10
+
+Music: Classical: With whom did Clara Schumann fall during her husbands period of mental illness?
+Brahms
+10
+
+Music: Claus Larsen is the only member of both LeatherStrip & this band?
+Klute
+10
+
+Music: Cliff Richard's song The Millenium Prayer, combined the words of the Lord's Prayer with with tune?
+Auld Lang Syne
+10
+
+Music: Cold ____- Paula Abdul
+Hearted
+10
+
+Music: Cole Porter musical set in the Montmarte section of Paris?
+Can-can
+10
+
+Music: Color of ribbon in popular Dawn song?
+Yellow
+10
+
+Music: Colorado: Denver was the only place this group did not sell out touring the US in 1966?
+Beatles
+10
+
+Music: Colour of CCR's river?
+Green
+10
+
+Music: Colour of Led Zeppelin's dog?
+Black
+10
+
+Music: Columbia records is flooded with requests for cassius clay's album?
+I am the greatest
+10
+
+Music: Comic opera by Gilbert and Sullivan, the only one of their opera that is sung through out?
+Trial by jury
+10
+
+Music: Comic opera by Richard Wagner?
+Die meistersinger von nurnberg
+10
+
+Music: commander cody and his ____
+Lost planet airmen
+10
+
+Music: Commitments: What does Joey call the manager?
+Brother rabbit
+10
+
+Music: Commitments: What does the shy singer at the audition ride?
+Skateboard
+10
+
+Music: Commitments: What was the blasphemous song, per the father?
+Elvis was a Cajun
+10
+
+Music: Commitments: What was the piano player's future career?
+Doctor
+10
+
+Music: Commitments: What was the trumpet player's (full) character name?
+Joey Fagan
+10
+
+Music: Common Ground: Bad Company, King Crimson?
+Boz burrell
+10
+
+Music: Common ground: Bill French, Fred Frith, Henry Kaiser, Richard Thompson?
+French frith kaiser thompson
+10
+
+Music: Common ground: Bob Dylan, Prince, Bob Mould?
+Minnesota
+10
+
+Music: Common Ground: Bob Seger, Iggy Pop, Madonna, The MC 5?
+Michigan
+10
+
+Music: Common ground: Charlie Rouse, John Coltrane (not the instrument!)?
+Thelonious monk
+10
+
+Music: Common Ground: Crazy World of Arthur Brown, Asia?
+Carl palmer
+10
+
+Music: Common Ground: current Rush, but NOT original Rush?
+Neil peart
+10
+
+Music: Common Ground: current studio Genesis, but NOT original Genesis?
+Peter gabriel
+10
+
+Music: Common Ground: Dave Holland, Jaco Pastorius, Scott Lafaro?
+Bass
+10
+
+Music: Common ground: David Bowie, Daryl Hall, Peter Gabriel, League of Gentlemen?
+Robert fripp
+10
+
+Music: Common Ground: David Bowie's and Laurie Anderson's band, Talking Heads?
+Adrian belew
+10
+
+Music: Common Ground: Genesis, Eric Clapton's band (on tour)?
+Phil collins
+10
+
+Music: Common Ground: HF Thiefaine, Les Negresses Vertes, Jaques Brel?
+France
+10
+
+Music: Common ground: Johnny Hodges, Ben Webster, Billy Strayhorn?
+Duke ellington
+10
+
+Music: Common Ground: Stevie Ray Vaughan, Nile Rogers, Adrian Belew, Mick Ronson?
+Bowie guitarists
+10
+
+Music: Common Ground: Talking Heads, female gender?
+Tina weymouth
+10
+
+Music: Common Ground: The Buggles, Asia?
+Geoff downes
+10
+
+Music: Common Ground: The Grateful Dead, Bruce Hornsby & the Range?
+Bruce hornsby
+10
+
+Music: Common Ground: Traveling Wilburys (vol.1), people who have passed away?
+Orbison
+10
+
+Music: Common Ground: Yes, people born in South Africa?
+Trevor rabin
+10
+
+Music: Common Ground: Zappa's band, the Bears, Paul Simon's band?
+Adrian belew
+10
+
+Music: Complete the Lyric: (2 words) Some women are drippin with pearls. Look at what Im drippin with...?
+Little girls
+10
+
+Music: Complete the Lyric: (3 words) But dont forget, folks, that's what you get, folks...?
+For makin whoopee
+10
+
+Music: Complete the Lyric: (4 words) Brace yourself as the beats hits ya'...?
+Dip trip flip fantasia
+10
+
+Music: Complete the Lyric: (4 words) Mona Lisa, men have named you. You're so like the lady...?
+With the mystic smile
+10
+
+Music: Complete the Lyric: (5 words) If you want to kiss the sky...?
+Better learn how to kneel
+10
+
+Music: Complete the Lyric: (5 words) Lauren, Katherine, Lana too?
+Bette davis we love you
+10
+
+Music: Complete the Lyric: (5 words) So Im a sista'. I pay with cash. That doesn't mean...?
+That all my credits bad
+10
+
+Music: Complete the Lyric: (5 words) What's your name Who's your daddy?
+Is he rich like me
+10
+
+Music: Complete the Lyric: (5 words) Where troubles melt like lemon drops, away above the chimney tops...?
+Thats where youll find me
+10
+
+Music: Complete the Lyric: (7 words) Oh what a night, late December back in 1963...?
+What a very special time for me
+10
+
+Music: Complete the Lyric: (adams) - everything i do -?
+I do it for you
+10
+
+Music: Complete the Lyric: (gibb)- have you seen my wife?
+Mr jones
+10
+
+Music: Complete the Lyric: am i only dreaming, is this burning an?
+Eternal flame
+10
+
+Music: Complete the Lyric: And she's buying a stairway____ ____
+To heaven
+10
+
+Music: Complete the Lyric: Cat Stevens 'Want's to try to love again but ____'
+The first cut is the deepest
+10
+
+Music: Complete the Lyric: cause i miss you baby,?
+And i don't want to miss a thing
+10
+
+Music: Complete the Lyric: Go on, take the money and _?
+Run
+10
+
+Music: Complete the Lyric: Gonna get out of bed and get a ____ ____ ____
+Hammer and a nail
+10
+
+Music: Complete the Lyric: Have I told you lately that _____ ____
+I love you
+10
+
+Music: Complete the Lyric: Hit me with your____ ____
+Best shot
+10
+
+Music: Complete the Lyric: I feel the earth move _____ ____
+Under my feet
+10
+
+Music: Complete the Lyric: I hate myself for____ ____
+Loving you
+10
+
+Music: Complete the Lyric: I left my heart in____ ____
+San francisco
+10
+
+Music: Complete the Lyric: i started a joke, which started the?
+Whole world crying
+10
+
+Music: Complete the Lyric: Lay lady lay, lay across my big____ ____
+Brass bed
+10
+
+Music: Complete the Lyric: Layla, you've got me on____ ____
+My knees
+10
+
+Music: Complete the Lyric: Let's give 'em something to ____ _____
+Talk about
+10
+
+Music: Complete the Lyric: Longer boats are coming to____ ____
+Win us
+10
+
+Music: Complete the Lyric: mamma mia, here i go again - my my, how can?
+I resist you
+10
+
+Music: Complete the Lyric: My analyst told me that I was right outta____ ____
+My head
+10
+
+Music: Complete the Lyric: No hell below us, above us____ ____
+Only sky
+10
+
+Music: Complete the Lyric: Put another nickel in the nickelodeon,all i want is loving you?
+And music music music
+10
+
+Music: Complete the Lyric: Say what you will, but I'm a _?
+Stinker
+10
+
+Music: Complete the Lyric: She came in through the____ ____
+Bathroom window
+10
+
+Music: Complete the Lyric: The first cut is the _?
+Deepest
+10
+
+Music: Complete the Lyric: those about to rock, we____ ____
+Salute you
+10
+
+Music: Complete the Lyric: Where troubles melt like lemon drops, away above the chimney tops...?
+That's where you'll find me
+10
+
+Music: Complete the Lyric: Whispering just below a _?
+Shout
+10
+
+Music: Complete the Lyric: you are the dancing queen, young and sweet,?
+Only seventeen
+10
+
+Music: Complete the Lyric: You picked a fine time to _____ ____
+Leave me lucille
+10
+
+Music: Complete the title of the north-east band: prefab...?
+Sprout
+10
+
+Music: Complete the title of this Johny Cash song 'A Boy Named...?
+Sue
+10
+
+Music: Complete the title of this Travis song 'Why Does it Always...?
+Rain on me
+10
+
+Music: Complete this bands name, Dexys?
+Midnight runners
+10
+
+Music: Composed & performed music for King's Firestarter?
+Tangerine dream
+10
+
+Music: Composer Ludwig van Beethoven was once arrested for?
+Vagrancy
+10
+
+Music: Composer of the blue danube?
+Johann strauss ii
+10
+
+Music: Composer of the opera Prince Igor?
+Borodin
+10
+
+Music: Composer of: Camptown Races, Beuatiful au Dreamer, Oh! Susanna?
+Foster
+10
+
+Music: Composer of: Hallelujah, Orchids in Moonlight, Time On My Hands?
+Youmans
+10
+
+Music: Composer of: Midsummer's Night dream, Fingal's Cave?
+Mendelssohn
+10
+
+Music: Composer of: Stormy Weather, I Love a Parade, Its Only a Paper Moon?
+Arlen
+10
+
+Music: Composer: Claire de Lune?
+Claude debussy
+10
+
+Music: Composer: Peer Gynt?
+Edvard grieg
+10
+
+Music: Composer: Romeo and Juliet?
+Sergei prokofiev
+10
+
+Music: Composer: The Damnation of Faust?
+Hector berlioz
+10
+
+Music: Composer: Turandot?
+Giacomo puccini
+10
+
+Music: Connie Francis charted with this Irving Berlin flag-waver?
+God bless America
+10
+
+Music: Country and western music star harold jenkins is better know as what?
+Conway twitty
+10
+
+Music: Country music featuring mandolins is known as ____
+Bluegrass
+10
+
+Music: Country Right Said Fred Said was too sexy for?
+Japan
+10
+
+Music: Country singer Vince ____
+Gill
+10
+
+Music: Country Singers (full name)?
+Crystal Gale
+10
+
+Music: Country Singers (full name)?
+George Strait
+10
+
+Music: Covered by Bette Midler,this wartime tune was a 1941 hit by the Andrews Sisters?
+Boogie woogie bugle boy
+10
+
+Music: Covers: GNR and Clapton performed Knockin' On Heaven's Door, but he wrote it?
+Dylan
+10
+
+Music: Covers: He's written songs for Meat Loaf, Bonnie Tyler, Sisters Of Mercy, and others?
+Jim steinman
+10
+
+Music: Covers: Laura Brannigan, U2, and Van Morrison all have songs by this name?
+Gloria
+10
+
+Music: Covers: No one's sure why, but Faith No More covered this Lionel Richie song?
+Easy
+10
+
+Music: Covers: Pat Benatar and Led Zeppelin each recorded a song by this name?
+Heartbreaker
+10
+
+Music: Covers: Rush doesn't do covers, but they swiped a few Paul Simon lyrics in this song?
+The spirit of radio
+10
+
+Music: Covers: The Bangles, Sinnead O'Connor, and Tom Jones have recorded his songs?
+Prince
+10
+
+Music: Covers: This band's covers include You Really Got Me, and Dancing In The Streets?
+Van halen
+10
+
+Music: Covers: This hard-to-find Metallica release contains nothing but covers?
+Garage days
+10
+
+Music: Covers: This new band performs a cool cover of Hey Hey What Can I Do by Led Zeppelin?
+Hootie and the blowfish
+10
+
+Music: Covers: This Rolling Stones tune has been covered by GNR and Laibach?
+Sympathy for the devil
+10
+
+Music: Covers: Van Halen, The Pointer Sisters, and Kriss Kross all have songs by this name?
+Jump
+10
+
+Music: CS&N wrote this song in ode to Judy Collins?
+Suite judy blue eyes
+10
+
+Music: Cuban style of music that lead to the rhumba craze of the 30's?
+Son
+10
+
+Music: Daddy didn't give attention...?
+Jeremy
+10
+
+Music: David Bowie requests this in his 1983 hit album?
+Lets dance
+10
+
+Music: David Bowie: Album: Released in 1980?
+Scarey monsters and super creeps
+10
+
+Music: David Bowie: Artist/Band: gained major fame by transforming into this alien rocker?
+Ziggy stardust
+10
+
+Music: David Bowie: Artist/Band: teamed with the Sons of Soupy Sales & formed this band?
+Tin machine
+10
+
+Music: David Bowie: Song: Bowie's first American top 40 hit?
+Space oddity
+10
+
+Music: David Bowie: Song: Collaboration with Queen which Vanilla Ice swiped the bass line from?
+Under pressure
+10
+
+Music: David Clayton Thomas wrote the words to this Blood, Sweat & Tears song?
+Spinning wheel
+10
+
+Music: David Hidalgo, Conrad Lozano, Cesar Rosas, Louie Perez and Steve Berlin?
+Los lobos
+10
+
+Music: David Pirner from this group dates Winona Ryder?
+Soul asylum
+10
+
+Music: Dawn Robinson, Terry Ellis, Cindy Herron, and Maxine Jones are this group?
+En vogue
+10
+
+Music: DC soulska band named not for nasty reasons but for their growing waistlines?
+Pietasters
+10
+
+Music: Dead Rock Stars full name?
+Kurt cobain
+10
+
+Music: Deaths: Buddy Holly, Richie Valens, and him were killed in the same plane crash?
+Big bopper
+10
+
+Music: Deaths: Freddie Mercury died due to illnesses related to this disease?
+Aids
+10
+
+Music: Deaths: He died 16 August 1977?
+Elvis presley
+10
+
+Music: Deaths: Lead singer of the teenagers, who died of a drug overdose?
+Frankie lymon
+10
+
+Music: Deaths: Movie based on Richie Valens life?
+La bamba
+10
+
+Music: Deaths: Roy Orbison had a posthumous top ten hit with this song?
+You got it
+10
+
+Music: Deaths: This Kiss drummer died of cancer in 1991?
+Eric carr
+10
+
+Music: Deaths: This singer married Sandra Dee in the 1960's?
+Bobby darin
+10
+
+Music: Deaths: This singer was shot, naked, in a hotel manager's office?
+Sam cooke
+10
+
+Music: Deaths: This Who drummer died of a drug overdose?
+Keith moon
+10
+
+Music: Deborah Harry sang that ____ is free
+Dreaming
+10
+
+Music: Declan Patrick Aloyisious MacManus is the real name of ____ ____
+Elvis costello
+10
+
+Music: Deep Purples David Coverdale had a bunch of hits in 1987 with this group?
+Whitesnake
+10
+
+Music: Dennis Wilson was the only member of the group the Beach Boys that could?
+Surf
+10
+
+Music: Derek and the Dominos song with the beautiful piano coda?
+Layla
+10
+
+Music: Despite the southern twang in her vocals, in what state was Jewel Kirchner born?
+Alaska
+10
+
+Music: Dido sang a song about this colour flag?
+White Flag
+10
+
+Music: Dinosaur Jr: A famous Cure song that they covered which was their 1989 single?
+Just like heaven
+10
+
+Music: Dinosaur Jr: What is J Mascis' most prominent guitar (the first one he ever owned too)?
+Fender jazzmaster
+10
+
+Music: Dinosaur Jr: Which song does the title of their latest album Hand It Over come from?
+Blah
+10
+
+Music: Dionne Warwick sang about this city in 1968?
+San jose
+10
+
+Music: Dire Straits say 'Here i am again in this mean old town & you're?
+So far away from me
+10
+
+Music: Dire straits sings 'here i am again in this mean old town, and you're ____'
+So far away from me
+10
+
+Music: Dire straits sings that 'we're fools to make war on our ____'
+Brothers in arms
+10
+
+Music: Dire Straits: Dire Straits' song which has same name as a Shakespeare tragedy?
+Romeo & juliet
+10
+
+Music: Dire Straits: Mark Knopfler produced the second album by this band headed by Roddy Frame?
+Aztec camera
+10
+
+Music: Dire Straits: Mark Knopfler was born in this city in northern England?
+Newcastle upon tyne
+10
+
+Music: Dire Straits: This 1982 album featured a bolt of lightning on the cover?
+Love over gold
+10
+
+Music: Dirty Diana - ____Jackson
+Michael
+10
+
+Music: Disney: Bob B. Soxx & the Blue jeans took this song to #8 in 1963?
+Zip a dee doo dah
+10
+
+Music: Disney: Disney character heard in the Mickey Mouse Club theme song?
+Donald duck
+10
+
+Music: Disney: Infamous Disneyland ride features dolls from about the world singing this song?
+Its a small world
+10
+
+Music: Disney: Lyricist of The Little Mermaid who died of AIDS complications?
+Howard ashman
+10
+
+Music: Disney: This was the first Disney song to go to #1 on the pop charts?
+A whole new world
+10
+
+Music: Do that to me one more time was a 1980 hit for who?
+Captain & tennille
+10
+
+Music: Dolly Parton's biggest top 40 hit, it spent two weeks at #1?
+9 to 5
+10
+
+Music: Don Henley & Glenn Frey are members of which band?
+The eagles
+10
+
+Music: Don Mclean: Tarta Norteamericana?
+American pie
+10
+
+Music: Don McLean's symbolic #1 song?
+American pie
+10
+
+Music: Don't ____Me - Taylor Dayne
+Rush
+10
+
+Music: Don't Be ____- Bobby Brown
+Cruel
+10
+
+Music: Don't Be ____- Cheap Trick
+Cruel
+10
+
+Music: Don't Close Your Eyes?
+Kix
+10
+
+Music: Don't Know ____- Linda Ronstadt/Aaron Neville
+Much
+10
+
+Music: Don't Shed A Tear - ____Carrack
+Paul
+10
+
+Music: Don't Wanna Lose You - ____Estefan
+Gloria
+10
+
+Music: Don't You ____What The Night Can Do? - Steve Winwood
+Know
+10
+
+Music: Donovan's colour of choice in his most successful song?
+Yellow
+10
+
+Music: Down, down, down you're rollin'?
+We die young
+10
+
+Music: Dreamin' - ____Williams
+Vanessa
+10
+
+Music: Duran Duran: What guitarist was the official replacement for Andy Taylor?
+Warren cuccurullo
+10
+
+Music: Duran Duran: What have the pictures on the cover have lead fans to call the 1993 album?
+The wedding album
+10
+
+Music: Duran Duran: Which member has two daughters: one named Amber and one named Saffron?
+Simon le bon
+10
+
+Music: during what war did glenn miller's tragic death occur?
+World war ii
+10
+
+Music: Eagle's Songs?
+Hotel California
+10
+
+Music: Eagles: Don Felder was added as the fifth Eagle on what album?
+On the Border
+10
+
+Music: Eagles: Randy Meisner left in 1977, replaced by whom?
+Timothy schmit
+10
+
+Music: Eagles: Song: Rhe Eagles 1994 release?
+Hell freezes over
+10
+
+Music: Eagles: The members of the band were once a backup band for whom?
+Linda Ronstadt
+10
+
+Music: Eagles: TV/Film: Glenn Frey did songs for what 1980's television series?
+Miami Vice
+10
+
+Music: Early 20th Century music includes the transition from the romantic style into the modern. Part of the transition includes this type of music that makes use of unusual scales and a feeling of vague tonality. Composers of this music often based their work on symbolist poetry?
+Impressionism
+10
+
+Music: Eddie Kendricks left this group in 1971 to launch a solo career?
+Temptations
+10
+
+Music: Einstuerzende Neubauten wrote the music for this modern dance show?
+La la la human steps
+10
+
+Music: Elton John: album with wild detailed cover art?
+Captain fantastic and the Brown Dirt Cowboy
+10
+
+Music: Elton John: Song: Album: Street Kids, Dan Dare, Yell Help/Wednesday Night/Ugly?
+Rock of the westies
+10
+
+Music: Elton John: Song: As of April 1, 1995, Elton's last top 10 hit?
+Can you feel the love tonight
+10
+
+Music: Elton John: Song: Collaborated with Elton on the music for The Lion King?
+Tim rice
+10
+
+Music: Elton John: Song: Duet with Eric Clapton which appeared on the album The One?
+Runaway train
+10
+
+Music: Elton John: Song: Elton did a cover version of this Who song?
+Pinball wizard
+10
+
+Music: Elton John: Song: Elton once tried to perform this entire album continuously in a concert?
+Captain fantastic and the brown dirt cowboy
+10
+
+Music: Elton John: Song: Elton's first single- written without the help of Bernie Taupin?
+Ive been loving you
+10
+
+Music: Elton John: Song: Longest song, actually a medley of two separate songs, kicks off this album?
+Goodbye yellow brick road
+10
+
+Music: Elton John: Song: The title of Elton's box set?
+To be continued
+10
+
+Music: Elton John: Song: This album cover features a large assortment of old costumes & props?
+Reg strikes back
+10
+
+Music: Elton John: Song: This track from The Fox appeared on a special Olympic cassette?
+Breaking down barriers
+10
+
+Music: Elton John: Song: Which song contains the lyric: 'thank god my music's still alive'?
+Someone saved my life
+10
+
+Music: Elton John's first version of 'A Candle In The Wind' was about whom?
+Marilyn Monroe
+10
+
+Music: Elton John's tribute to another John?
+Empty garden
+10
+
+Music: Elvis Costello & Burt Bacharach performed this song in the Austin Powers movie?
+I'll never fall in love again
+10
+
+Music: Elvis Costello: Accroding to this 1978 song, what do the angels want to wear?
+My red shoes
+10
+
+Music: Elvis Costello: EC song done by Roy Orbisson on his Black & White Night Live concert?
+The comedians
+10
+
+Music: Elvis Costello: Great New Orleans Brass band that has worked with EC a couple of times?
+Dirty dozen brass band
+10
+
+Music: Elvis Costello: Guitarist who has worked with both Costello & Tom Waits?
+Mark ribot
+10
+
+Music: Elvis Costello: What does Ms. Macbeth have that she keeps under her chin?
+Gollywog
+10
+
+Music: Elvis looked forward to the time his moon would stop being this colour?
+Blue
+10
+
+Music: Elvis Presley made a number of movies. Which one co-starred Ann-Margret?
+Viva Las Vegas
+10
+
+Music: Elvis Presley made his first appearance on national television in what year?
+1956
+10
+
+Music: Elvis said people had these kind of minds in 1969?
+Suspicious
+10
+
+Music: Elvis: Color of the first Cadillac Elvis purchased?
+Pink
+10
+
+Music: Elvis: Elvis honeymooned in this city?
+Palm springs
+10
+
+Music: Elvis: Elvis once shot out his television set when this man appeared on tv?
+Robert goulet
+10
+
+Music: Elvis: Elvis's manager?
+Colonel tom parker
+10
+
+Music: Elvis: Elvis's nickname for his mother?
+Satnin
+10
+
+Music: Elvis: Elvis's personal doctor who was acquitted of over-prescribing Presley drugs?
+George nichopoulos
+10
+
+Music: Elvis: Elvis's personal number in numerology, which held great meaning for him?
+8
+10
+
+Music: Elvis: Listed as official cause of Elvis's death on his original death certificate?
+Cardiac arrhythmia
+10
+
+Music: Elvis: Name of Elvis's Jan. 1973 television special, seen by 1.5 billion people?
+Aloha from hawaii
+10
+
+Music: Elvis: Scatter was the name of Elvis's ____
+Chimpanzee
+10
+
+Music: Elvis: Song: A big hunk ____
+O' love
+10
+
+Music: Elvis: Song: A boy like me a girl ____
+Like you
+10
+
+Music: Elvis: Song: A cane and a high starched ____
+Collar
+10
+
+Music: Elvis: Song: A dog's ____
+Life
+10
+
+Music: Elvis: Song: A house that has ____
+Everything
+10
+
+Music: Elvis: Song: A hundred years ____
+From now
+10
+
+Music: Elvis: Song: A little bit of ____
+Green
+10
+
+Music: Elvis: Song: A little less ____
+Conversation
+10
+
+Music: Elvis: Song: A mess of ____
+Blues
+10
+
+Music: Elvis: Song: A thing ____
+Called love
+10
+
+Music: Elvis: Song: A whistling ____
+Tune
+10
+
+Music: Elvis: Song: A world of ____
+Our own
+10
+
+Music: Elvis: Song: Adam and ____
+Evil
+10
+
+Music: Elvis: Song: After loving ____
+You
+10
+
+Music: Elvis: Song: Ain't that loving ____
+You baby
+10
+
+Music: Elvis: Song: All ____
+Shook up
+10
+
+Music: Elvis: Song: All I needed was the ____
+Rain
+10
+
+Music: Elvis: Song: All that ____
+I am
+10
+
+Music: Elvis: Song: Almost always ____
+True
+10
+
+Music: Elvis: Song: Almost in ____
+Love
+10
+
+Music: Elvis: Song: Always on ____
+My mind
+10
+
+Music: Elvis: Song: Am I ____
+Ready
+10
+
+Music: Elvis: Song: Amazing ____
+Grace
+10
+
+Music: Elvis: Song: America the ____
+Beautiful
+10
+
+Music: Elvis: Song: An evening ____
+Prayer
+10
+
+Music: Elvis: Song: And I love ____
+You so
+10
+
+Music: Elvis: Song: And the grass won't pay ____
+No mind
+10
+
+Music: Elvis: Song: Animal ____
+Instinct
+10
+
+Music: Elvis: Song: Any day ____
+Now
+10
+
+Music: Elvis: Song: Any place is ____
+Paradise
+10
+
+Music: Elvis: Song: Anyone could fall in love ____
+With you
+10
+
+Music: Elvis: Song: Anything that's part ____
+Of you
+10
+
+Music: Elvis: Song: Anyway you ____
+Want me
+10
+
+Music: Elvis: Song: Are you ____
+Lonesome tonight
+10
+
+Music: Elvis: Song: Are you ____
+Sincere
+10
+
+Music: Elvis: Song: As long as ____
+I have you
+10
+
+Music: Elvis: Song: Ask ____
+Me
+10
+
+Music: Elvis: Song: Baby, if you'll give me all ____
+Of your love
+10
+
+Music: Elvis: Song: Baby, let's ____
+Play house
+10
+
+Music: Elvis: Song: Baby, what you want ____
+Me to do
+10
+
+Music: Elvis: Song: Barefoot ____
+Ballad
+10
+
+Music: Elvis: Song: Beach ____
+Shack
+10
+
+Music: Elvis: Song: Beach boy ____
+Blues
+10
+
+Music: Elvis: Song: Because of ____
+Love
+10
+
+Music: Elvis: Song: Beginner's ____
+Luck
+10
+
+Music: Elvis: Song: Beyond the ____
+Bend
+10
+
+Music: Elvis: Song: Beyond the ____
+Reef
+10
+
+Music: Elvis: Song: Big ____
+Boots
+10
+
+Music: Elvis: Song: Big ____
+Boss man
+10
+
+Music: Elvis: Song: Big love big ____
+Heartache
+10
+
+Music: Elvis: Song: Bitter they are, harder ____
+They fall
+10
+
+Music: Elvis: Song: Black ____
+Star
+10
+
+Music: Elvis: Song: Blue ____
+Christmas
+10
+
+Music: Elvis: Song: Blue ____
+Hawaii
+10
+
+Music: Elvis: Song: Blue ____
+Moon
+10
+
+Music: Elvis: Song: Blue ____
+River
+10
+
+Music: Elvis: Song: Blue eyes crying ____
+In the rain
+10
+
+Music: Elvis: Song: Blue moon of ____
+Kentucky
+10
+
+Music: Elvis: Song: Blue suede ____
+Shoes
+10
+
+Music: Elvis: Song: Blueberry ____
+Hill
+10
+
+Music: Elvis: Song: Bosom of ____
+Abraham
+10
+
+Music: Elvis: Song: Bossa nova, ____
+Baby
+10
+
+Music: Elvis: Song: Bridge over ____
+Troubled water
+10
+
+Music: Elvis: Song: Bringin' it ____
+Back
+10
+
+Music: Elvis: Song: Burning ____
+Love
+10
+
+Music: Elvis: Song: C'mon ____
+Everybody
+10
+
+Music: Elvis: Song: Can't help ____
+Falling in love
+10
+
+Music: Elvis: Song: Change of ____
+Habit
+10
+
+Music: Elvis: Song: Cindy, ____
+Cindy
+10
+
+Music: Elvis: Song: City by ____
+Night
+10
+
+Music: Elvis: Song: Clean up your own ____
+Backyard
+10
+
+Music: Elvis: Song: Come ____
+Along
+10
+
+Music: Elvis: Song: Come what may you ____
+Are mine
+10
+
+Music: Elvis: Song: Cotton ____
+Candy land
+10
+
+Music: Elvis: Song: Could I fall ____
+In love
+10
+
+Music: Elvis: Song: Cross my heart and ____
+Hope to die
+10
+
+Music: Elvis: Song: Crying in ____
+The chapel
+10
+
+Music: Elvis: Song: Dainty little ____
+Moonbeams
+10
+
+Music: Elvis: Song: Dirty, dirty ____
+Feeling
+10
+
+Music: Elvis: Song: Dixieland ____
+Rock
+10
+
+Music: Elvis: Song: Do not ____
+Disturb
+10
+
+Music: Elvis: Song: Do the ____
+Vega
+10
+
+Music: Elvis: Song: Do you know ____
+Who i am
+10
+
+Music: Elvis: Song: Doin' the ____
+Best i can
+10
+
+Music: Elvis: Song: Don't ____
+Be cruel
+10
+
+Music: Elvis: Song: Don't ask ____
+Me why
+10
+
+Music: Elvis: Song: Don't cry ____
+Daddy
+10
+
+Music: Elvis: Song: Don't forbid ____
+Me
+10
+
+Music: Elvis: Song: Don't leave ____
+Me now
+10
+
+Music: Elvis: Song: Don't think twice ____
+It's all right
+10
+
+Music: Elvis: Song: Double ____
+Trouble
+10
+
+Music: Elvis: Song: Down by the riverside and when the saints ____
+Come marchin' in
+10
+
+Music: Elvis: Song: Down in ____
+The alley
+10
+
+Music: Elvis: Song: Drums of the ____
+Islands
+10
+
+Music: Elvis: Song: Early mornin' ____
+Rain
+10
+
+Music: Elvis: Song: Earth ____
+Boy
+10
+
+Music: Elvis: Song: Easy come ____
+Easy go
+10
+
+Music: Elvis: Song: Echoes of ____
+Love
+10
+
+Music: Elvis: Song: Edge of ____
+Reality
+10
+
+Music: Elvis: Song: El ____
+Toro
+10
+
+Music: Elvis: Song: Everybody come ____
+Aboard
+10
+
+Music: Elvis: Song: Faded ____
+Love
+10
+
+Music: Elvis: Song: Fame and ____
+Fortune
+10
+
+Music: Elvis: Song: Farther ____
+Along
+10
+
+Music: Elvis: Song: Find out what's ____
+Happening
+10
+
+Music: Elvis: Song: Finders keepers, ____
+Losers weepers
+10
+
+Music: Elvis: Song: First in ____
+Line
+10
+
+Music: Elvis: Song: Five sleepy ____
+Heads
+10
+
+Music: Elvis: Song: Flaming ____
+Star
+10
+
+Music: Elvis: Song: Follow ____
+That dream
+10
+
+Music: Elvis: Song: Fool, ____
+Fool, fool
+10
+
+Music: Elvis: Song: Fools ____
+Rush in
+10
+
+Music: Elvis: Song: Fools fall ____
+In love
+10
+
+Music: Elvis: Song: For ol' times ____
+Sake
+10
+
+Music: Elvis: Song: For the ____
+Good times
+10
+
+Music: Elvis: Song: For the ____
+Heart
+10
+
+Music: Elvis: Song: For the millionth and the ____
+Last time
+10
+
+Music: Elvis: Song: Forget me ____
+Never
+10
+
+Music: Elvis: Song: Fountain of ____
+Love
+10
+
+Music: Elvis: Song: Frankie and ____
+Johnny
+10
+
+Music: Elvis: Song: From a Jack to ____
+A king
+10
+
+Music: Elvis: Song: Fun in ____
+Acapulco
+10
+
+Music: Elvis: Song: Funny how time ____
+Slips away
+10
+
+Music: Elvis: Song: G.I. ____
+Blues
+10
+
+Music: Elvis: Song: Gentle on ____
+My mind
+10
+
+Music: Elvis: Song: Girl ____
+Happy
+10
+
+Music: Elvis: Song: Girl of ____
+Mine
+10
+
+Music: Elvis: Song: Girls! ____
+Girls! girls!
+10
+
+Music: Elvis: Song: Go east, ____
+Young man
+10
+
+Music: Elvis: Song: Goin' ____
+Home
+10
+
+Music: Elvis: Song: Golden ____
+Coins
+10
+
+Music: Elvis: Song: Gonna get back home ____
+Somehow
+10
+
+Music: Elvis: Song: Good luck ____
+Charm
+10
+
+Music: Elvis: Song: Good rockin' ____
+Tonight
+10
+
+Music: Elvis: Song: Good time Charlie's got ____
+The blues
+10
+
+Music: Elvis: Song: Got a lot o' livin' ____
+To do
+10
+
+Music: Elvis: Song: Green green ____
+Grass of home
+10
+
+Music: Elvis: Song: Guitar ____
+Man
+10
+
+Music: Elvis: Song: Happy ____
+Ending
+10
+
+Music: Elvis: Song: Harbor ____
+Lights
+10
+
+Music: Elvis: Song: Hard ____
+Knocks
+10
+
+Music: Elvis: Song: Hard ____
+Luck
+10
+
+Music: Elvis: Song: Hard headed ____
+Woman
+10
+
+Music: Elvis: Song: Harem ____
+Holiday
+10
+
+Music: Elvis: Song: Have I told you lately that ____
+I love you
+10
+
+Music: Elvis: Song: Hawaiian ____
+Sunset
+10
+
+Music: Elvis: Song: Hawaiian ____
+Wedding song
+10
+
+Music: Elvis: Song: He knows just what ____
+I need
+10
+
+Music: Elvis: Song: He touched ____
+Me
+10
+
+Music: Elvis: Song: He'll have ____
+To go
+10
+
+Music: Elvis: Song: He's only a ____
+Prayer away
+10
+
+Music: Elvis: Song: Heart of ____
+Rome
+10
+
+Music: Elvis: Song: Heartbreak ____
+Hotel
+10
+
+Music: Elvis: Song: Help ____
+Me
+10
+
+Music: Elvis: Song: Help me make it ____
+Through the night
+10
+
+Music: Elvis: Song: Here comes Santa Claus right down ____
+Santa claus lane
+10
+
+Music: Elvis: Song: Hey, ____
+Hey, hey
+10
+
+Music: Elvis: Song: Hey, little ____
+Girl
+10
+
+Music: Elvis: Song: Hi heel ____
+Sneakers
+10
+
+Music: Elvis: Song: His hand in ____
+Mine
+10
+
+Music: Elvis: Song: Holly leaves and ____
+Christmas trees
+10
+
+Music: Elvis: Song: Home is where ____
+The heart is
+10
+
+Music: Elvis: Song: Hot ____
+Dog
+10
+
+Music: Elvis: Song: Hound ____
+Dog
+10
+
+Music: Elvis: Song: House of ____
+Sand
+10
+
+Music: Elvis: Song: How can you lose what you ____
+Never had
+10
+
+Music: Elvis: Song: How do you think ____
+I feel
+10
+
+Music: Elvis: Song: How great ____
+Thou art
+10
+
+Music: Elvis: Song: How the web ____
+Was woven
+10
+
+Music: Elvis: Song: How would you ____
+Like to be
+10
+
+Music: Elvis: Song: How's the world ____
+Treating you
+10
+
+Music: Elvis: Song: I ____
+Believe
+10
+
+Music: Elvis: Song: I beg ____
+Of you
+10
+
+Music: Elvis: Song: I believe in the man ____
+In the sky
+10
+
+Music: Elvis: Song: I can ____
+Help
+10
+
+Music: Elvis: Song: I can't stop ____
+Loving you
+10
+
+Music: Elvis: Song: I don't ____
+Want to
+10
+
+Music: Elvis: Song: I don't care if the sun ____
+Don't shine
+10
+
+Music: Elvis: Song: I don't wanna ____
+Be tied
+10
+
+Music: Elvis: Song: I feel ____
+So bad
+10
+
+Music: Elvis: Song: I feel that I've known ____
+You forever
+10
+
+Music: Elvis: Song: I forgot to remember ____
+To forget
+10
+
+Music: Elvis: Song: I got ____
+Lucky
+10
+
+Music: Elvis: Song: I got ____
+Stung
+10
+
+Music: Elvis: Song: I got a ____
+Woman
+10
+
+Music: Elvis: Song: I got a feelin' ____
+In my body
+10
+
+Music: Elvis: Song: I gotta ____
+Know
+10
+
+Music: Elvis: Song: I just can't make it ____
+By myself
+10
+
+Music: Elvis: Song: I love only ____
+One girl
+10
+
+Music: Elvis: Song: I love you ____
+Because
+10
+
+Music: Elvis: Song: I met her ____
+Today
+10
+
+Music: Elvis: Song: I miss ____
+You
+10
+
+Music: Elvis: Song: I need ____
+You so
+10
+
+Music: Elvis: Song: I need somebody ____
+To lean on
+10
+
+Music: Elvis: Song: I need your ____
+Love tonight
+10
+
+Music: Elvis: Song: I really don't want ____
+To know
+10
+
+Music: Elvis: Song: I shall be ____
+Released
+10
+
+Music: Elvis: Song: I shall not be ____
+Moved
+10
+
+Music: Elvis: Song: I slipped, I stumbled, ____
+I fell
+10
+
+Music: Elvis: Song: I think I'm gonna ____
+Like it here
+10
+
+Music: Elvis: Song: I want to ____
+Be free
+10
+
+Music: Elvis: Song: I want you ____
+With me
+10
+
+Music: Elvis: Song: I want you, I need you, ____
+I love you
+10
+
+Music: Elvis: Song: I was ____
+The one
+10
+
+Music: Elvis: Song: I was born about ten ____
+Thousand years ago
+10
+
+Music: Elvis: Song: I washed my hands in ____
+Muddy water
+10
+
+Music: Elvis: Song: I will ____
+Be true
+10
+
+Music: Elvis: Song: I will be ____
+Home again
+10
+
+Music: Elvis: Song: I'll ____
+Be back
+10
+
+Music: Elvis: Song: I'll ____
+Never know
+10
+
+Music: Elvis: Song: I'll be ____
+There
+10
+
+Music: Elvis: Song: I'll be home for ____
+Christmas
+10
+
+Music: Elvis: Song: I'll be home on ____
+Christmas day
+10
+
+Music: Elvis: Song: I'll hold you in my heart till I can hold you ____
+In my arms
+10
+
+Music: Elvis: Song: I'll never fall in ____
+Love again
+10
+
+Music: Elvis: Song: I'll never let you go ____
+Little darlin'
+10
+
+Music: Elvis: Song: I'll remember ____
+You
+10
+
+Music: Elvis: Song: I'll take ____
+Love
+10
+
+Music: Elvis: Song: I'll take you home again ____
+Kathleen
+10
+
+Music: Elvis: Song: I'm ____
+Leavin'
+10
+
+Music: Elvis: Song: I'm ____
+Yours
+10
+
+Music: Elvis: Song: I'm beginning to ____
+Forget you
+10
+
+Music: Elvis: Song: I'm coming ____
+Home
+10
+
+Music: Elvis: Song: I'm countin' ____
+On you
+10
+
+Music: Elvis: Song: I'm falling in love ____
+Tonight
+10
+
+Music: Elvis: Song: I'm gonna sit right down and ____
+Cry over you
+10
+
+Music: Elvis: Song: I'm gonna walk dem ____
+Golden stairs
+10
+
+Music: Elvis: Song: I'm left, you're right, ____
+She's gone
+10
+
+Music: Elvis: Song: I'm movin' ____
+On
+10
+
+Music: Elvis: Song: I'm not the ____
+Marrying kind
+10
+
+Music: Elvis: Song: I'm so lonesome ____
+I could cry
+10
+
+Music: Elvis: Song: I'm with a crowd but ____
+So alone
+10
+
+Music: Elvis: Song: I've got ____
+Confidence
+10
+
+Music: Elvis: Song: I've got a thing about ____
+You baby
+10
+
+Music: Elvis: Song: I've got to find ____
+My baby
+10
+
+Music: Elvis: Song: I've lost ____
+You
+10
+
+Music: Elvis: Song: If every day was like ____
+Christmas
+10
+
+Music: Elvis: Song: If I ____
+Were you
+10
+
+Music: Elvis: Song: If I can ____
+Dream
+10
+
+Music: Elvis: Song: If I get home on ____
+Christmas day
+10
+
+Music: Elvis: Song: If I'm a fool for ____
+Loving you
+10
+
+Music: Elvis: Song: If that isn't ____
+Love
+10
+
+Music: Elvis: Song: If the Lord wasn't walking ____
+By my side
+10
+
+Music: Elvis: Song: If we never ____
+Meet again
+10
+
+Music: Elvis: Song: If you don't ____
+Come back
+10
+
+Music: Elvis: Song: If you love me ____
+Let me know
+10
+
+Music: Elvis: Song: If you talk in ____
+Your sleep
+10
+
+Music: Elvis: Song: If you think I don't ____
+Need you
+10
+
+Music: Elvis: Song: In my ____
+Way
+10
+
+Music: Elvis: Song: In my father's house are many ____
+Mansions
+10
+
+Music: Elvis: Song: In the ____
+Garden
+10
+
+Music: Elvis: Song: In the ____
+Ghetto
+10
+
+Music: Elvis: Song: In your ____
+Arms
+10
+
+Music: Elvis: Song: Indescribably ____
+Blue
+10
+
+Music: Elvis: Song: Inherit ____
+The wind
+10
+
+Music: Elvis: Song: Is it so ____
+Strange
+10
+
+Music: Elvis: Song: Island of ____
+Love
+10
+
+Music: Elvis: Song: It ____
+Hurts me
+10
+
+Music: Elvis: Song: It ain't no big thing but it's ____
+Growing
+10
+
+Music: Elvis: Song: It feels ____
+So right
+10
+
+Music: Elvis: Song: It is no secret what ____
+God can do
+10
+
+Music: Elvis: Song: It won't be ____
+Long
+10
+
+Music: Elvis: Song: It won't seem like ____
+Christmas
+10
+
+Music: Elvis: Song: It's ____
+Impossible
+10
+
+Music: Elvis: Song: It's ____
+Midnight
+10
+
+Music: Elvis: Song: It's ____
+Over
+10
+
+Music: Elvis: Song: It's a ____
+Sin
+10
+
+Music: Elvis: Song: It's a Long ____
+Lonely highway
+10
+
+Music: Elvis: Song: It's a matter of ____
+Time
+10
+
+Music: Elvis: Song: It's a wonderful ____
+World
+10
+
+Music: Elvis: Song: It's carnival ____
+Time
+10
+
+Music: Elvis: Song: It's diff'rent ____
+Now
+10
+
+Music: Elvis: Song: It's easy ____
+For you
+10
+
+Music: Elvis: Song: It's now ____
+Or never
+10
+
+Music: Elvis: Song: It's only ____
+Love
+10
+
+Music: Elvis: Song: It's still ____
+Here
+10
+
+Music: Elvis: Song: It's your baby, you ____
+Rock it
+10
+
+Music: Elvis: Song: Jailhouse ____
+Rock
+10
+
+Music: Elvis: Song: Jesus walked that lonesome ____
+Valley
+10
+
+Music: Elvis: Song: Just ____
+Because
+10
+
+Music: Elvis: Song: Just ____
+Pretend
+10
+
+Music: Elvis: Song: Just a little talk with ____
+Jesus
+10
+
+Music: Elvis: Song: Just call me ____
+Lonesome
+10
+
+Music: Elvis: Song: Just for old time ____
+Sake
+10
+
+Music: Elvis: Song: Just tell her Jim said ____
+Hello
+10
+
+Music: Elvis: Song: Kentucky ____
+Rain
+10
+
+Music: Elvis: Song: King ____
+Creole
+10
+
+Music: Elvis: Song: King of the whole ____
+Wide world
+10
+
+Music: Elvis: Song: Kiss me ____
+Quick
+10
+
+Music: Elvis: Song: Kissin' ____
+Cousins
+10
+
+Music: Elvis: Song: Known only to ____
+Him
+10
+
+Music: Elvis: Song: Lawdy miss ____
+Clawdy
+10
+
+Music: Elvis: Song: Lead me, ____
+Guide me
+10
+
+Music: Elvis: Song: Let ____
+Yourself go
+10
+
+Music: Elvis: Song: Let it ____
+Be me
+10
+
+Music: Elvis: Song: Let me ____
+Be there
+10
+
+Music: Elvis: Song: Let us ____
+Pray
+10
+
+Music: Elvis: Song: Let's be ____
+Friends
+10
+
+Music: Elvis: Song: Let's forget about ____
+The stars
+10
+
+Music: Elvis: Song: Like a ____
+Baby
+10
+
+Music: Elvis: Song: Little ____
+Darlin'
+10
+
+Music: Elvis: Song: Little ____
+Egypt
+10
+
+Music: Elvis: Song: Little ____
+Sister
+10
+
+Music: Elvis: Song: Little cabin on ____
+The hill
+10
+
+Music: Elvis: Song: Lonely ____
+Man
+10
+
+Music: Elvis: Song: Lonesome ____
+Cowboy
+10
+
+Music: Elvis: Song: Long black ____
+Limousine
+10
+
+Music: Elvis: Song: Long legged girl with a ____
+Short dress on
+10
+
+Music: Elvis: Song: Long tall ____
+Sally
+10
+
+Music: Elvis: Song: Look out ____
+Broadway
+10
+
+Music: Elvis: Song: Love ____
+Letters
+10
+
+Music: Elvis: Song: Love ____
+Me
+10
+
+Music: Elvis: Song: Love coming ____
+Down
+10
+
+Music: Elvis: Song: Love me ____
+Tender
+10
+
+Music: Elvis: Song: Love me ____
+Tonight
+10
+
+Music: Elvis: Song: Love me, love the life ____
+I lead
+10
+
+Music: Elvis: Song: Love song of ____
+The year
+10
+
+Music: Elvis: Song: Lover ____
+Doll
+10
+
+Music: Elvis: Song: Lovin' ____
+Arms
+10
+
+Music: Elvis: Song: Loving ____
+You
+10
+
+Music: Elvis: Song: Make me ____
+Know it
+10
+
+Music: Elvis: Song: Make the ____
+World go away
+10
+
+Music: Elvis: Song: Mama liked ____
+The roses
+10
+
+Music: Elvis: Song: Mansion over the ____
+Hilltop
+10
+
+Music: Elvis: Song: Marie's the name of His ____
+Latest flame
+10
+
+Music: Elvis: Song: Mary in the ____
+Morning
+10
+
+Music: Elvis: Song: Mean woman ____
+Blues
+10
+
+Music: Elvis: Song: Memphis ____
+Tennessee
+10
+
+Music: Elvis: Song: Merry Christmas ____
+Baby
+10
+
+Music: Elvis: Song: Milkcow blues ____
+Boogie
+10
+
+Music: Elvis: Song: Milky ____
+White way
+10
+
+Music: Elvis: Song: Miracle of the ____
+Rosary
+10
+
+Music: Elvis: Song: Money ____
+Honey
+10
+
+Music: Elvis: Song: Moody ____
+Blue
+10
+
+Music: Elvis: Song: Moonlight ____
+Swim
+10
+
+Music: Elvis: Song: Mr. ____
+Songman
+10
+
+Music: Elvis: Song: My ____
+Babe
+10
+
+Music: Elvis: Song: My ____
+Boy
+10
+
+Music: Elvis: Song: My ____
+Happiness
+10
+
+Music: Elvis: Song: My ____
+Way
+10
+
+Music: Elvis: Song: My baby ____
+Left me
+10
+
+Music: Elvis: Song: My desert ____
+Serenade
+10
+
+Music: Elvis: Song: My little ____
+Friend
+10
+
+Music: Elvis: Song: My wish ____
+Came true
+10
+
+Music: Elvis: Song: Mystery ____
+Train
+10
+
+Music: Elvis: Song: Never ____
+Again
+10
+
+Music: Elvis: Song: Never ____
+Ending
+10
+
+Music: Elvis: Song: Never been to ____
+Spain
+10
+
+Music: Elvis: Song: Never say ____
+Yes
+10
+
+Music: Elvis: Song: New ____
+Orleans
+10
+
+Music: Elvis: Song: Night ____
+Life
+10
+
+Music: Elvis: Song: Night ____
+Rider
+10
+
+Music: Elvis: Song: No ____
+More
+10
+
+Music: Elvis: Song: Now and then there's A fool ____
+Such as i
+10
+
+Music: Elvis: Song: O come, all ye ____
+Faithful
+10
+
+Music: Elvis: Song: O little town of ____
+Bethlehem
+10
+
+Music: Elvis: Song: Old ____
+Macdonald
+10
+
+Music: Elvis: Song: Old ____
+Shep
+10
+
+Music: Elvis: Song: On a snowy Christmas ____
+Night
+10
+
+Music: Elvis: Song: Once is ____
+Enough
+10
+
+Music: Elvis: Song: One ____
+Night
+10
+
+Music: Elvis: Song: One boy two ____
+Little girls
+10
+
+Music: Elvis: Song: One broken ____
+Heart for sale
+10
+
+Music: Elvis: Song: One night of ____
+Sin
+10
+
+Music: Elvis: Song: One track ____
+Heart
+10
+
+Music: Elvis: Song: One-sided love ____
+Affair
+10
+
+Music: Elvis: Song: Only ____
+Believe
+10
+
+Music: Elvis: Song: Only the strong ____
+Survive
+10
+
+Music: Elvis: Song: Paradise, ____
+Hawaiian style
+10
+
+Music: Elvis: Song: Patch ____
+It up
+10
+
+Music: Elvis: Song: Petunia the gardener's ____
+Daughter
+10
+
+Music: Elvis: Song: Pieces of ____
+My life
+10
+
+Music: Elvis: Song: Plantation ____
+Rock
+10
+
+Music: Elvis: Song: Playing for ____
+Keeps
+10
+
+Music: Elvis: Song: Please don't drag that ____
+String around
+10
+
+Music: Elvis: Song: Pocketful of ____
+Rainbows
+10
+
+Music: Elvis: Song: Polk salad ____
+Annie
+10
+
+Music: Elvis: Song: Poor ____
+Boy
+10
+
+Music: Elvis: Song: Proud ____
+Mary
+10
+
+Music: Elvis: Song: Put the blame ____
+On me
+10
+
+Music: Elvis: Song: Reach out to ____
+Jesus
+10
+
+Music: Elvis: Song: Ready ____
+Teddy
+10
+
+Music: Elvis: Song: Release ____
+Me
+10
+
+Music: Elvis: Song: Return ____
+To sender
+10
+
+Music: Elvis: Song: Rip ____
+It up
+10
+
+Music: Elvis: Song: Rock-a-hula ____
+Baby
+10
+
+Music: Elvis: Song: Santa ____
+Lucia
+10
+
+Music: Elvis: Song: See see ____
+Rider
+10
+
+Music: Elvis: Song: Seeing is ____
+Believing
+10
+
+Music: Elvis: Song: Sentimental ____
+Me
+10
+
+Music: Elvis: Song: Shake ____
+A hand
+10
+
+Music: Elvis: Song: Shake that ____
+Tambourine
+10
+
+Music: Elvis: Song: She's ____
+Not you
+10
+
+Music: Elvis: Song: She's a ____
+Machine
+10
+
+Music: Elvis: Song: Shoppin' ____
+Around
+10
+
+Music: Elvis: Song: Silver ____
+Bells
+10
+
+Music: Elvis: Song: Slicin' ____
+Sand
+10
+
+Music: Elvis: Song: So close, yet so far from ____
+Paradise
+10
+
+Music: Elvis: Song: So glad ____
+You're mine
+10
+
+Music: Elvis: Song: Something ____
+Blue
+10
+
+Music: Elvis: Song: Starting ____
+Today
+10
+
+Music: Elvis: Song: Steamroller ____
+Blues
+10
+
+Music: Elvis: Song: Steppin' out ____
+Of line
+10
+
+Music: Elvis: Song: Stranger in the ____
+Crowd
+10
+
+Music: Elvis: Song: Stuck ____
+On you
+10
+
+Music: Elvis: Song: Such an Easy ____
+Question
+10
+
+Music: Elvis: Song: Susan when she ____
+Tried
+10
+
+Music: Elvis: Song: Suspicious ____
+Minds
+10
+
+Music: Elvis: Song: Sweet ____
+Caroline
+10
+
+Music: Elvis: Song: Take me to ____
+The fair
+10
+
+Music: Elvis: Song: Teddy ____
+Bear
+10
+
+Music: Elvis: Song: That's all right, ____
+Mama
+10
+
+Music: Elvis: Song: That's someone you ____
+Never forget
+10
+
+Music: Elvis: Song: That's what you get For ____
+Lovin' me
+10
+
+Music: Elvis: Song: That's when your ____
+Heartaches begin
+10
+
+Music: Elvis: Song: The ____
+Fool
+10
+
+Music: Elvis: Song: The bullfighter ____
+Was a lady
+10
+
+Music: Elvis: Song: The first ____
+Noel
+10
+
+Music: Elvis: Song: The girl of my ____
+Best friend
+10
+
+Music: Elvis: Song: The impossible ____
+Dream
+10
+
+Music: Elvis: Song: The Lord's ____
+Prayer
+10
+
+Music: Elvis: Song: The next step ____
+Is love
+10
+
+Music: Elvis: Song: The wonder ____
+Of you
+10
+
+Music: Elvis: Song: The wonderful world of ____
+Christmas
+10
+
+Music: Elvis: Song: There goes my ____
+Everything
+10
+
+Music: Elvis: Song: There is no God but ____
+God
+10
+
+Music: Elvis: Song: There will be Peace in the ____
+Valley for me
+10
+
+Music: Elvis: Song: There's ____
+Always me
+10
+
+Music: Elvis: Song: There's No room to rhumba in a ____
+Sports car
+10
+
+Music: Elvis: Song: They remind me too much ____
+Of you
+10
+
+Music: Elvis: Song: Tomorrow ____
+Never comes
+10
+
+Music: Elvis: Song: Tomorrow ____
+Night
+10
+
+Music: Elvis: Song: Tonight is so right ____
+For love
+10
+
+Music: Elvis: Song: Too ____
+Much
+10
+
+Music: Elvis: Song: Treat me ____
+Nice
+10
+
+Music: Elvis: Song: True ____
+Love
+10
+
+Music: Elvis: Song: Tryin' to get ____
+To you
+10
+
+Music: Elvis: Song: Tutti ____
+Frutti
+10
+
+Music: Elvis: Song: Twenty days and ____
+Twenty nights
+10
+
+Music: Elvis: Song: U.S. ____
+Male
+10
+
+Music: Elvis: Song: Unchained ____
+Melody
+10
+
+Music: Elvis: Song: Until it's time for ____
+You to go
+10
+
+Music: Elvis: Song: Viva ____
+Las vegas
+10
+
+Music: Elvis: Song: Walk a mile in ____
+My shoes
+10
+
+Music: Elvis: Song: Way ____
+Down
+10
+
+Music: Elvis: Song: Wear my ring around ____
+Your neck
+10
+
+Music: Elvis: Song: Welcome to my ____
+World
+10
+
+Music: Elvis: Song: What now ____
+My love
+10
+
+Music: Elvis: Song: What's she ____
+Really like
+10
+
+Music: Elvis: Song: When it rains, it ____
+Really pours
+10
+
+Music: Elvis: Song: When my blue moon turns to ____
+Gold again
+10
+
+Music: Elvis: Song: Whole lotta shakin' ____
+Goin' on
+10
+
+Music: Elvis: Song: Wild in the ____
+Country
+10
+
+Music: Elvis: Song: Winter ____
+Wonderland
+10
+
+Music: Elvis: Song: Wisdom of the ____
+Ages
+10
+
+Music: Elvis: Song: Woman without ____
+Love
+10
+
+Music: Elvis: Song: Wooden ____
+Heart
+10
+
+Music: Elvis: Song: You can't say no in ____
+Acapulco
+10
+
+Music: Elvis: Song: You don't have to say ____
+You love me
+10
+
+Music: Elvis: Song: You gave me a ____
+Mountain
+10
+
+Music: Elvis: Song: You're a ____
+Heartbreaker
+10
+
+Music: Elvis: Song: You're so square, Baby ____
+I don't care
+10
+
+Music: Elvis: Song: You're the Devil ____
+In disguise
+10
+
+Music: Elvis: Song: You've lost that ____
+Lovin' feelin'
+10
+
+Music: Elvis: Strange 3-wheeled car manufactured in Germany, purchased by Elvis in 1956?
+Messerschmidt
+10
+
+Music: Elvis: The area at the rear of Graceland where Elvis & his parents are buried?
+Meditation garden
+10
+
+Music: Elvis: This is misspelled on Elvis's grave marker?
+Middle name
+10
+
+Music: Emerging rock band, name reminds me of a porous dish-washing aid?
+Sponge
+10
+
+Music: EMF stood for this?
+Epson mad funkers
+10
+
+Music: England dan and ____
+John ford coley
+10
+
+Music: Enigma: In what year did Michael marry Sandra Lauer?
+1988
+10
+
+Music: Enigma: What does MCMXC mean?
+1990
+10
+
+Music: Enigma: What European city was Michael Cretu born in?
+Bucharest
+10
+
+Music: Erasure: Artist/Band: Who is the instrumentalist in Erasure?
+Vince clarke
+10
+
+Music: Erasure: How many members are in Erasure?
+Two
+10
+
+Music: Eric Clapton: Artist/Band: Both Clapton & Steve Winwood were in?
+Blind faith
+10
+
+Music: Eric Clapton: Artist/Band: What superstar drummer helped produce Clapton's work in mid to late 80's?
+Phil collins
+10
+
+Music: Eric Clapton: Clapton wrote this song when he fell in love with George Harrison's wife?
+Layla
+10
+
+Music: Evelyn Glennie is the world's first full time soloist on which part of the orchestra?
+Drums
+10
+
+Music: Everytime Beethoven sat down to write music, he poured ____ water over his head
+Ice
+10
+
+Music: Exene Cervenka headed this L.A. band?
+X
+10
+
+Music: Fairy tale character sung about by Sam the Sham and the Pharoahs?
+Little red riding hood
+10
+
+Music: Famous for blues and jazz, in which city is basin street?
+New orleans
+10
+
+Music: Famous Jazz Critic: Leonard ____
+Feather
+10
+
+Music: Famous Rock Venue, especially in the 60s?
+The fillmore
+10
+
+Music: Famous sax soloist for the Duke Ellington Orchestra of the early '40s?
+Ben webster
+10
+
+Music: Fast paced hit from Grease was a hit for John Travolta & Olivia Newton-John?
+Youre the one that i want
+10
+
+Music: Felix cavaliere was the lead singer for which group?
+Rascals
+10
+
+Music: Fifties rock 'n' roll was revived by what greased hair, T-shirted, TV frequenting group?
+Sha Na Na
+10
+
+Music: Final nation listed in the nation song...?
+Sudan
+10
+
+Music: Final Track on Pearl Jam's vs?
+Indifference
+10
+
+Music: Finish the title of this hit record by c and c music factory; things that make you go ____
+Hmmmm
+10
+
+Music: Finish this song title: 'Heaven or ____ ____'
+Las vegas
+10
+
+Music: First American artist to get label credit on a Beatles record?
+Preston
+10
+
+Music: First conductor of radio NBC's symphony?
+Arturo toscanini
+10
+
+Music: First Marvin Gaye and then Cindy Lauper asked this question?
+Whats goin on
+10
+
+Music: First name of paul maccartney's mother?
+Mary
+10
+
+Music: First song off Enigma's MCMXCD A.D?
+Principles of lust
+10
+
+Music: First song on Pink Floyd's The Division Bell?
+Cluster
+10
+
+Music: First Tool video with small claymation man doing weird things in some house?
+Sober
+10
+
+Music: Fishbone's fatalistic 1985 ska classic that was also a Dr Demento fave?
+Party at ground zero
+10
+
+Music: Five-string instrument with a dry, raspy, twangy sound, used in Country music?
+Banjo
+10
+
+Music: Five-string instrument with a dry, raspy, twangy sound?
+Banjo
+10
+
+Music: Fleetwood Macs best-selling album?
+Rumours
+10
+
+Music: Flutes made from what material do not expand with humidity so their owners are spared the nuisance of tuning them?
+Glass
+10
+
+Music: Food & Drink: Eric Clapton, Ginger Baker, and Jack Bruce make up this band?
+Cream
+10
+
+Music: Food & Drink: Her real name is Judy Kay Newton?
+Juice newton
+10
+
+Music: Food & Drink: In the group, there's been one Herb, but three of these?
+Peaches
+10
+
+Music: Food & Drink: Neil Diamond's first Top 40 hit?
+Cherry cherry
+10
+
+Music: Food & Drink: On the 9 1/2 Weeks soundtrack, the song that mentions Chicken McNuggets?
+Bread and butter
+10
+
+Music: Food & Drink: Only Rolling Stones' release to mention food in the title?
+Brown Sugar
+10
+
+Music: Food & Drink: The band James has 4 songs with this food in the title?
+Popcorn
+10
+
+Music: Food & Drink: The most common food mentioned in the titles of Top 40 songs is this?
+Sugar
+10
+
+Music: Food & Drink: The name of Weird Al's parody of Rico Suave?
+Taco grande
+10
+
+Music: Food & Drink: The video for this Primus song opens up with a man ordering nachos?
+Jerry was a race car driver
+10
+
+Music: Food & Drink: This band contains members Eric Bloom, Donald Roser, Allen Lanier, and 2 more?
+Blue oyster cult
+10
+
+Music: Food & Drink: This man took an Irving Berlin hit into the top ten in 1983?
+Taco
+10
+
+Music: Food & Drink: This Tori Amos tune mentions 'raisin girls'?
+Cornflake girl
+10
+
+Music: Food & Drink: This UB40 song mentions an alcoholic beverage in its title?
+Red red wine
+10
+
+Music: Food & Drink: This was the first #1 song in the year 1972?
+American pie
+10
+
+Music: Food & Drink: What color is the beret that the girl is wearing, according to Prince?
+Raspberry
+10
+
+Music: For some reason, this singer seemed to want my sex?
+George michael
+10
+
+Music: For what band did Bruce Hornsby play piano?
+Grateful Dead
+10
+
+Music: For which English king did Handel compsose his Water Music?
+George i
+10
+
+Music: For who did eric clapton write 'layla'?
+Linda mccartney
+10
+
+Music: For who did mick jagger write 'as tears go by'?
+Marianne faithfull
+10
+
+Music: For who did richard clayderman play a ballad?
+Adeline
+10
+
+Music: For who did the song '867-5309/jenny' spawn a lawsuit?
+Tommy tutone
+10
+
+Music: For whom did Colonel Tom Parker act as manager?
+Elvis Presley
+10
+
+Music: Forever Your Girl - Paula ____
+Abdul
+10
+
+Music: Former Beatle who had a hit with Imagine?
+John Lennon
+10
+
+Music: Former wife & singing partner of George Jones?
+Tammy wynette
+10
+
+Music: Formerly with Spencer Davis, he went on the form Traffic with Dave Mason?
+Steve winwood
+10
+
+Music: Formerly with Spencer Davis, he went on to form Traffic with Dave Mason. He is?
+Steve Winwood
+10
+
+Music: Frank Sinatra was a sensation in the early days of his career. At what theatre?
+Paramount
+10
+
+Music: Frank Sinatra: Sinatra recorded for this record label in the 1950s?
+Capitol
+10
+
+Music: Frank Sinatra: Sinatra was the bobbysoxer's idol in this trombone player's band?
+Tommy dorsey
+10
+
+Music: Frank Sinatra: What film did Sinatra pull from release after Kennedy's assassination?
+Manchurian candidate
+10
+
+Music: Frank Sinatra: What is Frank Sinatra's middle name?
+Albert
+10
+
+Music: Frank Sinatra: What is the name given to Sinatra, Dean Martin, Sammy Davis and all the rest?
+Rat pack
+10
+
+Music: Frank Sinatra: What is the name of the record label Sinatra founded?
+Reprise
+10
+
+Music: Frank Sinatra: What song, from a Minelli/de Niro movie, was a huge hit for Frank?
+New york New York
+10
+
+Music: Frank Zappas guitar-playing son?
+Dweezil zappa
+10
+
+Music: Franki Valli & the ____
+Four seasons
+10
+
+Music: Franki Valli sang the theme for this movie?
+Grease
+10
+
+Music: French singer and actor who appeared with Leslie Caron in the 1958 musical film Gigi?
+Maurice chevalier
+10
+
+Music: From 1964-1967, the only song of the Supremes that failed to crack the top 10?
+Nothing but heartaches
+10
+
+Music: From what platform does the 'Chattanooga Choo Choo' leave Pennsylvania station?
+29
+10
+
+Music: From which band did the Beatles recruit Ringo Starr?
+Rory storm and the hurricane
+10
+
+Music: From which boomtown rats album did rat trap come?
+Tonic for the troops
+10
+
+Music: From which English city did the Animals come from?
+Newcastle
+10
+
+Music: From which musical does the song Goodbye come?
+White Horse Inn
+10
+
+Music: From which opera does the aria O Fortuna come?
+Carmina burana
+10
+
+Music: From which song does the following line come: 'she was more like a beauty queen from a movie scene'?
+Billie jean
+10
+
+Music: From which station does the 'Chattanooga Choo Choo' leave?
+Pennsylvania station
+10
+
+Music: From which village did the pop group 'The Village People' hail?
+Greenwich village
+10
+
+Music: Front girl in destiny's child?
+Beyonce knowles
+10
+
+Music: Frontman for fine young cannibals was?
+Roland gift
+10
+
+Music: Frontman for starsailor?
+James walsh
+10
+
+Music: Funky Cold ____- Tone Loc
+Medina
+10
+
+Music: Gallagher brothers single The Hindu Times is taken from which albu?
+Heathen Chemistry
+10
+
+Music: Garth Brooks has made 4 specials for which TV network?
+Nbc
+10
+
+Music: Garth Brooks: (1995) Garth has how many kids?
+Two
+10
+
+Music: Garth Brooks: AHBA stands for this?
+American honkytonk bar association
+10
+
+Music: Garth Brooks: What does GB collect for charity at every concert?
+Canned Goods
+10
+
+Music: Garth Brooks: What is the name of Garth's record label?
+Liberty records
+10
+
+Music: Garth Brooks: what is the name of GB's record producer?
+Alan reynolds
+10
+
+Music: Gary Busey played this dead rocker before he started playing bad guys?
+Buddy holly
+10
+
+Music: Gary Wright's contibution to Wayne's World?
+Dream weaver
+10
+
+Music: Genesis: Album: Get 'Em Out By Friday, Horizons, Watcher of the Skies?
+Foxtrot
+10
+
+Music: Genesis: Album: I Know What I Like (In Your Wardrobe), Battle of Epping Forest?
+Selling England by the pound
+10
+
+Music: Genesis: First album without Peter Gabriel?
+Trick of the tail
+10
+
+Music: Genesis: The video for this song included many puppets from a popular British TV show?
+Land of confusion
+10
+
+Music: Genres: Allman Brothers and Lynyrd Skynyrd are examples of this type of American rock?
+Southern rock
+10
+
+Music: Genres: Bob Marley, Alpha Blondy, Steel Pulse, etc...?
+Reggae
+10
+
+Music: Genres: Heavy, groove-laden metal with rap style vocals characterize this style?
+Hardcore
+10
+
+Music: Genres: his type of jazz most closely resembles the music of the swing bands?
+Bebop jazz
+10
+
+Music: Genres: Miles Davis started this jazz style, which de-emphasized structure?
+Modal jazz
+10
+
+Music: Genres: Ministry, Skinny Puppy, Skrew, Front 242, etc...?
+Industrial
+10
+
+Music: Genres: Sex Pistols, Circle Jerks, Dead Kennedys, etc...?
+Punk rock
+10
+
+Music: Genres: The band Bim Skala Bim is an example of this offshoot of reggae?
+Ska
+10
+
+Music: Genres: This a cappella music, which began in the monastery, is the beginning of music?
+Gregorian chant
+10
+
+Music: Genres: This post-Gregorian style is characterized by each syllable sung multiple times?
+Melismatic
+10
+
+Music: Genres: This type of jazz is named for its mellow, laid back approach?
+Cool jazz
+10
+
+Music: Genres: This type of jazz stresses improvisation and promotes lack of structure/form?
+Free jazz
+10
+
+Music: Genres: This type of metal sees the band members with lots of hairspray & lipstick?
+Glam metal
+10
+
+Music: George harrison lost a plagiarism suit for which of his songs?
+My sweet lord
+10
+
+Music: George McRae #1 disco hit?
+Rock your baby
+10
+
+Music: George Michael first hit #1 as a member of which duo?
+Wham!
+10
+
+Music: George Michael wanted your ____
+Sex
+10
+
+Music: German songs, particularly of the romantic period, usually for solo voices?
+Lieder
+10
+
+Music: German, Italian and French are varieties of what kind of chord?
+Augmented 6th
+10
+
+Music: Girl I'm Gonna ____You - Milli Vanilli
+Miss
+10
+
+Music: Girl You ____It's True - Milli Vanilli
+Know
+10
+
+Music: Gitarzan singer's #1 hit?
+Everything is beautiful
+10
+
+Music: Gladys Knight & The ____
+Pips
+10
+
+Music: Glenn Miller was one of the giants of his time and his type of music. My favorite is 'Chattanooga Choo-Choo'. What track does it depart from in the song - and when does it leave?
+Track 29
+10
+
+Music: Go on and dig your thumbs in...?
+Midlife crisis
+10
+
+Music: Goin' down the road feeling...?
+Bad
+10
+
+Music: Good Thing - Fine Young ____
+Cannibals
+10
+
+Music: Grammy awards: What album by Barbra Streisand won the Grammy in 1963?
+Barbra streisand album
+10
+
+Music: Grammy awards: what album by fleetwood mac won the grammy in 1977?
+Rumours
+10
+
+Music: Grammy Awards: What album by Michael Jackson won the grammy in 1983?
+Thriller
+10
+
+Music: Grammy awards: what album by paul simon won the grammy in 1975?
+Still crazy after all these years
+10
+
+Music: Grammy awards: what album by paul simon won the grammy in 1986?
+Graceland
+10
+
+Music: Grammy awards: what album by stevie wonder won the grammy in 1973?
+Innervisions
+10
+
+Music: Grammy awards: what album by stevie wonder won the grammy in 1974?
+Fulfullingness' first finale
+10
+
+Music: Grammy Awards: What album by Stevie Wonder won the grammy in 1976?
+Songs in the key of life
+10
+
+Music: Grammy awards: what album by toto won the grammy in 1982?
+Toto iv
+10
+
+Music: Grammy awards: what album by various artists won the grammy in 1972?
+Concert for bangladesh
+10
+
+Music: Grammy awards: what single by michael jackson won the grammy in 1983?
+Beat it
+10
+
+Music: Grammy awards: what single by tina turner won the grammy in 1984?
+What's love got to do with it
+10
+
+Music: Grand Funk Railroad made this patent observation? (4 words)?
+Were an American band
+10
+
+Music: Grateful Dead keyboards man who died of a drug overdose?
+Brent mydland
+10
+
+Music: Grateful Dead: April Fools, Barney pretended to play bass, but this man was backstage playing?
+Phil lesh
+10
+
+Music: Grateful Dead: Chicago basketball coach who loves the Dead?
+Phil jackson
+10
+
+Music: Grateful Dead: Dead song with the most sub-titles?
+Terrapin station
+10
+
+Music: Grateful Dead: DeadHead slang for nitrous oxide?
+Hippy crack
+10
+
+Music: Grateful Dead: Former Tubes member who is now GD keyboardist?
+Vince Welnick
+10
+
+Music: Grateful Dead: He toured with the band in the summer of 1993?
+Sting
+10
+
+Music: Grateful Dead: Jerry Garcia's first wife?
+Mountain girl
+10
+
+Music: Grateful Dead: Jerry Garcia's lyricist?
+Robert hunter
+10
+
+Music: Grateful Dead: Only woman ever in the band?
+Donna godchaux
+10
+
+Music: Grateful Dead: She lost her sparkle you know she isn't the same?
+Sweet Jane
+10
+
+Music: Grateful Dead: The band always always always does this many encores :(?
+One
+10
+
+Music: Grateful Dead: This man drove his train while under the influence of an illegal substance?
+Casey jones
+10
+
+Music: Grateful Dead: This member of the band is a classically trained musician?
+Phil lesh
+10
+
+Music: Grateful Dead: This song, their first top 40 hit, came 20 years into their careers?
+Touch of grey
+10
+
+Music: Grease: Danny tried out for several sports, but finally lettered in this?
+Track
+10
+
+Music: Grease: Sandy took up this extracurricular activity?
+Cheerleading
+10
+
+Music: Grease: The T-Birds got national exposure doing this?
+Mooning
+10
+
+Music: Groups: ____ Trick
+Cheap
+10
+
+Music: Guitar: Barre chords are usually in in either A form of this form?
+E
+10
+
+Music: Guitar: If an A chord is represented x02220, what would a D be?
+X00232
+10
+
+Music: Guitar: What artist on the PF soundtrack is considered the king of Surf Guitar?
+Dick dale
+10
+
+Music: Guitar: What instrument, besides violins, did Stradivarius construct?
+Guitar
+10
+
+Music: Guitar: What is a plectrum?
+Pick
+10
+
+Music: Guitar: What is a two-coil, counterwound pickup called?
+Humbucker
+10
+
+Music: Guitar: What is the fifth of A?
+E
+10
+
+Music: Guitar: Who is the famous bass guitarist for the band Primus?
+Les Claypool
+10
+
+Music: Guitarist and singer with the Minutemen?
+D boone
+10
+
+Music: Guitarist Eric Clapton was formerly a member of this group?
+Cream
+10
+
+Music: Guitarist Jimmy Page was a member of this group?
+Led zeppelin
+10
+
+Music: Guitarist Nunu Bettencourt is a member of this group?
+Extreme
+10
+
+Music: Guitarist Paul Kossof was formerly a member of this group?
+Free
+10
+
+Music: Guitarist Peter Green was formerly a member of this group?
+Fleetwood mac
+10
+
+Music: Guitarist Slash is a member of this group?
+Guns 'n roses
+10
+
+Music: Guitarist with only 9 full fingers?
+Jerry garcia
+10
+
+Music: Guns N' Roses: Album: Album of punk cover songs?
+Spaghetti incident
+10
+
+Music: Hangin' ____- New Kids On The Block
+Tough
+10
+
+Music: Hank Ballard & the ____
+Midnighters
+10
+
+Music: Hate your Guts - Machine Gun Man - Losin' Your Mind?
+Pride glory
+10
+
+Music: Have you seen your mother, baby, ____
+Standing in the shadow
+10
+
+Music: He began his career as a lead vocalist with the group 'Them' during the early British invasion?
+Van morrison
+10
+
+Music: He began his career with the Yardbirds, moved to John Mayall's Bluesbreakers, Cream & Blind Faith & is established as one of the best rock guitarists of his generation?
+Eric clapton
+10
+
+Music: He conceived, directed, and choreographed West Side Story?
+Jerome robbins
+10
+
+Music: He has lately been upstaged by the Uh-Huh girls?
+Charles
+10
+
+Music: He has produced such bands as Metallica, Motley Crue and The Cult?
+Bob rock
+10
+
+Music: He joined the Grateful dead in 1968?
+Tom constanten
+10
+
+Music: he only member of the band zz top without a beard has what last name?
+Beard
+10
+
+Music: He played bass for Television before starting his own group, the voidoids?
+Richard hell
+10
+
+Music: He released the parody 'Oh You Ate One Too' in 1988 what included the song 'Cabo Wabo'?
+Van halen
+10
+
+Music: He sang hits such as 'Crying' & 'Only The Lonely'?
+Roy orbison
+10
+
+Music: he sang to entertain the crowds at wimbledon 1996, when rain interrupted play?
+Sir cliff richard
+10
+
+Music: He sings about the Mona Lisa's sister?
+Graham parker
+10
+
+Music: He stutters when talking, but not when singing?
+Mel tillis
+10
+
+Music: He toured with this band on his latest tour?
+Booker t & the mgs
+10
+
+Music: He turned pop classics Surf City & Runaround Sue into tawdry Trash Disco hits?
+Leif garrett
+10
+
+Music: He was a protege of Charlie Parker while still in his teens?
+Miles davis
+10
+
+Music: He was in his teens when he started drumming for miles davis?
+Tony williams
+10
+
+Music: He was the Waltz King (first and last name, and roman numeral)?
+Johann strauss ii
+10
+
+Music: He worked in a factory making toilets for airplanes before he recorded 'Aint No Sunshine When She's Gone'?
+Bill withers
+10
+
+Music: He wrote Cruel Shoes?
+Steve martin
+10
+
+Music: He wrote the orchestral piece 'Skies of America'?
+Ornette coleman
+10
+
+Music: He wrote the theme to Peter Gunn?
+Henry mancini
+10
+
+Music: He's bringing the banjo into the 21st century?
+Bela fleck
+10
+
+Music: He's married to Valerie Bertanelli?
+Eddie van halen
+10
+
+Music: Heaven Help Me - Deon ____
+Estus
+10
+
+Music: Heaven?
+Warrant
+10
+
+Music: Her lucky number changed from 1 to 2?
+Lene lovich
+10
+
+Music: Here's one for the 'WKRP in Cincinnati' fans out there. On December 3, 1979, fans were killed during a rush to gain admittance for general seating at Riverfront Coliseum in Cincinnati. Who was performing that night?
+The Who
+10
+
+Music: Hey! Wait! I got a new complaint!?
+Heart shaped box
+10
+
+Music: Hey! What was the name of the hit song released by 'The Romantics' in February 1980?
+That's What I Like About You
+10
+
+Music: hich singing puppet duo were crated by Jan and Vlasta Dalibor and had their own tv show from 1960-68?
+Pinky and perky
+10
+
+Music: Hired as Zappa guitarist due to the precision of his transcriptions?
+Steve vai
+10
+
+Music: His children are named Nancy, Frank & Christina?
+Frank sinatra
+10
+
+Music: His ex-wife hit him with a bottle in a 1982 concert appearance?
+Richard thompson
+10
+
+Music: Hit for Acker Bilk?
+Stranger on the shore
+10
+
+Music: Hit for Geneisis which includes an exclamation point in the title?
+Thats all
+10
+
+Music: Hit it big with the Banana Boat Song in 1957?
+Belafonte
+10
+
+Music: Hit song written by Bruce Springsteen, then charted by Natalie Cole?
+Pink cadillac
+10
+
+Music: Hitmaking group with two-handed hammer-on innovator guitarist?
+Van halen
+10
+
+Music: Hold my breath as I wish for death?
+One
+10
+
+Music: Hollywood: Name of Brooke Shields' mother?
+Teri
+10
+
+Music: How did Buddy Holly die?
+Plane crash
+10
+
+Music: How did Jim Croce die?
+Plane crash
+10
+
+Music: How did John Denver die?
+Plane crash
+10
+
+Music: How did My Darling Clementine die?
+Drowning
+10
+
+Music: How did Ritchie Valens die?
+Plane crash
+10
+
+Music: How did Sonny Bono die?
+Skiing accident
+10
+
+Music: How far did Madonna get the coke bottle down her throat?
+To the label
+10
+
+Music: How far is it to the top 'if you wanna rock n roll' according to ac/dc?
+A long way
+10
+
+Music: How is Leslie Wundermann better known?
+Taylor Dayne
+10
+
+Music: How long will Davy probably be in the navy, according to Billy Joel?
+For life
+10
+
+Music: How many albums does Pantera really have(very tricky)?
+Eight
+10
+
+Music: How many birthday candles were Cher, Dolly Parton and Sylivester Stallone each obliged to blow out in 1996?
+Fifty
+10
+
+Music: How many boys were there in The Pet Shop Boys?
+Two
+10
+
+Music: How many brothers were in the original Jackson family line up?
+Five
+10
+
+Music: How many drum kits did Adam & The Ants use in most of their songs?
+Two
+10
+
+Music: How many Grammy Awards did Lawrence Welk garner during his 50-year career?
+Zero
+10
+
+Music: How many grammy awards have the Rolling Stones won?
+None
+10
+
+Music: How many Grammy nominations were totaled by the classic LPs Tommy, Layla, What's Goin' On and Blonde on Blonde?
+Zero
+10
+
+Music: How many grooves are there on each side of a 45 r.p.m. record?
+One
+10
+
+Music: How many keys on a standard piano keyboard?
+88
+10
+
+Music: How many members are in the 'fairfield four'?
+Five
+10
+
+Music: How many members of the Mamas & The Papas were there?
+Four
+10
+
+Music: How many No. 1 songs did The Grateful Dead have?
+0
+10
+
+Music: How many notes are there in the first two bars of Beethoven's 'Fifth Symphony'?
+Four
+10
+
+Music: How many number 1 singles did Mariah Carey have on her first album?
+Four
+10
+
+Music: How many of Frank Sinatra's collaborators on Duets and Duets II joined him in the studio?
+Zero
+10
+
+Music: how many paris symphonies did haydn compose?
+Six
+10
+
+Music: How many people are in the rock group Van Halen?
+Four
+10
+
+Music: How many singles did Bruce Springsteen put atop Billboard charts in the 1980s?
+Zero
+10
+
+Music: How many songs are there on Eminems first LP?
+Twenty
+10
+
+Music: How many songs from the Beatles' Sgt. Pepper's Lonely Hearts Club Band were released as singles?
+Zero
+10
+
+Music: How many strings does a violin have?
+Four
+10
+
+Music: How many strings on a bass guitar?
+Four
+10
+
+Music: How many symphonies did Beethoven compose?
+Nine
+10
+
+Music: How many times has Tanya Tucker been married?
+Zero
+10
+
+Music: How many valves does a French horn have?
+Three
+10
+
+Music: How old was Leann Rhimes when she became a country music star?
+Fourteen
+10
+
+Music: How old was Leann Rhimes when she recorded her first album?
+Eleven
+10
+
+Music: How old was Ray Charles when he became blind?
+Seven
+10
+
+Music: How old was Shania Twain when she started singing in bars?
+Eight
+10
+
+Music: Howdeeee! What country performer once worked as a Minnie Pearl impersonator at Opryland?
+Chely wright
+10
+
+Music: Hugely successful syndicated TV show featuring country music & stars?
+Hee haw
+10
+
+Music: Hulk Hogan's theme song?
+Real American
+10
+
+Music: hyperreal.com, an archive of rave info, gets its name from a song by this band?
+The shamen
+10
+
+Music: I am a musician, a prolific catwriter, & a humble genius, who am I?
+Dosi
+10
+
+Music: I been all night long comin' home don't...?
+Ease
+10
+
+Music: I Don't Wanna Go On With You Like That - ____John
+Elton
+10
+
+Music: I Don't Wanna Live ____Your Love - Chicago
+Without
+10
+
+Music: I Don't Want To Live ____You - Foreigner
+Without
+10
+
+Music: I Don't Want Your Love - ____Duran
+Duran
+10
+
+Music: I Drove All ____- Cyndi
+Night Lauper 
+10
+
+Music: I Get Weak - Belinda ____
+Carlisle
+10
+
+Music: I Hate ____For Loving You - Joan Jett & The Blackhearts
+Myself
+10
+
+Music: I Like It - ____4th & B'way
+Dino
+10
+
+Music: I long to see the sunlight in your hair?
+Hello
+10
+
+Music: I Remember ____You - Boys Club
+Holding
+10
+
+Music: I Still ____- Brenda K. Starr
+Believe
+10
+
+Music: I Want Her - ____Sweat
+Keith
+10
+
+Music: I Want To Be ____Man - Roger
+Your
+10
+
+Music: I'll Be Loving You (____) - New Kids On The Block
+Forever
+10
+
+Music: I'll Be There For You - ____Jovi
+Bon
+10
+
+Music: I'll Be There For You was the theme to which hit TV show?
+Friends
+10
+
+Music: If I Could Turn Back Time?
+Cher
+10
+
+Music: If It Isn't Love - New ____
+Edition
+10
+
+Music: If You Don't Know Me By Now - ____Red
+Simply
+10
+
+Music: If you own all the KoRn, Limp Bizkit, Eminem & Dr. Dre cd's how many cd's do you own?
+Nine
+10
+
+Music: If you own most of the KoRn, Limp Bizkit, Eminem & Dr. Dre cd's,you would have at least how many albums?
+Nine
+10
+
+Music: In 'American pie', who does don mclean refer to as 'the king'?
+Elvis presley
+10
+
+Music: In 'La Traviata', what does Violetta sing?
+Sempre Libera
+10
+
+Music: In 'La Traviata', who sings 'Sempre Libera'?
+Violetta
+10
+
+Music: In 1953, Clyde McPhatter left the Dominoes to form this group?
+The drifters
+10
+
+Music: In 1958, who had a pop music hit with 'Willie and the Hand Jive'?
+Johnny Otis
+10
+
+Music: In 1959 which group created the jazz classic Take Five?
+The dave brubeck quartet
+10
+
+Music: In 1959 who recorded the hit single Mack the Knife?
+Bobby darin
+10
+
+Music: In 1962 Robert Zimmerman legally changed his name to what?
+Bob dylan
+10
+
+Music: In 1965 this group had formed as The Versatiles, but changed their name at the request of Johnny Rivers who had just signed them to his Soul City Label?
+Fifth dimension
+10
+
+Music: In 1968, who released 'Carnival of life' and 'Recital'?
+Lee Michaels
+10
+
+Music: In 1969 which singer recorded a best selling album during a television documentary at San Quentin prison?
+Johnny cash
+10
+
+Music: In 1970, they became the first rock group to play NYC's Met. Opera House?
+The who
+10
+
+Music: In 1976 this former humble pie singer and guitarist came alive?
+Peter frampton
+10
+
+Music: In 1977 this group had a hit with 'Hotel California'?
+Eagles
+10
+
+Music: In 1978 how many weeks at No 1 were taken up by the Gibb family?
+28
+10
+
+Music: In 1981, who won song of the year with 'Sailing'?
+Christopher Cross
+10
+
+Music: In 1982 Madonna was the lead singer for this band?
+The Breakfast Club
+10
+
+Music: In 1982 who had a hit with 'Pass the Dutchie'?
+Musical Youth
+10
+
+Music: In 1985 which group was on a 'Road To No Where'?
+Talking Heads
+10
+
+Music: In 1987, who released her second album 'Solitude Standing'?
+Suzanne Vega
+10
+
+Music: In 1990 who was 'Doin' the Do'?
+Betty Boo
+10
+
+Music: In 1995 who produced an album called No need to Argue?
+Cranberries
+10
+
+Music: In 2004 what DJ showed us how to 'Cha Cha Slide'?
+DJ Casper
+10
+
+Music: In a 1976 release, who wanted to 'fly like an eagle'?
+Steve Miller Band
+10
+
+Music: In concert, this band wore giant eyeballs over their heads & tuxedos?
+The residents
+10
+
+Music: In Dire Straits song 'Money For Nothing' what sort of oven were they singing about?
+Microwave
+10
+
+Music: In late 1957, Buddy Holly's solo release 'Peggy Sue' challenged which song recorded with The Crickets?
+Oh Boy
+10
+
+Music: In psychadelic '67, which old-time dance gave Englebert Humperdink a huge hit?
+Waltz
+10
+
+Music: In some places, you can get porno for ____
+Pyros
+10
+
+Music: In song, where did all the lights go down according to the Bee Gees?
+Massachusetts
+10
+
+Music: In the 'twelve days of christmas', how many items in total are sent by 'my true love'?
+-- Answer metadata begin
+{
+    "answers": ["Seventy eight", "78"]
+}
+-- Answer metadata end
+10
+
+Music: In the 70s who put a Message In A Bottle?
+Police
+10
+
+Music: In the children's song, when this old man played eight, on what did he play nick-nack?
+Gate
+10
+
+Music: In the Frankie Goes to Holleywood hit, how many tribes were there?
+Two
+10
+
+Music: In the mid seventies, which British artist changed personas once again & portrayed the 'Thin White Duke'?
+David bowie
+10
+
+Music: In the mid seventies, who proved that it was possible for a petite woman to sing, play bass and wear leather?
+Suzi quattro
+10
+
+Music: In the opera 'Don Giovanni', what was Leporello?
+Servant
+10
+
+Music: In the sixties, what label did Mary Hopkins record for?
+Apple
+10
+
+Music: In the song 'skip to my lou', in what beverage are the flies?
+Buttermilk
+10
+
+Music: In the song which begins A frog he would a wooing go, who says Heigh Ho?
+Rowley
+10
+
+Music: In this musical, the hero sells his soul so the Senators can win the pennant?
+Damn yankees
+10
+
+Music: In this song Billy Corgan's so depressed, things cant get any worse. Yawn?
+Today
+10
+
+Music: In what city did Kurt Cobain lapse into a coma?
+Rome
+10
+
+Music: In what city was Elvis Presley born?
+Tupelo
+10
+
+Music: In what city was Woodstock held?
+Bethel, New York
+10
+
+Music: In what country did the Rhumba orginate?
+Cuba
+10
+
+Music: in what disney film did conductor leopold stokowski appear?
+Fantasia
+10
+
+Music: In what does Michael Jackson sleep?
+Cryochamber
+10
+
+Music: in what group did graham nash get his start?
+Hollies
+10
+
+Music: In what song did John Lennon sleep in a bath?
+Norwegian wood
+10
+
+Music: In what song does Irene Cara sing 'I'm gonna live forever'?
+Fame
+10
+
+Music: In what Viennese city was Mozart born?
+Saltzburg
+10
+
+Music: in what year did the 'pretenders' release their first lp?
+1980
+10
+
+Music: In what year was Shania Twain born?
+1965
+10
+
+Music: In which British rock band formed in 1965 was the singer and guitarist Syd Barrett replaced by David Gilmour?
+Pink floyd
+10
+
+Music: In which country was the Rock and Roll hall of fame established?
+USA
+10
+
+Music: In which decade was Tina Turner born?
+Thirties
+10
+
+Music: In which opera does Leporello entertain a vengeful jilted lover?
+Don Giovanni
+10
+
+Music: In which Puccini opera does the poet Rodolfo appear?
+La Boheme
+10
+
+Music: In which state did 2 Pac and Dr Dre find Love?
+California
+10
+
+Music: In which state did Chicago get together?
+Illinois
+10
+
+Music: In which state did Kurt Cobain die(kill himself)?
+Washington
+10
+
+Music: In which Verdi opera does Violetta sing 'Sempre Libera'?
+La Traviata
+10
+
+Music: In which year did Al Stewart's Year Of The Cat make the charts?
+1977
+10
+
+Music: In which year did Bill Haley record Rock around the Clock?
+1954
+10
+
+Music: In which year did the 'Live Aid' concerts take place?
+1985
+10
+
+Music: In which year was George Jones inducted into the Country Music Hall of Fame?
+1992
+10
+
+Music: in which year was ottis redding killed in a plane crash?
+1967
+10
+
+Music: In Your Room?
+Bangles
+10
+
+Music: Indian Chief, Biker, Military Man, Cop, Construction Worker?
+The village people
+10
+
+Music: Indigo Girls, from Swamp Ophelia: contains the album title in the lyrics?
+Touch me fall
+10
+
+Music: Indigo Girls: Band member who does all the lead guitar work (first name only)?
+Emily
+10
+
+Music: Indigo Girls: BAND member who has dark hair (first name only)?
+Amy
+10
+
+Music: Indigo Girls: BAND member who has reddish-blond hair (first name only)?
+Emily
+10
+
+Music: Indigo Girls: The IGs appeared on TAME YOURSELF, a benefit for this animal rights group?
+Peta
+10
+
+Music: Indigo Girls: The IGs are curently signed to this major label, a subsidiary of Sony Music?
+Epic
+10
+
+Music: Indigo Girls: The IGs used to open up for this former band of Natalie Merchant?
+10000 maniacs
+10
+
+Music: Indigo Girls: This 1989 video was also their first single?
+Closer to fine
+10
+
+Music: Indigo Girls: This Grammy & CMA award winning artist appears on NOMADS indians saints?
+Mary chapin carpenter
+10
+
+Music: Indigo Girls: Title of their 1989 self-titled major label debut album?
+Indigo girls
+10
+
+Music: Influential 3 on 2 South American rhythm?
+Clave
+10
+
+Music: Insect from the Red Hot Chili Peppers?
+Flea
+10
+
+Music: Instruction given to Vanilla Ice in Ice, Ice Baby?
+Go white boy go
+10
+
+Music: instrument of bells or metal bars played with hammers?
+Glockenspiel
+10
+
+Music: Instrument played by Julian Lloyd Webber?
+Cello
+10
+
+Music: Instrument that Moe Koffman plays in his hit Swingin' Shepherd Blues?
+The flute
+10
+
+Music: Instruments?
+Organ
+10
+
+Music: Into what did beethoven dip his head before he composed?
+Cold water
+10
+
+Music: Into what instrument did the Lemon Pipers urge you to throw a dime in before you walked away?
+Green tambourine
+10
+
+Music: Irish boyband?
+Westlife
+10
+
+Music: Irish rovers recorded a song in 1968 about what animal of folklore?
+Unicorn
+10
+
+Music: Is Jethro Tull the name of a person in Jethro Tull?
+No (tull was an 18th century agronomist)
+10
+
+Music: Is opera star Luciano Pavarotti a baritone, tenor or bass?
+Tenor
+10
+
+Music: It unusual was a hit for whom?
+Tom jones
+10
+
+Music: It's a Sunday afternoon in this STP song?
+Interstate love song
+10
+
+Music: It's always funny untill someone gets hurt!?
+Ricochet
+10
+
+Music: It's No Crime?
+Babyface
+10
+
+Music: It's not fair to me...?
+Daughter
+10
+
+Music: J. Geils Band's Centerfold video started career of this former VJ?
+Martha quinn
+10
+
+Music: Jackson Browne kept forgetting to fill his car with gas, resulting in this?
+Running on empty
+10
+
+Music: Jackson Five's #1 lyrics about the alphabet?
+Abc
+10
+
+Music: Jakob Dylan, singer songwriter of what group, claims that he wrote the songs for the double platinum album 'Bringing Down The Horse On' scraps of paper?
+Wallflowers
+10
+
+Music: Jamiroquai single?
+Love Foolosophy
+10
+
+Music: Jane's Addiction song about animals in an Oriental theory?
+Pigs in zen
+10
+
+Music: Janet Jackson's second #1?
+Miss you much
+10
+
+Music: Janis Joplin started her career with which group backing her up?
+Big brother & the holding company
+10
+
+Music: Japanese disco duo who had a summer TV show in the US in 1979?
+Pink lady
+10
+
+Music: Jazz Axes: Airto Moreira plays this category of instruments?
+Percussion
+10
+
+Music: Jazz Axes: Dewey Redman's Principal Instrument?
+Tenor saxophone
+10
+
+Music: Jazz Axes: Dizzy Gillespie plays?
+Trumpet
+10
+
+Music: Jazz Axes: Ed Blackwell plays?
+Drums
+10
+
+Music: Jazz Axes: Miles Davis played?
+Trumpet
+10
+
+Music: Jazz Axes: Milt Jackson played this special instrument?
+Vibraphone
+10
+
+Music: Jazz Axes: Sarah Vaughan's instrument?
+Voice
+10
+
+Music: Jazz Axes: Scott Lafaro plays?
+Bass
+10
+
+Music: Jazz Axes: Sydney Bechet plays clarinet and (specify!)?
+Soprano saxophone
+10
+
+Music: Jazz clarinetist Benny ____
+Goodman
+10
+
+Music: Jeff Beck used to drown him out when he tried to sing?
+Rod stewart
+10
+
+Music: Jefferson Airplane: Conejo blanco?
+White rabbit
+10
+
+Music: Jennifer Warnes teamed up with____ to sing 'Up Where We Belong' in 1982
+Joe Cocker
+10
+
+Music: Jenny Frost,Liz McClarnon and Natasha Hamilton make up which successful UK group?
+Atomic Kitten
+10
+
+Music: Jerry Lee Lewis had Great ____ Of Fire
+Balls
+10
+
+Music: Jesse James song that pays tribute to sexy Rita strutting her stuff?
+Dangerous on the dance floor
+10
+
+Music: Jim Capaldi, Dave Mason, Chris Wood & Steve Winwood?
+Traffic
+10
+
+Music: Jimmy Buffett: Album: Manana, Cheeseburger in Paradise, Fool Button?
+Son of a son of a sailor
+10
+
+Music: Jimmy Buffett: Album: The Good Fight, Stars Fell on Alabama?
+Coconut telegraph
+10
+
+Music: Jimmy Buffett: From what group of rock and roll fanatics did The Parrotheads get their name?
+Deadheads
+10
+
+Music: Jimmy Buffett: Name for devoted Jimmy Buffett followers?
+Parrothead
+10
+
+Music: Jimmy Buffett: What is the name of Jimmy Buffett's store/cafe in Key West?
+Margaritaville
+10
+
+Music: Jimmy Page, Jeff Beck and Eric Clapton have all belonged to this band?
+Yardbirds
+10
+
+Music: Joe Tex & Penny Maclean both had big hits referring to this dance, name it?
+The bump
+10
+
+Music: Joel Grey sings & dances with a gorilla girlfriend in this song?
+If you could see her through my eyes
+10
+
+Music: joey dee and the ____
+Starlighters
+10
+
+Music: John Coltrane covered this tune from The Sound of Music?
+My favorite things
+10
+
+Music: John Cougar Mellencamp's houses were of this colour?
+Pink
+10
+
+Music: John Fogerty's best-selling solo album?
+Centerfield
+10
+
+Music: John Lennon was shot outside of what New York building?
+The dakota
+10
+
+Music: John Lennon: John Lennon's favourite song?
+Whiter shade of pale
+10
+
+Music: John Lennon: John Lennon's last public performance was with this man?
+Elton john
+10
+
+Music: John Lennon: John was married to Cynthia and had this child?
+Julian
+10
+
+Music: John Lennon: The first band John founded?
+Quarrymen
+10
+
+Music: John Lennon: The first publication that had the news of John Lennon's death?
+New york post
+10
+
+Music: John Lennon: The movie in which John Lennon starred in (1966)?
+How i won the war
+10
+
+Music: John Lennon: The press was invited to join John and Yoko for this?
+A bed-in for peace
+10
+
+Music: John Lennon: Years older Yoko is to John?
+7
+10
+
+Music: John Paul Jones, Jimmy Page, Robert Plant, ____ ____
+John bonham
+10
+
+Music: John Rutter is best known for what genre of music?
+Choral
+10
+
+Music: Johnny B. Goode hails from this state?
+Louisiana
+10
+
+Music: Johnny Mathis is the master of romantic songs. Which of his classics makes reference to 'the magic of moonlight'?
+Chances Are
+10
+
+Music: Johnny Wakelin's nickname for Muhammad Ali?
+Black Superman
+10
+
+Music: Jon Anderson collaborator & Chariots of Fire composer?
+Jon vangelis
+10
+
+Music: Jonathan Demme directed a movie of this band in concert?
+The talking heads
+10
+
+Music: Joni Mitchell, Bob Dylan & Suzanne Vega have been pigeonholed as this?
+Folk music
+10
+
+Music: Joni Mitchells hit from 'Ladies Of The Canyon' album says what came & took away her old man?
+Big yellow taxi
+10
+
+Music: Judy Garland was married several times. Who was her first husband?
+David Rose
+10
+
+Music: Just before their planned comeback tour Michael Hutchence of which band was found dead of an apparent suicide?
+Inxs
+10
+
+Music: Just Like ____- David Lee Roth
+Paradise
+10
+
+Music: Just Like ____James
+Jesse Cher
+10
+
+Music: Kate Bush album title mentions a type of apparel?
+The red shoes
+10
+
+Music: Kate Bush and Pat Benatar both sang about this Bronte classic?
+Wuthering heights
+10
+
+Music: Keith Richards rocked on in which super group?
+The Rolling Stones
+10
+
+Music: Keyboardist for the T. Heads?
+Jerry harrison
+10
+
+Music: Kick up your heels. This is what skasters refer to as dancing?
+Skanking
+10
+
+Music: Kid's Songs?
+Itsy-Bitsy Spider
+10
+
+Music: Kid's Songs?
+London Bridges
+10
+
+Music: Kinks hit song about a crossdresser?
+Lola
+10
+
+Music: Kip Addotta novelty song packed to the gills with fish puns?
+Wet dream
+10
+
+Music: Kokomo was immortalized by the Beach Boys in a 1988 #1 featured in this movie?
+Cocktail
+10
+
+Music: Kylie minogue and prodigy had hits with different songs that had which common title?
+Breathe
+10
+
+Music: Labels: bought by TVT, with KMFDM, Revolting Cocks, Coil, Thrill Kill Kult...?
+Wax trax
+10
+
+Music: Labels: Qwest Records is the personal label of this prominent black producer?
+Quincy jones
+10
+
+Music: Labels: The logo for this label features people dancing?
+Tommy boy
+10
+
+Music: Labels: This early Neil Diamond label has a gun in its logo?
+Bang
+10
+
+Music: Labels: Todd Rundgren's label, or the town Goldilocks wandered into?
+Bearsville
+10
+
+Music: Labels: U2's label is Polygram/____
+Island
+10
+
+Music: Labels: What is Bjork's current label (1994)?
+Elektra
+10
+
+Music: Labels: What is L7's current label (1994)?
+Reprise
+10
+
+Music: Labels: What is Shonen Knife's current label (1994)?
+Virgin
+10
+
+Music: Labels: What is Superchunk's current label?
+Merge
+10
+
+Music: Labels: What is The Jesus And Mary Chain's current label (1994)?
+Warner brothers
+10
+
+Music: Labels: What is the name of the record label that Madonna owns?
+Maverick
+10
+
+Music: Labels: What label was Johny Cash's newest album, American Recordings, released on?
+American recordings
+10
+
+Music: Last Genesis album before Peter Gabriel's departure?
+The lamb lies down on broadway
+10
+
+Music: Last song on Use Your Illision I: ungodly awesome rhythm playing at the end?
+Coma
+10
+
+Music: Last word spoken by the Purple People Eater in that song?
+Tequila
+10
+
+Music: Laura Branigan's first hit, it stayed at #2 for three weeks?
+Gloria
+10
+
+Music: Lay Your ____On Me - Bon Jovi
+Hands
+10
+
+Music: Lead Singer: (screamer) of Nirvana?
+Kurt cobain
+10
+
+Music: Lead Singer: Big Audio Dynamite?
+Mick jones
+10
+
+Music: Lead Singer: Blind Faith?
+Steve winwood
+10
+
+Music: Lead Singer: Counting Crows?
+Adam duritz
+10
+
+Music: Lead Singer: Cracker?
+David lowery
+10
+
+Music: Lead Singer: Crash Test Dummies?
+Brad roberts
+10
+
+Music: Lead Singer: Cream?
+Eric clapton
+10
+
+Music: Lead Singer: Derek and the Dominoes?
+Eric clapton
+10
+
+Music: Lead Singer: Eurythmics?
+Annie lennox
+10
+
+Music: Lead Singer: for Guns n' Roses?
+Axl rose
+10
+
+Music: Lead singer: for Portishead?
+Beth gibbons
+10
+
+Music: Lead singer: for the Stone Canyon BAND in the late sixties?
+Linda ronstadt
+10
+
+Music: Lead Singer: Frankie Goes to Hollywood?
+Holly johnson
+10
+
+Music: Lead Singer: Gin Blossoms?
+Robin wilson
+10
+
+Music: Lead Singer: Human League?
+Philip oakey
+10
+
+Music: Lead Singer: Husker Du?
+Bob mould
+10
+
+Music: Lead Singer: INXS?
+Michael hutchence
+10
+
+Music: Lead Singer: Midnight Oil?
+Peter garrett
+10
+
+Music: Lead Singer: Ministry?
+Alain jourgensen
+10
+
+Music: Lead Singer: Moody Blues?
+Justin hayward
+10
+
+Music: Lead singer: of Simply Red?
+Mick Hucknall
+10
+
+Music: Lead Singer: Pretenders?
+Chrissie hynde
+10
+
+Music: Lead Singer: Procol Harum?
+Gary brooker
+10
+
+Music: Lead Singer: Red Hot Chili Peppers?
+Anthony kiedis
+10
+
+Music: Lead Singer: Roxy Music?
+Bryan ferry
+10
+
+Music: Lead Singer: Simple Minds?
+Jim kerr
+10
+
+Music: Lead Singer: Siouxsie & the Banshees?
+Siouxsie sioux
+10
+
+Music: Lead Singer: Smithereens?
+Pat dinizio
+10
+
+Music: Lead Singer: Stone Roses?
+Ian brown
+10
+
+Music: Lead Singer: Stray Cats?
+Brian setzer
+10
+
+Music: Lead Singer: T Rex?
+Marc bolan
+10
+
+Music: Lead Singer: The Church?
+Steve kilby
+10
+
+Music: Lead Singer: The Cure?
+Robert smith
+10
+
+Music: Lead Singer: The Honeydrippers?
+Robert plant
+10
+
+Music: Lead Singer: the Screaming Jets?
+Dave gleeson
+10
+
+Music: Lead Singer: the Style Council?
+Paul Weller
+10
+
+Music: Lead Singer: The The?
+Matt johnson
+10
+
+Music: Leader of the League of Crafty Guitarists?
+Robert fripp
+10
+
+Music: Leader Singer: Of the Soft Boys, and later the Egyptians (globe of frogs)?
+Robyn hitchcock
+10
+
+Music: Leavin', on a southern train...?
+Interstate love song
+10
+
+Music: Legs - Sharped Dressed Man - Rough Boy?
+Zz top
+10
+
+Music: Lenny Kravitz song recorded by Madonna?
+Justify my love
+10
+
+Music: Leonard Bernstein wrote the score to this Romeo & Juliet retelling?
+West side story
+10
+
+Music: Lester Bowie, Joseph Jarman, Malachi Favors, Roscoe Mitchell?
+The art ensemble of chicago
+10
+
+Music: Lewis, Jackson, Heath and Kay?
+Modern jazz quartet
+10
+
+Music: Like A Prayer?
+Madonna
+10
+
+Music: Like Sunday morning...?
+Easy
+10
+
+Music: Lionel Richie and ____ went to No.1 with 'Endless Love' in 1981
+Diana Ross
+10
+
+Music: Lipps Inc: El pueblo mas funky?
+Funkytown
+10
+
+Music: Lipps, Inc's only hit was covered by Pseudo Echo eight years later?
+Funkytown
+10
+
+Music: Lisssssspy sounding girl that Phil Collins sang about in 1985?
+Sussudio
+10
+
+Music: Listen To Your Heart?
+Roxette
+10
+
+Music: Little Anthony & the ____
+Imperials
+10
+
+Music: Little Richard's final top 40 hit before going into gospel music?
+Oh my soul
+10
+
+Music: Live and let die is a song by which artist?
+Paul McCartney
+10
+
+Music: Living In Sin - Bon ____
+Jovi
+10
+
+Music: Liz Frazier contributes vocals on which FSOL single?
+Lifeforms
+10
+
+Music: Long tubular Australian Aboriginal musical instrument?
+Didgeridoo
+10
+
+Music: Long-tongued member of Kiss?
+Gene simmons
+10
+
+Music: Lonnie Donnegan asked his listeners this strange question?
+Does your chewing gum lose its flavor on the bedpost overnight
+10
+
+Music: Loose Lucy is my...?
+Delight
+10
+
+Music: Lost In Your ____- Debbie Gibson
+Eyes
+10
+
+Music: Love ____- The B-52's
+Shack
+10
+
+Music: Love In An Elevator?
+Aerosmith
+10
+
+Music: Love Song - The ____
+Cure
+10
+
+Music: Ludwig von Beethoven (1770-1827) bridges the Classical and Romantic periods of music. In his 9th Symphony, he makes musical history with his use of?
+Chorus and soloists
+10
+
+Music: Lulu sent her son to which school attended by Princes William and Harry?
+Eton
+10
+
+Music: Lyricist of west Side Story?
+Sondheim
+10
+
+Music: Lyrics - I believe the sun should never set upon an argument (group + title)?
+Savage Garden,Affirmation
+10
+
+Music: Lyrics: 'and he's bad bad ____ ____ (jim croce)
+Leroy brown
+10
+
+Music: Lyrics: 'I am woman, ____ ____ ____ (helen reddy)
+Hear me roar
+10
+
+Music: Lyrics: 'I feel the ____ ____ under my feet (carole king)
+Earth move
+10
+
+Music: Lyrics: 'On a dark desert highway, cool wind in my hair, warm smell of ____ (eagles)
+Colitas
+10
+
+Music: Lyrics: 'Ooh baby, baby it's a ____ (cat stevens)
+Wild world
+10
+
+Music: Lyrics: 'Well, she was just ____ (the beatles)
+Seventeen
+10
+
+Music: Lyrics: It shakes all over like a jelly fish, i kinda like it, crazy ____ ____ ____ ____ (queen)
+Little thing called love
+10
+
+Music: Lyrics: Name the band that sang ?When you feel all alone and the world has turned its back on you?
+Savage Garden
+10
+
+Music: Lyrics: Name the track where Elton John said ?Ever since I was a young boy I played the silver ball?
+Pinball Wizard
+10
+
+Music: Lyrics: Name the track where Elton John said ?Goodbye Norma Jean, though I never knew you at all?
+Candle in the wind
+10
+
+Music: Lyrics: Name the track where Elton John said ?Hey kids,shake it loose together?
+Bennie and the jets
+10
+
+Music: Lyrics: Name the track where Elton John said ?I remember when rock was young?
+Crocodile rock
+10
+
+Music: Lyrics: Name the track where Elton John said ?I used to be a rolling stone?
+Philadelphia Freedom
+10
+
+Music: Lyrics: Name the track where Elton John said ?Picture yourself in a boat on the river,with tangerine trees and marmalade skies?
+Lucy in the sky with Diamonds
+10
+
+Music: Lyrics: Name the track where Elton John said ?What do I have to do to make you love me?
+?½Sorry seems to be the hardest word
+10
+
+Music: Lyrics: Name the track where Elton John said ?When are you gonna come down??
+Goodbye yellow brick road
+10
+
+Music: Lyrics: Name the track where Shania Twain said ?Get a life - get a grip?
+Come on over
+10
+
+Music: Lyrics: Name the track where Shania Twain said ?I'm going out tonight- i'm feelin alright gonna let it all hang out?
+Man! I feel like a woman
+10
+
+Music: Made In Canada: The Canadian counterpart of MTV?
+Muchmusic
+10
+
+Music: Made In Canada: The lead vocalist/guitarist for Haze?
+Marc albert
+10
+
+Music: Major guitar manufacturer (SG, 120, Les Paul, etc.)?
+Gibson
+10
+
+Music: Make Me Lose Control - Eric ____
+Carmen
+10
+
+Music: Malcolm & Angus Young are members of this famous Australian group?
+AC/DC
+10
+
+Music: Male Vocalists: Eric Clapton's 1973 comeback concert was staged at this London venue?
+Rainbow theatre
+10
+
+Music: Male Vocalists: He left Fleetwood Mac in 1987?
+Lindsey buckingham
+10
+
+Music: Male Vocalists: He won the 1972 Lifetime Grammy Award?
+Louis armstrong
+10
+
+Music: Male Vocalists: His wife Claudette was killed in 1966, his sons died in a fire two years later?
+Roy orbison
+10
+
+Music: Male Vocalists: Lead singer of the Drifters, he went solo to gain greater fame?
+Ben e. king
+10
+
+Music: Male Vocalists: Ray Charles was not blind from birth, but rather due to this disease?
+Glaucoma
+10
+
+Music: Male Vocalists: Stevie Ray Vaughan played back up on this Bowie song?
+Lets dance/china girl
+10
+
+Music: Male Vocalists: Stonewall Jackson, descendant of Stonewall Jackson, hit #4 with this song?
+Waterloo
+10
+
+Music: Male Vocalists: These days, this rapper is 6th in the world in the sport of speedboat racing?
+Vanilla ice
+10
+
+Music: Male Vocalists: This song was Elvis Costello's ode to his grandmother?
+Veronica
+10
+
+Music: Manfred Mann's ____
+Earth band
+10
+
+Music: Manhattan Skyline and Open Sesame were on which album?
+Saturday Night Fever
+10
+
+Music: Manner of death for Stevie Ray Vaughn?
+Plane crash
+10
+
+Music: McCartney achieved his biggest ballad with this song released on the album Help in 1965?
+Yesterday
+10
+
+Music: MDMA & Extasy refer to one type of?
+Drug
+10
+
+Music: Medieval instrument bearing some resemblance to a mandolin?
+Lute
+10
+
+Music: Melanie's million-seller came after breaking a vegetarian diet at McDonalds?
+Brand new key
+10
+
+Music: Melissa Etheridge: Melissa is from this KS city on the MO border (famous for another reason)?
+Leavenworth
+10
+
+Music: Melissa Etheridge: Melissa's first four albums were released on this record label?
+Island
+10
+
+Music: Mercedes Boy?
+Pebbles
+10
+
+Music: Metallica: from Justice, it intros with war sounds?
+One
+10
+
+Music: Metallica: Metallica's song about the Jews in Egypt?
+Creeping death
+10
+
+Music: Metallica: Metallica's song that some ignorant people believe promotes suicide?
+Fade to black
+10
+
+Music: Metallica: Name of Metallica's drummer?
+Lars ulrich
+10
+
+Music: Metallica: What was Metallica's first LP with Jason Newsted as their bassist?
+And justice for all
+10
+
+Music: Metallica: What was Metallica's second LP called?
+Ride the lightning
+10
+
+Music: Michael di Lorenzo was one of the lead dancers on which Michael Jackson video?
+Beat It
+10
+
+Music: Michael Jackson sang 'Ben' in what year?
+1972
+10
+
+Music: Michael Jackson: Name of Michael Jacksons 2 children by his wife Debbie?
+Prince and Paris
+10
+
+Music: Michael Jackson: Name of Michael Jacksons Southern California ranch?
+Neverland
+10
+
+Music: Michael Jackson: name of Michael Jacksons wife by whom he had 2 children?
+Debbie Rowe
+10
+
+Music: Michael learns to rock has never seen such a lovely queen & says you should ____
+Paint my love
+10
+
+Music: Michael learns to rock, has never seen such a lovely queen, and says you should ____
+Paint my love
+10
+
+Music: Michelle and Julia are songs by which group?
+The beatles
+10
+
+Music: Mick Jones was fired from this punk rock group & went on to form Big Audio Dynamite?
+The clash
+10
+
+Music: Mick jones was fired from which punk rock group and went on to form big audio dynamite?
+Clash
+10
+
+Music: Mick Jones' co-leader in the Clash?
+Joe strummer
+10
+
+Music: Mickey Dolenz was in which 60s sensation group?
+The Monkees
+10
+
+Music: Midnight Oil: Before the Oils became successful Peter Garrett did this for a living?
+Lawyer
+10
+
+Music: Midnight Oil: Bones Hillman plays this instrument?
+Bass
+10
+
+Music: Midnight Oil: Name of the drummer?
+Rob hirst
+10
+
+Music: Midnight Oil: This member of Midnight Oil is well known for his unique dancing style?
+Peter garrett
+10
+
+Music: Mike D., MCA, and AdRock are better known as?
+Beastie boys
+10
+
+Music: Miles Davis: Although he wanted to, Miles never recorded with this rock guitar legend?
+Jimi hendrix
+10
+
+Music: Miles Davis: Gil Evans collaborated with Miles on a rendition of this Gershwin musical?
+Porgy & bess
+10
+
+Music: Miles Davis: Miles feuded with this legendary pianist at the famous 12/24/54 session?
+Thelonious monk
+10
+
+Music: Miles Davis: Miles openly discredited this early 60's Ornette Coleman-led jazz style?
+Free jazz
+10
+
+Music: Miles Davis: One of the last two albums Miles recorded before going on hiatus in 1975?
+Agartha or pangaea
+10
+
+Music: Minstrel in the gallery (1975) was recorded by?
+Jethro tull
+10
+
+Music: Miss You ____- Janet Jackson
+Much
+10
+
+Music: Miss You Like Crazy - ____Cole
+Natalie
+10
+
+Music: Mode in the following scale: defgabcd?
+Dorian
+10
+
+Music: Money For Nothing was an 80s NO 1 for which band?
+Dire Straits
+10
+
+Music: Monkey - ____Michael
+George
+10
+
+Music: Monty Python: But many times we're given rhymes that are quite unsingable...?
+Knights of the round table
+10
+
+Music: Monty Python: From the tiniest little tadger, to the world's biggest prick?
+The penis song
+10
+
+Music: Monty Python: He led the Ironside cavelry at Marston Moon in sixteen forty four?
+Oliver cromwell
+10
+
+Music: Monty Python: He likes traffic lights, but only when they're green?
+I like traffic lights
+10
+
+Music: Monty Python: He was not in the least bit scared to be mashed into a pulp?
+Brave sir robin
+10
+
+Music: Monty Python: I'm not disparaging the blueberry pie/but rhubarb tart is very nice?
+Rhubarb tart
+10
+
+Music: Monty Python: Inflammation of my foreskin reminds me of your smile...?
+A medical love song
+10
+
+Music: Monty Python: The knights of Camelot eat ham & jam & this alot?
+Spam
+10
+
+Music: Monty Python: The Sound of Music twice an hour, and Jaws I II and III!?
+Christmas in heaven
+10
+
+Music: Monty Python: There is nothing like a newly minted pound?
+Money song
+10
+
+Music: Monty Python: With your funny clothes and your squishy nose...?
+The henry kissinger song
+10
+
+Music: Monty Python: You're so near to Russia, so far from Japan...?
+The finland song
+10
+
+Music: Moody Blues: A recent song asks you to not blame these for the rain?
+Rainbows
+10
+
+Music: Moody Blues: Album containing Tuesday Afternoon and Nights In White Satin?
+Days of future passed
+10
+
+Music: Moody Blues: Name of the Moodies' live album?
+A night at red rocks
+10
+
+Music: Moody Blues: Song sandwiched between parts 1 & 2 of House Of 4 Doors on the Lost Chord album?
+Legend of a mind
+10
+
+Music: Moody Blues: The Moodies' 1991 album, featuring Say It With Love and Bless the Wings?
+Keys of the kingdom
+10
+
+Music: Moody Blues: The Moodies' flutist?
+Ray thomas
+10
+
+Music: Moody Blues: The Moodies' original lead singer was this future member of Wings?
+Denny laine
+10
+
+Music: Moody Blues: This album begins spectacularly with I Know You're Out There Somewhere?
+Sur la mer
+10
+
+Music: Moody Blues: Wrote and sang many of the band greatest songs, including Tuesday Afternoon?
+Justin hayward
+10
+
+Music: More than a Feeling - Peace of Mind - Amanda?
+Boston
+10
+
+Music: Morrissey: Morrissey says this hearing device stimulates him?
+Hearing aid
+10
+
+Music: Morrissey: What country is he from?
+England
+10
+
+Music: Morrissey: What country is Morrissey from?
+England
+10
+
+Music: Morrissey: What song did the 10,000 Maniacs do a cover of?
+Everyday is like sunday
+10
+
+Music: Morrissey: What type of witch game does Morrissey sing about?
+Ouija board
+10
+
+Music: Morrissey: What year was he born?
+1959
+10
+
+Music: Musical: in which Jim Dale encouraged people to join the circus?
+Barnum
+10
+
+Music: Musicals: America, Maria, I feel pretty?
+West side story
+10
+
+Music: Musicals: Bernstein musical based on a Voltaire novel?
+Candide
+10
+
+Music: Musicals: Bye bye life, On broadway?
+All that jazz
+10
+
+Music: Musicals: Characters include Christine, Raoul, andre, & Firmin?
+Phantom of the opera
+10
+
+Music: Musicals: Characters include Liesl, Friedrich, Gretl, & Maria?
+Sound of music
+10
+
+Music: Musicals: Characters include Widow Douglas, Pap, the Duke, the King, Jim, and Huck?
+Big river
+10
+
+Music: Musicals: Cockeyed optimist, Happy talk, There is nothin' like a dame?
+South pacific
+10
+
+Music: Musicals: Good morning, Make them laugh, You are my lucky star?
+Singing in the rain
+10
+
+Music: Musicals: Hard candy Christmas, Lil ole bitty pissant country place?
+Best little whorehouse in texas
+10
+
+Music: Musicals: Have yourself a merry little christmas, The boy next door, Trolley song?
+Meet me in st. louis
+10
+
+Music: Musicals: I cain't say no, Out of my dreams, Kansas City?
+Oklahoma
+10
+
+Music: Musicals: I'm glad I'm not young anymore, I remember it well, Thank heaven 4 little girls?
+Gigi
+10
+
+Music: Musicals: Kopit-Yeston musical which was often confused with a Lloyd Webber one?
+Phantom
+10
+
+Music: Musicals: Lusty month of May, If ever I would leave you?
+Camelot
+10
+
+Music: Musicals: Memory, Skimbleshanks, The Jellicle Ball?
+Cats
+10
+
+Music: Musicals: Morning Glow, With You, Corner of the Sky?
+Pippin
+10
+
+Music: Musicals: New York New York, A day in New York, I feel like I'm not out of bed yet?
+On the town
+10
+
+Music: Musicals: Sabbath prayer, Sunrise sunset, If I were a rich man?
+Fiddler on the roof
+10
+
+Music: Musicals: Step in time, Spoonful of sugar, chim chim cheree?
+Mary poppins
+10
+
+Music: Musicals: The man that got away, It's a new world, Born in a trunk?
+A star is born
+10
+
+Music: Musicals: This is the Moment, A New Life, Once Upon a Dream?
+Jekyll hyde
+10
+
+Music: Musicals: When you wish upon a star?
+Pinocchio
+10
+
+Music: Musicals: White Christmas?
+Holiday inn
+10
+
+Music: Musicals: Zip-a-dee-doo-dah?
+Song of the south
+10
+
+Music: My ____- Bobby Brown
+Prerogative
+10
+
+Music: My ____Can't Tell You No - Rod Stewart
+Heart
+10
+
+Music: My Boyfriend's Back, by this group, was inspired by overhearing a teen argument?
+Angels
+10
+
+Music: My love, there's only you in my life?
+Endless love
+10
+
+Music: Name 1 of 2 Iron Maiden songs with the same names as Robert Heinlein novels?
+The number of the beast
+10
+
+Music: name a three-stringed Russian instrument with a triangular body?
+Balalaika
+10
+
+Music: Name Ladysmith Black Mambazo's chart-topping album of 1986?
+Graceland
+10
+
+Music: Name of David Bowies album released June 2002?
+Heathen
+10
+
+Music: Name of Die Krupps' album of Metallica remixes?
+A tribute to metallica
+10
+
+Music: Name of Elvis Costello's back-up group?
+The attractions
+10
+
+Music: Name of girl in Looking Glass hit, shares her name with a type of alcohol?
+Brandy
+10
+
+Music: Name of Hole's first LP?
+Pretty on the inside
+10
+
+Music: Name of Stings wife?
+Trudie styler
+10
+
+Music: Name of Sweet's only number one hit?
+Blockbuster
+10
+
+Music: Name of the bass tuba that wraps around the players body?
+Sousaphone
+10
+
+Music: Name of the blonde female member of ABBA?
+Agnetha Faltskog
+10
+
+Music: Name of the Gibb brothers?
+Maurice,Robin,Barry,Andy
+10
+
+Music: Name of Wet wet wets front man?
+Marti pellow
+10
+
+Music: Name Origins: This group got its name from the lead singer's astrological symbols?
+Earth wind & fire
+10
+
+Music: Name Origins: This group got its name when it had to extend its original name, The Bangs?
+Bangles
+10
+
+Music: Name Origins: This group got its name when they started backing Ike Turner?
+Ikettes
+10
+
+Music: Name Origins: This group named itself after their gym teacher, Leonard Skinner?
+Lynyrd skynyrd
+10
+
+Music: Name Origins: This group was named for its lead singer's red hair?
+Simply red
+10
+
+Music: Name Origins: This group's name is German for power station?
+Kraftwerk
+10
+
+Music: Name Origins: This group's name is Italian for positive energy?
+Milli vanilli
+10
+
+Music: Name Origins: This groups name is Italian for political writing?
+Scritti politti
+10
+
+Music: Name Origins: This singer got his name because he wore a black and yellow jersey so often?
+Sting
+10
+
+Music: Name Origins: This singer's name is a take-off of Fats Domino. (Full Name)?
+Chubby checker
+10
+
+Music: Name the Artist/Band: Holding back the years was a hit for which Manchester band?
+Simply red
+10
+
+Music: Name the artist/band:: Michael Anthony, Sammy Hagar, etc...?
+Van halen
+10
+
+Music: Name the Australian pop show from the seventies & early eighties hosted by Ian Meldrum?
+Countdown
+10
+
+Music: Name the band that Juliana Hatfield was in before The Juliana Hatfield Three?
+Blake babies
+10
+
+Music: Name the Canadian country/pop star?
+Shania Twain
+10
+
+Music: Name the Chipmunks (alphabetically)?
+Alvin simon theodore
+10
+
+Music: Name the city where Nick Cave resides these days (1994)?
+Sao paolo
+10
+
+Music: Name The Composer: Central Park at Night?
+Charles ives
+10
+
+Music: Name The Composer: Symphony No. 9: An die Freude?
+Ludwig van beethoven
+10
+
+Music: name the duet of which one member crashed near dead man's curve?
+Jan
+10
+
+Music: name the English drummer for the rolling stones?
+Charlie watts
+10
+
+Music: Name the first band signed to Beastie Boys' 'Grand Royal' record label?
+Luscious jackson
+10
+
+Music: Name the gallery in Liverpool where John Lennon met Yoko Ono?
+Indica
+10
+
+Music: Name the lead guitarist & singer for Dire Straits?
+Mark knopfler
+10
+
+Music: Name the lead singer for Portishead?
+Beth gibbons
+10
+
+Music: name the oldest of the four beatles?
+Ringo starr
+10
+
+Music: Name the original Monkees?
+Mike nesmith
+10
+
+Music: name the radio show launched in 1935 which featured hit records?
+Your hit parade
+10
+
+Music: Name the scale: f, g, a, b, c, d, e, f?
+Lydian
+10
+
+Music: Name the single that Morrissey released on Jan. 95?
+Boxers
+10
+
+Music: Name the song 'No crib for a bed'?
+Away in a manger
+10
+
+Music: Name the Song: Hootie and the blowfish had a top ten hit with which song off their 'cracked rear view' album?
+Hold my hand
+10
+
+Music: Name the subject of the autobiography Daybreak?
+Joan baez
+10
+
+Music: Name the two bands that Jimmy Sommerville sang with?
+Bronski Beat & The Communards
+10
+
+Music: Name the two brothers who are part of UB40?
+Ali and Robin Campbell
+10
+
+Music: Name the two brothers who formed part of Spandau Ballet?
+Gary and Martin Kemp
+10
+
+Music: Name the two live albums The Cure released simultaneously. (_ and _)?
+Show and paris
+10
+
+Music: Name the university attended by both Beatle wives, Linda Eastman McCartney & Yoko Ono Lennon?
+Sarah lawrence
+10
+
+Music: Name the Who's first big hit?
+My generation
+10
+
+Music: Name the year Sheryl crowe was born?
+1962
+10
+
+Music: Name the Year: Altamont concert, Let It Bleed released, Brian dies?
+1972
+10
+
+Music: Name Their Job: Jerome Robbins?
+Choreographer
+10
+
+Music: Name Their Job: Kate Smith?
+Singer
+10
+
+Music: Name Violent Femmes Album: Songs: Hallowed Ground, Never Tell?
+Hallowed ground
+10
+
+Music: Names In Songs: According to Nirvana, who will have her revenge on Seattle?
+Frances farmer
+10
+
+Music: Names In Songs: Billy Joel sings the ballad of what cowboy?
+Billy the kid
+10
+
+Music: Names In Songs: Blues Traveler and Big Head Todd & The Monsters each sing about Brother ____
+John
+10
+
+Music: Names In Songs: In what Pearl Jam video does a student shoot his classmates?
+Jeremy
+10
+
+Music: Names In Songs: What 4-Non Blondes song has the same name as a 70's singer?
+Superfly
+10
+
+Music: Names In Songs: What Beastie Boys song is named after an old patriot?
+Paul revere
+10
+
+Music: Nat king cole died in which year?
+1965
+10
+
+Music: Neil Diamond and this duet partner had a No.1 with 'You Don't Bring Me Flowers'?
+Barbra Streisand
+10
+
+Music: Neneh Cherry's jazz musician father (full name!)?
+Don cherry
+10
+
+Music: Never Tear Us Apart?
+INXS
+10
+
+Music: New ____- INXS
+Sensation
+10
+
+Music: New age pianist named many albums after seasons or months?
+George winston
+10
+
+Music: New age Swedish Harp monster?
+Andreas vollenweider
+10
+
+Music: New Order wrote this song, later Frente did a remake?
+Bizarre love triangle
+10
+
+Music: Nick Lowe and Dave Edmunds were the core of this pop group?
+Rockpile
+10
+
+Music: Night Ranger hit from a movie with the same title?
+The secret of my success
+10
+
+Music: Nina post and louise gordon of which group released 'seether' off 'American thighs' in 1994?
+Veruca salt
+10
+
+Music: Nine Inch Nails: CD released only for a short time in the US. Now you can buy the import?
+Fixed
+10
+
+Music: Nine Inch Nails: He was the producer for the soundtrack of this movie?
+Natural born killers
+10
+
+Music: Nine Inch Nails: In what PA town did Trent Reznor grow up?
+Mercer
+10
+
+Music: Nine Inch Nails: NIN toured this town on July 29, & July 30 1994?
+Atlanta ga
+10
+
+Music: Nine Inch Nails: Queen song NIN covers?
+Get down make love
+10
+
+Music: Nine Inch Nails: Reznor signed this label, Now he hates them?
+Tvt records
+10
+
+Music: Nine Inch Nails: What was NIN?s first single?
+Down in it
+10
+
+Music: Nino Temp sang, and April Stevens talked on this 1964 hit?
+Deep purple
+10
+
+Music: Nirvana: Chris Novoselic changed his first name to this?
+Krist
+10
+
+Music: Nirvana: Dave Grohl formed this band after Nirvana?
+Foo fighters
+10
+
+Music: Nirvana: In what city did Kurt Cobain lapse into a coma?
+Rome
+10
+
+Music: Nirvana: Kurt Cobain was born in this small Washington town?
+Aberdeen
+10
+
+Music: Nirvana: Song: Tori Amos did a cover of this Nirvana song?
+Smells like teen spirit
+10
+
+Music: Nirvana: The band was formed in this city?
+Seattle
+10
+
+Music: Nirvana: Their first album?
+Bleach
+10
+
+Music: Nirvana: Was the lead singer of Nirvana?
+Kurt cobain
+10
+
+Music: Nirvana's first album was called?
+Bleach
+10
+
+Music: Nirvana's first album?
+Bleach
+10
+
+Music: Nobody's ____- Kenny Loggins
+Fool
+10
+
+Music: Not coincidentally, his initials (TV) match the group he formed?
+Tom verlaine
+10
+
+Music: Note half a semi breve?
+Minim
+10
+
+Music: Nothin' But A Good Time?
+Poison
+10
+
+Music: Now excuse me, for example, I'm the inspiration of a whole generation?
+Slam
+10
+
+Music: Number of albums Boston currently has?
+Four
+10
+
+Music: Number of Elvis songs that hit #1?
+Eighteen
+10
+
+Music: Number of Halos, or official releases, by Nine Inch Nails (1995)?
+Nine
+10
+
+Music: Number of weeks My Sharona spent at #1 in 1979?
+6
+10
+
+Music: Occasional actor, & auteur of Nighthawks at the Diner & Big Time?
+Tom waits
+10
+
+Music: Of late he's done some Taco Bell commercials: Good Golly!?
+Little richard
+10
+
+Music: Of what group is Mark Miller the lead singer?
+Sawyer brown
+10
+
+Music: Of what were 500 million printed with Elvis Presley on the face?
+Stamps
+10
+
+Music: Offspring's 11th track on Smash?
+What happened to you
+10
+
+Music: Oh she walks slowly across a young man's room...?
+Alive
+10
+
+Music: Oh, life, it's bigger, it's bigger than you and you are not me?
+Losing my religion
+10
+
+Music: Oldest person to hit #1 on the singles chart?
+Louis armstrong
+10
+
+Music: Olivia Newton-John and ____ had a No.1 hit with 'You're The One I Want' in 1978
+John Travolta
+10
+
+Music: OMD stands for this...?
+Orchestral manoeuvres in the dark
+10
+
+Music: On Our Own - ____Brown
+Bobby
+10
+
+Music: On their first studio release in seven years, who released the album 'In The Dark'?
+Grateful dead
+10
+
+Music: On what date did Elton John first sing his biggest-selling single in public?
+September 6th, 1997
+10
+
+Music: On what Dire Straits album was the track Money for Nothing?
+Brothers in arms
+10
+
+Music: On what instrument would you find stops & pedals?
+Organ
+10
+
+Music: on what street is graceland located?
+Elvis presley street
+10
+
+Music: On which Beatles song did George Harrison play a sitar?
+Norwegian wood
+10
+
+Music: On which instrument would you find a gemshorn?
+An organ
+10
+
+Music: On which label does Mariah Carey record?
+Columbia
+10
+
+Music: On which side did Lou Reed walk in 1973?
+Wild
+10
+
+Music: On which Stevie Wonder album did he team up with Michael Jackson to sing Get It?
+Characters
+10
+
+Music: On which TV show did the Rolling Stones make their American debut on June 3rd, 1964?
+The Hollywood Palace
+10
+
+Music: On whose 1989 'trash' release were Aerosmith & Bon Jovi guest performers?
+Alice cooper
+10
+
+Music: Once Bitten Twice Shy - ____White
+Great
+10
+
+Music: Once known as the Hawks, this band backed Dylan for 10 years?
+The band
+10
+
+Music: One Good ____- Peter Cetera
+Woman
+10
+
+Music: One hit wonder Gary Numan hit #9 with this song in 1980?
+Cars
+10
+
+Music: One Hit Wonders: 99 Luftballoons?
+Nina
+10
+
+Music: One Hit Wonders: Brandy, You're a Fine Girl?
+Looking glass
+10
+
+Music: One Hit Wonders: Category: One Hit Wonders 3: Don't Shed A Tear?
+Carrack
+10
+
+Music: One Hit Wonders: English Band who took Falco's Der Komissar to #5 in the US?
+After the fire
+10
+
+Music: One Hit Wonders: Inspired by a classic movie of the same name, it was Bertie Higgins #8 hit?
+Key largo
+10
+
+Music: One Hit Wonders: Love Grows Where My Rosemary Goes?
+Edison lighthouse
+10
+
+Music: One Hit Wonders: Mexican Radio?
+Wall of voodoo
+10
+
+Music: One Hit Wonders: Neal Hefti's one hit wonder from 1966; a TV theme which had only two words?
+The batman theme
+10
+
+Music: One Hit Wonders: Pump Up the Volume?
+Marrs
+10
+
+Music: One Hit Wonders: Puttin' On The Ritz (1983)?
+Taco
+10
+
+Music: One Hit Wonders: She Blinded Me With Science?
+Dolby
+10
+
+Music: One Hit Wonders: She's Like The Wind?
+Swayze
+10
+
+Music: One Hit Wonders: Somkin' in the Boy's Room (1974)?
+Brownsville station
+10
+
+Music: One Hit Wonders: Take a Letter Maria?
+Rb greaves
+10
+
+Music: One Hit Wonders: The Book of Love?
+Monotones
+10
+
+Music: One Hit Wonders: This annoying rap song that got played to death in 1988 was by LA duo?
+Supersonic
+10
+
+Music: One Moment In Time - ____Houston
+Whitney
+10
+
+Music: One of Eve's favorite genres, SKA, originated in this country?
+Jamaica
+10
+
+Music: One of the original Depeche Mode members is now in Erasure?
+Vince clarke
+10
+
+Music: One of the two most important members of Steely Dan?
+Walter becker
+10
+
+Music: Only number 1 hit of the Tornadoes?
+Telstar
+10
+
+Music: Opening song of Creedence Clearwater Revival's Chronicle (1)?
+Suzy q
+10
+
+Music: Opera by Prokofiev adapted from a play by Gozzi first performed in Chicago in 1921?
+Love for three oranges
+10
+
+Music: Operatta with songs: Summertime, A Woman;s a Something, I Got Plenty of Nuttin'?
+Porgy & bess
+10
+
+Music: Ornette Coleman's theory of improvisation is called what?
+Harmolodics
+10
+
+Music: Osmond's February 13, 1971 hit?
+One bad apple
+10
+
+Music: other than 'she loves you', in which other beatles number one hit can you hear the words 'she loves you, yeah, yeah, yeah?
+All you need is love
+10
+
+Music: Out Of The Blue - ____Gibson
+Debbie
+10
+
+Music: Ozzy Osbourne went to court for this song that supposedly prompted suicide?
+Suicide solution
+10
+
+Music: Painter of most of Joni Mitchell's album covers?
+Joni Mitchell
+10
+
+Music: Paradise City - ____N' Roses
+Guns
+10
+
+Music: Parenthetical title: (To the other side) ____provide the title
+Break on through
+10
+
+Music: Parenthetical Titles: (After live aid)?
+The tide is turning
+10
+
+Music: Parenthetical Titles: (Are made of this)?
+Sweet dreams
+10
+
+Music: Parenthetical Titles: (Bad Girls Go Everywhere)?
+Good girls go to heaven
+10
+
+Music: Parenthetical Titles: (But She Can Rock And Roll)?
+Your sister cant twist
+10
+
+Music: Parenthetical Titles: (Everybody Dance Now)?
+Gonna make you sweat
+10
+
+Music: Parenthetical Titles: (Exordium and Terminus)?
+In the year 2525
+10
+
+Music: Parenthetical Titles: (Forever Afternoon)?
+Tuesday afternoon
+10
+
+Music: Parenthetical Titles: (go to him)?
+Anna
+10
+
+Music: Parenthetical Titles: (Have You Seen My Wife, Mr. Jones)?
+New york mining disaster 1941
+10
+
+Music: Parenthetical Titles: (I can't get no)?
+Satisfaction
+10
+
+Music: Parenthetical Titles: (I only want to say)?
+Gethsemane
+10
+
+Music: Parenthetical Titles: (I'll love you) [Nick Cave and the Bad Seeds]?
+Till the end of the world
+10
+
+Music: Parenthetical Titles: (light my way)?
+Ultra violet
+10
+
+Music: Parenthetical Titles: (No More Love On The Run)?
+Caribbean queen
+10
+
+Music: Parenthetical Titles: (Oh What a Night)?
+December 1963
+10
+
+Music: Parenthetical Titles: (sad song)?
+Fa fa fa fa fa
+10
+
+Music: Parenthetical Titles: (She's just a woman)?
+Living loving maid
+10
+
+Music: Parenthetical Titles: (She's so Heavy)?
+I want you
+10
+
+Music: Parenthetical Titles: (song for Elvis)?
+Blue moon revisited
+10
+
+Music: Parenthetical Titles: (That's an Irish Lullaby)?
+Tura lura lura
+10
+
+Music: Parenthetical Titles: (The Magic Dragon)?
+Puff
+10
+
+Music: Parenthetical Titles: (The Wedding Song)?
+An acceptable level of ecstasy
+10
+
+Music: Parenthetical Titles: (You're Coming Back)?
+Tell me
+10
+
+Music: Parenthetical Titles: (You're Never Gonna Get It)?
+My lovin
+10
+
+Music: Parliament's alter ego?
+Funkadelic
+10
+
+Music: Part of body that Roland the Thompson Gunner loses midway in a song?
+Head
+10
+
+Music: Pat Boone is what relation to old-time C&W star Red Foley?
+Son in law
+10
+
+Music: Patience - Guns N' ____
+Roses
+10
+
+Music: Patti LaBelle's duet partner on the song 'On My Own' was____
+Michael McDonald
+10
+
+Music: Paul Anka is from what country?
+Canada
+10
+
+Music: Paul Anka sang with ____ on the No.1 hit 'You're Having My Baby' in 1974
+Odia Coates
+10
+
+Music: Paul McCartney teamed up with ____ and had a No.1 with 'Ebony and Ivory' in 1982
+Stevie Wonder
+10
+
+Music: Paul Stanley & Gene Simmons are founders of this group?
+Kiss
+10
+
+Music: Peabo Bryson and ____ had a No.1 hit in 1993 with 'A Whole New World'
+Regina Belle
+10
+
+Music: Pearl Jam before Eddie Vedder?
+Mother love bone
+10
+
+Music: pearl jam redid this song first performed by j frank wilson & the cavaliers in 1965?
+Last kiss
+10
+
+Music: Pearl Jam: ...Shut your mouth! Hey, I'm just talkin about...?
+Dirty frank
+10
+
+Music: Pearl Jam: ...thoughts arrive like butterflies...Oh, he don't know, so he chases them away?
+Even flow
+10
+
+Music: Pearl Jam: Album: Name of Pearl Jam's second album?
+Versus
+10
+
+Music: Pearl Jam: Album: Name of the Pearl Jam album with a llama/sheep on the cover?
+Vs
+10
+
+Music: Pearl Jam: Caught a bolt of lightning...cursed the day he let go?
+Nothingman
+10
+
+Music: Pearl Jam: Hearts & thoughts they fade, fade away?
+Elderly woman behind the counter in a small town
+10
+
+Music: Pearl Jam: I took a drive today...Time to amncipate?
+Rearview mirrow
+10
+
+Music: Pearl Jam: I took a drive today...Time to anticipate?
+Rearview mirror
+10
+
+Music: Pearl Jam: Life ain't what its worth...a brain & a s...oh, read the door?
+Breath
+10
+
+Music: Pearl Jam: Like Muhammed hits the truth. Can't escape from the common rule?
+Not for you
+10
+
+Music: Pearl Jam: This is, this is... this is, this is... this is, this is... my?
+Last exit
+10
+
+Music: Pearl Jam: Winded is the sailor?
+Tremor christ
+10
+
+Music: Peer Gynt is the work of which norwegian composer?
+Edvard grieg
+10
+
+Music: Performs: Fall of Rome, Hammerhead, Rip It Up, Reckless (Australian)?
+James reyne
+10
+
+Music: Performs: Right next door to hell, bad apples, don't cry?
+Guns n roses
+10
+
+Music: Pete Townshends suggestion in a popular song of his (hint: lmlotd)?
+Let my love open the door
+10
+
+Music: Peter Gabriel song in which a major part of the anatomy is mentioned?
+In your eyes
+10
+
+Music: Peter Gabriel's ode to his penis, & to sex in general?
+Sledgehammer
+10
+
+Music: Peter Gabriel's world music recording label?
+Real world
+10
+
+Music: Phil Lynott of Thin Lizzy hailed form which country?
+Ireland
+10
+
+Music: Pianist with the Modern Jazz quartet?
+John lewis
+10
+
+Music: Piano In The Dark - Brenda ____
+Russell
+10
+
+Music: Piano's clown prince, he entered the world as Borge Rosenbaum?
+Victor borge
+10
+
+Music: Pink ____- Natalie Cole
+Cadillac
+10
+
+Music: Pink Floyd song detailing the recording industry's courtship of them?
+Have a cigar
+10
+
+Music: Pink Floyd song which features Stephen Hawking's digitized voice?
+Keep talking
+10
+
+Music: Pink Floyd: Besides drums, what else does Nick Mason collect?
+Cars
+10
+
+Music: Pink Floyd: Complete the Lyric: I have become ____ ____
+Comfortably numb
+10
+
+Music: Pink Floyd: David Gilmour's solo albums were self titled and this name?
+About face
+10
+
+Music: Pink Floyd: The 3 main animals in the album Animals were dogs, pigs & what?
+Sheep
+10
+
+Music: Pink Floyd: This farmyard animal is closley associated with Pink Floyd?
+Pig
+10
+
+Music: Pink Floyd: This is the un-official newsletter of Pink Floyd?
+The amazing pudding
+10
+
+Music: Pink Floyd: This song on has two versions on The Wall, separated only by puctuation?
+In the flesh
+10
+
+Music: Pink Floyd: Tiempo (freebie ;)?
+Time
+10
+
+Music: Pink Floyd: What is the name of the blues singing dog in the album Meddle?
+Seamus
+10
+
+Music: Pink Floyd: Which popular WWII British singer is mentioned in ^The Wall^?
+Vera lynn
+10
+
+Music: Pink Floyd: Which sci-fi author gave the title to PFs last album - The Division Bell?
+Douglas adams
+10
+
+Music: Played loud enough, this Clash triple album woke the whole neighborhood?
+Sandinista
+10
+
+Music: Please come to ____ ____ ____ ____ (ramblin boy)
+Boston for the winter
+10
+
+Music: Popstop says Chris Isaak has 2 albums, but he really has this many out?
+Four
+10
+
+Music: Popular Gershwin composition, beginning with a long wail?
+Rhapsody in blue
+10
+
+Music: Prez?
+Lester young
+10
+
+Music: Pride, Type, Ology?
+Times up
+10
+
+Music: Prince: Lluvia violeta?
+Purple rain
+10
+
+Music: Prince: Mil novecientos noventa y nueve?
+1999
+10
+
+Music: Prince: Said that he was going to party in this year?
+1999
+10
+
+Music: Probably the first ska band. Led by Tommy McCook, they once backed Marley?
+Skatalites
+10
+
+Music: Promises, Promises - ____Eyes
+Naked
+10
+
+Music: Prove Your Love - Taylor ____
+Dayne
+10
+
+Music: Pussycat sings 'I'll be waiting there for you & i'll show you where young lovers go on a sunny afternoon'. Where is 'there'?
+Amsterdam
+10
+
+Music: Pussycat sings 'now the country song forever lost its soul, when the guitar player turned to rock n roll ____' what's the song title
+Mississippi
+10
+
+Music: R.E.M. cut the No 1 album Out Of what?
+Time
+10
+
+Music: Randy Travis said his love was 'deeper than the ____'
+Holler
+10
+
+Music: Rap group 2 Live Crew tells it their way & gets banned in?
+Florida
+10
+
+Music: Rapid movement from one note to a non-adjacent note is what?
+Tremolo
+10
+
+Music: Rapper who hosted and performed at the 1st Lollapalooza?
+Ice t
+10
+
+Music: Raves are typically held at this time?
+Night
+10
+
+Music: ray charles plays piano & what other instrument?
+Saxophone
+10
+
+Music: ray charles went blind at what age?
+Six years old
+10
+
+Music: Ray Charles, Dion, and Kenny Rogers all sang about this woman?
+Ruby
+10
+
+Music: Real last name of Madonna?
+Ciccone
+10
+
+Music: Real Love - ____Watley
+Jody
+10
+
+Music: Real Name of Vanilla Ice?
+Robert vanwinkle
+10
+
+Music: records made to play at what speed were not manufactured after 1958?
+78 rpm
+10
+
+Music: Right Here Waiting - ____ Marx
+Richard
+10
+
+Music: Ringo's first hit after the break up was...?
+It dont come easy
+10
+
+Music: Rita Marley, Marcia Griffiths & Judy Mowatt comprise what vocal group?
+The i-threes
+10
+
+Music: Robert Plant was lead singer with which group founded in 1968?
+Led Zepplin
+10
+
+Music: Robert Smitch from The Cure was occasionally the drummer for what band?
+Siouxsie and the Banshees
+10
+
+Music: Rock fans are all ears for the doobie brothers' first top 20 hit?
+Listen to the music
+10
+
+Music: Rock On - ____Damian
+Michael
+10
+
+Music: Rock opera made into a broadway musical?
+Tommy
+10
+
+Music: Rock star had big-screen debut in Hard To Hold?
+Springfield
+10
+
+Music: Rod Stewart's first #1 was about this woman?
+Maggie may
+10
+
+Music: Rolling Stones petition (with questionable grammar)?
+Gimme shelter
+10
+
+Music: Rolling Stones petition with questionable grammar?
+Gimme shelter
+10
+
+Music: Rolling Stones song & Whoopie Goldberg Movie?
+Jumpin jack flash
+10
+
+Music: Rolling Stones song from 1971; they couldn't drag them away?
+Wild horses
+10
+
+Music: Rolling Stones song which Rev. Jesse Jackson objected to?
+Some girls
+10
+
+Music: Roni - ____Brown
+Bobby
+10
+
+Music: Ross Perot's 1992 campaign theme song?
+Crazy
+10
+
+Music: Rumor has it that MTV still shows these things on occasion?
+Music videos
+10
+
+Music: Rush comes from this country?
+Canada
+10
+
+Music: Rush made this Coleridge poem into a musical epic in the mid-70s?
+Xanadu
+10
+
+Music: Rush: Name the 2 compilation albums Rush has released, chronologically?
+Archives and chronicles
+10
+
+Music: Rush: Name the 3 band members, last name only, in alphabetical order. =)?
+Lee lifeson peart
+10
+
+Music: Rush: On which album cover would you find a person sitting in a chair on a beach?
+A farewell to kings
+10
+
+Music: Rush: On which album cover would you find dice?
+Roll the bones
+10
+
+Music: Rush: The members of Rush are from what country?
+Canada
+10
+
+Music: Rush: The video for this song featured a cyborg trying to rebel?
+The body electric
+10
+
+Music: Rush: What is the first song on Rush's 'Presto' album?
+Show dont tell
+10
+
+Music: Rush: What is the name of Rush's first live album?
+All the worlds a stage
+10
+
+Music: Rush: What Rush album included the concert sing-a-long Closer To The Heart?
+A farewell to kings
+10
+
+Music: S&G's solution to crossing troubled waters (#1 on 2/28/70)?
+Bridge
+10
+
+Music: Sammy Davis, Jr.'s only #1 hit?
+Candy man
+10
+
+Music: Satisfied - Richard ____
+Marx
+10
+
+Music: Savage Garden took 13 nominations and 10 wins at which awards?
+ARIA awards
+10
+
+Music: Say You Will?
+Foreigner
+10
+
+Music: seals & ____
+Crofts
+10
+
+Music: Second ____- Thirty Eight Special
+Chance
+10
+
+Music: Secret ____- Karyn White
+Rendezvous
+10
+
+Music: See the world as it used to be...?
+Surprise! youre dead!
+10
+
+Music: Shall stand and face the hounds of hell and rot inside a corpse's shell?
+Thriller
+10
+
+Music: Shane Lynch of Boyzone has twin sisters in which pop group?
+B'witched
+10
+
+Music: shania twain's name is of American indian origin, what does shania mean?
+On my way
+10
+
+Music: shania twain's real first name is what?
+Ilean
+10
+
+Music: Shattered Dreams - Johnny ____Jazz
+Hates
+10
+
+Music: She Drives Me Crazy - Fine ____Cannibals
+Young
+10
+
+Music: She revived a dolly parton song for a movie and had a big hit?
+Whitney houston
+10
+
+Music: She Wants To Dance With Me - Rick ____
+Astley
+10
+
+Music: She was married to both George Harrison & Eric Clapton.(not at the same time)?
+Patricia boyd
+10
+
+Music: She was the former lead singer of The Eurythmics?
+Annie lennox
+10
+
+Music: She's Like The Wind - ____Swayze/Wendy Fraser
+Patrick
+10
+
+Music: Sheb Wooley sang about this creature?
+Purple people Eater
+10
+
+Music: Sheep on Drugs has this many minutes of fame?
+15
+10
+
+Music: Shirley bassey recorded a hit song taken from the sound of music, what was it?
+Climb every mountain
+10
+
+Music: Shirley Manson is lead vocalist with which band?
+Garbage
+10
+
+Music: Shostakovichs seventh symphony is named after which besieged Soviet city?
+Leningrad
+10
+
+Music: Sid Vicious OD'd in this NYC hotel?
+The chelsea hotel
+10
+
+Music: Side project with 3/4 of REM?
+Hindu love gods
+10
+
+Music: Sign Your ____- Terence Trent D'Arby
+Name
+10
+
+Music: simple flat many stringed instrument?
+Zither
+10
+
+Music: Singer Paula ____
+Abdul
+10
+
+Music: Singer who played The Good Witch in The Wiz?
+Lena horne
+10
+
+Music: Siouxie & the ____
+Banshees
+10
+
+Music: Smashing Pumpkins, from the Singles Soundtrack?
+Drown
+10
+
+Music: Smooth ____- Michael Jackson
+Criminal
+10
+
+Music: So Alive - ____And Rockets
+Love
+10
+
+Music: So you lay down on it and you do it some more...?
+Epic
+10
+
+Music: Social Distortion is from this California city?
+Los angeles
+10
+
+Music: Soldier Of Love - ____Osmond
+Donny
+10
+
+Music: Some stores would not stock his Lovesexy LP as he appears nude on the cover?
+Prince
+10
+
+Music: Song in which John Lennon claimed to have been the Walrus?
+God
+10
+
+Music: Song in which John Lennon claims Paul was the Walrus?
+Glass onion
+10
+
+Music: Song: ____ love songs (wings)
+Silly
+10
+
+Music: Song: ____ queen (abba)
+Dancing
+10
+
+Music: Song: ____ rock (daddy cool)
+Eagle
+10
+
+Music: Song: ____ sunrise (eagles)
+Tequila
+10
+
+Music: Song: (song here) Versprung durch technik (song here) be all that you can be?
+Zooropa
+10
+
+Music: Song: & when i go away, i know my heart can stay with... (Paul McCartney)?
+My love
+10
+
+Music: Song: 1, 2, 3 o'clock, 4 o'clock rock 5, 6, 7 o'clock, 8 o'clock rock... (Bill Haley)?
+Rock around the clock
+10
+
+Music: Song: A church house, gin house, a school house, out house... (Tina Turner)?
+Nutbush city limits
+10
+
+Music: Song: across the north and south to key largo love for sale?
+Smooth operator
+10
+
+Music: Song: Ah well, bless my soul, what's wrong with me... (Elvis Presley)?
+All shook up
+10
+
+Music: Song: ain't got no gal to make you smile?
+Don't worry be happy
+10
+
+Music: Song: all my friends are getting ____ (skyhooks)
+Married
+10
+
+Music: Song: all the cops in the donut shop say way-o way-o?
+Walk like an egyptian
+10
+
+Music: Song: all the doors i closed on time will open up again?
+Back in the high life again
+10
+
+Music: Song: all you sittin' in high places the rain's gonna fall on you?
+All you zombies
+10
+
+Music: Song: Almost heaven, west virginia, blue ridge mountains... (John Denver)?
+Take me home country roads
+10
+
+Music: Song: always spoke my mind with a gun in my hand?
+Ride like the wind
+10
+
+Music: Song: an invisible man sleepin' in your bed...?
+Ghostbusters
+10
+
+Music: Song: and even though i wander i'm keepin you in sight you're a candle in the wind on a cold dark winters night?
+Can't fight this feeling
+10
+
+Music: Song: and i had a feeling i could be someone be someone be someone?
+Fast car
+10
+
+Music: Song: and i remember how we'd play simply waste the day away?
+Our house
+10
+
+Music: Song: and i've never been a loser and i just can't lose tonight?
+Winning it all
+10
+
+Music: Song: and if this world runs out of lovers we'll still have each other?
+Nothing can stop us now
+10
+
+Music: Song: and incidents arose from circumstance?
+Heat of the moment
+10
+
+Music: Song: and it's true we are immune when fact is fiction and tv reality?
+Sunday bloody sunday
+10
+
+Music: Song: and she's lovin him with that body i just know it?
+Jessie's girl
+10
+
+Music: Song: and the best thing you've ever done for me is to help me take my life less seriously it's only life after all?
+Closer to fine
+10
+
+Music: Song: and then the conversation turned until the sun went down?
+Keep feelin' fascination
+10
+
+Music: Song: and there's a heart that's breaking down this long distance line tonight?
+Missin' you
+10
+
+Music: Song: and though she will mess up your life you want her just the same?
+Invisible touch
+10
+
+Music: Song: and when the night is cold and dark you can't see you can't see light?
+Never surrender
+10
+
+Music: Song: and when we hear the voices sing the book of love will open up and let us in?
+Broken wings
+10
+
+Music: Song: and your friends don't dance and if they don't dance well they're no friends of mine?
+Safety dance
+10
+
+Music: Song: animals strike curious poses?
+When doves cry
+10
+
+Music: Song: another brick in the ____ (pink floyd)
+Wall
+10
+
+Music: Song: another kiss and you'll be mine one track mind!?
+Addicted to love
+10
+
+Music: Song: are you happy are you satisfied how long can you stand the heat?
+Another one bites the dust
+10
+
+Music: Song: are you more than hot for me or am i a page in your history book?
+Straight up
+10
+
+Music: Song: Aretha, Madonna, and Aerosmith all sang a song with this title?
+Angel
+10
+
+Music: Song: as god has shown us by turning stone to bread?
+We are the world
+10
+
+Music: Song: at night i wake up with the sheets soaking wet and a freight train running through the middle of my head?
+I'm on fire
+10
+
+Music: Song: at this moment you mean everything!?
+Come on eileen
+10
+
+Music: Song: baby baby when i look at you i get a warm feeling inside?
+I feel for you
+10
+
+Music: Song: Back & forth I sway with the wind?
+Falling to pieces
+10
+
+Music: Song: Back in Philly we used to dream about this every day?
+Motown philly
+10
+
+Music: Song: Been a whole lot easier since that bitch left town?
+Little miss cant be wrong
+10
+
+Music: Song: been workin so hard. i'm punchin my card?
+Footloose
+10
+
+Music: Song: bermuda bahama come on pretty mama?
+Kokomo
+10
+
+Music: Song: better make it fast or else i'm gonna get pissed?
+Push it
+10
+
+Music: Song: Blossoms 'now look at them yo-yo's, that's the way you do it ...' what is the dire straits song title?
+Money for nothing
+10
+
+Music: Song: Bryan Adams went to #1, Warrant to #2, & the Rascals to #39 with this title?
+Heaven
+10
+
+Music: Song: busted flat in baton rouge...waitin for a train...?
+Bobby mcgee
+10
+
+Music: Song: but i am held in some invisible vice and i can't get away?
+To live and die in l.a.
+10
+
+Music: Song: but it's worth it all to hear them say that they care?
+She works hard for the money
+10
+
+Music: Song: but now it's over the moment's gone?
+I just died in your arms
+10
+
+Music: Song: but somewhere sometime when you're curious i'll be back around?
+You might think
+10
+
+Music: Song: but whatever road you choose i'm right behind you win or lose?
+Forever young
+10
+
+Music: Song: but when i win your heart i'm gonna paint it cherry red?
+Midnight blue
+10
+
+Music: Song: but when the wrong word goes in the right ear i know you been lyin' to me?
+One thing leads to another
+10
+
+Music: Song: But, you're way out of line. (T2 song)?
+You could be mine
+10
+
+Music: Song: buying bread from a man in brussels he was 6 foot 4 and full a muscles?
+Down under
+10
+
+Music: Song: by order of the prophet we ban that boogie sound?
+Rock the casbah
+10
+
+Music: Song: can make it i know i can. you broke the boy in me but you won't break the man?
+St. elmo's fire
+10
+
+Music: Song: can't get food for the kid?
+Electric avenue
+10
+
+Music: Song: Carole king sings 'you just call out my name, and you know wherever i am i'll come running ...'?
+You've got a friend
+10
+
+Music: Song: caught up in the action i've been looking out for you?
+The heat is on
+10
+
+Music: Song: Chris DeBurgh admired this woman?
+The lady in red
+10
+
+Music: Song: Composer of: Capriccio Italien, andante Conscabile, Sleeping Beauty Waltz?
+Tchaikovsky
+10
+
+Music: Song: Composer of: God Bless America, Always, Cheek to Cheek?
+Irving Berlin
+10
+
+Music: Song: couldn't see how much i missed you now i do?
+Only in my dreams
+10
+
+Music: Song: Courtney Cox appears in two music videos. Name one?
+Dancing in the dark
+10
+
+Music: Song: crazy little woman in a one man show?
+Pour some sugar on me
+10
+
+Music: Song: Crosby, Stills and Nash's debut album included a song about a girl and the colour of her eyes.?
+Sweet Judy Blue Eyes
+10
+
+Music: Song: daddy says she's too young but she's old enough for me?
+Seventeen
+10
+
+Music: Song: darken the city night is a wire steam in the subway earth is afire?
+Hungry like the wolf
+10
+
+Music: Song: darlin' in my wildest dreams i never thought i'd go?
+Harden my heart
+10
+
+Music: Song: deals dope out of denny's/keeps a table in the back?
+Welcome to the boomtown
+10
+
+Music: Song: Depeche Mode's 6-minute (on the album) breakthrough hit from Violator?
+Enjoy the silence
+10
+
+Music: Song: did you really think about it before you made the rules?
+The way it is
+10
+
+Music: Song: didn't know how lost i was until i found you?
+Like a virgin
+10
+
+Music: Song: distant eyes losin ground i'm reachin for you you you?
+Separate ways
+10
+
+Music: Song: do your fancy dances?
+The stroke
+10
+
+Music: Song: don't go around breaking young girls' hearts?
+Billie jean
+10
+
+Music: Song: don't let go while i'm hangin' on 'cause i been hangin' on so long?
+Jeopardy
+10
+
+Music: Song: don't take money don't take fame don't need no credit card to ride this train?
+Power of love
+10
+
+Music: Song: don't wanna be a girl like that do you wanna see a grown man cry?
+Naughty naughty
+10
+
+Music: Song: don't want no captain crunch don't want no raisin bran?
+Eat it
+10
+
+Music: Song: don't wish it away don't look at it like this forever?
+I guess that's why they call it the blues
+10
+
+Music: Song: drawn into the stream of undefined illusion?
+Something about you
+10
+
+Music: Song: Dream Child In My Arms was a nightmare born in a borrowed bed?
+Eat for two
+10
+
+Music: Song: dream of better lives the kind which never hate?
+Melt with you
+10
+
+Music: Song: dressed up like a million-dollar trooper?
+Puttin' on the ritz
+10
+
+Music: Song: Dusty Springfield sings 'It happens to be true'. What's the song title?
+I only want to be with you
+10
+
+Music: Song: Early 20th century tune had Casey waltzing with this woman...?
+Strawberry blond
+10
+
+Music: Song: Early morning April four shots rang out the Memphis sky?
+Pride
+10
+
+Music: Song: earth below us drifting falling floating weightless?
+Major tom
+10
+
+Music: Song: easy ready willing overtime?
+Can't go for that
+10
+
+Music: Song: emotions come i don't why/cover up love's alibi?
+Call me
+10
+
+Music: Song: ever since you've been leaving me i've been wanting to cry?
+Much too late for goodbyes
+10
+
+Music: Song: every claim you stake i'll be watching you?
+Every breath you take
+10
+
+Music: Song: every day is christmas and every night is a new year's eve?
+The sweetest taboo
+10
+
+Music: Song: Every night the dead rise up from the grave/To partake in a happening THC raid?
+Monster hash
+10
+
+Music: Song: every time he pulls me near i just wanna cheer?
+Let's hear it for the boy
+10
+
+Music: Song: every time i see you falling i get down on my knees and pray?
+Bizarre love triangle
+10
+
+Music: Song: every time i think of you i always catch my breath?
+Missing you
+10
+
+Music: Song: every time you call my name i heat up like a burnin' flame?
+Abracadabra
+10
+
+Music: Song: everyone you meet they're jamming in the streets?
+All night long
+10
+
+Music: Song: everything you do is quite angelicate?
+Why can't i be you
+10
+
+Music: Song: Everything Your ____Desires - Daryl Hall & John Oates
+Heart
+10
+
+Music: Song: excuse me for the moment i'm at a loss for words?
+Don't disturb this groove
+10
+
+Music: Song: eyes that look like heaven lips like cherry wine?
+Elvira
+10
+
+Music: Song: Famous song by Johnny Mercer?
+Moon river
+10
+
+Music: Song: feel like i could run away run away from this empty heart?
+Shattered dreams
+10
+
+Music: Song: First Hits: Chicago?
+Make me smile
+10
+
+Music: Song: First Hits: Creedence Clearwater Revival?
+Suzy q
+10
+
+Music: Song: First Hits: Fats Domino?
+Aint that a shame
+10
+
+Music: Song: First Hits: Meat Loaf?
+Two out of three aint bad
+10
+
+Music: Song: First Hits: The Four Seasons?
+Sherry
+10
+
+Music: Song: First Marvin Gaye & then Cindy Lauper asked this question?
+Whats goin on
+10
+
+Music: Song: First Song On Album: Back To The Future Soundtrack?
+The power of love
+10
+
+Music: Song: First Song On Album: Eagles: Hotel California?
+Hotel California
+10
+
+Music: Song: First Song On Album: Gloria Estefan's Greatest Hits?
+Conga
+10
+
+Music: Song: First Song On Album: Huey Lewis and The News: Sports?
+The heart of rock and roll
+10
+
+Music: Song: First Song On Album: Journey's Greatest Hits?
+Only the young
+10
+
+Music: Song: First Song On Album: Meat Loaf?s Bat Out Of Hell?
+Bat out of hell
+10
+
+Music: Song: First Song On Album: Metallica?s Metallica?
+Enter sandman
+10
+
+Music: Song: First Song On Album: Pump Up The Volume Soundtrack?
+Everybody knows
+10
+
+Music: Song: First Song On Album: Queen Greatest Hits?
+We will rock you
+10
+
+Music: Song: First Song On Album: Red Hot Chili Peppers: Blood Sugar Sex Magik?
+Power of equality
+10
+
+Music: Song: First Song On Album: The Beach Boys: Made In USA?
+Surfin safari
+10
+
+Music: Song: First Song On Album: Wayne's World 2 Soundtrack?
+Louie louie
+10
+
+Music: Song: First Song On Album: ZZ Top's Greatest Hits?
+Gimme all your lovin
+10
+
+Music: Song: Fleetwood Mac & Van Halen both sang a song with this title?
+Dreams
+10
+
+Music: Song: flesh for ____ (billy idol)
+Fantasy
+10
+
+Music: Song: food is served and you're stone cold munchin'?
+Bust a move
+10
+
+Music: Song: for every minute i have to work i need a minute of play?
+Turn up the radio
+10
+
+Music: Song: For what song did country & western singer marty robbins win a grammy?
+El paso
+10
+
+Music: Song: Freak out and give in, it doesn't matter what you believe in?
+Cherub rock
+10
+
+Music: Song: from frustration first inclination is to become a monk and leave the situation?
+Bust a move
+10
+
+Music: Song: get out quick 'cause seein' is believin'?
+Easy lover
+10
+
+Music: Song: get up get up get up get up let's make love tonight?
+Sexual healing
+10
+
+Music: Song: goddess on the mountain top?
+Venus
+10
+
+Music: Song: good things might come to those who wait but not for those who wait too late?
+Just the two of us
+10
+
+Music: Song: got in a little hometown jam so they put a rifle in my hand?
+Born in the u.s.a.
+10
+
+Music: Song: guess i should a known by the way you parked your car sideways that it wouldn't last?
+Little red corvette
+10
+
+Music: Song: had a premonition that he shouldn't of gone alone?
+Smugglers blues
+10
+
+Music: Song: happiness is so hard to find?
+I can't wait
+10
+
+Music: Song: have some more chicken have some more pie?
+Eat it
+10
+
+Music: Song: he plays a melody born to tear me all apart?
+Piano in the dark
+10
+
+Music: Song: he turned to me as if to say hurry boy it's waiting there for you?
+Africa
+10
+
+Music: Song: he wants me but only part of the time?
+Voices carry
+10
+
+Music: Song: he's the one that makes ya feel alright?
+Dr. feelgood
+10
+
+Music: Song: heartache ____ (eagles)
+Tonight
+10
+
+Music: Song: heirs of the cold war tbat's what we've become. inherited troubles i'm mentally numb?
+Crazy train
+10
+
+Music: Song: her hair reminds me of a warn safe place where as a child i'd lie?
+Sweet child of mine
+10
+
+Music: Song: Holding hands at midnight, 'neath a starry sky' begins which George & Ira Gershwin song?
+Nice work if you can get it
+10
+
+Music: Song: Hot Chocolate believes in miracles & wants to know where your from, ____
+You sexy thing
+10
+
+Music: Song: Hot chocolate believes in miracles, and wants to know where you're from ____
+You sexy thing
+10
+
+Music: Song: i am ____ (helen reddy)
+Woman
+10
+
+Music: Song: i am the maker of rules dealing with fools?
+Eye in the sky
+10
+
+Music: Song: i asked the doctor to take your picture so i could look at you from inside as well?
+Turning japanese
+10
+
+Music: Song: i buy you champagne and roses put diamonds on your finger?
+Party all the time
+10
+
+Music: Song: i can feel her comin' from a mile away?
+And we danced
+10
+
+Music: Song: i can hear you comin' i know what you're after?
+Lunatic fringe
+10
+
+Music: Song: i can see a new horizon underneath the blazin' sky?
+Man in motion
+10
+
+Music: Song: i can see the sun in win-ter-time?
+In a big country
+10
+
+Music: Song: i can see your face in the mirrors of my mind?
+Valotte
+10
+
+Music: Song: i can wait another day until i call you?
+No more lonely nights
+10
+
+Music: Song: i can't get any rest people say i'm obsessed?
+She drives me crazy
+10
+
+Music: Song: i can't help recalling how it felt to kiss and hold you tight?
+Always something there to remind me
+10
+
+Music: Song: i can't sleep at night i toss and turn?
+Every little step
+10
+
+Music: Song: i don't know what you expect staring into the tv set?
+Burning down the house
+10
+
+Music: Song: i don't know where i'm goin' but i sure know where i've been?
+Here i go again
+10
+
+Music: Song: i don't worry 'cause my wallet's fat?
+Sharp dressed man
+10
+
+Music: Song: i find myself telling you things i don't even tell my best friends?
+Lost in emotion
+10
+
+Music: Song: i follow where my mind goes?
+Love my way
+10
+
+Music: Song: i got a mouth like an alligator?
+Bang your head
+10
+
+Music: Song: i got a picture of you- ahh-ha-ahh-ha-ah-ah woh-oh-woh-oh?
+Back on the chain gang
+10
+
+Music: Song: i got nine lives cat's eyes using every one of them and runnin' wild?
+Back in black
+10
+
+Music: Song: i had a friend was a big baseball player back in high school?
+Glory days
+10
+
+Music: Song: i had a whiskey on the rocks and change of a dollar for the jukebox?
+Rock this town
+10
+
+Music: Song: i i was standing you were there?
+Never tear us apart
+10
+
+Music: Song: i just have to look good/i don't have to be clear?
+Dirty laundry
+10
+
+Music: Song: i knew he must a been about seventeen?
+I love rock 'n' roll
+10
+
+Music: Song: i know a guy who's tough but sweet?
+I want candy
+10
+
+Music: Song: i know a place where we can dance the whole night away underneath electric stars?
+Rhythm of the night
+10
+
+Music: Song: ick, Richard, Ella, Bobby, Frank, Lawrence, and Louis all sang this same song?
+Mack the knife
+10
+
+Music: Song: Ironically, George Michael and Wham both had a hit with this title?
+Freedom
+10
+
+Music: Song: It's 9 o'clock on a saturday... (Billy Joel)?
+Piano man
+10
+
+Music: Song: It's late September & i really should be back at school... (Rod Stewart)?
+Maggie may
+10
+
+Music: Song: It's like this, like that, and like this ya'll?
+Aint Nothing But A G Thing
+10
+
+Music: Song: Jack Wagner and the Temptations both sang a song with this title?
+All i need
+10
+
+Music: Song: Just for a minute let's all do the bump?
+U cant touch this
+10
+
+Music: Song: Laura Branigan, Enchantment, & Shadows of Knight all had a hit with this title?
+Gloria
+10
+
+Music: Song: Like a moth by the flame burned by the fire?
+Thats the way love goes
+10
+
+Music: Song: listen to the ____ (the doobie brothers)
+Music
+10
+
+Music: Song: Major Lance, Dee Clark, Del Shannon, and Techniques had hits with this title?
+Hey little girl
+10
+
+Music: Song: Marc Bolan's first single?
+Teenage dream
+10
+
+Music: Song: Mom and Dad went to a show, they dropped me off at Grandpa Joe's?
+Sliver
+10
+
+Music: Song: music and passion were always the fashion?
+Copacabana
+10
+
+Music: Song: Musical with songs:Anything You Can Do, They Say It's Wonderful?
+Annie get your gun
+10
+
+Music: Song: Musical: C'est Moi, Guenevere, Follow Me?
+Camelot
+10
+
+Music: Song: Musical: Iowa Stubborn, Sincere, The Sadder But Wiser Girl for Me?
+Music man
+10
+
+Music: Song: Musical: June is Busting O All Over, You'll Never Walk Alone, Soliloquy?
+Carousel
+10
+
+Music: Song: Musical: My Funny Valentine, The Lady is a Tramp, Where or When?
+Babes in arms
+10
+
+Music: Song: Musical: My Lord and Master, Hello Young Lovers, I Have Dreamed?
+King and i
+10
+
+Music: Song: my ____ (the knack)
+Sharona
+10
+
+Music: Song: New Order song, perhaps about a colorful day of the week?
+Blue monday
+10
+
+Music: Song: Nu Shooz and Stevie Nicks both sang a song with this title?
+I Cant Wait
+10
+
+Music: Song: On a dark desert highway, cool wind in my hair, warm smell of colitas... (Eagles)?
+Hotel California
+10
+
+Music: Song: on a dark desert highway. Cool wind in my hair?
+Hotel California
+10
+
+Music: Song: One of AC/DCs better known songs. (it has two B words! :)?
+Back in black
+10
+
+Music: Song: Operatta: Barney O'Flynn, I Can't Do the Sum, March of the Toys?
+Babes in toyland
+10
+
+Music: Song: Operatta: Golden Days, Drinking Song, Deep in My Heart Dear?
+Student prince
+10
+
+Music: Song: Operetta: Marriage in Marsovia, Ladies' Choice, Villa?
+Merry widow
+10
+
+Music: Song: peaceful, easy ____ (eagles)
+Feeling
+10
+
+Music: Song: Petula Clark and Wings both went to #1 with a song with this title?
+My love
+10
+
+Music: Song: Pleasant-sounding group that Keith Emerson was in before ELP?
+Nice
+10
+
+Music: Song: R. Kelly sings 'If I can see it then I can do it, if I just believe it, there's nothing to it'.?
+I Believe I Can Fly
+10
+
+Music: Song: Ratt and Tevin Campbell both had a hit with this title?
+Round and Round
+10
+
+Music: Song: Rolling Stone's Songs?
+Angie
+10
+
+Music: Song: Said my get-up-and-go must've got up & went?
+Sweet emotion
+10
+
+Music: Song: Same Song Title: Buddy Holly, Mamas and Papas?
+Words of love
+10
+
+Music: Song: Same Song Title: Elton John, Bette Midler, Michael W. Smith?
+Friends
+10
+
+Music: Song: Same Song Title: Elton John, Michael W. Smith, Frankie Valli?
+Emily
+10
+
+Music: Song: Same Song Title: Huey Lewis and the News, Celine Dion?
+The power of love
+10
+
+Music: Song: Same Song Title: Joey Dee and the Starlighters, Tears For Fears?
+Shout
+10
+
+Music: Song: Same Song Title: John Lennon, Tori Amos?
+God
+10
+
+Music: Song: Same Song Title: Madonna, Dusty Springfield, Lesley Gore, ABC?
+The look of love
+10
+
+Music: Song: Same Song Title: Madonna, the Beatles?
+Rain
+10
+
+Music: Song: Same Song Title: Madonna, Tommy James and the Shondells?
+Hanky panky
+10
+
+Music: Song: Same Song Title: Mariah Carey, Bryan Duncan?
+Love takes time
+10
+
+Music: Song: Same Song Title: Survivor, Whitesnake?
+Is this love
+10
+
+Music: Song: Same Song Title: Whitesnake, the Hollies?
+Here i go again
+10
+
+Music: Song: Sang by robert palmer, '____ to love'
+Addicted
+10
+
+Music: Song: Satin sheets are very romantic, but happen when you're not home?
+Express yourself
+10
+
+Music: Song: Since I'll Be There's success, Mariah has made these two remakes?
+Without you and endless love
+10
+
+Music: Song: Sung by Robert Palmer, '____ to love'
+Addicted
+10
+
+Music: Song: take it to ____ ____ (eagles)
+The limit
+10
+
+Music: Song: Take your hat off boy when you're talking to me?
+Feed the tree
+10
+
+Music: Song: Teenage angst has paid off well?
+Serve the servants
+10
+
+Music: Song: That's great it starts with an earthquake?
+Its the end Of the World As We Know It
+10
+
+Music: Song: That's the jingle bell, that's the jingle bell, that's the jingle bell?
+Jingle bell rock
+10
+
+Music: Song: The byrds had a hit with this Pete Seeger song?
+Turn turn turn
+10
+
+Music: Song: The lights are on, but you're not home... (Robert Palmer)?
+Addicted to love
+10
+
+Music: Song: the long & ____ road
+Winding
+10
+
+Music: Song: the phone rings in the middle of the night my father yells 'what you gonna do with your life'?
+Girls just wanna have fun
+10
+
+Music: Song: There goes my baby, with someone new... (The Everley Bros)?
+Bye bye love
+10
+
+Music: Song: There is a house in new orleans... (The Animals)?
+House of the rising sun
+10
+
+Music: Song: Well east coast girls are hip, I really dig those styles they wear... (The Beach Boys)?
+California girls
+10
+
+Music: Song: Well I guess it would be nice if I could touch your body?
+Faith
+10
+
+Music: Song: what jerry jeff walker tune became the biggest hit the nitty gritty dirt band ever had?
+Mr. bojangles
+10
+
+Music: Song: what simon and garfunkel lp was britain's biggest-selling album of the '70s?
+Bridge over troubled water
+10
+
+Music: Song: what smash 1971 tune ran eight minutes and 27 seconds?
+American pie
+10
+
+Music: Song: What song from Steel Wheels earned the Rolling Stones a grammy nomination?
+Almost hear you sigh
+10
+
+Music: Song: what song put james taylor into the limelight?
+Fire and rain
+10
+
+Music: Song: what song, dedicated to this wife, did john denver claim it took him 10 minutes to write on a ski lift?
+Annie's song
+10
+
+Music: Song: When a leader speaks, that leader dies?
+Cult of personality
+10
+
+Music: Song: when i find myself in times of trouble, mother mary comes to me... (the beatles)?
+Let it be
+10
+
+Music: Song: When I get to the bottom I go back to the top of the slide?
+Helter skelter
+10
+
+Music: Song: when no one can understand me, when everything i do is wrong, you give me love & consolation... (elvis presley)?
+The wonder of you
+10
+
+Music: Song: when you're down, & troubled, & you need a helping hand, & nothing, oh nothing is going right... (james taylor/carole king)?
+You've got a friend
+10
+
+Music: Song: when you're in love with a ____ woman (dr hook)
+Beautiful
+10
+
+Music: Song: Why do I crucify myself?
+Crucify
+10
+
+Music: Song: will you meet him on the main line or will you catch him on the rebound?
+Gloria
+10
+
+Music: Song: wise men say, only fool rush in, but i ... (elvis presley)?
+Can't help falling in love
+10
+
+Music: Song: Written by Dylan, covered by Clapton & the Greatful Dead?
+Knockin on heavens door
+10
+
+Music: Song: Written by Young on his 19th birthday?
+Sugar mountain
+10
+
+Music: Song: Yo, colaberate and listen?
+Ice ice baby
+10
+
+Music: Song: you always won, every time you placed a bet, you're still damn good, no one's gotten to you yet... (bob seger)?
+Still the same
+10
+
+Music: Song: you are so ____ (joe cocker)
+Beautiful
+10
+
+Music: Song: you know that it would be untrue, you know that i would be a liar... (the doors)?
+Light my fire
+10
+
+Music: Song: you should be ____ (bee gees)
+Dancing
+10
+
+Music: Song: you'll never know how much i really love you, you'll never know how much i really care... (the beatles)?
+Do you want to know a secret
+10
+
+Music: Song: you've got a cute way of talking, you've got the better of me... (leo sayer)?
+You make me feel like dancing
+10
+
+Music: Songwriter Bernie Taupin wrote for which well known musician?
+Elton john
+10
+
+Music: sonny & cher's daughters name is?
+Chastity
+10
+
+Music: Soprano Galli-Marie created the title role in which opera by Bizet, at its premiere at the Opera Comique in Paris, on the third of March 1875?
+Carmen
+10
+
+Music: Soundgarden asks that you keep off this?
+My wave
+10
+
+Music: Soundgarden's latest (1997) album?
+Down on the upside
+10
+
+Music: Soundgarden's utensil song?
+Spoonman
+10
+
+Music: Soundtracks: Al Green hit from the 70s that appears in Pulp Fiction & Higher Learning?
+Lets stay together
+10
+
+Music: Soundtracks: At least 3 Star Wars movies by this composer?
+John williams
+10
+
+Music: Soundtracks: The doctor suggests the silly woman put this in the coconut for her bellyache?
+The lime
+10
+
+Music: Soy un perdedor, ..., so why don't you kill me?
+Loser
+10
+
+Music: Spice girl's victoria adams was married to who?
+David beckham
+10
+
+Music: Spinal Tap song about a very unpleasant place to be?
+Hell hole
+10
+
+Music: Spinal Tap: Billy Crystal and Dana Carvey played waiters specializing in this?
+Mime
+10
+
+Music: Spinal Tap: Complete the line: Plowing through you beanfields, _____ ____
+Poking your hay
+10
+
+Music: Spinal Tap: Derek saw himself as this, between the two geniuses in the band?
+Lukewarm water
+10
+
+Music: Spinal Tap: He played Duke Fame's manager?
+Hesseman
+10
+
+Music: Spinal Tap: Ian claimed that Jeanine dressed like this?
+An australians nightmare
+10
+
+Music: Spinal Tap: Nigel's special amp goes up to this number?
+Eleven
+10
+
+Music: Spinal Tap: The band got lost in the basement of the theater in this city?
+Cleveland
+10
+
+Music: Spinal Tap: The name of Nigel's piano composition in D minor?
+Lick my love pump
+10
+
+Music: Spinal Tap: Title of a proposed musical based on the life of Jack the Ripper?
+Saucy jack
+10
+
+Music: Spinal Tap: Where did the band tour when they reunited at the end of the movie?
+Japan
+10
+
+Music: Spinal Tap: Yes I Can by Sammy Davis Jr should really be called this?
+Yes i can if frank sinatra says its ok
+10
+
+Music: Spoof record by Ali G and Shaggy?
+Me Julia
+10
+
+Music: Sports: Canadian artist who flubbed lyrics of Oh! Canada during the 1992 World Series?
+Tom cochrane
+10
+
+Music: Sports: Daryl Hall recorded this song specifically for the USA 94 World Cup?
+Gloryland
+10
+
+Music: Sports: Dire Straits video which contains sport bloopers footage?
+Walk of life
+10
+
+Music: Sports: Her rendition of The Star Spangled Banner during the Super Bowl hit #20 in 1991?
+Whitney houston
+10
+
+Music: Sports: Members of this football team regularly record on Huey Lewis and the News songs?
+San francisco 49ers
+10
+
+Music: Sports: Name Mick Jaggers favourite sport?
+Cricket
+10
+
+Music: Sports: Wayne Gretzky was among celebrities who sang this Persian Gulf War benefit song?
+Voices that care
+10
+
+Music: Squeeze sings about this type of timekeeper?
+Hourglass
+10
+
+Music: Stage name of Janis Fink?
+Janis ian
+10
+
+Music: Step aside for the pain of the circumstances...?
+Evidence
+10
+
+Music: Stephen Stills and ____ ____ failed auditions for the Monkees
+Charles manson
+10
+
+Music: Sterling Morrison, Moe Tucker, John Cale, et al?
+The velvet underground
+10
+
+Music: Steve Miller Band song which mentions a space cowboy?
+The joker
+10
+
+Music: Stille Nacht (Silent Night) was written by Whom?
+Franz x gruber
+10
+
+Music: Sting's actual name?
+Gordon sumner
+10
+
+Music: Sting's first live album?
+Bring on the night
+10
+
+Music: Stones & the London Bach Choir?
+You cant always get what you Want
+10
+
+Music: Stuart Goddard is also known by what other name?
+Adam ant
+10
+
+Music: Sung by Jack Nicholson in the movie of Tommy?
+Go to the mirror
+10
+
+Music: Suzannah Hoffs lead this group which started everybody Walkin Like an Egyptian?
+Bangles
+10
+
+Music: Sweet sounding Boston band that seduced us with a Simple Song?
+Bim skala bim
+10
+
+Music: Syd Barrett is a former member of what band?
+Pink Floyd
+10
+
+Music: Synchronic three-man band sings Message In a Bottle?
+Police
+10
+
+Music: T.S. Eliot's Old Possum's Book of Practical Cats is the basis for this musical?
+Cats
+10
+
+Music: Teddy Pendergrass originally sang lead for which group from 1959 to 1975?
+Blue notes
+10
+
+Music: Temple of the Dog was formed to pay tribute to the leader of this ex-band?
+Mother love bone
+10
+
+Music: Terms: . - Abbreviation of (1) tenor and (2) tenuto?
+Ten
+10
+
+Music: Terms: (1) (Lat.) A canon in the 15th and 16th centuries. (2) (It.) A fugue?
+Fuga
+10
+
+Music: Terms: (1) A group of seven performers which may consist of instrumentalists or singers; (2) A composition for seven performers which, if for instrumentalists, will have the character of a sonata in several movements?
+Septet
+10
+
+Music: Terms: (1) A large-scale work, generally in three movements involving solo instrument(s) contrasted with orchestra and standardised by Mozart. Also called solo concerto. (2) An orchestral work in several contrasting movements with or without solo instruments, often supported by figured bass in the 17th and 18th centuries?
+Concerto
+10
+
+Music: Terms: (1) A set of works, especially songs, intended to be performed as a group with thematic connection (e.g. Schubert's song cycle Die Winterreise?
+Cycle
+10
+
+Music: Terms: (1) A small and light textured concerto. (2) The soloist group in the 17thand 18th century concerto grosso. (3) A less formally structured work than a concerto for one or more solo instruments with orchestra?
+Concertino
+10
+
+Music: Terms: (1) A subordinate passage serving as a link to another more important one. (2) A sudden change of key not going through the normal procedures referred to as modulation?
+Transition
+10
+
+Music: Terms: (1) A vocal or instrumental piece for three performers (e.g. a piano trio - piano, violin and 'cello); (2) The middle section of a minuet or scherzo. Originally this was written in three-part harmony and the title remained?
+Trio
+10
+
+Music: Terms: (1) A work for orchestra or for two or more instruments with prominent solo parts. (2) The sinfonia-concertante is a work with a form nearer to a symphony than concerto but employing solo instruments and orchestra?
+Concertante
+10
+
+Music: Terms: (1) Adult male voice between bass and alto; (2) Part above the bass in a four part vocal composition in SATB (soprano, alto, tenor, bass); (3) In sacred polyphonic music before 1450, this was the lowest melodic part upon which the composition was based; (4) A prefix to an instrument (e.g. tenor saxophone indicating the size between alto and bass)?
+Tenor
+10
+
+Music: Terms: (1) An orchestral piece preceding an opera, oratorio or play; (2) Since Mendelssohn's Hebrides of 1832, the overture also describes a one movement orchestral piece composed for the concert hall with a non-musical subject. This is also called the concert overture; (3) In the 17th and 18th centuries the French overture (preceding an opera, etc.) was in three movements, slow-quick-slow, and the Italian overture (a precursor of the symphony) also in three movements was quick-slow-quick?
+Overture
+10
+
+Music: Terms: (1) Generally a free style keyboard piece; (2) An organ solo played before and after an Anglican service?
+Voluntary
+10
+
+Music: Terms: (1) In Ancient Greek music this could be represented on the white keys of the piano from C to C; (2) From the middle ages, the Iydian mode can be represented on the white keys of the piano from F to F?
+Iydian mode
+10
+
+Music: Terms: (1) In modern use this is a religious choral composition in Latin of the Roman Catholic service corresponding to the anthem in the Anglican service. (2) In medieval times, this was a vocal composition based on a given set of words and melody, which sometimes came from a secular song?
+Motet
+10
+
+Music: Terms: (1) In string playing, the term indicates where on the fingerboard the left hand should be in order to play a passage; (2) In trombone playing, the term indicates how far the slide should be pushed out; (3) In harmony, the term describes the layout of a chord. Here are the common positions of the chord with C major as an example, using the notes C E and G. In root position, the chord of C is played with C (the root of the chord) at the bottom. Infirst inversion, the chord is played with E at the bottom. In second inversion the chord is played with G at the bottom. Therefore, the note at the bottom of the chord determines these positions?
+Position
+10
+
+Music: Terms: (1) In vocal music this is a slur mark indicating that a group of notes is to be sung to the same syllable; (2) In instrumental music this is a slur indicating notes which are to be phrased together?
+Ligature
+10
+
+Music: Terms: (1) Note of the scale; (2) Abbreviation of forte?
+F
+10
+
+Music: Terms: (1) The art of writing for an orchestra, band, etc., involving great knowledge of tone colours, range of instruments, technical capacities and combinations of instruments, etc. (2) The scoring of a work, originally intended for another medium, for an orchestra?
+Orchestration
+10
+
+Music: Terms: (1) The cancelling of a flat or sharp of a note or key indicated by a sign beside the note; (2) A trumpet or horn, etc. not having any valves or keys?
+Natural
+10
+
+Music: Terms: (1) The division of compass of a singer's voice (e.g. chest register and head register). Also applied to the compass of an instrument (e.g. the chalumeau register of the clarinet); (2) A set of organ pipes controlled by one particular stop?
+Register
+10
+
+Music: Terms: (1) The first player of an orchestral section (e.g. the 'principal horn'). (2) In opera, the principal is the singer who performs the main parts, but not the chief ones?
+Principal
+10
+
+Music: Terms: (1) The interval consisting of two semitones (e.g. C to D); (2) The quality of sound of an instrument?
+Tone
+10
+
+Music: Terms: (1) Traditionally a play in mime; (2) Nowadays it is a Christmas stage entertainment based on a fairy tale or other traditional source with dialogue, popular songs, costumes and actions (e.g. Snow White)?
+Pantomime
+10
+
+Music: Terms: (1) Treble clef. G clef on the second line; (2) Prefix to an instrument of high pitch within a family (e.g. treble recorder)?
+Treble
+10
+
+Music: Terms: (1) Words of a song. (2) A fairly short but expressive piece (e.g. Lyric Piece by Grieg; (3) Describes vocal performance with the lyre. (4) A Iyric drama is an occasional synonym for opera?
+Iyric
+10
+
+Music: Terms: (e) (Ger.) - Half. Halbsopran, mezzo-soprano. Halbtenor, baritone?
+Halb
+10
+
+Music: Terms: (Eng. and Fr.), romanze (Ger.), romanza (It.) - The term has been used widely, but it often implies an intimate and Iyrical piece for voice or instrument?
+Romance
+10
+
+Music: Terms: (Eng.) or pavane (Fr.) - A slow, stately dance usually in duple time dating from the 16th century. It was normally followed by the quicker galliard after about 1550, often employing the same theme?
+Pavan
+10
+
+Music: Terms: (Eng.), minuetto (It.) - A moderately fast French dance of rustic origin in 3 / 4 time but rising to court and becoming fashionable in the 18th century. The minuet is the standard third movement in the classical sonata, symphony, string quartet, etc., developing later into the scherzo with Beethoven. Form is A A B A?
+Minuet
+10
+
+Music: Terms: (Eng.), rigaudon (Fr.) - A lively old French dance in 2 / 4 or 4 / 4 time?
+Rigadoon
+10
+
+Music: Terms: (Fr ) - Step. A pas d 'action is a ballet scene of dramatic nature and a pas de deux is a dance for two?
+Pas
+10
+
+Music: Terms: (Fr. ) - Meditative, collected?
+Recueilli
+10
+
+Music: Terms: (Fr. and Ger.) - Same as mass?
+Messe
+10
+
+Music: Terms: (Fr. and Ger.) - Style galant. Courtly. This term, adopted by German writers, refers to a mid-18th century style characterised by a homophonic, formal elegance as opposed to the German contrapuntal traditional style. This was practised by C.P.E. Bach and influenced Mozart?
+Galant
+10
+
+Music: Terms: (Fr. and It.) - Fasy, fluent?
+Facile
+10
+
+Music: Terms: (Fr., 'a following') - Commonly describes an instrumental piece in several movements consisting of a sequence of dances. In the 17th and 18th centuries, the suite included the characteristic dance forms allemande, courante, sarabande and gigue. In the mid-18th century, the binary form feature of the dances was developed into sonata form. The sonata and also the symphony then became the chief instrumental forms. In the l9th and 20th centuries the term describes a lighter work than a sonata. A suite may also describe a set of movements assembled from a ballet or opera score?
+Suite
+10
+
+Music: Terms: (Fr., 'amusement') - (I) Entertainment in ballet form, sometimes with songs, found in operas or plays for contrast (e.g. the operas of Lully. (2) Same as divertimento. (3) Instrumental piece or fantasia employing popular tunes?
+Divertissement
+10
+
+Music: Terms: (Fr., 'concrete music') - Music in which natural sounds (instrumental, vocal or other) were recorded on tape and then distorted, combined, etc. This term was coined by Peter Schaeffer in 1948 but it has largely been superseded by electronic music?
+Musique concrete
+10
+
+Music: Terms: (Fr., 'cunning') - In opera or operetta, this often describes a soprano singing the role of a shrewd, rather pert servant girl?
+Soubrette
+10
+
+Music: Terms: (Fr., 'damp') - Indication to harp or cymbal players, etc. that sound must be immediately cut short?
+Etouffez
+10
+
+Music: Terms: (Fr., 'dry') - An indication that a note or chord is to be played sharply?
+Sec
+10
+
+Music: Terms: (Fr., 'enjoyment') - This title is sometimes found in spirited movements in suites of the baroque period?
+Rejouissance
+10
+
+Music: Terms: (Fr., 'fixed idea') - Berlioz' term for motto theme which means a recurring theme in a composition used (e.g. in his Symphonie Fantastique)?
+Idee fixe
+10
+
+Music: Terms: (Fr., 'follow') - (1) Go staight on to the next section or movement without a break; (2) An indication to an accompanist to follow any changes in tempo made by the soloist?
+Suivez
+10
+
+Music: Terms: (Fr., 'study') - An instrumental piece to improve or demonstrate certain technical points. However, many etudes (such as those by Chopin) have great artistic merit?
+Etude
+10
+
+Music: Terms: (Fr., 'together') - (l) A small group of performers (e.g. a vocal or instrumental ensemble; (2) In opera, an ensemble is an selection for several soloists with or without chorus?
+Ensemble
+10
+
+Music: Terms: (Fr.) - (1) A term sometimes used in English for leitmotif. (2) Sarne as motiv or motive?
+Motif
+10
+
+Music: Terms: (Fr.) - (1) Brilliant, bright; (2) Blaring. cossaise (Fr.) - Short for danse ecossaise. Although meaning Scottish dance, the term is apparently not of Scottish origin. A quick dance in 2 / 4 time, it was popular in Britain and on the Continent in the late 18th and early 19th centuries. Cultivated by Beethoven?
+Clatant
+10
+
+Music: Terms: (Fr.) - (1) Repeat; (2) The recapitulation in sonata form; (3) The return to the first section after contrasting music in the second section in binary form?
+Reprise
+10
+
+Music: Terms: (Fr.) - (I) Interval during a play or opera. (2) Music to be played between the acts of a play or opera?
+Entr'acte
+10
+
+Music: Terms: (Fr.) - A dance of Provence in 6 / 8 time accompanied by pipe and tabor?
+Farandole
+10
+
+Music: Terms: (Fr.) - A light, often satirical opera or operetta (e.g. by Offenbach)?
+Opera bouffe
+10
+
+Music: Terms: (Fr.) - A lively dance in triple time popular in the baroque period and found in the suite?
+Courante
+10
+
+Music: Terms: (Fr.) - A piece composed deliberately in the style of another well- known composer. See also pasticcio above?
+Pastiche
+10
+
+Music: Terms: (Fr.) - A popular dance form in the 13th and 14th centuries consisting of several sections (puncta) each of which has a first ending (ouvert) and a second ending (clos)?
+Estampie
+10
+
+Music: Terms: (Fr.) - A type of French medieval song of the 13th to15th centuries with a choral refrain. This French spelling was used in instrumental works of the baroque period to describe rondo?
+Rondeau
+10
+
+Music: Terms: (Fr.) - A type of trouvere song similar to the sequence with sections of irregular length and melodic repetition?
+Lai
+10
+
+Music: Terms: (Fr.) - A wordless composition for performance (e.g. in an opera or as an exercise for solo voice)?
+Vocalise
+10
+
+Music: Terms: (Fr.) - Again. Refers to an extra selection performed by musicians after a program in response to audience applause. French term is bis?
+Encore
+10
+
+Music: Terms: (Fr.) - Beat?
+Temps
+10
+
+Music: Terms: (Fr.) - Chiefly a 17th century French music term for (I) an introductory piece for the entry of characters in ballet or opera; (2) an independent instrumental piece of similar nature; (3) the equivalent of a scene or act in ballet or opera?
+Entree
+10
+
+Music: Terms: (Fr.) - Damped sound. Mostly found in harp music indicating that the performer should dampen vibrations immediately after plucking, to produce a 'dry' sound?
+Sons etouffes
+10
+
+Music: Terms: (Fr.) - Empty. Cordc a vide, open string?
+Vide
+10
+
+Music: Terms: (Fr.) - Falsetto?
+Fausset
+10
+
+Music: Terms: (Fr.) - Fast?
+Vite
+10
+
+Music: Terms: (Fr.) - Held back?
+Retenu
+10
+
+Music: Terms: (Fr.) - I) Melody. (2) Song?
+Melodie
+10
+
+Music: Terms: (Fr.) - In various contexts this term may mean either note, tone or key?
+Ton
+10
+
+Music: Terms: (Fr.) - Increase speed?
+Pressez
+10
+
+Music: Terms: (Fr.) - Light?
+Leger
+10
+
+Music: Terms: (Fr.) - Link together (e.g. go straight on to the next section or movement without a break)?
+Encha nez
+10
+
+Music: Terms: (Fr.) - Little?
+Petit
+10
+
+Music: Terms: (Fr.) - Lively?
+Vif
+10
+
+Music: Terms: (Fr.) - March?
+Marche
+10
+
+Music: Terms: (Fr.) - Music designed to improve a specific branch of technique by practice. Chopin and Clementi, however, wrote many of artistic merit?
+Etude
+10
+
+Music: Terms: (Fr.) - Operetta?
+Operette
+10
+
+Music: Terms: (Fr.) - Point of the bow?
+Pointe d'archet
+10
+
+Music: Terms: (Fr.) - Same as intermezzo?
+Intermede
+10
+
+Music: Terms: (Fr.) - Same as sul tasto?
+Sur la touche
+10
+
+Music: Terms: (Fr.) - Stopped notes on the horn?
+Sons bouches
+10
+
+Music: Terms: (Fr.) - Sustained and flowing?
+Soutenu
+10
+
+Music: Terms: (Fr.) - The coach, usually in an opera house, who teaches singers their parts. The repetiteur may also give them cues during the performance?
+Repetiteur
+10
+
+Music: Terms: (Fr.) - The correct position of lips to the mouthpiece of an instrument to produce accurate intonation and good tone?
+Embouchure
+10
+
+Music: Terms: (Fr.) - The end of the bow (held by the player)?
+Talcon
+10
+
+Music: Terms: (Fr.) - The surprising sound of a major third at the end of a piece otherwise in a minor key thus converting the expected minor chord to a major one. This was a common device up to the mid-18th century?
+Tierce de picardie
+10
+
+Music: Terms: (Fr.) - This term describes comic opera but has two special meanings: (1) A type of French comic opera with spoken dialogue, lighter than current serious operas in the 18th century; (2) An opera, comic or otherwise, with spoken dialogue (e.g. Bizet's Carmen in the l9th century)?
+Opera comique
+10
+
+Music: Terms: (Fr.) - Trill?
+Tremblement
+10
+
+Music: Terms: (Fr.) - Up bow as opposed to tire, down bow?
+Pousse
+10
+
+Music: Terms: (Fr.) - Waltz?
+Valse
+10
+
+Music: Terms: (Fr.) or conservatory - A school for musical training?
+Conservatoire
+10
+
+Music: Terms: (Fr.) Rehearsal. Repetition General is the dress rehearsal, often given before a full, but invited audience, in continental opera houses?
+Repetition
+10
+
+Music: Terms: (Fr.), galanter stil (Ger.) - The musical equivalent of the rococo style in painting. The term described the homophonic but ornamented French and Italian music between 1730 and 1770 written by Couperin and D. Scarlatti. It contrasted with the German contrapuntal style?
+Style galant
+10
+
+Music: Terms: (Fr.), humoreske (Ger.) - An instrumental composition of a capricious nature. Schumann wrote in this style?
+Humoresque
+10
+
+Music: Terms: (Fr.), lclangfarbe (Ger.) - This is the characteristic quality of an instrument's or voice's tone. In basic terms it is the quality which distinguishes a note performed on one instrument compared with the same note sounded on an other instrument or sung by a voice The tone colour of an instrument corresponds with the harmonics of that instrument?
+Timbre
+10
+
+Music: Terms: (Fr.), menuett (Ger.) - Same as minuet?
+Menuet
+10
+
+Music: Terms: (Fr.), sonoro (It.) - With full tone?
+Sonore
+10
+
+Music: Terms: (from Italian toccare, 'to touch') - Generally a solo instrumental piece involving rapid changes of notes to demonstrate the player's touch. Often the toccata is followed by a fugue (e.g. Toccata and Fugue in D minor)?
+Toccata
+10
+
+Music: Terms: (from Lat. cantus planus) - Medieval church music usually describing the gregorian chant which still survives today in the Roman Catholic church. It consists of a single, unaccompanied vocal line in free rhythm like speech with no regular bar lengths?
+Plainsong
+10
+
+Music: Terms: (Gael.) - Same as mouth music?
+Port a beul
+10
+
+Music: Terms: (Ger. ) - Cheerful, jolly?
+Lustig
+10
+
+Music: Terms: (Ger. ) - Speechsong. Voice delivery midway between song and speech, used mostly by Schonberg although he preferred the terms sprechstimme (speaking voice), sprechmelodic (speech melody) or rezitation?
+Sprechgesang
+10
+
+Music: Terms: (Ger. plural, 'Scottish') - A popular l9th century ballroom dance similar to the polka?
+Schottische
+10
+
+Music: Terms: (Ger., 'after dance') - A quick dance used to follow a slow one?
+Nachtanz
+10
+
+Music: Terms: (Ger., 'blaring' ) - An indication to horn players to use a harsh brassy tone?
+Schmetternd
+10
+
+Music: Terms: (Ger., 'play with singing') - Generally the singspiel is a comic opera with spoken dialogue in the local dialect instead of recitative. An example is Mozart's The Magic Flute (1791). In the early l9th century the style combined with German romantic opera and later came to be known simply as 'German musical comedy'?
+Singspiel
+10
+
+Music: Terms: (Ger., 'storm and stress') - The powerful romantic expressiveness sweeping Austrian and German music in the 1760s and 1770s was so called. Especially evident in Haydn's symphonies of that time?
+Sturm und drang
+10
+
+Music: Terms: (Ger., 'table music') - Music suitable for social gatherings (e.g. for performance after or during a dinner)?
+Tafelmusik
+10
+
+Music: Terms: (Ger., plural lieder) - Song. This term is particularly applied to the German romantic songs of Schubert, Schumann and Brahms. A characteristic is the importance paid to the piano part and the mood of the words?
+Lied
+10
+
+Music: Terms: (Ger.) - A bow stroke?
+Strich
+10
+
+Music: Terms: (Ger.) - A composition, piece?
+Stuck
+10
+
+Music: Terms: (Ger.) - A light tenor voice in opera?
+Spieltenor
+10
+
+Music: Terms: (Ger.) - A prelude?
+Vorspiel
+10
+
+Music: Terms: (Ger.) - A setting. (1) A musical setting; (2) A movement in a composition; (3) Style (e.g. freier satz, free style; (4) A theme or subject?
+Satz
+10
+
+Music: Terms: (Ger.) - A short piece similar to capriccio or intermezzo?
+Fantasiestuck
+10
+
+Music: Terms: (Ger.) - Alliteration. This term describes the alliterative verse used by Wagner in his music dramas?
+Stabreim
+10
+
+Music: Terms: (Ger.) - An appoggiatura?
+Vorschlag
+10
+
+Music: Terms: (Ger.) - An interlude or episode (e.g. in a fugue or rondo)?
+Zwischenspiel
+10
+
+Music: Terms: (Ger.) - An opera term for a 'sitting rehearsal' when all performers sing through the roles while sitting down, with the accompaniments played by the orchestra?
+Sitz-probe
+10
+
+Music: Terms: (Ger.) - At a moderate speed?
+Gehend
+10
+
+Music: Terms: (Ger.) - Beat?
+Schlag
+10
+
+Music: Terms: (Ger.) - Chamber. Kammerrnusik, chamber music?
+Kammer
+10
+
+Music: Terms: (Ger.) - Cheerful?
+Heiter
+10
+
+Music: Terms: (Ger.) - Clef?
+Schlussel
+10
+
+Music: Terms: (Ger.) - Cradle song?
+Wiegenlied
+10
+
+Music: Terms: (Ger.) - Dance?
+Tanz
+10
+
+Music: Terms: (Ger.) - Detached. Same as staccato?
+Gestossen
+10
+
+Music: Terms: (Ger.) - Drinking song?
+Trinklied
+10
+
+Music: Terms: (Ger.) - Dying away, fading?
+Schwindend
+10
+
+Music: Terms: (Ger.) - Easy going, cosy, comfortable?
+Gemutlich
+10
+
+Music: Terms: (Ger.) - End?
+Schluss
+10
+
+Music: Terms: (Ger.) - Exercise?
+Ubung
+10
+
+Music: Terms: (Ger.) - Fantasy?
+Phantasie
+10
+
+Music: Terms: (Ger.) - Fast. Schneller, quicker?
+Schnell
+10
+
+Music: Terms: (Ger.) - Flowing?
+Fliessend
+10
+
+Music: Terms: (Ger.) - Fugue?
+Fuge
+10
+
+Music: Terms: (Ger.) - Heavy, weighty?
+Wuchtig
+10
+
+Music: Terms: (Ger.) - Held back, tempo sustained?
+Gemessen
+10
+
+Music: Terms: (Ger.) - Hindemith's term for works (mainly in the 1920s) intended to be closer to the public and directed to a social or educational purpose, utilising idioms in everyday use. Gebrauchmusik was represented in many forms, including music written to be played by anyone?
+Gebrauchmusik
+10
+
+Music: Terms: (Ger.) - Holding back, slowing down?
+Zuruckhaltend
+10
+
+Music: Terms: (Ger.) - Indication to pianists to use the soft (left) pedal?
+Verschiebung
+10
+
+Music: Terms: (Ger.) - Intimate, heartfelt?
+Innig
+10
+
+Music: Terms: (Ger.) - Inversion, reversal?
+Umkehrung
+10
+
+Music: Terms: (Ger.) - Leading motif. This is a recurring theme symbolising a character, emotion or object and was first used by H. Von Wolzogen in a discussion of Wagner's The Ring?
+Leitmotif
+10
+
+Music: Terms: (Ger.) - Lightly?
+Leicht
+10
+
+Music: Terms: (Ger.) - Little?
+Klein
+10
+
+Music: Terms: (Ger.) - Lively?
+Lebhaft
+10
+
+Music: Terms: (Ger.) - Loud, strong?
+Stark
+10
+
+Music: Terms: (Ger.) - Markedly?
+Gut
+10
+
+Music: Terms: (Ger.) - Muted?
+Gedampft
+10
+
+Music: Terms: (Ger.) - Note or sound (not the interval of a tone, i.e. two semitones)?
+Ton
+10
+
+Music: Terms: (Ger.) - Optional dances (e.g. polonaise or minuet) in the 18th century suite, normally placed between the sarabande and gigue?
+Galantieren
+10
+
+Music: Terms: (Ger.) - Ornament in German music in the 17th and 18th centuries?
+Nachschlag
+10
+
+Music: Terms: (Ger.) - Over, above?
+Uber
+10
+
+Music: Terms: (Ger.) - Rather slow?
+Ziemlich langsam
+10
+
+Music: Terms: (Ger.) - Rather?
+Ziemlich
+10
+
+Music: Terms: (Ger.) - Rattle?
+Ratsche
+10
+
+Music: Terms: (Ger.) - Recitative?
+Rezitativ
+10
+
+Music: Terms: (Ger.) - Restless?
+Unruhig
+10
+
+Music: Terms: (Ger.) - Sacred?
+Geistlich
+10
+
+Music: Terms: (Ger.) - Sad?
+Traurig
+10
+
+Music: Terms: (Ger.) - Same as utility music?
+Gebrauchmusik
+10
+
+Music: Terms: (Ger.) - Serenade or 'night music'. A title used in Mozart's Eine Klcine Nachtmusik?
+Nachtmusik
+10
+
+Music: Terms: (Ger.) - Simply?
+Einfach
+10
+
+Music: Terms: (Ger.) - Slow and sustained. Same as sostenuto?
+Getragen
+10
+
+Music: Terms: (Ger.) - Smooth. Same as legato?
+Geschleift
+10
+
+Music: Terms: (Ger.) - Soft, gentle. Leiser, softer?
+Leise
+10
+
+Music: Terms: (Ger.) - Songful?
+Gesangvoll
+10
+
+Music: Terms: (Ger.) - Stepwise, at a walking pace and equivalent of andante?
+Schrittmassig
+10
+
+Music: Terms: (Ger.) - Sustained. Cutgehalten, well sustained?
+Gehalten
+10
+
+Music: Terms: (Ger.) - Swing. Schwungvol, spirited?
+Schwung
+10
+
+Music: Terms: (Ger.) - Symphony?
+Sinfonie
+10
+
+Music: Terms: (Ger.) - Tempo?
+Zeitmass
+10
+
+Music: Terms: (Ger.) - Tender?
+Zart
+10
+
+Music: Terms: (Ger.) - tenderly?
+Zartlich
+10
+
+Music: Terms: (Ger.) - tenderness?
+Zarthcit
+10
+
+Music: Terms: (Ger.) - Time?
+Mal
+10
+
+Music: Terms: (Ger.) - To drag. Schleppend, dragging?
+Schleppen
+10
+
+Music: Terms: (Ger.) - To hurry. Nicht cilen, do not hurry?
+Eilen
+10
+
+Music: Terms: (Ger.) - To, after?
+Nach
+10
+
+Music: Terms: (Ger.) - Under, lower?
+Unter
+10
+
+Music: Terms: (Ger.) - Very?
+Sehr
+10
+
+Music: Terms: (Ger.) - Waltz?
+Waltzer
+10
+
+Music: Terms: (Ger.) - Weak, soft?
+Schwach
+10
+
+Music: Terms: (Ger.) - With?
+Mit
+10
+
+Music: Terms: (Ger.) - Without?
+Ohne
+10
+
+Music: Terms: (Ger.), motive (Eng.) - (1) A short but recognisable melodic or rhythmic figure. (2) In analysis, this term describes the smallest subdivision of (e.g. a theme). moto (It.) - Movement. Con Moto means 'with movement'?
+Motiv
+10
+
+Music: Terms: (Gk ., ' breath ' ) - A type of florid passage in plainsong sung to a single vowel?
+Pneuma
+10
+
+Music: Terms: (Gk ., 'equal-rhythmed') - A device used in motets around 1300- 1450 in which the rhythmic pattern is repeated according to a strict scheme. This usually occurs in the tenor line in which the rhythm is repeated several times in diminishing note values?
+Isorhythmic
+10
+
+Music: Terms: (Gk., ' song'; plural melismata) - Describes a group of notes sung to the same syllable. However, the term is also applied to any florid vocal passage of improvisatory or cadenza-like nature?
+Melisma
+10
+
+Music: Terms: (Gk., 'new') - A prefix indicating a new interest in older styles (e.g. neo- romantic refers to composers in the 20th century writing in the romantic style)?
+Neo
+10
+
+Music: Terms: (Gk., 'same-sounding') - Music in which parts move together presenting a top melody with accompanying chords. The opposite of polyphony?
+Homophony
+10
+
+Music: Terms: (Gk., 'single song') - A term used to describe a solo song with accompaniment (or continuo) in contrast to the polyphonic style in which all parts are of equal importance?
+Monody
+10
+
+Music: Terms: (Gk., 'single sound') - This term describes music with a single melody line without support of accompaniment?
+Monophony
+10
+
+Music: Terms: (Hung.) - Hungarian dance in contrasting sections (slow and fast)?
+Csardas
+10
+
+Music: Terms: (I) A flourish for trumpets (or other imitating instruments) usually for an introduction or proclamation; (2) French for brass band?
+Fanfare
+10
+
+Music: Terms: (I) Alternative name for the madrigal; (2) Any piece representing country life?
+Pastoral
+10
+
+Music: Terms: (I) An instrumental or vocal piece intended to improve aspects of technique and of no artistic value. (2) The term for a keyboard suite in the 18th century?
+Exercise
+10
+
+Music: Terms: (I) Fanfare; (2) Decorative musical figuration notated or improvlsed?
+Flourish
+10
+
+Music: Terms: (I) In a rondo, this is a contrasting section between episodical form recurrences of the main theme. (2) In a fugue, it is a section linking (by means of contrast, modulation or possibly using subject material) one entry and another. In both contexts, an episode has a subordinate role?
+Episode
+10
+
+Music: Terms: (I) In the early 17th century this described the new expressive music; (2) Between 1850 and 1900 it described the new music of Wagner and Liszt as opposed to the more traditional music of Brahms; (3) Today it refers to music by contemporary composers?
+New music
+10
+
+Music: Terms: (I) Music inserted between other pieces of music (e.g. organ passages between hymn verses); (2) Music inserted between acts of plays or other non-musical events?
+Interlude
+10
+
+Music: Terms: (I) On stringed instruments, this is the placing of the left hand fingers on the strings to shorten the vibrating length and to raise the pitch. The terms double stopping, triple stopping, etc. refer to two or three notes simultaneously being played this way; (2) In horn playing, this is the insertion of the hand into the bell of the instrument to alter the pitch and tone quality of a note?
+Stopping
+10
+
+Music: Terms: (I) The entrance of a theme in a fugue occurring not only at the beginning but also at later stages in the composition. (2) A 17th century term for a prelude?
+Entry
+10
+
+Music: Terms: (I) The interval consisting of two semitones (e.g. C to D)?
+Whole tone
+10
+
+Music: Terms: (Ir. caoine) - An Irish funeral song accompanied by wailing?
+Keen
+10
+
+Music: Terms: (It . 'wood ') - (1) Direction in some scores to use the woodblock; (2) Direction to string players to hit the string with the back of the bow?
+Leyno
+10
+
+Music: Terms: (It ) - End. This term sometimes occurs in the middle of music, often where there is an instruction to repeat an opening section. The directionfine indicates the end of a piece?
+Fine
+10
+
+Music: Terms: (It. 'a little return') - Many meanings, but the following are the most common. (I) In a concerto, it is a passage for the full orchestra without the soloist; (2) In the 14th century Italian madrigal, the ritornello is the closing section; (3) In early opera, it was an instrumental piece?
+Ritornello
+10
+
+Music: Terms: (It. 'mano sinistra') - Left hand. Instruction to play with left hand in piano playing?
+MS
+10
+
+Music: Terms: (It. ) - Abbreviation for viola da gamba?
+Gamba
+10
+
+Music: Terms: (It. ) - Morning song?
+Mattinata
+10
+
+Music: Terms: (It. ) - Very slightly. Superlative of poco?
+Pochissimo
+10
+
+Music: Terms: (It., 'a flowering') - Decoration of a melody with ornaments which may be notated or improvised. Evident in 17th and 18th century Italian opera?
+Fioritura
+10
+
+Music: Terms: (It., 'a little largo') - Not quite as slow as a largo?
+Larghetto
+10
+
+Music: Terms: (It., 'above') - Usually found in piano music indicating that one hand has to pass over the other?
+Sopra
+10
+
+Music: Terms: (It., 'alone') - A piece or passage for one performer. A solo concerto is a concerto for one main performer with the others merely accompanving?
+Solo
+10
+
+Music: Terms: (It., 'booklet') - The text of an opera or oratorio?
+Libretto
+10
+
+Music: Terms: (It., 'broad') - Slow and broad?
+Largo
+10
+
+Music: Terms: (It., 'changed note') - A contrapuntal device whereby a dissonant note is used when one expects a consonant one?
+Nota cambiata
+10
+
+Music: Terms: (It., 'chest') - In musical contexts used as in voci di petto, chest voice?
+Petto
+10
+
+Music: Terms: (It., 'detached') - The note is performed shorter than normal. A dash beneath or above the note indicates that the note is to be played as short as possible. A dot means the note is to be short. The superlative is staccatissimo?
+Staccato
+10
+
+Music: Terms: (It., 'evaporated') - Light and airy playing. The term was used by Chopin?
+Sfogato
+10
+
+Music: Terms: (It., 'extinct') - Music to be played so that it is barely audible?
+Estinto
+10
+
+Music: Terms: (It., 'first lady') - A female singer with the most important part in an opera?
+Prima donna
+10
+
+Music: Terms: (It., 'German') - Alla tedesca, in the German fashion, usually implying music to be played in the style of a German dance?
+Tedesco
+10
+
+Music: Terms: (It., 'half') - Mezzo-soprano, female voice midway between a soprano and contralto range?
+Mezzo
+10
+
+Music: Terms: (It., 'it follows') - An indication that the performer should go straight on to the next section without a break?
+Segue
+10
+
+Music: Terms: (It., 'joke') - Generally this is a lively movement, but chiefly developed by Haydn, Mozart and particularly Beethoven from the symphonic minuet. Usually it is in 3 / 4 time in the form A A B A with the B section being called trio?
+Scherzo
+10
+
+Music: Terms: (It., 'limp') - Term describes music with a prominent Scotch snap or syncopation?
+Zoppa
+10
+
+Music: Terms: (It., 'little opera') - A term applied in the l9th century to lighter styles of opera involving dialogue. Composers included Offenbach, Johann Strauss and Sullivan. This style is sometimes referred to as light opera?
+Operetta
+10
+
+Music: Terms: (It., 'little tail') - Similar to coda but on a smaller scale, eg. rounding off a section of a movement as opposed to a whole movement?
+Codetta
+10
+
+Music: Terms: (It., 'losing itself') - Gradually dying away?
+Perdendosi
+10
+
+Music: Terms: (It., 'master') - This title was given to well-known conductors and composers in Italy. It is now used (sometimes rather amusingly) elsewhere?
+Maestro
+10
+
+Music: Terms: (It., 'obligatory') - An obbligato part is one which has an important and unusual special role and cannot be dispensed with, as opposed to an optional part. However, in some l9th century music, the term obbligato was applied to an additional optional part?
+Obbligato
+10
+
+Music: Terms: (It., 'obstinate') - A persistently repeated musical figure or rhythm. A basso ostinato or ground bass has this feature in the bass part. otez (Fr.) - Take off. Otez Ies sourdines, take off the mutes?
+Ostinato
+10
+
+Music: Terms: (It., 'pie') - An operatic work with the material drawn from the works of various composers, especially popular in the 18th century?
+Pasticcio
+10
+
+Music: Terms: (It., 'place') - An indication to a performer that music is to be played at the pitch written. This direction may (a) cancel previous indications to play at a different pitch or (b) indicate a passage to be played in the normal position as opposed to any other in string music?
+Loco
+10
+
+Music: Terms: (It., 'robbed') - An indication to play notes with a controlled flexibility of time by getting slightly quicker or slower. Much used in l9th century music?
+Rubato
+10
+
+Music: Terms: (It., 'similar') - Indicates that a phrase, etc. is to be performed in the same manner as the previous one?
+Simile
+10
+
+Music: Terms: (It., 'something in the middle') - (I) An instrumental piece in opera, i.e. performed while the stage is empty; (2) A short concert piece. Brahms wrote in this style?
+Intermezzo
+10
+
+Music: Terms: (It., 'stage' or 'scene') - (1) A scene in an opera consisting of an extended aria of dramatic nature; (2) A dramatic concert piece for solo voice with accompaniment?
+Scena
+10
+
+Music: Terms: (It., 'texture') - The natural compass of a singer's voice, or simply the compass of a vocal or instrumental part in a composition?
+Tessitura
+10
+
+Music: Terms: (It., 'tightening') - A heightening of tension in the music which in effect means an increase in speed?
+Stringendo
+10
+
+Music: Terms: (It., 'trembling') - Employing tremolo?
+Tremolando
+10
+
+Music: Terms: (It., 'truncated') - A note broken off abruptly especially in vocal music?
+Tronco
+10
+
+Music: Terms: (It.,'tail') - The concluding section at the end of a movement, not usually of structural necessity. However, Beethoven's codas have great significance in his musical design?
+Coda
+10
+
+Music: Terms: (It.) - (1) But; (2) Abbreviation of the major scale?
+Ma
+10
+
+Music: Terms: (It.) - (1) In strict time. (2) At a reasonable speed?
+Giusto
+10
+
+Music: Terms: (It.) - (1) Soft, abbreviation p; (2) Standard abbreviation in French and English for pianoforte?
+Piano
+10
+
+Music: Terms: (It.) - (I) An instrumental movement with long bass notes giving a drone-like effect in 6 / 8 or 12 / 8 time; (2) Obsolete term for a stage entertainment based on a legendary or rustic subject?
+Pastorale
+10
+
+Music: Terms: (It.) - (I) The rapid reiteration of a single note. (2) The rapid alteration between two or more notes?
+Tremolo
+10
+
+Music: Terms: (It.) - A bass line or pattern repeated over and over while upper parts proceed. The ground bass is a foundation for varied melodic, contrapuntal or harmonic treatment. Forms which use this device include the chaconne and passacaglia?
+Basso ostinato
+10
+
+Music: Terms: (It.) - A bowing indication for string players to play near the bridge to achieve a brittle tone?
+Sul ponticello
+10
+
+Music: Terms: (It.) - A bowing indication to string players to play near or above the fingerboard, producing a 'colourless' tone?
+Sul tasto
+10
+
+Music: Terms: (It.) - A comic opera especially in the 18th century (e.g. by Pergolesi)?
+Opera buffa
+10
+
+Music: Terms: (It.) - A held or sustained note (of a single note or chord) where one might expect to play staccato. Abbreviation is ten?
+Tenuto
+10
+
+Music: Terms: (It.) - A little duet?
+Duettino
+10
+
+Music: Terms: (It.) - A measure. Senza misura, not in strict time?
+Misura
+10
+
+Music: Terms: (It.) - A popular and light Italian strophic song for several voices, with the melody on top, flourishing around 1500. Particularly heard in aristocratic circles?
+Frottola
+10
+
+Music: Terms: (It.) - A quick Italian dance in 6 / 8 time similar to the tarantella with a characteristic jumping feel to the rhythm. Examples date from the 14th century?
+Saltarello
+10
+
+Music: Terms: (It.) - A rest (not a pause)?
+Pausa
+10
+
+Music: Terms: (It.) - A short scherzo?
+Scherzetto
+10
+
+Music: Terms: (It.) - A shorter, lighter symphony. Also sometimes used as a performing name for small orchestras?
+Sinfonietta
+10
+
+Music: Terms: (It.) - A suite. This term was much used in the 18th century. In the 17th century, however, a partita was a variation?
+Partita
+10
+
+Music: Terms: (It.) - A very fast Italian dance with alternating major and minor key sections in 6 / 8 time?
+Tarantella
+10
+
+Music: Terms: (It.) - Agile and florid style of vocal performance?
+Coloratura
+10
+
+Music: Terms: (It.) - Alluringly?
+Lusingando
+10
+
+Music: Terms: (It.) - Always. Sempre piu mosso, always getting faster?
+Sempre
+10
+
+Music: Terms: (It.) - Animated?
+Risvegliato
+10
+
+Music: Terms: (It.) - Animated, moving?
+Mosso
+10
+
+Music: Terms: (It.) - As far as the sign?
+Fino al segno
+10
+
+Music: Terms: (It.) - As if, almost?
+Quasi
+10
+
+Music: Terms: (It.) - At a moderate pace. This term is used in other tempos (e.g. allegro moderato, implying a moderately fast pace)?
+Moderato
+10
+
+Music: Terms: (It.) - At pleasure (e.g. not at any strict speed)?
+Piacere a
+10
+
+Music: Terms: (It.) - At the same tempo?
+Istesso tempo
+10
+
+Music: Terms: (It.) - Becoming gradually softer?
+Decrescendo
+10
+
+Music: Terms: (It.) - Becoming slower. Abbreviation is rit?
+Ritardando
+10
+
+Music: Terms: (It.) - Becoming slower?
+Slentando
+10
+
+Music: Terms: (It.) - Broad and deliberate in style?
+Largamente
+10
+
+Music: Terms: (It.) - By, through, for (e.g. per archi, for strings)?
+Per
+10
+
+Music: Terms: (It.) - Calm?
+Tranquillo
+10
+
+Music: Terms: (It.) - Carrying sound. On bowed string instruments or in singing, the effect is obtained by gliding from one note to another higher or lower one, without a break in the sound?
+Portamento
+10
+
+Music: Terms: (It.) - Change. Direction to the timpani player to change tuning or to the wind player to change instrument?
+Muta
+10
+
+Music: Terms: (It.) - Clearly articulated. This term is used in string playing for a light, staccato touch created by playing with the middle of the bow and a loose wrist?
+Splccato
+10
+
+Music: Terms: (It.) - Distant?
+Lontano
+10
+
+Music: Terms: (It.) - Doubling. Usually indicates doubling of the bass at an octave below?
+Raddoppiamento
+10
+
+Music: Terms: (It.) - Dragging?
+Strascinando
+10
+
+Music: Terms: (It.) - Drawn together, close; (1) Indication to quicken pace. (2) In a fugue, the term describes the overlapping of the entries when the subject begins in one voice before the preceding entry has finished?
+Stretto
+10
+
+Music: Terms: (It.) - Dying away (of force and sometimes, speed)?
+Morendo
+10
+
+Music: Terms: (It.) - Dying away?
+Smorzando
+10
+
+Music: Terms: (It.) - English?
+Inglese
+10
+
+Music: Terms: (It.) - Fast and light?
+Volante
+10
+
+Music: Terms: (It.) - Fast. In Mozart's music this means as fast as possible?
+Presto
+10
+
+Music: Terms: (It.) - Final. In English there are two main meanings: (1) the last movement of a work in several movements; (2) the lengthy concluding section of an opera, often subdivided into smaller sections with contrasting tempos or keys. Involves several singers and often a chorus?
+Finale
+10
+
+Music: Terms: (It.) - Fire?
+Fuoco
+10
+
+Music: Terms: (It.) - First time?
+Prima volta
+10
+
+Music: Terms: (It.) - First. (1) Upper part of a piano duet, the lower part being termed sccondo; (2) The first of two or more performers (e.g. violino primo means first violin). (3) Tempo primo indicates that the original speed is to be resumed?
+Primo
+10
+
+Music: Terms: (It.) - First?
+Primo
+10
+
+Music: Terms: (It.) - Force?
+Forza
+10
+
+Music: Terms: (It.) - Freedom, licence. Con akune licenze, with some freedom in style?
+Licenza
+10
+
+Music: Terms: (It.) - Funeral. March funebre, funeral march?
+Funebre
+10
+
+Music: Terms: (It.) - Gay?
+Gaio
+10
+
+Music: Terms: (It.) - Generally this term means 'all the players' (e.g. in a concerto). The expression is used when the orchestra is playing without the soloist. In choral works tutti means chorus as opposed to soloists, or full chorus as opposed to semi-chorus?
+Tutti
+10
+
+Music: Terms: (It.) - Generally, an instrumental composition in which one section recurs at certain times. By the 18th century, a standard pattern had developed as A B A C A D A, etc. appearing as the last movement of a sonata or concerto. The recurring theme A is called the rondo theme and B C D, etc. represent the contrasting sections known as episodes. However, A can be varied. The combination of sonata form and rondo resulted in sonata rondo which was much used by Mozart and Beethoven?
+Rondo
+10
+
+Music: Terms: (It.) - Gentle, delicate?
+Morbido
+10
+
+Music: Terms: (It.) - Getting gradually louder?
+Crescendo
+10
+
+Music: Terms: (It.) - Getting slower?
+Rallentando
+10
+
+Music: Terms: (It.) - Graceful?
+Garbato
+10
+
+Music: Terms: (It.) - Gradually becoming softer. See decrescendo?
+Diminuendo
+10
+
+Music: Terms: (It.) - Grandeur?
+Grandezza
+10
+
+Music: Terms: (It.) - Half?
+Meta
+10
+
+Music: Terms: (It.) - Haydn and Mozart's preferred title to concerto for an orchestral work with more than one solo parts?
+Sinfonia concertante
+10
+
+Music: Terms: (It.) - Heavy, ponderous?
+Pesante
+10
+
+Music: Terms: (It.) - Held back (tempo). Sometimes used as an equivalent of ritardando?
+Ritenuto
+10
+
+Music: Terms: (It.) - Humour. Con umore, with humour?
+Umore
+10
+
+Music: Terms: (It.) - Impetuously?
+Precipitato
+10
+
+Music: Terms: (It.) - In a pompous manner?
+Pomposo
+10
+
+Music: Terms: (It.) - In a resolute manner?
+Risoluto
+10
+
+Music: Terms: (It.) - In an imposing manner?
+Grandioso
+10
+
+Music: Terms: (It.) - In the old concerto grosso, the ripieno indicates the full body of performers as opposed to the solo group (concertino). Scnza ripieni indicates that the first desks only of the accompanying orchestra are to play?
+Ripieno
+10
+
+Music: Terms: (It.) - In the style of gypsy music?
+Zingarese
+10
+
+Music: Terms: (It.) - In the style or manner of?
+In modo di
+10
+
+Music: Terms: (It.) - In the Turkish style?
+Turca
+10
+
+Music: Terms: (It.) - Incisive?
+Inciso
+10
+
+Music: Terms: (It.) - Indication to pianist to release the left-hand pedal?
+Tutte le corde
+10
+
+Music: Terms: (It.) - Indication to pianists that the left (soft) pedal is to be released?
+Tre corde
+10
+
+Music: Terms: (It.) - Indication to pianists to use the left (soft) pedal to reduce the volume?
+Una corda
+10
+
+Music: Terms: (It.) - Indication to pluck notes on a bowed string instrument. Abbreviation pizz?
+Pizzicato
+10
+
+Music: Terms: (It.) - Labouring, holding back on each note?
+Stentando
+10
+
+Music: Terms: (It.) - Left hand?
+Sinistra
+10
+
+Music: Terms: (It.) - Less?
+Meno
+10
+
+Music: Terms: (It.) - Light, lightly?
+Leggiero
+10
+
+Music: Terms: (It.) - Lively?
+Vivace
+10
+
+Music: Terms: (It.) - Lively?
+Vivo
+10
+
+Music: Terms: (It.) - Long?
+Lungo
+10
+
+Music: Terms: (It.) - Loud. Abbreviated f?
+Forte
+10
+
+Music: Terms: (It.) - Majestic, dignified?
+Maestoso
+10
+
+Music: Terms: (It.) - Major?
+Maggiore
+10
+
+Music: Terms: (It.) - Manner. In modo di, in the manner of?
+Modo
+10
+
+Music: Terms: (It.) - March. Alla marcia, in a march-like style?
+Marcia
+10
+
+Music: Terms: (It.) - Marked, emphatic?
+Marcato
+10
+
+Music: Terms: (It.) - Martial?
+Marziale
+10
+
+Music: Terms: (It.) - Melancholy?
+Malinconia
+10
+
+Music: Terms: (It.) - Merry, playful?
+Giocoso
+10
+
+Music: Terms: (It.) - More. Piu lento, slower?
+Pi
+10
+
+Music: Terms: (It.) - Mournful?
+Flebile
+10
+
+Music: Terms: (It.) - Mournful, sad?
+Lacrimoso
+10
+
+Music: Terms: (It.) - Much, very?
+Molto
+10
+
+Music: Terms: (It.) - Mute. (1) Of a string or wind instrument, con sordino or con sordini means with mute(s). Senza sordino or senza sordini means without mutes; (2) In piano playing scnza sordini indicates that dampers are to be raised and the performer is to use the sustaining, or right pedal. Alternative and more common term is ped?
+Sordino
+10
+
+Music: Terms: (It.) - Noisy?
+Strepitoso
+10
+
+Music: Terms: (It.) - Nothing. A niente, to nothing. Used after a diminuendo symbol to indicate the sound dying away entirely. nobile, nobilmente (It.) - Noble, nobly?
+Niente
+10
+
+Music: Terms: (It.) - Octave. Often written 8ve. All'ottava, at the octave and ottava bassa, an octave lower?
+Ottava
+10
+
+Music: Terms: (It.) - Or. Indicates an alternative passage (usually a simpler version) in a composition?
+Ossia
+10
+
+Music: Terms: (It.) - Pause?
+Fermata
+10
+
+Music: Terms: (It.) - Plaintively?
+Piangendo
+10
+
+Music: Terms: (It.) - Played by instruments?
+Stromentato
+10
+
+Music: Terms: (It.) - Playfully, light-hearted?
+Scherzando
+10
+
+Music: Terms: (It.) - Pleasantly?
+Piacevole
+10
+
+Music: Terms: (It.) - Pleasing?
+Gradevole
+10
+
+Music: Terms: (It.) - Point of the bow?
+Punta d'arco
+10
+
+Music: Terms: (It.) - Precise?
+Preciso
+10
+
+Music: Terms: (It.) - Quick, rapid?
+Tosto
+10
+
+Music: Terms: (It.) - Rage?
+Rabbia
+10
+
+Music: Terms: (It.) - Realism. Particularly applied to Italian opera around 1900 with its violent and contemporary leanings?
+Verismo
+10
+
+Music: Terms: (It.) - Reinforcing. A sudden strong accent on notes or chords. Similar to sforzando?
+Rinforzando
+10
+
+Music: Terms: (It.) - Repeat?
+Replica
+10
+
+Music: Terms: (It.) - Rhythm?
+Ritmo
+10
+
+Music: Terms: (It.) - Sad?
+Mesto
+10
+
+Music: Terms: (It.) - Scurrying, rapid?
+Scorrevole
+10
+
+Music: Terms: (It.) - See polonaise?
+Polacca
+10
+
+Music: Terms: (It.) - Serious opera and opposite of opera buffa. This term is especially applied to the flourishing 18th century style as used by Rossini. Characterised by the use of castrato singers, heroic or mythological plots, Italian libretti and formality in the music and action?
+Opera seria
+10
+
+Music: Terms: (It.) - Short fugue?
+Fughetta
+10
+
+Music: Terms: (It.) - Sign. Dal segno, from the sign. This means the performer must repeat the passage from the appropriate sign?
+Segno
+10
+
+Music: Terms: (It.) - Simple, simply?
+Semplice
+10
+
+Music: Terms: (It.) - Singing or speech by an adult male voice in a higher register than normal. It is sometimes used for a comic effect and is used by tenors for notes above their normal range?
+Falsetto
+10
+
+Music: Terms: (It.) - Slightly, little, rather. Poco crescendo, getting slightly louder. poco a poco, little by little?
+Poco
+10
+
+Music: Terms: (It.) - Slow and solemn?
+Grave
+10
+
+Music: Terms: (It.) - Smooth?
+Spianato
+10
+
+Music: Terms: (It.) - Smoothly?
+Legato
+10
+
+Music: Terms: (It.) - So much. Allegro non tanto, not too fast?
+Tanto
+10
+
+Music: Terms: (It.) - Solely?
+Soltanto
+10
+
+Music: Terms: (It.) - Somewhat, rather?
+Piuttosto
+10
+
+Music: Terms: (It.) - Spirit, spirited?
+Spiritoso
+10
+
+Music: Terms: (It.) - Strongly accented. Abbreviated fz?
+Forzando
+10
+
+Music: Terms: (It.) - Style?
+Stile
+10
+
+Music: Terms: (It.) - Suddenly?
+Subito
+10
+
+Music: Terms: (It.) - Sustained, in a smooth manner. The sostenuto pedal on the piano is the middle pedal, only fitted on more expensive instruments. This enables the performer to select notes he wishes to be sustained?
+Sostenuto
+10
+
+Music: Terms: (It.) - Sustaining?
+Tenendo
+10
+
+Music: Terms: (It.) - Sweet and gentle?
+Dolce
+10
+
+Music: Terms: (It.) - Sweetly, tenderly?
+Soave
+10
+
+Music: Terms: (It.) - Tenderly?
+Teneramente
+10
+
+Music: Terms: (It.) - The bass part (played on keyboard or other chordal instrument) with figures written below the notes indicating the harmonies to be played above them. This system was used greatly in the baroque period as an accompaniment for soloists or to enrich the general texture of a larger composition?
+Basso continuo
+10
+
+Music: Terms: (It.) - The chief castrato or tenor role, used in the 18th century?
+Primo vomo
+10
+
+Music: Terms: (It.) - The steady increasing and decreasing of volume on one long held note in singing?
+Messa di voce
+10
+
+Music: Terms: (It.) - Theme?
+Tema
+10
+
+Music: Terms: (It.) - Then. In the phrase scherzo da capo, e poi la coda it means repeat the scherzo and then go on to the coda?
+Poi
+10
+
+Music: Terms: (It.) - Threatening?
+Minacciando
+10
+
+Music: Terms: (It.) - Time, pace?
+Tempo
+10
+
+Music: Terms: (It.) - Time. (1) The terms prima volta (first time) and seconda volta (second time) are used when a section of a composition, or the composition, is to be repeated with some change in the final bar(s) indicated by these words and horizontal brackets; (2) A lively dance in 6 / 8 time popular in the late 16th and early 17th centuries in which men swing women high in the air?
+Volta
+10
+
+Music: Terms: (It.) - Too much?
+Troppo
+10
+
+Music: Terms: (It.) - Turn over (the page) quickly. Volti subito, turn quickly?
+Volti
+10
+
+Music: Terms: (It.) - Two strings. In piano music this occasionally indicates the release of the soft pedal (same as Tre Corde)?
+Due corde
+10
+
+Music: Terms: (It.) - Urged on, pushed?
+Spinto
+10
+
+Music: Terms: (It.) - Usually an 18th century term for an entertaining suite of movements for chamber ensemble or orchestra. Mozart wrote in this style?
+Divertimento
+10
+
+Music: Terms: (It.) - Very fast. Superlative of presto?
+Prestissimo
+10
+
+Music: Terms: (It.) - Very loud. Abbreviated ff?
+Fortissimo
+10
+
+Music: Terms: (It.) - Very slightly, very little. Diminutive of poco?
+Pochettino
+10
+
+Music: Terms: (It.) - Very soft, with abbreviation pp?
+Pianissimo
+10
+
+Music: Terms: (It.) - Voice-part?
+Parte
+10
+
+Music: Terms: (It.) - Voice?
+Voce
+10
+
+Music: Terms: (It.) - Whispered, barely audible. This term is applicable to both instrumental and vocal music?
+Sotto voce
+10
+
+Music: Terms: (It.) - With a forced manner (of a note or chord). Abbreviation is sf?
+Sforzando
+10
+
+Music: Terms: (It.) - With expression?
+Espressivo
+10
+
+Music: Terms: (It.) - With fire?
+Con fuoco
+10
+
+Music: Terms: (It.) - With force, vigorously?
+Con forza
+10
+
+Music: Terms: (It.) - Without?
+Senza
+10
+
+Music: Terms: (It.) Abbreviation of basso continuo. Same as figured bass?
+Continuo
+10
+
+Music: Terms: (It.), fantaisie (Fr.), fantasie (Ger.), fantasy (Eng.) - This style is generally associated with the abandoning of set rules for free flights of the composer's imagination. Specific definitions include: (I) a romantic mood piece of the 19th century(e.g. by Schumann); (2) a contrapuntal piece, in several sections for one or many players, current in the 16th and 17th centuries, of improvisatory nature, with 'fancy' as an alternative name. The title phantasy was used for the 20th century revival of the form?
+Fantasia
+10
+
+Music: Terms: (It.), jig - A lively dance in binary form, usually in 6 / 8 or 12 / 8 time. Often occurs as the last movement in the 18th century suite?
+Gigue
+10
+
+Music: Terms: (It.), solfege (Fr.) - Ear-training by singing exercises to sol-fa syllables. More advanced forms are sung to vowels known as vocalizzi (lt.) or vocalises (Fr.)?
+Solfeggio
+10
+
+Music: Terms: (It.), sonatine (Fr.) - A little sonata. Shorter, lighter and generally easier to play than a sonata?
+Sonatina
+10
+
+Music: Terms: (It)soft and loud, abrrev. is piano?
+Pianoforte
+10
+
+Music: Terms: (Lat ., 'silent ') - An indication that a performer or instrument has no part in a particular movement or section?
+Tacet
+10
+
+Music: Terms: (Lat. gemellus, 'twin') - A type of two-part late medieval English vocal music, with great use of thirds and sixths?
+Gymel
+10
+
+Music: Terms: (Lat. missa parodia) - A polyphonic mass (e.g. by Palestrina) flourishing in the 16th century based on existing material of a motet or chanson. This term has only been used since the 19th century, however?
+Parody mass
+10
+
+Music: Terms: (Lat., 'perpetually in motion') - A fast piece of music in which a rapid repetitive note-pattern is played throughout?
+Perpetuum mobile
+10
+
+Music: Terms: (Lat., 'what you will') - A piece containing several popular tunes. The composition may be improvised or notated and was especially practised by German composers (e.g. Bach) in the 17th and 18th centuries?
+Quodlibet
+10
+
+Music: Terms: (Lat., 'wheel') - Occasionally this term is used for the round (e.g. of Sumer is Icumen In)?
+Rota
+10
+
+Music: Terms: (Lat.) - (I) A short concise musical setting of the mass. (2) A setting of the Kyrie and Gloria only?
+Missa brevis
+10
+
+Music: Terms: (Lat.) - Mass?
+Missa
+10
+
+Music: Terms: (lt.) - Sorrowful?
+Dolente
+10
+
+Music: Terms: (ment) (Fr.) - Sweet (sweetly), gentle (gently)?
+Douce
+10
+
+Music: Terms: (Old It., 'equal') - Piece or pieces (equali) for instruments of the same kind?
+Equale
+10
+
+Music: Terms: (Sp., 'double step') or paso doble - A modern and quick Spanish dance in 2 / 4 time?
+Pasodoble
+10
+
+Music: Terms: (Sp.) - A Catalonian national dance performed to pipes and drums, often in sections. Similar to the farandole?
+Sardana
+10
+
+Music: Terms: (Sp.) - A lively Spanish dance in 3 / 4 or 6 / 8 time accompanied by guitar, castanets and performers' singing. The fandango includes sudden stops and speed increases?
+Fandango
+10
+
+Music: Terms: (Sp.) - A quick Spanish dance with singing in 3 / 4 time often with castanets and similar to the bolero?
+Seguidilla
+10
+
+Music: Terms: (Sp.) - A sad Andalusian song employing some intervals smaller than a semitone?
+Cante hondo
+10
+
+Music: Terms: (Sp.) - A syncopated Cuban dance introduced into Spain in the l9th century with singing, usually in 2 / 4 time?
+Habanera
+10
+
+Music: Terms: (Sp.) - An Andalusian dance, originating in Malaga, marked by singing. This term also describes an instrumental piece of similar nature?
+Malaguena
+10
+
+Music: Terms: (Sp.) - An Andalusian song performed with guitar accompaniment and dancing of a mostly sad nature. Various types of namenco exist and are named after districts (e.g. malaguena and sevillana). Flamenco-style guitar employs quite different and forceful techniques compared to classical guitar playing?
+Cante flamenco
+10
+
+Music: Terms: (Sp.) - Spanish traditional stage entertainment with satirical spoken dialogue?
+Zaruela
+10
+
+Music: Terms: (Sp.) - Tune, air?
+Tonada
+10
+
+Music: Terms: (Welsh, 'assembly') - Music or competitive festival?
+Eisteddfod
+10
+
+Music: Terms: 3/4 means there are 3 beats to the measure and a ____ gets the beat
+Quarter note
+10
+
+Music: Terms: A 20th century concept of playing a group of adjacent notes simultaneously on the piano (e.g. with the forearm or a piece of wood. The usual term is tone cluster or note cluster. Pioneered by Cowell in 1912 and used by Ives?
+Cluster
+10
+
+Music: Terms: A 20th century concept of playing an adjacent group of notes on a piano simultaneously by applying the forearm, fist or piece of wood to the keyboard?
+Tone cluster
+10
+
+Music: Terms: A 20th century term borrowed from painting and applied to other art forms implying a reaction against impressionism (e.g. the works of composers such as Debussy). Musically it is especially applied to the works of Schonberg, Berg and some compositions of Hindemith?
+Expressionism
+10
+
+Music: Terms: A 20th century term, coined by John Cage, describing a piano which has been prepared by the insertion of objects between the piano strings for performance (e.g. a piece of cardboard)?
+Prepared piano
+10
+
+Music: Terms: A bow stroke on stringed instruments from point to heel. See bowing and down-bow?
+Up-bow
+10
+
+Music: Terms: A C Major Chord is made up of what three notes?
+Ceg
+10
+
+Music: Terms: A cadence which ends on the dominant of the relative minor?
+Phrygian cadence
+10
+
+Music: Terms: A cadence with the chord progression consisting of the dominant (chord V) to the tonic (chord I) which has a 'complete' sound?
+Perfect cadence
+10
+
+Music: Terms: A canon in which the cornposer leaves the performer to decide where and at what pitch the following voices make their entries?
+Riddle canon
+10
+
+Music: Terms: a chain of perfect fifths which will lead back to the original note (at a different octave) after working through the other eleven notes of the chromatic scale. It is useful for learning key signatures?
+Cycle of fifths
+10
+
+Music: Terms: A chord of four notes played on a bowed string instrument?
+Quadruple stop
+10
+
+Music: Terms: A chord on the fourth degree of the scale with a minor third and sixth (e.g. in C major it includes the notes F, A flat and D flat)?
+Neapolitan sixth
+10
+
+Music: Terms: A Christian song of praise sung by a congregation with words specially written?
+Hymn
+10
+
+Music: Terms: A closing cadence consisting of a progression of the subdominant (chord IV) to the tonic (Chord I) sounding like 'Amen'?
+Plagal cadence
+10
+
+Music: Terms: A combination of sonata form and rondo form. In a rondo the five sections are A B A C A. In sonata rondo these become A B A C A B plus coda in which A becomes the first subject, B becomes the second subject and C becomes the development section. This form was rnuch used by Beethoven?
+Sonata rondo
+10
+
+Music: Terms: A composition for eight voices or instruments, or simply eight people?
+Octet
+10
+
+Music: Terms: A composition for five performers?
+Quintet
+10
+
+Music: Terms: A composition for four performers?
+Quartet
+10
+
+Music: Terms: A composition for two performers sometimes with accompaniment. A piano duet is for two pianists on one piano?
+Duet
+10
+
+Music: Terms: A composition in three sections in the form A B A with the first section (A) being repeated (not necessarily exactly). B represents a different middle section?
+Ternary form
+10
+
+Music: Terms: A composition of eight parts or voices, or the group of its performers?
+Octet
+10
+
+Music: Terms: A composition of five voices or instruments?
+Quintet
+10
+
+Music: Terms: A composition usually for two violins and a 'cello, with a keyboard playing the bass line and supporting harmonies. Much favoured in the late 17th and early 18th centuries?
+Trio sonata
+10
+
+Music: Terms: A concerto for three solo instruments with orchestra?
+Triple concerto
+10
+
+Music: Terms: A contrapuntal composition for two or more voices or parts built around a theme, which is successively imitated by entries of each voice at the beginning and developed throughout the piece. The initial entry in the tonic key is called the subject. The second entry in the dominant is called the answer. If this answer is exact (e.g. it reproduces the subject note for note in the dominant) then it is a real answer. If the answer is slightly modified to preserve tonality, it is called a tonal answer. After having announced the subject or answer, each voice passes on to another thematic element known as the countersubject. After each voice has made its initial entry the cxposition or first section of the fugue is complete. Thereafter, further entries of the subject appear, separated by contrapuntal episodes and the subject may be treated by augmentation, diminution, inversion, etc. J.S. Bach was one of the great masters of the fugue?
+Fugue
+10
+
+Music: Terms: A curved line grouping notes together, indicating that they be joined smoothly in performance (eg. sung in one breath or played with one stroke of the bow, etc.)?
+Slur
+10
+
+Music: Terms: A device in part-writing in which one voice repeats (or approximately repeats) a musical figure previously stated by another voice. Canon and fugue employ imitation with strict rules?
+Imitation
+10
+
+Music: Terms: A direction to play loudly?
+Forte
+10
+
+Music: Terms: A direction to play slightly faster than adagio?
+Adagietto
+10
+
+Music: Terms: A direction to play slower, louder?
+Allargando
+10
+
+Music: Terms: A direction to play very slowly?
+Adagissimo
+10
+
+Music: Terms: A direction to repeat from the beginning?
+Da capo
+10
+
+Music: Terms: A drama in which all or most characters sing and in which music is an important element. Early composers of opera include Monteverdi and Purcell. Other composers are Mozart, Beethoven, Rossini, Donizetti, Verdi, Wagner (who preferred the term music drama), Puccini, and in the 20th century, Berg and Britten?
+Opera
+10
+
+Music: Terms: A dramatic stage work for only one character?
+Monodrama
+10
+
+Music: Terms: A fairly quick dance in 4 / 4 time?
+Gavotte
+10
+
+Music: Terms: A fast dance for two or more couples in 2 / 4 or 4 / 4 time, found mainly in Scotland, Ireland, Scandinavia and North America?
+Reel
+10
+
+Music: Terms: A fast, syncopated and suggestive Afro-Cuban dance in 2 / 4 time, divided into eight beats. Became popular in the ballroom and jazz in the 1930s?
+Rumba
+10
+
+Music: Terms: A final piece of a composition?
+Postlude
+10
+
+Music: Terms: A five note scale, the commonest being without minor seconds (e.g. CDEGA-C...)?
+Pentatonic
+10
+
+Music: Terms: A French Baroque dance in duple time with strong beat on beat three?
+Gavotte
+10
+
+Music: Terms: A French square dance popular in the 19th century. It was in five sections alternating between 6 / 8 and 2 / 4 time and performed by two or four couples?
+Quadrille
+10
+
+Music: Terms: A fugue with four different subjects?
+Quadruple fugue
+10
+
+Music: Terms: A Greek word taken into Latin and sometimes used in modern contexts to describe a work equivalent to a symphony?
+Symphonia
+10
+
+Music: Terms: A group of five notes to be performed in the time of 4?
+Quintuplet
+10
+
+Music: Terms: A group of four notes to be played in the time of 3?
+Quadruplet
+10
+
+Music: Terms: A group of notes forming a unit of a melody. To phrase a melody is to observe and mark the divisions of a melody into units or phrases?
+Phrase
+10
+
+Music: Terms: A group of notes or a theme forming a basic element or idea in a composition by repetition and development?
+Subject
+10
+
+Music: Terms: A group of seven notes to be played in the time of 4 or 6?
+Septuplet
+10
+
+Music: Terms: A group of six notes to be peformed in the time of 4?
+Sextolet
+10
+
+Music: Terms: A group of three notes played in the time of 2?
+Triplet
+10
+
+Music: Terms: A harmonic device in which a note in a chord is kept sounding while another chord is played to form a discord. This discord is resolved by the prolonged note usually falling or rising to a note forming part of the new chord?
+Suspension
+10
+
+Music: Terms: A harmonic device in which the effect of a discord is softened by first employing the note which actually causes that chord to be discordant, in the previous note with which it is consonant?
+Preparation
+10
+
+Music: Terms: A l9th century style expressed by writers, painters and by musicians like Chopin, Liszt, Berlioz, Rossini and Paganini. Characteristics are Iyricism, chromatic harmony, an interest in literature, nationalism, programme music, miniature or character pieces and generally emotional aspects governing the traditional, formal musical structures?
+Romantic music
+10
+
+Music: Terms: A large body of instrumentalists which has developed historically. The first orchestras were variable, but by the baroque period they consisted of strings, oboes and bassoons with other solo instruments. Standardisation took place in the classical period when the orchestra was divided into four sections: strings, woodwind (two flutes, two oboes, two bassoons and clarinets), brass (two horns and two trumpets) and percussion consisting of two kettledrums. The orchestra was greatly expanded in the 19th century to include the harp and other percussion. Some 20th century composers began writing for smaller ensembles (perhaps mainly because of economics)?
+Orchestra
+10
+
+Music: Terms: A literary term for a work of pastoral or peaceful nature and transferred to music (e.g. Siegfried Idyll by Wagner)?
+Idyll
+10
+
+Music: Terms: A little sonata?
+Sonatina
+10
+
+Music: Terms: A lively Cossack dance in 2 / 4 time?
+Trepak
+10
+
+Music: Terms: A lively dance usually in triple time often contrasted (although often thematically linked) with the slower pavan which it followed?
+Galliard
+10
+
+Music: Terms: A lively English dance, in triple time in the early 16th century. From the mid 18th century onwards it was in 4 / 4 time, acquiring an association with sailors?
+Hornpipe
+10
+
+Music: Terms: A lowering in pitch which may be a semitone, or a description of someone singing or playing below normal pitch unintentionally. A double flat indicates a lowering of the pitch by two semitones?
+Flat
+10
+
+Music: Terms: A marching piece either slow (4 / 4 time) or quick (2 / 4 or 6 / 8 time)?
+March
+10
+
+Music: Terms: A mass or musical setting for the dead?
+Requiem
+10
+
+Music: Terms: A medieval type of part-writing based on plainsong and harmonised by either one, two or three parallel parts?
+Organum
+10
+
+Music: Terms: A medley of popular tunes?
+Musical switch
+10
+
+Music: Terms: A melodic group of notes forming the basis or chief idea in a composition by repetition or development. In musical analysis it is equated with subject. The term theme and variations describes a long musical statement which is developed?
+Theme
+10
+
+Music: Terms: A mode represented on the white keys of the piano from B to B?
+Locrian mode
+10
+
+Music: Terms: A mode represented on the white notes of the piano from G to G?
+Mixolydian mode
+10
+
+Music: Terms: A moderately fast dance in 2 / 4 time for couples, originating in Bohemia in the 19th century and becoming popular in Europe and the U.S.A?
+Polka
+10
+
+Music: Terms: A moderately fast Spanish dance in 3 / 4 time accompanied by castanets?
+Jodel
+10
+
+Music: Terms: A modern ballroom dance with quick steps?
+Quickstep
+10
+
+Music: Terms: A modernistic principal since 1945 of leaving elements of performance to pure chance (see aleatoric music) or letting performers decide when to play certain passages. Berio, Cage and Stockhausen used this concept in their compositions?
+Indeterminacy
+10
+
+Music: Terms: A musical composition (originating around 1600) consisting of an extended setting of a religious or epic text for chorus, soloists and orchestra for performance in a church or concert hall, although originally oratorios involved scenery, costumes and action. An example is Handel's Messiah of 1742?
+Oratorio
+10
+
+Music: Terms: A musical ornament consisting of rapid alternation starting with the written note and then the note above. In the 17th and 18th centuries the trill started with the note above and then the note below. Also known as shake?
+Trill
+10
+
+Music: Terms: A musical ornament turning around a note starting with the note bove?
+Turn
+10
+
+Music: Terms: A name for the third degree of the scale (e.g. E is in the mediant in C major). The mediant is so-called because it stands between the tonic and dominant?
+Mediant
+10
+
+Music: Terms: A neverending canon popularly known as a round (e.g. Three Blind Mice)?
+Infinite canon
+10
+
+Music: Terms: A nickname for the sustaining (right) pedal on the piano?
+Loud pedal
+10
+
+Music: Terms: A night piece with two main meanings: (1) In the 18th century this was a composition close to a serenade for several instruments and movements. (2) In the romantic period it was a short Iyrical piece in one movement for piano (e.g. by Chopin). noel (Fr., 'Christmas') - A Christmas carol. non (Fr. and It.) - Not?
+Nocturne
+10
+
+Music: Terms: A note which is not part of the chord with which it sounds. This could mean a passing note or an appoggiatura?
+Non-harmonic note
+10
+
+Music: Terms: A note, usually in the bass, which is held below changing harmonies above, with which it may be discordant?
+Pedal point
+10
+
+Music: Terms: A note, which may be accented or unaccented, forming a discord with the chord with which it is heard, but is melodically placed between two consonant notes?
+Passing note
+10
+
+Music: Terms: A pair of notes occupying time usually taken by three (e.g. 6 / 8 or 3 / 8)?
+Duplet
+10
+
+Music: Terms: A performance by one or two performers?
+Recital
+10
+
+Music: Terms: A performer with brilliant technique and exceptional skill?
+Virtuoso
+10
+
+Music: Terms: A plainsong chant sung by a chorus alternating with solo verse(s)?
+Responsory
+10
+
+Music: Terms: A Polish folk dance in moderate to fast 3 / 4 or 3 / 8 time. Adapted and stylised by Chopin?
+Mazurka
+10
+
+Music: Terms: A prefix to a note indicating the pitch is to be lowered by two semitones?
+Double flat
+10
+
+Music: Terms: A progression of single notes in ascending or descending order. A scale may be described as major, minor, chromatic, diatonic, pentatonic, twelve-note or a mode?
+Scale
+10
+
+Music: Terms: A quick 19th century ballroom dance in 2 / 4 time?
+Galop
+10
+
+Music: Terms: A quick, highly syncopated Brazilian carnival song danced usually in 2 / 4 time in a circle with a standard call and response between lead singer and chorus. The ballroom version is danced in couples and is more sedate?
+Samba
+10
+
+Music: Terms: A rapid but minute fluctuation in pitch to give an expressive quality to a note (e.g. by a violinist's oscillations of the left hand). The degree and style is related to the intensity of feeling in the music?
+Vibrato
+10
+
+Music: Terms: A rapid succession of notes on a drum approximating to a continuous sound?
+Roll
+10
+
+Music: Terms: A recurring section of a song (both words and music) at the end of each stanza?
+Refrain
+10
+
+Music: Terms: A responding musical phrase (e.g. in a fugue) which exactly reproduces the subject or entry of a theme at the fifth?
+Real answer
+10
+
+Music: Terms: A restatement of a section of a composition usually indicated by repeat marks which consist of a pair of dots and a double bar. When the performer reaches these repeat marks, he then plays from the previous pair of dots, or if there are none, from the beginning?
+Repeat
+10
+
+Music: Terms: A rhythmic figure consisting of a short note on the beat followed by a longer one held until the next beat. Found in Scottish music but also in other folk music?
+Scotch snap
+10
+
+Music: Terms: A rise in pitch which may be a semitone, or a description of someone singing or playing sharp unintentionally. A double sharp indicates a rising of the pitch by two semitones?
+Sharp
+10
+
+Music: Terms: A sailors' work song with solo verses (often of an extemporised nature) and chorus matching certain rhythmical movements (e.g. pulling a rope together)?
+Shanty
+10
+
+Music: Terms: A Scottish dance related to the reel with a slower tempo and characteristic rhythms with four beats to the bar?
+Strathspey
+10
+
+Music: Terms: A section of a composition, usually with no structural importance?
+Passage
+10
+
+Music: Terms: A secular, polyphonic, unaccompanied vocal composition set to poems for several parts, mainly cultivated in the 16th and 17th centuries. Italian writers of this time included Gabrieli and Palestrina (16th century). Monteverdi and Marenzio wrote in the later highly stylised manner of the 17th century. English writers included Morley and YVeelkes?
+Madrigal
+10
+
+Music: Terms: A self-contained section of a large composition having its own time signature and title. In some works, movements are directly linked (without a break inbetween) and sound incomplete without performing them in sequence. In all works, movements form a cohesive whole, much like in a set of related literary short stories. movimento (It.) - Motion. Doppio mouvmento, at double the preceding speed?
+Movement
+10
+
+Music: Terms: A sense of pitch which enables a person to identify a note simply by hearing it?
+Perfect pitch
+10
+
+Music: Terms: A set of notes produced by a vibrating string or air column, determining the difference of tone colours of instruments?
+Harmonic series
+10
+
+Music: Terms: A set of songs performed in its entirety and set to words by a single poet. Beethoven wrote the first example in 1816. In the romantic era, however, Schumann and Schubert used traditional German popular song combined with more imaginative accompaniment to illuminate and interpret words in a romantic way. An example is Die Winterreisce ('Winter Journey') composed in 1828 by Schubert?
+Song cycle
+10
+
+Music: Terms: A short composition of improvisatory nature usually for piano. Schubert and Chopin wrote in this style?
+Impromptu
+10
+
+Music: Terms: A short musical phrase (not as long as a theme) which is recognisable through repetition in a composition?
+Figure
+10
+
+Music: Terms: A short opera?
+Operetta
+10
+
+Music: Terms: A short vocal perpetual canon in which voices enter in turn to sing a melody at the octave or at the same pitch (e.g. Row, row, row your boat)?
+Round
+10
+
+Music: Terms: A silence in a performer's part indicated by symbols corresponding to certain beats?
+Rest
+10
+
+Music: Terms: A simple and short part-song in several sections for male voices, flourishing in Britain between 1650 and 1830?
+Glee
+10
+
+Music: Terms: A slow and stately dance in 3 / 2 or 3 / 4 time, usually in binary form and one of the standard elements of the suite?
+Sarabande
+10
+
+Music: Terms: A slow or fast dance in triple time with the characteristic one beat and one chord in the bar. The waltz became universally popular in the 19th century with Viennese composers?
+Waltz
+10
+
+Music: Terms: A Spanish dance in fast, syncopated 3 / 4 time with song?
+Polo
+10
+
+Music: Terms: A stage work giving more or less equal importance to opera and ballet (e.g. the works of Lully and Rameau in France in the 17th and 18th centuries)?
+Opera- ballet
+10
+
+Music: Terms: A stage work involving elements of both opera and oratorio (e.g. Stravinsky's Oedipus Rex)?
+Opera oratorio
+10
+
+Music: Terms: A stately Polish dance in moderately fast 3 / 4 time dating from at least the 16th century. Composers include Bach, but the most famous examples are the 13 written by Chopin?
+Polonaise
+10
+
+Music: Terms: A string group consisting of two violins, viola and 'cello?
+String quartet
+10
+
+Music: Terms: A style of music in two or more parts in which (as opposed to homophony) each part is independent and of equal importance. Therefore, polyphonic music implies the use of counterpoint, and some of the most important forms are the motet, canon and fugue. Composers include Palestrina, Byrd and Bach?
+Polyphony
+10
+
+Music: Terms: A term describing (from the 1960's) dramatic works simpler than opera and suitable for the concert platform?
+Music theatre
+10
+
+Music: Terms: A term describing the course of a melody or melodies. Conjunct motion is movement by step. Disjunct motion is movement by leap. Similar motion describes two melodies moving in the same direction and contrary motion describes two melodies moving in opposite directions. Paralicl motion describes parts moving the same way and also keeping the same interval between them?
+Motion
+10
+
+Music: Terms: A term for music which recurs and develops in the form of a quotation?
+Motto theme
+10
+
+Music: Terms: A theme which is played backwards. This device was prominent in the Middle Ages in fugues and in 20th century serial music. Retrograde inversion describes a theme played backwards and upside-down?
+Retrograde motion
+10
+
+Music: Terms: A three-note chord (e.g. C E G with E and G being a third and fifth above the lowest note C)?
+Triad
+10
+
+Music: Terms: A title given by l9th and 20th century composers to describe works generally in one continuous movement suggestive of neroic, national or other romantic inspiration?
+Rhapsody
+10
+
+Music: Terms: A title given to the basic A B A form or ternary form as used in an instrumental slow movement. However, this is rather vague and is best avoided since not every song is in this form?
+Song form
+10
+
+Music: Terms: A title used byJ.S. Bach for contrapuntal two-part compositions for clavier. Bach called three-part compositions sinfonie but they are now also referred to as inventions?
+Invention
+10
+
+Music: Terms: A triad in which the perfect fifth is reduced chromatically by a semitone (e.g. A C and E flat?
+Diminished triad
+10
+
+Music: Terms: A type of 'augmented sixth' chord (e.g. A flat, C, E flat and F sharp whlch also may be treated as a dominant seventh chord?
+German sixth
+10
+
+Music: Terms: A type of American-influenced light stage entertainment which succeeded the musical comedy in the mid-20th century. Now known simply as a musical. An example is Phantom of the Opera with music by Andrew Lloyd Webber?
+Musical play
+10
+
+Music: Terms: A type of augmented sixth chord (e.g. A flat, C and F sharp) distinguished by having a major triad and no other note between the notes forming the sixth?
+Italian sixth
+10
+
+Music: Terms: A type of metre where the beat units are divisible into three (e.g. 6 / 8, 9 / 8, 12 / 8. Opposite of simple time?
+Compound time
+10
+
+Music: Terms: A type of plainsong associated with Pope Gregory I (590- 604) existing as a large collection of ancient monophonic melodies which were until quite recently used in the Roman Catholic Church?
+Gregorian chant
+10
+
+Music: Terms: A type of rcligious Arnerican Negro folksong with a call and response pattern?
+Spiritual
+10
+
+Music: Terms: A vague term describing: (1) the serious, entirely sung operas as opposed to the lighter op ra-comique which had dialogue, (2) operas on a grand and lavish scale?
+Grand opera
+10
+
+Music: Terms: A vague term with two main meanings: (1) A romantic love song, properly performed in the night air accompanied by mandolin or guitar in order to woo a girl; (2) Evening entertainment (especially 18th century) comprising a set of instrumental movements for chamber orchestra or wind group similar to the divertimento. The German equivalent is nachtmusik?
+Serenade
+10
+
+Music: Terms: A vertical line used to join two or more staves?
+Brace
+10
+
+Music: Terms: A Wagnerian term for opera, which he felt to be inadequate. This term describes Wagner's new concept of the leitmotif and the fusing of scenery, costume, libretti, music and drama into a new art?
+Music drama
+10
+
+Music: Terms: A wait of indefinite length on a note or rest?
+Pause
+10
+
+Music: Terms: A work in which a theme connects more than one movement. Beethoven introduced it into symphonic music (e.g. in his Fifth symphony) and romantic composers developed it further?
+Cyclic form
+10
+
+Music: Terms: Abbreviaion for piano (It.), soft. Varying degrees of increasing softness are abbreviated as pp, ppp, etc?
+P
+10
+
+Music: Terms: Abbreviation for cello?
+Vc
+10
+
+Music: Terms: Abbreviation for pianissimo, very soft?
+Pp
+10
+
+Music: Terms: Abbreviation for right hand?
+Rh
+10
+
+Music: Terms: Abbreviation for viola?
+Vla
+10
+
+Music: Terms: Abbreviation of fortissimo meaning very loud?
+Ff
+10
+
+Music: Terms: Abbreviation of general pause?
+GP
+10
+
+Music: Terms: Abbreviation of German Kontrabass, double-bass?
+KB
+10
+
+Music: Terms: Abbreviation of Kochel in cataloguing Mozart's works?
+K
+10
+
+Music: Terms: Abbreviation of Latin opus, work. Used as a publishers' catalogue system to indicate the order in which a composer's works have been published. The higher the opus number, the later the music was published in a composer's lifetime?
+Op
+10
+
+Music: Terms: Abbreviation of mezzo soprano?
+M Sop
+10
+
+Music: Terms: Abbreviation of pizzicato?
+Pizz
+10
+
+Music: Terms: Abbreviation of rallentando?
+Rall
+10
+
+Music: Terms: Abbreviation of recitative?
+Recit
+10
+
+Music: Terms: Abbreviation of ritardando?
+Rit
+10
+
+Music: Terms: Abbreviation of the major scale?
+Maj
+10
+
+Music: Terms: Abbreviation of(l) Ray in the tonic sol-fa; (2) Respond?
+R
+10
+
+Music: Terms: Adjective describing major and minor scales and also modes. The opposite of chromatic music which introduces notes not in the prevailing key. Diatonic harmonies, intervals, passages, etc. are made up of notes of the current key?
+Diatonic
+10
+
+Music: Terms: Adjective from counterpoint?
+Contrapuntal
+10
+
+Music: Terms: Also called graccs or embellishments, these are notes considered to be an extra embellishment of a melody which are either added spontaneously by the performer or indicated by the composer on the score by signs or notation. In the 17th and 18th centuries, omaments were mostly indicated by signs and they included the trill, mordent, turn, arpeggio and appoggiatura. Composers wrote out ornaments in full in later periods?
+Ornaments
+10
+
+Music: Terms: Also known as programme music or tone poem, this is a mid-19th century term introduced by Liszt to describe an orchestral piece influenced by a non-musical theme (e.g. Iiterature, art or emotions)?
+Symphonic poem
+10
+
+Music: Terms: Also known as twelve-tone music, twelve-note music and dodecaphonic music. This is a 20th century concept mostly developed by Schonberg. A twelve-note theme is fixed upon, with each note being used once. This is known as the tone row or series. Thereafter it can appear in four main ways: forwards, backwards (retrograde), upside down (inversion), and upside down and backwards (retrograde inversion). The series can appear and begin on any one of the twelve pitches and more than one note of the series can be used simultaneously to form a chord. Serialism mostly forms the basis of a work, however, and other composers include Berg and Webern. Serialism is a feature of expressionism?
+Serial music
+10
+
+Music: Terms: Alternative name for perfect cadence?
+Full close
+10
+
+Music: Terms: Alternative name for trill?
+Shake
+10
+
+Music: Terms: American term for serial music?
+Twelve tone
+10
+
+Music: Terms: An alternative name for sonata form?
+First movement form
+10
+
+Music: Terms: An Argentinian dance in moderately slow time with syncopated rhythms, appearing in European and American ballrooms around World War I?
+Tango
+10
+
+Music: Terms: An English system of notation and sight reading mainly devised by J.S. Curwen in the 1840s. The notes of the major scale are named in ascending order: doh, ray, me, fah, soh, lah, te, doh. Doh is the tonic, or keynote, but is not at any fixed pitch?
+Sol-fa
+10
+
+Music: Terms: An imperfect cadence?
+Half close
+10
+
+Music: Terms: An interval smaller than a semitone, evident in some modern compositions?
+Microtone
+10
+
+Music: Terms: An introductory piece or movement before a fugue, an act of an opera etc. Chopin and other later composers wrote preludes as short, independent piano pieces in one movement?
+Prelude
+10
+
+Music: Terms: An opera in which the principal character undergoes a test or a difficult journey, or experiences hardships before reaching his goal (e.g . Mozart's Magic Flute)?
+Quest opera
+10
+
+Music: Terms: An opera made up of selections from other operas?
+Pasticcio
+10
+
+Music: Terms: An orchestral work revealing a literary or pictorial element in three movements, quick-slow-quick, from which the symphony evolved. The French overture has slow-quick-slow movements?
+Italian overture
+10
+
+Music: Terms: An ordered melodic theme in serial or 12-tone music?
+Tone row
+10
+
+Music: Terms: An ornament which has two forms: (1) upper mordent (or inverted mordent); (2) lower mordent or simply, mordent?
+Mordent
+10
+
+Music: Terms: Another name for bass clef?
+F clef
+10
+
+Music: Terms: Any notes of the harmonic series are given this name except for the first fundamental?
+Overtone
+10
+
+Music: Terms: Aristocratic, elaborate English stage entertainment chiefly cultivated in the 17th century and involving poetry, dancing, scenery, costumes, instrumental and vocal music. The masque was related to opera and ballet?
+Masque
+10
+
+Music: Terms: At double the speed of the preceding sectlon?
+Doppio movimento
+10
+
+Music: Terms: Complete silence. A rest of at least one bar for the whole orchestra. Abbreviation is GP?
+General pause
+10
+
+Music: Terms: Composing music for particular instruments. This term is used with reference to the composer's skill and knowledge of selecting instruments which sound well or are unusual, etc?
+Instrumentation
+10
+
+Music: Terms: Consecutive fifths implied, but not actually present in harmony and nevertheless frowned upon by academics?
+Hidden fifths
+10
+
+Music: Terms: Counterpoint in which four melodies can exchange position?
+Quadruple counterpoint
+10
+
+Music: Terms: Describes a section of a composition in fugal style which is not actually a fugue?
+Fugato
+10
+
+Music: Terms: Describes a trend, especially in the 1920's, characterised by its use of the concerto grosso technique, contrapuntal writing and avoidance of emotion. Neo-classical composers included Stravinsky and Hindemith?
+Neo-classical
+10
+
+Music: Terms: Describes a wide range of 17th century English dances?
+Rant
+10
+
+Music: Terms: Describes the harmonic relationships of keys (e.g. G major is closely related to D major (its dominant) since there is only the difference of one sharp. See also relative?
+Related
+10
+
+Music: Terms: Describes the movement of parts or melodies when one remains on the same note and the other moves in some direction?
+Oblique motion
+10
+
+Music: Terms: Descriptive music evoking a poem, novel, play, painting emotion or other non-musical source. More common term is programme music?
+Illustrative music
+10
+
+Music: Terms: Device on some brass instruments, used principally on the trombone, for altering the length of the tube, and therefore the notes produced?
+Slide
+10
+
+Music: Terms: Dominant triad with the addition of the seventh note from its root?
+Dominant seventh
+10
+
+Music: Terms: Easily or fluently?
+Facilmente
+10
+
+Music: Terms: Emphasis on the off-beat and a characteristic of jazz styles?
+Syncopation
+10
+
+Music: Terms: Equivalent of four quarter notes (in 4 / 4 time, 4 beats)?
+Whole note
+10
+
+Music: Terms: Evident in the mid-16th and early 17th century, this was a harmonic bass line used for variations?
+Romanesca
+10
+
+Music: Terms: Extremely fast articulation of sound on a wind instrument by the tongue, like trilling?
+Flutter-tongue
+10
+
+Music: Terms: Fifth degree of the major or minor scale, or a triad built on it?
+Dominant
+10
+
+Music: Terms: First or lowest note of the harmonic series?
+Fundamental
+10
+
+Music: Terms: Four quarter notes to the bar, written 4 / 4 or C?
+Common time
+10
+
+Music: Terms: Generally a four movement, serious and large scale sonata-like orchestral work involving a first movement, second movement, minuet and trio and finale. The first movement is often in sonata form, and this structure may also be evident in the slow movement and finale. This four-movement form became standard around 1760 with Mozart and Haydn but the number of movements may vary?
+Symphony
+10
+
+Music: Terms: Generally a strophic song for several male, female or mixed voices in which there are many singers to a part, with the top part usually having the principal part. Composers include Elgar, Parry and Stanford?
+Part-song
+10
+
+Music: Terms: Generally this means to improvise a song accompaniment?
+Vamp
+10
+
+Music: Terms: Generally, this is a phrase repeated at a higher or lower interval. A real sequence is one in which the repeated phrase intervals are unaltered. A tonal sequcnce is one in which the repeated phrase is modified to prevent a key change?
+Sequence
+10
+
+Music: Terms: Generally, this is a style of singing used in opera and oratorio for dialogue and some narrative which is more closely related to dramatic speech in pitch and rhythm than to song. Two main types exist: (1) recitative accompagnato or stromentato which is expressive and accompanied by the orchestra and (2) recitative secco which has only an occasional broken chord from the harpsichord or 'cellos (sometimes with the bass line reinforced by the double bass) and this was the accepted style in 18th and l9th century operas?
+Recitative
+10
+
+Music: Terms: Harmonic intervals of the same kind (e.g. thirds succeeding one another in the same parts?
+Consecutive intervals
+10
+
+Music: Terms: Harmony in which notes of chords are written closely together (e.g. in barbershop quartets)?
+Close harmony
+10
+
+Music: Terms: High Mass?
+Missa solemnis
+10
+
+Music: Terms: Highest female voice with range approximately extending from middle C to two octaves above that. Boy trebles can also achieve this range. The term is also applied to some instruments (e.g. soprano saxophone)?
+Soprano
+10
+
+Music: Terms: In 4 / 4 time, the equivalent of one beat?
+Quarter note
+10
+
+Music: Terms: In a fugue, for example, after the first entry has been stated there is an answer (or second statement at a different pitch). If this answer is slightly modified to keep the music within a certain key, then this is a tonal answer and the fugue a tonal fugue. This is the opposite of real answer?
+Tonal answer
+10
+
+Music: Terms: In a fugue, this term describes an extra voice in the initial entries or exposition?
+Redundant entry
+10
+
+Music: Terms: In harmony this is a suspension which resolves upwards not downwards?
+Retardation
+10
+
+Music: Terms: In harmony this is the progression from a discord to a concord?
+Resolution
+10
+
+Music: Terms: In medieval church music, the insertion of rests into vocal parts for expressive purposes?
+Hocket
+10
+
+Music: Terms: In medieval music, this was triple time?
+Perfect time
+10
+
+Music: Terms: In musical contexts, this term refers to the dramatic use of the spoken word against a musical background. This style may be used throughout an entire work or just as part of a work?
+Melodrama
+10
+
+Music: Terms: In musical notation this is a line joining two adjacent notes of the same pitch together, indicating that the first note only should be played but should be prolonged until the second note's time value is up?
+Tie
+10
+
+Music: Terms: Indications on the score provided by the composer to aid accurate performance of a work and consisting of dynamics (e.g. degrees of loudness and softness), tempo and mood?
+Expression marks
+10
+
+Music: Terms: Instruction to a singer or instrumentalist to perform in the normal way (e.g. singing tenor instead of falsetto or playing without mutes)?
+Naturale
+10
+
+Music: Terms: Instruction to play with the left hand in piano playing. Abbreviation of main gauche (Fr.)?
+MG
+10
+
+Music: Terms: Instruction to play with the right hand in piano playing. Abbreviations of main droite (Fr.) and mano destra (It.)?
+Md
+10
+
+Music: Terms: Instruments that produce different notes than those written in concert pitch?
+Transposing instruments
+10
+
+Music: Terms: Invertible counterpoint in two parts occurring frequently in fugues?
+Double counterpoint
+10
+
+Music: Terms: Invertible counterpoint in which three parts can be interchanged, each making a suitable bass for the other?
+Triple counterpoint
+10
+
+Music: Terms: lightly?
+Legerement
+10
+
+Music: Terms: Liszt's term for leitmotif, the recurring and development of themes symbolising a character, emotion, object, idea, etc?
+Metamorphosis of themes
+10
+
+Music: Terms: Midway between loud and soft and abbreviated mf?
+Mezzo forte
+10
+
+Music: Terms: Music signifying grief but especially describing bagpipe music played at Scottish clan funerals?
+Lament
+10
+
+Music: Terms: Music which interprets or describes a story, painting, poem, landscape or emotional experience. Opposite of absolute music?
+Programme music
+10
+
+Music: Terms: Music with national characteristics (e.g. use of folk music. The term is particularly applied to 19th century composers (e.g. Smetena and Grieg. Bartok and Kodaly were also famous as nationalist composers)?
+Nationalist
+10
+
+Music: Terms: Music with only one theme?
+Monothematic
+10
+
+Music: Terms: Musical term to indicate the tonality of a piece based on the major or minor scales and their relationship between the notes of the scale and chords built around them. There are two traditional types of keys (major or minor) depending upon whether they are based on the notes of the major or minor scale?
+Key
+10
+
+Music: Terms: Name the scale: d, e, f, g, a, b flat, c sharp, d?
+D minor
+10
+
+Music: Terms: Notated music of all performers' parts combined in an ordered form in which each part appears vertically above another. A piano score is one in which all orchestral or even vocal parts are reduced to a piano part. A miniaturce or pocket score reproduces all parts and details of the full score but is of a size more suitable for study?
+Score
+10
+
+Music: Terms: Note of the scale; Abbreviation for Deutsch in the cataloguing of works by Schubert?
+D
+10
+
+Music: Terms: Note of the scale?
+G
+10
+
+Music: Terms: Observance of a single key. Atonality, lack of key. Polytonality, the simultaneous use of several keys?
+Tonality
+10
+
+Music: Terms: One of the three types of minor scale?
+Melodic minor
+10
+
+Music: Terms: Opposite of major. Applied to scales, keys, chords and intervals?
+Minor
+10
+
+Music: Terms: Organ device of producing a vibrato effect by alternately increasing and decreasing the wind pressure?
+Tremulant
+10
+
+Music: Terms: Originally a slow and stately dance appearing in keyboard music of the 17th century. Later the passacaglia was a piece with a theme continually repeated, but not necessarily in the bass, like the chaconne?
+Passacaglia
+10
+
+Music: Terms: Originally an American dance in duple time of which there are two main types?fast and slow. It first became popular in 1912?
+Foxtrot
+10
+
+Music: Terms: Particularly used in sonata form, this term describes a section of a composition which repeats or approximates themes originally presented in a previous section, which have since been developed?
+Recapitulation
+10
+
+Music: Terms: Piano soft (left) pedal?
+Damping pedal
+10
+
+Music: Terms: Pleasing to the ear and sounding harmonically resolved. However, interpretations of this term vary considerably. The opposite is discord?
+Concord
+10
+
+Music: Terms: Popular in opera, this is a comic song in which words, sung as fast as possible, are often tongue-twisters. Often found in the works of Gilbert and Sullivan?
+Patter song
+10
+
+Music: Terms: Popularly known as a round, this is a never-ending canon which is also known as an infinite canon?
+Perpetual canon
+10
+
+Music: Terms: Position of note in scale (e.g. D is the second degree of C major scale)?
+Degree
+10
+
+Music: Terms: Prefix attached to note indicating pitch to be raised by two semitones?
+Double sharp
+10
+
+Music: Terms: Properly, music to be performed during the action of a play. However, the term also includes overtures and interludes?
+Incidental music
+10
+
+Music: Terms: Refers to alternate naming or spelling of the same musical note (e.g. A flat is the same as G sharp)?
+Enharmonic
+10
+
+Music: Terms: Repeat from the beginning?
+Da capo
+10
+
+Music: Terms: Repeat from the sign?
+Dal segno
+10
+
+Music: Terms: Repeat to the sign?
+Da capo al segno
+10
+
+Music: Terms: Repeat up to the word Fine (the end)?
+Da capo al fine
+10
+
+Music: Terms: Same as common time consisting of four quarter notes to the bar, written 4 / 4 or C?
+Quadruple time
+10
+
+Music: Terms: Same as concord?
+Consonance
+10
+
+Music: Terms: Same as continuo?
+Thorough bass
+10
+
+Music: Terms: Same as discord (see concord)?
+Dissonance
+10
+
+Music: Terms: Same as duet but mainly an instrumental composition for two performers. A piano duo is for two pianists on separate pianos?
+Duo
+10
+
+Music: Terms: Same as improvisation?
+Extemporisation
+10
+
+Music: Terms: Same as ornament, used to embellish a melody line and normally printed in smaller type?
+Grace note
+10
+
+Music: Terms: Same as ornaments?
+Embellishments
+10
+
+Music: Terms: Same as rondo form?
+Episodical form
+10
+
+Music: Terms: Same as serial music?
+Dodecaphonic music
+10
+
+Music: Terms: Same as symphonic poem?
+Tone poem
+10
+
+Music: Terms: Schonberg preferred this term to atonality (e.g. music not written in any definite key)?
+Pantonality
+10
+
+Music: Terms: See concord?
+Discord
+10
+
+Music: Terms: See serial music?
+Twelve note
+10
+
+Music: Terms: set the temperament of an instrument?
+Tuning
+10
+
+Music: Terms: Sets of eight-note scales inherited from ancient Greece via the Middle Ages in which they were most prevalent, although they still survive today in plainsong and folk music. At the end of the 17th century the modes had been reduced to two scales, major and minor, which we know today. Here are the modes which may be represented by scales of white notes on the piano with the names derived from the Greek system. The 'final' of a mode is the note of a cadence, or resting point, in a melody, and the 'dominant' is a reciting note?
+Modes
+10
+
+Music: Terms: sixteenth note - one fourth of a quarter note?
+Six-four chord
+10
+
+Music: Terms: Slow Austrian dance in waltz time popular in the late 18th and early l9th centuries?
+Landler
+10
+
+Music: Terms: slower?
+Mosso
+10
+
+Music: Terms: Small orchestras currently perform under this name. Originally the title described an instrumental piece in the baroque era such as the prelude, overture to an opera, cantata or suite?
+Sinfonia
+10
+
+Music: Terms: Solely a string band as opposed to a wind or brass brand, normally consisting of first and second violins, violas, 'cellos and double basses?
+String orchestra
+10
+
+Music: Terms: Song or instrumental composition for the dead?
+Elegy
+10
+
+Music: Terms: Spanish stage entertainment involving a few singers?
+Tonadilla
+10
+
+Music: Terms: String(s) - In piano playing, una corda (one string) indicates the use of the soft (left) pedal. The term tre corde (three strings) cancels this, indicating the release of the soft pedal?
+Corda
+10
+
+Music: Terms: Style of playing in which there are no gaps between notes?
+Legato
+10
+
+Music: Terms: Term borrowed from painting, describing the works of Monet, Degas, etc. and transferred to music referring to the atmospheric music of Debussy and Ravel. A famous example is Prelude a l'apres-midi d'un faune by Debussy evoking the imagery of Mallarme's symbolist poem?
+Impresslonlsm
+10
+
+Music: Terms: Term describes a song which uses the same music for each verse?
+Strophic
+10
+
+Music: Terms: Term describes the use of several choirs performing both separately and jointly in a composition?
+Polychoral
+10
+
+Music: Terms: Term describing music before Haydn and Mozart and also (more vaguely) describing music before Bach?
+Preclassical
+10
+
+Music: Terms: Term meaning continue playing an octave higher or lower?
+8va segue
+10
+
+Music: Terms: Term taken from painting (referring to pictures using separate dots of colour) and applied to the music of some 20th century composers (e.g. Webern). This described music of a spare and pointed style emplying use of pizzicato?
+Pointillism
+10
+
+Music: Terms: Term used by German composers who believed it to be Italian for minuet. The Italian for minuet is minuetto?
+Menuetto
+10
+
+Music: Terms: The art of spontaneous composition of music in performance. This may take the form of ornamentaion, variation of a song or theme, or completely new material. Improvisation is great]y used in jazz?
+Improvisation
+10
+
+Music: Terms: The C clef on the fourth line?
+Tenor clef
+10
+
+Music: Terms: The chord containing the sixth and third intervals from the bass note. Same as first inversion of a triad?
+Six-three chord
+10
+
+Music: Terms: The combining of different metres simultaneously (e.g. 2 / 4 against 3 / 4 or 6 / 8)?
+Polymetry
+10
+
+Music: Terms: The completion of 17th and 18th century harmony by adding a keyboard accompaniment indicated by figured bass?
+Realisation
+10
+
+Music: Terms: The composing of polyphonic music and the writing of equally good melodic parts?
+Part-writing
+10
+
+Music: Terms: The degrees of softness or loudness in music indicated by signs or words on the score?
+Dynamics
+10
+
+Music: Terms: The downward movement of the conductor' s baton or hand indicating the first beat of the bar. The term can also mean the first beat of the bar?
+Downbeat
+10
+
+Music: Terms: The equivalent of two quarter notes or half of a whole note (two beats in 4 / 4 time)?
+Half note
+10
+
+Music: Terms: The first degree of the scale or a triad built on that degree?
+Tonic
+10
+
+Music: Terms: The fudamental or lowest note of the harmonic series especially applied to the playing of brass instruments?
+Pedal
+10
+
+Music: Terms: The highest adult male voice or lowest female voice?
+Alto
+10
+
+Music: Terms: The initial statement of a musical theme or idea upon which a rnovement or piece is based. In a fugue, the exposition is the initial statement of the subject by each voice in turn. The exposition is completed when each voice has been heard for the first time. In sonata form, it is a repeated section in which the main themes are first stated before moving on to the development section?
+Exposition
+10
+
+Music: Terms: The interval of eight steps (e.g. C to C on the white notes of the piano)?
+Octave
+10
+
+Music: Terms: The interval of three tones (e.g. F to B)?
+Tritone
+10
+
+Music: Terms: The left foot pedal on a piano lessening the volume?
+Soft pedal
+10
+
+Music: Terms: The lower type of female voice having a range from F below middle C to G above the treble clef?
+Contralto
+10
+
+Music: Terms: The lowest or fundamental note of a chord. In the chord C E G, C is the root and the chord is said to be in root position. If the notes are arranged E G C, C is still the root, but the chord would be described as being in first inversion?
+Root
+10
+
+Music: Terms: The mode which, on the white keys of the piano, is represented by E to E?
+Phrygian mode
+10
+
+Music: Terms: The mode which, on the white keys of the piano, is represented from C to C (same as C major scale)?
+Ionian mode
+10
+
+Music: Terms: The modification or development of a theme, passage or figure with the theme always remaining recognizable?
+Variation
+10
+
+Music: Terms: The movement from one note or chord to another in music?
+Progression
+10
+
+Music: Terms: The movement of two or more parts in the same direction while also keeping the same interval between them?
+Parallel motion
+10
+
+Music: Terms: The music is to be performed in three bar groupings, implying that the music is so fast there is only one beat to the bar?
+Ritmo di tre battute
+10
+
+Music: Terms: The music of a particular voice or instrument in an ensemble?
+Part
+10
+
+Music: Terms: The name for the fourth degree of the scale (e.g. F in the scale of C major) or the triad built on that degree?
+Sub-dominant
+10
+
+Music: Terms: The notation in diagrams of guitar chords in pop music. Previously, it represented a method of notation involving symbols denoting the positions of the performer's fingers (e.g. for the lute?
+Tablature
+10
+
+Music: Terms: The note on which the melody ends in church modes. In authentic modes, the final is on the tonic. In plagal modes, it falls on the fourth degree of the scale?
+Final
+10
+
+Music: Terms: The opposite of legato?
+Staccato
+10
+
+Music: Terms: The performance of a group of adjacent notes simultaneously on the piano, e. g. with the forearm or a piece of wood. Pioneered by Cowell in 1912 and used by Ives. Also known as tone cluster?
+Note cluster
+10
+
+Music: Terms: The playing of three notes simultaneously on a stringed instrument by the placing of the left hand fingers on the strings and shortening the vibrating length?
+Triple stop
+10
+
+Music: Terms: The rapid articulation of T-K-T on a wind instrument. This is difficult to do on reed instruments?
+Triple tonguing
+10
+
+Music: Terms: The right pedal on the piano which raises the felt dampers allowing the strings to vibrate freely?
+Sustaining pedal
+10
+
+Music: Terms: The scale of seven notes (e.g. the modern major or minor scale)?
+Heptachord
+10
+
+Music: Terms: The second degree of the scale (e.g. D in the scale of C major) or the triad built on that degree?
+Supertonic
+10
+
+Music: Terms: The section of a movement when initial statements of themes are expanded, developed, modified and broken up?
+Development
+10
+
+Music: Terms: The set of five horizontal lines and spaces on which music is written. Leger lines are used for notes above and below the staff?
+Stave
+10
+
+Music: Terms: The setting of a poem entitled 'ode' to music?
+Ode
+10
+
+Music: Terms: The seventh degree of the major scale. This is so called because it seems naturally to rise to the tonic a semitone above. In the minor scale this note is used only when ascending, not descending?
+Leading note
+10
+
+Music: Terms: The shift from one key to another in composition?
+Modulate
+10
+
+Music: Terms: The sign of figures at the beginning of a composition or section or movement indicating the number and kind of beats to the bar (e.g. 3 / 4 indicates 3 beats to the bar, with the number 4 signifying that the basic beat is a quarter note)?
+Time signature
+10
+
+Music: Terms: The sixth degree of the scale (e.g. A in the scale of C major) or a triad built on that degree?
+Sub-mediant
+10
+
+Music: Terms: The sliding up or down a scale, often abbreviated by gliss. or a wavy or straight stroke between the highest and lowest note?
+Glissando
+10
+
+Music: Terms: The smallest interval commonly used in European music. On the piano this is represented by the interval between any note and the next note which may be higher or lower?
+Semitone
+10
+
+Music: Terms: The sound of two or more voices singing simultaneously at the same pitch. Unison song, a song for several people all singing the same tune?
+Unlson
+10
+
+Music: Terms: The sounding together of notes in a musically significant manner. The main unit of harmony is the chord. The chords are built around the degrees of the scale. The primary chords in most popular compositions are based on the first, fourth and fifth degree of a scale. Many different theories have evolved over the past few centuries about the construction and interpolation of chords to create various senses of musical movement or intellectual or emotional responses?
+Harmony
+10
+
+Music: Terms: The sounding together of two or more separate parts of rhythmic and melodic independence, in harmony. Invertible counterpoint occurs when any one melody strand can exchange its position for another (e.g. the bass becomes treble). Between two parts, this is called double counterpoint?
+Counterpoint
+10
+
+Music: Terms: The stress given to one tone over another?
+Accent
+10
+
+Music: Terms: The symbol to determine the relative position of notes on the musical staff, placed normally at the beginning of each line, or whenever a different clef temporarily replaces the starting clef (to make notes fit more easily on the staff). There are many possible clefs (e.g. treble, bass, alto and tenor) chosen to accomodate the range of various instruments or voices. In piano music, the double staff (a staff for each hand) uses treble or bass clefs?
+Clef
+10
+
+Music: Terms: The system of tuning intervals in order to fit them for practicable performance. The piano, organ and other fixed instruments are tuned to equal temperament which means that each semitone is made an equal interval so that (e.g. G sharp and A flat are the same)?
+Temperament
+10
+
+Music: Terms: The systematic plan of beginning in one key and ending in another in a movement?
+Progressive tonality
+10
+
+Music: Terms: The systematic use of quite different rhythms sounding simultaneously. Polyrhythmic devices are especially used in the 20th century?
+Polyrhythm
+10
+
+Music: Terms: The tones of the harmonic series, the lowest being thefirst partial and the others the upper partials or overtones?
+Partials
+10
+
+Music: Terms: The treatment of a melody by shortening the time values of notes, usually by half (e.g. in fugues and canons)?
+Diminution
+10
+
+Music: Terms: The turning upside-down of a chord or single melody (by applying intervals in opposite directions) or two melodies in counterpoint by the upper melody becoming the lower and vice-versa. This last method is called invertible counterpoint?
+Inversion
+10
+
+Music: Terms: The upward movement of a conductor's hand or baton, especially indicating the beat before the main accent in a bar of music?
+Upbeat
+10
+
+Music: Terms: The use of two or more keys performed simultaneously and employed by Stravinsky, Holst and Milhaud. When only two keys are used, this is referred to as bitonality?
+Polytonality
+10
+
+Music: Terms: The writing down or performing of music in a different key from the original?
+Transposition
+10
+
+Music: Terms: These are the intervals of the octave, fourth and fifth?
+Perfect intervals
+10
+
+Music: Terms: These are the two main scales of the western tonal system. The major key is based on the major scale and the minor key is based on the minor scale. The minor scale breaks into three variations: harmonic, melodic and natural. These terms also refer to chords and intervals being built out of the major or minor scale?
+Major minor
+10
+
+Music: Terms: This describes the basic rhythmical patterns in music (e.g. 6 / 8 time or 4 / 4 time). Also march time, waltz time, etc?
+Time 
+10
+
+Music: Terms: This describes the dominant of the dominant?
+Secondary dominant
+10
+
+Music: Terms: This indicates the precise key of the piece. Sharps or flats are placed at the beginning of a composition after the clef. Any other alteration (e.g. a brief modulation to another key, is indicated by accidentals. If there is an extended passage in a new key, however, then a new key signature may appear. The key signature must be represented at the beginning of every new stave in a composition (although not always in popular music)?
+Key signature
+10
+
+Music: Terms: This is indicated by a time signature dividing up the music into regularly occurring accents (e.g. 3 / 4 time means that the basic note values are quarter notes and that every third one is accented)?
+Metre
+10
+
+Music: Terms: This is the main service of the Roman Catholic Church which has been set to music by composers including Bach, Mozart and Haydn?
+Mass
+10
+
+Music: Terms: This is the Passion of Christ, as accounted by Matthew, Mark, Luke and John, set to music and properly performed during Holy Week?
+Passion music
+10
+
+Music: Terms: This occurs in 20th century serial music, also called dodecaphonic music or twelve-note music. It is the order in which the composer chooses to arrange the twelve notes, which serves as the foundation of the composition. novelette (Eng.) or novellette (Ger.) - A short, instrumental, romantic piece. The term was first used by Schumann for a piano work in 1848?
+Note row
+10
+
+Music: Terms: This term described a short, keyboard piece or a set of short pieces in the 17th and 18th centuries?
+Lesson
+10
+
+Music: Terms: This term is sometimes attached to a fugue or canon to describe two or more parts appearing simultaneously, with one the correct way up and the other upside down, as if a mirror had been placed between them?
+Mirror
+10
+
+Music: Terms: This term refers to each key signature being shared by two keys (e.g. A minor is the 'relative' minor of C major since they both have no sharps or flats in the key signature. D major is the relative major of B minor since both keys have two sharps in the key signature?
+Relative
+10
+
+Music: Terms: This term was taken from French culture in the early 18th century, but musically the title for rococo is the style galant used by composers throughout Europe until the late 18th century?
+Rococo
+10
+
+Music: Terms: This word is associated with recitative?
+Secco 
+10
+
+Music: Terms: Time consisting of three beats to the bar (e.g. 3 / 4, 3 / 2, 3 / 8)?
+Triple time
+10
+
+Music: Terms: Time in which each beat is divisible by two (e.g. 2 / 4, 4 / 4, 3 / 4 and in which each beat is a quarter note)?
+Simple time
+10
+
+Music: Terms: Time in which the number of beats in the bar is divisible by two or four (e.g. 2 / 4, 4 / 4, 2 / 2)?
+Duple time
+10
+
+Music: Terms: Time with five beats, usually quarter notes, to the bar (e.g. 5 / 4 time). Not common before the 20th century?
+Quintuple time
+10
+
+Music: Terms: To direct a performance of either singers, players or both with a baton or hands in order to give precise indications of dynamics, phrasing and speed?
+Conduct
+10
+
+Music: Terms: To slide up to a note in singing instead of hitting it accurately?
+Scoop
+10
+
+Music: Terms: Two bar lines placed closely together to signify the end of a composition or section?
+Double bar
+10
+
+Music: Terms: Two melodies moving together in the same direction?
+Similar motion
+10
+
+Music: Terms: Two or more melodies sounding against one another is called this?
+Counterpoint
+10
+
+Music: Terms: Upper register of voice?
+Head voice
+10
+
+Music: Terms: Very sweetly?
+Dolcissimo
+10
+
+Music: Terms: what is fortissimo?
+Very loud
+10
+
+Music: Terms: what is prestissimo?
+Extremely fast
+10
+
+Music: Terms: what is ritardando?
+Slowing down
+10
+
+Music: Terms: With a moderate tone?
+Mezza voce
+10
+
+Music: Terms: with grandeur?
+Con grandezza
+10
+
+Music: Terms: Written music, by ordinary staff notation symbols or graphic representation or simply by letter-names (e.g. the tonic sol-fa?
+Notation
+10
+
+Music: Terri Nunn is from what 80's group?
+Berlin
+10
+
+Music: Testament, Metallica, Possessed & Primus all hail from this geographical area?
+Bay area
+10
+
+Music: That mentions a barefoot girl sitting on the hood of a Dodge?
+Jungleland
+10
+
+Music: The ____Years - Mike + The Mechanics
+Living
+10
+
+Music: The ____You Love Me - Karyn White
+Way
+10
+
+Music: The 1st annual grammy awards were awarded in what year?
+1959
+10
+
+Music: The Alan Parsons Project hit the charts in 1982 with this song?
+Eye in the sky
+10
+
+Music: The album 'Thriller' won a record ____ grammy awards
+Eight
+10
+
+Music: The architect of Bebop who outlived his contemporary C Parker by many decades?
+Dizzy gillespie
+10
+
+Music: The artist formerly known as prince had a both a hit song & movie by this title?
+Purple rain
+10
+
+Music: The B-52's are from this in Georgia?
+Athens
+10
+
+Music: The B-52's are from this place in Georgia?
+Athens
+10
+
+Music: The bagpipe was originally made from the whole skin of a ____
+Dead sheep
+10
+
+Music: The band This Mortal Coil took their name from a line by this playwright?
+William shakespeare
+10
+
+Music: The Beach Boys have been around forever. Many consider 'Pet Sounds' to be their best album. Which of the following songs is NOT in it?
+I Get Around
+10
+
+Music: The Beach Boys made their debut with what single?
+Surfin
+10
+
+Music: The Beach Boys recorded surfing music like 'Surfin Safari', 'Surfer Girl' and 'Surfin USA'. Name the only Beach Boy who actually surfed?
+Dennis Wilson
+10
+
+Music: The Beatles: 1980s: What 1964 beatles biggie did capital re-release as a video in 1984?
+I want to hold your hand
+10
+
+Music: The Beatles: A Beatles song says there are this many days in a week?
+Eight
+10
+
+Music: The Beatles: A common belief is that john lennon says 'i buried paul' at the end of 'strawberry fields forever' on the 'magical mystery tour' album. what did he actually say?
+Cranberry sauce
+10
+
+Music: The Beatles: A special area in Central Park is named after this song in memory of John?
+Strawberry fields forever
+10
+
+Music: The Beatles: According to a beatles song, where is the place where nothing is real?
+Strawberry fields
+10
+
+Music: The Beatles: Album: Name the Beatle Album you would find the licence plate 28if on a vehicle?
+Abbey Road
+10
+
+Music: The Beatles: And the banker never wears a mac, in the pouring rain...?
+Very strange
+10
+
+Music: The Beatles: Bare-footed Beatle on the Abbey Road album cover?
+Paul mccartney
+10
+
+Music: The Beatles: Beatle's Songs?
+Strawberry Fields
+10
+
+Music: The Beatles: Born a poor young country boy...?
+Mother natures son
+10
+
+Music: The Beatles: Bungalow Bill?
+Lennon
+10
+
+Music: The Beatles: Cuando llega la lluvia?
+When the rain comes
+10
+
+Music: The Beatles: Dead Person from Abbey Road?
+Paul mccartney
+10
+
+Music: The Beatles: Desmond says to Molly, girl...?
+I like your face
+10
+
+Music: The Beatles: Despite popular belief, John claims this song isnt about LSD (Sure...)?
+Lucy in the sky with diamonds
+10
+
+Music: The Beatles: Dominated the 60's (and beyond). Which song includes the lyric: 'oh, how I've been alone'?
+Wait
+10
+
+Music: The Beatles: Each day just goes so fast, I turn around...?
+Its past
+10
+
+Music: The Beatles: First number 1 hit was ____
+Love me do
+10
+
+Music: The Beatles: For how long is the note sustained at the end of the beatles' song 'a day in the life'?
+Forty seconds
+10
+
+Music: The Beatles: For which song did the Beatles grab female passerbys to sing background?
+Across the universe
+10
+
+Music: The Beatles: He is the only Beatle who has never divorced?
+Paul mccartney
+10
+
+Music: The Beatles: He was the Maharish Mahesh Yogi & had this song dubbed after him?
+Sexy sadie
+10
+
+Music: The Beatles: He was the Walrus?
+John lennon
+10
+
+Music: The Beatles: He was the walrus?
+Paul mccartney
+10
+
+Music: The Beatles: How many former Beatles had chart-topping singles from 1973 to 1974?
+Four
+10
+
+Music: The Beatles: I'd rather see you dead, little girl, than to be with...?
+Another man
+10
+
+Music: The Beatles: In what movie did John star with Michael Crawford?
+How i won the war
+10
+
+Music: The Beatles: Joe Cocker performed this Beatles tune at Woodstock?
+With a little help from my friends
+10
+
+Music: The Beatles: John Lennon, Paul McCartney, Ringo Star & ____
+George harrison
+10
+
+Music: The Beatles: John's middle name?
+Winston
+10
+
+Music: The Beatles: Liverpool Club frequented by the Beatles in the early days?
+Cavern club
+10
+
+Music: The Beatles: Lying there and staring at the ceiling, waiting for, a...?
+Sleepy feeling
+10
+
+Music: The Beatles: Many thought this song stood for lsd, but john lennon insisted it was about a girl at his son's school, what is the song title?
+Lucy in the sky with diamonds
+10
+
+Music: The Beatles: McCartney made up this song when he fancied some French words?
+Michelle
+10
+
+Music: The Beatles: Music Video: John and Yoko try to get somewhere in a boat on land?
+Nobody told me
+10
+
+Music: The Beatles: Music video: nuns get stuck on train tracks & are saved by Shaolin monks?
+Hope of deliverance
+10
+
+Music: The Beatles: Newspaper taxis appear on the shore, waiting to...?
+Take you away
+10
+
+Music: The Beatles: No one I think is in my tree, I mean it...?
+Must be high or low
+10
+
+Music: The Beatles: Now it's past my bed I know, and I'd really like to...?
+Go
+10
+
+Music: The Beatles: Now my advice for those who die, declare the pennies...?
+On your eyes
+10
+
+Music: The Beatles: Of all the ex-Beatles, he has the greatest net worth?
+Paul mccartney
+10
+
+Music: The Beatles: Oh, I get high with a little...?
+Help from my friends
+10
+
+Music: The Beatles: Originally 'Miss Daisy Hawkins', she picks up the rice and lives in a dream?
+Eleanor rigby
+10
+
+Music: The Beatles: Paul & him were the two left-handed Beatles?
+Ringo
+10
+
+Music: The Beatles: Paul McCartney once dated the sister of Peter Asher of Peter and Gordon. What was her name?
+Jane
+10
+
+Music: The Beatles: Paul McCartney recorded an ultrasonic whistle at the end of this record, especially for his Shetland sheepdog?
+A Day in the Life
+10
+
+Music: The Beatles: Paul McCartney's mother is Mary in this 1969 #1 Beatles hit?
+Let it be
+10
+
+Music: The Beatles: Performed at this stadium in Minneapolis in 1964?
+Met stadium
+10
+
+Music: The Beatles: Phil Spector ruined this album?
+Let it be
+10
+
+Music: The Beatles: Priest from Abbey Road?
+Ringo starr
+10
+
+Music: The Beatles: Rocky Raccoon?
+Paul mccartney
+10
+
+Music: The Beatles: Scrambled Eggs was the original title of the Beatles' hit, 'Yesterday', however, what was the original title of their hit song, Eleanor Rigby?
+Daisy Hawkins
+10
+
+Music: The Beatles: So how could I dance with another (ooh), when I saw her...?
+Standing there
+10
+
+Music: The Beatles: Song: More covers of this song have been recorded than any other Beatles song?
+Yesterday
+10
+
+Music: The Beatles: Song: Name the beatles single which begins: 'dear sir or madam, will you read my book?
+Paperback writer
+10
+
+Music: The Beatles: Starr's first solo album that was released after the break-up?
+Sentimental journey
+10
+
+Music: The Beatles: Tell me that you want those kinds of things, that money...?
+Just cant buy
+10
+
+Music: The Beatles: The beatles manager that died of a suspected drug overdose?
+Brian epstein
+10
+
+Music: The Beatles: The Beatles posed this question on the White Album right before `I Will'?
+Why dont we do it in the road
+10
+
+Music: The Beatles: The Beatles' last album together (all 4 of them anyway :)?
+Let it be
+10
+
+Music: The Beatles: The beatles' last live performance took place on the roof of this building?
+Apple studios
+10
+
+Music: The Beatles: The celebrated Mr. K performs his feat on Saturday at...?
+Bishopsgate
+10
+
+Music: The Beatles: The club in Liverpool made famous for the Beatles early appearences?
+Cavern
+10
+
+Music: The Beatles: The first Beatles song for which Ringo received full composing credit?
+Dont pass me by
+10
+
+Music: The Beatles: The first Harrison composition featured on the A-side of a Beatles single?
+Something
+10
+
+Music: The Beatles: The Fool on the Hill?
+Paul mccartney
+10
+
+Music: The Beatles: The John Lennon album released by Yoko Ono 4 years after his death?
+Milk and honey
+10
+
+Music: The Beatles: The name of Mean Mr. Mustard's sister?
+Pam
+10
+
+Music: The Beatles: The number of people killed by Maxwell's silver hammer?
+3
+10
+
+Music: The Beatles: The only Beatle who fits in this category?
+George harrison
+10
+
+Music: The Beatles: The only Beatle who fits in this category?
+John lennon
+10
+
+Music: The Beatles: The only Beatle who fits in this category?
+Ringo starr
+10
+
+Music: The Beatles: The only Beatles song starting with the letter 'J'?
+Julia
+10
+
+Music: The Beatles: The only monochromatic Beatles album?
+White album
+10
+
+Music: The Beatles: The year in which John Lennon was born?
+1940
+10
+
+Music: The Beatles: There was a heavy and a soft version of this single from the white album?
+Revolution
+10
+
+Music: The Beatles: They made this one-word plea?
+Help
+10
+
+Music: The Beatles: This album has the same title as the Beatles' first feature film?
+A hard days night
+10
+
+Music: The Beatles: This album's cover featured the band dressed up...oddly?
+Magical mystery tour
+10
+
+Music: The Beatles: This Boy?
+Ringo starr
+10
+
+Music: The Beatles: This is what Rocky Raccoon found when he checked into his room?
+Gideons bible
+10
+
+Music: The Beatles: This song was covered by the Jeff Healey Band; on the white album?
+While my guitar gently weeps
+10
+
+Music: The Beatles: This song was inspired by a cornflakes advertisement on TV?
+Good morning good morning
+10
+
+Music: The Beatles: This was the first number one Beatle hit in America?
+I want to hold your hand
+10
+
+Music: The Beatles: This was the last Beatles album recorded?
+Abbey road
+10
+
+Music: The Beatles: Two of Us (besides Paul)?
+Linda mccartney
+10
+
+Music: The Beatles: upon what will there be a show for the benefit of Mr. Kite?
+-- Answer metadata begin
+{
+    "answers": ["Trampoline", "a trampoline"]
+}
+-- Answer metadata end
+10
+
+Music: The Beatles: What label were the early Beatles albums released under in Britain?
+Parlophone
+10
+
+Music: The Beatles: What song was a hit for the beatles and anita bryant?
+Till there was you
+10
+
+Music: The Beatles: What song was the beatles first attempt at social commentary?
+Nowhere man
+10
+
+Music: The Beatles: What year was the White Album released?
+1968
+10
+
+Music: The Beatles: Where did John & Yoko marry?
+Gibraltar
+10
+
+Music: The Beatles: Where did Rocky Raccoon live (Specific)?
+The black mountain hills of dakota
+10
+
+Music: The Beatles: Which Beatle is the youngest?
+George harrison
+10
+
+Music: The Beatles: Who was Martha (specifically!)?
+Paul mccartneys dog
+10
+
+Music: The Beatles: Who was Paul's original fiancee?
+Jane asher
+10
+
+Music: The Beatles: Who was the youngest of the Beatles?
+George Harrison
+10
+
+Music: The Beatles: With over 2500 cover versions, its the most widely-covered of Beatles songs?
+Yesterday
+10
+
+Music: The Beatles: You can knit a sweater by the fireside, Sunday morning...?
+Go for a ride
+10
+
+Music: The Beatles: You're such a lovely audience, we'd like to take you...?
+Home with us
+10
+
+Music: The Bee Gees made their American TV debut on what show?
+American Bandstand
+10
+
+Music: The Bee Gees: Where did all the lights go down?
+Massachusetts
+10
+
+Music: the brothers liam & noel gallagher are members of this group?
+Oasis
+10
+
+Music: The Caboliers was the name of whose jazzy band?
+Cab calloway
+10
+
+Music: The Checkmates, Ltd. sang about this colour of pearl?
+Black
+10
+
+Music: The Coasters told this colour to run?
+Red
+10
+
+Music: The common name for a low frequency speaker?
+Woofer
+10
+
+Music: the concerti on the two voyager probes information discs are performed by what famed Canadian pianist?
+Glenn gould
+10
+
+Music: The concerto grosso form was used in much of the music written in the style of the Baroque period (1600 - 1750). The first and last movements of the concerto grosso are often in ____ form
+Ritornello
+10
+
+Music: The country gentleman is the nickname of what guitarist?
+Chet atkins
+10
+
+Music: The deep toned wind instrument native to Australia is called a what?
+Didgeridoo
+10
+
+Music: The Doors: Album cover: a bunch of circus freaks playing in the street?
+Strange days
+10
+
+Music: The Doors: First album released after Jim's death, Manzarek sings most songs?
+Other voices
+10
+
+Music: The Doors: Jim would be turning this age in December of 1995?
+52
+10
+
+Music: The Doors: Robby Krieger played what instrument?
+Guitar
+10
+
+Music: The Doors: This Doors hit was a US #1 in 1968?
+Hello i love you
+10
+
+Music: The early music of the medieval church existed in the form of Gregorian chants. These chants are monophonic and?
+Unmetered
+10
+
+Music: The End Of The ____- Don Henley
+Innocence
+10
+
+Music: The fab four are ____
+The beatles
+10
+
+Music: The famous Woodstock music festival took place in what year?
+1969
+10
+
+Music: The fireballs had some success with the record 'torquay', but when they teamed up with jimmy gilmer, which record stayed at no. 1 for an entire year?
+Sugar shack
+10
+
+Music: The first Beatle to tour the United States?
+George harrison
+10
+
+Music: The first Eurovision Song Contest was in 1951, 1956 or 1958?
+1956
+10
+
+Music: The first single to be released by Wings to chart in the US?
+Give Ireland back to the Irish
+10
+
+Music: The first UK Top 10 chart appeared in November 1952 when A1 Martino was No 1 with 'Here in my Heart'. Who had three songs in that first top 10 chart?
+Vera lynn
+10
+
+Music: The fruit-topped Brazilian Bombshell?
+Carmen miranda
+10
+
+Music: The Gong Show once dedicated an entire show to versions of this song?
+Feelings
+10
+
+Music: The Grateful Dead were once called what?
+The warlocks
+10
+
+Music: The greatest hits of this group known for long red beards?
+Zz top
+10
+
+Music: The House of the Rising Sun is in this city?
+New orleans
+10
+
+Music: The Irish Rovers sang about this fictitious animal in 1968?
+Unicorn
+10
+
+Music: The Jacksons: According to one Jackson, P.Y.T. stands for this?
+Pretty young thing
+10
+
+Music: The Jacksons: First name of Jermaine's wife, daughter of Motown president Barry Gordy?
+Hazel
+10
+
+Music: The Jacksons: In 1984, Michael recorded two singles for this Jacksons album?
+Victory
+10
+
+Music: The Jacksons: Janet Jackson was briefly married to this singer in 1984?
+James debarge
+10
+
+Music: The Jacksons: Katherine Jackson, the Jacksons matriarch, is of this religion?
+Jehovahs witness
+10
+
+Music: The Jacksons: Name of Michael Jackson's biography?
+Moonwalker
+10
+
+Music: The Jacksons: Rebbie Jackson's only top 40 hit?
+Centipede
+10
+
+Music: The Jacksons: The eldest sibling of the jackson family?
+Rebbie Jackson
+10
+
+Music: The Jacksons: The Michael jackson album preceding Thriller?
+Off The Wall
+10
+
+Music: The Jacksons: There are only three cuts in the entirety of this Janet Jackson video?
+When i think of you
+10
+
+Music: The Jazz Butcher: Our domestic animal is ____ ____ indeed
+Very good
+10
+
+Music: The Kaiser Chiefs sang about what girl?
+Ruby
+10
+
+Music: The last waltz chronicled the farewell performance of what rock group?
+The band
+10
+
+Music: The lead singer of The Smiths is currently doing work on his own?
+Morrissey
+10
+
+Music: The Loco-Motion - Kylie ____
+Minogue
+10
+
+Music: The Look?
+Roxette
+10
+
+Music: The Lover In Me - ____Easton
+Sheena
+10
+
+Music: The main promoter of country music, the CMA, stands for this?
+Country music association
+10
+
+Music: The Mamas and Papas consisted of C. Elliott, J. Phillips, M. Phillips, and him?
+Doherty
+10
+
+Music: The members of this band always hide behind gigantic eyeball masks?
+The residents
+10
+
+Music: The members of which string quartet were Norbert Brainin, Sigmund Nissel, Martin Lovett and Peter Schidlof?
+The amadeus quartet
+10
+
+Music: The Michael Jackson album that preceded Thriller?
+Off the wall
+10
+
+Music: The Monkees: Soy un creedor?
+Im a believer
+10
+
+Music: The Moody Blues' greatest hit?
+Nights in white satin
+10
+
+Music: The most widely mimicked Al Jolson song?
+Mammy
+10
+
+Music: The musical books you would find in church pews?
+Hymnal
+10
+
+Music: The name of Rush's guitarist?
+Alex lifeson
+10
+
+Music: The name of the National Anthem of Portugal?
+The Portuguese
+10
+
+Music: The name of which wind instrument comes from the latin word for a young bull?
+Bugle
+10
+
+Music: The Non-Beatles Music: CCR song, perhaps about a woman who is gloating?
+Proud mary
+10
+
+Music: The Non-Beatles Music: Van Halen song, perhaps egging on a potential suicide victim?
+Jump
+10
+
+Music: the official state song of georgia since 1922 has been what?
+Georgia on my mind
+10
+
+Music: The only Iron Butterfly song anyone's ever heard: 12-minute drum solo?
+Inagaddadavida
+10
+
+Music: The only member of the band ZZ Top without a beard has what last name?
+Beard
+10
+
+Music: The only Phish video ever to appear on MTV (as of January 1995)?
+Down with disease
+10
+
+Music: The only single to make the top 20 during the 70s by Herb Alpert?
+Rise
+10
+
+Music: The only Smiths song with no vocals?
+Oscillate wildly
+10
+
+Music: The original name of this Trash Disco hit was Run Rabbit Run?
+Fly robin fly
+10
+
+Music: The plane crash that killed Buddy Holly & Ritchie Valens crashed in what city in Iowa?
+Mason city
+10
+
+Music: The Police: Andy toured in the 70s with this chart-topping act?
+Eric burden and the animals
+10
+
+Music: The Police: Scenes of Northern Ireland feature in the video of this song?
+Invisible sun
+10
+
+Music: The Police: Stewart's brothers Ian & Miles founded this record label?
+Irs
+10
+
+Music: The Police: Sting is from this northern English city?
+Newcastle
+10
+
+Music: The Police: Sting wrote this song after touring the Brussels red light district?
+Roxanne
+10
+
+Music: The Police: The first member of The Police?
+Stewart copeland
+10
+
+Music: The Police: The name of the drummer for The Police?
+Stewart copeland
+10
+
+Music: The Police: The name of the lead guitarist for The Police?
+Andy summers
+10
+
+Music: The Police: The Police did the soundtrack for this disturbing English mystery-drama?
+Brimstone and treacle
+10
+
+Music: The Pretenders asked to be talk to with one of these?
+A message of love
+10
+
+Music: The Promise - ____In Rome
+When
+10
+
+Music: The REAL female voice behind C&C Music Factory, Black Box never shoen in videos?
+Martha wash
+10
+
+Music: The real name of Skinny Puppy vocalist Nivek Ogre?
+Kevin ogilvie
+10
+
+Music: The reason Stevie Wonder Called?
+To say i love you
+10
+
+Music: the single pride was taken from which u2 album?
+The unforgetable fire
+10
+
+Music: The Skatalites recorded it in 1967, The Specials did a faster version live?
+Guns of navarone
+10
+
+Music: The Smiths: All lyrics of The Smiths is written by him?
+Morrissey
+10
+
+Music: The Smiths: Who is the guitarist in The Smiths?
+Johnny marr
+10
+
+Music: The song 'Matchmaker, Matchmaker' came from which musical play?
+Fiddler On The Roof
+10
+
+Music: The song 'Raindrops keep falling on my head' was introduced in which film?
+Butch cassidy and the sundance kid
+10
+
+Music: The song 'Why Do Fools Fall in Love was a hit in which year?
+1956
+10
+
+Music: The song Honolulu Baby appears in which Laurel and Hardy film?
+Sons of the desert
+10
+
+Music: The song Love is All Around, performed by Wet Wet Wet, is featured in which Richard Curtis film?
+Four weddings and a funeral
+10
+
+Music: The Song of Hiawatha is a work by which US poet?
+Henry wadsworth longfellow
+10
+
+Music: The song, 'Hungry Heart' came from which Bruce Springsteen album?
+The River 
+10
+
+Music: The Specials self-titled first album proved an 'attraction' for this producer?
+Elvis costello
+10
+
+Music: The Specials' now-legendary recording label, as clear as black & white?
+2 tone
+10
+
+Music: The two colours of velvet that have hit #1?
+Black and blue
+10
+
+Music: The two muppets who have hit the top 40?
+Ernie and kermit
+10
+
+Music: The unique sound of medieval music, sacred and secular, stems from the unusual scales used. These scales are called?
+Modes
+10
+
+Music: The university of houston once elected what rock star as homecoming queen?
+Alice cooper
+10
+
+Music: The Valley Road - Bruce ____& The Range
+Hornsby
+10
+
+Music: The very first video aired at MTV's premier?
+Video killed the radio star
+10
+
+Music: The Who: from Who's Next, Pearl Jam often covered it on Lolla 92?
+Baba oreilly
+10
+
+Music: The Who: In 1963, The Who was discovered by what Mod?
+Pete meaden
+10
+
+Music: The Who: last song on Who's Next?
+Wont get fooled again
+10
+
+Music: The Who: What is Entwistle's famous lyrical creation, starring an arachnid?
+Boris the spider
+10
+
+Music: The Who's rock concert stars Elton John. Its called ____
+Tommy
+10
+
+Music: The Who's rock musical stars Elton John. It's called ____
+Tommy
+10
+
+Music: Their hugely successful hit off Shabooh Shoobah was called what?
+The one thing
+10
+
+Music: Their lead singer scores most Tim Burton movies?
+Oingo boingo
+10
+
+Music: These 2 Prince songs both mention a colour in their title. (use and)?
+Little red corvette and blue computer
+10
+
+Music: These types of beverages are commonly available at raves?
+Smart drinks
+10
+
+Music: They are considered to be the first heavy metal band?
+Black sabbath
+10
+
+Music: They opened for Men at work on their Business as Usual Tour in America?
+Mental as anything
+10
+
+Music: they released the parody 'oh you ate one too' in 1988 which included the song 'cabo wabo'?
+Van halen
+10
+
+Music: They sang about a Blue Monday?
+New order
+10
+
+Music: They've got the beat, they've got the beat, yeah, they've got it!!!?
+The go-gos
+10
+
+Music: This 1980 KC & the Sunshine BAND hit was remade last year by KWS?
+Please dont go
+10
+
+Music: This actor had a huge hit in 1976 with I'm Easy?
+Carradine
+10
+
+Music: This Anaheim band, once ska, is very popular. Because of Gwen perhaps?
+No doubt
+10
+
+Music: This band was fronted by Wattie Buchanan, who supported the National Front?
+The exploited
+10
+
+Music: This band's B-sides included 'Winterlong' 'Manta Ray' 'Into the White'?
+The pixies
+10
+
+Music: This bass player shares his name with an naval officer of note?
+John paul jones
+10
+
+Music: This bass-heavy Nirvana song is named after an element?
+Lithium
+10
+
+Music: This bat-biting singer also blew up goats?
+Ozzy osbourne
+10
+
+Music: This Bay Area combo is Dill Records' most 'appropriate' artist?
+Skankin pickle
+10
+
+Music: This Beatles song was the first song Aerosmith ever recorded?
+Im down
+10
+
+Music: This Billy Joel song mentions Stranger In A Strange Land & Catcher In The Rye?
+We didnt start the fire
+10
+
+Music: this blind guitarist performed the theme song for chico and the man?
+Jose feliciano
+10
+
+Music: This common editing agent is also the title of a Killing Joke song?
+Whiteout
+10
+
+Music: This company, king of the late-night record deals, is based in Minnesota?
+K-tel
+10
+
+Music: This composer has done albums called 'Torture Garden', 'Leng T'che', etc...?
+John zorn
+10
+
+Music: This composer, singer, actor, writer, & athlete was also a rhodes scholar?
+Kris kristofferson
+10
+
+Music: This Concrete Blonde song is loosely based on Anne Rice's Vampire Chronicles?
+The vampire song
+10
+
+Music: This dance asked you to move your body . . .front-to-back in a rock-like motion?
+The bartman
+10
+
+Music: This duo had problems when we discovered that they didn't sing on their 3 #1s?
+Milli vanilli
+10
+
+Music: This dutch band had their one and only hit with the Theme from Star Wars?
+Meco
+10
+
+Music: This Elvis hit was inspired by a suicide note printed in the Miami Herald?
+Heartbreak hotel
+10
+
+Music: This former ac/dc member died on february 19, 1980?
+Bon scott
+10
+
+Music: This former vice president's daughter was WLOL's morning DJ for 2 years?
+Eleanor mondale
+10
+
+Music: This geographic ballad is associate with Ray Charles?
+Georgia
+10
+
+Music: This group name suggests an unpleasant February 14th?
+My bloody valentine
+10
+
+Music: This Indian sitar player performed at the Monterey festival?
+Shankar
+10
+
+Music: This is Michael Jackson's signature dance?
+Moonwalk
+10
+
+Music: This is the baseball position that John Fogarty thinks he can play?
+Centerfield
+10
+
+Music: This is the first song on the Ultra album?
+Barrel of a gun
+10
+
+Music: This is the most covered song of all time?
+Yesterday
+10
+
+Music: This Isley brother died of a heart attack in 1986?
+Okelly
+10
+
+Music: This jazz alto player married Charlie Parker's widow?
+Phil woods
+10
+
+Music: This jazz musician teamed up with Charlie Parker on the 'Bird and Diz' album?
+Dizzy gillespie
+10
+
+Music: This jazz standard denotes a platonic & amicable relationship?
+Just friends
+10
+
+Music: This keyboardist collaborated with Neil Schon & wrote the miami vice theme?
+Jan hammer
+10
+
+Music: This left-leaning solo guitarist sings mostly about politics & his lovers?
+Billy bragg
+10
+
+Music: This Madonna song became an athem for Pro-life activists?
+Papa dont preach
+10
+
+Music: This Madonna video was #1 on the Art Of Video countdown?
+Express yourself
+10
+
+Music: This man created the Motown Empire & wrote many songs?
+Berry gordy
+10
+
+Music: This musical festival recently had a sequel?
+Woodstock
+10
+
+Music: This musical style is characterized by an excessive ornamentation?
+Baroque
+10
+
+Music: This musical style was played for twenty years before it became known as rap?
+Dancehall
+10
+
+Music: This NBA low-post scoring machine is also a professional jazz musician?
+Wayman tisdale
+10
+
+Music: This New-Age former keyboardist for Chameleon is now married to Linda Evans?
+Yanni
+10
+
+Music: This New-York group consisted of Ann Magnusson and Kramer?
+Bongwater
+10
+
+Music: This NYC record label is ska music's strongest, with bands like The Toasters?
+Moon records
+10
+
+Music: This person likes walking with panthers and around the way girls?
+Ll cool j
+10
+
+Music: This pop-star owned most of the beatles copyrights?
+Michael jackson
+10
+
+Music: This poppy metal group had a one-armed drummer after an accident?
+Def leppard
+10
+
+Music: This rapper reportedly attended a preparatory school in Texas?
+Vanilla ice
+10
+
+Music: This refers to chanted or spoken rhyming lyrics often used in hip hop music?
+Rapping
+10
+
+Music: This rocker used to be known as folk singer David Jones?
+David bowie
+10
+
+Music: This Rolling Stones hit was released the day after Brian Jones' funeral?
+Honky tonk women
+10
+
+Music: This Rolling Stones song was deemed as racist by many?
+Brown sugar
+10
+
+Music: This Rupert Holmes' hit in 1979 was subtitled The Pina Colada Song?
+Escape
+10
+
+Music: This self-styled King of Pop married Lisa Marie in a bad PR move?
+Michael jackson
+10
+
+Music: This shaky singer covered a Beatles song at the first Woodstock?
+Joe cocker
+10
+
+Music: This singer appeared in the following movies: The Fisher King, Rumble Fish?
+Tom waits
+10
+
+Music: This singer has looked at clouds from both sides now?
+Joni mitchell
+10
+
+Music: This singer lost popularity upon condemning Salman Rushdie in the press?
+Cat stevens
+10
+
+Music: This singer, now known as Yusef Islam, recorded an album in Minneapolis?
+Cat stevens
+10
+
+Music: This SNL bandleader has toured with Bob Dylan and Mick Jagger?
+G.e. smith
+10
+
+Music: This Spandau Ballet hit reached No.1 in 1991?
+Gold
+10
+
+Music: This style of hat, popular among skasters, is also a German ska record label?
+Pork pie
+10
+
+Music: This style of sacred Renaissance choral music is set to a sacred Latin text. The text used is different than that found in the ordinary of the mass?
+Motet
+10
+
+Music: This Time I Know It's For Real - Donna ____
+Summer
+10
+
+Music: This troubled Beach Boy put out a solo album in 1988 (full name)?
+Brian wilson
+10
+
+Music: This trumpeter/singer was a sex symbol before he became a junkie?
+Chet baker
+10
+
+Music: This type of music sucks?
+Disco
+10
+
+Music: This unique feature of Baroque music is typically played on the harpsichord and doubled on the 'cello?
+Bass continuo
+10
+
+Music: This wacky St. Louis ska-punk band got their name from a music class?
+Mu330
+10
+
+Music: This was the Beatle's first film?
+A hard day's night
+10
+
+Music: This was the first video shown on MTV?
+Video killed the radio star
+10
+
+Music: This was totally eclipsed in Bonnie Tyler's 1983 hit?
+Heart
+10
+
+Music: This Zeppelin tune has references from Lord Of The Rings?
+Ramble on
+10
+
+Music: Thomas Dolby says she blinded him with this?
+Science
+10
+
+Music: Thomas Dolby: She Blinded Me With ____
+Science
+10
+
+Music: Though they had 9 #1s in the UK, Abba's only #1 was this?
+Dancing queen
+10
+
+Music: Tiny Tim's signature song?
+Tip toe thru the tulips with me
+10
+
+Music: Titles: Musical with songs: Bali' Hai, There is Nothin' Liek a Dame, Honey Bun?
+South pacific
+10
+
+Music: Titles: Musical with songs: I Want to Be Happy, Tea for Two, Take a Little Step?
+No no nanette
+10
+
+Music: Titles: Operatta with songs: You're Devastating, Yesterdays, Smoke Gets in Your Eyes?
+Roberta
+10
+
+Music: Titles: Operetta with: Tramp, Tramp, Ah Sweet Mystery of Life, Neath the Sothern Moon?
+Naughty marietta
+10
+
+Music: To a year, when did Heart first have a top ten hit?
+1976
+10
+
+Music: to what band do the gallagher brothers belong?
+Oasis
+10
+
+Music: To which British boy band did Mark Owen belong?
+Take That
+10
+
+Music: to who was cher married?
+Sonny bono
+10
+
+Music: Together ____- Rick Astley
+Forever
+10
+
+Music: Tom Petty: Tom Petty & the Heartbreakers released their first album in what year?
+1976
+10
+
+Music: Tom Petty: What song did Tom sing with various other artists at the Bob Dylan Tribute?
+My back pages
+10
+
+Music: Tom Petty: What video won the 1985 MTV Music Video Award for best special effects?
+Dont come around here no more
+10
+
+Music: Tom Petty: What was the name of Tom Petty and the Heartbreakers' 1991-92 tour?
+Touring the great wide open
+10
+
+Music: Tom Petty: What year were 2 Tom Petty and the Heartbreakers albums released?
+1985
+10
+
+Music: Top Record of all time according to Billboard magazine?
+Dont be cruel
+10
+
+Music: Top Record of the Eighties?
+Physical
+10
+
+Music: Tori Amos did a cover of this Nirvana song?
+Smells like teen spirit
+10
+
+Music: Tori Amos: Age at which Tori changed her name?
+Seventeen
+10
+
+Music: Tori Amos: Tori plays this instrument?
+Piano
+10
+
+Music: Tori Amos: Year Tori's first album was released?
+1988
+10
+
+Music: Toriano Jackson, of the jackson 5, is better known by this nickname?
+Tito
+10
+
+Music: Toronto band Barenaked Ladies sings a song about being in this grade?
+Nine
+10
+
+Music: Toy Soldiers?
+Markita
+10
+
+Music: Trent Reznor is the lead singer of what group?
+Nine inch nails
+10
+
+Music: Tres hombres (1973) was recorded by?
+Zz top
+10
+
+Music: Trios: A poppy trio which used to be art rock, two successful solo singers?
+Genesis
+10
+
+Music: Trios: A power trio plus an Irish Preacher decked out in leather?
+U2
+10
+
+Music: Trios: A trio plus a barechested singer rubbing glass over his body?
+Iggy & the stooges
+10
+
+Music: Trios: A trio plus John Lydon, if Sid's instrument was plugged in that night?
+Sex pistols
+10
+
+Music: Trios: Alternative power pop trio plus moping, vegetarian, asexual singer?
+The smiths
+10
+
+Music: Trios: G____ T____ and his amazing four-man power trio
+George thorogood
+10
+
+Music: Trios: John Abercrombie, Dave Holland and Jack DeJohnette (Jazz group)?
+The gateway trio
+10
+
+Music: Trios: This Canadian art-metal trio sings sci-fi themes a lot (hint: archives)?
+Rush
+10
+
+Music: Trios: This trio opened for the original Monkees on tour?
+The jimi hendrix experience
+10
+
+Music: Trivia: Name the band in which Nick Cave's lead guitarist, Blixa Bargeld sings?
+Einstuerzende neubauten
+10
+
+Music: Trivia: Name the band: Anita Lane, Nick Cave, Barry Adamson etc?
+The birthday party
+10
+
+Music: Trivia: What is P.J.Harvey's first album?
+Dry
+10
+
+Music: Trivia: Who produced and edited the soundtrack of Natural Born Killers?
+Trent reznor
+10
+
+Music: Trivia: Who teamed up with Niel Tennant to form the Pet Shop Boys?
+Chris lowe
+10
+
+Music: Turkish lute instrument with a bent neck?
+Ud
+10
+
+Music: Tusk was a best-selling album for which band?
+Fleetwood Mac
+10
+
+Music: TV Themes: Everywhere you look, everywhere you go?
+Full house
+10
+
+Music: TV Themes: Hangin' out down the street, the same old thing we did last week...?
+That 70s show
+10
+
+Music: TV Themes: I'm gonna live forever. Baby remember my name...?
+Fame
+10
+
+Music: TV Themes: If you have a problem...?
+The a-team
+10
+
+Music: TV Themes: It's like some kind of torture to have to watch the show!?
+The muppet show
+10
+
+Music: TV Themes: Set your course for adventure, your mind on a new romance...?
+Love boat
+10
+
+Music: TV Themes: She's the lady in red when everybody else is wearing tan?
+The nanny
+10
+
+Music: TV Themes: When the world never seems to be living up to your dreams...?
+Facts of life
+10
+
+Music: TV Themes: You're half the fun now, with me & all the gang, learning from each other...?
+Fat albert & the cosby kids
+10
+
+Music: TV/Film: Ballad sung by a woman pretending to be a man pretending to be a woman?
+Crazy world
+10
+
+Music: TV/Film: David Cassidy starred on tv with what singing family?
+The partridge family
+10
+
+Music: TV/Film: Dolly Parton used to close her TV show with this song?
+I will always love you
+10
+
+Music: TV/Film: Frank Stallone, Sly's brother, had a hit with a song from this movie?
+Staying alive
+10
+
+Music: TV/Film: Hits from which decade were on the soundtrack of the film 'Good Morning Vietnam'?
+60's
+10
+
+Music: TV/Film: James Bond: Sheena easton sang the title song for which 'james bond' film?
+For your eyes only
+10
+
+Music: TV/Film: John Travolta sings this homage to a fast car in Grease?
+Greased lightning
+10
+
+Music: TV/Film: Julie Andrews and Robert Preston sing this duet as a gay couple?
+You and me
+10
+
+Music: TV/Film: Movie: The film that included the hit Rock Around The Clock?
+The blackboard jungle
+10
+
+Music: TV/Film: MTV: Award for which viewers call in & vote for their favorite video?
+Viewers choice
+10
+
+Music: TV/Film: MTV: Beavis and Butthead painted this neighbor's cat's butt?
+Mr. anderson
+10
+
+Music: TV/Film: MTV: He not only created Beavis and Butthead, but also does their voices?
+Mike judge
+10
+
+Music: TV/Film: MTV: He scored the first 25 pointer in Rock n Jock Basketball history?
+Miller
+10
+
+Music: TV/Film: MTV: He won best male video two years in a row for 'Just The Two Of Us' & 'Miami' in the MTV video music awards. Name him?
+Will smith
+10
+
+Music: TV/Film: MTV: Host of MTV Jams?
+Bill bellamy
+10
+
+Music: TV/Film: MTV: MTV International VJ who appears on Beach MTV?
+Daisy fuentes
+10
+
+Music: TV/Film: MTV: MTV is an acronym for this?
+Music television
+10
+
+Music: TV/Film: MTV: MTV ran a contest for a video to be produced for this Madonna song?
+True blue
+10
+
+Music: TV/Film: MTV: MTV VJ shares this name with a past US president?
+Kennedy
+10
+
+Music: TV/Film: MTV: MTV's version of a Saturday Night Live variety show?
+The state
+10
+
+Music: TV/Film: MTV: Only group to win best group video twice in the MTV video music awards?
+Tlc
+10
+
+Music: TV/Film: MTV: Original host of MTV News?
+Kurt loder
+10
+
+Music: TV/Film: MTV: Plays these most of the day?
+Videos
+10
+
+Music: TV/Film: MTV: Ricky Rachman's show?
+Headbangers ball
+10
+
+Music: TV/Film: MTV: She won best video & best female video for 'Ray Of Light' in the MTV video music awards?
+Madonna
+10
+
+Music: TV/Film: MTV: Show hosted by John Ales?
+Lip service
+10
+
+Music: TV/Film: MTV: The female who won the most MTV VMA's in 1990?
+Paula abdul
+10
+
+Music: TV/Film: MTV: This cartoon started off showing Beavis and Butt-head before their cartoon?
+Liquid television
+10
+
+Music: TV/Film: MTV: This event is held annually that honors the year's best videos?
+Video music awards
+10
+
+Music: TV/Film: MTV: This former video jockey can now be seen in skin-care commercials?
+Martha quinn
+10
+
+Music: TV/Film: MTV: This show updates news of the week?
+Week-in rock
+10
+
+Music: TV/Film: Musicals: George Burns, Steve Martin and others were in this musical about the Beatles?
+Sergeant peppers lonely Hearts Club Band
+10
+
+Music: TV/Film: Musicals: This movie starred Shirley Jones in the 1955 musical of a state?
+Oklahoma
+10
+
+Music: TV/Film: This was the first Elvis film?
+Love me tender
+10
+
+Music: TV/Film: This Whitney Houstong song was used for the 1988 Summer Olympics?
+One moment in time
+10
+
+Music: TV/Film: Travolta sings this song at a drive-in?
+Sandy
+10
+
+Music: TV/Film: what animated film was scored by the band America?
+The last unicorn
+10
+
+Music: TV/Film: What song did Aretha Franklin sing in 'The Blues Brothers'?
+Think
+10
+
+Music: TV/Film: What song from Rocky 3 earned an oscar nomination?
+Eye of the tiger
+10
+
+Music: TV/Film: Who played drums on george harrison's when we was fab?
+Ringo starr
+10
+
+Music: Two ____- Phil Collins
+Hearts
+10
+
+Music: Type of love Howard Jones was looking for when he needed a friend & a lover?
+Everlasting love
+10
+
+Music: Type of Music played by S. E. Rogie of Sierra Leone?
+Palm wine
+10
+
+Music: U S composer of musicals including Paint your wagon, My fair lady?
+Frederick Loewe
+10
+
+Music: U2: What 1988 album, contains Live & B-Side tracks, along with new ones?
+Rattle & hum
+10
+
+Music: U2: What Elvis Presely Song did U2 play on their latest tour(1994)?
+I cant help falling in love with you
+10
+
+Music: U2: What is Bono's real name?
+Paul hewson
+10
+
+Music: U2: What is the name of the lead singer?
+Bono
+10
+
+Music: U2: What was the last stop on U2's latest tour(1994)?
+Sydney
+10
+
+Music: U2's song about a gay man with AIDS coming out to his father?
+One
+10
+
+Music: UB40 & Bob Marley sang about what type of wine?
+Red Red Wine
+10
+
+Music: UK chart 2002, who sang Fly by ii?
+Blue
+10
+
+Music: UK chart 2002, who sang I'm not a girl not yet a woman?
+Britney Spears
+10
+
+Music: UK group who had a hit with 'House of the Rising Sun'?
+Animals
+10
+
+Music: Under what name did Jefferson Airplane regroup at the top of the charts?
+Starship
+10
+
+Music: under which name is eric patrick clapp known?
+Eric clapton
+10
+
+Music: Van Halen: Eddie is married to what actress?
+Valerie bertinelli
+10
+
+Music: Van Halen: What city in the Netherlands were Alex and Edward Van Halen born?
+Nijmegen
+10
+
+Music: Van Halen: What Pete Townshend song was featured on VH Live: Right Here, Right Now?
+Wont get fooled again
+10
+
+Music: Van Halen: Who is the only member of the band born in California?
+Sammy hagar
+10
+
+Music: Van Morrison sang about what 'Eyed Girl'?
+Brown
+10
+
+Music: Velvet Underground song about a self-mailing young man?
+The gift
+10
+
+Music: Verdi wrote 'aida' to commemorate the opening of the ____ ____
+Suez canal
+10
+
+Music: Verse Chorus Verse was going to be the name of this bands newest album?
+Nirvana
+10
+
+Music: VH1: Segment which features 80s videos?
+The big 80s
+10
+
+Music: VH1: Sheryl Crow kicks off her shoes at the beginning of this video?
+Strong enough
+10
+
+Music: VH1: This artist was credited with the 90s biggest comeback?
+Meat loaf
+10
+
+Music: VH1: This Phil Collins video is a sort of documentary about making music videos?
+Dont lose my number
+10
+
+Music: Victoria Principal sang All I Have To Do Is Dream with which Gibb?
+Andy
+10
+
+Music: Video for this 1991 Madonna hit was banned from MTV for sexual content?
+Justify my love
+10
+
+Music: Video: Paula Abdul dances barefoot in a grass field?
+Promise of a new day
+10
+
+Music: Video: Prince slowly rises naked out of a tub?
+When doves cry
+10
+
+Music: Videos: A bullet passes through the jack of diamonds?
+Twilight zone
+10
+
+Music: Videos: A girl dressed in yellow flirts with a man in a movie theater?
+Bust a move
+10
+
+Music: Videos: A little girl pedals her tricycle through kenya, Russia, Spain, and New York?
+Sweet lullaby
+10
+
+Music: Videos: A man loosens his shirt, button pops and falls to the floor?
+Roll with it
+10
+
+Music: Videos: A projection of the lead singer's face moves along a roadway?
+Burning down the house
+10
+
+Music: Videos: A woman's face is superimposed over that of a jaguar?
+Maneater
+10
+
+Music: Videos: Alice becomes a cake and gets eaten?
+Dont come around here no more
+10
+
+Music: Videos: Cher consorts frivolously with sailors while wearing a skimpy outfit?
+If i could turn back time
+10
+
+Music: Videos: Chevy Chase lip-synchs?
+You can call me al
+10
+
+Music: Videos: Colored stills of the group in concert are seemlessly run together as animation?
+Shadrach
+10
+
+Music: Videos: Elton John appears as a cartoon?
+Club at the end of the street
+10
+
+Music: Videos: Features DaveTV?
+Just a gigolo
+10
+
+Music: Videos: Fish flopping around out of water; exploding piano?
+Epic
+10
+
+Music: Videos: Four expressionless women play instruments as lead singer looks into camera?
+Addicted to love
+10
+
+Music: Videos: Four women sing while waterskiing?
+Vacation
+10
+
+Music: Videos: Girl gets drawn into a comic strip featuring a motorcycle racer?
+Take on me
+10
+
+Music: Videos: Man and woman dance in a laundromat and throw clothes at each other?
+Every heartbeat
+10
+
+Music: Videos: Man finds dog, gets large enough reward to save his bar?
+All i need is a miracle
+10
+
+Music: Videos: Mark Gastineau and the Statue of Liberty do an odd dance?
+Walk like an egyptian
+10
+
+Music: Videos: Metal workers forge a pair of angel's wings?
+Losing my religion
+10
+
+Music: Videos: MTV used subtitles for this reggae-rap video?
+Informer
+10
+
+Music: Videos: Orange haired lady pounds fist on desk and spins globe?
+Sweet dreams
+10
+
+Music: Videos: Shows only the words to this George Michael song?
+Praying for time
+10
+
+Music: Videos: Shows romance between two mummies?
+Everlasting love
+10
+
+Music: Videos: Sinead O'Connor nicks her scalp shaving?
+The motown Song
+10
+
+Music: Videos: Singer leads a group of prostitues against a ruthless pimp?
+Love is a battlefield
+10
+
+Music: Videos: Woman lounges in tub as bubbles fill the screen?
+Miss chatelaine
+10
+
+Music: Vince clarke & alison moyet formed what band in 1981?
+Yazoo
+10
+
+Music: Vince Guaraldi song which is played in every Charlie Brown animated special?
+Linus and lucy
+10
+
+Music: Violent & Funky - Die Lika Pig?
+Infectious grooves
+10
+
+Music: Vision Of Love was the first British top ten hit for which female superstar?
+Mariah Carey
+10
+
+Music: Vocals of SoftCell?
+Marc almond
+10
+
+Music: Wait - ____Lion
+White
+10
+
+Music: Want to travel south this year...?
+I stay away
+10
+
+Music: We Didn't Start The Fire - ____Joel
+Billy
+10
+
+Music: We passed upon the stair, we spoke of was and when...?
+The man who sold the world
+10
+
+Music: Weekly Radio show taped in West Virginia?
+Mountain stage
+10
+
+Music: Weezer song which mentions a 50's pop star?
+Buddy holly
+10
+
+Music: Weird Al: Parody of Addicted To Love?
+Addicted to spuds
+10
+
+Music: Weird Al: Parody of Beat It?
+Eat it
+10
+
+Music: Weird Al: Parody of Girls Just Want To Have Fun?
+Girls just Want To Have Lunch
+10
+
+Music: Weird Al: Parody of I Love Rock n' Roll?
+I love rocky road
+10
+
+Music: Weird Al: Parody of La Bamba?
+Lasagna
+10
+
+Music: Weird Al: Parody of Livin' On The Edge?
+Livin in the fridge
+10
+
+Music: Weird Al: Parody of MacArthur Park?
+Jurassic park
+10
+
+Music: Weird Al: Parody of My Sharona?
+My bologna
+10
+
+Music: Well known deaf & syphilitic Teutonic composer?
+Beethoven
+10
+
+Music: Wendy & Lisa were once part of who's band?
+Prince
+10
+
+Music: Were the Doobie Brothers actually brothers?
+No
+10
+
+Music: Wet wet wet had a no 1 hit in the 90s with Love is all Around, how long did it spend at the top?
+Fifteen weeks
+10
+
+Music: What ____I Done To Deserve This? - Pet Shop Boys
+Have
+10
+
+Music: What 15-year-old rock icon-to-be was grounded for the whole summer after sneaking out to her first concert, to see David Bowie?
+Madonna
+10
+
+Music: What 1865 Wagner opera opens on a ship?
+Tristan and Isolde
+10
+
+Music: what 1958 eddie cochran song became his biggest us hit and a rock classic?
+Summertime blues
+10
+
+Music: what 1958 song was the coaster's only #1 hit?
+Yakkety yak
+10
+
+Music: What 1965 hit by The Beatles was originally titled 'Scrambled Eggs'?
+Yesterday
+10
+
+Music: What 1970's film came from a pink floyd tune?
+The wall
+10
+
+Music: What 1973 Rolling Stones song does Tori Amos do a cover version of?
+Angie
+10
+
+Music: What 1976 chart-topping song did Barry Manilow sing, but not write?
+I Write the Songs
+10
+
+Music: What 1980 lp was the chipmunk's attempt at offering punk music?
+Chipmunk punk
+10
+
+Music: What 1996 single became the first international hit for the Spice Girls?
+Wannabe
+10
+
+Music: What 23-year-old Tejano singer was murdered by her fan club president?
+Selena
+10
+
+Music: What 50's song begins with a phone ringing & hello baby?
+Chantilly lace
+10
+
+Music: what 70s jazz/rock group took their name from the writings of william burroughs?
+Steely dan
+10
+
+Music: what 80's band included members from bad company and led zeppelin?
+The firm
+10
+
+Music: What aging rock group has featured Bill Wyman & Charlie Watts on a long series of albums?
+Rolling stones
+10
+
+Music: What Alanis Morissette debut album sold over ten million copies?
+Jagged Little Pill
+10
+
+Music: What album holds the world record for copies sold?
+Thriller
+10
+
+Music: what album went platinum for the 20th time in 1984?
+Thriller
+10
+
+Music: What alice cooper album simulated an execution during a song?
+Killer
+10
+
+Music: what American composer is best known for his marches?
+John philip sousa
+10
+
+Music: what are dolly parton's working hours?
+Nine to five
+10
+
+Music: What are the colors of the flag around which Steel Pulse rallies?
+Red gold black green
+10
+
+Music: what are the first names of crosby, stills and nash?
+David stephen graham
+10
+
+Music: what are the first names of the everly brothers?
+Phil & don
+10
+
+Music: What are the first names of the popular early 80's duo hall and oates?
+Darryl and john
+10
+
+Music: What are the separators on a guitar neck called?
+Frets
+10
+
+Music: What are the two most common unbowed stringed instruments found in a symphony orchestra?
+The Harp and the Piano
+10
+
+Music: What band's lead singer regularly entered the stage on a motorcycle?
+Judas priest
+10
+
+Music: What bandleader became the first jazz musician to get an honorary degree from Columbia University, in 1973?
+Duke Ellington
+10
+
+Music: What bankrupt Las Vegas crooner spent $75,000 to refurbish his pet penguins' pond?
+Wayne Newton
+10
+
+Music: What Beatle is left handed?
+Paul mccartney
+10
+
+Music: what beatle's real name is richard starkey?
+Ringo starr
+10
+
+Music: what beatles single lasted longest on the charts, at 19 weeks?
+Hey jude
+10
+
+Music: what beatles song added one day to the week?
+Eight days a week
+10
+
+Music: what beatles song did dr. john remake?
+Yesterday
+10
+
+Music: What Bee Gee song did Steps do a cover version of?
+Tragedy
+10
+
+Music: What big 90's female movie star starred in Bon Jovi's Always video?
+Keri Russell
+10
+
+Music: What Bizet opera concerns a gal who dumps a soldier for a bullfighter?
+Carmen
+10
+
+Music: What blind musician wrote the aretha franklin hit until you come back to me?
+Stevie wonder
+10
+
+Music: What Bobby Darin oldie was used to plug liquid Drano?
+Splish splash
+10
+
+Music: what brewery sponsored the who's farewell tour in the u.s?
+Schlitz
+10
+
+Music: What British band is named after the inventor of the seed drill?
+Jethro tull
+10
+
+Music: What British duo's works are referred to as the savoy operas?
+Gilbert & sullivan
+10
+
+Music: what British glitter rocker plays on iggy pop's raw power album?
+David bowie
+10
+
+Music: What British group got its name from the title of a 1950 Muddy Waters song?
+The Rolling Stones
+10
+
+Music: what British theatrical rocker's alter ego was the thin white duke?
+David bowie
+10
+
+Music: What Broadway musical revival did Lou Diamond Philips refuse to shave the top of his head for, in 1996?
+The King and I
+10
+
+Music: what broadway production of gilbert & sullivan's did linda ronstadt star in the 80's?
+Pirates of penzance
+10
+
+Music: what brother and sister duo produced a show in their family studio?
+Donny and marie osmond
+10
+
+Music: what byrds tune has lyrics taken from the bible?
+Turn turn turn
+10
+
+Music: What California group waited 22 years to score their first chart-toping single since 1966?
+The Beach Boys
+10
+
+Music: What calypso singer founded the USA For Africa charity that recorded We Are the World?
+Harry Belafonte
+10
+
+Music: What character did rock star rick springfield play on tv's general hospital?
+Dr. noah drake
+10
+
+Music: What chart topper did Paul McCartney sing with Stevie Wonder?
+Ebony & ivory
+10
+
+Music: what chuck berry hit does marty mcfly play, in back to the future?
+Johnny b goode
+10
+
+Music: what city & state was marilyn manson raised in?
+Canton, ohio
+10
+
+Music: what city did boogie woogie music first appear in during the 1920's?
+Chicago
+10
+
+Music: what city in tennessee is the country music centre of America?
+Nashville
+10
+
+Music: What city is also known as Music City, U.S.A?
+Nashville
+10
+
+Music: what city was madonna threatened to be arrested in for grabbing her crotch?
+Toronto
+10
+
+Music: What classic rock band sang the song 'Paint It, Black'?
+Rolling Stones
+10
+
+Music: What classical conductor won posthumous Grammy Awards in 1991, 1992, and 1993?
+Leonard Bernstein
+10
+
+Music: what color of outfits does country western singer johnny cash wear?
+Black
+10
+
+Music: What colour 'roses' did Aqua sing about?
+Red
+10
+
+Music: What colour car did Natalie Cole sing about in March 88?
+Pink cadillac
+10
+
+Music: What colour Heather was the title of a 1996 hit for Rod Stewart?
+Purple
+10
+
+Music: What colour polka dot bikini was a great party hit?
+Yellow
+10
+
+Music: What colour rain did prince sing about?
+Purple
+10
+
+Music: what colour shoes was pat boone known for?
+White
+10
+
+Music: What colour was Bombalurina's teeny-weeny polka-dot bikini?
+Yellow
+10
+
+Music: What composer is credited with introducing ballet into opera?
+Lully
+10
+
+Music: What composer was honored on the bicentennial of his death with a 180-disc compilation of all his works?
+Wolfgang Amadeus Mozart
+10
+
+Music: What composer was working on his 10th symphony at the time of his death?
+Beethoven
+10
+
+Music: What composer's film biography won best picture at the oscars in 1984?
+Mozart
+10
+
+Music: What country did Bing Crosby die in?
+Spain
+10
+
+Music: What country is ac/dc from?
+Australia
+10
+
+Music: what country music star spent his early life living in a boxcar?
+Merle haggard
+10
+
+Music: what country music tv show was hosted by roy clark & buck owen?
+Hee haw
+10
+
+Music: what country musicians autobiography was titled sing me back home?
+Merle haggard
+10
+
+Music: What country star changed his first name from Randall to Hank?
+Hank Williams Jr
+10
+
+Music: What country was olivia newton john born in?
+England
+10
+
+Music: What country was the late Freddie Mercury born in?
+South africa
+10
+
+Music: what country was yoko ono born in?
+Japan
+10
+
+Music: What Cream member was in Atomic Rooster & Hawkwind?
+Ginger baker
+10
+
+Music: What crooner's mother warned him not to change his name to Frankie Satin?
+Frank Snatra
+10
+
+Music: What cross dressing band's first video was filmed on a mississippi riverboat?
+Culture club
+10
+
+Music: What Detroit based record company was founded by Barry Gordy Jr?
+Motown
+10
+
+Music: what did adam and the ants become after stuart goddard left?
+Bow wow wow
+10
+
+Music: What did Bette Midler have beneath her wings?
+Wind
+10
+
+Music: What did Def Leppard drummer Rick Allen lose in a 1984 auto accident?
+An arm
+10
+
+Music: what did emerson, lake & palmer burn on stage during their concerts?
+American flag
+10
+
+Music: What did George Harrison discover on the Witwatersrand?
+Gold
+10
+
+Music: What did it 'Rain' according to the Weathergirls?
+Men
+10
+
+Music: What did Janis Joplin drink on stage during concerts?
+Southern Comfort
+10
+
+Music: What did Katrina And The Waves 'Walk On'?
+Sunshine
+10
+
+Music: What did Leo Sayer sing about that was 'in his heart'?
+Thunder
+10
+
+Music: What did Melissa Etheridge title her first album after coming out of the closet?
+Yes I Am
+10
+
+Music: What did michael hutchence of inx die of?
+Suicide
+10
+
+Music: what did pat benatar sing before she went into rock music?
+Opera
+10
+
+Music: What did rapper Mohandas Dewese coolly change his name to?
+Kool Moe Dee
+10
+
+Music: What did Sheryl Crow do before she became a singer?
+Teach
+10
+
+Music: What did the letter O stand for in ELO?
+Orchestra
+10
+
+Music: What did the sun always shine on according to A HA?
+TV
+10
+
+Music: what dire straits video was the first to be almost entirely computer generated?
+Money for nothing
+10
+
+Music: What do I see across the way I see myself molded in...?
+Angry chair
+10
+
+Music: what do lonely rivers sigh, in unchained melody?
+Wait for me
+10
+
+Music: what do most classical guitars have 19 of?
+Frets
+10
+
+Music: what do singers sometimes want to be tied around the old oak tree?
+Yellow ribbon
+10
+
+Music: What do the composer JS Bachs initials stand for?
+Johann sebastian
+10
+
+Music: What do the who cling to on the cover of magic bus?
+A bus
+10
+
+Music: What do we call Rossinis opera La Gazza Ladra?
+The thieving magpie
+10
+
+Music: What do West Indian steel bands use as instruments?
+Oil drums
+10
+
+Music: what do you call a voice between a tenor & a bass?
+Baritone
+10
+
+Music: What does 'fortissimo' mean?
+Very loud
+10
+
+Music: what does 'r & b' stand for in the music world?
+Rhythm & blues
+10
+
+Music: What does e.l.o stand for?
+Electric light orchestra
+10
+
+Music: what does michael jackson call his home?
+Wonderland
+10
+
+Music: what does the handy man fix?
+Broken hearts
+10
+
+Music: What does the Italian musical term adagio mean?
+Slow
+10
+
+Music: What does the musical term 'adagio' mead?
+Slow
+10
+
+Music: What does the term 'DJ' mean?
+Disc Jockey
+10
+
+Music: What does the term con fuoco mean?
+With fire
+10
+
+Music: What does the term pizzicato mean?
+Plucked
+10
+
+Music: What does the V stand for in SWV?
+Voices
+10
+
+Music: What Don Mclean song laments the day Buddy Holly died?
+American Pie
+10
+
+Music: What Dorsey brother played the clarinet and alto sax?
+Jimmy
+10
+
+Music: what drug did j.j. cale & eric clapton sing about?
+Cocaine
+10
+
+Music: what drummer got his nickname because he wore so many rings?
+Ringo starr
+10
+
+Music: What duo had a No.1 hit with 'Too Much, Too Little, Too Late'?
+Johnny Mathis and Denise Williams
+10
+
+Music: what duos original hats & sunglasses are on disply at new yorks hard rock cafe?
+The blues brothers
+10
+
+Music: what electric instrument is a flying v?
+Guitar
+10
+
+Music: What elo hit features a ringing telephone?
+Telephone line
+10
+
+Music: What Elton John album became the first album to enter the charts at Number One, in 1975?
+Captain Fantastic and the Brown Dirt Cowboy
+10
+
+Music: What entertainer is allowing one of his songs to be used in a government campaign to beat drunk driving?
+Michael Jackson
+10
+
+Music: what epic horror movie's theme does mike oldfield play tubular bells for?
+The exorcist
+10
+
+Music: What Eric Clapton song is about his crush on George Harrison's wife?
+Layla
+10
+
+Music: What family of instruments do flutes, clarinets & oboes belong to?
+Woodwind
+10
+
+Music: What family of instruments includes the piano & xylophone?
+Percussion
+10
+
+Music: What famous classical composer continued to compose great music after becoming deaf?
+Beethoven
+10
+
+Music: What famous classical composer continued to compose great music after becoming deaf?
+Ludwig van Beethoven
+10
+
+Music: What famous drummer gave Led Zeppelin its name?
+Keith Moon
+10
+
+Music: What famous duo was first recorded as caesar & cleo?
+Sonny & cher
+10
+
+Music: what famous group included bryan ferry?
+Roxy music
+10
+
+Music: what famous group included sting?
+The police
+10
+
+Music: What famous record label has recording studios in Abbey Road?
+Emi
+10
+
+Music: what famous rock n roller is known for his duck walk?
+Chuck berry
+10
+
+Music: What famous rock star appeared on simultaneous covers of 'Time' and 'Newsweek' on October 27, 1975?
+Bruce Springsteen
+10
+
+Music: what famous singer is the daughter of judy garland?
+Liza minelli
+10
+
+Music: what famous singer is the granddaughter of country singer red foley?
+Debby boone
+10
+
+Music: What famous singer was known to give automobiles to complete strangers?
+Elvis presley
+10
+
+Music: What father-and-daughter duet stayed No.1 for 4 weeks in 1967 with 'Something Stupid'?
+Frank and Nancy Sinatra
+10
+
+Music: What fellow Floridian did Jon Secada write and sing back-up for before going solo?
+Gloria Estefan
+10
+
+Music: What female powerhouse singer died in hollywood on october 3 1970?
+Janis joplin
+10
+
+Music: what female rock star did mike wallace of '60 minutes' interview in 1969?
+Janis joplin
+10
+
+Music: What female singer scored 14 million-selling singles between 1967 and 1973?
+Aretha Franklin
+10
+
+Music: what film company did michael jackson create in 1993?
+Nation
+10
+
+Music: What film showed Sinatra & his friends robbing Las Vegas casinos?
+Oceans eleven
+10
+
+Music: What folk-rocker said he'd like Billy Dee Williams or Mickey Rooney to play him if his life story is filmed?
+Bob Dylan
+10
+
+Music: What foursome was billed by some as the first hippie band?
+Mamas & the papas
+10
+
+Music: what french speaking country is celine dion from?
+Canada
+10
+
+Music: what fruit graces the cover of jeff beck's beck ola?
+An apple
+10
+
+Music: What future rock star was reportedly the inspiration for Bob Dylan's Forever Young?
+Jakob dylan
+10
+
+Music: What geometric shape contributes to the Def Leppard logo?
+Triangle
+10
+
+Music: What George Michael/Elton John record entered the charts at no1 on international AIDS day?
+Don't let the sun go down on me
+10
+
+Music: What Georgia rockers resurrected Dan Rather's mysterious 1986 mugging in their 1994 track, What's the Frequency, Kenneth?
+R.E.M.
+10
+
+Music: What German playwright penned the lyrics to Mack the Knife and Alabama Song?
+Bertholt Brecht
+10
+
+Music: What glitter rocker debuted on Broadway in 1980 in The Elephant Man?
+David bowie
+10
+
+Music: what go click click click in a song?
+Shears
+10
+
+Music: What great BTO song has (unfortunatley) become the Office Depot theme song?
+Takin care of business
+10
+
+Music: what group consisted of jack, bruce, eric clapton and ginger baker?
+Cream
+10
+
+Music: what group did kenny rogers lead in the 1960s?
+Kenny rogers & the first edition
+10
+
+Music: what group did steve howe join in 1982?
+Asia
+10
+
+Music: What group had a comic designed about them in 1977?
+Kiss
+10
+
+Music: What group had a hit with Breakfast in America?
+Supertramp
+10
+
+Music: What group has more gold, platinum & multi platinum albums than any other?
+Rolling stones
+10
+
+Music: What group is made up of the Gibb brothers?
+Bee gees
+10
+
+Music: what group is phil lesh with?
+The grateful dead
+10
+
+Music: what group or artist recorded the album all eyez on me?
+2 pac
+10
+
+Music: What group originally formed in 1952 as the four aims?
+The four tops
+10
+
+Music: what group refused to have their pictures taken while they were not in their makeup?
+Kiss
+10
+
+Music: What group sings the songs 'Mysterons', 'Western Eyes', and 'Sour Times'?
+Portishead
+10
+
+Music: what group taped the first 3-d rock video in 1983?
+Aerosmith
+10
+
+Music: What group was Agnetha Faltskog a member of?
+ABBA
+10
+
+Music: what group was led by burton cummings?
+Guess who
+10
+
+Music: What group with a reptilian name was released on the white label?
+The turtles
+10
+
+Music: What group's biggest ever hit was 'Be My Baby'?
+Ronettes
+10
+
+Music: What group's biggest-ever hit was Be My Baby?
+The ronettes
+10
+
+Music: What group's early BBC performances went quadruple platinum within two months of their U.S. release in late 1994?
+The Beatles
+10
+
+Music: what groups Irish music did stanley kubrick use for the barry lyndon soundtrack?
+The chieftains
+10
+
+Music: What groups third album was 'Sports' & featured 'Heart & Soul' & 'I Want A New Drug'?
+Huey lewis & the news
+10
+
+Music: what guitar company created the 'flying v' guitar in the late 1950's?
+Gibson
+10
+
+Music: What guitarist collaborated with Matt Johnson on Mind Bomb?
+Johnny marr
+10
+
+Music: what guitarist died in 1971, a year after his electric star spangled banner rocked woodstock?
+Jimi hendrix
+10
+
+Music: What hard-drinking country legend explains his bumpy life in the book I Lived to Tell It All?
+George Jones
+10
+
+Music: what hardcore rock group sings, 'blind' & 'clown'?
+Korn
+10
+
+Music: What hardcore rock group sings, 'Blind' and 'Clown'?
+Korn
+10
+
+Music: what heavy metal group apart from slade sings mama weer all crazee now?
+Quiet riot
+10
+
+Music: what hit did essex record to their #1 hit?
+Easier said than done
+10
+
+Music: what holiday tune did irving Berlin write in 1942?
+White christmas
+10
+
+Music: what household appliance did bandleader fred warring invent?
+Waring blender
+10
+
+Music: What I Am - Edie ____& The New Bohemians
+Brickell
+10
+
+Music: What I got, you gotta give it to your momma?
+Give it away
+10
+
+Music: what inescapable purveyor of background celebrated its 60th b-day in 1994?
+Muzak
+10
+
+Music: What instrument are you playing when you perform a rim shot?
+Drums
+10
+
+Music: what instrument can you pull out all the stops on?
+Organ
+10
+
+Music: what instrument did bob dylan play in his recording debut?
+Harmonica
+10
+
+Music: What instrument did Jools Holland of Squeeze play?
+Keyboard
+10
+
+Music: what instrument did jose iturbi play?
+Piano
+10
+
+Music: what instrument did js bach play?
+Organ
+10
+
+Music: what instrument did sherlock holmes play?
+Violin
+10
+
+Music: What instrument did Thelonius S. Monk play?
+Piano
+10
+
+Music: What instrument does an organ grinder play?
+Hurdy gurdy
+10
+
+Music: what instrument does eric clapton play?
+Guitar
+10
+
+Music: what instrument does ian anderson play?
+Flute
+10
+
+Music: what instrument does johnny winter play?
+Guitar
+10
+
+Music: what instrument does papa john creach play?
+Fiddle
+10
+
+Music: What instrument does phil collins play?
+Drums
+10
+
+Music: What instrument does Phil Lynott of Thin Lizzy play?
+Guitar
+10
+
+Music: what instrument does ravi shankar play?
+The sitar
+10
+
+Music: what instrument does tommy shaw of styx play?
+Guitar
+10
+
+Music: what instrument in an orchestra plays the lowest note the bass, the double bass or bassoon?
+Double bass
+10
+
+Music: what instrument is not played with a bow the double bass, harp or violin?
+Harp
+10
+
+Music: what Irish singer recorded astral weeks?
+Van morrison
+10
+
+Music: What is 'Anacreon In Heaven'?
+Old English drinking song
+10
+
+Music: What is a cello's full name?
+Violoncello
+10
+
+Music: what is a piano with vertical strings called?
+Upright piano
+10
+
+Music: what is a tail piece rounding off a musical composition called?
+Coda
+10
+
+Music: what is a type of west indian popular music?
+Reggae
+10
+
+Music: What is a violoncello usually called?
+Cello
+10
+
+Music: what is an example of a linda ronstadt hit record?
+Youre no good
+10
+
+Music: What is Arlo Guthrie's famous song about littering and the draft?
+Alices restaurant
+10
+
+Music: What is Cape Town's major choir called?
+Philharmonic choir
+10
+
+Music: What is cat stevens birth name?
+Steven georgiou
+10
+
+Music: what is cher's maiden name?
+Sarkassian
+10
+
+Music: What is Cliff Richards real name?
+Harry webb
+10
+
+Music: what is dolly parton's middle name?
+Rebecca
+10
+
+Music: What is Elton John's real name?
+Reginald Dwight
+10
+
+Music: What is Eric Clapton's nickname?
+Slow hand
+10
+
+Music: What is Ice Cube's real name?
+O'shea jackson
+10
+
+Music: What is indicated by the fine on a piece of sheet music?
+The end
+10
+
+Music: what is janis joplin's 1970 album?
+Pearl
+10
+
+Music: what is jimmy buffet looking for while he wastes away in margaritaville?
+Shaker of salt
+10
+
+Music: What is johnny cash's nickname?
+The man in black
+10
+
+Music: what is leslie west's nickname?
+Mountain
+10
+
+Music: what is linda mccartney's maiden name?
+Eastman
+10
+
+Music: What is love, according to pat benatar?
+A battlefield
+10
+
+Music: what is madonna's daughter's name?
+Lourdes
+10
+
+Music: what is madonna's last name?
+Ciccone
+10
+
+Music: what is michael jackson's real name?
+Michael jackson
+10
+
+Music: What is Mick Jagger's favourite sport?
+Cricket
+10
+
+Music: what is ozzy osbourne's real first name?
+John
+10
+
+Music: what is paul mccartney's real first name?
+James
+10
+
+Music: What is Paul McCartneys middle name?
+Paul
+10
+
+Music: what is ray charles' real last name?
+Robinson
+10
+
+Music: what is ringo starr's real name?
+Richard starkey
+10
+
+Music: what is singer vincent furnier's stage name?
+Alice cooper
+10
+
+Music: what is stevie wonder's original name?
+Steveland morris judkins
+10
+
+Music: what is stevie wonder's real name?
+Steveland morris
+10
+
+Music: What is the 1993 album title of the Cocteau Twins?
+Four-calendar cafe
+10
+
+Music: what is the award for selling 1 million copies of an lp album?
+Platinum record
+10
+
+Music: what is the best selling single artist ever?
+Garth brooks
+10
+
+Music: What is the better known name of Harry Webb?
+Cliff richard
+10
+
+Music: What is the first line of the hymn that continues... Thou didst tread this earth before us,thou didst feel its keenest woe?
+Lead us, heavenly father, lead us
+10
+
+Music: What is the first name of the oldest bee gees' member?
+Maurice
+10
+
+Music: what is the first song on the first side of The Beatles' white album?
+Back in the ussr
+10
+
+Music: What is the first word of Jimmy Buffet's Margaritaville?
+Nibbling
+10
+
+Music: What is the highway travelled by aspiring country musicians in the 1930's and 40's?
+Route 66
+10
+
+Music: what is the last name of the beardless z.z.top band member?
+Beard
+10
+
+Music: what is the most famous song to be re recorded by the same artist?
+Candle in the wind
+10
+
+Music: What is the musical term for a fast tempo?
+Allegro
+10
+
+Music: What is the name for the handle of a violin bow?
+Frog
+10
+
+Music: What is the name given to the type of West Indian music made famous by artists such as Bob Marley and Peter Tosh?
+Reggae
+10
+
+Music: what is the name of Bob Seager's backing band?
+Silver bullet band
+10
+
+Music: What is the name of Dead Can Dance's 'greatest hits' album?
+Passage in time
+10
+
+Music: what is the name of donny osmond's singing sister?
+Marie
+10
+
+Music: what is the name of eric clapton's favourite guitar?
+Blackie
+10
+
+Music: what is the name of Igor Stravinsky's first ballet score?
+Firebird
+10
+
+Music: What is the name of Liz Phair's 1st solo album?
+Exile in guyville
+10
+
+Music: What is the name of MTV's VJ Marijne Van Der Vlugt's band?
+Salad
+10
+
+Music: What is the name of REM's first EP?
+Chronic town
+10
+
+Music: what is the name of the doors' second album?
+Strange days
+10
+
+Music: What is the name of the drummer from Def Leppard that only has one arm?
+Rick Allen
+10
+
+Music: what is the name of the movie that madonna make her first role?
+A certain sacrifice
+10
+
+Music: What is the name of the piano player/singer on ally mcbeal?
+Vonda shepherd
+10
+
+Music: what is the name of the right hand pedal of a piano?
+Sostenuto
+10
+
+Music: What is the name of their bootleg CD?
+Shine
+10
+
+Music: what is the name of track 18 on the marshal mathers lp from slim shady?
+Criminal
+10
+
+Music: What is the name of Whitney Houston's daughter named after the baby's father?
+Bobbie
+10
+
+Music: what is the narrow, inland sea, separating the arabian peninsula, western asia, from northeastern africa?
+Red sea
+10
+
+Music: What is the official birthplace of country music?
+Bristol
+10
+
+Music: what is the real name of bob dylan?
+Robert zimmerman
+10
+
+Music: what is the real name of David bowie?
+David jones
+10
+
+Music: what is the real name of dusty springfield?
+Mary o'brien
+10
+
+Music: what is the real name of elton john?
+Reginald dwight
+10
+
+Music: what is the real name of elvis costello?
+Declan mcmanus
+10
+
+Music: what is the real name of lou reed?
+Louis firbank
+10
+
+Music: what is the second most popular instrument played in the usa?
+Guitar
+10
+
+Music: What is the significance of the date 6 july 1957?
+John lennon met paul mccartney
+10
+
+Music: what is the stage name of cherilyn lapierre?
+Cher
+10
+
+Music: what is the stage name of gene klein?
+Gene simmons
+10
+
+Music: what is the stage name of harry webb?
+Cliff richard
+10
+
+Music: what is the stage name of john deutschendorf?
+John denver
+10
+
+Music: what is the stage name of yvette stevens?
+Chaka kahn
+10
+
+Music: what is the surname of pat & debby, us chart toppers in the 50s & 70s respectively?
+Boone
+10
+
+Music: what is the term for a company of three musicans?
+Trio
+10
+
+Music: what is the term for a composition of five voices or instruments?
+Quintet
+10
+
+Music: what is the term for a special emphasis placed on an individual note or chord?
+Accent
+10
+
+Music: What is the violin technique in which the strings are plucked rather than bowed?
+Pizzicato
+10
+
+Music: what is the word for a narrative song?
+Ballad
+10
+
+Music: what is title of the first jimi hendrix lp?
+Are you experienced
+10
+
+Music: What is Vanilla Ice's real name?
+Robert van Winkle
+10
+
+Music: What Italian wrote 32 operas between the ages of 18 and 30?
+Gioacchino Rossini
+10
+
+Music: What Jackson actually had a million-selling LP called Let's Get Serious?
+Jermaine Jackson
+10
+
+Music: What jamaican singer has been on the covers of elle & vogue?
+Grace jones
+10
+
+Music: what jock juice was elvis's favourite on stage thirst quencher?
+Gatorade
+10
+
+Music: What John Denver sing was a hit for Peter, Paul and Mary?
+Leaving on a jet plane
+10
+
+Music: what john lennon/David bowie single went to #1 in 1975?
+Fame
+10
+
+Music: what keys do composers use to express cheerful or optimistic feeling?
+Major keys
+10
+
+Music: What kind of Bites provided Def Leppard with a No 1 single?
+Love
+10
+
+Music: what kind of dance was chubby checker the king of?
+The twist
+10
+
+Music: What kind of high school did the Ramones sing of?
+Rock and roll
+10
+
+Music: What kind of love did Soft Cell have?
+Tainted
+10
+
+Music: what kind of music did the 1973 movie the harder they come introduce to north America?
+Reggae
+10
+
+Music: What kind of music does c & w stand for?
+Country & western
+10
+
+Music: what kind of music does tanya tucker sing?
+Country & western
+10
+
+Music: What kind of music is usually associated with Bob Marley?
+Reggae
+10
+
+Music: What kind of music is written for an ensemble with only one person per instrument?
+Chamber music
+10
+
+Music: What kind of song imitates the fanfares, drum rolls, & commotion of a battle?
+Battaglia
+10
+
+Music: What kind of whispers did George Michael croon about?
+Careless whispers
+10
+
+Music: What kiss hit was inspired by peter criss's wife lydia?
+Beth
+10
+
+Music: What Kiss star sported the longest tongue in rock?
+Gene Simmons
+10
+
+Music: what label did elvis presley first record with?
+Sun
+10
+
+Music: What label owns the rights to every elvis recording ever made?
+Rca
+10
+
+Music: What label released Ziggy Marley & the Melody Makers' first album?
+Tuff gong
+10
+
+Music: What language do the majority of musical terms stem from?
+Italian
+10
+
+Music: What languages except English did Einstuerzende Neubauten record 'blume'?
+French & japanese
+10
+
+Music: What late pun rocker did Debbie Gibson try to contact during a Halloween s?ance in 1988?
+Sid Vicious
+10
+
+Music: What legendary soul singer wrecked his Corvette the first time he drove it?
+Ray Charles
+10
+
+Music: What license plate number is on the Volkswagon on the cover of The Beatles' 'Abbey Road' Album?
+281F
+10
+
+Music: what little river band tune opens with a melody identical to the i love lucy theme song?
+Reminiscing
+10
+
+Music: what looks like a saxaphone but sounds like a harmonica?
+Goofus
+10
+
+Music: What lynched crook does Carol King sing about on her Tapestry album?
+Smackwater jack
+10
+
+Music: What made Sue Thompson cry?
+Sad movies
+10
+
+Music: what major does David bowie's 'space oddity' refer to?
+Major tom
+10
+
+Music: What Mariah Carey had a Vision Of?
+Love
+10
+
+Music: What Michael Jackson album spawned five chart-topping singles?
+Bad
+10
+
+Music: What mother and child spent years in Nashville shopping demos they'd recorded on a $30 cassette recorder?
+The Judds
+10
+
+Music: what motown group still has its original members after three decades?
+Four tops
+10
+
+Music: what motown song was played on a tv ad for st pauli girl imported beer in 1993?
+My girl
+10
+
+Music: What movie can you see Michael Hutchence in?
+Dogs in space
+10
+
+Music: What movie did rappers ice cube & ice t star in?
+Trespass
+10
+
+Music: what musical abbreviation indicates that the notes be played one octave higher?
+8va
+10
+
+Music: What musical instrument has chanters & drones?
+The bagpipe
+10
+
+Music: what musical instrument is played to wake soldiers?
+Bugle
+10
+
+Music: What musical instrument's sales escalated from 228,000 in 1950 to 2.3 million in 1971?
+The guitar
+10
+
+Music: what musical was named after a u.s city?
+Oklahoma
+10
+
+Music: what name did nick rhodes, john taylor, simon le bon, roger taylor & andy taylor take?
+Duran duran
+10
+
+Music: what name is given to the style of western music from about 1600 1750?
+Baroque
+10
+
+Music: What name is the French pianist Phillipe Pages better known?
+Richard claydermen
+10
+
+Music: what name is the musician, charles hardin, better known as?
+Buddy holly
+10
+
+Music: What nationality are Simple Minds who topped the charts with Belfast Child?
+Scottish
+10
+
+Music: what nationality are the members of the 80's pop band a ha?
+Norwegian
+10
+
+Music: what nationality is alanis morissette?
+Canadian
+10
+
+Music: what nationality is celine dion?
+Canadian
+10
+
+Music: What nationality is rock star rick springfield?
+Australian
+10
+
+Music: What nationality was the composer Sibelius?
+Finnish
+10
+
+Music: What new artist recently came out with 'Babylon', 'Sail Away', and 'My oh my'?
+David Gray
+10
+
+Music: what new wave band was first known as cap'n swing?
+Cars
+10
+
+Music: what night of the week did john travolta get disco fever?
+Saturday night
+10
+
+Music: What norway pop band included morten, pal & mags?
+A ha
+10
+
+Music: What only happens when it's raining according to Fleetwood Mac?
+Thunder
+10
+
+Music: What opera star sold more recordings in 1990 than all but Madonna and Elton John?
+Luciano Pavarottti
+10
+
+Music: what opera was written by verdi for the opening of the suez canal?
+Aida
+10
+
+Music: what part of a piano's action permits the keys to be struck in quick repetition?
+Escapement
+10
+
+Music: what performer was billed as 'ten fiery fingers on the piano' when he led the bill at a 1958 show in st. Louis?
+Jerry lee lewis
+10
+
+Music: What Pete Seeger composition became the peace campaigners anthem?
+We shall overcome
+10
+
+Music: What Peter Gabriel song is dedicated to author Anne Sexton?
+Mercy street
+10
+
+Music: What Pink Floyd song was banned by the South African government after it became an anthem for black school children?
+Another Brick in the Wall
+10
+
+Music: What Poison ballad is about a Vietnam veteran and the homeless?
+Something to believe in
+10
+
+Music: what pop group sang 'stayinalive'?
+Bee gees
+10
+
+Music: what pop star's first & middle names are katherine dawn?
+Kd lang
+10
+
+Music: What pop trio is made up of a bassist, drummer, & pianist?
+Ben folds five
+10
+
+Music: what popular trumpet player is famous for his dixiland music?
+Al hirt
+10
+
+Music: what portable, electric, & grand instrumentis a yamahacp70b?
+Piano
+10
+
+Music: What post twist dance was named after an african tribe?
+Watusi
+10
+
+Music: what posthumous release was janis joplin's only no. 1 single?
+Me & bobby mcgee
+10
+
+Music: What Prince lp did Wal Mart refuse to stock in may, 1988?
+Love sexy
+10
+
+Music: What Procol Harem tune was based on the Bach cantata Sleepers Awake?
+A whiter shade of pale
+10
+
+Music: What question did the Small Faces ask in 1965?
+Whatcha gonna do about it
+10
+
+Music: What R&B vocal quartet titled its third album II in 1994?
+Boyz II Men
+10
+
+Music: What rappers were born o'shea jackson & tracey marrow?
+Ice cube & ice t
+10
+
+Music: what reggae star was scheduled to receive jamaica's order of merit?
+Bob marley
+10
+
+Music: What Robert Palmer song was originally recorded as a duet with Chaka Kahn?
+Addicted to Love
+10
+
+Music: What rock 'n' roll singer is memorialized by an eight foot bronze statue in Lubboc, Texas?
+Buddy holly
+10
+
+Music: What rock group is immortalized on Butt-head's T-shirt?
+AC/DC
+10
+
+Music: What rock group's only beardless member is Frank Beard?
+ZZ Top
+10
+
+Music: What rock performer is nicknamed the boss?
+Bruce springsteen
+10
+
+Music: What rock star did Lou Diamond Phillips' wife leave him for?
+Melissa Etheridge
+10
+
+Music: what rock star named one of his kids dweezil?
+Frank zappa
+10
+
+Music: What rock star took his name from a meat dish?
+Meat loaf
+10
+
+Music: What rock star was shot in 1980?
+John lennon
+10
+
+Music: What rock star was trying to bite the head off a bat in concert when the bat decided to bite back?
+Ozzy Osbourne
+10
+
+Music: What rock'n'roll singer is memorialized by a eight-foot bronze statue in Lubbock, Texas?
+Buddy Holly
+10
+
+Music: What rocker Darius Rucker's stage name?
+Hootie
+10
+
+Music: What Rodgers and Hammerstein show is the most often-performed musical in U.S. high schools?
+Oklahoma!
+10
+
+Music: What Rogers and Hart musical is based on a Shakespeare play?
+The boys from syracuse
+10
+
+Music: What rolling stones album contains the songs, start me up & waiting for a friend?
+Tattoo you
+10
+
+Music: What Rolling Stones album originally had a 3-D cover in 1967?
+Their Satanic Majesties Request
+10
+
+Music: what rush album cover features rabbits and a magician's hat?
+Presto
+10
+
+Music: What Rush song is named after a Mark Twain character?
+Tom sawyer
+10
+
+Music: what section of a symphony orchestra is obsessed with f holes?
+The string section
+10
+
+Music: What Shania Twain recording became the best-selling country music album ever by a female artist, in 1996?
+The Woman in Me
+10
+
+Music: what shania twain song was kept from the radio because of content?
+Whose bed have your boots been under
+10
+
+Music: what shortlived 1978 braodway show was based on elvis presley's life?
+The legend lives
+10
+
+Music: what simple musical instrument is named after its shape?
+Triangle
+10
+
+Music: What singer changed his name to avoid being confused with davey jones of the monkees?
+David bowie
+10
+
+Music: What singer choreographed videos for duran duran, debbie gibson, & zz top?
+Paula abdul
+10
+
+Music: what singer did nbc introduce as the 1st black tv host in the 1950?
+Nat king cole
+10
+
+Music: What singer for a '70s British rock quartet changed his name from Frederick Bulsara?
+Freddie Mercury
+10
+
+Music: what singer had big sellers with both the single & the album i love rock 'n' roll in 1983?
+Joan jett
+10
+
+Music: What singer has albums such as 'Out of Range' and 'To the Teeth'?
+Ani DiFranco
+10
+
+Music: what singer is known as the man in black?
+Johnny cash
+10
+
+Music: what singer performed on the santana hit single, smooth?
+Rob thomas
+10
+
+Music: what singer sang with burnt cork on his face and wore black gloves?
+Al jolson
+10
+
+Music: What singer sent the punk band Rancid a naked photo along with a plea to sign with her record label?
+Madonna
+10
+
+Music: What singer songwriter had five albums in the Billboard Top 200 in 1977?
+Barry manilow
+10
+
+Music: what singer was in a car crash with sam cooke & mistakenly pronounced dead?
+Lou rawls
+10
+
+Music: what singer with joy division hung himself?
+Ian curtis
+10
+
+Music: what singer/guitar player opened for the monkees during his first u.s.tour?
+Jimi hendrix
+10
+
+Music: What singer/songwriter was the inspiration for neil sedaka's oh carol?
+Carole king
+10
+
+Music: what singing duo was famed for performing 'indian love call' together?
+Jeanette macdonald and nelson eddy
+10
+
+Music: What singing group were once known as The Quarrymen?
+The beatles
+10
+
+Music: What song by Dire Straits Mark Knopfler was inspires by seeing a second rate jazz band in a pub at Greenwich?
+Sultans of swing
+10
+
+Music: what song by don mclean talks about the day buddy holly died?
+American pie
+10
+
+Music: what song by frankie avalon went to #1 in 1959?
+Venus
+10
+
+Music: What song by jim croce reached number one on the charts after his death?
+Time in a bottle
+10
+
+Music: What song by The Mighty Diamonds was a hit for the British group Musical Youth?
+Pass the dutchie
+10
+
+Music: what song did aretha franklin sing in the blues brothers movie?
+Think
+10
+
+Music: What song did bbc television use as accompaniment to its broadcast of the apollo moon landing?
+Space oddity
+10
+
+Music: What song did bobby hebb sing to his brother in 1966?
+Sunny
+10
+
+Music: What song did both Frank Sinatra & Kermit the Frog sing?
+Bein green
+10
+
+Music: what song did carly simon sing for a james bond film?
+Nobody does it better
+10
+
+Music: What song did Dolly Parton write as a farewell to her mentor, Porter Waggoner?
+I will always love you
+10
+
+Music: what song did elton john & bernie taupin rewrite for the funeral of princess diana?
+Candle in the wind
+10
+
+Music: what song did elton john & george michael sing as a duet?
+Don't let the sun go down on me
+10
+
+Music: What song did Elton John and George Michael sing as a duet?
+Don't Let The Sun Go Down On Me
+10
+
+Music: What song did Hal sing in 2001?
+Daisy, daisy
+10
+
+Music: what song did lenny kravitz produce for madonna?
+Justify my love
+10
+
+Music: what song did lionel richie & diana ross sing together?
+Endless love
+10
+
+Music: what song did michael jackson & paul mccartney collaborate on?
+Say say say
+10
+
+Music: What song did michael jackson sing about a rodent?
+Ben
+10
+
+Music: What song did paul anka release when he was just a teenager?
+Lonely boy
+10
+
+Music: what song did sugar ray sing at the olympics?
+Someday
+10
+
+Music: What song do elvis presley and ub40 have in common?
+Can't help falling in love
+10
+
+Music: what song does gloria estefan & nsync sing together?
+Song of my heart
+10
+
+Music: What song does Rodney Dangerfield sing in Back To School?
+Twist and shout
+10
+
+Music: What song earned lionel richie his first grammy?
+Truly
+10
+
+Music: What song established bobby vinton's career?
+Roses are red
+10
+
+Music: What song has been sung by Bob Marley, Rod Stewart and Aretha Franklin?
+People get ready
+10
+
+Music: what song has boy george confessing my love was an addiction?
+Karma chameleon
+10
+
+Music: what song have steve lawrence and donny osmond taken to #1?
+Go away little girl
+10
+
+Music: what song includes the words 'australians let us all rejoice'?
+Advance Australia fair
+10
+
+Music: What song is covered by Shane McGowen & Nick Cave?
+What a wonderful world
+10
+
+Music: What song is played before the tip-off of every New York Knicks home game?
+Jump
+10
+
+Music: What song mentions one of 16 vestal virgins?
+Whiter shade of pale
+10
+
+Music: What song mentions one of the 16 vestal virgins?
+Whiter shade of pale
+10
+
+Music: what song of shania twain's was on the notting hill soundtrack?
+You've got a way
+10
+
+Music: What song opened with the high-pitched laugh of surfaris manager dave smallins?
+Wipeout
+10
+
+Music: what song propelled herb alpert & the tijuana brass come to fame?
+The lonely bull
+10
+
+Music: What song spawned a lawsuit for tommy tutone?
+867-5309/jenny
+10
+
+Music: What song spawned a lawsuit for Tommy Tutone?
+Jenny
+10
+
+Music: What song title completes the marvin gaye lyric: 'when i get that feeling, i want ...'?
+Sexual healing
+10
+
+Music: what song was also performed by guns n roses & written by paul mccartney for a james bond film?
+Live & let die
+10
+
+Music: What song was originally 'Good Morning To You' before the words were changed and it was published in 1935?
+Happy Birthday To You
+10
+
+Music: what song won the grammy for best instrumental in 1968?
+Classical gas
+10
+
+Music: What song-writing duo's hits made it to Broadway in the show Smokey Joe's Cafe?
+Leiber and Stoller
+10
+
+Music: What song's second line is 'and i'll cry if i want to'?
+It's my party
+10
+
+Music: What song's words were changed and then published in 1935 as 'Happy Birthday To You'?
+Good Morning To You
+10
+
+Music: What songstress died before the release of her cross-over album Dreaming of You?
+Selena
+10
+
+Music: What songwriting queen married gerry goffin in her teens?
+Carole king
+10
+
+Music: What sort of music is intended for a room rather than a large auditorium?
+Chamber
+10
+
+Music: what sort of musical instruments are high hats & sizzles?
+Cymbals
+10
+
+Music: What soul songstress cruises the freeway of love?
+Aretha franklin
+10
+
+Music: What sport did terence trent d'arby compete in before he was a pop star?
+Boxing
+10
+
+Music: What stage name is used by Gordon Sumner?
+Sting
+10
+
+Music: what steam powered keyboard instrument is named after the muse of eloquence?
+Calliope
+10
+
+Music: what stevie wonder song was recorded by 'beck bogart and appice'?
+Superstition
+10
+
+Music: What stringed symphonic instrument has a pedestal and a crown?
+The harp
+10
+
+Music: What studio did the Beatles use to record 191 songs?
+Abby Road
+10
+
+Music: what style of music was exemplified by benny goodman & artie shaw?
+Swing
+10
+
+Music: what superstar is nicknamed jacko?
+Michael jackson
+10
+
+Music: What Swiss resident won a Grammie Award for singing Downtown?
+Petula clark
+10
+
+Music: What tenor received a record 165 curtain calls at a Berlin opera house in 1988?
+Luciano Pavarotti
+10
+
+Music: what tragedy happened to celine dion when she was five years old?
+Hit by a delivery truck
+10
+
+Music: What tragic accident ended jim croce's career?
+Plane crash
+10
+
+Music: What train tune took Gladys Knight & the Pips to number one?
+Midnight train to georgia
+10
+
+Music: What trumpeter became the oldest person ever to score a chart-topping single, in 1964?
+Louis Armstrong
+10
+
+Music: What TV host went gold with the CD Romantic Christmas?
+John Tesh
+10
+
+Music: What TV show did Mickey Dolenz of The Monkees appear in when he was a child?
+Circus Boy
+10
+
+Music: What two bands formed to make Guns N Roses?
+L.A. Guns and Hollywood Roses
+10
+
+Music: What two Frank Sinatra hits were tops for U.S. karaoke singers in 1993?
+New York, New York and My Way
+10
+
+Music: What type of days and Mondays did the Carpenters sing about?
+Rainy
+10
+
+Music: what type of french dance became world famous for its vulgarity & lewdness?
+Cancan
+10
+
+Music: What type of music did Ira D Sankey compose?
+Hymns
+10
+
+Music: What type of music from trinidad is often accompanied by steel drums?
+Calypso
+10
+
+Music: What type of music is associated with the Dixie Hummingbirds,Swan Silvertones and Five Blind Boys of Alabama?
+Gospel music
+10
+
+Music: What type of music is produced by French speaking settlers of Louisiana?
+Cajun
+10
+
+Music: What type of music, popular in the 1950s features washboard, tea chest bass and other improvised instruments?
+Skiffle
+10
+
+Music: What type of plane did buddy holly, the big bopper, & richie valens die?
+Beech bonanza
+10
+
+Music: What type of train did Veteran Rod Stewart chart with?
+Downtown Train
+10
+
+Music: What U S state song is named for a river within the state?
+Swanee river
+10
+
+Music: What U.S. classical conductor won posthumous Grammy Awards in 1991, 1992, & 1993?
+Leonard bernstein
+10
+
+Music: what u.s. state was used for the location shots for the 1955 hit musical oklahoma?
+Arizona
+10
+
+Music: What video can Angelo of Fishbone be seen in with the Mighty Mighty Bosstones?
+Simmer down
+10
+
+Music: What was 'Up above the streets and houses, climbing high, which everyone could see smiling, over the sky'?
+Rainbow
+10
+
+Music: What was a kit?
+Small violin
+10
+
+Music: what was aqua's second number 1?
+Doctor jones
+10
+
+Music: What was Barry Manilow's first No 1 single?
+Mandy
+10
+
+Music: what was beethoven's first name?
+Ludwig
+10
+
+Music: What was Beethoven's only opera called?
+Fidelio
+10
+
+Music: what was billie holliday addicted to?
+Heroin
+10
+
+Music: What was Bing Crosbys first name?
+Harry
+10
+
+Music: what was blondie's first number one song in America?
+Heart of glass
+10
+
+Music: What was Bob Marley's first single, released by Leslie Kong in 1962?
+Judge not
+10
+
+Music: What was Britains first winning Eurovision song entry?
+Puppet on a string
+10
+
+Music: What was Bruce Channels no 2 hit in 1962?
+Hey! Baby
+10
+
+Music: what was cb mccall`s record that helped popularize the cb radio?
+Convoy
+10
+
+Music: what was chicago's original name?
+Chicago transit authority
+10
+
+Music: what was chubby checker's original name?
+Ernest evans
+10
+
+Music: what was ed ames' biggest solo hit?
+My cup runneth over
+10
+
+Music: What was Eddie Money's profession before he was an entertainer?
+New York City Cop
+10
+
+Music: What was elton john's first uk number 1?
+Don't go breaking my heart
+10
+
+Music: What was Elvis Presley's twin brother's name?
+Garon
+10
+
+Music: What was Elvis Presley's wife's name?
+Priscilla
+10
+
+Music: what was elvis' mother's name?
+Grace
+10
+
+Music: What was Fats Wallers theme tune?
+Ain't misbehavin'
+10
+
+Music: what was glenn campbell's tv theme song?
+Gentle on my mind
+10
+
+Music: What was Heart's first No 1 hit?
+These Dreams
+10
+
+Music: What was Jethro Tull before donating his name to a British epic rock group?
+Agriculturist
+10
+
+Music: what was john lennon's first girlfriend's name?
+Thelma pickles
+10
+
+Music: what was john lennon's middle name before he changed it to ono?
+Winston
+10
+
+Music: what was john lennon's real middle name?
+Winston
+10
+
+Music: What was Johnny Cash's first million seller, in 1956?
+I walk the line
+10
+
+Music: what was kate smith's nickname?
+Songbird of the south
+10
+
+Music: what was lawrence welk's only #1 hit record?
+Calcutta
+10
+
+Music: What was Michael Jackson's debut hit away from the Jackson 5?
+Got To Be There
+10
+
+Music: what was mozart's first name?
+Wolfgang
+10
+
+Music: what was mozart's middle name?
+Amadeus
+10
+
+Music: What was Nirvana's third album called?
+In Utero
+10
+
+Music: What was Primus called before they were called 'Primus'?
+Primate
+10
+
+Music: what was reo speedwagon's 1983 chartbusting lp?
+High infidelity
+10
+
+Music: what was roy orbison's backup group called?
+Candymen
+10
+
+Music: what was sam cooke's only #1 song?
+You send me
+10
+
+Music: what was significant about the pretenders brass in pocket?
+The first number one of the eighties
+10
+
+Music: What was Sly and the Family Stone's first No. 1 song?
+Everyday People
+10
+
+Music: What was solomon burke dubbed the king of?
+Rock & soul
+10
+
+Music: What was stephen foster addicted to when he died?
+Alcohol
+10
+
+Music: what was steve millers magical incantation in 1982?
+Abracadabra
+10
+
+Music: What was Taylor Dayne's first top ten hit?
+Tell It To My Heart
+10
+
+Music: what was the 'unfinished symphony' meant to be played for?
+A requiem
+10
+
+Music: What was the album title of the Pet Shop Boys orange Lego-like album?
+Very
+10
+
+Music: What was the average age of United States soldiers in the Vietnam war?
+Nineteen
+10
+
+Music: What was the Beatles' biggest hit single?
+Hey jude
+10
+
+Music: What was the best-selling album named after a city, in the 1970s?
+Boston
+10
+
+Music: what was the biggest hit of procul harum?
+A whiter shade of pale
+10
+
+Music: what was the first album roger waters released after leaving pink floyd?
+The pros and cons of hitch hiking
+10
+
+Music: what was the first American hit for the guess who?
+These eyes
+10
+
+Music: What was the first CD pressed in the USA?
+Born In The USA
+10
+
+Music: What was the first Dylan album to be recorded in Nashville?
+Blonde on blonde
+10
+
+Music: what was the first metal band?
+Black sabbath
+10
+
+Music: What was the first No 1 single for Hall & Oates?
+Rich Girl
+10
+
+Music: what was the first opera commisioned especially for television?
+Amahl & the night visitors
+10
+
+Music: What was the first rock song to hit number one on the American Billboard charts on June 29, 1955?
+Rock Around the Clock
+10
+
+Music: What was the first single of The Spice Girls?
+Wannabe
+10
+
+Music: What was the first video to be shown on MTV, August 1st, 1981?
+Video Killed the Radio Star
+10
+
+Music: What was The Grassroots' highest charting single?
+Midnight Confessions
+10
+
+Music: what was the last album made by The Beatles, as a group?
+Abbey road
+10
+
+Music: What was the last No 1 in the 60s?
+Someday We'll Be Together
+10
+
+Music: what was the last work written by j. S. Bach?
+The art of the fugu
+10
+
+Music: What was the name of Cliff's backing group, which included Bruce Welch?
+The shadows
+10
+
+Music: What was the name of Culture Clubs first no 1 hit?
+Do you really want to hurt me
+10
+
+Music: What was the name of elo's first platinum single?
+Don't bring me down
+10
+
+Music: what was the name of jimi hendrix' first album?
+Are you experienced
+10
+
+Music: what was the name of john lennon & cynthia lennon's son?
+Julian
+10
+
+Music: what was the name of les brown's orchestra?
+Band of reknown
+10
+
+Music: What was the name of Little Richard's backup band?
+The Upsetters
+10
+
+Music: What was the name of Manfred Manns no 1 hit of April 1966?
+Pretty flamingo
+10
+
+Music: what was the name of patsy kensits band?
+Eighth wonder
+10
+
+Music: what was the name of ritchie valens' girlfriend?
+Donna
+10
+
+Music: What was the name of the Austrian composer who became known as The Waltz King?
+Johann Strauss the younger
+10
+
+Music: What was the name of the female vocal trio that sang with ray charles?
+The raelettes
+10
+
+Music: what was the name of the youngest gibb brother who died?
+Andy gibb
+10
+
+Music: What was the nickname for the folk and blues singer Huddie Leadbetter?
+Leadbelly
+10
+
+Music: what was the nickname given to country singer louis jones?
+Grandpa jones
+10
+
+Music: What was the nickname of blues pianist Ferdinand Morton?
+Jelly roll
+10
+
+Music: what was the nickname of country western singer charlie rich?
+Silver fox
+10
+
+Music: What was the nickname of jazzman John Birks Gillespie?
+Dizzy
+10
+
+Music: What was the number Frederick 'Toots' Hibbert wore when he was imprisoned?
+54-46
+10
+
+Music: what was the one word title of chers solo show?
+Cher
+10
+
+Music: What was the only hit song for the band 'It's a Beautiful Day'?
+White Bird
+10
+
+Music: What was the only language beat writer Jack Kerouac spoke until the age of six?
+French
+10
+
+Music: What was the only song by Jimi Hendrix to make the Top 40 charts in America?
+All Along the Watchtower
+10
+
+Music: What was the original label of the Smiths?
+Rough trade
+10
+
+Music: What was the original name of Paul McCartney's fictional church cleaner 'Eleanor Rigby'?
+Miss Daisy Hawkins
+10
+
+Music: What was the original name of The Byrds?
+Beefeaters
+10
+
+Music: What was the original name of the group 'Chicago'?
+Chicago Transit Authority
+10
+
+Music: what was the protagonist's name in pink floyd's epic album/film the wall?
+Pink
+10
+
+Music: what was the river that gerry & the pacemakers sent a ferry across?
+Mersey
+10
+
+Music: what was the stones' own record label called?
+Rolling stones
+10
+
+Music: What was the Supremes first UK hit in 1964?
+Where did our love go
+10
+
+Music: What was the Supremes' original name?
+The Primettes
+10
+
+Music: what was the theme song of paul whiteman?
+Rhapsody in blue
+10
+
+Music: what was the title behind the alan parson's project's 'tales of mystery & imagination' l.p?
+Stories of edgar allen poe
+10
+
+Music: what was the title of althia & donnas only hit?
+Uptown top ranking
+10
+
+Music: what was the title of bonnie tylers biggest hit?
+Total eclipse of the heart
+10
+
+Music: what was the title of the chemical brothers 3rd album?
+Surrender
+10
+
+Music: What was the title of the first no1 by The Police?
+Message in a bottle
+10
+
+Music: what was the title of the specials 1981 number 1 hit?
+Ghost town
+10
+
+Music: what was the title of vanilla ice's 1990 number 1 hit?
+Ice ice baby
+10
+
+Music: What was the very first video played on MTV?
+Video killed the radio star
+10
+
+Music: What was Therapy's first full length album called?
+Nurse
+10
+
+Music: what was thicker than water for andy gibb?
+Love
+10
+
+Music: What was U2 originally going to be named?
+The Hype
+10
+
+Music: What was U2's first number one single?
+Desire
+10
+
+Music: What was Yaz only no 1 hit in Oct 1988?
+The Only Way Is Up
+10
+
+Music: What weapon is tatooed on Glen Campbell's arm?
+Dagger
+10
+
+Music: what weapon is tattooed on glen campell's arm?
+Dagger
+10
+
+Music: What weird ideas prompt him to call his friend Leroy on his last studio album?
+Things to do in denver when youre dead
+10
+
+Music: what were frankie and johnny to each other in the old song?
+Lovers
+10
+
+Music: What were Simon and Garfunkel known as in high school?
+Tom and
+10
+
+Music: what were sonny & cher originally called?
+Caesar & cleo
+10
+
+Music: what were the doobie brothers on while shooting the cover photo for stampede?
+Horses
+10
+
+Music: What were the two most popular rock operas of 1969?
+Hair and Tommy
+10
+
+Music: what won the oscar for original song in 1985?
+Say you, say me
+10
+
+Music: What word was used to describe Peggy March?
+Little
+10
+
+Music: what year did chet atkins release his first solo album?
+1953
+10
+
+Music: What year did Elvis Presley die?
+1977
+10
+
+Music: What year did the Beatles first go to no1?
+1963
+10
+
+Music: What year did The Beatles split up?
+1970
+10
+
+Music: What year did the first recognized rap song come out?
+1979
+10
+
+Music: what year was madonna born?
+1958
+10
+
+Music: What You Don't Know?
+Expose
+10
+
+Music: What, according to the rock group genesis, do pigeons make their beds of?
+Paper clips & bus tickets
+10
+
+Music: what, according to the who, is another name for a pinball game?
+Mind table
+10
+
+Music: what's another name for a gramophone?
+Record player
+10
+
+Music: what's David bowie son's name?
+Zowie
+10
+
+Music: what's found on lonely street?
+Heartbreak hotel
+10
+
+Music: what's il barbiere di siviglia better known as?
+The barber of seville
+10
+
+Music: What's indicated by the word fine on a piece of sheet music?
+The end
+10
+
+Music: what's iron butterfly's in a gadda da vida supposed to mean?
+In a garden of eden
+10
+
+Music: What's On ____Mind (Pure Energy) - Information Society
+Your
+10
+
+Music: what's the fieriest of def leppard's album titles?
+Pyromania
+10
+
+Music: What's the first instrument heard in rhapsody in blue?
+Clarinet
+10
+
+Music: what's the lowest female voice in an opera?
+Contralto
+10
+
+Music: what's the more common name of pop music artist gordon sumner?
+Sting
+10
+
+Music: What's the name of B.B. King's guitar?
+Lucille
+10
+
+Music: what's the name of the original misfits lead singer?
+Glenn danzig
+10
+
+Music: What's the note c in the middle of a piano keyboard called?
+Middle c
+10
+
+Music: What's the only group to claim two of the top ten best-selling singles of the 1970's?
+The Bee Gees
+10
+
+Music: What's the origin of most of Minimal Compact members?
+Israel
+10
+
+Music: what's the term for promptness & decision in starting a musical phrase?
+Attack
+10
+
+Music: Whats a common decription of bands from seattle?
+Grunge
+10
+
+Music: when did members of the byrds come together as a group?
+1965
+10
+
+Music: when did sgt pepper teach the band to play?
+Twenty years ago today
+10
+
+Music: when did sheryl crowe desire fun until on all i wanna do?
+Til the sun comes up
+10
+
+Music: when did the 'live aid' concerts take place?
+1985
+10
+
+Music: When I feel...?
+Plush
+10
+
+Music: When I See You Smile - Bad ____
+English
+10
+
+Music: When I'm With You?
+Sheriff
+10
+
+Music: When The ____Cry - White Lion
+Children
+10
+
+Music: when was mariah carey born?
+March 27, 1970
+10
+
+Music: when was the cd invented?
+1988
+10
+
+Music: When was the first LP released commercially in the Uk?
+1950
+10
+
+Music: Whenever Fibber McGee opened his closet, this instrument tumbled out?
+Mandolin
+10
+
+Music: Where did Dawn singer Tony Orlando tell his loved one to knock three times in the song of the same name?
+On the ceiling
+10
+
+Music: Where did George Harrison discover gold?
+Witwatersrand
+10
+
+Music: where did john lennon meet paul mccartney?
+Woolton
+10
+
+Music: Where did Mini Viva leave there heart?
+Tokyo
+10
+
+Music: where did simon & garfunkel perform together for the first time in eleven years in 1981?
+Central park
+10
+
+Music: Where do the characters in porgy & bess live?
+Catfish row
+10
+
+Music: Where do the Guess Who hail from (country)?
+Canada
+10
+
+Music: Where does garth brooks have friends, according to his hit song?
+Low places
+10
+
+Music: where in harlem was the first home of duke ellington's orchestra?
+The cotton club
+10
+
+Music: where in New York state did the band record music from big pink?
+Woodstock
+10
+
+Music: where is graceland?
+Memphis, tennessee
+10
+
+Music: Where is the Rock and Roll Hall Of Fame?
+Cleveland, Ohio
+10
+
+Music: Where the group Rose Royce worked, according to their Trash Disco hit?
+Car wash
+10
+
+Music: Where was buddy holly born & raised?
+Lubbock, texas
+10
+
+Music: where was jennifer lopez born?
+Bronx, ny
+10
+
+Music: Where were the 3 coins in Frank Sinatras 1954 no1 hit?
+In the fountain
+10
+
+Music: Where would you most likely perform a dirge?
+A funeral
+10
+
+Music: where's the total eclipse of the sun in carly simon's you're so vain?
+Nova scotia
+10
+
+Music: Which 1960's group sang a song inspired by 'Alice In Wonderland'?
+The Jefferson Airplane
+10
+
+Music: which 1978 hit paid tribute to painter l.s. lowry?
+Matchstalk men and matchstalk cats and dogs
+10
+
+Music: Which 1980's Pink Floyd album was made into a film that starred Bob Geldof, and featured the artwork of cartoonist Gerald Scarfe?
+The Wall
+10
+
+Music: Which 2 songwriters wrote the lyrics for the stage musical based on the Disney film The Lion King?
+Elton john & tim rice
+10
+
+Music: Which 60s icon was backed by The Band?
+Bob Dylan
+10
+
+Music: Which 60s No 1 began with the French national anthem?
+All You Need Is Love
+10
+
+Music: Which 60s song from the film Buster was the first hit for Phil Collins both sides of the Atlantc?
+A groovy kind of love
+10
+
+Music: Which 60s TV comedy show is mentioned on Sgt Peppers Lonely Hearts Club Band?
+Meet the wife
+10
+
+Music: Which 70's rock band took their name from a US gangster city?
+Chicago
+10
+
+Music: which 80's pop band did fatboy slim used to sing for?
+The housemartins
+10
+
+Music: Which 90s Madonna hit shares its name with a glossy magazine?
+Vogue
+10
+
+Music: Which all time great band featured Harrison and Starkey?
+The Beatles
+10
+
+Music: Which American composer wrote rhapsody in blue?
+George gershwin
+10
+
+Music: Which American jazz musician composed and recorded Black Bottom Stomp in the late 1920?
+Jelly roll morton
+10
+
+Music: which artist /band sang We Are Strong?
+Pat Benetar
+10
+
+Music: Which artist did Don Mclean sing about in Starry starry night?
+Vincent van gogh
+10
+
+Music: Which artist got Kangaroo in to the title of a top three hit?
+Rolf Harris
+10
+
+Music: Which artist was the subject of a 1991 biography by Randy Taraborelli?
+Michael Jackson
+10
+
+Music: Which Australian duo took 13 nominations and 10 wins at the ARIA awards?
+Savage Garden
+10
+
+Music: Which Australian lead singer recently had a breast cancer scare?
+Olivia newton john
+10
+
+Music: which band backed jimmy james?
+The vagabonds
+10
+
+Music: Which band did Jet Black belong to?
+The Stranglers
+10
+
+Music: Which band do Bjorn again impersonate?
+ABBA
+10
+
+Music: Which band does the son of bob dylan sing for?
+The wallflowers
+10
+
+Music: Which band had 2 nuber one hits in Denmark before their home country of Sweden?
+Ace of base
+10
+
+Music: Which band had a big hit with You Make Me Wanna?
+Usher
+10
+
+Music: Which band included Phil Collins and Peter Gabriel?
+Genesis
+10
+
+Music: Which band is the house band for 'Where in the World is Carmen Sandiago'?
+Rockappella
+10
+
+Music: Which band produced the album Dark Side Of The Moon?
+Pink Floyd
+10
+
+Music: Which band recorded the album Parallel Lines?
+Blondie
+10
+
+Music: Which band recorded the album The Joshua Tree?
+U2
+10
+
+Music: Which band sang I want to Know What Love Is?
+Foreigner
+10
+
+Music: which band started out supporting the sex pistols anarchy tour?
+The clash
+10
+
+Music: which band topped the singles charts in 1999 -19yrs after their previous no1?
+Blondie
+10
+
+Music: which band used to be called seymour?
+Blur
+10
+
+Music: Which band was fronted by Courtney Love?
+Hole
+10
+
+Music: Which band were Back For Good (unfortunately) in 1995?
+Take that
+10
+
+Music: which band's drummer stayed with them even after he lost one of his arms?
+Def leppard
+10
+
+Music: which bands 1986 album was called london 0 hull 4?
+The housemartins
+10
+
+Music: Which Barry had 70s chart success with Never Never Gonna Give You Up and Can't Get Enough Of Your Love Babe?
+White
+10
+
+Music: Which Beatle No. 1 featured the word Yellow in the title?
+Yellow submarine
+10
+
+Music: Which Beatle was the first to have a number one hit after the break up?
+George Harrison
+10
+
+Music: Which blues artist toured with u2 in 1989 throughout Australia?
+Bb king
+10
+
+Music: Which book of the Bible was a hit for Bob Marley?
+Exodus
+10
+
+Music: Which British group recorded the 1983 hit 'Owner Of A Lonely Heart'?
+Yes
+10
+
+Music: Which Bruce Springsteen song won the 1993 original song Oscar?
+Philadelphia
+10
+
+Music: which Canadian songstress won the eurovision song contest in 1987 singing for france?
+Celine dion
+10
+
+Music: Which Canadian-born artist was the biggest-selling singles artist tin the UK in 1991?
+Bryan Adams
+10
+
+Music: Which cartoon family can 'sing the blues'?
+The simpsons
+10
+
+Music: which cher video was restricted to night play on mtv because of her rather revealing outfit worn in the video?
+If i could turn back time
+10
+
+Music: Which Club went to the Wild, Wild West?
+The Escape Club
+10
+
+Music: Which comedy team had a hit with Funky Gibbon?
+The goodies
+10
+
+Music: which commemoration to elvis was issued by the us post office in 1993?
+Stamp
+10
+
+Music: Which composer wrote The Messiah?
+Handel
+10
+
+Music: Which composers third symphony is known as Eroica?
+Beethoven
+10
+
+Music: Which country and western singer is known as the 'okie from muskogee'?
+Merle Haggard
+10
+
+Music: Which country and western star sings with Dylan on the album Nashville Skyline?
+Johnny Cash
+10
+
+Music: Which country do Bare Naked Ladies come from?
+Canada
+10
+
+Music: Which country does Eddy Grant originate from?
+Guyana
+10
+
+Music: Which country is lene from aqua from?
+Norway
+10
+
+Music: which country is the group a ha from?
+Norway
+10
+
+Music: Which country singer 'walked the line'?
+Johnny cash
+10
+
+Music: Which country singer and yodeller had a 1955 no 1 with Rose Marie?
+Slim whitman
+10
+
+Music: Which country star pleaded for Jolene not to take her man in 1976?
+Dolly parton
+10
+
+Music: Which daughter of Cissy Houston duetted with her on 'I Know Him So Well' on the daughter's album?
+Whitney
+10
+
+Music: Which day of the week did the Mamas a & Papas sing about?
+Monday
+10
+
+Music: which destiny child single was the theme to charlie's angel's movie?
+Independent woman
+10
+
+Music: Which Dimension had a 60s smash with Aquarius?
+5th Dimension
+10
+
+Music: Which duo sang 'Mrs Robinson' from The Graduate in 1968?
+Simon and garfunkel
+10
+
+Music: Which Elton John song was re-recorded as a requiem for Lady Diana Spencer?
+Candle In The Wind
+10
+
+Music: Which Elvis Presley hit quoted Shakespeare?
+Are you lonesome tonight
+10
+
+Music: Which elvis was supported by the attractions?
+Costello
+10
+
+Music: Which English city did The Animals come from?
+Newcastle
+10
+
+Music: Which English composer wrote the orchestral tone poem Egdon Heath in 1927?
+Gustav holst
+10
+
+Music: Which Englissh composer wrote a Sea Symphony and a London Symphony?
+Ralph Vaughan Williams
+10
+
+Music: which famous drummer narrated the thomas tank engine children series?
+Ringo starr
+10
+
+Music: Which female trio had a hit with 'I Heard A Rumour' in 1987?
+Bananarama
+10
+
+Music: Which female vocalist was a member of the Eurythimics?
+Annie Lennox
+10
+
+Music: Which film revived the 70s song You Sexy Thing?
+The Full Monty
+10
+
+Music: Which film star's eyes were a hit for Kim Carnes?
+Bette davis
+10
+
+Music: which former beatle was killed in 1980?
+John lennon
+10
+
+Music: Which former members of Bob Dylans backing band had their first number one hit with Deeply Dippy?
+Right said fred
+10
+
+Music: Which french musician is famous for his laser concerts?
+Jean michel jarre
+10
+
+Music: Which Gibb brother is the eldest?
+Barry
+10
+
+Music: Which girl got Kiss into the singles top ten for the first time?
+Beth
+10
+
+Music: Which great composer was once a butchers boy?
+Dvorak
+10
+
+Music: Which grooup had a hit with tiger feet?
+Mud
+10
+
+Music: Which group comprised Cass,Michelle,John and Denny?
+The Mamas and the Papas
+10
+
+Music: Which group flew into the Hotel California?
+The Eagles
+10
+
+Music: Which group had 80s hits with Hard To Say I'm Sorry and Look Away?
+Chicago
+10
+
+Music: Which group had a hit with My Generation?
+The Who
+10
+
+Music: Which group had albums called Fireball and Machine Head?
+Deep Purple
+10
+
+Music: Which group had hits with Mr Tambourine Man and Eight Miles High?
+The Byrds
+10
+
+Music: Which group had no 1 albums with Discovery and Time?
+Electric Light Orchestra
+10
+
+Music: Which group had top ten hits with Dancing Party, I wonder why and A little bit of soap?
+Showaddywaddy
+10
+
+Music: which group is made up of the gibb brothers?
+Bee gees
+10
+
+Music: Which group recorded the Bond theme for The Living Daylights?
+AHA
+10
+
+Music: which group released ghetto romance?
+Damage
+10
+
+Music: Which group was at no 1 at christmas 1974 with Lonely this christmas?
+Mud
+10
+
+Music: Which group was formed by Roy Wood in 1971?
+Electric Light Orchestra
+10
+
+Music: Which group were fronted by Jon Bon Jovi?
+Bon Jovi
+10
+
+Music: Which group would you associate with the songs Light my fire, Hello I love you and Riders on the storm?
+The doors
+10
+
+Music: Which group wrote the songs for the movie Saturday Night Fever?
+The Bee Gees
+10
+
+Music: Which group's first single didn't even scrape the bottom of the top 40, but their second, '867 5309/Jenny' peaked & went gold in 1982?
+Tommy tutone
+10
+
+Music: Which groups road manager was shot dead in 1986 in Northern Ireland?
+Bananarama
+10
+
+Music: which groups third album was 'sports' & featured 'heart & soul' & 'i want a new drug'?
+Huey lewis & the news
+10
+
+Music: Which heavy metal group took the name of Dutch-born members guitarist Eddie and drummer Alex?
+Van Halen
+10
+
+Music: Which insect was a number 1 hit for U2?
+The fly
+10
+
+Music: Which instrument is associated with Jacqueline Du Pre?
+Cello
+10
+
+Music: Which instrument is played by the leader of the orchestra?
+Violin
+10
+
+Music: Which Irish pop star organised Live Aid?
+Bob geldof
+10
+
+Music: Which Israeli group won the Eurovision song contest in 1979?
+Milk and honey
+10
+
+Music: Which jazz clarinetist recorded Mozarts Clarinet concerto with the Boston Symphony Orchestra?
+Benny Goodman
+10
+
+Music: Which KC and the Sunshine Band song was a hit for KWS in the 90's?
+Please don't go
+10
+
+Music: which kraftwerk no1 was officially the b side of computer love?
+The model
+10
+
+Music: Which label did Toni Braxton's Un-Break My Heart appear on?
+Arista
+10
+
+Music: Which lady socked it to the Harper Valley PTA?
+Jennie C Riley
+10
+
+Music: Which liquid product featured the hit Like A Prayer in its advertisement?
+Pepsi
+10
+
+Music: Which Mariah Carey and Boyz II Men song became the first to spend 16 weeks at No 1?
+One Sweet Day
+10
+
+Music: which mccartney song is about john lennons' son & his trauma after lennon's divorce?
+Hey jude
+10
+
+Music: Which Megadeath frontman was also a member of Metallica?
+Dave Mustaine
+10
+
+Music: which member of a band plays the 'skins'?
+Drummer
+10
+
+Music: Which member of Take That shares his surname with a fruit?
+Jason Orange
+10
+
+Music: Which member of the Rolling Stones drowned in a swimming pool?
+Brian jones
+10
+
+Music: Which member of The Who switched to literature?
+Pete Townshend
+10
+
+Music: which musical instrument is the inventor leo fender associated with?
+Electric guitar
+10
+
+Music: Which musical note is half the value of a crotchet?
+Quaver
+10
+
+Music: which musician has been a member of depeche mode, yazoo and erasure?
+Vince clarke
+10
+
+Music: Which name did greg brady perform under?
+Johnny bravo
+10
+
+Music: which New York rap star released his second album in 1999, entitled forever?
+Puff daddy
+10
+
+Music: Which note does an orchestra tune to?
+A
+10
+
+Music: which of paul simon's musical characters was told to hop on the bus?
+Gus
+10
+
+Music: Which of the inmates who heard Johnny Cash's 1958 San Quentin concert became the biggest country music star?
+Merle Haggard
+10
+
+Music: which one is not one of the corrs andrea, colleen,sharon?
+Colleen
+10
+
+Music: which one of the monkees played a circus boy in circus boy?
+Mickey dolenz
+10
+
+Music: which one of the three tenors is not spanish?
+Pavarotti
+10
+
+Music: which park gave hit records for donna summer & richard harris?
+Macarthur
+10
+
+Music: Which part of the body was mentioned in the title of Reefs first top 10 hit?
+Hands
+10
+
+Music: Which performer made his last concert appearance on June 26, 1977, in Indianapolis?
+Elvis Presley
+10
+
+Music: Which Philadelphia vocal group were favorites of Prince Charles?
+The three degrees
+10
+
+Music: which pianist lived with his mother, frances, until his death in 1980?
+Liberace
+10
+
+Music: Which pop group had albums called Nevermind and Bleach?
+Nirvana
+10
+
+Music: Which pop group named itself after a 1956 John wayne film?
+The Searchers
+10
+
+Music: Which pop group released albums White Light,White Heat and Loaded?
+Velvet underground
+10
+
+Music: Which pop group were known as the Fab Four?
+The beatles
+10
+
+Music: Which pop singer has compiled a book of equine anecdotes?
+Alvin Stardust
+10
+
+Music: Which pop star played the title role in the film Tommy?
+Roger Daltrey
+10
+
+Music: Which relative features in a Hollies song title?
+Brother (he aint heavy hes my brother)
+10
+
+Music: Which rock stars daughter born aug 2000 is named Alexandria Zahra Jones?
+David bowie
+10
+
+Music: Which rock trio were filmed at their final concert at the Royal Albert hall in 1968?
+Cream
+10
+
+Music: which rockabilly group features singer pearl e. Gates?
+Pearl harbor
+10
+
+Music: Which Scottish singer was part of the 70's band Slik?
+Midge Ure
+10
+
+Music: Which showbiz veteran recorded the singalonga series of albums?
+Max bygraves
+10
+
+Music: which simple minds album spent 83weeks in the uk charts?
+Once upon a time
+10
+
+Music: Which singer fronted the bands The Specials, Fun Boy Three and The Colour Filed?
+Terry hall
+10
+
+Music: Which singer had top ten hits in the 1980s with Games without frontiers and Sledgehammer?
+Peter Gabriel
+10
+
+Music: Which singer is a former school teacher?
+Sheryl Crow
+10
+
+Music: Which singer married model Christie Brinkley in March 1985?
+Billy joel
+10
+
+Music: Which singer rose to fame in the revue Mr Tower of London in 1923 and became known for Wish me luck as you wave me goodbye?
+Gracie fields
+10
+
+Music: Which singer was given the name The Killer?
+Jerry Lee Lewis
+10
+
+Music: Which singer/songwriter worked in a factory making toilets for airplanes before he recorded 'Aint No Sunshine'?
+Bill Withers
+10
+
+Music: Which singers albums include the best selling Graceland?
+Paul simon
+10
+
+Music: Which single, when it peaked at number two in the UK charts in 1967, ended a run of 11 consecutive number ones for the Beatles?
+Penny lane
+10
+
+Music: Which song - The rising of the sun, and the running of the deer, the playing of the merry organ?
+The holly and the ivy
+10
+
+Music: Which song by Adge Cutler and The Wurzels was adopted by Bristol City Football Club as their theme song?
+Drink up thy zider
+10
+
+Music: Which song by the palindromic (read same in either direction) pop group Abba had a palindromic title?
+SOS
+10
+
+Music: Which song did robin luke write about his 5 year old sister?
+Susie darlin'
+10
+
+Music: Which song from Sweet Charity has since become associated with Shirley bassey?
+Big spender
+10
+
+Music: Which song sang by Queen contains the line, One dream one soul, one prize, one goal?
+A Kind Of Magic
+10
+
+Music: Which song was a UK Christmas No. 1 in 1995 for Michael Jackson?
+Earth song
+10
+
+Music: which song was released by billy joe royal & written by joe south?
+Down in the boondocks
+10
+
+Music: which stage musical contains the following song: tomorrow?
+Annie
+10
+
+Music: which sydney suburb was the venue for duran duran's video for union of the snake?
+Kurnell
+10
+
+Music: which teenybop favorites were formerly called the saxons?
+The bay city rollers
+10
+
+Music: which texan girl group had a 1999 hit with the song bills bills bills?
+Destiny's child
+10
+
+Music: Which Tori Amos album contains the songs 'Icicle', 'Cornflake Girl', and 'Space Dog'?
+Under the Pink
+10
+
+Music: Which toy company took aqua to court?
+Mattel
+10
+
+Music: Which two flying animals had their heads bitten off by ozzy osbourne?
+Bat and dove
+10
+
+Music: which u.s. singer/songwriter's debut album was entitled 'on how life is'?
+Macy gray
+10
+
+Music: Which U2 offering was the first ever million-selling CD?
+The joshua tree
+10
+
+Music: Which u2 song is about an ira bombing?
+Sunday bloody sunday
+10
+
+Music: Which UK guitarist co-produced Bob Dylan's album Infidels?
+Mark Knopfler
+10
+
+Music: Which US Boys band featured three members of the Wilson Family?
+The Beach Boys
+10
+
+Music: Which us singer perry was enjoying chart success when he was over 60?
+Como
+10
+
+Music: which us singers real name is richard penniman?
+Little richard
+10
+
+Music: Which US state was the title of a Bee Gees number 1 hit?
+Massachusetts
+10
+
+Music: Which veteran singer released an album of collaborations entitled 'reload' in 1999?
+Tom jones
+10
+
+Music: Which voice is between tenor and soprano?
+Alto
+10
+
+Music: Which Wagner opera includes the Swan Chorus?
+Lohengrin
+10
+
+Music: Which was Tchaikovskys first ballet?
+Swan Lake
+10
+
+Music: Which was the first Beatle to become a granddad?
+Ringo Starr
+10
+
+Music: Which was the first Beatles album to consist entirely of original material?
+A hard days night
+10
+
+Music: Which was the first British pop group to tour China?
+Wham!
+10
+
+Music: Which was the first single released by the Beatles on the Apple label?
+Hey jude
+10
+
+Music: Which well known jamaican reggae artist died of cancer in may 1981?
+Bob marley
+10
+
+Music: Which world-famous concert pianist became president of poland in 1940?
+Paderewski
+10
+
+Music: Which year was the title of Zager & Evans' only No 1?
+2525
+10
+
+Music: White Faced rockers had a platinum album named Shout at the Devil in 1984?
+Motley crue
+10
+
+Music: white out was invented by whos mother?
+Mike nesmith
+10
+
+Music: Who 'imagined' a better world?
+John Lennon
+10
+
+Music: who admited stealing a copy of his girlfriend's autobiography from an airport stand?
+Rod stewart
+10
+
+Music: Who adorned his last piano with 350 pounds of rhinestones?
+Liberace
+10
+
+Music: who appeared on American bandstand in november of 1957 singing 'hey schoolgirl'?
+Tom & jerry
+10
+
+Music: Who appeared on the cover of Seventeen magazine before selling over 11 million copies of her debut album?
+Whitney Houston
+10
+
+Music: Who appeared solo at the Woodstock festival after leaving 'The Lovin' Spoonful'?
+John Sebastian
+10
+
+Music: Who are the Three Tenors?
+Jose Carreras, Placido Domingo, Luciano Pavarotti
+10
+
+Music: Who are the two brothers in the band ac/dc?
+Angus & malcolm young
+10
+
+Music: Who backs george thorogood?
+The destroyers
+10
+
+Music: Who began his career with 'The Yardbirds' and established himself as one of the best rock guitarists of his generation?
+Eric Clapton
+10
+
+Music: Who began his professional career with Black Sabbath?
+Ozzy Osbourne
+10
+
+Music: who began writing songs while staying at a psychiatric hospital?
+James taylor
+10
+
+Music: who called billy idol the perry como of punk?
+Johnny rotten
+10
+
+Music: Who charted with a song about Heathcliff and Cathy?
+Kate bush (wuthering heights)
+10
+
+Music: Who co-wrote Fame with David Bowie?
+John Lennon
+10
+
+Music: Who collaborated with John Lennon on 'Whatever Gets You Through The Night'?
+Elton John
+10
+
+Music: Who collaborated with queen on under pressure?
+David bowie
+10
+
+Music: Who composed 'peter and the wolf'?
+Sergei prokofiev
+10
+
+Music: Who composed 'romeo and juliet'?
+Sergei prokofiev
+10
+
+Music: Who composed 'Symphonia Antarctica'?
+Vaughan williams
+10
+
+Music: Who composed 'the four seasons'?
+Vivaldi
+10
+
+Music: Who composed a Paris and a Prague Symphony?
+Mozart
+10
+
+Music: Who composed Boris Godunov?
+Mussorgsky
+10
+
+Music: Who composed Clair de Lune?
+Debussy
+10
+
+Music: Who composed Putting on the Ritz and Easter Parade?
+Irving Berlin
+10
+
+Music: Who composed Symphonie Fantistique?
+Berlioz
+10
+
+Music: Who composed the 'blue danube waltz'?
+Johann strauss
+10
+
+Music: who composed the 1812 overture?
+Tchaikovsky
+10
+
+Music: Who composed the Academy award winning song Moon River?
+Henry mancini
+10
+
+Music: Who composed the album Fans?
+Malcolm mclaren
+10
+
+Music: who composed the brandenburg concertos?
+Bach
+10
+
+Music: Who composed the cantata Carmina Burana?
+Carl orff
+10
+
+Music: Who composed the carnival of the animals?
+Saint saens
+10
+
+Music: Who composed the connie francis hit stupid cupid at the age of 16?
+Neil sedaka
+10
+
+Music: Who composed The Firebird?
+Stravinsky
+10
+
+Music: Who composed the Goldberg Variations?
+Johann Sebastian Bach
+10
+
+Music: Who composed the Illiad?
+Homer
+10
+
+Music: Who composed The Karelia Suite?
+Sibelius
+10
+
+Music: Who composed the music for A fistful of Dollars, For a few dollars more and The good the bad and the ugly?
+Ennio morricone
+10
+
+Music: who composed the music for air force one (1996)?
+Jerry goldsmith
+10
+
+Music: who composed the music for apollo 13?
+James horner
+10
+
+Music: who composed the music for the 1984 olympics opening ceremony?
+Philip glass
+10
+
+Music: who composed the music for the ballet 'l'apres midi d'un faune'?
+Claude debussy
+10
+
+Music: Who composed the music for the musical Showboat?
+Jerome kern
+10
+
+Music: Who composed the musical piece carmina burana?
+Carl orff
+10
+
+Music: Who composed the musical work Fingal 's Cave?
+Mendelssohn
+10
+
+Music: Who composed the Opera Albert Herring?
+Benjamin Britten
+10
+
+Music: Who composed the opera Billy Budd?
+Benjamin Brittan
+10
+
+Music: Who composed the Opera Boris Godunov?
+Mussorgski
+10
+
+Music: Who composed the opera Mitridate?
+Mozart
+10
+
+Music: Who composed the opera The bartered bride?
+Smetana
+10
+
+Music: Who composed the Overture to the Wasps?
+Vaughan williams
+10
+
+Music: Who composed the symphonic poem Finlandia?
+Jean sibelius
+10
+
+Music: Who composed the symphonic poems swan of tuonela and kullervo?
+Sibelius
+10
+
+Music: Who composed the William Tell Overture?
+Rossini
+10
+
+Music: who copped hit parader's honor as `84's loudest group?
+Iron maiden
+10
+
+Music: Who described herself as 'The Last of the Red Hot Mommas'?
+Sophie tucker
+10
+
+Music: who did a double album after leaving The Beatles as an effort to raise money for the famine in bangladesh?
+George harrison
+10
+
+Music: Who did a version of 'One Bourbon, One Scotch, One Beer' on his 1977 debut album?
+George Thorogood
+10
+
+Music: Who did blue oyster cult tell us not to fear?
+The reaper
+10
+
+Music: Who did Celime Dion record Immortality with?
+Bee Gees
+10
+
+Music: Who did Celine Dion support in his Canadian tour in 1991?
+Michael Bolton
+10
+
+Music: Who did Cher spend a week of wedded bliss with, three days after divorcing Sonny?
+Greg allman
+10
+
+Music: who did dolly parton team up with to record 'islands in the stream'?
+Kenny rogers
+10
+
+Music: Who did Janet Jackson sing The Best things in Life Are Free with?
+Luther Vandross
+10
+
+Music: who did mozart marry?
+Constance weyburn
+10
+
+Music: Who did the music for the 1970's film 'Saturday Night Fever'?
+Bee Gees
+10
+
+Music: who did yoko ono marry?
+John lennon
+10
+
+Music: Who discovered gold on the Witwatersrand?
+George Harrison
+10
+
+Music: who do the pips sing with?
+Gladys knight
+10
+
+Music: Who do we know richard starkey better as?
+Ringo starr
+10
+
+Music: Who does bruce springsteen say has a hungry heart?
+Everybody
+10
+
+Music: Who duetted on the 1993 hit I've Got You Under My Skin with Frank Sinatra?
+Bono
+10
+
+Music: Who duetted with Peabo Bryson on Beauty and the Beast?
+Celine Dion
+10
+
+Music: Who first asserted that 'you don't need a weatherman to know which way the wind blows'?
+Bob dylan
+10
+
+Music: Who first recorded Rudolph the Red nosed Reindeer in 1949?
+Gene autry
+10
+
+Music: Who formed & managed the sex pistols?
+Malcolm mclaren
+10
+
+Music: Who found himself Alone Again (Naturally)?
+Gilbert O'Sullivan
+10
+
+Music: Who founded 'Live Aid' and 'Band Aid'?
+Bob Geldof & Midge Ure
+10
+
+Music: Who fronted The Heartbreakers?
+Tom Petty
+10
+
+Music: Who gave a mindblowing rendition of the star spangled banner at woodstock?
+Jimi hendrix
+10
+
+Music: Who gave waylon jennings hid first guitar?
+Buddy holly
+10
+
+Music: who got his mojo working?
+Muddy waters
+10
+
+Music: Who had 1980s top ten hits with System Addict, Find the Time, and Rain or Shine?
+Five star
+10
+
+Music: Who had a 1966 hit with Good Vibrations?
+Beach Boys
+10
+
+Music: Who had a 1969 hit with Two Little Boys?
+Rolf harris
+10
+
+Music: Who had a 1977 hit with Three Times a Lady?
+The commodores
+10
+
+Music: Who had a 1978 No 1 with Boogie Oogie Oogie?
+A Taste Of Honey
+10
+
+Music: Who had a 1994 No 1 with I Swear?
+All-4-One
+10
+
+Music: Who had a 70s album called Liza with a Z?
+Liza Minnelli
+10
+
+Music: Who had a 70s hit with Rebel Rebel?
+Billy Idol
+10
+
+Music: Who had a giant hit with Nobody Knows?
+The Tony Rich Project
+10
+
+Music: Who had a hit with 'Rat Trap'?
+Boomtown rats
+10
+
+Music: who had a hit with sad songs?
+Elton john
+10
+
+Music: Who had a hit with shake it?
+David bowie
+10
+
+Music: Who had a hit with the song,tammy?
+Debbie reynolds
+10
+
+Music: who had a licence plate number a1-an-a2?
+Lawrence welk
+10
+
+Music: Who had a no 1 hit in 1968 with Ob-la-di ob-la-da?
+Marmalade
+10
+
+Music: Who had a no 1 hit with Dont you want me in 1981?
+Human league
+10
+
+Music: Who had a No 1 hit with Here Comes the Hot Stepper?
+Ini Kamoze
+10
+
+Music: Who had a No 1 with Brand New Key?
+Melanie
+10
+
+Music: Who had a no1 hit with Rubber Bullets in 1973?
+10cc
+10
+
+Music: who had a number 1 album with crossroads?
+Tracy chapman
+10
+
+Music: Who had a UK no 1 in 1997 with Torn?
+Natalie Imbruglia
+10
+
+Music: Who had Dreams in 1993?
+Gabrielle
+10
+
+Music: Who had his only Uk no1 hit with Three Steps to Heaven?
+Eddie cochran
+10
+
+Music: Who had hits with Can the Can and Devil Gate Drive?
+Suzi Quatro
+10
+
+Music: who had hits with candy o drive & just what i needed?
+The cars
+10
+
+Music: Who had hits with El Paso and Devil Woman?
+Marty Robbins
+10
+
+Music: Who had hits with Homeward Bound, I am a Rock and The Boxer?
+Simon and Garfunkel
+10
+
+Music: Who had nine best selling French albums before waxing her first in English in 1990?
+Celine dion
+10
+
+Music: Who had No 1 hits with West End Girls and It's a Sin?
+Pet Shop Boys
+10
+
+Music: Who had no. 1 hits with Tired of waiting for you and Sunny afternoon?
+Kinks
+10
+
+Music: Who had the hit single 'Plush'?
+Stone temple pilots
+10
+
+Music: Who had top 10 hit in the 1970s with Come on over to my Place?
+The Drifters
+10
+
+Music: Who had top 10 hit in the 1970s with Kissin in the back row of the movies?
+The drifters
+10
+
+Music: Who had top 10 hit in the 1970s with There goes my first love?
+The drifters
+10
+
+Music: Who had top 10 hits in 1980s with Blue Eyes and Passengers?
+Elton John
+10
+
+Music: Who had top ten hits in the 1960s with Calendar Girl and I go ape?
+Neil Sadaka
+10
+
+Music: Who had top ten hits in the 1960s with Detroit City and Love me tonight?
+Tom Jones
+10
+
+Music: Who had top ten hits in the 1970s with All right now, My brother Jake and Wishing Well?
+Free
+10
+
+Music: Who had top ten hits in the 1980s with Something about you,Lessons in Love and Runninf in the family?
+Level 42
+10
+
+Music: Who had top ten hits in the 1980s with The Riddle, Wide Boy and Wouldnt it be good?
+Nik Kershaw
+10
+
+Music: Who had top ten hits with Goodbye to love,Top of the World and Only Yesterday?
+The carpenters
+10
+
+Music: Who had top ten hits with Got to give it up and Abraham Martin and John?
+Marvin Gaye
+10
+
+Music: Who had top ten hits with Red Light spells danger,Suddenly and Caribbean queen?
+Billy Ocean
+10
+
+Music: Who has a new album out June 2002, titled Heathen?
+David Bowie
+10
+
+Music: Who has accumulated the most UK and US top ten albums and grossed most income from foreign touring?
+Rolling Stones
+10
+
+Music: Who has at least two albums named after major world cities?
+Lou reed
+10
+
+Music: Who has been a member of yazoo, depeche mode & erasure?
+Vince clarke
+10
+
+Music: who has used the pseudonym apollo c. Vermouth?
+Paul mccartney
+10
+
+Music: who has used the pseudonym winston o'boogie?
+John lennon
+10
+
+Music: Who hit the top ten with the Unskinny Bop?
+Poison
+10
+
+Music: Who in 1997 sang Love shine a light?
+Katrina and the waves
+10
+
+Music: who introduced june carter to johnny cash in 1955?
+Elvis presley
+10
+
+Music: Who invented the electrical bass?
+Fender
+10
+
+Music: Who invented the electrical bass?
+Leo Fender
+10
+
+Music: who invented the saxophone?
+Adolphe sax
+10
+
+Music: Who is artie garr?
+Art garfunkel
+10
+
+Music: who is called the 'texas tornado' by her fans?
+Tanya tucker
+10
+
+Music: Who is credited with composing the traditional ballad called Greensleeves?
+King henry viii
+10
+
+Music: Who is credited with the term rock n roll?
+Allan freed
+10
+
+Music: who is David robert jones better known as?
+David bowie
+10
+
+Music: who is don van vliet better known as?
+Captain beefheart
+10
+
+Music: who is enrique mart?n morales?
+Ricky martin
+10
+
+Music: who is finland's most famous composer?
+Jean sibelius
+10
+
+Music: Who is Gordon Sumner?
+Sting
+10
+
+Music: who is ground control trying to contact in David bowie's space oddity?
+Major tom
+10
+
+Music: Who is known as the first black rock star?
+Jimi hendrix
+10
+
+Music: Who is Leslie Sebastian Charles in chart terms?
+Billy Ocean
+10
+
+Music: who is lourdes maria ciccone leon?
+Madonna's daughter
+10
+
+Music: who is pat andrejewski better known as?
+Pat benatar
+10
+
+Music: Who is Reginald Dwight known as?
+Elton John
+10
+
+Music: who is richard starkey?
+Ringo starr
+10
+
+Music: Who is Robert van Winkle?
+Vanilla Ice
+10
+
+Music: Who is Stuart Goddard?
+Adam Ant
+10
+
+Music: Who is the artist/band who sang the song Wild Thang?
+Sam Kinison
+10
+
+Music: Who is the best selling saxophonist?
+Kenny g
+10
+
+Music: Who is the brother of the late Karen Carpenter?
+Richard
+10
+
+Music: Who is the elder statesman of 'British blues', and fronted 'The Bluesbreakers'?
+John Mayall
+10
+
+Music: Who is the ex-lead singer for Iron Maiden?
+Bruce dickinson
+10
+
+Music: Who is the ex-lead singer of the Dead Kennedys?
+Biafra
+10
+
+Music: who is the godfather of soul?
+James brown
+10
+
+Music: Who is the gravelly voiced lead man for The Mighty Mighty BossTones?
+Dicky barrett
+10
+
+Music: who is the late kurt coabain's widow?
+Courtney love
+10
+
+Music: Who is the late Kurt Cobain's widow?
+Courtney love
+10
+
+Music: Who is the lead singer in the band Texas?
+Sharleen Spiteri
+10
+
+Music: Who is the lead singer of 'The Doors'?
+Jim Morrison
+10
+
+Music: Who is the lead singer of the band Journey?
+Steve perry
+10
+
+Music: Who is the lead singer with Offspring?
+Dexter holland
+10
+
+Music: who is the musician husband of supermodel iman?
+David bowie
+10
+
+Music: Who is the only singer to have no.1 hits in the 50's, 60's, 70's, 80's and 90's?
+Cliff Richard
+10
+
+Music: who is the singer of alice in chains?
+Layne staley
+10
+
+Music: Who is the vocalist in Erasure?
+Andy bell
+10
+
+Music: Who is U2's lead singer?
+Bono
+10
+
+Music: who is yousef islam?
+Cat stevens
+10
+
+Music: Who is Zak Starkeys famous dad?
+Ringo Starr
+10
+
+Music: Who joined crooner Bing Crosby to record 'Little Drummer Boy' and 'Peace on Earth' on September 28, 1977?
+David Bowie
+10
+
+Music: Who jumped off the Tallahatchee Bridge?
+Billy joe mcallister
+10
+
+Music: Who knocked themselves off No 1 position with their follow up On Bended Knee?
+Boyz II Men
+10
+
+Music: who led the mothers of invention?
+Frank zappa
+10
+
+Music: Who made dance hits of Bizarre Love Triangle & True Faith?
+New order
+10
+
+Music: Who made his last stage appearance on November 28, 1974?
+John Lennon
+10
+
+Music: Who made NO 1 with Sledgehammer?
+Peter Gabriel
+10
+
+Music: who managed The Beatles to stardom?
+Brian epstein
+10
+
+Music: who mixes it with love & makes the world go around?
+Candyman
+10
+
+Music: Who named himself for Long John Baldry & Elton Dean?
+Elton john
+10
+
+Music: Who named his son zowie?
+David bowie
+10
+
+Music: Who only sleeps on planes?
+Suzie lightning
+10
+
+Music: Who originally recorded goodbye yellowbrick road?
+Elton john
+10
+
+Music: Who originally recorded the Shoop Shoop Song which was a hit for Cher?
+Betty everett
+10
+
+Music: Who originated virgin records?
+Richard branson
+10
+
+Music: Who owns the Philles label?
+Phil spector
+10
+
+Music: who owns the ten terrible fingers of doom?
+Ted nugent
+10
+
+Music: Who performed the 'Star Spangled Banner' at Woodstock 1969?
+Jimi Hendrix
+10
+
+Music: Who performed: I Want Candy?
+Bow wow wow
+10
+
+Music: Who performed: Trans-Europ Express?
+Kraftwerk
+10
+
+Music: Who played guitar on Georges While my guitar gently weeps?
+Eric clapton
+10
+
+Music: Who played lead guitar on David Bowie's Glass Spider Tour?
+Stevie Ray Vaughn
+10
+
+Music: who played stand-up bass on elvis' songs for sun records?
+Bill black
+10
+
+Music: Who played the theme tune to Charriots of Fire?
+Vangelis
+10
+
+Music: Who produced 'Sgt Pepper's Lonely Hearts Club Band'?
+George Martin
+10
+
+Music: Who produced an album called An Innocent Man?
+Billy Joel
+10
+
+Music: Who produced and edited the soundtrack of Natural Born Killers?
+Trent reznor
+10
+
+Music: who produced elvis' hit heartbreak hotel?
+Chet atkins
+10
+
+Music: Who produced the album In My Life, featuring covers of Beatles' songs by various artists?
+Sir george martin
+10
+
+Music: Who quit the Spice Girls in 1998?
+Geri halliwell
+10
+
+Music: who reached no 1 with ebeneezer goode in 1992?
+The shamen
+10
+
+Music: Who reached No 1 with Unbelievable?
+EMF
+10
+
+Music: Who reached number one with Living On My Own two years after his death?
+Freddie mercury
+10
+
+Music: Who recorded the album 'Spike'?
+Elvis costello
+10
+
+Music: who replaced 'bernie leadon' of 'the eagles' in 1975?
+Joe walsh
+10
+
+Music: who replaced pink floyd's syd barret?
+David gilmore
+10
+
+Music: who replaced ronnie james dio in black sabbath?
+Ian gillan
+10
+
+Music: who replaced syd barrett of pink floyd?
+David gilmour
+10
+
+Music: who returned to the rock scene with 461 ocean boulevard?
+Eric clapton
+10
+
+Music: Who sand Puppet on a string?
+Sandy shaw
+10
+
+Music: who scored a 1 smash in 1978 with his recording of the title song of the movie grease?
+Frankie valli
+10
+
+Music: Who sings 'Sweet Home Alabama'?
+Lynyrd Skynyrd
+10
+
+Music: who sings beautiful stranger?
+Madonna
+10
+
+Music: Who sings the song 'Cornflake Girl'?
+Tori Amos
+10
+
+Music: who sings the song 'honey'?
+Mariah carey
+10
+
+Music: Who sold part of his ownership of Beatles songs to Sony for $95 million in 1995?
+Michael Jackson
+10
+
+Music: Who starred in the movie head?
+The monkees
+10
+
+Music: Who started on the san francisco scene with oh well, but are probably best known for their album rumors?
+Fleetwood mac
+10
+
+Music: Who stomped off a 1995 Lollapalooza stage after a fan of her late husband threw a shotgun shell at her feet?
+Courtney Love
+10
+
+Music: Who supported the Sex Pistols on their Anarchy tour before becoming one of Britains New Wave bands?
+The clash
+10
+
+Music: Who teamed up with Barbra Streisand for tell Him?
+Celine Dion
+10
+
+Music: Who teamed up with Boyz II Men to record 'One Sweet Day'?
+Mariah Carey
+10
+
+Music: Who teamed up with Celine Dion for the No.1 hit 'I'm Your Angel' in 1998?
+R Kelly
+10
+
+Music: Who teamed up with Paul McCartney for ebony and Ivory?
+Stevie Wonder
+10
+
+Music: Who thought it was fun to stay at the Y.M.C.A?
+The village people
+10
+
+Music: Who threw the party at the county jail in jailhouse rock?
+The warden
+10
+
+Music: Who tied a yellow ribbon round an old oak tree?
+Tony Orlando and dawn
+10
+
+Music: Who took a magic carpet ride in 1968?
+Steppenwolf
+10
+
+Music: Who took over from Bob Neal as Elvis Presleys manager?
+Colonel tom parker
+10
+
+Music: Who wanted 'a lover with a slow hand'?
+The Pointer Sisters
+10
+
+Music: Who wanted 'a new drug'?
+Huey Lewis and The News
+10
+
+Music: Who was 'Bombastic' a hit for?
+Shaggy
+10
+
+Music: Who was 'hooked on a feeling'?
+Blue Suede
+10
+
+Music: Who was 13 when she became the youngest singer to crack the country top 50 chart?
+Leann rimes
+10
+
+Music: who was a bullfrog & a great friend of mine?
+Jeremiah
+10
+
+Music: Who was a member of 'Crosby, Stills and Nash' and 'The Hollies'?
+Graham Nash
+10
+
+Music: Who was Aretha Franklin's duet partner with the 1987 hit '(You Were), Waiting For Me'?
+George Michael
+10
+
+Music: who was asked to hang down your head by the kingston trio?
+Tom dooley
+10
+
+Music: Who was back in the Angels classic 60s NO 1?
+My Boyfriend
+10
+
+Music: Who was backed by The Shondells?
+Tommy James
+10
+
+Music: who was bernie taupin's long time songwriting partner?
+Elton john
+10
+
+Music: Who was born herbert khaury?
+Tiny tim
+10
+
+Music: Who was Dolly Parton's duet partner on 'Islands in the Stream' in 1984?
+Kenny Rogers
+10
+
+Music: Who was elton john's long time lyricist?
+Bernie taupin
+10
+
+Music: Who was James Ingram's duet partner on the 1983 hit 'Baby Come To Me'?
+Patti Austin
+10
+
+Music: Who was Jesus on the LP version of 'Jesus Christ Superstar'?
+Ian Gillan
+10
+
+Music: who was john lennon married to?
+Yoko ono
+10
+
+Music: who was known as 'the killer' in the 1950's?
+Jerry lee lewis
+10
+
+Music: who was les paul's wife?
+Mary ford
+10
+
+Music: Who was michael hutchence's last girl friend?
+Paula yates
+10
+
+Music: who was michael jackson married to?
+Lisa marie presley
+10
+
+Music: Who was Michael Jackson's duet partner on ' I Just Can't Stop Loving You'?
+Siedah Garrett
+10
+
+Music: Who was Phil Collins' partner on 'Separate Lives'?
+Marilyn Martin
+10
+
+Music: Who was Puff Daddy's duet partner on 'I'll Be Missing You' in 1997?
+Faith Evans
+10
+
+Music: Who was responsible for Hamster Dance in 1999?
+Cuban boys
+10
+
+Music: Who was Saving All My Love For You?
+Whitney Houston
+10
+
+Music: who was signed by motown when he was 5?
+Michael jackson
+10
+
+Music: Who was the best man at the 1968 wedding of johnny cash & june carter?
+Merle kilgore
+10
+
+Music: who was the first black singer to headline a network variety show?
+Nat king cole
+10
+
+Music: who was the first Canadian to top us album charts in the 1980's?
+Diamonds
+10
+
+Music: Who was the first country artist to sell over 10 million copies of an album?
+Garth Brooks
+10
+
+Music: who was the first drummer to perform in elvis presley's band?
+Dj fontana
+10
+
+Music: Who was the first female artist to debut on the Billboard album chart at Number One?
+Whitney Houston
+10
+
+Music: Who was the first female to enter the Billboard charts in 1985?
+Whitney Houston
+10
+
+Music: Who was the first female to reach 30 top ten hits?
+Madonna
+10
+
+Music: Who was the first female with two UK million-selling singles?
+Celine Dion
+10
+
+Music: Who was the first John to have four solo No 1 hits?
+Denver
+10
+
+Music: Who was the first recorded country music artist?
+Eck robertson
+10
+
+Music: Who was the first singer in Genesis?
+Peter gabriel
+10
+
+Music: who was the first us country artist to perform in moscow?
+Roy clark
+10
+
+Music: Who was the former leader of Ten Thousand Maniacs?
+Natalie merchant
+10
+
+Music: Who was the Indian maiden in Johnny Preston's 'Running Bear'?
+Little White Dove
+10
+
+Music: Who was the lead singer for Paul Revere and The Raiders?
+Mark Lindsay
+10
+
+Music: who was the lead singer for queen?
+Freddie mercury
+10
+
+Music: Who was the lead singer of Joy Division that killed himself?
+Ian curtis
+10
+
+Music: who was the lead singer of the rolling stones when the band was formed in 1962?
+Mick jagger
+10
+
+Music: who was the leader of the mindbenders?
+Wayne fontana
+10
+
+Music: Who was the most commercially successful and longest lasting group to emerge from the punk scene?
+Stranglers
+10
+
+Music: who was the music composer that went deaf?
+Beethoven
+10
+
+Music: Who was the oldest member of The Beatles?
+Ringo Starr
+10
+
+Music: Who was the only songwriter to win the Eurovision Song Contest twice?
+Johnny Logan
+10
+
+Music: who was the original singer for the group genesis?
+Peter gabriel
+10
+
+Music: who was the original singer of acdc?
+Bon scott
+10
+
+Music: Who was the original singer with the 60s group The Tremeloes?
+Brian poole
+10
+
+Music: Who was the Spice Girls' manager when they first hit the top of the charts?
+Simon fuller
+10
+
+Music: Who was the top-selling album artist of the 1970's according to Billboard?
+Elton John
+10
+
+Music: Who was the youngest chart topper in 1972?
+Jimmy osmond
+10
+
+Music: Who was the youngest person to have a chart-topping solo single, in 1970?
+Michael Jackson
+10
+
+Music: Who was Tony Orlando reunited with after 11 years in july, 1988?
+Dawn
+10
+
+Music: Who were Benn, Bjorn, Agnetha and Frida?
+ABBA
+10
+
+Music: Who were Huey Lewis' backing group?
+The news
+10
+
+Music: Who were Huey Lewis's backing group?
+The News
+10
+
+Music: who were once called composition of sound?
+Depeche mode
+10
+
+Music: Who wrote 'Roll Over Beethoven'?
+Chuck Berry
+10
+
+Music: who wrote & sang splish splash?
+Bobby darin
+10
+
+Music: who wrote `the entertainer, music made famous by the film,`the sting?
+Scott joplin
+10
+
+Music: Who wrote and performed the theme song from Chico & The Man?
+Jose feliciano
+10
+
+Music: who wrote cats in the cradle?
+Harry chapin
+10
+
+Music: who wrote i'm a believer for the monkees?
+Neil diamond
+10
+
+Music: Who wrote johnny's theme for the tonight show?
+Paul anka
+10
+
+Music: who wrote the 'Unfinished Symphony'?
+Wolfgang amadeus mozart
+10
+
+Music: Who wrote the Hungarian Rhapsody?
+Liszt
+10
+
+Music: Who wrote the lyrics to Porgy and Bess?
+Ira gershwin
+10
+
+Music: Who wrote the music for Les Sylphides?
+Chopin
+10
+
+Music: Who wrote the music to Rule Britannia?
+Thomas arne
+10
+
+Music: Who wrote the music Tubular Bells?
+Mike Oldfield
+10
+
+Music: Who wrote the opera 'norma'?
+Vincenzo Bellini
+10
+
+Music: Who wrote the opera 'The Giant'?
+Sergei Prokofiev
+10
+
+Music: Who wrote the opera 'Tosca'?
+Giacomo Puccini
+10
+
+Music: Who wrote the oprea 'La Traviata'?
+Guiseppe Verdi
+10
+
+Music: Who wrote the Sonata give the name Les Adieux?
+Beethoven
+10
+
+Music: Who wrote the song 'Do They Know It's Christmas' with Bob Geldof?
+Midge Ure
+10
+
+Music: Who wrote the song 'Do They Know It's Christmas' with Midge Ure?
+Bob Geldof
+10
+
+Music: Who wrote the song The Last Thing On My Mind?
+Tom Paxton
+10
+
+Music: Who wrote the words to Rule Britannia?
+James thomson
+10
+
+Music: Who wrote under the pseudonym Bernard Webb?
+Paul McCartney
+10
+
+Music: who, besides glenn frey & don henley, has sang lead vocals for the eagles?
+Joe walsh
+10
+
+Music: Who'd begun work on a 10th symphony when he died during a thunderstorm in 1827?
+Ludwig von beethoven
+10
+
+Music: Who'd never been farther east than Montana when he wrote Proud Mary?
+John Fogarty
+10
+
+Music: Who's first release was 'Talking Heads 77'?
+Psycho Killer
+10
+
+Music: Who's responsible for the LPs Shamrocks and Champagne, Bubbles in the Wine and Pick-a-Polka?
+Lawrence Welk
+10
+
+Music: Who's waxed more gold and platinum albums than any other solo female artist?
+Barbara Streisand
+10
+
+Music: Whom should you bring to the slaughter, according to Iron Maiden?
+Your daughter
+10
+
+Music: Whos first solo no 1 was I'm still waiting?
+Diana ross
+10
+
+Music: Whos only no 1 was I'm into something good?
+Herman's hermits
+10
+
+Music: whos only number one hit was band of gold?
+Freda payne
+10
+
+Music: Whose 1974 album was called Sneakin' Sally through the Alley?
+Robert Palmer
+10
+
+Music: Whose 1975 album was called Pressure Drop?
+Robert Palmer
+10
+
+Music: whose approach to jazz piano is called reductionism?
+Thelonious monk
+10
+
+Music: whose biography is entitled 'lady sings the blues'?
+Billie holliday
+10
+
+Music: Whose first full length album was called All over the Place?
+The Bangles
+10
+
+Music: Whose first top ten hit in 1967 was See Emily Play?
+Pink floyd
+10
+
+Music: Whose hits include Bad Moon Rising and Green River?
+Creedence Clearwater Revival
+10
+
+Music: Whose main hobby is collecting gold watches?
+Alice Cooper
+10
+
+Music: Whose mother did Dr Hook and The Medicine Show sing about in 1972?
+Sylvia's
+10
+
+Music: Whose only no 1 hit was Barbados in 1975?
+Typically Tropical
+10
+
+Music: Whose only top 10 hit was Come softly to me?
+Fleetwood mac
+10
+
+Music: Whose personal plane was equipped with a blue suede bathroom?
+Elvis presley
+10
+
+Music: Whose pop parody career includes the hits Addicted to Spuds, My Bologna and Eat It?
+Wierd Al Yankovic's
+10
+
+Music: whose real name is David robert jones?
+David bowie
+10
+
+Music: Whose theme song was Back In The Saddle Again?
+Gene autry 's
+10
+
+Music: Whose wailers was reggae kingpin peter tosh an original member of?
+Bob marley
+10
+
+Music: why didn't beethoven ever listen to his ninth symphony?
+He was deaf
+10
+
+Music: Wild Thing - Tone ____
+Loc
+10
+
+Music: Wildman of Black Sabbath?
+Ozzy Osbourne
+10
+
+Music: Wind Beneath My ____- Bette Midler
+Wings
+10
+
+Music: With Every Beat Of My ____- Taylor Dayne
+Heart
+10
+
+Music: With what song did Spandau Ballet first enter the charts in Nov 1980?
+To Cut a Long Story Short
+10
+
+Music: with which george michael song did robbie williams have a top 5 hit in 1996?
+Freedom
+10
+
+Music: With which group did Mick Jagger find fame?
+The rolling stones
+10
+
+Music: With which group is Damon Allbarn the lead singer?
+Blur
+10
+
+Music: With which group is Keith Flint the lead singer?
+Prodigy
+10
+
+Music: with which group was keith moon the drummer?
+The who
+10
+
+Music: With which instrument is jazz musician charlie mingus principally associated?
+Bass
+10
+
+Music: With which instrument is Larry Adler associated?
+Harmonica
+10
+
+Music: With which instrument is Leon Goossens associated?
+Oboe
+10
+
+Music: With which instrument is the musician Dennis Brain associated?
+French horn
+10
+
+Music: With which Motown group was Diana Ross a singer in the 1960's?
+The supremes
+10
+
+Music: With which musical instrument do you associate Jacqueline Du Pre?
+Cello
+10
+
+Music: With which musical instrument is Dizzy Gillespie chiefly associated?
+Trumpet
+10
+
+Music: With which musical instrument is Julian Bream chiefly associated?
+Guitar
+10
+
+Music: With which pop group is Jarvis Cocker the lead singer?
+Pulp
+10
+
+Music: With which song did frankie avalon begin his career?
+Dede dinah
+10
+
+Music: With whom did David Bowie work on his album Scarey Monsters and Super creeps?
+Pete Townshend
+10
+
+Music: WOMAD is an acronym for this festival put on by Peter Gabriel?
+World of music and dance
+10
+
+Music: Woodwind instrument with a double reed mouthpiece?
+Oboe
+10
+
+Music: Written by Lennon and McCartney, also released by the Rolling Stones?
+I wanna be your man
+10
+
+Music: Written by Lennon and McCartney, what, in 1963 was the first rolling Stones' single to enter the top twenty?
+I wanna be your man
+10
+
+Music: Written for a Donald Duck cartoon, this song was the most popular Nazi parody?
+Der fuehrers face
+10
+
+Music: XTC played faux-60s tunes under this name?
+The dukes of stratosphear
+10
+
+Music: Year that Led Zeppelin released it's 4th album (y'know, the unnamed one)?
+1971
+10
+
+Music: Yellow polka-dot bikini according to the song, where does it never rain?
+Southern California
+10
+
+Music: You can't go where the others go?
+The way it is
+10
+
+What creature was Will Smith's codename in the movie Independence day?
+Eagle
+10
+
+Aretha franklin sang this song in the original blues brothers movie?
+Think
+10
+
+Ariel's Beginning is the sub-title of a 2008 straight-to-DVD prequel of what animated Disney movie?
+The Little Mermaid
+10
+
+Aretha franklin sang this song in the original blues brothers movie?
+Think
+10
+
+What was Arnold Schwarzenegger's screen name in his early career?
+Arnold Strong
+10
+
+Arnold Strong was his screen name in his early career.  What name is he known by now?
+Arnold Schwarzenegger
+10
+
+Music: You Got It (The ____Stuff) - New Kids On The Block
+Right
+10
+
+Music: You said you had to get your laundry cleaned?
+Break my stride
+10
+
+Music: You, were always so far away?
+Brother
+10
+
+Music: You're playing a major scale with 2 flats. What key are you in?
+B flat
+10
+
+Music: You've lost that loving feeling which was written by barry mann, phil spector, and cynthia weil. although recorded by different artists, the song is the only one in history to be played over____ ____ times on the radio
+8 million
+10
+
+Music: Young boy runs through the street rolling a tire?
+Hungry like the wolf
+10
+
+Music: Young Creatures (Australian)?
+Baby animals
+10
+
+Music: Zager & ____
+Evans
+10
+
+Music: Zoom is an R&B song by which American band?
+Fat Larry's Band
+10
+
+Music: Who set the WWI poems of Wilfred Owen to music?
+Benjamin britten
+10
+
+Movie lines: Go ahead, take a good look. when you're through, we'll continue?
+Man without a face
+10
+
+Animals: Because baby pigs grow so quickly, a succession of 48 little pigs were used in the title role during the filming of the 1995 movie hit ____
+Babe
+10
+
+WHat are the first & last names of all 4 Sweathogs on Welcome Back Kotter?
+-- Answer metadata begin
+{
+    "answers": ["Vinnie Barbarino, Freddie Washington, Arnold Horshack, and Juan Epstein"]
+}
+-- Answer metadata end
+10
+
+TV/Film: ____ Harry's badge number is 221?
+Dirty
+10
+
+TV/Film: ____ street is where big bird & oscar the grouch live?
+Sesame
+10
+
+TV/Film: ____, the story of prize fighter jake lamotta, packs a real punch?
+Raging bull
+10
+
+TV/Film: 'Back in the Habit' is the sub-title to the sequel of which film?
+Sister act
+10
+
+TV/Film: 'Dances With Wolves' won the best picture Oscar in 1990, 1991, or 1993?
+1990
+10
+
+TV/Film: 'driving miss daisy' won the oscar for best picture in 1989, 1990 or 1991?
+1989
+10
+
+TV/Film: 'I was Born under a Wand'rin Star' came from which film?
+Paint your wagon
+10
+
+TV/Film: 'Magnificent Seven' is a remake of this Japanese movie?
+Seven samurai
+10
+
+TV/Film: 'steptoe and son' was the model for which amercian sitcom?
+All in the family
+10
+
+TV/Film: 'the last emperor' won the oscar for best picture in 1987, 1988 or 1990?
+1987
+10
+
+TV/Film: 'the shining' was the film playing at the drive-in in which film?
+Twister
+10
+
+TV/Film: 'There's Something About Mary' starring Cameron Diaz was released in what year?
+1998
+10
+
+TV/Film: 1903 Edwin Porter film classic not filmed in the Wild West, but in New Jersey?
+The great train robbery
+10
+
+TV/Film: 1910s: In 1914, Charlie Chaplin starred in this movie?
+A film johnnie
+10
+
+TV/Film: 1910s: In 1914, Charlie Chaplin starred in this movie?
+Between showers
+10
+
+TV/Film: 1910s: In 1914, Charlie Chaplin starred in this movie?
+Kid auto races at venice
+10
+
+TV/Film: 1910s: In 1914, Charlie Chaplin starred in this movie?
+Mabel at the wheel
+10
+
+TV/Film: 1910s: In 1914, Charlie Chaplin starred in this movie?
+Mabel's busy day
+10
+
+TV/Film: 1910s: In 1914, Charlie Chaplin starred in this movie?
+Mabel's strange predicament
+10
+
+TV/Film: 1910s: In 1914, Charlie Chaplin starred in this movie?
+Making a living
+10
+
+TV/Film: 1910s: In 1914, Charlie Chaplin starred in this movie?
+The fatal mallet
+10
+
+TV/Film: 1910s: In 1914, Charlie Chaplin starred in this movie?
+The knockout
+10
+
+TV/Film: 1910s: In 1914, Charlie Chaplin starred in this movie?
+The star boarder
+10
+
+TV/Film: 1910s: In 1914, Charlie Chaplin starred in this movie?
+Tillie's punctured romance
+10
+
+TV/Film: 1910s: In 1915, Charlie Chaplin starred in this movie?
+The tramp
+10
+
+TV/Film: 1920s: In 1921, Charlie Chaplin starred in this movie?
+The kid
+10
+
+TV/Film: 1920s: In 1921, Charlie Chaplin starred in this movie?
+The nut
+10
+
+TV/Film: 1920s: In 1923, Charlie Chaplin starred in this movie?
+Souls for sale
+10
+
+TV/Film: 1920s: In 1925, Charlie Chaplin starred in this movie?
+The gold rush
+10
+
+TV/Film: 1920s: In 1925, Gary Cooper starred in this movie?
+Dick turpin
+10
+
+TV/Film: 1920s: In 1925, Gary Cooper starred in this movie?
+The eagle
+10
+
+TV/Film: 1920s: In 1925, Gary Cooper starred in this movie?
+The lucky horseshoe
+10
+
+TV/Film: 1920s: In 1925, Gary Cooper starred in this movie?
+The thundering herd
+10
+
+TV/Film: 1920s: In 1925, Gary Cooper starred in this movie?
+The vanishing American
+10
+
+TV/Film: 1920s: In 1925, Gary Cooper starred in this movie?
+Tricks
+10
+
+TV/Film: 1920s: In 1925, Gary Cooper starred in this movie?
+Wild horse mesa
+10
+
+TV/Film: 1920s: In 1926, Gary Cooper starred in this movie?
+Old ironsides
+10
+
+TV/Film: 1920s: In 1926, Gary Cooper starred in this movie?
+The enchanted hill
+10
+
+TV/Film: 1920s: In 1926, Gary Cooper starred in this movie?
+The winning of barbara worth
+10
+
+TV/Film: 1920s: In 1926, Gary Cooper starred in this movie?
+Three pals
+10
+
+TV/Film: 1920s: In 1926, Gary Cooper starred in this movie?
+Watch your wife
+10
+
+TV/Film: 1920s: In 1927, Gary Cooper starred in this movie?
+Arizona bound
+10
+
+TV/Film: 1920s: In 1927, Gary Cooper starred in this movie?
+It
+10
+
+TV/Film: 1920s: In 1927, Gary Cooper starred in this movie?
+Wings
+10
+
+TV/Film: 1920s: In 1928, Charlie Chaplin starred in this movie?
+The circus
+10
+
+TV/Film: 1920s: In 1928, Gary Cooper starred in this movie?
+Doomsday
+10
+
+TV/Film: 1920s: In 1928, Gary Cooper starred in this movie?
+Half a bride
+10
+
+TV/Film: 1920s: In 1928, Gary Cooper starred in this movie?
+Lilac time
+10
+
+TV/Film: 1920s: In 1928, Gary Cooper starred in this movie?
+The first kiss
+10
+
+TV/Film: 1920s: In 1928, Gary Cooper starred in this movie?
+The legion of the condemned
+10
+
+TV/Film: 1920s: In 1928, Humphrey Bogart starred in this movie?
+The dancing town
+10
+
+TV/Film: 1920s: In 1929, Gary Cooper starred in this movie?
+The virginian
+10
+
+TV/Film: 1920s: In 1929, Gary Cooper starred in this movie?
+Wolf song
+10
+
+TV/Film: 1920s: In 1929, Lucille Ball starred in this movie?
+Bulldog drummond
+10
+
+TV/Film: 1927/1928 1st Academy Awards: Best Actress In A Leading Role Was won by Janet Gaynor For The Movie?
+Sunrise
+10
+
+TV/Film: 1928/1929 2nd Academy Awards: Best Actress In A Leading Role Was won by Mary Pickford For The Movie?
+Coquette
+10
+
+TV/Film: 1929/1930 3rd Academy Awards: Best Actress In A Leading Role Was won by Norma Shearer For The Movie?
+The Divorcee
+10
+
+TV/Film: 1930/1931 4th Academy Awards: Best Actress In A Leading Role Was won by Marie Dressler For The Movie?
+Min and bill
+10
+
+TV/Film: 1930s: In 1930, Gary Cooper starred in this movie?
+A man from wyoming
+10
+
+TV/Film: 1930s: In 1930, Gary Cooper starred in this movie?
+Morocco
+10
+
+TV/Film: 1930s: In 1930, Gary Cooper starred in this movie?
+Only the brave
+10
+
+TV/Film: 1930s: In 1930, Gary Cooper starred in this movie?
+Paramount on parade
+10
+
+TV/Film: 1930s: In 1930, Gary Cooper starred in this movie?
+The texan
+10
+
+TV/Film: 1930s: In 1930, Humphrey Bogart starred in this movie?
+A devil with women
+10
+
+TV/Film: 1930s: In 1930, Humphrey Bogart starred in this movie?
+Broadway's like that
+10
+
+TV/Film: 1930s: In 1930, Humphrey Bogart starred in this movie?
+Up the river
+10
+
+TV/Film: 1930s: In 1931, Charlie Chaplin starred in this movie?
+City lights
+10
+
+TV/Film: 1930s: In 1931, Gary Cooper starred in this movie?
+City streets
+10
+
+TV/Film: 1930s: In 1931, Gary Cooper starred in this movie?
+Fighting caravans
+10
+
+TV/Film: 1930s: In 1931, Gary Cooper starred in this movie?
+His woman
+10
+
+TV/Film: 1930s: In 1931, Gary Cooper starred in this movie?
+The slippery pearls
+10
+
+TV/Film: 1930s: In 1931, Humphrey Bogart starred in this movie?
+A holy terror
+10
+
+TV/Film: 1930s: In 1931, Humphrey Bogart starred in this movie?
+Bad sister
+10
+
+TV/Film: 1930s: In 1931, Humphrey Bogart starred in this movie?
+Body and soul
+10
+
+TV/Film: 1930s: In 1931, Humphrey Bogart starred in this movie?
+Women of all nations
+10
+
+TV/Film: 1930s: In 1932, Gary Cooper starred in this movie?
+A farewell to arms
+10
+
+TV/Film: 1930s: In 1932, Gary Cooper starred in this movie?
+Devil and the deep
+10
+
+TV/Film: 1930s: In 1932, Gary Cooper starred in this movie?
+If i had a million
+10
+
+TV/Film: 1930s: In 1932, Gary Cooper starred in this movie?
+Make me a star
+10
+
+TV/Film: 1930s: In 1932, Gary Cooper starred in this movie?
+The voice of hollywood no. 13
+10
+
+TV/Film: 1930s: In 1932, Humphrey Bogart starred in this movie?
+Big city blues
+10
+
+TV/Film: 1930s: In 1932, Humphrey Bogart starred in this movie?
+Love affair
+10
+
+TV/Film: 1930s: In 1932, Humphrey Bogart starred in this movie?
+Three on a match
+10
+
+TV/Film: 1930s: In 1932, Katharine Hepburn starred in this movie?
+A bill of divorcement
+10
+
+TV/Film: 1930s: In 1932, Lucille Ball starred in this movie?
+The kid from spain
+10
+
+TV/Film: 1930s: In 1933, Gary Cooper starred in this movie?
+Alice in wonderland
+10
+
+TV/Film: 1930s: In 1933, Gary Cooper starred in this movie?
+Design for living
+10
+
+TV/Film: 1930s: In 1933, Gary Cooper starred in this movie?
+One sunday afternoon
+10
+
+TV/Film: 1930s: In 1933, Gary Cooper starred in this movie?
+Operator 13
+10
+
+TV/Film: 1930s: In 1933, Gary Cooper starred in this movie?
+Today we live
+10
+
+TV/Film: 1930s: In 1933, Katharine Hepburn starred in this movie?
+Christopher strong
+10
+
+TV/Film: 1930s: In 1933, Katharine Hepburn starred in this movie?
+Little women
+10
+
+TV/Film: 1930s: In 1933, Katharine Hepburn starred in this movie?
+Morning glory
+10
+
+TV/Film: 1930s: In 1933, Lucille Ball starred in this movie?
+Blood money
+10
+
+TV/Film: 1930s: In 1933, Lucille Ball starred in this movie?
+Broadway through a keyhole
+10
+
+TV/Film: 1930s: In 1933, Lucille Ball starred in this movie?
+Roman scandals
+10
+
+TV/Film: 1930s: In 1933, Lucille Ball starred in this movie?
+The bowery
+10
+
+TV/Film: 1930s: In 1934, Gary Cooper starred in this movie?
+Now and forever
+10
+
+TV/Film: 1930s: In 1934, Humphrey Bogart starred in this movie?
+Call it murder
+10
+
+TV/Film: 1930s: In 1934, Humphrey Bogart starred in this movie?
+Midnight
+10
+
+TV/Film: 1930s: In 1934, Katharine Hepburn starred in this movie?
+Spitfire
+10
+
+TV/Film: 1930s: In 1934, Katharine Hepburn starred in this movie?
+The little minister
+10
+
+TV/Film: 1930s: In 1934, Lucille Ball starred in this movie?
+Bottoms up
+10
+
+TV/Film: 1930s: In 1934, Lucille Ball starred in this movie?
+Broadway bill
+10
+
+TV/Film: 1930s: In 1934, Lucille Ball starred in this movie?
+Bulldog drummond strikes back
+10
+
+TV/Film: 1930s: In 1934, Lucille Ball starred in this movie?
+Fugitive lady
+10
+
+TV/Film: 1930s: In 1934, Lucille Ball starred in this movie?
+Hold that girl
+10
+
+TV/Film: 1930s: In 1934, Lucille Ball starred in this movie?
+Jealousy
+10
+
+TV/Film: 1930s: In 1934, Lucille Ball starred in this movie?
+Kid millions
+10
+
+TV/Film: 1930s: In 1934, Lucille Ball starred in this movie?
+Men of the night
+10
+
+TV/Film: 1930s: In 1934, Lucille Ball starred in this movie?
+Moulin rouge
+10
+
+TV/Film: 1930s: In 1934, Lucille Ball starred in this movie?
+Nana
+10
+
+TV/Film: 1930s: In 1934, Lucille Ball starred in this movie?
+The affairs of cellini
+10
+
+TV/Film: 1930s: In 1934, Lucille Ball starred in this movie?
+Three little pigskins
+10
+
+TV/Film: 1930s: In 1935, Gary Cooper starred in this movie?
+Peter ibbetson
+10
+
+TV/Film: 1930s: In 1935, Gary Cooper starred in this movie?
+The lives of a bengal lancer
+10
+
+TV/Film: 1930s: In 1935, Gary Cooper starred in this movie?
+The wedding night
+10
+
+TV/Film: 1930s: In 1935, Katharine Hepburn starred in this movie?
+Alice adams
+10
+
+TV/Film: 1930s: In 1935, Katharine Hepburn starred in this movie?
+Break of hearts
+10
+
+TV/Film: 1930s: In 1935, Katharine Hepburn starred in this movie?
+Sylvia scarlett
+10
+
+TV/Film: 1930s: In 1935, Lucille Ball starred in this movie?
+Carnival
+10
+
+TV/Film: 1930s: In 1935, Lucille Ball starred in this movie?
+I dream too much
+10
+
+TV/Film: 1930s: In 1935, Lucille Ball starred in this movie?
+I'll love you always
+10
+
+TV/Film: 1930s: In 1935, Lucille Ball starred in this movie?
+Old man rhythm
+10
+
+TV/Film: 1930s: In 1935, Lucille Ball starred in this movie?
+Roberta
+10
+
+TV/Film: 1930s: In 1935, Lucille Ball starred in this movie?
+The three musketeers
+10
+
+TV/Film: 1930s: In 1935, Lucille Ball starred in this movie?
+The whole town's talking
+10
+
+TV/Film: 1930s: In 1935, Lucille Ball starred in this movie?
+Top hat
+10
+
+TV/Film: 1930s: In 1936, Charlie Chaplin starred in this movie?
+Modern times
+10
+
+TV/Film: 1930s: In 1936, Gary Cooper starred in this movie?
+Desire
+10
+
+TV/Film: 1930s: In 1936, Gary Cooper starred in this movie?
+Hollywood boulevard
+10
+
+TV/Film: 1930s: In 1936, Gary Cooper starred in this movie?
+Mr. deeds goes to town
+10
+
+TV/Film: 1930s: In 1936, Gary Cooper starred in this movie?
+The general died at dawn
+10
+
+TV/Film: 1930s: In 1936, Gary Cooper starred in this movie?
+The last outlaw
+10
+
+TV/Film: 1930s: In 1936, Gary Cooper starred in this movie?
+The plainsman
+10
+
+TV/Film: 1930s: In 1936, Humphrey Bogart starred in this movie?
+Black legion
+10
+
+TV/Film: 1930s: In 1936, Humphrey Bogart starred in this movie?
+Bullets or ballots
+10
+
+TV/Film: 1930s: In 1936, Humphrey Bogart starred in this movie?
+China clipper
+10
+
+TV/Film: 1930s: In 1936, Humphrey Bogart starred in this movie?
+Isle of fury
+10
+
+TV/Film: 1930s: In 1936, Humphrey Bogart starred in this movie?
+The petrified forest
+10
+
+TV/Film: 1930s: In 1936, Humphrey Bogart starred in this movie?
+Two against the world
+10
+
+TV/Film: 1930s: In 1936, Judy Garland starred in this movie?
+Pigskin parade
+10
+
+TV/Film: 1930s: In 1936, Katharine Hepburn starred in this movie?
+A woman rebels
+10
+
+TV/Film: 1930s: In 1936, Katharine Hepburn starred in this movie?
+Mary of Scotland
+10
+
+TV/Film: 1930s: In 1936, Lucille Ball starred in this movie?
+Bunker bean
+10
+
+TV/Film: 1930s: In 1936, Lucille Ball starred in this movie?
+Chatterbox
+10
+
+TV/Film: 1930s: In 1936, Lucille Ball starred in this movie?
+Follow the fleet
+10
+
+TV/Film: 1930s: In 1936, Lucille Ball starred in this movie?
+That girl from paris
+10
+
+TV/Film: 1930s: In 1936, Lucille Ball starred in this movie?
+The farmer in the dell
+10
+
+TV/Film: 1930s: In 1936, Lucille Ball starred in this movie?
+Winterset
+10
+
+TV/Film: 1930s: In 1937, Gary Cooper starred in this movie?
+Lest we forget
+10
+
+TV/Film: 1930s: In 1937, Gary Cooper starred in this movie?
+Souls at sea
+10
+
+TV/Film: 1930s: In 1937, Humphrey Bogart starred in this movie?
+Dead end
+10
+
+TV/Film: 1930s: In 1937, Humphrey Bogart starred in this movie?
+Kid galahad
+10
+
+TV/Film: 1930s: In 1937, Humphrey Bogart starred in this movie?
+Marked woman
+10
+
+TV/Film: 1930s: In 1937, Humphrey Bogart starred in this movie?
+San quentin
+10
+
+TV/Film: 1930s: In 1937, Humphrey Bogart starred in this movie?
+The great o'malley
+10
+
+TV/Film: 1930s: In 1937, Judy Garland starred in this movie?
+Broadway melody of 1938
+10
+
+TV/Film: 1930s: In 1937, Judy Garland starred in this movie?
+Thoroughbreds don't cry
+10
+
+TV/Film: 1930s: In 1937, Katharine Hepburn starred in this movie?
+Quality street
+10
+
+TV/Film: 1930s: In 1937, Katharine Hepburn starred in this movie?
+Stage door
+10
+
+TV/Film: 1930s: In 1937, Lucille Ball starred in this movie?
+Don't tell the wife
+10
+
+TV/Film: 1930s: In 1937, Lucille Ball starred in this movie?
+Joy of living
+10
+
+TV/Film: 1930s: In 1937, Lucille Ball starred in this movie?
+Stage door
+10
+
+TV/Film: 1930s: In 1938, Gary Cooper starred in this movie?
+Adventures of marco polo
+10
+
+TV/Film: 1930s: In 1938, Gary Cooper starred in this movie?
+Bluebeard's eighth wife
+10
+
+TV/Film: 1930s: In 1938, Gary Cooper starred in this movie?
+The adventures of marco polo
+10
+
+TV/Film: 1930s: In 1938, Gary Cooper starred in this movie?
+The cowboy and the lady
+10
+
+TV/Film: 1930s: In 1938, Gary Cooper starred in this movie?
+The shopworn angel
+10
+
+TV/Film: 1930s: In 1938, Humphrey Bogart starred in this movie?
+Angels with dirty faces
+10
+
+TV/Film: 1930s: In 1938, Humphrey Bogart starred in this movie?
+Crime school
+10
+
+TV/Film: 1930s: In 1938, Humphrey Bogart starred in this movie?
+Men are such fools
+10
+
+TV/Film: 1930s: In 1938, Humphrey Bogart starred in this movie?
+Racket busters
+10
+
+TV/Film: 1930s: In 1938, Humphrey Bogart starred in this movie?
+Swing your lady
+10
+
+TV/Film: 1930s: In 1938, Humphrey Bogart starred in this movie?
+The amazing doctor clitterhouse
+10
+
+TV/Film: 1930s: In 1938, Judy Garland starred in this movie?
+Love finds andy hardy
+10
+
+TV/Film: 1930s: In 1938, Katharine Hepburn starred in this movie?
+Bringing up baby
+10
+
+TV/Film: 1930s: In 1938, Katharine Hepburn starred in this movie?
+Holiday
+10
+
+TV/Film: 1930s: In 1938, Lucille Ball starred in this movie?
+Annabel takes a tour
+10
+
+TV/Film: 1930s: In 1938, Lucille Ball starred in this movie?
+Go chase yourself
+10
+
+TV/Film: 1930s: In 1938, Lucille Ball starred in this movie?
+Having wonderful time
+10
+
+TV/Film: 1930s: In 1938, Lucille Ball starred in this movie?
+Room service
+10
+
+TV/Film: 1930s: In 1938, Lucille Ball starred in this movie?
+The affairs of annabel
+10
+
+TV/Film: 1930s: In 1939, Gary Cooper starred in this movie?
+Beau geste
+10
+
+TV/Film: 1930s: In 1939, Gary Cooper starred in this movie?
+The real glory
+10
+
+TV/Film: 1930s: In 1939, Humphrey Bogart starred in this movie?
+Dark victory
+10
+
+TV/Film: 1930s: In 1939, Humphrey Bogart starred in this movie?
+King of the underworld
+10
+
+TV/Film: 1930s: In 1939, Humphrey Bogart starred in this movie?
+The oklahoma kid
+10
+
+TV/Film: 1930s: In 1939, Humphrey Bogart starred in this movie?
+The return of doctor x
+10
+
+TV/Film: 1930s: In 1939, Humphrey Bogart starred in this movie?
+The roaring twenties
+10
+
+TV/Film: 1930s: In 1939, Humphrey Bogart starred in this movie?
+You can't get away with murder
+10
+
+TV/Film: 1930s: In 1939, Judy Garland starred in this movie?
+Babes in arms
+10
+
+TV/Film: 1930s: In 1939, Judy Garland starred in this movie?
+The wizard of oz
+10
+
+TV/Film: 1930s: In 1939, Lucille Ball starred in this movie?
+Beauty for the asking
+10
+
+TV/Film: 1930s: In 1939, Lucille Ball starred in this movie?
+Five came back
+10
+
+TV/Film: 1930s: In 1939, Lucille Ball starred in this movie?
+Panama lady
+10
+
+TV/Film: 1930s: In 1939, Lucille Ball starred in this movie?
+Twelve crowded hours
+10
+
+TV/Film: 1930s: In the 1938 film 'Bringing Up Baby', what was Baby?
+Leopard
+10
+
+TV/Film: 1930s: Name the Actor: Who was the first actress to appear on the cover of Life Magazine in May 1937?
+Jean Harlow
+10
+
+TV/Film: 1930s: Name the Actor: Who was the star of the 1936 film 'The Story of Louis Pasteur'?
+Paul Muni
+10
+
+TV/Film: 1931/1932 5th Academy Awards: Best Actress In A Leading Role Was won by Helen Hayes For The Movie?
+The sin of Madelon Claudet
+10
+
+TV/Film: 1932/1933 6th Academy Awards: Best Actress In A Leading Role Was won by Katharine Hepburn For The Movie?
+Morning glory
+10
+
+TV/Film: 1934 7th Academy Awards: Best Actress In A Leading Role Was won by Claudette Colbert For The Movie?
+It happened One Night
+10
+
+TV/Film: 1934 Laurel and Hardy movie also titled The March of the Wooden Soldiers?
+Babes in toyland
+10
+
+TV/Film: 1935 8th Academy Awards: Best Actress In A Leading Role Was won by Bette Davis For The Movie?
+Dangerous
+10
+
+TV/Film: 1935 Who starred in the film Captain Blood?
+Errol flynn
+10
+
+TV/Film: 1936 9th Academy Awards: Best Actress In A Leading Role Was won by Luise Rainer For The Movie?
+The great ziegfeld
+10
+
+TV/Film: 1936 9th Academy Awards: Best Actress In A Supporting role was won by Gale Sondergaard For The Movie?
+Anthony Adverse
+10
+
+TV/Film: 1937 10th Academy Awards: Best Actress In A Leading Role Was won by Luise Rainer For The Movie?
+The good earth
+10
+
+TV/Film: 1937 10th Academy Awards: Best Actress In A Supporting role was won by Alice Brady For The Movie?
+In old chicago
+10
+
+TV/Film: 1938 11th Academy Awards: Best Actress In A Leading Role Was won by Bette Davis For The Movie?
+Jezebel
+10
+
+TV/Film: 1938 11th Academy Awards: Best Actress In A Supporting role was won by Fay Bainter For The Movie?
+Jezebel
+10
+
+TV/Film: 1939 12th Academy Awards: Best Actress In A Leading Role Was won by Vivien Leigh For The Movie?
+Gone with the Wind
+10
+
+TV/Film: 1939 12th Academy Awards: Best Actress In A Supporting role was won by Hattie Mcdaniel For The Movie?
+Gone with The Wind
+10
+
+TV/Film: 1940 13th Academy Awards: Best Actress In A Leading Role Was won by Ginger Rogers For The Movie?
+Kitty foyle
+10
+
+TV/Film: 1940 13th Academy Awards: Best Actress In A Supporting role was won by Jane Darwell For The Movie?
+The grapes of Wrath
+10
+
+TV/Film: 1940s: In 1940, Charlie Chaplin starred in this movie?
+The great dictator
+10
+
+TV/Film: 1940s: In 1940, Gary Cooper starred in this movie?
+I take this woman
+10
+
+TV/Film: 1940s: In 1940, Gary Cooper starred in this movie?
+Northwest mounted police
+10
+
+TV/Film: 1940s: In 1940, Gary Cooper starred in this movie?
+The westerner
+10
+
+TV/Film: 1940s: In 1940, Humphrey Bogart starred in this movie?
+Brother orchid
+10
+
+TV/Film: 1940s: In 1940, Humphrey Bogart starred in this movie?
+Invisible stripes
+10
+
+TV/Film: 1940s: In 1940, Humphrey Bogart starred in this movie?
+It all came true
+10
+
+TV/Film: 1940s: In 1940, Humphrey Bogart starred in this movie?
+They drive by night
+10
+
+TV/Film: 1940s: In 1940, Humphrey Bogart starred in this movie?
+Virginia city
+10
+
+TV/Film: 1940s: In 1940, Judy Garland starred in this movie?
+Andy hardy meets a debutante
+10
+
+TV/Film: 1940s: In 1940, Judy Garland starred in this movie?
+Little nellie kelly
+10
+
+TV/Film: 1940s: In 1940, Katharine Hepburn starred in this movie?
+The philadelphia story
+10
+
+TV/Film: 1940s: In 1940, Lucille Ball starred in this movie?
+Too many girls
+10
+
+TV/Film: 1940s: In 1940, Lucille Ball starred in this movie?
+You can't fool your wife
+10
+
+TV/Film: 1940s: In 1941, Gary Cooper starred in this movie?
+Ball of fire
+10
+
+TV/Film: 1940s: In 1941, Gary Cooper starred in this movie?
+Meet john doe
+10
+
+TV/Film: 1940s: In 1941, Gary Cooper starred in this movie?
+Sergeant york
+10
+
+TV/Film: 1940s: In 1941, Humphrey Bogart starred in this movie?
+High sierra
+10
+
+TV/Film: 1940s: In 1941, Humphrey Bogart starred in this movie?
+The maltese falcon
+10
+
+TV/Film: 1940s: In 1941, Humphrey Bogart starred in this movie?
+The wagons roll at night
+10
+
+TV/Film: 1940s: In 1941, Ingrid Bergman starred in this movie?
+Adam had four sons
+10
+
+TV/Film: 1940s: In 1941, Ingrid Bergman starred in this movie?
+Dr. jekyll and mr. hyde
+10
+
+TV/Film: 1940s: In 1941, Ingrid Bergman starred in this movie?
+Rage in heaven
+10
+
+TV/Film: 1940s: In 1941, Judy Garland starred in this movie?
+Babes on broadway
+10
+
+TV/Film: 1940s: In 1941, Judy Garland starred in this movie?
+Life begins for andy hardy
+10
+
+TV/Film: 1940s: In 1941, Judy Garland starred in this movie?
+Ziegfeld girl
+10
+
+TV/Film: 1940s: In 1941, Lucille Ball starred in this movie?
+Look who's laughing
+10
+
+TV/Film: 1940s: In 1942, Gary Cooper starred in this movie?
+Seven days' leave
+10
+
+TV/Film: 1940s: In 1942, Gary Cooper starred in this movie?
+The pride of the yankees
+10
+
+TV/Film: 1940s: In 1942, Humphrey Bogart starred in this movie?
+Across the pacific
+10
+
+TV/Film: 1940s: In 1942, Humphrey Bogart starred in this movie?
+All through the night
+10
+
+TV/Film: 1940s: In 1942, Humphrey Bogart starred in this movie?
+Casablanca
+10
+
+TV/Film: 1940s: In 1942, Humphrey Bogart starred in this movie?
+In this our life
+10
+
+TV/Film: 1940s: In 1942, Humphrey Bogart starred in this movie?
+The big shot
+10
+
+TV/Film: 1940s: In 1942, Ingrid Bergman starred in this movie?
+Casablanca
+10
+
+TV/Film: 1940s: In 1942, Judy Garland starred in this movie?
+For me and my gal
+10
+
+TV/Film: 1940s: In 1942, Katharine Hepburn starred in this movie?
+Keeper of the flame
+10
+
+TV/Film: 1940s: In 1942, Katharine Hepburn starred in this movie?
+Woman of the year
+10
+
+TV/Film: 1940s: In 1942, Lucille Ball starred in this movie?
+Seven days' leave
+10
+
+TV/Film: 1940s: In 1942, Lucille Ball starred in this movie?
+The big street
+10
+
+TV/Film: 1940s: In 1942, Lucille Ball starred in this movie?
+Valley of the sun
+10
+
+TV/Film: 1940s: In 1943, Elizabeth Taylor starred in this movie?
+Lassie come home
+10
+
+TV/Film: 1940s: In 1943, Gary Cooper starred in this movie?
+For whom the bell tolls
+10
+
+TV/Film: 1940s: In 1943, Humphrey Bogart starred in this movie?
+Action in the north atlantic
+10
+
+TV/Film: 1940s: In 1943, Humphrey Bogart starred in this movie?
+Sahara
+10
+
+TV/Film: 1940s: In 1943, Humphrey Bogart starred in this movie?
+Thank your lucky stars
+10
+
+TV/Film: 1940s: In 1943, Ingrid Bergman starred in this movie?
+For whom the bell tolls
+10
+
+TV/Film: 1940s: In 1943, Katharine Hepburn starred in this movie?
+Stage door canteen
+10
+
+TV/Film: 1940s: In 1943, Lucille Ball starred in this movie?
+Best foot forward
+10
+
+TV/Film: 1940s: In 1943, Lucille Ball starred in this movie?
+Du barry was a lady
+10
+
+TV/Film: 1940s: In 1943, Lucille Ball starred in this movie?
+Thousands cheer
+10
+
+TV/Film: 1940s: In 1944, Angela Lansbury starred in this movie?
+Gaslight
+10
+
+TV/Film: 1940s: In 1944, Angela Lansbury starred in this movie?
+National velvet
+10
+
+TV/Film: 1940s: In 1944, Elizabeth Taylor starred in this movie?
+Jane eyre
+10
+
+TV/Film: 1940s: In 1944, Elizabeth Taylor starred in this movie?
+National velvet
+10
+
+TV/Film: 1940s: In 1944, Elizabeth Taylor starred in this movie?
+The white cliffs of dover
+10
+
+TV/Film: 1940s: In 1944, Gary Cooper starred in this movie?
+Casanova brown
+10
+
+TV/Film: 1940s: In 1944, Gary Cooper starred in this movie?
+Nevada
+10
+
+TV/Film: 1940s: In 1944, Gary Cooper starred in this movie?
+The story of dr. wassell
+10
+
+TV/Film: 1940s: In 1944, Humphrey Bogart starred in this movie?
+Passage to marseille
+10
+
+TV/Film: 1940s: In 1944, Humphrey Bogart starred in this movie?
+To have and have not
+10
+
+TV/Film: 1940s: In 1944, Ingrid Bergman starred in this movie?
+Gaslight
+10
+
+TV/Film: 1940s: In 1944, Judy Garland starred in this movie?
+Meet me in st. louis
+10
+
+TV/Film: 1940s: In 1944, Katharine Hepburn starred in this movie?
+Dragon seed
+10
+
+TV/Film: 1940s: In 1944, Lauren Bacall starred in this movie?
+To have and have not
+10
+
+TV/Film: 1940s: In 1944, Lucille Ball starred in this movie?
+Meet the people
+10
+
+TV/Film: 1940s: In 1945, Angela Lansbury starred in this movie?
+The harvey girls
+10
+
+TV/Film: 1940s: In 1945, Angela Lansbury starred in this movie?
+The picture of dorian gray
+10
+
+TV/Film: 1940s: In 1945, Elizabeth Taylor starred in this movie?
+Courage of lassie
+10
+
+TV/Film: 1940s: In 1945, Gary Cooper starred in this movie?
+Saratoga trunk
+10
+
+TV/Film: 1940s: In 1945, Humphrey Bogart starred in this movie?
+Conflict
+10
+
+TV/Film: 1940s: In 1945, Ingrid Bergman starred in this movie?
+Saratoga trunk
+10
+
+TV/Film: 1940s: In 1945, Ingrid Bergman starred in this movie?
+Spellbound
+10
+
+TV/Film: 1940s: In 1945, Ingrid Bergman starred in this movie?
+The bells of st. mary's
+10
+
+TV/Film: 1940s: In 1945, Judy Garland starred in this movie?
+The clock
+10
+
+TV/Film: 1940s: In 1945, Judy Garland starred in this movie?
+The harvey girls
+10
+
+TV/Film: 1940s: In 1945, Katharine Hepburn starred in this movie?
+Without love
+10
+
+TV/Film: 1940s: In 1945, Lauren Bacall starred in this movie?
+Confidential agent
+10
+
+TV/Film: 1940s: In 1945, Lucille Ball starred in this movie?
+Abbott and costello in hollywood
+10
+
+TV/Film: 1940s: In 1945, Lucille Ball starred in this movie?
+Without love
+10
+
+TV/Film: 1940s: In 1946, Angela Lansbury starred in this movie?
+The hoodlum saint
+10
+
+TV/Film: 1940s: In 1946, Angela Lansbury starred in this movie?
+Till the clouds roll by
+10
+
+TV/Film: 1940s: In 1946, Gary Cooper starred in this movie?
+Cloak and dagger
+10
+
+TV/Film: 1940s: In 1946, Humphrey Bogart starred in this movie?
+The big sleep
+10
+
+TV/Film: 1940s: In 1946, Humphrey Bogart starred in this movie?
+Two guys from milwaukee
+10
+
+TV/Film: 1940s: In 1946, Ingrid Bergman starred in this movie?
+Notorious
+10
+
+TV/Film: 1940s: In 1946, Judy Garland starred in this movie?
+Till the clouds roll by
+10
+
+TV/Film: 1940s: In 1946, Judy Garland starred in this movie?
+Ziegfeld follies
+10
+
+TV/Film: 1940s: In 1946, Katharine Hepburn starred in this movie?
+Undercurrent
+10
+
+TV/Film: 1940s: In 1946, Lauren Bacall starred in this movie?
+The big sleep
+10
+
+TV/Film: 1940s: In 1946, Lauren Bacall starred in this movie?
+Two guys from milwaukee
+10
+
+TV/Film: 1940s: In 1946, Lucille Ball starred in this movie?
+Easy to wed
+10
+
+TV/Film: 1940s: In 1946, Lucille Ball starred in this movie?
+Lover come back
+10
+
+TV/Film: 1940s: In 1946, Lucille Ball starred in this movie?
+The dark corner
+10
+
+TV/Film: 1940s: In 1946, Lucille Ball starred in this movie?
+Two smart people
+10
+
+TV/Film: 1940s: In 1946, Lucille Ball starred in this movie?
+Ziegfeld follies
+10
+
+TV/Film: 1940s: In 1947, Angela Lansbury starred in this movie?
+The private affairs of bel ami
+10
+
+TV/Film: 1940s: In 1947, Charlie Chaplin starred in this movie?
+Monsieur verdoux
+10
+
+TV/Film: 1940s: In 1947, Elizabeth Taylor starred in this movie?
+Cynthia
+10
+
+TV/Film: 1940s: In 1947, Elizabeth Taylor starred in this movie?
+Life with father
+10
+
+TV/Film: 1940s: In 1947, Gary Cooper starred in this movie?
+Unconquered
+10
+
+TV/Film: 1940s: In 1947, Humphrey Bogart starred in this movie?
+Dark passage
+10
+
+TV/Film: 1940s: In 1947, Humphrey Bogart starred in this movie?
+Dead reckoning
+10
+
+TV/Film: 1940s: In 1947, Humphrey Bogart starred in this movie?
+The two mrs. carrolls
+10
+
+TV/Film: 1940s: In 1947, Katharine Hepburn starred in this movie?
+Song of love
+10
+
+TV/Film: 1940s: In 1947, Katharine Hepburn starred in this movie?
+The sea of grass
+10
+
+TV/Film: 1940s: In 1947, Lauren Bacall starred in this movie?
+Dark passage
+10
+
+TV/Film: 1940s: In 1947, Lucille Ball starred in this movie?
+Lured
+10
+
+TV/Film: 1940s: In 1948, Angela Lansbury starred in this movie?
+If winter comes
+10
+
+TV/Film: 1940s: In 1948, Angela Lansbury starred in this movie?
+State of the union
+10
+
+TV/Film: 1940s: In 1948, Angela Lansbury starred in this movie?
+Tenth avenue angel
+10
+
+TV/Film: 1940s: In 1948, Audrey Hepburn starred in this movie?
+Nederlands in 7 lessen
+10
+
+TV/Film: 1940s: In 1948, Elizabeth Taylor starred in this movie?
+A date with judy
+10
+
+TV/Film: 1940s: In 1948, Elizabeth Taylor starred in this movie?
+Julia misbehaves
+10
+
+TV/Film: 1940s: In 1948, Gary Cooper starred in this movie?
+Good sam
+10
+
+TV/Film: 1940s: In 1948, Humphrey Bogart starred in this movie?
+Always together
+10
+
+TV/Film: 1940s: In 1948, Humphrey Bogart starred in this movie?
+Key largo
+10
+
+TV/Film: 1940s: In 1948, Humphrey Bogart starred in this movie?
+The treasure of the sierra madre
+10
+
+TV/Film: 1940s: In 1948, Ingrid Bergman starred in this movie?
+Arch of triumph
+10
+
+TV/Film: 1940s: In 1948, Ingrid Bergman starred in this movie?
+Joan of arc
+10
+
+TV/Film: 1940s: In 1948, Judy Garland starred in this movie?
+Easter parade
+10
+
+TV/Film: 1940s: In 1948, Judy Garland starred in this movie?
+The pirate
+10
+
+TV/Film: 1940s: In 1948, Katharine Hepburn starred in this movie?
+State of the union
+10
+
+TV/Film: 1940s: In 1948, Lauren Bacall starred in this movie?
+Key largo
+10
+
+TV/Film: 1940s: In 1948, Lucille Ball starred in this movie?
+Her husband's affairs
+10
+
+TV/Film: 1940s: In 1949, Angela Lansbury starred in this movie?
+Samson and delilah
+10
+
+TV/Film: 1940s: In 1949, Angela Lansbury starred in this movie?
+The red danube
+10
+
+TV/Film: 1940s: In 1949, Elizabeth Taylor starred in this movie?
+Conspirator
+10
+
+TV/Film: 1940s: In 1949, Elizabeth Taylor starred in this movie?
+Little women
+10
+
+TV/Film: 1940s: In 1949, Gary Cooper starred in this movie?
+It's a great feeling
+10
+
+TV/Film: 1940s: In 1949, Gary Cooper starred in this movie?
+Task force
+10
+
+TV/Film: 1940s: In 1949, Gary Cooper starred in this movie?
+The fountainhead
+10
+
+TV/Film: 1940s: In 1949, Humphrey Bogart starred in this movie?
+Knock on any door
+10
+
+TV/Film: 1940s: In 1949, Humphrey Bogart starred in this movie?
+Tokyo joe
+10
+
+TV/Film: 1940s: In 1949, Ingrid Bergman starred in this movie?
+Stromboli
+10
+
+TV/Film: 1940s: In 1949, Ingrid Bergman starred in this movie?
+Under capricorn
+10
+
+TV/Film: 1940s: In 1949, Judy Garland starred in this movie?
+In the good old summertime
+10
+
+TV/Film: 1940s: In 1949, Katharine Hepburn starred in this movie?
+Adam's rib
+10
+
+TV/Film: 1940s: In 1949, Lucille Ball starred in this movie?
+Easy living
+10
+
+TV/Film: 1940s: In 1949, Lucille Ball starred in this movie?
+Miss grant takes richmond
+10
+
+TV/Film: 1940s: In 1949, Lucille Ball starred in this movie?
+Sorrowful jones
+10
+
+TV/Film: 1940s: In 1949, Marilyn Monroe starred in this movie?
+Ladies of the chorus
+10
+
+TV/Film: 1940s: In 1949, Marilyn Monroe starred in this movie?
+Love happy
+10
+
+TV/Film: 1940s: In the 1942 film The Black Swan who played Tyrone's Girl?
+Maureen O'Hara
+10
+
+TV/Film: 1940s: Tyrone swashes his buckle through this 1942 bird titled adventure?
+The Black Swan
+10
+
+TV/Film: 1941 14th Academy Awards: Best Actress In A Leading Role Was won by Joan Fontaine For The Movie?
+Suspicion
+10
+
+TV/Film: 1941 14th Academy Awards: Best Actress In A Supporting role was won by Mary Astor For The Movie?
+The great lie
+10
+
+TV/Film: 1942 15th Academy Awards: Best Actress In A Leading Role Was won by Greer Garson For The Movie?
+Mrs. miniver
+10
+
+TV/Film: 1942 15th Academy Awards: Best Actress In A Supporting role was won by Teresa Wright For The Movie?
+Mrs. miniver
+10
+
+TV/Film: 1943 16th Academy Awards: Best Actress In A Leading Role Was won by Jennifer Jones For The Movie?
+The song of Bernadette
+10
+
+TV/Film: 1943 16th Academy Awards: Best Actress In A Supporting role was won by Katina Paxinou For The Movie?
+For whom The Bell Tolls
+10
+
+TV/Film: 1944 17th Academy Awards: Best Actress In A Leading Role Was won by Ingrid Bergman For The Movie?
+Gaslight
+10
+
+TV/Film: 1944 17th Academy Awards: Best Actress In A Supporting role was won by Ethel Barrymore For The Movie?
+None but The Lonely Heart
+10
+
+TV/Film: 1945 18th Academy Awards: Best Actress In A Leading Role Was won by Joan Crawford For The Movie?
+Mildred pierce
+10
+
+TV/Film: 1945 18th Academy Awards: Best Actress In A Supporting role was won by Anne Revere For The Movie?
+National Velvet
+10
+
+TV/Film: 1946 19th Academy Awards: Best Actress In A Leading Role Was won by Olivia De Havilland For The Movie?
+To each His Own
+10
+
+TV/Film: 1946 19th Academy Awards: Best Actress In A Supporting role was won by Anne Baxter For The Movie?
+The razor's Edge
+10
+
+TV/Film: 1947 20th Academy Awards: Best Actress In A Leading Role Was won by Loretta Young For The Movie?
+The farmer's Daughter
+10
+
+TV/Film: 1947 20th Academy Awards: Best Actress In A Supporting role was won by Celeste Holm For The Movie?
+Gentleman's Agreement
+10
+
+TV/Film: 1948 21st Academy Awards: Best Actress In A Leading Role Was won by Jane Wyman For The Movie?
+Johnny belinda
+10
+
+TV/Film: 1948 21st Academy Awards: Best Actress In A Supporting role was won by Claire Trevor For The Movie?
+Key largo
+10
+
+TV/Film: 1949 22nd Academy Awards: Best Actress In A Leading Role Was won by Olivia De Havilland For The Movie?
+The Heiress
+10
+
+TV/Film: 1949 22nd Academy Awards: Best Actress In A Supporting role was won by Mercedes Mccambridge For The Movie?
+All The King's Men
+10
+
+TV/Film: 1950 23rd Academy Awards: Best Actress In A Leading Role Was won by Judy Holliday For The Movie?
+Born yesterday
+10
+
+TV/Film: 1950 23rd Academy Awards: Best Actress In A Supporting role was won by Josephine Hull For The Movie?
+Harvey
+10
+
+TV/Film: 1950,Retelling of a classic,starring David Niven as the foppish avenger?
+Elusive Pimpernel
+10
+
+TV/Film: 1950s: Actor: In the 1951 movie The Desert Fox who played Rommel?
+James mason
+10
+
+TV/Film: 1950s: Actor: In the 1954 film A Star is Born starring Judy Garland who played the leading man?
+James mason
+10
+
+TV/Film: 1950s: Disney: In the 1950 Disney adaptation of Treasure Island what was the name of the captain who lodged at the inn?
+Captain Billy Bones
+10
+
+TV/Film: 1950s: Disney: In the 1950 Disney adaptation of Treasure Island where did Jim Hawkins live?
+The Admiral Benbow
+10
+
+TV/Film: 1950s: In 1950, Elizabeth Taylor starred in this movie?
+Father of the bride
+10
+
+TV/Film: 1950s: In 1950, Elizabeth Taylor starred in this movie?
+The big hangover
+10
+
+TV/Film: 1950s: In 1950, Gary Cooper starred in this movie?
+Bright leaf
+10
+
+TV/Film: 1950s: In 1950, Gary Cooper starred in this movie?
+Dallas
+10
+
+TV/Film: 1950s: In 1950, Humphrey Bogart starred in this movie?
+Chain lightning
+10
+
+TV/Film: 1950s: In 1950, Humphrey Bogart starred in this movie?
+In a lonely place
+10
+
+TV/Film: 1950s: In 1950, Lauren Bacall starred in this movie?
+Bright leaf
+10
+
+TV/Film: 1950s: In 1950, Lauren Bacall starred in this movie?
+Young man with a horn
+10
+
+TV/Film: 1950s: In 1950, Lucille Ball starred in this movie?
+A woman of distinction
+10
+
+TV/Film: 1950s: In 1950, Lucille Ball starred in this movie?
+Fancy pants
+10
+
+TV/Film: 1950s: In 1950, Lucille Ball starred in this movie?
+The fuller brush girl
+10
+
+TV/Film: 1950s: In 1950, Marilyn Monroe starred in this movie?
+All about eve
+10
+
+TV/Film: 1950s: In 1950, Marilyn Monroe starred in this movie?
+Right cross
+10
+
+TV/Film: 1950s: In 1950, Marilyn Monroe starred in this movie?
+The asphalt jungle
+10
+
+TV/Film: 1950s: In 1950, Marilyn Monroe starred in this movie?
+The fireball
+10
+
+TV/Film: 1950s: In 1950, Marlon Brando starred in this movie?
+The men
+10
+
+TV/Film: 1950s: In 1951, Angela Lansbury starred in this movie?
+Kind lady
+10
+
+TV/Film: 1950s: In 1951, Audrey Hepburn starred in this movie?
+Laughter in paradise
+10
+
+TV/Film: 1950s: In 1951, Audrey Hepburn starred in this movie?
+One wild oat
+10
+
+TV/Film: 1950s: In 1951, Audrey Hepburn starred in this movie?
+The lavender hill mob
+10
+
+TV/Film: 1950s: In 1951, Audrey Hepburn starred in this movie?
+Young wives' tale
+10
+
+TV/Film: 1950s: In 1951, Elizabeth Taylor starred in this movie?
+A place in the sun
+10
+
+TV/Film: 1950s: In 1951, Elizabeth Taylor starred in this movie?
+Callaway went thataway
+10
+
+TV/Film: 1950s: In 1951, Elizabeth Taylor starred in this movie?
+Father's little dividend
+10
+
+TV/Film: 1950s: In 1951, Elizabeth Taylor starred in this movie?
+Quo vadis
+10
+
+TV/Film: 1950s: In 1951, Gary Cooper starred in this movie?
+Distant drums
+10
+
+TV/Film: 1950s: In 1951, Gary Cooper starred in this movie?
+Starlift
+10
+
+TV/Film: 1950s: In 1951, Gary Cooper starred in this movie?
+You're in the navy now
+10
+
+TV/Film: 1950s: In 1951, Humphrey Bogart starred in this movie?
+The enforcer
+10
+
+TV/Film: 1950s: In 1951, Jeff Bridges starred in this movie?
+The company she keeps
+10
+
+TV/Film: 1950s: In 1951, Katharine Hepburn starred in this movie?
+The african queen
+10
+
+TV/Film: 1950s: In 1951, Marilyn Monroe starred in this movie?
+As young as you feel
+10
+
+TV/Film: 1950s: In 1951, Marilyn Monroe starred in this movie?
+Let's make it legal
+10
+
+TV/Film: 1950s: In 1951, Marilyn Monroe starred in this movie?
+Love nest
+10
+
+TV/Film: 1950s: In 1951, Marlon Brando starred in this movie?
+A streetcar named desire
+10
+
+TV/Film: 1950s: In 1952, Angela Lansbury starred in this movie?
+Mutiny
+10
+
+TV/Film: 1950s: In 1952, Audrey Hepburn starred in this movie?
+Monte carlo baby
+10
+
+TV/Film: 1950s: In 1952, Audrey Hepburn starred in this movie?
+The secret people
+10
+
+TV/Film: 1950s: In 1952, Charlie Chaplin starred in this movie?
+Limelight
+10
+
+TV/Film: 1950s: In 1952, Elizabeth Taylor starred in this movie?
+Love is better than ever
+10
+
+TV/Film: 1950s: In 1952, Gary Cooper starred in this movie?
+High noon
+10
+
+TV/Film: 1950s: In 1952, Gary Cooper starred in this movie?
+Springfield rifle
+10
+
+TV/Film: 1950s: In 1952, Humphrey Bogart starred in this movie?
+Road to bali
+10
+
+TV/Film: 1950s: In 1952, Humphrey Bogart starred in this movie?
+Sirocco
+10
+
+TV/Film: 1950s: In 1952, Ingrid Bergman starred in this movie?
+Europa 51
+10
+
+TV/Film: 1950s: In 1952, Katharine Hepburn starred in this movie?
+Pat and mike
+10
+
+TV/Film: 1950s: In 1952, Marilyn Monroe starred in this movie?
+Clash by night
+10
+
+TV/Film: 1950s: In 1952, Marilyn Monroe starred in this movie?
+Don't bother to knock
+10
+
+TV/Film: 1950s: In 1952, Marilyn Monroe starred in this movie?
+Monkey business
+10
+
+TV/Film: 1950s: In 1952, Marilyn Monroe starred in this movie?
+O. henry's full house
+10
+
+TV/Film: 1950s: In 1952, Marilyn Monroe starred in this movie?
+We're not married
+10
+
+TV/Film: 1950s: In 1953, Angela Lansbury starred in this movie?
+Remains to be seen
+10
+
+TV/Film: 1950s: In 1953, Audrey Hepburn starred in this movie?
+Roman holiday
+10
+
+TV/Film: 1950s: In 1953, Elizabeth Taylor starred in this movie?
+Ivanhoe
+10
+
+TV/Film: 1950s: In 1953, Elizabeth Taylor starred in this movie?
+The girl who had everything
+10
+
+TV/Film: 1950s: In 1953, Gary Cooper starred in this movie?
+Blowing wild
+10
+
+TV/Film: 1950s: In 1953, Gary Cooper starred in this movie?
+Return to paradise
+10
+
+TV/Film: 1950s: In 1953, Humphrey Bogart starred in this movie?
+Battle circus
+10
+
+TV/Film: 1950s: In 1953, Ingrid Bergman starred in this movie?
+Siamo donne
+10
+
+TV/Film: 1950s: In 1953, Ingrid Bergman starred in this movie?
+Viaggio in italia
+10
+
+TV/Film: 1950s: In 1953, Lauren Bacall starred in this movie?
+How to marry a millionaire
+10
+
+TV/Film: 1950s: In 1953, Marilyn Monroe starred in this movie?
+Gentlemen prefer blondes
+10
+
+TV/Film: 1950s: In 1953, Marilyn Monroe starred in this movie?
+How to marry a millionaire
+10
+
+TV/Film: 1950s: In 1953, Marilyn Monroe starred in this movie?
+Niagara
+10
+
+TV/Film: 1950s: In 1953, Marlon Brando starred in this movie?
+Julius caesar
+10
+
+TV/Film: 1950s: In 1954, Audrey Hepburn starred in this movie?
+Sabrina
+10
+
+TV/Film: 1950s: In 1954, Elizabeth Taylor starred in this movie?
+Beau brummell
+10
+
+TV/Film: 1950s: In 1954, Elizabeth Taylor starred in this movie?
+Elephant walk
+10
+
+TV/Film: 1950s: In 1954, Elizabeth Taylor starred in this movie?
+Rhapsody
+10
+
+TV/Film: 1950s: In 1954, Elizabeth Taylor starred in this movie?
+The last time i saw paris
+10
+
+TV/Film: 1950s: In 1954, Gary Cooper starred in this movie?
+Garden of evil
+10
+
+TV/Film: 1950s: In 1954, Gary Cooper starred in this movie?
+Vera cruz
+10
+
+TV/Film: 1950s: In 1954, Humphrey Bogart starred in this movie?
+Beat the devil
+10
+
+TV/Film: 1950s: In 1954, Humphrey Bogart starred in this movie?
+Sabrina
+10
+
+TV/Film: 1950s: In 1954, Humphrey Bogart starred in this movie?
+The barefoot contessa
+10
+
+TV/Film: 1950s: In 1954, Ingrid Bergman starred in this movie?
+Giovanna d'arco al rogo
+10
+
+TV/Film: 1950s: In 1954, Ingrid Bergman starred in this movie?
+La paura
+10
+
+TV/Film: 1950s: In 1954, Ingrid Bergman starred in this movie?
+The strangers
+10
+
+TV/Film: 1950s: In 1954, Lauren Bacall starred in this movie?
+A woman's world
+10
+
+TV/Film: 1950s: In 1954, Lauren Bacall starred in this movie?
+Woman's world
+10
+
+TV/Film: 1950s: In 1954, Marilyn Monroe starred in this movie?
+River of no return
+10
+
+TV/Film: 1950s: In 1954, Marilyn Monroe starred in this movie?
+There's no business like show business
+10
+
+TV/Film: 1950s: In 1954, Marlon Brando starred in this movie?
+On the waterfront
+10
+
+TV/Film: 1950s: In 1954, Marlon Brando starred in this movie?
+The wild one
+10
+
+TV/Film: 1950s: In 1955, Angela Lansbury starred in this movie?
+A lawless street
+10
+
+TV/Film: 1950s: In 1955, Angela Lansbury starred in this movie?
+Please murder me
+10
+
+TV/Film: 1950s: In 1955, Angela Lansbury starred in this movie?
+The purple mask
+10
+
+TV/Film: 1950s: In 1955, Gary Cooper starred in this movie?
+Court martial of billy mitchell
+10
+
+TV/Film: 1950s: In 1955, Humphrey Bogart starred in this movie?
+The desperate hours
+10
+
+TV/Film: 1950s: In 1955, Humphrey Bogart starred in this movie?
+The left hand of god
+10
+
+TV/Film: 1950s: In 1955, Humphrey Bogart starred in this movie?
+We're no angels
+10
+
+TV/Film: 1950s: In 1955, Ingrid Bergman starred in this movie?
+Fear
+10
+
+TV/Film: 1950s: In 1955, Katharine Hepburn starred in this movie?
+Summertime
+10
+
+TV/Film: 1950s: In 1955, Lauren Bacall starred in this movie?
+Blood alley
+10
+
+TV/Film: 1950s: In 1955, Lauren Bacall starred in this movie?
+The cobweb
+10
+
+TV/Film: 1950s: In 1955, Marilyn Monroe starred in this movie?
+The seven year itch
+10
+
+TV/Film: 1950s: In 1955, Marlon Brando starred in this movie?
+Guys and dolls
+10
+
+TV/Film: 1950s: In 1955, Shirley MacLaine starred in this movie?
+Artists and models
+10
+
+TV/Film: 1950s: In 1955, Shirley MacLaine starred in this movie?
+The trouble with harry
+10
+
+TV/Film: 1950s: In 1956, Angela Lansbury starred in this movie?
+The court jester
+10
+
+TV/Film: 1950s: In 1956, Audrey Hepburn starred in this movie?
+War and peace
+10
+
+TV/Film: 1950s: In 1956, Elizabeth Taylor starred in this movie?
+Giant
+10
+
+TV/Film: 1950s: In 1956, Elvis Presley starred in this movie?
+Love me tender
+10
+
+TV/Film: 1950s: In 1956, Gary Cooper starred in this movie?
+Friendly persuasion
+10
+
+TV/Film: 1950s: In 1956, Humphrey Bogart starred in this movie?
+The harder they fall
+10
+
+TV/Film: 1950s: In 1956, Ingrid Bergman starred in this movie?
+Anastasia
+10
+
+TV/Film: 1950s: In 1956, Ingrid Bergman starred in this movie?
+Elena et les hommes
+10
+
+TV/Film: 1950s: In 1956, Katharine Hepburn starred in this movie?
+The iron petticoat
+10
+
+TV/Film: 1950s: In 1956, Katharine Hepburn starred in this movie?
+The rainmaker
+10
+
+TV/Film: 1950s: In 1956, Lucille Ball starred in this movie?
+Forever darling
+10
+
+TV/Film: 1950s: In 1956, Marilyn Monroe starred in this movie?
+Bus stop
+10
+
+TV/Film: 1950s: In 1956, Marlon Brando starred in this movie?
+Teahouse of the august moon
+10
+
+TV/Film: 1950s: In 1956, Michael Caine starred in this movie?
+A hill in korea
+10
+
+TV/Film: 1950s: In 1956, Sean Connery starred in this movie?
+No road back
+10
+
+TV/Film: 1950s: In 1956, Shirley MacLaine starred in this movie?
+Around the world in 80 days
+10
+
+TV/Film: 1950s: In 1957, Audrey Hepburn starred in this movie?
+Funny face
+10
+
+TV/Film: 1950s: In 1957, Audrey Hepburn starred in this movie?
+Love in the afternoon
+10
+
+TV/Film: 1950s: In 1957, Charlie Chaplin starred in this movie?
+A king in New York
+10
+
+TV/Film: 1950s: In 1957, Elizabeth Taylor starred in this movie?
+Raintree county
+10
+
+TV/Film: 1950s: In 1957, Elvis Presley starred in this movie?
+Jailhouse rock
+10
+
+TV/Film: 1950s: In 1957, Elvis Presley starred in this movie?
+Loving you
+10
+
+TV/Film: 1950s: In 1957, Gary Cooper starred in this movie?
+Love in the afternoon
+10
+
+TV/Film: 1950s: In 1957, Ingrid Bergman starred in this movie?
+Paris does strange things
+10
+
+TV/Film: 1950s: In 1957, Lauren Bacall starred in this movie?
+Designing woman
+10
+
+TV/Film: 1950s: In 1957, Lauren Bacall starred in this movie?
+Written on the wind
+10
+
+TV/Film: 1950s: In 1957, Marilyn Monroe starred in this movie?
+The prince and the showgirl
+10
+
+TV/Film: 1950s: In 1957, Marlon Brando starred in this movie?
+Sayonara
+10
+
+TV/Film: 1950s: In 1957, Michael Caine starred in this movie?
+Panic in the parlour
+10
+
+TV/Film: 1950s: In 1957, Michael Caine starred in this movie?
+Steel bayonet
+10
+
+TV/Film: 1950s: In 1958, Angela Lansbury starred in this movie?
+The long hot summer
+10
+
+TV/Film: 1950s: In 1958, Angela Lansbury starred in this movie?
+The reluctant debutante
+10
+
+TV/Film: 1950s: In 1958, Charlie Chaplin starred in this movie?
+The chaplin revue
+10
+
+TV/Film: 1950s: In 1958, Elvis Presley starred in this movie?
+King creole
+10
+
+TV/Film: 1950s: In 1958, Gary Cooper starred in this movie?
+Man of the west
+10
+
+TV/Film: 1950s: In 1958, Gary Cooper starred in this movie?
+Ten north frederick
+10
+
+TV/Film: 1950s: In 1958, Ingrid Bergman starred in this movie?
+Indiscreet
+10
+
+TV/Film: 1950s: In 1958, Ingrid Bergman starred in this movie?
+The inn of the sixth happiness
+10
+
+TV/Film: 1950s: In 1958, Lauren Bacall starred in this movie?
+The gift of love
+10
+
+TV/Film: 1950s: In 1958, Marlon Brando starred in this movie?
+The young lions
+10
+
+TV/Film: 1950s: In 1958, Michael Caine starred in this movie?
+Blind spot
+10
+
+TV/Film: 1950s: In 1958, Michael Caine starred in this movie?
+Carve her name with pride
+10
+
+TV/Film: 1950s: In 1958, Michael Caine starred in this movie?
+How to murder a rich uncle
+10
+
+TV/Film: 1950s: In 1958, Michael Caine starred in this movie?
+The key
+10
+
+TV/Film: 1950s: In 1958, Sean Connery starred in this movie?
+Hell drivers
+10
+
+TV/Film: 1950s: In 1958, Shirley MacLaine starred in this movie?
+Hot spell
+10
+
+TV/Film: 1950s: In 1958, Shirley MacLaine starred in this movie?
+Some came running
+10
+
+TV/Film: 1950s: In 1958, Shirley MacLaine starred in this movie?
+The matchmaker
+10
+
+TV/Film: 1950s: In 1958, Shirley MacLaine starred in this movie?
+The sheepman
+10
+
+TV/Film: 1950s: In 1959, Angela Lansbury starred in this movie?
+Summer of the 17th doll
+10
+
+TV/Film: 1950s: In 1959, Audrey Hepburn starred in this movie?
+Green mansions
+10
+
+TV/Film: 1950s: In 1959, Audrey Hepburn starred in this movie?
+The nun's story
+10
+
+TV/Film: 1950s: In 1959, Gary Cooper starred in this movie?
+Alias jesse james
+10
+
+TV/Film: 1950s: In 1959, Gary Cooper starred in this movie?
+The hanging tree
+10
+
+TV/Film: 1950s: In 1959, Gary Cooper starred in this movie?
+The wreck of the mary deare
+10
+
+TV/Film: 1950s: In 1959, Gary Cooper starred in this movie?
+They came to cordura
+10
+
+TV/Film: 1950s: In 1959, Ingrid Bergman starred in this movie?
+The turn of the screw
+10
+
+TV/Film: 1950s: In 1959, Lauren Bacall starred in this movie?
+Flame over india
+10
+
+TV/Film: 1950s: In 1959, Marilyn Monroe starred in this movie?
+Some like it hot
+10
+
+TV/Film: 1950s: In 1959, Sean Connery starred in this movie?
+Darby o'gill and the little people
+10
+
+TV/Film: 1950s: In 1959, Sean Connery starred in this movie?
+Tarzan's greatest adventure
+10
+
+TV/Film: 1950s: In 1959, Shirley MacLaine starred in this movie?
+Ask any girl
+10
+
+TV/Film: 1950s: In 1959, Shirley MacLaine starred in this movie?
+Career
+10
+
+TV/Film: 1950s: In the ann sothern show, in what kind of place did ann work?
+Hotel
+10
+
+TV/Film: 1950s: In what 1954 film did we meet Ned Land,Professor Aronnax and his assistant Conseil?
+Twenty thousand Leagues Under the Sea
+10
+
+TV/Film: 1950s: Made in 1958, what was the first Carry On film?
+Carry On Sergeant
+10
+
+TV/Film: 1950s: What was the surname of film director Darryl F?
+Zanuck
+10
+
+TV/Film: 1950s: Which British actor was Simon Sparrow in the Doctor films?
+Dirk bogarde
+10
+
+TV/Film: 1950s: Which film catapulted James Dean to stardom?
+Rebel without a cause
+10
+
+TV/Film: 1950s: Which film told of Moses leading the Israelites to the Promised Land?
+The ten commandments
+10
+
+TV/Film: 1951 24th Academy Awards: Best Actress In A Leading Role Was won by Vivien Leigh For The Movie?
+A streetcar Named Desire
+10
+
+TV/Film: 1951 24th Academy Awards: Best Actress In A Supporting role was won by Kim Hunter For The Movie?
+A streetcar Named Desire
+10
+
+TV/Film: 1952 25th Academy Awards: Best Actress In A Leading Role Was won by Shirley Booth For The Movie?
+Come back, little Sheba
+10
+
+TV/Film: 1952 25th Academy Awards: Best Actress In A Supporting role was won by Gloria Grahame For The Movie?
+The bad And The Beautiful
+10
+
+TV/Film: 1953 26th Academy Awards: Best Actress In A Leading Role Was won by Audrey Hepburn For The Movie?
+Roman Holiday
+10
+
+TV/Film: 1953 26th Academy Awards: Best Actress In A Supporting role was won by Donna Reed For The Movie?
+From here to Eternity
+10
+
+TV/Film: 1953 Best Supporting Actress From Here to Eternity?
+Donna Reed 
+10
+
+TV/Film: 1953: won Best Picture, Director, and Supp Actor and Supp Actress?
+From here to eternity
+10
+
+TV/Film: 1954 27th Academy Awards: Best Actress In A Leading Role Was won by Grace Kelly For The Movie?
+The country girl
+10
+
+TV/Film: 1954 27th Academy Awards: Best Actress In A Supporting role was won by Eva Marie Saint For The Movie?
+On the Waterfront
+10
+
+TV/Film: 1954 Best Actress The Country Girl?
+Grace Kelly 
+10
+
+TV/Film: 1955 28th Academy Awards: Best Actress In A Leading Role Was won by Anna Magnani For The Movie?
+The rose Tattoo
+10
+
+TV/Film: 1955 28th Academy Awards: Best Actress In A Supporting role was won by Jo Van Fleet For The Movie?
+East of eden
+10
+
+TV/Film: 1956 29th Academy Awards: Best Actress In A Leading Role Was won by Ingrid Bergman For The Movie?
+Anastasia (1956)
+10
+
+TV/Film: 1956 29th Academy Awards: Best Actress In A Supporting role was won by Dorothy Malone For The Movie?
+Written on The Wind
+10
+
+TV/Film: 1957 30th Academy Awards: Best Actress In A Leading Role Was won by Joanne Woodward For The Movie?
+The three Faces Of Eve
+10
+
+TV/Film: 1957 30th Academy Awards: Best Actress In A Supporting role was won by Miyoshi Umeki For The Movie?
+Sayonara
+10
+
+TV/Film: 1958 31st Academy Awards: Best Actress In A Leading Role Was won by Susan Hayward For The Movie?
+I want to live!
+10
+
+TV/Film: 1958 31st Academy Awards: Best Actress In A Supporting role was won by Wendy Hiller For The Movie?
+Separate Tables
+10
+
+TV/Film: 1959 32nd Academy Awards: Best Actress In A Leading Role Was won by Simone Signoret For The Movie?
+Room at the Top
+10
+
+TV/Film: 1959 32nd Academy Awards: Best Actress In A Supporting role was won by Shelley Winters For The Movie?
+The diary Of Anne Frank
+10
+
+TV/Film: 1959 thriller has Cary Grant as an ad man mistaken for a secret agent?
+North by northwest
+10
+
+TV/Film: 1960 33rd Academy Awards: Best Actress In A Leading Role Was won by Elizabeth Taylor For The Movie?
+Butterfield 8
+10
+
+TV/Film: 1960 33rd Academy Awards: Best Actress In A Supporting role was won by Shirley Jones For The Movie?
+Elmer gantry
+10
+
+TV/Film: 1960s: Alan Reed and Jean Vander Pyle were the voices of which television husband and wife?
+Fred & wilma flintstone
+10
+
+TV/Film: 1960s: In 1960, Angela Lansbury starred in this movie?
+A breath of scandal
+10
+
+TV/Film: 1960s: In 1960, Angela Lansbury starred in this movie?
+The dark at the top of the stairs
+10
+
+TV/Film: 1960s: In 1960, Audrey Hepburn starred in this movie?
+The unforgiven
+10
+
+TV/Film: 1960s: In 1960, Elizabeth Taylor starred in this movie?
+Butterfield 8
+10
+
+TV/Film: 1960s: In 1960, Elizabeth Taylor starred in this movie?
+Scent of mystery
+10
+
+TV/Film: 1960s: In 1960, Elvis Presley starred in this movie?
+Flaming star
+10
+
+TV/Film: 1960s: In 1960, Elvis Presley starred in this movie?
+G.i. blues
+10
+
+TV/Film: 1960s: In 1960, Jane Fonda starred in this movie?
+Tall story
+10
+
+TV/Film: 1960s: In 1960, Judy Garland starred in this movie?
+Pepe
+10
+
+TV/Film: 1960s: In 1960, Lucille Ball starred in this movie?
+The facts of life
+10
+
+TV/Film: 1960s: In 1960, Marilyn Monroe starred in this movie?
+Let's make love
+10
+
+TV/Film: 1960s: In 1960, Marlon Brando starred in this movie?
+The fugitive kind
+10
+
+TV/Film: 1960s: In 1960, Michael Caine starred in this movie?
+Foxhole in cairo
+10
+
+TV/Film: 1960s: In 1960, Michael Caine starred in this movie?
+The bulldog breed
+10
+
+TV/Film: 1960s: In 1960, Shirley MacLaine starred in this movie?
+Ocean's eleven
+10
+
+TV/Film: 1960s: In 1960, Shirley MacLaine starred in this movie?
+The apartment
+10
+
+TV/Film: 1960s: In 1961, Angela Lansbury starred in this movie?
+Blue hawaii
+10
+
+TV/Film: 1960s: In 1961, Angela Lansbury starred in this movie?
+Season of passion
+10
+
+TV/Film: 1960s: In 1961, Audrey Hepburn starred in this movie?
+Breakfast at tiffany's
+10
+
+TV/Film: 1960s: In 1961, Elvis Presley starred in this movie?
+Blue hawaii
+10
+
+TV/Film: 1960s: In 1961, Elvis Presley starred in this movie?
+Wild in the country
+10
+
+TV/Film: 1960s: In 1961, Ingrid Bergman starred in this movie?
+Goodbye again
+10
+
+TV/Film: 1960s: In 1961, Judy Garland starred in this movie?
+Judgment at nuremberg
+10
+
+TV/Film: 1960s: In 1961, Marilyn Monroe starred in this movie?
+The misfits
+10
+
+TV/Film: 1960s: In 1961, Sean Connery starred in this movie?
+Operation snafu
+10
+
+TV/Film: 1960s: In 1961, Sean Connery starred in this movie?
+The frightened city
+10
+
+TV/Film: 1960s: In 1961, Shirley MacLaine starred in this movie?
+All in a night's work
+10
+
+TV/Film: 1960s: In 1961, Shirley MacLaine starred in this movie?
+Two loves
+10
+
+TV/Film: 1960s: In 1962, Angela Lansbury starred in this movie?
+All fall down
+10
+
+TV/Film: 1960s: In 1962, Angela Lansbury starred in this movie?
+The manchurian candidate
+10
+
+TV/Film: 1960s: In 1962, Elvis Presley starred in this movie?
+Follow that dream
+10
+
+TV/Film: 1960s: In 1962, Elvis Presley starred in this movie?
+Girls! girls! girls!
+10
+
+TV/Film: 1960s: In 1962, Elvis Presley starred in this movie?
+Kid galahad
+10
+
+TV/Film: 1960s: In 1962, Jane Fonda starred in this movie?
+Period of adjustment
+10
+
+TV/Film: 1960s: In 1962, Jane Fonda starred in this movie?
+The chapman report
+10
+
+TV/Film: 1960s: In 1962, Jane Fonda starred in this movie?
+Walk on the wild side
+10
+
+TV/Film: 1960s: In 1962, Katharine Hepburn starred in this movie?
+Long day's journey into night
+10
+
+TV/Film: 1960s: In 1962, Marlon Brando starred in this movie?
+Mutiny on the bounty
+10
+
+TV/Film: 1960s: In 1962, Michael Caine starred in this movie?
+Solo for sparrow
+10
+
+TV/Film: 1960s: In 1962, Michael Caine starred in this movie?
+The day the earth caught fire
+10
+
+TV/Film: 1960s: In 1962, Michael Caine starred in this movie?
+The wrong arm of the law
+10
+
+TV/Film: 1960s: In 1962, Shirley MacLaine starred in this movie?
+My geisha
+10
+
+TV/Film: 1960s: In 1962, Shirley MacLaine starred in this movie?
+Two for the seesaw
+10
+
+TV/Film: 1960s: In 1963, Angela Lansbury starred in this movie?
+In the cool of the day
+10
+
+TV/Film: 1960s: In 1963, Audrey Hepburn starred in this movie?
+Charade
+10
+
+TV/Film: 1960s: In 1963, Elizabeth Taylor starred in this movie?
+Cleopatra
+10
+
+TV/Film: 1960s: In 1963, Elizabeth Taylor starred in this movie?
+The v.i.p.'s
+10
+
+TV/Film: 1960s: In 1963, Elvis Presley starred in this movie?
+Fun in acapulco
+10
+
+TV/Film: 1960s: In 1963, Elvis Presley starred in this movie?
+It happened at the world's fair
+10
+
+TV/Film: 1960s: In 1963, Jane Fonda starred in this movie?
+In the cool of the day
+10
+
+TV/Film: 1960s: In 1963, Judy Garland starred in this movie?
+A child is waiting
+10
+
+TV/Film: 1960s: In 1963, Judy Garland starred in this movie?
+I could go on singing
+10
+
+TV/Film: 1960s: In 1963, kurt russell starred in this movie?
+It happened at the world's fair
+10
+
+TV/Film: 1960s: In 1963, Lucille Ball starred in this movie?
+Critic's choice
+10
+
+TV/Film: 1960s: In 1963, Marilyn Monroe starred in this movie?
+Marilyn
+10
+
+TV/Film: 1960s: In 1963, Marlon Brando starred in this movie?
+The ugly American
+10
+
+TV/Film: 1960s: In 1964, Angela Lansbury starred in this movie?
+The world of henry orient
+10
+
+TV/Film: 1960s: In 1964, Audrey Hepburn starred in this movie?
+My fair lady
+10
+
+TV/Film: 1960s: In 1964, Elvis Presley starred in this movie?
+Kissin' cousins
+10
+
+TV/Film: 1960s: In 1964, Elvis Presley starred in this movie?
+Roustabout
+10
+
+TV/Film: 1960s: In 1964, Elvis Presley starred in this movie?
+Viva las vegas
+10
+
+TV/Film: 1960s: In 1964, Gene Hackman starred in this movie?
+Lilith
+10
+
+TV/Film: 1960s: In 1964, Ingrid Bergman starred in this movie?
+The visit
+10
+
+TV/Film: 1960s: In 1964, Jane Fonda starred in this movie?
+Joy house
+10
+
+TV/Film: 1960s: In 1964, Jane Fonda starred in this movie?
+Sunday in New York
+10
+
+TV/Film: 1960s: In 1964, Julie Andrews starred in this movie?
+Mary poppins
+10
+
+TV/Film: 1960s: In 1964, Julie Andrews starred in this movie?
+The americanization of emily
+10
+
+TV/Film: 1960s: In 1964, Lauren Bacall starred in this movie?
+Shock treatment
+10
+
+TV/Film: 1960s: In 1964, Marlon Brando starred in this movie?
+Bedtime story
+10
+
+TV/Film: 1960s: In 1964, Michael Caine starred in this movie?
+Zulu
+10
+
+TV/Film: 1960s: In 1964, Raquel Welch starred in this movie?
+A house is not a home
+10
+
+TV/Film: 1960s: In 1964, Raquel Welch starred in this movie?
+Roustabout
+10
+
+TV/Film: 1960s: In 1964, Sean Connery starred in this movie?
+From Russia with love
+10
+
+TV/Film: 1960s: In 1964, Sean Connery starred in this movie?
+Goldfinger
+10
+
+TV/Film: 1960s: In 1964, Sean Connery starred in this movie?
+Marnie
+10
+
+TV/Film: 1960s: In 1964, Sean Connery starred in this movie?
+Woman of straw
+10
+
+TV/Film: 1960s: In 1965, Angela Lansbury starred in this movie?
+Dear heart
+10
+
+TV/Film: 1960s: In 1965, Angela Lansbury starred in this movie?
+Harlow
+10
+
+TV/Film: 1960s: In 1965, Angela Lansbury starred in this movie?
+The amorous adventures of moll flanders
+10
+
+TV/Film: 1960s: In 1965, Angela Lansbury starred in this movie?
+The greatest story ever told
+10
+
+TV/Film: 1960s: In 1965, Elizabeth Taylor starred in this movie?
+The sandpiper
+10
+
+TV/Film: 1960s: In 1965, Elvis Presley starred in this movie?
+Girl happy
+10
+
+TV/Film: 1960s: In 1965, Elvis Presley starred in this movie?
+Harum scarum
+10
+
+TV/Film: 1960s: In 1965, Elvis Presley starred in this movie?
+Tickle me
+10
+
+TV/Film: 1960s: In 1965, Jane Fonda starred in this movie?
+Cat ballou
+10
+
+TV/Film: 1960s: In 1965, Julie Andrews starred in this movie?
+The sound of music
+10
+
+TV/Film: 1960s: In 1965, Lauren Bacall starred in this movie?
+Sex and the single girl
+10
+
+TV/Film: 1960s: In 1965, Michael Caine starred in this movie?
+The ipcress file
+10
+
+TV/Film: 1960s: In 1965, Raquel Welch starred in this movie?
+A swingin' summer
+10
+
+TV/Film: 1960s: In 1965, Sean Connery starred in this movie?
+The hill
+10
+
+TV/Film: 1960s: In 1965, Sean Connery starred in this movie?
+Thunderball
+10
+
+TV/Film: 1960s: In 1966, Angela Lansbury starred in this movie?
+Mr. buddwing
+10
+
+TV/Film: 1960s: In 1966, Audrey Hepburn starred in this movie?
+How to steal a million
+10
+
+TV/Film: 1960s: In 1966, Elizabeth Taylor starred in this movie?
+Who's afraid of virginia woolf?
+10
+
+TV/Film: 1960s: In 1966, Elvis Presley starred in this movie?
+Spinout
+10
+
+TV/Film: 1960s: In 1966, Gene Hackman starred in this movie?
+Hawaii
+10
+
+TV/Film: 1960s: In 1966, Jane Fonda starred in this movie?
+Any wednesday
+10
+
+TV/Film: 1960s: In 1966, Jane Fonda starred in this movie?
+La curee/the game is over
+10
+
+TV/Film: 1960s: In 1966, Jane Fonda starred in this movie?
+The chase
+10
+
+TV/Film: 1960s: In 1966, Julie Andrews starred in this movie?
+Hawaii
+10
+
+TV/Film: 1960s: In 1966, Julie Andrews starred in this movie?
+Torn curtain
+10
+
+TV/Film: 1960s: In 1966, Lauren Bacall starred in this movie?
+Harper
+10
+
+TV/Film: 1960s: In 1966, Marlon Brando starred in this movie?
+The appaloosa
+10
+
+TV/Film: 1960s: In 1966, Marlon Brando starred in this movie?
+The chase
+10
+
+TV/Film: 1960s: In 1966, Michael Caine starred in this movie?
+Alfie
+10
+
+TV/Film: 1960s: In 1966, Michael Caine starred in this movie?
+Gambit
+10
+
+TV/Film: 1960s: In 1966, Michael Caine starred in this movie?
+The wrong box
+10
+
+TV/Film: 1960s: In 1966, Raquel Welch starred in this movie?
+Fantastic voyage
+10
+
+TV/Film: 1960s: In 1966, Raquel Welch starred in this movie?
+One Million Years B.C.
+10
+
+TV/Film: 1960s: In 1966, Sean Connery starred in this movie?
+A fine madness
+10
+
+TV/Film: 1960s: In 1966, Shirley MacLaine starred in this movie?
+Gambit
+10
+
+TV/Film: 1960s: In 1967, Anthony Hopkins starred in this movie?
+The white bus
+10
+
+TV/Film: 1960s: In 1967, Audrey Hepburn starred in this movie?
+Two for the road
+10
+
+TV/Film: 1960s: In 1967, Audrey Hepburn starred in this movie?
+Wait until dark
+10
+
+TV/Film: 1960s: In 1967, Dustin Hoffman starred in this movie?
+The graduate
+10
+
+TV/Film: 1960s: In 1967, Dustin Hoffman starred in this movie?
+The tiger makes out
+10
+
+TV/Film: 1960s: In 1967, Elizabeth Taylor starred in this movie?
+Doctor faustus
+10
+
+TV/Film: 1960s: In 1967, Elizabeth Taylor starred in this movie?
+Reflections in a golden eye
+10
+
+TV/Film: 1960s: In 1967, Elizabeth Taylor starred in this movie?
+The comedians
+10
+
+TV/Film: 1960s: In 1967, Elizabeth Taylor starred in this movie?
+The taming of the shrew
+10
+
+TV/Film: 1960s: In 1967, Elvis Presley starred in this movie?
+Double trouble
+10
+
+TV/Film: 1960s: In 1967, Gene Hackman starred in this movie?
+A covenant with death
+10
+
+TV/Film: 1960s: In 1967, Gene Hackman starred in this movie?
+Banning
+10
+
+TV/Film: 1960s: In 1967, Gene Hackman starred in this movie?
+Bonnie and clyde
+10
+
+TV/Film: 1960s: In 1967, Gene Hackman starred in this movie?
+First to fight
+10
+
+TV/Film: 1960s: In 1967, Harrison Ford starred in this movie?
+A time for killing
+10
+
+TV/Film: 1960s: In 1967, Ingrid Bergman starred in this movie?
+Fugitive in vienna
+10
+
+TV/Film: 1960s: In 1967, Ingrid Bergman starred in this movie?
+Stimulantia
+10
+
+TV/Film: 1960s: In 1967, Jane Fonda starred in this movie?
+Barefoot in the park
+10
+
+TV/Film: 1960s: In 1967, Julie Andrews starred in this movie?
+Thoroughly modern millie
+10
+
+TV/Film: 1960s: In 1967, Katharine Hepburn starred in this movie?
+Guess who's coming to dinner?
+10
+
+TV/Film: 1960s: In 1967, Marlon Brando starred in this movie?
+A countess from hong kong
+10
+
+TV/Film: 1960s: In 1967, Marlon Brando starred in this movie?
+Reflections in a golden eye
+10
+
+TV/Film: 1960s: In 1967, Michael Caine starred in this movie?
+Billion dollar brain
+10
+
+TV/Film: 1960s: In 1967, Michael Caine starred in this movie?
+Woman times seven
+10
+
+TV/Film: 1960s: In 1967, Raquel Welch starred in this movie?
+Fathom
+10
+
+TV/Film: 1960s: In 1967, Raquel Welch starred in this movie?
+The oldest profession
+10
+
+TV/Film: 1960s: In 1967, Sally Field starred in this movie?
+The way west
+10
+
+TV/Film: 1960s: In 1967, Sean Connery starred in this movie?
+You only live twice
+10
+
+TV/Film: 1960s: In 1967, Shirley MacLaine starred in this movie?
+Woman times seven
+10
+
+TV/Film: 1960s: In 1967, Woody Allen starred in this movie?
+Casino royale
+10
+
+TV/Film: 1960s: In 1968, Anthony Hopkins starred in this movie?
+The lion in winter
+10
+
+TV/Film: 1960s: In 1968, Dustin Hoffman starred in this movie?
+Madigan's million
+10
+
+TV/Film: 1960s: In 1968, Elizabeth Taylor starred in this movie?
+Boom!
+10
+
+TV/Film: 1960s: In 1968, Elizabeth Taylor starred in this movie?
+Secret ceremony
+10
+
+TV/Film: 1960s: In 1968, Gene Hackman starred in this movie?
+Shadow on the land
+10
+
+TV/Film: 1960s: In 1968, Gene Hackman starred in this movie?
+The split
+10
+
+TV/Film: 1960s: In 1968, Harrison Ford starred in this movie?
+Journey to shiloh
+10
+
+TV/Film: 1960s: In 1968, Julie Andrews starred in this movie?
+Star!
+10
+
+TV/Film: 1960s: In 1968, Katharine Hepburn starred in this movie?
+The lion in winter
+10
+
+TV/Film: 1960s: In 1968, kurt russell starred in this movie?
+The horse in the gray flannel suit
+10
+
+TV/Film: 1960s: In 1968, Marlon Brando starred in this movie?
+Candy
+10
+
+TV/Film: 1960s: In 1968, Michael Caine starred in this movie?
+Deadfall
+10
+
+TV/Film: 1960s: In 1968, Michael Caine starred in this movie?
+The magus
+10
+
+TV/Film: 1960s: In 1968, Raquel Welch starred in this movie?
+Bandolero!
+10
+
+TV/Film: 1960s: In 1968, Raquel Welch starred in this movie?
+Lady in cement
+10
+
+TV/Film: 1960s: In 1968, Robert De Niro starred in this movie?
+Greetings
+10
+
+TV/Film: 1960s: In 1968, Sean Connery starred in this movie?
+Shalako
+10
+
+TV/Film: 1960s: In 1968, Shirley MacLaine starred in this movie?
+The bliss of mrs. blossom
+10
+
+TV/Film: 1960s: In 1969, Anthony Hopkins starred in this movie?
+Hamlet
+10
+
+TV/Film: 1960s: In 1969, Dustin Hoffman starred in this movie?
+John and mary
+10
+
+TV/Film: 1960s: In 1969, Dustin Hoffman starred in this movie?
+Midnight cowboy
+10
+
+TV/Film: 1960s: In 1969, Elvis Presley starred in this movie?
+Charro!
+10
+
+TV/Film: 1960s: In 1969, Gene Hackman starred in this movie?
+Downhill racer
+10
+
+TV/Film: 1960s: In 1969, Gene Hackman starred in this movie?
+Marooned
+10
+
+TV/Film: 1960s: In 1969, Gene Hackman starred in this movie?
+Riot
+10
+
+TV/Film: 1960s: In 1969, Gene Hackman starred in this movie?
+The gypsy moths
+10
+
+TV/Film: 1960s: In 1969, Goldie Hawn starred in this movie?
+Cactus flower
+10
+
+TV/Film: 1960s: In 1969, Ingrid Bergman starred in this movie?
+Cactus flower
+10
+
+TV/Film: 1960s: In 1969, Katharine Hepburn starred in this movie?
+The madwoman of chaillot
+10
+
+TV/Film: 1960s: In 1969, kurt russell starred in this movie?
+Spy busters
+10
+
+TV/Film: 1960s: In 1969, Marlon Brando starred in this movie?
+Queimada/burn!
+10
+
+TV/Film: 1960s: In 1969, Marlon Brando starred in this movie?
+The night of the following day
+10
+
+TV/Film: 1960s: In 1969, Michael Caine starred in this movie?
+Battle of britain
+10
+
+TV/Film: 1960s: In 1969, Michael Caine starred in this movie?
+Play dirty
+10
+
+TV/Film: 1960s: In 1969, Michael Caine starred in this movie?
+The battle of britain
+10
+
+TV/Film: 1960s: In 1969, Michael Caine starred in this movie?
+The italian job
+10
+
+TV/Film: 1960s: In 1969, Michael Douglas starred in this movie?
+Hail hero!
+10
+
+TV/Film: 1960s: In 1969, Michael Douglas starred in this movie?
+Where's jack?
+10
+
+TV/Film: 1960s: In 1969, Raquel Welch starred in this movie?
+Flareup
+10
+
+TV/Film: 1960s: In 1969, Raquel Welch starred in this movie?
+The magic christian
+10
+
+TV/Film: 1960s: In 1969, Robert De Niro starred in this movie?
+The wedding party
+10
+
+TV/Film: 1960s: In 1969, Sean Connery starred in this movie?
+The molly maguires
+10
+
+TV/Film: 1960s: In 1969, Shirley MacLaine starred in this movie?
+Sweet charity
+10
+
+TV/Film: 1960s: In 1969, Woody Allen starred in this movie?
+Take the money and run
+10
+
+TV/Film: 1960s: lester gruber, elroy carpenter were on what show?
+Mchale's navy
+10
+
+TV/Film: 1960s: Only actress to win two Oscars in this decade?
+Katharine hepburn
+10
+
+TV/Film: 1960s: Series followed the exploits of Kelly Robinson and Alexander Scott?
+I spy
+10
+
+TV/Film: 1960s: What 1963 joseph l mankiewicz film cost 28 million dollars?
+Cleopatra
+10
+
+TV/Film: 1960s: What 1965-1969 tv series took place on the 30,000 acre barkley ranch?
+Big valley
+10
+
+TV/Film: 1960s: what marine had a cousin named goober?
+Gomer pyle
+10
+
+TV/Film: 1960s: what series followed the exploits of a dead sea captain?
+Ghost & mrs muir
+10
+
+TV/Film: 1960s: what series was set in cocoa beach and cape kennedy, florida?
+I dream of jeannie
+10
+
+TV/Film: 1960s: who lived at 000 cemetery lane?
+Addams family
+10
+
+TV/Film: 1961 34th Academy Awards: Best Actress In A Leading Role Was won by Sophia Loren For The Movie?
+Two women
+10
+
+TV/Film: 1961 34th Academy Awards: Best Actress In A Supporting role was won by Rita Moreno For The Movie?
+West side Story
+10
+
+TV/Film: 1962 35th Academy Awards: Best Actress In A Leading Role Was won by Anne Bancroft For The Movie?
+The miracle Worker
+10
+
+TV/Film: 1962 35th Academy Awards: Best Actress In A Supporting role was won by Patty Duke For The Movie?
+The miracle Worker
+10
+
+TV/Film: 1963 36th Academy Awards: Best Actress In A Leading Role Was won by Patricia Neal For The Movie?
+Hud
+10
+
+TV/Film: 1963 36th Academy Awards: Best Actress In A Supporting role was won by Margaret Rutherford For The Movie?
+The V.I.P.S
+10
+
+TV/Film: 1963, which western starring (oh no!) John Wayne was loosely based on The taming of the shrew?
+Mclintock!
+10
+
+TV/Film: 1964 37th Academy Awards: Best Actress In A Leading Role Was won by Julie Andrews For The Movie?
+Mary poppins
+10
+
+TV/Film: 1964 37th Academy Awards: Best Actress In A Supporting role was won by Lila Kedrova For The Movie?
+Zorba the Greek
+10
+
+TV/Film: 1965 38th Academy Awards: Best Actress In A Leading Role Was won by Julie Christie For The Movie?
+Darling
+10
+
+TV/Film: 1965 38th Academy Awards: Best Actress In A Supporting role was won by Shelley Winters For The Movie?
+A patch of Blue
+10
+
+TV/Film: 1966 39th Academy Awards: Best Actress In A Leading Role Was won by Elizabeth Taylor For The Movie?
+Who's afraid Of Virginia Woolf?
+10
+
+TV/Film: 1966 39th Academy Awards: Best Actress In A Supporting role was won by Sandy Dennis For The Movie?
+Who's afraid Of Virginia Woolf?
+10
+
+TV/Film: 1966 sci-fi film starring Peter Cushing?
+Daleks:Invasion Earth 2150
+10
+
+TV/Film: 1966, who starred in the film Daleks:Invasion Earth 2150?
+Peter Cushing
+10
+
+TV/Film: 1967 40th Academy Awards: Best Actress In A Leading Role Was won by Katharine Hepburn For The Movie?
+Guess Who's Coming To Dinner
+10
+
+TV/Film: 1967 40th Academy Awards: Best Actress In A Supporting role was won by Estelle Parsons For The Movie?
+Bonnie and Clyde
+10
+
+TV/Film: 1968 41st Academy Awards: Best Actress In A Leading Role Was won by Barbra Streisand For The Movie?
+Funny girl
+10
+
+TV/Film: 1968 41st Academy Awards: Best Actress In A Leading Role Was won by Katharine Hepburn For The Movie?
+The lion in Winter
+10
+
+TV/Film: 1968 41st Academy Awards: Best Actress In A Supporting role was won by Ruth Gordon For The Movie?
+Rosemary's Baby
+10
+
+TV/Film: 1969 42nd Academy Awards: Best Actress In A Leading Role Was won by Maggie Smith For The Movie?
+The prime of Miss Jean Brodie
+10
+
+TV/Film: 1969 42nd Academy Awards: Best Actress In A Supporting role was won by Goldie Hawn For The Movie?
+Cactus flower
+10
+
+TV/Film: 1970 43rd Academy Awards: Best Actress In A Leading Role Was won by Glenda Jackson For The Movie?
+Women in Love
+10
+
+TV/Film: 1970 43rd Academy Awards: Best Actress In A Supporting role was won by Helen Hayes For The Movie?
+Airport
+10
+
+TV/Film: 1970, disaster film based on anovel by Arthur Hailey and starring Burt Lancaster?
+Airport
+10
+
+TV/Film: 1970s: At Fawlty Towers (1975) in Torquay, Manuel was Basil Fawlty's incompetent waiter. But where did he come from in Spain?
+Barcelona
+10
+
+TV/Film: 1970s: In 1970, Angela Lansbury starred in this movie?
+Something for everyone
+10
+
+TV/Film: 1970s: In 1970, Anthony Hopkins starred in this movie?
+The looking glass war
+10
+
+TV/Film: 1970s: In 1970, Arnold Schwarzenegger starred in this movie?
+Hercules in New York
+10
+
+TV/Film: 1970s: In 1970, Barbra Streisand starred in this movie?
+On a clear day you can see forever
+10
+
+TV/Film: 1970s: In 1970, Barbra Streisand starred in this movie?
+The owl and the pussycat
+10
+
+TV/Film: 1970s: In 1970, Dustin Hoffman starred in this movie?
+Little big man
+10
+
+TV/Film: 1970s: In 1970, Gene Hackman starred in this movie?
+I never sang for my father
+10
+
+TV/Film: 1970s: In 1970, Goldie Hawn starred in this movie?
+There's a girl in my soup
+10
+
+TV/Film: 1970s: In 1970, Harrison Ford starred in this movie?
+Getting straight
+10
+
+TV/Film: 1970s: In 1970, Harrison Ford starred in this movie?
+The intruders
+10
+
+TV/Film: 1970s: In 1970, Harrison Ford starred in this movie?
+Zabriskie point
+10
+
+TV/Film: 1970s: In 1970, Ingrid Bergman starred in this movie?
+A walk in the spring rain
+10
+
+TV/Film: 1970s: In 1970, Ingrid Bergman starred in this movie?
+Walk in the spring rain
+10
+
+TV/Film: 1970s: In 1970, Jeff Bridges starred in this movie?
+Halls of anger
+10
+
+TV/Film: 1970s: In 1970, Jeff Bridges starred in this movie?
+The yin and yang of mr. go
+10
+
+TV/Film: 1970s: In 1970, Julie Andrews starred in this movie?
+Darling lili
+10
+
+TV/Film: 1970s: In 1970, kurt russell starred in this movie?
+The computer wore tennis shoes
+10
+
+TV/Film: 1970s: In 1970, Marlon Brando starred in this movie?
+Burn!
+10
+
+TV/Film: 1970s: In 1970, Michael Caine starred in this movie?
+Too late the hero
+10
+
+TV/Film: 1970s: In 1970, Michael Douglas starred in this movie?
+Adam at 6 A.M.
+10
+
+TV/Film: 1970s: In 1970, Raquel Welch starred in this movie?
+Myra breckinridge
+10
+
+TV/Film: 1970s: In 1970, Raquel Welch starred in this movie?
+The beloved/sin
+10
+
+TV/Film: 1970s: In 1970, Robert De Niro starred in this movie?
+Bloody mama
+10
+
+TV/Film: 1970s: In 1970, Robert De Niro starred in this movie?
+Hi mom!
+10
+
+TV/Film: 1970s: In 1970, Shirley MacLaine starred in this movie?
+Two mules for sister sara
+10
+
+TV/Film: 1970s: In 1970, Susan Sarandon starred in this movie?
+Joe
+10
+
+TV/Film: 1970s: In 1970, Tommy Lee Jones starred in this movie?
+Love story
+10
+
+TV/Film: 1970s: In 1971, Angela Lansbury starred in this movie?
+Bedknobs and broomsticks
+10
+
+TV/Film: 1970s: In 1971, Anthony Hopkins starred in this movie?
+When eight bells toll
+10
+
+TV/Film: 1970s: In 1971, Gene Hackman starred in this movie?
+Doctors' wives
+10
+
+TV/Film: 1970s: In 1971, Gene Hackman starred in this movie?
+The french connection
+10
+
+TV/Film: 1970s: In 1971, Gene Hackman starred in this movie?
+The hunting party
+10
+
+TV/Film: 1970s: In 1971, Goldie Hawn starred in this movie?
+$ (dollars)
+10
+
+TV/Film: 1970s: In 1971, Jane Fonda starred in this movie?
+Klute
+10
+
+TV/Film: 1970s: In 1971, Jeff Bridges starred in this movie?
+In search of America
+10
+
+TV/Film: 1970s: In 1971, Jeff Bridges starred in this movie?
+The last picture show
+10
+
+TV/Film: 1970s: In 1971, Katharine Hepburn starred in this movie?
+The trojan women
+10
+
+TV/Film: 1970s: In 1971, kurt russell starred in this movie?
+The barefoot executive
+10
+
+TV/Film: 1970s: In 1971, Marlon Brando starred in this movie?
+The nightcomers
+10
+
+TV/Film: 1970s: In 1971, Michael Caine starred in this movie?
+Get carter
+10
+
+TV/Film: 1970s: In 1971, Michael Caine starred in this movie?
+Kidnapped
+10
+
+TV/Film: 1970s: In 1971, Michael Caine starred in this movie?
+The last valley
+10
+
+TV/Film: 1970s: In 1971, Michael Douglas starred in this movie?
+Summertree
+10
+
+TV/Film: 1970s: In 1971, Michael Douglas starred in this movie?
+When michael calls
+10
+
+TV/Film: 1970s: In 1971, Raquel Welch starred in this movie?
+Restless
+10
+
+TV/Film: 1970s: In 1971, Robert De Niro starred in this movie?
+Jennifer on my mind
+10
+
+TV/Film: 1970s: In 1971, Robert De Niro starred in this movie?
+Sam's song
+10
+
+TV/Film: 1970s: In 1971, Sally Field starred in this movie?
+Hitched
+10
+
+TV/Film: 1970s: In 1971, Sally Field starred in this movie?
+Marriage: year one
+10
+
+TV/Film: 1970s: In 1971, Sally Field starred in this movie?
+Maybe i'll come home in the spring
+10
+
+TV/Film: 1970s: In 1971, Sally Field starred in this movie?
+Mongo's back in town
+10
+
+TV/Film: 1970s: In 1971, Sean Connery starred in this movie?
+Diamonds are forever
+10
+
+TV/Film: 1970s: In 1971, Sean Connery starred in this movie?
+The anderson tapes
+10
+
+TV/Film: 1970s: In 1971, Sean Connery starred in this movie?
+The red tent
+10
+
+TV/Film: 1970s: In 1971, Shirley MacLaine starred in this movie?
+Desperate characters
+10
+
+TV/Film: 1970s: In 1971, Sylvester Stallone starred in this movie?
+Bananas
+10
+
+TV/Film: 1970s: In 1971, Sylvester Stallone starred in this movie?
+Klute
+10
+
+TV/Film: 1970s: In 1972, Anthony Hopkins starred in this movie?
+Young winston
+10
+
+TV/Film: 1970s: In 1972, Barbra Streisand starred in this movie?
+Up the sandbox
+10
+
+TV/Film: 1970s: In 1972, Barbra Streisand starred in this movie?
+What's up doc?
+10
+
+TV/Film: 1970s: In 1972, Dustin Hoffman starred in this movie?
+Straw dogs
+10
+
+TV/Film: 1970s: In 1972, Elizabeth Taylor starred in this movie?
+Hammersmith is out
+10
+
+TV/Film: 1970s: In 1972, Gene Hackman starred in this movie?
+Cisco pike
+10
+
+TV/Film: 1970s: In 1972, Gene Hackman starred in this movie?
+Prime cut
+10
+
+TV/Film: 1970s: In 1972, Gene Hackman starred in this movie?
+The poseidon adventure
+10
+
+TV/Film: 1970s: In 1972, Goldie Hawn starred in this movie?
+Butterflies are free
+10
+
+TV/Film: 1970s: In 1972, James Wood starred in this movie?
+A great American tragedy
+10
+
+TV/Film: 1970s: In 1972, James Woods starred in this movie?
+Hickey and boggs
+10
+
+TV/Film: 1970s: In 1972, James Woods starred in this movie?
+The visitors
+10
+
+TV/Film: 1970s: In 1972, Jane Fonda starred in this movie?
+Tout va bien
+10
+
+TV/Film: 1970s: In 1972, Jeff Bridges starred in this movie?
+Bad company
+10
+
+TV/Film: 1970s: In 1972, Jeff Bridges starred in this movie?
+Fat city
+10
+
+TV/Film: 1970s: In 1972, Jodie Foster starred in this movie?
+Kansas city bomber
+10
+
+TV/Film: 1970s: In 1972, Jodie Foster starred in this movie?
+Napoleon and samantha
+10
+
+TV/Film: 1970s: In 1972, Marlon Brando starred in this movie?
+Last tango in paris
+10
+
+TV/Film: 1970s: In 1972, Marlon Brando starred in this movie?
+The godfather
+10
+
+TV/Film: 1970s: In 1972, Michael Caine starred in this movie?
+Sleuth
+10
+
+TV/Film: 1970s: In 1972, Michael Douglas starred in this movie?
+Napoleon and samantha
+10
+
+TV/Film: 1970s: In 1972, Michael Douglas starred in this movie?
+The streets of san francisco
+10
+
+TV/Film: 1970s: In 1972, Raquel Welch starred in this movie?
+Bluebeard
+10
+
+TV/Film: 1970s: In 1972, Raquel Welch starred in this movie?
+Hannie caulder
+10
+
+TV/Film: 1970s: In 1972, Raquel Welch starred in this movie?
+Kansas city bomber
+10
+
+TV/Film: 1970s: In 1972, Sally Field starred in this movie?
+Home for the holidays
+10
+
+TV/Film: 1970s: In 1972, Shirley MacLaine starred in this movie?
+The possession of joel delaney
+10
+
+TV/Film: 1970s: In 1973, Anthony Hopkins starred in this movie?
+A doll's house
+10
+
+TV/Film: 1970s: In 1973, Arnold Schwarzenegger starred in this movie?
+The long goodbye
+10
+
+TV/Film: 1970s: In 1973, Barbra Streisand starred in this movie?
+The way we were
+10
+
+TV/Film: 1970s: In 1973, Elizabeth Taylor starred in this movie?
+Ash wednesday
+10
+
+TV/Film: 1970s: In 1973, Elizabeth Taylor starred in this movie?
+Night watch
+10
+
+TV/Film: 1970s: In 1973, Elizabeth Taylor starred in this movie?
+Under milk wood
+10
+
+TV/Film: 1970s: In 1973, Harrison Ford starred in this movie?
+American graffiti
+10
+
+TV/Film: 1970s: In 1973, James Woods starred in this movie?
+The way we were
+10
+
+TV/Film: 1970s: In 1973, Jane Fonda starred in this movie?
+A doll's house
+10
+
+TV/Film: 1970s: In 1973, Jane Fonda starred in this movie?
+Steelyard blues
+10
+
+TV/Film: 1970s: In 1973, Jeff Bridges starred in this movie?
+The iceman cometh
+10
+
+TV/Film: 1970s: In 1973, Jodie Foster starred in this movie?
+One little indian
+10
+
+TV/Film: 1970s: In 1973, Katharine Hepburn starred in this movie?
+A delicate balance
+10
+
+TV/Film: 1970s: In 1973, Katharine Hepburn starred in this movie?
+The glass menagerie
+10
+
+TV/Film: 1970s: In 1973, kurt russell starred in this movie?
+Charley and the angel
+10
+
+TV/Film: 1970s: In 1973, Melanie Griffith starred in this movie?
+The harrad experiment
+10
+
+TV/Film: 1970s: In 1973, Raquel Welch starred in this movie?
+The last of sheila
+10
+
+TV/Film: 1970s: In 1973, Robert De Niro starred in this movie?
+Mean streets
+10
+
+TV/Film: 1970s: In 1973, Sean Connery starred in this movie?
+The offense
+10
+
+TV/Film: 1970s: In 1973, Sylvester Stallone starred in this movie?
+Rebel
+10
+
+TV/Film: 1970s: In 1973, Tommy Lee Jones starred in this movie?
+Life study
+10
+
+TV/Film: 1970s: In 1973, Woody Allen starred in this movie?
+Sleeper
+10
+
+TV/Film: 1970s: In 1974, Angela Lansbury starred in this movie?
+The three musketeers
+10
+
+TV/Film: 1970s: In 1974, Anthony Hopkins starred in this movie?
+All creatures great and small
+10
+
+TV/Film: 1970s: In 1974, Anthony Hopkins starred in this movie?
+Juggernaut
+10
+
+TV/Film: 1970s: In 1974, Anthony Hopkins starred in this movie?
+The girl from petrovka
+10
+
+TV/Film: 1970s: In 1974, Barbra Streisand starred in this movie?
+For pete's sae
+10
+
+TV/Film: 1970s: In 1974, Barbra Streisand starred in this movie?
+For Pete's Sake
+10
+
+TV/Film: 1970s: In 1974, Dan Akroyd starred in this movie?
+The gift of winter
+10
+
+TV/Film: 1970s: In 1974, Dustin Hoffman starred in this movie?
+Lenny
+10
+
+TV/Film: 1970s: In 1974, Gene Hackman starred in this movie?
+The conversation
+10
+
+TV/Film: 1970s: In 1974, Gene Hackman starred in this movie?
+Young frankenstein
+10
+
+TV/Film: 1970s: In 1974, Gene Hackman starred in this movie?
+Zandy's bride
+10
+
+TV/Film: 1970s: In 1974, Goldie Hawn starred in this movie?
+The girl from petrovka
+10
+
+TV/Film: 1970s: In 1974, goldie hawn starred in this movie?
+The sugarland express
+10
+
+TV/Film: 1970s: In 1974, Harrison Ford starred in this movie?
+The conversation
+10
+
+TV/Film: 1970s: In 1974, Ingrid Bergman starred in this movie?
+Murder on the orient express
+10
+
+TV/Film: 1970s: In 1974, James Woods starred in this movie?
+The gambler
+10
+
+TV/Film: 1970s: In 1974, Jeff Bridges starred in this movie?
+Thunderbolt and lightfoot
+10
+
+TV/Film: 1970s: In 1974, Jodie Foster starred in this movie?
+Alice doesn't live here anymore
+10
+
+TV/Film: 1970s: In 1974, Julie Andrews starred in this movie?
+The tamarind seed
+10
+
+TV/Film: 1970s: In 1974, kurt russell starred in this movie?
+Superdad
+10
+
+TV/Film: 1970s: In 1974, Lauren Bacall starred in this movie?
+Murder on the orient express
+10
+
+TV/Film: 1970s: In 1974, Lucille Ball starred in this movie?
+Mame
+10
+
+TV/Film: 1970s: In 1974, Michael Caine starred in this movie?
+The black windmill
+10
+
+TV/Film: 1970s: In 1974, Michael Caine starred in this movie?
+The destructors
+10
+
+TV/Film: 1970s: In 1974, Raquel Welch starred in this movie?
+The three musketeers
+10
+
+TV/Film: 1970s: In 1974, Raquel Welch starred in this movie?
+The wild party
+10
+
+TV/Film: 1970s: In 1974, Sean Connery starred in this movie?
+Murder on the orient express
+10
+
+TV/Film: 1970s: In 1974, Sean Connery starred in this movie?
+Zardoz
+10
+
+TV/Film: 1970s: In 1974, Susan Sarandon starred in this movie?
+Lovin' molly
+10
+
+TV/Film: 1970s: In 1974, Susan Sarandon starred in this movie?
+The front page
+10
+
+TV/Film: 1970s: In 1974, Sylvester Stallone starred in this movie?
+The lords of flatbush
+10
+
+TV/Film: 1970s: In 1975, Barbra Streisand starred in this movie?
+Funny lady
+10
+
+TV/Film: 1970s: In 1975, Gene Hackman starred in this movie?
+Bite the bullet
+10
+
+TV/Film: 1970s: In 1975, Gene Hackman starred in this movie?
+French connection ii
+10
+
+TV/Film: 1970s: In 1975, Gene Hackman starred in this movie?
+Lucky lady
+10
+
+TV/Film: 1970s: In 1975, Gene Hackman starred in this movie?
+Night moves
+10
+
+TV/Film: 1970s: In 1975, goldie hawn starred in this movie?
+Shampoo
+10
+
+TV/Film: 1970s: In 1975, James Woods starred in this movie?
+Distance
+10
+
+TV/Film: 1970s: In 1975, James Woods starred in this movie?
+Night moves
+10
+
+TV/Film: 1970s: In 1975, Jeff Bridges starred in this movie?
+Rancho deluxe
+10
+
+TV/Film: 1970s: In 1975, John Travolta starred in this movie?
+The devil's rain
+10
+
+TV/Film: 1970s: In 1975, Katharine Hepburn starred in this movie?
+Love among the ruins
+10
+
+TV/Film: 1970s: In 1975, kurt russell starred in this movie?
+Search for the gods
+10
+
+TV/Film: 1970s: In 1975, kurt russell starred in this movie?
+The deadly tower
+10
+
+TV/Film: 1970s: In 1975, kurt russell starred in this movie?
+The strongest man in the world
+10
+
+TV/Film: 1970s: In 1975, Melanie Griffith starred in this movie?
+Night moves
+10
+
+TV/Film: 1970s: In 1975, Melanie Griffith starred in this movie?
+Smile
+10
+
+TV/Film: 1970s: In 1975, Michael Caine starred in this movie?
+The man who would be king
+10
+
+TV/Film: 1970s: In 1975, Michael Caine starred in this movie?
+The romantic englishwoman
+10
+
+TV/Film: 1970s: In 1975, Michael Caine starred in this movie?
+The wilby conspiracy
+10
+
+TV/Film: 1970s: In 1975, Richard Gere starred in this movie?
+Report to the commissioner
+10
+
+TV/Film: 1970s: In 1975, Richard Gere starred in this movie?
+Strike force
+10
+
+TV/Film: 1970s: In 1975, Sean Connery starred in this movie?
+The man who would be king
+10
+
+TV/Film: 1970s: In 1975, Sean Connery starred in this movie?
+The terrorists
+10
+
+TV/Film: 1970s: In 1975, Sean Connery starred in this movie?
+The wind and the lion
+10
+
+TV/Film: 1970s: In 1975, Susan Sarandon starred in this movie?
+The great waldo pepper
+10
+
+TV/Film: 1970s: In 1975, Susan Sarandon starred in this movie?
+The rocky horror picture show
+10
+
+TV/Film: 1970s: In 1975, Sylvester Stallone starred in this movie?
+Capone
+10
+
+TV/Film: 1970s: In 1975, Sylvester Stallone starred in this movie?
+Death race 2000
+10
+
+TV/Film: 1970s: In 1975, Sylvester Stallone starred in this movie?
+No place to hide
+10
+
+TV/Film: 1970s: In 1975, Woody Allen starred in this movie?
+Love and death
+10
+
+TV/Film: 1970s: In 1976, Anthony Hopkins starred in this movie?
+Dark victory
+10
+
+TV/Film: 1970s: In 1976, Anthony Hopkins starred in this movie?
+The lindbergh kidnapping case
+10
+
+TV/Film: 1970s: In 1976, Anthony Hopkins starred in this movie?
+Victory at entebbe
+10
+
+TV/Film: 1970s: In 1976, Arnold Schwarzenegger starred in this movie?
+Stay hungry
+10
+
+TV/Film: 1970s: In 1976, Audrey Hepburn starred in this movie?
+Robin and marian
+10
+
+TV/Film: 1970s: In 1976, Dustin Hoffman starred in this movie?
+All the president's men
+10
+
+TV/Film: 1970s: In 1976, Elizabeth Taylor starred in this movie?
+The blue bird
+10
+
+TV/Film: 1970s: In 1976, Elizabeth Taylor starred in this movie?
+Victory at entebbe
+10
+
+TV/Film: 1970s: In 1976, goldie hawn starred in this movie?
+The duchess and the dirtwater fox
+10
+
+TV/Film: 1970s: In 1976, Ingrid Bergman starred in this movie?
+A matter of time
+10
+
+TV/Film: 1970s: In 1976, James Woods starred in this movie?
+Alex and the gypsy
+10
+
+TV/Film: 1970s: In 1976, Jane Fonda starred in this movie?
+The blue bird
+10
+
+TV/Film: 1970s: In 1976, Jeff Bridges starred in this movie?
+King kong
+10
+
+TV/Film: 1970s: In 1976, Jeff Bridges starred in this movie?
+Stay hungry
+10
+
+TV/Film: 1970s: In 1976, Jodie Foster starred in this movie?
+Bugsy malone
+10
+
+TV/Film: 1970s: In 1976, Jodie Foster starred in this movie?
+Freaky friday
+10
+
+TV/Film: 1970s: In 1976, Jodie Foster starred in this movie?
+Taxi driver
+10
+
+TV/Film: 1970s: In 1976, Jodie Foster starred in this movie?
+The little girl who lives down the lane
+10
+
+TV/Film: 1970s: In 1976, John Travolta starred in this movie?
+Carrie
+10
+
+TV/Film: 1970s: In 1976, John Travolta starred in this movie?
+The boy in the plastic bubble
+10
+
+TV/Film: 1970s: In 1976, kurt russell starred in this movie?
+The longest drive
+10
+
+TV/Film: 1970s: In 1976, kurt russell starred in this movie?
+The quest
+10
+
+TV/Film: 1970s: In 1976, Lauren Bacall starred in this movie?
+The shootist
+10
+
+TV/Film: 1970s: In 1976, Marlon Brando starred in this movie?
+The missouri breaks
+10
+
+TV/Film: 1970s: In 1976, Melanie Griffith starred in this movie?
+The drowning pool
+10
+
+TV/Film: 1970s: In 1976, Michael Caine starred in this movie?
+Harry and walter go to New York
+10
+
+TV/Film: 1970s: In 1976, Michael Caine starred in this movie?
+Peeper
+10
+
+TV/Film: 1970s: In 1976, Michael Caine starred in this movie?
+The eagle has landed
+10
+
+TV/Film: 1970s: In 1976, Richard Gere starred in this movie?
+Baby blue marine
+10
+
+TV/Film: 1970s: In 1976, Robert De Niro starred in this movie?
+Taxi driver
+10
+
+TV/Film: 1970s: In 1976, Robert De Niro starred in this movie?
+The last tycoon
+10
+
+TV/Film: 1970s: In 1976, Sally Field starred in this movie?
+Bridger
+10
+
+TV/Film: 1970s: In 1976, Sally Field starred in this movie?
+Stay hungry
+10
+
+TV/Film: 1970s: In 1976, Sally Field starred in this movie?
+Sybil
+10
+
+TV/Film: 1970s: In 1976, Sean Connery starred in this movie?
+Robin and marian
+10
+
+TV/Film: 1970s: In 1976, Sean Connery starred in this movie?
+The next man
+10
+
+TV/Film: 1970s: In 1976, Susan Sarandon starred in this movie?
+Dragonfly
+10
+
+TV/Film: 1970s: In 1976, Susan Sarandon starred in this movie?
+One summer love
+10
+
+TV/Film: 1970s: In 1976, Sylvester Stallone starred in this movie?
+Cannonball
+10
+
+TV/Film: 1970s: In 1976, Sylvester Stallone starred in this movie?
+Rocky
+10
+
+TV/Film: 1970s: In 1976, Tommy Lee Jones starred in this movie?
+Jackson county jail
+10
+
+TV/Film: 1970s: In 1976, Woody Allen starred in this movie?
+The front
+10
+
+TV/Film: 1970s: In 1977, Anthony Hopkins starred in this movie?
+A bridge too far
+10
+
+TV/Film: 1970s: In 1977, Anthony Hopkins starred in this movie?
+Audrey rose
+10
+
+TV/Film: 1970s: In 1977, Arnold Schwarzenegger starred in this movie?
+Pumping iron
+10
+
+TV/Film: 1970s: In 1977, Dan Akroyd starred in this movie?
+Love at first sight
+10
+
+TV/Film: 1970s: In 1977, Elizabeth Taylor starred in this movie?
+A little night music
+10
+
+TV/Film: 1970s: In 1977, Gene Hackman starred in this movie?
+A bridge too far
+10
+
+TV/Film: 1970s: In 1977, Gene Hackman starred in this movie?
+March or die
+10
+
+TV/Film: 1970s: In 1977, Gene Hackman starred in this movie?
+The domino principle
+10
+
+TV/Film: 1970s: In 1977, Harrison Ford starred in this movie?
+Heroes
+10
+
+TV/Film: 1970s: In 1977, Harrison Ford starred in this movie?
+Star wars
+10
+
+TV/Film: 1970s: In 1977, James Woods starred in this movie?
+The choirboys
+10
+
+TV/Film: 1970s: In 1977, Jane Fonda starred in this movie?
+Fun with dick and jane
+10
+
+TV/Film: 1970s: In 1977, Jane Fonda starred in this movie?
+Julia
+10
+
+TV/Film: 1970s: In 1977, Jodie Foster starred in this movie?
+Candleshoe
+10
+
+TV/Film: 1970s: In 1977, John Travolta starred in this movie?
+Saturday night fever
+10
+
+TV/Film: 1970s: In 1977, Melanie Griffith starred in this movie?
+Joyride
+10
+
+TV/Film: 1970s: In 1977, Melanie Griffith starred in this movie?
+One on one
+10
+
+TV/Film: 1970s: In 1977, Meryl Streep starred in this movie?
+Julia
+10
+
+TV/Film: 1970s: In 1977, Meryl Streep starred in this movie?
+The deadliest season
+10
+
+TV/Film: 1970s: In 1977, Michael Caine starred in this movie?
+A bridge too far
+10
+
+TV/Film: 1970s: In 1977, Raquel Welch starred in this movie?
+Crossed swords
+10
+
+TV/Film: 1970s: In 1977, Richard Gere starred in this movie?
+Looking for mr. goodbar
+10
+
+TV/Film: 1970s: In 1977, Robin Williams starred in this movie?
+Can i do it . . . 'till i need glasses
+10
+
+TV/Film: 1970s: In 1977, Sally Field starred in this movie?
+Heroes
+10
+
+TV/Film: 1970s: In 1977, Sally Field starred in this movie?
+Smokey and the bandit
+10
+
+TV/Film: 1970s: In 1977, Sean Connery starred in this movie?
+A bridge too far
+10
+
+TV/Film: 1970s: In 1977, Shirley MacLaine starred in this movie?
+The turning point
+10
+
+TV/Film: 1970s: In 1977, Sigourney Weaver starred in this movie?
+Annie hall
+10
+
+TV/Film: 1970s: In 1977, Susan Sarandon starred in this movie?
+Checkered flag or crash
+10
+
+TV/Film: 1970s: In 1977, Susan Sarandon starred in this movie?
+The other side of midnight
+10
+
+TV/Film: 1970s: In 1977, Tommy Lee Jones starred in this movie?
+Eliza's horoscope
+10
+
+TV/Film: 1970s: In 1977, Tommy Lee Jones starred in this movie?
+Rolling thunder
+10
+
+TV/Film: 1970s: In 1977, Woody Allen starred in this movie?
+Annie hall
+10
+
+TV/Film: 1970s: In 1978, Angela Lansbury starred in this movie?
+Death on the nile
+10
+
+TV/Film: 1970s: In 1978, Anthony Hopkins starred in this movie?
+International velvet
+10
+
+TV/Film: 1970s: In 1978, Anthony Hopkins starred in this movie?
+Magic
+10
+
+TV/Film: 1970s: In 1978, Christopher Reeve starred in this movie?
+Gray lady down
+10
+
+TV/Film: 1970s: In 1978, Christopher Reeve starred in this movie?
+Superman
+10
+
+TV/Film: 1970s: In 1978, Dustin Hoffman starred in this movie?
+Straight time
+10
+
+TV/Film: 1970s: In 1978, Gene Hackman starred in this movie?
+Superman
+10
+
+TV/Film: 1970s: In 1978, goldie hawn starred in this movie?
+Foul play
+10
+
+TV/Film: 1970s: In 1978, goldie hawn starred in this movie?
+Travels with anita
+10
+
+TV/Film: 1970s: In 1978, Harrison Ford starred in this movie?
+Force 10 from navarone
+10
+
+TV/Film: 1970s: In 1978, Ingrid Bergman starred in this movie?
+Autumn sonata
+10
+
+TV/Film: 1970s: In 1978, Jamie Lee Curtis starred in this movie?
+Halloween
+10
+
+TV/Film: 1970s: In 1978, Jane Fonda starred in this movie?
+California suite
+10
+
+TV/Film: 1970s: In 1978, Jane Fonda starred in this movie?
+Comes a horseman
+10
+
+TV/Film: 1970s: In 1978, Jane Fonda starred in this movie?
+Coming home
+10
+
+TV/Film: 1970s: In 1978, Jeff Bridges starred in this movie?
+Somebody killed her husband
+10
+
+TV/Film: 1970s: In 1978, Jodie Foster starred in this movie?
+Movies are my life
+10
+
+TV/Film: 1970s: In 1978, John Travolta starred in this movie?
+Grease
+10
+
+TV/Film: 1970s: In 1978, John Travolta starred in this movie?
+Moment by moment
+10
+
+TV/Film: 1970s: In 1978, Katharine Hepburn starred in this movie?
+Olly olly oxen free
+10
+
+TV/Film: 1970s: In 1978, Kevin Bacon starred in this movie?
+National lampoon's animal house
+10
+
+TV/Film: 1970s: In 1978, Lauren Bacall starred in this movie?
+Perfect gentlemen
+10
+
+TV/Film: 1970s: In 1978, Marlon Brando starred in this movie?
+Superman
+10
+
+TV/Film: 1970s: In 1978, Meryl Streep starred in this movie?
+The deer hunter
+10
+
+TV/Film: 1970s: In 1978, Michael Caine starred in this movie?
+California suite
+10
+
+TV/Film: 1970s: In 1978, Michael Caine starred in this movie?
+Silver bears
+10
+
+TV/Film: 1970s: In 1978, Michael Caine starred in this movie?
+The swarm
+10
+
+TV/Film: 1970s: In 1978, Michael Douglas starred in this movie?
+Coma
+10
+
+TV/Film: 1970s: In 1978, Richard Gere starred in this movie?
+Bloodbrothers
+10
+
+TV/Film: 1970s: In 1978, Richard Gere starred in this movie?
+Days of heaven
+10
+
+TV/Film: 1970s: In 1978, Robert De Niro starred in this movie?
+The deer hunter
+10
+
+TV/Film: 1970s: In 1978, Sally Field starred in this movie?
+Hooper
+10
+
+TV/Film: 1970s: In 1978, Sally Field starred in this movie?
+The end
+10
+
+TV/Film: 1970s: In 1978, Sigourney Weaver starred in this movie?
+Madman
+10
+
+TV/Film: 1970s: In 1978, Susan Sarandon starred in this movie?
+King of the gypsies
+10
+
+TV/Film: 1970s: In 1978, Susan Sarandon starred in this movie?
+Pretty baby
+10
+
+TV/Film: 1970s: In 1978, Sylvester Stallone starred in this movie?
+F.I.S.T.
+10
+
+TV/Film: 1970s: In 1978, Sylvester Stallone starred in this movie?
+Paradise alley
+10
+
+TV/Film: 1970s: In 1978, Tommy Lee Jones starred in this movie?
+The betsy
+10
+
+TV/Film: 1970s: In 1978, Tommy Lee Jones starred in this movie?
+The eyes of laura mars
+10
+
+TV/Film: 1970s: In 1979, Angela Lansbury starred in this movie?
+The lady vanishes
+10
+
+TV/Film: 1970s: In 1979, Anthony Hopkins starred in this movie?
+Mayflower: the pilgrims' adventure
+10
+
+TV/Film: 1970s: In 1979, Arnold Schwarzenegger starred in this movie?
+Scavenger hunt
+10
+
+TV/Film: 1970s: In 1979, Arnold Schwarzenegger starred in this movie?
+The villain
+10
+
+TV/Film: 1970s: In 1979, Audrey Hepburn starred in this movie?
+Bloodline
+10
+
+TV/Film: 1970s: In 1979, Barbra Streisand starred in this movie?
+The main event
+10
+
+TV/Film: 1970s: In 1979, Bette Midler starred in this movie?
+The rose
+10
+
+TV/Film: 1970s: In 1979, Dan Akroyd starred in this movie?
+Mr. mike's mondo video
+10
+
+TV/Film: 1970s: In 1979, Dustin Hoffman starred in this movie?
+Agatha
+10
+
+TV/Film: 1970s: In 1979, Dustin Hoffman starred in this movie?
+Kramer vs. kramer
+10
+
+TV/Film: 1970s: In 1979, Elizabeth Taylor starred in this movie?
+Winter kills
+10
+
+TV/Film: 1970s: In 1979, goldie hawn starred in this movie?
+Lovers and liars
+10
+
+TV/Film: 1970s: In 1979, Harrison Ford starred in this movie?
+Apocalypse now
+10
+
+TV/Film: 1970s: In 1979, Harrison Ford starred in this movie?
+Hanover street
+10
+
+TV/Film: 1970s: In 1979, Harrison Ford starred in this movie?
+More American graffiti
+10
+
+TV/Film: 1970s: In 1979, Harrison Ford starred in this movie?
+The frisco kid
+10
+
+TV/Film: 1970s: In 1979, James Woods starred in this movie?
+And your name is jonah
+10
+
+TV/Film: 1970s: In 1979, James Woods starred in this movie?
+The onion field
+10
+
+TV/Film: 1970s: In 1979, Jane Fonda starred in this movie?
+The china syndrome
+10
+
+TV/Film: 1970s: In 1979, Jane Fonda starred in this movie?
+The electric horseman
+10
+
+TV/Film: 1970s: In 1979, Jeff Bridges starred in this movie?
+Winter kills
+10
+
+TV/Film: 1970s: In 1979, Katharine Hepburn starred in this movie?
+The corn is green
+10
+
+TV/Film: 1970s: In 1979, Kevin Bacon starred in this movie?
+Starting over
+10
+
+TV/Film: 1970s: In 1979, kurt russell starred in this movie?
+Elvis!
+10
+
+TV/Film: 1970s: In 1979, Lauren Bacall starred in this movie?
+H.E.A.L.T.H.
+10
+
+TV/Film: 1970s: In 1979, Marlon Brando starred in this movie?
+Apocalypse now
+10
+
+TV/Film: 1970s: In 1979, Mel Gibson starred in this movie?
+Tim
+10
+
+TV/Film: 1970s: In 1979, Meryl Streep starred in this movie?
+Kramer vs. kramer
+10
+
+TV/Film: 1970s: In 1979, Meryl Streep starred in this movie?
+Manhattan
+10
+
+TV/Film: 1970s: In 1979, Meryl Streep starred in this movie?
+The seduction of joe tynan
+10
+
+TV/Film: 1970s: In 1979, Michael Caine starred in this movie?
+Ashanti
+10
+
+TV/Film: 1970s: In 1979, Michael Caine starred in this movie?
+Beyond the poseidon adventure
+10
+
+TV/Film: 1970s: In 1979, Michael Douglas starred in this movie?
+Running
+10
+
+TV/Film: 1970s: In 1979, Michael Douglas starred in this movie?
+The china syndrome
+10
+
+TV/Film: 1970s: In 1979, Richard Gere starred in this movie?
+Yanks
+10
+
+TV/Film: 1970s: In 1979, Sally Field starred in this movie?
+Beyond the poseidon adventure
+10
+
+TV/Film: 1970s: In 1979, Sally Field starred in this movie?
+Norma rae
+10
+
+TV/Film: 1970s: In 1979, Sarah Jessica Parker starred in this movie?
+Rich kids
+10
+
+TV/Film: 1970s: In 1979, Sean Connery starred in this movie?
+Cuba
+10
+
+TV/Film: 1970s: In 1979, Sean Connery starred in this movie?
+Meteor
+10
+
+TV/Film: 1970s: In 1979, Sean Connery starred in this movie?
+The great train robbery
+10
+
+TV/Film: 1970s: In 1979, Shirley MacLaine starred in this movie?
+Being there
+10
+
+TV/Film: 1970s: In 1979, Sigourney Weaver starred in this movie?
+Alien
+10
+
+TV/Film: 1970s: In 1979, Susan Sarandon starred in this movie?
+Something short of paradise
+10
+
+TV/Film: 1970s: In 1979, Sylvester Stallone starred in this movie?
+Rocky ii
+10
+
+TV/Film: 1970s: In 1979, Woody Allen starred in this movie?
+Manhattan
+10
+
+TV/Film: 1970s: Johnny Rotten & Joan ____ appear together on BBC's Juke Box Jury in 1979?
+Collins
+10
+
+TV/Film: 1970s: This 1974 film started a run of nostalgia culminating in the TV series 'Happy Days'?
+American Graffiti
+10
+
+TV/Film: 1971 44th Academy Awards: Best Actress In A Leading Role Was won by Jane Fonda For The Movie?
+Klute
+10
+
+TV/Film: 1971 44th Academy Awards: Best Actress In A Supporting role was won by Cloris Leachman For The Movie?
+The last Picture Show
+10
+
+TV/Film: 1971,comedy, a conman is mistaken for an outlaw?
+Support your local gunfighter
+10
+
+TV/Film: 1972 45th Academy Awards: Best Actress In A Leading Role Was won by Liza Minnelli For The Movie?
+Cabaret
+10
+
+TV/Film: 1972 45th Academy Awards: Best Actress In A Supporting role was won by Eileen Heckart For The Movie?
+Butterflies Are Free
+10
+
+TV/Film: 1973 46th Academy Awards: Best Actress In A Leading Role Was won by Glenda Jackson For The Movie?
+A touch of Class
+10
+
+TV/Film: 1973 46th Academy Awards: Best Actress In A Supporting role was won by Tatum O'neal For The Movie?
+Paper moon
+10
+
+TV/Film: 1973, Steve McQueen starred, set on Devils Island?
+Papillon
+10
+
+TV/Film: 1974 47th Academy Awards: Best Actress In A Leading Role Was won by Ellen Burstyn For The Movie?
+Alice doesn't live Here Anymore
+10
+
+TV/Film: 1974 47th Academy Awards: Best Actress In A Supporting role was won by Ingrid Bergman For The Movie?
+Murder on The Orient Express
+10
+
+TV/Film: 1975 48th Academy Awards: Best Actress In A Leading Role Was won by Louise Fletcher For The Movie?
+One flew over The Cuckoo's Nest
+10
+
+TV/Film: 1975 48th Academy Awards: Best Actress In A Supporting role was won by Lee Grant For The Movie?
+Shampoo
+10
+
+TV/Film: 1976 49th Academy Awards: Best Actress In A Leading Role Was won by Faye Dunaway For The Movie?
+Network
+10
+
+TV/Film: 1976 49th Academy Awards: Best Actress In A Supporting role was won by Beatrice Straight For The Movie?
+Network
+10
+
+TV/Film: 1977 50th Academy Awards: Best Actress In A Leading Role Was won by Diane Keaton For The Movie?
+Annie hall
+10
+
+TV/Film: 1977 50th Academy Awards: Best Actress In A Supporting role was won by Vanessa Redgrave For The Movie?
+Julia
+10
+
+TV/Film: 1977, epic war time movie?
+A bridge too far
+10
+
+TV/Film: 1978 51st Academy Awards: Best Actress In A Leading Role Was won by Jane Fonda For The Movie?
+Coming home
+10
+
+TV/Film: 1978 51st Academy Awards: Best Actress In A Supporting role was won by Maggie Smith For The Movie?
+California Suite
+10
+
+TV/Film: 1979 52nd Academy Awards: Best Actress In A Leading Role Was won by Sally Field For The Movie?
+Norma rae
+10
+
+TV/Film: 1979 52nd Academy Awards: Best Actress In A Supporting role was won by Meryl Streep For The Movie?
+Kramer vs. Kramer
+10
+
+TV/Film: 1980s: ____ (breakdance)?
+Breakin'
+10
+
+TV/Film: 1980s: ____ 182?
+Turk
+10
+
+TV/Film: 1980s: ____ a little dream?
+Dream
+10
+
+TV/Film: 1980s: ____ adults?
+Consenting
+10
+
+TV/Film: 1980s: ____ alive?
+Staying
+10
+
+TV/Film: 1980s: ____ all odds?
+Against
+10
+
+TV/Film: 1980s: ____ and cash?
+Tango
+10
+
+TV/Film: 1980s: ____ at bernie's?
+Weekend
+10
+
+TV/Film: 1980s: ____ back?
+Jack's
+10
+
+TV/Film: 1980s: ____ be good?
+Johnny
+10
+
+TV/Film: 1980s: ____ beach, usa?
+Sizzle
+10
+
+TV/Film: 1980s: ____ beauty?
+Fatal
+10
+
+TV/Film: 1980s: ____ beverly hills?
+Troop
+10
+
+TV/Film: 1980s: ____ big adventure?
+Peewee's
+10
+
+TV/Film: 1980s: ____ blues?
+Oxford
+10
+
+TV/Film: 1980s: ____ boys?
+Bad
+10
+
+TV/Film: 1980s: ____ boys?
+Catholic
+10
+
+TV/Film: 1980s: ____ business?
+Big
+10
+
+TV/Film: 1980s: ____ by me?
+Stand
+10
+
+TV/Film: 1980s: ____ can wait?
+Heaven
+10
+
+TV/Film: 1980s: ____ candles?
+Sixteen
+10
+
+TV/Film: 1980s: ____ comfort?
+Southern
+10
+
+TV/Film: 1980s: ____ cowboy?
+Drugstore
+10
+
+TV/Film: 1980s: ____ date?
+Blind
+10
+
+TV/Film: 1980s: ____ dawn?
+Red
+10
+
+TV/Film: 1980s: ____ dog?
+White
+10
+
+TV/Film: 1980s: ____ dreams?
+Electric
+10
+
+TV/Film: 1980s: ____ eye?
+Cat's
+10
+
+TV/Film: 1980s: ____ from heaven?
+Pennies
+10
+
+TV/Film: 1980s: ____ girl?
+Valley
+10
+
+TV/Film: 1980s: ____ girl?
+Working
+10
+
+TV/Film: 1980s: ____ groove?
+Krush
+10
+
+TV/Film: 1980s: ____ gun?
+Top
+10
+
+TV/Film: 1980s: ____ guns?
+Young
+10
+
+TV/Film: 1980s: ____ hard?
+Die
+10
+
+TV/Film: 1980s: ____ heat?
+Body
+10
+
+TV/Film: 1980s: ____ help us?
+Heaven
+10
+
+TV/Film: 1980s: ____ hours?
+48
+10
+
+TV/Film: 1980s: ____ in heaven?
+Made
+10
+
+TV/Film: 1980s: ____ in pink?
+Pretty
+10
+
+TV/Film: 1980s: ____ jones & the temple of doom?
+Indiana
+10
+
+TV/Film: 1980s: ____ just wanna have fun?
+Girls
+10
+
+TV/Film: 1980s: ____ last dragon?
+The
+10
+
+TV/Film: 1980s: ____ like us?
+Spies
+10
+
+TV/Film: 1980s: ____ live?
+They
+10
+
+TV/Film: 1980s: ____ love?
+Endless
+10
+
+TV/Film: 1980s: ____ lovers?
+Summer
+10
+
+TV/Film: 1980s: ____ man?
+Rain
+10
+
+TV/Film: 1980s: ____ man?
+Repo
+10
+
+TV/Film: 1980s: ____ night?
+Fright
+10
+
+TV/Film: 1980s: ____ of a kind?
+Two
+10
+
+TV/Film: 1980s: ____ of bounds?
+Out
+10
+
+TV/Film: 1980s: ____ of day?
+Light
+10
+
+TV/Film: 1980s: ____ of dreams?
+Field
+10
+
+TV/Film: 1980s: ____ of endearment?
+Terms
+10
+
+TV/Film: 1980s: ____ of fire?
+Chariots
+10
+
+TV/Film: 1980s: ____ of hearts?
+Thief
+10
+
+TV/Film: 1980s: ____ of hell?
+Gates
+10
+
+TV/Film: 1980s: ____ of love?
+Sea
+10
+
+TV/Film: 1980s: ____ of me?
+All
+10
+
+TV/Film: 1980s: ____ of the living dead?
+City
+10
+
+TV/Film: 1980s: ____ of the living dead?
+Return
+10
+
+TV/Film: 1980s: ____ of the spider woman?
+Kiss
+10
+
+TV/Film: 1980s: ____ of the universe?
+Masters
+10
+
+TV/Film: 1980s: ____ of war?
+Casualties
+10
+
+TV/Film: 1980s: ____ on me?
+Lean
+10
+
+TV/Film: 1980s: ____ on the fourth of july?
+Born
+10
+
+TV/Film: 1980s: ____ party?
+Bachelor
+10
+
+TV/Film: 1980s: ____ people?
+Ordinary
+10
+
+TV/Film: 1980s: ____ people?
+Ruthless
+10
+
+TV/Film: 1980s: ____ pirates?
+Ice
+10
+
+TV/Film: 1980s: ____ places?
+Trading
+10
+
+TV/Film: 1980s: ____ quest?
+Vision
+10
+
+TV/Film: 1980s: ____ rain?
+Purple
+10
+
+TV/Film: 1980s: ____ runner?
+Blade
+10
+
+TV/Film: 1980s: ____ school?
+Summer
+10
+
+TV/Film: 1980s: ____ science?
+Weird
+10
+
+TV/Film: 1980s: ____ seeking susan?
+Desperately
+10
+
+TV/Film: 1980s: ____ shop of horrors?
+Little
+10
+
+TV/Film: 1980s: ____ states?
+Altered
+10
+
+TV/Film: 1980s: ____ street?
+Beat
+10
+
+TV/Film: 1980s: ____ street?
+Wall
+10
+
+TV/Film: 1980s: ____ surprise?
+Shanghai
+10
+
+TV/Film: 1980s: ____ taste?
+Bad
+10
+
+TV/Film: 1980s: ____ That Girl?
+Who's
+10
+
+TV/Film: 1980s: ____ the 13th?
+Friday
+10
+
+TV/Film: 1980s: ____ the duck?
+Howard
+10
+
+TV/Film: 1980s: ____ the right thing?
+Do
+10
+
+TV/Film: 1980s: ____ the stone?
+Romancing
+10
+
+TV/Film: 1980s: ____ to America?
+Coming
+10
+
+TV/Film: 1980s: ____ to five?
+Nine
+10
+
+TV/Film: 1980s: ____ to kill?
+Dressed
+10
+
+TV/Film: 1980s: ____ to order?
+Maid
+10
+
+TV/Film: 1980s: ____ to the mob?
+Married
+10
+
+TV/Film: 1980s: ____ troopers?
+Zone
+10
+
+TV/Film: 1980s: ____ up the volume?
+Pump
+10
+
+TV/Film: 1980s: ____ weapon?
+Lethal
+10
+
+TV/Film: 1980s: ____ witch?
+Teen
+10
+
+TV/Film: 1980s: ____ wolf?
+Teen
+10
+
+TV/Film: 1980s: ____ women on the moon?
+Amazon
+10
+
+TV/Film: 1980s: ____-a-cop?
+Rent
+10
+
+TV/Film: 1980s: ____, trains and automobiles?
+Planes
+10
+
+TV/Film: 1980s: ____: the movie?
+Shag
+10
+
+TV/Film: 1980s: ____balls?
+Meat
+10
+
+TV/Film: 1980s: ____boy?
+Rat
+10
+
+TV/Film: 1980s: ____dance?
+Flash
+10
+
+TV/Film: 1980s: ____man?
+Dark
+10
+
+TV/Film: 1980s: ____raiser?
+Hell
+10
+
+TV/Film: 1980s: ____scape?
+Dream
+10
+
+TV/Film: 1980s: ____shack?
+Caddy
+10
+
+TV/Film: 1980s: ____show?
+Creep
+10
+
+TV/Film: 1980s: ____space?
+Inner
+10
+
+TV/Film: 1980s: 53rd Academy Awards Best Actress In A Leading Role Was won by Sissy Spacek For The Movie?
+Coal miner's Daughter
+10
+
+TV/Film: 1980s: 53rd Academy Awards Best Actress In A Supporting role was won by Mary Steenburgen For The Movie?
+Melvin And Howard
+10
+
+TV/Film: 1980s: a ____ called wanda?
+Fish
+10
+
+TV/Film: 1980s: a ____ to a kill?
+View
+10
+
+TV/Film: 1980s: a ____ to india?
+Passage
+10
+
+TV/Film: 1980s: a ____ with a view?
+Room
+10
+
+TV/Film: 1980s: a long way ____?
+Home
+10
+
+TV/Film: 1980s: a shot of tom cruise, a jigger of sex on the beach?
+Cocktail
+10
+
+TV/Film: 1980s: Actor: In the 1987 film roxanne, who played the role of roxanne?
+Darryl hannah
+10
+
+TV/Film: 1980s: adventures in ____?
+Babysitting
+10
+
+TV/Film: 1980s: after ____?
+Hours
+10
+
+TV/Film: 1980s: alien meets the invisible man. in the jungle?
+Predator
+10
+
+TV/Film: 1980s: all the ____ moves?
+Right
+10
+
+TV/Film: 1980s: American ____ in london?
+Werewolf
+10
+
+TV/Film: 1980s: an ____ and a gentleman?
+Officer
+10
+
+TV/Film: 1980s: an American ____?
+Tail
+10
+
+TV/Film: 1980s: and first-time actor ethan hawke paid an agent to get him this?
+Explorers
+10
+
+TV/Film: 1980s: andy mccarthy does robby lowe's mom, and she's jackie bissette!?
+Class
+10
+
+TV/Film: 1980s: at ____ range?
+Close
+10
+
+TV/Film: 1980s: baby ____?
+Boom
+10
+
+TV/Film: 1980s: back to ____?
+School
+10
+
+TV/Film: 1980s: back to the ____?
+Future
+10
+
+TV/Film: 1980s: bad ____?
+Influence
+10
+
+TV/Film: 1980s: better ____ dead?
+Off
+10
+
+TV/Film: 1980s: beverly hills ____?
+Cop
+10
+
+TV/Film: 1980s: big ____ in little china?
+Trouble
+10
+
+TV/Film: 1980s: bill and ted's ____ adventure?
+Excellent
+10
+
+TV/Film: 1980s: Bill Murray, post-SNL, pre-Groundhog. Think spaghetti?
+Meatballs
+10
+
+TV/Film: 1980s: bill murray, post-snl, pre-groundhog?
+Meatballs
+10
+
+TV/Film: 1980s: black ____?
+Rain
+10
+
+TV/Film: 1980s: blue ____?
+Lagoon
+10
+
+TV/Film: 1980s: blue ____?
+Velvet
+10
+
+TV/Film: 1980s: body ____?
+Double
+10
+
+TV/Film: 1980s: brotherhood of ____?
+Justice
+10
+
+TV/Film: 1980s: bull ____?
+Durham
+10
+
+TV/Film: 1980s: buy schwarzenegger, get devito for free?
+Twins
+10
+
+TV/Film: 1980s: can't buy ____ love?
+Me
+10
+
+TV/Film: 1980s: cher's got him, babe, and he's got a face?
+Mask
+10
+
+TV/Film: 1980s: Christian Slater and Winona Ryder hate school. Pass it on?
+Heathers
+10
+
+TV/Film: 1980s: christian slater and winona ryder hate school?
+Heathers
+10
+
+TV/Film: 1980s: class of ____?
+1984
+10
+
+TV/Film: 1980s: come toward the light, carol anne~~~?
+Poltergeist
+10
+
+TV/Film: 1980s: Country that is the setting for Yentl?
+Poland
+10
+
+TV/Film: 1980s: crocodile ____?
+Dundee
+10
+
+TV/Film: 1980s: cruise, penn and hutton play army?
+Taps
+10
+
+TV/Film: 1980s: cult classic among little people?
+Willow
+10
+
+TV/Film: 1980s: dangerous ____?
+Liaisons
+10
+
+TV/Film: 1980s: dead ____ don't wear plaid?
+Men
+10
+
+TV/Film: 1980s: dead ____?
+Zone
+10
+
+TV/Film: 1980s: dead ____society?
+Poets
+10
+
+TV/Film: 1980s: dirty ____?
+Dancing
+10
+
+TV/Film: 1980s: dirty rotten ____?
+Scoundrels
+10
+
+TV/Film: 1980s: don't tell ____ it's me?
+Her
+10
+
+TV/Film: 1980s: dreyfus, estevez, o'donnell, can you believe they made a sequel too?
+Stakeout
+10
+
+TV/Film: 1980s: driving miss ____?
+Daisy
+10
+
+TV/Film: 1980s: earth ____ are easy?
+Girls
+10
+
+TV/Film: 1980s: eddie and the ____?
+Cruisers
+10
+
+TV/Film: 1980s: edward ____?
+Scissorhands
+10
+
+TV/Film: 1980s: elvira, ____ of the dark?
+Mistress
+10
+
+TV/Film: 1980s: escape from ____?
+New york
+10
+
+TV/Film: 1980s: everybody's ____?
+All-American
+10
+
+TV/Film: 1980s: f/____?
+X
+10
+
+TV/Film: 1980s: family ____?
+Business
+10
+
+TV/Film: 1980s: Family Ties-er who appeared in the short lived series, Palmerstown, USA?
+Michael j fox
+10
+
+TV/Film: 1980s: fast times at ____ high?
+Ridgemont
+10
+
+TV/Film: 1980s: fatal ____?
+Attraction
+10
+
+TV/Film: 1980s: ferris ____ day off?
+Bueller's
+10
+
+TV/Film: 1980s: film at eleven: car has a mind of its own!?
+Christine
+10
+
+TV/Film: 1980s: Firefox was what type of aircraft in the 1982 film of the same name?
+Supersonic fighter aircraft
+10
+
+TV/Film: 1980s: first ____?
+Blood
+10
+
+TV/Film: 1980s: flash: drew barrymore turns ten, whole world in danger!?
+Firestarter
+10
+
+TV/Film: 1980s: flight of the ____?
+Navigator
+10
+
+TV/Film: 1980s: foot____?
+Loose
+10
+
+TV/Film: 1980s: for ____?
+Keeps
+10
+
+TV/Film: 1980s: for your ____ only?
+Eyes
+10
+
+TV/Film: 1980s: franken____?
+Weenie
+10
+
+TV/Film: 1980s: fresh ____?
+Horses
+10
+
+TV/Film: 1980s: from the ____?
+Hip
+10
+
+TV/Film: 1980s: go directly to brando. do not pass reeve, do not collect lois lane?
+Superman
+10
+
+TV/Film: 1980s: golden ____?
+Child
+10
+
+TV/Film: 1980s: guy really gets into playing videogames?
+Tron
+10
+
+TV/Film: 1980s: hair____?
+Spray
+10
+
+TV/Film: 1980s: hannibal lecter, chapter one?
+Manhunter
+10
+
+TV/Film: 1980s: harrison ford stars in love, amish style?
+Witness
+10
+
+TV/Film: 1980s: He co-anchored the NBC Nightly News before Brokaw went solo?
+Roger mudd
+10
+
+TV/Film: 1980s: heart of ____?
+Dixie
+10
+
+TV/Film: 1980s: hiding ____?
+Out
+10
+
+TV/Film: 1980s: high____?
+Lander
+10
+
+TV/Film: 1980s: Hmm. Let's make Chevy Chase a spy!?
+Fletch
+10
+
+TV/Film: 1980s: house by the ____?
+Cemetary
+10
+
+TV/Film: 1980s: house of ____?
+Games
+10
+
+TV/Film: 1980s: I feel the earth. Move. Under my feet?
+Tremors
+10
+
+TV/Film: 1980s: I've given a name to my pain?
+Batman
+10
+
+TV/Film: 1980s: igor and the ____?
+Lunatics
+10
+
+TV/Film: 1980s: In 1980 film starring Robert Redford about a reformist prison warder trying to clean up his prison?
+Brubaker
+10
+
+TV/Film: 1980s: In 1980, Angela Lansbury starred in this movie?
+The mirror crack'd
+10
+
+TV/Film: 1980s: In 1980, Anthony Hopkins starred in this movie?
+A change of seasons
+10
+
+TV/Film: 1980s: In 1980, Anthony Hopkins starred in this movie?
+The elephant man
+10
+
+TV/Film: 1980s: In 1980, Arnold Schwarzenegger starred in this movie?
+The jayne mansfield story
+10
+
+TV/Film: 1980s: In 1980, Bette Midler starred in this movie?
+Divine madness
+10
+
+TV/Film: 1980s: In 1980, Bruce Willis starred in this movie?
+The first deadly sin
+10
+
+TV/Film: 1980s: In 1980, Christopher Reeve starred in this movie?
+Somewhere in time
+10
+
+TV/Film: 1980s: In 1980, Drew Barrymore starred in this movie?
+Altered states
+10
+
+TV/Film: 1980s: In 1980, Elizabeth Taylor starred in this movie?
+The mirror crack'd
+10
+
+TV/Film: 1980s: In 1980, goldie hawn starred in this movie?
+Private benjamin
+10
+
+TV/Film: 1980s: In 1980, goldie hawn starred in this movie?
+Seems like old times
+10
+
+TV/Film: 1980s: In 1980, Harrison Ford starred in this movie?
+The empire strikes back
+10
+
+TV/Film: 1980s: In 1980, James Woods starred in this movie?
+The black marble
+10
+
+TV/Film: 1980s: In 1980, Jamie Lee Curtis starred in this movie?
+Prom night
+10
+
+TV/Film: 1980s: In 1980, Jamie Lee Curtis starred in this movie?
+Terror train
+10
+
+TV/Film: 1980s: In 1980, Jamie Lee Curtis starred in this movie?
+The fog
+10
+
+TV/Film: 1980s: In 1980, Jane Fonda starred in this movie?
+No nukes
+10
+
+TV/Film: 1980s: In 1980, Jeff Bridges starred in this movie?
+Heaven's gate
+10
+
+TV/Film: 1980s: In 1980, Jodie Foster starred in this movie?
+Carny
+10
+
+TV/Film: 1980s: In 1980, Jodie Foster starred in this movie?
+Foxes
+10
+
+TV/Film: 1980s: In 1980, John Travolta starred in this movie?
+Urban cowboy
+10
+
+TV/Film: 1980s: In 1980, Julie Andrews starred in this movie?
+Little miss marker
+10
+
+TV/Film: 1980s: In 1980, Kevin Bacon starred in this movie?
+Friday the 13th
+10
+
+TV/Film: 1980s: In 1980, Kevin Bacon starred in this movie?
+Hero at large
+10
+
+TV/Film: 1980s: In 1980, kurt russell starred in this movie?
+Amber waves
+10
+
+TV/Film: 1980s: In 1980, kurt russell starred in this movie?
+Used cars
+10
+
+TV/Film: 1980s: In 1980, Marlon Brando starred in this movie?
+The formula
+10
+
+TV/Film: 1980s: In 1980, Mel Gibson starred in this movie?
+Attack force z
+10
+
+TV/Film: 1980s: In 1980, Mel Gibson starred in this movie?
+Mad max
+10
+
+TV/Film: 1980s: In 1980, Michael Caine starred in this movie?
+Dressed to kill
+10
+
+TV/Film: 1980s: In 1980, Michael Caine starred in this movie?
+The island
+10
+
+TV/Film: 1980s: In 1980, Michael Douglas starred in this movie?
+It's my turn
+10
+
+TV/Film: 1980s: In 1980, Michael Douglas starred in this movie?
+Tell me a riddle
+10
+
+TV/Film: 1980s: In 1980, Michelle Pfeiffer starred in this movie?
+Falling in love again
+10
+
+TV/Film: 1980s: In 1980, Michelle Pfeiffer starred in this movie?
+Hollywood knights
+10
+
+TV/Film: 1980s: In 1980, Michelle Pfeiffer starred in this movie?
+The hollywood knights
+10
+
+TV/Film: 1980s: In 1980, Pierce Brosnan starred in this movie?
+The mirror crack'd
+10
+
+TV/Film: 1980s: In 1980, Richard Gere starred in this movie?
+American gigolo
+10
+
+TV/Film: 1980s: In 1980, Robert De Niro starred in this movie?
+Raging bull
+10
+
+TV/Film: 1980s: In 1980, Robin Williams starred in this movie?
+Children of babylon
+10
+
+TV/Film: 1980s: In 1980, Robin Williams starred in this movie?
+Popeye
+10
+
+TV/Film: 1980s: In 1980, Sally Field starred in this movie?
+Smokey and the bandit ii
+10
+
+TV/Film: 1980s: In 1980, Sharon Stone starred in this movie?
+Stardust memories
+10
+
+TV/Film: 1980s: In 1980, Shirley MacLaine starred in this movie?
+A change of seasons
+10
+
+TV/Film: 1980s: In 1980, Shirley MacLaine starred in this movie?
+Loving couples
+10
+
+TV/Film: 1980s: In 1980, Susan Sarandon starred in this movie?
+Atlantic city
+10
+
+TV/Film: 1980s: In 1980, Susan Sarandon starred in this movie?
+Loving couples
+10
+
+TV/Film: 1980s: In 1980, Tommy Lee Jones starred in this movie?
+Barn burning
+10
+
+TV/Film: 1980s: In 1980, Tommy Lee Jones starred in this movie?
+Coal miner's daughter
+10
+
+TV/Film: 1980s: In 1980, Woody Allen starred in this movie?
+Stardust memories
+10
+
+TV/Film: 1980s: In 1981 steamy flick that gave Kathleen Turner her first starring role?
+Body heat
+10
+
+TV/Film: 1980s: In 1981, Anthony Hopkins starred in this movie?
+The bunker
+10
+
+TV/Film: 1980s: In 1981, Audrey Hepburn starred in this movie?
+They all laughed
+10
+
+TV/Film: 1980s: In 1981, Barbra Streisand starred in this movie?
+All night long
+10
+
+TV/Film: 1980s: In 1981, Christopher Reeve starred in this movie?
+Superman ii
+10
+
+TV/Film: 1980s: In 1981, Dan Akroyd starred in this movie?
+Neighbors
+10
+
+TV/Film: 1980s: In 1981, Demi Moore starred in this movie?
+Choices
+10
+
+TV/Film: 1980s: In 1981, Denzel Washington starred in this movie?
+Carbon copy
+10
+
+TV/Film: 1980s: In 1981, Gene Hackman starred in this movie?
+All night long
+10
+
+TV/Film: 1980s: In 1981, Gene Hackman starred in this movie?
+Eureka
+10
+
+TV/Film: 1980s: In 1981, Gene Hackman starred in this movie?
+Reds
+10
+
+TV/Film: 1980s: In 1981, Gene Hackman starred in this movie?
+Superman ii
+10
+
+TV/Film: 1980s: In 1981, Harrison Ford starred in this movie?
+Raiders of the lost ark
+10
+
+TV/Film: 1980s: In 1981, James Woods starred in this movie?
+Eyewitness
+10
+
+TV/Film: 1980s: In 1981, Jamie Lee Curtis starred in this movie?
+Halloween ii
+10
+
+TV/Film: 1980s: In 1981, Jamie Lee Curtis starred in this movie?
+Road games
+10
+
+TV/Film: 1980s: In 1981, Jane Fonda starred in this movie?
+On golden pond
+10
+
+TV/Film: 1980s: In 1981, Jane Fonda starred in this movie?
+Rollover
+10
+
+TV/Film: 1980s: In 1981, John Travolta starred in this movie?
+Blow out
+10
+
+TV/Film: 1980s: In 1981, Julie Andrews starred in this movie?
+S.O.B.
+10
+
+TV/Film: 1980s: In 1981, Katharine Hepburn starred in this movie?
+On golden pond
+10
+
+TV/Film: 1980s: In 1981, Kevin Bacon starred in this movie?
+Only when i laugh
+10
+
+TV/Film: 1980s: In 1981, Kevin Costner starred in this movie?
+Shadows run black
+10
+
+TV/Film: 1980s: In 1981, Kirstie Alley starred in this movie?
+One more chance
+10
+
+TV/Film: 1980s: In 1981, kurt russell starred in this movie?
+Escape from New York
+10
+
+TV/Film: 1980s: In 1981, Lauren Bacall starred in this movie?
+The fan
+10
+
+TV/Film: 1980s: In 1981, Meg Ryan starred in this movie?
+Rich and famous
+10
+
+TV/Film: 1980s: In 1981, Mel Gibson starred in this movie?
+Gallipoli
+10
+
+TV/Film: 1980s: In 1981, Melanie Griffith starred in this movie?
+Roar
+10
+
+TV/Film: 1980s: In 1981, Melanie Griffith starred in this movie?
+She's in the army now
+10
+
+TV/Film: 1980s: In 1981, Melanie Griffith starred in this movie?
+The star maker
+10
+
+TV/Film: 1980s: In 1981, Meryl Streep starred in this movie?
+The french lieutenant's woman
+10
+
+TV/Film: 1980s: In 1981, Michael Caine starred in this movie?
+The hand
+10
+
+TV/Film: 1980s: In 1981, Michelle Pfeiffer starred in this movie?
+Callie and son
+10
+
+TV/Film: 1980s: In 1981, Michelle Pfeiffer starred in this movie?
+Splendor in the grass
+10
+
+TV/Film: 1980s: In 1981, Robert De Niro starred in this movie?
+True confessions
+10
+
+TV/Film: 1980s: In 1981, Sally Field starred in this movie?
+Absence of malice
+10
+
+TV/Film: 1980s: In 1981, Sally Field starred in this movie?
+Back roads
+10
+
+TV/Film: 1980s: In 1981, Sean Connery starred in this movie?
+Outland
+10
+
+TV/Film: 1980s: In 1981, Sean Connery starred in this movie?
+Time bandits
+10
+
+TV/Film: 1980s: In 1981, Sharon Stone starred in this movie?
+Deadly blessing
+10
+
+TV/Film: 1980s: In 1981, Sigourney Weaver starred in this movie?
+Eyewitness
+10
+
+TV/Film: 1980s: In 1981, Sylvester Stallone starred in this movie?
+Nighthawks
+10
+
+TV/Film: 1980s: In 1981, Tom Cruise starred in this movie?
+Endless love
+10
+
+TV/Film: 1980s: In 1981, Tom Cruise starred in this movie?
+Taps
+10
+
+TV/Film: 1980s: In 1981, Tom Hanks starred in this movie?
+He knows you're alone
+10
+
+TV/Film: 1980s: In 1981, Tommy Lee Jones starred in this movie?
+Back roads
+10
+
+TV/Film: 1980s: In 1982, Angelina Jolie starred in this movie?
+Lookin' to get out
+10
+
+TV/Film: 1980s: In 1982, Anthony Hopkins starred in this movie?
+The hunchback of notre dame
+10
+
+TV/Film: 1980s: In 1982, Arnold Schwarzenegger starred in this movie?
+Conan the barbarian
+10
+
+TV/Film: 1980s: In 1982, Arnold Schwarzenegger starred in this movie?
+Shape up with arnold
+10
+
+TV/Film: 1980s: In 1982, Bette Midler starred in this movie?
+Jinxed
+10
+
+TV/Film: 1980s: In 1982, Bruce Willis starred in this movie?
+The verdict
+10
+
+TV/Film: 1980s: In 1982, Christopher Reeve starred in this movie?
+Deathtrap
+10
+
+TV/Film: 1980s: In 1982, Dan Akroyd starred in this movie?
+It came from hollywood
+10
+
+TV/Film: 1980s: In 1982, Demi Moore starred in this movie?
+Parasite
+10
+
+TV/Film: 1980s: In 1982, Demi Moore starred in this movie?
+Young doctors in love
+10
+
+TV/Film: 1980s: In 1982, Dustin Hoffman starred in this movie?
+Tootsie
+10
+
+TV/Film: 1980s: In 1982, George Clooney starred in this movie?
+And they're off
+10
+
+TV/Film: 1980s: In 1982, goldie hawn starred in this movie?
+Best friends
+10
+
+TV/Film: 1980s: In 1982, Harrison Ford starred in this movie?
+Blade runner
+10
+
+TV/Film: 1980s: In 1982, Hugh Grant starred in this movie?
+Privileged
+10
+
+TV/Film: 1980s: In 1982, Ingrid Bergman starred in this movie?
+A woman called golda
+10
+
+TV/Film: 1980s: In 1982, James Woods starred in this movie?
+Fast walking
+10
+
+TV/Film: 1980s: In 1982, James Woods starred in this movie?
+Split image
+10
+
+TV/Film: 1980s: In 1982, Jeff Bridges starred in this movie?
+Kiss me goodbye
+10
+
+TV/Film: 1980s: In 1982, Jeff Bridges starred in this movie?
+Tron
+10
+
+TV/Film: 1980s: In 1982, Jodie Foster starred in this movie?
+O'hara's wife
+10
+
+TV/Film: 1980s: In 1982, Julie Andrews starred in this movie?
+Victor/victoria
+10
+
+TV/Film: 1980s: In 1982, Kevin Bacon starred in this movie?
+Diner
+10
+
+TV/Film: 1980s: In 1982, Kevin Costner starred in this movie?
+Chasing dreams
+10
+
+TV/Film: 1980s: In 1982, Kevin Costner starred in this movie?
+Frances
+10
+
+TV/Film: 1980s: In 1982, Kevin Costner starred in this movie?
+Night shift
+10
+
+TV/Film: 1980s: In 1982, Kevin Costner starred in this movie?
+Table for five
+10
+
+TV/Film: 1980s: In 1982, Mel Gibson starred in this movie?
+The road warrior
+10
+
+TV/Film: 1980s: In 1982, Meryl Streep starred in this movie?
+Sophie's choice
+10
+
+TV/Film: 1980s: In 1982, Meryl Streep starred in this movie?
+Still of the night
+10
+
+TV/Film: 1980s: In 1982, Michael Caine starred in this movie?
+Deathtrap
+10
+
+TV/Film: 1980s: In 1982, Michael Keaton starred in this movie?
+Night shift
+10
+
+TV/Film: 1980s: In 1982, Michelle Pfeiffer starred in this movie?
+Grease 2
+10
+
+TV/Film: 1980s: In 1982, Nicolas Cage starred in this movie?
+Fast times at ridgemont high
+10
+
+TV/Film: 1980s: In 1982, Raquel Welch starred in this movie?
+The legend of walks far woman
+10
+
+TV/Film: 1980s: In 1982, Richard Gere starred in this movie?
+An officer and a gentleman
+10
+
+TV/Film: 1980s: In 1982, Robin Williams starred in this movie?
+The world according to garp
+10
+
+TV/Film: 1980s: In 1982, Sally Field starred in this movie?
+Kiss me goodbye
+10
+
+TV/Film: 1980s: In 1982, Sean Connery starred in this movie?
+Five days one summer
+10
+
+TV/Film: 1980s: In 1982, Sean Connery starred in this movie?
+Gole!
+10
+
+TV/Film: 1980s: In 1982, Sharon Stone starred in this movie?
+Bolero
+10
+
+TV/Film: 1980s: In 1982, Susan Sarandon starred in this movie?
+Tempest
+10
+
+TV/Film: 1980s: In 1982, Susan Sarandon starred in this movie?
+Who am i this time?
+10
+
+TV/Film: 1980s: In 1982, Sylvester Stallone starred in this movie?
+First blood
+10
+
+TV/Film: 1980s: In 1982, Sylvester Stallone starred in this movie?
+Rocky iii
+10
+
+TV/Film: 1980s: In 1982, Tom Cruise starred in this movie?
+Losin' it
+10
+
+TV/Film: 1980s: In 1982, Tom Hanks starred in this movie?
+Rona jaffe's mazes and monsters
+10
+
+TV/Film: 1980s: In 1982, Woody Allen starred in this movie?
+A midsummer night's sex comedy
+10
+
+TV/Film: 1980s: In 1983 film that brings Jeff Goldblum, Glenn Close, and William Hurt together?
+The big chill
+10
+
+TV/Film: 1980s: In 1983 flick that has Chuck Norris as a Texas Ranger out to get David Carradine?
+Lone wolf mcquade
+10
+
+TV/Film: 1980s: In 1983, Angela Lansbury starred in this movie?
+Pirates of penzance
+10
+
+TV/Film: 1980s: In 1983, Barbra Streisand starred in this movie?
+Yentl
+10
+
+TV/Film: 1980s: In 1983, Christopher Reeve starred in this movie?
+Monsignor
+10
+
+TV/Film: 1980s: In 1983, Christopher Reeve starred in this movie?
+Superman iii
+10
+
+TV/Film: 1980s: In 1983, Dan Akroyd starred in this movie?
+Doctor detroit
+10
+
+TV/Film: 1980s: In 1983, Dan Akroyd starred in this movie?
+Trading places
+10
+
+TV/Film: 1980s: In 1983, Eddie Murphy starred in this movie?
+Trading places
+10
+
+TV/Film: 1980s: In 1983, Elizabeth Taylor starred in this movie?
+Between friends
+10
+
+TV/Film: 1980s: In 1983, Gene Hackman starred in this movie?
+Uncommon valor
+10
+
+TV/Film: 1980s: In 1983, Gene Hackman starred in this movie?
+Under fire
+10
+
+TV/Film: 1980s: In 1983, Harrison Ford starred in this movie?
+Return of the jedi
+10
+
+TV/Film: 1980s: In 1983, James Woods starred in this movie?
+Videodrome
+10
+
+TV/Film: 1980s: In 1983, Jodie Foster starred in this movie?
+Svengali
+10
+
+TV/Film: 1980s: In 1983, John Travolta starred in this movie?
+Staying alive
+10
+
+TV/Film: 1980s: In 1983, John Travolta starred in this movie?
+Two of a kind
+10
+
+TV/Film: 1980s: In 1983, Julie Andrews starred in this movie?
+The man who loved women
+10
+
+TV/Film: 1980s: In 1983, Kevin Bacon starred in this movie?
+The demon murder case
+10
+
+TV/Film: 1980s: In 1983, Kevin Costner starred in this movie?
+Stacy's knights
+10
+
+TV/Film: 1980s: In 1983, Kevin Costner starred in this movie?
+Testament
+10
+
+TV/Film: 1980s: In 1983, Kevin Costner starred in this movie?
+The gunrunner
+10
+
+TV/Film: 1980s: In 1983, Kirstie Alley starred in this movie?
+Champions
+10
+
+TV/Film: 1980s: In 1983, kurt russell starred in this movie?
+Silkwood
+10
+
+TV/Film: 1980s: In 1983, kurt russell starred in this movie?
+The thing
+10
+
+TV/Film: 1980s: In 1983, Mel Gibson starred in this movie?
+The year of living dangerously
+10
+
+TV/Film: 1980s: In 1983, Meryl Streep starred in this movie?
+Silkwood
+10
+
+TV/Film: 1980s: In 1983, Michael Caine starred in this movie?
+Educating rita
+10
+
+TV/Film: 1980s: In 1983, Michael Douglas starred in this movie?
+The star chamber
+10
+
+TV/Film: 1980s: In 1983, Michael Keaton starred in this movie?
+Mr. mom
+10
+
+TV/Film: 1980s: In 1983, Michelle Pfeiffer starred in this movie?
+Scarface
+10
+
+TV/Film: 1980s: In 1983, Nicolas Cage starred in this movie?
+Rumble fish
+10
+
+TV/Film: 1980s: In 1983, Nicolas Cage starred in this movie?
+Valley girl
+10
+
+TV/Film: 1980s: In 1983, Nicole Kidman starred in this movie?
+Bmx bandits
+10
+
+TV/Film: 1980s: In 1983, Richard Gere starred in this movie?
+Breathless
+10
+
+TV/Film: 1980s: In 1983, Robert De Niro starred in this movie?
+The king of comedy
+10
+
+TV/Film: 1980s: In 1983, Robin Williams starred in this movie?
+An evening with robin williams
+10
+
+TV/Film: 1980s: In 1983, Robin Williams starred in this movie?
+The survivors
+10
+
+TV/Film: 1980s: In 1983, Sean Connery starred in this movie?
+Never say never again
+10
+
+TV/Film: 1980s: In 1983, Shirley MacLaine starred in this movie?
+Terms of endearment
+10
+
+TV/Film: 1980s: In 1983, Sigourney Weaver starred in this movie?
+Deal of the century
+10
+
+TV/Film: 1980s: In 1983, Sigourney Weaver starred in this movie?
+The year of living dangerously
+10
+
+TV/Film: 1980s: In 1983, Susan Sarandon starred in this movie?
+The hunger
+10
+
+TV/Film: 1980s: In 1983, Sylvester Stallone starred in this movie?
+Staying alive
+10
+
+TV/Film: 1980s: In 1983, Tom Cruise starred in this movie?
+All the right moves
+10
+
+TV/Film: 1980s: In 1983, Tom Cruise starred in this movie?
+Risky business
+10
+
+TV/Film: 1980s: In 1983, Tom Cruise starred in this movie?
+The outsiders
+10
+
+TV/Film: 1980s: In 1983, Tommy Lee Jones starred in this movie?
+Nate and hayes
+10
+
+TV/Film: 1980s: In 1983, Woody Allen starred in this movie?
+Zelig
+10
+
+TV/Film: 1980s: In 1984 murder in the military movie produced and directed by Norman Jewison?
+A soldiers story
+10
+
+TV/Film: 1980s: In 1984 Woody Allen film with guest appearance by Howard Cosell?
+Broadway danny rose
+10
+
+TV/Film: 1980s: In 1984, Alec Baldwin starred in this movie?
+Sweet revenge
+10
+
+TV/Film: 1980s: In 1984, Angela Lansbury starred in this movie?
+Lace
+10
+
+TV/Film: 1980s: In 1984, Anthony Hopkins starred in this movie?
+A married man
+10
+
+TV/Film: 1980s: In 1984, Anthony Hopkins starred in this movie?
+The bounty
+10
+
+TV/Film: 1980s: In 1984, Arnold Schwarzenegger starred in this movie?
+Conan the destroyer
+10
+
+TV/Film: 1980s: In 1984, Arnold Schwarzenegger starred in this movie?
+The terminator
+10
+
+TV/Film: 1980s: In 1984, Christopher Reeve starred in this movie?
+The bostonians
+10
+
+TV/Film: 1980s: In 1984, Dan Akroyd starred in this movie?
+Ghostbusters
+10
+
+TV/Film: 1980s: In 1984, Dan Akroyd starred in this movie?
+Indiana jones and the temple of doom
+10
+
+TV/Film: 1980s: In 1984, Dan Akroyd starred in this movie?
+Nothing lasts forever
+10
+
+TV/Film: 1980s: In 1984, Demi Moore starred in this movie?
+Blame it on rio
+10
+
+TV/Film: 1980s: In 1984, Denzel Washington starred in this movie?
+A soldier's story
+10
+
+TV/Film: 1980s: In 1984, Drew Barrymore starred in this movie?
+Firestarter
+10
+
+TV/Film: 1980s: In 1984, Drew Barrymore starred in this movie?
+Irreconcilable differences
+10
+
+TV/Film: 1980s: In 1984, Eddie Murphy starred in this movie?
+Best defense
+10
+
+TV/Film: 1980s: In 1984, Eddie Murphy starred in this movie?
+Beverly hills cop
+10
+
+TV/Film: 1980s: In 1984, Gene Hackman starred in this movie?
+Misunderstood
+10
+
+TV/Film: 1980s: In 1984, goldie hawn starred in this movie?
+Protocol
+10
+
+TV/Film: 1980s: In 1984, goldie hawn starred in this movie?
+Swing shift
+10
+
+TV/Film: 1980s: In 1984, Harrison Ford starred in this movie?
+Indiana jones and the temple of doom
+10
+
+TV/Film: 1980s: In 1984, James Woods starred in this movie?
+Against all odds
+10
+
+TV/Film: 1980s: In 1984, James Woods starred in this movie?
+Dodd
+10
+
+TV/Film: 1980s: In 1984, James Woods starred in this movie?
+Once upon a time in America
+10
+
+TV/Film: 1980s: In 1984, Jamie Lee Curtis starred in this movie?
+Love letters
+10
+
+TV/Film: 1980s: In 1984, Jane Fonda starred in this movie?
+The dollmaker
+10
+
+TV/Film: 1980s: In 1984, Jeff Bridges starred in this movie?
+Against all odds
+10
+
+TV/Film: 1980s: In 1984, Jeff Bridges starred in this movie?
+Starman
+10
+
+TV/Film: 1980s: In 1984, Jodie Foster starred in this movie?
+Hotel new hampshire
+10
+
+TV/Film: 1980s: In 1984, Jodie Foster starred in this movie?
+The blood of others
+10
+
+TV/Film: 1980s: In 1984, Jodie Foster starred in this movie?
+The hotel new hampshire
+10
+
+TV/Film: 1980s: In 1984, Kevin Bacon starred in this movie?
+Footloose
+10
+
+TV/Film: 1980s: In 1984, Kirstie Alley starred in this movie?
+Blind date
+10
+
+TV/Film: 1980s: In 1984, Kirstie Alley starred in this movie?
+Runaway
+10
+
+TV/Film: 1980s: In 1984, kurt russell starred in this movie?
+Swing shift
+10
+
+TV/Film: 1980s: In 1984, Mel Gibson starred in this movie?
+Mrs. soffel
+10
+
+TV/Film: 1980s: In 1984, Mel Gibson starred in this movie?
+The bounty
+10
+
+TV/Film: 1980s: In 1984, Mel Gibson starred in this movie?
+The river
+10
+
+TV/Film: 1980s: In 1984, Melanie Griffith starred in this movie?
+Body double
+10
+
+TV/Film: 1980s: In 1984, Meryl Streep starred in this movie?
+Falling in love
+10
+
+TV/Film: 1980s: In 1984, Michael Caine starred in this movie?
+Blame it on rio
+10
+
+TV/Film: 1980s: In 1984, Michael Caine starred in this movie?
+The jigsaw man
+10
+
+TV/Film: 1980s: In 1984, Michael Douglas starred in this movie?
+Romancing the stone
+10
+
+TV/Film: 1980s: In 1984, Michael Keaton starred in this movie?
+Johnny dangerously
+10
+
+TV/Film: 1980s: In 1984, Nicolas Cage starred in this movie?
+Birdy
+10
+
+TV/Film: 1980s: In 1984, Nicolas Cage starred in this movie?
+Racing with the moon
+10
+
+TV/Film: 1980s: In 1984, Nicolas Cage starred in this movie?
+The cotton club
+10
+
+TV/Film: 1980s: In 1984, Richard Gere starred in this movie?
+The cotton club
+10
+
+TV/Film: 1980s: In 1984, Robert De Niro starred in this movie?
+Falling in love
+10
+
+TV/Film: 1980s: In 1984, Robert De Niro starred in this movie?
+Once upon a time in America
+10
+
+TV/Film: 1980s: In 1984, Robin Williams starred in this movie?
+Moscow on the hudson
+10
+
+TV/Film: 1980s: In 1984, Sally Field starred in this movie?
+Places in the heart
+10
+
+TV/Film: 1980s: In 1984, Sarah Jessica Parker starred in this movie?
+Footloose
+10
+
+TV/Film: 1980s: In 1984, Sarah Michelle Gellar starred in this movie?
+Over the brooklyn bridge
+10
+
+TV/Film: 1980s: In 1984, Sean Connery starred in this movie?
+Sword of the valiant
+10
+
+TV/Film: 1980s: In 1984, Sharon Stone starred in this movie?
+Irreconcilable differences
+10
+
+TV/Film: 1980s: In 1984, Sharon Stone starred in this movie?
+The calendar girl murders
+10
+
+TV/Film: 1980s: In 1984, Sharon Stone starred in this movie?
+The vegas strip wars
+10
+
+TV/Film: 1980s: In 1984, Shirley MacLaine starred in this movie?
+Cannonball run ii
+10
+
+TV/Film: 1980s: In 1984, Sigourney Weaver starred in this movie?
+Ghostbusters
+10
+
+TV/Film: 1980s: In 1984, Susan Sarandon starred in this movie?
+He'll see you now
+10
+
+TV/Film: 1980s: In 1984, Susan Sarandon starred in this movie?
+The buddy system
+10
+
+TV/Film: 1980s: In 1984, Sylvester Stallone starred in this movie?
+Rhinestone
+10
+
+TV/Film: 1980s: In 1984, Tom Hanks starred in this movie?
+Bachelor party
+10
+
+TV/Film: 1980s: In 1984, Tom Hanks starred in this movie?
+Splash
+10
+
+TV/Film: 1980s: In 1984, Tommy Lee Jones starred in this movie?
+The river rat
+10
+
+TV/Film: 1980s: In 1985 film that casts Sean Penn and Timothy Hutton as spies?
+The falcon and the snowman
+10
+
+TV/Film: 1980s: In 1985, Alec Baldwin starred in this movie?
+Love on the run
+10
+
+TV/Film: 1980s: In 1985, Angela Lansbury starred in this movie?
+Ingrid
+10
+
+TV/Film: 1980s: In 1985, Angela Lansbury starred in this movie?
+The company of wolves
+10
+
+TV/Film: 1980s: In 1985, Anthony Hopkins starred in this movie?
+Arch of triumph
+10
+
+TV/Film: 1980s: In 1985, Anthony Hopkins starred in this movie?
+Guilty conscience
+10
+
+TV/Film: 1980s: In 1985, Anthony Hopkins starred in this movie?
+Mussolini & i
+10
+
+TV/Film: 1980s: In 1985, Arnold Schwarzenegger starred in this movie?
+Commando
+10
+
+TV/Film: 1980s: In 1985, Arnold Schwarzenegger starred in this movie?
+Red sonja
+10
+
+TV/Film: 1980s: In 1985, Bruce Willis starred in this movie?
+Moonlighting
+10
+
+TV/Film: 1980s: In 1985, Christopher Reeve starred in this movie?
+Anna karenina
+10
+
+TV/Film: 1980s: In 1985, Christopher Reeve starred in this movie?
+The aviator
+10
+
+TV/Film: 1980s: In 1985, Dan Akroyd starred in this movie?
+Into the night
+10
+
+TV/Film: 1980s: In 1985, Dan Akroyd starred in this movie?
+Spies like us
+10
+
+TV/Film: 1980s: In 1985, Demi Moore starred in this movie?
+No small affair
+10
+
+TV/Film: 1980s: In 1985, Demi Moore starred in this movie?
+St. elmo's fire
+10
+
+TV/Film: 1980s: In 1985, Drew Barrymore starred in this movie?
+Cat's eye
+10
+
+TV/Film: 1980s: In 1985, Dustin Hoffman starred in this movie?
+Death of a salesman
+10
+
+TV/Film: 1980s: In 1985, Elizabeth Taylor starred in this movie?
+Malice in wonderland
+10
+
+TV/Film: 1980s: In 1985, Gene Hackman starred in this movie?
+Target
+10
+
+TV/Film: 1980s: In 1985, Gene Hackman starred in this movie?
+Twice in a lifetime
+10
+
+TV/Film: 1980s: In 1985, Harrison Ford starred in this movie?
+Witness
+10
+
+TV/Film: 1980s: In 1985, James Woods starred in this movie?
+Badge of the assassin
+10
+
+TV/Film: 1980s: In 1985, James Woods starred in this movie?
+Cat's eye
+10
+
+TV/Film: 1980s: In 1985, James Woods starred in this movie?
+Joshua then and now
+10
+
+TV/Film: 1980s: In 1985, Jamie Lee Curtis starred in this movie?
+Perfect
+10
+
+TV/Film: 1980s: In 1985, Jane Fonda starred in this movie?
+Agnes of god
+10
+
+TV/Film: 1980s: In 1985, Jeff Bridges starred in this movie?
+Jagged edge
+10
+
+TV/Film: 1980s: In 1985, Jodie Foster starred in this movie?
+Mesmerized
+10
+
+TV/Film: 1980s: In 1985, John Travolta starred in this movie?
+Perfect
+10
+
+TV/Film: 1980s: In 1985, Katharine Hepburn starred in this movie?
+Grace quigley
+10
+
+TV/Film: 1980s: In 1985, Kevin Bacon starred in this movie?
+Enormous changes at the last minute
+10
+
+TV/Film: 1980s: In 1985, Kevin Costner starred in this movie?
+American flyers
+10
+
+TV/Film: 1980s: In 1985, Kevin Costner starred in this movie?
+Fandango
+10
+
+TV/Film: 1980s: In 1985, Kevin Costner starred in this movie?
+Silverado
+10
+
+TV/Film: 1980s: In 1985, kurt russell starred in this movie?
+The mean season
+10
+
+TV/Film: 1980s: In 1985, Lucille Ball starred in this movie?
+Stone pillow
+10
+
+TV/Film: 1980s: In 1985, Mel Gibson starred in this movie?
+Mad max: beyond thunderdome
+10
+
+TV/Film: 1980s: In 1985, Melanie Griffith starred in this movie?
+Alfred hitchcock presents
+10
+
+TV/Film: 1980s: In 1985, Melanie Griffith starred in this movie?
+Fear city
+10
+
+TV/Film: 1980s: In 1985, Meryl Streep starred in this movie?
+Out of africa
+10
+
+TV/Film: 1980s: In 1985, Meryl Streep starred in this movie?
+Plenty
+10
+
+TV/Film: 1980s: In 1985, Michael Caine starred in this movie?
+The holcroft covenant
+10
+
+TV/Film: 1980s: In 1985, Michael Caine starred in this movie?
+Water
+10
+
+TV/Film: 1980s: In 1985, Michael Douglas starred in this movie?
+A chorus line: the movie
+10
+
+TV/Film: 1980s: In 1985, Michael Douglas starred in this movie?
+The jewel of the nile
+10
+
+TV/Film: 1980s: In 1985, Michelle Pfeiffer starred in this movie?
+Into the night
+10
+
+TV/Film: 1980s: In 1985, Michelle Pfeiffer starred in this movie?
+Ladyhawke
+10
+
+TV/Film: 1980s: In 1985, Nicole Kidman starred in this movie?
+Archer's adventure
+10
+
+TV/Film: 1980s: In 1985, Nicole Kidman starred in this movie?
+Room to move
+10
+
+TV/Film: 1980s: In 1985, Nicole Kidman starred in this movie?
+The wacky world of wills and burke
+10
+
+TV/Film: 1980s: In 1985, Nicole Kidman starred in this movie?
+Wills and burke
+10
+
+TV/Film: 1980s: In 1985, Richard Gere starred in this movie?
+King David
+10
+
+TV/Film: 1980s: In 1985, Robert De Niro starred in this movie?
+Brazil
+10
+
+TV/Film: 1980s: In 1985, Sally Field starred in this movie?
+Murphy's romance
+10
+
+TV/Film: 1980s: In 1985, Sarah Jessica Parker starred in this movie?
+Girls just want to have fun
+10
+
+TV/Film: 1980s: In 1985, Sharon Stone starred in this movie?
+King solomon's mines
+10
+
+TV/Film: 1980s: In 1985, Susan Sarandon starred in this movie?
+Compromising positions
+10
+
+TV/Film: 1980s: In 1985, Susan Sarandon starred in this movie?
+Mussolini & i
+10
+
+TV/Film: 1980s: In 1985, Sylvester Stallone starred in this movie?
+Rambo: first blood part ii
+10
+
+TV/Film: 1980s: In 1985, Sylvester Stallone starred in this movie?
+Rocky iv
+10
+
+TV/Film: 1980s: In 1985, Tom Cruise starred in this movie?
+Legend
+10
+
+TV/Film: 1980s: In 1985, Tom Hanks starred in this movie?
+The man with one red shoe
+10
+
+TV/Film: 1980s: In 1985, Tom Hanks starred in this movie?
+Volunteers
+10
+
+TV/Film: 1980s: In 1985, Woody Allen starred in this movie?
+The purple rose of cairo
+10
+
+TV/Film: 1980s: In 1986, Alec Baldwin starred in this movie?
+Dress gray
+10
+
+TV/Film: 1980s: In 1986, Anthony Hopkins starred in this movie?
+The good father
+10
+
+TV/Film: 1980s: In 1986, Arnold Schwarzenegger starred in this movie?
+Raw deal
+10
+
+TV/Film: 1980s: In 1986, Audrey Hepburn starred in this movie?
+Directed by william wyler
+10
+
+TV/Film: 1980s: In 1986, Bette Midler starred in this movie?
+Down and out in beverly hills
+10
+
+TV/Film: 1980s: In 1986, Bette Midler starred in this movie?
+Ruthless people
+10
+
+TV/Film: 1980s: In 1986, Dan Akroyd starred in this movie?
+Comedy music videos
+10
+
+TV/Film: 1980s: In 1986, Demi Moore starred in this movie?
+About Last Night . . .
+10
+
+TV/Film: 1980s: In 1986, Demi Moore starred in this movie?
+One crazy summer
+10
+
+TV/Film: 1980s: In 1986, Demi Moore starred in this movie?
+Wisdom
+10
+
+TV/Film: 1980s: In 1986, Denzel Washington starred in this movie?
+Power
+10
+
+TV/Film: 1980s: In 1986, Denzel Washington starred in this movie?
+The george mckenna story
+10
+
+TV/Film: 1980s: In 1986, Drew Barrymore starred in this movie?
+Babes in toyland
+10
+
+TV/Film: 1980s: In 1986, Eddie Murphy starred in this movie?
+The golden child
+10
+
+TV/Film: 1980s: In 1986, Elizabeth Taylor starred in this movie?
+There must be a pony
+10
+
+TV/Film: 1980s: In 1986, Gene Hackman starred in this movie?
+Hoosiers
+10
+
+TV/Film: 1980s: In 1986, Gene Hackman starred in this movie?
+Power
+10
+
+TV/Film: 1980s: In 1986, goldie hawn starred in this movie?
+Wildcats
+10
+
+TV/Film: 1980s: In 1986, Harrison Ford starred in this movie?
+The mosquito coast
+10
+
+TV/Film: 1980s: In 1986, James Woods starred in this movie?
+Promise
+10
+
+TV/Film: 1980s: In 1986, James Woods starred in this movie?
+Salvador
+10
+
+TV/Film: 1980s: In 1986, Jane Fonda starred in this movie?
+The morning after
+10
+
+TV/Film: 1980s: In 1986, Jeff Bridges starred in this movie?
+The morning after
+10
+
+TV/Film: 1980s: In 1986, Jennifer Lopez starred in this movie?
+My little girl
+10
+
+TV/Film: 1980s: In 1986, Julie Andrews starred in this movie?
+That's life
+10
+
+TV/Film: 1980s: In 1986, Katharine Hepburn starred in this movie?
+Mrs. delafield wants to marry
+10
+
+TV/Film: 1980s: In 1986, Kevin Bacon starred in this movie?
+Quicksilver
+10
+
+TV/Film: 1980s: In 1986, kurt russell starred in this movie?
+Big trouble in little china
+10
+
+TV/Film: 1980s: In 1986, kurt russell starred in this movie?
+The best of times
+10
+
+TV/Film: 1980s: In 1986, Lauren Holly starred in this movie?
+Band of the hand
+10
+
+TV/Film: 1980s: In 1986, Meg Ryan starred in this movie?
+Armed and dangerous
+10
+
+TV/Film: 1980s: In 1986, Meg Ryan starred in this movie?
+Top gun
+10
+
+TV/Film: 1980s: In 1986, Melanie Griffith starred in this movie?
+Something wild
+10
+
+TV/Film: 1980s: In 1986, Meryl Streep starred in this movie?
+Heartburn
+10
+
+TV/Film: 1980s: In 1986, Michael Caine starred in this movie?
+Half moon street
+10
+
+TV/Film: 1980s: In 1986, Michael Caine starred in this movie?
+Hannah and her sisters
+10
+
+TV/Film: 1980s: In 1986, Michael Caine starred in this movie?
+Mona lisa
+10
+
+TV/Film: 1980s: In 1986, Michael Caine starred in this movie?
+Sweet liberty
+10
+
+TV/Film: 1980s: In 1986, Michael Keaton starred in this movie?
+Gung ho
+10
+
+TV/Film: 1980s: In 1986, Michael Keaton starred in this movie?
+Touch and go
+10
+
+TV/Film: 1980s: In 1986, Michelle Pfeiffer starred in this movie?
+Sweet liberty
+10
+
+TV/Film: 1980s: In 1986, Nicolas Cage starred in this movie?
+Peggy sue got married
+10
+
+TV/Film: 1980s: In 1986, Nicolas Cage starred in this movie?
+The boy in blue
+10
+
+TV/Film: 1980s: In 1986, Nicole Kidman starred in this movie?
+Archer
+10
+
+TV/Film: 1980s: In 1986, Nicole Kidman starred in this movie?
+Windrider
+10
+
+TV/Film: 1980s: In 1986, Pierce Brosnan starred in this movie?
+Nomads
+10
+
+TV/Film: 1980s: In 1986, Richard Gere starred in this movie?
+No mercy
+10
+
+TV/Film: 1980s: In 1986, Richard Gere starred in this movie?
+Power
+10
+
+TV/Film: 1980s: In 1986, Robert De Niro starred in this movie?
+The mission
+10
+
+TV/Film: 1980s: In 1986, Robin Williams starred in this movie?
+Club paradise
+10
+
+TV/Film: 1980s: In 1986, Robin Williams starred in this movie?
+Seize the day
+10
+
+TV/Film: 1980s: In 1986, Sarah Jessica Parker starred in this movie?
+The flight of the navigator
+10
+
+TV/Film: 1980s: In 1986, Sean Connery starred in this movie?
+Highlander
+10
+
+TV/Film: 1980s: In 1986, Sean Connery starred in this movie?
+The name of the rose
+10
+
+TV/Film: 1980s: In 1986, Sigourney Weaver starred in this movie?
+Aliens
+10
+
+TV/Film: 1980s: In 1986, Sigourney Weaver starred in this movie?
+Half moon street
+10
+
+TV/Film: 1980s: In 1986, Susan Sarandon starred in this movie?
+Women of valor
+10
+
+TV/Film: 1980s: In 1986, Sylvester Stallone starred in this movie?
+Cobra
+10
+
+TV/Film: 1980s: In 1986, Tom Cruise starred in this movie?
+The color of money
+10
+
+TV/Film: 1980s: In 1986, Tom Cruise starred in this movie?
+Top gun
+10
+
+TV/Film: 1980s: In 1986, Tom Hanks starred in this movie?
+Every time we say goodbye
+10
+
+TV/Film: 1980s: In 1986, Tom Hanks starred in this movie?
+Nothing in common
+10
+
+TV/Film: 1980s: In 1986, Tom Hanks starred in this movie?
+The money pit
+10
+
+TV/Film: 1980s: In 1986, Tommy Lee Jones starred in this movie?
+Black moon rising
+10
+
+TV/Film: 1980s: In 1986, Wesley Snipes starred in this movie?
+Streets of gold
+10
+
+TV/Film: 1980s: In 1986, Wesley Snipes starred in this movie?
+Wildcats
+10
+
+TV/Film: 1980s: In 1986, Whoopi Goldberg starred in this movie?
+Jumpin' jack flash
+10
+
+TV/Film: 1980s: In 1986, Winona Ryder starred in this movie?
+Lucas
+10
+
+TV/Film: 1980s: In 1986, Woody Allen starred in this movie?
+Hannah and her sisters
+10
+
+TV/Film: 1980s: In 1987 film that has a nude Julie andrews trying to seduce a junkman?
+Duet for one
+10
+
+TV/Film: 1980s: In 1987 movie that teamed Matthew Broderick and Willie the Chimp?
+Project x
+10
+
+TV/Film: 1980s: In 1987, Arnold Schwarzenegger starred in this movie?
+Predator
+10
+
+TV/Film: 1980s: In 1987, Arnold Schwarzenegger starred in this movie?
+The running man
+10
+
+TV/Film: 1980s: In 1987, Audrey Hepburn starred in this movie?
+Love among thieves
+10
+
+TV/Film: 1980s: In 1987, Barbra Streisand starred in this movie?
+Nuts
+10
+
+TV/Film: 1980s: In 1987, Bette Midler starred in this movie?
+Outrageous fortune
+10
+
+TV/Film: 1980s: In 1987, Billy Crystal starred in this movie?
+The princess bride
+10
+
+TV/Film: 1980s: In 1987, Billy Crystal starred in this movie?
+Throw momma from the train
+10
+
+TV/Film: 1980s: In 1987, Bruce Willis starred in this movie?
+Blind date
+10
+
+TV/Film: 1980s: In 1987, Christopher Reeve starred in this movie?
+Street smart
+10
+
+TV/Film: 1980s: In 1987, Christopher Reeve starred in this movie?
+Superman iv: the quest for peace
+10
+
+TV/Film: 1980s: In 1987, Dan Akroyd starred in this movie?
+Dragnet
+10
+
+TV/Film: 1980s: In 1987, Denzel Washington starred in this movie?
+Cry freedom
+10
+
+TV/Film: 1980s: In 1987, Drew Barrymore starred in this movie?
+Conspiracy of love
+10
+
+TV/Film: 1980s: In 1987, Dustin Hoffman starred in this movie?
+Ishtar
+10
+
+TV/Film: 1980s: In 1987, Eddie Murphy starred in this movie?
+Hollywood shuffle
+10
+
+TV/Film: 1980s: In 1987, Elizabeth Hurley starred in this movie?
+Aria
+10
+
+TV/Film: 1980s: In 1987, Elizabeth Taylor starred in this movie?
+Poker alice
+10
+
+TV/Film: 1980s: In 1987, Gene Hackman starred in this movie?
+No way out
+10
+
+TV/Film: 1980s: In 1987, George Clooney starred in this movie?
+Return to horror high
+10
+
+TV/Film: 1980s: In 1987, goldie hawn starred in this movie?
+Overboard
+10
+
+TV/Film: 1980s: In 1987, Hugh Grant starred in this movie?
+Maurice
+10
+
+TV/Film: 1980s: In 1987, James Woods starred in this movie?
+Best seller
+10
+
+TV/Film: 1980s: In 1987, Jamie Lee Curtis starred in this movie?
+A man in love
+10
+
+TV/Film: 1980s: In 1987, Jamie Lee Curtis starred in this movie?
+Amazing grace and chuck
+10
+
+TV/Film: 1980s: In 1987, Jeff Bridges starred in this movie?
+Eight million ways to die
+10
+
+TV/Film: 1980s: In 1987, Jeff Bridges starred in this movie?
+Nadine
+10
+
+TV/Film: 1980s: In 1987, Jodie Foster starred in this movie?
+Siesta
+10
+
+TV/Film: 1980s: In 1987, Julie Andrews starred in this movie?
+Duet for one
+10
+
+TV/Film: 1980s: In 1987, Kevin Bacon starred in this movie?
+Lemon sky
+10
+
+TV/Film: 1980s: In 1987, Kevin Costner starred in this movie?
+No way out
+10
+
+TV/Film: 1980s: In 1987, Kevin Costner starred in this movie?
+The untouchables
+10
+
+TV/Film: 1980s: In 1987, Kirstie Alley starred in this movie?
+Summer school
+10
+
+TV/Film: 1980s: In 1987, kurt russell starred in this movie?
+Overboard
+10
+
+TV/Film: 1980s: In 1987, Meg Ryan starred in this movie?
+Innerspace
+10
+
+TV/Film: 1980s: In 1987, Mel Gibson starred in this movie?
+Lethal weapon
+10
+
+TV/Film: 1980s: In 1987, Melanie Griffith starred in this movie?
+Cherry 2000
+10
+
+TV/Film: 1980s: In 1987, Meryl Streep starred in this movie?
+Ironweed
+10
+
+TV/Film: 1980s: In 1987, Michael Caine starred in this movie?
+Jaws: the revenge
+10
+
+TV/Film: 1980s: In 1987, Michael Caine starred in this movie?
+Surrender
+10
+
+TV/Film: 1980s: In 1987, Michael Caine starred in this movie?
+The fourth protocol
+10
+
+TV/Film: 1980s: In 1987, Michael Caine starred in this movie?
+The whistle blower
+10
+
+TV/Film: 1980s: In 1987, Michael Douglas starred in this movie?
+Fatal attraction
+10
+
+TV/Film: 1980s: In 1987, Michael Douglas starred in this movie?
+Wall street
+10
+
+TV/Film: 1980s: In 1987, Michael Keaton starred in this movie?
+The squeeze
+10
+
+TV/Film: 1980s: In 1987, Michelle Pfeiffer starred in this movie?
+Amazon women on the moon
+10
+
+TV/Film: 1980s: In 1987, Michelle Pfeiffer starred in this movie?
+The witches of eastwick
+10
+
+TV/Film: 1980s: In 1987, Nicolas Cage starred in this movie?
+Moonstruck
+10
+
+TV/Film: 1980s: In 1987, Nicolas Cage starred in this movie?
+Raising arizona
+10
+
+TV/Film: 1980s: In 1987, Nicole Kidman starred in this movie?
+Night master
+10
+
+TV/Film: 1980s: In 1987, Nicole Kidman starred in this movie?
+Watch the shadows dance
+10
+
+TV/Film: 1980s: In 1987, Pierce Brosnan starred in this movie?
+Taffin
+10
+
+TV/Film: 1980s: In 1987, Pierce Brosnan starred in this movie?
+The fourth protocol
+10
+
+TV/Film: 1980s: In 1987, Raquel Welch starred in this movie?
+Right to die
+10
+
+TV/Film: 1980s: In 1987, Robert De Niro starred in this movie?
+Angel heart
+10
+
+TV/Film: 1980s: In 1987, Robert De Niro starred in this movie?
+The untouchables
+10
+
+TV/Film: 1980s: In 1987, Sally Field starred in this movie?
+Surrender
+10
+
+TV/Film: 1980s: In 1987, Sean Connery starred in this movie?
+The untouchables
+10
+
+TV/Film: 1980s: In 1987, Sharon Stone starred in this movie?
+Allan quartermain and the lost city of gold
+10
+
+TV/Film: 1980s: In 1987, Sharon Stone starred in this movie?
+Police academy 4: citizen's patrol
+10
+
+TV/Film: 1980s: In 1987, Shirley MacLaine starred in this movie?
+Out on a limb
+10
+
+TV/Film: 1980s: In 1987, Sigourney Weaver starred in this movie?
+One woman or two
+10
+
+TV/Film: 1980s: In 1987, Susan Sarandon starred in this movie?
+The witches of eastwick
+10
+
+TV/Film: 1980s: In 1987, Sylvester Stallone starred in this movie?
+Over the top
+10
+
+TV/Film: 1980s: In 1987, Tom Hanks starred in this movie?
+Dragnet
+10
+
+TV/Film: 1980s: In 1987, Tommy Lee Jones starred in this movie?
+The big town
+10
+
+TV/Film: 1980s: In 1987, Whoopi Goldberg starred in this movie?
+Burglar
+10
+
+TV/Film: 1980s: In 1987, Whoopi Goldberg starred in this movie?
+Fatal beauty
+10
+
+TV/Film: 1980s: In 1987, Winona Ryder starred in this movie?
+Square dance
+10
+
+TV/Film: 1980s: In 1987, Woody Allen starred in this movie?
+King lear
+10
+
+TV/Film: 1980s: In 1988, Alec Baldwin starred in this movie?
+Beetlejuice
+10
+
+TV/Film: 1980s: In 1988, Alec Baldwin starred in this movie?
+Married to the mob
+10
+
+TV/Film: 1980s: In 1988, Alec Baldwin starred in this movie?
+She's having a baby
+10
+
+TV/Film: 1980s: In 1988, Alec Baldwin starred in this movie?
+Talk radio
+10
+
+TV/Film: 1980s: In 1988, Alec Baldwin starred in this movie?
+Working girl
+10
+
+TV/Film: 1980s: In 1988, Anthony Hopkins starred in this movie?
+A chorus of disapproval
+10
+
+TV/Film: 1980s: In 1988, Anthony Hopkins starred in this movie?
+The dawning
+10
+
+TV/Film: 1980s: In 1988, Anthony Hopkins starred in this movie?
+The tenth man
+10
+
+TV/Film: 1980s: In 1988, Arnold Schwarzenegger starred in this movie?
+Red heat
+10
+
+TV/Film: 1980s: In 1988, Arnold Schwarzenegger starred in this movie?
+Twins
+10
+
+TV/Film: 1980s: In 1988, Bette Midler starred in this movie?
+Beaches
+10
+
+TV/Film: 1980s: In 1988, Bette Midler starred in this movie?
+Big business
+10
+
+TV/Film: 1980s: In 1988, Bette Midler starred in this movie?
+Oliver and company
+10
+
+TV/Film: 1980s: In 1988, Billy Crystal starred in this movie?
+Memories of me
+10
+
+TV/Film: 1980s: In 1988, Bruce Willis starred in this movie?
+Die hard
+10
+
+TV/Film: 1980s: In 1988, Bruce Willis starred in this movie?
+Sunset
+10
+
+TV/Film: 1980s: In 1988, Christopher Reeve starred in this movie?
+Switching channels
+10
+
+TV/Film: 1980s: In 1988, Dan Akroyd starred in this movie?
+Caddyshack ii
+10
+
+TV/Film: 1980s: In 1988, Dan Akroyd starred in this movie?
+My stepmother is an alien
+10
+
+TV/Film: 1980s: In 1988, Dan Akroyd starred in this movie?
+The couch trip
+10
+
+TV/Film: 1980s: In 1988, Dan Akroyd starred in this movie?
+The great outdoors
+10
+
+TV/Film: 1980s: In 1988, Demi Moore starred in this movie?
+The seventh sign
+10
+
+TV/Film: 1980s: In 1988, Denzel Washington starred in this movie?
+Reunion
+10
+
+TV/Film: 1980s: In 1988, Drew Barrymore starred in this movie?
+Far from home
+10
+
+TV/Film: 1980s: In 1988, Dustin Hoffman starred in this movie?
+Rain man
+10
+
+TV/Film: 1980s: In 1988, Eddie Murphy starred in this movie?
+Coming to America
+10
+
+TV/Film: 1980s: In 1988, Elizabeth Hurley starred in this movie?
+Rowing with the wind
+10
+
+TV/Film: 1980s: In 1988, Elizabeth Taylor starred in this movie?
+Young toscanini
+10
+
+TV/Film: 1980s: In 1988, Gene Hackman starred in this movie?
+Another woman
+10
+
+TV/Film: 1980s: In 1988, Gene Hackman starred in this movie?
+Bat 21
+10
+
+TV/Film: 1980s: In 1988, Gene Hackman starred in this movie?
+Full moon in blue water
+10
+
+TV/Film: 1980s: In 1988, Gene Hackman starred in this movie?
+Mississippi burning
+10
+
+TV/Film: 1980s: In 1988, Gene Hackman starred in this movie?
+Split decisions
+10
+
+TV/Film: 1980s: In 1988, George Clooney starred in this movie?
+Return of the killer tomatoes
+10
+
+TV/Film: 1980s: In 1988, Harrison Ford starred in this movie?
+Frantic
+10
+
+TV/Film: 1980s: In 1988, Harrison Ford starred in this movie?
+Working girl
+10
+
+TV/Film: 1980s: In 1988, Hugh Grant starred in this movie?
+Lair of the white worm
+10
+
+TV/Film: 1980s: In 1988, Hugh Grant starred in this movie?
+Rowing with the wind
+10
+
+TV/Film: 1980s: In 1988, Hugh Grant starred in this movie?
+The dawning
+10
+
+TV/Film: 1980s: In 1988, Hugh Grant starred in this movie?
+White mischief
+10
+
+TV/Film: 1980s: In 1988, James Woods starred in this movie?
+Cop
+10
+
+TV/Film: 1980s: In 1988, James Woods starred in this movie?
+The boost
+10
+
+TV/Film: 1980s: In 1988, Jamie Lee Curtis starred in this movie?
+A fish called wanda
+10
+
+TV/Film: 1980s: In 1988, Jamie Lee Curtis starred in this movie?
+Dominick and eugene
+10
+
+TV/Film: 1980s: In 1988, Jane Fonda starred in this movie?
+Old gringo
+10
+
+TV/Film: 1980s: In 1988, Jeff Bridges starred in this movie?
+Tucker: the man and his dream
+10
+
+TV/Film: 1980s: In 1988, Jodie Foster starred in this movie?
+Five corners
+10
+
+TV/Film: 1980s: In 1988, Jodie Foster starred in this movie?
+Stealing home
+10
+
+TV/Film: 1980s: In 1988, Jodie Foster starred in this movie?
+The accused
+10
+
+TV/Film: 1980s: In 1988, Julia Roberts starred in this movie?
+Satisfaction
+10
+
+TV/Film: 1980s: In 1988, Katharine Hepburn starred in this movie?
+Going hollywood: the war years
+10
+
+TV/Film: 1980s: In 1988, Katharine Hepburn starred in this movie?
+Laura lansing slept here
+10
+
+TV/Film: 1980s: In 1988, Kevin Bacon starred in this movie?
+Criminal law
+10
+
+TV/Film: 1980s: In 1988, Kevin Bacon starred in this movie?
+End of the line
+10
+
+TV/Film: 1980s: In 1988, Kevin Bacon starred in this movie?
+She's having a baby
+10
+
+TV/Film: 1980s: In 1988, Kevin Costner starred in this movie?
+Bull durham
+10
+
+TV/Film: 1980s: In 1988, Kirstie Alley starred in this movie?
+She's having a baby
+10
+
+TV/Film: 1980s: In 1988, Kirstie Alley starred in this movie?
+Shoot to kill
+10
+
+TV/Film: 1980s: In 1988, kurt russell starred in this movie?
+Tequila sunrise
+10
+
+TV/Film: 1980s: In 1988, Lauren Bacall starred in this movie?
+Appointment with death
+10
+
+TV/Film: 1980s: In 1988, Lauren Bacall starred in this movie?
+Mr. north
+10
+
+TV/Film: 1980s: In 1988, Meg Ryan starred in this movie?
+D.O.A.
+10
+
+TV/Film: 1980s: In 1988, Meg Ryan starred in this movie?
+Promised land
+10
+
+TV/Film: 1980s: In 1988, Meg Ryan starred in this movie?
+The presidio
+10
+
+TV/Film: 1980s: In 1988, Mel Gibson starred in this movie?
+Tequila sunrise
+10
+
+TV/Film: 1980s: In 1988, Melanie Griffith starred in this movie?
+Stormy monday
+10
+
+TV/Film: 1980s: In 1988, Melanie Griffith starred in this movie?
+The milagro beanfield war
+10
+
+TV/Film: 1980s: In 1988, Melanie Griffith starred in this movie?
+Working girl
+10
+
+TV/Film: 1980s: In 1988, Meryl Streep starred in this movie?
+A cry in the dark
+10
+
+TV/Film: 1980s: In 1988, Michael Caine starred in this movie?
+Dirty rotten scoundrels
+10
+
+TV/Film: 1980s: In 1988, Michael Caine starred in this movie?
+Jack the ripper
+10
+
+TV/Film: 1980s: In 1988, Michael Caine starred in this movie?
+Without a clue
+10
+
+TV/Film: 1980s: In 1988, Michael Keaton starred in this movie?
+Beetlejuice
+10
+
+TV/Film: 1980s: In 1988, Michael Keaton starred in this movie?
+Clean and sober
+10
+
+TV/Film: 1980s: In 1988, Michelle Pfeiffer starred in this movie?
+Dangerous liaisons
+10
+
+TV/Film: 1980s: In 1988, Michelle Pfeiffer starred in this movie?
+Married to the mob
+10
+
+TV/Film: 1980s: In 1988, Michelle Pfeiffer starred in this movie?
+Tequila sunrise
+10
+
+TV/Film: 1980s: In 1988, Pierce Brosnan starred in this movie?
+The deceivers
+10
+
+TV/Film: 1980s: In 1988, Raquel Welch starred in this movie?
+Scandal in a small town
+10
+
+TV/Film: 1980s: In 1988, Robert De Niro starred in this movie?
+Midnight run
+10
+
+TV/Film: 1980s: In 1988, Robin Williams starred in this movie?
+The adventures of baron munchausen
+10
+
+TV/Film: 1980s: In 1988, Sally Field starred in this movie?
+Punchline
+10
+
+TV/Film: 1980s: In 1988, Sarah Michelle Gellar starred in this movie?
+Funny farm
+10
+
+TV/Film: 1980s: In 1988, Sean Connery starred in this movie?
+Memories of me
+10
+
+TV/Film: 1980s: In 1988, Sean Connery starred in this movie?
+The presidio
+10
+
+TV/Film: 1980s: In 1988, Sharon Stone starred in this movie?
+Above the law
+10
+
+TV/Film: 1980s: In 1988, Sharon Stone starred in this movie?
+Action jackson
+10
+
+TV/Film: 1980s: In 1988, Sharon Stone starred in this movie?
+Cold steel
+10
+
+TV/Film: 1980s: In 1988, Shirley MacLaine starred in this movie?
+Madame sousatzka
+10
+
+TV/Film: 1980s: In 1988, Sigourney Weaver starred in this movie?
+Gorillas in the mist
+10
+
+TV/Film: 1980s: In 1988, Sigourney Weaver starred in this movie?
+Working girl
+10
+
+TV/Film: 1980s: In 1988, Susan Sarandon starred in this movie?
+Bull durham
+10
+
+TV/Film: 1980s: In 1988, Susan Sarandon starred in this movie?
+Sweet hearts dance
+10
+
+TV/Film: 1980s: In 1988, Sylvester Stallone starred in this movie?
+Rambo iii
+10
+
+TV/Film: 1980s: In 1988, Tom Cruise starred in this movie?
+Cocktail
+10
+
+TV/Film: 1980s: In 1988, Tom Hanks starred in this movie?
+Big
+10
+
+TV/Film: 1980s: In 1988, Tom Hanks starred in this movie?
+Punchline
+10
+
+TV/Film: 1980s: In 1988, Tommy Lee Jones starred in this movie?
+Stormy monday
+10
+
+TV/Film: 1980s: In 1988, Whoopi Goldberg starred in this movie?
+Clara's heart
+10
+
+TV/Film: 1980s: In 1988, Whoopi Goldberg starred in this movie?
+The telephone
+10
+
+TV/Film: 1980s: In 1988, Winona Ryder starred in this movie?
+Beetlejuice
+10
+
+TV/Film: 1980s: In 1989, Alec Baldwin starred in this movie?
+Great balls of fire!
+10
+
+TV/Film: 1980s: In 1989, Angela Lansbury starred in this movie?
+The shell seekers
+10
+
+TV/Film: 1980s: In 1989, Audrey Hepburn starred in this movie?
+Always
+10
+
+TV/Film: 1980s: In 1989, Billy Crystal starred in this movie?
+When harry met sally ...
+10
+
+TV/Film: 1980s: In 1989, Brad Pitt starred in this movie?
+Cutting class
+10
+
+TV/Film: 1980s: In 1989, Brad Pitt starred in this movie?
+Happy together
+10
+
+TV/Film: 1980s: In 1989, Bruce Willis starred in this movie?
+In country
+10
+
+TV/Film: 1980s: In 1989, Bruce Willis starred in this movie?
+Look who's talking
+10
+
+TV/Film: 1980s: In 1989, Bruce Willis starred in this movie?
+That's adequate
+10
+
+TV/Film: 1980s: In 1989, Dan Akroyd starred in this movie?
+Driving miss daisy
+10
+
+TV/Film: 1980s: In 1989, Dan Akroyd starred in this movie?
+Ghostbusters 2
+10
+
+TV/Film: 1980s: In 1989, Dan Akroyd starred in this movie?
+Loose cannons
+10
+
+TV/Film: 1980s: In 1989, Demi Moore starred in this movie?
+We're no angels
+10
+
+TV/Film: 1980s: In 1989, Denzel Washington starred in this movie?
+For queen and country
+10
+
+TV/Film: 1980s: In 1989, Denzel Washington starred in this movie?
+Glory
+10
+
+TV/Film: 1980s: In 1989, Denzel Washington starred in this movie?
+The mighty quinn
+10
+
+TV/Film: 1980s: In 1989, Drew Barrymore starred in this movie?
+See you in the morning
+10
+
+TV/Film: 1980s: In 1989, Dustin Hoffman starred in this movie?
+Family business
+10
+
+TV/Film: 1980s: In 1989, Eddie Murphy starred in this movie?
+Harlem nights
+10
+
+TV/Film: 1980s: In 1989, Elizabeth Taylor starred in this movie?
+Sweet bird of youth
+10
+
+TV/Film: 1980s: In 1989, Emma Thompson starred in this movie?
+Henry v
+10
+
+TV/Film: 1980s: In 1989, Emma Thompson starred in this movie?
+The tall guy
+10
+
+TV/Film: 1980s: In 1989, Gene Hackman starred in this movie?
+Loose cannons
+10
+
+TV/Film: 1980s: In 1989, Gene Hackman starred in this movie?
+The package
+10
+
+TV/Film: 1980s: In 1989, Harrison Ford starred in this movie?
+Indiana jones and the last crusade
+10
+
+TV/Film: 1980s: In 1989, Hugh Grant starred in this movie?
+The lady and the highwayman
+10
+
+TV/Film: 1980s: In 1989, Hugh Grant starred in this movie?
+Till we meet again
+10
+
+TV/Film: 1980s: In 1989, James Woods starred in this movie?
+Immediate family
+10
+
+TV/Film: 1980s: In 1989, James Woods starred in this movie?
+My Name is Bill W.
+10
+
+TV/Film: 1980s: In 1989, James Woods starred in this movie?
+True believer
+10
+
+TV/Film: 1980s: In 1989, Jeff Bridges starred in this movie?
+Cold feet
+10
+
+TV/Film: 1980s: In 1989, Jeff Bridges starred in this movie?
+See you in the morning
+10
+
+TV/Film: 1980s: In 1989, Jeff Bridges starred in this movie?
+The fabulous baker boys
+10
+
+TV/Film: 1980s: In 1989, Jodie Foster starred in this movie?
+Backtrack
+10
+
+TV/Film: 1980s: In 1989, John Travolta starred in this movie?
+Look who's talking
+10
+
+TV/Film: 1980s: In 1989, John Travolta starred in this movie?
+The experts
+10
+
+TV/Film: 1980s: In 1989, Julia Roberts starred in this movie?
+Blood red
+10
+
+TV/Film: 1980s: In 1989, Julia Roberts starred in this movie?
+Steel magnolias
+10
+
+TV/Film: 1980s: In 1989, Kevin Bacon starred in this movie?
+The big picture
+10
+
+TV/Film: 1980s: In 1989, Kevin Bacon starred in this movie?
+Tremors
+10
+
+TV/Film: 1980s: In 1989, Kevin Costner starred in this movie?
+Field of dreams
+10
+
+TV/Film: 1980s: In 1989, Kirstie Alley starred in this movie?
+Look who's talking
+10
+
+TV/Film: 1980s: In 1989, Kirstie Alley starred in this movie?
+Loverboy
+10
+
+TV/Film: 1980s: In 1989, kurt russell starred in this movie?
+Tango and cash
+10
+
+TV/Film: 1980s: In 1989, kurt russell starred in this movie?
+Winter people
+10
+
+TV/Film: 1980s: In 1989, Lauren Bacall starred in this movie?
+Dinner at eight
+10
+
+TV/Film: 1980s: In 1989, Marlon Brando starred in this movie?
+A dry white season
+10
+
+TV/Film: 1980s: In 1989, Meg Ryan starred in this movie?
+When harry met sally ...
+10
+
+TV/Film: 1980s: In 1989, Mel Gibson starred in this movie?
+Lethal weapon 2
+10
+
+TV/Film: 1980s: In 1989, Michael Douglas starred in this movie?
+Black rain
+10
+
+TV/Film: 1980s: In 1989, Michael Douglas starred in this movie?
+The war of the roses
+10
+
+TV/Film: 1980s: In 1989, Michael Keaton starred in this movie?
+Batman
+10
+
+TV/Film: 1980s: In 1989, Michael Keaton starred in this movie?
+The dream team
+10
+
+TV/Film: 1980s: In 1989, Michelle Pfeiffer starred in this movie?
+The fabulous baker boys
+10
+
+TV/Film: 1980s: In 1989, Nicolas Cage starred in this movie?
+Vampire's kiss
+10
+
+TV/Film: 1980s: In 1989, Nicole Kidman starred in this movie?
+Dead calm
+10
+
+TV/Film: 1980s: In 1989, Pierce Brosnan starred in this movie?
+The heist
+10
+
+TV/Film: 1980s: In 1989, Raquel Welch starred in this movie?
+Trouble in paradise
+10
+
+TV/Film: 1980s: In 1989, Robert De Niro starred in this movie?
+Jacknife
+10
+
+TV/Film: 1980s: In 1989, Robert De Niro starred in this movie?
+We're no angels
+10
+
+TV/Film: 1980s: In 1989, Robin Williams starred in this movie?
+Dead poets society
+10
+
+TV/Film: 1980s: In 1989, Sally Field starred in this movie?
+Steel magnolias
+10
+
+TV/Film: 1980s: In 1989, Sarah Michelle Gellar starred in this movie?
+High stakes
+10
+
+TV/Film: 1980s: In 1989, Sean Connery starred in this movie?
+Family business
+10
+
+TV/Film: 1980s: In 1989, Sean Connery starred in this movie?
+Indiana jones and the last crusade
+10
+
+TV/Film: 1980s: In 1989, Sharon Stone starred in this movie?
+Beyond the stars
+10
+
+TV/Film: 1980s: In 1989, Sharon Stone starred in this movie?
+Blood and sand
+10
+
+TV/Film: 1980s: In 1989, Shirley MacLaine starred in this movie?
+Steel magnolias
+10
+
+TV/Film: 1980s: In 1989, Sigourney Weaver starred in this movie?
+Ghostbusters 2
+10
+
+TV/Film: 1980s: In 1989, Sigourney Weaver starred in this movie?
+Helmut newton: frames from the edge
+10
+
+TV/Film: 1980s: In 1989, Susan Sarandon starred in this movie?
+A dry white season
+10
+
+TV/Film: 1980s: In 1989, Susan Sarandon starred in this movie?
+Da grande
+10
+
+TV/Film: 1980s: In 1989, Susan Sarandon starred in this movie?
+Erik the viking
+10
+
+TV/Film: 1980s: In 1989, Susan Sarandon starred in this movie?
+The january man
+10
+
+TV/Film: 1980s: In 1989, Sylvester Stallone starred in this movie?
+Lock up
+10
+
+TV/Film: 1980s: In 1989, Sylvester Stallone starred in this movie?
+Tango and cash
+10
+
+TV/Film: 1980s: In 1989, Tom Hanks starred in this movie?
+The 'burbs
+10
+
+TV/Film: 1980s: In 1989, Tom Hanks starred in this movie?
+Turner and hooch
+10
+
+TV/Film: 1980s: In 1989, Tommy Lee Jones starred in this movie?
+The package
+10
+
+TV/Film: 1980s: In 1989, Wesley Snipes starred in this movie?
+King of New York
+10
+
+TV/Film: 1980s: In 1989, Wesley Snipes starred in this movie?
+Major league
+10
+
+TV/Film: 1980s: In 1989, Whoopi Goldberg starred in this movie?
+Homer and eddie
+10
+
+TV/Film: 1980s: In 1989, Whoopi Goldberg starred in this movie?
+Kiss shot
+10
+
+TV/Film: 1980s: In 1989, Winona Ryder starred in this movie?
+Heathers
+10
+
+TV/Film: 1980s: In 1989, Woody Allen starred in this movie?
+New york stories
+10
+
+TV/Film: 1980s: iron ____?
+Eagle
+10
+
+TV/Film: 1980s: jeff bridges, phone home?
+Starman
+10
+
+TV/Film: 1980s: johnny ____?
+Dangerously
+10
+
+TV/Film: 1980s: jumpin' jack ____?
+Flash
+10
+
+TV/Film: 1980s: just one of the ____?
+Guys
+10
+
+TV/Film: 1980s: killer ____ from outer space?
+Klowns
+10
+
+TV/Film: 1980s: ladies and gentlemen, introducing denzel Washington?
+Glory
+10
+
+TV/Film: 1980s: less than ____?
+Zero
+10
+
+TV/Film: 1980s: let's make chevy chase a spy!?
+Fletch
+10
+
+TV/Film: 1980s: license to ____?
+Drive
+10
+
+TV/Film: 1980s: little tommy hanks gets his wish?
+Big
+10
+
+TV/Film: 1980s: lost ____?
+Boys
+10
+
+TV/Film: 1980s: mad ____?
+Max
+10
+
+TV/Film: 1980s: mad max beyond ____?
+Thunderdome
+10
+
+TV/Film: 1980s: making the ____?
+Grade
+10
+
+TV/Film: 1980s: Mary Elizabeth Mastrantonio (MM!) in a deep-sea odyssey?
+Abyss
+10
+
+TV/Film: 1980s: mary elizabeth mastrantonio in a deep-sea odyssey?
+Abyss
+10
+
+TV/Film: 1980s: maximum ____?
+Overdrive
+10
+
+TV/Film: 1980s: Michael Mann's slick classic?
+Miami vice
+10
+
+TV/Film: 1980s: michelle pfeiffer scores as a predatory bird?
+Ladyhawke
+10
+
+TV/Film: 1980s: midnight ____?
+Run
+10
+
+TV/Film: 1980s: mix jeff goldblum's and geena davis's dna, then remove geena davis's dna?
+Fly
+10
+
+TV/Film: 1980s: mix kim cattrall, a honky-tonk, and a bunch of teenage boys?
+Porky's
+10
+
+TV/Film: 1980s: mmm. tastes like fish?
+Splash
+10
+
+TV/Film: 1980s: moon over ____?
+Parador
+10
+
+TV/Film: 1980s: moon____?
+Walker
+10
+
+TV/Film: 1980s: Movie that earned Glenn Close her 2nd Oscar nomination?
+The big chill
+10
+
+TV/Film: 1980s: mr. ____?
+Mom
+10
+
+TV/Film: 1980s: my ____ project?
+Science
+10
+
+TV/Film: 1980s: my left ____?
+Foot
+10
+
+TV/Film: 1980s: naked ____?
+Gun
+10
+
+TV/Film: 1980s: Name the movie with the quote and never call me shirley?
+Airplane
+10
+
+TV/Film: 1980s: national lampoon's ____?
+Vacation
+10
+
+TV/Film: 1980s: near ____?
+Dark
+10
+
+TV/Film: 1980s: never say ____ again?
+Never
+10
+
+TV/Film: 1980s: never, never add water?
+Gremlins
+10
+
+TV/Film: 1980s: night ____?
+Shift
+10
+
+TV/Film: 1980s: night of the ____?
+Comet
+10
+
+TV/Film: 1980s: nightmare on ____ street?
+Elm
+10
+
+TV/Film: 1980s: nineteen ____?
+Eighty-four
+10
+
+TV/Film: 1980s: no way ____?
+Out
+10
+
+TV/Film: 1980s: no, not gremlins, they're?
+Critters
+10
+
+TV/Film: 1980s: Object that Ayla becomes secretly proficient with in Clan of the Cave Bear?
+The sling
+10
+
+TV/Film: 1980s: olivia newton-john meets mt. olympus?
+Xanadu
+10
+
+TV/Film: 1980s: on golden ____?
+Pond
+10
+
+TV/Film: 1980s: one ____ summer?
+Crazy
+10
+
+TV/Film: 1980s: one-eyed willie and his hidden treasure save the day?
+Goonies
+10
+
+TV/Film: 1980s: out of ____?
+Africa
+10
+
+TV/Film: 1980s: palais ____?
+Royale
+10
+
+TV/Film: 1980s: playing for ____?
+Keeps
+10
+
+TV/Film: 1980s: police ____?
+Academy
+10
+
+TV/Film: 1980s: proof that there's life in the afterlife. and geena davis's lips?
+Beetlejuice
+10
+
+TV/Film: 1980s: racing with the ____?
+Moon
+10
+
+TV/Film: 1980s: raging ____?
+Bull
+10
+
+TV/Film: 1980s: raiders of the ____ ark?
+Lost
+10
+
+TV/Film: 1980s: raising ____?
+Arizona
+10
+
+TV/Film: 1980s: raw ____?
+Deal
+10
+
+TV/Film: 1980s: real ____?
+Genius
+10
+
+TV/Film: 1980s: red ____?
+Dawn
+10
+
+TV/Film: 1980s: return of the ____?
+Jedi
+10
+
+TV/Film: 1980s: return to ____?
+Oz
+10
+
+TV/Film: 1980s: revenge of the ____?
+Nerds
+10
+
+TV/Film: 1980s: ricki lake, before her television show?
+Hairspray
+10
+
+TV/Film: 1980s: risky ____?
+Business
+10
+
+TV/Film: 1980s: road ____?
+House
+10
+
+TV/Film: 1980s: Roman Polanski's 1980 film adaptation of a Thomas Hardy novel?
+Tess
+10
+
+TV/Film: 1980s: running ____?
+Scared
+10
+
+TV/Film: 1980s: say ____?
+Anything
+10
+
+TV/Film: 1980s: secret ____?
+Admirer
+10
+
+TV/Film: 1980s: seven ____ of death?
+Doors
+10
+
+TV/Film: 1980s: sex, lies and ____?
+Videotape
+10
+
+TV/Film: 1980s: she's ____ a baby?
+Having
+10
+
+TV/Film: 1980s: shock ____?
+Treatment
+10
+
+TV/Film: 1980s: short ____?
+Circuit
+10
+
+TV/Film: 1980s: silver ____?
+Bullet
+10
+
+TV/Film: 1980s: Sitcom that got Isabel Sanford her 1981 best actress Emmy?
+The jeffersons
+10
+
+TV/Film: 1980s: six ____?
+Weeks
+10
+
+TV/Film: 1980s: some ____ of hero?
+Kind
+10
+
+TV/Film: 1980s: some kind of ____?
+Wonderful
+10
+
+TV/Film: 1980s: somewhere in ____?
+Time
+10
+
+TV/Film: 1980s: soul ____?
+Man
+10
+
+TV/Film: 1980s: spielberg, dreyfuss, john goodman, holly hunter, name the film?
+Always
+10
+
+TV/Film: 1980s: st. ____ fire?
+Elmo's
+10
+
+TV/Film: 1980s: stallone as a cop after a serial killer?
+Cobra
+10
+
+TV/Film: 1980s: stallone goes postal in the pacific northwest?
+Rambo
+10
+
+TV/Film: 1980s: star ____?
+Trek
+10
+
+TV/Film: 1980s: Star Trek: the ____ home?
+Voyage
+10
+
+TV/Film: 1980s: Star Trek: the search for ____?
+Spock
+10
+
+TV/Film: 1980s: Star Trek: the wrath of ____?
+Khan
+10
+
+TV/Film: 1980s: streets of ____?
+Fire
+10
+
+TV/Film: 1980s: teen ____?
+Wolf
+10
+
+TV/Film: 1980s: tender ____?
+Mercies
+10
+
+TV/Film: 1980s: the ____ artist?
+Pick-up
+10
+
+TV/Film: 1980s: the ____ bride?
+Princess
+10
+
+TV/Film: 1980s: the ____ brothers?
+Blues
+10
+
+TV/Film: 1980s: the ____ cat?
+Black
+10
+
+TV/Film: 1980s: the ____ club?
+Breakfast
+10
+
+TV/Film: 1980s: the ____ connection?
+Naples
+10
+
+TV/Film: 1980s: the ____ crystal?
+Dark
+10
+
+TV/Film: 1980s: the ____ edge?
+Razor's
+10
+
+TV/Film: 1980s: the ____ guy?
+Lonely
+10
+
+TV/Film: 1980s: the ____ kid?
+Flamingo
+10
+
+TV/Film: 1980s: the ____ kid?
+Karate
+10
+
+TV/Film: 1980s: the ____ man?
+Elephant
+10
+
+TV/Film: 1980s: the ____ man?
+Tall
+10
+
+TV/Film: 1980s: the ____ of d.b. cooper?
+Pursuit
+10
+
+TV/Film: 1980s: the ____ of the intruder?
+Flight
+10
+
+TV/Film: 1980s: the ____ of the rose?
+Name
+10
+
+TV/Film: 1980s: the ____ pit?
+Money
+10
+
+TV/Film: 1980s: the ____ serpent?
+Winged
+10
+
+TV/Film: 1980s: the ____ strikes back?
+Empire
+10
+
+TV/Film: 1980s: the ____ thing?
+Sure
+10
+
+TV/Film: 1980s: the ____ within?
+Beast
+10
+
+TV/Film: 1980s: the ____, part three?
+Godfather
+10
+
+TV/Film: 1980s: the big ____?
+Chill
+10
+
+TV/Film: 1980s: the bitch is back, and it's not sigourney?
+Aliens
+10
+
+TV/Film: 1980s: The Color ____?
+Purple
+10
+
+TV/Film: 1980s: The Color of ____?
+Money
+10
+
+TV/Film: 1980s: the colour ____?
+Purple
+10
+
+TV/Film: 1980s: the colour of ____?
+Money
+10
+
+TV/Film: 1980s: the evil ____?
+Dead
+10
+
+TV/Film: 1980s: the falcon and the ____?
+Snowman
+10
+
+TV/Film: 1980s: the final ____?
+Countdown
+10
+
+TV/Film: 1980s: the king of ____?
+Comedy
+10
+
+TV/Film: 1980s: the last ____ of christ?
+Temptation
+10
+
+TV/Film: 1980s: the last ____?
+Emperor
+10
+
+TV/Film: 1980s: the last ____?
+Starfighter
+10
+
+TV/Film: 1980s: the last American ____?
+Virgin
+10
+
+TV/Film: 1980s: The last team Tom Seaver tried to pitch for?
+New york mets
+10
+
+TV/Film: 1980s: the legend of ____ jean?
+Billie
+10
+
+TV/Film: 1980s: the man with two ____?
+Brains
+10
+
+TV/Film: 1980s: the monster ____?
+Squad
+10
+
+TV/Film: 1980s: the neverending ____?
+Story
+10
+
+TV/Film: 1980s: the New York ____?
+Ripper
+10
+
+TV/Film: 1980s: the paean to late nights and teens in the 1950s?
+Diner
+10
+
+TV/Film: 1980s: the right ____?
+Stuff
+10
+
+TV/Film: 1980s: the running ____?
+Man
+10
+
+TV/Film: 1980s: the secret of my ____?
+Success
+10
+
+TV/Film: 1980s: the wonder years, as written by oliver stone?
+Platoon
+10
+
+TV/Film: 1980s: think dante's, think towering, think box office dud?
+Inferno
+10
+
+TV/Film: 1980s: This actor was with Wagner and Natalie Wood when she drowned?
+Christopher walken
+10
+
+TV/Film: 1980s: this is ____ tap?
+Spinal
+10
+
+TV/Film: 1980s: This movie lost 3 days of shooting when Karanja the chimp needed a root canal?
+Project x
+10
+
+TV/Film: 1980s: This town needs an enema?
+Batman
+10
+
+TV/Film: 1980s: three ____?
+Amigos
+10
+
+TV/Film: 1980s: three men and a ____?
+Baby
+10
+
+TV/Film: 1980s: ticket to ____?
+Heaven
+10
+
+TV/Film: 1980s: time ____?
+Bandits
+10
+
+TV/Film: 1980s: to live and die in ____?
+L.a.
+10
+
+TV/Film: 1980s: tokyo ____?
+Pop
+10
+
+TV/Film: 1980s: Tom Brokaw and this network anchor made their debuts in 1983?
+Peter jennings
+10
+
+TV/Film: 1980s: tom cruise visits the forest primeval, and a unicorn?
+Legend
+10
+
+TV/Film: 1980s: top ____?
+Secret
+10
+
+TV/Film: 1980s: tuff ____?
+Turf
+10
+
+TV/Film: 1980s: turn back, sarah, before it's too late?
+Labyrinth
+10
+
+TV/Film: 1980s: TV sitcom most frequently taped in 1987?
+The cosby show
+10
+
+TV/Film: 1980s: uncle ____?
+Buck
+10
+
+TV/Film: 1980s: under the ____ moon?
+Cherry
+10
+
+TV/Film: 1980s: urban ____?
+Cowboy
+10
+
+TV/Film: 1980s: vice ____?
+Versa
+10
+
+TV/Film: 1980s: vulgar prodigy plays the 18th century's greatest hits?
+Amadeus
+10
+
+TV/Film: 1980s: wanted: lovable old drunk with contemptuous butler?
+Arthur
+10
+
+TV/Film: 1980s: war of the ____?
+Roses
+10
+
+TV/Film: 1980s: war____?
+Games
+10
+
+TV/Film: 1980s: Wasn't Jesse Ventura in this dud?
+Commando
+10
+
+TV/Film: 1980s: we're no ____?
+Angels
+10
+
+TV/Film: 1980s: What anniversary did the Royal Television Society celebrate with a visit by the Queen in 1987?
+60th
+10
+
+TV/Film: 1980s: What U.S. city does Howard the Duck land in?
+Cleveland
+10
+
+TV/Film: 1980s: when harry ____ sally?
+Met
+10
+
+TV/Film: 1980s: when opie visited the rest home?
+Cocoon
+10
+
+TV/Film: 1980s: when ralph macchio left karate behind, he found himself here?
+Crossroads
+10
+
+TV/Film: 1980s: Who ____ Roger Rabbit?
+Framed
+10
+
+TV/Film: 1980s: Who said Bill Murray couldn't play Dickens?
+Scrooged
+10
+
+TV/Film: 1980s: who stars in the 1980 film Brubaker?
+Robert Redford
+10
+
+TV/Film: 1980s: Who you gonna call?
+Ghostbusters
+10
+
+TV/Film: 1980s: woman in ____?
+Red
+10
+
+TV/Film: 1980s: world history: ben kingsley makes salt, British empire falls down?
+Gandhi
+10
+
+TV/Film: 1980s: yo, adrian!?
+Rocky
+10
+
+TV/Film: 1980s: young ____ holmes?
+Sherlock
+10
+
+TV/Film: 1980s: young____?
+Blood
+10
+
+TV/Film: 1981 54th Academy Awards: Best Actress In A Leading Role Was won by Katharine Hepburn For The Movie?
+On golden Pond
+10
+
+TV/Film: 1981 54th Academy Awards: Best Actress In A Supporting role was won by Maureen Stapleton For The Movie?
+Reds
+10
+
+TV/Film: 1981 comedy had Richard Pryor bussing a load of disturbed children?
+Bustin loose
+10
+
+TV/Film: 1982 55th Academy Awards: Best Actress In A Leading Role Was won by Meryl Streep For The Movie?
+Sophie's choice
+10
+
+TV/Film: 1982 55th Academy Awards: Best Actress In A Supporting role was won by Jessica Lange For The Movie?
+Tootsie
+10
+
+TV/Film: 1983 56th Academy Awards: Best Actress In A Leading Role Was won by Shirley Maclaine For The Movie?
+Terms of Endearment
+10
+
+TV/Film: 1983 56th Academy Awards: Best Actress In A Supporting role was won by Linda Hunt For The Movie?
+The year of Living Dangerously
+10
+
+TV/Film: 1984 57th Academy Awards: Best Actress In A Leading Role Was won by Sally Field For The Movie?
+Places in the heart
+10
+
+TV/Film: 1984 57th Academy Awards: Best Actress In A Supporting role was won by Peggy Ashcroft For The Movie?
+A passage To India
+10
+
+TV/Film: 1984 Drama Threads showed a nuclear bomb fallingon which British City?
+Sheffield
+10
+
+TV/Film: 1984 remake has Mel Gibson as Fletcher Christian and Anthony Hopkins as Bligh?
+The bounty
+10
+
+TV/Film: 1984, Sean Connery returned as james Bond after a 13 year gap, in which film?
+Never say never again
+10
+
+TV/Film: 1985 58th Academy Awards: Best Actress In A Leading Role Was won by Geraldine Page For The Movie?
+The trip to Bountiful
+10
+
+TV/Film: 1985 58th Academy Awards: Best Actress In A Supporting role was won by Anjelica Huston For The Movie?
+Prizzi's Honor
+10
+
+TV/Film: 1986 59th Academy Awards: Best Actress In A Leading Role Was won by Marlee Matlin For The Movie?
+Children of a Lesser God
+10
+
+TV/Film: 1986 59th Academy Awards: Best Actress In A Supporting role was won by Dianne Wiest For The Movie?
+Hannah and Her Sisters
+10
+
+TV/Film: 1986, Action Thriller about an alcoholic cop starring Charles Bronson?
+Murphy's Law
+10
+
+TV/Film: 1987 60th Academy Awards: Best Actress In A Leading Role Was won by Cher For The Movie?
+Moonstruck
+10
+
+TV/Film: 1987 60th Academy Awards: Best Actress In A Supporting role was won by Olympia Dukakis For The Movie?
+Moonstruck
+10
+
+TV/Film: 1987 Film with Cher,Michelle Pfeiffer and Susan Sarandon?
+The witches of Eastwick
+10
+
+TV/Film: 1987, which music star appeared in The witches of Eastwick?
+Cher
+10
+
+TV/Film: 1988 61st Academy Awards: Best Actress In A Leading Role Was won by Jodie Foster For The Movie?
+The accused
+10
+
+TV/Film: 1988 61st Academy Awards: Best Actress In A Supporting role was won by Geena Davis For The Movie?
+The accidental Tourist
+10
+
+TV/Film: 1988, film starring Sean Connery and Meg Ryan?
+The Presidio
+10
+
+TV/Film: 1988, who starred opposite Meg Ryan in The Presidio?
+Sean Connery
+10
+
+TV/Film: 1988, who starred opposite Sean Connery in The Presidio?
+Meg Ryan
+10
+
+TV/Film: 1989 62nd Academy Awards: Best Actress In A Leading Role Was won by Jessica Tandy For The Movie?
+Driving miss Daisy
+10
+
+TV/Film: 1989 62nd Academy Awards: Best Actress In A Supporting role was won by Brenda Fricker For The Movie?
+My left foot
+10
+
+TV/Film: 1989-Japanese feature about 5 years in a Hiroshima-surviving family?
+Black rain
+10
+
+TV/Film: 1989,comedy about a special friendship betwen a group of women that helps them survive life's trials?
+Steel Magnolias
+10
+
+TV/Film: 1990 63rd Academy Awards: Best Actress In A Leading Role Was won by Kathy Bates For The Movie?
+Misery
+10
+
+TV/Film: 1990 63rd Academy Awards: Best Actress In A Supporting role was won by Whoopi Goldberg For The Movie?
+Ghost
+10
+
+TV/Film: 1990 film starring Melanie Griffiths & Michael Keaton?
+Pacific Heights
+10
+
+TV/Film: 1990, who starred opposite Michael Keaton in Pacific Heights?
+Melanie Griffith
+10
+
+TV/Film: 1990,who starred opposite Melanie Griffith in Pacific Heights?
+Michael Keaton
+10
+
+TV/Film: 1990s: 1996, This movie was released on July 17?
+Kazaam
+10
+
+TV/Film: 1990s: 1996, This movie was released on July 17?
+Multiplicity
+10
+
+TV/Film: 1990s: 1996, This movie was released on July 19?
+Fled
+10
+
+TV/Film: 1990s: 1996, This movie was released on July 19?
+Trainspotting
+10
+
+TV/Film: 1990s: A family-values politician targets Dangerfield's vulgarly popular talk show?
+Meet wally Sparks
+10
+
+TV/Film: 1990s: A gay couple prepares to meet their son's fiancee's moralistic parents?
+The birdcage
+10
+
+TV/Film: 1990s: A magical child prodigy gets back at her mean school principal?
+Matilda
+10
+
+TV/Film: 1990s: A sports agent (Cruise) forms his own company centered around Cuba Gooding Jr?
+Jerry Maguire
+10
+
+TV/Film: 1990s: Animated tale of a wolfdog braving a blizzard to transport diphtheria medicine?
+Balto
+10
+
+TV/Film: 1990s: Annie falls victim to hijacking____again, this time on a boat?
+Speed 2 cruise control
+10
+
+TV/Film: 1990s: For the first several seasons, Dr. Sam Waters was chased by Jack the Ripper?
+Profiler
+10
+
+TV/Film: 1990s: FOX show in which two FBI agents investigate paranormal phenomena?
+The x-files
+10
+
+TV/Film: 1990s: George Clooney and Michelle Pfeiffer have a rocky relationship?
+One fine day
+10
+
+TV/Film: 1990s: Glenn Close played the villain in this 1996 remake of a 1961 movie?
+101 dalmatians
+10
+
+TV/Film: 1990s: Hit show about the middle-classed Connor family, who lived in Landford?
+Roseanne
+10
+
+TV/Film: 1990s: Hospital drama written by Michael Crichton?
+Er
+10
+
+TV/Film: 1990s: In 1990, Alec Baldwin starred in this movie?
+Alice
+10
+
+TV/Film: 1990s: In 1990, Alec Baldwin starred in this movie?
+Miami blues
+10
+
+TV/Film: 1990s: In 1990, Alec Baldwin starred in this movie?
+The hunt for red october
+10
+
+TV/Film: 1990s: In 1990, Angela Lansbury starred in this movie?
+The love she sought
+10
+
+TV/Film: 1990s: In 1990, Anthony Hopkins starred in this movie?
+Desperate hours
+10
+
+TV/Film: 1990s: In 1990, Arnold Schwarzenegger starred in this movie?
+Kindergarten cop
+10
+
+TV/Film: 1990s: In 1990, Arnold Schwarzenegger starred in this movie?
+Total recall
+10
+
+TV/Film: 1990s: In 1990, Bette Midler starred in this movie?
+Stella
+10
+
+TV/Film: 1990s: In 1990, Brad Pitt starred in this movie?
+Too young to die?
+10
+
+TV/Film: 1990s: In 1990, Bruce Willis starred in this movie?
+Die hard 2: die harder
+10
+
+TV/Film: 1990s: In 1990, Bruce Willis starred in this movie?
+Look who's talking too
+10
+
+TV/Film: 1990s: In 1990, Bruce Willis starred in this movie?
+The bonfire of the vanities
+10
+
+TV/Film: 1990s: In 1990, Christopher Reeve starred in this movie?
+The rose and the jackal
+10
+
+TV/Film: 1990s: In 1990, Demi Moore starred in this movie?
+Ghost
+10
+
+TV/Film: 1990s: In 1990, Denzel Washington starred in this movie?
+Heart condition
+10
+
+TV/Film: 1990s: In 1990, Denzel Washington starred in this movie?
+Mo' better blues
+10
+
+TV/Film: 1990s: In 1990, Dustin Hoffman starred in this movie?
+Dick tracy
+10
+
+TV/Film: 1990s: In 1990, Eddie Murphy starred in this movie?
+Another 48 Hrs.
+10
+
+TV/Film: 1990s: In 1990, Elizabeth Hurley starred in this movie?
+Der skipper
+10
+
+TV/Film: 1990s: In 1990, Emma Thompson starred in this movie?
+Impromptu
+10
+
+TV/Film: 1990s: In 1990, Gene Hackman starred in this movie?
+Narrow margin
+10
+
+TV/Film: 1990s: In 1990, Gene Hackman starred in this movie?
+Postcards from the edge
+10
+
+TV/Film: 1990s: In 1990, George Clooney starred in this movie?
+Red surf
+10
+
+TV/Film: 1990s: In 1990, George Clooney starred in this movie?
+Sunset beat
+10
+
+TV/Film: 1990s: In 1990, goldie hawn starred in this movie?
+Bird on a wire
+10
+
+TV/Film: 1990s: In 1990, Harrison Ford starred in this movie?
+Presumed innocent
+10
+
+TV/Film: 1990s: In 1990, Hugh Grant starred in this movie?
+Crossing the line
+10
+
+TV/Film: 1990s: In 1990, Hugh Grant starred in this movie?
+Impromptu
+10
+
+TV/Film: 1990s: In 1990, Jamie Lee Curtis starred in this movie?
+Blue steel
+10
+
+TV/Film: 1990s: In 1990, Jane Fonda starred in this movie?
+Stanley and iris
+10
+
+TV/Film: 1990s: In 1990, Jeff Bridges starred in this movie?
+Texasville
+10
+
+TV/Film: 1990s: In 1990, John Travolta starred in this movie?
+Look who's talking too
+10
+
+TV/Film: 1990s: In 1990, Julia Roberts starred in this movie?
+Flatliners
+10
+
+TV/Film: 1990s: In 1990, Julia Roberts starred in this movie?
+Pretty woman
+10
+
+TV/Film: 1990s: In 1990, Kevin Costner starred in this movie?
+Dances with wolves
+10
+
+TV/Film: 1990s: In 1990, Kevin Costner starred in this movie?
+Revenge
+10
+
+TV/Film: 1990s: In 1990, Kirstie Alley starred in this movie?
+Look who's talking too
+10
+
+TV/Film: 1990s: In 1990, Kirstie Alley starred in this movie?
+Madhouse
+10
+
+TV/Film: 1990s: In 1990, Kirstie Alley starred in this movie?
+Sibling rivalry
+10
+
+TV/Film: 1990s: In 1990, Lauren Bacall starred in this movie?
+Innocent victim
+10
+
+TV/Film: 1990s: In 1990, Lauren Holly starred in this movie?
+The adventures of ford fairlane
+10
+
+TV/Film: 1990s: In 1990, Marlon Brando starred in this movie?
+The freshman
+10
+
+TV/Film: 1990s: In 1990, Meg Ryan starred in this movie?
+Joe versus the volcano
+10
+
+TV/Film: 1990s: In 1990, Mel Gibson starred in this movie?
+Air America
+10
+
+TV/Film: 1990s: In 1990, Mel Gibson starred in this movie?
+Bird on a wire
+10
+
+TV/Film: 1990s: In 1990, Mel Gibson starred in this movie?
+Hamlet
+10
+
+TV/Film: 1990s: In 1990, Melanie Griffith starred in this movie?
+In the spirit
+10
+
+TV/Film: 1990s: In 1990, Melanie Griffith starred in this movie?
+Men & women: stories of seduction
+10
+
+TV/Film: 1990s: In 1990, Melanie Griffith starred in this movie?
+Pacific heights
+10
+
+TV/Film: 1990s: In 1990, Melanie Griffith starred in this movie?
+The bonfire of the vanities
+10
+
+TV/Film: 1990s: In 1990, Meryl Streep starred in this movie?
+Postcards from the edge
+10
+
+TV/Film: 1990s: In 1990, Michael Caine starred in this movie?
+A shock to the system
+10
+
+TV/Film: 1990s: In 1990, Michael Caine starred in this movie?
+Bullseye!
+10
+
+TV/Film: 1990s: In 1990, Michael Caine starred in this movie?
+Jekyll and hyde
+10
+
+TV/Film: 1990s: In 1990, Michael Caine starred in this movie?
+Mr. destiny
+10
+
+TV/Film: 1990s: In 1990, Michael Keaton starred in this movie?
+Pacific heights
+10
+
+TV/Film: 1990s: In 1990, Michelle Pfeiffer starred in this movie?
+The Russia house
+10
+
+TV/Film: 1990s: In 1990, Nicolas Cage starred in this movie?
+Firebirds
+10
+
+TV/Film: 1990s: In 1990, Nicolas Cage starred in this movie?
+Wild at heart
+10
+
+TV/Film: 1990s: In 1990, Nicole Kidman starred in this movie?
+Days of thunder
+10
+
+TV/Film: 1990s: In 1990, Nicole Kidman starred in this movie?
+Emerald city
+10
+
+TV/Film: 1990s: In 1990, Pierce Brosnan starred in this movie?
+Mister johnson
+10
+
+TV/Film: 1990s: In 1990, Richard Gere starred in this movie?
+Internal affairs
+10
+
+TV/Film: 1990s: In 1990, Richard Gere starred in this movie?
+Pretty woman
+10
+
+TV/Film: 1990s: In 1990, Robert De Niro starred in this movie?
+Awakenings
+10
+
+TV/Film: 1990s: In 1990, Robert De Niro starred in this movie?
+Goodfellas
+10
+
+TV/Film: 1990s: In 1990, Robert De Niro starred in this movie?
+Stanley and iris
+10
+
+TV/Film: 1990s: In 1990, Robin Williams starred in this movie?
+Awakenings
+10
+
+TV/Film: 1990s: In 1990, Robin Williams starred in this movie?
+Cadillac man
+10
+
+TV/Film: 1990s: In 1990, Russell Crowe starred in this movie?
+The crossing
+10
+
+TV/Film: 1990s: In 1990, Sandra Bullock starred in this movie?
+Who shot patakango?
+10
+
+TV/Film: 1990s: In 1990, Sean Connery starred in this movie?
+The hunt for red october
+10
+
+TV/Film: 1990s: In 1990, Sean Connery starred in this movie?
+The Russia house
+10
+
+TV/Film: 1990s: In 1990, Sharon Stone starred in this movie?
+Total recall
+10
+
+TV/Film: 1990s: In 1990, Shirley MacLaine starred in this movie?
+Postcards from the edge
+10
+
+TV/Film: 1990s: In 1990, Shirley MacLaine starred in this movie?
+Waiting for the light
+10
+
+TV/Film: 1990s: In 1990, Susan Sarandon starred in this movie?
+White palace
+10
+
+TV/Film: 1990s: In 1990, Sylvester Stallone starred in this movie?
+Rocky v
+10
+
+TV/Film: 1990s: In 1990, Tom Cruise starred in this movie?
+Days of thunder
+10
+
+TV/Film: 1990s: In 1990, Tom Hanks starred in this movie?
+Joe versus the volcano
+10
+
+TV/Film: 1990s: In 1990, Tom Hanks starred in this movie?
+The bonfire of the vanities
+10
+
+TV/Film: 1990s: In 1990, Tommy Lee Jones starred in this movie?
+Firebirds
+10
+
+TV/Film: 1990s: In 1990, Wesley Snipes starred in this movie?
+Mo' better blues
+10
+
+TV/Film: 1990s: In 1990, Whoopi Goldberg starred in this movie?
+Ghost
+10
+
+TV/Film: 1990s: In 1990, Whoopi Goldberg starred in this movie?
+The long walk home
+10
+
+TV/Film: 1990s: In 1990, Winona Ryder starred in this movie?
+Edward scissorhands
+10
+
+TV/Film: 1990s: In 1990, Winona Ryder starred in this movie?
+Mermaids
+10
+
+TV/Film: 1990s: In 1990's Bird on a Wire, Goldie Hawn drove a ____?
+BMW
+10
+
+TV/Film: 1990s: In 1991, Alec Baldwin starred in this movie?
+The marrying man
+10
+
+TV/Film: 1990s: In 1991, Anthony Hopkins starred in this movie?
+One man's war
+10
+
+TV/Film: 1990s: In 1991, Anthony Hopkins starred in this movie?
+The silence of the lambs
+10
+
+TV/Film: 1990s: In 1991, Arnold Schwarzenegger starred in this movie?
+Terminator 2: judgment day
+10
+
+TV/Film: 1990s: In 1991, Barbra Streisand starred in this movie?
+The prince of tides
+10
+
+TV/Film: 1990s: In 1991, Bette Midler starred in this movie?
+For the boys
+10
+
+TV/Film: 1990s: In 1991, Bette Midler starred in this movie?
+Scenes from a mall
+10
+
+TV/Film: 1990s: In 1991, Billy Crystal starred in this movie?
+City slickers
+10
+
+TV/Film: 1990s: In 1991, Brad Pitt starred in this movie?
+Across the tracks
+10
+
+TV/Film: 1990s: In 1991, Brad Pitt starred in this movie?
+Thelma & louise
+10
+
+TV/Film: 1990s: In 1991, Bruce Willis starred in this movie?
+Billy bathgate
+10
+
+TV/Film: 1990s: In 1991, Bruce Willis starred in this movie?
+Hudson hawk
+10
+
+TV/Film: 1990s: In 1991, Bruce Willis starred in this movie?
+Mortal thoughts
+10
+
+TV/Film: 1990s: In 1991, Bruce Willis starred in this movie?
+The last boy scout
+10
+
+TV/Film: 1990s: In 1991, Christopher Reeve starred in this movie?
+Bump in the night
+10
+
+TV/Film: 1990s: In 1991, Dan Akroyd starred in this movie?
+Masters of menace
+10
+
+TV/Film: 1990s: In 1991, Dan Akroyd starred in this movie?
+My girl
+10
+
+TV/Film: 1990s: In 1991, Dan Akroyd starred in this movie?
+Nothing but trouble
+10
+
+TV/Film: 1990s: In 1991, Demi Moore starred in this movie?
+Mortal thoughts
+10
+
+TV/Film: 1990s: In 1991, Demi Moore starred in this movie?
+Nothing but trouble
+10
+
+TV/Film: 1990s: In 1991, Demi Moore starred in this movie?
+The butcher's wife
+10
+
+TV/Film: 1990s: In 1991, Denzel Washington starred in this movie?
+Ricochet
+10
+
+TV/Film: 1990s: In 1991, Dustin Hoffman starred in this movie?
+Billy bathgate
+10
+
+TV/Film: 1990s: In 1991, Dustin Hoffman starred in this movie?
+Hook
+10
+
+TV/Film: 1990s: In 1991, Elizabeth Hurley starred in this movie?
+El largo invierno
+10
+
+TV/Film: 1990s: In 1991, Emma Thompson starred in this movie?
+Dead again
+10
+
+TV/Film: 1990s: In 1991, Gene Hackman starred in this movie?
+Class action
+10
+
+TV/Film: 1990s: In 1991, goldie hawn starred in this movie?
+Deceived
+10
+
+TV/Film: 1990s: In 1991, Harrison Ford starred in this movie?
+Regarding henry
+10
+
+TV/Film: 1990s: In 1991, Hugh Grant starred in this movie?
+Our sons
+10
+
+TV/Film: 1990s: In 1991, Ingrid Bergman starred in this movie?
+Rich girl
+10
+
+TV/Film: 1990s: In 1991, James Woods starred in this movie?
+The boys
+10
+
+TV/Film: 1990s: In 1991, James Woods starred in this movie?
+The hard way
+10
+
+TV/Film: 1990s: In 1991, Jamie Lee Curtis starred in this movie?
+My girl
+10
+
+TV/Film: 1990s: In 1991, Jamie Lee Curtis starred in this movie?
+Queens logic
+10
+
+TV/Film: 1990s: In 1991, Jeff Bridges starred in this movie?
+The fisher king
+10
+
+TV/Film: 1990s: In 1991, Jodie Foster starred in this movie?
+Little man tate
+10
+
+TV/Film: 1990s: In 1991, Jodie Foster starred in this movie?
+The silence of the lambs
+10
+
+TV/Film: 1990s: In 1991, John Travolta starred in this movie?
+Shout
+10
+
+TV/Film: 1990s: In 1991, Julia Roberts starred in this movie?
+Dying young
+10
+
+TV/Film: 1990s: In 1991, Julia Roberts starred in this movie?
+Hook
+10
+
+TV/Film: 1990s: In 1991, Julia Roberts starred in this movie?
+Sleeping with the enemy
+10
+
+TV/Film: 1990s: In 1991, Julie Andrews starred in this movie?
+Our sons
+10
+
+TV/Film: 1990s: In 1991, Kevin Bacon starred in this movie?
+Jfk
+10
+
+TV/Film: 1990s: In 1991, Kevin Bacon starred in this movie?
+Pyrates
+10
+
+TV/Film: 1990s: In 1991, Kevin Bacon starred in this movie?
+Queens logic
+10
+
+TV/Film: 1990s: In 1991, Kevin Costner starred in this movie?
+Jfk
+10
+
+TV/Film: 1990s: In 1991, Kevin Costner starred in this movie?
+Robin hood: prince of thieves
+10
+
+TV/Film: 1990s: In 1991, kurt russell starred in this movie?
+Backdraft
+10
+
+TV/Film: 1990s: In 1991, Lauren Bacall starred in this movie?
+A star for two
+10
+
+TV/Film: 1990s: In 1991, Lauren Bacall starred in this movie?
+All i want for christmas
+10
+
+TV/Film: 1990s: In 1991, Meg Ryan starred in this movie?
+The doors
+10
+
+TV/Film: 1990s: In 1991, Melanie Griffith starred in this movie?
+Paradise
+10
+
+TV/Film: 1990s: In 1991, Meryl Streep starred in this movie?
+Defending your life
+10
+
+TV/Film: 1990s: In 1991, Michael Keaton starred in this movie?
+One good cop
+10
+
+TV/Film: 1990s: In 1991, Michelle Pfeiffer starred in this movie?
+Frankie & johnny
+10
+
+TV/Film: 1990s: In 1991, Nicolas Cage starred in this movie?
+Zandalee
+10
+
+TV/Film: 1990s: In 1991, Nicole Kidman starred in this movie?
+Billy bathgate
+10
+
+TV/Film: 1990s: In 1991, Pierce Brosnan starred in this movie?
+Victim of love
+10
+
+TV/Film: 1990s: In 1991, Richard Gere starred in this movie?
+Rhapsody in august
+10
+
+TV/Film: 1990s: In 1991, Robert De Niro starred in this movie?
+Backdraft
+10
+
+TV/Film: 1990s: In 1991, Robert De Niro starred in this movie?
+Cape fear
+10
+
+TV/Film: 1990s: In 1991, Robert De Niro starred in this movie?
+Guilty by suspicion
+10
+
+TV/Film: 1990s: In 1991, Robin Williams starred in this movie?
+Dead again
+10
+
+TV/Film: 1990s: In 1991, Robin Williams starred in this movie?
+Hook
+10
+
+TV/Film: 1990s: In 1991, Robin Williams starred in this movie?
+Shakes the clown
+10
+
+TV/Film: 1990s: In 1991, Robin Williams starred in this movie?
+The fisher king
+10
+
+TV/Film: 1990s: In 1991, Russell Crowe starred in this movie?
+Hammers over the anvil
+10
+
+TV/Film: 1990s: In 1991, Russell Crowe starred in this movie?
+Prisoners of the sun
+10
+
+TV/Film: 1990s: In 1991, Russell Crowe starred in this movie?
+Proof
+10
+
+TV/Film: 1990s: In 1991, Sally Field starred in this movie?
+Not without my daughter
+10
+
+TV/Film: 1990s: In 1991, Sally Field starred in this movie?
+Soapdish
+10
+
+TV/Film: 1990s: In 1991, Sarah Jessica Parker starred in this movie?
+L.a. story
+10
+
+TV/Film: 1990s: In 1991, Sean Connery starred in this movie?
+Highlander ii: the quickening
+10
+
+TV/Film: 1990s: In 1991, Sharon Stone starred in this movie?
+Scissors
+10
+
+TV/Film: 1990s: In 1991, Shirley MacLaine starred in this movie?
+Defending your life
+10
+
+TV/Film: 1990s: In 1991, Susan Sarandon starred in this movie?
+Thelma & louise
+10
+
+TV/Film: 1990s: In 1991, Sylvester Stallone starred in this movie?
+Oscar
+10
+
+TV/Film: 1990s: In 1991, Tommy Lee Jones starred in this movie?
+Jfk
+10
+
+TV/Film: 1990s: In 1991, Wesley Snipes starred in this movie?
+Jungle fever
+10
+
+TV/Film: 1990s: In 1991, Wesley Snipes starred in this movie?
+New jack city
+10
+
+TV/Film: 1990s: In 1991, Whoopi Goldberg starred in this movie?
+House party 2
+10
+
+TV/Film: 1990s: In 1991, Whoopi Goldberg starred in this movie?
+Soapdish
+10
+
+TV/Film: 1990s: In 1991, Woody Allen starred in this movie?
+Scenes from a mall
+10
+
+TV/Film: 1990s: In 1992, Alec Baldwin starred in this movie?
+Glengarry glen ross
+10
+
+TV/Film: 1990s: In 1992, Alec Baldwin starred in this movie?
+Prelude to a kiss
+10
+
+TV/Film: 1990s: In 1992, Anthony Hopkins starred in this movie?
+Bram stoker's dracula
+10
+
+TV/Film: 1990s: In 1992, Anthony Hopkins starred in this movie?
+Chaplin
+10
+
+TV/Film: 1990s: In 1992, Anthony Hopkins starred in this movie?
+Freejack
+10
+
+TV/Film: 1990s: In 1992, Anthony Hopkins starred in this movie?
+Howards end
+10
+
+TV/Film: 1990s: In 1992, Anthony Hopkins starred in this movie?
+The efficiency expert
+10
+
+TV/Film: 1990s: In 1992, Anthony Hopkins starred in this movie?
+The trial
+10
+
+TV/Film: 1990s: In 1992, Ashley Judd starred in this movie?
+Kuffs
+10
+
+TV/Film: 1990s: In 1992, Billy Crystal starred in this movie?
+Mr. saturday night
+10
+
+TV/Film: 1990s: In 1992, Brad Pitt starred in this movie?
+A river runs through it
+10
+
+TV/Film: 1990s: In 1992, Brad Pitt starred in this movie?
+Cool world
+10
+
+TV/Film: 1990s: In 1992, Brad Pitt starred in this movie?
+Johnny suede
+10
+
+TV/Film: 1990s: In 1992, Bruce Willis starred in this movie?
+Death becomes her
+10
+
+TV/Film: 1990s: In 1992, Bruce Willis starred in this movie?
+The player
+10
+
+TV/Film: 1990s: In 1992, Christopher Reeve starred in this movie?
+Noises off
+10
+
+TV/Film: 1990s: In 1992, Dan Akroyd starred in this movie?
+Chaplin
+10
+
+TV/Film: 1990s: In 1992, Dan Akroyd starred in this movie?
+Sneakers
+10
+
+TV/Film: 1990s: In 1992, Dan Akroyd starred in this movie?
+This is my life
+10
+
+TV/Film: 1990s: In 1992, Demi Moore starred in this movie?
+A few good men
+10
+
+TV/Film: 1990s: In 1992, Denzel Washington starred in this movie?
+Malcolm x
+10
+
+TV/Film: 1990s: In 1992, Denzel Washington starred in this movie?
+Mississippi masala
+10
+
+TV/Film: 1990s: In 1992, Drew Barrymore starred in this movie?
+Motorama
+10
+
+TV/Film: 1990s: In 1992, Drew Barrymore starred in this movie?
+Poison ivy
+10
+
+TV/Film: 1990s: In 1992, Dustin Hoffman starred in this movie?
+Hero
+10
+
+TV/Film: 1990s: In 1992, Eddie Murphy starred in this movie?
+Boomerang
+10
+
+TV/Film: 1990s: In 1992, Eddie Murphy starred in this movie?
+The distinguished gentleman
+10
+
+TV/Film: 1990s: In 1992, Elizabeth Hurley starred in this movie?
+Passenger 57
+10
+
+TV/Film: 1990s: In 1992, Emma Thompson starred in this movie?
+Howards end
+10
+
+TV/Film: 1990s: In 1992, Emma Thompson starred in this movie?
+Peter's friends
+10
+
+TV/Film: 1990s: In 1992, goldie hawn starred in this movie?
+Crisscross
+10
+
+TV/Film: 1990s: In 1992, goldie hawn starred in this movie?
+Death becomes her
+10
+
+TV/Film: 1990s: In 1992, goldie hawn starred in this movie?
+Housesitter
+10
+
+TV/Film: 1990s: In 1992, Harrison Ford starred in this movie?
+Patriot games
+10
+
+TV/Film: 1990s: In 1992, Hugh Grant starred in this movie?
+Bitter moon
+10
+
+TV/Film: 1990s: In 1992, James Woods starred in this movie?
+Chaplin
+10
+
+TV/Film: 1990s: In 1992, James Woods starred in this movie?
+Diggstown
+10
+
+TV/Film: 1990s: In 1992, James Woods starred in this movie?
+Straight talk
+10
+
+TV/Film: 1990s: In 1992, Jamie Lee Curtis starred in this movie?
+Forever young
+10
+
+TV/Film: 1990s: In 1992, Jodie Foster starred in this movie?
+Shadows and fog
+10
+
+TV/Film: 1990s: In 1992, Julia Roberts starred in this movie?
+The player
+10
+
+TV/Film: 1990s: In 1992, Julie Andrews starred in this movie?
+A fine romance
+10
+
+TV/Film: 1990s: In 1992, Kevin Bacon starred in this movie?
+A few good men
+10
+
+TV/Film: 1990s: In 1992, Kevin Costner starred in this movie?
+The bodyguard
+10
+
+TV/Film: 1990s: In 1992, kurt russell starred in this movie?
+Captain ron
+10
+
+TV/Film: 1990s: In 1992, kurt russell starred in this movie?
+Unlawful entry
+10
+
+TV/Film: 1990s: In 1992, Lauren Holly starred in this movie?
+Fugitive among us
+10
+
+TV/Film: 1990s: In 1992, Lucille Ball starred in this movie?
+Wisecracks
+10
+
+TV/Film: 1990s: In 1992, Marlon Brando starred in this movie?
+Christopher columbus: the discovery
+10
+
+TV/Film: 1990s: In 1992, Meg Ryan starred in this movie?
+Prelude to a kiss
+10
+
+TV/Film: 1990s: In 1992, Mel Gibson starred in this movie?
+Forever young
+10
+
+TV/Film: 1990s: In 1992, Mel Gibson starred in this movie?
+Lethal weapon 3
+10
+
+TV/Film: 1990s: In 1992, Melanie Griffith starred in this movie?
+A stranger among us
+10
+
+TV/Film: 1990s: In 1992, Meryl Streep starred in this movie?
+Death becomes her
+10
+
+TV/Film: 1990s: In 1992, Michael Caine starred in this movie?
+Blue ice
+10
+
+TV/Film: 1990s: In 1992, Michael Caine starred in this movie?
+Death becomes her
+10
+
+TV/Film: 1990s: In 1992, Michael Caine starred in this movie?
+Noises off
+10
+
+TV/Film: 1990s: In 1992, Michael Caine starred in this movie?
+The muppet christmas carol
+10
+
+TV/Film: 1990s: In 1992, Michael Douglas starred in this movie?
+Basic instinct
+10
+
+TV/Film: 1990s: In 1992, Michael Douglas starred in this movie?
+Shining through
+10
+
+TV/Film: 1990s: In 1992, Michelle Pfeiffer starred in this movie?
+Batman returns
+10
+
+TV/Film: 1990s: In 1992, Nicolas Cage starred in this movie?
+Honeymoon in vegas
+10
+
+TV/Film: 1990s: In 1992, Nicolas Cage starred in this movie?
+Red rock west
+10
+
+TV/Film: 1990s: In 1992, Nicole Kidman starred in this movie?
+Far and away
+10
+
+TV/Film: 1990s: In 1992, Pamela Anderson starred in this movie?
+The taking of beverly hills
+10
+
+TV/Film: 1990s: In 1992, Pierce Brosnan starred in this movie?
+The lawnmower man
+10
+
+TV/Film: 1990s: In 1992, Richard Gere starred in this movie?
+Final analysis
+10
+
+TV/Film: 1990s: In 1992, Robert De Niro starred in this movie?
+Mistress
+10
+
+TV/Film: 1990s: In 1992, Robert De Niro starred in this movie?
+Night and the city
+10
+
+TV/Film: 1990s: In 1992, Robin Williams starred in this movie?
+Toys
+10
+
+TV/Film: 1990s: In 1992, Russell Crowe starred in this movie?
+Romper stomper
+10
+
+TV/Film: 1990s: In 1992, Russell Crowe starred in this movie?
+The efficiency expert
+10
+
+TV/Film: 1990s: In 1992, Sandra Bullock starred in this movie?
+Love potion no. 9
+10
+
+TV/Film: 1990s: In 1992, Sandra Bullock starred in this movie?
+When the party's over
+10
+
+TV/Film: 1990s: In 1992, Sandra Bullock starred in this movie?
+Who do i gotta kill?
+10
+
+TV/Film: 1990s: In 1992, Sarah Jessica Parker starred in this movie?
+Honeymoon in vegas
+10
+
+TV/Film: 1990s: In 1992, Sean Connery starred in this movie?
+Medicine man
+10
+
+TV/Film: 1990s: In 1992, Sharon Stone starred in this movie?
+Basic instinct
+10
+
+TV/Film: 1990s: In 1992, Sharon Stone starred in this movie?
+Diary of a hitman
+10
+
+TV/Film: 1990s: In 1992, Shirley MacLaine starred in this movie?
+Used people
+10
+
+TV/Film: 1990s: In 1992, Sigourney Weaver starred in this movie?
+1492: conquest of paradise
+10
+
+TV/Film: 1990s: In 1992, Sigourney Weaver starred in this movie?
+Alien 3
+10
+
+TV/Film: 1990s: In 1992, Susan Sarandon starred in this movie?
+Bob roberts
+10
+
+TV/Film: 1990s: In 1992, Susan Sarandon starred in this movie?
+Light sleeper
+10
+
+TV/Film: 1990s: In 1992, Susan Sarandon starred in this movie?
+Lorenzo's oil
+10
+
+TV/Film: 1990s: In 1992, Susan Sarandon starred in this movie?
+The player
+10
+
+TV/Film: 1990s: In 1992, Sylvester Stallone starred in this movie?
+Stop! or my mom will shoot
+10
+
+TV/Film: 1990s: In 1992, Tom Cruise starred in this movie?
+A few good men
+10
+
+TV/Film: 1990s: In 1992, Tom Cruise starred in this movie?
+Far and away
+10
+
+TV/Film: 1990s: In 1992, Tom Hanks starred in this movie?
+A league of their own
+10
+
+TV/Film: 1990s: In 1992, Tom Hanks starred in this movie?
+Radio flyer
+10
+
+TV/Film: 1990s: In 1992, Tommy Lee Jones starred in this movie?
+Under siege
+10
+
+TV/Film: 1990s: In 1992, Wesley Snipes starred in this movie?
+Passenger 57
+10
+
+TV/Film: 1990s: In 1992, Wesley Snipes starred in this movie?
+The waterdance
+10
+
+TV/Film: 1990s: In 1992, Wesley Snipes starred in this movie?
+White men can't jump
+10
+
+TV/Film: 1990s: In 1992, What city is terrorized by a toddler in Honey, I Blew Up the Kid?
+Las vegas
+10
+
+TV/Film: 1990s: In 1992, what movie has meg ryan switching identities with an elderly man?
+Prelude to a kiss
+10
+
+TV/Film: 1990s: In 1992, what mtv veejay co-starred in encino man?
+Pauly shore
+10
+
+TV/Film: 1990s: In 1992, Whoopi Goldberg starred in this movie?
+Sarafina!
+10
+
+TV/Film: 1990s: In 1992, Whoopi Goldberg starred in this movie?
+Sister act
+10
+
+TV/Film: 1990s: In 1992, Whoopi Goldberg starred in this movie?
+The magical world of chuck jones
+10
+
+TV/Film: 1990s: In 1992, Whoopi Goldberg starred in this movie?
+The player
+10
+
+TV/Film: 1990s: In 1992, Whoopi Goldberg starred in this movie?
+Wisecracks
+10
+
+TV/Film: 1990s: In 1992, Winona Ryder starred in this movie?
+Bram stoker's dracula
+10
+
+TV/Film: 1990s: In 1992, Winona Ryder starred in this movie?
+Night on earth
+10
+
+TV/Film: 1990s: In 1992, Woody Allen starred in this movie?
+Husbands and wives
+10
+
+TV/Film: 1990s: In 1992, Woody Allen starred in this movie?
+Shadows and fog
+10
+
+TV/Film: 1990s: In 1993, Alec Baldwin starred in this movie?
+Malice
+10
+
+TV/Film: 1990s: In 1993, Anthony Hopkins starred in this movie?
+Shadowlands
+10
+
+TV/Film: 1990s: In 1993, Anthony Hopkins starred in this movie?
+The innocent
+10
+
+TV/Film: 1990s: In 1993, Anthony Hopkins starred in this movie?
+The remains of the day
+10
+
+TV/Film: 1990s: In 1993, Antonio Banderas starred in this movie?
+Philadelphia
+10
+
+TV/Film: 1990s: In 1993, Antonio Banderas starred in this movie?
+The house of the spirits
+10
+
+TV/Film: 1990s: In 1993, Arnold Schwarzenegger starred in this movie?
+Dave
+10
+
+TV/Film: 1990s: In 1993, Arnold Schwarzenegger starred in this movie?
+Last action hero
+10
+
+TV/Film: 1990s: In 1993, Ashley Judd starred in this movie?
+Natural s:: ruby in paradise
+10
+
+TV/Film: 1990s: In 1993, Bette Midler starred in this movie?
+Hocus pocus
+10
+
+TV/Film: 1990s: In 1993, Brad Pitt starred in this movie?
+Kalifornia
+10
+
+TV/Film: 1990s: In 1993, Brad Pitt starred in this movie?
+True romance
+10
+
+TV/Film: 1990s: In 1993, Bruce Willis starred in this movie?
+Striking distance
+10
+
+TV/Film: 1990s: In 1993, Christopher Reeve starred in this movie?
+Remains of the day
+10
+
+TV/Film: 1990s: In 1993, Demi Moore starred in this movie?
+Indecent proposal
+10
+
+TV/Film: 1990s: In 1993, Denzel Washington starred in this movie?
+Much ado about nothing
+10
+
+TV/Film: 1990s: In 1993, Denzel Washington starred in this movie?
+Philadelphia
+10
+
+TV/Film: 1990s: In 1993, Denzel Washington starred in this movie?
+The pelican brief
+10
+
+TV/Film: 1990s: In 1993, Drew Barrymore starred in this movie?
+No place to hide
+10
+
+TV/Film: 1990s: In 1993, Drew Barrymore starred in this movie?
+Wayne's world 2
+10
+
+TV/Film: 1990s: In 1993, Elizabeth Hurley starred in this movie?
+Beyond bedlam
+10
+
+TV/Film: 1990s: In 1993, Emma Thompson starred in this movie?
+In the name of the father
+10
+
+TV/Film: 1990s: In 1993, Emma Thompson starred in this movie?
+Much ado about nothing
+10
+
+TV/Film: 1990s: In 1993, Emma Thompson starred in this movie?
+Remains of the day
+10
+
+TV/Film: 1990s: In 1993, Emma Thompson starred in this movie?
+The remains of the day
+10
+
+TV/Film: 1990s: In 1993, Gene Hackman starred in this movie?
+Geronimo: an American legend
+10
+
+TV/Film: 1990s: In 1993, Gene Hackman starred in this movie?
+The firm
+10
+
+TV/Film: 1990s: In 1993, George Clooney starred in this movie?
+Unbecoming age
+10
+
+TV/Film: 1990s: In 1993, Harrison Ford starred in this movie?
+The fugitive
+10
+
+TV/Film: 1990s: In 1993, Hugh Grant starred in this movie?
+Night train to venice
+10
+
+TV/Film: 1990s: In 1993, Hugh Grant starred in this movie?
+The remains of the day
+10
+
+TV/Film: 1990s: In 1993, Jeff Bridges starred in this movie?
+American heart
+10
+
+TV/Film: 1990s: In 1993, Jeff Bridges starred in this movie?
+Fearless
+10
+
+TV/Film: 1990s: In 1993, Jeff Bridges starred in this movie?
+The vanishing
+10
+
+TV/Film: 1990s: In 1993, Jodie Foster starred in this movie?
+Sommersby
+10
+
+TV/Film: 1990s: In 1993, John Travolta starred in this movie?
+Look who's talking now
+10
+
+TV/Film: 1990s: In 1993, Julia Roberts starred in this movie?
+The pelican brief
+10
+
+TV/Film: 1990s: In 1993, Kevin Costner starred in this movie?
+A perfect world
+10
+
+TV/Film: 1990s: In 1993, Kirstie Alley starred in this movie?
+Look who's talking now
+10
+
+TV/Film: 1990s: In 1993, kurt russell starred in this movie?
+Tombstone
+10
+
+TV/Film: 1990s: In 1993, Lauren Holly starred in this movie?
+Dragon: the bruce lee story
+10
+
+TV/Film: 1990s: In 1993, Meg Ryan starred in this movie?
+Flesh and bone
+10
+
+TV/Film: 1990s: In 1993, Meg Ryan starred in this movie?
+Sleepless in seattle
+10
+
+TV/Film: 1990s: In 1993, Meryl Streep starred in this movie?
+The house of the spirits
+10
+
+TV/Film: 1990s: In 1993, Michael Douglas starred in this movie?
+Falling down
+10
+
+TV/Film: 1990s: In 1993, Michael Keaton starred in this movie?
+Much ado about nothing
+10
+
+TV/Film: 1990s: In 1993, Michelle Pfeiffer starred in this movie?
+Love field
+10
+
+TV/Film: 1990s: In 1993, Michelle Pfeiffer starred in this movie?
+The age of innocence
+10
+
+TV/Film: 1990s: In 1993, Nicolas Cage starred in this movie?
+Amos & andrew
+10
+
+TV/Film: 1990s: In 1993, Nicolas Cage starred in this movie?
+Deadfall
+10
+
+TV/Film: 1990s: In 1993, Nicole Kidman starred in this movie?
+Malice
+10
+
+TV/Film: 1990s: In 1993, Nicole Kidman starred in this movie?
+My life
+10
+
+TV/Film: 1990s: In 1993, Pamela Anderson starred in this movie?
+Snapdragon
+10
+
+TV/Film: 1990s: In 1993, Pierce Brosnan starred in this movie?
+Entangled
+10
+
+TV/Film: 1990s: In 1993, Pierce Brosnan starred in this movie?
+Mrs. doubtfire
+10
+
+TV/Film: 1990s: In 1993, Richard Gere starred in this movie?
+Mr. jones
+10
+
+TV/Film: 1990s: In 1993, Richard Gere starred in this movie?
+Sommersby
+10
+
+TV/Film: 1990s: In 1993, Robert De Niro starred in this movie?
+Mad dog and glory
+10
+
+TV/Film: 1990s: In 1993, Robert De Niro starred in this movie?
+This boy's life
+10
+
+TV/Film: 1990s: In 1993, Robin Williams starred in this movie?
+Mrs. doubtfire
+10
+
+TV/Film: 1990s: In 1993, Russell Crowe starred in this movie?
+Love in limbo
+10
+
+TV/Film: 1990s: In 1993, Russell Crowe starred in this movie?
+The silver brumby
+10
+
+TV/Film: 1990s: In 1993, Sally Field starred in this movie?
+Mrs. doubtfire
+10
+
+TV/Film: 1990s: In 1993, Sandra Bullock starred in this movie?
+Demolition man
+10
+
+TV/Film: 1990s: In 1993, Sandra Bullock starred in this movie?
+The thing called love
+10
+
+TV/Film: 1990s: In 1993, Sandra Bullock starred in this movie?
+The vanishing
+10
+
+TV/Film: 1990s: In 1993, Sandra Bullock starred in this movie?
+Wrestling ernest hemingway
+10
+
+TV/Film: 1990s: In 1993, Sarah Jessica Parker starred in this movie?
+Hocus pocus
+10
+
+TV/Film: 1990s: In 1993, Sarah Jessica Parker starred in this movie?
+Striking distance
+10
+
+TV/Film: 1990s: In 1993, Sean Connery starred in this movie?
+Rising sun
+10
+
+TV/Film: 1990s: In 1993, Sharon Stone starred in this movie?
+Last action hero
+10
+
+TV/Film: 1990s: In 1993, Sharon Stone starred in this movie?
+Sliver
+10
+
+TV/Film: 1990s: In 1993, Sharon Stone starred in this movie?
+Where sleeping dogs lie
+10
+
+TV/Film: 1990s: In 1993, Shirley MacLaine starred in this movie?
+Wrestling ernest hemingway
+10
+
+TV/Film: 1990s: In 1993, Sigourney Weaver starred in this movie?
+Dave
+10
+
+TV/Film: 1990s: In 1993, Sylvester Stallone starred in this movie?
+Cliffhanger
+10
+
+TV/Film: 1990s: In 1993, Sylvester Stallone starred in this movie?
+Demolition man
+10
+
+TV/Film: 1990s: In 1993, Tom Cruise starred in this movie?
+The firm
+10
+
+TV/Film: 1990s: In 1993, Tom Hanks starred in this movie?
+Philadelphia
+10
+
+TV/Film: 1990s: In 1993, Tom Hanks starred in this movie?
+Sleepless in seattle
+10
+
+TV/Film: 1990s: In 1993, Tommy Lee Jones starred in this movie?
+Heaven & earth
+10
+
+TV/Film: 1990s: In 1993, Tommy Lee Jones starred in this movie?
+House of cards
+10
+
+TV/Film: 1990s: In 1993, Tommy Lee Jones starred in this movie?
+The fugitive
+10
+
+TV/Film: 1990s: In 1993, Wesley Snipes starred in this movie?
+Boiling point
+10
+
+TV/Film: 1990s: In 1993, Wesley Snipes starred in this movie?
+Demolition man
+10
+
+TV/Film: 1990s: In 1993, Wesley Snipes starred in this movie?
+Rising sun
+10
+
+TV/Film: 1990s: In 1993, Whoopi Goldberg starred in this movie?
+Made in America
+10
+
+TV/Film: 1990s: In 1993, Whoopi Goldberg starred in this movie?
+Sister act 2: back in the habit
+10
+
+TV/Film: 1990s: In 1993, Winona Ryder starred in this movie?
+The age of innocence
+10
+
+TV/Film: 1990s: In 1993, Winona Ryder starred in this movie?
+The house of the spirits
+10
+
+TV/Film: 1990s: In 1993, Woody Allen starred in this movie?
+Manhattan murder mystery
+10
+
+TV/Film: 1990s: In 1994, Alec Baldwin starred in this movie?
+The getaway
+10
+
+TV/Film: 1990s: In 1994, Alec Baldwin starred in this movie?
+The shadow
+10
+
+TV/Film: 1990s: In 1994, Anthony Hopkins starred in this movie?
+A century of cinema
+10
+
+TV/Film: 1990s: In 1994, Anthony Hopkins starred in this movie?
+Legends of the fall
+10
+
+TV/Film: 1990s: In 1994, Anthony Hopkins starred in this movie?
+The road to wellville
+10
+
+TV/Film: 1990s: In 1994, Antonio Banderas starred in this movie?
+Interview with the vampire
+10
+
+TV/Film: 1990s: In 1994, Arnold Schwarzenegger starred in this movie?
+A century of cinema
+10
+
+TV/Film: 1990s: In 1994, Arnold Schwarzenegger starred in this movie?
+Junior
+10
+
+TV/Film: 1990s: In 1994, Arnold Schwarzenegger starred in this movie?
+True lies
+10
+
+TV/Film: 1990s: In 1994, Bette Midler starred in this movie?
+A century of cinema
+10
+
+TV/Film: 1990s: In 1994, Billy Crystal starred in this movie?
+A century of cinema
+10
+
+TV/Film: 1990s: In 1994, Brad Pitt starred in this movie?
+Interview with the vampire
+10
+
+TV/Film: 1990s: In 1994, Brad Pitt starred in this movie?
+Legends of the fall
+10
+
+TV/Film: 1990s: In 1994, Brad Pitt starred in this movie?
+The favor
+10
+
+TV/Film: 1990s: In 1994, Bruce Willis starred in this movie?
+Color of night
+10
+
+TV/Film: 1990s: In 1994, Bruce Willis starred in this movie?
+Nobody's fool
+10
+
+TV/Film: 1990s: In 1994, Bruce Willis starred in this movie?
+Pulp fiction
+10
+
+TV/Film: 1990s: In 1994, Cameron Diaz starred in this movie?
+The mask
+10
+
+TV/Film: 1990s: In 1994, Christopher Reeve starred in this movie?
+Morning glory
+10
+
+TV/Film: 1990s: In 1994, Christopher Reeve starred in this movie?
+Speechless
+10
+
+TV/Film: 1990s: In 1994, Dan Akroyd starred in this movie?
+A century of cinema
+10
+
+TV/Film: 1990s: In 1994, Dan Akroyd starred in this movie?
+Exit to eden
+10
+
+TV/Film: 1990s: In 1994, Dan Akroyd starred in this movie?
+My girl 2
+10
+
+TV/Film: 1990s: In 1994, Demi Moore starred in this movie?
+A century of cinema
+10
+
+TV/Film: 1990s: In 1994, Demi Moore starred in this movie?
+Disclosure
+10
+
+TV/Film: 1990s: In 1994, Denzel Washington starred in this movie?
+A century of cinema
+10
+
+TV/Film: 1990s: In 1994, Drew Barrymore starred in this movie?
+Bad girls
+10
+
+TV/Film: 1990s: In 1994, Drew Barrymore starred in this movie?
+Inside the goldmine
+10
+
+TV/Film: 1990s: In 1994, Eddie Murphy starred in this movie?
+Beverly hills cop iii
+10
+
+TV/Film: 1990s: In 1994, Elizabeth Taylor starred in this movie?
+The flintstones
+10
+
+TV/Film: 1990s: In 1994, Gene Hackman starred in this movie?
+Wyatt earp
+10
+
+TV/Film: 1990s: In 1994, Harrison Ford starred in this movie?
+A century of cinema
+10
+
+TV/Film: 1990s: In 1994, Harrison Ford starred in this movie?
+Clear and present danger
+10
+
+TV/Film: 1990s: In 1994, Harrison Ford starred in this movie?
+Jimmy hollywood
+10
+
+TV/Film: 1990s: In 1994, Hugh Grant starred in this movie?
+Four weddings and a funeral
+10
+
+TV/Film: 1990s: In 1994, Hugh Grant starred in this movie?
+Sirens
+10
+
+TV/Film: 1990s: In 1994, James Woods starred in this movie?
+Curse of the starving class
+10
+
+TV/Film: 1990s: In 1994, James Woods starred in this movie?
+The getaway
+10
+
+TV/Film: 1990s: In 1994, James Woods starred in this movie?
+The specialist
+10
+
+TV/Film: 1990s: In 1994, Jamie Lee Curtis starred in this movie?
+Mother's boys
+10
+
+TV/Film: 1990s: In 1994, Jamie Lee Curtis starred in this movie?
+My girl 2
+10
+
+TV/Film: 1990s: In 1994, Jamie Lee Curtis starred in this movie?
+True lies
+10
+
+TV/Film: 1990s: In 1994, Jane Fonda starred in this movie?
+A century of cinema
+10
+
+TV/Film: 1990s: In 1994, Jeff Bridges starred in this movie?
+Blown away
+10
+
+TV/Film: 1990s: In 1994, Jodie Foster starred in this movie?
+Maverick
+10
+
+TV/Film: 1990s: In 1994, Jodie Foster starred in this movie?
+Nell
+10
+
+TV/Film: 1990s: In 1994, John Travolta starred in this movie?
+Pulp fiction
+10
+
+TV/Film: 1990s: In 1994, Julia Roberts starred in this movie?
+A century of cinema
+10
+
+TV/Film: 1990s: In 1994, Julia Roberts starred in this movie?
+I love trouble
+10
+
+TV/Film: 1990s: In 1994, Katharine Hepburn starred in this movie?
+Love affair
+10
+
+TV/Film: 1990s: In 1994, Kevin Bacon starred in this movie?
+The air up there
+10
+
+TV/Film: 1990s: In 1994, Kevin Bacon starred in this movie?
+The river wild
+10
+
+TV/Film: 1990s: In 1994, Kevin Costner starred in this movie?
+A century of cinema
+10
+
+TV/Film: 1990s: In 1994, Kevin Costner starred in this movie?
+The war
+10
+
+TV/Film: 1990s: In 1994, Kevin Costner starred in this movie?
+Wyatt earp
+10
+
+TV/Film: 1990s: In 1994, Kirstie Alley starred in this movie?
+Chains o' gold
+10
+
+TV/Film: 1990s: In 1994, kurt russell starred in this movie?
+Stargate
+10
+
+TV/Film: 1990s: In 1994, Lauren Holly starred in this movie?
+Dumb & dumber
+10
+
+TV/Film: 1990s: In 1994, Meg Ryan starred in this movie?
+A century of cinema
+10
+
+TV/Film: 1990s: In 1994, Meg Ryan starred in this movie?
+I.Q.
+10
+
+TV/Film: 1990s: In 1994, Meg Ryan starred in this movie?
+When a man loves a woman
+10
+
+TV/Film: 1990s: In 1994, Mel Gibson starred in this movie?
+Maverick
+10
+
+TV/Film: 1990s: In 1994, Melanie Griffith starred in this movie?
+Milk money
+10
+
+TV/Film: 1990s: In 1994, Melanie Griffith starred in this movie?
+Nobody's fool
+10
+
+TV/Film: 1990s: In 1994, Meryl Streep starred in this movie?
+A century of cinema
+10
+
+TV/Film: 1990s: In 1994, Meryl Streep starred in this movie?
+The river wild
+10
+
+TV/Film: 1990s: In 1994, Michael Caine starred in this movie?
+On deadly ground
+10
+
+TV/Film: 1990s: In 1994, Michael Douglas starred in this movie?
+Disclosure
+10
+
+TV/Film: 1990s: In 1994, Michael Keaton starred in this movie?
+Speechless
+10
+
+TV/Film: 1990s: In 1994, Michael Keaton starred in this movie?
+The paper
+10
+
+TV/Film: 1990s: In 1994, Michelle Pfeiffer starred in this movie?
+Wolf
+10
+
+TV/Film: 1990s: In 1994, Neve Campbell starred in this movie?
+Paint cans
+10
+
+TV/Film: 1990s: In 1994, Neve Campbell starred in this movie?
+The dark
+10
+
+TV/Film: 1990s: In 1994, Nicolas Cage starred in this movie?
+A century of cinema
+10
+
+TV/Film: 1990s: In 1994, Nicolas Cage starred in this movie?
+Guarding tess
+10
+
+TV/Film: 1990s: In 1994, Nicolas Cage starred in this movie?
+It could happen to you
+10
+
+TV/Film: 1990s: In 1994, Nicolas Cage starred in this movie?
+Trapped in paradise
+10
+
+TV/Film: 1990s: In 1994, Pamela Anderson starred in this movie?
+Raw justice
+10
+
+TV/Film: 1990s: In 1994, Pierce Brosnan starred in this movie?
+Love affair
+10
+
+TV/Film: 1990s: In 1994, Raquel Welch starred in this movie?
+Naked gun 33 1/3: the final insult
+10
+
+TV/Film: 1990s: In 1994, Renee Zellweger starred in this movie?
+Love and a .45
+10
+
+TV/Film: 1990s: In 1994, Renee Zellweger starred in this movie?
+Reality bites
+10
+
+TV/Film: 1990s: In 1994, Richard Gere starred in this movie?
+Intersection
+10
+
+TV/Film: 1990s: In 1994, Robert De Niro starred in this movie?
+Mary shelley's frankenstein
+10
+
+TV/Film: 1990s: In 1994, Robin Williams starred in this movie?
+Being human
+10
+
+TV/Film: 1990s: In 1994, Russell Crowe starred in this movie?
+For the moment
+10
+
+TV/Film: 1990s: In 1994, Russell Crowe starred in this movie?
+The sum of us
+10
+
+TV/Film: 1990s: In 1994, Sally Field starred in this movie?
+A century of cinema
+10
+
+TV/Film: 1990s: In 1994, Sally Field starred in this movie?
+Forrest gump
+10
+
+TV/Film: 1990s: In 1994, Salma Hayek starred in this movie?
+Mi vida loca
+10
+
+TV/Film: 1990s: In 1994, Sandra Bullock starred in this movie?
+Speed
+10
+
+TV/Film: 1990s: In 1994, Sarah Jessica Parker starred in this movie?
+Ed wood
+10
+
+TV/Film: 1990s: In 1994, Sean Connery starred in this movie?
+A good man in africa
+10
+
+TV/Film: 1990s: In 1994, Sharon Stone starred in this movie?
+Intersection
+10
+
+TV/Film: 1990s: In 1994, Sharon Stone starred in this movie?
+The specialist
+10
+
+TV/Film: 1990s: In 1994, Shirley MacLaine starred in this movie?
+A century of cinema
+10
+
+TV/Film: 1990s: In 1994, Shirley MacLaine starred in this movie?
+Guarding tess
+10
+
+TV/Film: 1990s: In 1994, Sigourney Weaver starred in this movie?
+Death and the maiden
+10
+
+TV/Film: 1990s: In 1994, Susan Sarandon starred in this movie?
+Little women
+10
+
+TV/Film: 1990s: In 1994, Susan Sarandon starred in this movie?
+Safe passage
+10
+
+TV/Film: 1990s: In 1994, Susan Sarandon starred in this movie?
+The client
+10
+
+TV/Film: 1990s: In 1994, Sylvester Stallone starred in this movie?
+A century of cinema
+10
+
+TV/Film: 1990s: In 1994, Sylvester Stallone starred in this movie?
+The specialist
+10
+
+TV/Film: 1990s: In 1994, Tom Cruise starred in this movie?
+Interview with the vampire
+10
+
+TV/Film: 1990s: In 1994, Tom Hanks starred in this movie?
+Forrest gump
+10
+
+TV/Film: 1990s: In 1994, Tommy Lee Jones starred in this movie?
+Blown away
+10
+
+TV/Film: 1990s: In 1994, Tommy Lee Jones starred in this movie?
+Blue sky
+10
+
+TV/Film: 1990s: In 1994, Tommy Lee Jones starred in this movie?
+Cobb
+10
+
+TV/Film: 1990s: In 1994, Tommy Lee Jones starred in this movie?
+The client
+10
+
+TV/Film: 1990s: In 1994, Whoopi Goldberg starred in this movie?
+Naked in New York
+10
+
+TV/Film: 1990s: In 1994, Whoopi Goldberg starred in this movie?
+The little rascals
+10
+
+TV/Film: 1990s: In 1994, Whoopi Goldberg starred in this movie?
+The pagemaster
+10
+
+TV/Film: 1990s: In 1994, Winona Ryder starred in this movie?
+Little women
+10
+
+TV/Film: 1990s: In 1994, Winona Ryder starred in this movie?
+Reality bites
+10
+
+TV/Film: 1990s: In 1995, Alec Baldwin starred in this movie?
+Two bits
+10
+
+TV/Film: 1990s: In 1995, Alicia Silverstone starred in this movie?
+Clueless
+10
+
+TV/Film: 1990s: In 1995, Alicia Silverstone starred in this movie?
+Hideaway
+10
+
+TV/Film: 1990s: In 1995, Alicia Silverstone starred in this movie?
+Le nouveau monde
+10
+
+TV/Film: 1990s: In 1995, Alicia Silverstone starred in this movie?
+The babysitter
+10
+
+TV/Film: 1990s: In 1995, Alicia Silverstone starred in this movie?
+True crime
+10
+
+TV/Film: 1990s: In 1995, Angelina Jolie starred in this movie?
+Hackers
+10
+
+TV/Film: 1990s: In 1995, Angelina Jolie starred in this movie?
+Without evidence
+10
+
+TV/Film: 1990s: In 1995, Anthony Hopkins starred in this movie?
+Nixon
+10
+
+TV/Film: 1990s: In 1995, Antonio Banderas starred in this movie?
+Assassins
+10
+
+TV/Film: 1990s: In 1995, Antonio Banderas starred in this movie?
+Desperado
+10
+
+TV/Film: 1990s: In 1995, Antonio Banderas starred in this movie?
+Four rooms
+10
+
+TV/Film: 1990s: In 1995, Antonio Banderas starred in this movie?
+Miami rhapsody
+10
+
+TV/Film: 1990s: In 1995, Antonio Banderas starred in this movie?
+Never talk to strangers
+10
+
+TV/Film: 1990s: In 1995, Ashley Judd starred in this movie?
+Heat
+10
+
+TV/Film: 1990s: In 1995, Ashley Judd starred in this movie?
+Smoke
+10
+
+TV/Film: 1990s: In 1995, Ashley Judd starred in this movie?
+The passion of darkly noon
+10
+
+TV/Film: 1990s: In 1995, Bette Midler starred in this movie?
+Get shorty
+10
+
+TV/Film: 1990s: In 1995, Billy Crystal starred in this movie?
+Forget paris
+10
+
+TV/Film: 1990s: In 1995, Brad Pitt starred in this movie?
+Seven
+10
+
+TV/Film: 1990s: In 1995, Bruce Willis starred in this movie?
+Die hard with a vengeance
+10
+
+TV/Film: 1990s: In 1995, Bruce Willis starred in this movie?
+Four rooms
+10
+
+TV/Film: 1990s: In 1995, Christopher Reeve starred in this movie?
+Village of the damned
+10
+
+TV/Film: 1990s: In 1995, Dan Akroyd starred in this movie?
+Tommy boy
+10
+
+TV/Film: 1990s: In 1995, Demi Moore starred in this movie?
+Now and then
+10
+
+TV/Film: 1990s: In 1995, Demi Moore starred in this movie?
+The scarlet letter
+10
+
+TV/Film: 1990s: In 1995, Denzel Washington starred in this movie?
+Crimson tide
+10
+
+TV/Film: 1990s: In 1995, Denzel Washington starred in this movie?
+Devil in a blue dress
+10
+
+TV/Film: 1990s: In 1995, Denzel Washington starred in this movie?
+Virtuosity
+10
+
+TV/Film: 1990s: In 1995, Drew Barrymore starred in this movie?
+Batman forever
+10
+
+TV/Film: 1990s: In 1995, Drew Barrymore starred in this movie?
+Boys on the side
+10
+
+TV/Film: 1990s: In 1995, Drew Barrymore starred in this movie?
+Mad love
+10
+
+TV/Film: 1990s: In 1995, Dustin Hoffman starred in this movie?
+Outbreak
+10
+
+TV/Film: 1990s: In 1995, Eddie Murphy starred in this movie?
+Vampire in brooklyn
+10
+
+TV/Film: 1990s: In 1995, Elizabeth Hurley starred in this movie?
+Mad dogs and englishmen
+10
+
+TV/Film: 1990s: In 1995, Emma Thompson starred in this movie?
+Carrington
+10
+
+TV/Film: 1990s: In 1995, Emma Thompson starred in this movie?
+Sense and sensibility
+10
+
+TV/Film: 1990s: In 1995, Gene Hackman starred in this movie?
+Crimson tide
+10
+
+TV/Film: 1990s: In 1995, Gene Hackman starred in this movie?
+Get shorty
+10
+
+TV/Film: 1990s: In 1995, Gene Hackman starred in this movie?
+The quick and the dead
+10
+
+TV/Film: 1990s: In 1995, Harrison Ford starred in this movie?
+Sabrina
+10
+
+TV/Film: 1990s: In 1995, Hugh Grant starred in this movie?
+An awfully big adventure
+10
+
+TV/Film: 1990s: In 1995, Hugh Grant starred in this movie?
+Nine months
+10
+
+TV/Film: 1990s: In 1995, Hugh Grant starred in this movie?
+Restoration
+10
+
+TV/Film: 1990s: In 1995, Hugh Grant starred in this movie?
+Sense and sensibility
+10
+
+TV/Film: 1990s: In 1995, James Woods starred in this movie?
+Casino
+10
+
+TV/Film: 1990s: In 1995, James Woods starred in this movie?
+Killer: a journal of murder
+10
+
+TV/Film: 1990s: In 1995, James Woods starred in this movie?
+Nixon
+10
+
+TV/Film: 1990s: In 1995, Jeff Bridges starred in this movie?
+Wild bill
+10
+
+TV/Film: 1990s: In 1995, Jennifer Lopez starred in this movie?
+Money train
+10
+
+TV/Film: 1990s: In 1995, Jennifer Lopez starred in this movie?
+My family
+10
+
+TV/Film: 1990s: In 1995, John Travolta starred in this movie?
+Get shorty
+10
+
+TV/Film: 1990s: In 1995, John Travolta starred in this movie?
+White man's burden
+10
+
+TV/Film: 1990s: In 1995, Julia Roberts starred in this movie?
+Something to talk about
+10
+
+TV/Film: 1990s: In 1995, Kevin Bacon starred in this movie?
+Apollo 13
+10
+
+TV/Film: 1990s: In 1995, Kevin Bacon starred in this movie?
+Balto
+10
+
+TV/Film: 1990s: In 1995, Kevin Bacon starred in this movie?
+Murder in the first
+10
+
+TV/Film: 1990s: In 1995, Kevin Costner starred in this movie?
+Waterworld
+10
+
+TV/Film: 1990s: In 1995, Kirstie Alley starred in this movie?
+It takes two
+10
+
+TV/Film: 1990s: In 1995, Kirstie Alley starred in this movie?
+Village of the damned
+10
+
+TV/Film: 1990s: In 1995, Lauren Holly starred in this movie?
+Sabrina
+10
+
+TV/Film: 1990s: In 1995, Marlon Brando starred in this movie?
+Don juan demarco
+10
+
+TV/Film: 1990s: In 1995, Meg Ryan starred in this movie?
+French kiss
+10
+
+TV/Film: 1990s: In 1995, Meg Ryan starred in this movie?
+Restoration
+10
+
+TV/Film: 1990s: In 1995, Mel Gibson starred in this movie?
+Braveheart
+10
+
+TV/Film: 1990s: In 1995, Melanie Griffith starred in this movie?
+Now and then
+10
+
+TV/Film: 1990s: In 1995, Meryl Streep starred in this movie?
+The bridges of madison county
+10
+
+TV/Film: 1990s: In 1995, Michael Douglas starred in this movie?
+The American president
+10
+
+TV/Film: 1990s: In 1995, Michelle Pfeiffer starred in this movie?
+Dangerous minds
+10
+
+TV/Film: 1990s: In 1995, Neve Campbell starred in this movie?
+Love child
+10
+
+TV/Film: 1990s: In 1995, Nicolas Cage starred in this movie?
+Kiss of death
+10
+
+TV/Film: 1990s: In 1995, Nicolas Cage starred in this movie?
+Leaving las vegas
+10
+
+TV/Film: 1990s: In 1995, Nicole Kidman starred in this movie?
+Batman forever
+10
+
+TV/Film: 1990s: In 1995, Nicole Kidman starred in this movie?
+To die for
+10
+
+TV/Film: 1990s: In 1995, Pamela Anderson starred in this movie?
+Naked souls
+10
+
+TV/Film: 1990s: In 1995, Pierce Brosnan starred in this movie?
+Goldeneye
+10
+
+TV/Film: 1990s: In 1995, Renee Zellweger starred in this movie?
+Empire records
+10
+
+TV/Film: 1990s: In 1995, Renee Zellweger starred in this movie?
+The low life
+10
+
+TV/Film: 1990s: In 1995, Richard Gere starred in this movie?
+First knight
+10
+
+TV/Film: 1990s: In 1995, Richard Gere starred in this movie?
+Unzipped
+10
+
+TV/Film: 1990s: In 1995, Robert De Niro starred in this movie?
+Casino
+10
+
+TV/Film: 1990s: In 1995, Robert De Niro starred in this movie?
+Heat
+10
+
+TV/Film: 1990s: In 1995, Robert De Niro starred in this movie?
+Les cent et une nuits
+10
+
+TV/Film: 1990s: In 1995, Robin Williams starred in this movie?
+Jumanji
+10
+
+TV/Film: 1990s: In 1995, Robin Williams starred in this movie?
+Nine months
+10
+
+TV/Film: 1990s: In 1995, Russell Crowe starred in this movie?
+Rough magic
+10
+
+TV/Film: 1990s: In 1995, Russell Crowe starred in this movie?
+The quick and the dead
+10
+
+TV/Film: 1990s: In 1995, Russell Crowe starred in this movie?
+Under the gun
+10
+
+TV/Film: 1990s: In 1995, Russell Crowe starred in this movie?
+Virtuosity
+10
+
+TV/Film: 1990s: In 1995, Salma Hayek starred in this movie?
+Desperado
+10
+
+TV/Film: 1990s: In 1995, Salma Hayek starred in this movie?
+Fair game
+10
+
+TV/Film: 1990s: In 1995, Salma Hayek starred in this movie?
+Four rooms
+10
+
+TV/Film: 1990s: In 1995, Salma Hayek starred in this movie?
+Miracle alley
+10
+
+TV/Film: 1990s: In 1995, Sandra Bullock starred in this movie?
+The net
+10
+
+TV/Film: 1990s: In 1995, Sandra Bullock starred in this movie?
+While you were sleeping
+10
+
+TV/Film: 1990s: In 1995, Sarah Jessica Parker starred in this movie?
+Miami rhapsody
+10
+
+TV/Film: 1990s: In 1995, Sean Connery starred in this movie?
+First knight
+10
+
+TV/Film: 1990s: In 1995, Sean Connery starred in this movie?
+Just cause
+10
+
+TV/Film: 1990s: In 1995, Sharon Stone starred in this movie?
+Casino
+10
+
+TV/Film: 1990s: In 1995, Sharon Stone starred in this movie?
+Catwalk
+10
+
+TV/Film: 1990s: In 1995, Sharon Stone starred in this movie?
+Tears in the rain
+10
+
+TV/Film: 1990s: In 1995, Sharon Stone starred in this movie?
+The quick and the dead
+10
+
+TV/Film: 1990s: In 1995, Sigourney Weaver starred in this movie?
+Copycat
+10
+
+TV/Film: 1990s: In 1995, Sigourney Weaver starred in this movie?
+Jeffrey
+10
+
+TV/Film: 1990s: In 1995, Susan Sarandon starred in this movie?
+Dead man walking
+10
+
+TV/Film: 1990s: In 1995, Sylvester Stallone starred in this movie?
+Assassins
+10
+
+TV/Film: 1990s: In 1995, Sylvester Stallone starred in this movie?
+Judge dredd
+10
+
+TV/Film: 1990s: In 1995, Tom Hanks starred in this movie?
+Apollo 13
+10
+
+TV/Film: 1990s: In 1995, Tom Hanks starred in this movie?
+Toy story
+10
+
+TV/Film: 1990s: In 1995, Tommy Lee Jones starred in this movie?
+Batman forever
+10
+
+TV/Film: 1990s: In 1995, Wesley Snipes starred in this movie?
+Drop zone
+10
+
+TV/Film: 1990s: In 1995, Wesley Snipes starred in this movie?
+Money train
+10
+
+TV/Film: 1990s: In 1995, Wesley Snipes starred in this movie?
+Waiting to exhale
+10
+
+TV/Film: 1990s: In 1995, Whoopi Goldberg starred in this movie?
+Boys on the side
+10
+
+TV/Film: 1990s: In 1995, Whoopi Goldberg starred in this movie?
+Moonlight and valentino
+10
+
+TV/Film: 1990s: In 1995, Winona Ryder starred in this movie?
+How to make an American quilt
+10
+
+TV/Film: 1990s: In 1995, Woody Allen starred in this movie?
+Mighty aphrodite
+10
+
+TV/Film: 1990s: In 1996, Alec Baldwin starred in this movie?
+Ghosts of mississippi
+10
+
+TV/Film: 1990s: In 1996, Alec Baldwin starred in this movie?
+Heaven's prisoners
+10
+
+TV/Film: 1990s: In 1996, Alec Baldwin starred in this movie?
+Looking for richard
+10
+
+TV/Film: 1990s: In 1996, Alec Baldwin starred in this movie?
+The juror
+10
+
+TV/Film: 1990s: In 1996, Angelina Jolie starred in this movie?
+Foxfire
+10
+
+TV/Film: 1990s: In 1996, Angelina Jolie starred in this movie?
+Love is all there is
+10
+
+TV/Film: 1990s: In 1996, Angelina Jolie starred in this movie?
+Mojave moon
+10
+
+TV/Film: 1990s: In 1996, Anthony Hopkins starred in this movie?
+Surviving picasso
+10
+
+TV/Film: 1990s: In 1996, Antonio Banderas starred in this movie?
+Evita
+10
+
+TV/Film: 1990s: In 1996, Antonio Banderas starred in this movie?
+Of love and shadows
+10
+
+TV/Film: 1990s: In 1996, Antonio Banderas starred in this movie?
+Two much
+10
+
+TV/Film: 1990s: In 1996, Arnold Schwarzenegger starred in this movie?
+Eraser
+10
+
+TV/Film: 1990s: In 1996, Arnold Schwarzenegger starred in this movie?
+Jingle all the way
+10
+
+TV/Film: 1990s: In 1996, Ashley Judd starred in this movie?
+A time to kill
+10
+
+TV/Film: 1990s: In 1996, Ashley Judd starred in this movie?
+Normal life
+10
+
+TV/Film: 1990s: In 1996, Barbra Streisand starred in this movie?
+The mirror has two faces
+10
+
+TV/Film: 1990s: In 1996, Bette Midler starred in this movie?
+The first wives club
+10
+
+TV/Film: 1990s: In 1996, Billy Crystal starred in this movie?
+Hamlet
+10
+
+TV/Film: 1990s: In 1996, Brad Pitt starred in this movie?
+Sleepers
+10
+
+TV/Film: 1990s: In 1996, Bruce Willis starred in this movie?
+Last man standing
+10
+
+TV/Film: 1990s: In 1996, Cameron Diaz starred in this movie?
+Feeling minnesota
+10
+
+TV/Film: 1990s: In 1996, Cameron Diaz starred in this movie?
+She's the one
+10
+
+TV/Film: 1990s: In 1996, Cameron Diaz starred in this movie?
+The last supper
+10
+
+TV/Film: 1990s: In 1996, Dan Akroyd starred in this movie?
+Celtic pride
+10
+
+TV/Film: 1990s: In 1996, Dan Akroyd starred in this movie?
+Feeling minnesota
+10
+
+TV/Film: 1990s: In 1996, Dan Akroyd starred in this movie?
+Getting away with murder
+10
+
+TV/Film: 1990s: In 1996, Dan Akroyd starred in this movie?
+My fellow americans
+10
+
+TV/Film: 1990s: In 1996, Dan Akroyd starred in this movie?
+Sgt. bilko
+10
+
+TV/Film: 1990s: In 1996, Demi Moore starred in this movie?
+Striptease
+10
+
+TV/Film: 1990s: In 1996, Demi Moore starred in this movie?
+The hunchback of notre dame
+10
+
+TV/Film: 1990s: In 1996, Demi Moore starred in this movie?
+The juror
+10
+
+TV/Film: 1990s: In 1996, Denzel Washington starred in this movie?
+Courage under fire
+10
+
+TV/Film: 1990s: In 1996, Denzel Washington starred in this movie?
+The preacher's wife
+10
+
+TV/Film: 1990s: In 1996, Drew Barrymore starred in this movie?
+Everyone says i love you
+10
+
+TV/Film: 1990s: In 1996, Drew Barrymore starred in this movie?
+Scream
+10
+
+TV/Film: 1990s: In 1996, Dustin Hoffman starred in this movie?
+American buffalo
+10
+
+TV/Film: 1990s: In 1996, Dustin Hoffman starred in this movie?
+Sleepers
+10
+
+TV/Film: 1990s: In 1996, Eddie Murphy starred in this movie?
+The nutty professor
+10
+
+TV/Film: 1990s: In 1996, Gene Hackman starred in this movie?
+Extreme measures
+10
+
+TV/Film: 1990s: In 1996, Gene Hackman starred in this movie?
+The birdcage
+10
+
+TV/Film: 1990s: In 1996, Gene Hackman starred in this movie?
+The chamber
+10
+
+TV/Film: 1990s: In 1996, George Clooney starred in this movie?
+From dusk till dawn
+10
+
+TV/Film: 1990s: In 1996, George Clooney starred in this movie?
+One fine day
+10
+
+TV/Film: 1990s: In 1996, goldie hawn starred in this movie?
+Everyone says i love you
+10
+
+TV/Film: 1990s: In 1996, goldie hawn starred in this movie?
+The first wives club
+10
+
+TV/Film: 1990s: In 1996, Hugh Grant starred in this movie?
+Extreme measures
+10
+
+TV/Film: 1990s: In 1996, James Woods starred in this movie?
+For better or worse
+10
+
+TV/Film: 1990s: In 1996, James Woods starred in this movie?
+Ghosts of mississippi
+10
+
+TV/Film: 1990s: In 1996, Jamie Lee Curtis starred in this movie?
+House arrest
+10
+
+TV/Film: 1990s: In 1996, Jamie Lee Curtis starred in this movie?
+Inflammable
+10
+
+TV/Film: 1990s: In 1996, Jeff Bridges starred in this movie?
+The mirror has two faces
+10
+
+TV/Film: 1990s: In 1996, Jeff Bridges starred in this movie?
+White squall
+10
+
+TV/Film: 1990s: In 1996, Jennifer Lopez starred in this movie?
+Jack
+10
+
+TV/Film: 1990s: In 1996, John Travolta starred in this movie?
+Broken arrow
+10
+
+TV/Film: 1990s: In 1996, John Travolta starred in this movie?
+Michael
+10
+
+TV/Film: 1990s: In 1996, John Travolta starred in this movie?
+Phenomenon
+10
+
+TV/Film: 1990s: In 1996, Julia Roberts starred in this movie?
+Everyone says i love you
+10
+
+TV/Film: 1990s: In 1996, Julia Roberts starred in this movie?
+Mary reilly
+10
+
+TV/Film: 1990s: In 1996, Julia Roberts starred in this movie?
+Michael collins
+10
+
+TV/Film: 1990s: In 1996, Kevin Bacon starred in this movie?
+Sleepers
+10
+
+TV/Film: 1990s: In 1996, Kevin Costner starred in this movie?
+Tin cup
+10
+
+TV/Film: 1990s: In 1996, Kirstie Alley starred in this movie?
+Sticks and stones
+10
+
+TV/Film: 1990s: In 1996, kurt russell starred in this movie?
+Executive decision
+10
+
+TV/Film: 1990s: In 1996, Lauren Bacall starred in this movie?
+My fellow americans
+10
+
+TV/Film: 1990s: In 1996, Lauren Bacall starred in this movie?
+The line king: al hirschfeld
+10
+
+TV/Film: 1990s: In 1996, Lauren Bacall starred in this movie?
+The mirror has two faces
+10
+
+TV/Film: 1990s: In 1996, Lauren Holly starred in this movie?
+Beautiful girls
+10
+
+TV/Film: 1990s: In 1996, Lauren Holly starred in this movie?
+Down periscope
+10
+
+TV/Film: 1990s: In 1996, Marlon Brando starred in this movie?
+The island of dr. moreau
+10
+
+TV/Film: 1990s: In 1996, Meg Ryan starred in this movie?
+Courage under fire
+10
+
+TV/Film: 1990s: In 1996, Mel Gibson starred in this movie?
+Ransom
+10
+
+TV/Film: 1990s: In 1996, Melanie Griffith starred in this movie?
+Mulholland falls
+10
+
+TV/Film: 1990s: In 1996, Melanie Griffith starred in this movie?
+Two much
+10
+
+TV/Film: 1990s: In 1996, Meryl Streep starred in this movie?
+Before and after
+10
+
+TV/Film: 1990s: In 1996, Meryl Streep starred in this movie?
+Marvin's room
+10
+
+TV/Film: 1990s: In 1996, Michael Douglas starred in this movie?
+The ghost and the darkness
+10
+
+TV/Film: 1990s: In 1996, Michael Keaton starred in this movie?
+Multiplicity
+10
+
+TV/Film: 1990s: In 1996, Michelle Pfeiffer starred in this movie?
+One fine day
+10
+
+TV/Film: 1990s: In 1996, Michelle Pfeiffer starred in this movie?
+To gillian on her 37th birthday
+10
+
+TV/Film: 1990s: In 1996, Michelle Pfeiffer starred in this movie?
+Up close and personal
+10
+
+TV/Film: 1990s: In 1996, Neve Campbell starred in this movie?
+Scream
+10
+
+TV/Film: 1990s: In 1996, Neve Campbell starred in this movie?
+The craft
+10
+
+TV/Film: 1990s: In 1996, Nicolas Cage starred in this movie?
+The rock
+10
+
+TV/Film: 1990s: In 1996, Nicole Kidman starred in this movie?
+The portrait of a lady
+10
+
+TV/Film: 1990s: In 1996, Pamela Anderson starred in this movie?
+Barb wire
+10
+
+TV/Film: 1990s: In 1996, Pierce Brosnan starred in this movie?
+Mars attacks!
+10
+
+TV/Film: 1990s: In 1996, Pierce Brosnan starred in this movie?
+The mirror has two faces
+10
+
+TV/Film: 1990s: In 1996, Renee Zellweger starred in this movie?
+Jerry maguire
+10
+
+TV/Film: 1990s: In 1996, Renee Zellweger starred in this movie?
+The whole wide world
+10
+
+TV/Film: 1990s: In 1996, Richard Gere starred in this movie?
+Primal fear
+10
+
+TV/Film: 1990s: In 1996, Robert De Niro starred in this movie?
+Marvin's room
+10
+
+TV/Film: 1990s: In 1996, Robert De Niro starred in this movie?
+Sleepers
+10
+
+TV/Film: 1990s: In 1996, Robert De Niro starred in this movie?
+The fan
+10
+
+TV/Film: 1990s: In 1996, Robin Williams starred in this movie?
+Hamlet
+10
+
+TV/Film: 1990s: In 1996, Robin Williams starred in this movie?
+The secret agent
+10
+
+TV/Film: 1990s: In 1996, Sally Field starred in this movie?
+Eye for an eye
+10
+
+TV/Film: 1990s: In 1996, Salma Hayek starred in this movie?
+Fled
+10
+
+TV/Film: 1990s: In 1996, Salma Hayek starred in this movie?
+From dusk till dawn
+10
+
+TV/Film: 1990s: In 1996, Sandra Bullock starred in this movie?
+A time to kill
+10
+
+TV/Film: 1990s: In 1996, Sandra Bullock starred in this movie?
+In love and war
+10
+
+TV/Film: 1990s: In 1996, Sandra Bullock starred in this movie?
+Two if by sea
+10
+
+TV/Film: 1990s: In 1996, Sarah Jessica Parker starred in this movie?
+Extreme measures
+10
+
+TV/Film: 1990s: In 1996, Sarah Jessica Parker starred in this movie?
+If lucy fell
+10
+
+TV/Film: 1990s: In 1996, Sarah Jessica Parker starred in this movie?
+Mars attacks!
+10
+
+TV/Film: 1990s: In 1996, Sarah Jessica Parker starred in this movie?
+The first wives club
+10
+
+TV/Film: 1990s: In 1996, Sarah Jessica Parker starred in this movie?
+The substance of fire
+10
+
+TV/Film: 1990s: In 1996, Sean Connery starred in this movie?
+Dragonheart
+10
+
+TV/Film: 1990s: In 1996, Sean Connery starred in this movie?
+The rock
+10
+
+TV/Film: 1990s: In 1996, Sharon Stone starred in this movie?
+Diabolique
+10
+
+TV/Film: 1990s: In 1996, Sharon Stone starred in this movie?
+Last dance
+10
+
+TV/Film: 1990s: In 1996, Shirley MacLaine starred in this movie?
+Mrs. winterbourne
+10
+
+TV/Film: 1990s: In 1996, Shirley MacLaine starred in this movie?
+The celluloid closet
+10
+
+TV/Film: 1990s: In 1996, Shirley MacLaine starred in this movie?
+The evening star
+10
+
+TV/Film: 1990s: In 1996, Susan Sarandon starred in this movie?
+James and the giant peach
+10
+
+TV/Film: 1990s: In 1996, Susan Sarandon starred in this movie?
+The celluloid closet
+10
+
+TV/Film: 1990s: In 1996, Sylvester Stallone starred in this movie?
+Daylight
+10
+
+TV/Film: 1990s: In 1996, This movie was released on August 2?
+Emma
+10
+
+TV/Film: 1990s: In 1996, This movie was released on August 2?
+Jack
+10
+
+TV/Film: 1990s: In 1996, Tom Cruise starred in this movie?
+Jerry maguire
+10
+
+TV/Film: 1990s: In 1996, Tom Cruise starred in this movie?
+Mission: impossible
+10
+
+TV/Film: 1990s: In 1996, Tom Hanks starred in this movie?
+That thing you do!
+10
+
+TV/Film: 1990s: In 1996, Tom Hanks starred in this movie?
+The celluloid closet
+10
+
+TV/Film: 1990s: In 1996, Wesley Snipes starred in this movie?
+The fan
+10
+
+TV/Film: 1990s: In 1996, Whoopi Goldberg starred in this movie?
+Bogus
+10
+
+TV/Film: 1990s: In 1996, Whoopi Goldberg starred in this movie?
+Eddie
+10
+
+TV/Film: 1990s: In 1996, Whoopi Goldberg starred in this movie?
+Ghosts of mississippi
+10
+
+TV/Film: 1990s: In 1996, Whoopi Goldberg starred in this movie?
+The associate
+10
+
+TV/Film: 1990s: In 1996, Whoopi Goldberg starred in this movie?
+The celluloid closet
+10
+
+TV/Film: 1990s: In 1996, Winona Ryder starred in this movie?
+Boys
+10
+
+TV/Film: 1990s: In 1996, Winona Ryder starred in this movie?
+Looking for richard
+10
+
+TV/Film: 1990s: In 1996, Winona Ryder starred in this movie?
+The crucible
+10
+
+TV/Film: 1990s: In 1996, Woody Allen starred in this movie?
+Everyone says i love you
+10
+
+TV/Film: 1990s: In 1997, Alec Baldwin starred in this movie?
+The edge
+10
+
+TV/Film: 1990s: In 1997, Alicia Silverstone starred in this movie?
+Batman & robin
+10
+
+TV/Film: 1990s: In 1997, Alicia Silverstone starred in this movie?
+Excess baggage
+10
+
+TV/Film: 1990s: In 1997, Angelina Jolie starred in this movie?
+Playing god
+10
+
+TV/Film: 1990s: In 1997, Anthony Hopkins starred in this movie?
+Amistad
+10
+
+TV/Film: 1990s: In 1997, Anthony Hopkins starred in this movie?
+The edge
+10
+
+TV/Film: 1990s: In 1997, Arnold Schwarzenegger starred in this movie?
+Batman & robin
+10
+
+TV/Film: 1990s: In 1997, Ashley Judd starred in this movie?
+Kiss the girls
+10
+
+TV/Film: 1990s: In 1997, Ashley Judd starred in this movie?
+The locusts
+10
+
+TV/Film: 1990s: In 1997, Bette Midler starred in this movie?
+That old feeling
+10
+
+TV/Film: 1990s: In 1997, Billy Crystal starred in this movie?
+Deconstructing harry
+10
+
+TV/Film: 1990s: In 1997, Billy Crystal starred in this movie?
+Fathers' day
+10
+
+TV/Film: 1990s: In 1997, Brad Pitt starred in this movie?
+Seven years in tibet
+10
+
+TV/Film: 1990s: In 1997, Brad Pitt starred in this movie?
+The devil's own
+10
+
+TV/Film: 1990s: In 1997, Bruce Willis starred in this movie?
+The fifth element
+10
+
+TV/Film: 1990s: In 1997, Bruce Willis starred in this movie?
+The jackal
+10
+
+TV/Film: 1990s: In 1997, Cameron Diaz starred in this movie?
+A life less ordinary
+10
+
+TV/Film: 1990s: In 1997, Cameron Diaz starred in this movie?
+Head above water
+10
+
+TV/Film: 1990s: In 1997, Cameron Diaz starred in this movie?
+Keys to tulsa
+10
+
+TV/Film: 1990s: In 1997, Cameron Diaz starred in this movie?
+My best friend's wedding
+10
+
+TV/Film: 1990s: In 1997, Dan Akroyd starred in this movie?
+Grosse pointe blank
+10
+
+TV/Film: 1990s: In 1997, Demi Moore starred in this movie?
+Deconstructing harry
+10
+
+TV/Film: 1990s: In 1997, Demi Moore starred in this movie?
+G.i. jane
+10
+
+TV/Film: 1990s: In 1997, Dustin Hoffman starred in this movie?
+Mad city
+10
+
+TV/Film: 1990s: In 1997, Dustin Hoffman starred in this movie?
+Wag the dog
+10
+
+TV/Film: 1990s: In 1997, Eddie Murphy starred in this movie?
+Metro
+10
+
+TV/Film: 1990s: In 1997, Elizabeth Hurley starred in this movie?
+Dangerous ground
+10
+
+TV/Film: 1990s: In 1997, Emma Thompson starred in this movie?
+The winter guest
+10
+
+TV/Film: 1990s: In 1997, Gene Hackman starred in this movie?
+Absolute power
+10
+
+TV/Film: 1990s: In 1997, George Clooney starred in this movie?
+Batman & robin
+10
+
+TV/Film: 1990s: In 1997, George Clooney starred in this movie?
+The peacemaker
+10
+
+TV/Film: 1990s: In 1997, Harrison Ford starred in this movie?
+The devil's own
+10
+
+TV/Film: 1990s: In 1997, James Woods starred in this movie?
+Contact
+10
+
+TV/Film: 1990s: In 1997, James Woods starred in this movie?
+Hercules
+10
+
+TV/Film: 1990s: In 1997, James Woods starred in this movie?
+Kicked in the head
+10
+
+TV/Film: 1990s: In 1997, Jamie Lee Curtis starred in this movie?
+Fierce creatures
+10
+
+TV/Film: 1990s: In 1997, Jennifer Lopez starred in this movie?
+Anaconda
+10
+
+TV/Film: 1990s: In 1997, Jennifer Lopez starred in this movie?
+Blood and wine
+10
+
+TV/Film: 1990s: In 1997, Jennifer Lopez starred in this movie?
+Selena
+10
+
+TV/Film: 1990s: In 1997, Jodie Foster starred in this movie?
+Contact
+10
+
+TV/Film: 1990s: In 1997, John Travolta starred in this movie?
+Mad city
+10
+
+TV/Film: 1990s: In 1997, John Travolta starred in this movie?
+She's so lovely
+10
+
+TV/Film: 1990s: In 1997, Julia Roberts starred in this movie?
+Conspiracy theory
+10
+
+TV/Film: 1990s: In 1997, Julia Roberts starred in this movie?
+My best friend's wedding
+10
+
+TV/Film: 1990s: In 1997, Kevin Bacon starred in this movie?
+Picture perfect
+10
+
+TV/Film: 1990s: In 1997, Kevin Bacon starred in this movie?
+Telling lies in America
+10
+
+TV/Film: 1990s: In 1997, Kevin Costner starred in this movie?
+The postman
+10
+
+TV/Film: 1990s: In 1997, Kirstie Alley starred in this movie?
+Deconstructing harry
+10
+
+TV/Film: 1990s: In 1997, Kirstie Alley starred in this movie?
+For richer or poorer
+10
+
+TV/Film: 1990s: In 1997, Kirstie Alley starred in this movie?
+Nevada
+10
+
+TV/Film: 1990s: In 1997, kurt russell starred in this movie?
+Breakdown
+10
+
+TV/Film: 1990s: In 1997, Lauren Holly starred in this movie?
+A smile like yours
+10
+
+TV/Film: 1990s: In 1997, Lauren Holly starred in this movie?
+Turbulence
+10
+
+TV/Film: 1990s: In 1997, Meg Ryan starred in this movie?
+Addicted to love
+10
+
+TV/Film: 1990s: In 1997, Mel Gibson starred in this movie?
+Conspiracy theory
+10
+
+TV/Film: 1990s: In 1997, Mel Gibson starred in this movie?
+Fathers' day
+10
+
+TV/Film: 1990s: In 1997, Michael Caine starred in this movie?
+Blood and wine
+10
+
+TV/Film: 1990s: In 1997, Michael Douglas starred in this movie?
+The game
+10
+
+TV/Film: 1990s: In 1997, Michael Keaton starred in this movie?
+Jackie brown
+10
+
+TV/Film: 1990s: In 1997, Michelle Pfeiffer starred in this movie?
+A thousand acres
+10
+
+TV/Film: 1990s: In 1997, Neve Campbell starred in this movie?
+Scream 2
+10
+
+TV/Film: 1990s: In 1997, Nicolas Cage starred in this movie?
+Con air
+10
+
+TV/Film: 1990s: In 1997, Nicolas Cage starred in this movie?
+Face/off
+10
+
+TV/Film: 1990s: In 1997, Nicole Kidman starred in this movie?
+The peacemaker
+10
+
+TV/Film: 1990s: In 1997, Pierce Brosnan starred in this movie?
+Dante's peak
+10
+
+TV/Film: 1990s: In 1997, Pierce Brosnan starred in this movie?
+Tomorrow never dies
+10
+
+TV/Film: 1990s: In 1997, Renee Zellweger starred in this movie?
+Deceiver
+10
+
+TV/Film: 1990s: In 1997, Richard Gere starred in this movie?
+Red corner
+10
+
+TV/Film: 1990s: In 1997, Richard Gere starred in this movie?
+The jackal
+10
+
+TV/Film: 1990s: In 1997, Robert De Niro starred in this movie?
+Cop land
+10
+
+TV/Film: 1990s: In 1997, Robert De Niro starred in this movie?
+Jackie brown
+10
+
+TV/Film: 1990s: In 1997, Robert De Niro starred in this movie?
+Wag the dog
+10
+
+TV/Film: 1990s: In 1997, Robin Williams starred in this movie?
+Fathers' day
+10
+
+TV/Film: 1990s: In 1997, Robin Williams starred in this movie?
+Flubber
+10
+
+TV/Film: 1990s: In 1997, Robin Williams starred in this movie?
+Good will hunting
+10
+
+TV/Film: 1990s: In 1997, Russell Crowe starred in this movie?
+Breaking up
+10
+
+TV/Film: 1990s: In 1997, Russell Crowe starred in this movie?
+Heaven's burning
+10
+
+TV/Film: 1990s: In 1997, Salma Hayek starred in this movie?
+Breaking up
+10
+
+TV/Film: 1990s: In 1997, Salma Hayek starred in this movie?
+Follow me home
+10
+
+TV/Film: 1990s: In 1997, Salma Hayek starred in this movie?
+Fools rush in
+10
+
+TV/Film: 1990s: In 1997, Salma Hayek starred in this movie?
+Who the hell is juliette?
+10
+
+TV/Film: 1990s: In 1997, Sandra Bullock starred in this movie?
+Speed 2: cruise control
+10
+
+TV/Film: 1990s: In 1997, Sarah Jessica Parker starred in this movie?
+'til there was you
+10
+
+TV/Film: 1990s: In 1997, Sarah Michelle Gellar starred in this movie?
+I know what you did last summer
+10
+
+TV/Film: 1990s: In 1997, Sarah Michelle Gellar starred in this movie?
+Scream 2
+10
+
+TV/Film: 1990s: In 1997, Shirley MacLaine starred in this movie?
+A smile like yours
+10
+
+TV/Film: 1990s: In 1997, Sigourney Weaver starred in this movie?
+Alien resurrection
+10
+
+TV/Film: 1990s: In 1997, Sigourney Weaver starred in this movie?
+The grimm brothers' snow white
+10
+
+TV/Film: 1990s: In 1997, Sigourney Weaver starred in this movie?
+The ice storm
+10
+
+TV/Film: 1990s: In 1997, Sylvester Stallone starred in this movie?
+Cop land
+10
+
+TV/Film: 1990s: In 1997, This Movie was Released on June 27?
+Face/off
+10
+
+TV/Film: 1990s: In 1997, This Movie was Released on June 27?
+Hercules
+10
+
+TV/Film: 1990s: In 1997, This Movie was Released on June 6?
+Bliss
+10
+
+TV/Film: 1990s: In 1997, This Movie was Released on June 6?
+Buddy
+10
+
+TV/Film: 1990s: In 1997, Tommy Lee Jones starred in this movie?
+Men in black
+10
+
+TV/Film: 1990s: In 1997, Tommy Lee Jones starred in this movie?
+Volcano
+10
+
+TV/Film: 1990s: In 1997, Wesley Snipes starred in this movie?
+Murder at 1600
+10
+
+TV/Film: 1990s: In 1997, Wesley Snipes starred in this movie?
+One night stand
+10
+
+TV/Film: 1990s: In 1997, Winona Ryder starred in this movie?
+Alien resurrection
+10
+
+TV/Film: 1990s: In 1997, Woody Allen starred in this movie?
+Deconstructing harry
+10
+
+TV/Film: 1990s: In 1998 71st Academy Awards: Best Actress In A Leading Role Was won by Gwyneth Paltrow For The Movie?
+Shakespeare In Love
+10
+
+TV/Film: 1990s: In 1998 71st Academy Awards: Best Actress In A Supporting role was won by Judi Dench For The Movie?
+Shakespeare in Love
+10
+
+TV/Film: 1990s: In 1998, Alec Baldwin starred in this movie?
+Mercury rising
+10
+
+TV/Film: 1990s: In 1998, Angelina Jolie starred in this movie?
+Playing by heart
+10
+
+TV/Film: 1990s: In 1998, Anthony Hopkins starred in this movie?
+Meet joe black
+10
+
+TV/Film: 1990s: In 1998, Anthony Hopkins starred in this movie?
+The mask of zorro
+10
+
+TV/Film: 1990s: In 1998, Antonio Banderas starred in this movie?
+The mask of zorro
+10
+
+TV/Film: 1990s: In 1998, Ashley Judd starred in this movie?
+Simon birch
+10
+
+TV/Film: 1990s: In 1998, Billy Crystal starred in this movie?
+My giant
+10
+
+TV/Film: 1990s: In 1998, Brad Pitt starred in this movie?
+Meet joe black
+10
+
+TV/Film: 1990s: In 1998, Bruce Willis starred in this movie?
+Armageddon
+10
+
+TV/Film: 1990s: In 1998, Bruce Willis starred in this movie?
+Mercury rising
+10
+
+TV/Film: 1990s: In 1998, Bruce Willis starred in this movie?
+The siege
+10
+
+TV/Film: 1990s: In 1998, Cameron Diaz starred in this movie?
+Fear and loathing in las vegas
+10
+
+TV/Film: 1990s: In 1998, Cameron Diaz starred in this movie?
+There's something about mary
+10
+
+TV/Film: 1990s: In 1998, Cameron Diaz starred in this movie?
+Very bad things
+10
+
+TV/Film: 1990s: In 1998, Denzel Washington starred in this movie?
+Fallen
+10
+
+TV/Film: 1990s: In 1998, Denzel Washington starred in this movie?
+He got game
+10
+
+TV/Film: 1990s: In 1998, Denzel Washington starred in this movie?
+The siege
+10
+
+TV/Film: 1990s: In 1998, Drew Barrymore starred in this movie?
+Ever after: a cinderella story
+10
+
+TV/Film: 1990s: In 1998, Drew Barrymore starred in this movie?
+Home fries
+10
+
+TV/Film: 1990s: In 1998, Drew Barrymore starred in this movie?
+The wedding singer
+10
+
+TV/Film: 1990s: In 1998, Dustin Hoffman starred in this movie?
+Sphere
+10
+
+TV/Film: 1990s: In 1998, Eddie Murphy starred in this movie?
+Doctor dolittle
+10
+
+TV/Film: 1990s: In 1998, Eddie Murphy starred in this movie?
+Holy man
+10
+
+TV/Film: 1990s: In 1998, Elizabeth Hurley starred in this movie?
+Permanent midnight
+10
+
+TV/Film: 1990s: In 1998, Emma Thompson starred in this movie?
+Primary colors
+10
+
+TV/Film: 1990s: In 1998, Gene Hackman starred in this movie?
+Antz
+10
+
+TV/Film: 1990s: In 1998, Gene Hackman starred in this movie?
+Enemy of the state
+10
+
+TV/Film: 1990s: In 1998, Gene Hackman starred in this movie?
+Twilight
+10
+
+TV/Film: 1990s: In 1998, George Clooney starred in this movie?
+Full tilt boogie
+10
+
+TV/Film: 1990s: In 1998, George Clooney starred in this movie?
+The thin red line
+10
+
+TV/Film: 1990s: In 1998, James Woods starred in this movie?
+Another day in paradise
+10
+
+TV/Film: 1990s: In 1998, James Woods starred in this movie?
+Fear and loathing in las vegas
+10
+
+TV/Film: 1990s: In 1998, James Woods starred in this movie?
+Vampires
+10
+
+TV/Film: 1990s: In 1998, Jamie Lee Curtis starred in this movie?
+Halloween: h20
+10
+
+TV/Film: 1990s: In 1998, Jamie Lee Curtis starred in this movie?
+Virus
+10
+
+TV/Film: 1990s: In 1998, Jeff Bridges starred in this movie?
+The big lebowski
+10
+
+TV/Film: 1990s: In 1998, Jennifer Lopez starred in this movie?
+Antz
+10
+
+TV/Film: 1990s: In 1998, Jennifer Lopez starred in this movie?
+Out of sight
+10
+
+TV/Film: 1990s: In 1998, John Travolta starred in this movie?
+A civil action
+10
+
+TV/Film: 1990s: In 1998, John Travolta starred in this movie?
+Primary colors
+10
+
+TV/Film: 1990s: In 1998, John Travolta starred in this movie?
+The thin red line
+10
+
+TV/Film: 1990s: In 1998, Julia Roberts starred in this movie?
+Stepmom
+10
+
+TV/Film: 1990s: In 1998, Kevin Bacon starred in this movie?
+Digging to china
+10
+
+TV/Film: 1990s: In 1998, Kevin Bacon starred in this movie?
+Wild things
+10
+
+TV/Film: 1990s: In 1998, kurt russell starred in this movie?
+Soldier
+10
+
+TV/Film: 1990s: In 1998, Lauren Holly starred in this movie?
+No looking back
+10
+
+TV/Film: 1990s: In 1998, Meg Ryan starred in this movie?
+City of angels
+10
+
+TV/Film: 1990s: In 1998, Meg Ryan starred in this movie?
+Hurlyburly
+10
+
+TV/Film: 1990s: In 1998, Meg Ryan starred in this movie?
+You've got mail
+10
+
+TV/Film: 1990s: In 1998, Mel Gibson starred in this movie?
+Lethal weapon 4
+10
+
+TV/Film: 1990s: In 1998, Melanie Griffith starred in this movie?
+Another day in paradise
+10
+
+TV/Film: 1990s: In 1998, Melanie Griffith starred in this movie?
+Lolita
+10
+
+TV/Film: 1990s: In 1998, Meryl Streep starred in this movie?
+Dancing at lughnasa
+10
+
+TV/Film: 1990s: In 1998, Meryl Streep starred in this movie?
+One true thing
+10
+
+TV/Film: 1990s: In 1998, Michael Caine starred in this movie?
+Little voice
+10
+
+TV/Film: 1990s: In 1998, Michael Douglas starred in this movie?
+A perfect murder
+10
+
+TV/Film: 1990s: In 1998, Michael Keaton starred in this movie?
+Desperate measures
+10
+
+TV/Film: 1990s: In 1998, Michael Keaton starred in this movie?
+Jack frost
+10
+
+TV/Film: 1990s: In 1998, Michael Keaton starred in this movie?
+Out of sight
+10
+
+TV/Film: 1990s: In 1998, Michelle Pfeiffer starred in this movie?
+The prince of egypt
+10
+
+TV/Film: 1990s: In 1998, Neve Campbell starred in this movie?
+Wild things
+10
+
+TV/Film: 1990s: In 1998, Nicolas Cage starred in this movie?
+City of angels
+10
+
+TV/Film: 1990s: In 1998, Nicolas Cage starred in this movie?
+Snake eyes
+10
+
+TV/Film: 1990s: In 1998, Nicole Kidman starred in this movie?
+Practical magic
+10
+
+TV/Film: 1990s: In 1998, Raquel Welch starred in this movie?
+Chairman of the board
+10
+
+TV/Film: 1990s: In 1998, Renee Zellweger starred in this movie?
+A price above rubies
+10
+
+TV/Film: 1990s: In 1998, Renee Zellweger starred in this movie?
+One true thing
+10
+
+TV/Film: 1990s: In 1998, Robert De Niro starred in this movie?
+Great expectations
+10
+
+TV/Film: 1990s: In 1998, Robert De Niro starred in this movie?
+Ronin
+10
+
+TV/Film: 1990s: In 1998, Robin Williams starred in this movie?
+Patch adams
+10
+
+TV/Film: 1990s: In 1998, Robin Williams starred in this movie?
+What dreams may come
+10
+
+TV/Film: 1990s: In 1998, Salma Hayek starred in this movie?
+The faculty
+10
+
+TV/Film: 1990s: In 1998, Sandra Bullock starred in this movie?
+Hope floats
+10
+
+TV/Film: 1990s: In 1998, Sandra Bullock starred in this movie?
+Practical magic
+10
+
+TV/Film: 1990s: In 1998, Sandra Bullock starred in this movie?
+The prince of egypt
+10
+
+TV/Film: 1990s: In 1998, Sean Connery starred in this movie?
+Playing by heart
+10
+
+TV/Film: 1990s: In 1998, Sean Connery starred in this movie?
+The avengers
+10
+
+TV/Film: 1990s: In 1998, Sharon Stone starred in this movie?
+Antz
+10
+
+TV/Film: 1990s: In 1998, Sharon Stone starred in this movie?
+Sphere
+10
+
+TV/Film: 1990s: In 1998, Sharon Stone starred in this movie?
+The mighty
+10
+
+TV/Film: 1990s: In 1998, Susan Sarandon starred in this movie?
+Stepmom
+10
+
+TV/Film: 1990s: In 1998, Susan Sarandon starred in this movie?
+Twilight
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on April 10 ____?
+Species ii
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on April 10 3 Ninjas: High Noon at ____?
+Mega mountain
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on April 10 City of ____?
+Angels
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on April 10 My ____?
+Giant
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on April 10 The Odd ____?
+Couple ii
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on April 17 ____?
+Homegrown
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on April 17 ____?
+Paulie
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on April 17 Major ____?
+League iii
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on April 17 Suicide ____?
+Kings
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on April 17 The Object of ____?
+My affection
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on April 24 ____?
+Incognito
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on April 24 In God's ____?
+Hands
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on April 24 Tarzan and ____?
+The lost city
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on April 24 The Big ____?
+Hit
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on April 3 Barney's Great ____?
+Adventure
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on April 3 Lost In ____?
+Space
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on April 3 Mercury ____?
+Rising
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on April 8 Player's ____?
+Club
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on August 14 Air Bud: Golden ____?
+Receiver
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on August 14 How Stella Got ____?
+Her groove back
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on August 14 Return To ____?
+Paradise
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on August 14 The ____?
+Avengers
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on August 21 ____?
+Blade
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on August 21 Dance ____?
+With me
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on August 21 Dead Man on ____?
+Campus
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on August 21 Wrongfully ____?
+Accused
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on August 28 Why Do Fools ____?
+Fall in love
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on August 5 Halloween: ____?
+H20
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on August 7 Snake ____?
+Eyes
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on December 11 Jack ____?
+Frost
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on December 11 Life is ____?
+Beautiful
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on December 11 Star Trek- ____?
+Insurrection
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on December 18 Little ____?
+Voice
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on December 18 Shakespeare ____?
+In love
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on December 18 The Prince of ____?
+Egypt
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on December 18 You've Got ____?
+Mail
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on December 25 ____?
+Stepmom
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on December 25 A Civil ____?
+Action
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on December 25 Down in the ____?
+Delta
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on December 25 Mighty ____?
+Joe young
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on December 25 Patch ____?
+Adams
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on December 25 Playing By ____?
+Heart
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on December 25 The ____?
+Faculty
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on December 25 The Thin ____?
+Red line
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on December 25 Velvet ____?
+Goldmine
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on December 30 1998 Hi-Lo ____?
+Country
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on December 4 ____?
+Psycho
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on February 13 ____?
+Sphere
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on February 13 Hurricane ____?
+Streets
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on February 13 The ____?
+Borrowers
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on February 13 The Wedding ____?
+Singer
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on February 20 Dangerous ____?
+Beauty
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on February 20?
+Palmetto
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on February 20?
+Senseless
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on February 27 Dark ____?
+City
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on February 27 Kissing ____?
+A fool
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on February 27 Krippendorf's ____?
+Tribe
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on February 6 Blues ____?
+Brothers 2000
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on February 6 The Replacement ____?
+Killers
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on February 6 Zero ____?
+Effect
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on January 16 ____?
+Fallen
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on January 16 ____?
+Kundun
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on January 16 Half ____?
+Baked
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on January 16 Hard ____?
+Rain
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on January 23 Slappy and the ____?
+Stinkers
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on January 23 Spice ____?
+World
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on January 23 Swept ____?
+From the sea
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on January 30 Deep ____?
+Rising
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on January 30 Desperate ____?
+Measures
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on January 30 Great ____?
+Expectations
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on January 9 ____?
+Firestorm
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on January 9 The ____?
+Boxer
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on January 9 Wag the ____?
+Dog
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on July 1 ____?
+Armageddon
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on July 10 ____?
+Madeline
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on July 10 Lethal ____?
+Weapon 4
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on July 10 Small ____?
+Soldiers
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on July 15 There's something ____?
+About mary
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on July 17 The Mask of ____?
+Zorro
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on July 24 ____?
+Mafia!
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on July 24 Disturbing ____?
+Behavior
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on July 24 Saving ____?
+Private ryan
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on July 29 The Parent ____?
+Trap
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on July 3 Smoke ____?
+Signals
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on July 31 Ever ____?
+After
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on July 31 The ____?
+Negotiator
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on July 31?
+Baseketball
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on June 12 Can't ____?
+Hardly wait
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on June 12 Dirty ____?
+Work
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on June 12 Six Days, ____?
+Seven nights
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on June 19 ____?
+Mulan
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on June 19 The ____?
+X-files
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on June 26 Beyond ____?
+Silence
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on June 26 Dr. ____?
+Dolittle
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on June 26 Gone With ____?
+The wind
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on June 26 Hav ____?
+Plenty
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on June 26 Out ____?
+Of sight
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on June 5 A Perfect ____?
+Murder
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on June 5 The ____?
+Truman show
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on March 13 The Man in the ____?
+Iron mask
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on March 20 Mr. Nice ____?
+Guy
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on March 20 Primary ____?
+Colors
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on March 20 Wild ____?
+Things
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on March 27 ____?
+Grease
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on March 27 Meet The ____?
+Deedles
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on March 27 The Newton ____?
+Boys
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on March 27 Wide ____?
+Awake
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on March 6 The Big ____?
+Lebowski
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on March 6 U.S. ____?
+Marshals
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on March 6?
+Hush
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on March 6?
+Twilight
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on May 1 Black ____?
+Dog
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on May 1 Dancer, ____?
+Texas pop. 81
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on May 1 Les ____?
+Miserables
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on May 1 The Butcher ____?
+Boy
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on May 15 Quest for ____?
+Camelot
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on May 20 ____?
+Godzilla
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on May 22 ____?
+Bulworth
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on May 22 Fear and Loathing ____?
+In las vegas
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on May 22 The Horse ____?
+Whisperer
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on May 29 Almost ____?
+Heroes
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on May 29 Hope ____?
+Floats
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on May 29 The Last ____?
+Days of disco
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on May 29 The Opposite ____?
+Of sex
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on May 8 ____?
+Woo
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on May 8 Deep ____?
+Impact
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on November 13 I Still Know What ____?
+You did last summer
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on November 13 I'll Be Home ____?
+For christmas
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on November 13 Meet ____?
+Joe black
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on November 20 ____?
+Celebrity
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on November 20 ____?
+Elizabeth
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on November 20 Enemy of ____?
+The state
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on November 20 The Rugrats ____?
+Movie
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on November 25 ____?
+Ringmaster
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on November 25 A Bug's ____?
+Life
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on November 25 Babe: Pig in ____?
+The city
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on November 25 Home ____?
+Fries
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on November 25 Very Bad ____?
+Things
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on November 4 ____?
+Belly
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on November 6 American ____?
+History x
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on November 6 The ____?
+Siege
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on November 6 The ____?
+Waterboy
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on November 6 The Wizard ____?
+Of oz
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on October 16 ____?
+Beloved
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on October 16 Bride of ____?
+Chucky
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on October 16 Practical ____?
+Magic
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on October 2 ____?
+Antz
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on October 2 A Night at the ____?
+Roxbury
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on October 2 Dee Snider's ____?
+Strangeland
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on October 2 What Dreams ____?
+May come
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on October 23 ____?
+Pleasantville
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on October 23 ____?
+Soldier
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on October 23 Apt ____?
+Pupil
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on October 30 John Carpenter's ____?
+Vampires
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on October 30 Living Out ____?
+Loud
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on October 9 Holy ____?
+Man
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on October 9 The ____?
+Mighty
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on September 11 ____?
+Rounders
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on September 11 Simon ____?
+Birch
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on September 11 Without ____?
+Limits
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on September 18 One True ____?
+Thing
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on September 18 Rush ____?
+Hour
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on September 23 ____?
+Shadrach
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on September 25 ____?
+Ronin
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on September 25 Clay ____?
+Pigeons
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on September 25 Urban ____?
+Legend
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on September 4 Knock ____?
+Off
+10
+
+TV/Film: 1990s: In 1998, This Movie was Released on September 4 Next Stop ____?
+Wonderland
+10
+
+TV/Film: 1990s: In 1998, Tom Hanks starred in this movie?
+Saving private ryan
+10
+
+TV/Film: 1990s: In 1998, Tom Hanks starred in this movie?
+You've got mail
+10
+
+TV/Film: 1990s: In 1998, Tommy Lee Jones starred in this movie?
+U.s. marshals
+10
+
+TV/Film: 1990s: In 1998, Wesley Snipes starred in this movie?
+Blade
+10
+
+TV/Film: 1990s: In 1998, Wesley Snipes starred in this movie?
+Down in the delta
+10
+
+TV/Film: 1990s: In 1998, Wesley Snipes starred in this movie?
+U.s. marshals
+10
+
+TV/Film: 1990s: In 1998, Whoopi Goldberg starred in this movie?
+How stella got her groove back
+10
+
+TV/Film: 1990s: In 1998, Whoopi Goldberg starred in this movie?
+The rugrats movie
+10
+
+TV/Film: 1990s: In 1998, Woody Allen starred in this movie?
+Wild man blues
+10
+
+TV/Film: 1990s: In 1999, Alec Baldwin starred in this movie?
+Notting hill
+10
+
+TV/Film: 1990s: In 1999, Alec Baldwin starred in this movie?
+Outside providence
+10
+
+TV/Film: 1990s: In 1999, Alicia Silverstone starred in this movie?
+Blast from the past
+10
+
+TV/Film: 1990s: In 1999, Angelina Jolie starred in this movie?
+Hell's kitchen
+10
+
+TV/Film: 1990s: In 1999, Angelina Jolie starred in this movie?
+Pushing tin
+10
+
+TV/Film: 1990s: In 1999, Anthony Hopkins starred in this movie?
+Instinct
+10
+
+TV/Film: 1990s: In 1999, Anthony Hopkins starred in this movie?
+Titus
+10
+
+TV/Film: 1990s: In 1999, Antonio Banderas starred in this movie?
+Play it to the bone
+10
+
+TV/Film: 1990s: In 1999, Antonio Banderas starred in this movie?
+The 13th warrior
+10
+
+TV/Film: 1990s: In 1999, Arnold Schwarzenegger starred in this movie?
+End of days
+10
+
+TV/Film: 1990s: In 1999, Ashley Judd starred in this movie?
+Double jeopardy
+10
+
+TV/Film: 1990s: In 1999, Bette Midler starred in this movie?
+Get bruce
+10
+
+TV/Film: 1990s: In 1999, Billy Crystal starred in this movie?
+Analyze this
+10
+
+TV/Film: 1990s: In 1999, Billy Crystal starred in this movie?
+Get bruce
+10
+
+TV/Film: 1990s: In 1999, Brad Pitt starred in this movie?
+Being john malkovich
+10
+
+TV/Film: 1990s: In 1999, Brad Pitt starred in this movie?
+Fight club
+10
+
+TV/Film: 1990s: In 1999, Bruce Willis starred in this movie?
+Breakfast of champions
+10
+
+TV/Film: 1990s: In 1999, Bruce Willis starred in this movie?
+The sixth sense
+10
+
+TV/Film: 1990s: In 1999, Bruce Willis starred in this movie?
+The story of us
+10
+
+TV/Film: 1990s: In 1999, Cameron Diaz starred in this movie?
+Any given sunday
+10
+
+TV/Film: 1990s: In 1999, Cameron Diaz starred in this movie?
+Being john malkovich
+10
+
+TV/Film: 1990s: In 1999, Dan Akroyd starred in this movie?
+Diamonds
+10
+
+TV/Film: 1990s: In 1999, Denzel Washington starred in this movie?
+The bone collector
+10
+
+TV/Film: 1990s: In 1999, Denzel Washington starred in this movie?
+The hurricane
+10
+
+TV/Film: 1990s: In 1999, Drew Barrymore starred in this movie?
+Never been kissed
+10
+
+TV/Film: 1990s: In 1999, Eddie Murphy starred in this movie?
+Bowfinger
+10
+
+TV/Film: 1990s: In 1999, Eddie Murphy starred in this movie?
+Life
+10
+
+TV/Film: 1990s: In 1999, Elizabeth Hurley starred in this movie?
+Austin powers: the spy who shagged me
+10
+
+TV/Film: 1990s: In 1999, Elizabeth Hurley starred in this movie?
+Edtv
+10
+
+TV/Film: 1990s: In 1999, Elizabeth Hurley starred in this movie?
+My favorite martian
+10
+
+TV/Film: 1990s: In 1999, George Clooney starred in this movie?
+Three kings
+10
+
+TV/Film: 1990s: In 1999, Harrison Ford starred in this movie?
+Random hearts
+10
+
+TV/Film: 1990s: In 1999, Hugh Grant starred in this movie?
+Mickey blue eyes
+10
+
+TV/Film: 1990s: In 1999, Hugh Grant starred in this movie?
+Notting hill
+10
+
+TV/Film: 1990s: In 1999, James Woods starred in this movie?
+Any given sunday
+10
+
+TV/Film: 1990s: In 1999, James Woods starred in this movie?
+The general's daughter
+10
+
+TV/Film: 1990s: In 1999, James Woods starred in this movie?
+True crime
+10
+
+TV/Film: 1990s: In 1999, Jeff Bridges starred in this movie?
+Arlington road
+10
+
+TV/Film: 1990s: In 1999, Jeff Bridges starred in this movie?
+Simpatico
+10
+
+TV/Film: 1990s: In 1999, Jeff Bridges starred in this movie?
+The muse
+10
+
+TV/Film: 1990s: In 1999, Jodie Foster starred in this movie?
+Anna and the king
+10
+
+TV/Film: 1990s: In 1999, John Travolta starred in this movie?
+The general's daughter
+10
+
+TV/Film: 1990s: In 1999, Julia Roberts starred in this movie?
+Notting hill
+10
+
+TV/Film: 1990s: In 1999, Julia Roberts starred in this movie?
+Runaway bride
+10
+
+TV/Film: 1990s: In 1999, Kevin Bacon starred in this movie?
+Stir of echoes
+10
+
+TV/Film: 1990s: In 1999, Kevin Costner starred in this movie?
+For love of the game
+10
+
+TV/Film: 1990s: In 1999, Kevin Costner starred in this movie?
+Message in a bottle
+10
+
+TV/Film: 1990s: In 1999, Kirstie Alley starred in this movie?
+Drop dead gorgeous
+10
+
+TV/Film: 1990s: In 1999, Lauren Bacall starred in this movie?
+Diamonds
+10
+
+TV/Film: 1990s: In 1999, Lauren Holly starred in this movie?
+Any given sunday
+10
+
+TV/Film: 1990s: In 1999, Mel Gibson starred in this movie?
+Payback
+10
+
+TV/Film: 1990s: In 1999, Melanie Griffith starred in this movie?
+Crazy in alabama
+10
+
+TV/Film: 1990s: In 1999, Meryl Streep starred in this movie?
+Music of the heart
+10
+
+TV/Film: 1990s: In 1999, Michael Caine starred in this movie?
+The cider house rules
+10
+
+TV/Film: 1990s: In 1999, Michelle Pfeiffer starred in this movie?
+The deep end of the ocean
+10
+
+TV/Film: 1990s: In 1999, Michelle Pfeiffer starred in this movie?
+The story of us
+10
+
+TV/Film: 1990s: In 1999, Neve Campbell starred in this movie?
+Three to tango
+10
+
+TV/Film: 1990s: In 1999, Nicolas Cage starred in this movie?
+8mm
+10
+
+TV/Film: 1990s: In 1999, Nicolas Cage starred in this movie?
+Bringing out the dead
+10
+
+TV/Film: 1990s: In 1999, Nicole Kidman starred in this movie?
+Eyes wide shut
+10
+
+TV/Film: 1990s: In 1999, Pierce Brosnan starred in this movie?
+The thomas crown affair
+10
+
+TV/Film: 1990s: In 1999, Pierce Brosnan starred in this movie?
+The world is not enough
+10
+
+TV/Film: 1990s: In 1999, Richard Gere starred in this movie?
+Runaway bride
+10
+
+TV/Film: 1990s: In 1999, Robert De Niro starred in this movie?
+Analyze this
+10
+
+TV/Film: 1990s: In 1999, Robert De Niro starred in this movie?
+Flawless
+10
+
+TV/Film: 1990s: In 1999, Robin Williams starred in this movie?
+Bicentennial man
+10
+
+TV/Film: 1990s: In 1999, Robin Williams starred in this movie?
+Get bruce
+10
+
+TV/Film: 1990s: In 1999, Robin Williams starred in this movie?
+Jakob the liar
+10
+
+TV/Film: 1990s: In 1999, Russell Crowe starred in this movie?
+The insider
+10
+
+TV/Film: 1990s: In 1999, Salma Hayek starred in this movie?
+Dogma
+10
+
+TV/Film: 1990s: In 1999, Salma Hayek starred in this movie?
+Wild wild west
+10
+
+TV/Film: 1990s: In 1999, Sandra Bullock starred in this movie?
+Forces of nature
+10
+
+TV/Film: 1990s: In 1999, Sarah Michelle Gellar starred in this movie?
+Cruel intentions
+10
+
+TV/Film: 1990s: In 1999, Sarah Michelle Gellar starred in this movie?
+Simply irresistible
+10
+
+TV/Film: 1990s: In 1999, Sean Connery starred in this movie?
+Entrapment
+10
+
+TV/Film: 1990s: In 1999, Sharon Stone starred in this movie?
+Gloria
+10
+
+TV/Film: 1990s: In 1999, Sharon Stone starred in this movie?
+Simpatico
+10
+
+TV/Film: 1990s: In 1999, Sharon Stone starred in this movie?
+The muse
+10
+
+TV/Film: 1990s: In 1999, Shirley MacLaine starred in this movie?
+Get bruce
+10
+
+TV/Film: 1990s: In 1999, Sigourney Weaver starred in this movie?
+A map of the world
+10
+
+TV/Film: 1990s: In 1999, Sigourney Weaver starred in this movie?
+Galaxy quest
+10
+
+TV/Film: 1990s: In 1999, Sigourney Weaver starred in this movie?
+Get bruce
+10
+
+TV/Film: 1990s: In 1999, Sigourney Weaver starred in this movie?
+There's One s:: Galaxy Quest
+10
+
+TV/Film: 1990s: In 1999, Susan Sarandon starred in this movie?
+Anywhere but here
+10
+
+TV/Film: 1990s: In 1999, Susan Sarandon starred in this movie?
+Cradle will rock
+10
+
+TV/Film: 1990s: In 1999, Susan Sarandon starred in this movie?
+Illuminata
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on April 16 ____?
+Life
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on April 16 Goodbye, ____?
+Lover
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on April 2 The Out-of____?
+Towners
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on April 23 ____?
+Election
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on April 23 ____?
+Existenz
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on April 23 Lost & ____?
+Found
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on April 23 Pushing ____?
+Tin
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on April 30 ____?
+Entrapment
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on April 30 ____?
+Heaven
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on April 30 Idle ____?
+Hands
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on April 9 ____?
+Foolish
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on April 9 ____?
+Go
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on April 9 Never Been ____?
+Kissed
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on April 9 Twin ____?
+Dragons
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on August 13 ____?
+Bowfinger
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on August 13 Brokedown ____?
+Palace
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on August 13 Detroit Rock ____?
+City
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on August 20 Mickey ____?
+Blue eyes
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on August 20 Teaching ____?
+Mrs. tingle
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on August 20 Universal Soldier, ____?
+The return
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on August 25 In Too ____?
+Deep
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on August 27 A Dog of ____?
+Flanders
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on August 27 Dudley ____?
+Do-right
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on August 27 Life is ____?
+Beautiful
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on August 27 The ____?
+Muse
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on August 27 The 13th ____?
+Warrior
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on August 27 The Astronaut's ____?
+Wife
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on August 4 ____?
+Dick
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on August 6 Mystery ____?
+Men
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on August 6 The Iron ____?
+Giant
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on August 6 The Sixth ____?
+Sense
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on August 6 The Thomas ____?
+Crown affair
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on December 10 Deuce Bigalow:____?
+Male gigolo
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on December 10 Ride With ____?
+The devil
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on December 10 The Cider ____?
+House rules
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on December 10 The End of the ____?
+Affair
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on December 10 The Green ____?
+Mile
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on December 17 Anna and ____?
+The king
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on December 17 Bicentennial ____?
+Man
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on December 17 Stuart ____?
+Little
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on December 22 Angela's ____?
+Ashes
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on December 22 Any Given ____?
+Sunday
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on December 22 Man on ____?
+The moon
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on December 22 The Talented ____?
+Mr. ripley
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on December 25 Cradle ____?
+Will rock
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on December 25 Galaxy ____?
+Quest
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on February 12 Blast From ____?
+The past
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on February 12 Message in ____?
+A bottle
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on February 12 My Favorite ____?
+Martian
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on February 19 ____?
+Affliction
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on February 19 ____?
+Jawbreaker
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on February 19 October ____?
+Sky
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on February 19 Office ____?
+Space
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on February 26 200 ____?
+Cigarettes
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on February 26 8MM: ____?
+Eight millimeter
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on February 26 Just the ____?
+Ticket
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on February 26 The Other ____?
+Sister
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on February 5 ____?
+Payback
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on February 5 ____?
+Rushmore
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on February 5 Simply ____?
+Irresistible
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on January 15 At First ____?
+Sight
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on January 15 In ____?
+Dreams
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on January 15 Varsity ____?
+Blues
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on January 15, ____?
+Virus
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on January 22, ____?
+Gloria
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on January 29, She's ____?
+All that
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on July 14 Muppets ____?
+From space
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on July 16 Eyes Wide ____?
+Shut
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on July 16 Lake ____?
+Placid
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on July 16 The ____?
+Wood
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on July 16 The Blair ____?
+Witch project
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on July 2 Summer of ____?
+Sam
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on July 2 Wild ____?
+Wild west
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on July 23 Drop Dead ____?
+Gorgeous
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on July 23 Inspector ____?
+Gadget
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on July 23 The ____?
+Haunting
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on July 30 Deep Blue ____?
+Sea
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on July 30 Runaway ____?
+Bride
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on July 9 American ____?
+Pie
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on July 9 Arlington ____?
+Road
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on July 9 The Dinner ____?
+Game
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on June 11 Austin Powers: The Spy ____?
+Who shagged me
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on June 11 The Red ____?
+Violin
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on June 18 ____?
+Tarzan
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on June 18 An Ideal ____?
+Husband
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on June 18 The General's ____?
+Daughter
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on June 25 Big ____?
+Daddy
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on June 30 South Park: Bigger, ____?
+Longer & uncut
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on June 4 Desert ____?
+Blue
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on June 4?
+Instinct
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on June 4?
+Limbo
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on March 12 Baby ____?
+Geniuses
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on March 12 The ____?
+Corruptor
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on March 12 The Deep End ____?
+Of the ocean
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on March 12 The Rage: ____?
+Carrie 2
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on March 12 Wing ____?
+Commander
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on March 19 ____?
+Ravenous
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on March 19 Forces of ____?
+Nature
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on March 19 Lock, Stock & ____?
+Two smoking barrels
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on March 19 The King ____?
+And i
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on March 19 True ____?
+Crime
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on March 26 ____?
+Edtv
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on March 26 A Walk ____?
+On the moon
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on March 26 Doug's 1st ____?
+Movie
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on March 26 The Mod ____?
+Squad
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on March 31 10 Things I Hate ____?
+About you
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on March 31 The ____?
+Matrix
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on March 5 Analyze ____?
+This
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on March 5 Cruel ____?
+Intentions
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on May 14 A Midsummer ____?
+Night's dream
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on May 14 Black ____?
+Mask
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on May 14 Tea with ____?
+Mussolini
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on May 21 ____?
+Endurance
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on May 21 The Love ____?
+Letter
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on May 28 Notting ____?
+Hill
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on May 28 The 13th ____?
+Floor
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on May 7 The ____?
+Castle
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on May 7 The ____?
+Mummy
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on May 7 The Empty ____?
+Mirror
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on November 10 Pokemon: The ____?
+First movie
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on November 12 ____?
+Dogma
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on November 12 Anywhere ____?
+But here
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on November 12 Light ____?
+It up
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on November 12 The Messenger: The Story of ____?
+Joan of arc
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on November 19 Liberty ____?
+Heights
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on November 19 Sleepy ____?
+Hollow
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on November 19 The World ____?
+Is not enough
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on November 24 ____?
+Flawless
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on November 24 End of ____?
+Days
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on November 24 Mansfield ____?
+Park
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on November 24 Toy ____?
+Story 2
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on November 5 The ____?
+Bachelor
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on November 5 The ____?
+Insider
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on November 5 The Bone ____?
+Collector
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on October 1 American ____?
+Beauty
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on October 1 Drive Me ____?
+Crazy
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on October 1 Mystery, ____?
+Alaska
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on October 1 Plunkett & ____?
+Macleane
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on October 1 The Adventures of Elmo in ____?
+Grouchland
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on October 1 Three ____?
+Kings
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on October 15 ____?
+Whiteboys
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on October 15 Fight ____?
+Club
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on October 15 Happy, ____?
+Texas
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on October 15 The Omega ____?
+Code
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on October 15 The Story ____?
+Of us
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on October 15 The Straight ____?
+Story
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on October 22 ____?
+Bats
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on October 22 ____?
+Molly
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on October 22 Body ____?
+Shots
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on October 22 Boys ____?
+Don't cry
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on October 22 Bringing Out ____?
+The dead
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on October 22 Crazy in ____?
+Alabama
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on October 22 The ____?
+Limey
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on October 22 The Best ____?
+Man
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on October 22 Three ____?
+To tango
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on October 29 Being John ____?
+Malkovich
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on October 29 House on ____?
+Haunted hill
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on October 29 Music of the ____?
+Heart
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on October 29 Princess ____?
+Mononoke
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on October 8 ____?
+Superstar
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on October 8 Best Laid ____?
+Plans
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on October 8 Random ____?
+Hearts
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on September 1 Chill ____?
+Factor
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on September 1 Outside ____?
+Providence
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on September 10 ____?
+Stigmata
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on September 10 B. ____?
+Monkey
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on September 10 Stir of ____?
+Echoes
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on September 17 Blue ____?
+Streak
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on September 17 Breakfast of ____?
+Champions
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on September 17 For Love ____?
+Of the game
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on September 17 Get ____?
+Bruce!
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on September 24 ____?
+Guinevere
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on September 24 ____?
+Mumford
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on September 24 Double ____?
+Jeopardy
+10
+
+TV/Film: 1990s: In 1999, This Movie was Released on September 24 Jakob ____?
+The liar
+10
+
+TV/Film: 1990s: In 1999, Tom Cruise starred in this movie?
+Eyes wide shut
+10
+
+TV/Film: 1990s: In 1999, Tom Cruise starred in this movie?
+Magnolia
+10
+
+TV/Film: 1990s: In 1999, Tom Hanks starred in this movie?
+The green mile
+10
+
+TV/Film: 1990s: In 1999, Tom Hanks starred in this movie?
+Toy story 2
+10
+
+TV/Film: 1990s: In 1999, Tommy Lee Jones starred in this movie?
+Double jeopardy
+10
+
+TV/Film: 1990s: In 1999, Whoopi Goldberg starred in this movie?
+The deep end of the ocean
+10
+
+TV/Film: 1990s: In 1999, Woody Allen starred in this movie?
+Sweet and lowdown
+10
+
+TV/Film: 1990s: In the 1990 film 'the krays', who played violet kray, the mother of the kray brothers?
+Billie whitelaw
+10
+
+TV/Film: 1990s: In what 1994 film did bus #2525 play a pivotal role?
+Speed
+10
+
+TV/Film: 1990s: In which program do Mulder and Scully appear?
+X-files
+10
+
+TV/Film: 1990s: Jane Seymour plays a doctor on this popular drama?
+Dr. quinn medicine woman
+10
+
+TV/Film: 1990s: Jim Carrey makes himself Matthew Broderick's friend in this dark comedy?
+The cable guy
+10
+
+TV/Film: 1990s: name one of the major actors in the 1993 movie Made in America (ted)?
+Ted danson
+10
+
+TV/Film: 1990s: name one of the major stars in the 1993 movie Indian Summer?
+Alan arkin
+10
+
+TV/Film: 1990s: name one of the major stars in the 1993 movie The Neighbor?
+Linda koslowski
+10
+
+TV/Film: 1990s: Neve Campbell & Courtney Cox are terrorized by a murderous horror movie fan?
+Scream
+10
+
+TV/Film: 1990s: Robert Stack hosted this show about UFO's, criminals, murders, etc?
+Unsolved mysteries
+10
+
+TV/Film: 1990s: Show about comedian-turned 'tool-man' Tim Allen and his sidekick Al?
+Home improvement
+10
+
+TV/Film: 1990s: Star Wars: 1999, This Movie was Released on May 19 Star Wars- Episode 1 - The ____?
+Phantom menace
+10
+
+TV/Film: 1990s: The biography of the Latin-American Tejano music star slain by a fan in 1995?
+Selena
+10
+
+TV/Film: 1990s: The Griswold family tries another vacation, this time in Las Vegas?
+National lampoons vegas vacation
+10
+
+TV/Film: 1990s: This show, featuring a Canadian Mounty, is popular all over the world?
+Due south
+10
+
+TV/Film: 1990s: This trilogy was restored and re-released February of 1997?
+Star wars
+10
+
+TV/Film: 1990s: Tom Cruise in a remake of a popular 1966 series?
+Mission impossible
+10
+
+TV/Film: 1990s: Tom Jones is one of the many celebs in this movie about destructive Martians?
+Mars attacks
+10
+
+TV/Film: 1990s: Well-known movie critics who often disagree (both names in well-known order)?
+Siskel and ebert
+10
+
+TV/Film: 1990s: What cartoon rabbit spaceman fights alien toads with lasers in 1992?
+Bucky o'hare
+10
+
+TV/Film: 1990s: What movie has meg ryan switching identities with an elderly man?
+Prelude to a kiss
+10
+
+TV/Film: 1990s: What nbc series premier episode in 1992 was titled leaping on a string?
+Quantum leap
+10
+
+TV/Film: 1990s: What office is the penguin running for in batman returns (1992)?
+Mayor
+10
+
+TV/Film: 1990s: what PBS newsman moderated the first presidential debate in 1992?
+Jim lehrer
+10
+
+TV/Film: 1990s: what was the subtitle of the 1999 south park movie?
+Bigger, longer and uncut
+10
+
+TV/Film: 1990s: Which actress played Hugh Grant's love interest in Four Weddings and a Funeral (1994)?
+Andie MacDowell
+10
+
+TV/Film: 1990s: Which city provided the main location for Renton, Begbie, Sick Boy et al in Trainspotting (1996)?
+Edinburgh
+10
+
+TV/Film: 1990s: Who's will smith known as in a tv sitcom title?
+Fresh prince
+10
+
+TV/Film: 1991 64th Academy Awards: Best Actress In A Leading Role Was won by Jodie Foster For The Movie?
+The silence of The Lambs
+10
+
+TV/Film: 1991 64th Academy Awards: Best Actress In A Supporting role was won by Mercedes Ruehl For The Movie?
+The fisher King
+10
+
+TV/Film: 1991,starring Don Johnson and Melanie Griffith about a marriage that suffers after the death of their child?
+Paradise
+10
+
+TV/Film: 1992 65th Academy Awards: Best Actress In A Leading Role Was won by Emma Thompson For The Movie?
+Howards End
+10
+
+TV/Film: 1992 65th Academy Awards: Best Actress In A Supporting role was won by Marisa Tomei For The Movie?
+My cousin Vinny
+10
+
+TV/Film: 1992 what movie has meg ryan switching identities with an elderly man?
+Prelude to a kiss
+10
+
+TV/Film: 1992, after a gap of many years a new Carry On film was made, what was it called?
+Carry on columbus
+10
+
+TV/Film: 1993 66th Academy Awards: Best Actress In A Leading Role Was won by Holly Hunter For The Movie?
+The piano
+10
+
+TV/Film: 1993 66th Academy Awards: Best Actress In A Supporting role was won by Anna Paquin For The Movie?
+The piano
+10
+
+TV/Film: 1993: name one of the major stars in the film house of cards?
+Tommy lee jones
+10
+
+TV/Film: 1993: name one of the major stars in the movie hear no evil?
+Martin sheen 
+10
+
+TV/Film: 1993: name one of the major stars in the movie indian summer?
+Alan arkin
+10
+
+TV/Film: 1994 67th Academy Awards: Best Actress In A Leading Role Was won by Jessica Lange For The Movie?
+Blue sky
+10
+
+TV/Film: 1994 67th Academy Awards: Best Actress In A Supporting role was won by Dianne Wiest For The Movie?
+Bullets over Broadway
+10
+
+TV/Film: 1994 blockbuster action flick on a bus!?
+Speed
+10
+
+TV/Film: 1994 film by Milcho Manchevski with actress Katrin Cartlidge in a leading role?
+Before the rain
+10
+
+TV/Film: 1994: this et star recently married on three hours notice at the age of 19?
+Drew barrymore
+10
+
+TV/Film: 1995 68th Academy Awards: Best Actress In A Leading Role Was won by Susan Sarandon For The Movie?
+Dead man Walking
+10
+
+TV/Film: 1995 68th Academy Awards: Best Actress In A Supporting role was won by Mira Sorvino For The Movie?
+Mighty Aphrodite
+10
+
+TV/Film: 1995, a pig escapes the slaughterhouse?
+Babe
+10
+
+TV/Film: 1995, This movie was released on August 11 A Walk in the ____?
+Clouds
+10
+
+TV/Film: 1995, This movie was released on August 11 Dangerous ____?
+Minds
+10
+
+TV/Film: 1995, This movie was released on August 18 Mortal ____?
+Kombat
+10
+
+TV/Film: 1995, This movie was released on August 18 The Baby-Sitters ____?
+Club
+10
+
+TV/Film: 1995, This movie was released on August 25 ____?
+Desperado
+10
+
+TV/Film: 1995, This movie was released on August 25 Beyond ____?
+Rangoon
+10
+
+TV/Film: 1995, This movie was released on August 25 Lord Of ____?
+Illusions
+10
+
+TV/Film: 1995, This movie was released on August 25 The ____?
+Show
+10
+
+TV/Film: 1995, This movie was released on August 25 The Amazing ____?
+Panda adventure
+10
+
+TV/Film: 1995, This movie was released on August 4 ____?
+Babe
+10
+
+TV/Film: 1995, This movie was released on August 4 ____?
+Bushwacked
+10
+
+TV/Film: 1995, This movie was released on August 4 Something To ____?
+Talk about
+10
+
+TV/Film: 1995, This movie was released on December 1 White ____?
+Man's burden
+10
+
+TV/Film: 1995, This movie was released on December 1 Wild ____?
+Bill
+10
+
+TV/Film: 1995, This movie was released on December 13 Sense and ____?
+Sensibility
+10
+
+TV/Film: 1995, This movie was released on December 15 ____?
+Heat
+10
+
+TV/Film: 1995, This movie was released on December 15 ____?
+Jumanji
+10
+
+TV/Film: 1995, This movie was released on December 20 ____?
+Nixon
+10
+
+TV/Film: 1995, This movie was released on December 22 Dracula: ____?
+Dead and loving it
+10
+
+TV/Film: 1995, This movie was released on December 22 Grumpier ____?
+Old men
+10
+
+TV/Film: 1995, This movie was released on December 22 Sudden ____?
+Death
+10
+
+TV/Film: 1995, This movie was released on December 8 Father of the ____?
+Bride - part ii
+10
+
+TV/Film: 1995, This movie was released on July 12 Nine ____?
+Months
+10
+
+TV/Film: 1995, This movie was released on July 28 ____?
+Waterworld
+10
+
+TV/Film: 1995, This movie was released on July 28 Operation ____?
+Dumbo drop
+10
+
+TV/Film: 1995, This movie was released on July 28 The ____?
+Net
+10
+
+TV/Film: 1995, This movie was released on July 7 ____?
+Species
+10
+
+TV/Film: 1995, This movie was released on July 7 First ____?
+Knight
+10
+
+TV/Film: 1995, This movie was released on June 23 ____?
+Pocahontas
+10
+
+TV/Film: 1995, This movie was released on June 30 Judge ____?
+Dredd
+10
+
+TV/Film: 1995, This movie was released on June 30 Mighty Morphin ____?
+Power rangers
+10
+
+TV/Film: 1995, This movie was released on June 30 The Mystery of ____?
+Rampo
+10
+
+TV/Film: 1995, This movie was released on May 19 Die Hard With a ____?
+Vengeance
+10
+
+TV/Film: 1995, This movie was released on May 19 The Perez ____?
+Family
+10
+
+TV/Film: 1995, This movie was released on May 26 ____?
+Casper
+10
+
+TV/Film: 1995, This movie was released on May 26 Johnny ____?
+Mnemonic
+10
+
+TV/Film: 1995, This movie was released on May 5 French ____?
+Kiss
+10
+
+TV/Film: 1995, This movie was released on November 10 Ace Ventura: When ____?
+Nature calls
+10
+
+TV/Film: 1995, This movie was released on November 17 ____?
+Goldeneye
+10
+
+TV/Film: 1995, This movie was released on November 17 It Takes ____?
+Two
+10
+
+TV/Film: 1995, This movie was released on November 17 The American ____?
+President
+10
+
+TV/Film: 1995, This movie was released on November 22 ____?
+Casino
+10
+
+TV/Film: 1995, This movie was released on November 22 Money ____?
+Train
+10
+
+TV/Film: 1995, This movie was released on November 22 Toy ____?
+Story
+10
+
+TV/Film: 1995, This movie was released on October 13 ____?
+Copycat
+10
+
+TV/Film: 1995, This movie was released on October 13 Les ____?
+Miserables
+10
+
+TV/Film: 1995, This movie was released on October 13 Strange ____?
+Days
+10
+
+TV/Film: 1995, This movie was released on October 20 ____?
+Mallrats
+10
+
+TV/Film: 1995, This movie was released on October 27 Fair ____?
+Game
+10
+
+TV/Film: 1995, This movie was released on October 6 ____?
+Assassins
+10
+
+TV/Film: 1995, This movie was released on September 1 An Awfully ____?
+Big adventure
+10
+
+TV/Film: 1995, This movie was released on September 1 Magic in ____?
+The water
+10
+
+TV/Film: 1995, This movie was released on September 1 The Usual ____?
+Suspects
+10
+
+TV/Film: 1995, This movie was released on September 15 ____?
+Angus
+10
+
+TV/Film: 1995, This movie was released on September 15 ____?
+Hackers
+10
+
+TV/Film: 1995, This movie was released on September 15 Canadian ____?
+Bacon
+10
+
+TV/Film: 1995, This movie was released on September 15 The Stars Fell On ____?
+Henrietta
+10
+
+TV/Film: 1995, This movie was released on September 22 ____?
+Seven
+10
+
+TV/Film: 1995, This movie was released on September 22 ____?
+Showgirls
+10
+
+TV/Film: 1995, This movie was released on September 22 Empire ____?
+Records
+10
+
+TV/Film: 1995, This movie was released on September 22 The Run of ____?
+The country
+10
+
+TV/Film: 1995, This movie was released on September 22 To ____?
+Die for
+10
+
+TV/Film: 1995, This movie was released on September 22 Unstrung ____?
+Heroes
+10
+
+TV/Film: 1995, This movie was released on September 29 Devil in a ____?
+Blue dress
+10
+
+TV/Film: 1995, This movie was released on September 29 Moonlight & ____?
+Valentino
+10
+
+TV/Film: 1995, This movie was released on September 8 ____?
+Clockers
+10
+
+TV/Film: 1995, This movie was released on September 8 To Wong Foo, Thanks For Everything! ____?
+Julie newmar
+10
+
+TV/Film: 1996 69th Academy Awards: Best Actress In A Leading Role Was won by Frances Mcdormand For The Movie?
+Fargo
+10
+
+TV/Film: 1996 69th Academy Awards: Best Actress In A Supporting role was won by Juliette Binoche For The Movie?
+The English Patient
+10
+
+TV/Film: 1996 film starring Michael Douglas and Val Kilmer?
+The ghost and the darkness
+10
+
+TV/Film: 1996, This movie was released on April 12 ____?
+August
+10
+
+TV/Film: 1996, This movie was released on April 12 ____?
+Fear
+10
+
+TV/Film: 1996, This movie was released on April 12 James and the ____?
+Giant peach
+10
+
+TV/Film: 1996, This movie was released on April 19 Celtic ____?
+Pride
+10
+
+TV/Film: 1996, This movie was released on April 19 Mrs. ____?
+Winterbourne
+10
+
+TV/Film: 1996, This movie was released on April 19 Mystery Science ____?
+Theatre 3000
+10
+
+TV/Film: 1996, This movie was released on April 19 The ____?
+Substitute
+10
+
+TV/Film: 1996, This movie was released on April 26 Mulholland ____?
+Falls
+10
+
+TV/Film: 1996, This movie was released on April 26 Sunset ____?
+Park
+10
+
+TV/Film: 1996, This movie was released on April 26 The ____?
+Quest
+10
+
+TV/Film: 1996, This movie was released on April 26 The Truth About ____?
+Cats & dogs
+10
+
+TV/Film: 1996, This movie was released on April 3 ____?
+Faithful
+10
+
+TV/Film: 1996, This movie was released on April 5 A Thin Line Between ____?
+Love and hate
+10
+
+TV/Film: 1996, This movie was released on August 14 House ____?
+Arrest
+10
+
+TV/Film: 1996, This movie was released on August 16 ____?
+Alaska
+10
+
+TV/Film: 1996, This movie was released on August 16 Tales From The Crypt Presents ____?
+Bordello of blood
+10
+
+TV/Film: 1996, This movie was released on August 16 The ____?
+Fan
+10
+
+TV/Film: 1996, This movie was released on August 16 Tin ____?
+Cup
+10
+
+TV/Film: 1996, This movie was released on August 2 Chain ____?
+Reaction
+10
+
+TV/Film: 1996, This movie was released on August 23 ____?
+Carpool
+10
+
+TV/Film: 1996, This movie was released on August 23 ____?
+Foxfire
+10
+
+TV/Film: 1996, This movie was released on August 23 ____?
+Solo
+10
+
+TV/Film: 1996, This movie was released on August 23 A Very ____?
+Brady sequel
+10
+
+TV/Film: 1996, This movie was released on August 23 The Island of ____?
+Dr. moreau
+10
+
+TV/Film: 1996, This movie was released on August 23 The Spitfire ____?
+Grill
+10
+
+TV/Film: 1996, This movie was released on August 30 First ____?
+Kid
+10
+
+TV/Film: 1996, This movie was released on August 30 The ____?
+Stupids
+10
+
+TV/Film: 1996, This movie was released on August 30 The Crow: City of ____?
+Angels
+10
+
+TV/Film: 1996, This movie was released on August 30 The Trigger ____?
+Effect
+10
+
+TV/Film: 1996, This movie was released on August 7 ____?
+Matilda
+10
+
+TV/Film: 1996, This movie was released on August 9 ____?
+Basquiat
+10
+
+TV/Film: 1996, This movie was released on August 9 John Carpenter's ____?
+Escape from l.a
+10
+
+TV/Film: 1996, This movie was released on December 13 Jerry ____?
+Maguire
+10
+
+TV/Film: 1996, This movie was released on December 13 Mars ____?
+Attacks
+10
+
+TV/Film: 1996, This movie was released on December 13 The Preacher's ____?
+Wife
+10
+
+TV/Film: 1996, This movie was released on December 20 Ghosts of ____?
+Mississippi
+10
+
+TV/Film: 1996, This movie was released on December 20 My Fellow ____?
+Americans
+10
+
+TV/Film: 1996, This movie was released on December 20 One Fine ____?
+Day
+10
+
+TV/Film: 1996, This movie was released on December 25 ____?
+Michael
+10
+
+TV/Film: 1996, This movie was released on December 25 I'm Not ____?
+Rappaport
+10
+
+TV/Film: 1996, This movie was released on December 25 The Portrait ____?
+Of a lady
+10
+
+TV/Film: 1996, This movie was released on December 27 ____?
+Hamlet
+10
+
+TV/Film: 1996, This movie was released on December 27 Some Mother's ____?
+Son
+10
+
+TV/Film: 1996, This movie was released on December 27 The People Vs. ____?
+Larry flynt
+10
+
+TV/Film: 1996, This movie was released on December 6 ____?
+Daylight
+10
+
+TV/Film: 1996, This movie was released on December 6 ____?
+Ridicule
+10
+
+TV/Film: 1996, This movie was released on February 16 City ____?
+Hall
+10
+
+TV/Film: 1996, This movie was released on February 16 Mr. ____?
+Wrong
+10
+
+TV/Film: 1996, This movie was released on February 16 Muppet ____?
+Treasure island
+10
+
+TV/Film: 1996, This movie was released on February 2 The ____?
+Juror
+10
+
+TV/Film: 1996, This movie was released on February 2 White ____?
+Squall
+10
+
+TV/Film: 1996, This movie was released on February 23 Before and ____?
+After
+10
+
+TV/Film: 1996, This movie was released on February 23 Bottle ____?
+Rocket
+10
+
+TV/Film: 1996, This movie was released on February 23 Mary ____?
+Reilly
+10
+
+TV/Film: 1996, This movie was released on February 23 Rumble in the ____?
+Bronx
+10
+
+TV/Film: 1996, This movie was released on February 9 Broken ____?
+Arrow
+10
+
+TV/Film: 1996, This movie was released on January 12 Lawnmower Man 2: ____?
+Beyond cyberspace
+10
+
+TV/Film: 1996, This movie was released on January 12 Two If ____?
+By sea
+10
+
+TV/Film: 1996, This movie was released on January 19 ____?
+Screamers
+10
+
+TV/Film: 1996, This movie was released on January 19 Mr. Holland's ____?
+Opus
+10
+
+TV/Film: 1996, This movie was released on January 26 Bed of ____?
+Roses
+10
+
+TV/Film: 1996, This movie was released on January 26 Big ____?
+Bully
+10
+
+TV/Film: 1996, This movie was released on January 5 12 ____?
+Monkeys
+10
+
+TV/Film: 1996, This movie was released on January 5 Dead Man ____?
+Walking
+10
+
+TV/Film: 1996, This movie was released on July 10 Harriet ____?
+The spy
+10
+
+TV/Film: 1996, This movie was released on July 12 Courage ____?
+Under fire
+10
+
+TV/Film: 1996, This movie was released on July 12 The ____?
+Visitors
+10
+
+TV/Film: 1996, This movie was released on July 19 The ____?
+Frighteners
+10
+
+TV/Film: 1996, This movie was released on July 24 A Time ____?
+To kill
+10
+
+TV/Film: 1996, This movie was released on July 26 ____?
+Kingpin
+10
+
+TV/Film: 1996, This movie was released on July 26 ____?
+Supercop
+10
+
+TV/Film: 1996, This movie was released on July 26 Joe's ____?
+Apartment
+10
+
+TV/Film: 1996, This movie was released on July 26 The Adventures of ____?
+Pinocchio
+10
+
+TV/Film: 1996, This movie was released on July 3 ____?
+Phenomenon
+10
+
+TV/Film: 1996, This movie was released on July 3 Independence ____?
+Day (id4)
+10
+
+TV/Film: 1996, This movie was released on June 14 Moll ____?
+Flanders
+10
+
+TV/Film: 1996, This movie was released on June 14 The Cable ____?
+Guy
+10
+
+TV/Film: 1996, This movie was released on June 21 ____?
+Eraser
+10
+
+TV/Film: 1996, This movie was released on June 21 The Hunchback ____?
+Of notre dame
+10
+
+TV/Film: 1996, This movie was released on June 28 ____?
+Striptease
+10
+
+TV/Film: 1996, This movie was released on June 28 The Nutty ____?
+Professor
+10
+
+TV/Film: 1996, This movie was released on June 7 The ____?
+Phantom
+10
+
+TV/Film: 1996, This movie was released on June 7 The ____?
+Rock
+10
+
+TV/Film: 1996, This movie was released on March 1 Up Close & ____?
+Personal
+10
+
+TV/Film: 1996, This movie was released on March 15 ____?
+Fargo
+10
+
+TV/Film: 1996, This movie was released on March 15 Executive ____?
+Decision
+10
+
+TV/Film: 1996, This movie was released on March 15 Two ____?
+Much
+10
+
+TV/Film: 1996, This movie was released on March 22 ____?
+Diabolique
+10
+
+TV/Film: 1996, This movie was released on March 22 It's My ____?
+Party
+10
+
+TV/Film: 1996, This movie was released on March 22 Little Indian, ____?
+Big city
+10
+
+TV/Film: 1996, This movie was released on March 22 Race The ____?
+Sun
+10
+
+TV/Film: 1996, This movie was released on March 29 A Family ____?
+Thing
+10
+
+TV/Film: 1996, This movie was released on March 29 All Dogs Go To ____?
+Heaven 2
+10
+
+TV/Film: 1996, This movie was released on March 29 Oliver & ____?
+Company
+10
+
+TV/Film: 1996, This movie was released on March 29 Sgt. ____?
+Bilko
+10
+
+TV/Film: 1996, This movie was released on March 8 Homeward ____?
+Bound ii
+10
+
+TV/Film: 1996, This movie was released on March 8 If ____?
+Lucy fell
+10
+
+TV/Film: 1996, This movie was released on March 8 The ____?
+Birdcage
+10
+
+TV/Film: 1996, This movie was released on May 10 ____?
+Boys
+10
+
+TV/Film: 1996, This movie was released on May 10 ____?
+Twister
+10
+
+TV/Film: 1996, This movie was released on May 17 ____?
+Flipper
+10
+
+TV/Film: 1996, This movie was released on May 17 Heaven's ____?
+Prisoners
+10
+
+TV/Film: 1996, This movie was released on May 22 Mission ____?
+Impossible
+10
+
+TV/Film: 1996, This movie was released on May 24 Spy ____?
+Hard
+10
+
+TV/Film: 1996, This movie was released on May 3 Barb ____?
+Wire
+10
+
+TV/Film: 1996, This movie was released on May 3 Last ____?
+Dance
+10
+
+TV/Film: 1996, This movie was released on May 3 The ____?
+Craft
+10
+
+TV/Film: 1996, This movie was released on May 3 The Great ____?
+White hype
+10
+
+TV/Film: 1996, This movie was released on May 31 ____?
+Dragonheart
+10
+
+TV/Film: 1996, This movie was released on May 31 ____?
+Eddie
+10
+
+TV/Film: 1996, This movie was released on May 31 The ____?
+Arrival
+10
+
+TV/Film: 1996, This movie was released on November 1 Bad ____?
+Moon
+10
+
+TV/Film: 1996, This movie was released on November 1 Larger ____?
+Than life
+10
+
+TV/Film: 1996, This movie was released on November 1 William Shakespeare's ____?
+Romeo & juliet
+10
+
+TV/Film: 1996, This movie was released on November 15 Space ____?
+Jam
+10
+
+TV/Film: 1996, This movie was released on November 15 The Mirror ____?
+Has two faces
+10
+
+TV/Film: 1996, This movie was released on November 22 Jingle ____?
+All the way
+10
+
+TV/Film: 1996, This movie was released on November 22 Star Trek: ____?
+First contact
+10
+
+TV/Film: 1996, This movie was released on November 27 101 ____?
+Dalmations
+10
+
+TV/Film: 1996, This movie was released on November 27 The ____?
+Crucible
+10
+
+TV/Film: 1996, This movie was released on November 6 Set ____?
+It off
+10
+
+TV/Film: 1996, This movie was released on November 8 ____?
+Ransom
+10
+
+TV/Film: 1996, This movie was released on November 8 Mad ____?
+Dog time
+10
+
+TV/Film: 1996, This movie was released on October 11 Michael ____?
+Collins
+10
+
+TV/Film: 1996, This movie was released on October 11 The ____?
+Chamber
+10
+
+TV/Film: 1996, This movie was released on October 11 The Long Kiss ____?
+Goodnight
+10
+
+TV/Film: 1996, This movie was released on October 16 ____?
+Giant
+10
+
+TV/Film: 1996, This movie was released on October 16 Alfred Hitchcock's ____?
+Vertigo
+10
+
+TV/Film: 1996, This movie was released on October 16 Get On ____?
+The bus
+10
+
+TV/Film: 1996, This movie was released on October 18 ____?
+Sleepers
+10
+
+TV/Film: 1996, This movie was released on October 18 To Gillian On Her ____?
+37th birthday
+10
+
+TV/Film: 1996, This movie was released on October 25 ____?
+Palookaville
+10
+
+TV/Film: 1996, This movie was released on October 25 ____?
+Sunchaser
+10
+
+TV/Film: 1996, This movie was released on October 25 High School ____?
+High
+10
+
+TV/Film: 1996, This movie was released on October 25 The ____?
+Associate
+10
+
+TV/Film: 1996, This movie was released on October 4 ____?
+Bound
+10
+
+TV/Film: 1996, This movie was released on October 4 Mighty ____?
+Ducks iii
+10
+
+TV/Film: 1996, This movie was released on October 4 That Thing ____?
+You do!
+10
+
+TV/Film: 1996, This movie was released on October 4 The Glimmer ____?
+Man
+10
+
+TV/Film: 1996, This movie was released on October 9 The ____?
+Proprietor
+10
+
+TV/Film: 1996, This movie was released on September 13 American ____?
+Buffalo
+10
+
+TV/Film: 1996, This movie was released on September 13 Feeling ____?
+Minnesota
+10
+
+TV/Film: 1996, This movie was released on September 13 Fly Away ____?
+Home
+10
+
+TV/Film: 1996, This movie was released on September 13 Grace Of ____?
+My heart
+10
+
+TV/Film: 1996, This movie was released on September 13 Maximum ____?
+Risk
+10
+
+TV/Film: 1996, This movie was released on September 13 The Rich ____?
+Man's wife
+10
+
+TV/Film: 1996, This movie was released on September 20 Last Man ____?
+Standing
+10
+
+TV/Film: 1996, This movie was released on September 20 Surviving ____?
+Picasso
+10
+
+TV/Film: 1996, This movie was released on September 20 The First ____?
+Wives club
+10
+
+TV/Film: 1996, This movie was released on September 27 2 Days in the ____?
+Valley
+10
+
+TV/Film: 1996, This movie was released on September 27 Extreme ____?
+Measures
+10
+
+TV/Film: 1996, This movie was released on September 6 ____?
+Bogus
+10
+
+TV/Film: 1996, This movie was released on September 6 ____?
+Bulletproof
+10
+
+TV/Film: 1996, This movie was released on September 6 Sweet ____?
+Nothing
+10
+
+TV/Film: 1997 70th Academy Awards: Best Actress In A Leading Role Was won by Helen Hunt For The Movie?
+As good as it gets
+10
+
+TV/Film: 1997 70th Academy Awards: Best Actress In A Supporting role was won by Kim Basinger For The Movie?
+L.a. Confidential
+10
+
+TV/Film: 1997, This Movie was Released on April 11 ____?
+Anaconda
+10
+
+TV/Film: 1997, This Movie was Released on April 11 Grosse Pointe ____?
+Blank
+10
+
+TV/Film: 1997, This Movie was Released on April 18 ____?
+Traveller
+10
+
+TV/Film: 1997, This Movie was Released on April 18 8 Heads in a ____?
+Duffel bag
+10
+
+TV/Film: 1997, This Movie was Released on April 18 McHale's ____?
+Navy
+10
+
+TV/Film: 1997, This Movie was Released on April 25 ____?
+Volcano
+10
+
+TV/Film: 1997, This Movie was Released on April 25 Romy and Michele's ____?
+High school reunion
+10
+
+TV/Film: 1997, This Movie was Released on April 4 Anna ____?
+Karenina
+10
+
+TV/Film: 1997, This Movie was Released on April 4 Double ____?
+Team
+10
+
+TV/Film: 1997, This Movie was Released on April 4 Inventing the ____?
+Abbotts
+10
+
+TV/Film: 1997, This Movie was Released on April 4 That Old ____?
+Feeling
+10
+
+TV/Film: 1997, This Movie was Released on April 4 The ____?
+Saint
+10
+
+TV/Film: 1997, This movie was released on August 1 ____?
+Spawn
+10
+
+TV/Film: 1997, This Movie was Released on August 1 Air ____?
+Bud
+10
+
+TV/Film: 1997, This movie was released on August 1 Picture ____?
+Perfect
+10
+
+TV/Film: 1997, This movie was released on August 15 ____?
+Steel
+10
+
+TV/Film: 1997, This movie was released on August 15 Cop ____?
+Land
+10
+
+TV/Film: 1997, This movie was released on August 15 Event ____?
+Horizon
+10
+
+TV/Film: 1997, This movie was released on August 22 ____?
+Masterminds
+10
+
+TV/Film: 1997, This movie was released on August 22 ____?
+Mimic
+10
+
+TV/Film: 1997, This movie was released on August 22 Leave it to ____?
+Beaver
+10
+
+TV/Film: 1997, This movie was released on August 22 Money ____?
+Talks
+10
+
+TV/Film: 1997, This movie was released on August 29 ____?
+Hoodlum
+10
+
+TV/Film: 1997, This movie was released on August 29 Excess ____?
+Baggage
+10
+
+TV/Film: 1997, This movie was released on August 29 Kull The ____?
+Conqueror
+10
+
+TV/Film: 1997, This movie was released on August 29 She's So ____?
+Lovely
+10
+
+TV/Film: 1997, This movie was released on August 8 Free ____?
+Willy 3
+10
+
+TV/Film: 1997, This movie was released on December 12 ____?
+Amistad
+10
+
+TV/Film: 1997, This movie was released on December 12 ____?
+Scream 2
+10
+
+TV/Film: 1997, This movie was released on December 12 For Richer or ____?
+Poorer
+10
+
+TV/Film: 1997, This movie was released on December 12 Home ____?
+Alone 3
+10
+
+TV/Film: 1997, This movie was released on December 19 Mouse ____?
+Hunt
+10
+
+TV/Film: 1997, This movie was released on December 19 Tomorrow ____?
+Never dies
+10
+
+TV/Film: 1997, This movie was released on December 25 An American Werewolf ____?
+In paris
+10
+
+TV/Film: 1997, This movie was released on December 25 As Good As ____?
+It gets
+10
+
+TV/Film: 1997, This movie was released on December 25 Jackie ____?
+Brown
+10
+
+TV/Film: 1997, This movie was released on December 25 Mr. ____?
+Magoo
+10
+
+TV/Film: 1997, This movie was released on December 26 The ____?
+Postman
+10
+
+TV/Film: 1997, This movie was released on December 5 Good Will ____?
+Hunting
+10
+
+TV/Film: 1997, This movie was released on December 5 The Wings of ____?
+The dove
+10
+
+TV/Film: 1997, This Movie was Released on February 12 Dangerous ____?
+Ground
+10
+
+TV/Film: 1997, This Movie was Released on February 14 ____?
+Touch
+10
+
+TV/Film: 1997, This Movie was Released on February 14 Absolute ____?
+Power
+10
+
+TV/Film: 1997, This Movie was Released on February 14 Fools ____?
+Rush in
+10
+
+TV/Film: 1997, This Movie was Released on February 14 That Darn ____?
+Cat
+10
+
+TV/Film: 1997, This Movie was Released on February 14 Vegas ____?
+Vacation
+10
+
+TV/Film: 1997, This Movie was Released on February 21 ____?
+Rosewood
+10
+
+TV/Film: 1997, This Movie was Released on February 21 The Empire Strikes Back: ____?
+Special edition
+10
+
+TV/Film: 1997, This Movie was Released on February 28 Booty ____?
+Call
+10
+
+TV/Film: 1997, This Movie was Released on February 28 Donnie ____?
+Brasco
+10
+
+TV/Film: 1997, This Movie was Released on February 28 Lost ____?
+Highway
+10
+
+TV/Film: 1997, This Movie was Released on February 7 ____?
+Suburbia
+10
+
+TV/Film: 1997, This Movie was Released on February 7 Dante's ____?
+Peak
+10
+
+TV/Film: 1997, This Movie was Released on February 7 The ____?
+Pest
+10
+
+TV/Film: 1997, This Movie was Released on February 7 The Beautician and ____?
+The beast
+10
+
+TV/Film: 1997, This Movie was Released on Jannuary 17 ____?
+Metro
+10
+
+TV/Film: 1997, This Movie was Released on Jannuary 17 Albino ____?
+Alligator
+10
+
+TV/Film: 1997, This Movie was Released on Jannuary 17 Beverly Hills ____?
+Ninja
+10
+
+TV/Film: 1997, This Movie was Released on January 10 ____?
+Evita
+10
+
+TV/Film: 1997, This Movie was Released on January 10 ____?
+Turbulence
+10
+
+TV/Film: 1997, This Movie was Released on January 10 Jackie Chan's ____?
+First strike
+10
+
+TV/Film: 1997, This Movie was Released on January 10 The ____?
+Relic
+10
+
+TV/Film: 1997, This Movie was Released on January 24 ____?
+Fierce creatures
+10
+
+TV/Film: 1997, This Movie was Released on January 24 ____?
+Kolya
+10
+
+TV/Film: 1997, This Movie was Released on January 24 ____?
+Prefontaine
+10
+
+TV/Film: 1997, This Movie was Released on January 24 In Love and ____?
+War
+10
+
+TV/Film: 1997, This Movie was Released on January 24 Zeus and ____?
+Roxanne
+10
+
+TV/Film: 1997, This Movie was Released on January 31 Meet Wally ____?
+Sparks
+10
+
+TV/Film: 1997, This Movie was Released on January 31 The Shadow ____?
+Conspiracy
+10
+
+TV/Film: 1997, This Movie was Released on January 31 Waiting for ____?
+Guffman
+10
+
+TV/Film: 1997, This Movie was Released on July 11 ____?
+Contact
+10
+
+TV/Film: 1997, This Movie was Released on July 11 A Simple ____?
+Wish
+10
+
+TV/Film: 1997, This Movie was Released on July 16 George of ____?
+The jungle
+10
+
+TV/Film: 1997, This Movie was Released on July 18 Nothing To ____?
+Lose
+10
+
+TV/Film: 1997, This Movie was Released on July 18 Operation ____?
+Condor
+10
+
+TV/Film: 1997, This Movie was Released on July 2 Men In ____?
+Black
+10
+
+TV/Film: 1997, This Movie was Released on July 2 Out To ____?
+Sea
+10
+
+TV/Film: 1997, This Movie was Released on July 2 Wild ____?
+America
+10
+
+TV/Film: 1997, This Movie was Released on July 25 Air Force ____?
+One
+10
+
+TV/Film: 1997, This Movie was Released on June 13 Speed 2: ____?
+Cruise control
+10
+
+TV/Film: 1997, This Movie was Released on June 20 Batman ____?
+And robin
+10
+
+TV/Film: 1997, This Movie was Released on June 20 My Best ____?
+Friend's wedding
+10
+
+TV/Film: 1997, This Movie was Released on June 20 Ulee's ____?
+Gold
+10
+
+TV/Film: 1997, This Movie was Released on June 6 Con ____?
+Air
+10
+
+TV/Film: 1997, This Movie was Released on March 14 Love ____?
+Jones
+10
+
+TV/Film: 1997, This Movie was Released on March 21 ____?
+Selena
+10
+
+TV/Film: 1997, This Movie was Released on March 21 Liar ____?
+Liar
+10
+
+TV/Film: 1997, This Movie was Released on March 26 Cats Don't ____?
+Dance
+10
+
+TV/Film: 1997, This Movie was Released on March 26 The Devil's ____?
+Own
+10
+
+TV/Film: 1997, This Movie was Released on March 28 ____?
+B.a.p.s
+10
+
+TV/Film: 1997, This Movie was Released on March 28 The 6th ____?
+Man
+10
+
+TV/Film: 1997, This Movie was Released on March 28 Turbo- A Power ____?
+Rangers movie
+10
+
+TV/Film: 1997, This Movie was Released on March 7 Jungle 2 ____?
+Jungle
+10
+
+TV/Film: 1997, This Movie was Released on March 7 Private ____?
+Parts
+10
+
+TV/Film: 1997, This Movie was Released on May 16 Jungle ____?
+Book ii
+10
+
+TV/Film: 1997, This Movie was Released on May 16 Night Falls on ____?
+Manhattan
+10
+
+TV/Film: 1997, This Movie was Released on May 2 ____?
+Breakdown
+10
+
+TV/Film: 1997, This Movie was Released on May 2 Austin Powers: International ____?
+Man of mystery
+10
+
+TV/Film: 1997, This Movie was Released on May 2 Truth or ____?
+Consequences, n.m
+10
+
+TV/Film: 1997, This Movie was Released on May 2 Warriors of ____?
+Virtue
+10
+
+TV/Film: 1997, This Movie was Released on May 23 Addicted ____?
+To love
+10
+
+TV/Film: 1997, This Movie was Released on May 23 Brassed ____?
+Off
+10
+
+TV/Film: 1997, This Movie was Released on May 23 The Lost ____?
+World
+10
+
+TV/Film: 1997, This Movie was Released on May 30 'Til There ____?
+Was you
+10
+
+TV/Film: 1997, This Movie was Released on May 30 Gone ____?
+Fishin'
+10
+
+TV/Film: 1997, This Movie was Released on May 30 Rough ____?
+Magic
+10
+
+TV/Film: 1997, This Movie was Released on May 30 Trial & ____?
+Error
+10
+
+TV/Film: 1997, This Movie was Released on May 9 Father's ____?
+Day
+10
+
+TV/Film: 1997, This Movie was Released on May 9 The Fifth ____?
+Element
+10
+
+TV/Film: 1997, This movie was released on November 14 One Night ____?
+Stand
+10
+
+TV/Film: 1997, This movie was released on November 14 The ____?
+Jackal
+10
+
+TV/Film: 1997, This movie was released on November 14 The Little ____?
+Mermaid
+10
+
+TV/Film: 1997, This movie was released on November 14 The Man Who ____?
+Knew too little
+10
+
+TV/Film: 1997, This movie was released on November 21 ____?
+Anastasia
+10
+
+TV/Film: 1997, This movie was released on November 21 John Grisham's ____?
+The rainmaker
+10
+
+TV/Film: 1997, This movie was released on November 21 Midnight in the Garden of ____?
+Good and evil
+10
+
+TV/Film: 1997, This movie was released on November 21 Mortal Kombat 2: ____?
+Annihilation
+10
+
+TV/Film: 1997, This movie was released on November 26 ____?
+Flubber
+10
+
+TV/Film: 1997, This movie was released on November 26 Alien ____?
+Ressurection
+10
+
+TV/Film: 1997, This movie was released on November 7 ____?
+Bean
+10
+
+TV/Film: 1997, This movie was released on November 7 ____?
+Mad city
+10
+
+TV/Film: 1997, This movie was released on November 7 Starship ____?
+Troopers
+10
+
+TV/Film: 1997, This movie was released on October 10 ____?
+Napoleon
+10
+
+TV/Film: 1997, This movie was released on October 10 Most ____?
+Wanted
+10
+
+TV/Film: 1997, This movie was released on October 10 Rocket ____?
+Man
+10
+
+TV/Film: 1997, This movie was released on October 10 Washington ____?
+Square
+10
+
+TV/Film: 1997, This movie was released on October 17 I Know What You ____?
+Did last summer
+10
+
+TV/Film: 1997, This movie was released on October 17 Playing ____?
+God
+10
+
+TV/Film: 1997, This movie was released on October 17 The Devil's ____?
+Advocate
+10
+
+TV/Film: 1997, This movie was released on October 24 ____?
+Gattaca
+10
+
+TV/Film: 1997, This movie was released on October 24 A Life Less ____?
+Ordinary
+10
+
+TV/Film: 1997, This movie was released on October 24 Fairytale - A ____?
+True story
+10
+
+TV/Film: 1997, This movie was released on October 3 ____?
+U-turn
+10
+
+TV/Film: 1997, This movie was released on October 3 Kiss ____?
+The girls
+10
+
+TV/Film: 1997, This movie was released on October 3 The ____?
+Locusts
+10
+
+TV/Film: 1997, This movie was released on October 3 The ____?
+Matchmaker
+10
+
+TV/Film: 1997, This movie was released on October 31 ____?
+Switchback
+10
+
+TV/Film: 1997, This movie was released on October 31 Boogie ____?
+Nights
+10
+
+TV/Film: 1997, This movie was released on October 31 Critical ____?
+Care
+10
+
+TV/Film: 1997, This movie was released on October 31 Red ____?
+Corner
+10
+
+TV/Film: 1997, This movie was released on October 8 Gang ____?
+Related
+10
+
+TV/Film: 1997, This movie was released on October 8 Seven Years ____?
+In tibet
+10
+
+TV/Film: 1997, This movie was released on September 12 The End of ____?
+Violence
+10
+
+TV/Film: 1997, This movie was released on September 19 ____?
+Wishmaster
+10
+
+TV/Film: 1997, This movie was released on September 19 A Thousand ____?
+Acres
+10
+
+TV/Film: 1997, This movie was released on September 19 In & ____?
+Out
+10
+
+TV/Film: 1997, This movie was released on September 19 L.A. ____?
+Confidential
+10
+
+TV/Film: 1997, This movie was released on September 26 Soul ____?
+Food
+10
+
+TV/Film: 1997, This movie was released on September 26 The ____?
+Assignment
+10
+
+TV/Film: 1997, This movie was released on September 26 The ____?
+Edge
+10
+
+TV/Film: 1997, This movie was released on September 26 The ____?
+Peacemaker
+10
+
+TV/Film: 1997, This movie was released on September 5 Fire Down ____?
+Below
+10
+
+TV/Film: 1997, This movie was released on September 9 Casper: A ____?
+Spirited beginning
+10
+
+TV/Film: 2000s: In 2000, Supernatural thriller starring Harrison Ford and Michelle Pfeiffer?
+What lies beneath
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on April 14 28 ____?
+Days
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on April 14 American ____?
+Psycho
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on April 14 Joe Gould's ____?
+Secret
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on April 14 Keeping The ____?
+Faith
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on April 14 Where The ____?
+Money is
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on April 21 ____?
+Gossip
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on April 21 ____?
+U-571
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on April 21 East Is ____?
+East
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on April 21 Love & ____?
+Basketball
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on April 28 ____?
+Committed
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on April 28 ____?
+Frequency
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on April 28 ____?
+Time code
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on April 28 The Big ____?
+Kahuna
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on April 28 The Flintstones In Viva ____?
+Rock vegas
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on April 28 The Virgin ____?
+Suicides
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on April 28 Where The ____?
+Heart is
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on April 5 Black And ____?
+White
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on April 7 Ready To ____?
+Rumble
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on April 7 Return ____?
+To me
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on April 7 Rules of ____?
+Engagement
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on August 11 Autumn in ____?
+New york
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on August 11 Bless the ____?
+Child
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on August 11 Sunset ____?
+Strip
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on August 11 The ____?
+Replacements
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on August 18 Steal ____?
+This movie!
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on August 18 The ____?
+Cell
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on August 18 The Original Kings of ____?
+Comedy
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on August 25 Bring ____?
+It on
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on August 25 Love & ____?
+Sex
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on August 25 The ____?
+Crew
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on August 25 The Art of ____?
+War
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on August 4 Coyote ____?
+Ugly
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on August 4 Hollow ____?
+Man
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on August 4 Space ____?
+Cowboys
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on December 1 A Hard Day's ____?
+Night
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on December 15 ____?
+Chocolat
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on December 15 Chain Of ____?
+Fools
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on December 15 The Family ____?
+Man
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on December 20 Thirteen ____?
+Days
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on December 22 Cast ____?
+Away
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on December 22 Miss ____?
+Congeniality
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on December 22 Wes Craven Presents ____?
+Dracula 2000
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on December 25, ____?
+Vatel
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on December 25, All The ____?
+Pretty horses
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on December 25, An Everlasting ____?
+Piece
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on December 8 Buying The ____?
+Cow
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on December 8 Vertical ____?
+Limit
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on February 11 Snow ____?
+Day
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on February 11 The ____?
+Beach
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on February 11 The Tigger ____?
+Movie
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on February 18 Boiler ____?
+Room
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on February 18 Hanging ____?
+Up
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on February 18 Holy ____?
+Smoke
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on February 18 Pitch ____?
+Black
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on February 18 The Whole ____?
+Nine yards
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on February 23 Wonder ____?
+Boys
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on February 25 Reindeer ____?
+Games
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on February 4 ____?
+Scream 3
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on February 4 Gun ____?
+Shy
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on January 1, ____?
+Fantasia 2000
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on January 12 Next ____?
+Friday
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on January 14 ____?
+Supernova
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on January 14 Girl, ____?
+Interrupted
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on January 14 The ____?
+Hurricane
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on January 21 Down ____?
+To you
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on January 21 Play It to the ____?
+Bone
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on January 28 ____?
+Restaurant
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on January 28 Eye of the ____?
+Beholder
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on January 28 Isn't ____?
+She great
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on January 28 The Big ____?
+Tease
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on January 7 ____?
+Magnolia
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on January 7 Snow Falling on ____?
+Cedars
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on July 14 ____?
+X-men
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on July 14 The Wisdom of ____?
+Crocodiles
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on July 19 The In ____?
+Crowd
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on July 21 ____?
+Loser
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on July 21 Pokemon The ____?
+Movie 2000
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on July 21 What Lies ____?
+Beneath
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on July 26 Thomas and the ____?
+Magic railroad
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on July 28 Nutty Professor II- ____?
+The klumps
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on July 7 Scary ____?
+Movie
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on July 7 The ____?
+Kid
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on June 16 ____?
+Shaft
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on June 16 Titan ____?
+A.e
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on June 2 Big Momma's ____?
+House
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on June 2 Running ____?
+Free
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on June 23 Chicken ____?
+Run
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on June 23 Love's Labour's ____?
+Lost
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on June 23 Me, Myself & ____?
+Irene
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on June 28 The ____?
+Patriot
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on June 30 Boys and ____?
+Girls
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on June 30 The ____?
+Butterfly
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on June 30 The Adventures of ____?
+Rocky and bullwinkle
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on June 30 The Perfect ____?
+Storm
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on June 9 Gone In Sixty ____?
+Seconds
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on March 10 3 ____?
+Strikes
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on March 10 Mission ____?
+To mars
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on March 10 The Ninth ____?
+Gate
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on March 17 Erin ____?
+Brockovich
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on March 17 Final ____?
+Destination
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on March 24 Here On ____?
+Earth
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on March 24 Romeo ____?
+Must die
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on March 24 Whatever ____?
+It takes
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on March 3 Drowning ____?
+Mona
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on March 3 My Dog ____?
+Skip
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on March 3 The Next ____?
+Best thing
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on March 3 What Planet ____?
+Are you from?
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on March 31 High ____?
+Fidelity
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on March 31 Price of ____?
+Glory
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on March 31 The ____?
+Skulls
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on March 31 The Road to ____?
+El dorado
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on May 12 Battlefield ____?
+Earth
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on May 12 Center ____?
+Stage
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on May 12?
+Hamlet
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on May 12?
+Screwed
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on May 19 ____?
+Dinosaur
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on May 19 Road ____?
+Trip
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on May 19 Small Time ____?
+Crooks
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on May 24 Mission ____?
+Impossible 2
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on May 26 Shanghai ____?
+Noon
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on May 5 ____?
+Gladiator
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on May 5 Human ____?
+Traffic
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on May 5 I Dreamed of ____?
+Africa
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on May 5 Up at the ____?
+Villa
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on November 10 ____?
+Malena
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on November 10 Men of ____?
+Honor
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on November 10 Red ____?
+Planet
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on November 17 ____?
+Bounce
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on November 17 ____?
+D-tox
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on November 17 Dr. Seuss' How The Grinch ____?
+Stole christmas
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on November 17 Little ____?
+Nicky
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on November 29 102 ____?
+Dalmations
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on November 3 The Legend of ____?
+Bagger vance
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on October 13 Billy ____?
+Elliot
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on October 13 Cyberworld ____?
+3d
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on October 13 Dr. T and ____?
+The women
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on October 13 Lost ____?
+Souls
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on October 13 The ____?
+Contender
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on October 13 The Ladies ____?
+Man
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on October 20 ____?
+Bamboozled
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on October 20 ____?
+Bedazzled
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on October 20 Pay It ____?
+Forward
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on October 20 Ring of ____?
+Fire
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on October 20 The ____?
+Yards
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on October 20 The Legend of ____?
+Drunken master
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on October 20 Two Family ____?
+House
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on October 27 Blow ____?
+Dry
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on October 27 Book of Shadows: ____?
+Blair witch 2
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on October 6 Get ____?
+Carter
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on October 6 Meet The ____?
+Parents
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on October 6?
+Girlfight
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on October 6?
+Tigerland
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on September 1 ____?
+Whipped
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on September 1 Highlander- ____?
+Endgame
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on September 1 Saving ____?
+Grace
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on September 15 ____?
+Bait
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on September 15 ____?
+Duets
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on September 15 Crime + Punishment in ____?
+Suburbia
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on September 15 Into the Arms of Strangers: Stories of the ____?
+Kindertransport
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on September 15 This is Spinal ____?
+Tap
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on September 22 Almost ____?
+Famous
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on September 22 The ____?
+Fantasticks
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on September 22 Urban Legends- ____?
+Final cut
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on September 22 Woman On ____?
+Top
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on September 29 ____?
+Beautiful
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on September 29 Best In ____?
+Show
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on September 29 Broken Hearts ____?
+League
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on September 29 Remember The ____?
+Titans
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on September 29 The ____?
+Exorcist
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on September 6 Turn ____?
+It up
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on September 8 ____?
+Backstage
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on September 8 Nurse ____?
+Betty
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on September 8 The ____?
+Watcher
+10
+
+TV/Film: 2000s: In 2000, this Movie was Released on September 8 The Way of ____?
+The gun
+10
+
+TV/Film: 2000s: Movie: In 2000, Angelina Jolie starred in this movie?
+Gone in 60 seconds
+10
+
+TV/Film: 2000s: Movie: In 2000, Anthony Hopkins starred in this movie?
+Mission: impossible 2
+10
+
+TV/Film: 2000s: Movie: In 2000, Ashley Judd starred in this movie?
+Eye of the beholder
+10
+
+TV/Film: 2000s: Movie: In 2000, Ashley Judd starred in this movie?
+Where the heart is
+10
+
+TV/Film: 2000s: Movie: In 2000, Bette Midler starred in this movie?
+Drowning mona
+10
+
+TV/Film: 2000s: Movie: In 2000, Bette Midler starred in this movie?
+Isn't she great
+10
+
+TV/Film: 2000s: Movie: In 2000, Bruce Willis starred in this movie?
+The whole nine yards
+10
+
+TV/Film: 2000s: Movie: In 2000, Demi Moore starred in this movie?
+Passion of mind
+10
+
+TV/Film: 2000s: Movie: In 2000, Drew Barrymore starred in this movie?
+Titan A.E.
+10
+
+TV/Film: 2000s: Movie: In 2000, George Clooney starred in this movie?
+The perfect storm
+10
+
+TV/Film: 2000s: Movie: In 2000, Hugh Grant starred in this movie?
+Small time crooks
+10
+
+TV/Film: 2000s: Movie: In 2000, James Woods starred in this movie?
+The virgin suicides
+10
+
+TV/Film: 2000s: Movie: In 2000, Jamie Lee Curtis starred in this movie?
+Drowning mona
+10
+
+TV/Film: 2000s: Movie: In 2000, John Travolta starred in this movie?
+Battlefield earth
+10
+
+TV/Film: 2000s: Movie: In 2000, Julia Roberts starred in this movie?
+Erin brockovich
+10
+
+TV/Film: 2000s: Movie: In 2000, Meg Ryan starred in this movie?
+Hanging up
+10
+
+TV/Film: 2000s: Movie: In 2000, Mel Gibson starred in this movie?
+Chicken run
+10
+
+TV/Film: 2000s: Movie: In 2000, Mel Gibson starred in this movie?
+The patriot
+10
+
+TV/Film: 2000s: Movie: In 2000, Michael Douglas starred in this movie?
+Wonder boys
+10
+
+TV/Film: 2000s: Movie: In 2000, Neve Campbell starred in this movie?
+Scream 3
+10
+
+TV/Film: 2000s: Movie: In 2000, Nicolas Cage starred in this movie?
+Gone in 60 seconds
+10
+
+TV/Film: 2000s: Movie: In 2000, Robert De Niro starred in this movie?
+The adventures of rocky and bullwinkle
+10
+
+TV/Film: 2000s: Movie: In 2000, Russell Crowe starred in this movie?
+Gladiator
+10
+
+TV/Film: 2000s: Movie: In 2000, Sally Field starred in this movie?
+Where the heart is
+10
+
+TV/Film: 2000s: Movie: In 2000, Salma Hayek starred in this movie?
+Time code
+10
+
+TV/Film: 2000s: Movie: In 2000, Sandra Bullock starred in this movie?
+Gun shy
+10
+
+TV/Film: 2000s: Movie: In 2000, Susan Sarandon starred in this movie?
+Joe gould's secret
+10
+
+TV/Film: 2000s: Movie: In 2000, Whoopi Goldberg starred in this movie?
+The adventures of rocky and bullwinkle
+10
+
+TV/Film: 2000s: Movie: In 2000, Woody Allen starred in this movie?
+Small time crooks
+10
+
+TV/Film: 2000s: The wife of which troubled Hollywood star has filed for divorce in 2002?
+Robert Downey Jr 
+10
+
+TV/Film: 2002, Gurinder Chadha's comedy about an inter racial womens Football team?
+Bend it like Beckham
+10
+
+TV/Film: 2002, which film was voted the greatest American film of all time by the American film Institute?
+Citizen Kane
+10
+
+TV/Film: 2002, who won best actor Oscar for his role in A beautiful Mind?
+Russell Crowe
+10
+
+TV/Film: 25 years after first playing James Bond Sean Connery won an Oscar for his part in which film?
+The untouchables
+10
+
+TV/Film: 3 Character names for TV networks (Example- NBC)?
+NBC
+10
+
+TV/Film: 90210: From what state did the Walshes move to Beverly Hills?
+Minnesota
+10
+
+TV/Film: 90210: What foreign city have Donna & Brenda, as well as Dylan & Kelly traveled to?
+Paris
+10
+
+TV/Film: 90210: What is Andrea's husband's first name?
+Jesse
+10
+
+TV/Film: 90210: What is the nightclub Valerie runs called?
+Peach pit after dark
+10
+
+TV/Film: 90210: What two characters became related by the marriage of their parents (- and -)?
+Kelly and David
+10
+
+TV/Film: 90210: What was Dylan's father's name?
+Jack mckay
+10
+
+TV/Film: 90210: Which character is played by the daughter of producer Aaron Spelling?
+Donna martin
+10
+
+TV/Film: A biographical film?
+Biopic
+10
+
+TV/Film: A character named 'spearchucker jones' was deleted from this famous American television show's cast after only five episodes?
+Mash
+10
+
+TV/Film: A film contract between mutual film corporation and a great Mexican bandit meant that he could not commence battles unless a cameraman was on hand to film the happenings. who was this bandit?
+Pancho villa
+10
+
+TV/Film: A film starring Cameron Diaz?
+Charlie's Angels
+10
+
+TV/Film: A film starring Cameron Diaz?
+Something about Mary
+10
+
+TV/Film: A presenter on the BBCs 10 o'clock news?
+Peter sissons
+10
+
+TV/Film: About which family are the Godfather films?
+Corleone
+10
+
+TV/Film: Account of Eliot Ness' takedown of Al Capone?
+The untouchables
+10
+
+TV/Film: Actor who committed suicide because he was bored?
+George sanders
+10
+
+TV/Film: Actor: ____ bacon?
+Kevin
+10
+
+TV/Film: Actor: ____ Borgnine?
+Ernest
+10
+
+TV/Film: Actor: ____ douglas?
+Kirk
+10
+
+TV/Film: Actor: ____ douglas?
+Michael
+10
+
+TV/Film: Actor: ____ ford?
+Glenn
+10
+
+TV/Film: Actor: ____ ford?
+Harrison
+10
+
+TV/Film: Actor: ____ Hackman?
+Gene
+10
+
+TV/Film: Actor: ____ Nimoy?
+Leonard
+10
+
+TV/Film: Actor: ____ reeves?
+Christopher
+10
+
+TV/Film: Actor: ____ reeves?
+George
+10
+
+TV/Film: Actor: ____ reeves?
+Keannu
+10
+
+TV/Film: Actor: ____ Savalas?
+Telly
+10
+
+TV/Film: Actor: ____ york?
+Michael
+10
+
+TV/Film: Actor: ...who played ashley wilkes?
+Leslie howard
+10
+
+TV/Film: Actor: ...who played bob woodward?
+Robert redford
+10
+
+TV/Film: Actor: ...who played charles foster kane?
+Orson welles
+10
+
+TV/Film: Actor: ...who played Dirty Harry?
+Clint eastwood
+10
+
+TV/Film: Actor: ...who played edward scissorhands?
+Johnny depp
+10
+
+TV/Film: Actor: ...who played Ferris Bueller?
+Matthew broderick
+10
+
+TV/Film: Actor: ...who played Obi Wan Kenobi?
+Alec guiness
+10
+
+TV/Film: Actor: ...who played the nutty professor?
+Jerry lewis
+10
+
+TV/Film: Actor: ...who played Willy Wonka?
+Gene wilder
+10
+
+TV/Film: Actor: 40s star married to both Charlie Chaplin & Burgess Meredith?
+Paulette goddard
+10
+
+TV/Film: Actor: Actress in Psycho and Touch of Evil?
+Janet leigh
+10
+
+TV/Film: Actor: Actress who died in a road accident on US 90 outside of New Orleans?
+Jayne mansfield
+10
+
+TV/Film: Actor: Alan Alda,Loretta Swit?
+Mash
+10
+
+TV/Film: Actor: Alice Cramden in the Honeymooners?
+Audrey meadows
+10
+
+TV/Film: Actor: Auntie Mame & Gypsy?
+Rosalind russell
+10
+
+TV/Film: Actor: Babe Ruth in The Babe Ruth Story?
+William bendix
+10
+
+TV/Film: Actor: Barfly ____> Wanda Wilcox?
+Faye dunaway
+10
+
+TV/Film: Actor: Batman ____> Vicki Vale?
+Kim basinger
+10
+
+TV/Film: Actor: Birthplace of Sonny Bono?
+Detroit
+10
+
+TV/Film: Actor: Charles Grodin, Robert DeNiro?
+Midnight run
+10
+
+TV/Film: Actor: Chattahoochie; Romeo Is Bleeding; Rosencrantz And Guildenstern Are Dead?
+Gary oldman
+10
+
+TV/Film: Actor: Chris Noth, Michael Moriarty, Jerry Orbach?
+Law and order
+10
+
+TV/Film: Actor: Dave Thomas, Brett Butler?
+Grace under fire
+10
+
+TV/Film: Actor: David Carruso, Dennis Franz?
+Nypd blue
+10
+
+TV/Film: Actor: David Caruso, Stacy Keach?
+Mission of the shark
+10
+
+TV/Film: Actor: Dennis Quaid, Ellen Barkin?
+The big easy
+10
+
+TV/Film: Actor: Dennis Quaid, Louis Gossett Jr?
+Enemy mine
+10
+
+TV/Film: Actor: Don Johnson, Phillip Michael Thomas?
+Miami vice
+10
+
+TV/Film: Actor: Early SNL regular. Wife of Gene Wilder?
+Gilda radner
+10
+
+TV/Film: Actor: Emilio Estevez's father?
+Martin sheen
+10
+
+TV/Film: Actor: Emma Peel on The Avengers?
+Diana rigg
+10
+
+TV/Film: Actor: Ethan Phillips, Tim Russ, Robert McNeill, Garrett Wang?
+Star trek voyager
+10
+
+TV/Film: Actor: famous as Superman?
+Christopher reeve
+10
+
+TV/Film: Actor: famous for Inspector Clouseau?
+Peter sellers
+10
+
+TV/Film: Actor: Female star of 10?
+Bo Derek
+10
+
+TV/Film: Actor: Female star of 9 1/2 weeks?
+Kim Basinger
+10
+
+TV/Film: Actor: Female star of Casablanca?
+Ingrid Bergman
+10
+
+TV/Film: Actor: Female star of pretty Woman?
+Julia Roberts
+10
+
+TV/Film: Actor: Female star of The English Patient?
+Kristin Scott Thomas
+10
+
+TV/Film: Actor: Female star of The Mask?
+Cameron Diaz
+10
+
+TV/Film: Actor: Female star of To have or have not?
+Lauren Bacall
+10
+
+TV/Film: Actor: French film star of Danton and The Return of Martin Guerre?
+Gerald Depardieu
+10
+
+TV/Film: Actor: Gary Oldman, Sissy Spacek, Tommy Lee Jones?
+Jfk
+10
+
+TV/Film: Actor: Greg Evigan, William Shatner?
+Tekwar
+10
+
+TV/Film: Actor: He starred in Lassie Come Home and Planet of the Apes?
+Roddy mcdowall
+10
+
+TV/Film: Actor: He starred in The Silence of the Lambs and Howard's End?
+Anthony hopkins
+10
+
+TV/Film: Actor: He used to be Michael Douglas, but desired a more unique stage name?
+Michael keaton
+10
+
+TV/Film: Actor: He was born Allen Konigsberg?
+Woody allen
+10
+
+TV/Film: Actor: He was born Krishna Banji?
+Ben kingsley
+10
+
+TV/Film: Actor: He was in Brideshead Revisited and Reversal of Fortune?
+Jeremy irons
+10
+
+TV/Film: Actor: He was in Silkwood and Backdraft?
+Kurt russell
+10
+
+TV/Film: Actor: He won an Oscar for Dr. Jekyll and Mr. Hyde?
+Frederick march
+10
+
+TV/Film: Actor: He won Oscars for Spartacus and Topkapi?
+Peter ustinov
+10
+
+TV/Film: Actor: Helen Hunt, Paul Reiser?
+Mad about you
+10
+
+TV/Film: Actor: Hot Spot; Candy Man; Shadow Dancing?
+Virginia madsen
+10
+
+TV/Film: Actor: In the movie Romero, who played the main character of Father Romero?
+Raul Julia 
+10
+
+TV/Film: Actor: Irish actress in How Green Was My Valley & The Quiet Man?
+Maureen o¿: Name the Actor: hara
+10
+
+TV/Film: Actor: Italian actress who won a 1961 Oscar for Two Women?
+Sophia loren
+10
+
+TV/Film: Actor: Jamie Lee Curtis, Kevin Kline, John Cleese?
+A fish called wanda
+10
+
+TV/Film: Actor: Janine Turner, Rob Morrow?
+Northern exposure
+10
+
+TV/Film: Actor: Jeff Daniels, Julian Sands, John Goodman?
+Arachnaphobia
+10
+
+TV/Film: Actor: Jeff Goldblum, Emma Thompson?
+The tall guy
+10
+
+TV/Film: Actor: Jerry Van Dyke, J.T.Nelson?
+Coach
+10
+
+TV/Film: Actor: Jimmy Piersall in Fear Strikes Out?
+Anthony perkins
+10
+
+TV/Film: Actor: Julia Louise Dreyfuss, Jason Alexander?
+Seinfeld
+10
+
+TV/Film: Actor: Jurassic Park; The Hunt For Red October; The Piano?
+Sam neill
+10
+
+TV/Film: Actor: Kelsey Grammer, David Hyde Pierce?
+Frasier
+10
+
+TV/Film: Actor: Kiefer Sutherland, Jason Patric, Billy Wirth?
+The lost boys
+10
+
+TV/Film: Actor: Kiefer Sutherland, Julia Roberts, Kevin Bacon?
+Flatliners
+10
+
+TV/Film: Actor: Krystle on Dynasty?
+Linda evans
+10
+
+TV/Film: Actor: Kurt Russell, Adrienne Barbeau, Lee Van Cleef?
+Escape from New York
+10
+
+TV/Film: Actor: Kurt Russell, Keith David, Wilford Brimley?
+The thing
+10
+
+TV/Film: Actor: Lee Marvin, John Cassavettes, Telly Savalas?
+The dirty dozen
+10
+
+TV/Film: Actor: levar burton (jordi on 'Star Trek the next generation') was born in ____?
+Germany
+10
+
+TV/Film: Actor: Lou Gehrig in Pride of the Yankees?
+Gary cooper
+10
+
+TV/Film: Actor: Madame Sousatzka ____> Madame Sousatzka?
+Shirley maclaine
+10
+
+TV/Film: Actor: Malcolm X ____> Betty Shabazz?
+Angela bassett
+10
+
+TV/Film: Actor: Mallory Keaton on Family Ties?
+Justine bateman
+10
+
+TV/Film: Actor: married to Prince Rainier of Monaco?
+Grace Kelly
+10
+
+TV/Film: Actor: Mr. Haney on Green Acres?
+Pat buttram
+10
+
+TV/Film: Actor: One Flew Over the Cuckoo's Nest ____> The Big Nurse?
+Louise fletcher
+10
+
+TV/Film: Actor: Oscar winner 48 years apart, in 1933 & 1981?
+Katharine hepburn
+10
+
+TV/Film: Actor: paid $2.5M for 12 days work & 10 mins. of screen appearance (in Superman)?
+Marlon brando
+10
+
+TV/Film: Actor: Pamela Barnes Ewing on Dallas?
+Victoria principal
+10
+
+TV/Film: Actor: Pearce Brosnan, Patrick Stewart?
+Detonator
+10
+
+TV/Film: Actor: Pierce Brosnan, Leslie Anne Down, Adam Ant?
+Nomads
+10
+
+TV/Film: Actor: played Apollo Creed?
+Carl weathers
+10
+
+TV/Film: Actor: played Dick Tracy (in the 90's)?
+Warren beatty
+10
+
+TV/Film: Actor: played Dirty Harry?
+Eastwood
+10
+
+TV/Film: Actor: played Jake LaMotta?
+Robert deniro
+10
+
+TV/Film: Actor: played Obi Wan Kenobi?
+Guiness
+10
+
+TV/Film: Actor: played The Incredible Mr. Limpett?
+Don knotts
+10
+
+TV/Film: Actor: Played the role of Atticus Finch in 'To Kill A Mockingbird'?
+Gregory peck
+10
+
+TV/Film: Actor: Played the role of Captain Ahab in 'Moby Dick' (1956)?
+Gregory peck
+10
+
+TV/Film: Actor: Played the role of Charles Lindbergh in 'The Spirit of St. Louis'?
+James stewart
+10
+
+TV/Film: Actor: Played the role of Cody Jarett in ' White Heat'?
+James cagney
+10
+
+TV/Film: Actor: Played the role of Josef Mengele in 'The Boys from Brazil'?
+Gregory peck
+10
+
+TV/Film: Actor: Played the role of Longfellow Deeds in 'Mr Deeds Goes to Town'?
+Gary cooper
+10
+
+TV/Film: Actor: Played the role of Michelangelo in 'The Agony and the Ecstasy'?
+Charlton heston
+10
+
+TV/Film: Actor: Played the role of Nero in 'The Sign of the Cross'?
+Charles laughton
+10
+
+TV/Film: Actor: Played the role of Pancho Villa in 'Viva Villa'?
+Wallace beery
+10
+
+TV/Film: Actor: Played the role of Prince Feisal in 'Lawrence of Arabia'?
+Alec guinness
+10
+
+TV/Film: Actor: Played the role of Rembrandt in 'Rembrandt'?
+Charles laughton
+10
+
+TV/Film: Actor: Played the role of Terry Malloy in 'On the Water Front'?
+Marlon brando
+10
+
+TV/Film: Actor: Played the role of Vincent van Gogh in 'Lust for Life'?
+Kirk douglas
+10
+
+TV/Film: Actor: played Travis Bickle?
+Robert de niro
+10
+
+TV/Film: Actor: played TS Garp?
+Robin williams
+10
+
+TV/Film: Actor: played TS Garp?
+Williams
+10
+
+TV/Film: Actor: Pulp Fiction; The Fisher King; So I Married An Axe Murderer?
+Amanda plummer
+10
+
+TV/Film: Actor: Radio star who won a 1986 Oscar for Cocoon?
+Don ameche
+10
+
+TV/Film: Actor: Reds; Annie Hall; Baby Boom?
+Diane keaton
+10
+
+TV/Film: Actor: Reservoir Dogs; Bad Lieutenant; Thelma & Louise?
+Harvey keitel
+10
+
+TV/Film: Actor: Roseanne regular and host of Fernwood 2-Night?
+Martin mull
+10
+
+TV/Film: Actor: Roy Hobbs' old girlfriend and eventual wife in The Natural?
+Glenn close
+10
+
+TV/Film: Actor: Runaway Train ____> Sara?
+Rebecca demornay
+10
+
+TV/Film: Actor: Sean Connery, Sam Neill, Alec Baldwin?
+The hunt for red october
+10
+
+TV/Film: Actor: Sean Penn, Al Pacino, John Leguzamo?
+Carlitos way
+10
+
+TV/Film: Actor: She has been nominated for best actress 12 times, winning only once (for 'Sophie's Choice')?
+Merryl streep
+10
+
+TV/Film: Actor: She married Humphrey Bogart?
+Lauren bacall
+10
+
+TV/Film: Actor: She played carrie?
+Sissy spacek
+10
+
+TV/Film: Actor: She played kitty russell on Gunsmoke?
+Amanda blake
+10
+
+TV/Film: Actor: She played shirley valentine?
+Pauline collins
+10
+
+TV/Film: Actor: She shared an apartment with Jack Tripper and Chrissy Snow (full name)?
+Janet wood
+10
+
+TV/Film: Actor: She starred in broadcast news and the piano?
+Holly hunter
+10
+
+TV/Film: Actor: She starred in Casablanca, Gaslight, & Anastasia?
+Ingrid bergman
+10
+
+TV/Film: Actor: She starred in Fatal Attraction and Dangerous Liasons?
+Glenn close
+10
+
+TV/Film: Actor: She was born Frances Gumm?
+Judy garland
+10
+
+TV/Film: Actor: She was born Susan Tomaling?
+Susan sarandon
+10
+
+TV/Film: Actor: She was Oscar nominated for Sunset Boulevard?
+Gloria swanson
+10
+
+TV/Film: Actor: She was the star of 40s MGM swimming spectaculars?
+Esther williams
+10
+
+TV/Film: Actor: She won an Oscar in the lead role in 'Erin Brokovich' the movie?
+Julia Roberts
+10
+
+TV/Film: Actor: She won Oscars for (ch) Kramer vs. Kramer and Sophie's Choice?
+Meryl streep
+10
+
+TV/Film: Actor: Sigourney Weaver, Tom Skerritt, John Hurt?
+Alien
+10
+
+TV/Film: Actor: Silkwood; Heartburn; She Devil?
+Meryl streep
+10
+
+TV/Film: Actor: Sneakers; Passion Fish; Dances With Wolves?
+Mary mcdonnell
+10
+
+TV/Film: Actor: Some Kind of Wonderful ____> Amanda Jones?
+Lea thompson
+10
+
+TV/Film: Actor: Stallone's ex and Red Sonja?
+Brigette nielsen
+10
+
+TV/Film: Actor: star of On the Beach, once married to frank Sinatra?
+Ava Gardner
+10
+
+TV/Film: Actor: Star of Some Like It Hot and The Seven Year Itch?
+Marilyn monroe
+10
+
+TV/Film: Actor: Stephen Spielberg ex who was in The Competition and Yentl?
+Amy irving
+10
+
+TV/Film: Actor: Steven Weber, Crystal Bernard?
+Wings
+10
+
+TV/Film: Actor: Susan Sarandon, Geena Davis?
+Thelma and louise
+10
+
+TV/Film: Actor: Ted Danson, Kirsty Alley, George Wendt?
+Cheers
+10
+
+TV/Film: Actor: Terminator 2: Judgment Day ____> Sarah Connor?
+Linda hamilton
+10
+
+TV/Film: Actor: The birthplace (city) of Jack Lemmon?
+Boston
+10
+
+TV/Film: Actor: The birthplace (city) of Raul Julia?
+San juan
+10
+
+TV/Film: Actor: The birthplace (city) of Sidney Poitier?
+Miami
+10
+
+TV/Film: Actor: The birthplace (city) of the late John Candy?
+Toronto
+10
+
+TV/Film: Actor: The Color of Money ____> Carla?
+Mary elizabeth mastrantonio
+10
+
+TV/Film: Actor: The dad on Family Affair?
+Brian keith
+10
+
+TV/Film: Actor: The film Looper, set in 2074, stars which action movie icon?
+Bruce Willis
+10
+
+TV/Film: Actor: The Grifters ____> Lily Dillon?
+Anjelica huston
+10
+
+TV/Film: Actor: The heartthrob in Dirty Dancing and Ghost?
+Patrick swayze
+10
+
+TV/Film: Actor: The Hunger; The Rocky Horror Picture Show; Bull Durham?
+Susan sarandon
+10
+
+TV/Film: Actor: The leading man in Mrs. Miniver and Madame Curie?
+Walter pidgeon
+10
+
+TV/Film: Actor: the manager in The Natural?
+Wilfred brimley
+10
+
+TV/Film: Actor: The martian on My Favorite Martian?
+Ray walston
+10
+
+TV/Film: Actor: The mute Marx Brother?
+Harpo
+10
+
+TV/Film: Actor: The Natural ____> Iris Gaines?
+Glenn close
+10
+
+TV/Film: Actor: the pesky sportswriter in The Natural?
+Robert duvall
+10
+
+TV/Film: Actor: The piano-playing Marx brother?
+Chico
+10
+
+TV/Film: Actor: The Riddler on Batman?
+Frank gorshin
+10
+
+TV/Film: Actor: The Silence Of The Lambs; Backdraft; Urban Cowboy?
+Scott glenn
+10
+
+TV/Film: Actor: The singer TV/Film: Who played Mrs. Murtaugh in the Lethal Weapon series?
+Darlene love
+10
+
+TV/Film: Actor: The star of Roman Holiday and Breakfast at Tiffany's?
+Audrey hepburn
+10
+
+TV/Film: Actor: The Tall Guy; Peter's Friends; Dead Again?
+Emma thompson
+10
+
+TV/Film: Actor: The Tin Man in The Wizard of Oz?
+Jack haley
+10
+
+TV/Film: Actor: The Wicked Witch in The Wizard of Oz and Maxwell House spokesperson?
+Margaret hamilton
+10
+
+TV/Film: Actor: the woman who pretended to be Hobbs' mistress in The Natural?
+Kim basinger
+10
+
+TV/Film: Actor: This actress was married to a king?
+Priscilla presley
+10
+
+TV/Film: Actor: This is another fine mess you've gotten me into?
+Oliver hardy
+10
+
+TV/Film: Actor: This person was related to Princess Diana?
+Humphrey bogart
+10
+
+TV/Film: Actor: Threesome ____> Alex?
+Lara flynn boyle
+10
+
+TV/Film: Actor: Tom Berenger, Mimi Rogers?
+Someone to watch over me
+10
+
+TV/Film: Actor: Tom Berenger, Sidney Poitier, Clancy Brown?
+Shoot to kill
+10
+
+TV/Film: Actor: Unlawful Entry; Blink; Revenge?
+Madeleine stowe
+10
+
+TV/Film: Actor: Unnecessary Roughness ____> the placekicker?
+Kathy Ireland
+10
+
+TV/Film: Actor: Voice of Jack Benny's hispanic friend Sy (Sy?...Si!), his car, and Bugs Bunny?
+Mel blanc
+10
+
+TV/Film: Actor: Which actor was in Lifeboat, Cocoon?
+Hume cronyn
+10
+
+TV/Film: Actor: Which actor was in My Mother the Car, Coach?
+Jerry van dyke
+10
+
+TV/Film: Actor: Which actor was in Superman, Unforgiven?
+Jon voight
+10
+
+TV/Film: Actor: Which actor was in The Donna Reed Show, Pete and Gladys, M-A-S-H?
+Harry morgan
+10
+
+TV/Film: Actor: Which actor was in The Untouchables, The Man Who Would Be King?
+Sean connery
+10
+
+TV/Film: Actor: Which actor was in Victor/Victoria, The Music Man?
+Robert preston
+10
+
+TV/Film: Actor: Which actor was in Zorro, Lost in Space?
+Guy williams
+10
+
+TV/Film: Actor: Which TV show made Canadian Pamela Anderson famous?
+Baywatch
+10
+
+TV/Film: Actor: Who appeared in Doc Hollywood (1991) Singles (1992) & Point of No Return (1993)?
+Bridget fonda
+10
+
+TV/Film: Actor: Who co-starred as Gale Sayers in Brian's Song?
+Billy dee williams
+10
+
+TV/Film: Actor: Who famously played the character of Norman Bates?
+Anthony perkins
+10
+
+TV/Film: Actor: Who famously played the character of Shaft?
+Richard roundtree
+10
+
+TV/Film: Actor: Who famously played the character of Superman?
+Christopher reeve
+10
+
+TV/Film: Actor: Who has played a Beverly Hills hustler, a Navy cadet and a very wealthy Beverly Hills 'john'?
+Richard gere
+10
+
+TV/Film: Actor: Who has played a hit man, the devil and a humorous super villain?
+Jack Nicholson
+10
+
+TV/Film: Actor: Who has played an inventor, a musketeer and a break dancing grandfather?
+Don Ameche
+10
+
+TV/Film: Actor: Who is the voice of Darth Vadar?
+James earl jones
+10
+
+TV/Film: Actor: who made an 'unbilled' appearance in the film, 'Tootsie'?
+Bill Murray 
+10
+
+TV/Film: Actor: Who married her 7th husband in Michael Jackson's garden?
+Elizabeth taylor
+10
+
+TV/Film: Actor: Who played Garth in Wayne's World?
+Dana carvey
+10
+
+TV/Film: Actor: Who played Matt Helm in the movies?
+Dean martin
+10
+
+TV/Film: Actor: who played Michelle in eastenders?
+Susan Tully
+10
+
+TV/Film: Actor: Who played the character of Arthur?
+Dudley moore
+10
+
+TV/Film: Actor: Who played the character of Captain Blood?
+Errol flynn
+10
+
+TV/Film: Actor: Who played the character of Carrie?
+Sissy spacek
+10
+
+TV/Film: Actor: Who played the character of Dick Tracy?
+Warren beatty
+10
+
+TV/Film: Actor: Who played the character of Dirty Harry?
+Clint eastwood
+10
+
+TV/Film: Actor: Who played the character of Doctor Doolittle?
+Rex harrison
+10
+
+TV/Film: Actor: Who played the character of Dr. Phibes?
+Vincent price
+10
+
+TV/Film: Actor: Who played the character of Elmer Gantry?
+Burt lancaster
+10
+
+TV/Film: Actor: Who played the character of Ghandi?
+Ben kingsley
+10
+
+TV/Film: Actor: Who played the character of Gigi?
+Leslie caron
+10
+
+TV/Film: Actor: Who played the character of Inspector Clouseau?
+Peter sellers
+10
+
+TV/Film: Actor: Who played the character of Lawrence of Arabia?
+Peter otoole
+10
+
+TV/Film: Actor: Who played the character of Mary Poppins?
+Julie andrews
+10
+
+TV/Film: Actor: Who played the character of Private Benjamin?
+Goldie hawn
+10
+
+TV/Film: Actor: Who played the character of Sherlock Holmes?
+Basil rathbone
+10
+
+TV/Film: Actor: Who played the character of The Bandit?
+Burt reynolds
+10
+
+TV/Film: Actor: Who played the character of The Great Santini?
+Robert duvall
+10
+
+TV/Film: Actor: Who played the character of The Music Man?
+Robert preston
+10
+
+TV/Film: Actor: Who played the character of The Sheik?
+Rudolph valentinoTV/Film: Name the film: 
+10
+
+TV/Film: Actor: who played the leading role in 'The Good, the Bad, and the Ugly'?
+Clint Eastwood
+10
+
+TV/Film: Actor: who played the pretty blond girl elliot danced with in e.t. the extra-terrestrial?
+Erika eleniak
+10
+
+TV/Film: Actor: Who played the role of Richard Blaine in Casablanca?
+Humphrey bogart
+10
+
+TV/Film: Actor: who portrayed Adam Cartwright in the TV series, Bonanza?
+Pernell Roberts
+10
+
+TV/Film: Actor: who portrayed the character LeRoy Johnson in both the movie & TV Series, Fame?
+Gene Anthony Ray
+10
+
+TV/Film: Actor: Who starred as an alien in the 1970's film 'The Man Who Fell to Earth?
+David bowie
+10
+
+TV/Film: Actor: Who starred as bill bittinger in buffalo bill?
+Dabney coleman
+10
+
+TV/Film: Actor: Who starred as danny wilde in the persuaders?
+Tony curtis
+10
+
+TV/Film: Actor: Who starred as History lecturer Jim Dixon in the film version of Kingsley Amis' novel Lucky Jim?
+Ian carmichael
+10
+
+TV/Film: Actor: Who starred as Jimmy Porter in the film version of John Osborne's play Look Back in Anger?
+Richard burton
+10
+
+TV/Film: Actor: Who starred as valentine farrow in the 1964 series valentine's day?
+Tony franciosa
+10
+
+TV/Film: Actor: Who starred in 'billy madison', 'happy gilmore', 'the wedding singer' and 'the water boy'?
+Adam sandler
+10
+
+TV/Film: Actor: Who starred in 'city lights'?
+Charlie chaplin
+10
+
+TV/Film: Actor: Who starred in Singing in the rain and Xanadu?
+Gene kelly
+10
+
+TV/Film: Actor: Who starred in the 'hard to kill' series of films?
+Steven segal
+10
+
+TV/Film: Actor: Who starred in the 1916 film 'intolerance'?
+Seena owen
+10
+
+TV/Film: Actor: Who starred in the 1952 film 'niagara'?
+Marilyn monroe
+10
+
+TV/Film: Actor: Who starred in the 1968 film funny girl?
+Barbra streisand
+10
+
+TV/Film: Actor: Who starred in the Alfred Hitchcock film 'To Catch a Thief?
+Cary grant
+10
+
+TV/Film: Actor: Who starred in the film '48 hours'?
+Nick nolte and eddie murphy
+10
+
+TV/Film: Actor: Who starred in the film 'the dirty dozen'?
+Lee marvin
+10
+
+TV/Film: Actor: Who starred in the film the man from laramie?
+James stewart
+10
+
+TV/Film: Actor: Who starred in the film the outlaw josey wales?
+Clint eastwood
+10
+
+TV/Film: Actor: Who starred in the film version of 'hamlet' that grossed the most?
+Mel gibson
+10
+
+TV/Film: Actor: Who starred in the film version of 'to kill a mockingbird'?
+Gregory peck
+10
+
+TV/Film: Actor: Who starred in the film Willie Wonka and the Chocolate Factory?
+Gene wilder
+10
+
+TV/Film: Actor: Who starred in the films The Gold Rush and Modern Times?
+Charlie chaplin
+10
+
+TV/Film: Actor: Who starred in the movie 'highpoint'?
+Richard harris
+10
+
+TV/Film: Actor: Who starred in the movie biloxi blues?
+Matthew broderick
+10
+
+TV/Film: Actor: Who starred in the movie blade runner?
+Harrison ford
+10
+
+TV/Film: Actor: Who starred in the movie Yentl?
+Barbra Streisand
+10
+
+TV/Film: Actor: Who starred in The Rockford Files?
+James garner
+10
+
+TV/Film: Actor: Who starred in the title role for 'don juan'?
+John barrymore
+10
+
+TV/Film: Actor: who starred with Humphrey Bogart in The Big Sleep?
+Lauren bacall
+10
+
+TV/Film: Actor: who starred with James Bolam in The Likely Lads?
+Rodney bewes
+10
+
+TV/Film: Actor: Who starred with John Travolta in the movie 'Broken Arrow'?
+Christian Slater
+10
+
+TV/Film: Actor: who turned down the male lead role in Gone with the Wind?
+Gary Cooper
+10
+
+TV/Film: Actor: who was Steve McQueen's martial arts instructor?
+Chuck Norris 
+10
+
+TV/Film: Actor: whose real name is Ramon Estevez (full name)?
+Martin sheen
+10
+
+TV/Film: Actor: whose real name was Marion Morrison?
+John wayne
+10
+
+TV/Film: Actor: whose real name was Ruby Stevens (full name)?
+Barbara stanwyck
+10
+
+TV/Film: Actor: whose wives included Vivien Leigh and Joan Plowright?
+Laurence olivier
+10
+
+TV/Film: Actor: Willem Dafoe, Tom Berringer, Charlie Sheen?
+Platoon
+10
+
+TV/Film: Actress Amy Irving divorced her producer husband in 1989, who was he?
+Steven spielberg
+10
+
+TV/Film: Actress cheryl ladd started her career as the singing voice of the character melody on this cartoon?
+Josie and the pussycats
+10
+
+TV/Film: Actress Fenella Fielding's late brother was a famous comedian, what was his name?
+Marty feldman
+10
+
+TV/Film: Actress jody foster was a student at what college?
+Yale
+10
+
+TV/Film: Actress Maya Rudolph is the daughter of which famous pop singer?
+Minnie Riperton
+10
+
+TV/Film: Actress who was Arnold's partner in Kindergarten Cop?
+Pamela reed
+10
+
+TV/Film: Actress whose real name is Frances Gumm?
+Judy garland
+10
+
+TV/Film: Adam Sandler, Seth Rogen, and Jonah Hill star in a 2009 movie aptly titled what?
+Funny People
+10
+
+TV/Film: Advertising-supported cable television network founded in 1980 by American businessman ted turner and wholly owned by turner broadcasting system, incorporated, which is based in atlanta, georgia?
+Cnn
+10
+
+TV/Film: After buffy's death which character brought her back to life?
+Willow
+10
+
+TV/Film: After the death of Humphrey who married Jason.?
+Lauren Bacall
+10
+
+TV/Film: Aidan Quinn is the cop, Madeleine Stowe the formerly blind woman in...?
+Blink
+10
+
+TV/Film: Al Pacino and a young Michelle Pfeiffer in a drug-dealing violence-fest?
+Scarface
+10
+
+TV/Film: Alex Haley was the author of this book that became a famous miniseries?
+Roots
+10
+
+TV/Film: Alfred hitchcock didn't have what?
+Belly button
+10
+
+TV/Film: Alfred hitchcock was born in ____?
+1899
+10
+
+TV/Film: Alfred hitchcocks 1963 film The Birds was based upon a short story of the same name by whom?
+Daphne du maurier
+10
+
+TV/Film: All Saints is centred around which ward of All Saints Hospital?
+17
+10
+
+TV/Film: Ally McBeal: Ally's imaginary, dancing baby was called (two words)?
+Ugachacka baby
+10
+
+TV/Film: Although he starred in many gangster films, who started his career as a chorus girl?
+James cagney
+10
+
+TV/Film: Although Speilberg directed Raiders of the Lost Arc, he did not have the final cut, who did?
+George lucas
+10
+
+TV/Film: American actor and dancer starred in Over the Top and The Bandwagon?
+Fred astaire
+10
+
+TV/Film: American Cartoonists: Cartoon created by Art Sansom?
+Born loser
+10
+
+TV/Film: American Cartoonists: Cartoon created by Berke Breathed?
+Bloom county
+10
+
+TV/Film: American Cartoonists: Cartoon created by Bill Keane?
+Family circus
+10
+
+TV/Film: American Cartoonists: Cartoon created by Bill Watterson?
+Calvin and hobbes
+10
+
+TV/Film: American Cartoonists: Cartoon created by C.C. Beck?
+Captain marvel
+10
+
+TV/Film: American Cartoonists: Cartoon created by Charles Schulz?
+Peanuts
+10
+
+TV/Film: American Cartoonists: Cartoon created by Chester Gould?
+Dick tracy
+10
+
+TV/Film: American Cartoonists: Cartoon created by Ernie Bushmiller?
+Nancy
+10
+
+TV/Film: American Cartoonists: Cartoon created by Hank Ketcham?
+Dennis the menace
+10
+
+TV/Film: American Cartoonists: Cartoon created by Lynn Johnston?
+For better or for worse
+10
+
+TV/Film: American Cartoonists: Cartoon created by Matt Groening?
+Simpsons
+10
+
+TV/Film: American Cartoonists: Cartoon created by Steve Ditko?
+Spider man
+10
+
+TV/Film: American Cartoonists: Cartoon created by Tom Wilson?
+Ziggy
+10
+
+TV/Film: American cooking expert, author, & television personality?
+Julia child
+10
+
+TV/Film: American film producer of Chitty chitty bang bang and the early Bond Movies?
+Cubby broccoli
+10
+
+TV/Film: Among animation aficionados, what is generally considered to be Chuck Jones best animated short film?
+One froggy evening
+10
+
+TV/Film: Among the regulars on this show were Vicky Lawrence, Harvey Korman, & Lyle Waggoner?
+The carol burnett show
+10
+
+TV/Film: An alien creature in a funny hat has opposed both Bugs Bunny & Daffy Duck.where is he from?
+Mars
+10
+
+TV/Film: andy Griffith's Mayberry is located in what state?
+North carolina
+10
+
+TV/Film: Angel: What does Angel have that other vampires don't?
+A soul
+10
+
+TV/Film: Angel: Where is Angel set?
+Los angeles
+10
+
+TV/Film: Angel: Which actor plays Angel?
+David boreanaz
+10
+
+TV/Film: Angel: Which Angel character lived in a cave for 5 years in Pylea?
+Fred
+10
+
+TV/Film: Angel: Which ex-watcher is also a main character in Angel?
+Welsley Price
+10
+
+TV/Film: Angel: Which female character left Buffy and is now a main character in Angel?
+Cordelia chase
+10
+
+TV/Film: Angie Dickinson starred in...?
+Policewoman
+10
+
+TV/Film: animal of which indiana jones is afraid?
+Snake
+10
+
+TV/Film: Animals: What breed of dog was Lassie?
+Collie
+10
+
+TV/Film: Animals: What breed of dog was Rin Tin Tin?
+German shepherd
+10
+
+TV/Film: Animals: Who owned Scooby Doo?
+Shaggy
+10
+
+TV/Film: Animaniacs: The animaniacs have this popular lunch meat in their slacks?
+Bologna
+10
+
+TV/Film: Animaniacs: The Grim Reaper almost took Wakko because he ate too many what?
+Swedish meatballs
+10
+
+TV/Film: Animaniacs: When the animaniacs are caught, they are put here, also their home?
+The water tower
+10
+
+TV/Film: Animated feature in which the Peanuts gang goes to France (4 wd title)?
+Bon voyage charlie brown
+10
+
+TV/Film: Anime: In which series is the witch Karla interested in maintaining power balance?
+Lodoss wars
+10
+
+TV/Film: Anime: What is the age of the ghost that comes to haunt Greenwood?
+16
+10
+
+TV/Film: Anime: What is the name of the male lead in ¿Vision of Escaflowne¿?
+Van fanel
+10
+
+TV/Film: Anime: What is the name of the most recent Slayers series?
+Slayers try
+10
+
+TV/Film: Anime: What is the name of the most recent Tenchi Muyo series?
+Shin tenchi muyo
+10
+
+TV/Film: Anime: What is the name of the N.G.Evangelion movie recently released in Japan?
+Death and rebirth
+10
+
+TV/Film: Anime: What is the other (not Japanese) nationality of Asuka Soryuu Langley?
+German
+10
+
+TV/Film: Anime: What series contains a reference to a fruit spread?
+Marmalade boy
+10
+
+TV/Film: Anime: What sound does Mokona make?
+Puu
+10
+
+TV/Film: Anime: Where does Hitomi go to in Escaflowne?
+Gaea
+10
+
+TV/Film: Anime: Which character in Escaflowne is hinted to be Isaac Newton?
+Isaac
+10
+
+TV/Film: Anime: Which company is allowing Disney to do distribution of its work?
+Studio ghibli
+10
+
+TV/Film: Anime: Who composed the majority of the music featured in ¿Vision of Escaflowne¿?
+Yoko kanno
+10
+
+TV/Film: Anime: Who provides the voice for Ayanami Rei?
+Megumi hayashibara
+10
+
+TV/Film: Anna Magnani won the 1955 Best Actress Oscar for the film version of which play by Tennessee Williams?
+The rose tattoo
+10
+
+TV/Film: Anne Francis and Robby The Robot starred in this SciFi classic?
+Forbidden planet
+10
+
+TV/Film: Apart from a toothbrush, what else did the audience have to take in Dont forget your Toothbrush?
+Passport
+10
+
+TV/Film: Apollo and Zeus were two doberman pinchers on this TV series?
+Magnum pi
+10
+
+TV/Film: Archie Leach was the central character in which British film?
+A fish called wanda
+10
+
+TV/Film: Arnold Schwarzenegger bought the first Hummer manufactured for civilian use when?
+1992
+10
+
+TV/Film: As Queen Hippolyte, who's mother did Cloris Leachman play?
+Wonderwoman
+10
+
+TV/Film: As who is Terry Bollea known?
+Hulk Hogan
+10
+
+TV/Film: audrey hepburn won an oscar in 1953 for what romantic movie?
+Roman holiday
+10
+
+TV/Film: Ava Gardner film?
+Show boat
+10
+
+TV/Film: Ava Gardner film?
+The barefoot contessa
+10
+
+TV/Film: Back to the Future_ contained this song by Huey Lewis and the News?
+The power of love
+10
+
+TV/Film: Back To The Future: Back to the Future 3 was set in one of Doc's favourite places, the ____ ____?
+Wild west
+10
+
+TV/Film: Back To The Future: Doc Brown knew Biff stole the car because part of Biff's ____ was found in it?
+Cane
+10
+
+TV/Film: Back To The Future: If future events are altered, photos and writing from the future become _?
+Changed
+10
+
+TV/Film: Back To The Future: In BTTF 1, Marty & Doc must wait for ____ so that Marty can get back to 1985?
+Lightning
+10
+
+TV/Film: Back To The Future: In BTTF 1, Marty outruns his enemies with a skateboard. In BTTF 2, he uses _'?
+Hoverboard
+10
+
+TV/Film: Back To The Future: In BTTF 2, Biff is rich in 1985 because of a book given to him in 1955 by ____?
+Biff
+10
+
+TV/Film: Back To The Future: In BTTF 3 Doc Brown finds true love in this woman (full name)?
+Clara clayton
+10
+
+TV/Film: Back To The Future: Marty & Doc travel to 1955 again to prevent young Biff from receiving the?
+Almanac
+10
+
+TV/Film: Back To The Future: Marty gives a ____ to the Doc in 1955 to prevent Doc from being killed in 1985?
+Letter
+10
+
+TV/Film: Back To The Future: Terrorists almost kill Doc Brown in BTTF 1 because he stole their what?
+Plutonium
+10
+
+TV/Film: Back To The Future: The rich Biff has the Almanac hidden behind a?
+Painting
+10
+
+TV/Film: Back To The Future: The song played when Marty's parents first kiss at the dance?
+Earth angel
+10
+
+TV/Film: Back To The Future: The speed required in mph for time travel to occur (in WORDS,eg sixty one)?
+Eighty eight
+10
+
+TV/Film: Back To The Future: When Marty travels to the year 2015, the Jaws film that's playing: ____ ____?
+Jaws 19
+10
+
+TV/Film: Back To The Future: Which movie (1,2, or 3) does Marty come face to face with his own son?
+Two
+10
+
+TV/Film: BAD medical school comedy with Steve Gutenberg and Julie Hagerty?
+Bad medicine
+10
+
+TV/Film: barbara bel geddes won a emmy in 1980 as outstanding lead actress in what drama series?
+Dallas
+10
+
+TV/Film: Barbra Streisand played Fanny Brice this many times in the movies?
+2
+10
+
+TV/Film: Barbra streisand starred in the sequel to funny girl what was it called?
+Funny lady
+10
+
+TV/Film: Based on a book by William Styron which film stars Meryl Streep and Kevin Kline?
+Sophie's choice
+10
+
+TV/Film: Beavis & Butthead: B&B called a 1-900 phone sex line and listened to a woman's all night?
+Butt
+10
+
+TV/Film: Beavis & Butthead: b&b once forgot how to ____ and had to go to a doctor for help?
+Urinate
+10
+
+TV/Film: Beavis & Butthead: B&B took a lie detector test for stealing money from what establishment?
+Burger world
+10
+
+TV/Film: Beavis & Butthead: the genre of food that b&b most like?
+Mexican
+10
+
+TV/Film: Beavis & Butthead: The network that airs B&B?
+Mtv
+10
+
+TV/Film: Beavis & Butthead: The type of car B&B drove (and wrecked) once, shown during credits too?
+Corvair
+10
+
+TV/Film: Beavis & Butthead: What was on the blackboard that B&B couldn't read after a doctor's visit?
+Sexual intercourse
+10
+
+TV/Film: Bedrock is the town for which cartoon series?
+Flintstones
+10
+
+TV/Film: Before becoming James Bond, Roger Moore starred as what other secret agent?
+The saint
+10
+
+TV/Film: Before coming to WKRP, Johnny Fever got fired for saying what word on the air?
+Booger
+10
+
+TV/Film: Before gaining fame on Star Trek, in what movie did actor Leonard Nimoy first appear as an alien from outer space?
+The Zombie Vanguard
+10
+
+TV/Film: Ben Affleck played CT on what 80's science education television show?
+Voyage of the Mimi
+10
+
+TV/Film: Bert and ernie of 'sesame street' were named after bert and ernie in which frank capra film?
+It's a wonderful life
+10
+
+TV/Film: besides field of dreams, what other baseball movie starred kevin costner?
+Bull durham
+10
+
+TV/Film: Bette Midler won an Oscar nomination for playing a rock singer in the style of Janis Joplin in which 1979 film?
+The rose
+10
+
+TV/Film: Betty Boop, created by Max Fleischer, was a cartoon character based on which real-life actress?
+Helen Kane
+10
+
+TV/Film: Between 1931 & 1969 Walt Disney collected how many oscars?
+35
+10
+
+TV/Film: Beverly Hills 90210: For what popular singer did David play keyboards at a campus function?
+Babyface
+10
+
+TV/Film: Beverly Hills 90210: Jamie Walters (Ray Pruitt) also starred on what short-lived Fox series?
+The heights
+10
+
+TV/Film: Beverly Hills 90210: The numbers 90210 are what?
+Zip code
+10
+
+TV/Film: Beverly Hills 90210: This girlfriend of Brandon slipped him drugs at a club?
+Emily valentine
+10
+
+TV/Film: Beverly Hills 90210: This SUPER-hunk played Brenda's love interest in France?
+Dean cain
+10
+
+TV/Film: Beverly Hills 90210: What 3 characters share an apartment (May 95) (first names, alpha, no and)?
+Clare donna kelly
+10
+
+TV/Film: Beverly Hills 90210: What character sold her friends out to a tabloid TV show?
+Brenda walsh
+10
+
+TV/Film: Beverly Hills 90210: What is the name of Andrea and Jesse's baby?
+Hannah vasquez
+10
+
+TV/Film: Beverly Hills 90210: What is the proprietor of the Peach Pit's name (first only)?
+Nat
+10
+
+TV/Film: Beverly Hills 90210: What was the name of the guidance counselor at West Beverly?
+Mrs. teasley
+10
+
+TV/Film: Beverly Hills 90210: Which character had an unrequited crush on Brandon through most of high school?
+Andrea zuckerman
+10
+
+TV/Film: Beverly Hills 90210: Which character skipped his senior year of high school?
+David silver
+10
+
+TV/Film: Beverly Hills 90210: Which character was arrested for drunk driving?
+Brandon walsh
+10
+
+TV/Film: Beverly hills has what fictional zipcode?
+90210
+10
+
+TV/Film: Bewitched: Darren & Samantha ____ (surname)?
+Stevens
+10
+
+TV/Film: Bill & Ted: Dude, members of what real band were in the sequel movie?
+Primus
+10
+
+TV/Film: Bill & Ted: Dude, name the most non-non-bogus actor who played Ted?
+Keanu reeves
+10
+
+TV/Film: Bill & Ted: Dude, what classical composer do the boys kidnap?
+Beethoven
+10
+
+TV/Film: Bill & Ted: Dude, what excellent California city do the boys hail from?
+San dimas
+10
+
+TV/Film: Bill & Ted: Dude, what is Bill's middle initial?
+S (bill s. preston esquire)
+10
+
+TV/Film: Bill & Ted: Dude, what is the appropriately named water park Napoleon goes to?
+Waterloo
+10
+
+TV/Film: Bill & Ted: Dude, what is the name of the boys' most triumphant band (spelling counts)?
+Wyld stallyns
+10
+
+TV/Film: Bill & Ted: Dude, what was the original title of the sequel (B&T's Bogus Journey)?
+Bill and ted go to hell
+10
+
+TV/Film: Bill & Ted: Strange things are amuck at the ____?
+Circle k
+10
+
+TV/Film: Bing Crosby received this type of Oscar for his role as Father Chuck O'Malley?
+Plaster
+10
+
+TV/Film: Births: Born 1951 Director father. Was a succesful model before returning to film. Won Supporting Actress Oscar in Prizzi's Honor?
+Anjelica Huston
+10
+
+TV/Film: Births: Born Apr 24, 1942, She starred in the movie A Star Is Born - 1976?
+Barbra streisand
+10
+
+TV/Film: Births: Born Apr 24, 1942, She starred in the movie All Night Long - 1981?
+Barbra streisand
+10
+
+TV/Film: Births: Born Apr 24, 1942, She starred in the movie For Pete's Sake - 1974?
+Barbra streisand
+10
+
+TV/Film: Births: Born Apr 24, 1942, She starred in the movie Funny Girl - 1968?
+Barbra streisand
+10
+
+TV/Film: Births: Born Apr 24, 1942, She starred in the movie Funny Lady - 1975?
+Barbra streisand
+10
+
+TV/Film: Births: Born Apr 24, 1942, She starred in the movie Hello, Dolly! - 1969?
+Barbra streisand
+10
+
+TV/Film: Births: Born Apr 24, 1942, She starred in the movie Nuts - 1987?
+Barbra streisand
+10
+
+TV/Film: Births: Born Apr 24, 1942, She starred in the movie On a Clear Day You Can See Forever - 1970?
+Barbra streisand
+10
+
+TV/Film: Births: Born Apr 24, 1942, She starred in the movie The Main Event - 1979?
+Barbra streisand
+10
+
+TV/Film: Births: Born Apr 24, 1942, She starred in the movie The Mirror Has Two Faces - 1996?
+Barbra streisand
+10
+
+TV/Film: Births: Born Apr 24, 1942, She starred in the movie The Owl and the Pussycat - 1970?
+Barbra streisand
+10
+
+TV/Film: Births: Born Apr 24, 1942, She starred in the movie The Prince of Tides - 1991?
+Barbra streisand
+10
+
+TV/Film: Births: Born Apr 24, 1942, She starred in the movie The Way We Were - 1973?
+Barbra streisand
+10
+
+TV/Film: Births: Born Apr 24, 1942, She starred in the movie Up the Sandbox - 1972?
+Barbra streisand
+10
+
+TV/Film: Births: Born Apr 24, 1942, She starred in the movie What's Up Doc? - 1972?
+Barbra streisand
+10
+
+TV/Film: Births: Born Apr 24, 1942, She starred in the movie Yentl - 1983?
+Barbra streisand
+10
+
+TV/Film: Births: Born Apr 28, 1941, She starred in the movie Any Given Sunday - 1999?
+Ann-margret
+10
+
+TV/Film: Births: Born Apr 28, 1941, She starred in the movie Bus Riley's Back in Town - 1965?
+Ann-margret
+10
+
+TV/Film: Births: Born Apr 28, 1941, She starred in the movie Bye Bye Birdie - 1963?
+Ann-margret
+10
+
+TV/Film: Births: Born Apr 28, 1941, She starred in the movie Carnal Knowledge - 1971?
+Ann-margret
+10
+
+TV/Film: Births: Born Apr 28, 1941, She starred in the movie Grumpier Old Men - 1995?
+Ann-margret
+10
+
+TV/Film: Births: Born Apr 28, 1941, She starred in the movie Grumpy Old Men - 1993?
+Ann-margret
+10
+
+TV/Film: Births: Born Apr 28, 1941, She starred in the movie Kitten With a Whip - 1964?
+Ann-margret
+10
+
+TV/Film: Births: Born Apr 28, 1941, She starred in the movie Magic - 1978?
+Ann-margret
+10
+
+TV/Film: Births: Born Apr 28, 1941, She starred in the movie Middle Age Crazy - 1980?
+Ann-margret
+10
+
+TV/Film: Births: Born Apr 28, 1941, She starred in the movie Newsies - 1992?
+Ann-margret
+10
+
+TV/Film: Births: Born Apr 28, 1941, She starred in the movie Once a Thief - 1965?
+Ann-margret
+10
+
+TV/Film: Births: Born Apr 28, 1941, She starred in the movie Our Sons - 1991?
+Ann-margret
+10
+
+TV/Film: Births: Born Apr 28, 1941, She starred in the movie State Fair - 1962?
+Ann-margret
+10
+
+TV/Film: Births: Born Apr 28, 1941, She starred in the movie The Cincinnati Kid - 1965?
+Ann-margret
+10
+
+TV/Film: Births: Born Apr 28, 1941, She starred in the movie The Pleasure Seekers - 1964?
+Ann-margret
+10
+
+TV/Film: Births: Born Apr 28, 1941, She starred in the movie The Return of the Soldier - 1983?
+Ann-margret
+10
+
+TV/Film: Births: Born Apr 28, 1941, She starred in the movie The Swinger - 1966?
+Ann-margret
+10
+
+TV/Film: Births: Born Apr 28, 1941, She starred in the movie The Tiger and the Pussycat - 1967?
+Ann-margret
+10
+
+TV/Film: Births: Born Apr 28, 1941, She starred in the movie The Train Robbers - 1973?
+Ann-margret
+10
+
+TV/Film: Births: Born Apr 28, 1941, She starred in the movie The Villain - 1979?
+Ann-margret
+10
+
+TV/Film: Births: Born Apr 28, 1941, She starred in the movie Tommy - 1975?
+Ann-margret
+10
+
+TV/Film: Births: Born Apr 28, 1941, She starred in the movie Twice in a Lifetime - 1985?
+Ann-margret
+10
+
+TV/Film: Births: Born Apr 28, 1941, She starred in the movie Viva Las Vegas - 1964?
+Ann-margret
+10
+
+TV/Film: Births: Born Apr 28, 1941, She starred in the movie Who Will Love My Children? - 1983?
+Ann-margret
+10
+
+TV/Film: Births: Born Apr 3, 1961, he starred in the movie 48 HRS. - 1982?
+Eddie murphy
+10
+
+TV/Film: Births: Born Apr 3, 1961, he starred in the movie Another 48 Hrs. - 1990?
+Eddie murphy
+10
+
+TV/Film: Births: Born Apr 3, 1961, he starred in the movie Best Defense - 1984?
+Eddie murphy
+10
+
+TV/Film: Births: Born Apr 3, 1961, he starred in the movie Beverly Hills Cop - 1984?
+Eddie murphy
+10
+
+TV/Film: Births: Born Apr 3, 1961, he starred in the movie Beverly Hills Cop II - 1987?
+Eddie murphy
+10
+
+TV/Film: Births: Born Apr 3, 1961, he starred in the movie Beverly Hills Cop III - 1994?
+Eddie murphy
+10
+
+TV/Film: Births: Born Apr 3, 1961, he starred in the movie Boomerang - 1992?
+Eddie murphy
+10
+
+TV/Film: Births: Born Apr 3, 1961, he starred in the movie Bowfinger - 1999?
+Eddie murphy
+10
+
+TV/Film: Births: Born Apr 3, 1961, he starred in the movie Coming to America - 1988?
+Eddie murphy
+10
+
+TV/Film: Births: Born Apr 3, 1961, he starred in the movie Doctor Dolittle - 1998?
+Eddie murphy
+10
+
+TV/Film: Births: Born Apr 3, 1961, he starred in the movie Eddie Murphy Raw - 1987?
+Eddie murphy
+10
+
+TV/Film: Births: Born Apr 3, 1961, he starred in the movie Harlem Nights - 1989?
+Eddie murphy
+10
+
+TV/Film: Births: Born Apr 3, 1961, he starred in the movie Hollywood Shuffle - 1987?
+Eddie murphy
+10
+
+TV/Film: Births: Born Apr 3, 1961, he starred in the movie Holy Man - 1998?
+Eddie murphy
+10
+
+TV/Film: Births: Born Apr 3, 1961, he starred in the movie Life - 1999?
+Eddie murphy
+10
+
+TV/Film: Births: Born Apr 3, 1961, he starred in the movie Metro - 1997?
+Eddie murphy
+10
+
+TV/Film: Births: Born Apr 3, 1961, he starred in the movie The Distinguished Gentleman - 1992?
+Eddie murphy
+10
+
+TV/Film: Births: Born Apr 3, 1961, he starred in the movie The Golden Child - 1986?
+Eddie murphy
+10
+
+TV/Film: Births: Born Apr 3, 1961, he starred in the movie The Nutty Professor - 1996?
+Eddie murphy
+10
+
+TV/Film: Births: Born Apr 3, 1961, he starred in the movie Trading Places - 1983?
+Eddie murphy
+10
+
+TV/Film: Births: Born Apr 3, 1961, he starred in the movie Vampire in Brooklyn - 1995?
+Eddie murphy
+10
+
+TV/Film: Births: Born Apr 7, 1964, he starred in the movie Breaking Up - 1997?
+Russell crowe
+10
+
+TV/Film: Births: Born Apr 7, 1964, he starred in the movie For the Moment - 1994?
+Russell crowe
+10
+
+TV/Film: Births: Born Apr 7, 1964, he starred in the movie Gladiator - 2000?
+Russell crowe
+10
+
+TV/Film: Births: Born Apr 7, 1964, he starred in the movie Hammers Over the Anvil - 1991?
+Russell crowe
+10
+
+TV/Film: Births: Born Apr 7, 1964, he starred in the movie Heaven's Burning - 1997?
+Russell crowe
+10
+
+TV/Film: Births: Born Apr 7, 1964, he starred in the movie L.A. Confidential - 1997?
+Russell crowe
+10
+
+TV/Film: Births: Born Apr 7, 1964, he starred in the movie Love in Limbo - 1993?
+Russell crowe
+10
+
+TV/Film: Births: Born Apr 7, 1964, he starred in the movie Mystery, Alaska - 1999?
+Russell crowe
+10
+
+TV/Film: Births: Born Apr 7, 1964, he starred in the movie Prisoners of the Sun - 1991?
+Russell crowe
+10
+
+TV/Film: Births: Born Apr 7, 1964, he starred in the movie Proof - 1991?
+Russell crowe
+10
+
+TV/Film: Births: Born Apr 7, 1964, he starred in the movie Romper Stomper - 1992?
+Russell crowe
+10
+
+TV/Film: Births: Born Apr 7, 1964, he starred in the movie Rough Magic - 1995?
+Russell crowe
+10
+
+TV/Film: Births: Born Apr 7, 1964, he starred in the movie The Crossing ? 1990?
+Russell Crowe 
+10
+
+TV/Film: Births: Born Apr 7, 1964, he starred in the movie The Efficiency Expert - 1992?
+Russell crowe
+10
+
+TV/Film: Births: Born Apr 7, 1964, he starred in the movie The Insider - 1999?
+Russell crowe
+10
+
+TV/Film: Births: Born Apr 7, 1964, he starred in the movie The Quick and the Dead - 1995?
+Russell crowe
+10
+
+TV/Film: Births: Born Apr 7, 1964, he starred in the movie The Silver Brumby - 1993?
+Russell crowe
+10
+
+TV/Film: Births: Born Apr 7, 1964, he starred in the movie The Sum of Us - 1994?
+Russell crowe
+10
+
+TV/Film: Births: Born Apr 7, 1964, he starred in the movie Under the Gun - 1995?
+Russell crowe
+10
+
+TV/Film: Births: Born Apr 7, 1964, he starred in the movie Virtuosity - 1995?
+Russell crowe
+10
+
+TV/Film: Births: Born April 14, 1977, She starred in the movie Cruel Intentions - 1999?
+Sarah michelle gellar
+10
+
+TV/Film: Births: Born April 14, 1977, She starred in the movie Funny Farm - 1988?
+Sarah michelle gellar
+10
+
+TV/Film: Births: Born April 14, 1977, She starred in the movie High Stakes - 1989?
+Sarah michelle gellar
+10
+
+TV/Film: Births: Born April 14, 1977, She starred in the movie I Know What You Did Last Summer - 1997?
+Sarah michelle gellar
+10
+
+TV/Film: Births: Born April 14, 1977, She starred in the movie Over the Brooklyn Bridge - 1984?
+Sarah michelle gellar
+10
+
+TV/Film: Births: Born April 14, 1977, She starred in the movie Scream 2 - 1997?
+Sarah michelle gellar
+10
+
+TV/Film: Births: Born April 14, 1977, She starred in the movie Simply Irresistible - 1999?
+Sarah michelle gellar
+10
+
+TV/Film: Births: Born April 15, 1959, She starred in the movie Carrington - 1995?
+Emma thompson
+10
+
+TV/Film: Births: Born April 15, 1959, She starred in the movie Dead Again - 1991?
+Emma thompson
+10
+
+TV/Film: Births: Born April 15, 1959, She starred in the movie Henry V - 1989?
+Emma thompson
+10
+
+TV/Film: Births: Born April 15, 1959, She starred in the movie Howards End - 1992?
+Emma thompson
+10
+
+TV/Film: Births: Born April 15, 1959, She starred in the movie Impromptu - 1990?
+Emma thompson
+10
+
+TV/Film: Births: Born April 15, 1959, She starred in the movie In the Name of the Father - 1993?
+Emma thompson
+10
+
+TV/Film: Births: Born April 15, 1959, She starred in the movie Junior - 1994?
+Emma thompson
+10
+
+TV/Film: Births: Born April 15, 1959, She starred in the movie Much Ado About Nothing - 1993?
+Emma thompson
+10
+
+TV/Film: Births: Born April 15, 1959, She starred in the movie My Father, the Hero - 1994?
+Emma thompson
+10
+
+TV/Film: Births: Born April 15, 1959, She starred in the movie Peter's Friends - 1992?
+Emma thompson
+10
+
+TV/Film: Births: Born April 15, 1959, She starred in the movie Primary Colors - 1998?
+Emma thompson
+10
+
+TV/Film: Births: Born April 15, 1959, She starred in the movie Remains of the Day - 1993?
+Emma thompson
+10
+
+TV/Film: Births: Born April 15, 1959, She starred in the movie Sense and Sensibility - 1995?
+Emma thompson
+10
+
+TV/Film: Births: Born April 15, 1959, She starred in the movie The Remains of the Day - 1993?
+Emma thompson
+10
+
+TV/Film: Births: Born April 15, 1959, She starred in the movie The Tall Guy - 1989?
+Emma thompson
+10
+
+TV/Film: Births: Born April 15, 1959, She starred in the movie The Winter Guest - 1997?
+Emma thompson
+10
+
+TV/Film: Births: Born April 16, 1889, he starred in the movie A Film Johnnie - 1914?
+Charlie chaplin
+10
+
+TV/Film: Births: Born April 16, 1889, he starred in the movie A King in New York - 1957?
+Charlie chaplin
+10
+
+TV/Film: Births: Born April 16, 1889, he starred in the movie Between Showers - 1914?
+Charlie chaplin
+10
+
+TV/Film: Births: Born April 16, 1889, he starred in the movie Caught in a Cabaret - 1914?
+Charlie chaplin
+10
+
+TV/Film: Births: Born April 16, 1889, he starred in the movie City Lights - 1931?
+Charlie chaplin
+10
+
+TV/Film: Births: Born April 16, 1889, he starred in the movie Cruel, Cruel Love - 1914?
+Charlie chaplin
+10
+
+TV/Film: Births: Born April 16, 1889, he starred in the movie Kid Auto Races at Venice - 1914?
+Charlie chaplin
+10
+
+TV/Film: Births: Born April 16, 1889, he starred in the movie Limelight - 1952?
+Charlie chaplin
+10
+
+TV/Film: Births: Born April 16, 1889, he starred in the movie Mabel at the Wheel - 1914?
+Charlie chaplin
+10
+
+TV/Film: Births: Born April 16, 1889, he starred in the movie Mabel's Busy Day - 1914?
+Charlie chaplin
+10
+
+TV/Film: Births: Born April 16, 1889, he starred in the movie Mabel's Strange Predicament - 1914?
+Charlie chaplin
+10
+
+TV/Film: Births: Born April 16, 1889, he starred in the movie Making a Living - 1914?
+Charlie chaplin
+10
+
+TV/Film: Births: Born April 16, 1889, he starred in the movie Modern Times - 1936?
+Charlie chaplin
+10
+
+TV/Film: Births: Born April 16, 1889, he starred in the movie Monsieur Verdoux - 1947?
+Charlie chaplin
+10
+
+TV/Film: Births: Born April 16, 1889, he starred in the movie Souls For Sale - 1923?
+Charlie chaplin
+10
+
+TV/Film: Births: Born April 16, 1889, he starred in the movie The Chaplin Revue - 1958?
+Charlie chaplin
+10
+
+TV/Film: Births: Born April 16, 1889, he starred in the movie The Circus - 1928?
+Charlie chaplin
+10
+
+TV/Film: Births: Born April 16, 1889, he starred in the movie The Fatal Mallet - 1914?
+Charlie chaplin
+10
+
+TV/Film: Births: Born April 16, 1889, he starred in the movie The Gold Rush - 1925?
+Charlie chaplin
+10
+
+TV/Film: Births: Born April 16, 1889, he starred in the movie The Great Dictator - 1940?
+Charlie chaplin
+10
+
+TV/Film: Births: Born April 16, 1889, he starred in the movie The Kid - 1921?
+Charlie chaplin
+10
+
+TV/Film: Births: Born April 16, 1889, he starred in the movie The Knockout - 1914?
+Charlie chaplin
+10
+
+TV/Film: Births: Born April 16, 1889, he starred in the movie The Nut - 1921?
+Charlie chaplin
+10
+
+TV/Film: Births: Born April 16, 1889, he starred in the movie The Star Boarder - 1914?
+Charlie chaplin
+10
+
+TV/Film: Births: Born April 16, 1889, he starred in the movie The Tramp - 1915?
+Charlie chaplin
+10
+
+TV/Film: Births: Born April 16, 1889, he starred in the movie Tillie's Punctured Romance - 1914?
+Charlie chaplin
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie A Great American Tragedy - 1972?
+James wood
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie Against All Odds - 1984?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie Alex and the Gypsy - 1976?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie And Your Name Is Jonah - 1979?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie Another Day in Paradise - 1998?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie Any Given Sunday - 1999?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie Badge of the Assassin - 1985?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie Best Seller - 1987?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie Casino - 1995?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie Cat's Eye - 1985?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie Chaplin - 1992?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie Contact - 1997?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie Cop - 1988?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie Curse of the Starving Class - 1994?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie Diggstown - 1992?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie Distance - 1975?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie Dodd - 1984?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie Eyewitness - 1981?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie Fast Walking - 1982?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie Fear and Loathing in Las Vegas - 1998?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie For Better or Worse - 1996?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie Ghosts of Mississippi - 1996?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie Hercules - 1997?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie Hickey and Boggs - 1972?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie Immediate Family - 1989?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie Joshua Then and Now - 1985?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie Kicked in the Head - 1997?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie Killer: A Journal of Murder - 1995?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie Men & Women: Stories of Seduction - 1990?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie My Name is Bill W. - 1989?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie Night Moves - 1975?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie Nixon - 1995?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie Once Upon a Time in America - 1984?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie Promise - 1986?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie Salvador - 1986?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie Split Image - 1982?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie Straight Talk - 1992?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie The Black Marble - 1980?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie The Boost - 1988?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie The Boys - 1991?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie The Choirboys - 1977?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie The Gambler - 1974?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie The General's Daughter - 1999?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie The Getaway - 1994?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie The Hard Way - 1991?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie The Onion Field - 1979?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie The Specialist - 1994?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie The Virgin Suicides - 2000?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie The Visitors - 1972?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie The Way We Were - 1973?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie True Believer - 1989?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie True Crime - 1999?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie Vampires - 1998?
+James woods
+10
+
+TV/Film: Births: Born April 18, 1947, he starred in the movie Videodrome - 1983?
+James woods
+10
+
+TV/Film: Births: Born April 19, 1968, She starred in the movie A Time To Kill - 1996?
+Ashley judd
+10
+
+TV/Film: Births: Born April 19, 1968, She starred in the movie Double Jeopardy - 1999?
+Ashley judd
+10
+
+TV/Film: Births: Born April 19, 1968, She starred in the movie Eye of the Beholder - 2000?
+Ashley judd
+10
+
+TV/Film: Births: Born April 19, 1968, She starred in the movie Heat - 1995?
+Ashley judd
+10
+
+TV/Film: Births: Born April 19, 1968, She starred in the movie Kiss the Girls - 1997?
+Ashley judd
+10
+
+TV/Film: Births: Born April 19, 1968, She starred in the movie Kuffs - 1992?
+Ashley judd
+10
+
+TV/Film: Births: Born April 19, 1968, She starred in the movie Natural Born Killers - 1994?
+Ashley judd
+10
+
+TV/Film: Births: Born April 19, 1968, She starred in the movie Normal Life - 1996?
+Ashley judd
+10
+
+TV/Film: Births: Born April 19, 1968, She starred in the movie Ruby in Paradise - 1993?
+Ashley judd
+10
+
+TV/Film: Births: Born April 19, 1968, She starred in the movie Simon Birch - 1998?
+Ashley judd
+10
+
+TV/Film: Births: Born April 19, 1968, She starred in the movie Smoke - 1995?
+Ashley judd
+10
+
+TV/Film: Births: Born April 19, 1968, She starred in the movie The Locusts - 1997?
+Ashley judd
+10
+
+TV/Film: Births: Born April 19, 1968, She starred in the movie The Passion of Darkly Noon - 1995?
+Ashley judd
+10
+
+TV/Film: Births: Born April 19, 1968, She starred in the movie Where the Heart Is - 2000?
+Ashley judd
+10
+
+TV/Film: Births: Born April 24, 1934, She starred in the movie A Century of Cinema - 1994?
+Shirley maclaine
+10
+
+TV/Film: Births: Born April 24, 1934, She starred in the movie A Change of Seasons - 1980?
+Shirley maclaine
+10
+
+TV/Film: Births: Born April 24, 1934, She starred in the movie A Smile Like Yours - 1997?
+Shirley maclaine
+10
+
+TV/Film: Births: Born April 24, 1934, She starred in the movie All in a Night's Work - 1961?
+Shirley maclaine
+10
+
+TV/Film: Births: Born April 24, 1934, She starred in the movie Around the World in 80 Days - 1956?
+Shirley maclaine
+10
+
+TV/Film: Births: Born April 24, 1934, She starred in the movie Artists and Models - 1955?
+Shirley maclaine
+10
+
+TV/Film: Births: Born April 24, 1934, She starred in the movie Ask Any Girl - 1959?
+Shirley maclaine
+10
+
+TV/Film: Births: Born April 24, 1934, She starred in the movie Being There - 1979?
+Shirley maclaine
+10
+
+TV/Film: Births: Born April 24, 1934, She starred in the movie Can-Can - 1960?
+Shirley maclaine
+10
+
+TV/Film: Births: Born April 24, 1934, She starred in the movie Cannonball Run II - 1984?
+Shirley maclaine
+10
+
+TV/Film: Births: Born April 24, 1934, She starred in the movie Career - 1959?
+Shirley maclaine
+10
+
+TV/Film: Births: Born April 24, 1934, She starred in the movie Defending Your Life - 1991?
+Shirley maclaine
+10
+
+TV/Film: Births: Born April 24, 1934, She starred in the movie Desperate Characters - 1971?
+Shirley maclaine
+10
+
+TV/Film: Births: Born April 24, 1934, She starred in the movie Gambit - 1966?
+Shirley maclaine
+10
+
+TV/Film: Births: Born April 24, 1934, She starred in the movie Get Bruce - 1999?
+Shirley maclaine
+10
+
+TV/Film: Births: Born April 24, 1934, She starred in the movie Guarding Tess - 1994?
+Shirley maclaine
+10
+
+TV/Film: Births: Born April 24, 1934, She starred in the movie Hot Spell - 1958?
+Shirley maclaine
+10
+
+TV/Film: Births: Born April 24, 1934, She starred in the movie Irma La Douce - 1963?
+Shirley maclaine
+10
+
+TV/Film: Births: Born April 24, 1934, She starred in the movie John Goldfarb, Please Come Home - 1964?
+Shirley maclaine
+10
+
+TV/Film: Births: Born April 24, 1934, She starred in the movie Loving Couples - 1980?
+Shirley maclaine
+10
+
+TV/Film: Births: Born April 24, 1934, She starred in the movie Madame Sousatzka - 1988?
+Shirley maclaine
+10
+
+TV/Film: Births: Born April 24, 1934, She starred in the movie Mrs. Winterbourne - 1996?
+Shirley maclaine
+10
+
+TV/Film: Births: Born April 24, 1934, She starred in the movie My Geisha - 1962?
+Shirley maclaine
+10
+
+TV/Film: Births: Born April 24, 1934, She starred in the movie Ocean's Eleven - 1960?
+Shirley maclaine
+10
+
+TV/Film: Births: Born April 24, 1934, She starred in the movie Out on a Limb - 1987?
+Shirley maclaine
+10
+
+TV/Film: Births: Born April 24, 1934, She starred in the movie Postcards From the Edge - 1990?
+Shirley maclaine
+10
+
+TV/Film: Births: Born April 24, 1934, She starred in the movie Some Came Running - 1958?
+Shirley maclaine
+10
+
+TV/Film: Births: Born April 24, 1934, She starred in the movie Steel Magnolias - 1989?
+Shirley maclaine
+10
+
+TV/Film: Births: Born April 24, 1934, She starred in the movie Sweet Charity - 1969?
+Shirley maclaine
+10
+
+TV/Film: Births: Born April 24, 1934, She starred in the movie Terms of Endearment - 1983?
+Shirley maclaine
+10
+
+TV/Film: Births: Born April 24, 1934, She starred in the movie The Apartment - 1960?
+Shirley maclaine
+10
+
+TV/Film: Births: Born April 24, 1934, She starred in the movie The Bliss of Mrs. Blossom - 1968?
+Shirley maclaine
+10
+
+TV/Film: Births: Born April 24, 1934, She starred in the movie The Celluloid Closet - 1996?
+Shirley maclaine
+10
+
+TV/Film: Births: Born April 24, 1934, She starred in the movie The Children's Hour/The Loudest Whisper - 1962?
+Shirley maclaine
+10
+
+TV/Film: Births: Born April 24, 1934, She starred in the movie The Evening Star - 1996?
+Shirley maclaine
+10
+
+TV/Film: Births: Born April 24, 1934, She starred in the movie The Matchmaker - 1958?
+Shirley maclaine
+10
+
+TV/Film: Births: Born April 24, 1934, She starred in the movie The Possession of Joel Delaney - 1972?
+Shirley maclaine
+10
+
+TV/Film: Births: Born April 24, 1934, She starred in the movie The Sheepman - 1958?
+Shirley maclaine
+10
+
+TV/Film: Births: Born April 24, 1934, She starred in the movie The Trouble With Harry - 1955?
+Shirley maclaine
+10
+
+TV/Film: Births: Born April 24, 1934, She starred in the movie The Turning Point - 1977?
+Shirley maclaine
+10
+
+TV/Film: Births: Born April 24, 1934, She starred in the movie The Yellow Rolls-Royce - 1964?
+Shirley maclaine
+10
+
+TV/Film: Births: Born April 24, 1934, She starred in the movie Two for the Seesaw - 1962?
+Shirley maclaine
+10
+
+TV/Film: Births: Born April 24, 1934, She starred in the movie Two Loves - 1961?
+Shirley maclaine
+10
+
+TV/Film: Births: Born April 24, 1934, She starred in the movie Two Mules for Sister Sara - 1970?
+Shirley maclaine
+10
+
+TV/Film: Births: Born April 24, 1934, She starred in the movie Used People - 1992?
+Shirley maclaine
+10
+
+TV/Film: Births: Born April 24, 1934, She starred in the movie Waiting for the Light - 1990?
+Shirley maclaine
+10
+
+TV/Film: Births: Born April 24, 1934, She starred in the movie What a Way To Go! - 1964?
+Shirley maclaine
+10
+
+TV/Film: Births: Born April 24, 1934, She starred in the movie Woman Times Seven - 1967?
+Shirley maclaine
+10
+
+TV/Film: Births: Born April 24, 1934, She starred in the movie Wrestling Ernest Hemingway - 1993?
+Shirley maclaine
+10
+
+TV/Film: Births: Born April 25, 1969, She starred in the movie 8 Seconds - 1994?
+Renee zellweger
+10
+
+TV/Film: Births: Born April 25, 1969, She starred in the movie A Price Above Rubies - 1998?
+Renee zellweger
+10
+
+TV/Film: Births: Born April 25, 1969, She starred in the movie Deceiver - 1997?
+Renee zellweger
+10
+
+TV/Film: Births: Born April 25, 1969, She starred in the movie Empire Records - 1995?
+Renee zellweger
+10
+
+TV/Film: Births: Born April 25, 1969, She starred in the movie Jerry Maguire - 1996?
+Renee zellweger
+10
+
+TV/Film: Births: Born April 25, 1969, She starred in the movie Love and a .45 - 1994?
+Renee zellweger
+10
+
+TV/Film: Births: Born April 25, 1969, She starred in the movie Me, Myself, & Irene - 2000?
+Renee zellweger
+10
+
+TV/Film: Births: Born April 25, 1969, She starred in the movie One True Thing - 1998?
+Renee zellweger
+10
+
+TV/Film: Births: Born April 25, 1969, She starred in the movie Reality Bites - 1994?
+Renee zellweger
+10
+
+TV/Film: Births: Born April 25, 1969, She starred in the movie Texas Chainsaw Massacre: The Next Generation - 1997?
+Renee zellweger
+10
+
+TV/Film: Births: Born April 25, 1969, She starred in the movie The Bachelor - 1999?
+Renee zellweger
+10
+
+TV/Film: Births: Born April 25, 1969, She starred in the movie The Low Life - 1995?
+Renee zellweger
+10
+
+TV/Film: Births: Born April 25, 1969, She starred in the movie The Whole Wide World - 1996?
+Renee zellweger
+10
+
+TV/Film: Births: Born April 29, 1958, She starred in the movie A Thousand Acres - 1997?
+Michelle pfeiffer
+10
+
+TV/Film: Births: Born April 29, 1958, She starred in the movie Amazon Women on the Moon - 1987?
+Michelle pfeiffer
+10
+
+TV/Film: Births: Born April 29, 1958, She starred in the movie Batman Returns - 1992?
+Michelle pfeiffer
+10
+
+TV/Film: Births: Born April 29, 1958, She starred in the movie Callie and Son - 1981?
+Michelle pfeiffer
+10
+
+TV/Film: Births: Born April 29, 1958, She starred in the movie Charlie Chan and the Curse of the Dragon Queen - 1981?
+Michelle Pfeiffer
+10
+
+TV/Film: Births: Born April 29, 1958, She starred in the movie Dangerous Liaisons - 1988?
+Michelle pfeiffer
+10
+
+TV/Film: Births: Born April 29, 1958, She starred in the movie Dangerous Minds - 1995?
+Michelle pfeiffer
+10
+
+TV/Film: Births: Born April 29, 1958, She starred in the movie Falling in Love Again - 1980?
+Michelle pfeiffer
+10
+
+TV/Film: Births: Born April 29, 1958, She starred in the movie Frankie & Johnny - 1991?
+Michelle pfeiffer
+10
+
+TV/Film: Births: Born April 29, 1958, She starred in the movie Grease 2 - 1982?
+Michelle pfeiffer
+10
+
+TV/Film: Births: Born April 29, 1958, She starred in the movie Hollywood Knights - 1980?
+Michelle pfeiffer
+10
+
+TV/Film: Births: Born April 29, 1958, She starred in the movie Into the Night - 1985?
+Michelle pfeiffer
+10
+
+TV/Film: Births: Born April 29, 1958, She starred in the movie Ladyhawke - 1985?
+Michelle pfeiffer
+10
+
+TV/Film: Births: Born April 29, 1958, She starred in the movie Love Field - 1993?
+Michelle pfeiffer
+10
+
+TV/Film: Births: Born April 29, 1958, She starred in the movie Married to the Mob - 1988?
+Michelle pfeiffer
+10
+
+TV/Film: Births: Born April 29, 1958, She starred in the movie One Fine Day - 1996?
+Michelle pfeiffer
+10
+
+TV/Film: Births: Born April 29, 1958, She starred in the movie Scarface - 1983?
+Michelle pfeiffer
+10
+
+TV/Film: Births: Born April 29, 1958, She starred in the movie Splendor in the Grass - 1981?
+Michelle pfeiffer
+10
+
+TV/Film: Births: Born April 29, 1958, She starred in the movie Sweet Liberty - 1986?
+Michelle pfeiffer
+10
+
+TV/Film: Births: Born April 29, 1958, She starred in the movie Tequila Sunrise - 1988?
+Michelle pfeiffer
+10
+
+TV/Film: Births: Born April 29, 1958, She starred in the movie The Age of Innocence - 1993?
+Michelle pfeiffer
+10
+
+TV/Film: Births: Born April 29, 1958, She starred in the movie The Deep End of the Ocean - 1999?
+Michelle pfeiffer
+10
+
+TV/Film: Births: Born April 29, 1958, She starred in the movie The Fabulous Baker Boys - 1989?
+Michelle pfeiffer
+10
+
+TV/Film: Births: Born April 29, 1958, She starred in the movie The Hollywood Knights - 1980?
+Michelle pfeiffer
+10
+
+TV/Film: Births: Born April 29, 1958, She starred in the movie The Prince of Egypt - 1998?
+Michelle pfeiffer
+10
+
+TV/Film: Births: Born April 29, 1958, She starred in the movie The Russia House - 1990?
+Michelle pfeiffer
+10
+
+TV/Film: Births: Born April 29, 1958, She starred in the movie The Story of Us - 1999?
+Michelle pfeiffer
+10
+
+TV/Film: Births: Born April 29, 1958, She starred in the movie The Witches of Eastwick - 1987?
+Michelle pfeiffer
+10
+
+TV/Film: Births: Born April 29, 1958, She starred in the movie To Gillian on Her 37th Birthday - 1996?
+Michelle pfeiffer
+10
+
+TV/Film: Births: Born April 29, 1958, She starred in the movie Up Close and Personal - 1996?
+Michelle pfeiffer
+10
+
+TV/Film: Births: Born April 29, 1958, She starred in the movie William Shakespeare's A Midsummer Night's Dream - 1999?
+Michelle Pfeiffer
+10
+
+TV/Film: Births: Born April 29, 1958, She starred in the movie Wolf - 1994?
+Michelle pfeiffer
+10
+
+TV/Film: Births: Born April 3, 1924, he starred in the movie A Countess From Hong Kong - 1967?
+Marlon brando
+10
+
+TV/Film: Births: Born April 3, 1924, he starred in the movie A Dry White Season - 1989?
+Marlon brando
+10
+
+TV/Film: Births: Born April 3, 1924, he starred in the movie A Streetcar Named Desire - 1951?
+Marlon brando
+10
+
+TV/Film: Births: Born April 3, 1924, he starred in the movie Apocalypse Now - 1979?
+Marlon brando
+10
+
+TV/Film: Births: Born April 3, 1924, he starred in the movie Bedtime Story - 1964?
+Marlon brando
+10
+
+TV/Film: Births: Born April 3, 1924, he starred in the movie Burn! - 1970?
+Marlon brando
+10
+
+TV/Film: Births: Born April 3, 1924, he starred in the movie Candy - 1968?
+Marlon brando
+10
+
+TV/Film: Births: Born April 3, 1924, he starred in the movie Christopher Columbus: The Discovery - 1992?
+Marlon brando
+10
+
+TV/Film: Births: Born April 3, 1924, he starred in the movie Desir?e - 1954?
+Marlon brando
+10
+
+TV/Film: Births: Born April 3, 1924, he starred in the movie Don Juan DeMarco - 1995?
+Marlon brando
+10
+
+TV/Film: Births: Born April 3, 1924, he starred in the movie Guys and Dolls - 1955?
+Marlon brando
+10
+
+TV/Film: Births: Born April 3, 1924, he starred in the movie Julius Caesar - 1953?
+Marlon brando
+10
+
+TV/Film: Births: Born April 3, 1924, he starred in the movie Last Tango in Paris - 1972?
+Marlon brando
+10
+
+TV/Film: Births: Born April 3, 1924, he starred in the movie Morituri - 1965?
+Marlon brando
+10
+
+TV/Film: Births: Born April 3, 1924, he starred in the movie Mutiny on the Bounty - 1962?
+Marlon brando
+10
+
+TV/Film: Births: Born April 3, 1924, he starred in the movie On the Waterfront - 1954?
+Marlon brando
+10
+
+TV/Film: Births: Born April 3, 1924, he starred in the movie One-Eyed Jacks - 1961?
+Marlon brando
+10
+
+TV/Film: Births: Born April 3, 1924, he starred in the movie Queimada/Burn! - 1969?
+Marlon brando
+10
+
+TV/Film: Births: Born April 3, 1924, he starred in the movie Reflections in a Golden Eye - 1967?
+Marlon brando
+10
+
+TV/Film: Births: Born April 3, 1924, he starred in the movie Sayonara - 1957?
+Marlon brando
+10
+
+TV/Film: Births: Born April 3, 1924, he starred in the movie Superman - 1978?
+Marlon brando
+10
+
+TV/Film: Births: Born April 3, 1924, he starred in the movie Teahouse of the August Moon - 1956?
+Marlon brando
+10
+
+TV/Film: Births: Born April 3, 1924, he starred in the movie The Appaloosa - 1966?
+Marlon brando
+10
+
+TV/Film: Births: Born April 3, 1924, he starred in the movie The Chase - 1966?
+Marlon brando
+10
+
+TV/Film: Births: Born April 3, 1924, he starred in the movie The Formula - 1980?
+Marlon brando
+10
+
+TV/Film: Births: Born April 3, 1924, he starred in the movie The Freshman - 1990?
+Marlon brando
+10
+
+TV/Film: Births: Born April 3, 1924, he starred in the movie The Fugitive Kind - 1960?
+Marlon brando
+10
+
+TV/Film: Births: Born April 3, 1924, he starred in the movie The Godfather - 1972?
+Marlon brando
+10
+
+TV/Film: Births: Born April 3, 1924, he starred in the movie The Island of Dr. Moreau - 1996?
+Marlon brando
+10
+
+TV/Film: Births: Born April 3, 1924, he starred in the movie The Men - 1950?
+Marlon brando
+10
+
+TV/Film: Births: Born April 3, 1924, he starred in the movie The Missouri Breaks - 1976?
+Marlon brando
+10
+
+TV/Film: Births: Born April 3, 1924, he starred in the movie The Night of the Following Day - 1969?
+Marlon brando
+10
+
+TV/Film: Births: Born April 3, 1924, he starred in the movie The Nightcomers - 1971?
+Marlon brando
+10
+
+TV/Film: Births: Born April 3, 1924, he starred in the movie The Saboteur____Code Name Morituri - 1965?
+Marlon brando
+10
+
+TV/Film: Births: Born April 3, 1924, he starred in the movie The Teahouse of the August Moon - 1956?
+Marlon brando
+10
+
+TV/Film: Births: Born April 3, 1924, he starred in the movie The Ugly American - 1963?
+Marlon brando
+10
+
+TV/Film: Births: Born April 3, 1924, he starred in the movie The Wild One - 1954?
+Marlon brando
+10
+
+TV/Film: Births: Born April 3, 1924, he starred in the movie The Young Lions - 1958?
+Marlon brando
+10
+
+TV/Film: Births: Born April 3, 1924, he starred in the movie Viva Zapata! - 1952?
+Marlon brando
+10
+
+TV/Film: Births: Born April 3, 1958, he starred in the movie Alice - 1990?
+Alec baldwin
+10
+
+TV/Film: Births: Born April 3, 1958, he starred in the movie Beetlejuice - 1988?
+Alec baldwin
+10
+
+TV/Film: Births: Born April 3, 1958, he starred in the movie Dress Gray - 1986?
+Alec baldwin
+10
+
+TV/Film: Births: Born April 3, 1958, he starred in the movie Forever, Lulu - 1987?
+Alec baldwin
+10
+
+TV/Film: Births: Born April 3, 1958, he starred in the movie Ghosts of Mississippi - 1996?
+Alec baldwin
+10
+
+TV/Film: Births: Born April 3, 1958, he starred in the movie Glengarry Glen Ross - 1992?
+Alec baldwin
+10
+
+TV/Film: Births: Born April 3, 1958, he starred in the movie Great Balls of Fire! - 1989?
+Alec baldwin
+10
+
+TV/Film: Births: Born April 3, 1958, he starred in the movie Heaven's Prisoners - 1996?
+Alec baldwin
+10
+
+TV/Film: Births: Born April 3, 1958, he starred in the movie Looking for Richard - 1996?
+Alec baldwin
+10
+
+TV/Film: Births: Born April 3, 1958, he starred in the movie Love on the Run - 1985?
+Alec baldwin
+10
+
+TV/Film: Births: Born April 3, 1958, he starred in the movie Malice - 1993?
+Alec baldwin
+10
+
+TV/Film: Births: Born April 3, 1958, he starred in the movie Married to the Mob - 1988?
+Alec baldwin
+10
+
+TV/Film: Births: Born April 3, 1958, he starred in the movie Mercury Rising - 1998?
+Alec baldwin
+10
+
+TV/Film: Births: Born April 3, 1958, he starred in the movie Miami Blues - 1990?
+Alec baldwin
+10
+
+TV/Film: Births: Born April 3, 1958, he starred in the movie Notting Hill - 1999?
+Alec baldwin
+10
+
+TV/Film: Births: Born April 3, 1958, he starred in the movie Outside Providence - 1999?
+Alec baldwin
+10
+
+TV/Film: Births: Born April 3, 1958, he starred in the movie Prelude to a Kiss - 1992?
+Alec baldwin
+10
+
+TV/Film: Births: Born April 3, 1958, he starred in the movie She's Having a Baby - 1988?
+Alec baldwin
+10
+
+TV/Film: Births: Born April 3, 1958, he starred in the movie Sweet Revenge - 1984?
+Alec baldwin
+10
+
+TV/Film: Births: Born April 3, 1958, he starred in the movie Talk Radio - 1988?
+Alec baldwin
+10
+
+TV/Film: Births: Born April 3, 1958, he starred in the movie The Alamo: Thirteen Days to Glory - 1987?
+Alec baldwin
+10
+
+TV/Film: Births: Born April 3, 1958, he starred in the movie The Edge - 1997?
+Alec baldwin
+10
+
+TV/Film: Births: Born April 3, 1958, he starred in the movie The Getaway - 1994?
+Alec baldwin
+10
+
+TV/Film: Births: Born April 3, 1958, he starred in the movie The Hunt for Red October - 1990?
+Alec baldwin
+10
+
+TV/Film: Births: Born April 3, 1958, he starred in the movie The Juror - 1996?
+Alec baldwin
+10
+
+TV/Film: Births: Born April 3, 1958, he starred in the movie The Marrying Man - 1991?
+Alec baldwin
+10
+
+TV/Film: Births: Born April 3, 1958, he starred in the movie The Shadow - 1994?
+Alec baldwin
+10
+
+TV/Film: Births: Born April 3, 1958, he starred in the movie Two Bits - 1995?
+Alec baldwin
+10
+
+TV/Film: Births: Born April 3, 1958, he starred in the movie Working Girl - 1988?
+Alec baldwin
+10
+
+TV/Film: Births: Born Aug 10, 1960, he starred in the movie 27 Horas - 1986?
+Antonio banderas
+10
+
+TV/Film: Births: Born Aug 10, 1960, he starred in the movie As? Como Hab?an Sido - 1987?
+Antonio banderas
+10
+
+TV/Film: Births: Born Aug 10, 1960, he starred in the movie Assassins - 1995?
+Antonio banderas
+10
+
+TV/Film: Births: Born Aug 10, 1960, he starred in the movie B?ton rouge - 1988?
+Antonio banderas
+10
+
+TV/Film: Births: Born Aug 10, 1960, he starred in the movie Bajarse al moro - 1992?
+Antonio banderas
+10
+
+TV/Film: Births: Born Aug 10, 1960, he starred in the movie Caso Cerrado - 1985?
+Antonio banderas
+10
+
+TV/Film: Births: Born Aug 10, 1960, he starred in the movie Contra el viento - 1990?
+Antonio banderas
+10
+
+TV/Film: Births: Born Aug 10, 1960, he starred in the movie Cuentos de Borges I - 1991?
+Antonio banderas
+10
+
+TV/Film: Births: Born Aug 10, 1960, he starred in the movie Desperado - 1995?
+Antonio banderas
+10
+
+TV/Film: Births: Born Aug 10, 1960, he starred in the movie El Caso Almeria - 1984?
+Antonio banderas
+10
+
+TV/Film: Births: Born Aug 10, 1960, he starred in the movie El Se?or Galindez - 1983?
+Antonio banderas
+10
+
+TV/Film: Births: Born Aug 10, 1960, he starred in the movie Evita - 1996?
+Antonio banderas
+10
+
+TV/Film: Births: Born Aug 10, 1960, he starred in the movie Four Rooms - 1995?
+Antonio banderas
+10
+
+TV/Film: Births: Born Aug 10, 1960, he starred in the movie Interview With the Vampire - 1994?
+Antonio banderas
+10
+
+TV/Film: Births: Born Aug 10, 1960, he starred in the movie La Blanco Paloma - 1991?
+Antonio banderas
+10
+
+TV/Film: Births: Born Aug 10, 1960, he starred in the movie Labryrinth of Passion - 1990?
+Antonio banderas
+10
+
+TV/Film: Births: Born Aug 10, 1960, he starred in the movie Law of Desire - 1987?
+Antonio banderas
+10
+
+TV/Film: Births: Born Aug 10, 1960, he starred in the movie Los Zancos - 1984?
+Antonio banderas
+10
+
+TV/Film: Births: Born Aug 10, 1960, he starred in the movie Matador - 1986?
+Antonio banderas
+10
+
+TV/Film: Births: Born Aug 10, 1960, he starred in the movie Miami Rhapsody - 1995?
+Antonio banderas
+10
+
+TV/Film: Births: Born Aug 10, 1960, he starred in the movie Never Talk to Strangers - 1995?
+Antonio banderas
+10
+
+TV/Film: Births: Born Aug 10, 1960, he starred in the movie Of Love and Shadows - 1996?
+Antonio banderas
+10
+
+TV/Film: Births: Born Aug 10, 1960, he starred in the movie Pesta?as Postizas - 1982?
+Antonio banderas
+10
+
+TV/Film: Births: Born Aug 10, 1960, he starred in the movie Philadelphia - 1993?
+Antonio banderas
+10
+
+TV/Film: Births: Born Aug 10, 1960, he starred in the movie Play It to the Bone - 1999?
+Antonio banderas
+10
+
+TV/Film: Births: Born Aug 10, 1960, he starred in the movie Requiem por un campesino espa?ol - 1985?
+Antonio banderas
+10
+
+TV/Film: Births: Born Aug 10, 1960, he starred in the movie Si te dicen que ca? (If They Tell You I Fell) - 1989?
+Antonio banderas
+10
+
+TV/Film: Births: Born Aug 10, 1960, he starred in the movie Terra Nova - 1991?
+Antonio banderas
+10
+
+TV/Film: Births: Born Aug 10, 1960, he starred in the movie The 13th Warrior - 1999?
+Antonio banderas
+10
+
+TV/Film: Births: Born Aug 10, 1960, he starred in the movie The Court of the Pharoah/La Corte de Faraon - 1985?
+Antonio banderas
+10
+
+TV/Film: Births: Born Aug 10, 1960, he starred in the movie The House of the Spirits - 1993?
+Antonio banderas
+10
+
+TV/Film: Births: Born Aug 10, 1960, he starred in the movie The Mambo Kings - 1992?
+Antonio banderas
+10
+
+TV/Film: Births: Born Aug 10, 1960, he starred in the movie The Mask of Zorro - 1998?
+Antonio banderas
+10
+
+TV/Film: Births: Born Aug 10, 1960, he starred in the movie The Pleasure of Killing (El Placer de matar) - 1987?
+Antonio banderas
+10
+
+TV/Film: Births: Born Aug 10, 1960, he starred in the movie The Puzzle - 1986?
+Antonio banderas
+10
+
+TV/Film: Births: Born Aug 10, 1960, he starred in the movie The Stilts - 1983?
+Antonio banderas
+10
+
+TV/Film: Births: Born Aug 10, 1960, he starred in the movie Tie Me Up! Tie Me Down! - 1990?
+Antonio banderas
+10
+
+TV/Film: Births: Born Aug 10, 1960, he starred in the movie Truth or Dare - 1991?
+Antonio banderas
+10
+
+TV/Film: Births: Born Aug 10, 1960, he starred in the movie Two Much - 1996?
+Antonio banderas
+10
+
+TV/Film: Births: Born Aug 10, 1960, he starred in the movie Una Mujer Bajo la Lluvia - 1992?
+Antonio banderas
+10
+
+TV/Film: Births: Born Aug 10, 1960, he starred in the movie Women on the Verge of a Nervous Breakdown - 1988?
+Antonio banderas
+10
+
+TV/Film: Births: Born Aug 10, 1960, he starred in the movie Y Del Seguro . . . Libranos Se?or! - 1982?
+Antonio banderas
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie 1900 - 1976?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie Analyze This - 1999?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie Angel Heart - 1987?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie Awakenings - 1990?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie Backdraft - 1991?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie Bang the Drum Slowly - 1973?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie Bloody Mama - 1970?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie Born To Win - 1971?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie Brazil - 1985?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie Cape Fear - 1991?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie Casino - 1995?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie Cop Land - 1997?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie Falling in Love - 1984?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie Flawless - 1999?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie GoodFellas - 1990?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie Great Expectations - 1998?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie Greetings ? 1968?
+Robert De Niro 
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie Guilty by Suspicion - 1991?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie Heat - 1995?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie Hi Mom! - 1970?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie Jackie Brown - 1997?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie Jacknife - 1989?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie Jennifer on My Mind - 1971?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie Les Cent et une Nuits - 1995?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie Mad Dog and Glory - 1993?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie Marvin's Room - 1996?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie Mary Shelley's Frankenstein - 1994?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie Mean Streets - 1973?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie Midnight Run - 1988?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie Mistress - 1992?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie New York, New York - 1977?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie Night and the City - 1992?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie Once Upon a Time in America - 1984?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie Raging Bull - 1980?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie Ronin - 1998?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie Sam's Song - 1971?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie Sleepers - 1996?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie Stanley and Iris - 1990?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie Taxi Driver - 1976?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie The Adventures of Rocky and Bullwinkle - 2000?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie The Deer Hunter - 1978?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie The Fan - 1996?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie The Gang That Couldn't Shoot Straight - 1971?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie The Godfather, Part II - 1974?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie The King of Comedy - 1983?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie The Last Tycoon - 1976?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie The Mission - 1986?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie The Untouchables - 1987?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie The Wedding Party - 1969?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie This Boy's Life - 1993?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie True Confessions - 1981?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie Wag the Dog - 1997?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 17, 1943, he starred in the movie We're No Angels - 1989?
+Robert de niro
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie A Bridge Too Far - 1977?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie A Fine Madness - 1966?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie A Good Man in Africa - 1994?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie Action of the Tiger - 1957?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie Another Time, Another Place - 1958?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie Cuba - 1979?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie Darby O'Gill and the Little People - 1959?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie Diamonds Are Forever - 1971?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie Dr. No - 1962?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie Dragonheart - 1996?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie Entrapment - 1999?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie Family Business - 1989?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie First Knight - 1995?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie Five Days One Summer - 1982?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie From Russia With Love - 1964?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie Goldfinger - 1964?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie Gole! - 1982?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie Hell Drivers - 1958?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie Highlander - 1986?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie Highlander II- The Quickening - 1991?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie Indiana Jones and the Last Crusade - 1989?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie Just Cause - 1995?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie Lilacs in The Spring/Let's Make Up - 1955?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie Marnie - 1964?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie Medicine Man - 1992?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie Memories of Me - 1988?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie Meteor - 1979?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie Murder on the Orient Express - 1974?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie Never Say Never Again - 1983?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie No Road Back - 1956?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie Operation Snafu - 1961?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie Outland - 1981?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie Playing by Heart - 1998?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie Rising Sun - 1993?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie Robin and Marian - 1976?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie Robin Hood: Prince of Thieves - 1991?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie Shalako - 1968?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie Sword of the Valiant - 1984?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie Tarzan's Greatest Adventure - 1959?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie The Anderson Tapes - 1971?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie The Avengers - 1998?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie The Frightened City - 1961?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie The Great Train Robbery - 1979?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie The Hill - 1965?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie The Hunt for Red October - 1990?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie The Longest Day - 1962?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie The Man Who Would Be King - 1975?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie The Molly Maguires - 1969?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie The Name of the Rose - 1986?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie The Next Man - 1976?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie The Offense - 1973?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie The Presidio - 1988?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie The Red Tent - 1971?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie The Rock - 1996?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie The Russia House - 1990?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie The Terrorists - 1975?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie The Untouchables - 1987?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie The Wind and the Lion - 1975?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie Thunderball - 1965?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie Time Bandits - 1981?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie Woman of Straw - 1964?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie Wrong Is Right/The Man With the Deadly Lens - 1982?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie You Only Live Twice - 1967?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 25, 1930, he starred in the movie Zardoz - 1974?
+Sean connery
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie A Matter of Time - 1976?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie A Walk in the Spring Rain - 1970?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie A Woman Called Golda - 1982?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie Adam Had Four Sons - 1941?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie Anastasia - 1956?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie Arch of Triumph - 1948?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie Autumn Sonata - 1978?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie Br?nningar - 1935?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie Cactus Flower - 1969?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie Casablanca - 1942?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie Die Vier Gesellen - 1938?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie Dollar - 1938?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie Dr. Jekyll and Mr. Hyde - 1941?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie Elena et les hommes - 1956?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie En enda natt - 1939?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie En Kvinnas ansikte - 1938?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie Europa 51 - 1952?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie Fear - 1955?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie For Whom the Bell Tolls - 1943?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie From the Mixed-Up Files of Mrs. Basil E. Frankweiler - 1973?
+Ingrid Bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie Fugitive in Vienna - 1967?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie Gaslight - 1944?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie Giovanna d'Arco al Rogo - 1954?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie Goodbye Again - 1961?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie H?stsonaten - 1978?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie Indiscreet - 1958?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie Intermezzo - 1936?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie Intermezzo (remake) - 1939?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie Joan of Arc - 1948?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie Juninatten/June Night - 1940?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie La Paura - 1954?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie Landskamp - 1932?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie Munkbrogreven - 1935?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie Murder on the Orient Express - 1974?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie Notorious - 1946?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie P? solsidan - 1936?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie Paris Does Strange Things - 1957?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie Rage in Heaven - 1941?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie Rich Girl - 1991?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie Saratoga Trunk - 1945?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie Siamo donne - 1953?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie Spellbound - 1945?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie Stimulantia - 1967?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie Stromboli - 1949?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie Swedenhielms - 1935?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie The Bells of St. Mary's - 1945?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie The Inn of the Sixth Happiness - 1958?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie The Strangers - 1954?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie The Turn of the Screw - 1959?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie The Visit - 1964?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie The Yellow Rolls-Royce - 1964?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie Under Capricorn - 1949?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie Valborgsm?ssoafton - 1935?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie Viaggio in Italia - 1953?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 29, 1915, She starred in the movie Walk in the Spring Rain - 1970?
+Ingrid bergman
+10
+
+TV/Film: Births: Born Aug 30, 1972, She starred in the movie A Life Less Ordinary - 1997?
+Cameron diaz
+10
+
+TV/Film: Births: Born Aug 30, 1972, She starred in the movie Any Given Sunday - 1999?
+Cameron diaz
+10
+
+TV/Film: Births: Born Aug 30, 1972, She starred in the movie Being John Malkovich - 1999?
+Cameron diaz
+10
+
+TV/Film: Births: Born Aug 30, 1972, She starred in the movie Fear and Loathing in Las Vegas - 1998?
+Cameron diaz
+10
+
+TV/Film: Births: Born Aug 30, 1972, She starred in the movie Feeling Minnesota - 1996?
+Cameron diaz
+10
+
+TV/Film: Births: Born Aug 30, 1972, She starred in the movie Head Above Water - 1997?
+Cameron diaz
+10
+
+TV/Film: Births: Born Aug 30, 1972, She starred in the movie Keys to Tulsa - 1997?
+Cameron diaz
+10
+
+TV/Film: Births: Born Aug 30, 1972, She starred in the movie My Best Friend's Wedding - 1997?
+Cameron diaz
+10
+
+TV/Film: Births: Born Aug 30, 1972, She starred in the movie She's the One - 1996?
+Cameron diaz
+10
+
+TV/Film: Births: Born Aug 30, 1972, She starred in the movie The Last Supper - 1996?
+Cameron diaz
+10
+
+TV/Film: Births: Born Aug 30, 1972, She starred in the movie The Mask - 1994?
+Cameron diaz
+10
+
+TV/Film: Births: Born Aug 30, 1972, She starred in the movie There's Something About Mary - 1998?
+Cameron diaz
+10
+
+TV/Film: Births: Born Aug 30, 1972, She starred in the movie Very Bad Things - 1998?
+Cameron diaz
+10
+
+TV/Film: Births: Born aug 31, 1949, he starred in the movie American gigolo - 1980?
+Richard gere
+10
+
+TV/Film: Births: Born aug 31, 1949, he starred in the movie an officer and a gentleman - 1982?
+Richard gere
+10
+
+TV/Film: Births: Born aug 31, 1949, he starred in the movie baby blue marine - 1976?
+Richard gere
+10
+
+TV/Film: Births: Born aug 31, 1949, he starred in the movie beyond the limit/the honorary consul - 1983?
+Richard gere
+10
+
+TV/Film: Births: Born aug 31, 1949, he starred in the movie bloodbrothers - 1978?
+Richard gere
+10
+
+TV/Film: Births: Born aug 31, 1949, he starred in the movie breathless - 1983?
+Richard gere
+10
+
+TV/Film: Births: Born aug 31, 1949, he starred in the movie burn hollywood burn - 1998?
+Richard gere
+10
+
+TV/Film: Births: Born Aug 31, 1949, he starred in the movie Burn Hollywood Burn: An Alan Smithee Film - 1998?
+Richard gere
+10
+
+TV/Film: Births: Born aug 31, 1949, he starred in the movie days of heaven - 1978?
+Richard gere
+10
+
+TV/Film: Births: Born aug 31, 1949, he starred in the movie final analysis - 1992?
+Richard gere
+10
+
+TV/Film: Births: Born aug 31, 1949, he starred in the movie first knight - 1995?
+Richard gere
+10
+
+TV/Film: Births: Born aug 31, 1949, he starred in the movie internal affairs - 1990?
+Richard gere
+10
+
+TV/Film: Births: Born aug 31, 1949, he starred in the movie intersection - 1994?
+Richard gere
+10
+
+TV/Film: Births: Born aug 31, 1949, he starred in the movie king David - 1985?
+Richard gere
+10
+
+TV/Film: Births: Born aug 31, 1949, he starred in the movie looking for mr. goodbar - 1977?
+Richard gere
+10
+
+TV/Film: Births: Born aug 31, 1949, he starred in the movie miles from home/farm of the year - 1988?
+Richard gere
+10
+
+TV/Film: Births: Born aug 31, 1949, he starred in the movie mr. jones - 1993?
+Richard gere
+10
+
+TV/Film: Births: Born aug 31, 1949, he starred in the movie no mercy - 1986?
+Richard gere
+10
+
+TV/Film: Births: Born aug 31, 1949, he starred in the movie power - 1986?
+Richard gere
+10
+
+TV/Film: Births: Born aug 31, 1949, he starred in the movie pretty woman - 1990?
+Richard gere
+10
+
+TV/Film: Births: Born aug 31, 1949, he starred in the movie primal fear - 1996?
+Richard gere
+10
+
+TV/Film: Births: Born aug 31, 1949, he starred in the movie red corner - 1997?
+Richard gere
+10
+
+TV/Film: Births: Born aug 31, 1949, he starred in the movie report to the commissioner - 1975?
+Richard gere
+10
+
+TV/Film: Births: Born aug 31, 1949, he starred in the movie rhapsody in august - 1991?
+Richard gere
+10
+
+TV/Film: Births: Born aug 31, 1949, he starred in the movie runaway bride - 1999?
+Richard gere
+10
+
+TV/Film: Births: Born aug 31, 1949, he starred in the movie sommersby - 1993?
+Richard gere
+10
+
+TV/Film: Births: Born aug 31, 1949, he starred in the movie strike force - 1975?
+Richard gere
+10
+
+TV/Film: Births: Born aug 31, 1949, he starred in the movie the cotton club - 1984?
+Richard gere
+10
+
+TV/Film: Births: Born aug 31, 1949, he starred in the movie the jackal - 1997?
+Richard gere
+10
+
+TV/Film: Births: Born aug 31, 1949, he starred in the movie unzipped - 1995?
+Richard gere
+10
+
+TV/Film: Births: Born aug 31, 1949, he starred in the movie yanks - 1979?
+Richard gere
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie A Girl, a Guy, and a Gob - 1941?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie A Guide for the Married Man - 1967?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie A Woman of Distinction - 1950?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Abbott and Costello in Hollywood - 1945?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Annabel Takes a Tour - 1938?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Beauty for the Asking - 1939?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Best Foot Forward - 1943?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Blood Money - 1933?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Bottoms Up - 1934?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Broadway Bill - 1934?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Broadway Through a Keyhole - 1933?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Bulldog Drummond - 1929?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Bulldog Drummond Strikes Back - 1934?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Bunker Bean - 1936?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Carnival - 1935?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Chatterbox - 1936?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Critic's Choice - 1963?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Dance, Girl, Dance - 1940?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Don't Tell the Wife - 1937?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Du Barry Was a Lady - 1943?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Easy Living - 1949?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Easy to Wed - 1946?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Fancy Pants - 1950?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Five Came Back - 1939?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Follow the Fleet - 1936?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Forever Darling - 1956?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Fugitive Lady - 1934?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Go Chase Yourself - 1938?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Having Wonderful Time - 1938?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Her Husband's Affairs - 1948?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Hold That Girl - 1934?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie I Dream Too Much - 1935?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie I'll Love You Always - 1935?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Jealousy - 1934?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Joy of Living - 1937?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Kid Millions - 1934?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Look Who's Laughing - 1941?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Lover Come Back - 1946?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Lured - 1947?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Mame - 1974?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Meet the People - 1944?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Men of the Night - 1934?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Miss Grant Takes Richmond - 1949?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Moulin Rouge - 1934?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Nana - 1934?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Old Man Rhythm - 1935?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Panama Lady - 1939?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Roberta - 1935?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Roman Scandals - 1933?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Room Service - 1938?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Seven Days' Leave - 1942?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Sorrowful Jones - 1949?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Stage Door - 1937?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Stone Pillow - 1985?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie That Girl From Paris - 1936?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie That's Right, You're Wrong - 1939?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie The Affairs of Annabel - 1938?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie The Affairs of Cellini - 1934?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie The Big Street - 1942?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie The Bowery - 1933?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie The Dark Corner - 1946?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie The Facts of Life - 1960?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie The Farmer in the Dell - 1936?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie The Fuller Brush Girl - 1950?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie The Kid From Spain - 1932?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie The Long, Long Trailer - 1954?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie The Magic Carpet - 1951?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie The Marines Fly High - 1940?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie The Next Time I Marry - 1938?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie The Three Musketeers - 1935?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie The Whole Town's Talking - 1935?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Thousands Cheer - 1943?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Three Little Pigskins - 1934?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Too Many Girls - 1940?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Top Hat - 1935?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Twelve Crowded Hours - 1939?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Two Smart People - 1946?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Valley of the Sun - 1942?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Winterset - 1936?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Wisecracks - 1992?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Without Love - 1945?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie You Can't Fool Your Wife - 1940?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Yours, Mine and Ours - 1968?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 6, 1911, She starred in the movie Ziegfeld Follies - 1946?
+Lucille ball
+10
+
+TV/Film: Births: Born Aug 8, 1937, he starred in the movie Agatha - 1979?
+Dustin hoffman
+10
+
+TV/Film: Births: Born Aug 8, 1937, he starred in the movie Alfredo, Alfredo - 1973?
+Dustin hoffman
+10
+
+TV/Film: Births: Born Aug 8, 1937, he starred in the movie All the President's Men - 1976?
+Dustin hoffman
+10
+
+TV/Film: Births: Born Aug 8, 1937, he starred in the movie American Buffalo - 1996?
+Dustin hoffman
+10
+
+TV/Film: Births: Born Aug 8, 1937, he starred in the movie Billy Bathgate - 1991?
+Dustin hoffman
+10
+
+TV/Film: Births: Born Aug 8, 1937, he starred in the movie Death of a Salesman - 1985?
+Dustin hoffman
+10
+
+TV/Film: Births: Born Aug 8, 1937, he starred in the movie Dick Tracy - 1990?
+Dustin hoffman
+10
+
+TV/Film: Births: Born Aug 8, 1937, he starred in the movie Family Business - 1989?
+Dustin hoffman
+10
+
+TV/Film: Births: Born Aug 8, 1937, he starred in the movie Hero - 1992?
+Dustin hoffman
+10
+
+TV/Film: Births: Born Aug 8, 1937, he starred in the movie Hook - 1991?
+Dustin hoffman
+10
+
+TV/Film: Births: Born Aug 8, 1937, he starred in the movie Ishtar - 1987?
+Dustin hoffman
+10
+
+TV/Film: Births: Born Aug 8, 1937, he starred in the movie John and Mary - 1969?
+Dustin hoffman
+10
+
+TV/Film: Births: Born Aug 8, 1937, he starred in the movie Kramer vs. Kramer - 1979?
+Dustin hoffman
+10
+
+TV/Film: Births: Born Aug 8, 1937, he starred in the movie Lenny - 1974?
+Dustin hoffman
+10
+
+TV/Film: Births: Born Aug 8, 1937, he starred in the movie Little Big Man - 1970?
+Dustin hoffman
+10
+
+TV/Film: Births: Born Aug 8, 1937, he starred in the movie Mad City - 1997?
+Dustin hoffman
+10
+
+TV/Film: Births: Born Aug 8, 1937, he starred in the movie Madigan's Million - 1968?
+Dustin hoffman
+10
+
+TV/Film: Births: Born Aug 8, 1937, he starred in the movie Midnight Cowboy - 1969?
+Dustin hoffman
+10
+
+TV/Film: Births: Born Aug 8, 1937, he starred in the movie Outbreak - 1995?
+Dustin hoffman
+10
+
+TV/Film: Births: Born Aug 8, 1937, he starred in the movie Papillon - 1973?
+Dustin hoffman
+10
+
+TV/Film: Births: Born Aug 8, 1937, he starred in the movie Rain Man - 1988?
+Dustin hoffman
+10
+
+TV/Film: Births: Born Aug 8, 1937, he starred in the movie Sleepers - 1996?
+Dustin hoffman
+10
+
+TV/Film: Births: Born Aug 8, 1937, he starred in the movie Sphere - 1998?
+Dustin hoffman
+10
+
+TV/Film: Births: Born Aug 8, 1937, he starred in the movie Straight Time - 1978?
+Dustin hoffman
+10
+
+TV/Film: Births: Born Aug 8, 1937, he starred in the movie Straw Dogs - 1972?
+Dustin hoffman
+10
+
+TV/Film: Births: Born Aug 8, 1937, he starred in the movie The Graduate - 1967?
+Dustin hoffman
+10
+
+TV/Film: Births: Born Aug 8, 1937, he starred in the movie The Messenger: The Story of Joan of Arc - 1999?
+Dustin hoffman
+10
+
+TV/Film: Births: Born Aug 8, 1937, he starred in the movie The Tiger Makes Out - 1967?
+Dustin hoffman
+10
+
+TV/Film: Births: Born Aug 8, 1937, he starred in the movie Tootsie - 1982?
+Dustin hoffman
+10
+
+TV/Film: Births: Born Aug 8, 1937, he starred in the movie Wag the Dog - 1997?
+Dustin hoffman
+10
+
+TV/Film: Births: Born Aug 8, 1937, he starred in the movie Who Is Harry Kellerman and Why Is He Saying Those Terrible Thing - 1971?
+Dustin hoffman
+10
+
+TV/Film: Births: Born Aug 9, 1957, She starred in the movie A Stranger Among Us - 1992?
+Melanie griffith
+10
+
+TV/Film: Births: Born Aug 9, 1957, She starred in the movie Alfred Hitchcock Presents - 1985?
+Melanie griffith
+10
+
+TV/Film: Births: Born Aug 9, 1957, She starred in the movie Another Day in Paradise - 1998?
+Melanie griffith
+10
+
+TV/Film: Births: Born Aug 9, 1957, She starred in the movie Body Double - 1984?
+Melanie griffith
+10
+
+TV/Film: Births: Born Aug 9, 1957, She starred in the movie Born Yesterday - 1993?
+Melanie griffith
+10
+
+TV/Film: Births: Born Aug 9, 1957, She starred in the movie Cherry 2000 - 1987?
+Melanie griffith
+10
+
+TV/Film: Births: Born Aug 9, 1957, She starred in the movie Crazy in Alabama - 1999?
+Melanie griffith
+10
+
+TV/Film: Births: Born Aug 9, 1957, She starred in the movie Fear City - 1985?
+Melanie griffith
+10
+
+TV/Film: Births: Born Aug 9, 1957, She starred in the movie In the Spirit - 1990?
+Melanie griffith
+10
+
+TV/Film: Births: Born Aug 9, 1957, She starred in the movie Joyride - 1977?
+Melanie griffith
+10
+
+TV/Film: Births: Born Aug 9, 1957, She starred in the movie Lolita - 1998?
+Melanie griffith
+10
+
+TV/Film: Births: Born Aug 9, 1957, She starred in the movie Men & Women: Stories of Seduction - 1990?
+Melanie griffith
+10
+
+TV/Film: Births: Born Aug 9, 1957, She starred in the movie Milk Money - 1994?
+Melanie griffith
+10
+
+TV/Film: Births: Born Aug 9, 1957, She starred in the movie Mulholland Falls - 1996?
+Melanie griffith
+10
+
+TV/Film: Births: Born Aug 9, 1957, She starred in the movie Night Moves - 1975?
+Melanie griffith
+10
+
+TV/Film: Births: Born Aug 9, 1957, She starred in the movie Nobody's Fool - 1994?
+Melanie griffith
+10
+
+TV/Film: Births: Born Aug 9, 1957, She starred in the movie Now and Then - 1995?
+Melanie griffith
+10
+
+TV/Film: Births: Born Aug 9, 1957, She starred in the movie One on One - 1977?
+Melanie griffith
+10
+
+TV/Film: Births: Born Aug 9, 1957, She starred in the movie Pacific Heights - 1990?
+Melanie griffith
+10
+
+TV/Film: Births: Born Aug 9, 1957, She starred in the movie Paradise - 1991?
+Melanie griffith
+10
+
+TV/Film: Births: Born Aug 9, 1957, She starred in the movie Roar - 1981?
+Melanie griffith
+10
+
+TV/Film: Births: Born Aug 9, 1957, She starred in the movie She's in the Army Now - 1981?
+Melanie griffith
+10
+
+TV/Film: Births: Born Aug 9, 1957, She starred in the movie Shining Through - 1992?
+Melanie griffith
+10
+
+TV/Film: Births: Born Aug 9, 1957, She starred in the movie Smile - 1975?
+Melanie griffith
+10
+
+TV/Film: Births: Born Aug 9, 1957, She starred in the movie Something Wild - 1986?
+Melanie griffith
+10
+
+TV/Film: Births: Born Aug 9, 1957, She starred in the movie Stormy Monday - 1988?
+Melanie griffith
+10
+
+TV/Film: Births: Born Aug 9, 1957, She starred in the movie The Bonfire of the Vanities - 1990?
+Melanie griffith
+10
+
+TV/Film: Births: Born Aug 9, 1957, She starred in the movie The Drowning Pool - 1976?
+Melanie griffith
+10
+
+TV/Film: Births: Born Aug 9, 1957, She starred in the movie The Harrad Experiment - 1973?
+Melanie griffith
+10
+
+TV/Film: Births: Born Aug 9, 1957, She starred in the movie The Milagro Beanfield War - 1988?
+Melanie griffith
+10
+
+TV/Film: Births: Born Aug 9, 1957, She starred in the movie The Star Maker - 1981?
+Melanie griffith
+10
+
+TV/Film: Births: Born Aug 9, 1957, She starred in the movie Two Much - 1996?
+Melanie griffith
+10
+
+TV/Film: Births: Born Aug 9, 1957, She starred in the movie Working Girl - 1988?
+Melanie griffith
+10
+
+TV/Film: Births: Born august 13, 1899 he directed the 1960 thriller psycho?
+Alfred hitchcock
+10
+
+TV/Film: Births: Born Dec 1, 1935, he starred in the movie A Midsummer Night's Sex Comedy - 1982?
+Woody allen
+10
+
+TV/Film: Births: Born Dec 1, 1935, he starred in the movie Annie Hall - 1977?
+Woody allen
+10
+
+TV/Film: Births: Born Dec 1, 1935, he starred in the movie Bananas - 1971?
+Woody allen
+10
+
+TV/Film: Births: Born Dec 1, 1935, he starred in the movie Casino Royale - 1967?
+Woody allen
+10
+
+TV/Film: Births: Born Dec 1, 1935, he starred in the movie Deconstructing Harry - 1997?
+Woody allen
+10
+
+TV/Film: Births: Born Dec 1, 1935, he starred in the movie Everyone Says I Love You - 1996?
+Woody allen
+10
+
+TV/Film: Births: Born Dec 1, 1935, he starred in the movie Everything You Always Wanted to Know About Sex (But Were Afraid - 1972?
+Woody allen
+10
+
+TV/Film: Births: Born Dec 1, 1935, he starred in the movie Hannah and Her Sisters - 1986?
+Woody allen
+10
+
+TV/Film: Births: Born Dec 1, 1935, he starred in the movie Husbands and Wives - 1992?
+Woody allen
+10
+
+TV/Film: Births: Born Dec 1, 1935, he starred in the movie King Lear - 1987?
+Woody allen
+10
+
+TV/Film: Births: Born Dec 1, 1935, he starred in the movie Love and Death - 1975?
+Woody allen
+10
+
+TV/Film: Births: Born Dec 1, 1935, he starred in the movie Manhattan - 1979?
+Woody allen
+10
+
+TV/Film: Births: Born Dec 1, 1935, he starred in the movie Manhattan Murder Mystery - 1993?
+Woody allen
+10
+
+TV/Film: Births: Born Dec 1, 1935, he starred in the movie Mighty Aphrodite - 1995?
+Woody allen
+10
+
+TV/Film: Births: Born Dec 1, 1935, he starred in the movie New York Stories - 1989?
+Woody allen
+10
+
+TV/Film: Births: Born Dec 1, 1935, he starred in the movie Play It Again, Sam - 1972?
+Woody allen
+10
+
+TV/Film: Births: Born Dec 1, 1935, he starred in the movie Scenes From a Mall - 1991?
+Woody allen
+10
+
+TV/Film: Births: Born Dec 1, 1935, he starred in the movie Shadows and Fog - 1992?
+Woody allen
+10
+
+TV/Film: Births: Born Dec 1, 1935, he starred in the movie Sleeper - 1973?
+Woody allen
+10
+
+TV/Film: Births: Born Dec 1, 1935, he starred in the movie Small Time Crooks - 2000?
+Woody allen
+10
+
+TV/Film: Births: Born Dec 1, 1935, he starred in the movie Stardust Memories - 1980?
+Woody allen
+10
+
+TV/Film: Births: Born Dec 1, 1935, he starred in the movie Sweet and Lowdown - 1999?
+Woody allen
+10
+
+TV/Film: Births: Born Dec 1, 1935, he starred in the movie Take the Money and Run - 1969?
+Woody allen
+10
+
+TV/Film: Births: Born Dec 1, 1935, he starred in the movie The Front - 1976?
+Woody allen
+10
+
+TV/Film: Births: Born Dec 1, 1935, he starred in the movie The Purple Rose of Cairo - 1985?
+Woody allen
+10
+
+TV/Film: Births: Born Dec 1, 1935, he starred in the movie What's New, Pussycat? - 1965?
+Woody allen
+10
+
+TV/Film: Births: Born Dec 1, 1935, he starred in the movie What's Up, Tiger Lily? - 1966?
+Woody allen
+10
+
+TV/Film: Births: Born Dec 1, 1935, he starred in the movie Wild Man Blues - 1998?
+Woody allen
+10
+
+TV/Film: Births: Born Dec 1, 1935, he starred in the movie Zelig - 1983?
+Woody allen
+10
+
+TV/Film: Births: Born Dec 1, 1945, She starred in the movie A Century of Cinema - 1994?
+Bette midler
+10
+
+TV/Film: Births: Born Dec 1, 1945, She starred in the movie Beaches - 1988?
+Bette midler
+10
+
+TV/Film: Births: Born Dec 1, 1945, She starred in the movie Big Business - 1988?
+Bette midler
+10
+
+TV/Film: Births: Born Dec 1, 1945, She starred in the movie Divine Madness - 1980?
+Bette midler
+10
+
+TV/Film: Births: Born Dec 1, 1945, She starred in the movie Down and Out in Beverly Hills - 1986?
+Bette midler
+10
+
+TV/Film: Births: Born Dec 1, 1945, She starred in the movie Drowning Mona - 2000?
+Bette midler
+10
+
+TV/Film: Births: Born Dec 1, 1945, She starred in the movie For the Boys - 1991?
+Bette midler
+10
+
+TV/Film: Births: Born Dec 1, 1945, She starred in the movie Get Bruce - 1999?
+Bette midler
+10
+
+TV/Film: Births: Born Dec 1, 1945, She starred in the movie Get Shorty - 1995?
+Bette midler
+10
+
+TV/Film: Births: Born Dec 1, 1945, She starred in the movie Hocus Pocus - 1993?
+Bette midler
+10
+
+TV/Film: Births: Born Dec 1, 1945, She starred in the movie Isn't She Great - 2000?
+Bette midler
+10
+
+TV/Film: Births: Born Dec 1, 1945, She starred in the movie Jinxed - 1982?
+Bette midler
+10
+
+TV/Film: Births: Born Dec 1, 1945, She starred in the movie Oliver and Company - 1988?
+Bette midler
+10
+
+TV/Film: Births: Born Dec 1, 1945, She starred in the movie Outrageous Fortune - 1987?
+Bette midler
+10
+
+TV/Film: Births: Born Dec 1, 1945, She starred in the movie Ruthless People - 1986?
+Bette midler
+10
+
+TV/Film: Births: Born Dec 1, 1945, She starred in the movie Scenes From a Mall - 1991?
+Bette midler
+10
+
+TV/Film: Births: Born Dec 1, 1945, She starred in the movie Stella - 1990?
+Bette midler
+10
+
+TV/Film: Births: Born Dec 1, 1945, She starred in the movie That Old Feeling - 1997?
+Bette midler
+10
+
+TV/Film: Births: Born Dec 1, 1945, She starred in the movie The First Wives Club - 1996?
+Bette midler
+10
+
+TV/Film: Births: Born Dec 1, 1945, She starred in the movie The Rose - 1979?
+Bette midler
+10
+
+TV/Film: Births: Born Dec 18 1963, he starred in the movie A River Runs Through It - 1992?
+Brad pitt
+10
+
+TV/Film: Births: Born Dec 18 1963, he starred in the movie Across the Tracks - 1991?
+Brad pitt
+10
+
+TV/Film: Births: Born Dec 18 1963, he starred in the movie Cool World - 1992?
+Brad pitt
+10
+
+TV/Film: Births: Born Dec 18 1963, he starred in the movie Cutting Class - 1989?
+Brad pitt
+10
+
+TV/Film: Births: Born Dec 18 1963, he starred in the movie Happy Together - 1989?
+Brad pitt
+10
+
+TV/Film: Births: Born Dec 18 1963, he starred in the movie Interview With the Vampire - 1994?
+Brad pitt
+10
+
+TV/Film: Births: Born Dec 18 1963, he starred in the movie Johnny Suede - 1992?
+Brad pitt
+10
+
+TV/Film: Births: Born Dec 18 1963, he starred in the movie Kalifornia - 1993?
+Brad pitt
+10
+
+TV/Film: Births: Born Dec 18 1963, he starred in the movie Legends of the Fall - 1994?
+Brad pitt
+10
+
+TV/Film: Births: Born Dec 18 1963, he starred in the movie Seven - 1995?
+Brad pitt
+10
+
+TV/Film: Births: Born Dec 18 1963, he starred in the movie The Favor - 1994?
+Brad pitt
+10
+
+TV/Film: Births: Born Dec 18 1963, he starred in the movie Thelma & Louise - 1991?
+Brad pitt
+10
+
+TV/Film: Births: Born Dec 18 1963, he starred in the movie Too Young To Die? - 1990?
+Brad pitt
+10
+
+TV/Film: Births: Born Dec 18 1963, he starred in the movie True Romance - 1993?
+Brad pitt
+10
+
+TV/Film: Births: Born dec 18, 1963, he starred in the movie 12 monkeys - 1995?
+Brad pitt
+10
+
+TV/Film: Births: Born dec 18, 1963, he starred in the movie being john malkovich - 1999?
+Brad pitt
+10
+
+TV/Film: Births: Born dec 18, 1963, he starred in the movie fight club - 1999?
+Brad pitt
+10
+
+TV/Film: Births: Born dec 18, 1963, he starred in the movie meet joe black - 1998?
+Brad pitt
+10
+
+TV/Film: Births: Born dec 18, 1963, he starred in the movie seven years in tibet - 1997?
+Brad pitt
+10
+
+TV/Film: Births: Born dec 18, 1963, he starred in the movie sleepers - 1996?
+Brad pitt
+10
+
+TV/Film: Births: Born dec 18, 1963, he starred in the movie the devil's own - 1997?
+Brad pitt
+10
+
+TV/Film: Births: Born Dec 21, 1937, She starred in the movie 9 to 5 - 1980?
+Jane fonda
+10
+
+TV/Film: Births: Born Dec 21, 1937, She starred in the movie A Century of Cinema - 1994?
+Jane fonda
+10
+
+TV/Film: Births: Born Dec 21, 1937, She starred in the movie A Doll's House - 1973?
+Jane fonda
+10
+
+TV/Film: Births: Born Dec 21, 1937, She starred in the movie Agnes of God - 1985?
+Jane fonda
+10
+
+TV/Film: Births: Born Dec 21, 1937, She starred in the movie Any Wednesday - 1966?
+Jane fonda
+10
+
+TV/Film: Births: Born Dec 21, 1937, She starred in the movie Barbarella - 1968?
+Jane fonda
+10
+
+TV/Film: Births: Born Dec 21, 1937, She starred in the movie Barefoot in the Park - 1967?
+Jane fonda
+10
+
+TV/Film: Births: Born Dec 21, 1937, She starred in the movie California Suite - 1978?
+Jane fonda
+10
+
+TV/Film: Births: Born Dec 21, 1937, She starred in the movie Cat Ballou - 1965?
+Jane fonda
+10
+
+TV/Film: Births: Born Dec 21, 1937, She starred in the movie Comes a Horseman - 1978?
+Jane fonda
+10
+
+TV/Film: Births: Born Dec 21, 1937, She starred in the movie Coming Home - 1978?
+Jane fonda
+10
+
+TV/Film: Births: Born Dec 21, 1937, She starred in the movie Fun With Dick and Jane - 1977?
+Jane fonda
+10
+
+TV/Film: Births: Born Dec 21, 1937, She starred in the movie Histoires Extraordinaires/Spirits of the Dead - 1968?
+Jane fonda
+10
+
+TV/Film: Births: Born Dec 21, 1937, She starred in the movie Hurry, Sundown - 1967?
+Jane fonda
+10
+
+TV/Film: Births: Born Dec 21, 1937, She starred in the movie In the Cool of the Day - 1963?
+Jane fonda
+10
+
+TV/Film: Births: Born Dec 21, 1937, She starred in the movie Joy House - 1964?
+Jane fonda
+10
+
+TV/Film: Births: Born Dec 21, 1937, She starred in the movie Julia - 1977?
+Jane fonda
+10
+
+TV/Film: Births: Born Dec 21, 1937, She starred in the movie Klute - 1971?
+Jane fonda
+10
+
+TV/Film: Births: Born Dec 21, 1937, She starred in the movie La Curee/The Game Is Over - 1966?
+Jane fonda
+10
+
+TV/Film: Births: Born Dec 21, 1937, She starred in the movie La Ronde/Circle of Love - 1964?
+Jane fonda
+10
+
+TV/Film: Births: Born Dec 21, 1937, She starred in the movie Les Felins/Joy House/The Love Cage - 1964?
+Jane fonda
+10
+
+TV/Film: Births: Born Dec 21, 1937, She starred in the movie No Nukes - 1980?
+Jane fonda
+10
+
+TV/Film: Births: Born Dec 21, 1937, She starred in the movie Old Gringo - 1988?
+Jane fonda
+10
+
+TV/Film: Births: Born Dec 21, 1937, She starred in the movie On Golden Pond - 1981?
+Jane fonda
+10
+
+TV/Film: Births: Born Dec 21, 1937, She starred in the movie Period of Adjustment - 1962?
+Jane fonda
+10
+
+TV/Film: Births: Born Dec 21, 1937, She starred in the movie Rollover - 1981?
+Jane fonda
+10
+
+TV/Film: Births: Born Dec 21, 1937, She starred in the movie Stanley and Iris - 1990?
+Jane fonda
+10
+
+TV/Film: Births: Born Dec 21, 1937, She starred in the movie Steelyard Blues - 1973?
+Jane fonda
+10
+
+TV/Film: Births: Born Dec 21, 1937, She starred in the movie Sunday in New York - 1964?
+Jane fonda
+10
+
+TV/Film: Births: Born Dec 21, 1937, She starred in the movie Tall Story - 1960?
+Jane fonda
+10
+
+TV/Film: Births: Born Dec 21, 1937, She starred in the movie The Blue Bird - 1976?
+Jane fonda
+10
+
+TV/Film: Births: Born Dec 21, 1937, She starred in the movie The Chapman ReSports: 1962?
+Jane fonda
+10
+
+TV/Film: Births: Born Dec 21, 1937, She starred in the movie The Chase - 1966?
+Jane fonda
+10
+
+TV/Film: Births: Born Dec 21, 1937, She starred in the movie The China Syndrome - 1979?
+Jane fonda
+10
+
+TV/Film: Births: Born Dec 21, 1937, She starred in the movie The Dollmaker - 1984?
+Jane fonda
+10
+
+TV/Film: Births: Born Dec 21, 1937, She starred in the movie The Electric Horseman - 1979?
+Jane fonda
+10
+
+TV/Film: Births: Born Dec 21, 1937, She starred in the movie The Game Is Over - 1966?
+Jane fonda
+10
+
+TV/Film: Births: Born Dec 21, 1937, She starred in the movie The Morning After - 1986?
+Jane fonda
+10
+
+TV/Film: Births: Born Dec 21, 1937, She starred in the movie They Shoot Horses, Don't They? - 1969?
+Jane fonda
+10
+
+TV/Film: Births: Born Dec 21, 1937, She starred in the movie Tout va bien - 1972?
+Jane fonda
+10
+
+TV/Film: Births: Born Dec 21, 1937, She starred in the movie Walk on the Wild Side - 1962?
+Jane fonda
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie A Devil With Women - 1930?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie A Holy Terror - 1931?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie Across the Pacific - 1942?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie Action in the North Atlantic - 1943?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie All Through the Night - 1942?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie Always Together - 1948?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie Angels With Dirty Faces - 1938?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie Bad Sister - 1931?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie Battle Circus - 1953?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie Beat the Devil - 1954?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie Big City Blues - 1932?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie Black Legion - 1936?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie Body and Soul - 1931?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie Broadway's Like That - 1930?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie Brother Orchid - 1940?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie Bullets or Ballots - 1936?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie Call It Murder - 1934?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie Casablanca - 1942?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie Chain Lightning - 1950?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie China Clipper - 1936?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie Conflict - 1945?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie Crime School - 1938?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie Dark Passage - 1947?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie Dark Victory - 1939?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie Dead End - 1937?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie Dead Reckoning - 1947?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie Deadline, U.S.A. - 1952?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie High Sierra - 1941?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie In a Lonely Place - 1950?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie In This Our Life - 1942?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie Invisible Stripes - 1940?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie Isle of Fury - 1936?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie It All Came True - 1940?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie Key Largo - 1948?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie Kid Galahad - 1937?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie King of the Underworld - 1939?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie Knock on Any Door - 1949?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie Love Affair - 1932?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie Marked Woman - 1937?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie Men Are Such Fools - 1938?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie Midnight - 1934?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie Passage to Marseille - 1944?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie Racket Busters - 1938?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie Road to Bali - 1952?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie Sabrina - 1954?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie Sahara - 1943?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie San Quentin - 1937?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie Sirocco - 1952?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie Stand-In - 1937?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie Swing Your Lady - 1938?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie Thank Your Lucky Stars - 1943?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie The African Queen - 1951?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie The Amazing Doctor Clitterhouse - 1938?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie The Barefoot Contessa - 1954?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie The Big Shot - 1942?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie The Big Sleep - 1946?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie The Caine Mutiny - 1954?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie The Dancing Town - 1928?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie The Desperate Hours - 1955?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie The Enforcer - 1951?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie The Great O'Malley - 1937?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie The Harder They Fall - 1956?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie The Left Hand of God - 1955?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie The Love Lottery - 1954?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie The Maltese Falcon - 1941?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie The Oklahoma Kid - 1939?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie The Petrified Forest - 1936?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie The Return of Doctor X - 1939?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie The Roaring Twenties - 1939?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie The Treasure of the Sierra Madre - 1948?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie The Two Mrs. Carrolls - 1947?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie The Wagons Roll at Night - 1941?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie They Drive by Night - 1940?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie Three on a Match - 1932?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie To Have and Have Not - 1944?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie Tokyo Joe - 1949?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie Two Against the World - 1936?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie Two Guys From Milwaukee - 1946?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie Up the River - 1930?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie Virginia City - 1940?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie We're No Angels - 1955?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie Women of All Nations - 1931?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 25, 1899, he starred in the movie You Can't Get Away With Murder - 1939?
+Humphrey bogart
+10
+
+TV/Film: Births: Born Dec 28, 1954, he starred in the movie A Century of Cinema - 1994?
+Denzel Washington
+10
+
+TV/Film: Births: Born Dec 28, 1954, he starred in the movie A Soldier's Story - 1984?
+Denzel Washington
+10
+
+TV/Film: Births: Born Dec 28, 1954, he starred in the movie Carbon Copy - 1981?
+Denzel Washington
+10
+
+TV/Film: Births: Born Dec 28, 1954, he starred in the movie Courage Under Fire - 1996?
+Denzel Washington
+10
+
+TV/Film: Births: Born Dec 28, 1954, he starred in the movie Crimson Tide - 1995?
+Denzel Washington
+10
+
+TV/Film: Births: Born Dec 28, 1954, he starred in the movie Cry Freedom - 1987?
+Denzel Washington
+10
+
+TV/Film: Births: Born Dec 28, 1954, he starred in the movie Devil in a Blue Dress - 1995?
+Denzel Washington
+10
+
+TV/Film: Births: Born Dec 28, 1954, he starred in the movie Fallen - 1998?
+Denzel Washington
+10
+
+TV/Film: Births: Born Dec 28, 1954, he starred in the movie For Queen and Country - 1989?
+Denzel Washington
+10
+
+TV/Film: Births: Born Dec 28, 1954, he starred in the movie Glory - 1989?
+Denzel Washington
+10
+
+TV/Film: Births: Born Dec 28, 1954, he starred in the movie He Got Game - 1998?
+Denzel Washington
+10
+
+TV/Film: Births: Born Dec 28, 1954, he starred in the movie Heart Condition - 1990?
+Denzel Washington
+10
+
+TV/Film: Births: Born Dec 28, 1954, he starred in the movie Malcolm X - 1992?
+Denzel Washington
+10
+
+TV/Film: Births: Born Dec 28, 1954, he starred in the movie Mississippi Masala - 1992?
+Denzel Washington
+10
+
+TV/Film: Births: Born Dec 28, 1954, he starred in the movie Mo' Better Blues - 1990?
+Denzel Washington
+10
+
+TV/Film: Births: Born Dec 28, 1954, he starred in the movie Much Ado About Nothing - 1993?
+Denzel Washington
+10
+
+TV/Film: Births: Born Dec 28, 1954, he starred in the movie Philadelphia - 1993?
+Denzel Washington
+10
+
+TV/Film: Births: Born Dec 28, 1954, he starred in the movie Power - 1986?
+Denzel Washington
+10
+
+TV/Film: Births: Born Dec 28, 1954, he starred in the movie Reunion - 1988?
+Denzel Washington
+10
+
+TV/Film: Births: Born Dec 28, 1954, he starred in the movie Ricochet - 1991?
+Denzel Washington
+10
+
+TV/Film: Births: Born Dec 28, 1954, he starred in the movie The Bone Collector - 1999?
+Denzel Washington
+10
+
+TV/Film: Births: Born Dec 28, 1954, he starred in the movie The George McKenna Story - 1986?
+Denzel Washington
+10
+
+TV/Film: Births: Born Dec 28, 1954, he starred in the movie The Hurricane - 1999?
+Denzel Washington
+10
+
+TV/Film: Births: Born Dec 28, 1954, he starred in the movie The Mighty Quinn - 1989?
+Denzel Washington
+10
+
+TV/Film: Births: Born Dec 28, 1954, he starred in the movie The Pelican Brief - 1993?
+Denzel Washington
+10
+
+TV/Film: Births: Born Dec 28, 1954, he starred in the movie The Preacher's Wife - 1996?
+Denzel Washington
+10
+
+TV/Film: Births: Born Dec 28, 1954, he starred in the movie The Siege - 1998?
+Denzel Washington
+10
+
+TV/Film: Births: Born Dec 28, 1954, he starred in the movie Virtuosity - 1995?
+Denzel Washington
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie 84 Charing Cross Road - 1987?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie A Bridge Too Far - 1977?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie A Century of Cinema - 1994?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie A Change of Seasons - 1980?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie A Chorus of Disapproval - 1988?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie A Doll's House - 1973?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie A Married Man - 1984?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie All Creatures Great and Small - 1974?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie Amistad - 1997?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie Arch of Triumph - 1985?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie Audrey Rose - 1977?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie Bram Stoker's Dracula - 1992?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie Chaplin - 1992?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie Dark Victory - 1976?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie Desperate Hours - 1990?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie Freejack - 1992?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie Guilty ConsScience: 1985?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie Hamlet - 1969?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie Howards End - 1992?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie Instinct - 1999?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie International Velvet - 1978?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie Juggernaut - 1974?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie Legends of the Fall - 1994?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie Magic - 1978?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie Mayflower: The Pilgrims' Adventure - 1979?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie Meet Joe Black - 1998?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie Mission Impossible 2 - 2000?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie Mussolini & I - 1985?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie Nixon - 1995?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie One Man's War - 1991?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie Shadowlands - 1993?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie Surviving Picasso - 1996?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie The Bounty - 1984?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie The Bunker - 1981?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie The Dawning - 1988?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie The Edge - 1997?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie The Efficiency Expert - 1992?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie The Elephant Man - 1980?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie The Girl From Petrovka - 1974?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie The Good Father - 1986?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie The Hunchback of Notre Dame - 1982?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie The Innocent - 1993?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie The Lindbergh Kidnapping Case - 1976?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie The Lion in Winter - 1968?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie The Looking Glass War - 1970?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie The Mask of Zorro - 1998?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie The Remains of the Day - 1993?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie The Road to Wellville - 1994?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie The Silence of the Lambs - 1991?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie The Tenth Man - 1988?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie The Trial - 1992?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie The White Bus - 1967?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie Titus - 1999?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie Victory at Entebbe - 1976?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie When Eight Bells Toll - 1971?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 31, 1937, he starred in the movie Young Winston - 1972?
+Anthony hopkins
+10
+
+TV/Film: Births: Born Dec 4, 1949, he starred in the movie Against All Odds - 1984?
+Jeff bridges
+10
+
+TV/Film: Births: Born Dec 4, 1949, he starred in the movie American Heart - 1993?
+Jeff bridges
+10
+
+TV/Film: Births: Born Dec 4, 1949, he starred in the movie Arlington Road - 1999?
+Jeff bridges
+10
+
+TV/Film: Births: Born Dec 4, 1949, he starred in the movie Bad Company - 1972?
+Jeff bridges
+10
+
+TV/Film: Births: Born Dec 4, 1949, he starred in the movie Blown Away - 1994?
+Jeff bridges
+10
+
+TV/Film: Births: Born Dec 4, 1949, he starred in the movie Cold Feet - 1989?
+Jeff bridges
+10
+
+TV/Film: Births: Born Dec 4, 1949, he starred in the movie Cutter's Way/Cutter and Bone - 1981?
+Jeff bridges
+10
+
+TV/Film: Births: Born Dec 4, 1949, he starred in the movie Eight Million Ways To Die - 1987?
+Jeff bridges
+10
+
+TV/Film: Births: Born Dec 4, 1949, he starred in the movie Fat City - 1972?
+Jeff bridges
+10
+
+TV/Film: Births: Born Dec 4, 1949, he starred in the movie Fearless - 1993?
+Jeff bridges
+10
+
+TV/Film: Births: Born Dec 4, 1949, he starred in the movie Halls of Anger - 1970?
+Jeff bridges
+10
+
+TV/Film: Births: Born Dec 4, 1949, he starred in the movie Hearts of the West/Hollywood Cowboy - 1975?
+Jeff bridges
+10
+
+TV/Film: Births: Born Dec 4, 1949, he starred in the movie Heaven's Gate - 1980?
+Jeff bridges
+10
+
+TV/Film: Births: Born Dec 4, 1949, he starred in the movie In Search of America - 1971?
+Jeff bridges
+10
+
+TV/Film: Births: Born Dec 4, 1949, he starred in the movie Jagged Edge - 1985?
+Jeff bridges
+10
+
+TV/Film: Births: Born Dec 4, 1949, he starred in the movie King Kong - 1976?
+Jeff bridges
+10
+
+TV/Film: Births: Born Dec 4, 1949, he starred in the movie Kiss Me Goodbye - 1982?
+Jeff bridges
+10
+
+TV/Film: Births: Born Dec 4, 1949, he starred in the movie Lolly-Madonna XXX - 1973?
+Jeff bridges
+10
+
+TV/Film: Births: Born Dec 4, 1949, he starred in the movie Nadine - 1987?
+Jeff bridges
+10
+
+TV/Film: Births: Born Dec 4, 1949, he starred in the movie Rancho Deluxe - 1975?
+Jeff bridges
+10
+
+TV/Film: Births: Born Dec 4, 1949, he starred in the movie See You in the Morning - 1989?
+Jeff bridges
+10
+
+TV/Film: Births: Born Dec 4, 1949, he starred in the movie Simpatico - 1999?
+Jeff bridges
+10
+
+TV/Film: Births: Born Dec 4, 1949, he starred in the movie Somebody Killed Her Husband - 1978?
+Jeff bridges
+10
+
+TV/Film: Births: Born Dec 4, 1949, he starred in the movie Starman - 1984?
+Jeff bridges
+10
+
+TV/Film: Births: Born Dec 4, 1949, he starred in the movie Stay Hungry - 1976?
+Jeff bridges
+10
+
+TV/Film: Births: Born Dec 4, 1949, he starred in the movie Success/American Success/The American Success Company - 1980?
+Jeff Bridges
+10
+
+TV/Film: Births: Born Dec 4, 1949, he starred in the movie Texasville - 1990?
+Jeff bridges
+10
+
+TV/Film: Births: Born Dec 4, 1949, he starred in the movie The Big Lebowski - 1998?
+Jeff bridges
+10
+
+TV/Film: Births: Born Dec 4, 1949, he starred in the movie The Company She Keeps - 1951?
+Jeff bridges
+10
+
+TV/Film: Births: Born Dec 4, 1949, he starred in the movie The Fabulous Baker Boys - 1989?
+Jeff bridges
+10
+
+TV/Film: Births: Born Dec 4, 1949, he starred in the movie The Fisher King - 1991?
+Jeff bridges
+10
+
+TV/Film: Births: Born Dec 4, 1949, he starred in the movie The Iceman Cometh - 1973?
+Jeff bridges
+10
+
+TV/Film: Births: Born Dec 4, 1949, he starred in the movie The Last American Hero/Hard Driver - 1973?
+Jeff bridges
+10
+
+TV/Film: Births: Born Dec 4, 1949, he starred in the movie The Last Picture Show - 1971?
+Jeff bridges
+10
+
+TV/Film: Births: Born Dec 4, 1949, he starred in the movie The Mirror Has Two Faces - 1996?
+Jeff bridges
+10
+
+TV/Film: Births: Born Dec 4, 1949, he starred in the movie The Morning After - 1986?
+Jeff bridges
+10
+
+TV/Film: Births: Born Dec 4, 1949, he starred in the movie The Muse - 1999?
+Jeff bridges
+10
+
+TV/Film: Births: Born Dec 4, 1949, he starred in the movie The Vanishing - 1993?
+Jeff bridges
+10
+
+TV/Film: Births: Born Dec 4, 1949, he starred in the movie The Yin and Yang of Mr. Go - 1970?
+Jeff bridges
+10
+
+TV/Film: Births: Born Dec 4, 1949, he starred in the movie Thunderbolt and Lightfoot - 1974?
+Jeff bridges
+10
+
+TV/Film: Births: Born Dec 4, 1949, he starred in the movie Tron - 1982?
+Jeff bridges
+10
+
+TV/Film: Births: Born Dec 4, 1949, he starred in the movie Tucker: The Man and His Dream - 1988?
+Jeff bridges
+10
+
+TV/Film: Births: Born Dec 4, 1949, he starred in the movie White Squall - 1996?
+Jeff bridges
+10
+
+TV/Film: Births: Born Dec 4, 1949, he starred in the movie Wild Bill - 1995?
+Jeff bridges
+10
+
+TV/Film: Births: Born Dec 4, 1949, he starred in the movie Winter Kills - 1979?
+Jeff bridges
+10
+
+TV/Film: Births: Born Feb 18, 1954, he starred in the movie A Civil Action - 1998?
+John travolta
+10
+
+TV/Film: Births: Born Feb 18, 1954, he starred in the movie Battlefield Earth - 2000?
+John travolta
+10
+
+TV/Film: Births: Born Feb 18, 1954, he starred in the movie Blow Out - 1981?
+John travolta
+10
+
+TV/Film: Births: Born Feb 18, 1954, he starred in the movie Broken Arrow - 1996?
+John travolta
+10
+
+TV/Film: Births: Born Feb 18, 1954, he starred in the movie Carrie - 1976?
+John travolta
+10
+
+TV/Film: Births: Born Feb 18, 1954, he starred in the movie Face/Off - 1997?
+John travolta
+10
+
+TV/Film: Births: Born Feb 18, 1954, he starred in the movie Get Shorty - 1995?
+John travolta
+10
+
+TV/Film: Births: Born Feb 18, 1954, he starred in the movie Grease - 1978?
+John travolta
+10
+
+TV/Film: Births: Born Feb 18, 1954, he starred in the movie Look Who's Talking - 1989?
+John travolta
+10
+
+TV/Film: Births: Born Feb 18, 1954, he starred in the movie Look Who's Talking Now - 1993?
+John travolta
+10
+
+TV/Film: Births: Born Feb 18, 1954, he starred in the movie Look Who's Talking Too - 1990?
+John travolta
+10
+
+TV/Film: Births: Born Feb 18, 1954, he starred in the movie Mad City - 1997?
+John travolta
+10
+
+TV/Film: Births: Born Feb 18, 1954, he starred in the movie Michael - 1996?
+John travolta
+10
+
+TV/Film: Births: Born Feb 18, 1954, he starred in the movie Moment by Moment - 1978?
+John travolta
+10
+
+TV/Film: Births: Born Feb 18, 1954, he starred in the movie Perfect - 1985?
+John travolta
+10
+
+TV/Film: Births: Born Feb 18, 1954, he starred in the movie Phenomenon - 1996?
+John travolta
+10
+
+TV/Film: Births: Born Feb 18, 1954, he starred in the movie Primary Colors - 1998?
+John travolta
+10
+
+TV/Film: Births: Born Feb 18, 1954, he starred in the movie Pulp Fiction - 1994?
+John travolta
+10
+
+TV/Film: Births: Born Feb 18, 1954, he starred in the movie Saturday Night Fever - 1977?
+John travolta
+10
+
+TV/Film: Births: Born Feb 18, 1954, he starred in the movie She's So Lovely - 1997?
+John travolta
+10
+
+TV/Film: Births: Born Feb 18, 1954, he starred in the movie Shout - 1991?
+John travolta
+10
+
+TV/Film: Births: Born Feb 18, 1954, he starred in the movie Staying Alive - 1983?
+John travolta
+10
+
+TV/Film: Births: Born Feb 18, 1954, he starred in the movie The Boy in the Plastic Bubble - 1976?
+John travolta
+10
+
+TV/Film: Births: Born Feb 18, 1954, he starred in the movie The Devil's Rain - 1975?
+John travolta
+10
+
+TV/Film: Births: Born Feb 18, 1954, he starred in the movie The Experts - 1989?
+John travolta
+10
+
+TV/Film: Births: Born Feb 18, 1954, he starred in the movie The General's Daughter - 1999?
+John travolta
+10
+
+TV/Film: Births: Born Feb 18, 1954, he starred in the movie The Thin Red Line - 1998?
+John travolta
+10
+
+TV/Film: Births: Born Feb 18, 1954, he starred in the movie Two of a Kind - 1983?
+John travolta
+10
+
+TV/Film: Births: Born Feb 18, 1954, he starred in the movie Urban Cowboy - 1980?
+John travolta
+10
+
+TV/Film: Births: Born Feb 18, 1954, he starred in the movie White Man's Burden - 1995?
+John travolta
+10
+
+TV/Film: Births: Born Feb 22, 1975, She starred in the movie Altered States - 1980?
+Drew barrymore
+10
+
+TV/Film: Births: Born Feb 22, 1975, She starred in the movie Babes in Toyland - 1986?
+Drew barrymore
+10
+
+TV/Film: Births: Born Feb 22, 1975, She starred in the movie Bad Girls - 1994?
+Drew barrymore
+10
+
+TV/Film: Births: Born Feb 22, 1975, She starred in the movie Batman Forever - 1995?
+Drew barrymore
+10
+
+TV/Film: Births: Born Feb 22, 1975, She starred in the movie Boys on the Side - 1995?
+Drew barrymore
+10
+
+TV/Film: Births: Born Feb 22, 1975, She starred in the movie Cat's Eye - 1985?
+Drew barrymore
+10
+
+TV/Film: Births: Born Feb 22, 1975, She starred in the movie Conspiracy of Love - 1987?
+Drew barrymore
+10
+
+TV/Film: Births: Born Feb 22, 1975, She starred in the movie E.T.: The Extra-Terrestrial - 1982?
+Drew barrymore
+10
+
+TV/Film: Births: Born Feb 22, 1975, She starred in the movie Ever After: A Cinderella Story - 1998?
+Drew barrymore
+10
+
+TV/Film: Births: Born Feb 22, 1975, She starred in the movie Everyone Says I Love You - 1996?
+Drew barrymore
+10
+
+TV/Film: Births: Born Feb 22, 1975, She starred in the movie Far From Home - 1988?
+Drew barrymore
+10
+
+TV/Film: Births: Born Feb 22, 1975, She starred in the movie Firestarter - 1984?
+Drew barrymore
+10
+
+TV/Film: Births: Born Feb 22, 1975, She starred in the movie Home Fries - 1998?
+Drew barrymore
+10
+
+TV/Film: Births: Born Feb 22, 1975, She starred in the movie Inside the Goldmine - 1994?
+Drew barrymore
+10
+
+TV/Film: Births: Born Feb 22, 1975, She starred in the movie Irreconcilable Differences - 1984?
+Drew barrymore
+10
+
+TV/Film: Births: Born Feb 22, 1975, She starred in the movie Mad Love - 1995?
+Drew barrymore
+10
+
+TV/Film: Births: Born Feb 22, 1975, She starred in the movie Motorama - 1992?
+Drew barrymore
+10
+
+TV/Film: Births: Born Feb 22, 1975, She starred in the movie Never Been Kissed - 1999?
+Drew barrymore
+10
+
+TV/Film: Births: Born Feb 22, 1975, She starred in the movie No Place To Hide - 1993?
+Drew barrymore
+10
+
+TV/Film: Births: Born Feb 22, 1975, She starred in the movie Poison Ivy - 1992?
+Drew barrymore
+10
+
+TV/Film: Births: Born Feb 22, 1975, She starred in the movie Scream - 1996?
+Drew barrymore
+10
+
+TV/Film: Births: Born Feb 22, 1975, She starred in the movie See You in the Morning - 1989?
+Drew barrymore
+10
+
+TV/Film: Births: Born Feb 22, 1975, She starred in the movie The Wedding Singer - 1998?
+Drew barrymore
+10
+
+TV/Film: Births: Born Feb 22, 1975, She starred in the movie Titan A.E. - 2000?
+Drew barrymore
+10
+
+TV/Film: Births: Born Feb 22, 1975, She starred in the movie Wayne's World 2 - 1993?
+Drew barrymore
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie A Date With Judy - 1948?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie A Little Night Music: 1977?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie A Place in the Sun - 1951?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie Ash Wednesday - 1973?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie Beau Brummell - 1954?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie Between Friends - 1983?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie Boom! - 1968?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie Butterfield 8 - 1960?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie Callaway Went Thataway - 1951?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie Cat on a Hot Tin Roof - 1958?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie Cleopatra - 1963?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie Conspirator - 1949?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie Courage of Lassie - 1945?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie Cynthia - 1947?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie Divorce His____Divorce Hers - 1973?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie Doctor Faustus - 1967?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie Elephant Walk - 1954?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie Father of the Bride - 1950?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie Father's Little Dividend - 1951?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie Giant - 1956?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie Hammersmith Is Out - 1972?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie Ivanhoe - 1953?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie Jane Eyre - 1944?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie Julia Misbehaves - 1948?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie Lassie Come Home - 1943?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie Life With Father - 1947?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie Little Women - 1949?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie Love Is Better Than Ever - 1952?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie Malice in Wonderland - 1985?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie National Velvet - 1944?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie Night Watch - 1973?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie Poker Alice - 1987?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie Quo Vadis - 1951?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie Raintree County - 1957?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie Reflections in a Golden Eye - 1967?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie Rhapsody - 1954?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie Scent of Mystery - 1960?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie Secret Ceremony - 1968?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie Suddenly, Last Summer - 1959?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie Sweet Bird of Youth - 1989?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie The Big Hangover - 1950?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie The Blue Bird - 1976?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie The Comedians - 1967?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie The Driver's Seat /Identikit - 1974?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie The Flintstones - 1994?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie The Girl Who Had Everything - 1953?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie The Last Time I Saw Paris - 1954?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie The Mirror Crack'd - 1980?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie The Only Game in Town - 1970?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie The Sandpiper - 1965?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie The Taming of the Shrew - 1967?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie The V.I.P.'s - 1963?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie The White Cliffs of Dover - 1944?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie There Must Be a Pony - 1986?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie There's One Born Every Minute - 1942?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie Under Milk Wood - 1973?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie Victory at Entebbe - 1976?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie Who's Afraid of Virginia Woolf? - 1966?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie Winter Kills - 1979?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie X, Y and Zee - 1972?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Feb 27, 1932, She starred in the movie Young Toscanini - 1988?
+Elizabeth taylor
+10
+
+TV/Film: Births: Born Jan 12, 1955, She starred in the movie Blind Date - 1984?
+Kirstie alley
+10
+
+TV/Film: Births: Born Jan 12, 1955, She starred in the movie Chains o' Gold - 1994?
+Kirstie alley
+10
+
+TV/Film: Births: Born Jan 12, 1955, She starred in the movie Champions - 1983?
+Kirstie alley
+10
+
+TV/Film: Births: Born Jan 12, 1955, She starred in the movie Deconstructing Harry - 1997?
+Kirstie alley
+10
+
+TV/Film: Births: Born Jan 12, 1955, She starred in the movie Drop Dead Gorgeous - 1999?
+Kirstie alley
+10
+
+TV/Film: Births: Born Jan 12, 1955, She starred in the movie For Richer or Poorer - 1997?
+Kirstie alley
+10
+
+TV/Film: Births: Born Jan 12, 1955, She starred in the movie It Takes Two - 1995?
+Kirstie alley
+10
+
+TV/Film: Births: Born Jan 12, 1955, She starred in the movie Look Who's Talking - 1989?
+Kirstie alley
+10
+
+TV/Film: Births: Born Jan 12, 1955, She starred in the movie Look Who's Talking Now - 1993?
+Kirstie alley
+10
+
+TV/Film: Births: Born Jan 12, 1955, She starred in the movie Look Who's Talking Too - 1990?
+Kirstie alley
+10
+
+TV/Film: Births: Born Jan 12, 1955, She starred in the movie Loverboy - 1989?
+Kirstie alley
+10
+
+TV/Film: Births: Born Jan 12, 1955, She starred in the movie Madhouse - 1990?
+Kirstie alley
+10
+
+TV/Film: Births: Born Jan 12, 1955, She starred in the movie Nevada - 1997?
+Kirstie alley
+10
+
+TV/Film: Births: Born Jan 12, 1955, She starred in the movie One More Chance - 1981?
+Kirstie alley
+10
+
+TV/Film: Births: Born Jan 12, 1955, She starred in the movie Runaway - 1984?
+Kirstie alley
+10
+
+TV/Film: Births: Born Jan 12, 1955, She starred in the movie She's Having a Baby - 1988?
+Kirstie alley
+10
+
+TV/Film: Births: Born Jan 12, 1955, She starred in the movie Shoot To Kill - 1988?
+Kirstie alley
+10
+
+TV/Film: Births: Born Jan 12, 1955, She starred in the movie Sibling Rivalry - 1990?
+Kirstie alley
+10
+
+TV/Film: Births: Born Jan 12, 1955, She starred in the movie Star Trek II: The Wrath of Khan - 1982?
+Kirstie alley
+10
+
+TV/Film: Births: Born Jan 12, 1955, She starred in the movie Sticks and Stones - 1996?
+Kirstie alley
+10
+
+TV/Film: Births: Born Jan 12, 1955, She starred in the movie Summer School - 1987?
+Kirstie alley
+10
+
+TV/Film: Births: Born Jan 12, 1955, She starred in the movie Village of the Damned - 1995?
+Kirstie alley
+10
+
+TV/Film: Births: Born jan 18, 1955, he starred in the movie a century of cinema - 1994?
+Kevin costner
+10
+
+TV/Film: Births: Born jan 18, 1955, he starred in the movie a perfect world - 1993?
+Kevin costner
+10
+
+TV/Film: Births: Born jan 18, 1955, he starred in the movie American flyers - 1985?
+Kevin costner
+10
+
+TV/Film: Births: Born jan 18, 1955, he starred in the movie bull durham - 1988?
+Kevin costner
+10
+
+TV/Film: Births: Born jan 18, 1955, he starred in the movie chasing dreams - 1982?
+Kevin costner
+10
+
+TV/Film: Births: Born jan 18, 1955, he starred in the movie dances with wolves - 1990?
+Kevin costner
+10
+
+TV/Film: Births: Born jan 18, 1955, he starred in the movie fandango - 1985?
+Kevin costner
+10
+
+TV/Film: Births: Born jan 18, 1955, he starred in the movie field of dreams - 1989?
+Kevin costner
+10
+
+TV/Film: Births: Born jan 18, 1955, he starred in the movie for love of the game - 1999?
+Kevin costner
+10
+
+TV/Film: Births: Born jan 18, 1955, he starred in the movie frances - 1982?
+Kevin costner
+10
+
+TV/Film: Births: Born jan 18, 1955, he starred in the movie jfk - 1991?
+Kevin costner
+10
+
+TV/Film: Births: Born jan 18, 1955, he starred in the movie message in a bottle - 1999?
+Kevin costner
+10
+
+TV/Film: Births: Born jan 18, 1955, he starred in the movie night shift - 1982?
+Kevin costner
+10
+
+TV/Film: Births: Born jan 18, 1955, he starred in the movie no way out - 1987?
+Kevin costner
+10
+
+TV/Film: Births: Born jan 18, 1955, he starred in the movie revenge - 1990?
+Kevin costner
+10
+
+TV/Film: Births: Born jan 18, 1955, he starred in the movie robin hood: prince of thieves - 1991?
+Kevin costner
+10
+
+TV/Film: Births: Born jan 18, 1955, he starred in the movie shadows run black - 1981?
+Kevin costner
+10
+
+TV/Film: Births: Born jan 18, 1955, he starred in the movie silverado - 1985?
+Kevin costner
+10
+
+TV/Film: Births: Born jan 18, 1955, he starred in the movie sizzle beach, u.s.a./malibu hot summer - 1986?
+Kevin costner
+10
+
+TV/Film: Births: Born jan 18, 1955, he starred in the movie stacy's knights - 1983?
+Kevin costner
+10
+
+TV/Film: Births: Born jan 18, 1955, he starred in the movie table for five - 1982?
+Kevin costner
+10
+
+TV/Film: Births: Born jan 18, 1955, he starred in the movie testament - 1983?
+Kevin costner
+10
+
+TV/Film: Births: Born jan 18, 1955, he starred in the movie the bodyguard - 1992?
+Kevin costner
+10
+
+TV/Film: Births: Born jan 18, 1955, he starred in the movie the gunrunner - 1983?
+Kevin costner
+10
+
+TV/Film: Births: Born jan 18, 1955, he starred in the movie the postman - 1997?
+Kevin costner
+10
+
+TV/Film: Births: Born jan 18, 1955, he starred in the movie the untouchables - 1987?
+Kevin costner
+10
+
+TV/Film: Births: Born jan 18, 1955, he starred in the movie the war - 1994?
+Kevin costner
+10
+
+TV/Film: Births: Born jan 18, 1955, he starred in the movie tin cup - 1996?
+Kevin costner
+10
+
+TV/Film: Births: Born jan 18, 1955, he starred in the movie u.s.a. - 1986?
+Kevin costner
+10
+
+TV/Film: Births: Born jan 18, 1955, he starred in the movie waterworld - 1995?
+Kevin costner
+10
+
+TV/Film: Births: Born jan 18, 1955, he starred in the movie wyatt earp - 1994?
+Kevin costner
+10
+
+TV/Film: Births: Born jan 3, 1956, he starred in the movie air America - 1990?
+Mel gibson
+10
+
+TV/Film: Births: Born jan 3, 1956, he starred in the movie attack force z - 1980?
+Mel gibson
+10
+
+TV/Film: Births: Born jan 3, 1956, he starred in the movie bird on a wire - 1990?
+Mel gibson
+10
+
+TV/Film: Births: Born jan 3, 1956, he starred in the movie braveheart - 1995?
+Mel gibson
+10
+
+TV/Film: Births: Born jan 3, 1956, he starred in the movie chicken run - 2000?
+Mel gibson
+10
+
+TV/Film: Births: Born jan 3, 1956, he starred in the movie conspiracy theory - 1997?
+Mel gibson
+10
+
+TV/Film: Births: Born jan 3, 1956, he starred in the movie fathers' day - 1997?
+Mel gibson
+10
+
+TV/Film: Births: Born jan 3, 1956, he starred in the movie forever young - 1992?
+Mel gibson
+10
+
+TV/Film: Births: Born jan 3, 1956, he starred in the movie gallipoli - 1981?
+Mel gibson
+10
+
+TV/Film: Births: Born jan 3, 1956, he starred in the movie hamlet - 1990?
+Mel gibson
+10
+
+TV/Film: Births: Born jan 3, 1956, he starred in the movie lethal weapon - 1987?
+Mel gibson
+10
+
+TV/Film: Births: Born jan 3, 1956, he starred in the movie lethal weapon 2 - 1989?
+Mel gibson
+10
+
+TV/Film: Births: Born jan 3, 1956, he starred in the movie mad max - 1980?
+Mel gibson
+10
+
+TV/Film: Births: Born jan 3, 1956, he starred in the movie mad max: beyond thunderdome - 1985?
+Mel gibson
+10
+
+TV/Film: Births: Born jan 3, 1956, he starred in the movie maverick - 1994?
+Mel gibson
+10
+
+TV/Film: Births: Born jan 3, 1956, he starred in the movie mrs. soffel - 1984?
+Mel gibson
+10
+
+TV/Film: Births: Born jan 3, 1956, he starred in the movie payback - 1999?
+Mel gibson
+10
+
+TV/Film: Births: Born jan 3, 1956, he starred in the movie ransom - 1996?
+Mel gibson
+10
+
+TV/Film: Births: Born jan 3, 1956, he starred in the movie summer city/coast of terror - 1977?
+Mel gibson
+10
+
+TV/Film: Births: Born jan 3, 1956, he starred in the movie tequila sunrise - 1988?
+Mel gibson
+10
+
+TV/Film: Births: Born jan 3, 1956, he starred in the movie the bounty - 1984?
+Mel gibson
+10
+
+TV/Film: Births: Born jan 3, 1956, he starred in the movie the patriot - 2000?
+Mel gibson
+10
+
+TV/Film: Births: Born jan 3, 1956, he starred in the movie the river - 1984?
+Mel gibson
+10
+
+TV/Film: Births: Born jan 3, 1956, he starred in the movie the road warrior - 1982?
+Mel gibson
+10
+
+TV/Film: Births: Born jan 3, 1956, he starred in the movie the year of living dangerously - 1983?
+Mel gibson
+10
+
+TV/Film: Births: Born jan 3, 1956, he starred in the movie tim - 1979?
+Mel gibson
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie A Bridge Too Far - 1977?
+Gene hackman
+10
+
+TV/Film: Births: Born jan 30, 1930, he starred in the movie a covenant with death - 1967?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie Absolute Power - 1997?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie All Night Long - 1981?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie Another Woman - 1988?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie Antz - 1998?
+Gene hackman
+10
+
+TV/Film: Births: Born jan 30, 1930, he starred in the movie banning - 1967?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie Bat 21 - 1988?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie Bite the Bullet - 1975?
+Gene hackman
+10
+
+TV/Film: Births: Born jan 30, 1930, he starred in the movie bonnie and clyde - 1967?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie Cisco Pike - 1972?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie Class Action - 1991?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie Company Business - 1991?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie Crimson Tide - 1995?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie Doctors' Wives - 1971?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie Downhill Racer - 1969?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie Enemy of the State - 1998?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie Eureka - 1981?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie Extreme Measures - 1996?
+Gene hackman
+10
+
+TV/Film: Births: Born jan 30, 1930, he starred in the movie first to fight - 1967?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie For Better, For Worse - 1974?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie French Connection II - 1975?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie Full Moon in Blue Water - 1988?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie Geronimo: An American Legend - 1993?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie Get Shorty - 1995?
+Gene hackman
+10
+
+TV/Film: Births: Born jan 30, 1930, he starred in the movie hawaii - 1966?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie Hoosiers - 1986?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie I Never Sang for My Father - 1970?
+Gene hackman
+10
+
+TV/Film: Births: Born jan 30, 1930, he starred in the movie lilith - 1964?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie Loose Cannons - 1989?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie Lucky Lady - 1975?
+Gene hackman
+10
+
+TV/Film: Births: Born jan 30, 1930, he starred in the movie mad dog morgan/mad dog - 1961?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie March or Die - 1977?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie Marooned - 1969?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie Mississippi Burning - 1988?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie Misunderstood - 1984?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie Narrow Margin - 1990?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie Night Moves - 1975?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie No Way Out - 1987?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie Postcards From the Edge - 1990?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie Power - 1986?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie Prime Cut - 1972?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie Reds - 1981?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie Riot - 1969?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie Scarecrow - 1973?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie Shadow on the Land - 1968?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie Split Decisions - 1988?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie Superman - 1978?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie Superman II - 1981?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie Superman IV: The Quest For Peace - 1987?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie Target - 1985?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie The Birdcage - 1996?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie The Chamber - 1996?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie The Conversation - 1974?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie The Domino Principle - 1977?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie The Firm - 1993?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie The French Connection - 1971?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie The Gypsy Moths - 1969?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie The Hunting Party - 1971?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie The Package - 1989?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie The Poseidon Adventure - 1972?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie The Quick and the Dead - 1995?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie The Split - 1968?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie Twice in a Lifetime - 1985?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie Twilight - 1998?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie Uncommon Valor - 1983?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie Under Fire - 1983?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie Unforgiven - 1992?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie Wyatt Earp - 1994?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie Young Frankenstein - 1974?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 30, 1930, he starred in the movie Zandy's Bride - 1974?
+Gene hackman
+10
+
+TV/Film: Births: Born Jan 7, 1964, he starred in the movie 8MM - 1999?
+Nicolas cage
+10
+
+TV/Film: Births: Born Jan 7, 1964, he starred in the movie A Century of Cinema - 1994?
+Nicolas cage
+10
+
+TV/Film: Births: Born Jan 7, 1964, he starred in the movie Amos & Andrew - 1993?
+Nicolas cage
+10
+
+TV/Film: Births: Born Jan 7, 1964, he starred in the movie Birdy - 1984?
+Nicolas cage
+10
+
+TV/Film: Births: Born Jan 7, 1964, he starred in the movie Bringing Out the Dead - 1999?
+Nicolas cage
+10
+
+TV/Film: Births: Born Jan 7, 1964, he starred in the movie City of Angels - 1998?
+Nicolas cage
+10
+
+TV/Film: Births: Born Jan 7, 1964, he starred in the movie Con Air - 1997?
+Nicolas cage
+10
+
+TV/Film: Births: Born Jan 7, 1964, he starred in the movie Deadfall - 1993?
+Nicolas cage
+10
+
+TV/Film: Births: Born Jan 7, 1964, he starred in the movie Face/Off - 1997?
+Nicolas cage
+10
+
+TV/Film: Births: Born Jan 7, 1964, he starred in the movie Fast Times at Ridgemont High - 1982?
+Nicolas cage
+10
+
+TV/Film: Births: Born Jan 7, 1964, he starred in the movie Firebirds - 1990?
+Nicolas cage
+10
+
+TV/Film: Births: Born Jan 7, 1964, he starred in the movie Gone in 60 Seconds - 2000?
+Nicolas cage
+10
+
+TV/Film: Births: Born Jan 7, 1964, he starred in the movie Guarding Tess - 1994?
+Nicolas cage
+10
+
+TV/Film: Births: Born Jan 7, 1964, he starred in the movie Honeymoon in Vegas - 1992?
+Nicolas cage
+10
+
+TV/Film: Births: Born Jan 7, 1964, he starred in the movie It Could Happen to You - 1994?
+Nicolas cage
+10
+
+TV/Film: Births: Born Jan 7, 1964, he starred in the movie Kiss of Death - 1995?
+Nicolas cage
+10
+
+TV/Film: Births: Born Jan 7, 1964, he starred in the movie Leaving Las Vegas - 1995?
+Nicolas cage
+10
+
+TV/Film: Births: Born Jan 7, 1964, he starred in the movie Moonstruck - 1987?
+Nicolas cage
+10
+
+TV/Film: Births: Born Jan 7, 1964, he starred in the movie Peggy Sue Got Married - 1986?
+Nicolas cage
+10
+
+TV/Film: Births: Born Jan 7, 1964, he starred in the movie Racing With the Moon - 1984?
+Nicolas cage
+10
+
+TV/Film: Births: Born Jan 7, 1964, he starred in the movie Raising Arizona - 1987?
+Nicolas cage
+10
+
+TV/Film: Births: Born Jan 7, 1964, he starred in the movie Red Rock West - 1992?
+Nicolas cage
+10
+
+TV/Film: Births: Born Jan 7, 1964, he starred in the movie Rumble Fish - 1983?
+Nicolas cage
+10
+
+TV/Film: Births: Born Jan 7, 1964, he starred in the movie Snake Eyes - 1998?
+Nicolas cage
+10
+
+TV/Film: Births: Born Jan 7, 1964, he starred in the movie Tempo di Uccidere/Time to Kill/The Short Cut - 1989?
+Nicolas cage
+10
+
+TV/Film: Births: Born Jan 7, 1964, he starred in the movie The Boy in Blue - 1986?
+Nicolas cage
+10
+
+TV/Film: Births: Born Jan 7, 1964, he starred in the movie The Cotton Club - 1984?
+Nicolas cage
+10
+
+TV/Film: Births: Born Jan 7, 1964, he starred in the movie The Rock - 1996?
+Nicolas cage
+10
+
+TV/Film: Births: Born Jan 7, 1964, he starred in the movie Trapped in Paradise - 1994?
+Nicolas cage
+10
+
+TV/Film: Births: Born Jan 7, 1964, he starred in the movie Valley Girl - 1983?
+Nicolas cage
+10
+
+TV/Film: Births: Born Jan 7, 1964, he starred in the movie Vampire's Kiss - 1989?
+Nicolas cage
+10
+
+TV/Film: Births: Born Jan 7, 1964, he starred in the movie Wild at Heart - 1990?
+Nicolas cage
+10
+
+TV/Film: Births: Born Jan 7, 1964, he starred in the movie Zandalee - 1991?
+Nicolas cage
+10
+
+TV/Film: Births: Born Jan 8, 1935, he starred in the movie Blue Hawaii - 1961?
+Elvis presley
+10
+
+TV/Film: Births: Born Jan 8, 1935, he starred in the movie Change of Habit - 1969?
+Elvis presley
+10
+
+TV/Film: Births: Born Jan 8, 1935, he starred in the movie Charro! - 1969?
+Elvis presley
+10
+
+TV/Film: Births: Born Jan 8, 1935, he starred in the movie Clambake - 1967?
+Elvis presley
+10
+
+TV/Film: Births: Born Jan 8, 1935, he starred in the movie Double Trouble - 1967?
+Elvis presley
+10
+
+TV/Film: Births: Born Jan 8, 1935, he starred in the movie Easy Come, Easy Go - 1967?
+Elvis presley
+10
+
+TV/Film: Births: Born Jan 8, 1935, he starred in the movie Flaming Star - 1960?
+Elvis presley
+10
+
+TV/Film: Births: Born Jan 8, 1935, he starred in the movie Follow That Dream - 1962?
+Elvis presley
+10
+
+TV/Film: Births: Born Jan 8, 1935, he starred in the movie Frankie and Johnny - 1966?
+Elvis presley
+10
+
+TV/Film: Births: Born Jan 8, 1935, he starred in the movie Fun in Acapulco - 1963?
+Elvis presley
+10
+
+TV/Film: Births: Born Jan 8, 1935, he starred in the movie G.I. Blues - 1960?
+Elvis presley
+10
+
+TV/Film: Births: Born Jan 8, 1935, he starred in the movie Girl Happy - 1965?
+Elvis presley
+10
+
+TV/Film: Births: Born Jan 8, 1935, he starred in the movie Girls! Girls! Girls! - 1962?
+Elvis presley
+10
+
+TV/Film: Births: Born Jan 8, 1935, he starred in the movie Harum Scarum - 1965?
+Elvis presley
+10
+
+TV/Film: Births: Born Jan 8, 1935, he starred in the movie It Happened at the World's Fair - 1963?
+Elvis presley
+10
+
+TV/Film: Births: Born Jan 8, 1935, he starred in the movie Jailhouse Rock - 1957?
+Elvis presley
+10
+
+TV/Film: Births: Born Jan 8, 1935, he starred in the movie Kid Galahad - 1962?
+Elvis presley
+10
+
+TV/Film: Births: Born Jan 8, 1935, he starred in the movie King Creole - 1958?
+Elvis presley
+10
+
+TV/Film: Births: Born Jan 8, 1935, he starred in the movie Kissin' Cousins - 1964?
+Elvis presley
+10
+
+TV/Film: Births: Born Jan 8, 1935, he starred in the movie Live a Little, Love a Little - 1968?
+Elvis presley
+10
+
+TV/Film: Births: Born Jan 8, 1935, he starred in the movie Love Me Tender - 1956?
+Elvis presley
+10
+
+TV/Film: Births: Born Jan 8, 1935, he starred in the movie Loving You - 1957?
+Elvis presley
+10
+
+TV/Film: Births: Born Jan 8, 1935, he starred in the movie Paradise, Hawaiian Style - 1966?
+Elvis presley
+10
+
+TV/Film: Births: Born Jan 8, 1935, he starred in the movie Roustabout - 1964?
+Elvis presley
+10
+
+TV/Film: Births: Born Jan 8, 1935, he starred in the movie Speedway - 1968?
+Elvis presley
+10
+
+TV/Film: Births: Born Jan 8, 1935, he starred in the movie Spinout - 1966?
+Elvis presley
+10
+
+TV/Film: Births: Born Jan 8, 1935, he starred in the movie Stay Away, Joe - 1968?
+Elvis presley
+10
+
+TV/Film: Births: Born Jan 8, 1935, he starred in the movie The Trouble With Girls - 1969?
+Elvis presley
+10
+
+TV/Film: Births: Born Jan 8, 1935, he starred in the movie Tickle Me - 1965?
+Elvis presley
+10
+
+TV/Film: Births: Born Jan 8, 1935, he starred in the movie Viva Las Vegas - 1964?
+Elvis presley
+10
+
+TV/Film: Births: Born Jan 8, 1935, he starred in the movie Wild in the Country - 1961?
+Elvis presley
+10
+
+TV/Film: Births: Born January 23rd, 1899 in NYC. Won Best Actor Oscar in 1953, Died in 1957?
+Humphrey Bogart
+10
+
+TV/Film: Births: Born Jul 21, 1952, he starred in the movie An Evening With Robin Williams - 1983?
+Robin williams
+10
+
+TV/Film: Births: Born Jul 21, 1952, he starred in the movie Awakenings - 1990?
+Robin williams
+10
+
+TV/Film: Births: Born Jul 21, 1952, he starred in the movie Being Human - 1994?
+Robin williams
+10
+
+TV/Film: Births: Born Jul 21, 1952, he starred in the movie Bicentennial Man - 1999?
+Robin williams
+10
+
+TV/Film: Births: Born Jul 21, 1952, he starred in the movie Cadillac Man - 1990?
+Robin williams
+10
+
+TV/Film: Births: Born Jul 21, 1952, he starred in the movie Can I Do It . . . 'Till I Need Glasses - 1977?
+Robin williams
+10
+
+TV/Film: Births: Born Jul 21, 1952, he starred in the movie Children of Babylon - 1980?
+Robin williams
+10
+
+TV/Film: Births: Born Jul 21, 1952, he starred in the movie Club Paradise - 1986?
+Robin williams
+10
+
+TV/Film: Births: Born Jul 21, 1952, he starred in the movie Dead Again - 1991?
+Robin williams
+10
+
+TV/Film: Births: Born Jul 21, 1952, he starred in the movie Dead Poets Society - 1989?
+Robin williams
+10
+
+TV/Film: Births: Born Jul 21, 1952, he starred in the movie Fathers' Day - 1997?
+Robin williams
+10
+
+TV/Film: Births: Born Jul 21, 1952, he starred in the movie FernGully: The Last Rainforest - 1992?
+Robin williams
+10
+
+TV/Film: Births: Born Jul 21, 1952, he starred in the movie Flubber - 1997?
+Robin williams
+10
+
+TV/Film: Births: Born Jul 21, 1952, he starred in the movie Get Bruce - 1999?
+Robin williams
+10
+
+TV/Film: Births: Born Jul 21, 1952, he starred in the movie Good Morning, Vietnam - 1987?
+Robin williams
+10
+
+TV/Film: Births: Born Jul 21, 1952, he starred in the movie Good Will Hunting - 1997?
+Robin williams
+10
+
+TV/Film: Births: Born Jul 21, 1952, he starred in the movie Hamlet - 1996?
+Robin williams
+10
+
+TV/Film: Births: Born Jul 21, 1952, he starred in the movie Hook - 1991?
+Robin williams
+10
+
+TV/Film: Births: Born Jul 21, 1952, he starred in the movie Jack - 1996?
+Robin williams
+10
+
+TV/Film: Births: Born Jul 21, 1952, he starred in the movie Jakob the Liar - 1999?
+Robin williams
+10
+
+TV/Film: Births: Born Jul 21, 1952, he starred in the movie Jumanji - 1995?
+Robin williams
+10
+
+TV/Film: Births: Born Jul 21, 1952, he starred in the movie Moscow on the Hudson - 1984?
+Robin williams
+10
+
+TV/Film: Births: Born Jul 21, 1952, he starred in the movie Mrs. Doubtfire - 1993?
+Robin williams
+10
+
+TV/Film: Births: Born Jul 21, 1952, he starred in the movie Nine Months - 1995?
+Robin williams
+10
+
+TV/Film: Births: Born Jul 21, 1952, he starred in the movie Patch Adams - 1998?
+Robin williams
+10
+
+TV/Film: Births: Born Jul 21, 1952, he starred in the movie Popeye - 1980?
+Robin williams
+10
+
+TV/Film: Births: Born Jul 21, 1952, he starred in the movie Seize the Day - 1986?
+Robin williams
+10
+
+TV/Film: Births: Born Jul 21, 1952, he starred in the movie Shakes the Clown - 1991?
+Robin williams
+10
+
+TV/Film: Births: Born Jul 21, 1952, he starred in the movie The Adventures of Baron Munchausen - 1988?
+Robin williams
+10
+
+TV/Film: Births: Born Jul 21, 1952, he starred in the movie The Best of Times - 1986?
+Robin williams
+10
+
+TV/Film: Births: Born Jul 21, 1952, he starred in the movie The Birdcage - 1996?
+Robin williams
+10
+
+TV/Film: Births: Born Jul 21, 1952, he starred in the movie The Fisher King - 1991?
+Robin williams
+10
+
+TV/Film: Births: Born Jul 21, 1952, he starred in the movie The Secret Agent - 1996?
+Robin williams
+10
+
+TV/Film: Births: Born Jul 21, 1952, he starred in the movie The Survivors - 1983?
+Robin williams
+10
+
+TV/Film: Births: Born Jul 21, 1952, he starred in the movie The World According to Garp - 1982?
+Robin williams
+10
+
+TV/Film: Births: Born Jul 21, 1952, he starred in the movie Toys - 1992?
+Robin williams
+10
+
+TV/Film: Births: Born Jul 21, 1952, he starred in the movie What Dreams May Come - 1998?
+Robin williams
+10
+
+TV/Film: Births: Born Jul 6, 1946, he starred in the movie A Century of Cinema - 1994?
+Sylvester stallone
+10
+
+TV/Film: Births: Born Jul 6, 1946, he starred in the movie Assassins - 1995?
+Sylvester stallone
+10
+
+TV/Film: Births: Born Jul 6, 1946, he starred in the movie Bananas - 1971?
+Sylvester stallone
+10
+
+TV/Film: Births: Born Jul 6, 1946, he starred in the movie Burn Hollywood Burn: An Alan Smithee Film - 1998?
+Sylvester stallone
+10
+
+TV/Film: Births: Born Jul 6, 1946, he starred in the movie Cannonball - 1976?
+Sylvester stallone
+10
+
+TV/Film: Births: Born Jul 6, 1946, he starred in the movie Capone - 1975?
+Sylvester stallone
+10
+
+TV/Film: Births: Born Jul 6, 1946, he starred in the movie Cliffhanger - 1993?
+Sylvester stallone
+10
+
+TV/Film: Births: Born Jul 6, 1946, he starred in the movie Cobra - 1986?
+Sylvester stallone
+10
+
+TV/Film: Births: Born Jul 6, 1946, he starred in the movie Cop Land - 1997?
+Sylvester stallone
+10
+
+TV/Film: Births: Born Jul 6, 1946, he starred in the movie Daylight - 1996?
+Sylvester stallone
+10
+
+TV/Film: Births: Born Jul 6, 1946, he starred in the movie Death Race 2000 - 1975?
+Sylvester stallone
+10
+
+TV/Film: Births: Born Jul 6, 1946, he starred in the movie Demolition Man - 1993?
+Sylvester stallone
+10
+
+TV/Film: Births: Born Jul 6, 1946, he starred in the movie F.I.S.T. - 1978?
+Sylvester stallone
+10
+
+TV/Film: Births: Born Jul 6, 1946, he starred in the movie Farewell, My Lovely - 1975?
+Sylvester stallone
+10
+
+TV/Film: Births: Born Jul 6, 1946, he starred in the movie First Blood - 1982?
+Sylvester stallone
+10
+
+TV/Film: Births: Born Jul 6, 1946, he starred in the movie Judge Dredd - 1995?
+Sylvester stallone
+10
+
+TV/Film: Births: Born Jul 6, 1946, he starred in the movie Klute - 1971?
+Sylvester stallone
+10
+
+TV/Film: Births: Born Jul 6, 1946, he starred in the movie Lock Up - 1989?
+Sylvester stallone
+10
+
+TV/Film: Births: Born Jul 6, 1946, he starred in the movie Nighthawks - 1981?
+Sylvester stallone
+10
+
+TV/Film: Births: Born Jul 6, 1946, he starred in the movie No Place To Hide - 1975?
+Sylvester stallone
+10
+
+TV/Film: Births: Born Jul 6, 1946, he starred in the movie Oscar - 1991?
+Sylvester stallone
+10
+
+TV/Film: Births: Born Jul 6, 1946, he starred in the movie Over the Top - 1987?
+Sylvester stallone
+10
+
+TV/Film: Births: Born Jul 6, 1946, he starred in the movie Paradise Alley - 1978?
+Sylvester stallone
+10
+
+TV/Film: Births: Born Jul 6, 1946, he starred in the movie Party at Kitty & Stud's/The Italian Stallion - 1970?
+Sylvester stallone
+10
+
+TV/Film: Births: Born Jul 6, 1946, he starred in the movie Rambo III - 1988?
+Sylvester stallone
+10
+
+TV/Film: Births: Born Jul 6, 1946, he starred in the movie Rambo: First Blood Part II - 1985?
+Sylvester stallone
+10
+
+TV/Film: Births: Born Jul 6, 1946, he starred in the movie Rebel - 1973?
+Sylvester stallone
+10
+
+TV/Film: Births: Born Jul 6, 1946, he starred in the movie Rhinestone - 1984?
+Sylvester stallone
+10
+
+TV/Film: Births: Born Jul 6, 1946, he starred in the movie Rocky - 1976?
+Sylvester stallone
+10
+
+TV/Film: Births: Born Jul 6, 1946, he starred in the movie Rocky II - 1979?
+Sylvester stallone
+10
+
+TV/Film: Births: Born Jul 6, 1946, he starred in the movie Rocky III - 1982?
+Sylvester stallone
+10
+
+TV/Film: Births: Born Jul 6, 1946, he starred in the movie Rocky IV - 1985?
+Sylvester stallone
+10
+
+TV/Film: Births: Born Jul 6, 1946, he starred in the movie Rocky V - 1990?
+Sylvester stallone
+10
+
+TV/Film: Births: Born Jul 6, 1946, he starred in the movie Staying Alive - 1983?
+Sylvester stallone
+10
+
+TV/Film: Births: Born Jul 6, 1946, he starred in the movie Stop! Or My Mom Will Shoot - 1992?
+Sylvester stallone
+10
+
+TV/Film: Births: Born Jul 6, 1946, he starred in the movie Tango and Cash - 1989?
+Sylvester stallone
+10
+
+TV/Film: Births: Born Jul 6, 1946, he starred in the movie The Lords of Flatbush - 1974?
+Sylvester stallone
+10
+
+TV/Film: Births: Born Jul 6, 1946, he starred in the movie The Prisoner of Second Avenue - 1975?
+Sylvester stallone
+10
+
+TV/Film: Births: Born Jul 6, 1946, he starred in the movie The Specialist - 1994?
+Sylvester stallone
+10
+
+TV/Film: Births: Born Jul 6, 1946, he starred in the movie Victory/Escape to Victory - 1981?
+Sylvester stallone
+10
+
+TV/Film: Births: Born July 1, 1952, he starred in the movie 1941 - 1979?
+Dan akroyd
+10
+
+TV/Film: Births: Born July 1, 1952, he starred in the movie A Century of Cinema - 1994?
+Dan akroyd
+10
+
+TV/Film: Births: Born July 1, 1952, he starred in the movie Caddyshack II - 1988?
+Dan akroyd
+10
+
+TV/Film: Births: Born July 1, 1952, he starred in the movie Celtic Pride - 1996?
+Dan akroyd
+10
+
+TV/Film: Births: Born July 1, 1952, he starred in the movie Chaplin - 1992?
+Dan akroyd
+10
+
+TV/Film: Births: Born July 1, 1952, he starred in the movie Comedy Music Videos - 1986?
+Dan akroyd
+10
+
+TV/Film: Births: Born July 1, 1952, he starred in the movie Diamonds - 1999?
+Dan akroyd
+10
+
+TV/Film: Births: Born July 1, 1952, he starred in the movie Doctor Detroit - 1983?
+Dan akroyd
+10
+
+TV/Film: Births: Born July 1, 1952, he starred in the movie Dragnet - 1987?
+Dan akroyd
+10
+
+TV/Film: Births: Born July 1, 1952, he starred in the movie Driving Miss Daisy - 1989?
+Dan akroyd
+10
+
+TV/Film: Births: Born July 1, 1952, he starred in the movie Exit to Eden - 1994?
+Dan akroyd
+10
+
+TV/Film: Births: Born July 1, 1952, he starred in the movie Feeling Minnesota - 1996?
+Dan akroyd
+10
+
+TV/Film: Births: Born July 1, 1952, he starred in the movie Getting Away With Murder - 1996?
+Dan akroyd
+10
+
+TV/Film: Births: Born July 1, 1952, he starred in the movie Ghostbusters - 1984?
+Dan akroyd
+10
+
+TV/Film: Births: Born July 1, 1952, he starred in the movie Ghostbusters 2 - 1989?
+Dan akroyd
+10
+
+TV/Film: Births: Born July 1, 1952, he starred in the movie Grosse Pointe Blank - 1997?
+Dan akroyd
+10
+
+TV/Film: Births: Born July 1, 1952, he starred in the movie Indiana Jones and the Temple of Doom - 1984?
+Dan akroyd
+10
+
+TV/Film: Births: Born July 1, 1952, he starred in the movie Into the Night - 1985?
+Dan akroyd
+10
+
+TV/Film: Births: Born July 1, 1952, he starred in the movie It Came From Hollywood - 1982?
+Dan akroyd
+10
+
+TV/Film: Births: Born July 1, 1952, he starred in the movie Loose Cannons - 1989?
+Dan akroyd
+10
+
+TV/Film: Births: Born July 1, 1952, he starred in the movie Love at First Sight - 1977?
+Dan akroyd
+10
+
+TV/Film: Births: Born July 1, 1952, he starred in the movie Masters of Menace - 1991?
+Dan akroyd
+10
+
+TV/Film: Births: Born July 1, 1952, he starred in the movie Mr. Mike's Mondo Video - 1979?
+Dan akroyd
+10
+
+TV/Film: Births: Born July 1, 1952, he starred in the movie My Fellow Americans - 1996?
+Dan akroyd
+10
+
+TV/Film: Births: Born July 1, 1952, he starred in the movie My Girl - 1991?
+Dan akroyd
+10
+
+TV/Film: Births: Born July 1, 1952, he starred in the movie My Girl 2 - 1994?
+Dan akroyd
+10
+
+TV/Film: Births: Born July 1, 1952, he starred in the movie My Stepmother Is an Alien - 1988?
+Dan akroyd
+10
+
+TV/Film: Births: Born July 1, 1952, he starred in the movie Neighbors - 1981?
+Dan akroyd
+10
+
+TV/Film: Births: Born July 1, 1952, he starred in the movie Nothing But Trouble - 1991?
+Dan akroyd
+10
+
+TV/Film: Births: Born July 1, 1952, he starred in the movie Nothing Lasts Forever - 1984?
+Dan akroyd
+10
+
+TV/Film: Births: Born July 1, 1952, he starred in the movie Sgt. Bilko - 1996?
+Dan akroyd
+10
+
+TV/Film: Births: Born July 1, 1952, he starred in the movie Sneakers - 1992?
+Dan akroyd
+10
+
+TV/Film: Births: Born July 1, 1952, he starred in the movie Spies Like Us - 1985?
+Dan akroyd
+10
+
+TV/Film: Births: Born July 1, 1952, he starred in the movie The Couch Trip - 1988?
+Dan akroyd
+10
+
+TV/Film: Births: Born July 1, 1952, he starred in the movie The Gift of Winter - 1974?
+Dan akroyd
+10
+
+TV/Film: Births: Born July 1, 1952, he starred in the movie The Great Outdoors - 1988?
+Dan akroyd
+10
+
+TV/Film: Births: Born July 1, 1952, he starred in the movie This Is My Life - 1992?
+Dan akroyd
+10
+
+TV/Film: Births: Born July 1, 1952, he starred in the movie Tommy Boy - 1995?
+Dan akroyd
+10
+
+TV/Film: Births: Born July 1, 1952, he starred in the movie Trading Places - 1983?
+Dan akroyd
+10
+
+TV/Film: Births: Born July 1, 1952, he starred in the movie Twilight Zone____The Movie - 1983?
+Dan akroyd
+10
+
+TV/Film: Births: Born July 1, 1967, She starred in the movie Barb Wire - 1996?
+Pamela anderson
+10
+
+TV/Film: Births: Born July 1, 1967, She starred in the movie Naked Souls - 1995?
+Pamela anderson
+10
+
+TV/Film: Births: Born July 1, 1967, She starred in the movie Raw Justice - 1994?
+Pamela anderson
+10
+
+TV/Film: Births: Born July 1, 1967, She starred in the movie Snapdragon - 1993?
+Pamela anderson
+10
+
+TV/Film: Births: Born July 1, 1967, She starred in the movie The Taking of Beverly Hills - 1992?
+Pamela anderson
+10
+
+TV/Film: Births: Born July 13, 1942, he starred in the movie A Century of Cinema - 1994?
+Harrison ford
+10
+
+TV/Film: Births: Born July 13, 1942, he starred in the movie A Time for Killing - 1967?
+Harrison ford
+10
+
+TV/Film: Births: Born July 13, 1942, he starred in the movie Air Force One - 1997?
+Harrison ford
+10
+
+TV/Film: Births: Born July 13, 1942, he starred in the movie American Graffiti - 1973?
+Harrison ford
+10
+
+TV/Film: Births: Born July 13, 1942, he starred in the movie Apocalypse Now - 1979?
+Harrison ford
+10
+
+TV/Film: Births: Born July 13, 1942, he starred in the movie Blade Runner - 1982?
+Harrison ford
+10
+
+TV/Film: Births: Born July 13, 1942, he starred in the movie Clear and Present Danger - 1994?
+Harrison ford
+10
+
+TV/Film: Births: Born July 13, 1942, he starred in the movie Dead Heat on a Merry-Go-Round - 1966?
+Harrison ford
+10
+
+TV/Film: Births: Born July 13, 1942, he starred in the movie Force 10 From Navarone - 1978?
+Harrison ford
+10
+
+TV/Film: Births: Born July 13, 1942, he starred in the movie Frantic - 1988?
+Harrison ford
+10
+
+TV/Film: Births: Born July 13, 1942, he starred in the movie Getting Straight - 1970?
+Harrison ford
+10
+
+TV/Film: Births: Born July 13, 1942, he starred in the movie Hanover Street - 1979?
+Harrison ford
+10
+
+TV/Film: Births: Born July 13, 1942, he starred in the movie Heroes - 1977?
+Harrison ford
+10
+
+TV/Film: Births: Born July 13, 1942, he starred in the movie Indiana Jones and the Last Crusade - 1989?
+Harrison ford
+10
+
+TV/Film: Births: Born July 13, 1942, he starred in the movie Indiana Jones and the Temple of Doom - 1984?
+Harrison ford
+10
+
+TV/Film: Births: Born July 13, 1942, he starred in the movie James A. Michener's Dynasty - 1976?
+Harrison ford
+10
+
+TV/Film: Births: Born July 13, 1942, he starred in the movie Jimmy Hollywood - 1994?
+Harrison ford
+10
+
+TV/Film: Births: Born July 13, 1942, he starred in the movie Journey to Shiloh - 1968?
+Harrison ford
+10
+
+TV/Film: Births: Born July 13, 1942, he starred in the movie Les Cent et une Nuits - 1995?
+Harrison ford
+10
+
+TV/Film: Births: Born July 13, 1942, he starred in the movie More American Graffiti - 1979?
+Harrison ford
+10
+
+TV/Film: Births: Born July 13, 1942, he starred in the movie Patriot Games - 1992?
+Harrison ford
+10
+
+TV/Film: Births: Born July 13, 1942, he starred in the movie Presumed Innocent - 1990?
+Harrison ford
+10
+
+TV/Film: Births: Born July 13, 1942, he starred in the movie Raiders of the Lost Ark - 1981?
+Harrison ford
+10
+
+TV/Film: Births: Born July 13, 1942, he starred in the movie Random Hearts - 1999?
+Harrison ford
+10
+
+TV/Film: Births: Born July 13, 1942, he starred in the movie Regarding Henry - 1991?
+Harrison ford
+10
+
+TV/Film: Births: Born July 13, 1942, he starred in the movie Return of the Jedi - 1983?
+Harrison ford
+10
+
+TV/Film: Births: Born July 13, 1942, he starred in the movie Sabrina - 1995?
+Harrison ford
+10
+
+TV/Film: Births: Born July 13, 1942, he starred in the movie Six Days, Seven Nights - 1998?
+Harrison ford
+10
+
+TV/Film: Births: Born July 13, 1942, he starred in the movie Star Wars - 1977?
+Harrison ford
+10
+
+TV/Film: Births: Born July 13, 1942, he starred in the movie The Conversation - 1974?
+Harrison ford
+10
+
+TV/Film: Births: Born July 13, 1942, he starred in the movie The Devil's Own - 1997?
+Harrison ford
+10
+
+TV/Film: Births: Born July 13, 1942, he starred in the movie The Empire Strikes Back - 1980?
+Harrison ford
+10
+
+TV/Film: Births: Born July 13, 1942, he starred in the movie The Frisco Kid - 1979?
+Harrison ford
+10
+
+TV/Film: Births: Born July 13, 1942, he starred in the movie The Fugitive - 1993?
+Harrison ford
+10
+
+TV/Film: Births: Born July 13, 1942, he starred in the movie The Intruders - 1970?
+Harrison ford
+10
+
+TV/Film: Births: Born July 13, 1942, he starred in the movie The Mosquito Coast - 1986?
+Harrison ford
+10
+
+TV/Film: Births: Born July 13, 1942, he starred in the movie Witness - 1985?
+Harrison ford
+10
+
+TV/Film: Births: Born July 13, 1942, he starred in the movie Working Girl - 1988?
+Harrison ford
+10
+
+TV/Film: Births: Born July 13, 1942, he starred in the movie Zabriskie Point - 1970?
+Harrison ford
+10
+
+TV/Film: Births: Born July 24, 1970, She starred in the movie Anaconda - 1997?
+Jennifer lopez
+10
+
+TV/Film: Births: Born July 24, 1970, She starred in the movie Antz - 1998?
+Jennifer lopez
+10
+
+TV/Film: Births: Born July 24, 1970, She starred in the movie Blood and Wine - 1997?
+Jennifer lopez
+10
+
+TV/Film: Births: Born July 24, 1970, She starred in the movie Jack - 1996?
+Jennifer lopez
+10
+
+TV/Film: Births: Born July 24, 1970, She starred in the movie Money Train - 1995?
+Jennifer lopez
+10
+
+TV/Film: Births: Born July 24, 1970, She starred in the movie My Family - 1995?
+Jennifer lopez
+10
+
+TV/Film: Births: Born July 24, 1970, She starred in the movie My Little Girl - 1986?
+Jennifer lopez
+10
+
+TV/Film: Births: Born July 24, 1970, She starred in the movie Out of Sight - 1998?
+Jennifer lopez
+10
+
+TV/Film: Births: Born July 24, 1970, She starred in the movie Selena - 1997?
+Jennifer lopez
+10
+
+TV/Film: Births: Born July 24, 1970, She starred in the movie U-Turn - 1997?
+Jennifer lopez
+10
+
+TV/Film: Births: Born July 26, 1964, She starred in the movie 28 Days - 2000?
+Sandra bullock
+10
+
+TV/Film: Births: Born July 26, 1964, She starred in the movie A Time To Kill - 1996?
+Sandra bullock
+10
+
+TV/Film: Births: Born July 26, 1964, She starred in the movie Demolition Man - 1993?
+Sandra bullock
+10
+
+TV/Film: Births: Born July 26, 1964, She starred in the movie Forces of Nature - 1999?
+Sandra bullock
+10
+
+TV/Film: Births: Born July 26, 1964, She starred in the movie Gun Shy - 2000?
+Sandra bullock
+10
+
+TV/Film: Births: Born July 26, 1964, She starred in the movie Hope Floats - 1998?
+Sandra bullock
+10
+
+TV/Film: Births: Born July 26, 1964, She starred in the movie In Love and War - 1996?
+Sandra bullock
+10
+
+TV/Film: Births: Born July 26, 1964, She starred in the movie Love Potion No. 9 - 1992?
+Sandra bullock
+10
+
+TV/Film: Births: Born July 26, 1964, She starred in the movie Practical Magic - 1998?
+Sandra bullock
+10
+
+TV/Film: Births: Born July 26, 1964, She starred in the movie Religion, Inc./A Fool and His Money - 1989?
+Sandra bullock
+10
+
+TV/Film: Births: Born July 26, 1964, She starred in the movie Speed - 1994?
+Sandra bullock
+10
+
+TV/Film: Births: Born July 26, 1964, She starred in the movie Speed 2: Cruise Control - 1997?
+Sandra bullock
+10
+
+TV/Film: Births: Born July 26, 1964, She starred in the movie The Net - 1995?
+Sandra bullock
+10
+
+TV/Film: Births: Born July 26, 1964, She starred in the movie The Prince of Egypt - 1998?
+Sandra bullock
+10
+
+TV/Film: Births: Born July 26, 1964, She starred in the movie The Thing Called Love - 1993?
+Sandra bullock
+10
+
+TV/Film: Births: Born July 26, 1964, She starred in the movie The Vanishing - 1993?
+Sandra bullock
+10
+
+TV/Film: Births: Born July 26, 1964, She starred in the movie Two If By Sea - 1996?
+Sandra bullock
+10
+
+TV/Film: Births: Born July 26, 1964, She starred in the movie When the Party's Over - 1992?
+Sandra bullock
+10
+
+TV/Film: Births: Born July 26, 1964, She starred in the movie While You Were Sleeping - 1995?
+Sandra bullock
+10
+
+TV/Film: Births: Born July 26, 1964, She starred in the movie Who Do I Gotta Kill? - 1992?
+Sandra bullock
+10
+
+TV/Film: Births: Born July 26, 1964, She starred in the movie Who Shot Patakango? - 1990?
+Sandra bullock
+10
+
+TV/Film: Births: Born July 26, 1964, She starred in the movie Wrestling Ernest Hemingway - 1993?
+Sandra bullock
+10
+
+TV/Film: Births: Born July 3, 1962, he starred in the movie A Few Good Men - 1992?
+Tom cruise
+10
+
+TV/Film: Births: Born July 3, 1962, he starred in the movie All the Right Moves - 1983?
+Tom cruise
+10
+
+TV/Film: Births: Born July 3, 1962, he starred in the movie Born on the Fourth of July - 1989?
+Tom cruise
+10
+
+TV/Film: Births: Born July 3, 1962, he starred in the movie Cocktail - 1988?
+Tom cruise
+10
+
+TV/Film: Births: Born July 3, 1962, he starred in the movie Days of Thunder - 1990?
+Tom cruise
+10
+
+TV/Film: Births: Born July 3, 1962, he starred in the movie Endless Love - 1981?
+Tom cruise
+10
+
+TV/Film: Births: Born July 3, 1962, he starred in the movie Eyes Wide Shut - 1999?
+Tom cruise
+10
+
+TV/Film: Births: Born July 3, 1962, he starred in the movie Far and Away - 1992?
+Tom cruise
+10
+
+TV/Film: Births: Born July 3, 1962, he starred in the movie Interview With the Vampire - 1994?
+Tom cruise
+10
+
+TV/Film: Births: Born July 3, 1962, he starred in the movie Jerry Maguire - 1996?
+Tom cruise
+10
+
+TV/Film: Births: Born July 3, 1962, he starred in the movie Legend - 1985?
+Tom cruise
+10
+
+TV/Film: Births: Born July 3, 1962, he starred in the movie Losin' It - 1982?
+Tom cruise
+10
+
+TV/Film: Births: Born July 3, 1962, he starred in the movie Magnolia - 1999?
+Tom cruise
+10
+
+TV/Film: Births: Born July 3, 1962, he starred in the movie Mission: Impossible - 1996?
+Tom cruise
+10
+
+TV/Film: Births: Born July 3, 1962, he starred in the movie Mission: Impossible 2 - 2000?
+Tom cruise
+10
+
+TV/Film: Births: Born July 3, 1962, he starred in the movie Rain Man - 1988?
+Tom cruise
+10
+
+TV/Film: Births: Born July 3, 1962, he starred in the movie Risky Business - 1983?
+Tom cruise
+10
+
+TV/Film: Births: Born July 3, 1962, he starred in the movie Taps - 1981?
+Tom cruise
+10
+
+TV/Film: Births: Born July 3, 1962, he starred in the movie The Color of Money - 1986?
+Tom cruise
+10
+
+TV/Film: Births: Born July 3, 1962, he starred in the movie The Firm - 1993?
+Tom cruise
+10
+
+TV/Film: Births: Born July 3, 1962, he starred in the movie The Outsiders - 1983?
+Tom cruise
+10
+
+TV/Film: Births: Born July 3, 1962, he starred in the movie Top Gun - 1986?
+Tom cruise
+10
+
+TV/Film: Births: Born July 30, 1947, he starred in the movie A Century of Cinema - 1994?
+Arnold schwarzenegger
+10
+
+TV/Film: Births: Born July 30, 1947, he starred in the movie Batman & Robin - 1997?
+Arnold schwarzenegger
+10
+
+TV/Film: Births: Born July 30, 1947, he starred in the movie Commando - 1985?
+Arnold schwarzenegger
+10
+
+TV/Film: Births: Born July 30, 1947, he starred in the movie Conan the Barbarian - 1982?
+Arnold schwarzenegger
+10
+
+TV/Film: Births: Born July 30, 1947, he starred in the movie Conan the Destroyer - 1984?
+Arnold schwarzenegger
+10
+
+TV/Film: Births: Born July 30, 1947, he starred in the movie Dave - 1993?
+Arnold schwarzenegger
+10
+
+TV/Film: Births: Born July 30, 1947, he starred in the movie End of Days - 1999?
+Arnold schwarzenegger
+10
+
+TV/Film: Births: Born July 30, 1947, he starred in the movie Eraser - 1996?
+Arnold schwarzenegger
+10
+
+TV/Film: Births: Born July 30, 1947, he starred in the movie Hercules in New York - 1970?
+Arnold schwarzenegger
+10
+
+TV/Film: Births: Born July 30, 1947, he starred in the movie Jingle All the Way - 1996?
+Arnold schwarzenegger
+10
+
+TV/Film: Births: Born July 30, 1947, he starred in the movie Junior - 1994?
+Arnold schwarzenegger
+10
+
+TV/Film: Births: Born July 30, 1947, he starred in the movie Kindergarten Cop - 1990?
+Arnold schwarzenegger
+10
+
+TV/Film: Births: Born July 30, 1947, he starred in the movie Last Action Hero - 1993?
+Arnold schwarzenegger
+10
+
+TV/Film: Births: Born July 30, 1947, he starred in the movie Predator - 1987?
+Arnold schwarzenegger
+10
+
+TV/Film: Births: Born July 30, 1947, he starred in the movie Pumping Iron - 1977?
+Arnold schwarzenegger
+10
+
+TV/Film: Births: Born July 30, 1947, he starred in the movie Raw Deal - 1986?
+Arnold schwarzenegger
+10
+
+TV/Film: Births: Born July 30, 1947, he starred in the movie Red Heat - 1988?
+Arnold schwarzenegger
+10
+
+TV/Film: Births: Born July 30, 1947, he starred in the movie Red Sonja - 1985?
+Arnold schwarzenegger
+10
+
+TV/Film: Births: Born July 30, 1947, he starred in the movie Scavenger Hunt - 1979?
+Arnold schwarzenegger
+10
+
+TV/Film: Births: Born July 30, 1947, he starred in the movie Shape Up With Arnold - 1982?
+Arnold schwarzenegger
+10
+
+TV/Film: Births: Born July 30, 1947, he starred in the movie Stay Hungry - 1976?
+Arnold schwarzenegger
+10
+
+TV/Film: Births: Born July 30, 1947, he starred in the movie Terminator 2: Judgment Day - 1991?
+Arnold schwarzenegger
+10
+
+TV/Film: Births: Born July 30, 1947, he starred in the movie The Jayne Mansfield Story - 1980?
+Arnold schwarzenegger
+10
+
+TV/Film: Births: Born July 30, 1947, he starred in the movie The Long Goodbye - 1973?
+Arnold schwarzenegger
+10
+
+TV/Film: Births: Born July 30, 1947, he starred in the movie The Running Man - 1987?
+Arnold schwarzenegger
+10
+
+TV/Film: Births: Born July 30, 1947, he starred in the movie The Terminator - 1984?
+Arnold schwarzenegger
+10
+
+TV/Film: Births: Born July 30, 1947, he starred in the movie The Villain - 1979?
+Arnold schwarzenegger
+10
+
+TV/Film: Births: Born July 30, 1947, he starred in the movie Total Recall - 1990?
+Arnold schwarzenegger
+10
+
+TV/Film: Births: Born July 30, 1947, he starred in the movie True Lies - 1994?
+Arnold schwarzenegger
+10
+
+TV/Film: Births: Born July 30, 1947, he starred in the movie Twins - 1988?
+Arnold schwarzenegger
+10
+
+TV/Film: Births: Born July 31, 1962, he starred in the movie Blade - 1998?
+Wesley snipes
+10
+
+TV/Film: Births: Born July 31, 1962, he starred in the movie Boiling Point - 1993?
+Wesley snipes
+10
+
+TV/Film: Births: Born July 31, 1962, he starred in the movie Demolition Man - 1993?
+Wesley snipes
+10
+
+TV/Film: Births: Born July 31, 1962, he starred in the movie Down in the Delta - 1998?
+Wesley snipes
+10
+
+TV/Film: Births: Born July 31, 1962, he starred in the movie Drop Zone - 1995?
+Wesley snipes
+10
+
+TV/Film: Births: Born July 31, 1962, he starred in the movie Jungle Fever - 1991?
+Wesley snipes
+10
+
+TV/Film: Births: Born July 31, 1962, he starred in the movie King of New York - 1989?
+Wesley snipes
+10
+
+TV/Film: Births: Born July 31, 1962, he starred in the movie Major League - 1989?
+Wesley snipes
+10
+
+TV/Film: Births: Born July 31, 1962, he starred in the movie Mo' Better Blues - 1990?
+Wesley snipes
+10
+
+TV/Film: Births: Born July 31, 1962, he starred in the movie Money Train - 1995?
+Wesley snipes
+10
+
+TV/Film: Births: Born July 31, 1962, he starred in the movie Murder at 1600 - 1997?
+Wesley snipes
+10
+
+TV/Film: Births: Born July 31, 1962, he starred in the movie New Jack City - 1991?
+Wesley snipes
+10
+
+TV/Film: Births: Born July 31, 1962, he starred in the movie One Night Stand - 1997?
+Wesley snipes
+10
+
+TV/Film: Births: Born July 31, 1962, he starred in the movie Passenger 57 - 1992?
+Wesley snipes
+10
+
+TV/Film: Births: Born July 31, 1962, he starred in the movie Rising Sun - 1993?
+Wesley snipes
+10
+
+TV/Film: Births: Born July 31, 1962, he starred in the movie Streets of Gold - 1986?
+Wesley snipes
+10
+
+TV/Film: Births: Born July 31, 1962, he starred in the movie Sugar Hill - 1994?
+Wesley snipes
+10
+
+TV/Film: Births: Born July 31, 1962, he starred in the movie The Fan - 1996?
+Wesley snipes
+10
+
+TV/Film: Births: Born July 31, 1962, he starred in the movie The Waterdance - 1992?
+Wesley snipes
+10
+
+TV/Film: Births: Born July 31, 1962, he starred in the movie To Wong Foo, Thanks for Everything, Julie Newmar - 1995?
+Wesley snipes
+10
+
+TV/Film: Births: Born July 31, 1962, he starred in the movie U.S. Marshals - 1998?
+Wesley snipes
+10
+
+TV/Film: Births: Born July 31, 1962, he starred in the movie Waiting to Exhale - 1995?
+Wesley snipes
+10
+
+TV/Film: Births: Born July 31, 1962, he starred in the movie White Men Can't Jump - 1992?
+Wesley snipes
+10
+
+TV/Film: Births: Born July 31, 1962, he starred in the movie Wildcats - 1986?
+Wesley snipes
+10
+
+TV/Film: Births: Born July 8, 1958, he starred in the movie A Few Good Men - 1992?
+Kevin bacon
+10
+
+TV/Film: Births: Born July 8, 1958, he starred in the movie Apollo 13 - 1995?
+Kevin bacon
+10
+
+TV/Film: Births: Born July 8, 1958, he starred in the movie Balto - 1995?
+Kevin bacon
+10
+
+TV/Film: Births: Born July 8, 1958, he starred in the movie Criminal Law - 1988?
+Kevin bacon
+10
+
+TV/Film: Births: Born July 8, 1958, he starred in the movie Digging to China - 1998?
+Kevin bacon
+10
+
+TV/Film: Births: Born July 8, 1958, he starred in the movie Diner - 1982?
+Kevin bacon
+10
+
+TV/Film: Births: Born July 8, 1958, he starred in the movie End of the Line - 1988?
+Kevin bacon
+10
+
+TV/Film: Births: Born July 8, 1958, he starred in the movie Enormous Changes at the Last Minute - 1985?
+Kevin bacon
+10
+
+TV/Film: Births: Born July 8, 1958, he starred in the movie Flatliners - 1990?
+Kevin bacon
+10
+
+TV/Film: Births: Born July 8, 1958, he starred in the movie Footloose - 1984?
+Kevin bacon
+10
+
+TV/Film: Births: Born July 8, 1958, he starred in the movie Forty-Deuce - 1981?
+Kevin bacon
+10
+
+TV/Film: Births: Born July 8, 1958, he starred in the movie Friday the 13th - 1980?
+Kevin bacon
+10
+
+TV/Film: Births: Born July 8, 1958, he starred in the movie He Said, She Said - 1991?
+Kevin bacon
+10
+
+TV/Film: Births: Born July 8, 1958, he starred in the movie Hero at Large - 1980?
+Kevin bacon
+10
+
+TV/Film: Births: Born July 8, 1958, he starred in the movie JFK - 1991?
+Kevin bacon
+10
+
+TV/Film: Births: Born July 8, 1958, he starred in the movie Lemon Sky - 1987?
+Kevin bacon
+10
+
+TV/Film: Births: Born July 8, 1958, he starred in the movie Murder in the First - 1995?
+Kevin bacon
+10
+
+TV/Film: Births: Born July 8, 1958, he starred in the movie National Lampoon's Animal House - 1978?
+Kevin bacon
+10
+
+TV/Film: Births: Born July 8, 1958, he starred in the movie Only When I Laugh - 1981?
+Kevin bacon
+10
+
+TV/Film: Births: Born July 8, 1958, he starred in the movie Picture Perfect - 1997?
+Kevin bacon
+10
+
+TV/Film: Births: Born July 8, 1958, he starred in the movie Planes, Trains and Automobiles - 1987?
+Kevin bacon
+10
+
+TV/Film: Births: Born July 8, 1958, he starred in the movie Pyrates - 1991?
+Kevin bacon
+10
+
+TV/Film: Births: Born July 8, 1958, he starred in the movie Queens Logic - 1991?
+Kevin bacon
+10
+
+TV/Film: Births: Born July 8, 1958, he starred in the movie Quicksilver - 1986?
+Kevin bacon
+10
+
+TV/Film: Births: Born July 8, 1958, he starred in the movie She's Having a Baby - 1988?
+Kevin bacon
+10
+
+TV/Film: Births: Born July 8, 1958, he starred in the movie Sleepers - 1996?
+Kevin bacon
+10
+
+TV/Film: Births: Born July 8, 1958, he starred in the movie Starting Over - 1979?
+Kevin bacon
+10
+
+TV/Film: Births: Born July 8, 1958, he starred in the movie Stir of Echoes - 1999?
+Kevin bacon
+10
+
+TV/Film: Births: Born July 8, 1958, he starred in the movie Telling Lies in America - 1997?
+Kevin bacon
+10
+
+TV/Film: Births: Born July 8, 1958, he starred in the movie The Air Up There - 1994?
+Kevin bacon
+10
+
+TV/Film: Births: Born July 8, 1958, he starred in the movie The Big Picture - 1989?
+Kevin bacon
+10
+
+TV/Film: Births: Born July 8, 1958, he starred in the movie The Demon Murder Case - 1983?
+Kevin bacon
+10
+
+TV/Film: Births: Born July 8, 1958, he starred in the movie The River Wild - 1994?
+Kevin bacon
+10
+
+TV/Film: Births: Born July 8, 1958, he starred in the movie Tremors - 1989?
+Kevin bacon
+10
+
+TV/Film: Births: Born July 8, 1958, he starred in the movie White Water Summer - 1987?
+Kevin bacon
+10
+
+TV/Film: Births: Born July 8, 1958, he starred in the movie Wild Things - 1998?
+Kevin bacon
+10
+
+TV/Film: Births: Born july 9, 1956, he starred in the movie a league of their own - 1992?
+Tom hanks
+10
+
+TV/Film: Births: Born july 9, 1956, he starred in the movie apollo 13 - 1995?
+Tom hanks
+10
+
+TV/Film: Births: Born july 9, 1956, he starred in the movie bachelor party - 1984?
+Tom hanks
+10
+
+TV/Film: Births: Born july 9, 1956, he starred in the movie big - 1988?
+Tom hanks
+10
+
+TV/Film: Births: Born july 9, 1956, he starred in the movie dragnet - 1987?
+Tom hanks
+10
+
+TV/Film: Births: Born july 9, 1956, he starred in the movie every time we say goodbye - 1986?
+Tom hanks
+10
+
+TV/Film: Births: Born july 9, 1956, he starred in the movie forrest gump - 1994?
+Tom hanks
+10
+
+TV/Film: Births: Born july 9, 1956, he starred in the movie he knows you're alone - 1981?
+Tom hanks
+10
+
+TV/Film: Births: Born july 9, 1956, he starred in the movie joe versus the volcano - 1990?
+Tom hanks
+10
+
+TV/Film: Births: Born july 9, 1956, he starred in the movie nothing in common - 1986?
+Tom hanks
+10
+
+TV/Film: Births: Born july 9, 1956, he starred in the movie philadelphia - 1993?
+Tom hanks
+10
+
+TV/Film: Births: Born july 9, 1956, he starred in the movie punchline - 1988?
+Tom hanks
+10
+
+TV/Film: Births: Born july 9, 1956, he starred in the movie radio flyer - 1992?
+Tom hanks
+10
+
+TV/Film: Births: Born july 9, 1956, he starred in the movie rona jaffe's mazes and monsters - 1982?
+Tom hanks
+10
+
+TV/Film: Births: Born july 9, 1956, he starred in the movie saving private ryan - 1998?
+Tom hanks
+10
+
+TV/Film: Births: Born july 9, 1956, he starred in the movie sleepless in seattle - 1993?
+Tom hanks
+10
+
+TV/Film: Births: Born july 9, 1956, he starred in the movie splash - 1984?
+Tom hanks
+10
+
+TV/Film: Births: Born july 9, 1956, he starred in the movie that thing you do! - 1996?
+Tom hanks
+10
+
+TV/Film: Births: Born july 9, 1956, he starred in the movie the 'burbs - 1989?
+Tom hanks
+10
+
+TV/Film: Births: Born july 9, 1956, he starred in the movie the bonfire of the vanities - 1990?
+Tom hanks
+10
+
+TV/Film: Births: Born july 9, 1956, he starred in the movie the celluloid closet - 1996?
+Tom hanks
+10
+
+TV/Film: Births: Born july 9, 1956, he starred in the movie the green mile - 1999?
+Tom hanks
+10
+
+TV/Film: Births: Born july 9, 1956, he starred in the movie the man with one red shoe - 1985?
+Tom hanks
+10
+
+TV/Film: Births: Born july 9, 1956, he starred in the movie the money pit - 1986?
+Tom hanks
+10
+
+TV/Film: Births: Born july 9, 1956, he starred in the movie toy story - 1995?
+Tom hanks
+10
+
+TV/Film: Births: Born july 9, 1956, he starred in the movie toy story 2 - 1999?
+Tom hanks
+10
+
+TV/Film: Births: Born july 9, 1956, he starred in the movie turner and hooch - 1989?
+Tom hanks
+10
+
+TV/Film: Births: Born july 9, 1956, he starred in the movie volunteers - 1985?
+Tom hanks
+10
+
+TV/Film: Births: Born july 9, 1956, he starred in the movie you've got mail - 1998?
+Tom hanks
+10
+
+TV/Film: Births: Born july, 1916 - she played melanie wilkes in gone with the wind?
+Olivia dehavilland
+10
+
+TV/Film: Births: Born Jun 22, 1949, She starred in the movie A Century of Cinema - 1994?
+Meryl streep
+10
+
+TV/Film: Births: Born Jun 22, 1949, She starred in the movie A Cry in the Dark - 1988?
+Meryl streep
+10
+
+TV/Film: Births: Born Jun 22, 1949, She starred in the movie Before and After - 1996?
+Meryl streep
+10
+
+TV/Film: Births: Born Jun 22, 1949, She starred in the movie Dancing at Lughnasa - 1998?
+Meryl streep
+10
+
+TV/Film: Births: Born Jun 22, 1949, She starred in the movie Death Becomes Her - 1992?
+Meryl streep
+10
+
+TV/Film: Births: Born Jun 22, 1949, She starred in the movie Defending Your Life - 1991?
+Meryl streep
+10
+
+TV/Film: Births: Born Jun 22, 1949, She starred in the movie Falling in Love - 1984?
+Meryl streep
+10
+
+TV/Film: Births: Born Jun 22, 1949, She starred in the movie Heartburn - 1986?
+Meryl streep
+10
+
+TV/Film: Births: Born Jun 22, 1949, She starred in the movie Ironweed - 1987?
+Meryl streep
+10
+
+TV/Film: Births: Born Jun 22, 1949, She starred in the movie Julia - 1977?
+Meryl streep
+10
+
+TV/Film: Births: Born Jun 22, 1949, She starred in the movie Kramer vs. Kramer - 1979?
+Meryl streep
+10
+
+TV/Film: Births: Born Jun 22, 1949, She starred in the movie Manhattan - 1979?
+Meryl streep
+10
+
+TV/Film: Births: Born Jun 22, 1949, She starred in the movie Marvin's Room - 1996?
+Meryl streep
+10
+
+TV/Film: Births: Born Jun 22, 1949, She starred in the movie Music of the Heart - 1999?
+Meryl streep
+10
+
+TV/Film: Births: Born Jun 22, 1949, She starred in the movie One True Thing - 1998?
+Meryl streep
+10
+
+TV/Film: Births: Born Jun 22, 1949, She starred in the movie Out of Africa - 1985?
+Meryl streep
+10
+
+TV/Film: Births: Born Jun 22, 1949, She starred in the movie Plenty - 1985?
+Meryl streep
+10
+
+TV/Film: Births: Born Jun 22, 1949, She starred in the movie Postcards From the Edge - 1990?
+Meryl streep
+10
+
+TV/Film: Births: Born Jun 22, 1949, She starred in the movie She-Devil - 1989?
+Meryl streep
+10
+
+TV/Film: Births: Born Jun 22, 1949, She starred in the movie Silkwood - 1983?
+Meryl streep
+10
+
+TV/Film: Births: Born Jun 22, 1949, She starred in the movie Sophie's Choice - 1982?
+Meryl streep
+10
+
+TV/Film: Births: Born Jun 22, 1949, She starred in the movie Still of the Night - 1982?
+Meryl streep
+10
+
+TV/Film: Births: Born Jun 22, 1949, She starred in the movie The Bridges of Madison County - 1995?
+Meryl streep
+10
+
+TV/Film: Births: Born Jun 22, 1949, She starred in the movie The Deadliest Season - 1977?
+Meryl streep
+10
+
+TV/Film: Births: Born Jun 22, 1949, She starred in the movie The Deer Hunter - 1978?
+Meryl streep
+10
+
+TV/Film: Births: Born Jun 22, 1949, She starred in the movie The French Lieutenant's Woman - 1981?
+Meryl streep
+10
+
+TV/Film: Births: Born Jun 22, 1949, She starred in the movie The House of the Spirits - 1993?
+Meryl streep
+10
+
+TV/Film: Births: Born Jun 22, 1949, She starred in the movie The River Wild - 1994?
+Meryl streep
+10
+
+TV/Film: Births: Born Jun 22, 1949, She starred in the movie The Seduction of Joe Tynan - 1979?
+Meryl streep
+10
+
+TV/Film: Births: Born June 1, 1926, She starred in the movie All About Eve - 1950?
+Marilyn monroe
+10
+
+TV/Film: Births: Born June 1, 1926, She starred in the movie As Young as You Feel - 1951?
+Marilyn monroe
+10
+
+TV/Film: Births: Born June 1, 1926, She starred in the movie Bus Stop - 1956?
+Marilyn monroe
+10
+
+TV/Film: Births: Born June 1, 1926, She starred in the movie Clash by Night - 1952?
+Marilyn monroe
+10
+
+TV/Film: Births: Born June 1, 1926, She starred in the movie Don't Bother to Knock - 1952?
+Marilyn monroe
+10
+
+TV/Film: Births: Born June 1, 1926, She starred in the movie Gentlemen Prefer Blondes - 1953?
+Marilyn monroe
+10
+
+TV/Film: Births: Born June 1, 1926, She starred in the movie How To Marry a Millionaire - 1953?
+Marilyn monroe
+10
+
+TV/Film: Births: Born June 1, 1926, She starred in the movie Ladies of the Chorus - 1949?
+Marilyn monroe
+10
+
+TV/Film: Births: Born June 1, 1926, She starred in the movie Let's Make It Legal - 1951?
+Marilyn monroe
+10
+
+TV/Film: Births: Born June 1, 1926, She starred in the movie Let's Make Love - 1960?
+Marilyn monroe
+10
+
+TV/Film: Births: Born June 1, 1926, She starred in the movie Love Happy - 1949?
+Marilyn monroe
+10
+
+TV/Film: Births: Born June 1, 1926, She starred in the movie Love Nest - 1951?
+Marilyn monroe
+10
+
+TV/Film: Births: Born June 1, 1926, She starred in the movie Marilyn - 1963?
+Marilyn monroe
+10
+
+TV/Film: Births: Born June 1, 1926, She starred in the movie Monkey Business - 1952?
+Marilyn monroe
+10
+
+TV/Film: Births: Born June 1, 1926, She starred in the movie Niagara - 1953?
+Marilyn monroe
+10
+
+TV/Film: Births: Born June 1, 1926, She starred in the movie O. Henry's Full House - 1952?
+Marilyn monroe
+10
+
+TV/Film: Births: Born June 1, 1926, She starred in the movie Right Cross - 1950?
+Marilyn monroe
+10
+
+TV/Film: Births: Born June 1, 1926, She starred in the movie River of No Return - 1954?
+Marilyn monroe
+10
+
+TV/Film: Births: Born June 1, 1926, She starred in the movie Some Like It Hot - 1959?
+Marilyn monroe
+10
+
+TV/Film: Births: Born June 1, 1926, She starred in the movie The Asphalt Jungle - 1950?
+Marilyn monroe
+10
+
+TV/Film: Births: Born June 1, 1926, She starred in the movie The Fireball - 1950?
+Marilyn monroe
+10
+
+TV/Film: Births: Born June 1, 1926, She starred in the movie The Misfits - 1961?
+Marilyn monroe
+10
+
+TV/Film: Births: Born June 1, 1926, She starred in the movie The Prince and the Showgirl - 1957?
+Marilyn monroe
+10
+
+TV/Film: Births: Born June 1, 1926, She starred in the movie The Seven Year Itch - 1955?
+Marilyn monroe
+10
+
+TV/Film: Births: Born June 1, 1926, She starred in the movie There's No Business Like Show Business - 1954?
+Marilyn monroe
+10
+
+TV/Film: Births: Born June 1, 1926, She starred in the movie We're Not Married - 1952?
+Marilyn monroe
+10
+
+TV/Film: Births: Born June 10, 1922, She starred in the movie A Child Is Waiting - 1963?
+Judy garland
+10
+
+TV/Film: Births: Born June 10, 1922, She starred in the movie A Star Is Born - 1954?
+Judy garland
+10
+
+TV/Film: Births: Born June 10, 1922, She starred in the movie Andy Hardy Meets a Debutante - 1940?
+Judy garland
+10
+
+TV/Film: Births: Born June 10, 1922, She starred in the movie Babes in Arms - 1939?
+Judy garland
+10
+
+TV/Film: Births: Born June 10, 1922, She starred in the movie Babes on Broadway - 1941?
+Judy garland
+10
+
+TV/Film: Births: Born June 10, 1922, She starred in the movie Broadway Melody of 1938 - 1937?
+Judy garland
+10
+
+TV/Film: Births: Born June 10, 1922, She starred in the movie Easter Parade - 1948?
+Judy garland
+10
+
+TV/Film: Births: Born June 10, 1922, She starred in the movie Everybody Sing - 1938?
+Judy garland
+10
+
+TV/Film: Births: Born June 10, 1922, She starred in the movie For Me and My Gal - 1942?
+Judy garland
+10
+
+TV/Film: Births: Born June 10, 1922, She starred in the movie Girl Crazy - 1943?
+Judy garland
+10
+
+TV/Film: Births: Born June 10, 1922, She starred in the movie I Could Go On Singing - 1963?
+Judy garland
+10
+
+TV/Film: Births: Born June 10, 1922, She starred in the movie In the Good Old Summertime - 1949?
+Judy garland
+10
+
+TV/Film: Births: Born June 10, 1922, She starred in the movie Judgment at Nuremberg - 1961?
+Judy garland
+10
+
+TV/Film: Births: Born June 10, 1922, She starred in the movie Life Begins for Andy Hardy - 1941?
+Judy garland
+10
+
+TV/Film: Births: Born June 10, 1922, She starred in the movie Listen, Darling - 1938?
+Judy garland
+10
+
+TV/Film: Births: Born June 10, 1922, She starred in the movie Little Nellie Kelly - 1940?
+Judy garland
+10
+
+TV/Film: Births: Born June 10, 1922, She starred in the movie Love Finds Andy Hardy - 1938?
+Judy garland
+10
+
+TV/Film: Births: Born June 10, 1922, She starred in the movie Meet Me in St. Louis - 1944?
+Judy garland
+10
+
+TV/Film: Births: Born June 10, 1922, She starred in the movie Pepe - 1960?
+Judy garland
+10
+
+TV/Film: Births: Born June 10, 1922, She starred in the movie Pigskin Parade - 1936?
+Judy garland
+10
+
+TV/Film: Births: Born June 10, 1922, She starred in the movie Presenting Lily Mars - 1943?
+Judy garland
+10
+
+TV/Film: Births: Born June 10, 1922, She starred in the movie Summer Stock - 1950?
+Judy garland
+10
+
+TV/Film: Births: Born June 10, 1922, She starred in the movie That's Entertainment - 1974?
+Judy garland
+10
+
+TV/Film: Births: Born June 10, 1922, She starred in the movie That's Entertainment, Part 2 - 1976?
+Judy garland
+10
+
+TV/Film: Births: Born June 10, 1922, She starred in the movie The Clock - 1945?
+Judy garland
+10
+
+TV/Film: Births: Born June 10, 1922, She starred in the movie The Harvey Girls - 1945?
+Judy garland
+10
+
+TV/Film: Births: Born June 10, 1922, She starred in the movie The Pirate - 1948?
+Judy garland
+10
+
+TV/Film: Births: Born June 10, 1922, She starred in the movie The Wizard of Oz - 1939?
+Judy garland
+10
+
+TV/Film: Births: Born June 10, 1922, She starred in the movie Thoroughbreds Don't Cry - 1937?
+Judy garland
+10
+
+TV/Film: Births: Born June 10, 1922, She starred in the movie Till the Clouds Roll By - 1946?
+Judy garland
+10
+
+TV/Film: Births: Born June 10, 1922, She starred in the movie Ziegfeld Follies - 1946?
+Judy garland
+10
+
+TV/Film: Births: Born June 10, 1922, She starred in the movie Ziegfeld Girl - 1941?
+Judy garland
+10
+
+TV/Film: Births: Born June 10, 1965, She starred in the movie Aria - 1987?
+Elizabeth hurley
+10
+
+TV/Film: Births: Born June 10, 1965, She starred in the movie Austin Powers: International Man of Mystery - 1997?
+Elizabeth hurley
+10
+
+TV/Film: Births: Born June 10, 1965, She starred in the movie Austin Powers: The Spy Who Shagged Me - 1999?
+Elizabeth hurley
+10
+
+TV/Film: Births: Born June 10, 1965, She starred in the movie Beyond Bedlam - 1993?
+Elizabeth hurley
+10
+
+TV/Film: Births: Born June 10, 1965, She starred in the movie Dangerous Ground - 1997?
+Elizabeth hurley
+10
+
+TV/Film: Births: Born June 10, 1965, She starred in the movie Der Skipper - 1990?
+Elizabeth hurley
+10
+
+TV/Film: Births: Born June 10, 1965, She starred in the movie EDtv - 1999?
+Elizabeth hurley
+10
+
+TV/Film: Births: Born June 10, 1965, She starred in the movie El Largo Invierno - 1991?
+Elizabeth hurley
+10
+
+TV/Film: Births: Born June 10, 1965, She starred in the movie Mad Dogs and Englishmen - 1995?
+Elizabeth hurley
+10
+
+TV/Film: Births: Born June 10, 1965, She starred in the movie My Favorite Martian - 1999?
+Elizabeth hurley
+10
+
+TV/Film: Births: Born June 10, 1965, She starred in the movie Passenger 57 - 1992?
+Elizabeth hurley
+10
+
+TV/Film: Births: Born June 10, 1965, She starred in the movie Permanent Midnight - 1998?
+Elizabeth hurley
+10
+
+TV/Film: Births: Born June 10, 1965, She starred in the movie Rowing With the Wind - 1988?
+Elizabeth hurley
+10
+
+TV/Film: Births: Born june 20, 1909 - he starred in the classic robin hood?
+Errol flynn
+10
+
+TV/Film: Births: Born June 20, 1967, She starred in the movie Archer - 1986?
+Nicole kidman
+10
+
+TV/Film: Births: Born June 20, 1967, She starred in the movie Archer's Adventure - 1985?
+Nicole kidman
+10
+
+TV/Film: Births: Born June 20, 1967, She starred in the movie Batman Forever - 1995?
+Nicole kidman
+10
+
+TV/Film: Births: Born June 20, 1967, She starred in the movie Billy Bathgate - 1991?
+Nicole kidman
+10
+
+TV/Film: Births: Born June 20, 1967, She starred in the movie BMX Bandits - 1983?
+Nicole kidman
+10
+
+TV/Film: Births: Born June 20, 1967, She starred in the movie Days of Thunder - 1990?
+Nicole kidman
+10
+
+TV/Film: Births: Born June 20, 1967, She starred in the movie Dead Calm - 1989?
+Nicole kidman
+10
+
+TV/Film: Births: Born June 20, 1967, She starred in the movie Emerald City - 1990?
+Nicole kidman
+10
+
+TV/Film: Births: Born June 20, 1967, She starred in the movie Eyes Wide Shut - 1999?
+Nicole kidman
+10
+
+TV/Film: Births: Born June 20, 1967, She starred in the movie Far and Away - 1992?
+Nicole kidman
+10
+
+TV/Film: Births: Born June 20, 1967, She starred in the movie Malice - 1993?
+Nicole kidman
+10
+
+TV/Film: Births: Born June 20, 1967, She starred in the movie My Life - 1993?
+Nicole kidman
+10
+
+TV/Film: Births: Born June 20, 1967, She starred in the movie Night Master - 1987?
+Nicole kidman
+10
+
+TV/Film: Births: Born June 20, 1967, She starred in the movie Practical Magic - 1998?
+Nicole kidman
+10
+
+TV/Film: Births: Born June 20, 1967, She starred in the movie Room To Move - 1985?
+Nicole kidman
+10
+
+TV/Film: Births: Born June 20, 1967, She starred in the movie The Peacemaker - 1997?
+Nicole kidman
+10
+
+TV/Film: Births: Born June 20, 1967, She starred in the movie The Portrait of a Lady - 1996?
+Nicole kidman
+10
+
+TV/Film: Births: Born June 20, 1967, She starred in the movie The Wacky World of Wills and Burke - 1985?
+Nicole kidman
+10
+
+TV/Film: Births: Born June 20, 1967, She starred in the movie To Die For - 1995?
+Nicole kidman
+10
+
+TV/Film: Births: Born June 20, 1967, She starred in the movie Watch the Shadows Dance - 1987?
+Nicole kidman
+10
+
+TV/Film: Births: Born June 20, 1967, She starred in the movie Wills and Burke - 1985?
+Nicole kidman
+10
+
+TV/Film: Births: Born June 20, 1967, She starred in the movie Windrider - 1986?
+Nicole kidman
+10
+
+TV/Film: Births: Born June 4, 1975, She starred in the movie Foxfire - 1996?
+Angelina jolie
+10
+
+TV/Film: Births: Born June 4, 1975, She starred in the movie Girl, Interrupted - 1999?
+Angelina jolie
+10
+
+TV/Film: Births: Born June 4, 1975, She starred in the movie Gone in 60 Seconds - 2000?
+Angelina jolie
+10
+
+TV/Film: Births: Born June 4, 1975, She starred in the movie Hackers - 1995?
+Angelina jolie
+10
+
+TV/Film: Births: Born June 4, 1975, She starred in the movie Hell's Kitchen - 1999?
+Angelina jolie
+10
+
+TV/Film: Births: Born June 4, 1975, She starred in the movie Lookin' to Get Out - 1982?
+Angelina jolie
+10
+
+TV/Film: Births: Born June 4, 1975, She starred in the movie Love Is All There Is - 1996?
+Angelina jolie
+10
+
+TV/Film: Births: Born June 4, 1975, She starred in the movie Mojave Moon - 1996?
+Angelina jolie
+10
+
+TV/Film: Births: Born June 4, 1975, She starred in the movie Playing by Heart - 1998?
+Angelina jolie
+10
+
+TV/Film: Births: Born June 4, 1975, She starred in the movie Playing God - 1997?
+Angelina jolie
+10
+
+TV/Film: Births: Born June 4, 1975, She starred in the movie Pushing Tin - 1999?
+Angelina jolie
+10
+
+TV/Film: Births: Born June 4, 1975, She starred in the movie The Bone Collector - 1999?
+Angelina jolie
+10
+
+TV/Film: Births: Born June 4, 1975, She starred in the movie Without Evidence - 1995?
+Angelina jolie
+10
+
+TV/Film: Births: Born Leonard Slighe (Slye sp.), he was the trigger-man in many films and tv?
+Roy rogers
+10
+
+TV/Film: Births: Born Mar 10,1958, She starred in the movie Above the Law - 1988?
+Sharon stone
+10
+
+TV/Film: Births: Born Mar 10,1958, She starred in the movie Action Jackson - 1988?
+Sharon stone
+10
+
+TV/Film: Births: Born Mar 10,1958, She starred in the movie Allan Quartermain and the Lost City of Gold - 1987?
+Sharon stone
+10
+
+TV/Film: Births: Born Mar 10,1958, She starred in the movie Antz - 1998?
+Sharon stone
+10
+
+TV/Film: Births: Born Mar 10,1958, She starred in the movie Basic Instinct - 1992?
+Sharon stone
+10
+
+TV/Film: Births: Born Mar 10,1958, She starred in the movie Beyond the Stars - 1989?
+Sharon stone
+10
+
+TV/Film: Births: Born Mar 10,1958, She starred in the movie Blood and Sand - 1989?
+Sharon stone
+10
+
+TV/Film: Births: Born Mar 10,1958, She starred in the movie Bolero - 1982?
+Sharon stone
+10
+
+TV/Film: Births: Born Mar 10,1958, She starred in the movie Casino - 1995?
+Sharon stone
+10
+
+TV/Film: Births: Born Mar 10,1958, She starred in the movie Catwalk - 1995?
+Sharon stone
+10
+
+TV/Film: Births: Born Mar 10,1958, She starred in the movie Cold Steel - 1988?
+Sharon stone
+10
+
+TV/Film: Births: Born Mar 10,1958, She starred in the movie Deadly Blessing - 1981?
+Sharon stone
+10
+
+TV/Film: Births: Born Mar 10,1958, She starred in the movie Diabolique - 1996?
+Sharon stone
+10
+
+TV/Film: Births: Born Mar 10,1958, She starred in the movie Diary of a Hitman - 1992?
+Sharon stone
+10
+
+TV/Film: Births: Born Mar 10,1958, She starred in the movie Gloria - 1999?
+Sharon stone
+10
+
+TV/Film: Births: Born Mar 10,1958, She starred in the movie He Said, She Said - 1991?
+Sharon stone
+10
+
+TV/Film: Births: Born Mar 10,1958, She starred in the movie Intersection - 1994?
+Sharon stone
+10
+
+TV/Film: Births: Born Mar 10,1958, She starred in the movie Irreconcilable Differences - 1984?
+Sharon stone
+10
+
+TV/Film: Births: Born Mar 10,1958, She starred in the movie King Solomon's Mines - 1985?
+Sharon stone
+10
+
+TV/Film: Births: Born Mar 10,1958, She starred in the movie Last Action Hero - 1993?
+Sharon stone
+10
+
+TV/Film: Births: Born Mar 10,1958, She starred in the movie Last Dance - 1996?
+Sharon stone
+10
+
+TV/Film: Births: Born Mar 10,1958, She starred in the movie Police Academy 4: Citizen's Patrol - 1987?
+Sharon stone
+10
+
+TV/Film: Births: Born Mar 10,1958, She starred in the movie Scissors - 1991?
+Sharon stone
+10
+
+TV/Film: Births: Born Mar 10,1958, She starred in the movie Simpatico - 1999?
+Sharon stone
+10
+
+TV/Film: Births: Born Mar 10,1958, She starred in the movie Sliver - 1993?
+Sharon stone
+10
+
+TV/Film: Births: Born Mar 10,1958, She starred in the movie Sphere - 1998?
+Sharon stone
+10
+
+TV/Film: Births: Born Mar 10,1958, She starred in the movie Stardust Memories - 1980?
+Sharon stone
+10
+
+TV/Film: Births: Born Mar 10,1958, She starred in the movie Tears in the Rain - 1995?
+Sharon stone
+10
+
+TV/Film: Births: Born Mar 10,1958, She starred in the movie The Calendar Girl Murders - 1984?
+Sharon stone
+10
+
+TV/Film: Births: Born Mar 10,1958, She starred in the movie The Mighty - 1998?
+Sharon stone
+10
+
+TV/Film: Births: Born Mar 10,1958, She starred in the movie The Muse - 1999?
+Sharon stone
+10
+
+TV/Film: Births: Born Mar 10,1958, She starred in the movie The Quick and the Dead - 1995?
+Sharon stone
+10
+
+TV/Film: Births: Born Mar 10,1958, She starred in the movie The Specialist - 1994?
+Sharon stone
+10
+
+TV/Film: Births: Born Mar 10,1958, She starred in the movie The Vegas Strip Wars - 1984?
+Sharon stone
+10
+
+TV/Film: Births: Born Mar 10,1958, She starred in the movie Total Recall - 1990?
+Sharon stone
+10
+
+TV/Film: Births: Born Mar 10,1958, She starred in the movie Where Sleeping Dogs Lie - 1993?
+Sharon stone
+10
+
+TV/Film: Births: Born Mar 10,1958, She starred in the movie Year of the Gun - 1991?
+Sharon stone
+10
+
+TV/Film: Births: Born Mar 14, 1947, he starred in the movie A Century of Cinema - 1994?
+Billy crystal
+10
+
+TV/Film: Births: Born Mar 14, 1947, he starred in the movie Analyze This - 1999?
+Billy crystal
+10
+
+TV/Film: Births: Born Mar 14, 1947, he starred in the movie City Slickers - 1991?
+Billy crystal
+10
+
+TV/Film: Births: Born Mar 14, 1947, he starred in the movie Deconstructing Harry - 1997?
+Billy crystal
+10
+
+TV/Film: Births: Born Mar 14, 1947, he starred in the movie Fathers' Day - 1997?
+Billy crystal
+10
+
+TV/Film: Births: Born Mar 14, 1947, he starred in the movie Forget Paris - 1995?
+Billy crystal
+10
+
+TV/Film: Births: Born Mar 14, 1947, he starred in the movie Get Bruce - 1999?
+Billy crystal
+10
+
+TV/Film: Births: Born Mar 14, 1947, he starred in the movie Hamlet - 1996?
+Billy crystal
+10
+
+TV/Film: Births: Born Mar 14, 1947, he starred in the movie Memories of Me - 1988?
+Billy crystal
+10
+
+TV/Film: Births: Born Mar 14, 1947, he starred in the movie Mr. Saturday Night - 1992?
+Billy crystal
+10
+
+TV/Film: Births: Born Mar 14, 1947, he starred in the movie My Giant - 1998?
+Billy crystal
+10
+
+TV/Film: Births: Born Mar 14, 1947, he starred in the movie Rabbit Test - 1978?
+Billy crystal
+10
+
+TV/Film: Births: Born Mar 14, 1947, he starred in the movie Running Scared - 1986?
+Billy crystal
+10
+
+TV/Film: Births: Born Mar 14, 1947, he starred in the movie The Princess Bride - 1987?
+Billy crystal
+10
+
+TV/Film: Births: Born Mar 14, 1947, he starred in the movie Throw Momma From the Train - 1987?
+Billy crystal
+10
+
+TV/Film: Births: Born Mar 14, 1947, he starred in the movie When Harry Met Sally ... - 1989?
+Billy crystal
+10
+
+TV/Film: Births: Born Mar 17, 1951, he starred in the movie Amber Waves - 1980?
+Kurt russell
+10
+
+TV/Film: Births: Born Mar 17, 1951, he starred in the movie Backdraft - 1991?
+Kurt russell
+10
+
+TV/Film: Births: Born Mar 17, 1951, he starred in the movie Big Trouble in Little China - 1986?
+Kurt russell
+10
+
+TV/Film: Births: Born Mar 17, 1951, he starred in the movie Breakdown - 1997?
+Kurt russell
+10
+
+TV/Film: Births: Born Mar 17, 1951, he starred in the movie Captain Ron - 1992?
+Kurt russell
+10
+
+TV/Film: Births: Born Mar 17, 1951, he starred in the movie Charley and the Angel - 1973?
+Kurt russell
+10
+
+TV/Film: Births: Born Mar 17, 1951, he starred in the movie Christmas Miracle in Caulfield U.S.A. - 1977?
+Kurt russell
+10
+
+TV/Film: Births: Born Mar 17, 1951, he starred in the movie Elvis! - 1979?
+Kurt russell
+10
+
+TV/Film: Births: Born Mar 17, 1951, he starred in the movie Escape From New York - 1981?
+Kurt russell
+10
+
+TV/Film: Births: Born Mar 17, 1951, he starred in the movie Executive Decision - 1996?
+Kurt russell
+10
+
+TV/Film: Births: Born Mar 17, 1951, he starred in the movie Follow Me, Boys! - 1966?
+Kurt russell
+10
+
+TV/Film: Births: Born Mar 17, 1951, he starred in the movie Fool's Parade/Dynamite Man From Glory Jail - 1971?
+Kurt russell
+10
+
+TV/Film: Births: Born Mar 17, 1951, he starred in the movie It Happened at the World's Fair - 1963?
+Kurt russell
+10
+
+TV/Film: Births: Born Mar 17, 1951, he starred in the movie John Carpenter's Escape From L.A. - 1996?
+Kurt russell
+10
+
+TV/Film: Births: Born Mar 17, 1951, he starred in the movie Mosby's Marauders - 1966?
+Kurt russell
+10
+
+TV/Film: Births: Born Mar 17, 1951, he starred in the movie Now You See Him, Now You Don't - 1972?
+Kurt russell
+10
+
+TV/Film: Births: Born Mar 17, 1951, he starred in the movie Overboard - 1987?
+Kurt russell
+10
+
+TV/Film: Births: Born Mar 17, 1951, he starred in the movie Search for the Gods - 1975?
+Kurt russell
+10
+
+TV/Film: Births: Born Mar 17, 1951, he starred in the movie Silkwood - 1983?
+Kurt russell
+10
+
+TV/Film: Births: Born Mar 17, 1951, he starred in the movie Soldier - 1998?
+Kurt russell
+10
+
+TV/Film: Births: Born Mar 17, 1951, he starred in the movie Spy Busters - 1969?
+Kurt russell
+10
+
+TV/Film: Births: Born Mar 17, 1951, he starred in the movie Stargate - 1994?
+Kurt russell
+10
+
+TV/Film: Births: Born Mar 17, 1951, he starred in the movie Superdad - 1974?
+Kurt russell
+10
+
+TV/Film: Births: Born Mar 17, 1951, he starred in the movie Swing Shift - 1984?
+Kurt russell
+10
+
+TV/Film: Births: Born Mar 17, 1951, he starred in the movie Tango and Cash - 1989?
+Kurt russell
+10
+
+TV/Film: Births: Born Mar 17, 1951, he starred in the movie Tequila Sunrise - 1988?
+Kurt russell
+10
+
+TV/Film: Births: Born Mar 17, 1951, he starred in the movie The Absent-Minded Professor - 1961?
+Kurt russell
+10
+
+TV/Film: Births: Born Mar 17, 1951, he starred in the movie The Barefoot Executive - 1971?
+Kurt russell
+10
+
+TV/Film: Births: Born Mar 17, 1951, he starred in the movie The Best of Times - 1986?
+Kurt russell
+10
+
+TV/Film: Births: Born Mar 17, 1951, he starred in the movie The Computer Wore Tennis Shoes - 1970?
+Kurt russell
+10
+
+TV/Film: Births: Born Mar 17, 1951, he starred in the movie The Deadly Tower - 1975?
+Kurt russell
+10
+
+TV/Film: Births: Born Mar 17, 1951, he starred in the movie The Guns of Diablo - 1964?
+Kurt russell
+10
+
+TV/Film: Births: Born Mar 17, 1951, he starred in the movie The Horse in the Gray Flannel Suit - 1968?
+Kurt russell
+10
+
+TV/Film: Births: Born Mar 17, 1951, he starred in the movie The Longest Drive - 1976?
+Kurt russell
+10
+
+TV/Film: Births: Born Mar 17, 1951, he starred in the movie The Mean Season - 1985?
+Kurt russell
+10
+
+TV/Film: Births: Born Mar 17, 1951, he starred in the movie The One and Only, Genuine, Original Family Band - 1968?
+Kurt russell
+10
+
+TV/Film: Births: Born Mar 17, 1951, he starred in the movie The Quest - 1976?
+Kurt russell
+10
+
+TV/Film: Births: Born Mar 17, 1951, he starred in the movie The Strongest Man in the World - 1975?
+Kurt russell
+10
+
+TV/Film: Births: Born Mar 17, 1951, he starred in the movie The Thing - 1983?
+Kurt russell
+10
+
+TV/Film: Births: Born Mar 17, 1951, he starred in the movie Tombstone - 1993?
+Kurt russell
+10
+
+TV/Film: Births: Born Mar 17, 1951, he starred in the movie Unlawful Entry - 1992?
+Kurt russell
+10
+
+TV/Film: Births: Born Mar 17, 1951, he starred in the movie Used Cars - 1980?
+Kurt russell
+10
+
+TV/Film: Births: Born Mar 17, 1951, he starred in the movie Winter People - 1989?
+Kurt russell
+10
+
+TV/Film: Births: Born Mar 19, 1955, he starred in the movie 12 Monkeys - 1995?
+Bruce willis
+10
+
+TV/Film: Births: Born Mar 19, 1955, he starred in the movie Armageddon - 1998?
+Bruce willis
+10
+
+TV/Film: Births: Born Mar 19, 1955, he starred in the movie Billy Bathgate - 1991?
+Bruce willis
+10
+
+TV/Film: Births: Born Mar 19, 1955, he starred in the movie Blind Date - 1987?
+Bruce willis
+10
+
+TV/Film: Births: Born Mar 19, 1955, he starred in the movie Breakfast of Champions - 1999?
+Bruce willis
+10
+
+TV/Film: Births: Born Mar 19, 1955, he starred in the movie Color of Night - 1994?
+Bruce willis
+10
+
+TV/Film: Births: Born Mar 19, 1955, he starred in the movie Death Becomes Her - 1992?
+Bruce willis
+10
+
+TV/Film: Births: Born Mar 19, 1955, he starred in the movie Die Hard - 1988?
+Bruce willis
+10
+
+TV/Film: Births: Born Mar 19, 1955, he starred in the movie Die Hard 2: Die Harder - 1990?
+Bruce willis
+10
+
+TV/Film: Births: Born Mar 19, 1955, he starred in the movie Die Hard With a Vengeance - 1995?
+Bruce willis
+10
+
+TV/Film: Births: Born Mar 19, 1955, he starred in the movie Four Rooms - 1995?
+Bruce willis
+10
+
+TV/Film: Births: Born Mar 19, 1955, he starred in the movie Hudson Hawk - 1991?
+Bruce willis
+10
+
+TV/Film: Births: Born Mar 19, 1955, he starred in the movie In Country - 1989?
+Bruce willis
+10
+
+TV/Film: Births: Born Mar 19, 1955, he starred in the movie Last Man Standing - 1996?
+Bruce willis
+10
+
+TV/Film: Births: Born Mar 19, 1955, he starred in the movie Look Who's Talking - 1989?
+Bruce willis
+10
+
+TV/Film: Births: Born Mar 19, 1955, he starred in the movie Look Who's Talking Too - 1990?
+Bruce willis
+10
+
+TV/Film: Births: Born Mar 19, 1955, he starred in the movie Mercury Rising - 1998?
+Bruce willis
+10
+
+TV/Film: Births: Born Mar 19, 1955, he starred in the movie Moonlighting - 1985?
+Bruce willis
+10
+
+TV/Film: Births: Born Mar 19, 1955, he starred in the movie Mortal Thoughts - 1991?
+Bruce willis
+10
+
+TV/Film: Births: Born Mar 19, 1955, he starred in the movie Nobody's Fool - 1994?
+Bruce willis
+10
+
+TV/Film: Births: Born Mar 19, 1955, he starred in the movie Pulp Fiction - 1994?
+Bruce willis
+10
+
+TV/Film: Births: Born Mar 19, 1955, he starred in the movie Striking Distance - 1993?
+Bruce willis
+10
+
+TV/Film: Births: Born Mar 19, 1955, he starred in the movie Sunset - 1988?
+Bruce willis
+10
+
+TV/Film: Births: Born Mar 19, 1955, he starred in the movie That's Adequate - 1989?
+Bruce willis
+10
+
+TV/Film: Births: Born Mar 19, 1955, he starred in the movie The Bonfire of the Vanities - 1990?
+Bruce willis
+10
+
+TV/Film: Births: Born Mar 19, 1955, he starred in the movie The Fifth Element - 1997?
+Bruce willis
+10
+
+TV/Film: Births: Born Mar 19, 1955, he starred in the movie The First Deadly Sin - 1980?
+Bruce willis
+10
+
+TV/Film: Births: Born Mar 19, 1955, he starred in the movie The Jackal - 1997?
+Bruce willis
+10
+
+TV/Film: Births: Born Mar 19, 1955, he starred in the movie The Last Boy Scout - 1991?
+Bruce willis
+10
+
+TV/Film: Births: Born Mar 19, 1955, he starred in the movie The Player - 1992?
+Bruce willis
+10
+
+TV/Film: Births: Born Mar 19, 1955, he starred in the movie The Siege - 1998?
+Bruce willis
+10
+
+TV/Film: Births: Born Mar 19, 1955, he starred in the movie The Sixth Sense - 1999?
+Bruce willis
+10
+
+TV/Film: Births: Born Mar 19, 1955, he starred in the movie The Story of Us - 1999?
+Bruce willis
+10
+
+TV/Film: Births: Born Mar 19, 1955, he starred in the movie The Verdict - 1982?
+Bruce willis
+10
+
+TV/Film: Births: Born Mar 19, 1955, he starred in the movie The Whole Nine Yards - 2000?
+Bruce willis
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie A Bridge Too Far - 1977?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie A Hill in Korea - 1956?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie A Shock to the System - 1990?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie Alfie - 1966?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie Ashanti - 1979?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie Battle of Great Britain: 1969?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie Beyond the Limit/The Honorary Consul - 1983?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie Beyond the Poseidon Adventure - 1979?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie Billion Dollar Brain - 1967?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie Blame It on Rio - 1984?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie Blind Spot - 1958?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie Blood and Wine - 1997?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie Blue Ice - 1992?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie Bullseye! - 1990?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie California Suite - 1978?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie Carve Her Name With Pride - 1958?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie Deadfall - 1968?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie Death Becomes Her - 1992?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie Deathtrap - 1982?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie Dirty Rotten Scoundrels - 1988?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie Dressed to Kill - 1980?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie Educating Rita - 1983?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie Foxhole in Cairo - 1960?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie Funeral in Berlin - 1967?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie Gambit - 1966?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie Get Carter - 1971?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie Half Moon Street - 1986?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie Hannah and Her Sisters - 1986?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie Harry and Walter Go to New York - 1976?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie How To Murder a Rich Uncle - 1958?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie Hurry, Sundown - 1967?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie Jack the Ripper - 1988?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie Jaws: The Revenge - 1987?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie Jekyll and Hyde - 1990?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie Kidnapped - 1971?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie Little Voice - 1998?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie Mona Lisa - 1986?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie Mr. Destiny - 1990?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie Noises Off - 1992?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie On Deadly Ground - 1994?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie Panic in the Parlour - 1957?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie Peeper - 1976?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie Play Dirty - 1969?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie Pulp - 1972?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie Silver Bears - 1978?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie Sleuth - 1972?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie Solo for Sparrow - 1962?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie Steel Bayonet - 1957?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie Surrender - 1987?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie Sweet Liberty - 1986?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie The Battle of Great Britain: 1969?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie The Black Windmill - 1974?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie The Bulldog Breed - 1960?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie The Cider House Rules - 1999?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie The Day the Earth Caught Fire - 1962?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie The Destructors - 1974?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie The Eagle Has Landed - 1976?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie The Fourth Protocol - 1987?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie The Hand - 1981?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie The Holcroft Covenant - 1985?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie The Ipcress File - 1965?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie The Island - 1980?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie The Italian Job - 1969?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie The Jigsaw Man - 1984?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie The Key - 1958?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie The Last Valley - 1971?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie The Magus - 1968?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie The Man Who Would Be King - 1975?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie The Marseille Contract/The Destructors - 1974?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie The Muppet Christmas Carol - 1992?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie The Romantic Englishwoman - 1975?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie The Swarm - 1978?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie The Two-Headed Spy - 1959?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie The Whistle Blower - 1987?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie The Wilby Conspiracy - 1975?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie The Wrong Arm of the Law - 1962?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie The Wrong Box - 1966?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie Too Late the Hero - 1970?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie Victory/Escape to Victory - 1981?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie Water - 1985?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie Without a Clue - 1988?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie Woman Times Seven - 1967?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie X, Y and Zee - 1972?
+Michael caine
+10
+
+TV/Film: Births: Born March 14, 1933, he starred in the movie Zulu - 1964?
+Michael caine
+10
+
+TV/Film: Births: Born March 25, 1965, She starred in the movie 'Til There Was You - 1997?
+Sarah jessica parker
+10
+
+TV/Film: Births: Born March 25, 1965, She starred in the movie Dudley Do-Right - 1999?
+Sarah jessica parker
+10
+
+TV/Film: Births: Born March 25, 1965, She starred in the movie Ed Wood - 1994?
+Sarah jessica parker
+10
+
+TV/Film: Births: Born March 25, 1965, She starred in the movie Extreme Measures - 1996?
+Sarah jessica parker
+10
+
+TV/Film: Births: Born March 25, 1965, She starred in the movie First Born - 1984?
+Sarah jessica parker
+10
+
+TV/Film: Births: Born March 25, 1965, She starred in the movie Footloose - 1984?
+Sarah jessica parker
+10
+
+TV/Film: Births: Born March 25, 1965, She starred in the movie Girls Just Want To Have Fun - 1985?
+Sarah jessica parker
+10
+
+TV/Film: Births: Born March 25, 1965, She starred in the movie Hocus Pocus - 1993?
+Sarah jessica parker
+10
+
+TV/Film: Births: Born March 25, 1965, She starred in the movie Honeymoon in Vegas - 1992?
+Sarah jessica parker
+10
+
+TV/Film: Births: Born March 25, 1965, She starred in the movie If Lucy Fell - 1996?
+Sarah jessica parker
+10
+
+TV/Film: Births: Born March 25, 1965, She starred in the movie L.A. Story - 1991?
+Sarah jessica parker
+10
+
+TV/Film: Births: Born March 25, 1965, She starred in the movie Mars Attacks! - 1996?
+Sarah jessica parker
+10
+
+TV/Film: Births: Born March 25, 1965, She starred in the movie Miami Rhapsody - 1995?
+Sarah jessica parker
+10
+
+TV/Film: Births: Born March 25, 1965, She starred in the movie Rich Kids - 1979?
+Sarah jessica parker
+10
+
+TV/Film: Births: Born March 25, 1965, She starred in the movie Somewhere Tomorrow - 1983?
+Sarah jessica parker
+10
+
+TV/Film: Births: Born March 25, 1965, She starred in the movie Striking Distance - 1993?
+Sarah jessica parker
+10
+
+TV/Film: Births: Born March 25, 1965, She starred in the movie The First Wives Club - 1996?
+Sarah jessica parker
+10
+
+TV/Film: Births: Born March 25, 1965, She starred in the movie The Flight of the Navigator - 1986?
+Sarah jessica parker
+10
+
+TV/Film: Births: Born March 25, 1965, She starred in the movie The Substance of Fire - 1996?
+Sarah jessica parker
+10
+
+TV/Film: Births: Born may 12, 1907 she holds the record for winning the most best actress oscars (4 wins)?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie A Bill of Divorcement - 1932?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie A Delicate Balance - 1973?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie A Woman Rebels - 1936?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie Adam's Rib - 1949?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie Alice Adams - 1935?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie Break of Hearts - 1935?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie Bringing Up Baby - 1938?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie Christopher Strong - 1933?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie Desk Set - 1957?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie Dragon Seed - 1944?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie Going Hollywood: The War Years - 1988?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie Grace Quigley - 1985?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie Guess Who's Coming to Dinner? - 1967?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie Holiday - 1938?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie Keeper of the Flame - 1942?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie Laura Lansing Slept Here - 1988?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie Little Women - 1933?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie Long Day's Journey Into Night - 1962?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie Love Affair - 1994?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie Love Among the Ruins - 1975?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie Mary of Scotland - 1936?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie Morning Glory - 1933?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie Mrs. Delafield Wants To Marry - 1986?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie Olly Olly Oxen Free - 1978?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie On Golden Pond - 1981?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie Pat and Mike - 1952?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie Quality Street - 1937?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie Rooster Cogburn - 1975?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie Song of Love - 1947?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie Spitfire - 1934?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie Stage Door - 1937?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie Stage Door Canteen - 1943?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie State of the Union - 1948?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie Suddenly, Last Summer - 1959?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie Summertime - 1955?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie Summertime/Summer Madness - 1955?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie Sylvia Scarlett - 1935?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie That's Entertainment, Part 2 - 1976?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie The African Queen - 1951?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie The Corn Is Green - 1979?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie The Glass Menagerie - 1973?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie The Iron Petticoat - 1956?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie The Lion in Winter - 1968?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie The Little Minister - 1934?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie The Madwoman of Chaillot - 1969?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie The Philadelphia Story - 1940?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie The Rainmaker - 1956?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie The Sea of Grass - 1947?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie The Trojan Women - 1971?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie Undercurrent - 1946?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie Without Love - 1945?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 12, 1907, She starred in the movie Woman of the Year - 1942?
+Katharine hepburn
+10
+
+TV/Film: Births: Born May 16, 1952, he starred in the movie Dante's Peak - 1997?
+Pierce brosnan
+10
+
+TV/Film: Births: Born May 16, 1952, he starred in the movie Entangled - 1993?
+Pierce brosnan
+10
+
+TV/Film: Births: Born May 16, 1952, he starred in the movie Goldeneye - 1995?
+Pierce brosnan
+10
+
+TV/Film: Births: Born May 16, 1952, he starred in the movie Love Affair - 1994?
+Pierce brosnan
+10
+
+TV/Film: Births: Born May 16, 1952, he starred in the movie Mars Attacks! - 1996?
+Pierce brosnan
+10
+
+TV/Film: Births: Born May 16, 1952, he starred in the movie Mister Johnson - 1990?
+Pierce brosnan
+10
+
+TV/Film: Births: Born May 16, 1952, he starred in the movie Mrs. Doubtfire - 1993?
+Pierce brosnan
+10
+
+TV/Film: Births: Born May 16, 1952, he starred in the movie Nomads - 1986?
+Pierce brosnan
+10
+
+TV/Film: Births: Born May 16, 1952, he starred in the movie Taffin - 1987?
+Pierce brosnan
+10
+
+TV/Film: Births: Born May 16, 1952, he starred in the movie The Deceivers - 1988?
+Pierce brosnan
+10
+
+TV/Film: Births: Born May 16, 1952, he starred in the movie The Fourth Protocol - 1987?
+Pierce brosnan
+10
+
+TV/Film: Births: Born May 16, 1952, he starred in the movie The Heist - 1989?
+Pierce brosnan
+10
+
+TV/Film: Births: Born May 16, 1952, he starred in the movie The Lawnmower Man - 1992?
+Pierce brosnan
+10
+
+TV/Film: Births: Born May 16, 1952, he starred in the movie The Mirror Crack'd - 1980?
+Pierce brosnan
+10
+
+TV/Film: Births: Born May 16, 1952, he starred in the movie The Mirror Has Two Faces - 1996?
+Pierce brosnan
+10
+
+TV/Film: Births: Born May 16, 1952, he starred in the movie The Thomas Crown Affair - 1999?
+Pierce brosnan
+10
+
+TV/Film: Births: Born May 16, 1952, he starred in the movie The World Is Not Enough - 1999?
+Pierce brosnan
+10
+
+TV/Film: Births: Born May 16, 1952, he starred in the movie Tomorrow Never Dies - 1997?
+Pierce brosnan
+10
+
+TV/Film: Births: Born May 16, 1952, he starred in the movie Victim of Love - 1991?
+Pierce brosnan
+10
+
+TV/Film: Births: Born May 4, 1929, She starred in the movie Always - 1989?
+Audrey hepburn
+10
+
+TV/Film: Births: Born May 4, 1929, She starred in the movie Bloodline - 1979?
+Audrey hepburn
+10
+
+TV/Film: Births: Born May 4, 1929, She starred in the movie Breakfast at Tiffany's - 1961?
+Audrey hepburn
+10
+
+TV/Film: Births: Born May 4, 1929, She starred in the movie Charade - 1963?
+Audrey hepburn
+10
+
+TV/Film: Births: Born May 4, 1929, She starred in the movie Directed by William Wyler - 1986?
+Audrey hepburn
+10
+
+TV/Film: Births: Born May 4, 1929, She starred in the movie Funny Face - 1957?
+Audrey hepburn
+10
+
+TV/Film: Births: Born May 4, 1929, She starred in the movie Green Mansions - 1959?
+Audrey hepburn
+10
+
+TV/Film: Births: Born May 4, 1929, She starred in the movie How To Steal a Million - 1966?
+Audrey hepburn
+10
+
+TV/Film: Births: Born May 4, 1929, She starred in the movie Laughter in Paradise - 1951?
+Audrey hepburn
+10
+
+TV/Film: Births: Born May 4, 1929, She starred in the movie Love Among Thieves - 1987?
+Audrey hepburn
+10
+
+TV/Film: Births: Born May 4, 1929, She starred in the movie Love in the Afternoon - 1957?
+Audrey hepburn
+10
+
+TV/Film: Births: Born May 4, 1929, She starred in the movie Monte Carlo Baby - 1952?
+Audrey hepburn
+10
+
+TV/Film: Births: Born May 4, 1929, She starred in the movie My Fair Lady - 1964?
+Audrey hepburn
+10
+
+TV/Film: Births: Born May 4, 1929, She starred in the movie Nederlands in 7 lessen - 1948?
+Audrey hepburn
+10
+
+TV/Film: Births: Born May 4, 1929, She starred in the movie Nous irons a Monte Carlo - 1951?
+Audrey hepburn
+10
+
+TV/Film: Births: Born May 4, 1929, She starred in the movie One Wild Oat - 1951?
+Audrey hepburn
+10
+
+TV/Film: Births: Born May 4, 1929, She starred in the movie Paris When It Sizzles - 1964?
+Audrey hepburn
+10
+
+TV/Film: Births: Born May 4, 1929, She starred in the movie Robin and Marian - 1976?
+Audrey hepburn
+10
+
+TV/Film: Births: Born May 4, 1929, She starred in the movie Roman Holiday - 1953?
+Audrey hepburn
+10
+
+TV/Film: Births: Born May 4, 1929, She starred in the movie Sabrina - 1954?
+Audrey hepburn
+10
+
+TV/Film: Births: Born May 4, 1929, She starred in the movie The Children's Hour/The Loudest Whisper - 1962?
+Audrey hepburn
+10
+
+TV/Film: Births: Born May 4, 1929, She starred in the movie The Lavender Hill Mob - 1951?
+Audrey hepburn
+10
+
+TV/Film: Births: Born May 4, 1929, She starred in the movie The Nun's Story - 1959?
+Audrey hepburn
+10
+
+TV/Film: Births: Born May 4, 1929, She starred in the movie The Secret People - 1952?
+Audrey hepburn
+10
+
+TV/Film: Births: Born May 4, 1929, She starred in the movie The Unforgiven - 1960?
+Audrey hepburn
+10
+
+TV/Film: Births: Born May 4, 1929, She starred in the movie They All Laughed - 1981?
+Audrey hepburn
+10
+
+TV/Film: Births: Born May 4, 1929, She starred in the movie Two for the Road - 1967?
+Audrey hepburn
+10
+
+TV/Film: Births: Born May 4, 1929, She starred in the movie Wait Until Dark - 1967?
+Audrey hepburn
+10
+
+TV/Film: Births: Born May 4, 1929, She starred in the movie War and Peace - 1956?
+Audrey hepburn
+10
+
+TV/Film: Births: Born May 4, 1929, She starred in the movie Young Wives' Tale - 1951?
+Audrey hepburn
+10
+
+TV/Film: Births: Born May 6, 1961, he starred in the movie And They're Off - 1982?
+George clooney
+10
+
+TV/Film: Births: Born May 6, 1961, he starred in the movie Batman & Robin - 1997?
+George clooney
+10
+
+TV/Film: Births: Born May 6, 1961, he starred in the movie From Dusk Till Dawn - 1996?
+George clooney
+10
+
+TV/Film: Births: Born May 6, 1961, he starred in the movie Full Tilt Boogie - 1998?
+George clooney
+10
+
+TV/Film: Births: Born May 6, 1961, he starred in the movie One Fine Day - 1996?
+George clooney
+10
+
+TV/Film: Births: Born May 6, 1961, he starred in the movie Out of Sight - 1998?
+George clooney
+10
+
+TV/Film: Births: Born May 6, 1961, he starred in the movie Red Surf - 1990?
+George clooney
+10
+
+TV/Film: Births: Born May 6, 1961, he starred in the movie Return of the Killer Tomatoes - 1988?
+George clooney
+10
+
+TV/Film: Births: Born May 6, 1961, he starred in the movie Return to Horror High - 1987?
+George clooney
+10
+
+TV/Film: Births: Born May 6, 1961, he starred in the movie South Park: Bigger, Longer & Uncut - 1999?
+George clooney
+10
+
+TV/Film: Births: Born May 6, 1961, he starred in the movie Sunset Beat - 1990?
+George clooney
+10
+
+TV/Film: Births: Born May 6, 1961, he starred in the movie The Peacemaker - 1997?
+George clooney
+10
+
+TV/Film: Births: Born May 6, 1961, he starred in the movie The Perfect Storm - 2000?
+George clooney
+10
+
+TV/Film: Births: Born May 6, 1961, he starred in the movie The Thin Red Line - 1998?
+George clooney
+10
+
+TV/Film: Births: Born May 6, 1961, he starred in the movie Three Kings - 1999?
+George clooney
+10
+
+TV/Film: Births: Born May 6, 1961, he starred in the movie Unbecoming Age - 1993?
+George clooney
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie A Farewell to Arms - 1932?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie A Man From Wyoming - 1930?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Adventures of Marco Polo - 1938?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Alias Jesse James - 1959?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Alice in Wonderland - 1933?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Arizona Bound - 1927?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Ball of Fire - 1941?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Beau Geste - 1939?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Beau Sabreur - 1928?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Blowing Wild - 1953?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Bluebeard's Eighth Wife - 1938?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Bright Leaf - 1950?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Casanova Brown - 1944?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie City Streets - 1931?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Cloak and Dagger - 1946?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Court Martial of Billy Mitchell - 1955?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Dallas - 1950?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Design for Living - 1933?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Desire - 1936?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Devil and the Deep - 1932?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Dick Turpin - 1925?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Distant Drums - 1951?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Doomsday - 1928?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Fighting Caravans - 1931?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie For Whom the Bell Tolls - 1943?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Friendly Persuasion - 1956?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Garden of Evil - 1954?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Good Sam - 1948?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Half a Bride - 1928?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie High Noon - 1952?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie His Woman - 1931?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Hollywood Boulevard - 1936?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie I Take This Woman - 1940?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie If I Had a Million - 1932?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie It - 1927?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie It's a Great Feeling - 1949?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Lest We Forget - 1937?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Lilac Time - 1928?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Love in the Afternoon - 1957?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Make Me a Star - 1932?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Man of the West - 1958?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Meet John Doe - 1941?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Morocco - 1930?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Mr. Deeds Goes to Town - 1936?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Nevada - 1944?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Northwest Mounted Police - 1940?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Now and Forever - 1934?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Old Ironsides - 1926?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie One Sunday Afternoon - 1933?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Only the Brave - 1930?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Operator 13 - 1933?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Paramount on Parade - 1930?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Peter Ibbetson - 1935?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Return to Paradise - 1953?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Saratoga Trunk - 1945?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Sergeant York - 1941?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Seven Days' Leave - 1942?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Souls at Sea - 1937?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Springfield Rifle - 1952?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Starlift - 1951?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Task Force - 1949?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Ten North Frederick - 1958?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie The Adventures of Marco Polo - 1938?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie The Cowboy and the Lady - 1938?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie The Eagle - 1925?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie The Enchanted Hill - 1926?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie The First Kiss - 1928?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie The Fountainhead - 1949?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie The General Died at Dawn - 1936?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie The Hanging Tree - 1959?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie The Last Outlaw - 1936?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie The Legion of the Condemned - 1928?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie The Lives of a Bengal Lancer - 1935?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie The Lucky Horseshoe - 1925?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie The Naked Edge - 1961?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie The Plainsman - 1936?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie The Pride of the Yankees - 1942?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie The Real Glory - 1939?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie The Shopworn Angel - 1938?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie The Slippery Pearls - 1931?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie The Story of Dr. Wassell - 1944?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie The Texan - 1930?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie The Thundering Herd - 1925?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie The Vanishing American - 1925?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie The Virginian - 1929?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie The Voice of Hollywood No. 13 - 1932?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie The Wedding Night - 1935?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie The Westerner - 1940?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie The Winning of Barbara Worth - 1926?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie The Wreck of the Mary Deare - 1959?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie They Came to Cordura - 1959?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Three Pals - 1926?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Today We Live - 1933?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Tricks - 1925?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Unconquered - 1947?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Vera Cruz - 1954?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Watch Your Wife - 1926?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Wild Horse Mesa - 1925?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Wings - 1927?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie Wolf Song - 1929?
+Gary cooper
+10
+
+TV/Film: Births: Born May 7, 1901, he starred in the movie You're in the Navy Now - 1951?
+Gary cooper
+10
+
+TV/Film: Births: Born Nov 11, 1962, She starred in the movie A Century of Cinema - 1994?
+Demi moore
+10
+
+TV/Film: Births: Born Nov 11, 1962, She starred in the movie A Few Good Men - 1992?
+Demi moore
+10
+
+TV/Film: Births: Born Nov 11, 1962, She starred in the movie About Last Night . . . - 1986?
+Demi moore
+10
+
+TV/Film: Births: Born Nov 11, 1962, She starred in the movie Beavis and Butt-Head Do America - 1996?
+Demi moore
+10
+
+TV/Film: Births: Born Nov 11, 1962, She starred in the movie Blame It on Rio - 1984?
+Demi moore
+10
+
+TV/Film: Births: Born Nov 11, 1962, She starred in the movie Choices - 1981?
+Demi moore
+10
+
+TV/Film: Births: Born Nov 11, 1962, She starred in the movie Deconstructing Harry - 1997?
+Demi moore
+10
+
+TV/Film: Births: Born Nov 11, 1962, She starred in the movie Disclosure - 1994?
+Demi moore
+10
+
+TV/Film: Births: Born Nov 11, 1962, She starred in the movie G.I. Jane - 1997?
+Demi moore
+10
+
+TV/Film: Births: Born Nov 11, 1962, She starred in the movie Ghost - 1990?
+Demi moore
+10
+
+TV/Film: Births: Born Nov 11, 1962, She starred in the movie Indecent Proposal - 1993?
+Demi moore
+10
+
+TV/Film: Births: Born Nov 11, 1962, She starred in the movie Mortal Thoughts - 1991?
+Demi moore
+10
+
+TV/Film: Births: Born Nov 11, 1962, She starred in the movie No Small Affair - 1985?
+Demi moore
+10
+
+TV/Film: Births: Born Nov 11, 1962, She starred in the movie Nothing But Trouble - 1991?
+Demi moore
+10
+
+TV/Film: Births: Born Nov 11, 1962, She starred in the movie Now and Then - 1995?
+Demi moore
+10
+
+TV/Film: Births: Born Nov 11, 1962, She starred in the movie One Crazy Summer - 1986?
+Demi moore
+10
+
+TV/Film: Births: Born Nov 11, 1962, She starred in the movie Parasite - 1982?
+Demi moore
+10
+
+TV/Film: Births: Born Nov 11, 1962, She starred in the movie Passion of Mind - 2000?
+Demi moore
+10
+
+TV/Film: Births: Born Nov 11, 1962, She starred in the movie St. Elmo's Fire - 1985?
+Demi moore
+10
+
+TV/Film: Births: Born Nov 11, 1962, She starred in the movie Striptease - 1996?
+Demi moore
+10
+
+TV/Film: Births: Born Nov 11, 1962, She starred in the movie The Butcher's Wife - 1991?
+Demi moore
+10
+
+TV/Film: Births: Born Nov 11, 1962, She starred in the movie The Hunchback of Notre Dame - 1996?
+Demi moore
+10
+
+TV/Film: Births: Born Nov 11, 1962, She starred in the movie The Juror - 1996?
+Demi moore
+10
+
+TV/Film: Births: Born Nov 11, 1962, She starred in the movie The Scarlet Letter - 1995?
+Demi moore
+10
+
+TV/Film: Births: Born Nov 11, 1962, She starred in the movie The Seventh Sign - 1988?
+Demi moore
+10
+
+TV/Film: Births: Born Nov 11, 1962, She starred in the movie We're No Angels - 1989?
+Demi moore
+10
+
+TV/Film: Births: Born Nov 11, 1962, She starred in the movie Wisdom - 1986?
+Demi moore
+10
+
+TV/Film: Births: Born Nov 11, 1962, She starred in the movie Young Doctors in Love - 1982?
+Demi moore
+10
+
+TV/Film: Births: Born Nov 13, 1954, She starred in the movie Bogus - 1996?
+Whoopi goldberg
+10
+
+TV/Film: Births: Born Nov 13, 1954, She starred in the movie Boys on the Side - 1995?
+Whoopi goldberg
+10
+
+TV/Film: Births: Born Nov 13, 1954, She starred in the movie Burglar - 1987?
+Whoopi goldberg
+10
+
+TV/Film: Births: Born Nov 13, 1954, She starred in the movie Burn Hollywood Burn: An Alan Smithee Film - 1998?
+Whoopi goldberg
+10
+
+TV/Film: Births: Born Nov 13, 1954, She starred in the movie Clara's Heart - 1988?
+Whoopi goldberg
+10
+
+TV/Film: Births: Born Nov 13, 1954, She starred in the movie Corrina, Corrina - 1994?
+Whoopi goldberg
+10
+
+TV/Film: Births: Born Nov 13, 1954, She starred in the movie Eddie - 1996?
+Whoopi goldberg
+10
+
+TV/Film: Births: Born Nov 13, 1954, She starred in the movie Fatal Beauty - 1987?
+Whoopi goldberg
+10
+
+TV/Film: Births: Born Nov 13, 1954, She starred in the movie Get Bruce - 1999?
+Whoopi goldberg
+10
+
+TV/Film: Births: Born Nov 13, 1954, She starred in the movie Ghost - 1990?
+Whoopi goldberg
+10
+
+TV/Film: Births: Born Nov 13, 1954, She starred in the movie Ghosts of Mississippi - 1996?
+Whoopi goldberg
+10
+
+TV/Film: Births: Born Nov 13, 1954, She starred in the movie Girl, Interrupted - 1999?
+Whoopi goldberg
+10
+
+TV/Film: Births: Born Nov 13, 1954, She starred in the movie Homer and Eddie - 1989?
+Whoopi goldberg
+10
+
+TV/Film: Births: Born Nov 13, 1954, She starred in the movie House Party 2 - 1991?
+Whoopi goldberg
+10
+
+TV/Film: Births: Born Nov 13, 1954, She starred in the movie How Stella Got Her Groove Back - 1998?
+Whoopi goldberg
+10
+
+TV/Film: Births: Born Nov 13, 1954, She starred in the movie Jumpin' Jack Flash - 1986?
+Whoopi goldberg
+10
+
+TV/Film: Births: Born Nov 13, 1954, She starred in the movie Kiss Shot - 1989?
+Whoopi goldberg
+10
+
+TV/Film: Births: Born Nov 13, 1954, She starred in the movie Made in America - 1993?
+Whoopi goldberg
+10
+
+TV/Film: Births: Born Nov 13, 1954, She starred in the movie Moonlight and Valentino - 1995?
+Whoopi goldberg
+10
+
+TV/Film: Births: Born Nov 13, 1954, She starred in the movie Naked in New York - 1994?
+Whoopi goldberg
+10
+
+TV/Film: Births: Born Nov 13, 1954, She starred in the movie Sarafina! - 1992?
+Whoopi goldberg
+10
+
+TV/Film: Births: Born Nov 13, 1954, She starred in the movie Sister Act - 1992?
+Whoopi goldberg
+10
+
+TV/Film: Births: Born Nov 13, 1954, She starred in the movie Sister Act 2: Back in the Habit - 1993?
+Whoopi goldberg
+10
+
+TV/Film: Births: Born Nov 13, 1954, She starred in the movie Soapdish - 1991?
+Whoopi goldberg
+10
+
+TV/Film: Births: Born Nov 13, 1954, She starred in the movie Star Trek: Generations - 1994?
+Whoopi goldberg
+10
+
+TV/Film: Births: Born Nov 13, 1954, She starred in the movie The Adventures of Rocky and Bullwinkle - 2000?
+Whoopi goldberg
+10
+
+TV/Film: Births: Born Nov 13, 1954, She starred in the movie The Associate - 1996?
+Whoopi goldberg
+10
+
+TV/Film: Births: Born Nov 13, 1954, She starred in the movie The Celluloid Closet - 1996?
+Whoopi goldberg
+10
+
+TV/Film: Births: Born Nov 13, 1954, She starred in the movie The Deep End of the Ocean - 1999?
+Whoopi goldberg
+10
+
+TV/Film: Births: Born Nov 13, 1954, She starred in the movie The Little Rascals - 1994?
+Whoopi goldberg
+10
+
+TV/Film: Births: Born Nov 13, 1954, She starred in the movie The Long Walk Home - 1990?
+Whoopi goldberg
+10
+
+TV/Film: Births: Born Nov 13, 1954, She starred in the movie The Magical World of Chuck Jones - 1992?
+Whoopi goldberg
+10
+
+TV/Film: Births: Born Nov 13, 1954, She starred in the movie The Pagemaster - 1994?
+Whoopi goldberg
+10
+
+TV/Film: Births: Born Nov 13, 1954, She starred in the movie The Player - 1992?
+Whoopi goldberg
+10
+
+TV/Film: Births: Born Nov 13, 1954, She starred in the movie The Rugrats Movie - 1998?
+Whoopi goldberg
+10
+
+TV/Film: Births: Born Nov 13, 1954, She starred in the movie The Telephone - 1988?
+Whoopi goldberg
+10
+
+TV/Film: Births: Born Nov 13, 1954, She starred in the movie Wisecracks - 1992?
+Whoopi goldberg
+10
+
+TV/Film: Births: Born Nov 19, 1961, She starred in the movie A Century of Cinema - 1994?
+Meg ryan
+10
+
+TV/Film: Births: Born Nov 19, 1961, She starred in the movie Addicted to Love - 1997?
+Meg ryan
+10
+
+TV/Film: Births: Born Nov 19, 1961, She starred in the movie Amityville 3-D/Amityville III: The Demon - 1983?
+Meg ryan
+10
+
+TV/Film: Births: Born Nov 19, 1961, She starred in the movie Armed and Dangerous - 1986?
+Meg ryan
+10
+
+TV/Film: Births: Born Nov 19, 1961, She starred in the movie City of Angels - 1998?
+Meg ryan
+10
+
+TV/Film: Births: Born Nov 19, 1961, She starred in the movie Courage Under Fire - 1996?
+Meg ryan
+10
+
+TV/Film: Births: Born Nov 19, 1961, She starred in the movie D.O.A. - 1988?
+Meg ryan
+10
+
+TV/Film: Births: Born Nov 19, 1961, She starred in the movie Flesh and Bone - 1993?
+Meg ryan
+10
+
+TV/Film: Births: Born Nov 19, 1961, She starred in the movie French Kiss - 1995?
+Meg ryan
+10
+
+TV/Film: Births: Born Nov 19, 1961, She starred in the movie Hanging Up - 2000?
+Meg ryan
+10
+
+TV/Film: Births: Born Nov 19, 1961, She starred in the movie Hurlyburly - 1998?
+Meg ryan
+10
+
+TV/Film: Births: Born Nov 19, 1961, She starred in the movie I.Q. - 1994?
+Meg ryan
+10
+
+TV/Film: Births: Born Nov 19, 1961, She starred in the movie Innerspace - 1987?
+Meg ryan
+10
+
+TV/Film: Births: Born Nov 19, 1961, She starred in the movie Joe Versus the Volcano - 1990?
+Meg ryan
+10
+
+TV/Film: Births: Born Nov 19, 1961, She starred in the movie Prelude to a Kiss - 1992?
+Meg ryan
+10
+
+TV/Film: Births: Born Nov 19, 1961, She starred in the movie Promised Land - 1988?
+Meg ryan
+10
+
+TV/Film: Births: Born Nov 19, 1961, She starred in the movie Restoration - 1995?
+Meg ryan
+10
+
+TV/Film: Births: Born Nov 19, 1961, She starred in the movie Rich and Famous - 1981?
+Meg ryan
+10
+
+TV/Film: Births: Born Nov 19, 1961, She starred in the movie Sleepless in Seattle - 1993?
+Meg ryan
+10
+
+TV/Film: Births: Born Nov 19, 1961, She starred in the movie The Doors - 1991?
+Meg ryan
+10
+
+TV/Film: Births: Born Nov 19, 1961, She starred in the movie The Presidio - 1988?
+Meg ryan
+10
+
+TV/Film: Births: Born Nov 19, 1961, She starred in the movie Top Gun - 1986?
+Meg ryan
+10
+
+TV/Film: Births: Born Nov 19, 1961, She starred in the movie When a Man Loves a Woman - 1994?
+Meg ryan
+10
+
+TV/Film: Births: Born Nov 19, 1961, She starred in the movie When Harry Met Sally ... - 1989?
+Meg ryan
+10
+
+TV/Film: Births: Born Nov 19, 1961, She starred in the movie You've Got Mail - 1998?
+Meg ryan
+10
+
+TV/Film: Births: Born Nov 19, 1962, She starred in the movie Alice Doesn't Live Here Anymore - 1974?
+Jodie foster
+10
+
+TV/Film: Births: Born Nov 19, 1962, She starred in the movie Anna and the King - 1999?
+Jodie foster
+10
+
+TV/Film: Births: Born Nov 19, 1962, She starred in the movie Backtrack - 1989?
+Jodie foster
+10
+
+TV/Film: Births: Born Nov 19, 1962, She starred in the movie Bugsy Malone - 1976?
+Jodie foster
+10
+
+TV/Film: Births: Born Nov 19, 1962, She starred in the movie Candleshoe - 1977?
+Jodie foster
+10
+
+TV/Film: Births: Born Nov 19, 1962, She starred in the movie Carny - 1980?
+Jodie foster
+10
+
+TV/Film: Births: Born Nov 19, 1962, She starred in the movie Contact - 1997?
+Jodie foster
+10
+
+TV/Film: Births: Born Nov 19, 1962, She starred in the movie Echoes of a Summer/The Last Castle - 1976?
+Jodie foster
+10
+
+TV/Film: Births: Born Nov 19, 1962, She starred in the movie Five Corners - 1988?
+Jodie foster
+10
+
+TV/Film: Births: Born Nov 19, 1962, She starred in the movie Fleur Bleue/Stop Calling Me Baby! - 1977?
+Jodie foster
+10
+
+TV/Film: Births: Born Nov 19, 1962, She starred in the movie Foxes - 1980?
+Jodie foster
+10
+
+TV/Film: Births: Born Nov 19, 1962, She starred in the movie Freaky Friday - 1976?
+Jodie foster
+10
+
+TV/Film: Births: Born Nov 19, 1962, She starred in the movie Hotel New Hampshire - 1984?
+Jodie foster
+10
+
+TV/Film: Births: Born Nov 19, 1962, She starred in the movie Il Casotto - 1977?
+Jodie foster
+10
+
+TV/Film: Births: Born Nov 19, 1962, She starred in the movie Kansas City Bomber - 1972?
+Jodie foster
+10
+
+TV/Film: Births: Born Nov 19, 1962, She starred in the movie Little Man Tate - 1991?
+Jodie foster
+10
+
+TV/Film: Births: Born Nov 19, 1962, She starred in the movie Maverick - 1994?
+Jodie foster
+10
+
+TV/Film: Births: Born Nov 19, 1962, She starred in the movie Mesmerized - 1985?
+Jodie foster
+10
+
+TV/Film: Births: Born Nov 19, 1962, She starred in the movie Moi, fleur bleue - 1977?
+Jodie foster
+10
+
+TV/Film: Births: Born Nov 19, 1962, She starred in the movie Movies Are My Life - 1978?
+Jodie foster
+10
+
+TV/Film: Births: Born Nov 19, 1962, She starred in the movie Napoleon and Samantha - 1972?
+Jodie foster
+10
+
+TV/Film: Births: Born Nov 19, 1962, She starred in the movie Nell - 1994?
+Jodie foster
+10
+
+TV/Film: Births: Born Nov 19, 1962, She starred in the movie O'Hara's Wife - 1982?
+Jodie foster
+10
+
+TV/Film: Births: Born Nov 19, 1962, She starred in the movie One Little Indian - 1973?
+Jodie foster
+10
+
+TV/Film: Births: Born Nov 19, 1962, She starred in the movie Shadows and Fog - 1992?
+Jodie foster
+10
+
+TV/Film: Births: Born Nov 19, 1962, She starred in the movie Siesta - 1987?
+Jodie foster
+10
+
+TV/Film: Births: Born Nov 19, 1962, She starred in the movie Smile, Jenny, You're Dead - 1974?
+Jodie foster
+10
+
+TV/Film: Births: Born Nov 19, 1962, She starred in the movie Sommersby - 1993?
+Jodie foster
+10
+
+TV/Film: Births: Born Nov 19, 1962, She starred in the movie Stealing Home - 1988?
+Jodie foster
+10
+
+TV/Film: Births: Born Nov 19, 1962, She starred in the movie Svengali - 1983?
+Jodie foster
+10
+
+TV/Film: Births: Born Nov 19, 1962, She starred in the movie Taxi Driver - 1976?
+Jodie foster
+10
+
+TV/Film: Births: Born Nov 19, 1962, She starred in the movie The Accused - 1988?
+Jodie foster
+10
+
+TV/Film: Births: Born Nov 19, 1962, She starred in the movie The Blood of Others - 1984?
+Jodie foster
+10
+
+TV/Film: Births: Born Nov 19, 1962, She starred in the movie The Hotel New Hampshire - 1984?
+Jodie foster
+10
+
+TV/Film: Births: Born Nov 19, 1962, She starred in the movie The Little Girl Who Lives Down the Lane - 1976?
+Jodie foster
+10
+
+TV/Film: Births: Born Nov 19, 1962, She starred in the movie The Silence of the Lambs - 1991?
+Jodie foster
+10
+
+TV/Film: Births: Born Nov 19, 1962, She starred in the movie Tom Sawyer - 1973?
+Jodie foster
+10
+
+TV/Film: Births: Born Nov 21, 1945, She starred in the movie $ (Dollars) - 1971?
+Goldie hawn
+10
+
+TV/Film: Births: Born Nov 21, 1945, She starred in the movie Best Friends - 1982?
+Goldie hawn
+10
+
+TV/Film: Births: Born Nov 21, 1945, She starred in the movie Bird on a Wire - 1990?
+Goldie hawn
+10
+
+TV/Film: Births: Born Nov 21, 1945, She starred in the movie Butterflies Are Free - 1972?
+Goldie hawn
+10
+
+TV/Film: Births: Born Nov 21, 1945, She starred in the movie Cactus Flower - 1969?
+Goldie hawn
+10
+
+TV/Film: Births: Born Nov 21, 1945, She starred in the movie Crisscross - 1992?
+Goldie hawn
+10
+
+TV/Film: Births: Born Nov 21, 1945, She starred in the movie Death Becomes Her - 1992?
+Goldie hawn
+10
+
+TV/Film: Births: Born Nov 21, 1945, She starred in the movie Deceived - 1991?
+Goldie hawn
+10
+
+TV/Film: Births: Born Nov 21, 1945, She starred in the movie Everyone Says I Love You - 1996?
+Goldie hawn
+10
+
+TV/Film: Births: Born Nov 21, 1945, She starred in the movie Foul Play - 1978?
+Goldie hawn
+10
+
+TV/Film: Births: Born Nov 21, 1945, She starred in the movie Housesitter - 1992?
+Goldie hawn
+10
+
+TV/Film: Births: Born Nov 21, 1945, She starred in the movie Lovers and Liars - 1979?
+Goldie hawn
+10
+
+TV/Film: Births: Born Nov 21, 1945, She starred in the movie Overboard - 1987?
+Goldie hawn
+10
+
+TV/Film: Births: Born Nov 21, 1945, She starred in the movie Private Benjamin - 1980?
+Goldie hawn
+10
+
+TV/Film: Births: Born Nov 21, 1945, She starred in the movie Protocol - 1984?
+Goldie hawn
+10
+
+TV/Film: Births: Born Nov 21, 1945, She starred in the movie Seems Like Old Times - 1980?
+Goldie hawn
+10
+
+TV/Film: Births: Born Nov 21, 1945, She starred in the movie Shampoo - 1975?
+Goldie hawn
+10
+
+TV/Film: Births: Born Nov 21, 1945, She starred in the movie Swing Shift - 1984?
+Goldie hawn
+10
+
+TV/Film: Births: Born Nov 21, 1945, She starred in the movie The Duchess and the Dirtwater Fox - 1976?
+Goldie hawn
+10
+
+TV/Film: Births: Born Nov 21, 1945, She starred in the movie The First Wives Club - 1996?
+Goldie hawn
+10
+
+TV/Film: Births: Born Nov 21, 1945, She starred in the movie The Girl From Petrovka - 1974?
+Goldie hawn
+10
+
+TV/Film: Births: Born Nov 21, 1945, She starred in the movie The One and Only, Genuine, Original Family Band - 1968?
+Goldie hawn
+10
+
+TV/Film: Births: Born Nov 21, 1945, She starred in the movie The Out-of-Towners - 1999?
+Goldie hawn
+10
+
+TV/Film: Births: Born Nov 21, 1945, She starred in the movie The Sugarland Express - 1974?
+Goldie hawn
+10
+
+TV/Film: Births: Born Nov 21, 1945, She starred in the movie There's a Girl in My Soup - 1970?
+Goldie hawn
+10
+
+TV/Film: Births: Born Nov 21, 1945, She starred in the movie Travels With Anita - 1978?
+Goldie hawn
+10
+
+TV/Film: Births: Born Nov 21, 1945, She starred in the movie Wildcats - 1986?
+Goldie hawn
+10
+
+TV/Film: Births: Born Nov 22, 1958, She starred in the movie A Fish Called Wanda - 1988?
+Jamie lee curtis
+10
+
+TV/Film: Births: Born Nov 22, 1958, She starred in the movie A Man in Love - 1987?
+Jamie lee curtis
+10
+
+TV/Film: Births: Born Nov 22, 1958, She starred in the movie Amazing Grace and Chuck - 1987?
+Jamie lee curtis
+10
+
+TV/Film: Births: Born Nov 22, 1958, She starred in the movie Blue Steel - 1990?
+Jamie lee curtis
+10
+
+TV/Film: Births: Born Nov 22, 1958, She starred in the movie Dominick and Eugene - 1988?
+Jamie lee curtis
+10
+
+TV/Film: Births: Born Nov 22, 1958, She starred in the movie Drowning Mona - 2000?
+Jamie lee curtis
+10
+
+TV/Film: Births: Born Nov 22, 1958, She starred in the movie Fierce Creatures - 1997?
+Jamie lee curtis
+10
+
+TV/Film: Births: Born Nov 22, 1958, She starred in the movie Forever Young - 1992?
+Jamie lee curtis
+10
+
+TV/Film: Births: Born Nov 22, 1958, She starred in the movie Grandview, U.S.A. - 1984?
+Jamie lee curtis
+10
+
+TV/Film: Births: Born Nov 22, 1958, She starred in the movie Halloween - 1978?
+Jamie lee curtis
+10
+
+TV/Film: Births: Born Nov 22, 1958, She starred in the movie Halloween II - 1981?
+Jamie lee curtis
+10
+
+TV/Film: Births: Born Nov 22, 1958, She starred in the movie Halloween: H20 - 1998?
+Jamie lee curtis
+10
+
+TV/Film: Births: Born Nov 22, 1958, She starred in the movie House Arrest - 1996?
+Jamie lee curtis
+10
+
+TV/Film: Births: Born Nov 22, 1958, She starred in the movie Inflammable - 1996?
+Jamie lee curtis
+10
+
+TV/Film: Births: Born Nov 22, 1958, She starred in the movie Love Letters - 1984?
+Jamie lee curtis
+10
+
+TV/Film: Births: Born Nov 22, 1958, She starred in the movie Mother's Boys - 1994?
+Jamie lee curtis
+10
+
+TV/Film: Births: Born Nov 22, 1958, She starred in the movie My Girl - 1991?
+Jamie lee curtis
+10
+
+TV/Film: Births: Born Nov 22, 1958, She starred in the movie My Girl 2 - 1994?
+Jamie lee curtis
+10
+
+TV/Film: Births: Born Nov 22, 1958, She starred in the movie Perfect - 1985?
+Jamie lee curtis
+10
+
+TV/Film: Births: Born Nov 22, 1958, She starred in the movie Prom Night - 1980?
+Jamie lee curtis
+10
+
+TV/Film: Births: Born Nov 22, 1958, She starred in the movie Queens Logic - 1991?
+Jamie lee curtis
+10
+
+TV/Film: Births: Born Nov 22, 1958, She starred in the movie Road Games - 1981?
+Jamie lee curtis
+10
+
+TV/Film: Births: Born Nov 22, 1958, She starred in the movie Terror Train - 1980?
+Jamie lee curtis
+10
+
+TV/Film: Births: Born Nov 22, 1958, She starred in the movie The Adventures of Buckaroo Banzai Across the 8th Dimension - 1984?
+Jamie lee curtis
+10
+
+TV/Film: Births: Born Nov 22, 1958, She starred in the movie The Fog - 1980?
+Jamie lee curtis
+10
+
+TV/Film: Births: Born Nov 22, 1958, She starred in the movie Trading Places - 1983?
+Jamie lee curtis
+10
+
+TV/Film: Births: Born Nov 22, 1958, She starred in the movie True Lies - 1994?
+Jamie lee curtis
+10
+
+TV/Film: Births: Born Nov 22, 1958, She starred in the movie Virus - 1998?
+Jamie lee curtis
+10
+
+TV/Film: Births: Born Nov 6, 1946, She starred in the movie A Century of Cinema - 1994?
+Sally field
+10
+
+TV/Film: Births: Born Nov 6, 1946, She starred in the movie Absence of Malice - 1981?
+Sally field
+10
+
+TV/Film: Births: Born Nov 6, 1946, She starred in the movie Back Roads - 1981?
+Sally field
+10
+
+TV/Film: Births: Born Nov 6, 1946, She starred in the movie Beyond the Poseidon Adventure - 1979?
+Sally field
+10
+
+TV/Film: Births: Born Nov 6, 1946, She starred in the movie Bridger - 1976?
+Sally field
+10
+
+TV/Film: Births: Born Nov 6, 1946, She starred in the movie Eye for an Eye - 1996?
+Sally field
+10
+
+TV/Film: Births: Born Nov 6, 1946, She starred in the movie Forrest Gump - 1994?
+Sally field
+10
+
+TV/Film: Births: Born Nov 6, 1946, She starred in the movie Heroes - 1977?
+Sally field
+10
+
+TV/Film: Births: Born Nov 6, 1946, She starred in the movie Hitched - 1971?
+Sally field
+10
+
+TV/Film: Births: Born Nov 6, 1946, She starred in the movie Home for the Holidays - 1972?
+Sally field
+10
+
+TV/Film: Births: Born Nov 6, 1946, She starred in the movie Homeward Bound II- Lost in San Francisco - 1996?
+Sally field
+10
+
+TV/Film: Births: Born Nov 6, 1946, She starred in the movie Homeward Bound: The Incredible Journey - 1993?
+Sally field
+10
+
+TV/Film: Births: Born Nov 6, 1946, She starred in the movie Hooper - 1978?
+Sally field
+10
+
+TV/Film: Births: Born Nov 6, 1946, She starred in the movie Kiss Me Goodbye - 1982?
+Sally field
+10
+
+TV/Film: Births: Born Nov 6, 1946, She starred in the movie Marriage: Year One - 1971?
+Sally field
+10
+
+TV/Film: Births: Born Nov 6, 1946, She starred in the movie Maybe I'll Come Home in the Spring - 1971?
+Sally field
+10
+
+TV/Film: Births: Born Nov 6, 1946, She starred in the movie Mongo's Back in Town - 1971?
+Sally field
+10
+
+TV/Film: Births: Born Nov 6, 1946, She starred in the movie Mrs. Doubtfire - 1993?
+Sally field
+10
+
+TV/Film: Births: Born Nov 6, 1946, She starred in the movie Murphy's Romance - 1985?
+Sally field
+10
+
+TV/Film: Births: Born Nov 6, 1946, She starred in the movie Norma Rae - 1979?
+Sally field
+10
+
+TV/Film: Births: Born Nov 6, 1946, She starred in the movie Not Without My Daughter - 1991?
+Sally field
+10
+
+TV/Film: Births: Born Nov 6, 1946, She starred in the movie Places in the Heart - 1984?
+Sally field
+10
+
+TV/Film: Births: Born Nov 6, 1946, She starred in the movie Punchline - 1988?
+Sally field
+10
+
+TV/Film: Births: Born Nov 6, 1946, She starred in the movie Smokey and the Bandit - 1977?
+Sally field
+10
+
+TV/Film: Births: Born Nov 6, 1946, She starred in the movie Smokey and the Bandit II - 1980?
+Sally field
+10
+
+TV/Film: Births: Born Nov 6, 1946, She starred in the movie Soapdish - 1991?
+Sally field
+10
+
+TV/Film: Births: Born Nov 6, 1946, She starred in the movie Stay Hungry - 1976?
+Sally field
+10
+
+TV/Film: Births: Born Nov 6, 1946, She starred in the movie Steel Magnolias - 1989?
+Sally field
+10
+
+TV/Film: Births: Born Nov 6, 1946, She starred in the movie Surrender - 1987?
+Sally field
+10
+
+TV/Film: Births: Born Nov 6, 1946, She starred in the movie Sybil - 1976?
+Sally field
+10
+
+TV/Film: Births: Born Nov 6, 1946, She starred in the movie The End - 1978?
+Sally field
+10
+
+TV/Film: Births: Born Nov 6, 1946, She starred in the movie The Way West - 1967?
+Sally field
+10
+
+TV/Film: Births: Born Nov 6, 1946, She starred in the movie Where the Heart Is - 2000?
+Sally field
+10
+
+TV/Film: Births: Born Oct 1, 1935, She starred in the movie 10 - 1979?
+Julie andrews
+10
+
+TV/Film: Births: Born Oct 1, 1935, She starred in the movie A Fine Romance - 1992?
+Julie andrews
+10
+
+TV/Film: Births: Born Oct 1, 1935, She starred in the movie Darling Lili - 1970?
+Julie andrews
+10
+
+TV/Film: Births: Born Oct 1, 1935, She starred in the movie Duet for One - 1987?
+Julie andrews
+10
+
+TV/Film: Births: Born Oct 1, 1935, She starred in the movie Hawaii - 1966?
+Julie andrews
+10
+
+TV/Film: Births: Born Oct 1, 1935, She starred in the movie Little Miss Marker - 1980?
+Julie andrews
+10
+
+TV/Film: Births: Born Oct 1, 1935, She starred in the movie Mary Poppins - 1964?
+Julie andrews
+10
+
+TV/Film: Births: Born Oct 1, 1935, She starred in the movie Our Sons - 1991?
+Julie andrews
+10
+
+TV/Film: Births: Born Oct 1, 1935, She starred in the movie S.O.B. - 1981?
+Julie andrews
+10
+
+TV/Film: Births: Born Oct 1, 1935, She starred in the movie Star! - 1968?
+Julie andrews
+10
+
+TV/Film: Births: Born Oct 1, 1935, She starred in the movie That's Life - 1986?
+Julie andrews
+10
+
+TV/Film: Births: Born Oct 1, 1935, She starred in the movie The Americanization of Emily - 1964?
+Julie andrews
+10
+
+TV/Film: Births: Born Oct 1, 1935, She starred in the movie The Man Who Loved Women - 1983?
+Julie andrews
+10
+
+TV/Film: Births: Born Oct 1, 1935, She starred in the movie The Sound of Music: 1965?
+Julie andrews
+10
+
+TV/Film: Births: Born Oct 1, 1935, She starred in the movie The Tamarind Seed - 1974?
+Julie andrews
+10
+
+TV/Film: Births: Born Oct 1, 1935, She starred in the movie Thoroughly Modern Millie - 1967?
+Julie andrews
+10
+
+TV/Film: Births: Born Oct 1, 1935, She starred in the movie Torn Curtain - 1966?
+Julie andrews
+10
+
+TV/Film: Births: Born Oct 1, 1935, She starred in the movie Victor/Victoria - 1982?
+Julie andrews
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie A Breath of Scandal - 1960?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie A Lawless Street - 1955?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie All Fall Down - 1962?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie Bedknobs and Broomsticks - 1971?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie Blue Hawaii - 1961?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie Dear Heart - 1965?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie Death on the Nile - 1978?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie Enjeu de la vie/A Life at Stake - 1955?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie Gaslight - 1944?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie Harlow - 1965?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie If Winter Comes - 1948?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie In the Cool of the Day - 1963?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie Ingrid - 1985?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie Kind Lady - 1951?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie Lace - 1984?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie Little Gloria . . . Happy at Last - 1982?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie Mr. Buddwing - 1966?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie Mutiny - 1952?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie National Velvet - 1944?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie Pirates of Penzance - 1983?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie Please Murder Me - 1955?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie Rage of Angels: The Story Continues - 1986?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie Remains To Be Seen - 1953?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie Samson and Delilah - 1949?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie Season of Passion - 1961?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie Something for Everyone - 1970?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie State of the Union - 1948?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie Summer of the 17th Doll - 1959?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie Tenth Avenue Angel - 1948?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie The Amorous Adventures of Moll Flanders - 1965?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie The Company of Wolves - 1985?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie The Court Jester - 1956?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie The Dark at the Top of the Stairs - 1960?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie The First Olympics____Athens 1896 - 1984?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie The Gift of Love: A Christmas Story - 1983?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie The Greatest Story Ever Told - 1965?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie The Harvey Girls - 1945?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie The Hoodlum Saint - 1946?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie The Lady Vanishes - 1979?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie The Long Hot Summer - 1958?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie The Love She Sought - 1990?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie The Manchurian Candidate - 1962?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie The Mirror Crack'd - 1980?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie The Picture of Dorian Gray - 1945?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie The Private Affairs of Bel Ami - 1947?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie The Purple Mask - 1955?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie The Red Danube - 1949?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie The Reluctant Debutante - 1958?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie The Shell Seekers - 1989?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie The Three Musketeers - 1974?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie The World of Henry Orient - 1964?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 16, 1925, She starred in the movie Till the Clouds Roll By - 1946?
+Angela lansbury
+10
+
+TV/Film: Births: Born Oct 28, 1963, She starred in the movie A Smile Like Yours - 1997?
+Lauren holly
+10
+
+TV/Film: Births: Born Oct 28, 1963, She starred in the movie Any Given Sunday - 1999?
+Lauren holly
+10
+
+TV/Film: Births: Born Oct 28, 1963, She starred in the movie Archie: To Riverdale and Back Again - 1990?
+Lauren holly
+10
+
+TV/Film: Births: Born Oct 28, 1963, She starred in the movie Band of the Hand - 1986?
+Lauren holly
+10
+
+TV/Film: Births: Born Oct 28, 1963, She starred in the movie Beautiful Girls - 1996?
+Lauren holly
+10
+
+TV/Film: Births: Born Oct 28, 1963, She starred in the movie Down Periscope - 1996?
+Lauren holly
+10
+
+TV/Film: Births: Born Oct 28, 1963, She starred in the movie Dragon: The Bruce Lee Story - 1993?
+Lauren holly
+10
+
+TV/Film: Births: Born Oct 28, 1963, She starred in the movie Dumb & Dumber - 1994?
+Lauren holly
+10
+
+TV/Film: Births: Born Oct 28, 1963, She starred in the movie Fugitive Among Us - 1992?
+Lauren holly
+10
+
+TV/Film: Births: Born Oct 28, 1963, She starred in the movie No Looking Back - 1998?
+Lauren holly
+10
+
+TV/Film: Births: Born Oct 28, 1963, She starred in the movie Sabrina - 1995?
+Lauren holly
+10
+
+TV/Film: Births: Born Oct 28, 1963, She starred in the movie The Adventures of Ford Fairlane - 1990?
+Lauren holly
+10
+
+TV/Film: Births: Born Oct 28, 1963, She starred in the movie Turbulence - 1997?
+Lauren holly
+10
+
+TV/Film: Births: Born Oct 28, 1967, She starred in the movie A Century of Cinema - 1994?
+Julia roberts
+10
+
+TV/Film: Births: Born Oct 28, 1967, She starred in the movie Blood Red - 1989?
+Julia roberts
+10
+
+TV/Film: Births: Born Oct 28, 1967, She starred in the movie Conspiracy Theory - 1997?
+Julia roberts
+10
+
+TV/Film: Births: Born Oct 28, 1967, She starred in the movie Dying Young - 1991?
+Julia roberts
+10
+
+TV/Film: Births: Born Oct 28, 1967, She starred in the movie Erin Brockovich - 2000?
+Julia roberts
+10
+
+TV/Film: Births: Born Oct 28, 1967, She starred in the movie Everyone Says I Love You - 1996?
+Julia roberts
+10
+
+TV/Film: Births: Born Oct 28, 1967, She starred in the movie Flatliners - 1990?
+Julia roberts
+10
+
+TV/Film: Births: Born Oct 28, 1967, She starred in the movie Hook - 1991?
+Julia roberts
+10
+
+TV/Film: Births: Born Oct 28, 1967, She starred in the movie I Love Trouble - 1994?
+Julia roberts
+10
+
+TV/Film: Births: Born Oct 28, 1967, She starred in the movie Mary Reilly - 1996?
+Julia roberts
+10
+
+TV/Film: Births: Born Oct 28, 1967, She starred in the movie Michael Collins - 1996?
+Julia roberts
+10
+
+TV/Film: Births: Born Oct 28, 1967, She starred in the movie My Best Friend's Wedding - 1997?
+Julia roberts
+10
+
+TV/Film: Births: Born Oct 28, 1967, She starred in the movie Mystic Pizza ? 1988?
+Julia Roberts 
+10
+
+TV/Film: Births: Born Oct 28, 1967, She starred in the movie Notting Hill - 1999?
+Julia roberts
+10
+
+TV/Film: Births: Born Oct 28, 1967, She starred in the movie Pretty Woman - 1990?
+Julia roberts
+10
+
+TV/Film: Births: Born Oct 28, 1967, She starred in the movie Ready To Wear (Pr?t-?-Porter) - 1994?
+Julia roberts
+10
+
+TV/Film: Births: Born Oct 28, 1967, She starred in the movie Runaway Bride - 1999?
+Julia roberts
+10
+
+TV/Film: Births: Born Oct 28, 1967, She starred in the movie Satisfaction - 1988?
+Julia roberts
+10
+
+TV/Film: Births: Born Oct 28, 1967, She starred in the movie Sleeping With the Enemy - 1991?
+Julia roberts
+10
+
+TV/Film: Births: Born Oct 28, 1967, She starred in the movie Something to Talk About - 1995?
+Julia roberts
+10
+
+TV/Film: Births: Born Oct 28, 1967, She starred in the movie Steel Magnolias - 1989?
+Julia roberts
+10
+
+TV/Film: Births: Born Oct 28, 1967, She starred in the movie Stepmom - 1998?
+Julia roberts
+10
+
+TV/Film: Births: Born Oct 28, 1967, She starred in the movie The Pelican Brief - 1993?
+Julia roberts
+10
+
+TV/Film: Births: Born Oct 28, 1967, She starred in the movie The Player - 1992?
+Julia roberts
+10
+
+TV/Film: Births: Born Oct 29, 1971, She starred in the movie 1969 - 1988?
+Winona ryder
+10
+
+TV/Film: Births: Born Oct 29, 1971, She starred in the movie Alien Resurrection - 1997?
+Winona ryder
+10
+
+TV/Film: Births: Born Oct 29, 1971, She starred in the movie Beetlejuice - 1988?
+Winona ryder
+10
+
+TV/Film: Births: Born Oct 29, 1971, She starred in the movie Boys - 1996?
+Winona ryder
+10
+
+TV/Film: Births: Born Oct 29, 1971, She starred in the movie Bram Stoker's Dracula - 1992?
+Winona ryder
+10
+
+TV/Film: Births: Born Oct 29, 1971, She starred in the movie Celebrity - 1998?
+Winona ryder
+10
+
+TV/Film: Births: Born Oct 29, 1971, She starred in the movie Edward Scissorhands - 1990?
+Winona ryder
+10
+
+TV/Film: Births: Born Oct 29, 1971, She starred in the movie Girl, Interrupted - 1999?
+Winona ryder
+10
+
+TV/Film: Births: Born Oct 29, 1971, She starred in the movie Great Balls of Fire! - 1989?
+Winona ryder
+10
+
+TV/Film: Births: Born Oct 29, 1971, She starred in the movie Heathers - 1989?
+Winona ryder
+10
+
+TV/Film: Births: Born Oct 29, 1971, She starred in the movie How To Make an American Quilt - 1995?
+Winona ryder
+10
+
+TV/Film: Births: Born Oct 29, 1971, She starred in the movie Little Women - 1994?
+Winona ryder
+10
+
+TV/Film: Births: Born Oct 29, 1971, She starred in the movie Looking for Richard - 1996?
+Winona ryder
+10
+
+TV/Film: Births: Born Oct 29, 1971, She starred in the movie Lucas - 1986?
+Winona ryder
+10
+
+TV/Film: Births: Born Oct 29, 1971, She starred in the movie Mermaids - 1990?
+Winona ryder
+10
+
+TV/Film: Births: Born Oct 29, 1971, She starred in the movie Night on Earth - 1992?
+Winona ryder
+10
+
+TV/Film: Births: Born Oct 29, 1971, She starred in the movie Reality Bites - 1994?
+Winona ryder
+10
+
+TV/Film: Births: Born Oct 29, 1971, She starred in the movie Square Dance - 1987?
+Winona ryder
+10
+
+TV/Film: Births: Born Oct 29, 1971, She starred in the movie The Age of Innocence - 1993?
+Winona ryder
+10
+
+TV/Film: Births: Born Oct 29, 1971, She starred in the movie The Crucible - 1996?
+Winona ryder
+10
+
+TV/Film: Births: Born Oct 29, 1971, She starred in the movie The House of the Spirits - 1993?
+Winona ryder
+10
+
+TV/Film: Births: Born Oct 29, 1971, She starred in the movie Welcome Home, Roxy Carmichael - 1990?
+Winona ryder
+10
+
+TV/Film: Births: Born Oct 3, 1973, She starred in the movie 54 - 1998?
+Neve campbell
+10
+
+TV/Film: Births: Born Oct 3, 1973, She starred in the movie Drowning Mona - 2000?
+Neve campbell
+10
+
+TV/Film: Births: Born Oct 3, 1973, She starred in the movie Love Child - 1995?
+Neve campbell
+10
+
+TV/Film: Births: Born Oct 3, 1973, She starred in the movie Paint Cans - 1994?
+Neve campbell
+10
+
+TV/Film: Births: Born Oct 3, 1973, She starred in the movie Scream - 1996?
+Neve campbell
+10
+
+TV/Film: Births: Born Oct 3, 1973, She starred in the movie Scream 2 - 1997?
+Neve campbell
+10
+
+TV/Film: Births: Born Oct 3, 1973, She starred in the movie The Craft - 1996?
+Neve campbell
+10
+
+TV/Film: Births: Born Oct 3, 1973, She starred in the movie The Dark - 1994?
+Neve campbell
+10
+
+TV/Film: Births: Born Oct 3, 1973, She starred in the movie Three to Tango - 1999?
+Neve campbell
+10
+
+TV/Film: Births: Born Oct 3, 1973, She starred in the movie Wild Things - 1998?
+Neve campbell
+10
+
+TV/Film: Births: Born Oct 4, 1946, She starred in the movie A Dry White Season - 1989?
+Susan sarandon
+10
+
+TV/Film: Births: Born Oct 4, 1946, She starred in the movie Anywhere But Here - 1999?
+Susan sarandon
+10
+
+TV/Film: Births: Born Oct 4, 1946, She starred in the movie Atlantic City - 1980?
+Susan sarandon
+10
+
+TV/Film: Births: Born Oct 4, 1946, She starred in the movie Bob Roberts - 1992?
+Susan sarandon
+10
+
+TV/Film: Births: Born Oct 4, 1946, She starred in the movie Bull Durham - 1988?
+Susan sarandon
+10
+
+TV/Film: Births: Born Oct 4, 1946, She starred in the movie Checkered Flag or Crash - 1977?
+Susan sarandon
+10
+
+TV/Film: Births: Born Oct 4, 1946, She starred in the movie Compromising Positions - 1985?
+Susan sarandon
+10
+
+TV/Film: Births: Born Oct 4, 1946, She starred in the movie Cradle Will Rock - 1999?
+Susan sarandon
+10
+
+TV/Film: Births: Born Oct 4, 1946, She starred in the movie Da Grande - 1989?
+Susan sarandon
+10
+
+TV/Film: Births: Born Oct 4, 1946, She starred in the movie Dead Man Walking - 1995?
+Susan sarandon
+10
+
+TV/Film: Births: Born Oct 4, 1946, She starred in the movie Dragonfly - 1976?
+Susan sarandon
+10
+
+TV/Film: Births: Born Oct 4, 1946, She starred in the movie Erik the Viking - 1989?
+Susan sarandon
+10
+
+TV/Film: Births: Born Oct 4, 1946, She starred in the movie He'll See You Now - 1984?
+Susan sarandon
+10
+
+TV/Film: Births: Born Oct 4, 1946, She starred in the movie Illuminata - 1999?
+Susan sarandon
+10
+
+TV/Film: Births: Born Oct 4, 1946, She starred in the movie James and the Giant Peach - 1996?
+Susan sarandon
+10
+
+TV/Film: Births: Born Oct 4, 1946, She starred in the movie Joe - 1970?
+Susan sarandon
+10
+
+TV/Film: Births: Born Oct 4, 1946, She starred in the movie Joe Gould's Secret - 2000?
+Susan sarandon
+10
+
+TV/Film: Births: Born Oct 4, 1946, She starred in the movie King of the Gypsies - 1978?
+Susan sarandon
+10
+
+TV/Film: Births: Born Oct 4, 1946, She starred in the movie Light Sleeper - 1992?
+Susan sarandon
+10
+
+TV/Film: Births: Born Oct 4, 1946, She starred in the movie Little Women - 1994?
+Susan sarandon
+10
+
+TV/Film: Births: Born Oct 4, 1946, She starred in the movie Lorenzo's Oil - 1992?
+Susan sarandon
+10
+
+TV/Film: Births: Born Oct 4, 1946, She starred in the movie Lovin' Molly - 1974?
+Susan sarandon
+10
+
+TV/Film: Births: Born Oct 4, 1946, She starred in the movie Loving Couples - 1980?
+Susan sarandon
+10
+
+TV/Film: Births: Born Oct 4, 1946, She starred in the movie Mortadella/Lady Liberty - 1972?
+Susan sarandon
+10
+
+TV/Film: Births: Born Oct 4, 1946, She starred in the movie Mussolini & I - 1985?
+Susan sarandon
+10
+
+TV/Film: Births: Born Oct 4, 1946, She starred in the movie One Summer Love - 1976?
+Susan sarandon
+10
+
+TV/Film: Births: Born Oct 4, 1946, She starred in the movie Pretty Baby - 1978?
+Susan sarandon
+10
+
+TV/Film: Births: Born Oct 4, 1946, She starred in the movie Safe Passage - 1994?
+Susan sarandon
+10
+
+TV/Film: Births: Born Oct 4, 1946, She starred in the movie Something Short of Paradise - 1979?
+Susan sarandon
+10
+
+TV/Film: Births: Born Oct 4, 1946, She starred in the movie Stepmom - 1998?
+Susan sarandon
+10
+
+TV/Film: Births: Born Oct 4, 1946, She starred in the movie Sweet Hearts Dance - 1988?
+Susan sarandon
+10
+
+TV/Film: Births: Born Oct 4, 1946, She starred in the movie Tempest - 1982?
+Susan sarandon
+10
+
+TV/Film: Births: Born Oct 4, 1946, She starred in the movie The Buddy System - 1984?
+Susan sarandon
+10
+
+TV/Film: Births: Born Oct 4, 1946, She starred in the movie The Celluloid Closet - 1996?
+Susan sarandon
+10
+
+TV/Film: Births: Born Oct 4, 1946, She starred in the movie The Client - 1994?
+Susan sarandon
+10
+
+TV/Film: Births: Born Oct 4, 1946, She starred in the movie The Front Page - 1974?
+Susan sarandon
+10
+
+TV/Film: Births: Born Oct 4, 1946, She starred in the movie The Great Smokey Roadblock/The Last of the Cowboys - 1976?
+Susan Sarandon
+10
+
+TV/Film: Births: Born Oct 4, 1946, She starred in the movie The Great Waldo Pepper - 1975?
+Susan sarandon
+10
+
+TV/Film: Births: Born Oct 4, 1946, She starred in the movie The Hunger - 1983?
+Susan sarandon
+10
+
+TV/Film: Births: Born Oct 4, 1946, She starred in the movie The January Man - 1989?
+Susan sarandon
+10
+
+TV/Film: Births: Born Oct 4, 1946, She starred in the movie The Other Side of Midnight - 1977?
+Susan sarandon
+10
+
+TV/Film: Births: Born Oct 4, 1946, She starred in the movie The Player - 1992?
+Susan sarandon
+10
+
+TV/Film: Births: Born Oct 4, 1946, She starred in the movie The Rocky Horror Picture Show - 1975?
+Susan sarandon
+10
+
+TV/Film: Births: Born Oct 4, 1946, She starred in the movie The Witches of Eastwick - 1987?
+Susan sarandon
+10
+
+TV/Film: Births: Born Oct 4, 1946, She starred in the movie Thelma & Louise - 1991?
+Susan sarandon
+10
+
+TV/Film: Births: Born Oct 4, 1946, She starred in the movie Twilight - 1998?
+Susan sarandon
+10
+
+TV/Film: Births: Born Oct 4, 1946, She starred in the movie White Palace - 1990?
+Susan sarandon
+10
+
+TV/Film: Births: Born Oct 4, 1946, She starred in the movie Who Am I This Time? - 1982?
+Susan sarandon
+10
+
+TV/Film: Births: Born Oct 4, 1946, She starred in the movie Women of Valor - 1986?
+Susan sarandon
+10
+
+TV/Film: Births: Born Oct 4, 1976, She starred in the movie Batman & Robin - 1997?
+Alicia silverstone
+10
+
+TV/Film: Births: Born Oct 4, 1976, She starred in the movie Blast From the Past - 1999?
+Alicia silverstone
+10
+
+TV/Film: Births: Born Oct 4, 1976, She starred in the movie Clueless - 1995?
+Alicia silverstone
+10
+
+TV/Film: Births: Born Oct 4, 1976, She starred in the movie Excess Baggage - 1997?
+Alicia silverstone
+10
+
+TV/Film: Births: Born Oct 4, 1976, She starred in the movie Hideaway - 1995?
+Alicia silverstone
+10
+
+TV/Film: Births: Born Oct 4, 1976, She starred in the movie Le Nouveau Monde - 1995?
+Alicia silverstone
+10
+
+TV/Film: Births: Born Oct 4, 1976, She starred in the movie Love's Labour's Lost - 2000?
+Alicia silverstone
+10
+
+TV/Film: Births: Born Oct 4, 1976, She starred in the movie The Babysitter - 1995?
+Alicia silverstone
+10
+
+TV/Film: Births: Born Oct 4, 1976, She starred in the movie True Crime - 1995?
+Alicia silverstone
+10
+
+TV/Film: Births: Born Oct 8, 1949, She starred in the movie 1492: Conquest of Paradise - 1992?
+Sigourney weaver
+10
+
+TV/Film: Births: Born Oct 8, 1949, She starred in the movie A Map of the World - 1999?
+Sigourney weaver
+10
+
+TV/Film: Births: Born Oct 8, 1949, She starred in the movie Alien - 1979?
+Sigourney weaver
+10
+
+TV/Film: Births: Born Oct 8, 1949, She starred in the movie Alien 3 - 1992?
+Sigourney weaver
+10
+
+TV/Film: Births: Born Oct 8, 1949, She starred in the movie Alien Resurrection - 1997?
+Sigourney weaver
+10
+
+TV/Film: Births: Born Oct 8, 1949, She starred in the movie Aliens - 1986?
+Sigourney weaver
+10
+
+TV/Film: Births: Born Oct 8, 1949, She starred in the movie Annie Hall - 1977?
+Sigourney weaver
+10
+
+TV/Film: Births: Born Oct 8, 1949, She starred in the movie Copycat - 1995?
+Sigourney weaver
+10
+
+TV/Film: Births: Born Oct 8, 1949, She starred in the movie Dave - 1993?
+Sigourney weaver
+10
+
+TV/Film: Births: Born Oct 8, 1949, She starred in the movie Deal of the Century - 1983?
+Sigourney weaver
+10
+
+TV/Film: Births: Born Oct 8, 1949, She starred in the movie Death and the Maiden - 1994?
+Sigourney weaver
+10
+
+TV/Film: Births: Born Oct 8, 1949, She starred in the movie Eyewitness - 1981?
+Sigourney weaver
+10
+
+TV/Film: Births: Born Oct 8, 1949, She starred in the movie Galaxy Quest - 1999?
+Sigourney weaver
+10
+
+TV/Film: Births: Born Oct 8, 1949, She starred in the movie Get Bruce - 1999?
+Sigourney weaver
+10
+
+TV/Film: Births: Born Oct 8, 1949, She starred in the movie Ghostbusters - 1984?
+Sigourney weaver
+10
+
+TV/Film: Births: Born Oct 8, 1949, She starred in the movie Ghostbusters 2 - 1989?
+Sigourney weaver
+10
+
+TV/Film: Births: Born Oct 8, 1949, She starred in the movie Gorillas in the Mist - 1988?
+Sigourney weaver
+10
+
+TV/Film: Births: Born Oct 8, 1949, She starred in the movie Half Moon Street - 1986?
+Sigourney weaver
+10
+
+TV/Film: Births: Born Oct 8, 1949, She starred in the movie Helmut Newton: Frames From the Edge - 1989?
+Sigourney weaver
+10
+
+TV/Film: Births: Born Oct 8, 1949, She starred in the movie Jeffrey - 1995?
+Sigourney weaver
+10
+
+TV/Film: Births: Born Oct 8, 1949, She starred in the movie Madman - 1978?
+Sigourney weaver
+10
+
+TV/Film: Births: Born Oct 8, 1949, She starred in the movie One Woman or Two - 1987?
+Sigourney weaver
+10
+
+TV/Film: Births: Born Oct 8, 1949, She starred in the movie The Grimm Brothers' Snow White - 1997?
+Sigourney weaver
+10
+
+TV/Film: Births: Born Oct 8, 1949, She starred in the movie The Ice Storm - 1997?
+Sigourney weaver
+10
+
+TV/Film: Births: Born Oct 8, 1949, She starred in the movie The Year of Living Dangerously - 1983?
+Sigourney weaver
+10
+
+TV/Film: Births: Born Oct 8, 1949, She starred in the movie Working Girl - 1988?
+Sigourney weaver
+10
+
+TV/Film: Births: Born Sep 15, 1946, he starred in the movie Back Roads - 1981?
+Tommy lee jones
+10
+
+TV/Film: Births: Born Sep 15, 1946, he starred in the movie Barn Burning - 1980?
+Tommy lee jones
+10
+
+TV/Film: Births: Born Sep 15, 1946, he starred in the movie Batman Forever - 1995?
+Tommy lee jones
+10
+
+TV/Film: Births: Born Sep 15, 1946, he starred in the movie Black Moon Rising - 1986?
+Tommy lee jones
+10
+
+TV/Film: Births: Born Sep 15, 1946, he starred in the movie Blown Away - 1994?
+Tommy lee jones
+10
+
+TV/Film: Births: Born Sep 15, 1946, he starred in the movie Blue Sky - 1994?
+Tommy lee jones
+10
+
+TV/Film: Births: Born Sep 15, 1946, he starred in the movie Coal Miner's Daughter - 1980?
+Tommy lee jones
+10
+
+TV/Film: Births: Born Sep 15, 1946, he starred in the movie Cobb - 1994?
+Tommy lee jones
+10
+
+TV/Film: Births: Born Sep 15, 1946, he starred in the movie Double Jeopardy - 1999?
+Tommy lee jones
+10
+
+TV/Film: Births: Born Sep 15, 1946, he starred in the movie Eliza's Horoscope - 1977?
+Tommy lee jones
+10
+
+TV/Film: Births: Born Sep 15, 1946, he starred in the movie Firebirds - 1990?
+Tommy lee jones
+10
+
+TV/Film: Births: Born Sep 15, 1946, he starred in the movie Heaven & Earth - 1993?
+Tommy lee jones
+10
+
+TV/Film: Births: Born Sep 15, 1946, he starred in the movie House of Cards - 1993?
+Tommy lee jones
+10
+
+TV/Film: Births: Born Sep 15, 1946, he starred in the movie Jackson County Jail - 1976?
+Tommy lee jones
+10
+
+TV/Film: Births: Born Sep 15, 1946, he starred in the movie JFK - 1991?
+Tommy lee jones
+10
+
+TV/Film: Births: Born Sep 15, 1946, he starred in the movie Life Study - 1973?
+Tommy lee jones
+10
+
+TV/Film: Births: Born Sep 15, 1946, he starred in the movie Love Story - 1970?
+Tommy lee jones
+10
+
+TV/Film: Births: Born Sep 15, 1946, he starred in the movie Men in Black - 1997?
+Tommy lee jones
+10
+
+TV/Film: Births: Born Sep 15, 1946, he starred in the movie Nate and Hayes - 1983?
+Tommy lee jones
+10
+
+TV/Film: Births: Born Sep 15, 1946, he starred in the movie Natural Born Killers - 1994?
+Tommy lee jones
+10
+
+TV/Film: Births: Born Sep 15, 1946, he starred in the movie Rolling Thunder - 1977?
+Tommy lee jones
+10
+
+TV/Film: Births: Born Sep 15, 1946, he starred in the movie Rules of Engagement - 2000?
+Tommy lee jones
+10
+
+TV/Film: Births: Born Sep 15, 1946, he starred in the movie Stormy Monday - 1988?
+Tommy lee jones
+10
+
+TV/Film: Births: Born Sep 15, 1946, he starred in the movie The Betsy - 1978?
+Tommy lee jones
+10
+
+TV/Film: Births: Born Sep 15, 1946, he starred in the movie The Big Town - 1987?
+Tommy lee jones
+10
+
+TV/Film: Births: Born Sep 15, 1946, he starred in the movie The Client - 1994?
+Tommy lee jones
+10
+
+TV/Film: Births: Born Sep 15, 1946, he starred in the movie The Eyes of Laura Mars - 1978?
+Tommy lee jones
+10
+
+TV/Film: Births: Born Sep 15, 1946, he starred in the movie The Fugitive - 1993?
+Tommy lee jones
+10
+
+TV/Film: Births: Born Sep 15, 1946, he starred in the movie The Package - 1989?
+Tommy lee jones
+10
+
+TV/Film: Births: Born Sep 15, 1946, he starred in the movie The River Rat - 1984?
+Tommy lee jones
+10
+
+TV/Film: Births: Born Sep 15, 1946, he starred in the movie U.S. Marshals - 1998?
+Tommy lee jones
+10
+
+TV/Film: Births: Born Sep 15, 1946, he starred in the movie Under Siege - 1992?
+Tommy lee jones
+10
+
+TV/Film: Births: Born Sep 15, 1946, he starred in the movie Volcano - 1997?
+Tommy lee jones
+10
+
+TV/Film: Births: Born Sep 16, 1924, She starred in the movie A Star for Two - 1991?
+Lauren bacall
+10
+
+TV/Film: Births: Born Sep 16, 1924, She starred in the movie A Woman's World - 1954?
+Lauren bacall
+10
+
+TV/Film: Births: Born Sep 16, 1924, She starred in the movie All I Want for Christmas - 1991?
+Lauren bacall
+10
+
+TV/Film: Births: Born Sep 16, 1924, She starred in the movie Appointment With Death - 1988?
+Lauren bacall
+10
+
+TV/Film: Births: Born Sep 16, 1924, She starred in the movie Blood Alley - 1955?
+Lauren bacall
+10
+
+TV/Film: Births: Born Sep 16, 1924, She starred in the movie Bright Leaf - 1950?
+Lauren bacall
+10
+
+TV/Film: Births: Born Sep 16, 1924, She starred in the movie Confidential Agent - 1945?
+Lauren bacall
+10
+
+TV/Film: Births: Born Sep 16, 1924, She starred in the movie Dark Passage - 1947?
+Lauren bacall
+10
+
+TV/Film: Births: Born Sep 16, 1924, She starred in the movie Designing Woman - 1957?
+Lauren bacall
+10
+
+TV/Film: Births: Born Sep 16, 1924, She starred in the movie Diamonds - 1999?
+Lauren bacall
+10
+
+TV/Film: Births: Born Sep 16, 1924, She starred in the movie Dinner at Eight - 1989?
+Lauren bacall
+10
+
+TV/Film: Births: Born Sep 16, 1924, She starred in the movie Flame Over India - 1959?
+Lauren bacall
+10
+
+TV/Film: Births: Born Sep 16, 1924, She starred in the movie H.E.A.L.T.H. - 1979?
+Lauren bacall
+10
+
+TV/Film: Births: Born Sep 16, 1924, She starred in the movie Harper - 1966?
+Lauren bacall
+10
+
+TV/Film: Births: Born Sep 16, 1924, She starred in the movie How To Marry a Millionaire - 1953?
+Lauren bacall
+10
+
+TV/Film: Births: Born Sep 16, 1924, She starred in the movie Innocent Victim - 1990?
+Lauren bacall
+10
+
+TV/Film: Births: Born Sep 16, 1924, She starred in the movie Key Largo - 1948?
+Lauren bacall
+10
+
+TV/Film: Births: Born Sep 16, 1924, She starred in the movie Misery - 1990?
+Lauren bacall
+10
+
+TV/Film: Births: Born Sep 16, 1924, She starred in the movie Mr. North - 1988?
+Lauren bacall
+10
+
+TV/Film: Births: Born Sep 16, 1924, She starred in the movie Murder on the Orient Express - 1974?
+Lauren bacall
+10
+
+TV/Film: Births: Born Sep 16, 1924, She starred in the movie My Fellow Americans - 1996?
+Lauren bacall
+10
+
+TV/Film: Births: Born Sep 16, 1924, She starred in the movie Perfect Gentlemen - 1978?
+Lauren bacall
+10
+
+TV/Film: Births: Born Sep 16, 1924, She starred in the movie Ready To Wear (Pr?t-?-Porter) - 1994?
+Lauren bacall
+10
+
+TV/Film: Births: Born Sep 16, 1924, She starred in the movie Sex and the Single Girl - 1965?
+Lauren bacall
+10
+
+TV/Film: Births: Born Sep 16, 1924, She starred in the movie Shock Treatment - 1964?
+Lauren bacall
+10
+
+TV/Film: Births: Born Sep 16, 1924, She starred in the movie The Big Sleep - 1946?
+Lauren bacall
+10
+
+TV/Film: Births: Born Sep 16, 1924, She starred in the movie The Cobweb - 1955?
+Lauren bacall
+10
+
+TV/Film: Births: Born Sep 16, 1924, She starred in the movie The Fan - 1981?
+Lauren bacall
+10
+
+TV/Film: Births: Born Sep 16, 1924, She starred in the movie The Gift of Love - 1958?
+Lauren bacall
+10
+
+TV/Film: Births: Born Sep 16, 1924, She starred in the movie The Line King: Al Hirschfeld - 1996?
+Lauren bacall
+10
+
+TV/Film: Births: Born Sep 16, 1924, She starred in the movie The Mirror Has Two Faces - 1996?
+Lauren bacall
+10
+
+TV/Film: Births: Born Sep 16, 1924, She starred in the movie The Shootist - 1976?
+Lauren bacall
+10
+
+TV/Film: Births: Born Sep 16, 1924, She starred in the movie To Have and Have Not - 1944?
+Lauren bacall
+10
+
+TV/Film: Births: Born Sep 16, 1924, She starred in the movie Tree of Hands - 1989?
+Lauren bacall
+10
+
+TV/Film: Births: Born Sep 16, 1924, She starred in the movie Two Guys From Milwaukee - 1946?
+Lauren bacall
+10
+
+TV/Film: Births: Born Sep 16, 1924, She starred in the movie Woman's World - 1954?
+Lauren bacall
+10
+
+TV/Film: Births: Born Sep 16, 1924, She starred in the movie Written on the Wind - 1957?
+Lauren bacall
+10
+
+TV/Film: Births: Born Sep 16, 1924, She starred in the movie Young Man With a Horn - 1950?
+Lauren bacall
+10
+
+TV/Film: Births: Born Sep 2, 1968, She starred in the movie 54 - 1998?
+Salma hayek
+10
+
+TV/Film: Births: Born Sep 2, 1968, She starred in the movie Breaking Up - 1997?
+Salma hayek
+10
+
+TV/Film: Births: Born Sep 2, 1968, She starred in the movie Desperado - 1995?
+Salma hayek
+10
+
+TV/Film: Births: Born Sep 2, 1968, She starred in the movie Dogma - 1999?
+Salma hayek
+10
+
+TV/Film: Births: Born Sep 2, 1968, She starred in the movie Fair Game - 1995?
+Salma hayek
+10
+
+TV/Film: Births: Born Sep 2, 1968, She starred in the movie Fled - 1996?
+Salma hayek
+10
+
+TV/Film: Births: Born Sep 2, 1968, She starred in the movie Follow Me Home - 1997?
+Salma hayek
+10
+
+TV/Film: Births: Born Sep 2, 1968, She starred in the movie Fools Rush In - 1997?
+Salma hayek
+10
+
+TV/Film: Births: Born Sep 2, 1968, She starred in the movie Four Rooms - 1995?
+Salma hayek
+10
+
+TV/Film: Births: Born Sep 2, 1968, She starred in the movie From Dusk Till Dawn - 1996?
+Salma hayek
+10
+
+TV/Film: Births: Born Sep 2, 1968, She starred in the movie Mi Vida Loca - 1994?
+Salma hayek
+10
+
+TV/Film: Births: Born Sep 2, 1968, She starred in the movie Miracle Alley - 1995?
+Salma hayek
+10
+
+TV/Film: Births: Born Sep 2, 1968, She starred in the movie The Faculty - 1998?
+Salma hayek
+10
+
+TV/Film: Births: Born Sep 2, 1968, She starred in the movie Time Code - 2000?
+Salma hayek
+10
+
+TV/Film: Births: Born Sep 2, 1968, She starred in the movie Who the Hell Is Juliette? - 1997?
+Salma hayek
+10
+
+TV/Film: Births: Born Sep 2, 1968, She starred in the movie Wild Wild West - 1999?
+Salma hayek
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie A Blood Feud - 1979?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie A Breath of Scandal - 1960?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie A Countess From Hong Kong - 1967?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie A Special Day - 1977?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Africa Under the Seas - 1952?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Aida - 1953?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Angela - 1977?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Anna - 1951?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Arabesque - 1966?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Attila the Hun - 1954?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Aurora - 1984?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Bellissimo: Images of the Italian Cinema - 1987?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Blood Feud - 1979?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Bluebeard's Six Wives - 1950?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Boccaccio '70 - 1962?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Boy on a Dolphin - 1957?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Brass Target - 1978?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Brief Encounter - 1974?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Cinderella: Italian Style - 1967?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Courage - 1986?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Desire Under the Elms - 1958?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie El Cid - 1961?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Firepower - 1979?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Five Miles to Midnight - 1962?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Ghosts____Italian Style - 1967?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Good People's Sunday - 1953?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Grumpier Old Men - 1995?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Gun Moll - 1974?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Hearts Upon the Sea - 1950?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Heller in Pink Tights - 1960?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Houseboat - 1958?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Io Sono il Capatz - 1950?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie It Started in Naples - 1960?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie It's Him . . . Yes. Yes! - 1951?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Judith - 1966?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie La Favorita - 1952?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Lady L - 1965?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Lady Liberty - 1971?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Legend of the Lost - 1957?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Lucky To Be a Woman - 1955?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Madame - 1963?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Madame Sans-G?ne - 1961?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Man of La Mancha - 1972?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Marriage Italian Style - 1964?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Michael Jackson: The Legend Continues - 1989?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Milana the Millionairess - 1951?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie More Than a Miracle - 1967?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Mortadella/Lady Liberty - 1972?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Neopolitan Carousel - 1953?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Operation Crossbow - 1965?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Pilgrim of Love - 1953?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Poverty and Nobility - 1954?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Qualcosa di Biondo - 1985?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Quo Vadis - 1951?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Ready To Wear (Pr?t-?-Porter) - 1994?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Running Away - 1989?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Saturday, Sunday and Monday - 1990?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Scandal in Sorrento - 1955?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Sophia Loren: Her Own Story - 1980?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Sunflower - 1970?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie That Kind of Woman - 1959?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie The Anatomy of Love - 1953?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie The Black Orchid - 1959?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie The Cassandra Crossing - 1977?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie The Condemned of Altona - 1963?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie The Country of Bells - 1953?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie The Dream of Zorro - 1951?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie The Fall of the Roman Empire - 1964?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie The Fortunate Pilgrim - 1988?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie The Gold of Naples - 1954?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie The Key - 1958?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie The Magician in Spite of Himself - 1951?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie The Miller's Wife - 1955?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie The Millionairess - 1960?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie The Piano Tuner Has Arrived - 1951?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie The Pride and the Passion - 1957?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie The Priest's Wife - 1970?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie The Sign of Venus - 1955?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie The Vote - 1950?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie The Voyage - 1973?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie The White Slave Trade - 1952?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Too Bad She's Bad - 1955?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Two Nights With Cleopatra - 1953?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Two Women - 1961?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Verdict - 1974?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie We'll Meet in the Gallery - 1953?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie White Sister - 1973?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Woman of the River - 1955?
+Sophia loren
+10
+
+TV/Film: Births: Born Sep 20, 1934, She starred in the movie Yesterday, Today and Tomorrow - 1964?
+Sophia loren
+10
+
+TV/Film: Births: Born sep 25, 1944, he starred in the movie a chorus line: the movie - 1985?
+Michael douglas
+10
+
+TV/Film: Births: Born sep 25, 1944, he starred in the movie a perfect murder - 1998?
+Michael douglas
+10
+
+TV/Film: Births: Born sep 25, 1944, he starred in the movie adam at 6 a.m. - 1970?
+Michael douglas
+10
+
+TV/Film: Births: Born sep 25, 1944, he starred in the movie basic instinct - 1992?
+Michael douglas
+10
+
+TV/Film: Births: Born sep 25, 1944, he starred in the movie black rain - 1989?
+Michael douglas
+10
+
+TV/Film: Births: Born sep 25, 1944, he starred in the movie coma - 1978?
+Michael douglas
+10
+
+TV/Film: Births: Born sep 25, 1944, he starred in the movie disclosure - 1994?
+Michael douglas
+10
+
+TV/Film: Births: Born sep 25, 1944, he starred in the movie falling down - 1993?
+Michael douglas
+10
+
+TV/Film: Births: Born sep 25, 1944, he starred in the movie fatal attraction - 1987?
+Michael douglas
+10
+
+TV/Film: Births: Born sep 25, 1944, he starred in the movie hail hero! - 1969?
+Michael douglas
+10
+
+TV/Film: Births: Born sep 25, 1944, he starred in the movie it's my turn - 1980?
+Michael douglas
+10
+
+TV/Film: Births: Born sep 25, 1944, he starred in the movie napoleon and samantha - 1972?
+Michael douglas
+10
+
+TV/Film: Births: Born sep 25, 1944, he starred in the movie romancing the stone - 1984?
+Michael douglas
+10
+
+TV/Film: Births: Born sep 25, 1944, he starred in the movie running - 1979?
+Michael douglas
+10
+
+TV/Film: Births: Born sep 25, 1944, he starred in the movie shining through - 1992?
+Michael douglas
+10
+
+TV/Film: Births: Born sep 25, 1944, he starred in the movie summertree - 1971?
+Michael douglas
+10
+
+TV/Film: Births: Born sep 25, 1944, he starred in the movie tell me a riddle - 1980?
+Michael douglas
+10
+
+TV/Film: Births: Born sep 25, 1944, he starred in the movie the American president - 1995?
+Michael douglas
+10
+
+TV/Film: Births: Born sep 25, 1944, he starred in the movie the china syndrome - 1979?
+Michael douglas
+10
+
+TV/Film: Births: Born sep 25, 1944, he starred in the movie the game - 1997?
+Michael douglas
+10
+
+TV/Film: Births: Born sep 25, 1944, he starred in the movie the ghost and the darkness - 1996?
+Michael douglas
+10
+
+TV/Film: Births: Born sep 25, 1944, he starred in the movie the jewel of the nile - 1985?
+Michael douglas
+10
+
+TV/Film: Births: Born sep 25, 1944, he starred in the movie the star chamber - 1983?
+Michael douglas
+10
+
+TV/Film: Births: Born sep 25, 1944, he starred in the movie the streets of san francisco - 1972?
+Michael douglas
+10
+
+TV/Film: Births: Born sep 25, 1944, he starred in the movie the war of the roses - 1989?
+Michael douglas
+10
+
+TV/Film: Births: Born sep 25, 1944, he starred in the movie wall street - 1987?
+Michael douglas
+10
+
+TV/Film: Births: Born sep 25, 1944, he starred in the movie when michael calls - 1971?
+Michael douglas
+10
+
+TV/Film: Births: Born sep 25, 1944, he starred in the movie where's jack? - 1969?
+Michael douglas
+10
+
+TV/Film: Births: Born sep 25, 1944, he starred in the movie wonder boys - 2000?
+Michael douglas
+10
+
+TV/Film: Births: Born Sep 25, 1952, he starred in the movie Anna Karenina - 1985?
+Christopher reeve
+10
+
+TV/Film: Births: Born Sep 25, 1952, he starred in the movie Bump in the Night - 1991?
+Christopher reeve
+10
+
+TV/Film: Births: Born Sep 25, 1952, he starred in the movie Deathtrap - 1982?
+Christopher reeve
+10
+
+TV/Film: Births: Born Sep 25, 1952, he starred in the movie Gray Lady Down - 1978?
+Christopher reeve
+10
+
+TV/Film: Births: Born Sep 25, 1952, he starred in the movie Monsignor - 1983?
+Christopher reeve
+10
+
+TV/Film: Births: Born Sep 25, 1952, he starred in the movie Morning Glory - 1994?
+Christopher reeve
+10
+
+TV/Film: Births: Born Sep 25, 1952, he starred in the movie Noises Off - 1992?
+Christopher reeve
+10
+
+TV/Film: Births: Born Sep 25, 1952, he starred in the movie Remains of the Day - 1993?
+Christopher reeve
+10
+
+TV/Film: Births: Born Sep 25, 1952, he starred in the movie Somewhere in Time - 1980?
+Christopher reeve
+10
+
+TV/Film: Births: Born Sep 25, 1952, he starred in the movie Speechless - 1994?
+Christopher reeve
+10
+
+TV/Film: Births: Born Sep 25, 1952, he starred in the movie Street Smart - 1987?
+Christopher reeve
+10
+
+TV/Film: Births: Born Sep 25, 1952, he starred in the movie Superman - 1978?
+Christopher reeve
+10
+
+TV/Film: Births: Born Sep 25, 1952, he starred in the movie Superman II - 1981?
+Christopher reeve
+10
+
+TV/Film: Births: Born Sep 25, 1952, he starred in the movie Superman III - 1983?
+Christopher reeve
+10
+
+TV/Film: Births: Born Sep 25, 1952, he starred in the movie Superman IV: The Quest For Peace - 1987?
+Christopher reeve
+10
+
+TV/Film: Births: Born Sep 25, 1952, he starred in the movie Switching Channels - 1988?
+Christopher reeve
+10
+
+TV/Film: Births: Born Sep 25, 1952, he starred in the movie The Aviator - 1985?
+Christopher reeve
+10
+
+TV/Film: Births: Born Sep 25, 1952, he starred in the movie The Bostonians - 1984?
+Christopher reeve
+10
+
+TV/Film: Births: Born Sep 25, 1952, he starred in the movie The Rose and the Jackal - 1990?
+Christopher reeve
+10
+
+TV/Film: Births: Born Sep 25, 1952, he starred in the movie Village of the Damned - 1995?
+Christopher reeve
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie A Very Private Affair - 1962?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie Act of Love - 1953?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie Babette s'en va-t-en Guerre/Babette Goes to War - 1959?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie Bardot-Godard ou Le Parti des Choses - 1964?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie Boulevard du rhum - 1971?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie Cette sacr?e gamine - 1956?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie Contempt - 1963?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie Dear Brigitte - 1965?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie Doctor at Sea - 1956?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie Don Juan 1973/Si Don Juan ?tait une femme/Ms. Don Juan - 1973?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie En Cas de Malheur - 1958?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie En Effeuillant la Margu?rite - 1956?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie Et Dieu . . . Cr?a la Femme/And God Created Woman - 1956?
+Brigitte Bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie Frou-Frou - 1955?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie Futures Vedettes - 1955?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie Helen of Troy - 1956?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie Histoires Extraordinaires/Spirits of the Dead - 1968?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie L'Histoire Tr?s Bonne et Tr?-s Joyeuse de Colinot T - 1973?
+Brigitte Bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie L'Ours et la Poup?e/The Bear and the Doll - 1970?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie La Bride sur le Cou - 1961?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie La Femme et le Pantin - 1959?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie La Lumi?re d'en Face - 1956?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie La Mari?e Est Trop Belle - 1956?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie La Parisienne - 1958?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie La V?rit?/The Truth - 1960?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie Le Fils de Caroline Cherie - 1955?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie Le M?pris/Contempt - 1963?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie Le Portrait de Son P?re - 1953?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie Le Repos du Guerrier - 1962?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie Le Testament d'Orph?e/The Testament of Orpheus - 1959?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie Le Trou Normand - 1952?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie Les Bijoutiers du Clair de Lune/The Night Heaven Fell - 1958?
+Brigitte Bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie Les Dents Longues - 1952?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie Les Femmes - 1969?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie Les Grandes Maneuvres - 1956?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie Les Novices - 1970?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie Les P?troleuses - 1971?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie Love on a Pillow - 1962?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie Manina, la fille sans voile - 1952?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie Masculin-Feminin - 1966?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie Mio Figlio Nerone - 1956?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie Please Mr. Balzac - 1956?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie Royal Affairs in Versailles - 1954?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie School for Love - 1955?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie Shalako - 1968?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie The Night Heaven Fell - 1958?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie The Truth - 1960?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie Tradita - 1954?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie Two Weeks in September - 1967?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie Une Parisienne - 1957?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie Une Ravissante Idiote/A Ravishing Idiot - 1964?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie V?va Mar?a - 1965?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie Vie Priv?e/A Very Private Affair - 1962?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie Viva Maria! - 1965?
+Brigitte bardot
+10
+
+TV/Film: Births: Born Sep 28, 1934, She starred in the movie Voulez-vous danser avec moi?/Come Dance With Me! - 1959?
+Brigitte Bardot
+10
+
+TV/Film: Births: Born Sep 5, 1940, She starred in the movie 100 Rifles - 1969?
+Raquel welch
+10
+
+TV/Film: Births: Born Sep 5, 1940, She starred in the movie A House Is Not a Home - 1964?
+Raquel welch
+10
+
+TV/Film: Births: Born Sep 5, 1940, She starred in the movie A Swingin' Summer - 1965?
+Raquel welch
+10
+
+TV/Film: Births: Born Sep 5, 1940, She starred in the movie Bandolero! - 1968?
+Raquel welch
+10
+
+TV/Film: Births: Born Sep 5, 1940, She starred in the movie Bedazzled - 1967?
+Raquel welch
+10
+
+TV/Film: Births: Born Sep 5, 1940, She starred in the movie Bluebeard - 1972?
+Raquel welch
+10
+
+TV/Film: Births: Born Sep 5, 1940, She starred in the movie Chairman of the Board - 1998?
+Raquel welch
+10
+
+TV/Film: Births: Born Sep 5, 1940, She starred in the movie Crossed Swords - 1977?
+Raquel welch
+10
+
+TV/Film: Births: Born Sep 5, 1940, She starred in the movie Fantastic Voyage - 1966?
+Raquel welch
+10
+
+TV/Film: Births: Born Sep 5, 1940, She starred in the movie Fathom - 1967?
+Raquel welch
+10
+
+TV/Film: Births: Born Sep 5, 1940, She starred in the movie Flareup - 1969?
+Raquel welch
+10
+
+TV/Film: Births: Born Sep 5, 1940, She starred in the movie Fuzz - 1972?
+Raquel welch
+10
+
+TV/Film: Births: Born Sep 5, 1940, She starred in the movie Hannie Caulder - 1972?
+Raquel welch
+10
+
+TV/Film: Births: Born Sep 5, 1940, She starred in the movie Kansas City Bomber - 1972?
+Raquel welch
+10
+
+TV/Film: Births: Born Sep 5, 1940, She starred in the movie L'Animal/Stuntwoman - 1977?
+Raquel welch
+10
+
+TV/Film: Births: Born Sep 5, 1940, She starred in the movie Lady in Cement - 1968?
+Raquel welch
+10
+
+TV/Film: Births: Born Sep 5, 1940, She starred in the movie Mother, Jugs and Speed - 1976?
+Raquel welch
+10
+
+TV/Film: Births: Born Sep 5, 1940, She starred in the movie Myra Breckinridge - 1970?
+Raquel welch
+10
+
+TV/Film: Births: Born Sep 5, 1940, She starred in the movie Naked Gun 33 1/3: The Final Insult - 1994?
+Raquel welch
+10
+
+TV/Film: Births: Born Sep 5, 1940, She starred in the movie One Million Years B.C. - 1966?
+Raquel welch
+10
+
+TV/Film: Births: Born Sep 5, 1940, She starred in the movie Restless - 1971?
+Raquel welch
+10
+
+TV/Film: Births: Born Sep 5, 1940, She starred in the movie Right To Die - 1987?
+Raquel welch
+10
+
+TV/Film: Births: Born Sep 5, 1940, She starred in the movie Roustabout - 1964?
+Raquel welch
+10
+
+TV/Film: Births: Born Sep 5, 1940, She starred in the movie Scandal in a Small Town - 1988?
+Raquel welch
+10
+
+TV/Film: Births: Born Sep 5, 1940, She starred in the movie Shoot Loud, Louder. . . I Don't Understand - 1966?
+Raquel welch
+10
+
+TV/Film: Births: Born Sep 5, 1940, She starred in the movie The Beloved/Sin - 1970?
+Raquel welch
+10
+
+TV/Film: Births: Born Sep 5, 1940, She starred in the movie The Biggest Bundle of Them All - 1967?
+Raquel welch
+10
+
+TV/Film: Births: Born Sep 5, 1940, She starred in the movie The Four Musketeers - 1975?
+Raquel welch
+10
+
+TV/Film: Births: Born Sep 5, 1940, She starred in the movie The Last of Sheila - 1973?
+Raquel welch
+10
+
+TV/Film: Births: Born Sep 5, 1940, She starred in the movie The Legend of Walks Far Woman - 1982?
+Raquel welch
+10
+
+TV/Film: Births: Born Sep 5, 1940, She starred in the movie The Magic Christian - 1969?
+Raquel welch
+10
+
+TV/Film: Births: Born Sep 5, 1940, She starred in the movie The Oldest Profession - 1967?
+Raquel welch
+10
+
+TV/Film: Births: Born Sep 5, 1940, She starred in the movie The Queens/Le Fate - 1966?
+Raquel welch
+10
+
+TV/Film: Births: Born Sep 5, 1940, She starred in the movie The Three Musketeers - 1974?
+Raquel welch
+10
+
+TV/Film: Births: Born Sep 5, 1940, She starred in the movie The Wild Party - 1974?
+Raquel welch
+10
+
+TV/Film: Births: Born Sep 5, 1940, She starred in the movie Trouble in Paradise - 1989?
+Raquel welch
+10
+
+TV/Film: Births: Born Sep 9, 1951, he starred in the movie Batman - 1989?
+Michael keaton
+10
+
+TV/Film: Births: Born Sep 9, 1951, he starred in the movie Batman Returns - 1992?
+Michael keaton
+10
+
+TV/Film: Births: Born Sep 9, 1951, he starred in the movie Beetlejuice - 1988?
+Michael keaton
+10
+
+TV/Film: Births: Born Sep 9, 1951, he starred in the movie Clean and Sober - 1988?
+Michael keaton
+10
+
+TV/Film: Births: Born Sep 9, 1951, he starred in the movie Desperate Measures - 1998?
+Michael keaton
+10
+
+TV/Film: Births: Born Sep 9, 1951, he starred in the movie Gung Ho - 1986?
+Michael keaton
+10
+
+TV/Film: Births: Born Sep 9, 1951, he starred in the movie Jack Frost - 1998?
+Michael keaton
+10
+
+TV/Film: Births: Born Sep 9, 1951, he starred in the movie Jackie Brown - 1997?
+Michael keaton
+10
+
+TV/Film: Births: Born Sep 9, 1951, he starred in the movie Johnny Dangerously - 1984?
+Michael keaton
+10
+
+TV/Film: Births: Born Sep 9, 1951, he starred in the movie Mr. Mom - 1983?
+Michael keaton
+10
+
+TV/Film: Births: Born Sep 9, 1951, he starred in the movie Much Ado About Nothing - 1993?
+Michael keaton
+10
+
+TV/Film: Births: Born Sep 9, 1951, he starred in the movie Multiplicity - 1996?
+Michael keaton
+10
+
+TV/Film: Births: Born Sep 9, 1951, he starred in the movie My Life - 1993?
+Michael keaton
+10
+
+TV/Film: Births: Born Sep 9, 1951, he starred in the movie Night Shift - 1982?
+Michael keaton
+10
+
+TV/Film: Births: Born Sep 9, 1951, he starred in the movie One Good Cop - 1991?
+Michael keaton
+10
+
+TV/Film: Births: Born Sep 9, 1951, he starred in the movie Out of Sight - 1998?
+Michael keaton
+10
+
+TV/Film: Births: Born Sep 9, 1951, he starred in the movie Pacific Heights - 1990?
+Michael keaton
+10
+
+TV/Film: Births: Born Sep 9, 1951, he starred in the movie Speechless - 1994?
+Michael keaton
+10
+
+TV/Film: Births: Born Sep 9, 1951, he starred in the movie The Dream Team - 1989?
+Michael keaton
+10
+
+TV/Film: Births: Born Sep 9, 1951, he starred in the movie The Paper - 1994?
+Michael keaton
+10
+
+TV/Film: Births: Born Sep 9, 1951, he starred in the movie The Squeeze - 1987?
+Michael keaton
+10
+
+TV/Film: Births: Born Sep 9, 1951, he starred in the movie Touch and Go - 1986?
+Michael keaton
+10
+
+TV/Film: Births: Born Sep 9, 1960, he starred in the movie An Awfully Big Adventure - 1995?
+Hugh grant
+10
+
+TV/Film: Births: Born Sep 9, 1960, he starred in the movie Bitter Moon - 1992?
+Hugh grant
+10
+
+TV/Film: Births: Born Sep 9, 1960, he starred in the movie Crossing the Line - 1990?
+Hugh grant
+10
+
+TV/Film: Births: Born Sep 9, 1960, he starred in the movie Extreme Measures - 1996?
+Hugh grant
+10
+
+TV/Film: Births: Born Sep 9, 1960, he starred in the movie Four Weddings and a Funeral - 1994?
+Hugh grant
+10
+
+TV/Film: Births: Born Sep 9, 1960, he starred in the movie Impromptu - 1990?
+Hugh grant
+10
+
+TV/Film: Births: Born Sep 9, 1960, he starred in the movie Lair of the White Worm - 1988?
+Hugh grant
+10
+
+TV/Film: Births: Born Sep 9, 1960, he starred in the movie Maurice - 1987?
+Hugh grant
+10
+
+TV/Film: Births: Born Sep 9, 1960, he starred in the movie Mickey Blue Eyes - 1999?
+Hugh grant
+10
+
+TV/Film: Births: Born Sep 9, 1960, he starred in the movie Night Train to Venice - 1993?
+Hugh grant
+10
+
+TV/Film: Births: Born Sep 9, 1960, he starred in the movie Nine Months - 1995?
+Hugh grant
+10
+
+TV/Film: Births: Born Sep 9, 1960, he starred in the movie Notting Hill - 1999?
+Hugh grant
+10
+
+TV/Film: Births: Born Sep 9, 1960, he starred in the movie Our Sons - 1991?
+Hugh grant
+10
+
+TV/Film: Births: Born Sep 9, 1960, he starred in the movie Privileged - 1982?
+Hugh grant
+10
+
+TV/Film: Births: Born Sep 9, 1960, he starred in the movie Restoration - 1995?
+Hugh grant
+10
+
+TV/Film: Births: Born Sep 9, 1960, he starred in the movie Rowing With the Wind - 1988?
+Hugh grant
+10
+
+TV/Film: Births: Born Sep 9, 1960, he starred in the movie Sense and Sensibility - 1995?
+Hugh grant
+10
+
+TV/Film: Births: Born Sep 9, 1960, he starred in the movie Sirens - 1994?
+Hugh grant
+10
+
+TV/Film: Births: Born Sep 9, 1960, he starred in the movie Small Time Crooks - 2000?
+Hugh grant
+10
+
+TV/Film: Births: Born Sep 9, 1960, he starred in the movie The Dawning - 1988?
+Hugh grant
+10
+
+TV/Film: Births: Born Sep 9, 1960, he starred in the movie The Englishman Who Went Up a Hill but Came Down a Mountain - 1995?
+Hugh grant
+10
+
+TV/Film: Births: Born Sep 9, 1960, he starred in the movie The Lady and the Highwayman - 1989?
+Hugh grant
+10
+
+TV/Film: Births: Born Sep 9, 1960, he starred in the movie The Remains of the Day - 1993?
+Hugh grant
+10
+
+TV/Film: Births: Born Sep 9, 1960, he starred in the movie Till We Meet Again - 1989?
+Hugh grant
+10
+
+TV/Film: Births: Born Sep 9, 1960, he starred in the movie White Mischief - 1988?
+Hugh grant
+10
+
+TV/Film: Births: Born september 16, 1924 - her birth name was betty joan perske - she was better know as this actress?
+Lauren bacall
+10
+
+TV/Film: Blade Runner: City in which the movie is set?
+Los angeles
+10
+
+TV/Film: Blade Runner: The actor who played the leader of the androids?
+Rutger hauer
+10
+
+TV/Film: Blade Runner: The derogatory name applied to the androids?
+Skin job
+10
+
+TV/Film: Blade Runner: The kind of pet that Zhora, the exotic dancer, has?
+Snake
+10
+
+TV/Film: Blade Runner: The main character's name?
+Deckard
+10
+
+TV/Film: Blade Runner: The old man in the cryogenic room makes these?
+Eyes
+10
+
+TV/Film: Blade Runner: Tyrell & J. F. Sebastian play this game together?
+Chess
+10
+
+TV/Film: Blazing Saddles: A particularly gross scene involved cowboys eating lots of what?
+Beans
+10
+
+TV/Film: Blazing Saddles: How did they stall the villainous army at the last minute?
+Toll booth
+10
+
+TV/Film: Blazing Saddles: On top of whose Grauman cement prints did Hedley Lamarr die?
+Douglas fairbanks
+10
+
+TV/Film: Blazing Saddles: What did people keep calling Hedley Lamarr?
+Hetty lamarr
+10
+
+TV/Film: Blazing Saddles: What did the sheriff disguise himself as to infiltrate the bad guys?
+A ku klux klansman
+10
+
+TV/Film: Blazing Saddles: What was everyone's surname in the town?
+Johnson
+10
+
+TV/Film: Blazing Saddles: Who directed Blazing Saddles?
+Mel brooks
+10
+
+TV/Film: Blazing Saddles: Who had a cameo giving the sheriff a high five?
+Count basie
+10
+
+TV/Film: Blazing Saddles: Who played Hedley Lamarr?
+Harvey korman
+10
+
+TV/Film: Blazing Saddles: Who played the German Chanteuse?
+Madeline kahn
+10
+
+TV/Film: Blazing Saddles: Who played the Governor?
+Mel brooks
+10
+
+TV/Film: Blazing Saddles: Who played the indian chief?
+Mel brooks
+10
+
+TV/Film: Blazing Saddles: Who played the sheriff's gunslinging friend?
+Gene wilder
+10
+
+TV/Film: Blues Brothers: What did Jake tell his brother to fix in the car?
+The lighter
+10
+
+TV/Film: Blues Brothers: Who cooked at the diner?
+Matt guitar murphy
+10
+
+TV/Film: Blues Brothers: Who played the jilted fiancee?
+Carrie fisher
+10
+
+TV/Film: Blues Brothers: Who ran the pawn shop?
+Ray charles
+10
+
+TV/Film: Blues Brothers: Who was at lunch at the assessor's office?
+Steven spielberg
+10
+
+TV/Film: Bold and Beautiful: >From what soap did Sheila come before joining the B&B?
+The young and the restless
+10
+
+TV/Film: Bold and Beautiful: Profession of Beth Logan?
+Caterer
+10
+
+TV/Film: Bold and Beautiful: What's the first name of Taylor's first husband?
+Blake
+10
+
+TV/Film: Bold and Beautiful: Who are the producers of the B&B (last names)?
+Bell and phillip
+10
+
+TV/Film: Bold and Beautiful: Who was Spectra's head designer for a while when Clarke left (first name)?
+Felicia
+10
+
+TV/Film: Bomb that featured Eddie Murphy and Dudley Moore as arms dealers?
+Best defense
+10
+
+TV/Film: Brad Pitt has appeared in (10)?
+Legends of the Fall
+10
+
+TV/Film: Brad pitt's first name isn't really brad...it's ____?
+William
+10
+
+TV/Film: Brady Mania: After Marcia joined Greg's scout troop, Peter joined this organization?
+Sunflower girls
+10
+
+TV/Film: Brady Mania: Allan Melvin played...?
+Sam
+10
+
+TV/Film: Brady Mania: Bobby's small size enabled him and Greg to escape from the inside of one?
+Freezer
+10
+
+TV/Film: Brady Mania: Buddy Hinton bullied Cindy at school because she had this problem?
+Lisp
+10
+
+TV/Film: Brady Mania: Eve Plumb played...?
+Jan
+10
+
+TV/Film: Brady Mania: Greg's hair turned this color on his graduation day?
+Orange
+10
+
+TV/Film: Brady Mania: He guest starred as an eccentric cave dweller in Hawaii?
+Vincent price
+10
+
+TV/Film: Brady Mania: Marcia had a crush on this singer who came to visit her at the Brady house?
+Davy jones
+10
+
+TV/Film: Brady Mania: She crashed her bicycle in the garage when she wasn't wearing glasses?
+Jan
+10
+
+TV/Film: Brady Mania: This brady cousin was a regular in the final season?
+Oliver
+10
+
+TV/Film: Brady Mania: Which Brady was scared of heights?
+Bobby
+10
+
+TV/Film: Brandon Lee's last film?
+The crow
+10
+
+TV/Film: Britney Spears' first foray into the film industry?
+Crossroads
+10
+
+TV/Film: Broadway singer Bebe Neuworth is better known for her role as Lilith on what TV sitcom?
+Cheers
+10
+
+TV/Film: Bruce Campbell stars as this chacracter in the Fox series set in the Old West?
+Brisco county jr
+10
+
+TV/Film: Bruce lee died when making which move?
+The game of death
+10
+
+TV/Film: Bruce Willis, Arnold Schwarzenegger and Sylvester Stallone own which London restaurant?
+Planet hollywood
+10
+
+TV/Film: Buchanon & Goodman ran into legal problems using excerpts from hits to make?
+Flying saucer
+10
+
+TV/Film: Bud and Lou accidentally enlist in the army in this Abbott and Costello flick?
+Buck privates
+10
+
+TV/Film: Buffy the Vampire Slayer: What was the name of the Hell God out to kill Dawn?
+Glory
+10
+
+TV/Film: Buffy the Vampire Slayer: When buffy died what was her epitaph?
+She saved the world a lot
+10
+
+TV/Film: Buffy the Vampire Slayer: Where is Buffy the vampire Slayer set?
+Sunnydale
+10
+
+TV/Film: Buffy the Vampire Slayer: Which actor played Oz?
+Seth green
+10
+
+TV/Film: Buffy the Vampire Slayer: Which actor plays Rupert Giles?
+Anthony stewart head
+10
+
+TV/Film: Buffy the Vampire Slayer: Which actor plays Spike?
+James marsters
+10
+
+TV/Film: Buffy the Vampire Slayer: Which actor plays Xander Harris?
+Nicholas brendon
+10
+
+TV/Film: Buffy the Vampire Slayer: Which actress played Buffy in the original film?
+Kirsty swanson
+10
+
+TV/Film: Buffy the Vampire Slayer: Which actress plays Anya (former demon)?
+Emma caulfield
+10
+
+TV/Film: Buffy the Vampire Slayer: Which actress plays Buffy the Vampire Slayer?
+Sarah michelle gellar
+10
+
+TV/Film: Buffy the Vampire Slayer: Which actress plays Dawn Summers?
+Michelle trachtenberg
+10
+
+TV/Film: Buffy the Vampire Slayer: Which actress plays Tara Maclay?
+Amber benson
+10
+
+TV/Film: Buffy the Vampire Slayer: Which actress plays Willow Rosenberg?
+Alyson hannigan
+10
+
+TV/Film: Buffy the Vampire Slayer: Which character left Buffy and now has his own show of the same name?
+Angel
+10
+
+TV/Film: Burt reynolds races from georgia to texas with a load of illegal beer in?
+Smokey & the bandit
+10
+
+TV/Film: By what name are cinema's Academy Awards better known?
+Oscars
+10
+
+TV/Film: Can you name the 5 original MTV VJ's?
+Martha Quinn,J.J. Jackson,Mark Goodman,Alan Hunter and Nina Blackwood
+10
+
+TV/Film: Cartoon Sidekicks: Buster Bunny?
+Babs bunny
+10
+
+TV/Film: Cartoon Sidekicks: Buttons?
+Mindy
+10
+
+TV/Film: Cartoon Sidekicks: Calvin and ____?
+Hobbes
+10
+
+TV/Film: Cartoon Sidekicks: Disney: Dale?
+Chip
+10
+
+TV/Film: Cartoon Sidekicks: Opus?
+Bill the cat
+10
+
+TV/Film: Cartoon Sidekicks: Quick Draw McGraw?
+Babalouie
+10
+
+TV/Film: Cartoon Sidekicks: Slappy Squirrel?
+Skippy squirrel
+10
+
+TV/Film: Cartoon Sidekicks: Snow White (watch the spelling)?
+The seven dwarfs
+10
+
+TV/Film: Cartoon Sidekicks: The Brain?
+Pinky
+10
+
+TV/Film: Cartoons: Alvin & Simon had a brother called ____?
+Theodore
+10
+
+TV/Film: Cartoons: An adventurous penguin named Tennessee Tuxedo had a sidekick named ____?
+Chumley
+10
+
+TV/Film: Cartoons: An alien creature in a funny hat has opposed both Bugs Bunny and Daffy Duck. Where is he from?
+Mars
+10
+
+TV/Film: Cartoons: An Andy Panda cartoon gave birth to a famous, cantankerous bird. Name him?
+Woody woodpecker
+10
+
+TV/Film: Cartoons: Animaniacs Theme: We're zany to the max, there's ____ ____ ____ ____, we're...?
+Bologna in our slacks
+10
+
+TV/Film: Cartoons: Before Olive Oil met Popeye she was engaged to someone. Who was he?
+Ham Gravy
+10
+
+TV/Film: Cartoons: Before Olive Oil met Popeye she was engaged to someone. Who was he?
+Ham gravyzzcomment: olive oyl was wrong, jono82 said
+10
+
+TV/Film: Cartoons: Benny and Cecil were at odds with whom?
+John
+10
+
+TV/Film: Cartoons: Boris Badanov's nationality?
+Pottsylvanian
+10
+
+TV/Film: Cartoons: Bugs always finds himself at the wrong end of a gun, usually toted by either Elmer Fudd or who?
+Yosemite sam
+10
+
+TV/Film: Cartoons: Casper the Friendly Ghost frolicked with which witch?
+Wendy
+10
+
+TV/Film: Cartoons: Charles Boyer inspired a cartoon skunk. Who?
+Pepe le pew
+10
+
+TV/Film: Cartoons: Duck Dodger's century is this and 1/2?
+24
+10
+
+TV/Film: Cartoons: Famous Phrases: Who knows The ____?
+Shadow
+10
+
+TV/Film: Cartoons: For which cartoon character was Beethoven a favourite composer?
+Shroeder
+10
+
+TV/Film: Cartoons: Fred Flintstone's boss?
+Mr. slate
+10
+
+TV/Film: Cartoons: Gadzookie has a large, green friend. Who is he?
+Godzilla
+10
+
+TV/Film: Cartoons: Hanna-Barbera rose to fame by creating what duo for MGM?
+Tom and jerry
+10
+
+TV/Film: Cartoons: He was the voice of Mr. Magoo?
+Jim backus
+10
+
+TV/Film: Cartoons: How does Wonder Woman control her invisible airplane?
+Mental powers
+10
+
+TV/Film: Cartoons: How many freckles did Howdy Doody have?
+48
+10
+
+TV/Film: Cartoons: In the cartoons who was Hokie Wolf's sidekick?
+Ding
+10
+
+TV/Film: Cartoons: In what city does Fat Albert live?
+Philadelphia
+10
+
+TV/Film: Cartoons: In what year did both Peanuts and Beetle Bailey first appear?
+1950
+10
+
+TV/Film: Cartoons: Mentor of Titan had two children in the Marvel comics, Thanos and ____?
+Ero
+10
+
+TV/Film: Cartoons: Mexican rodent adversary to Daffy Duck?
+Speedy gonzales
+10
+
+TV/Film: Cartoons: Miss Buckley is secretary to what commanding officer?
+General halftrack
+10
+
+TV/Film: Cartoons: Name Alley Oop's girl friend?
+Oola
+10
+
+TV/Film: Cartoons: Name Alvin & Simon's brother was ____?
+Theo
+10
+
+TV/Film: Cartoons: Name Cathy's on again/off again boy friend?
+Irving
+10
+
+TV/Film: Cartoons: Name Dennis the Menace's next door neighbors?
+Mr and mrs wilson
+10
+
+TV/Film: Cartoons: Name Donald Duck's girlfriend?
+Daisy
+10
+
+TV/Film: Cartoons: Name Hagar the Horrible's dog?
+Snert
+10
+
+TV/Film: Cartoons: Name Li'l Abner's favorite Indian drink?
+Kickapoo joy juice
+10
+
+TV/Film: Cartoons: Name of the creator of Ren and Stimpy?
+John kricfalusi
+10
+
+TV/Film: Cartoons: Name of the rabbit who is supposedly Bugs' nephew?
+Buster bunny
+10
+
+TV/Film: Cartoons: Name the apartments the Jetson's live in?
+The skypad apartments
+10
+
+TV/Film: Cartoons: Name the dog in the Yankee Doodle cartoons?
+Chopper
+10
+
+TV/Film: Cartoons: Name the European hit, now an animated series about underwater people?
+The snork s
+10
+
+TV/Film: Cartoons: Name the fastest mouse in all of Mexico?
+Speedy gonzalez
+10
+
+TV/Film: Cartoons: Name the ranger who was always after Yogi Bear?
+Rick
+10
+
+TV/Film: Cartoons: Name the town that Fred, Wilma, Barney, and Betty lived in?
+Bedrock
+10
+
+TV/Film: Cartoons: Number of completed seasons of the X-Men cartoon series as of 4/94?
+2
+10
+
+TV/Film: Cartoons: On what T.V. show could Tom Terrific be found?
+Captain kangaroo
+10
+
+TV/Film: Cartoons: Popeye's chief adversary has two names, Bluto and ____?
+Brutus
+10
+
+TV/Film: Cartoons: Popeye's son?
+Lil sweepea
+10
+
+TV/Film: Cartoons: Popular DJ who has provided Shaggy's voice for all 30 years?
+Casey kasem
+10
+
+TV/Film: Cartoons: Porky Pig had a girlfriend named ____?
+Pet
+10
+
+TV/Film: Cartoons: Porky Pig had a girlfriend named ____?
+Petunia
+10
+
+TV/Film: Cartoons: Ren's last name?
+Hoek
+10
+
+TV/Film: Cartoons: Scrooge McDuck's three nephews are Huey, Duey, and him?
+Luey
+10
+
+TV/Film: Cartoons: Shaggy's best friend?
+Scooby-doo
+10
+
+TV/Film: Cartoons: Show in which one rhyme in the theme song changes every episode?
+Animaniacs
+10
+
+TV/Film: Cartoons: Stimpy's favorite brand of kitty litter?
+Gritty kitty
+10
+
+TV/Film: Cartoons: Tess Trueheart married which plainclothes detective?
+Dick tracy
+10
+
+TV/Film: Cartoons: The maiden names of which two cartoon characters are Slaghoople and Mcbricker?
+Wilma Flintstone and Betty Rubble
+10
+
+TV/Film: Cartoons: This superintelligent X-Men member is somewhat...umm... furry?
+Beast
+10
+
+TV/Film: Cartoons: What are the names of Donald Duck's nephews?
+Huey Dewey and Louey
+10
+
+TV/Film: Cartoons: What came out of Milton's head?
+Steam
+10
+
+TV/Film: Cartoons: What character did Tex Avery first create upon arriving at MGM?
+Screwball squirrel
+10
+
+TV/Film: Cartoons: What city do Batman and Robin patrol?
+Gotham City
+10
+
+TV/Film: Cartoons: What comic strip character is Beetle Bailey's sister?
+Lois (of hi and lois )
+10
+
+TV/Film: Cartoons: What did Dagwood give up to marry Blondie?
+A family inheritance
+10
+
+TV/Film: Cartoons: What did Peppermint Patty always call Charlie Brown?
+Chuck
+10
+
+TV/Film: Cartoons: What expression did Clark Kent's newspaper boss like to use?
+Great Caesar's ghost
+10
+
+TV/Film: Cartoons: What film was the last featuring Mel Blanc's voice?
+Jetsons
+10
+
+TV/Film: Cartoons: What is Batman's butler Alfred's last name?
+Pennyworth
+10
+
+TV/Film: Cartoons: What is Blondie's maiden name?
+Oop
+10
+
+TV/Film: Cartoons: What is Dennis the Menace's last name?
+Mitchell
+10
+
+TV/Film: Cartoons: What is Dennis the Menace's surname?
+Mitchell
+10
+
+TV/Film: Cartoons: What is Smokey Stover's job?
+Fireman
+10
+
+TV/Film: Cartoons: What is Super Chicken's partners name?
+Fred
+10
+
+TV/Film: Cartoons: What is the mother's name in Family Circus?
+Thelma
+10
+
+TV/Film: Cartoons: What is the name of Duddley Do-Right's horse?
+Horse
+10
+
+TV/Film: Cartoons: What is the name of the Family Circus's dog?
+Barf
+10
+
+TV/Film: Cartoons: What kind of dog is Scooby Doo?
+Great dane
+10
+
+TV/Film: Cartoons: What type of plant does Broom Hilda sell?
+Venus flytrap
+10
+
+TV/Film: Cartoons: What was Daffy Duck's favorite insult?
+You're dispicable!
+10
+
+TV/Film: Cartoons: What was Daffy Ducks usual closing line?
+You're dispicable !
+10
+
+TV/Film: Cartoons: What was George of the Jungle always running in to?
+A tree
+10
+
+TV/Film: Cartoons: What was George of the Jungle always running in to?
+Tree
+10
+
+TV/Film: Cartoons: What was the first cartoon character called?
+Oswald the Rabbit
+10
+
+TV/Film: Cartoons: What was the first cartoon to feature sound?
+Steamboat willie
+10
+
+TV/Film: Cartoons: What was the name of George of the Jungle's pet elephant?
+Shep
+10
+
+TV/Film: Cartoons: What was the name of Speed Racer's car?
+The mach five
+10
+
+TV/Film: Cartoons: What was the original name Charles Schultz had for Peanuts?
+Li'l folk s
+10
+
+TV/Film: Cartoons: What was the relationship between Superman and Supergirl?
+Cousin
+10
+
+TV/Film: Cartoons: What were Wilma Flintstone and Betty Rubble's maiden names?
+Slaghoople and Mcbricker
+10
+
+TV/Film: Cartoons: When danger appeared, Quick Draw McGraw became which super hero?
+El kabong
+10
+
+TV/Film: Cartoons: When not a Birdman, what does Ray Randall do for a living?
+Police officer
+10
+
+TV/Film: Cartoons: When not fighting crime, what did Underdog do for a living?
+Shoeshine boy
+10
+
+TV/Film: Cartoons: Where are Rocket J. Squirel and Bullwinkle Moose from?
+Frostbite falls
+10
+
+TV/Film: Cartoons: Where did Clark Kent attend college?
+Metropolis university
+10
+
+TV/Film: Cartoons: Where did George of the Jungle live?
+Imgwee gwee valley
+10
+
+TV/Film: Cartoons: Where did Mighty Mouse get his superpowers?
+Supermarket
+10
+
+TV/Film: Cartoons: Where did Mighty Mouse get his superpowers?
+The supermarket
+10
+
+TV/Film: Cartoons: Where do Rocky and Bullwinkle play football?
+What'samatta u niversity
+10
+
+TV/Film: Cartoons: Where does George Jetson work?
+Spacely sprockets
+10
+
+TV/Film: Cartoons: Where does Yogi Bear Live?
+Jellystone park
+10
+
+TV/Film: Cartoons: Which comic is drawn by Sam Keith?
+The Maxx
+10
+
+TV/Film: Cartoons: Which magician did Lothar assist?
+Mandrake
+10
+
+TV/Film: Cartoons: Which superhero loves peace enough to kill for it?
+Peacemaker
+10
+
+TV/Film: Cartoons: Who always tried to kill Krazy Kat?
+Captain marvel
+10
+
+TV/Film: Cartoons: Who did the voices of Bugs Bunny, Sylvester and Tweety Pie?
+Mel Blanc
+10
+
+TV/Film: Cartoons: Who drew the comic 'The Maxx'?
+Sam Keith
+10
+
+TV/Film: Cartoons: Who is Donald Duck's uncle?
+Scrooge
+10
+
+TV/Film: Cartoons: Who is Sally Brown's sweet baboo?
+Linus
+10
+
+TV/Film: Cartoons: Who is Scooby Doo's nephew?
+Scrappy Doo
+10
+
+TV/Film: Cartoons: Who is Scooby Doo's son?
+Scrappy doo
+10
+
+TV/Film: Cartoons: Who is Snoopy's arch enemy?
+Baron
+10
+
+TV/Film: Cartoons: Who is Snoopy's arch enemy?
+The Red Baron
+10
+
+TV/Film: Cartoons: Who is stationed at Camp Swampy in the comic strips?
+Beetle bailey
+10
+
+TV/Film: Cartoons: Who patrols Gotham City?
+Batman and Robin
+10
+
+TV/Film: Cartoons: Who runs Andy Capp's favorite pub?
+Jack and jill
+10
+
+TV/Film: Cartoons: Who shot Bruce Wayne's parents?
+Chill
+10
+
+TV/Film: Cartoons: Who took dictation from Perry Mason?
+Della Street
+10
+
+TV/Film: Cartoons: Who was always trying to get rent from Andy Capp?
+Percy
+10
+
+TV/Film: Cartoons: Who was Barney Rubble's best friend?
+Fred Flintstone
+10
+
+TV/Film: Cartoons: Who was born on Krypton?
+Superman
+10
+
+TV/Film: Cartoons: Who was Daisy the dog's owners?
+Blond
+10
+
+TV/Film: Cartoons: Who was Dick Dastardley's pet?
+Muttley
+10
+
+TV/Film: Cartoons: Who was Dick Dastardly's pet?
+Muttley
+10
+
+TV/Film: Cartoons: Who was Fred Flinstone's best friend?
+Barney Rubble
+10
+
+TV/Film: Cartoons: Who was the black assistant of Mandrake the Magician?
+Lothar
+10
+
+TV/Film: Cartoons: Who was the first voice of Mickey Mouse?
+Walt Disney
+10
+
+TV/Film: Cartoons: Who was the Hulk's first friend?
+Rick jones
+10
+
+TV/Film: Cartoons: Who was the original voice of Mickey Mouse?
+Walt disney
+10
+
+TV/Film: Cartoons: Wile E. Coyote's favorite mail-order outlet?
+Acme
+10
+
+TV/Film: cary grant and ingrid bergman starred in this 1946 alfred hitchcock espionage movie?
+Notorius
+10
+
+TV/Film: Case #: x 1.10 111993 had the code name ____?
+Fallen angel 
+10
+
+TV/Film: Celebrity Lovers: Actress Kate Capshaw is married to this popular producer and director?
+Steven spielberg
+10
+
+TV/Film: Celebrity Lovers: Actress Loni Anderson recently divorced this actor?
+Burt reynolds
+10
+
+TV/Film: Celebrity Lovers: Julia Roberts has been in an on-again, off-again marriage to this musician?
+Lyle lovett
+10
+
+TV/Film: Channel 4s unlikely success series starring Tony Robinson?
+Time Team
+10
+
+TV/Film: Character in Cagney and Lacey?
+Mary beth
+10
+
+TV/Film: Character in Psycho?
+Norman bates
+10
+
+TV/Film: Charles Laughton played Quasimodo in this epic film?
+Hunchback of notre dame
+10
+
+TV/Film: Charles Laughton played Quasimodo in this epic film?
+Hunchback of Notre Dame
+10
+
+TV/Film: Charlie Sheen pitches a 101 MPH fast ball?
+Major league
+10
+
+TV/Film: Charlie's Angels were: Farrah Fawcett, Jaclyn Smith, and her?
+Kate jackson
+10
+
+TV/Film: Cheers Trivia: Carla always held his birthday sacred...?
+Elvis
+10
+
+TV/Film: Cheers Trivia: Diane left for good in order to do this...?
+Write a book
+10
+
+TV/Film: Cheers Trivia: Name of the fat guy that always got left out of the gang's plans...?
+Paul
+10
+
+TV/Film: Cheers Trivia: Norm's favorite restaurant...?
+Hungry heifer
+10
+
+TV/Film: Cheers Trivia: Sam sold the bar (the first time) to buy one of these...?
+Boat
+10
+
+TV/Film: Cheers Trivia: The profession of Rebecca's fiancee?
+Plumber
+10
+
+TV/Film: Cheers Trivia: This character handcuffed himself to his house to keep it from being torn down?
+Cliff
+10
+
+TV/Film: Cheers Trivia: While this character befriended actor Robert Urich, no one else believed him...?
+Woody
+10
+
+TV/Film: Cheers Trivia: Woody's home town...?
+Hanover
+10
+
+TV/Film: Chevy Chase bungles Jack Palance's surveillance in...?
+Cops robbersons
+10
+
+TV/Film: Chevy Chase got his start on this show?
+Saturday night live
+10
+
+TV/Film: Chevy chase was the first original cast member to leave which show?
+Saturday night live
+10
+
+TV/Film: Chief electrician in a film unit?
+Gaffer
+10
+
+TV/Film: Child who received a miniature Oscar as Outstanding Child Actress of 1944?
+Margaret obrien
+10
+
+TV/Film: Choreographed ultra-violence; 1971 Best Picture Oscar?
+Clockwork orange
+10
+
+TV/Film: Christina applegate plays jesse on which tv sitcom?
+Jesse
+10
+
+TV/Film: Christopher Chittells character in Emmerdale?
+Eric pollard
+10
+
+TV/Film: City for the setting of One Day At a Time?
+Indianapolis
+10
+
+TV/Film: City that is 34 miles, or 54 km, from the 4077th?
+Seoul
+10
+
+TV/Film: Cliff Robertson played a retarded man who became a genius in this movie?
+Charly
+10
+
+TV/Film: Clint Eastwood stars as a cowboy who runs a fly-by-night wild west show?
+Bronco billy
+10
+
+TV/Film: Cocky young man kidnaps long lost autistic brother for inheritance money?
+Rain man
+10
+
+TV/Film: Collective name for Peter Sellers, Harry Secombe and Spike Milligan?
+The goons
+10
+
+TV/Film: Color of barney?
+Purple
+10
+
+TV/Film: Comedienne who upstaged Ikes inauguration with the birth of her first child?
+Lucille ball
+10
+
+TV/Film: Comedy dealing with African prince searching for a bride in Queens, New York?
+Coming to America
+10
+
+TV/Film: Comedy troupe of John Cleese, Michael Palin, Eric Idle, and others?
+Monty python
+10
+
+TV/Film: Comedy which starred Toodie and Muldoon?
+Car 54 where are you
+10
+
+TV/Film: Comic and magician, catchphrase Just like that?
+Tommy cooper
+10
+
+TV/Film: Commander Sisko loves what sport?
+Baseball
+10
+
+TV/Film: Commitments: In what year was this film released?
+1991
+10
+
+TV/Film: Commitments: The band watched a video featuring whom?
+James brown
+10
+
+TV/Film: Commitments: What song was being performed during the fistfight?
+Chain of fools
+10
+
+TV/Film: Commitments: Who directed the Commitments?
+Alan parker
+10
+
+TV/Film: Complete the film titles ____ Frankenstein, ____ Doctor's in Love & ____ Guns?
+Young
+10
+
+TV/Film: Complete the film titles ____Goes to the Races,____ in the Navy & ____ in the Haunted House?
+Francis
+10
+
+TV/Film: Con-man James Garner got to be sheriff in...?
+Maverick
+10
+
+TV/Film: Conan-clone whose hero can talk to animals, namely ferrets?
+The beastmaster
+10
+
+TV/Film: Connery played a salty cop aiding Eliot Ness in...?
+The untouchables
+10
+
+TV/Film: Conrad Stonebanks is the arch enemy in which 2014 action movie?
+The Expendables 3
+10
+
+TV/Film: Coronation Street character played by Sean Wilson?
+Martin platt
+10
+
+TV/Film: Couples: Last name of Happy Day's Howard & Marion?
+Cunningham
+10
+
+TV/Film: Couples: Rhett Butler and ____ ____?
+Scarlett ohara
+10
+
+TV/Film: Couples: Ricky Ricardo and ____?
+Lucy
+10
+
+TV/Film: Couples: She has married many, including Conrad Hilton and George Sanders?
+Zsa zsa gabor
+10
+
+TV/Film: Couples: Vaudeville husband-and-wife team George and Gracie?
+Burns and allen
+10
+
+TV/Film: Couples: Wilma Deering's boyfriend?
+Buck rogers
+10
+
+TV/Film: Dame Peggy Ashcroft won for this film set in the Subcontinent, 1920s?
+A passage to india
+10
+
+TV/Film: Danny DeVito Films?
+One Flew Over The Cuckoo's Nest
+10
+
+TV/Film: David gower & gary linekar are team captains on which show?
+They think it's all over
+10
+
+TV/Film: David Hasselhof spent most of his time driving a car on which eighties tv show?
+Knight Rider
+10
+
+TV/Film: David letterman made his movie debut in what film?
+Cabin boy
+10
+
+TV/Film: David Letterman: Dave is often mistaken for this superstar?
+Regis philbin
+10
+
+TV/Film: David Letterman: Number of jokes Dave told in his nightly NBC monologue?
+Four
+10
+
+TV/Film: David Letterman: This football great slapped Dave in the face?
+Terry bradshaw
+10
+
+TV/Film: David Letterman: This relative of Dave's covered the 1992 Winter Olympics?
+Mom
+10
+
+TV/Film: David Letterman: Type of jacket Dave always wears?
+Double breasted
+10
+
+TV/Film: David Suchet gives a brilliant TV portrayal of this mustachioed detective?
+Hercule poirot
+10
+
+TV/Film: dean martin and jerry lewis appeared on the first telecast of this long-running variety show?
+The ed sullivan show
+10
+
+TV/Film: Dean Martin's real last name?
+Crocetti
+10
+
+TV/Film: Deckard falls for a 'skin job'?
+Blade runner
+10
+
+TV/Film: Defining Roles: Back to the Future____> Doctor Emmett Brown?
+Christopher lloyd
+10
+
+TV/Film: Defining Roles: Back to the Future____> Marty McFly?
+Michael fox
+10
+
+TV/Film: Defining Roles: Batman [the movie]____> Batman?
+Michael keaton
+10
+
+TV/Film: Defining Roles: Batman [the TV show]____> Batman?
+Adam west
+10
+
+TV/Film: Defining Roles: Butch Cassidy and the Sundance Kid____> Butch Cassidy?
+Paul newman
+10
+
+TV/Film: Defining Roles: Butch Cassidy and the Sundance Kid____> the Sundance Kid?
+Robert redford
+10
+
+TV/Film: Defining Roles: Casablanca____> Rick Blaine?
+Humphrey bogart
+10
+
+TV/Film: Defining Roles: Cool Hand Luke____> Lukas Jackson?
+Paul newman
+10
+
+TV/Film: Defining Roles: Funny Girl____> Fanny Brice?
+Barbra streisand
+10
+
+TV/Film: Defining Roles: Mr. Roberts [movie]____> Lt. Doug Roberts?
+Henry fonda
+10
+
+TV/Film: Defining Roles: One Flew Over the Cuckoo's Nest____> Randall McMurphy?
+Jack nicholson
+10
+
+TV/Film: Defining Roles: Spirit of St. Louis____> Charles Lindbergh?
+James stewart
+10
+
+TV/Film: Defining Roles: Star Trek____> Captain James Tiberius Kirk?
+William shatner
+10
+
+TV/Film: Defining Roles: Star Trek: The Next Generation____> Captain Jean-Luc Picard?
+Patrick stewart
+10
+
+TV/Film: Defining Roles: Star Wars____> Hans Solo?
+Harrison ford
+10
+
+TV/Film: Defining Roles: Star Wars____> Luke Skywalker?
+Mark hamill
+10
+
+TV/Film: Defining Roles: Star Wars____> Princess Leia?
+Carrie fisher
+10
+
+TV/Film: Defining Roles: Superman [the movie]____> Superman?
+Christopher reeves
+10
+
+TV/Film: Defining Roles: The Hustler____> Minnesota Fats?
+Jackie gleason
+10
+
+TV/Film: Defining Roles: The King and I____> The King of Siam?
+Yul brynner
+10
+
+TV/Film: Defining Roles: The Maltese Falcon____> Sam Spade?
+Humphrey bogart
+10
+
+TV/Film: Defining Roles: The Man Who Shot Liberty Valance____> Liberty Valance?
+Lee marvin
+10
+
+TV/Film: Defining Roles: The Ten Commandments____> Moses?
+Falling to pieces
+10
+
+TV/Film: Demi Moore's accent is horrid as a North Carolina clairvoyant in NYC?
+The butchers wife
+10
+
+TV/Film: Denzel Washington won an oscar for best supporting actor for the film 'glory' in 1987, 1988 or 1989?
+1989
+10
+
+TV/Film: Detectives: TV private eye played by Tom Selleck?
+Thomas magnum
+10
+
+TV/Film: Dick Van Dyke Show: How many Emmy Awards did Dick Van Dyke win for playing Rob Petrie?
+3
+10
+
+TV/Film: Dick Van Dyke Show: How old was Laura when she married Rob Petrie?
+17
+10
+
+TV/Film: Dick Van Dyke Show: In what year did the show premiere?
+1961
+10
+
+TV/Film: Dick Van Dyke Show: Laura revealed on national TV that Alan Brady was ____?
+Bald
+10
+
+TV/Film: Dick Van Dyke Show: On what network did the series air?
+Cbs
+10
+
+TV/Film: Dick Van Dyke Show: Under what name did Sally and Buddy perform a nightclub act?
+Gilbert and solomon
+10
+
+TV/Film: Dick Van Dyke Show: What body part would Rob lose if he became a Twyloite?
+Thumb
+10
+
+TV/Film: Dick Van Dyke Show: What did Rob trip over in some of the shows opening sequences?
+Ottoman
+10
+
+TV/Film: Dick Van Dyke Show: What instrument did Buddy play?
+Cello
+10
+
+TV/Film: Dick Van Dyke Show: What is Ritchie Petrie's middle name?
+Rosebud
+10
+
+TV/Film: Dick Van Dyke Show: What job did Rob have before he became a comedy writer?
+Disc jockey
+10
+
+TV/Film: Dick Van Dyke Show: What kind of sports car did Rob Petrie buy?
+Tarantula
+10
+
+TV/Film: Dick Van Dyke Show: What phrase did Laura utter whenever she was in trouble or upset?
+Oh rob
+10
+
+TV/Film: Dick Van Dyke Show: What was Rob's nickname when he was a boxer in the Army?
+Pitter patter petrie
+10
+
+TV/Film: Dick Van Dyke Show: What were the first names of the next door neighbors ( and )?
+Millie and jerry
+10
+
+TV/Film: Dick Van Dyke Show: Where did Laura's toe get stuck on their second honeymoon?
+Faucet
+10
+
+TV/Film: Dick Van Dyke Show: Who played pickpocket & convict Lye Delp?
+Don rickles
+10
+
+TV/Film: Dick Van Dyke Show: Who played Rob Petrie in the original pilot for the series?
+Carl reiner
+10
+
+TV/Film: Die another Day, who takes over as Bonds chief gadget inventor Q?
+John cleese
+10
+
+TV/Film: Dieter hosted this German television program?
+Sprockets
+10
+
+TV/Film: Dimunitive actor provided the voice for animated cartoon, Oswald the Rabbitt?
+Mickey rooney
+10
+
+TV/Film: Director: 2001 A Space Odyssey, A Clockwork Orange, The Shining?
+Stanley kubrick
+10
+
+TV/Film: Director: Big, Jumpin' Jack Flash, A League Of Their Own?
+Penny marshall
+10
+
+TV/Film: Director: Blood Simple, Raising Arizona, Barton Fink?
+Joel coen
+10
+
+TV/Film: Director: Boccaccio '70, The Gold of Naples, The Bicycle Thief?
+De sica
+10
+
+TV/Film: Director: Breezy, Pale Rider, FireFox?
+Eastwood
+10
+
+TV/Film: Director: Carrie, The Bonfire of the Vanities, Scarface?
+Brian de palma
+10
+
+TV/Film: Director: Casablanca, Yankee Doodle Dandy, Captain Blood?
+Michael curtiz
+10
+
+TV/Film: Director: Day for Night, Jules and Jim, The 400 Blows?
+Truffaut
+10
+
+TV/Film: Director: Dodeskada, The Seven Samurai, Rashomon?
+Akira kurosawa
+10
+
+TV/Film: Director: Easy Rider, The Hot Spot, River's Edge?
+Dennis hopper
+10
+
+TV/Film: Director: Female Trouble, Cry Baby, Pink Flamingos?
+John waters
+10
+
+TV/Film: Director: Glen or Glenda , Plan Nine From Outer Space?
+Ed wood jr
+10
+
+TV/Film: Director: Green Card, Picnic at Hanging Rock, The Mosquito Coast?
+Weir
+10
+
+TV/Film: Director: Hamlet goes Business, Ariel, Leningrad Cowboys go America?
+Kaurismaki
+10
+
+TV/Film: Director: Hiroshima Mon Amour, My American Uncle, Last Year At Marienbad?
+Alain resnais
+10
+
+TV/Film: Director: How Green Was My Valley, The Searchers, The Man Who Shot Liberty Valance?
+John ford
+10
+
+TV/Film: Director: Interiors, Manhattan, Shadows and Fog?
+Allen
+10
+
+TV/Film: Director: Intolerance, Birth of a Nation?
+D w griffith
+10
+
+TV/Film: Director: Jaws and ET?
+Spielberg
+10
+
+TV/Film: Director: Madadayo, Drunken Angels, Kagemusha?
+Kurosawa
+10
+
+TV/Film: Director: Misery, A Few Good Men, North, This Is Spinal Tap?
+Rob reiner
+10
+
+TV/Film: Director: Mo' Better Blues, Jungle Fever, School Daze, She's Gotta Have It?
+Spike lee
+10
+
+TV/Film: Director: Mr. Smith Goes To Washington, It's a Wonderful Life, It Happened One Night?
+Frank capra
+10
+
+TV/Film: Director: Neighbors, The Karate Kid, Joe?
+Avildsen
+10
+
+TV/Film: Director: Nuovo Cinema Paradiso, Everybody's fine?
+Tornatore
+10
+
+TV/Film: Director: Othello, Citizen Kane, The Trial?
+Welles
+10
+
+TV/Film: Director: Othello, The Magnificent Ambersons, Citizen Kane?
+Orson welles
+10
+
+TV/Film: Director: Pale Rider, Bird, White Hunter Black Heart?
+Clint eastwood
+10
+
+TV/Film: Director: Peggy Sue Got Married, The Conversation, Bram Stoker's Dracula?
+Francis ford coppola
+10
+
+TV/Film: Director: Repulsion, Bitter Moon, Rosemary's Baby?
+Roman polanski
+10
+
+TV/Film: Director: Rosemary's Baby, Tess, Frantic?
+Polanski
+10
+
+TV/Film: Director: Runaway Train, Tango & Cash, Maria's Lovers?
+Konchalovsky
+10
+
+TV/Film: Director: sex lies and videotape, King of the Hill, Kafka?
+Stephen soderbergh
+10
+
+TV/Film: Director: Stand by me, Misery, When Harry met Sally?
+Reiner
+10
+
+TV/Film: Director: Taxi Driver, Cape Fear, The Color of Money, Mean Streets?
+Martin scorsese
+10
+
+TV/Film: Director: The Abyss, The Terminator, True Lies?
+James cameron
+10
+
+TV/Film: Director: The Crowd, War and Peace, The Citadel?
+Vidor
+10
+
+TV/Film: Director: The Decline and Fall of Western Civilization, Wayne's World?
+Penelope spheeris
+10
+
+TV/Film: Director: The Egyptian, Doctor X, Casablanca?
+Curtiz
+10
+
+TV/Film: Director: The Fisher King, Brazil, Time bandits?
+Gilliam
+10
+
+TV/Film: Director: The Heartbreak Kid, Ishtar?
+Elaine may
+10
+
+TV/Film: Director: The Seventh Seal, Persona, Crisis?
+Bergman
+10
+
+TV/Film: Director: The Wild Bunch, Straw Dogs?
+Sam peckinpah
+10
+
+TV/Film: Director: Who did John Ford come to blows with in the making of 1955's Mister Roberts?
+Henry Fonda
+10
+
+TV/Film: Director: Who directed Peggy Sue Got Married?
+Francis Ford Coppola
+10
+
+TV/Film: Director: Who directed Star Trek 2?
+Leonard Nimoy
+10
+
+TV/Film: Director: Who directed Star Trek 5?
+William Shatner
+10
+
+TV/Film: Director: Who directed the 1953 film Stalag 17?
+Billy Wilder
+10
+
+TV/Film: Director: Who directed the 1954 film Sabrina?
+Billy Wilder
+10
+
+TV/Film: Director: Who Directed the 1957 film The Spirit of St. Louis?
+Billy Wilder
+10
+
+TV/Film: Director: Who directed the 1965 film 'The Sound of Music?
+Robert Wise
+10
+
+TV/Film: Dirty Harry's last name?
+Callahan
+10
+
+TV/Film: Disney: ____ dubbed the voice of the Beast in the 1991 Disney version of Beauty and the Beast?
+Robby benson
+10
+
+TV/Film: Disney: ____ Ford is listed as one of 50 people barred from entering Tibet - apparently, Disney clashed with Chinese officials over the film Kundun (1997). Ford's wife Melissa Mathison wrote the screenplay?
+Harrison
+10
+
+TV/Film: Disney: ____ was the first feature length production which was created by Walt Disney Feature Animation, Florida, which is located at Disney/MGM Studios at Walt Disney World?
+Mulan
+10
+
+TV/Film: Disney: 1960s: In 1964 release was the most successful Disney film to date?
+Mary poppins
+10
+
+TV/Film: Disney: According to one episode, where did dinosaurs come from?
+Space
+10
+
+TV/Film: Disney: According to Walt, what Hollywood movie star was his inspiration for the witch in Snow White and the Seven Dwarfs?
+Joan Crawford
+10
+
+TV/Film: Disney: An owl named Archimedes is featured in which Disney film?
+The Sword in the Stone
+10
+
+TV/Film: Disney: As of December 30, 1997, Disney held eight of the top ten spots on the All Time Movie Video Sales Chart. The Lion King (1), Aladdin (2), Cinderella (3), Beauty and The Beast (4), Snow White and the Seven Dwarfs (5), Toy Story (7), 101 Dalmatians (8), and Pocahontas (10). The two non-Disney flicks to make the list - Forrest Gump (6), and ____?
+Jurassic park
+10
+
+TV/Film: Disney: cinemascope was used on an animated feature for the first time on what release?
+Lady and the tramp
+10
+
+TV/Film: Disney: Disney: The original name of Goofy was ____?
+Dippy dawg
+10
+
+TV/Film: Disney: I'll Make Man Out of You was a song in which 1998 Disney animation?
+Mulan
+10
+
+TV/Film: Disney: In 1928 who registered Mickey Mouse as a trademark?
+Walt Disney
+10
+
+TV/Film: Disney: In 1940, Walt Disney's ____ was the first film in history to use stereophonic sound?
+Fantasia
+10
+
+TV/Film: Disney: In Bambi, what word is used to describe animals in love?
+Twitterpated
+10
+
+TV/Film: Disney: In Cinderella, what kind of animal is Lucifer?
+Cat
+10
+
+TV/Film: Disney: In Disney's Fun and Fancy free, what does Bongo the bear ride?
+A unicycle
+10
+
+TV/Film: Disney: In Disney's Ratatouilie, what is the nasty restaurant critic's name, voiced by Peter O' Tool?
+Anton Ego
+10
+
+TV/Film: Disney: In Dumbo, what is the name of the mouse who befriends Dumbo?
+Timothy
+10
+
+TV/Film: Disney: In Fantasia, which regular Disney character appears?
+Mickey Mouse
+10
+
+TV/Film: Disney: In order and delimited by spaces, name the programs of the 1993-94 TDA?
+Talespin darkwing duck goof troop bonkers
+10
+
+TV/Film: Disney: In the Disney cartoon feature Robin Hood, what was the name of the snake?
+Sir Hiss
+10
+
+TV/Film: Disney: In the Disney film Aladdin, who did the voice for the character of Jasmine?
+Linda Larkin
+10
+
+TV/Film: Disney: In the Disney film of the same name, what type of creature was Bambi?
+Deer
+10
+
+TV/Film: Disney: In The Jungle Book, what is the name of the snake?
+Kaa
+10
+
+TV/Film: Disney: In their mines, what do the seven dwarfs dig for?
+Diamonds
+10
+
+TV/Film: Disney: In what cartoon feature would one find Timothy Q Mouse?
+Dumbo
+10
+
+TV/Film: Disney: Mickey mouse has some nephews what were there names?
+Mortie and ferdie
+10
+
+TV/Film: Disney: Mickey mouse's ears are always turned which way, no matter which direction his head is pointing?
+To the front
+10
+
+TV/Film: Disney: Movie: Bernard, Miss Bianca, Penny?
+The rescuers
+10
+
+TV/Film: Disney: Movie: Geppetto, Monstro, Jiminy Cricket (Watch the Spelling!)?
+Pinocchio
+10
+
+TV/Film: Disney: Movie: Jaq, Lucifer, Gus Gus?
+Cinderella
+10
+
+TV/Film: Disney: Movie: Nora, Pete, Elliot?
+Petes dragon
+10
+
+TV/Film: Disney: Movie: Rafiki, Nala, Simba?
+The lion king
+10
+
+TV/Film: Disney: Music: this movie moved classical music into the forefront?
+Fantasia
+10
+
+TV/Film: Disney: Name 10 Movies (Animated)?
+Bambi
+10
+
+TV/Film: Disney: Name Cartoon Characters?
+Goofy
+10
+
+TV/Film: Disney: Name Goofy's son?
+Max
+10
+
+TV/Film: Disney: Name the baby elephant with big ears who starred in a Disney cartoon feature?
+Dumbo
+10
+
+TV/Film: Disney: Name the donkey in Winnie The Pooh?
+Eeyore
+10
+
+TV/Film: Disney: Name the film: First feature-length animated movie by Disney?
+Snow white and the seven dwarfs
+10
+
+TV/Film: Disney: Name the Rescue Rangers' feline enemy?
+Fat cat
+10
+
+TV/Film: Disney: Orville the albatross can be found in which of Disney's cartoon features?
+The Rescuers
+10
+
+TV/Film: Disney: Point Maley is the coast guard cutter in what disney movie?
+Boatniks
+10
+
+TV/Film: Disney: Randall Boggs, Mike Wazowski, and James P Sullivan are characters from which Disney movie?
+Monsters Inc
+10
+
+TV/Film: Disney: sherlock holmes: what animated feature is based on sherlock holmes?
+Great mouse detective
+10
+
+TV/Film: Disney: Sidekicks: Disney cartoon characters: Chip?
+Dale
+10
+
+TV/Film: Disney: Simba, Nala, and Mufasa are just a few characters in this movie?
+The lion king
+10
+
+TV/Film: Disney: Tangled is based on which of the Grimms' fairy tales?
+Rapunzel
+10
+
+TV/Film: Disney: The Adventures of Ichavod and Mr Toad was later remade as what?
+Sleepy Hollow
+10
+
+TV/Film: Disney: The animated feature 'aladdin' takes place in what city?
+Agrabah
+10
+
+TV/Film: Disney: The first merchandise item to feature Mickey Mouse was a child's school tablet in ____?
+1929
+10
+
+TV/Film: Disney: The song Under the Sea come is featured in which Disney cartoon?
+The little Mermaid
+10
+
+TV/Film: Disney: The two-minute storm in the opening of Disney's ____(1989) took ten special effects artists over a year to complete?
+The little mermaid
+10
+
+TV/Film: Disney: The Whale's name in Disney's Pinocchio is what?
+Monstro
+10
+
+TV/Film: Disney: To what use does Dumbo put his big ears?
+Flying
+10
+
+TV/Film: Disney: Walt Disney's Pluto is what kind of animal?
+Dog
+10
+
+TV/Film: Disney: what animal does cinderella's fairy godmother use to create the footman?
+Dog
+10
+
+TV/Film: Disney: What are the names of the cartoon character Mickey Mouse's two nephews?
+Ferdy and Morty
+10
+
+TV/Film: Disney: What are the only 2 words that Pluto has every said?
+Kiss me
+10
+
+TV/Film: Disney: What color is the fairy that grants Geppetto's wish to bring Pinocchio to life?
+Blue
+10
+
+TV/Film: Disney: What Disney movie has a married couple called Roger and Anita Radcliffe?
+101 Dalmatians
+10
+
+TV/Film: Disney: What does the magician Merlin turn young Wart into in The Sword and the Stone?
+Fish
+10
+
+TV/Film: Disney: What is Baloo's term of endearment for his employer?
+Beckers
+10
+
+TV/Film: Disney: What is Bonkers' full name?
+Bonkers t. bobcat
+10
+
+TV/Film: Disney: What is Darkwing's often-humorous battle cry in the face of danger?
+Letus get dangerous
+10
+
+TV/Film: Disney: What is the hound named in Disney's The Fox and The Hound?
+Copper
+10
+
+TV/Film: Disney: What is the last program on the 1994-95 TDA?
+Aladdin
+10
+
+TV/Film: Disney: What is the name of Baloo's plane?
+The sea duck
+10
+
+TV/Film: Disney: What is the name of BalooUs favorite hangout?
+Louieus
+10
+
+TV/Film: Disney: What is the name of DarkwingUs pilot and sidekick?
+Launchpad mcquack
+10
+
+TV/Film: Disney: What is the name of Scrooge's money repository?
+Money bin
+10
+
+TV/Film: Disney: What is the name of the fly?
+Zipper
+10
+
+TV/Film: Disney: What is the name of the town in which DuckTales is set?
+Duckburg
+10
+
+TV/Film: Disney: what is the only disney animated feature that has received a pg rating?
+Black cauldron
+10
+
+TV/Film: Disney: What is the usual length of the disney afternoon?
+Two hours
+10
+
+TV/Film: Disney: What song is featured in Disney's Bambi?
+Little April Showers
+10
+
+TV/Film: Disney: What was Goofy's nephew's name?
+Gilbert
+10
+
+TV/Film: Disney: what was the first live-action disney film to receive a pg rating?
+Black hole
+10
+
+TV/Film: Disney: What was the name of the stereo sound system introduced for Fantasia?
+Fantasound
+10
+
+TV/Film: Disney: What was the only new program on the original TDA?
+Talespin
+10
+
+TV/Film: Disney: What's the name of the rabbit in bambi?
+Thumper
+10
+
+TV/Film: Disney: When Lady and the Tramp dine together, what is the romantic song playing?
+Bella Notte
+10
+
+TV/Film: Disney: Where is Higher for Hire based?
+Cape suzette
+10
+
+TV/Film: Disney: While creating the movie ____(1995), the animation team at Pixar Animation Studios perfected the movement of the toy soldiers by gluing some sneakers to a sheet of wood and trying to walk around with them on?
+Toy story
+10
+
+TV/Film: Disney: Who sleeps in a matchbox at Geppetto's house, in pinocchio?
+Jiminy cricket
+10
+
+TV/Film: Disney: Who took over as lyricist in Aladdin after the death of Howard Ashman?
+Tim rice
+10
+
+TV/Film: Disney: Who was anastasia and drizella's stepsister?
+Cinderella
+10
+
+TV/Film: Disney: Who was it that told the House Un-American Activities Committee that communist cartoonists might be using Mickey Mouse to spread propaganda?
+Walt Disney
+10
+
+TV/Film: Disney: Who was Walt Disney's son-in-law who ran the company in the early 80s?
+Ron miller
+10
+
+TV/Film: Disney: Who wrote the music for The Adventure of the Great Mouse Detective?
+Henry mancini
+10
+
+TV/Film: Disney: Whose voice was used for dubbing Dopey in the 1937 cartoon classic, Snow White and the Seven Dwarfs?
+Nobodies, Dopey was a mute
+10
+
+TV/Film: Disney's 1979 attempt at a sci-fi flick, with Ernest Borgnine?
+The black hole
+10
+
+TV/Film: Do not forsake me, oh my darlin' ... on this our weddin' day ____?
+High noon
+10
+
+TV/Film: Do you know the name of the flintstones often unseen cat?
+Baby puss 
+10
+
+TV/Film: Doctor Who: Cult sci-fi author who used to be script editor of the show?
+Douglas adams
+10
+
+TV/Film: Doctor Who: Melanie shares her surname with which ex-US President?
+Bush
+10
+
+TV/Film: Doctor Who: Multi-purpose gadget which helps the Doctor out of many sticky situations?
+Sonic screwdriver
+10
+
+TV/Film: Doctor Who: Name of the Doctor's race?
+The time lords
+10
+
+TV/Film: Doctor Who: The rights for a new series of Dr.Who are held by what Spielberg-owned company?
+Amblin
+10
+
+TV/Film: Doctor Who: What would you immediately notice if you stepped inside the TARDIS?
+Bigger on the inside
+10
+
+TV/Film: Doctor Who: Year Doctor Who was first transmitted in the UK?
+1963
+10
+
+TV/Film: Don Burke hosts which show?
+Burke's Backyard
+10
+
+TV/Film: Doreen Tracy, Cheryl Holdridge & Cubby O'brien were known on tv as what?
+Mouseketeers
+10
+
+TV/Film: Dr Seuss: ____ Apples Up On Top (written under a pseudonym)?
+Ten
+10
+
+TV/Film: Dr Seuss: _Hop on _____?
+Pop
+10
+
+TV/Film: Dr Seuss: _Mr. Brown Can ____! Can You_?
+Moo
+10
+
+TV/Film: Dr Seuss: Dr. Derring's Singing Herring sing this to you!?
+Happy birthday
+10
+
+TV/Film: Dr Seuss: He owned a bottomless pool?
+Mcelligot
+10
+
+TV/Film: Dr Seuss: His most successful book, it launched the Beginner Books series?
+The cat in the hat
+10
+
+TV/Film: Dr Seuss: The number of hats Barholomew Cubbins wore?
+500
+10
+
+TV/Film: Dr Seuss: The totalitarian turtle?
+Yertle
+10
+
+TV/Film: DR Who: Actor: Who played the Timelord 1963 - 1966?
+William hartnell
+10
+
+TV/Film: Dr Who: Actor: Who played the Timelord 1966 - 1969?
+Patrick troughton
+10
+
+TV/Film: Dr Who: Actor: Who played the Timelord 1970 - 1974?
+Jon pertwee
+10
+
+TV/Film: Dr Who: Actor: Who played the Timelord 1974 - 1981?
+Tom baker
+10
+
+TV/Film: Dr Who: Actor: Who played the Timelord 1982 - 1984?
+Peter davison
+10
+
+TV/Film: Dr Who: Actor: Who played the Timelord 1984 - 1986?
+Colin baker
+10
+
+TV/Film: Drama written by Johnny Vaughan in 2002?
+Dead Casual
+10
+
+TV/Film: Dreyfus & Estevez were on a...?
+Stakeout
+10
+
+TV/Film: Duke Slater was the best friend of this marine?
+Gomer pyle
+10
+
+TV/Film: Dukes Of Hazzard: Bo and Luke's CB handle?
+Lost sheep
+10
+
+TV/Film: Dukes Of Hazzard: First names of Bo and Luke's cousins who replaced them briefly. (x and y)?
+Coy and vance
+10
+
+TV/Film: Dukes Of Hazzard: General Lee's make and model?
+Dodge charger
+10
+
+TV/Film: Dukes Of Hazzard: It is a ____ that DoH isn't on some cable network. Also a play genre?
+Tragedy
+10
+
+TV/Film: Dukes Of Hazzard: Name the actor who played Enos?
+Sonny shroyer
+10
+
+TV/Film: Dukes Of Hazzard: Name the actor who played the local mechanic. Rumored to be a Congressman?
+Ben jones
+10
+
+TV/Film: Dukes Of Hazzard: Which Duke had the more successful singing career (name the guy, not the Duke)?
+John Schneider 
+10
+
+TV/Film: During the first Bugs Bunny cartoon, what character tried to kill him?
+Elmer Fudd.
+10
+
+TV/Film: During the shooting of Schidlers List which other film was Spielberg editing from his hotel via satellite link?
+Jurassic park
+10
+
+TV/Film: Dwayne Hickman in the title role. Bob Denver as his pal Maynard G. Krebs?
+The many loves of Dobie Gillis
+10
+
+TV/Film: Dynasty actress who rose to early popularity as Audra Barkley in Big Valley?
+Linda evans
+10
+
+TV/Film: Early Nat'l Lampoon film; John Belushi plays Bluto?
+Animal house
+10
+
+TV/Film: Early Spielberg film with Roy Scheider & Richard Dreyfus?
+Jaws
+10
+
+TV/Film: Ed Asner won an emmy for his role in this series in 1977?
+Roots
+10
+
+TV/Film: Ed Harris watches his wife,Mary Elizabeth Mastrantonio, drown to death?
+The abyss
+10
+
+TV/Film: Eddie Redmayne starred in this 2015 movie?
+The Danish Girl
+10
+
+TV/Film: Elmo Lincoln,Gene Polar,Jock Mahoney and MIke Henry have all played which screen hero?
+Tarzan
+10
+
+TV/Film: Elvis Presley played a Red Indian in what movie?
+Stay Away Joe
+10
+
+TV/Film: Elvis Presley's real parents appeared in what movie?
+King creole
+10
+
+TV/Film: Emmy awards: Helen Hunt has 4 best comedy actress honors, but she still has not caught whom?
+Mary tyler moore
+10
+
+TV/Film: Emmy awards: Name the only actress with 4 best drama actress awards?
+Tyne daly
+10
+
+TV/Film: Entrepreneur that owned Jurassic Park?
+John hammond
+10
+
+TV/Film: Even though she was a 'Canadian¿, who became known as 'America's Sweetheart' in the film industry?
+Mary Pickford
+10
+
+TV/Film: Ex Secret Service Agent and Ex Football player fight corrupt football owner?
+The last boy scout
+10
+
+TV/Film: Famous author who starred in Neil Simon's Murder By Death?
+Truman capote
+10
+
+TV/Film: Famous Hong Kong director of Red Sorghum & To Live?
+Zhang yimou
+10
+
+TV/Film: Famous swinging character has been played by Pierce, Henry, and Barker?
+Tarzan
+10
+
+TV/Film: Farm boy and mentor team up with two smugglers to rescue kidnapped princess?
+Star wars
+10
+
+TV/Film: Film and video makers are very ENTHUSIASTIC about this brand of digital editor?
+Avid
+10
+
+TV/Film: Film legend who starred in CBS series Hawkins?
+Jimmy stewart
+10
+
+TV/Film: Film Title: ____: A Space Oddessey?
+2001
+10
+
+TV/Film: Film Title: ____(a number) Leagues Under the Sea?
+20,000
+10
+
+TV/Film: Film Title: Fahrenheit ____ (a number)?
+451
+10
+
+TV/Film: Film which won Audrey Hepburn an Oscar for best actress?
+Roman holiday
+10
+
+TV/Film: First Egyptian actor to become an international film star?
+Omar sharif
+10
+
+TV/Film: First member of the original Saturday Night Live to leave the show?
+Chevy chase
+10
+
+TV/Film: Fletcher is a character played by which comedy actor?
+Ronnie barker
+10
+
+TV/Film: Flub a dub & Chief Thunder Chicken were regulars on?
+Howdy doody
+10
+
+TV/Film: Following earlier failures on tv, danny thomas successfully returns in?
+Make room for daddy
+10
+
+TV/Film: For what role in From Here to Eternity did Sinatra win an Academy Award?
+Maggio
+10
+
+TV/Film: For what tv series was walter d. Dishell medical adviser?
+Mash
+10
+
+TV/Film: For which ad campaign was the line 'I can't believe I ate the whole thing' used?
+Alka Seltzer
+10
+
+TV/Film: For which movie did Peter O'Toole win an Oscar?
+None
+10
+
+TV/Film: For whom did Underdog have a bad case of puppy love?
+Sweet polly purebred
+10
+
+TV/Film: Former miss America Phyllis George interviews Burt Reynolds on ____?
+Cbs morning news
+10
+
+TV/Film: Formerly David Jones, his films include the Man Who Fell to Earth & The Hunger?
+David bowie
+10
+
+TV/Film: Forrest ____ liked shrimp?
+Gump
+10
+
+TV/Film: Forrest ____ liked shrimp?
+Gump
+10
+
+TV/Film: FOX's show about five kids struggling through life without their parents?
+Party of five
+10
+
+TV/Film: Fred Flintstone's favourite sport is?
+Bowling
+10
+
+TV/Film: Fred MacMurray invented this rubbery substance in The Absent Minded Professor?
+Flubber
+10
+
+TV/Film: Frederic's love in the pirates of penzance?
+Mabel
+10
+
+TV/Film: French phrase referring to all the elements to be photographed -props,sets,etc?
+Mise-en-scene
+10
+
+TV/Film: Friday Night With Jonathan?
+Ross
+10
+
+TV/Film: From 1956 to 1972 how many commercially released films did Elvis appear in?
+33
+10
+
+TV/Film: From the mind of comedian Robin Harris comes this animated bunch of brats?
+Bebes kids
+10
+
+TV/Film: From where was Ricky in 'I Love Lucy'?
+Cuba
+10
+
+TV/Film: Frozen (2013) won an academy award for which original song featured in the film?
+Let It Go
+10
+
+TV/Film: Full House: Danny's last name?
+Tanner
+10
+
+TV/Film: Full House: Danny's minor in college?
+Darts
+10
+
+TV/Film: Full House: Full House is set in this city?
+San francisco
+10
+
+TV/Film: Full House: Name the three daughters, in order of oldest to youngest (no commas)?
+Dj stephanie michelle
+10
+
+TV/Film: Full House: Rebecca's maiden name?
+Donaldson
+10
+
+TV/Film: Full House: The name of the club Jesse owns and maintains?
+Smash club
+10
+
+TV/Film: Futurist drama starring Charlton Heston?
+The Omega Man
+10
+
+TV/Film: Game show: dick clarks popular word association game began in 1973 as the $10,000 pyramid. But inflation raised the stakes. How high up did the pyramid eventually go?
+$100,000
+10
+
+TV/Film: Game show: dr. Joyce brothers began her career as a media personality by being a winning contestant on?
+$64,000 question
+10
+
+TV/Film: Game show: three of the following U S Presidents appeared at one time or another on what's my line. Which one did not Jimmy Carter, Gerald Ford, Ronald Reagan, George Bush?
+George bush
+10
+
+TV/Film: Game show: who has hosted more game shows than anybody?
+Bill cullen
+10
+
+TV/Film: Game Shows: Chuck Woolery & Rolf Benerschke hosted this show, but are not famous for it?
+Wheel of fortune
+10
+
+TV/Film: Game Shows: Fishy character who hosted NBC's Scrabble and Scattegories game shows?
+Charlie tuna
+10
+
+TV/Film: Game Shows: He hosted High Rollers, the $128,000 Question, Concentration, Wizard of Odds?
+Alex trebek
+10
+
+TV/Film: Game Shows: Host of Caesar's Challenge?
+Ahmad rashad
+10
+
+TV/Film: Game Shows: Host of the $100,000 Pyramid and the $25,000 Pyramid?
+Dick clark
+10
+
+TV/Film: Game Shows: Host of the Family Feud after Richard Dawson?
+Ray coombs
+10
+
+TV/Film: Game Shows: Host of Win Lose or Draw?
+Bert convy
+10
+
+TV/Film: Game Shows: New Mexico city renamed in 1950 for 10th anniversary of this show (City/Show)?
+Truth or consequences
+10
+
+TV/Film: Game Shows: Shadoe Stevens and this man hosted Hollywood Squares?
+John Davidson
+10
+
+TV/Film: Game Shows: This show's giant, 50-foot pinball game had 4 miles of wiring?
+Magnificent marble machine
+10
+
+TV/Film: Game Shows: With a run of over 17 years, prime-time television's longest running game show?
+Whats my line
+10
+
+TV/Film: Gardener known for her nipples?
+Charlie Dimmock
+10
+
+TV/Film: Gareth Hales comedy partner?
+Norman pace
+10
+
+TV/Film: Garp's sport in The World According to Garp?
+Wrestling
+10
+
+TV/Film: Gene Hackman starred in the French Connection what was the name of the character he played?
+Popeye doyle
+10
+
+TV/Film: Gene Kelly had an unusual dance partner in the 1945 movie Anchors Aweigh. Who was his partner?
+Jerry
+10
+
+TV/Film: George Cukor won his last Oscar for directing which 1964 musical?
+My fair lady
+10
+
+TV/Film: George Jetson works for what company?
+Spacely sprockets
+10
+
+TV/Film: Get Smart: Control had a branch office here, but lost it?
+Las vegas
+10
+
+TV/Film: Get Smart: Famous Hawaiian detective impeccably dressed in white suit and hat?
+Harry hoo
+10
+
+TV/Film: Get Smart: His first name is Ludwig?
+Siegfried
+10
+
+TV/Film: Get Smart: In Smart's apartment, the phone is hidden inside this?
+Phone
+10
+
+TV/Film: Get Smart: Kaos executioner & Smart's nemesis?
+Siegfried
+10
+
+TV/Film: Get Smart: KAOS POW camp Gitche Gomee Noo-Nee Wah-wah is located in this state?
+New jersey
+10
+
+TV/Film: Get Smart: KAOS stands for this?
+Nothing
+10
+
+TV/Film: Get Smart: Siegfried's faithful sidekick and dummkopf?
+Shtarker
+10
+
+TV/Film: Get Smart: Smart's beautiful partner, later his wife?
+99
+10
+
+TV/Film: Get Smart: Smart's call number?
+86
+10
+
+TV/Film: Get Smart: The chief's bumbling secretary?
+Larabee
+10
+
+TV/Film: Get Smart: This actor plays Smart and also provides the voice of Inspector Gadget?
+Don adams
+10
+
+TV/Film: Get Smart: This agent is stationed in a mailbox, couch, airport locker, trash can, etc?
+13
+10
+
+TV/Film: Get Smart: This is issued by Control in different flavors every month?
+Suicide pill
+10
+
+TV/Film: Get Smart: This is mostly likely 99's real first name?
+Susan
+10
+
+TV/Film: Get Smart: This plexiglass anti-eavesdropping device was invented by Professor Cone?
+Cone of silence
+10
+
+TV/Film: Gilligans Island: Gilligan and he shared the same hut?
+Skipper
+10
+
+TV/Film: Gilligans Island: Ginger appears to read what & predict the future?
+Crystal ball
+10
+
+TV/Film: Gilligans Island: How many hours was the ill-fated tour supposed to last?
+3
+10
+
+TV/Film: Gilligans Island: How many pounds does Lovey's diamond engagement ring weigh?
+One
+10
+
+TV/Film: Gilligans Island: The color of the Skipper's shirt?
+Blue
+10
+
+TV/Film: Gilligans Island: The Skipper uses what in search for fresh water?
+Divining rod
+10
+
+TV/Film: Gilligans Island: The title song was amended to include the names of who the Professor and who?
+Mary ann
+10
+
+TV/Film: gilligans island: what book does the professor consult most?
+World of facts
+10
+
+TV/Film: Gilligans Island: What does Gilligan always eat at the movies?
+Popcorn
+10
+
+TV/Film: Gilligans Island: What does Mr. Howell use as a golf ball?
+Avocado pit
+10
+
+TV/Film: Gilligans Island: Which Gilligan movie premiered in 1981?
+The harlem globetrotters on gilligans island
+10
+
+TV/Film: Gilligans Island: Who has friends named Fatso Flannigan, Bobby McGuire and Skinni Mulligan?
+Gilligan
+10
+
+TV/Film: gilligans island: who played gilligan's would-be native mother-in-law?
+Henny backus
+10
+
+TV/Film: Glenn Ford starred in this 1955 classic about a NYC school teacher?
+Blackboard jungle
+10
+
+TV/Film: Good Morning Vietnam stared what actor as Adrian Cronauer?
+Robin williams
+10
+
+TV/Film: Grace Kelly film?
+High Society
+10
+
+TV/Film: Grace Kelly film?
+Rear window
+10
+
+TV/Film: Graham Kerr was known as what?
+Galloping gourmet
+10
+
+TV/Film: Grease: Frenchy dropped out of beauty school after tinting her hair this color?
+Pink
+10
+
+TV/Film: Grease: Sandy left Danny while seeing this movie at the drive-in?
+The blob
+10
+
+TV/Film: Grease: She got her name because she was the best dancer at St. Bernadette's?
+Chacha
+10
+
+TV/Film: Grease: Some of the T-Birds had to go to summer school to retake this class?
+Gym
+10
+
+TV/Film: Grease: This was the rival gang of the T-Birds?
+Scorpions
+10
+
+TV/Film: Grease: What did Frenchy do that made Sandy puke?
+Pierced her ear
+10
+
+TV/Film: Groundforces strong man?
+Tommy Walsh
+10
+
+TV/Film: Gun twirler from blazing saddles?
+Gene wilder
+10
+
+TV/Film: Guys hate it when their girlfriends wanna watch this 1988 Midler tearjerker?
+Beaches
+10
+
+TV/Film: Hackman first plays Popeye in...?
+The french connection
+10
+
+TV/Film: HAL's name is (Clarke says unintentionally) similar to this acronym?
+Ibm
+10
+
+TV/Film: Halle Berry made history with her best actress oscar, for which film did she win her award?
+Monster's ball
+10
+
+TV/Film: Hank azaria (simpon voices) was the camera man for what movie?
+Godzilla
+10
+
+TV/Film: Hanna barbera rose to fame by creating what duo for mgm?
+Tom & jerry
+10
+
+TV/Film: Happy days: joanie's first date was with one of fonzie's cousins. What was his name?
+Spike
+10
+
+TV/Film: HBO Original starring James Garner about the RJR/Nabisco buyout scandal?
+Barbarians at the gate
+10
+
+TV/Film: He directed the movie E.T?
+Stephen spielberg
+10
+
+TV/Film: He directed the movie E.T?
+Stephen Spielberg
+10
+
+TV/Film: He is the voice of Charlie on Charlie's Angels?
+John forsythe
+10
+
+TV/Film: He performed as Jack Skellington in _A Nightmare Before Christmas?
+Danny elfman
+10
+
+TV/Film: he played burt lancaster's commanding officer in run silent, run deep?
+Clark gable
+10
+
+TV/Film: he played carmine sabatine in the freshman?
+Marlon brando
+10
+
+TV/Film: He played John-Boy on The Waltons?
+Richard thomas
+10
+
+TV/Film: He played Johnny Boy, small-time gambler in big-time debt to loan sharks?
+Robert deniro
+10
+
+TV/Film: He played Lando Calrissian in the Star Wars sequels?
+Billy dee williams
+10
+
+TV/Film: He played Mork's son on Mork and Mindy?
+John winters
+10
+
+TV/Film: He played Mr. Short Term Memory?
+Tom hanks
+10
+
+TV/Film: He played Superman in the 1978 movie version?
+Christopher reeve
+10
+
+TV/Film: He played Superman in the 1978 movie version?
+Christopher Reeve
+10
+
+TV/Film: He played the 6 Million Dollar Man?
+Lee majors
+10
+
+TV/Film: He played the private eye Matt Houston?
+Lee horsley
+10
+
+TV/Film: He played the sleezy evangelist the James Bond movie Licence to Kill?
+Wayne newton
+10
+
+TV/Film: He played TV's Tarzan?
+Ron ely
+10
+
+TV/Film: He stared in Magnum P.I?
+Tom selleck
+10
+
+TV/Film: He used to be known as Howard Cohen?
+Howard cosell
+10
+
+TV/Film: He was a circus acrobat before acting?
+Burt lancaster
+10
+
+TV/Film: He was born Carlos Ray?
+Chuck norris
+10
+
+TV/Film: He was born Gordon Sumner?
+Sting
+10
+
+TV/Film: He was the next person to walk on the moon after the movie was made?
+Neil armstrong
+10
+
+TV/Film: He wrote & directed 'Clockwork Orange'?
+Stanley kubrick
+10
+
+TV/Film: Helen Mirren played her in several telefilms?
+Jane tennyson
+10
+
+TV/Film: Herschel bernardi starred in this 70's sitcom?
+Arnie 
+10
+
+TV/Film: Highlander: First name of Duncan's Scottish wife in the first movie?
+Heather
+10
+
+TV/Film: Highlander: On Highlander The Series, what is the name of Duncan MacLeod's young partner?
+Richie ryan
+10
+
+TV/Film: Highlander: TV/Film: Who played Duncan MacLeod?
+Adrian paul
+10
+
+TV/Film: Highlander: What activity is Duncan involved in when he is first seen in the first episode?
+Having sex
+10
+
+TV/Film: highlander: what does the neon sign that brenda is tied to in the first movie read?
+Silvercup
+10
+
+TV/Film: Highlander: What famous actor plays Juan Ramirez?
+Sean connery
+10
+
+TV/Film: Highlander: What is the backdrop for the infamous 'cut scene' in the first movie?
+World war ii
+10
+
+TV/Film: Highlander: What is the full name of Connor MacLeod's mentor? (hint- 5 words)?
+Juan sanchez villa lobos Ramirez
+10
+
+TV/Film: highlander: what is the name of the female police officer in the first movie?
+Brenda wyatt
+10
+
+TV/Film: Highlander: What is the name of the lead evil immortal in Highlander 2- The Quickening?
+General katana
+10
+
+TV/Film: highlander: what is the only way to truly kill an immortal?
+Beheading
+10
+
+TV/Film: Highlander: What movie line sums up the struggle of the immortals (hint- 5 words)?
+There can be only one
+10
+
+TV/Film: highlander: what was duncan's occupation in the first season?
+Antique dealer
+10
+
+TV/Film: Highlander: What was the name of Duncan MacLeod's monk mentor?
+Darius
+10
+
+TV/Film: Highlander: What was the name of the first evil Immortal in the TV Show?
+Slan quince
+10
+
+TV/Film: Highlander: Where can immortals never fight?
+Holy ground
+10
+
+TV/Film: Highlander: Where nationality is Juan Ramirez?
+Egyptian
+10
+
+TV/Film: highlander: who was duncan's love interest in the first season of the tv show?
+Tessa noel
+10
+
+TV/Film: His films include: Giant, Written on the Wind, and A Farewell to Arms?
+Rock Hudson
+10
+
+TV/Film: His films include: Spartacus, The Vikings, and Ulysses?
+Kirk Douglas
+10
+
+TV/Film: His last film was The Killers in 1964 before moving on to bigger things?
+Reagan
+10
+
+TV/Film: History: Because metal was scarce, the Oscars given out during World War II were made of what?
+Wood
+10
+
+TV/Film: Hogan's heroes: what was cpl. louis lebeau's nickname?
+Cockroach
+10
+
+TV/Film: horrible carradine six-part miniseries; dad made me turn off mtv to watch it?
+Shogun
+10
+
+TV/Film: Houdini was played by who in the 1953 movie about the famous magician?
+Tony Curtis
+10
+
+TV/Film: How did Doyle give Cordelia the visions?
+He kissed her
+10
+
+TV/Film: How is Jane Fonda related to Bridget Fonda?
+Aunt
+10
+
+TV/Film: How many 'Southpark' episodes have there been that Kenny didn't get killed?
+One
+10
+
+TV/Film: How many children do the Brady's have?
+Six
+10
+
+TV/Film: How many films did Elvis Presley make?
+33
+10
+
+TV/Film: How many hubcaps does Steve McQueen's car lose in the famed chase scene from Bullitt?
+Six
+10
+
+TV/Film: how many movies did humphrey bogart and lauren bacall make together?
+Four
+10
+
+TV/Film: how many movies did spencer tracy and katharine hepburn make together?
+Nine
+10
+
+TV/Film: How many of the canoeing party survived in Deliverance?
+Three
+10
+
+TV/Film: How many Oscars did the film Gigi win?
+Eight
+10
+
+TV/Film: How many stories did the towering inferno have?
+138
+10
+
+TV/Film: how many times was katharine hepburn nominated for the best actress oscar?
+Eight
+10
+
+TV/Film: How much money did the 1980 film 9 to 5 earn?
+59.1 million
+10
+
+TV/Film: How much money did the 1980 film Stir Crazy earn?
+$58.4 million
+10
+
+TV/Film: How much money did the 1980 film The Empire Strikes back earn?
+$141.6 million
+10
+
+TV/Film: How much money did the 1987 film Beverly Hills Cop 2 earn?
+$80.8 million
+10
+
+TV/Film: How much money did the 1987 film Fatal Attraction earn?
+70.0 million
+10
+
+TV/Film: How much money did the 1987 film Three Men and a Baby earn?
+$81.3 million
+10
+
+TV/Film: How old was john schneider when he first played as bo duke on the dukes of hazzard?
+18
+10
+
+TV/Film: How old was Sally Field when she starred in Gidget?
+Eighteen
+10
+
+TV/Film: How was Spielberg credited in in the 1994 movie The Flintstones?
+Steven spielrock presents
+10
+
+TV/Film: How was the virus transmitted in the movie 'Outbreak'?
+Through the air
+10
+
+TV/Film: Howdy Doody had how many freckles?
+48
+10
+
+TV/Film: Hugo Drax was the villian of which James Bond book and film?
+Moonraker
+10
+
+TV/Film: Hume Cronyn and Jessica Tandy befriend a family of tiny UFOs?
+Batteries not included
+10
+
+TV/Film: Humphrey Bogart won his only Oscar for which film?
+African queen
+10
+
+TV/Film: I CAN'T HELP MYSELF! [screaming, distraught; in German]?
+M
+10
+
+TV/Film: I love lucy: what was ricky's profession?
+Band leader
+10
+
+TV/Film: I see your schwartz is almost as big as mine?
+Spaceballs
+10
+
+TV/Film: Ian Smiths character in Neighbours?
+Harold bishop
+10
+
+TV/Film: if dad had bought stock in lucasfilm, this movie would have made us rich?
+Star wars
+10
+
+TV/Film: If norm could have any woman in the world, who would it be?
+Jill eikenberry
+10
+
+TV/Film: In 'back to the future', what kind of car did they go 'back to the future in?
+Delorean
+10
+
+TV/Film: In 'back to the future', where did doc brown get the plutonium to power the time-travelling delorean?
+Lybian terrorists
+10
+
+TV/Film: In 'citizen kane', who played kane's assistant?
+Joseph cotten
+10
+
+TV/Film: In 'Coronation Street', who is Ken and Denise's son?
+Daniel
+10
+
+TV/Film: In 'dawson's creek', who does james van der beek play?
+Dawson leary
+10
+
+TV/Film: In 'dawson's creek', who does joshua jackson play?
+Pacey witter
+10
+
+TV/Film: In 'dawson's creek', who does katie holmes play?
+Joey potter
+10
+
+TV/Film: In 'dawson's creek', who does michelle williams play?
+Jennifer lindley
+10
+
+TV/Film: In 'gilligan's island', what is the professor's name?
+Roy hinkley
+10
+
+TV/Film: In 'Shrek' who played the voice of Donkey!?
+Eddie Murphy
+10
+
+TV/Film: In 'Southpark', what is Chef obsessed with?
+Sex
+10
+
+TV/Film: In 'The Adams Family' what was the name of the hand?
+Thing
+10
+
+TV/Film: In 'The Shining' what was the child's imaginary friend's name (the one who told him things that were going to happen)?
+Tony
+10
+
+TV/Film: In 'The Wizard Of Oz', what was Dorothy's dog's name?
+Toto
+10
+
+TV/Film: In 'The Wizard Of Oz', where did Dorothy live?
+Kansas
+10
+
+TV/Film: in 'The Wizard Of Oz', which character sang 'come out, come out, wherever you are?
+Glinda
+10
+
+TV/Film: In 1933, mickey mouse, an animated cartoon character, received 800,000 of these?
+Fan letters
+10
+
+TV/Film: In 1943, who's legs were insured with Lloyd's of London for the whopping sum of $1.25 million?
+Betty grable
+10
+
+TV/Film: In 1957 which actress recorded 'Tammy' from one of her films?
+Debbie reynolds
+10
+
+TV/Film: In 1959, he played Milton Armitage on The Many Loves of Dobie Gillis?
+Warren beatty
+10
+
+TV/Film: In 1971, after 2 pilot episodes had been made, 23year old Spielberg directed the first regular installment of which Tv detective show?
+Columbo
+10
+
+TV/Film: In 1975 Jack Nicholson won the best actor Oscar for his role in this film?
+One flew over the cuckoo's nest
+10
+
+TV/Film: In 1975 Jack Nicholson won the best actor Oscar for his role in this film?
+One Flew Over the Cuckoo's Nest
+10
+
+TV/Film: In 1978 Larry Hagman appeared in which film?
+Superman
+10
+
+TV/Film: in 1979, 22-year-old mel gibson played a mildly retarded handy man in this movie?
+Tim
+10
+
+TV/Film: In 1981, who won best actress Emmy for the sitcom 'The Jeffersons'?
+Isabel sanford 
+10
+
+TV/Film: In 1981, who won best actress emmy for the tv sitcom 'the jeffersons'?
+Isabel sanford
+10
+
+TV/Film: In 1992 Daniel day lewis starred as Hawkeye in which film?
+The last of the Mohicans
+10
+
+TV/Film: In 1994 which film based on a Louisa May Alcott novel starred Winona Ryder and Susan Sarandon?
+Little women
+10
+
+TV/Film: In 1998, Kim basinger won an Oscar for which crime thriller set in Los Angeles?
+L.A Confidential
+10
+
+TV/Film: In 1999, Matt Baker joined which childrens programme as a presenter?
+Blue peter
+10
+
+TV/Film: In All Saints, what was Nurse Terri Sullivan before becoming a nurse?
+A nun
+10
+
+TV/Film: In alphabetical order (1, 2, 3, 4), what were the first names of the Monkees?
+Davy mickey mike peter
+10
+
+TV/Film: In angel Cordelia has visions, who gave them to her?
+Doyle
+10
+
+TV/Film: In Angel How did Doyle give Cordelia the visions?
+He kissed her
+10
+
+TV/Film: In Angel, he and Darla had a baby, what is that baby's name?
+Conner
+10
+
+TV/Film: In Basil, The great Mouse Detective, what kind of creature is Fidget?
+A Bat
+10
+
+TV/Film: In Beverly Hills Cop, when axel foley enters the hotel, he uses an alias. who does he say he works for, and who does he say he's going to interview?
+Rolling stone,michael jackson
+10
+
+TV/Film: In Blazing Saddles, the most common name in Rock Ridge?
+Johnson
+10
+
+TV/Film: In Brookside who was buried under the patio?
+Trevor Jordache
+10
+
+TV/Film: In buffy the vampire slayer what is dawn?
+The key
+10
+
+TV/Film: In buffy the vampire slayer what was the name of the hell god out to kill dawn?
+Glory
+10
+
+TV/Film: In casablanca who played Sam the piano player?
+Dooley Wilson
+10
+
+TV/Film: In Charlie and the Chocolate Factory what are Willy Wonka¿s little helpers called?
+Oompa Loompas
+10
+
+TV/Film: In Charlotte's Web, what type of creature is Templeton?
+A Rat
+10
+
+TV/Film: In Dad'd army what was Private Frasers day time job?
+Undertaker
+10
+
+TV/Film: In Dr Who, what was Tardis an abbreviation of?
+Time and relative dimensions in space
+10
+
+TV/Film: In Grease, what was Rizzo's real name?
+Betty
+10
+
+TV/Film: In October of 1962, Johnny Carson succeeds him on the Tonight show?
+Jack parr 
+10
+
+TV/Film: In Speed, when the bus slowed to what speed would it blow up?
+50 miles per hour
+10
+
+TV/Film: In the 'nightmare on elm street' films, who played freddy krueger?
+Robert englund
+10
+
+TV/Film: In the 1932 movie scarface, what coin did george raft flip during the film?
+Nickel
+10
+
+TV/Film: In the 1955 comedy he Ladykillers which British star played the leader of a gang of clumsy bank robbers?
+Alec Guinness
+10
+
+TV/Film: In the 1957-61 series The Army Game, who was excused from wearing boots?
+Private bootsie bisley
+10
+
+TV/Film: In the 1971 BBC tv programme The Wombles, what was the name of the cook?
+Madame cholet
+10
+
+TV/Film: In the 1986 movie Absolute Beginners, what role did David Bowie play?
+Vendice Partners
+10
+
+TV/Film: In the 1989 film When Harry Met Sally, what song did the lead characters sing on a store's karaoke machine?
+Surrey with the Fringe on Top
+10
+
+TV/Film: In the Adventures of Robin Hood which absent king does Errol Flynn fight for?
+Richard I
+10
+
+TV/Film: In the Batman tv series of the '60's, who played the villainess Marsha Queen of Diamonds?
+Carolyn jones
+10
+
+TV/Film: In the breakfast club, bender tells a joke without a punchline. what was the naked blonde carrying under her arms?
+A two foot salami and a poodle
+10
+
+TV/Film: In the breakfast club, what did brian try to kill himself with?
+A flare gun
+10
+
+TV/Film: In the cartoon 'marine boy' what was marine boy's dolphin named?
+Splasher
+10
+
+TV/Film: In the cartoon Casper, the Friendly Ghost, Casper had a horse-ghost friend named what?
+Nightmare
+10
+
+TV/Film: In the cartoon Jem and the holograms,what was the name of jems computer?
+Cinergy
+10
+
+TV/Film: In the cartoon Peanuts, Schroeder is a big fan of whose music?
+Beethoven's
+10
+
+TV/Film: In the cartoon show My Pet Monster,what were the only things that could send Beastor,Monster's enemy,back to the monster world?
+A pair of orange handcuffs
+10
+
+TV/Film: In the cartoons who was hokie wolf's sidekick?
+Dingaling
+10
+
+TV/Film: In the children's tv series 'sesame street', what two characters were roomates?
+Bert and ernie
+10
+
+TV/Film: In the children's tv series 'Sesame Street', what two characters were roomates?
+Bert and Ernie
+10
+
+TV/Film: In the classic tv show Rainbow what type of creature was George?
+Hippo
+10
+
+TV/Film: In the film '101 dalmatians', what animal is sergeant tibbs?
+Cat
+10
+
+TV/Film: In the film '16 candles', who was the object of molly ringwald's affection?
+Jake ryan
+10
+
+TV/Film: In the film 'amadeus', who did tom hulce play?
+Mozart
+10
+
+TV/Film: In the film 'amadeus', who played mozart?
+Tom hulce
+10
+
+TV/Film: In the film 'American hot wax', who did jay leno play?
+Mookie
+10
+
+TV/Film: In the film 'American Hot Wax', who did Jay Leno play?
+Mookie
+10
+
+TV/Film: In the film 'American hot wax', who played the 'mookie'?
+Jay leno
+10
+
+TV/Film: In the film 'American Hot Wax', who played the 'Mookie'?
+Jay Leno
+10
+
+TV/Film: In the film 'back to the future', what household appliance was originally considered for the time machine?
+Refrigerator
+10
+
+TV/Film: In the film 'bright eyes', about which boat did shirley temple sing?
+Lollipop
+10
+
+TV/Film: In the film 'Bright Eyes', Shirley Temple sang about this boat?
+The Good Ship Lollipop
+10
+
+TV/Film: In the film 'bullitt', what car does steve mcqueen drive?
+Ford mustang
+10
+
+TV/Film: In the film 'casablanca', what did humphrey bogart not say?
+Play it again sam
+10
+
+TV/Film: In the film 'day of the jackal', who did edward fox play?
+Jackal
+10
+
+TV/Film: In the film 'dragonheart', who did the voice of the dragon?
+Sean connery
+10
+
+TV/Film: In the film 'e.t', who did henry thomas play?
+Elliot
+10
+
+TV/Film: In the film 'fantasia', what is the sorcerer's name?
+Yensid
+10
+
+TV/Film: In the film 'fantasia', who is yensid?
+Sorcerer
+10
+
+TV/Film: In the film 'footloose', what car did kevin bacon drive?
+Vw beetle
+10
+
+TV/Film: In the film 'hackers', how old was 'zero kool' when he was first arrested?
+Eleven
+10
+
+TV/Film: In the film 'hackers', how old was 'zero_kool' when he was first arrested?
+Eleven
+10
+
+TV/Film: In the film 'hercules', whose voice is danny devito?
+Phil
+10
+
+TV/Film: In the film 'home alone', who played the baddies?
+Joe pesci and daniel stern
+10
+
+TV/Film: In the film 'Home Alone', who played the baddies?
+Joe Pesci and Daniel Stern
+10
+
+TV/Film: In the film 'jurassic park', in which comical place did someone hide when the t-rex escaped?
+Toilet
+10
+
+TV/Film: In the film 'jurassic park', what was the largest predator?
+Tyrannosaurus rex
+10
+
+TV/Film: In the film 'peter pan' who was the fairy?
+Tinkerbell
+10
+
+TV/Film: In the film 'pretty woman', for who was goldie hawn the body double?
+Julia roberts
+10
+
+TV/Film: In the film 'pulp fiction', what was the name of uma thurman's pilot character?
+Fox force five
+10
+
+TV/Film: In the film 'selena', who did jennifer lopez play?
+Selena
+10
+
+TV/Film: In the film 'Star Wars', what species is Chewbacca?
+Wookie
+10
+
+TV/Film: In the film 'The Conqueror' John Wayne plays which historical character?
+Genghis khan
+10
+
+TV/Film: In the film 'the day of the jackal', who played the jackal?
+Edward fox
+10
+
+TV/Film: In the film 'The Day Of The Jackal', who played the Jackal?
+Edward Fox
+10
+
+TV/Film: In the film 'The Hustler', who does paul newman play?
+-- Answer metadata begin
+{
+    "answers": ["Eddie Felson", "Fast Eddie Felson", "'Fast' Eddie Felson"]
+}
+-- Answer metadata end
+10
+
+TV/Film: In the film 'The Jerk', whose character was 'born a poor black child'?
+Steve Martin
+10
+
+TV/Film: In the film 'The Lovebug', what number was painted on the side of 'herbie' the VW bug?
+-- Answer metadata begin
+{
+    "answers": ["Fifty-three", "Fifty three", "53"]
+}
+-- Answer metadata end
+10
+
+TV/Film: In the film 'The Seven Year Itch', what was Marilyn Monroe standing on when her dress billowed up?
+Subway grating
+10
+
+TV/Film: In the film 'the seven year itch', whose dress billowed up while standing on a subway grating?
+Marilyn monroe
+10
+
+TV/Film: In the film 'Titanic', which characters did Leonardo DiCaprio and Kate Winslet play?
+-- Answer metadata begin
+{
+    "answers": ["Jack and Rose", "Jack, Rose", "Jack Rose"]
+}
+-- Answer metadata end
+10
+
+TV/Film: In the film 'Titanic', who played Jack and Rose?
+-- Answer metadata begin
+{
+    "answers": ["Leonardo DiCaprio and Kate Winslet", "Leonardo DiCaprio, Kate Winslet", "Leonardo DiCaprio Kate Winslet", "Leonardo DiCaprio & Kate Winslet"]
+}
+-- Answer metadata end
+10
+
+TV/Film: In the film 'Titanic', who played Jack?
+Leonardo DiCaprio
+10
+
+TV/Film: In the film Caddyshack, what was the name of Judge Smales grandson?
+Spaulding
+10
+
+TV/Film: In the film Copycat , which entertainer played serial killer Daryll Lee?
+Harry connick jnr
+10
+
+TV/Film: In the film Friday The Thirteenth, which character was the killer?
+Mrs. vorhees
+10
+
+TV/Film: In the film jerry mcguire, what was the name of jerry's stepson?
+Ray
+10
+
+TV/Film: In the film little voice who played the title characters mother?
+Brenda blethyn
+10
+
+TV/Film: In the film The Great Escape , what were 'Tom', 'Dick' and 'Harry'?
+Three escape tunnels
+10
+
+TV/Film: In the film trading places, who played the part of the prostitute?
+Jamie lee curtis
+10
+
+TV/Film: In the film version of willy russell's play, who played shirley valentine?
+Pauline collins
+10
+
+TV/Film: In the first part of 'Hard To Kill', what did Steven Seagal use to kill the mobster?
+Credit card
+10
+
+TV/Film: In the first scream, what was stu's motive for the killings?
+Peer pressure 
+10
+
+TV/Film: In the Flintstones what is the name of the company that employs Fred?
+The bedrock construction company
+10
+
+TV/Film: In the German episode of Fawlty Towers Sybil was in hospital for which operation?
+Ingrown toenail
+10
+
+TV/Film: In the godfather, who played the role of mo green?
+Alex rocco
+10
+
+TV/Film: In the Hollywood classic 'The Greatest Show on Earth', who played 'Buttons' the clown?
+James stewart
+10
+
+TV/Film: In the Lone Ranger, what was the name of Tonto's horse?
+Scout
+10
+
+TV/Film: In the Mel Brooks film Silent Movie , who was the only person with a speaking part?
+Marcel marceau
+10
+
+TV/Film: In the monty python parody 'search for the holy grail', what did arthur's servant use to make the sound of horses hooves?
+Empty coconuts
+10
+
+TV/Film: In the monty python parody 'search for the holy grail', what did patsy say when they reached camelot?
+It's only a model
+10
+
+TV/Film: In the monty python parody 'search for the holy grail', what was arthur's trusty servant's name?
+Patsy
+10
+
+TV/Film: In the monty python parody 'search for the holy grail', what was the first thing the keeper of the bridge of death asked?
+What is your name
+10
+
+TV/Film: In the monty python parody 'search for the holy grail', what was the name of the enchanter?
+Tim
+10
+
+TV/Film: In the monty python parody 'search for the holy grail', what was used to kill the rabbit?
+Holy hand grenade of antioch
+10
+
+TV/Film: In the Mother Goose Goes Hollywood cartoon, released in 1938, what famous actress was caricaturized as Little Bo-Peep?
+Katherine Hepburn
+10
+
+TV/Film: In the movie 'aliens', what was newt's real name?
+Rebecca jorden
+10
+
+TV/Film: In the movie 'braveheart', what character did mel gibson play?
+William wallace
+10
+
+TV/Film: In the movie 'Casablanca', what character did Humphrey Bogart play?
+Rick Blaine
+10
+
+TV/Film: In the movie 'happy gilmore', who is bob barker's partner?
+Happy
+10
+
+TV/Film: In the movie 'happy gilmore', who is happy's partner?
+Bob barker
+10
+
+TV/Film: In the movie 'shaft', what was shaft's first name?
+John
+10
+
+TV/Film: In the movie 'spaceballs', what character did joan rivers play?
+Dot matrix
+10
+
+TV/Film: In the movie 'Spaceballs', what character did Rick Moranis play?
+Dark helmet
+10
+
+TV/Film: In the movie 'the blues brothers', what did elwood trade the original bluesmobile for?
+Microphone
+10
+
+TV/Film: In the movie Abyss, a fictional Petroleum company was created. This company name was later used again on the oil tanker in 'Terminator 2' and again in th?
+Benthic petroleum
+10
+
+TV/Film: In the movie Cloverfield, what city gets trashed?
+New York
+10
+
+TV/Film: In the Movie E.T., E.T. eats what kind of candy?
+Reese's pieces
+10
+
+TV/Film: In the movie In the Name of The Father what was the Father's Name?
+Guiseppe Conlon
+10
+
+TV/Film: In the movie little orphan Annie, who is Annie's rich benefactor?
+Warbucks
+10
+
+TV/Film: In the movie Moby Dick, what is the name of Gregory Peck's ship?
+The Pequod
+10
+
+TV/Film: In the movie next friday what is the name of the vicious dog?
+Chico
+10
+
+TV/Film: In the movie office space, what item did Peter pull from the rubble?
+A red stapler
+10
+
+TV/Film: In the movie porkey's, why did they call meat tuperello 'meat'?
+Because of the size of his penis
+10
+
+TV/Film: In the movie Sea of Love, Ellen Barkin played together with?
+Al Pacino
+10
+
+TV/Film: In the movie Snow White, what instrument did Sneezy play?
+Accordian
+10
+
+TV/Film: In the movie The Green Mile, what was the name of the prison mouse?
+Mr. Jingles
+10
+
+TV/Film: In the movie tommy boy, who played richard?
+David spade
+10
+
+TV/Film: In the movie Troy, what character was Brad Pitt play?
+Achilles
+10
+
+TV/Film: In the original version of the fly what was the fly saying as the movie ended?
+Help me
+10
+
+TV/Film: In the pink panther films what is inspector clouseau's first name?
+Jaques
+10
+
+TV/Film: In the Revenge who played the woman Tom Cochran and Tiburon Mendez fought over?
+Madeleine Stowe
+10
+
+TV/Film: In The Searchers, John Wayne searches for this actress?
+Natalie Wood
+10
+
+TV/Film: In the series 'Happy Days', what was the Fonz's full name?
+Arthur Fonzarelli
+10
+
+TV/Film: In the series 'The Dukes Of Hazard', what was painted on the top of their car?
+Confederate flag 
+10
+
+TV/Film: In the series Edward and Mrs Simpson who played Edward?
+Edward Fox
+10
+
+TV/Film: In the series gentle ben, what was the name of ben's young companion?
+Mark wedloe 
+10
+
+TV/Film: In the soapie 'One Life To Live' who was Vicky's alter ego?
+Nicky
+10
+
+TV/Film: In the television series Batman, who played the part of the siren?
+Joan Collins
+10
+
+TV/Film: In the theme song from 'The Flintstones', what is the line after 'Let's ride with the family down the street'?
+Through the courtesy of fred's two feet
+10
+
+TV/Film: In the TV series 'Seinfeld', who does Michael Richards play?
+Kramer
+10
+
+TV/Film: In the TV series 'Seinfeld', who played Kramer?
+Michael Richards
+10
+
+TV/Film: In the tv series 'the brady bunch', what was cindy's toy doll's name?
+Kitty carrie all
+10
+
+TV/Film: In the TV series 'The Fall Guy', who did Lee Majors play?
+Colt Seavers
+10
+
+TV/Film: In the TV series 'The Fall Guy', who played Colt Seavers?
+Lee Majors
+10
+
+TV/Film: In the tv series ally mcbeal, what is the dancing baby more popularly called?
+Ugachaka
+10
+
+TV/Film: In the TV Series Skippy, What was Skippy?
+-- Answer metadata begin
+{
+    "answers": ["Kangaroo", "A kangaroo"]
+}
+-- Answer metadata end
+10
+
+TV/Film: In the tv show 'voyage to the bottom of the sea', what was the name of the atomic submarine?
+Seaview
+10
+
+TV/Film: In the TV sitcom 'Married With Children', what is the dog's name?
+Buck
+10
+
+TV/Film: in the two jakes, he plays the part of jake gittes?
+Jack Nicholson
+10
+
+TV/Film: In this 1968 film the husband of an unsuspecting young wife becomes involved with a witch's coven?
+Rosemary's baby
+10
+
+TV/Film: In this 1968 film the husband of an unsuspecting young wife becomes involved with a witch's coven?
+Rosemary's Baby
+10
+
+TV/Film: With which 1990s movie you would associate the song 'Unchained Melody'?
+Ghost
+10
+
+TV/Film: In this series Christopher Connely and Jodie Foster played father and daughter?
+Paper moon
+10
+
+TV/Film: In what 1967 film did Gene Hackman earn his first Oscar nomination?
+Bonnie & Clyde
+10
+
+TV/Film: In what 1990 film did Jeremy Irons play Klaus von Burlow?
+Reversal of Fortune
+10
+
+TV/Film: In what 1990 movie did Tom Cochran try to 'get even' with Tiburon Mendez?
+Revenge
+10
+
+TV/Film: In what city did i love lucy originally take place?
+New york 
+10
+
+TV/Film: In what did someone squish her hands to make the sound of e.t walking?
+Jelly
+10
+
+TV/Film: In what epic film did Charles Laughton play Quasimodo?
+The hunchback of notre dame
+10
+
+TV/Film: In what film did john wayne co star with lauren bacall?
+Blood alley
+10
+
+TV/Film: In what film did Rick Moranis make his big screen debut?
+Strange brew
+10
+
+TV/Film: In what film did Whoopi Goldberg make her screen debut?
+The Color Purple
+10
+
+TV/Film: In what film were audiences treated to a flushing toilet for the first time?
+Psycho
+10
+
+TV/Film: In what movie did Robert Vaughan, Richard Chamberlain and Robert Wagner all die?
+The Towering Inferno
+10
+
+TV/Film: In what movie did we hear two characters say the following 'my teacher tells me beauty is on the inside. That's just something ugly people say.'?
+Liar liar
+10
+
+TV/Film: In what movie did we hear, 'carpe, carpe diem! Seize the day, boys! Make your lives extraordinary'?
+Dead poets society
+10
+
+TV/Film: In what movie do all cosmonauts watch before they go into space?
+White sun of the desert
+10
+
+TV/Film: In what movie does actor Robert De Niro play a character called Travis Bickle?
+Taxi Driver
+10
+
+TV/Film: In what movie does john travolta play an angel?
+Michael
+10
+
+TV/Film: In what movie was Holly Hunter in love with a musical instrument?
+The piano
+10
+
+TV/Film: In what town did mary hartman take place?
+Fernwood
+10
+
+TV/Film: In what town did warren beatty work in shampoo?
+Beverly Hills
+10
+
+TV/Film: In what tv game show did contestants have to predict if a card was higher or lower than the next one?
+Card sharks
+10
+
+TV/Film: In what tv series did henry winkler play arthur fonzarelli?
+Happy days
+10
+
+TV/Film: In what year was Frank Sinatra born?
+1915
+10
+
+TV/Film: In what year was the bar in Cheers established?
+1895
+10
+
+TV/Film: In which 1988 Oscar winning film did Dustin Hoffman play the autistic Raymond Babbitt opposite Tom Cruise?
+Rain man
+10
+
+TV/Film: In which 1996 movie did michael keaton clone himself?
+Multiplicity
+10
+
+TV/Film: In which 1998 film does the lead character initially write a play entitled Romeo and Ethel the pirates daughter?
+Shakespeare in love
+10
+
+TV/Film: in which 1999 film set in a manhattan prep-school starred reese witherspoon and sarah michelle gellar?
+Cruel intentions
+10
+
+TV/Film: In which 80s tv show did William Shatner play a police officer?
+T J Hooker
+10
+
+TV/Film: in which bbc1 drama series did lenny henry star as headmaster ian george?
+Hope & glory
+10
+
+TV/Film: In Which Bond movie did Rowan Atkinson make an appearance as Nigel Small-Fawcett?
+Never say never again
+10
+
+TV/Film: In which city was the tv detective show 'taggart' set?
+Glasgow
+10
+
+TV/Film: In which club did Arthur and Terry drink in the Tv series Minder?
+The Winchester
+10
+
+TV/Film: In which comedy series did Ballard Berkeley play Major Gowen?
+Fawlty Towers
+10
+
+TV/Film: In which country was Arnold Schwarzenegger born?
+Austria
+10
+
+TV/Film: In which film based on a cartoon character did Madonna co star with Warren Beatty?
+Dick tracy
+10
+
+TV/Film: In which film did Bill Murray drive an ectomobile?
+Ghostbusters
+10
+
+TV/Film: In which film did Bob Hoskins play a black prostitutes minder?
+Mona Lisa
+10
+
+TV/Film: In which film did Elvis Presley play an indian?
+Stay away joe
+10
+
+TV/Film: In which film did Harrison Ford come form the future to destroy android Rutger Hauer?
+Blade runner
+10
+
+TV/Film: In which film did Henry Fonda play a fallen priest?
+The Fugitive
+10
+
+TV/Film: In which film did Jay Leno play 'Mookie'?
+American Hot Wax
+10
+
+TV/Film: In which film did Jose Ferrer star as Alfred Dreyfus?
+J'accuse
+10
+
+TV/Film: In which film did Michael Caine use his famous catchphrase Not a lot of people know that?
+Educating rita
+10
+
+TV/Film: In which film did Paul Newman and Robert Redford hold hands and jump into a river?
+Butch Cassidy and the Sundance Kid
+10
+
+TV/Film: In which film did POWs use a avulting horse to disguise the digging of an escape tunnel?
+The Wooden horse
+10
+
+TV/Film: In which film did Val Kilmer play the rock star Jim Morrison?
+The doors
+10
+
+TV/Film: In which film does Oddjob appear?
+Goldfinger
+10
+
+TV/Film: In which film does the character ben braddock appear?
+The graduate
+10
+
+TV/Film: In which film was Dustin Hoffman 121 years old?
+Little big man
+10
+
+TV/Film: In which film was Goldie Hawn the body double for Julia Roberts?
+Pretty Woman
+10
+
+TV/Film: In which hospital does Charlie Fairhead work?
+Holby general
+10
+
+TV/Film: In which James Bond film does the villain cheat at golf?
+Goldfinger
+10
+
+TV/Film: In which movie did Eric Idle & Robbie Coltrane dress as women?
+Nuns on the run
+10
+
+TV/Film: In which movie did Sharon Stone famously uncross her legs?
+Basic Instinct
+10
+
+TV/Film: In which puppet series did Spotty the dog appear?
+The woodentops
+10
+
+TV/Film: In which series did a character called seymour Atterthwaite appear for one series?
+Last of the summer wine
+10
+
+TV/Film: In which series did Donna Reed step into Barbara Bel Geddes shoes?
+Dallas
+10
+
+TV/Film: In which series did Shirley Jones play David Cassidys mother before becoming his real step mother?
+The partridge family
+10
+
+TV/Film: In which series does Robbie Coltrane play a psychologist named Fitz?
+Cracker
+10
+
+TV/Film: In which series would you find Bella, Milo,Fizz and Jake?
+Tweenies
+10
+
+TV/Film: In which Tv series did Jimmy Nail play a geordie detective?
+Spender
+10
+
+TV/Film: In which Tv series did Richard Chamberlain play an Australian priest?
+The Thorn Birds
+10
+
+TV/Film: In which TV time travle series does Scott Bakula play the lead?
+Quantum leap
+10
+
+TV/Film: in which village does postman pat live?
+Greendale
+10
+
+TV/Film: In which year did James Dean die?
+1955
+10
+
+TV/Film: In Who framed Roger Rabbit what was Rogers wife called?
+Jessica
+10
+
+TV/Film: Independent Films: 1989 black comedy starring Winona Ryder and featuring Shannen Doherty?
+Heathers
+10
+
+TV/Film: Independent Films: 1996 film based on a Vonnegut novel about an American spy in Nazi Germany?
+Mother night
+10
+
+TV/Film: Independent Films: 1996 Steve Buscemi film about suburban losers & their neighborhood bar?
+Trees lounge
+10
+
+TV/Film: Independent Films: David Lynch's 1976 film filled with bizarre ideas and nightmare imagery?
+Eraserhead
+10
+
+TV/Film: Independent Films: Incredibly overweight Ricki Lake starred in this 1988 John Waters film?
+Hairspray
+10
+
+TV/Film: Independent Films: Infamous $7,000 film the director financed as a medical guinea pig?
+El mariachi
+10
+
+TV/Film: Independent Films: Mark Wahlberg allegedly wore a prosthetic device in this 1997 film?
+Boogie nights
+10
+
+TV/Film: Independent Films: Matthew Broderick played physicist Richard Feynman in this 1996 love story?
+Infinity
+10
+
+TV/Film: Independent Films: Nathan Arizona Jr. was a central character in which 1987 indie hit?
+Raising arizona
+10
+
+TV/Film: Independent Films: Spike Lee's breakthrough 1986 low-budget sex comedy?
+Shes gotta have it
+10
+
+TV/Film: Independent Films: Struggling actors cruise L.A.'s hip neo-lounge scene in this 1996 film?
+Swingers
+10
+
+TV/Film: Independent Films: Woody Harrelson and Marisa Tomei star in this acclaimed 1997 war drama?
+Welcome to Sarajevo
+10
+
+TV/Film: Indiana Jones: how many shankara stones did indy deliver?
+One
+10
+
+TV/Film: Indiana Jones: how was the monkey killed?
+Poisoned date
+10
+
+TV/Film: Indiana Jones: In Latin, what letter does Jehova start with?
+I
+10
+
+TV/Film: Indiana Jones: In the Temple of Doom, what bodily fluid is Indy forced to drink?
+Blood
+10
+
+TV/Film: Indiana Jones: In what type of institution does Marcus Brody work?
+Museum
+10
+
+TV/Film: Indiana Jones: in whose sleeve did indy find the ace?
+Shorty
+10
+
+TV/Film: Indiana Jones: Name the first challenge?
+Breath of god
+10
+
+TV/Film: Indiana Jones: Name the first Indiana Jones movie?
+Raiders of the lost ark
+10
+
+TV/Film: Indiana Jones: name the second challenge?
+Word of god
+10
+
+TV/Film: Indiana Jones: Name the third Indiana Jones movie (full name; six words)?
+Indiana jones and the last crusade
+10
+
+TV/Film: Indiana Jones: What actor portrays the adult Indiana Jones?
+Harrison ford
+10
+
+TV/Film: Indiana Jones: What animal is Indy's father terrified of?
+Rat
+10
+
+TV/Film: Indiana Jones: what country did the plane crash in, in temple of doom?
+India
+10
+
+TV/Film: Indiana Jones: what creature did Indy's father fear?
+Rats
+10
+
+TV/Film: Indiana Jones: what did indy and his father use to drive to Berlin in?
+Motorcycle
+10
+
+TV/Film: Indiana Jones: what does indy fear/hate?
+Snakes
+10
+
+TV/Film: Indiana Jones: What does the penitent man do in the presence of God?
+Kneel
+10
+
+TV/Film: Indiana Jones: What hand-to-hand weapon does Indy commonly employ?
+Whip
+10
+
+TV/Film: Indiana Jones: What kind of scientist is Indiana Jones?
+Archaeologist
+10
+
+TV/Film: Indiana Jones: What nationality was rival archaeologist Rene Belloq?
+French
+10
+
+TV/Film: Indiana Jones: What organ does Mola Ram remove from his victims?
+Heart
+10
+
+TV/Film: Indiana Jones: What possession does Indy never quite lose?
+Hat
+10
+
+TV/Film: Indiana Jones: What relic was Indy's father obsessed with finding?
+The holy grail
+10
+
+TV/Film: Indiana Jones: what state was indy raised in?
+Utah
+10
+
+TV/Film: Indiana Jones: What was the name of Indy's dog from childhood?
+Indiana
+10
+
+TV/Film: Indiana Jones: What was the name of the nightclub in the second film (Star Wars character)?
+Club obi wan
+10
+
+TV/Film: Indiana Jones: What woman conspires with Nazis to steal the grail diary (first name only)?
+Elsa
+10
+
+TV/Film: Indiana Jones: What woman conspires with Nazis to steal the grail diary? (first name only)?
+Elsa
+10
+
+TV/Film: Indiana Jones: what's indy's weapon of choice?
+Bullwhip
+10
+
+TV/Film: Indiana Jones: who did indy find at the castle?
+His father
+10
+
+TV/Film: Indiana Jones: who do the people worship in Temple of Doom?
+Kahlimar 
+10
+
+TV/Film: Indiana Jones: who helped donovan pick out the grail?
+Elsa snyder
+10
+
+TV/Film: Indiana jones: who produced the indiana jones series?
+George lucas
+10
+
+TV/Film: Indiana Jones: who shot down indy and his father?
+Indy's father
+10
+
+TV/Film: Indiana Jones: Who was Indy's diminutive sidekick in the second film (two words)?
+Short round
+10
+
+TV/Film: Indiana Jones: who was known to get lost in his own museum?
+Marcus brody
+10
+
+TV/Film: Ingrid Bergman first won co-starring with Charles Boyer in what?
+Gaslight
+10
+
+TV/Film: Inspector Morses sidekick, who played him?
+Kevin Whately
+10
+
+TV/Film: Italian movie star that made Life's cover six times?
+Sophia loren
+10
+
+TV/Film: Italian stage and film director whose wroks include a 1968 film version of Romeo and Juliet?
+Franco zeffirelli
+10
+
+TV/Film: Its common knowledge that crystal gayle & loretta lynn are sisters, but can you name their other singing sister?
+Peggy sue
+10
+
+TV/Film: ITVs old teletext service?
+Oracle
+10
+
+TV/Film: Jack Lemmon's portrayal of businessman Harry Stoner in ____ wins him an oscar?
+Save the tiger
+10
+
+TV/Film: James Bond: Actress who played May Day in A View to a Kill?
+Grace jones
+10
+
+TV/Film: James Bond: Bond plays this game with Kamal Khan in Octopussy?
+Backgammon
+10
+
+TV/Film: James Bond: Goldfinger's first name was ____?
+Auric
+10
+
+TV/Film: James Bond: He played James Bond in only one film?
+George lazenby
+10
+
+TV/Film: James Bond: He was the author of the original Bond books?
+Ian fleming
+10
+
+TV/Film: James Bond: His contract called for an unlimited number of hand rolled cigars?
+Roger moore
+10
+
+TV/Film: James Bond: How does James Bond prefer his martinis?
+Shaken not stirred
+10
+
+TV/Film: James Bond: How many james bond movies did sean connery star in?
+Seven
+10
+
+TV/Film: James Bond: In Ian Fleming's James Bond series, what does the 00 in 007 stand for?
+License to kill
+10
+
+TV/Film: James Bond: In the james bond film dr no, what was the name of the character played by ursula andress?
+Honey ryder
+10
+
+TV/Film: James Bond: James Bond's wife dies in this film?
+On her majesty's secret service
+10
+
+TV/Film: James Bond: Letter name for James Bond's superior?
+M
+10
+
+TV/Film: James Bond: Music: Carly simon sang the theme song to which james bond film?
+The spy who loved me
+10
+
+TV/Film: James Bond: Name roger moores first james bond movie?
+Live and let die
+10
+
+TV/Film: James Bond: Roger Moore's first appearance as James Bond was in which film?
+Live and let die
+10
+
+TV/Film: James Bond: The code-name of 007's boss?
+M
+10
+
+TV/Film: James Bond: The first Bond girl was who?
+Ursula Andress
+10
+
+TV/Film: James Bond: The main villian in A View to a Kill?
+Max zorin
+10
+
+TV/Film: James Bond: The secretary?
+Moneypenny
+10
+
+TV/Film: James Bond: The usual cover for Bond's organization is this type of company?
+Importers
+10
+
+TV/Film: James Bond: This group sang the title song for A View to a Kill?
+Duran duran
+10
+
+TV/Film: James Bond: This was the top grossing film in the US and UK in 1966?
+Thunderball
+10
+
+TV/Film: James Bond: what james bond film used the space shuttle?
+Moonraker
+10
+
+TV/Film: James Bond: what kind of school did pussy galore run?
+A flying school
+10
+
+TV/Film: James Bond: what was the name of the seventh james bond film?
+Diamonds are forever
+10
+
+TV/Film: James Bond: what was the second james bond film that jaws appeared in?
+Moonraker
+10
+
+TV/Film: James Bond: who most often played james bond's chief, m?
+Bernard lee
+10
+
+TV/Film: James Bond: who played the first james bond on television?
+Barry nelson
+10
+
+TV/Film: James Bond: who was the only leading lady to play two different bond characters?
+Maud adams
+10
+
+TV/Film: James Bond: Who will star as James Bond in the next 007 movie (1994)?
+Pierce brosnan
+10
+
+TV/Film: Jane Wyman had no speaking role, but lots of acting, in this movie?
+Johnny belinda
+10
+
+TV/Film: Jean-Claude travels to the past?
+Time cop
+10
+
+TV/Film: Jimmy Stewart had an invisible friend by this name?
+Harvey
+10
+
+TV/Film: Jimmy stewart is driven by revenge in the movie ____?
+Man who shot liberty valence
+10
+
+TV/Film: Joan Collins' 1979 followup to The Stud?
+The bitch
+10
+
+TV/Film: John Boy was a character in this series?
+The waltons
+10
+
+TV/Film: John Denver & George Burns appeared together in what 1977 film?
+Oh god!
+10
+
+TV/Film: John Huston directed Katherine Hepburn and Humphrey Bogart in...?
+The african queen
+10
+
+TV/Film: John larroquette was the narrator of which gruesome film?
+Texas chainsaw massacre
+10
+
+TV/Film: John Singleton hit it big in 1991 with this ghetto tale (spelling...)?
+Boyz n the hood
+10
+
+TV/Film: John Travolta is a sound FX man who discovers a murder?
+Blow out
+10
+
+TV/Film: John Wayne leads Filipino guerillas to victory in the South Pacific (1945)?
+Back to bataan
+10
+
+TV/Film: John Williams composed the music for over 10 of this director's films?
+Steven spielberg
+10
+
+TV/Film: Johnny Cash recorded albums at Folsom & this other California prison?
+San quentin
+10
+
+TV/Film: Joseph Ninian Yule played andy Hardy but we know him by this name?
+Mickey rooney
+10
+
+TV/Film: Juliette Binoche won an academy award for best supporting role in which film?
+English Patient
+10
+
+TV/Film: Jupiter ii was the name of the robinson's spaceship on what series?
+Lost in space
+10
+
+TV/Film: Katey segal plays the part of peggy in this tv show?
+Married with children
+10
+
+TV/Film: Katharine hepburn & humphrey bogart played in what classic 1951 movie?
+African queen 
+10
+
+TV/Film: Katherine Hepburn was a socialite flirting with reporter Jimmy Stewart?
+The philadelphia story
+10
+
+TV/Film: Katherine Hepburn/Spencer Tracy movie featuring a computer named Emerac?
+Desk set
+10
+
+TV/Film: Kathleen Turner's first film was this Kasdan steamer?
+Body heat
+10
+
+TV/Film: Kazantzakis novel which became an Oscar-winning film in 1964?
+Zorba the greek
+10
+
+TV/Film: Kelsey Grammer sings and plays the theme song for which TV show?
+Frasier
+10
+
+TV/Film: Kermit the frog is ____ ____?
+Left handed
+10
+
+TV/Film: Kevin Costner plays a catcher in this first-rate baseball comedy?
+Bull durham
+10
+
+TV/Film: Kevin Costner teaches Tim Robbins how to pitch for the Bulls?
+Bull durham
+10
+
+TV/Film: Kevin Spacey was the voice in which 1998 Disney film?
+A bug's life
+10
+
+TV/Film: Kirk Douglas and George C. Scott have bothed played this man to distinction?
+George s patton jr
+10
+
+TV/Film: Kriss Kristofferson and Barbra Streisand starred in the re-make of which film?
+A star is born
+10
+
+TV/Film: Kristy Swanson, Don Sutherland, & Luke Perry slay the Undead?
+Buffy the vampire slayer
+10
+
+TV/Film: Kulture: Film in which Divine consumes a fresh dog turd?
+Pink flamingos
+10
+
+TV/Film: Kurt Russell battles Mortal Kombat type foes in Chinatown?
+Big trouble in little china
+10
+
+TV/Film: L'il Abner's last name?
+Yokum
+10
+
+TV/Film: Largest grossing film of 1993?
+Jurassic park
+10
+
+TV/Film: Last Names: A-Team/B.A...?
+Baracus
+10
+
+TV/Film: Last Names: Amen/The Deacon and Thelma...?
+Frye
+10
+
+TV/Film: Last Names: beverly hills 90210/brandon and brenda...?
+Walsh
+10
+
+TV/Film: Last Names: coach/luther...?
+Van dam
+10
+
+TV/Film: Last Names: Diff'rent Strokes/Arnold...?
+Jackson
+10
+
+TV/Film: Last Names: er/dr. doug...?
+Ross
+10
+
+TV/Film: Last Names: family matters/carl and harriet...?
+Winslow
+10
+
+TV/Film: Last Names: frasier/frasier...?
+Crane
+10
+
+TV/Film: Last Names: Friends/Monica and Ross...?
+Geller
+10
+
+TV/Film: Last Names: Growing Pains/The family's last name...?
+Seavers
+10
+
+TV/Film: Last Names: Mr. Belvidere/The family's last name...?
+Owens
+10
+
+TV/Film: Last Names: Seinfeld/Elaine...?
+Benes
+10
+
+TV/Film: Late babe Audrey Hepburn won in 1953 for what romantic movie?
+Roman holiday
+10
+
+TV/Film: Letterman: According to Dave,not a man,woman,or child doesn't enjoy a cool refreshing ____?
+Beverage
+10
+
+TV/Film: Letterman: Dangerous property of the steam rising from NYC streets?
+Radioactive
+10
+
+TV/Film: Letterman: Dave did this comedy bit every Friday on the NBC show?
+Viewer mail
+10
+
+TV/Film: Letterman: Dave made his movie debut in this flick?
+Cabin boy
+10
+
+TV/Film: Letterman: Dave resides in this state?
+Connecticut
+10
+
+TV/Film: Letterman: Dave's NBC studio was in this building?
+Rockefeller center
+10
+
+TV/Film: Letterman: Guests often complain about the ____ of the Ed Sullivan Theater?
+Temperature
+10
+
+TV/Film: Letterman: He was Dave's first guest (on both shows)?
+Bill murray
+10
+
+TV/Film: Letterman: Singer who cussed Dave out and left him stunned?
+Madonna
+10
+
+TV/Film: Line from which movie - 'Just when you thought it was safe to go back in the water'?
+Jaws 2
+10
+
+TV/Film: Lisa kudrow plays which character in the television series friends?
+Phoebe
+10
+
+TV/Film: Lisa Loopner and Todd DiLaMuca are this?
+Nerds
+10
+
+TV/Film: List actresses who starred in Steel Magnolias?
+Sally Field
+10
+
+TV/Film: List movies with dogs in major roles?
+Cujo
+10
+
+TV/Film: Literature: Author: Who created Elmer Gantry?
+Sinclair lewis
+10
+
+TV/Film: Literature: Clive Barker: By what nickname is John Furie Zacharias better known as (Imajica)?
+Gentle
+10
+
+TV/Film: Literature: Clive Barker: One of the stories from The Inhuman Conditions details a revolution of what?
+Hands
+10
+
+TV/Film: Literature: Clive Barker: Who kills Fletcher (Who fired the gun) (The Great & Secret Show)?
+Tesla bombeck
+10
+
+TV/Film: Literature: Clive Barker: Who was the Maestro in the fourth dominion during the reconstruction (Imajica)?
+Tick raw
+10
+
+TV/Film: Literature: What 1938 film is based on a 1937 short story in Colliers magazine titled Stage To Lordsburg?
+Stagecoach
+10
+
+TV/Film: Literature: What 1979 film used Joseph Conrad's Heart of Darkness as a plot basis?
+Apocalypse Now
+10
+
+TV/Film: Literature: Written by Richard Ford, and made into a box office smash at the cinema, which book won the 1996 Pulitzer Prize for Fiction?
+Independence day
+10
+
+TV/Film: Longtime companions loni anderson & burt reynolds marry in ____?
+Florida
+10
+
+TV/Film: madonna and eurythmics share this song title, also a 1987 movie madonna was in?
+Whos that girl
+10
+
+TV/Film: Madonna and sean Penn starred together in this 1987 film?
+Shanghai surprise
+10
+
+TV/Film: Male Sex Symbols, old & new?
+Brad Pitt
+10
+
+TV/Film: Male Sex Symbols, old & new?
+Brad Pitt
+10
+
+TV/Film: Marshall Dillion's wanna be girlfriend was named what?
+Miss kitty
+10
+
+TV/Film: Marx Brothers: Chico and Harpo are spies Chicolini and Pinkie in this movie?
+Duck soup
+10
+
+TV/Film: Marx Brothers: Either you are dead or my watch has stopped?
+A day at the races
+10
+
+TV/Film: Marx Brothers: Groucho: One morning I shot an elephant in my pajamas?
+Animal crackers
+10
+
+TV/Film: Marx Brothers: He was the oldest of the brothers?
+Chico
+10
+
+TV/Film: Marx Brothers: I am sure the familiar strains of Verdi's music will come back to you...?
+A night at the opera
+10
+
+TV/Film: Marx Brothers: In this movie Chico is a tooty-fruity selling tout?
+A day at the races
+10
+
+TV/Film: Marx Brothers: In this movie Groucho is a business manager to Mrs Claypool?
+A night at the opera
+10
+
+TV/Film: Marx Brothers: Say,if you get near a song , play it?
+Animal crackers
+10
+
+TV/Film: Marx Brothers: The first part of the party of the first part ... the second part...?
+A night at the opera
+10
+
+TV/Film: Marx Brothers: The last appearance of the Marx brothers together was in this TV curio?
+The incredible jewel robbery
+10
+
+TV/Film: Marx Brothers: The last film together of the brothers?
+Love happy
+10
+
+TV/Film: Marx Brothers: The name of the character played by Groucho in 'A Day at the races'?
+Dr hackenbush
+10
+
+TV/Film: Marx Brothers: This movie contains their celebrated state room scene aboard an ocean liner?
+A night at the opera
+10
+
+TV/Film: Marx Brothers: Whatever it is I am against it?
+Horsefeathers
+10
+
+TV/Film: Mary Tyler Moore played Annie Block on this show?
+Annie maguire
+10
+
+TV/Film: MASH: Colonel Blake is from this state?
+Illinois
+10
+
+TV/Film: MASH: Colonel Potter loves to ride this animal, even in Korea?
+Horse
+10
+
+TV/Film: MASH: Colonel Potter paints him throwing a discus?
+Klinger
+10
+
+TV/Film: MASH: His favorite drink is a grape ne-hy?
+Radar
+10
+
+TV/Film: MASH: In the movie, TV/Film: Who played Radar?
+Gary burghoff
+10
+
+TV/Film: mash: klinger wears dresses to earn himself one of these?
+Section 8
+10
+
+TV/Film: MASH: To avoid detection, this agent would discretely jump through windows?
+Flagg
+10
+
+TV/Film: MASH: Trapper John and Hawkeye build one of these in their tent?
+Still
+10
+
+TV/Film: MASH: TV/Film: Who played Hawkeye Pierce?
+Alan alda
+10
+
+TV/Film: MASH: What city does Winchester hail from?
+Boston
+10
+
+TV/Film: MASH: What does O.R. stand for?
+Operating room
+10
+
+TV/Film: MASH: What is B.J. Honeycutt's Wife's name?
+Peg
+10
+
+TV/Film: MASH: What is Klinger court-martialed for?
+Theft
+10
+
+TV/Film: MASH: What is the name of Radar's contact in Eye Corps?
+Sparky
+10
+
+TV/Film: mash: what was the name of the final episode?
+Goodbye farewell and amen
+10
+
+TV/Film: mash: which character walked through a mine field to rescue a lost child?
+John
+10
+
+TV/Film: MASH: Which character writes home often to his father in Maine?
+Hawkeye pierce
+10
+
+TV/Film: MASH: Which future star played a soldier diagnosed with leukemia?
+Patrick swayze
+10
+
+TV/Film: MASH: Who directed the final episode?
+Alan alda
+10
+
+TV/Film: MASH: William O'Reilly earns the name Radar by his ability to hear these transports?
+Helicopters
+10
+
+TV/Film: McHale's rank in McHale's Navy?
+Lieutenant commander
+10
+
+TV/Film: Meg Ryan switches bodies with Sydney Walker?
+Prelude to a kiss
+10
+
+TV/Film: Mel Blanc (the voice of Bugs Bunny) was allergic to ____?
+Carrots
+10
+
+TV/Film: Mel gibson and danny glover appear in which series of films?
+Lethal weapon
+10
+
+TV/Film: Mel Gibson patrols the roadways of near-future Australia (first in a series)?
+Mad max
+10
+
+TV/Film: Mel gibson starred in the film version of which play?
+Hamlet
+10
+
+TV/Film: Memorable movies of the late Sir Richard Harris (1930 - 2002)?
+Harry potter and the sorceror's stone
+10
+
+TV/Film: Men in black was responsible for doubling sales of what?
+Ray ban sunglasses
+10
+
+TV/Film: Metal mesh screens, or ____ are used to cut the intensity of a light source?
+Scrims
+10
+
+TV/Film: mgm is an acronym for this?
+Metro goldwyn mayer
+10
+
+TV/Film: Michael Caine starred as Carter in the film Get Carter. Who played Carter in this year's remake?
+Sylvester stallone
+10
+
+TV/Film: Middle child of Bonanza?
+Hoss
+10
+
+TV/Film: Middle name of charlie chaplin?
+Spencer
+10
+
+TV/Film: Miss Moneypenny adores this figure?
+James bond
+10
+
+TV/Film: Monty Python: How many questions must one answer?
+3
+10
+
+TV/Film: Monty Python: In the architects sketch, what did John Cleese's character propose instead of a block of flats?
+A slaughterhouse
+10
+
+TV/Film: Monty Python: In the sketch involving Whistler,Wilde,Shaw and His Majesty who played Oscar Wilde?
+Graham chapman
+10
+
+TV/Film: Monty Python: Lancelot's servant?
+Concord
+10
+
+TV/Film: Monty Python: Name of the kid who falls out of window?
+Herbert
+10
+
+TV/Film: Monty Python: One must cut down the mightiest tree with this?
+Herring
+10
+
+TV/Film: Monty Python: Sacrifice this to the Knights of Nee?
+Shrubbery
+10
+
+TV/Film: Monty Python: Terry Jones played a man who claimed to have 3 what?
+Buttocks
+10
+
+TV/Film: Monty Python: The animal with pointy teeth?
+Rabbit
+10
+
+TV/Film: Monty Python: The deformed knight had this many heads?
+3
+10
+
+TV/Film: Monty Python: The enchanter's name?
+Tim
+10
+
+TV/Film: Monty Python: The first knight to cross the bridge?
+Lancelot
+10
+
+TV/Film: Monty Python: The shape of the earth?
+Banana
+10
+
+TV/Film: Monty Python: This dessert invaded Earth in order to win Wimbledon?
+Blancmange
+10
+
+TV/Film: Monty Python: What did Graham Chapman complain about in the restaurant provoking an over the top reaction from the staff?
+A dirty fork
+10
+
+TV/Film: Monty Python: What did John Cleese try to sell from a tray in the cinema?
+An albatross
+10
+
+TV/Film: Monty Python: What does Michael Palins lumberjack do on Wednesdays?
+Goes shopping and has buttered scones
+10
+
+TV/Film: Monty Python: What was the name of the cheese shop owner?
+Mr wensleydale
+10
+
+TV/Film: Monty Python: What was the name of the scholary knight at the witch trial?
+Sir bedivere
+10
+
+TV/Film: Mother Maybelle & the Carter family were regulars in this variety show?
+Johnny cash show 
+10
+
+TV/Film: Movie about 5 teenagers forced to spend Saturday at detention?
+The breakfast club
+10
+
+TV/Film: Movie about two dimwits who travel through time in a phone booth?
+Bill and teds excellent adventure
+10
+
+TV/Film: Movie featuring a ode to Wally World's Marty Moose?
+National lampoons vacation
+10
+
+TV/Film: Movie featuring an ode to wally world's marty moose?
+National lampoons vacation
+10
+
+TV/Film: Movie Monsters?
+Dracula
+10
+
+TV/Film: Movie set in 1950's Ireland about three friends and their first loves?
+Circle of friends
+10
+
+TV/Film: Movie with the highest box office gross, adjusted for inflation?
+Gone with the wind
+10
+
+TV/Film: Movie: ____ fiction?
+Pulp
+10
+
+TV/Film: Movie: ____ my way?
+Going
+10
+
+TV/Film: Movie: 1967 Beatles TV film: good music, but the movie made NO sense?
+Magical mystery tour
+10
+
+TV/Film: Movie: A failed 80's action series repackaged as movies and shown on MST3K?
+Master ninja
+10
+
+TV/Film: Movie: A giant lizard terrorizes the Texas countryside; killed by a flaming car?
+Giant gila monster
+10
+
+TV/Film: Movie: A hockey mask on a dead guy?
+Friday the 13th
+10
+
+TV/Film: Movie: A jazz pianist is haunted by ghost of a girl he let fall from a lighthouse?
+Tormented
+10
+
+TV/Film: Movie: A soldier is hit with radiation and grows 50 feet tall?
+The amazing colossal man
+10
+
+TV/Film: Movie: A vacationing family is ensnared by a Satanic cult (truly evil!)?
+Manos the hands of fate
+10
+
+TV/Film: Movie: A wife for a $1 million?
+Indecent proposal
+10
+
+TV/Film: Movie: Al Pacino, Steven Bauer, Michelle Pfeiffer, and Mary E. Mastrantonio?
+Scarface
+10
+
+TV/Film: Movie: American spies botch a soviet missile sabotage; in return, nyc is nuked?
+Rocket attack usa
+10
+
+TV/Film: Movie: An Irish soul band?
+The commitments
+10
+
+TV/Film: Movie: around the world in ____ days?
+80
+10
+
+TV/Film: Movie: Bela Lugosi had top billing even though he died before filming on this began?
+Plan 9 from outer space
+10
+
+TV/Film: Movie: bert i. gordon film with peter graves and giant grasshoppers?
+Beginning of the end
+10
+
+TV/Film: Movie: Bill Murray, Geena Davis, and Randy Quaid rob a bank?
+Quick change
+10
+
+TV/Film: Movie: Billy Crystal and Gregory Hines play Chicago police detectives?
+Running scared
+10
+
+TV/Film: Movie: Brad Pitt knifes a man in a bathroom stall?
+Kalifornia
+10
+
+TV/Film: Movie: Christopher Walken, Mary Stuart Masterson, Chris Penn, and Sean Penn?
+At close range
+10
+
+TV/Film: Movie: Cop James Caan is assigned a partner from another planet?
+Alien nation
+10
+
+TV/Film: Movie: David Grant, Kevin Costner, and Rae Dawn Chong?
+American flyers
+10
+
+TV/Film: Movie: Debra Winger has an affair with John Lithgow and dies of cancer?
+Terms of endearment
+10
+
+TV/Film: Movie: Debra Winger is turned prostitute and gets her finger cut off?
+The piano
+10
+
+TV/Film: Movie: Denzel Washington falls for the daughter of an Asian Indian immigrant?
+Mississippi masala
+10
+
+TV/Film: Movie: Directed by sydney pollack, which film won the 1985 oscar for best picture?
+Out of africa
+10
+
+TV/Film: Movie: Director Barry Levinson gave the Fine Young Cannibals a cameo in which movie?
+Tin men
+10
+
+TV/Film: Movie: Fisher Stevens, Ally Sheedy, and Steve Guttenberg?
+Short circuit
+10
+
+TV/Film: Movie: from ____ with love?
+Russia
+10
+
+TV/Film: Movie: Gabriel Byrne teaches Bridget Fonda to be an assassin?
+Point of no return
+10
+
+TV/Film: Movie: Gamera fights a stupid-looking monster with a head like a giant blade?
+Gamera vs guiron
+10
+
+TV/Film: Movie: Gary Oldman hunts down a one-armed female Russian assasin?
+Romeo is bleeding
+10
+
+TV/Film: Movie: gene hackman, David janssen, and gregory peck: apollo13-ish space bomb?
+Marooned
+10
+
+TV/Film: Movie: Griffin Dunn, Rosanna Arquette, and Terri Garr?
+After hours
+10
+
+TV/Film: Movie: Jack Lemmon searches for his missing son in Chile during the Allende regime?
+Missing
+10
+
+TV/Film: Movie: Jessica Lange, Sissy Spaceck, and Diane Keaton play the McGrath sisters?
+Crimes of the heart
+10
+
+TV/Film: Movie: Jewish boy escapes death by impersonating a German and becoming a Nazi?
+Europa Europa
+10
+
+TV/Film: Movie: Julia Roberts, Cameron Diaz, and Dermot Mulroney with wedding bell blues?
+My best Friends Wedding
+10
+
+TV/Film: Movie: Kevin Costner impersonates a buffalo?
+Dances with wolves
+10
+
+TV/Film: Movie: Lon Chaney Jr. is an executed killer brought back to life?
+The indestructible man
+10
+
+TV/Film: Movie: Matthew Modine, Mercedes Ruehl, Dean Stockwell, and Michelle Pfeiffer?
+Married to the Mob
+10
+
+TV/Film: Movie: Mike Meyers as an English secret agent and an evil misbehaving world tyrant?
+Austin powers
+10
+
+TV/Film: Movie: Name the film that ends with the following dialogue: 'Twas beauty that killed the beast'?
+King Kong
+10
+
+TV/Film: Movie: Nicke Nolte, Eddie Murphy, Annette O' Toole, and Sonny Landham?
+48 hours
+10
+
+TV/Film: Movie: Patrick Swayze, Cynthia Gibb, Ed Lauter, and Rob Lowe?
+Youngblood
+10
+
+TV/Film: Movie: Penelope Ann Miller, Sean Penn and Al Pacino?
+Carlitos way
+10
+
+TV/Film: Movie: Peter Sellers, George C. Scott, and Slim Pickens (short answer form)?
+Dr strangelove
+10
+
+TV/Film: Movie: Pierce Brosnan is a soviet agent (from the Forsyth novel)?
+The fourth protocol
+10
+
+TV/Film: Movie: Sam Wheat?
+Ghost
+10
+
+TV/Film: Movie: Sam, a piano player in a bar?
+Casablanca
+10
+
+TV/Film: Movie: Scissor-hands?
+Edward scissorhands
+10
+
+TV/Film: Movie: Sean Connery's brother Neil as a secret agent (yes, it really happened!)?
+Operation double 007
+10
+
+TV/Film: Movie: set in caveman days, yet tire tracks can be seen in the background?
+Cave dwellers
+10
+
+TV/Film: Movie: Snowy mountain cannibalism?
+Alive
+10
+
+TV/Film: Movie: Stephen Rea, Miranda Richardson, Jaye Davidson, and Forest Whitaker?
+The crying Game
+10
+
+TV/Film: Movie: Steve McQueen's first starring role was in this 1958 B-Movie?
+The blob
+10
+
+TV/Film: Movie: Ted Danson, Isabella Rossellini, Sean Young, and William Peterson?
+Cousins
+10
+
+TV/Film: Movie: The ____ Worker (1962)?
+Miracle
+10
+
+TV/Film: Movie: the african ____?
+Queen
+10
+
+TV/Film: Movie: The best-known X-rated animated film?
+Fritz the cat
+10
+
+TV/Film: Movie: The Three Faces Of ____?
+Eve
+10
+
+TV/Film: Movie: This dreadful Fu Manchu film had the MST3K guys HOWLING in pain?
+Castle of fu manchu
+10
+
+TV/Film: Movie: Tom Berenger, Willem DaFoe, Charlie Sheen, and Francesco Quinn?
+Platoon
+10
+
+TV/Film: Movie: Tom Cruise plays a high school football player?
+All the right moves
+10
+
+TV/Film: Movie: Virginia Madsen, Peter O' Toole, Vincent Spano, and Muriel Hemingway?
+Creator
+10
+
+TV/Film: Movie: What 1976 film popularized the line 'I'm mad as hell and I'm not going to take it anymore!'?
+Network
+10
+
+TV/Film: Movie: Which 1968 Film was Goldie Hawn's debut?
+The One and Only Genuine Family Band
+10
+
+TV/Film: Movie: Will Smith knifes himself to get aquantied with high society folks?
+Six degrees of Seperation
+10
+
+TV/Film: Movie: woman, two kids transported into the future where apes are in control?
+Time of the apes
+10
+
+TV/Film: Mr bill was a regular on what tv show?
+Saturday night live
+10
+
+TV/Film: Mr. Fawlty's first name on Fawlty Towers?
+Basil
+10
+
+TV/Film: MTV Features: He holds the record for most Video Music Awards hosted?
+Arsenio hall
+10
+
+TV/Film: MTV Features: Name one of the teams from Rock n Jock Basketball?
+Bricklayers
+10
+
+TV/Film: MTV Features: This many presidents have been interviewed by an MTV correspondent?
+2
+10
+
+TV/Film: MTV Features: You could lose your favorite possesions in this MTV game show?
+Trashed
+10
+
+TV/Film: MTV/Film: MTV plays these most of the day?
+Videos
+10
+
+TV/Film: MTV/Film: This show has videos from 7:00 p.m. until 9: p.m?
+Prime
+10
+
+TV/Film: Muppet Mania: Gonzo eats a tire to the tune of this?
+Flight of the bumblebee
+10
+
+TV/Film: Muppet Mania: He was the muppeteer controlling Dr. Floyd Pepper and Robin?
+Jerry nelson
+10
+
+TV/Film: Muppet Mania: He was the muppeteer controlling Gonzo and Dr. Bunsen Honeydew?
+Dave goelz
+10
+
+TV/Film: Muppet Mania: He was the muppeteer controlling Miss Piggy and Grover?
+Frank oz
+10
+
+TV/Film: Muppet Mania: Kermit wrote a guide to this decade?
+90s
+10
+
+TV/Film: Muppet Mania: Name of the muppet that throws boomerang fish?
+Lew Zealand
+10
+
+TV/Film: Muppet Mania: Oscar the Grouch's pet worm (Sesame Street)?
+Slimey
+10
+
+TV/Film: Muppet Mania: She was the chicken girlfriend of Gonzo?
+Camilla
+10
+
+TV/Film: Muppet Mania: The Muppets recently released a movie based on this Dickens's novel?
+A christmas carol
+10
+
+TV/Film: Muppet Mania: The name of Forgetful Jones' horse on 'Sesame Street'?
+Buster
+10
+
+TV/Film: Muppet Mania: The name of Oscar the Grouch's girlfriend (Sesame Street)?
+Grungetta
+10
+
+TV/Film: Muppet Mania: The name of the Elephant friend of Big Bird on 'Sesame Street'?
+Mr snuffleupagus
+10
+
+TV/Film: Muppet Mania: this is a bear's natural habitat (The Muppet movie)?
+Studebaker
+10
+
+TV/Film: Muppet Mania: This Muppet was a patriotic eagle?
+Sam
+10
+
+TV/Film: Muppet Mania: This muppet was a piano playing dog?
+Rowlf
+10
+
+TV/Film: Muppet Mania: This Muppet was the reporter for 'Muppet News Flash' (Sesame Street)?
+Kermit the frog
+10
+
+TV/Film: Muppet Mania: What is the name of Dr. Teeth's band?
+The electric mayhem
+10
+
+TV/Film: Muppet Mania: What lived in Ernie's garden (Sesame Street)?
+Twiddle bugs
+10
+
+TV/Film: Murray Grechner's occupation on The Odd Couple?
+Policeman
+10
+
+TV/Film: Music composer for Bond movie _For Your Eyes Only?
+Bill conti
+10
+
+TV/Film: Music Movie Trivia: Cicero's theme song, sung by a girl on a farm sitting next to a tractor?
+Over the rainbow
+10
+
+TV/Film: Music Movie Trivia: Each Mad Max movie has a version of this song?
+Happy birthday
+10
+
+TV/Film: Music Movie Trivia: Song in which Tim Curry does his best Judy Garland (with Alfalfa shadow)?
+Im going home
+10
+
+TV/Film: Music Movie Trivia: This Gypsy song's footage is thought to be lost forever?
+Together we go
+10
+
+TV/Film: Music Movie Trivia: This movie musical features Ann Margaret rolling in baked beans?
+Tommy
+10
+
+TV/Film: Music Movie Trivia: This song is sung in Chinese in the second Indiana Jones movie?
+Anything goes
+10
+
+TV/Film: Music: Academy awards: what won best song in 1968?
+Windmills of your mind
+10
+
+TV/Film: Music: Academy awards: what won best song in 1970?
+For all we know
+10
+
+TV/Film: Music: Academy awards: what won best song in 1972?
+Morning after
+10
+
+TV/Film: Music: Academy awards: what won best song in 1973?
+Way we were
+10
+
+TV/Film: Music: Disney: Song: Song that serenades Lady and the Tramp as they chow down spaghetti?
+Bella notte
+10
+
+TV/Film: Music: Movies & TV/Film: Jazzy Jeff & The Fresh Prince did a parody of this horror flick with Englund?
+Nightmare on Elm Street
+10
+
+TV/Film: Music: Nine Inch Nails: Trent Reznor did the sound engineering on this soundtrack?
+Natural born killers
+10
+
+TV/Film: Music: Phil Collins song from movie of same name starring Jeff Bridges & James Woods?
+Against all odds
+10
+
+TV/Film: Music: Who composed the music for the movie sixth sense?
+James newton howard
+10
+
+TV/Film: Music: Who produced the soundtrack to the film 1984?
+Eurythmics
+10
+
+TV/Film: Musical about Viet Nam with Treat Williams and Beverly D'angelo?
+Hair
+10
+
+TV/Film: Musical starring (gulp) Clint Eastwood and Lee Marvin?
+Paint your wagon
+10
+
+TV/Film: Musical superstar played a saloon pianist in South Sea Sinner?
+Liberace
+10
+
+TV/Film: Musical with Richard Harris and Lynn Redgrave?
+Camelot
+10
+
+TV/Film: Musical: Barry Williams, (yes, Greg) starred in this musical based on Charlemagne's life?
+Pippen
+10
+
+TV/Film: Musical: the final sequence of this movie featured kenny jones instead of keith moon?
+The kids are alright
+10
+
+TV/Film: Musical: this 1977 movie featured the bee gees on its soundtrack?
+Saturday night fever
+10
+
+TV/Film: Musical: this beatle wrote the soundtrack to a lethal weapon movie?
+George harrison
+10
+
+TV/Film: Musical:What 1957 film co-starred Fred Astaire and Cyd Charisse?
+Silk Stockings
+10
+
+TV/Film: Musical:What 1983 film co-starred Robert Duvall, Tess Harper and Ellen Barkin?
+Tender Mercies
+10
+
+TV/Film: Musical:Who played the pinball wizard in the 1975 'Tommy'?
+Elton John
+10
+
+TV/Film: Musical:Who played the Scarecrow in the 1978 film The Wiz?
+Michael Jackson
+10
+
+TV/Film: Mustached comedian who portrayed Frankie in North to Alaska?
+Ernie kovacs
+10
+
+TV/Film: my favorite ____?
+Martian
+10
+
+TV/Film: Name 1 of the 3 well known female sex symbols in Myra Breckinridge?
+Farrah fawcett
+10
+
+TV/Film: Name dennis the menace's next door neighbors?
+George & martha wilson
+10
+
+TV/Film: Name Eddie Murphy's skit about vocabulary on Saturday Night Live?
+Mr. Robinson's Neighborhood
+10
+
+TV/Film: name every actress who played an 'angel' on charlie's angels?
+Farrah fawcett
+10
+
+TV/Film: Name Henry Fonda's last feature film, for which he won the best actor academy award in 1981?
+On golden pond
+10
+
+TV/Film: Name Ingrid Bergmans actress daughter?
+Isabella Rossellini
+10
+
+TV/Film: Name Kevin Costner's character in the 1991 film JFK?
+Jim Garrison
+10
+
+TV/Film: Name Liz Hurleys most famous film?
+Bedazzled
+10
+
+TV/Film: Name of comedian Steve Martin's first album?
+Lets get small
+10
+
+TV/Film: Name of Fox's failed series about college life, starring Jason Gedrick?
+Class of 1996
+10
+
+TV/Film: Name of Halle Berrys character in the Bond movie Die another Day?
+Jinx
+10
+
+TV/Film: Name of Judy Garlands actress daughter?
+Liza Minnelli
+10
+
+TV/Film: Name of movie generally regarded as first sound movie?
+Jazz singer
+10
+
+TV/Film: Name of Paul Newmans wife?
+Joanne Woodward
+10
+
+TV/Film: Name of Phil Collins/Marilyn Martin's duet from the movie _White Nights?
+Separate lives
+10
+
+TV/Film: Name of Steven Spielbergs studio?
+Dreamworks
+10
+
+TV/Film: Name of the computer in Wargames?
+Wopr
+10
+
+TV/Film: Name of the Disney Film released in the UK Oct 2002?
+Lilo and stitch
+10
+
+TV/Film: Name of the new Bond movie,released November 2002?
+Die another Day
+10
+
+TV/Film: Name of the Rowan Atkinson James Bond type spoof to be released 2002?
+Johnny English:A Touch of Weevil
+10
+
+TV/Film: Name of the ship going to Jupiter?
+Discovery i
+10
+
+TV/Film: Name of the thriller released in 2002 starring Jennifer Lopez and Ben Affleck?
+Gigli
+10
+
+TV/Film: Name one of the road movies with bob, bing & dorothy?
+Road to hong kong
+10
+
+TV/Film: name one of three people to have won emmy, grammy, tony, and oscar?
+Helen hayes
+10
+
+TV/Film: Name Sir John Mills two famous daughters?
+Hayley & juliet 
+10
+
+TV/Film: Name That Celebrity: Director and dixieland clarinetist?
+Woody allen
+10
+
+TV/Film: Name That Celebrity: English character actor & owner of a fish-and-chips fast food chain?
+Arthur treacher
+10
+
+TV/Film: Name That Celebrity: Star of one-man shows thar portrayed Harry Truman and Will Rogers?
+James whitmore
+10
+
+TV/Film: Name That Celebrity: The director of Citizen Kane and The Third Man?
+Orson welles
+10
+
+TV/Film: Name That Celebrity: The male anchor of 20/20?
+Hugh downs
+10
+
+TV/Film: Name That Disney Movie: Alice, White Rabbit, Cheshire Cat?
+Alice in wonderland
+10
+
+TV/Film: Name That Disney Movie: Baloo, Bagheera, Shere Khan?
+The jungle book
+10
+
+TV/Film: Name That Disney Movie: Chernabog, The Sorcerer's Apprentice?
+Fantasia
+10
+
+TV/Film: Name That Disney Movie: Cody, Percival Macleash, Miss Bianca?
+The rescuers down under
+10
+
+TV/Film: Name That Disney Movie: Dodger, Georgette, Tito?
+Oliver and company
+10
+
+TV/Film: Name That Disney Movie: Gurgi, Eilonwy, Fflewddur Fflam?
+The black cauldron
+10
+
+TV/Film: Name That Disney Movie: Madam Mim, Wart, Archimedes?
+The sword in the stone
+10
+
+TV/Film: Name That Disney Movie: Maleficent, Aurora, Merryweather?
+Sleeping beauty
+10
+
+TV/Film: Name That Disney Movie: Robin, Marian, Sir Hiss?
+Robin hood
+10
+
+TV/Film: Name that movie quote - 'In space no'one can hear you scream'?
+Alien
+10
+
+TV/Film: Name that movie quote - 'It's been 84 years and I can still smell the fresh paint'?
+Titanic
+10
+
+TV/Film: Name That TV Show: Goober, Floyd, Opie, Barney?
+Andy griffith
+10
+
+TV/Film: Name That TV Show: Hayden, Christine, Dauber?
+Coach
+10
+
+TV/Film: Name That TV Show: Max Weinberg, Andy Richter, Conan?
+Late night with conan obrien
+10
+
+TV/Film: Name That TV Show: Six, Joey, Anthony?
+Blossom
+10
+
+TV/Film: Name That TV Show: Urkel, Laura, Carl?
+Family matters
+10
+
+TV/Film: Name That TV Show: Wapner, Rusty, Doug?
+Peoples court
+10
+
+TV/Film: Name That TV Show: Will, Carlton, Phil?
+Fresh prince of bel air
+10
+
+TV/Film: Name the 2011 film that tells the story of a boy who lives alone in a railway station in Paris during the 1930s?
+Hugo
+10
+
+TV/Film: Name the 3 prospective bodies for Joe Pendleton in 1978's Heaven Can Wait?
+Tightrope walker, Grand Prix driver and football player
+10
+
+TV/Film: Name the actor Who played the police pathologist quincy?
+Jack klugman
+10
+
+TV/Film: Name the boat in the Love Boat?
+Pacific princess
+10
+
+TV/Film: Name the cartoon that featured characters who had messages on their clothes to express their feelings?
+Shirt Tales
+10
+
+TV/Film: Name the character played by David cassidy in television's partridge family series of the 1970s?
+Keith partridge
+10
+
+TV/Film: Name the character played by frank sinatra in films such as lady in cement?
+Tony rome
+10
+
+TV/Film: Name the dog in 'The Magic Roundabout'?
+Dougal
+10
+
+TV/Film: Name the european hit, now an animated series about underwater people?
+Snorks
+10
+
+TV/Film: Name the film: ____ (a number) Leagues Under the Sea?
+20,000
+10
+
+TV/Film: Name the film: A American rock star foils the East Germans' plans of global conquest?
+Top secret!
+10
+
+TV/Film: Name the film: A T-Rex eats a lawyer. Nobody liked him anyway...?
+Jurassic park
+10
+
+TV/Film: Name the film: An Officer and a(n) ____?
+Gentleman
+10
+
+TV/Film: Name the film: Archaeologist teams up with long lost father in search of the Holy Grail?
+Indiana jones and the last Crusade
+10
+
+TV/Film: Name the film: attack of the killer ____?
+Tomatoes
+10
+
+TV/Film: Name the film: Besides Field of Dreams, what other baseball movie starred Kevin Costner?
+Bull durham
+10
+
+TV/Film: Name the film: Chance the gardener finds himself as presidential advisor accidently?
+Being there
+10
+
+TV/Film: Name the film: Christian Slater becomes a cop and tracks down his brother's killer?
+Kuffs
+10
+
+TV/Film: Name the film: Christopher Lloyd is returned to his odd family, Gomez, Morticia, et al?
+The addams family
+10
+
+TV/Film: Name the film: Con artist & his young pal formulate elaborate swindle?
+The sting
+10
+
+TV/Film: Name the film: Cyborg is sent back through time to assassinate mother of future rebel?
+The terminator
+10
+
+TV/Film: Name the film: Dim-witted man finds himself in important histrical events in the USA?
+Forrest gump
+10
+
+TV/Film: Name the film: Documentary about the pressure placed on women to be thin and beautiful?
+The famine within
+10
+
+TV/Film: Name the film: Eliot Ness & crew clean up Chicago?
+The untouchables
+10
+
+TV/Film: Name the film: Exquisite movie about a boy who tames and races an Arabian horse?
+The black stallion
+10
+
+TV/Film: Name the film: Fahrenheit ____. (a number)?
+451
+10
+
+TV/Film: Name the film: Features Darlanne Fluegel, Jimmy Smits, Gregory Hines, and Billy Crystal?
+Running scared
+10
+
+TV/Film: Name the film: Features Rutger Hauer, Sean Young, Harrison Ford, Edward James Olmos, and Joe Turkel?
+Blade runner
+10
+
+TV/Film: Name the film: Features Tom Skerritt, Ian Holm, Sigourney Weaver, and John Hurt?
+Alien
+10
+
+TV/Film: Name the film: For his role in which 1962 film did Gregory peck win an oscar for his portrayal of a small town lawyer?
+To kill a mockingbird
+10
+
+TV/Film: Name the film: For which film did Al Pacino win best actor oscar in 1992?
+Scent of a woman
+10
+
+TV/Film: Name the film: For which film did Art Carney win best actor Oscar in 1974?
+Harry and Tonto
+10
+
+TV/Film: Name the film: For which film was the music Tubular bells the theme?
+The Exorcist
+10
+
+TV/Film: Name the film: Harrison Ford unearths a holy relic, and it melts alot of Nazis?
+Raiders of the lost ark
+10
+
+TV/Film: Name the film: High schooler plays hooky and shows his best friend how to have a good time?
+Ferris buellers day off
+10
+
+TV/Film: Name the film: Hollywood exec receives threats from underappreciated writer?
+The player
+10
+
+TV/Film: Name the film: Jack Nicholson movie about mental hospital and R.P. McMurphy?
+One flew over the cuckoos nest
+10
+
+TV/Film: Name the film: Jailed rebel has personality conflict with chain gang warden, plans escape?
+Cool hand luke
+10
+
+TV/Film: Name the film: Mary Steenburgen, Steve Martin, Rick Moranis all have family crises?
+Parenthood
+10
+
+TV/Film: Name the film: Modern L.A. mobsters learn one of their number is police informer?
+Reservoir dogs
+10
+
+TV/Film: Name the film: Mountain Ranger races terrorists on mountain to find three money suitcases?
+Cliffhanger
+10
+
+TV/Film: Name the film: Movie featuring the immortal characters Blanche DuBois and Stanley Kowalski?
+A streetcar named Desire
+10
+
+TV/Film: Name the film: or what film did katharine hepburn win her fourth best actress oscar?
+On golden pond
+10
+
+TV/Film: Name the film: Policeman visits wife in Los Angeles and battles terrorists on highrise?
+Die hard
+10
+
+TV/Film: Name the film: Robin Williams has a sexual identity crisis?
+Mrs. doubtfire
+10
+
+TV/Film: Name the film: Sean Connery got a well-deserved Oscar for which 1980s movie?
+The untouchables
+10
+
+TV/Film: Name the film: Six man jewelry heist gone bad. Characters with colorful names?
+Reservoir dogs
+10
+
+TV/Film: Name the film: Small European nation declares war on U.S. to gain post-war aid...but wins?
+The mouse that roared
+10
+
+TV/Film: Name the film: Spielberg movie about a group of kids who go looking for buried treasure?
+The goonies
+10
+
+TV/Film: Name the film: Spike Lee's ____ is released to critical acclaim?
+Do the right thing
+10
+
+TV/Film: Name the film: Suicidal cop is partnered with reluctant aging cop. Fight drug runners?
+Lethal weapon
+10
+
+TV/Film: Name the film: The Last Days of ____. (a city)?
+Pompeii
+10
+
+TV/Film: Name the film: Theme Song by Brian Adams: Everything I Do (I Do It For You)?
+Robin hood prince of thieves
+10
+
+TV/Film: Name the film: Three stones, alot of water, and a broken down bridge that Indy has to climb?
+Indiana jones and the Temple Of Doom
+10
+
+TV/Film: Name the film: Three vignettes dealing with two hitmen, a renegade boxer, and a bad date?
+Pulp fiction
+10
+
+TV/Film: Name the film: Three washed-up movie stars hired by besieged Mexican town to fight bandito?
+Three amigos!
+10
+
+TV/Film: Name the film: Tom Hanks and Dan Akroyd track down the crimes of P.A.G.A.N?
+Dragnet
+10
+
+TV/Film: Name the film: Tom Hanks and Dan Aykroyd track down the crimes of P.A.G.A.N?
+Dragnet
+10
+
+TV/Film: Name the film: Wilford Brimley says a dirty word and tries to kill Tom Cruise?
+The firm
+10
+
+TV/Film: Name the first full length color cartoon talking picture?
+Snow white
+10
+
+TV/Film: Name the first full length color cartoon talking picture?
+Snow White
+10
+
+TV/Film: Name the Hollywood starlet whose pinup graced the most GI barracks in World War II?
+Betty grable
+10
+
+TV/Film: Name the host for $100,000 pyramid?
+Dick Clark
+10
+
+TV/Film: Name the legendary hollywood cowboy who was born as leonard slye in 1912?
+Roy rogers
+10
+
+TV/Film: Name the movie about life after death set in chicago that revolved around several medical students with a death wish?
+Flatliners
+10
+
+TV/Film: Name the movie with Pierce Brosnan and Patrick Stewart?
+Detonator
+10
+
+TV/Film: Name the musical film named after a state?
+Oklahoma
+10
+
+TV/Film: Name the musical film named after a state?
+Oklahoma
+10
+
+TV/Film: Name the only Elvis Presley film in which Elvis did not star?
+Love me tender
+10
+
+TV/Film: Name the Police Officer in 'Top Cat' the cartoon series?
+Officer Dibble
+10
+
+TV/Film: Name the Police Station in The Bill?
+Sun Hill
+10
+
+TV/Film: Name the queen of the jungle who had bob as a mate?
+Sheena
+10
+
+TV/Film: Name the show: alias smith & ____?
+Jones
+10
+
+TV/Film: Name the Show: barney ____?
+Miller
+10
+
+TV/Film: Name the show: the rockford ____?
+Files
+10
+
+TV/Film: Name the t.v. pop show hosted by jools holland & paula yates?
+The tube
+10
+
+TV/Film: Name the top rated show of the 1977 78 season?
+Laverne & shirley
+10
+
+TV/Film: name the year - red dwarf?
+1988
+10
+
+TV/Film: name the year -the clangers?
+1969
+10
+
+TV/Film: Name Their Job: Michelangelo Antonioni?
+Film director
+10
+
+TV/Film: name their network: alan king?
+Comedy central
+10
+
+TV/Film: Name Their Network: Candice Cameron?
+Abc
+10
+
+TV/Film: Name Their Network: Chris Berman?
+Espn
+10
+
+TV/Film: Name Their Network: Cindy Palemis?
+Bbc
+10
+
+TV/Film: name their network: connie chung?
+Cbs
+10
+
+TV/Film: Name Their Network: Craig T. Nelson?
+Abc
+10
+
+TV/Film: name their network: kelsey grammer?
+Nbc
+10
+
+TV/Film: Name Their Network: Lloyd Robertson?
+Ctv
+10
+
+TV/Film: Name Their Network: Owen Bennett-Jones?
+Bbc
+10
+
+TV/Film: Name Their Network: Principal Skinner?
+Fox
+10
+
+TV/Film: name their network: sam donaldson?
+Abc
+10
+
+TV/Film: Name Their Network: Sandy Rinaldo?
+Ctv
+10
+
+TV/Film: name their network: sinbad?
+Fox
+10
+
+TV/Film: Name Their Network: Ted Koppel?
+Abc
+10
+
+TV/Film: Name this Johnny Depp movie?
+What's eating gilbert grape
+10
+
+TV/Film: Namegame:Whos film characters included Joe Bella,Tommy Five Tone and Jack Ruby?
+Danny Aiello
+10
+
+TV/Film: Natalie Wood's last film; also starring Christopher Walken?
+Brainstorm
+10
+
+TV/Film: Nathan Brittles is the hero of which classic western?
+She wore a yellow ribbon
+10
+
+TV/Film: Naval comedy that switched from the S. Pacific to Italy in its 4th season?
+Mchales navy
+10
+
+TV/Film: Nearsighted mr. Magoo was voiced by which actor, who went on to sitcom fame?
+Jim backus
+10
+
+TV/Film: Neighbours & home & away come from what country?
+Australia 
+10
+
+TV/Film: Nephew & companion of Hercules on Hercules' 12 labors?
+Iolaus
+10
+
+TV/Film: Never have sex with anyone that owns an icepick?
+Basic instinct
+10
+
+TV/Film: Nick Nolte and Eddie Murphy star in this 1982 film?
+48 hours
+10
+
+TV/Film: Nick Nolte and Eddie Murphy star in this 1982 film?
+48 Hours
+10
+
+TV/Film: Nick Nolte was originally a cop opposite Eddie Murphy's con in...?
+48 hrs
+10
+
+TV/Film: Nicknames:Who was known as 'The Platinum Blond'?
+Jean Harlow
+10
+
+TV/Film: Nobody puts baby in the corner?
+Dirty Dancing
+10
+
+TV/Film: Novelist who played Disney's TV hero Texas John Slaughter?
+Tom tryon
+10
+
+TV/Film: Number of monolith scenes in the film?
+Four
+10
+
+TV/Film: Number of movies Burton and taylor made together?
+10
+10
+
+TV/Film: Occupations: Banker (Beverly Hillbillies)?
+Milburn drysdale
+10
+
+TV/Film: Occupations: Deputy (Dukes of Hazzard)?
+Enos strate
+10
+
+TV/Film: Occupations: Music Store Clerk (Mork and Mindy)?
+Mindy mcconnell
+10
+
+TV/Film: Occupations: Photographer (Odd Couple)?
+Felix unger
+10
+
+TV/Film: Occupations: Photojournalist (Perfect Strangers)?
+Larry appleton
+10
+
+TV/Film: Of what was charlie chaplains cane made?
+Bamboo
+10
+
+TV/Film: Of which book did Spielberg say - I read it and felt that i had been attacked. It terrified me, and I wanted to strike back?
+Jaws
+10
+
+TV/Film: On 'Dragnet', who played officer Bill Gannon?
+Harry Morgan
+10
+
+TV/Film: On 'gilligan's island' mrs. Howell's maiden name was what?
+Wentworth
+10
+
+TV/Film: On 'Mad About You', Paul & Jamie's baby was named Mabel. What does it stand for?
+Mothers always bring extra love
+10
+
+TV/Film: On 'southpark' what usually happens to kenny?
+He gets killed
+10
+
+TV/Film: On 'the flintstones' who is barney & betty rubble's son?
+Bambam
+10
+
+TV/Film: On 'The Lucy Show', who played Vivian Bagley?
+Vivian Vance
+10
+
+TV/Film: On 90210: Who are the twins (name1 and name2)?
+Brandon and brenda
+10
+
+TV/Film: On Captain Midnight, what was Ichabod Mudd's nickname?
+Icky
+10
+
+TV/Film: On In Living Color: Name the body-building beauty played by Jim Carrey?
+Vera de milo
+10
+
+TV/Film: On Location:What 1970 'disaster' film was filmed partially at Minneapolis-St Paul international Airport?
+Airport
+10
+
+TV/Film: On Melrose Place: What is the name of Matt's wife (first name)?
+Katya
+10
+
+TV/Film: On mork & mindy, what was mindy's last name?
+Mcconnell
+10
+
+TV/Film: On mork & mindy, who was the leader of the friends of venus?
+Exidor
+10
+
+TV/Film: On Porter Waggoner's show, who was his first singing partner?
+Norma jean
+10
+
+TV/Film: On the Addams Family cartoons, who was the voice of Gomez?
+John Astin
+10
+
+TV/Film: On the cartoon series The Flintstones, what lawyer never lost a case?
+Perry Masonry
+10
+
+TV/Film: On the cartoon show 'the jetsons', how old is judy?
+15
+10
+
+TV/Film: On the set of Jaws what was the nickname given to the shark?
+Bruce 
+10
+
+TV/Film: On the show 'Greenacres' what was 'Arnold Ziffel'?
+Pig
+10
+
+TV/Film: On tv's the love boat, what was adam bricker's job on the ship?
+Doctor
+10
+
+TV/Film: On tvs gilligans island, what characters real name was roy hinkley?
+The professor
+10
+
+TV/Film: on what British series was all in the family based?
+Till death do us part
+10
+
+TV/Film: On what British sitcom was 'all in the family' based?
+Steptoe & son
+10
+
+TV/Film: On what cartoon show did the characters watch tv on station bdrx?
+Flintstones
+10
+
+TV/Film: On what show was 'The Ponderosa'?
+Bonanza
+10
+
+TV/Film: On what show was Ralph Malph?
+Happy days
+10
+
+TV/Film: On what tv show was 'the ponderosa'?
+Bonanza
+10
+
+TV/Film: On which show did Gene Gene the dancing machine appear?
+The gong show
+10
+
+TV/Film: On which show did Lena Horne make her debut?
+Ed sullivan
+10
+
+TV/Film: On which show is there a butler named Lurch?
+The adams family
+10
+
+TV/Film: One foot in the grave, what was the first name of Victor Meldrews wife?
+Margaret
+10
+
+TV/Film: One of the very first ethnographic films of the North?
+Nanook
+10
+
+TV/Film: Oprah at age 19 worked as a what in nashville?
+TV anchor
+10
+
+TV/Film: Oscars: 1946 Who won Best Actor for his part in the film The Best Years of Our Lives?
+Fredric March
+10
+
+TV/Film: Oscars: 2002,For which film did Denzel Washington win best leading actor?
+Training Day
+10
+
+TV/Film: Oscars: 2002,For which film did Jim Broadbent win his best supportingactor?
+Iris
+10
+
+TV/Film: Oscars: 2002,Which film did Jennifer Connelly win best supporting actress?
+A Beautiful mind
+10
+
+TV/Film: Oscars: 2002,which film won best picture category?
+A beautiful mind
+10
+
+TV/Film: Oscars: 2002,Which film won in best animated feature category?
+Shrek
+10
+
+TV/Film: Oscars: 2002,Which film won in best costume category?
+Moulin Rouge
+10
+
+TV/Film: Oscars: 2002,Which film won in Best music score category?
+Lord of the Rings
+10
+
+TV/Film: Oscars: 2002,Who won best leading actor?
+Denzel Washington
+10
+
+TV/Film: Oscars: 2002,Who won best supporting actor for his role in Iris?
+Jim Broadbent
+10
+
+TV/Film: Oscars: 2002,Who won best supporting actress for her role in A Beautiful mind?
+Jennifer connelly
+10
+
+TV/Film: Oscars: best actor, clark gable, & best actress, claudette colbert, won for this film, which was best picture?
+Retinol
+10
+
+TV/Film: Oscars: For his role in which movie did Peter Finch win the Best Actor Oscar for posthumously?
+Network
+10
+
+TV/Film: Oscars: Greer Garson was nominated for Best Actress in 1942,1943,1944 for films with womens names as titles. Name them?
+Mrs. Parkington, Mrs. Miniver and Madame Curie
+10
+
+TV/Film: Oscars: he has won the most best actor awards, with 3?
+Jack nicholson
+10
+
+TV/Film: Oscars: In 1936 who won the Best Actor Oscar?
+Paul Muni
+10
+
+TV/Film: Oscars: Loretta Young won best actress oscar in 1947 for her role in what movie?
+The Farmer's Daughter
+10
+
+TV/Film: Oscars: Movie: Anthony Minghella won in 1996 for this movie based on the Canadian novel?
+The English Patient
+10
+
+TV/Film: Oscars: Movie: Best supporting actor Ben Johnson, & Best Supporting Actress Cloris Leachman, won for this film?
+The last picture show
+10
+
+TV/Film: Oscars: Movie: Billy Wilder was awarded in 1960 for this movie?
+The apartment
+10
+
+TV/Film: Oscars: Movie: Elia Kazan was awarded in 1954 for this movie?
+On the waterfront
+10
+
+TV/Film: Oscars: Movie: Franklin J. Schaffner was awarded in 1970 for this movie?
+Patton
+10
+
+TV/Film: Oscars: Movie: Fred Zinnemann was awarded in 1966 for this movie?
+A man for all seasons
+10
+
+TV/Film: Oscars: Movie: George Cukor was awarded in 1964 for this movie?
+My fair lady
+10
+
+TV/Film: Oscars: Movie: Jane Campion had a nomination in 1993 for this movie?
+The piano
+10
+
+TV/Film: Oscars: Movie: John Ford was awarded in 1940 for this movie?
+Grapes of wrath
+10
+
+TV/Film: Oscars: Movie: John G. Avildsen was awarded in 1976 for this movie?
+Rocky
+10
+
+TV/Film: Oscars: Movie: John Schlesinger was awarded in 1969 for this movie?
+Midnight cowboy
+10
+
+TV/Film: Oscars: Movie: Michael Curtiz was awarded in 1943 for this movie?
+Casablanca
+10
+
+TV/Film: Oscars: Movie: Robert Wise was awarded in 1965 for this movie?
+The sound of music
+10
+
+TV/Film: Oscars: Movie: Steven Spielberg was awarded in 1993 for this movie?
+Schindlers list
+10
+
+TV/Film: Oscars: Movie: Vincente Minnelli was awarded in 1958 for this movie?
+Gigi
+10
+
+TV/Film: Oscars: Movie: William Wyler was awarded in 1959 for this movie?
+Ben-hur
+10
+
+TV/Film: Oscars: Movie:Directed by milos foreman, which film won the 1975 oscar for best picture?
+One flew over the cuckoo's nest
+10
+
+TV/Film: Oscars: Music: what won best song in 1962?
+Days of wine & roses
+10
+
+TV/Film: Oscars: Music: what won best song in 1963?
+Call me irresponsible
+10
+
+TV/Film: Oscars: Music: what won best song in 1964?
+Chim chim cher-ee
+10
+
+TV/Film: Oscars: Music: what won best song in 1965?
+Shadow of your smile
+10
+
+TV/Film: Oscars: Music: what won best song in 1966?
+Born free
+10
+
+TV/Film: Oscars: Music: what won best song in 1967?
+Talk to the animals
+10
+
+TV/Film: Oscars: Name one of the two actresses that tied for Best Actress in 1968?
+Hepburn
+10
+
+TV/Film: Oscars: Name the two films Oliver Stone won the Best Director Oscar for?
+Born on the Fourth of July and Platoon
+10
+
+TV/Film: Oscars: oldest man to win an Oscar, for 'The Sunshine Boys'?
+George burns
+10
+
+TV/Film: Oscars: she has been nominated for best actress 12 times, winning only once (for 'sophie's choice')?
+Meryl streep
+10
+
+TV/Film: Oscars: What 1972 film saw the whole cast nominated for the Oscars?
+Sleuth
+10
+
+TV/Film: Oscars: What do James Dean,Spencer Tracy and Peter Finch have in common?
+Posthumously nominated for Best Actor
+10
+
+TV/Film: Oscars: What event postponed the Oscar ceremony in 1980?
+Attempted Assassination of Ronald Reagan
+10
+
+TV/Film: Oscars: What film won Best Picture in 1952?
+The Greatest Show on Earth
+10
+
+TV/Film: Oscars: What film won the most Academy Awards?
+Ben-hur
+10
+
+TV/Film: Oscars: What film won the Oscar for Best Picture in 1970?
+Love Story
+10
+
+TV/Film: Oscars: What is the only animated film ever nominated for Best Picture?
+Beauty and the beast
+10
+
+TV/Film: Oscars: What sad distinction does Peter Finch Hold?
+Only person to win Posthumously
+10
+
+TV/Film: Oscars: What was the first film to win 8 Oscars?
+Gone with the wind
+10
+
+TV/Film: Oscars: What was the last black & white film to win Best Picture?
+Schindlers list
+10
+
+TV/Film: Oscars: What was unusual about the Oscar presented to ventriloquist Edgar Bergen for his outstanding comic creation?
+It was made of wood
+10
+
+TV/Film: Oscars: what won best song in 1971?
+Theme from shaft
+10
+
+TV/Film: Oscars: Which film won the Best Picture Oscar in 1979?
+Kramer vs. Kramer
+10
+
+TV/Film: Oscars: Who beat out Martin Scorsese for Best Director (Raging Bull) in 1980?
+Redford
+10
+
+TV/Film: Oscars: Who gave the longest acceptance speech in Oscar history?
+Greer garson
+10
+
+TV/Film: Oscars: Who has hosted the Oscars the most times?
+Bob hope
+10
+
+TV/Film: Oscars: Who hosted the 1995 Academy Awards?
+David letterman
+10
+
+TV/Film: Oscars: Who is the only person nominated for 2 acting Oscars after his death?
+James dean
+10
+
+TV/Film: Oscars: Who is the only person to present himself with an Oscar?
+Irving Berlin
+10
+
+TV/Film: Oscars: Who is the only person to win 3 Best Supporting Actor awards?
+Brennan
+10
+
+TV/Film: Oscars: Who is the only person to win 3 Best Supporting Actor awards?
+Walter brennan
+10
+
+TV/Film: Oscars: Who made a triumphant return to the Oscars in 1972?
+Charlie chaplin
+10
+
+TV/Film: Oscars: Who starred in the 1972 film Sleuth?
+Laurence Olivier
+10
+
+TV/Film: Oscars: Who starred in the 1972 film Sleuth?
+Michael Caine
+10
+
+TV/Film: Oscars: Who was the first actor to win an Oscar posthumously?
+Peter finch
+10
+
+TV/Film: Oscars: Who was the first blind Oscar winner?
+Stevie wonder
+10
+
+TV/Film: Oscars: Who won Best Actress in 1947?
+Loretta Young
+10
+
+TV/Film: Oscars: Who won Best Director accolades for the film All Quiet on the Western Front?
+Lewis Milestone
+10
+
+TV/Film: Oscars: Who won best supporting actress in 1993?
+Anna Paquin
+10
+
+TV/Film: Oscars: who won consecutive best actress awards for 'Guess Who's Coming To Dinner' & 'The Lion In Winter'?
+Katherine hepburn
+10
+
+TV/Film: Other than mistress, how was Kristin related to J.R. Ewing?
+Sister in law
+10
+
+TV/Film: Other than the 'Tarzan' series of films, which other film and television character was created by Johnny Weismuller?
+Jungle jim
+10
+
+TV/Film: Owner of the circus in Circus Boy?
+Tim champion
+10
+
+TV/Film: Pancho was whose faithful sidekick?
+Cisco Kid's
+10
+
+TV/Film: Patrick stewart plays the part of captain Picard in this tv show?
+Star trek: the next generation
+10
+
+TV/Film: Patrick Swayze played Johnny Castle in this movie?
+Dirty Dancing
+10
+
+TV/Film: Paul Newman married which actress?
+Joanne woodward
+10
+
+TV/Film: Paul Newman plays Louisiana governor Earl Long?
+Blaze
+10
+
+TV/Film: PBS: Masterpiece Theater: ____ ____ ____ of Thika (1981)?
+The flame trees
+10
+
+TV/Film: PBS: Mystery!: ____ and Caldicott (1986)?
+Charters
+10
+
+TV/Film: PBS: Sharpe's Enemy, Sharpe's Company, Sharpe's Eagles, Sharpe's ____?
+Rifles
+10
+
+TV/Film: PBS: What 1986 Masterpiece Theater series featured a beloved English schoolteacher?
+Goodbye mr. chips
+10
+
+TV/Film: PBS: What 1995 Masterpiece Theater series starred Richard Harris as a magician?
+The great kandinsky
+10
+
+TV/Film: PBS: What musical instrument does Bertie Wooster play?
+Piano
+10
+
+TV/Film: PBS: What Mystery! series has had the most separate runs (9 through 1996)?
+Inspector morse
+10
+
+TV/Film: PBS: What was the 1977 Masterpiece Theater series about a stuttering Roman emporer?
+I claudius
+10
+
+TV/Film: PBS: What was the 1989 Mystery! series about US-Soviet intelligence in Germany?
+Game set and match
+10
+
+TV/Film: PBS: Who is the current (1996) host of Mystery!?
+Diana rigg
+10
+
+TV/Film: Peggy Lipton co-starred in this hep <g> 70's series?
+Mod squad
+10
+
+TV/Film: Peter O'Toole and Peter Strauss starred in this miniseries?
+Masada
+10
+
+TV/Film: Peter Sellers immortalized this character.?
+Jacques clouseau
+10
+
+TV/Film: Peter Sellers is best known for his role as Inspector ____?
+Clouseau
+10
+
+TV/Film: Peter Sellers is best known for his role as Inspector ____?
+Clouseau
+10
+
+TV/Film: Phil Collins song from movie of same name starring Jeff Bridges & James Woods?
+Against all odds
+10
+
+TV/Film: Phrase coined to describe Errol Flynn's unmatched success with women?
+In like flynn
+10
+
+TV/Film: played miles monroe (owner of happy carrot health food store) in sleeper?
+Woody allen
+10
+
+TV/Film: Played the part of Hans Christian Andersen in the movie of the same name?
+Danny kaye
+10
+
+TV/Film: Police: Bochco's attempt at singing police officers (lasted about 1 ep :)?
+Cop rock
+10
+
+TV/Film: Police: Bochco's classic emmy winning ensemble piece?
+Hill street blues
+10
+
+TV/Film: Police: Don Johnson and Philip Michael Thomas played... (last names)?
+Crockett & tubbs
+10
+
+TV/Film: Police: don johnson and philip michael thomas played... (last names)?
+Crockett tubbs
+10
+
+TV/Film: Police: Erik Estrada (!) & Larry Wilcox starred in...?
+Chips
+10
+
+TV/Film: Police: he played fuerillo on hill street blues?
+Daniel j. travanti
+10
+
+TV/Film: Police: in this show undercover cops infiltrate high schools?
+21 jump street
+10
+
+TV/Film: Police: Slapstick cop show, also a song by Peter Gabriel?
+Sledgehammer
+10
+
+TV/Film: Police: this series partnered a human cop with an alien one?
+Alien nation
+10
+
+TV/Film: Policeman must defuse bus which will blow if it goes below 50 miles per hour?
+Speed
+10
+
+TV/Film: Pop Kulture: What is the longest running soap opera still on the air?
+Guiding light
+10
+
+TV/Film: Popular 1970's tv series '____ and the man'?
+Chico
+10
+
+TV/Film: Possibly the richest comedian in the world?
+Jerry Steinfeld
+10
+
+TV/Film: Power Rangers: Give the coors of the replaced Rangers (alphabetical, no commas)?
+Black red yellow
+10
+
+TV/Film: Power Rangers: Identity of the Green Ranger?
+Tommy
+10
+
+TV/Film: Power Rangers: Identity of the original Black Ranger?
+Zack
+10
+
+TV/Film: Power Rangers: Name the actor TV/Film: Who played Bulk?
+Jason narvy
+10
+
+TV/Film: Power Rangers: Name the city in which the Rangers live and defend?
+Angel grove
+10
+
+TV/Film: Power Rangers: Name the robot the Green Ranger controlled?
+Dragonzord
+10
+
+TV/Film: Power Rangers: The Black Ranger's weapon of choice?
+Power axe
+10
+
+TV/Film: Power Rangers: The creator of MMPR also this similar Ranger-like show?
+Vr troopers
+10
+
+TV/Film: Power Rangers: The only lyrics in the theme song?
+Go go power rangers
+10
+
+TV/Film: Power Rangers: This phrase is always said before transforming into the Rangers?
+Its morphin time
+10
+
+TV/Film: Power Rangers: Trini is a collector of these?
+Dolls
+10
+
+TV/Film: Power Rangers: Type of robot dinosaur the Blue Ranger controls?
+Triceratops
+10
+
+TV/Film: Power Rangers: Type of robot dinosaur the Yelow Ranger controls?
+Saber-toothed tiger
+10
+
+TV/Film: Presenter of Call my Bluff?
+Bob holness
+10
+
+TV/Film: Presenter of the Time Team?
+Tony robinson
+10
+
+TV/Film: Psycho killer was recorded by this group?
+Talking heads
+10
+
+TV/Film: Pulp Fiction: book that vega read while expunging bodily wastes?
+Madame blair
+10
+
+TV/Film: Pulp Fiction: color fabienna's toothbrush?
+Red
+10
+
+TV/Film: Pulp Fiction: Mr. Wolf asks for this in his coffee?
+Lots of cream lots of sugar
+10
+
+TV/Film: Pulp Fiction: name of the resturant where robbery was held?
+Hawthorne grill
+10
+
+TV/Film: Pulp Fiction: price of seafood salad at the robbed restaurant (numerals, no period)?
+435
+10
+
+TV/Film: Pulp Fiction: sign in pawnshop say shoplifters will be...?
+Beaten to a bloody pulp
+10
+
+TV/Film: Pulp Fiction: time at which bonnie is to arrive home (numerals without colon)?
+930
+10
+
+TV/Film: Pulp Fiction: time in morning vincent brings mia to dealers house (numerals no colon)?
+130
+10
+
+TV/Film: Pulp Fiction: type of soda in brett's cup?
+Sprite
+10
+
+TV/Film: Pulp Fiction: Vince and Mia go to this restaurant. (3 wds.)?
+Jack rabbit slims
+10
+
+TV/Film: Pulp Fiction: Vincent's last name is what?
+Vega
+10
+
+TV/Film: Pulp Fiction: waiter for mia and vincent is what singer?
+Buddy holly
+10
+
+TV/Film: Pulp Fiction: What brand of car does Mr. Wolf drive?
+Acura
+10
+
+TV/Film: Quantum Leap: Admiral Al Calavicci was born in this year?
+1945
+10
+
+TV/Film: Quantum Leap: Al's last name (watch the spelling!)?
+Calavicci
+10
+
+TV/Film: Quantum Leap: Dr. Sam Beckett was born in this year?
+1953
+10
+
+TV/Film: Quantum Leap: First name of Sam's wife?
+Donna
+10
+
+TV/Film: Quantum Leap: How Al describes Sam's brain as affected by the original Leap?
+Swiss cheese
+10
+
+TV/Film: Quantum Leap: How many degrees does Sam have, including one in ancient languages?
+Six
+10
+
+TV/Film: Quantum Leap: In ep. 87, Sam Leaped into this celebrity who counseled Al about his sex life?
+Dr. ruth Westheimer
+10
+
+TV/Film: Quantum Leap: In the 1st episode, Sam Leaped into Tom Stratton, who was of this profession?
+Test pilot
+10
+
+TV/Film: Quantum Leap: J. Turner & John Cullum from this quirky hit guested in the same QL episode?
+Northern Exposure
+10
+
+TV/Film: Quantum Leap: Modern-day tycoon who with his dad exits a cab Sam is entering, in one ep?
+Donald trump
+10
+
+TV/Film: Quantum Leap: QL received 5 awards in 4 years from this org. rewarding quality TV drama?
+Viewers for quality Television
+10
+
+TV/Film: Quantum Leap: Sam first Leapt by stepping prematurely into the QL project ____?
+Accelerator
+10
+
+TV/Film: Quantum Leap: Sam Leaped into a woman for the first time in this episode?
+What price gloria
+10
+
+TV/Film: Quantum Leap: Sam Leaped out of a human body once____ into this chimpanzee. (name of chimp)?
+Bobo
+10
+
+TV/Film: Quantum Leap: Sam leaps into this blonde bombshell's chauffeur in ep. Goodbye Norma Jean?
+Marilyn Monroe
+10
+
+TV/Film: Quantum Leap: Sam saves this man from choking to death in ep. Thou Shalt Not (in-joke)?
+Henry heimlich
+10
+
+TV/Film: Quantum Leap: Sam usually says these 2 words just after Leaping, sometimes more than once?
+Oh boy
+10
+
+TV/Film: Quantum Leap: Sam's last name?
+Beckett
+10
+
+TV/Film: Quantum Leap: Sam's true love that he sees again when he leaps into one of her professors?
+Donna
+10
+
+TV/Film: Quantum Leap: Series creator Don B.'s production company: ____ Productions?
+Belisarius
+10
+
+TV/Film: Quantum Leap: Show name of the boxer Sam leaps into in the ep. The Right Hand of God?
+Kid cody
+10
+
+TV/Film: Quantum Leap: The main character, Dr. Sam Beckett, was played by this actor?
+Scott bakula
+10
+
+TV/Film: Quantum Leap: This is Sam Beckett's birthday. (Month and day)?
+August 8
+10
+
+TV/Film: Quantum Leap: This is the name of Alia's (the evil leaper) hologram partner?
+Zoey
+10
+
+TV/Film: Quantum Leap: This is the name of the computer linked to Sam and Al by their brainwaves?
+Ziggy
+10
+
+TV/Film: Quotes: Come Kirsti, time to play!?
+Hellraiser
+10
+
+TV/Film: Quotes: Did you tell him he was black?
+Diggstown
+10
+
+TV/Film: Quotes: Do you ask for justice, or revenge?
+Clash of the titans
+10
+
+TV/Film: Quotes: Drive carefully, don't forget to fasten your condom!?
+Father of the bride
+10
+
+TV/Film: Quotes: Excuse me while I whip this out?
+Blazing saddles
+10
+
+TV/Film: Quotes: I don't want to kill you and you don't wanna die?
+Silverado
+10
+
+TV/Film: Quotes: I have always depended on the kindness of strangers?
+A streetcar named desire
+10
+
+TV/Film: Quotes: I like to play with things a while?
+Flash gordon
+10
+
+TV/Film: Quotes: I promise that I will lose, for at least an hour?
+Maverick
+10
+
+TV/Film: Quotes: I sound my barbaric YAWP...?
+Dead poets society
+10
+
+TV/Film: Quotes: I've got women to do, places to see!?
+Kuffs
+10
+
+TV/Film: Quotes: I've never had a woman for a partner?
+Striking distance
+10
+
+TV/Film: Quotes: Insanity runs in my family. It practically gallops?
+Arsenic & old lace
+10
+
+TV/Film: Quotes: Just because you're paranoid doesn't mean they aren't after you?
+Catch-22
+10
+
+TV/Film: Quotes: Like drinking Drano, it cleans you out but leaves you feeling hollow inside?
+The naked gun
+10
+
+TV/Film: Quotes: Right after you left, I popped your daughter's trunk?
+Son in law
+10
+
+TV/Film: Quotes: Roger dodger, this is Chilly Willy Milli Vanilli, going in?
+Hot shots
+10
+
+TV/Film: Quotes: Show me a move, Q Ball?
+Under siege
+10
+
+TV/Film: Quotes: The shark still looks fake?
+Back to the future 2
+10
+
+TV/Film: Quotes: Wake up, time to die?
+Blade runner
+10
+
+TV/Film: Quotes: You must have been toilet trained at gun-point?
+Renaissance man
+10
+
+TV/Film: Quotes: Your ego's writing checks your body can't cash?
+Top gun
+10
+
+TV/Film: Quotes: Your partner died squealing like a pig?
+The untouchables
+10
+
+TV/Film: Quotes: Zang! (excellent! in cantonese)?
+Waynes world
+10
+
+TV/Film: Ranma 1/2 is a animation series from this country?
+Japan
+10
+
+TV/Film: RealNames:What 1933 film was the first to co-star Frederick Austerlitz and Virginia McMath?
+Flying Down to Rio
+10
+
+TV/Film: Relatives: Clark Gable's wife?
+Carol lombard
+10
+
+TV/Film: Released in 2014, what science fiction movie stars Aaron Taylor-Johnson as Ford Brody?
+Godzilla
+10
+
+TV/Film: Released in Aug 1999, starred Pierce Brosnan and Rene Russo in roles played by Steve Mcqueen and Faye Dunaway in 1968?
+The thomas crown affair
+10
+
+TV/Film: Remake:What was the title of the 1984 remake of the 1938 A Yank at Oxford?
+Oxford Blues
+10
+
+TV/Film: Remake:Which 1969 Bob Fosse musical is based on 1957's Nights of Cabiria?
+Sweet Charity
+10
+
+TV/Film: Richard Chamberlain's first name?
+George
+10
+
+TV/Film: Richard Widmark is the father in law of what famous baseball pitcher?
+Sandy koufax
+10
+
+TV/Film: Roald Dahl's Chocolate Factory was owned by whom?
+Willy Wonka
+10
+
+TV/Film: Robert de Niro movie?
+The deer hunter
+10
+
+TV/Film: Robert De Niro starred in this film?
+Raging bull
+10
+
+TV/Film: Robert Redford plays a warden in this 1980 prison drama?
+Brubaker
+10
+
+TV/Film: Robert Redford's real first name?
+Charles
+10
+
+TV/Film: Robin Hood Prince of Thieves was released in what year?
+1992
+10
+
+TV/Film: Robins Nest and George and Mildred were spin offs from which sitcom?
+Man about house
+10
+
+TV/Film: Robotech: Commander of the space fortress and Rick's true love interest?
+Lisa hayes
+10
+
+TV/Film: Robotech: Daredevil pilot who becomes one of the greatest Veritech pilots?
+Rick hunter
+10
+
+TV/Film: Robotech: Japanese-translated name of the second storyline arc?
+Sdc orguss
+10
+
+TV/Film: Robotech: Japanese-translated name of the third storyline arc?
+Sdb mospeada
+10
+
+TV/Film: Robotech: Master Veritech pilot who eventually marries the alien enemy ace?
+Maxmillian sterling
+10
+
+TV/Film: Robotech: Name of the alien ambassador, second in command of the alien fleet?
+Exedore
+10
+
+TV/Film: Robotech: Robotech is mainly based on this Japanese Animation series?
+Sdf macross
+10
+
+TV/Film: Robotech: Robotech name of the third storyline arc?
+The invid invasion
+10
+
+TV/Film: Robotech: The alien fortress crash-landed on this remote island?
+Macross island
+10
+
+TV/Film: Robotech: Total number of episodes in the entire Robotech saga?
+85
+10
+
+TV/Film: Rock Hudson's real last name?
+Fitzgerald
+10
+
+TV/Film: Rocky Horror: How many minutes long is the movie version?
+100
+10
+
+TV/Film: Rocky Horror: In what year was the movie released?
+1975
+10
+
+TV/Film: Rocky Horror: What actor played Brad Majors in the movie?
+Barry bostwick
+10
+
+TV/Film: Rocky Horror: What company produced The Rocky Horror Picture Show?
+Twentieth century fox
+10
+
+TV/Film: Rocky Horror: What is the name of the head transvestite?
+Frank n. furter
+10
+
+TV/Film: Rocky Horror: What is used to create Rocky?
+Sonic oscillator
+10
+
+TV/Film: Rocky Horror: What is written on the sign outside the Frankenstein Mansion?
+Enter at your own risk
+10
+
+TV/Film: Rocky Horror: What rating did the MPA give the movie?
+R
+10
+
+TV/Film: Rocky Horror: What was Janet's last name?
+Weiss
+10
+
+TV/Film: Rocky Horror: Where do Brad and Janet live?
+Denton
+10
+
+TV/Film: Rocky Horror: Where does Frank come from (full name)?
+Transexual transylvania
+10
+
+TV/Film: Rocky Horror: Who wrote The Rocky Horror Picture Show?
+Richard obrien
+10
+
+TV/Film: Rod Steiger played the villain in which smash hit musical (Yup, he sang, too.)?
+Oklahoma
+10
+
+TV/Film: Roles: Alice?
+Linda lavin
+10
+
+TV/Film: Roles: Edith Bunker?
+Jean stapleton
+10
+
+TV/Film: Roles: George Jefferson?
+Sherman hemsley
+10
+
+TV/Film: Roles: J.R. Ewing Jr. and Captain Tony Nelson?
+Larry hagman
+10
+
+TV/Film: Ron howard's directed his first film in 1977. What was it called?
+Grand theft auto
+10
+
+TV/Film: Ronald Coleman played Charles Rainier, an amnesia victim from WWI, in this film?
+Random harvest
+10
+
+TV/Film: Rosey Grier, Merlin Olsen, and Fred Dryer have this sport in common?
+Football
+10
+
+TV/Film: Rush Limbaugh: Call letters of the EIB flagship station in New York?
+Wabc
+10
+
+TV/Film: Rush Limbaugh: Rush event held in 1992 in Ft. Collins, Colorado?
+Dans bake sale
+10
+
+TV/Film: Rush Limbaugh: Rush Limbaugh-The Television show premiered in the fall of the year ____?
+1992
+10
+
+TV/Film: Rush Limbaugh: Rush's adopted California hometown?
+Sacramento
+10
+
+TV/Film: Rush Limbaugh: Rush's chief of staff?
+Kit carson
+10
+
+TV/Film: Rush Limbaugh: Rush's on-air name as a disc jockey?
+Jeff christie
+10
+
+TV/Film: Rush Limbaugh: The call letters of the EIB affiliate on shortwave (15.420 MHz)?
+Wrno
+10
+
+TV/Film: Rush Limbaugh: The name of Rush's newletter?
+Limbaugh letter
+10
+
+TV/Film: Rush Limbaugh: The name of Rush's second book?
+See i told you so
+10
+
+TV/Film: Russian silent (1916), story of mutiny on naval vessel?
+Battleship potemkin
+10
+
+TV/Film: Saturday morning cartoon character whose voice was provided by Michael Jackson?
+Michael Jackson
+10
+
+TV/Film: Saturday Morning Cartoons (Old and new) 10?
+Rugrats
+10
+
+TV/Film: Saturday Night Live Stars?
+Eddie Murphy
+10
+
+TV/Film: Saturday Night Live Stars?
+Eddie Murphy
+10
+
+TV/Film: Say his name 3 times?
+Beetlejuice
+10
+
+TV/Film: Scarlett O'Hara, Margaret Mitchell's Gone With the Wind lead character, was originally given which name?
+Pansy
+10
+
+TV/Film: Scary Character in Silence of the Lambs?
+Hannibal lecter
+10
+
+TV/Film: Sci-Fi: A cult classic about a government worker obsessed with a revolutionary woman?
+Brazil
+10
+
+TV/Film: Sci-Fi: A plethora of beings, including George Peppard, saves the universe?
+Battle beyond the stars
+10
+
+TV/Film: Sci-Fi: Flash Gordon freed the universe from Ming the ____?
+Merciless
+10
+
+TV/Film: Sci-Fi: He directed 2001: A Space Odyssey?
+Stanley kubrick
+10
+
+TV/Film: Sci-Fi: He played the captain of the guard in Dune?
+Patrick stewart
+10
+
+TV/Film: Sci-Fi: He played the leader of the forest people in Flash Gordon?
+Pierce brosnan
+10
+
+TV/Film: Sci-Fi: In Total Recall, oppression ended when this was created on Mars?
+Atmosphere
+10
+
+TV/Film: Sci-Fi: Movie: Starring Sigourney Weaver?
+Alien
+10
+
+TV/Film: Sci-Fi: Sci-fi thriller with Tom Selleck, Gene Simmons and Kirsti Alley?
+Runaway
+10
+
+TV/Film: Sci-fi: Series starring Gillian Anderson?
+The X files
+10
+
+TV/Film: Sci-Fi: The bounty hunter killed by Han Solo in the Creature Cantina?
+Greedo
+10
+
+TV/Film: Sci-Fi: The evil robot men in Battlestar Galactica were called ____?
+Cylons
+10
+
+TV/Film: Sci-Fi: What 1956 low budget classic co-starred Kevin McCarthy and Dana Wynter?
+Invasion of the Body Snatchers
+10
+
+TV/Film: Sci-Fi: What did HAL say would fail in 2001, A Space Odyssey?
+Antenna
+10
+
+TV/Film: Sci-Fi: What important part did Canadian Douglas Rain play in the 1968 film 2001, A Space Odyssey?
+The voice of HAL
+10
+
+TV/Film: Sci-Fi: What scary 1979 film co-starred Sigourney Weaver,Tom Skerrit and John Hurt?
+Alien
+10
+
+TV/Film: Sci-Fi: Who attemted to fix the antenna in 2001, A Space Odyssey?
+Poole
+10
+
+TV/Film: Sci-Fi: Who directed the film Invasion of the Body Snatchers?
+Don Siegel
+10
+
+TV/Film: Seinfeld: Elaine's boyfriend with the serial killer name?
+Joel rifkin
+10
+
+TV/Film: Seinfeld: George's name if he was a porno star?
+Buck naked
+10
+
+TV/Film: Seinfeld: Jerry questioned if her breasts were real (actress name)?
+Teri hatcher
+10
+
+TV/Film: Seinfeld: Kramer & Newman play this game of world conquest?
+Risk
+10
+
+TV/Film: Seinfeld: Kramer got her a pineapple Italian Ice?
+Bette midler
+10
+
+TV/Film: Seinfeld: Name of the pilot they wrote for NBC?
+Jerry
+10
+
+TV/Film: Sequels: Sequel to Die Hard was called this?
+Die harder
+10
+
+TV/Film: Sequels: What was the 1980 sequel to 1977's Oh God!?
+Oh God! Book ii
+10
+
+TV/Film: Sequels: What was the third film in the Oh God series called?
+Oh God!You Devil
+10
+
+TV/Film: Sequels: What was the title of the 1978 sequel to the 1961 The Guns of Navarone?
+Force 10 from Navarone
+10
+
+TV/Film: Sequels: What, in 1973, was the last sequel to the Planet of the Apes?
+Battle for the Planet of the Apes
+10
+
+TV/Film: Series set in Honolulu starring Jack Lord as tough cop Steve McGarrett?
+Hawaii Five-O
+10
+
+TV/Film: Series starring Leonard Rossiter as Rigsby?
+Rising damp
+10
+
+TV/Film: Sesame Street Characters?
+Big Bird
+10
+
+TV/Film: sherlock holmes: he played prof moriarty in the 1976 movie 'the seven percent solution'?
+Laurence olivier
+10
+
+TV/Film: sherlock holmes: this famous thriller writer was dr watson in the '32 film the sign of four?
+Ian fleming
+10
+
+TV/Film: Sidekicks: Cartoon characters: Beavis?
+Butthead
+10
+
+TV/Film: Sidekicks: TV characters: Laverne?
+Shirley
+10
+
+TV/Film: Sidney Poitier became the first black actor to win a Best Actor Oscar when he got the award for which film?
+Lilies of the field
+10
+
+TV/Film: Silent films in Japan were narrated by live performers called?
+Benshi
+10
+
+TV/Film: Silly comedy with Dudley Moore & Liza Minelli (freebie)?
+Arthur
+10
+
+TV/Film: Singer made his debut in The Jazz Singer?
+Neil diamond
+10
+
+TV/Film: Sitcoms: City in which Mary Richards lived?
+Minneapolis
+10
+
+TV/Film: Sitcoms: He played Jonas (Skipper) Grumby?
+Alan hale
+10
+
+TV/Film: Sitcoms: He played Latka Gravas (and his alter ego, Vic Ferrari)?
+Andy kaufman
+10
+
+TV/Film: Sitcoms: Her character once wrote a romance novel which even included cooking recipes?
+Patty duke
+10
+
+TV/Film: Sleuthing brothers played by Shaun Cassidy and Parker Stevenson?
+Hardy boys
+10
+
+TV/Film: SNL: He plays a motivational speaker who lives in a van down by the river?
+Chris farley
+10
+
+TV/Film: SNL: She was Emily Litella, Baba Wawa, and Roseanne Roseannadanna?
+Gilda radner
+10
+
+TV/Film: SNL: The Church Lady hosted this show where everything was special?
+Church chat
+10
+
+TV/Film: Southpark: during the opening sequence who is in the top right window of the school?
+Scuzzlebutt
+10
+
+TV/Film: Southpark: how does kenny sign his name on the diaherria note?
+K 
+10
+
+TV/Film: Southpark: how much does truckers special cost?
+5.99
+10
+
+TV/Film: Southpark: what are there a lot of in china, according to mrs. Cartman?
+Black people
+10
+
+TV/Film: Southpark: what is printed on chef's apron?
+Chef
+10
+
+TV/Film: Southpark: what is the name of the newspaper mr garrison is reading at the quarry?
+Rocky mtn news
+10
+
+TV/Film: Southpark: what letter is on everyones shirt at the Canadian football game?
+F
+10
+
+TV/Film: Southpark: what will you clean to support your drug habits if you fail the 3rd grade?
+Diamonds
+10
+
+TV/Film: Southpark: Who are floating above the South Park sign, during the opening credits?
+Terrance & phillip
+10
+
+TV/Film: Southpark: who drove the red truck during officer barbrady's parade?
+Jesus
+10
+
+TV/Film: Southpark: who is the first kid hit out in a dodgeball game?
+Clyde
+10
+
+TV/Film: Speedy Gonzales frustrates who in the cartoon Moby Duck?
+Daffy Duck
+10
+
+TV/Film: Sports Actors: Who starred as an Olympic skier in Downhill Racer?
+Robert redford
+10
+
+TV/Film: Sports Actors: Who starred as boxer Rocky Graziano in Somebody Up There Likes Me?
+Paul newman
+10
+
+TV/Film: Sports: After a brief NBA career, he went on to greater fame as The Rifleman?
+Chuck connors
+10
+
+TV/Film: Sports: This former NFL lineman starred in the TV series Hunter?
+Fred dryer
+10
+
+TV/Film: Sports: What former LA Rams great became a regular on Little House on the Prairie?
+Merlin olsen
+10
+
+TV/Film: Sports: What former NFL running back became a regular on Hill Street Blues?
+Ed marinaro
+10
+
+TV/Film: Star of Dances with Wolves?
+Kevin Costner
+10
+
+TV/Film: Star of Erin Brockovich?
+Julia Roberts
+10
+
+TV/Film: Star of Roman Polanskis Tess?
+Nastassja Kinski
+10
+
+TV/Film: Star of Rosemarys baby?
+Mia farrow
+10
+
+TV/Film: Star Trek: Alien Races?
+Gorn
+10
+
+TV/Film: Star Trek: at age seven spock was betrothed to who?
+T'pring
+10
+
+TV/Film: Star Trek: capt James Kirk had a son named?
+David marcus
+10
+
+TV/Film: Star Trek: capt Picard's favorite alter-ego in the holodeck?
+Dixon hill
+10
+
+TV/Film: Star Trek: Captain Edward Jellico commanded this ship in Chain of Command, Part I?
+Cairo
+10
+
+TV/Film: Star Trek: Captain James T. Kirk's Enterprise has designation NCC-1701-_?
+A
+10
+
+TV/Film: Star Trek: captain of the uss excelsior and previous helm officer of the enterprise-a?
+Hikaru sulu
+10
+
+TV/Film: Star Trek: Characters (last name only)?
+Kirk
+10
+
+TV/Film: Star Trek: Data can process this many trillion operations per second?
+60
+10
+
+TV/Film: Star Trek: Father of vulcan civilization and hero of spock?
+Surak
+10
+
+TV/Film: Star Trek: First encounter with Moriarty occurs in this episode?
+Elementary dear data
+10
+
+TV/Film: Star Trek: He plays Captain Jean-Luc Picard?
+Patrick Stewart
+10
+
+TV/Film: Star Trek: He plays Commander William T. Riker?
+Jonathan Frakes
+10
+
+TV/Film: Star Trek: He plays Lt. Commander Data?
+Brent Spiner
+10
+
+TV/Film: Star Trek: He plays Lt. Commander Worf?
+Michael Dorn
+10
+
+TV/Film: Star Trek: He plays Wesley Crusher?
+Will Wheaton
+10
+
+TV/Film: Star Trek: His uncle owns the bar on Deep Space Nine?
+Nog
+10
+
+TV/Film: Star Trek: How many episodes were there in the original Star Trek series?
+75
+10
+
+TV/Film: Star Trek: In the film 'Star Trek first contact', when Picard shows lilly she is orbiting earth, Australia & papua new guinea are clearly visible, but which country is missing?
+New zealand
+10
+
+TV/Film: Star Trek: In the original draft for the Star Trek TV series what was the name of the U.S.S. Enterprise?
+The U.S.S. Yorktown
+10
+
+TV/Film: Star Trek: In the original Star Trek series, how did a salt shaker serve as a prop on early episodes?
+A medical scanner
+10
+
+TV/Film: Star Trek: In the series 'voyager', who brought the ship to the gamma quadrant?
+The guardian
+10
+
+TV/Film: Star Trek: In the Warp engine core, matter-antimatter annihilation is regulated by this?
+Dilithium crystal
+10
+
+TV/Film: Star Trek: In what episode does Captain Kirk get married?
+Paradise syndrome
+10
+
+TV/Film: Star Trek: in what episode does kirk get married?
+Paradise syndrome
+10
+
+TV/Film: Star Trek: Jean ____ Picard?
+Luc
+10
+
+TV/Film: Star Trek: Kira's home planet?
+Bajar
+10
+
+TV/Film: Star Trek: Landru's will is enforced by them?
+Lawgivers
+10
+
+TV/Film: Star Trek: Level ____ Diagnostic is the most comprehensive type of system diagnostics?
+One
+10
+
+TV/Film: Star Trek: Name of Cirroc Lofton's character?
+Jake sisko
+10
+
+TV/Film: Star Trek: Name of Colm Meany's character?
+Miles obrien
+10
+
+TV/Film: Star Trek: Name of the O'Briens' son?
+Yoshi
+10
+
+TV/Film: Star Trek: Name of the trill inside Jadzia?
+Dax
+10
+
+TV/Film: Star Trek: Navigational deflector shields are generated by this?
+Main deflector dish
+10
+
+TV/Film: Star Trek: Picard becomes a Borg in this episode?
+Best of both worlds
+10
+
+TV/Film: Star Trek: Picard had a fling with this woman who left him for Q?
+Vash
+10
+
+TV/Film: Star Trek: Riker has a ...twin of sorts, what is his first name?
+Thomas
+10
+
+TV/Film: Star Trek: Roles: Data?
+Brent spiner
+10
+
+TV/Film: Star Trek: She carried Miles' son because Keiko could not have children?
+Major kira
+10
+
+TV/Film: Star Trek: She plays Counselor Deanna Troi?
+Marina Sirtis
+10
+
+TV/Film: Star Trek: She plays Dr. Beverly Crusher?
+Gates McFadden
+10
+
+TV/Film: Star Trek: She plays Ensign Tasha Yar?
+Denise Crosby
+10
+
+TV/Film: Star Trek: star who played an extraterrestrial in Zombies of the Stratosphere?
+Nimoy
+10
+
+TV/Film: Star Trek: The Bussard ____ scoops up interstellar gas to replenish the fuel supply?
+Ramscoop
+10
+
+TV/Film: Star Trek: the enterprise-e belongs to which class of ship?
+Sovereign
+10
+
+TV/Film: Star Trek: the federation's greatest battle with the borgs took place at which star system?
+Wolf 359
+10
+
+TV/Film: Star Trek: The first character from the original Star trek to make an appearance on New generation?
+Mccoy
+10
+
+TV/Film: Star Trek: The first character from TOS to make an appearance on TNG?
+Mccoy
+10
+
+TV/Film: Star Trek: The lirpa is the Vulcan equivalent to the Terran ____?
+Axe
+10
+
+TV/Film: Star Trek: The musical instrument Picard prizes most?
+Flute
+10
+
+TV/Film: Star Trek: The name of Data's cat?
+Spot
+10
+
+TV/Film: Star Trek: The NCC-1701D was made at which shipyard?
+Utopia planitia
+10
+
+TV/Film: Star Trek: The O'Brien's daughters first name was?
+Molly
+10
+
+TV/Film: Star Trek: the providers live on what planet?
+Triskelion
+10
+
+TV/Film: Star Trek: This character befriended Hugh...?
+Laforge
+10
+
+TV/Film: Star Trek: This character was killed by a black oil slick...?
+Yar
+10
+
+TV/Film: Star Trek: This crystal is the only material known to be nonreactive with antimatter?
+Dilithium crystal
+10
+
+TV/Film: Star Trek: This Enterprise, NCC-1701-_, is destroyed defending a Klingon outpost?
+C
+10
+
+TV/Film: Star Trek: This omnipotent letter makes live interesting on the old 1701D?
+Q
+10
+
+TV/Film: Star Trek: This person spent a season at StarFleet Medical on earth?
+Crusher
+10
+
+TV/Film: Star Trek: This race is related to the vulcans?
+Romulans
+10
+
+TV/Film: Star Trek: This RELIC made an appearance on a New Generation in the 6th Season?
+Scotty
+10
+
+TV/Film: Star Trek: This RELIC made an appearance on a TNG ep in the 6th Season?
+Scotty
+10
+
+TV/Film: Star Trek: This small device is used for voice communications and transporter lock-ons?
+Personal communicator
+10
+
+TV/Film: Star Trek: This transporter device scans matter streams for dangerous microbial patterns?
+Biofilter
+10
+
+TV/Film: Star Trek: This type of electronics is used in computer systems and networks?
+Optical electronics
+10
+
+TV/Film: Star Trek: Transporter Chief with a constantly changing rank...?
+Obrien
+10
+
+TV/Film: Star Trek: Troi's Inzadi is who?
+Riker
+10
+
+TV/Film: Star Trek: What colour was Mr Spock's blood?
+Green
+10
+
+TV/Film: Star Trek: what did the 't' stand for in captain james t. kirk?
+Tiberius
+10
+
+TV/Film: Star Trek: What does Ben Sisko toss in his office to relieve his tension?
+Baseball
+10
+
+TV/Film: Star Trek: What does Keiko do for a living?
+Botanist
+10
+
+TV/Film: Star Trek: What does Rom call his mother?
+Moogie
+10
+
+TV/Film: Star Trek: What is Data's rank?
+Lieutenant Commander
+10
+
+TV/Film: Star Trek: What is the registry number of the enterprise in the original Star Trek?
+NCC 1701
+10
+
+TV/Film: Star Trek: What was Sisko's rank before he became captain?
+Commander
+10
+
+TV/Film: Star Trek: which actor portrayed mr spock, and later wrote and directed the critically acclaimed Star Trek iv?
+Leonard nimoy
+10
+
+TV/Film: Star Trek: Which characters mother was a ship's captain?
+Laforge
+10
+
+TV/Film: Star Trek: Who commanded the U.S.S. Enterprise Before Capt. James T. Kirk took command?
+Captain Christopher Pike
+10
+
+TV/Film: Star Trek: Who is the Chief of Engineering?
+Laforge
+10
+
+TV/Film: Star Trek: Who owned Deep Space Nine before the Federation?
+The cardassians
+10
+
+TV/Film: Star Trek: who played captain james tkirk?
+William shatner
+10
+
+TV/Film: Star Trek: Who played Deanna Troi in 'Star Trek The Next Generation'?
+Marina Sirtis
+10
+
+TV/Film: Star Trek: Who seeks the advice of a hologram to pursue Kira?
+Odo
+10
+
+TV/Film: Star Trek: Who was the captain of the 'Enterprise C'?
+Rachel Garret
+10
+
+TV/Film: Star Trek: Whom does Worf babysit while the O'Briens are busy?
+Yoshi
+10
+
+TV/Film: Star Trek: Worf's son's name?
+Alexander
+10
+
+TV/Film: Star Wars: 2002, name the film?
+Attack of the Clones
+10
+
+TV/Film: Star Wars: character played by Hayden Christensen?
+Anakin Skywalker
+10
+
+TV/Film: Star Wars: character played by Natalie Portman?
+Queen Amidala
+10
+
+TV/Film: Star Wars: Characters?
+Luke Skywalker
+10
+
+TV/Film: Star Wars: darth ____?
+Vader
+10
+
+TV/Film: Star Wars: He played Han Solo in the 'Star Wars' series?
+Harrison ford
+10
+
+TV/Film: Star Wars: In 'empire strikes back' when the ghost of obi wan kenobi said that luke was their last hope against the empire, who was yoda referring to when he said?
+Princess leia
+10
+
+TV/Film: Star Wars: Name of the creature Luke fought in Jabba the Hut's place?
+Rancor
+10
+
+TV/Film: Star Wars: name the underwater gungan city?
+Otoh gunga
+10
+
+TV/Film: Star Wars: obi wan's first words to luke after being killed by darth vader?
+Run luke run
+10
+
+TV/Film: Star Wars: on which moon did the ewoks live?
+Endor
+10
+
+TV/Film: Star Wars: Original owner of C3PO and R2D2?
+Biggs
+10
+
+TV/Film: Star Wars: the white creature which captured luke skywalker on the planet hoth?
+Wampa ice creature
+10
+
+TV/Film: Star Wars: what actor supplied the voice for darth vader?
+James earl jones
+10
+
+TV/Film: Star Wars: what is the name of han solo's ship?
+Millennium falcon
+10
+
+TV/Film: Star Wars: what is the name of the emperor?
+Palpatine
+10
+
+TV/Film: Star Wars: what is the name of the fake rebel base which princess leia gives?
+Dantooine
+10
+
+TV/Film: Star Wars: What is the name of the planet that luke travels to, seeking yoda?
+Dagobah
+10
+
+TV/Film: Star Wars: what kind of a droid is c-3po?
+Protocol droid
+10
+
+TV/Film: Star Wars: what kind of droid is r2-d2?
+Astromech droid
+10
+
+TV/Film: Star Wars: what species is watto?
+Toydarian
+10
+
+TV/Film: Star Wars: What was Luke Skywalker's nickname on Tatooine?
+Wormie
+10
+
+TV/Film: Star Wars: what was the name of the planet destroyed by the death star?
+Alderaan
+10
+
+TV/Film: Star Wars: which character does denis lawson play?
+Wedge antilles
+10
+
+TV/Film: Star Wars: which planet does luke skywalker go to for his training with yoda?
+Dagobah
+10
+
+TV/Film: Star Wars: Who eventually delivered Han Solo to Jabba the Hutt?
+Boba fett
+10
+
+TV/Film: Star Wars: who is anakin skywalker's mother?
+Shmi skywalker
+10
+
+TV/Film: Star Wars: Who is c3 po's sidekick?
+R2d2
+10
+
+TV/Film: Star Wars: Who played Admiral Ackbar?
+Tim rose
+10
+
+TV/Film: Star Wars: Who played princess leia?
+Carrie fisher
+10
+
+TV/Film: Star Wars: who played Queen Amidala?
+Natalie Portman
+10
+
+TV/Film: Star Wars: Who trained Darth Vader as a jedi?
+Obi wan kenobi
+10
+
+TV/Film: Star Wars: Who trained Obi Wan Kenobi as a Jedi?
+Qui-gon jinn
+10
+
+TV/Film: Star Wars: Who was C3P0's sidekick?
+R2D2
+10
+
+TV/Film: Star Wars: Who was Luke Skywalker's trusty astromech droid?
+R2d2
+10
+
+TV/Film: Star Wars: Who was the villain in 'Star Wars'?
+Darth vader
+10
+
+TV/Film: Star Wars: who were the imperial officers mentioned in Star Wars, other than darth vader?
+Tarkin and motti
+10
+
+TV/Film: Star Wars: who were the other two imperial officers mentioned in Star Wars?
+Tarkin and Motti
+10
+
+TV/Film: Starfleet Commander Riker (Next Generation) plays what musical instrument?
+Trombone
+10
+
+TV/Film: stars from guiding light continued their roles in this two-hour prime-time dramatic special (1983)?
+The cradle will fall
+10
+
+TV/Film: Steve martin's cyrano was in love with this woman whose name was also the movie title. Name her?
+Roxanne
+10
+
+TV/Film: Sting and Jennifer Beals in this remake of The Bride of Frankenstein?
+The bride
+10
+
+TV/Film: Studios: What Studio produced Merrie Melodies?
+Warner Brothers
+10
+
+TV/Film: Studios: What Studio produced Silly Symphonies?
+Disney
+10
+
+TV/Film: Sylvester the cartoon cat is always trying to catch a little yellow canary, what is its name?
+Tweetie Pie
+10
+
+TV/Film: Tag Lines: 1940s: Walt Disney's Technicolor FEATURE triumph!?
+Fantasia
+10
+
+TV/Film: Tag Lines: 1950s: Teenage terror torn from today's headlines?
+Rebel without a cause
+10
+
+TV/Film: Tag Lines: 1950s: The movie too HOT for words!?
+Some like it hot
+10
+
+TV/Film: Tag Lines: 1960s: This is Benjamin. He's a little worried about his future?
+The graduate
+10
+
+TV/Film: Tag Lines: 1970s: In space, no one can hear you scream?
+Alien
+10
+
+TV/Film: Tag Lines: 1980s: 17 year old Marty McFly got home early last night. 30 years early?
+Back to the future
+10
+
+TV/Film: Tag Lines: 1980s: 40 stories of sheer adventure!?
+Die hard
+10
+
+TV/Film: Tag Lines: 1980s: I am not an animal! I am a human being!?
+The elephant man
+10
+
+TV/Film: Tag Lines: 1990s: A little pig goes a long way?
+Babe
+10
+
+TV/Film: Tag Lines: 1990s: A message from deep space. Who will be the first to go?
+Contact
+10
+
+TV/Film: Tag Lines: 1990s: Fear can hold you prisoner. Hope can set you free?
+The shawshank redemption
+10
+
+TV/Film: Tag Lines: 1990s: Gluttony, greed, sloth, envy, wrath, pride, lust?
+Se7en
+10
+
+TV/Film: Tag Lines: 1990s: In 1977, Sex was safe. Pleasure was a business. And Business was booming?
+Boogie Nights
+10
+
+TV/Film: Tag Lines: 1990s: In order to catch him, he must become him?
+Face/off
+10
+
+TV/Film: Tag Lines: 1990s: Off the record, on the QT, and very hush-hush?
+L.a. confidential
+10
+
+TV/Film: Tag Lines: 1990s: On the air, unaware?
+The truman show
+10
+
+TV/Film: Tag Lines: 1990s: Someone has taken their love of scary movies one step too far?
+Scream
+10
+
+TV/Film: Tag Lines: 1990s: The toys are back in town?
+Toy story
+10
+
+TV/Film: Tag Lines: 1990s: What kind of man would defy a king?
+Braveheart
+10
+
+TV/Film: Tag Lines: Alfred Hitchcock engulfs you in a whirlpool of terror and tension!?
+Vertigo
+10
+
+TV/Film: Tag Lines: Frozen in the 60's...thawing spring '97, baby! Debonair. Defiant. Defrosted?
+Austin powers
+10
+
+TV/Film: Tag Lines: It's nothing personal?
+Terminator 2
+10
+
+TV/Film: Tag Lines: Makes Ben Hur look like an Epic?
+Monty python and the holy grail
+10
+
+TV/Film: Tag Lines: What is the name of Aladdin's pet monkey?
+Abu
+10
+
+TV/Film: Tag Lines: What was Pluto's original name?
+Rover
+10
+
+TV/Film: Tag Lines: What was the first full-length, live-action Disney film to receive an Oscar?
+20000 leagues under the sea
+10
+
+TV/Film: Tag Lines: With love comes risk. With obsession comes...?
+Damage
+10
+
+TV/Film: Talking Heads concert film brilliantly shot by Jonathan Demme?
+Stop making sense
+10
+
+TV/Film: Tarantino: Butch went to great lengths to obtain this item in Pulp Fiction?
+Gold watch
+10
+
+TV/Film: Tarantino: Harvey Keitel had a role similar to the one he had in PF in which film?
+Point of no return
+10
+
+TV/Film: Tarantino: He produced both Reservoir Dogs and Pulp Fiction; long haired yuppy scum?
+Lawrence bender
+10
+
+TV/Film: Tarantino: He provided the voice for K-Billy's Super Sounds of the 70s announcer?
+Steven wright
+10
+
+TV/Film: Tarantino: Played Mr. Brown in RD; Jimmy in PF?
+Quentin tarantino
+10
+
+TV/Film: Tarantino: Played Mr. Pink in RD; played Buddy Holly waiter in PF?
+Steve buscemi
+10
+
+TV/Film: tarantino: pulp fiction won this award at the 1994 cannes film festival?
+Palme dor
+10
+
+TV/Film: Tarantino: QT had originally planned to be which character in RD?
+Mr pink
+10
+
+TV/Film: Tarantino: QT made an appearance in this film telling what Top Gun is REALLY about. :)?
+Sleep with me
+10
+
+TV/Film: tarantino: qt used to refer to this film as `the reservoir film'?
+Au revoir les enfants
+10
+
+TV/Film: tarantino: qt's first script that was made into a full-length film?
+True romance
+10
+
+TV/Film: Tarantino: This female character is mentioned in RD and is a main character in TR?
+Alabama
+10
+
+TV/Film: tarantino: which one of the crooks in rd refuses to leave a tip?
+Mr pink
+10
+
+TV/Film: Tarantino: Who gives Clarence guidance and advice in True Romance?
+Elvis presley
+10
+
+TV/Film: Television show: the comfy ____?
+Couch
+10
+
+TV/Film: Television shows/series or movies filmed in BC?
+X-files
+10
+
+TV/Film: Telly Savalas played which TV detective?
+Kojak
+10
+
+TV/Film: The ____ Of Oz?
+Wizard
+10
+
+TV/Film: The (then) 12 year old actress who starred in 'The Professional'?
+Natalie portman
+10
+
+TV/Film: The 1974 film Lenny is about the life of which American comedian?
+Lenny bruce
+10
+
+TV/Film: The 1st academy awards were presented in what year?
+1927
+10
+
+TV/Film: The actor who played Captain Sisko in 'Star Trek Deep Space Nine', played ____ the 1970's series 'Spencer For Hire'?
+Hawk
+10
+
+TV/Film: The Biz:What director was responsible for the top grossing film of the 60's?
+Robert Wise
+10
+
+TV/Film: the bunkers had neighbors who got their own series. Their last name was what?
+Jefferson
+10
+
+TV/Film: The car everyone was looking for?
+54
+10
+
+TV/Film: The characters Bert & Ernie on Sesame Street were named after Bert the cop & Ernie the taxi driver in what move by Frank Capra?
+Its a wonderful life
+10
+
+TV/Film: The characters of homer, marge, lisa, & maggie were given the same first names as who's real life father, mother, & two sisters?
+Matt groening 
+10
+
+TV/Film: The climax of what Spielberg film takes place at Devil's Tower?
+Close encounters of the third kind
+10
+
+TV/Film: The Coen brothers remade which 1969 classic western film in 2010?
+True Grit
+10
+
+TV/Film: The director of BIG?
+Penny marshall
+10
+
+TV/Film: The director of Jaws, Raiders of the Lost Ark?
+Stephen spielberg
+10
+
+TV/Film: the director of raiders of the lost ark?
+Spielberg
+10
+
+TV/Film: the ed ____ show?
+Sullivan
+10
+
+TV/Film: The female lead in 'The Blue Lagoon'?
+Brooke shields
+10
+
+TV/Film: The female lead in tr baskin was played by what actress?
+Christmas 
+10
+
+TV/Film: The film 'Dancer in the dark' features which pop star?
+Bjork
+10
+
+TV/Film: The film 'The Bishop's Wife' was released in what year?
+1947
+10
+
+TV/Film: The film 'The Wizard Of ____'?
+Oz
+10
+
+TV/Film: The film 'The Wizard of Oz' was released in which year?
+1939
+10
+
+TV/Film: The film Apocalypse Now was based on whose novel?
+Joseph conrad
+10
+
+TV/Film: The film Casablanca starred Humphrey Bogart and Ingrid Bergman but who were the two stars originally set to star in this classic film?
+Ann Sheridan & Ronald Reagan
+10
+
+TV/Film: The film chinatown was released in what year?
+1974
+10
+
+TV/Film: The film MASH was set during which war?
+Korean
+10
+
+TV/Film: the final dance number always had lots of bubbles?
+Lawrence welk show
+10
+
+TV/Film: The first ____ on tv was 'a woman to remember'. It began on the dumont tv network on february 21, 1947?
+Soap opera
+10
+
+TV/Film: The first 18 minutes of this movie is black and white?
+Wizard of oz
+10
+
+TV/Film: The first 18 minutes of this movie is in black and white?
+Wizard of Oz
+10
+
+TV/Film: The first person to interview Frank Sinatra on a TV talk show (1984)?
+Jerry lewis
+10
+
+TV/Film: The Flintstones pet dinosaur was called what?
+Dino
+10
+
+TV/Film: The grumpy teacher in Grange Hill?
+Mr Bronson
+10
+
+TV/Film: The heaviest character in Bill Cosby's repertoire?
+Fat albert
+10
+
+TV/Film: The highest tv audience of nearly 140 million viewers was achieved for which broadcast?
+Superbowl xxx
+10
+
+TV/Film: The hollywood version of the french hit 'les comperes' is ____ ____ , starring robin williams & billy crystal?
+Father's day
+10
+
+TV/Film: The hollywood walk of fame star was awarded to ernest tubb for ____?
+Music
+10
+
+TV/Film: The hospital in which the Doctor Kildare series was set?
+Blair general
+10
+
+TV/Film: The housewives favorite gardener?
+Alan Titchmarsh
+10
+
+TV/Film: The Jets and the Sharks are in what Oscar-winning movie?
+West Side Story
+10
+
+TV/Film: The les nessman character on the tv series wkrp in cincinnati wore what in every episode?
+Band aid
+10
+
+TV/Film: The line 'no soup for you, come back 1 year!' was from which sitcom?
+Seinfeld
+10
+
+TV/Film: The McKenzie Brothers SCTV talk show?
+The great white north
+10
+
+TV/Film: The murder weapon in the movie Basic Instinct was what?
+Ice pick
+10
+
+TV/Film: The name of Dagwood Bumstead's friend & neighbor?
+Herb woodley
+10
+
+TV/Film: The oldest male to win an Oscar?
+George burns
+10
+
+TV/Film: The rapid flashing of what cartoon sent 618 Japanese children to hospitals with nausea and seizures?
+Pokemon
+10
+
+TV/Film: In The Simpsons, what are Lisa & Maggie's favourite cartoon characters?
+The Happy Little Elves 
+10
+
+TV/Film: The Simpsons: 1990s: In 1992, which Simpson made the cover of bowling magazine?
+Homer simpson
+10
+
+TV/Film: The Simpsons: Bart has foiled this evil genius, Krusty's former sidekick, five times?
+Sideshow bob
+10
+
+TV/Film: The Simpsons: Bart Simpsons sister's name?
+Lisa
+10
+
+TV/Film: The Simpsons: Before Maggie's conception, Homer quit the Power Plant to work here?
+Barneys bowlarama
+10
+
+TV/Film: The Simpsons: Both marge simpson and jackie kennedy have the same maiden name. what is it?
+Bouvier
+10
+
+TV/Film: The Simpsons: burns' beloved teddy-bear?
+Bobo
+10
+
+TV/Film: The Simpsons: from what country is groundskeeper willie from?
+Scotland
+10
+
+TV/Film: The Simpsons: He is the driver of the mono-rail?
+Homer simpson
+10
+
+TV/Film: The Simpsons: Homer was committed to an insane asylum after coming to work wearing this?
+A pink shirt
+10
+
+TV/Film: The Simpsons: Homer works at this type of energy plant?
+Nuclear
+10
+
+TV/Film: The Simpsons: Homer works the night shift at this place to pay for Lisa's pony?
+Kwik-e-mart
+10
+
+TV/Film: The Simpsons: How much did it cost Milhouse to buy Bart's soul?
+$5
+10
+
+TV/Film: The Simpsons: How much does Homer charge for eternal happiness in his telemarketing scam?
+$1
+10
+
+TV/Film: The Simpsons: How old are Bart and Lisa (# & #)?
+Ten and eight
+10
+
+TV/Film: The Simpsons: In a fortune teller's prediction, Lisa will get engaged to this British man?
+Hugh parkfield
+10
+
+TV/Film: The Simpsons: in one episode, who moved in across the street from the simpsons?
+George bush
+10
+
+TV/Film: The Simpsons: In the episode when Ned's house is destroyed, what does Bart reply to him after Ned says something mean to him?
+I am shocked and appalled
+10
+
+TV/Film: The Simpsons: In the opening credits, how many cars do the Simpsons have?
+Two
+10
+
+TV/Film: The Simpsons: In which movie was Moe in?
+Little rascals
+10
+
+TV/Film: The Simpsons: Lisa plays this instrument?
+Saxaphone
+10
+
+TV/Film: The Simpsons: Marge simpson has the same maiden name as a former first lady . name the former first lady?
+Jackie kennedy
+10
+
+TV/Film: The Simpsons: Milhouse was the movie sidekick of what comic book hero?
+Radioactive man
+10
+
+TV/Film: The Simpsons: Moe makes him box against champion Drederick Tatum?
+Homer
+10
+
+TV/Film: The Simpsons: Mr. Burns runs for this office?
+Governor
+10
+
+TV/Film: The Simpsons: Principal Skinner once proposed marriage to her, the celibate Bouvier twin?
+Patty
+10
+
+TV/Film: The Simpsons: She is the voice of Bart Simpson?
+Nancy cartwright
+10
+
+TV/Film: The Simpsons: She is the voice of Lisa?
+Yeardley smith
+10
+
+TV/Film: The Simpsons: simpsons creator matt groening named homer, marge, lisa & maggie after his parents & sisters, respectively. But who is bart named for?
+No one
+10
+
+TV/Film: The Simpsons: The babershop quartet that Homer was in?
+Be Sharp
+10
+
+TV/Film: The Simpsons: The barber shop quartet that Homer was in?
+Be sharp
+10
+
+TV/Film: The Simpsons: The first name of Homer's dad?
+Abraham
+10
+
+TV/Film: The Simpsons: The name of Mr. Burns assistant?
+Smithers
+10
+
+TV/Film: The Simpsons: The name of the amorous French bowling instructor who propositioned Marge?
+Jacques brunswick
+10
+
+TV/Film: The Simpsons: The name of the Quicki-Mart owner?
+Apu
+10
+
+TV/Film: The Simpsons: The name of the Simpsons neighbors?
+Flanders
+10
+
+TV/Film: The Simpsons: The Red Hot Chili Peppers play at a benefit for him?
+Krusty
+10
+
+TV/Film: The Simpsons: The Simpsons began as cartoon shorts on what show?
+Tracey ullman show
+10
+
+TV/Film: The Simpsons: WakkoJr was pleased when this Simpson character became a vegetarian?
+Lisa
+10
+
+TV/Film: The Simpsons: what are the names of marge's twin sisters?
+Patty and selma
+10
+
+TV/Film: The Simpsons: What concert does Homer take Bart & Lisa too?
+Lollapalooza
+10
+
+TV/Film: The Simpsons: what did homer carve his chili spoon from?
+A bigger spoon
+10
+
+TV/Film: The Simpsons: what does apu say to every customer as they leave the kwik-e-mart?
+Thank you, come again
+10
+
+TV/Film: The Simpsons: what does nelson say when something bad happens?
+Ha ha
+10
+
+TV/Film: The Simpsons: What glass-jawed former heavyweight contender was once spoofed on The Simpsons?
+Gerry Cooney
+10
+
+TV/Film: The Simpsons: what is apu's last name (if you get this, you're a god :)?
+Nahasapeemapetilon
+10
+
+TV/Film: The Simpsons: what is apu's surname?
+Nahasapheemapetilon
+10
+
+TV/Film: The Simpsons: what is bart's don named?
+Santa's little helper
+10
+
+TV/Film: The Simpsons: what is bart's favorite comic book?
+Radioactive man
+10
+
+TV/Film: The Simpsons: what is homer's favorite brand of beer?
+Duff
+10
+
+TV/Film: The Simpsons: What is Homers job at the nuclear power plant?
+Safety inspector
+10
+
+TV/Film: The Simpsons: what is krusty the clowns real name?
+Herschel krustofsky
+10
+
+TV/Film: The Simpsons: what is lisa and bart's favorite cartoon show?
+Itchy and scratchy
+10
+
+TV/Film: The Simpsons: what is lisa's future occupation according to the cant test?
+Homemaker
+10
+
+TV/Film: The Simpsons: What is Mo's surname?
+Sizlac
+10
+
+TV/Film: The Simpsons: What is the chief of polices' name?
+Clancy wiggum
+10
+
+TV/Film: The Simpsons: What is the name of Mr Burns' beloved bear?
+Bobo
+10
+
+TV/Film: The Simpsons: What is the name of the Simson's cat?
+Snowball
+10
+
+TV/Film: The Simpsons: What is the name of the Simson's cat?
+Snowball ii
+10
+
+TV/Film: The Simpsons: what is the school principal's full name?
+Seymour skinner
+10
+
+TV/Film: The Simpsons: what is the secret ingredient in a flaming moe?
+Cough syrup
+10
+
+TV/Film: The Simpsons: What is the Springfield equivalent of Barbie?
+Malibu stacy
+10
+
+TV/Film: The Simpsons: What Simpson had a crush on his/her substitute teacher?
+Lisa
+10
+
+TV/Film: The Simpsons: What street do the Simpsons live on?
+Evergreen terrace
+10
+
+TV/Film: The Simpsons: What theme park do Marges' sisters take Bart and Lisa too?
+Duff gardens
+10
+
+TV/Film: The Simpsons: what town do the simpsons live in?
+Springfield
+10
+
+TV/Film: The Simpsons: What was the name of the Flanders' store?
+The leftorium
+10
+
+TV/Film: The Simpsons: What were Bart's first words?
+Aye carumba
+10
+
+TV/Film: The Simpsons: when marge & homer first met in high school, where were they?
+Detention room
+10
+
+TV/Film: The Simpsons: Which of marges' sisters has resorted to a life of celibacy?
+Patty
+10
+
+TV/Film: The Simpsons: Who are the twins in Barts class?
+Sherry and terry
+10
+
+TV/Film: The Simpsons: who created the simpsons?
+Matt groening
+10
+
+TV/Film: The Simpsons: Who is Bart's teacher?
+Mrs krabappel
+10
+
+TV/Film: The Simpsons: who is homer simpson's brother (first and last name)?
+Herb powell
+10
+
+TV/Film: The Simpsons: Who is patty and Selma's favourite t.v star?
+Mcgyver
+10
+
+TV/Film: The Simpsons: Who is Radioactive Man's sidekick?
+Fallout boy
+10
+
+TV/Film: The Simpsons: Who is the Channel 5 action news presenter?
+Kent brockman
+10
+
+TV/Film: The Simpsons: Who is the founder of Springfield?
+Jebediah springfield
+10
+
+TV/Film: The Simpsons: Who is the principal of the school Bart & Lisa attend?
+Seymore skinner
+10
+
+TV/Film: The Simpsons: Who opened up Springfield Casino?
+Mr burns
+10
+
+TV/Film: The Simpsons: Who replaced Side-show Bob?
+Side-show mel
+10
+
+TV/Film: The Simpsons: Who shot Mr Burns?
+Maggie
+10
+
+TV/Film: The Simpsons: Who shot Mr. Burns?
+Maggie Simpson
+10
+
+TV/Film: The Simpsons: who was millhouse's first girlfriend(first and last name)?
+Samantha stanky
+10
+
+TV/Film: The Simpsons: Who was the voice for maggies first word?
+Elizabeth taylor
+10
+
+TV/Film: The skipper's first & last name on 'gilligan's island' is ____?
+Jonas grumby
+10
+
+TV/Film: The song 'A Whole New World' comes from which Disney film?
+Aladdin
+10
+
+TV/Film: The song 'Evergreen' features in which Barbra Streisand film?
+A star is born
+10
+
+TV/Film: The story about a king who prematurely divides his kingdom between his daughters is portrayed in which film?
+King lear
+10
+
+TV/Film: The Swiss Family ____?
+Robinson
+10
+
+TV/Film: the tick: what job did arthur have before became the ticks sidekick?
+An accountant
+10
+
+TV/Film: The voice for Sheriff Woody in 'Toy Story' was who?
+Tom Hanks
+10
+
+TV/Film: The wartime documentaries December 7th and The Battle of Midway were directed by what famous American Director?
+John Ford
+10
+
+TV/Film: The weatherman on the Today Show (prior to 1993)?
+Willard scott
+10
+
+TV/Film: The Wrath of Khan was what number Star Trek movie?
+II
+10
+
+TV/Film: The year the MGM movie Wizard of Oz was released?
+1939
+10
+
+TV/Film: Themes: ... in charge of our days and our night?
+Charles in charge
+10
+
+TV/Film: Themes: Believe it or not, it's just me?
+Greatest American hero
+10
+
+TV/Film: Themes: But those dreams have remained and they've turned around...?
+Welcome back kotter
+10
+
+TV/Film: Themes: Drive! Push it to the floor till the engine screams?
+Hardcastle and mccormick
+10
+
+TV/Film: Themes: Here we are, face to face, a couple of ____?
+Silver spoons
+10
+
+TV/Film: Themes: High winds in northern sky will carry you away, you know you have to leave here?
+Due south
+10
+
+TV/Film: Themes: I bet we've been together for a million years...?
+Family ties
+10
+
+TV/Film: Themes: I've been down this road, walking the line that's painted by pride...?
+Ally mcbeal
+10
+
+TV/Film: Themes: In West Philadelphia I was born and raised...?
+The fresh prince of bel air
+10
+
+TV/Film: Themes: Just two good old boys, never meaning no harm...?
+The dukes of hazzard
+10
+
+TV/Film: Themes: These days are ours...?
+Happy days 
+10
+
+TV/Film: Themes: Well, it's a 5 o'clock world when the whistle blows...?
+The drew carey show
+10
+
+TV/Film: Themes: What would you do if I sang out tune?
+Wonder years
+10
+
+TV/Film: These two brothers played the title roles in the 1990 movie 'The Krays'?
+Gary & Martin Kemp
+10
+
+TV/Film: This 1956 feature classic proved that Marilyn Monroe actually could act?
+Bus stop
+10
+
+TV/Film: This 1960's series starred Mia Farrow & Ryan O'neal?
+Peyton place
+10
+
+TV/Film: This 1983 series was cancelled and then renewed as a result of audience demand?
+Cagney and lacey
+10
+
+TV/Film: This actor played Dr. Haywood Floyd?
+William sylvester
+10
+
+TV/Film: This actor was a member of the sitcom, 'Night Court' & also narrated the gruesome 'Texas Chain Saw Massacre'?
+John larroquette
+10
+
+TV/Film: this actress made her first million before the age of ten?
+Shirley temple
+10
+
+TV/Film: This actress was a child when she starred in National Velvet?
+Elizabeth taylor
+10
+
+TV/Film: This actress was Miss Hungary of 1936?
+Zsa-zsa gabor
+10
+
+TV/Film: This actress was Miss Hungary of 1936?
+Zsa-Zsa Gabor
+10
+
+TV/Film: This Canadian actress played in superman?
+Margot kidder
+10
+
+TV/Film: This Clark Gable/Claudette Colbert film kicked butt in 1934?
+It happened on night
+10
+
+TV/Film: This Clark Gable/Claudette Colbert film kicked butt in 1934?
+It happened one night
+10
+
+TV/Film: This comedy drama focused on a family with eight children?
+Eight is enough
+10
+
+TV/Film: This comedy series won the best actor & best supporting actress Emmies in 1981 82?
+Mash
+10
+
+TV/Film: This comedy was the first color movie for Bob Hope?
+The paleface
+10
+
+TV/Film: This dancer appeared in the film The Turning Point?
+Baryshnikov
+10
+
+TV/Film: This director's films include platoon, the doors & natural born killers?
+Oliver stone
+10
+
+TV/Film: This Disney movie relies heavily on computer animation?
+Tron
+10
+
+TV/Film: This Disney movie relies heavily on computer animation?
+TRON
+10
+
+TV/Film: This excellent film received the most nominations ever?
+All about eve
+10
+
+TV/Film: This failed Fox comedy starred Richard Lewis and Don Rickles?
+Daddy dearest
+10
+
+TV/Film: This famous costume designer won 8 individual Oscars?
+Edith head
+10
+
+TV/Film: This film from 2013 tells the story of Jeanette Francisa, a rich Manhattan socialite who falls onto hard times?
+Blue Jasmine
+10
+
+TV/Film: This film starring Julie Andrews and Christopher Plummer wont he best picture Oscar for 1965?
+Sound of music
+10
+
+TV/Film: This film starring Julie Andrews and Christopher Plummer wont he best picture Oscar for 1965?
+Sound of Music
+10
+
+TV/Film: This film starring Richard Beymer and Natalie Wood won the best picture Oscar for 1961?
+West side story
+10
+
+TV/Film: This film starring Richard Beymer and Natalie Wood won the best picture Oscar for 1961?
+West Side Story
+10
+
+TV/Film: This film was an ambitious concert sequence of cartoons by Walt Disney?
+Fantasia
+10
+
+TV/Film: This film was an ambitious concert sequence of cartoons by Walt Disney?
+Fantasia
+10
+
+TV/Film: this flick swept the 1991 academy awards?
+Silence of the lambs
+10
+
+TV/Film: This gangster was nicknamed 'Scarface'?
+Al Capone
+10
+
+TV/Film: This is a classic film about a huge gorilla?
+King kong
+10
+
+TV/Film: This is a classic film about a huge gorilla?
+King Kong
+10
+
+TV/Film: This is Disney's 25th animated feature?
+Black cauldron
+10
+
+TV/Film: This is the black counterpart to American Bandstand?
+Soul train
+10
+
+TV/Film: This movie directed by Woody Allen won the best picture Oscar in 1978?
+Annie hall
+10
+
+TV/Film: This movie directed by Woody Allen won the best picture Oscar in 1978?
+Annie Hall
+10
+
+TV/Film: This movie had mira sorvino playing the role of a callgirl, in which she won an oscar?
+Mighty aphrodite
+10
+
+TV/Film: this movie hero was a defender of the weak, champion of justice?
+Lone ranger
+10
+
+TV/Film: This movie is about the migration of poor workers from the dust bowl to the Californian fruit valleys?
+The grapes of wrath
+10
+
+TV/Film: This movie is about the migration of poor workers from the dust bowl to the Californian fruit valleys?
+The Grapes of Wrath
+10
+
+TV/Film: This movie starring Marlon Brando won the best picture award in 1972?
+The godfather
+10
+
+TV/Film: This movie starring Marlon Brando won the best picture award in 1972?
+The Godfather
+10
+
+TV/Film: This movie starring sam neill won best movie in the 1993 cannes film festival?
+Piano
+10
+
+TV/Film: This muppet wears dark glasses & plays the saxophone?
+Zoot
+10
+
+TV/Film: This new trendy science didn't really belong in Jurassic Park?
+Chaos theory
+10
+
+TV/Film: This person has the nickname (The Fresh Prince)?
+Will Smith
+10
+
+TV/Film: This private eye had a criminal fiend named Ice Pick?
+Magnum
+10
+
+TV/Film: This producer of dynasty was inducted into the 1983 guinness book of world records as the most prolific tv producer?
+Aaron spelling
+10
+
+TV/Film: This series was originally going to be called Oil?
+Dynasty
+10
+
+TV/Film: This show had two cousins named Luke & Bo?
+The dukes of hazzard
+10
+
+TV/Film: This South Park character is normaly killed off in every episode?
+Kenny
+10
+
+TV/Film: This talk show host played the role of Sofia in the Colour Purple?
+Oprah Winfrey
+10
+
+TV/Film: This tv show performer was known as 'the shnozz' & ended every show with 'goodnight mrs. Calabash, wherever you are'?
+Jimmy durante
+10
+
+TV/Film: This was the first 3-D film?
+Bwana devil
+10
+
+TV/Film: This was the first 3D film?
+Bwana Devil
+10
+
+TV/Film: This was the first cartoon talking picture?
+Steamboat willie
+10
+
+TV/Film: This was the first cartoon talking picture?
+Steamboat Willie
+10
+
+TV/Film: though widely perceived to be an Australian, mel gibson was born in?
+New york usa
+10
+
+TV/Film: Threes Company: Chrissy won this fabulous prize in a grocery store contest?
+Turkey baster
+10
+
+TV/Film: Threes Company: Jack eventually left the apartment to move in with this girl?
+Vicky
+10
+
+TV/Film: Threes Company: Jack faked this condition after wrecking Janet's car?
+Amnesia
+10
+
+TV/Film: Threes Company: Janet became a real floozy when she got this fashion accessory?
+Blonde wig
+10
+
+TV/Film: Threes Company: Janet was saving this for when she got married, but Jack destroyed it?
+Grandmothers vase
+10
+
+TV/Film: Threes Company: Larry's last name was Dallas, but he wasn't a Texan. What nationality was he?
+Greek
+10
+
+TV/Film: Threes Company: The girls convinced Mr Roper to let Jack live with them by telling him Jack was?
+Gay
+10
+
+TV/Film: Threes Company: This roommate came before Terri and after Chrissy?
+Cindy
+10
+
+TV/Film: Threes Company: Three's Company spun off this show focusing on Jack?
+Threes a crowd
+10
+
+TV/Film: Threes Company: What year and make was Mr. Roper's car?
+58 chevy
+10
+
+TV/Film: Threes Company: When Jack got his own restaurant, he named it this?
+Jacks bistro
+10
+
+TV/Film: Threes Company: When Jack was in the military, what sport did he compete in?
+Boxing
+10
+
+TV/Film: Threes Company: Which one of the roommates was a medical professional?
+Terri
+10
+
+TV/Film: Thriller:In the movie Psycho what did they use for blood in the shower scene?
+Chocolate sauce
+10
+
+TV/Film: Thriller:What Hitchcock film featured sisters Marion and Lila Crane?
+Psycho
+10
+
+TV/Film: Tim Robbins satire about a right-wing, folk singing, Senatorial candidate?
+Bob roberts
+10
+
+TV/Film: Timothy Dalton starred in this flashy sci-fi film?
+Flash gordon
+10
+
+TV/Film: Tippi Hedren is best known for her lead role in which film?
+The Birds
+10
+
+TV/Film: To what was Spielberg referring when he said - this is the best drink of water after the longest drought of my life?
+His oscar for schindlers list
+10
+
+TV/Film: To which elemetary school did TV's 'Brady Bunch' go?
+Dixie Canyon Elementary
+10
+
+TV/Film: Tom Cruise and Demi Moore in a story of US Navy courtroom battle?
+A few Good Men
+10
+
+TV/Film: Tom Hanks had a canine partner in...?
+Turner hooch
+10
+
+TV/Film: Tom Hanks may want to forget he did this 1984 T&A comedy?
+Bachelor party
+10
+
+TV/Film: Tom hanks won the 1993 academy award for his performance in what movie?
+Philadelphia 
+10
+
+TV/Film: Tony curtis enters the world of escapism as he ably portrays escape artist?
+Harry houdini
+10
+
+TV/Film: Toons:What 1986 animated feature was directed by Don Bluth?
+An American Tail
+10
+
+TV/Film: Toons:What 1986 animated feature was produced by Steven Spielberg?
+An American Tail
+10
+
+TV/Film: Toons:What famous conductor participated in Disney's 1940 classic Fantasia?
+Leopold Stokowski
+10
+
+TV/Film: Toons:What former TV M.A.S.H. alumnus was the voice of cogsworth in the 1991 Beauty and the Beast?
+David Ogden Stiers
+10
+
+TV/Film: Toons:What toon superstar did Bob Clampett create?
+Bugs Bunny
+10
+
+TV/Film: Toons:Who created toon superstar Bugs Bunny?
+Bob Clampett
+10
+
+TV/Film: Toons:Who was the model for the sorcerer, Yensid, in the Sorcer's Apprentice segment of the 1940's Fantasia?
+Walt Disney
+10
+
+TV/Film: Tramp was the name of what animal on the show My Three Sons?
+Dog
+10
+
+TV/Film: Transport: Batman and Robin drove the Batmobile. What sort of vehicle did Batgirl use?
+Motorcycle
+10
+
+TV/Film: Transport: Bo and Luke Duke's car went by this name?
+General lee
+10
+
+TV/Film: Transport: Michael Knight's car was named K.I.T.T., which stood for?
+Knight industries two thousand
+10
+
+TV/Film: Transport: Mork's spaceship, to an earthling, appeared to be a giant one of these?
+Egg
+10
+
+TV/Film: Transport: Name That Show: Jerry Van Dyke is related to an automobile?
+My mother the car
+10
+
+TV/Film: Transport: Name That Show: Murray, Cody, Nick & RoboBoz live on a boat & solve crimes?
+Riptide
+10
+
+TV/Film: Transport: Name the big, black truck used to shuttle K.I.T.T. from place to place?
+Goliath
+10
+
+TV/Film: Transport: Name the cartoon VW that was chased around by the evil Chopper Bunch?
+Wheelie
+10
+
+TV/Film: Transport: Show: Trucker drives around with chimp named after football coach?
+Bj and the bear
+10
+
+TV/Film: Transport: What was the more official name of the Love Boat (prior to the name change)?
+Pacific princess
+10
+
+TV/Film: Trapper John, M.D. Was a spinoff from what show?
+Mash
+10
+
+TV/Film: Triple Play:What historical character has been portrayed by Trevor Howard, Charles Laughton and Anthony Hopkins?
+Captain William Bligh
+10
+
+TV/Film: Triple Play:What Native-American has been played bye Victor Mature,Anthony Quinn and Iron Eyes Cody?
+Crazy Horse
+10
+
+TV/Film: TV Group which included Sgt. Andrew Carter and Cpl. James Kinchloe?
+Hogans heroes
+10
+
+TV/Film: TV prime-time soap that took wing from a pilot called The Vintage Years?
+Falcon crest
+10
+
+TV/Film: TV series about Bentley Gregg and his niece Kelly?
+Bachelor father
+10
+
+TV/Film: TV show that featured a buzzer named Beulah?
+Truth or consequences
+10
+
+TV/Film: TV Sitcoms (old and new)?
+Mork and Mindy
+10
+
+TV/Film: TV/Casino star who wrote much poetry, including Touch Me, & Touch Me Again?
+Suzanne somers
+10
+
+TV/Film: Twin Peaks: A burning smell is present whenever who is nearby?
+Bob
+10
+
+TV/Film: Twin Peaks: How many seasons did the show last?
+Two
+10
+
+TV/Film: Twin Peaks: So who DID kill Laura Palmer?
+Leland
+10
+
+TV/Film: Twin Peaks: What is Kyle Mclachlan's characters full name?
+Dale cooper
+10
+
+TV/Film: Twin Peaks: What other movie of David Lynch's did Sherryl Lee appear in?
+Wild at heart
+10
+
+TV/Film: Twin Peaks: what state was twin peaks set in?
+Washington
+10
+
+TV/Film: Twin Peaks: what was the title of the twin peaks movie?
+Fire walk with me
+10
+
+TV/Film: Twin Peaks: which 2 cast members dated eachother during the taping of twin peaks?
+Machlachan and fenn
+10
+
+TV/Film: Twin Peaks: who played shelly johnson?
+Maedchen amick
+10
+
+TV/Film: UK TV/Film: Barry Norman fronts a long-running show on which subject?
+Films
+10
+
+TV/Film: uk TV/Film: what is the profession of miriam stoppard?
+Doctor
+10
+
+TV/Film: UK TV/Film: What type of programme is Sophie Grigson most likely to present?
+Cooking
+10
+
+TV/Film: uk TV/Film: which carol was the woman on channel four?
+Vorderman
+10
+
+TV/Film: uk TV/Film: which eamonn spoke the first words on gmtv?
+Holmes
+10
+
+TV/Film: UK TV/Film: Which Julia reads the news for ITN?
+Somerville
+10
+
+TV/Film: UK TV/Film: Which outspoken American interviewed the Duchess of York?
+Ruby wax
+10
+
+TV/Film: UK TV/Film: Who is Mrs. Lenny Henry? (Full name)?
+Dawn french
+10
+
+TV/Film: UK: What type of programme is Sophie Grigson most likely to present?
+Cooking
+10
+
+TV/Film: UK: Who is Mrs. Lenny Henry (Full name)?
+Dawn french
+10
+
+TV/Film: under what name did norma jean mortenson become famous?
+Marilyn monroe
+10
+
+TV/Film: until titanic tied with 11, this film had the most academy awards?
+Ben hur
+10
+
+TV/Film: Vampires: Campy flick starred George Hamilton and Lauren Hutton?
+Love at first bite
+10
+
+TV/Film: Vampires: Canadian series concerning a vampire cop?
+Forever knight
+10
+
+TV/Film: Vampires: Slick flick featured Keifer Sutherland and Jason Patric?
+The lost boys
+10
+
+TV/Film: Vinnie Barbarino, Boom Boom, Epstein, Horshack & Arnold are from what group?
+The sweathogs
+10
+
+TV/Film: Vivien Leigh- what disease killed her?
+Tuberculosis
+10
+
+TV/Film: Vivien Leigh's character in Gone with the Wind?
+Scarlett O'hara
+10
+
+TV/Film: Voice of Jack Benny's hispanic friend Sy (Sy...Si!), his car, and Bugs Bunny?
+Mel blanc
+10
+
+TV/Film: Walt Disney had wooden?
+Teeth
+10
+
+TV/Film: Walter and john huston became the first father-and-son team to win oscars for which film?
+Treasure of sierra madre
+10
+
+TV/Film: Walter Matthau starred as a slovenly sports reporter in the film The Odd Couple, what was his character name in the film?
+Oscar madison
+10
+
+TV/Film: War:John Wayne starred in this 1968 Vietnam War film?
+The Green Berets
+10
+
+TV/Film: War:What was Humprey Bogart's Character's name in 1954's The Caine Mutiny?
+Captain Queeg
+10
+
+TV/Film: warren beatty is an la rams quarterback who dies & returns in another body?
+Heaven can wait
+10
+
+TV/Film: Warren Mu=itchells famous Tv character?
+Alf garnett
+10
+
+TV/Film: Was sean connery in the longest day (yes or no)?
+Yes
+10
+
+TV/Film: Was shirley temple 21, 25 or 29 when she made her last film?
+21
+10
+
+TV/Film: Was the lead singer of the Jefferson Starship?
+Grace slick
+10
+
+TV/Film: Weekly series about a fire department rescue crew?
+Emergency
+10
+
+TV/Film: Weight-loss guru ____ brings his fitness ideas to the little screen?
+Richard simmons
+10
+
+TV/Film: Western:In what 1953 film did Alan Ladd's character beat teh gunfighter Wilson to the draw?
+Shane
+10
+
+TV/Film: What 'menace' had a dog named Gnasher?
+Dennis The Menace
+10
+
+TV/Film: what 'pretty baby' star failed to prevent playboy press from releasing nude photos?
+Brooke shields
+10
+
+TV/Film: what 1941 film featured the tune pink elephants on parade?
+Dumbo
+10
+
+TV/Film: what 1947 movie told of a woman's love for a long dead sea captain?
+The ghost and mrs muir
+10
+
+TV/Film: what 1950's tv western hero often quoted shakespear?
+Paladin
+10
+
+TV/Film: What 1951 film featured ronald reagan raising a chimp?
+Bedtime for bonzo 
+10
+
+TV/Film: what 1951 film saw stanley harass and abuse his sister blanche?
+A streetcar named desire
+10
+
+TV/Film: What 1954 naval court room drama co-starred Humphrey Bogart,Jose Ferrer and Van Johnson?
+The Caine Mutiny
+10
+
+TV/Film: What 1960s show's original cast included Alan Reed, Jean Vander Pyl, Mel Blanc & Bea Benaderet?
+Flintstones
+10
+
+TV/Film: what 1966 1971 soap opera centered on vampires, werewolves & witchcraft?
+Dark shadows
+10
+
+TV/Film: what 1968 film featured music from richard strauss's also sprach zarathustra?
+2001: a space odyssey
+10
+
+TV/Film: What 1971 motorcycle flick co-starred Dennis Hopper and Peter Fonda?
+Easy Rider
+10
+
+TV/Film: What 1975 film co-starred Clint Eastwood,George Kennedy and ted Cassidy?
+The Eiger Sanction
+10
+
+TV/Film: What 1977 movie featured a dog named Verdell?
+As good as it gets
+10
+
+TV/Film: What 1981 Film co-starred Harry Hamlin, Laurence Olivier and Maggie Smith?
+Clash of the Titans
+10
+
+TV/Film: What 1982 movie did actress meryl streep take her oscar for best actress?
+Sophie's choice
+10
+
+TV/Film: what 1982 movie did meryl streep take her oscar for best actress?
+Sophie's choice
+10
+
+TV/Film: what 1988 film sequel brings its characters back to earth from antarea?
+Cocoon: the return
+10
+
+TV/Film: What 1990 film found Campbell Scott and cast in an emotional examination of AIDS?
+Longtime Companion
+10
+
+TV/Film: What 1991 film co-starred Anjelica Huston, Christopher Llyod and Raul Julia?
+The Addams Family
+10
+
+TV/Film: what 1991 film role went to kevin costner when turned down by harrison ford?
+Jim garrison in jfk
+10
+
+TV/Film: what 1991 road movie was originally intended for meryl streep & goldie hawn?
+Thelma & louise
+10
+
+TV/Film: What 1993 movie told the storyof jailed Irishman Gerry Conlon?
+In the Name of The Father
+10
+
+TV/Film: What 1994 movie hit featured cameos by JFK, LBJ and George Wallace?
+Forrest Gump
+10
+
+TV/Film: What 1995 blockbuster movie was created by the computer animation company Pixar?
+Toy Story
+10
+
+TV/Film: What 1995 film co-starred Nicole Kidman as a murderous TV weatherperson?
+To Die For
+10
+
+TV/Film: what 1995 movie was initially banned in malasyia because pigs are offensive to muslims?
+Babe
+10
+
+TV/Film: What 1995 movie's lead character tells the motel clerk he's there to drink himself to death?
+Leaving Las Vegas
+10
+
+TV/Film: what 27th century species visits risa?
+Vorgon
+10
+
+TV/Film: What accessories did Wonder Woman use to deflect bullets?
+Golden bracelets
+10
+
+TV/Film: What actor appeared in all three of these films, Straw Dogs, Midnight Cowboy, and The Graduate?
+Dustin hoffman
+10
+
+TV/Film: What actor appeared in all three of these films, Straw Dogs, Midnight Cowboy, and The Graduate?
+Dustin Hoffman
+10
+
+TV/Film: What actor did author Anne Rice first denounce, then praise in the role of her beloved Lestat?
+Tom Cruise
+10
+
+TV/Film: what actor often plays banjo with the beverly hills unlisted jazz band?
+George segal
+10
+
+TV/Film: What actor played hank williams in your cheatin' heart?
+George hamilton 
+10
+
+TV/Film: what actor played john waynes son in red river?
+Montgomery clift
+10
+
+TV/Film: what actor played major willie williston in steve canyon?
+Jerry paris
+10
+
+TV/Film: what actor played the captain in hill street blues?
+Daniel j travanti
+10
+
+TV/Film: what actor played the wizard of oz?
+Frank morgan
+10
+
+TV/Film: what actor plays captain kirk from the original Star Trek?
+William shatner
+10
+
+TV/Film: what actor portrayed tom jeffords in the western broken arrow?
+John lupton
+10
+
+TV/Film: What actor received his mission instructions by tape recorder?
+Peter graves 
+10
+
+TV/Film: What actor rides the bucking bull named sunshine in Sam Peckinpah's Junior Bonner?
+Steve McQueen
+10
+
+TV/Film: What actor starred in death wish?
+Charles bronson 
+10
+
+TV/Film: What actor was married to Carole Lombard between 1939 to 1942?
+Clark gable
+10
+
+TV/Film: what actor won a dubious achievement award as the worst new kennedy?
+Arnold schwarzenegger
+10
+
+TV/Film: What actress did Peter Wolf marry?
+Faye dunaway
+10
+
+TV/Film: what actress had made a million dollars by the age of 10?
+Shirley temple
+10
+
+TV/Film: What actress has received the most Oscar nominations?
+Katherine hepburn
+10
+
+TV/Film: What actress has received the most Oscar nominations?
+Katherine Hepburn
+10
+
+TV/Film: what actress pitched lori davis hair products & equal in 1993?
+Cher
+10
+
+TV/Film: what actress played honey west in the detective series honey west?
+Anne francis
+10
+
+TV/Film: What actress scored a record 12 Oscar nominations, winning first for the year 1933 and last for 1981?
+Katharine Hepburn
+10
+
+TV/Film: What actress starred in the homecoming (pn)?
+Patricia neal
+10
+
+TV/Film: what actress starred in the homecoming?
+Patricia neal
+10
+
+TV/Film: What actress's real name was Frances Gumm?
+Judy garland
+10
+
+TV/Film: What actress's real name was Frances Gumm?
+Judy Garland
+10
+
+TV/Film: What Adam Sandler comedy featured Bob Barker's screen debut?
+Happy Gilmore
+10
+
+TV/Film: What American show centred on the Cleaver family?
+Leave it to beaver
+10
+
+TV/Film: What American singer made his film debut in Cisco Pike?
+Kris kristofferson
+10
+
+TV/Film: what animal character did eric knight create in 1938?
+Lassie
+10
+
+TV/Film: What animal is Max in The Grinch who stole Christmas?
+Dog
+10
+
+TV/Film: what animal was first to be named in the animal hall of fame?
+Lassie
+10
+
+TV/Film: What animal was first to be named to the animal hall of fame?
+Lassie
+10
+
+TV/Film: What animated superhero was barely a match for powerful puss?
+Mighty mouse
+10
+
+TV/Film: What anti-establishment film set in a public school had the same title as a kipling poem?
+If
+10
+
+TV/Film: what are abbott & costello's first names?
+Bud & lou
+10
+
+TV/Film: what are robots called in Star Wars?
+Droids
+10
+
+TV/Film: What are the names of Daisy Duck's nieces?
+April may june
+10
+
+TV/Film: What are the names of Donald Duck's nephews?
+Huey dewey & louey
+10
+
+TV/Film: what are the surnames of the two ronnies?
+Barker & corbett
+10
+
+TV/Film: What bar did Archie Bunker buy?
+Kelseys bar
+10
+
+TV/Film: What BBC comedy involves an army concert party?
+It aint half hot mum
+10
+
+TV/Film: What Beatles movie was untitled until John remembered a line Ringo uttered after an all night recording sessions?
+A Hard Day's Night
+10
+
+TV/Film: what billy joel hit was chosen as the theme for bosom buddies?
+My life
+10
+
+TV/Film: What black actor played the part of Nelson Mandela in The Long Walk to Freedom?
+Morgan Freeman
+10
+
+TV/Film: What blond sex symbol of the 1990s claims to have an IQ of 154?
+Sharon Stone
+10
+
+TV/Film: What boat had been wrecked resulting in the crew being marooned on Gilligans Island?
+Minnow
+10
+
+TV/Film: What book did E.B. White base on personal experiences at his farm in Maine?
+Charlotte's Web
+10
+
+TV/Film: What brand of underwear does Marty McFly wear in Back to the Future?
+Calvin Klien
+10
+
+TV/Film: what breed of dog is rin tin tin?
+German shepherd
+10
+
+TV/Film: What breed of dog was Lassie?
+Collie
+10
+
+TV/Film: What British pop star appeared in the 1970 film Performance?
+Mick jagger
+10
+
+TV/Film: What Briton had two of the three number one singles issued posthumously in the U.S.?
+John Lennon
+10
+
+TV/Film: What Caddyshack star spent two years as an assistant greens supervisor?
+Bill Murray
+10
+
+TV/Film: What car company sponsored, but opted not to run ads during a 195 minute broadcast of Schindler's List?
+Ford Motor Company
+10
+
+TV/Film: What car was used in 'Back To The Future'?
+De lorean
+10
+
+TV/Film: What cartoon character had no feathers until the censors decided he 'looked naked'?
+Tweety
+10
+
+TV/Film: What cartoon characters are at 6 flags theme park?
+Looney tunes
+10
+
+TV/Film: What cartoon couple chose Las Venus for their second honeymoon?
+George & jane jetson
+10
+
+TV/Film: What cartoon featured a boy with a community of tiny people living in his wall?
+The Littles
+10
+
+TV/Film: what cartoon hero had this as there secret identity penrod pooch?
+Hong kong phooey
+10
+
+TV/Film: What cartoon hero had this as there secret identity Penrod Ppooch?
+Hong kong phooey
+10
+
+TV/Film: What cartoon mice try to take over the world from their cages in Acme Labs?
+Pinky and the Brain
+10
+
+TV/Film: What cartoon show's record prime time run of 6 years was beaten in 1996 by The Simpsons?
+The Flintstones
+10
+
+TV/Film: what cartoon, by greg daniels & mike judge, concerns a texas propane salesman & his somewhat functional family?
+King of the hill
+10
+
+TV/Film: what character did charles bronson play in man with a camera?
+Mike kovac
+10
+
+TV/Film: what character did george burns play in 'oh, god'?
+God
+10
+
+TV/Film: What character did Leonardo DiCaprio play in the movie Titanic?
+Jack Dawson
+10
+
+TV/Film: what character did mclean stevenson play on tv's m.a.s.h?
+Henry blake
+10
+
+TV/Film: What character had a horse named Cochise?
+Joe cartwright
+10
+
+TV/Film: what child actress received a miniature oscar in 1944?
+Margaret obrien
+10
+
+TV/Film: what city do batman & robin patrol?
+Gotham city
+10
+
+TV/Film: What city is home to Donald Duck?
+Duckburg
+10
+
+TV/Film: what city is the setting for the movie 'chinatown'?
+Los angeles
+10
+
+TV/Film: What city's police force did Charlie Chan work with?
+Honolulu
+10
+
+TV/Film: What city's police force did Charlie Chan work with?
+Honolulu
+10
+
+TV/Film: what classic science fiction tv show hit the airwaves in 1966?
+Star trek
+10
+
+TV/Film: What Clint Eastwood screen role was originally offered to John Wayne, Frank Sinatra and Paul Newman?
+Dirty Harry
+10
+
+TV/Film: What color did Daniel have to paint Miagi's house as part of his training in the movie The Karate Kid?
+Green
+10
+
+TV/Film: What color was Bullitt's car?
+Green
+10
+
+TV/Film: What color was Bullitt's car?
+Green
+10
+
+TV/Film: what colour was c3 po the robot from Star Wars?
+Gold
+10
+
+TV/Film: What comic genius' wives were 16,16,20 &17 years old at the time of their marriages?
+Charlie Chaplin
+10
+
+TV/Film: What comic twosome split in 1956, ten years after teaming up in Atlantic City?
+Dean Martin and Jerry Lewis
+10
+
+TV/Film: what commodity is at stake in the major battles in mad max ii?
+Petrol
+10
+
+TV/Film: What company did the Taxi gang work for?
+Sunshine cab co
+10
+
+TV/Film: what company was the original sponsor of tv's superman?
+Kelloggs
+10
+
+TV/Film: what computer animated animals warmed hearts in coca cola's always ads in the mid 1990's?
+Polar bears
+10
+
+TV/Film: What country was the setting for 'The King & I'?
+Siam
+10
+
+TV/Film: what country was the setting for the telemovie shogun?
+Japan
+10
+
+TV/Film: what country was the setting of the john wayne film the quiet man?
+Ireland
+10
+
+TV/Film: What country was the setting of You Only Live Twice?
+Japan
+10
+
+TV/Film: what cowboy did william boyd play?
+Hopalong cassidy
+10
+
+TV/Film: what cowboy rode trigger in the movies?
+Roy rogers
+10
+
+TV/Film: what cowboy taught president sukarno's son how to twirl a six shooter?
+Roy rogers
+10
+
+TV/Film: What David Lynch movie did a few filmgoers attend expecting to see Bobby Vinton's life story?
+Blue Velvet.
+10
+
+TV/Film: what day was circus day on the mickey mouse club?
+Thursday
+10
+
+TV/Film: what designation appears on entertainment tonight microphones?
+Et
+10
+
+TV/Film: What detective duo was featured in Mystery at Devil's Paw?
+Hardy
+10
+
+TV/Film: what detective duo was featured in mystery at devil's paw?
+The hardy boys
+10
+
+TV/Film: What did Ben Calhoun win in a poker hand in the western 'The Iron Horse'?
+Railroad 
+10
+
+TV/Film: what did disney turn tommy kirk into in 1959?
+The shaggy dog
+10
+
+TV/Film: What did Dorothy's house land on in 'The Wizard Of Oz'?
+The Wicked Witch of the West
+10
+
+TV/Film: What did Dr. David Banner become when he got angry?
+The Incredible Hulk
+10
+
+TV/Film: What did Jeremy Boob, Ph.D., use to fix the sub's prop, enabling the Fab Four to escape the Blue Meanies in the 1968 cartoon fantasy Yellow Submarine?
+Bubble gum
+10
+
+TV/Film: What did Mrs. Robinson (Swiss Family Robinson) say the island lacked?
+Girls
+10
+
+TV/Film: what did the corpse make a chilling leap out of in the texas chainsaw massacre?
+A freezer
+10
+
+TV/Film: What did TVs IMF stand for?
+Impossible mission forces
+10
+
+TV/Film: What director earned a bronze Star and a purple Heart during his tour of duty in Vietnam?
+Oliver Stone
+10
+
+TV/Film: What director made one silent and one sound version of the Ten Commandments?
+Cecil b. demille
+10
+
+TV/Film: what director of comedy films was one of the creators of get smart?
+Mel brooks
+10
+
+TV/Film: What Disney character shares his name with a planet?
+Pluto
+10
+
+TV/Film: What do Dr. Elrich's Magic Bullet (1938), Panic in the Street (1950) & Longtime Companion(1990) have in common?
+Diseases were the theme
+10
+
+TV/Film: What does 'Rizzo tell 'Kenickie she isn't at the end of the movie Grease?
+Pregnant
+10
+
+TV/Film: what does `the cherry orchard' have in common with old editions of `startrek'?
+Mr checkhov
+10
+
+TV/Film: What does ALF stand for?
+Alien Life Form
+10
+
+TV/Film: what does clark kent do when he rushes in to telephone booths?
+Changes into superman
+10
+
+TV/Film: What does M.A.S.H stand for?
+Mobile army surgical hospital
+10
+
+TV/Film: what does mel blanc's headstone say?
+That's all folks
+10
+
+TV/Film: what does mork's finger do after drinking orange juice?
+Burps
+10
+
+TV/Film: What does Mr. Spock of Star Trek have to have every seven years?
+Sex
+10
+
+TV/Film: What does the statue of Oscar stand on?
+A reel of film
+10
+
+TV/Film: What does the statue of Oscar stand on?
+A Reel of Film
+10
+
+TV/Film: What does the title of the TV show C.S.I. stand for?
+Crime Scene Investigation
+10
+
+TV/Film: what embarrassing problem did tammy fae bakker have to overcome in the 60s?
+Bed wetting
+10
+
+TV/Film: What enduring daytime soap featured Kevin Kline, Don Knotts and Susan Sarandon?
+Search for Tomorrow
+10
+
+TV/Film: what entertainer is allowing one of his songs to be used in a government campaign to beat drunk driving?
+Michael jackson
+10
+
+TV/Film: What episode ended wesley's regular appearances?
+Final mission
+10
+
+TV/Film: What famed 1936 war novel mentions the Tarleton twins in its first line?
+Gone With the Wind
+10
+
+TV/Film: What famous actor is listed only as 'Stud' in the credits for the 1970 film, 'Myra Breckinridge'?
+Tom selleck
+10
+
+TV/Film: what famous actor's middle name was deforest?
+Humphrey bogart
+10
+
+TV/Film: What famous actress provided the voice for Maggie Simpson's first words?
+Elizabeth taylor
+10
+
+TV/Film: what famous athlete appeared in the towering inferno?
+Oj simpson
+10
+
+TV/Film: what famous comedian died at christmas in 1977?
+Charlie chaplin
+10
+
+TV/Film: what famous film did actor bela lugosi not finish filming due to his death?
+Dracula
+10
+
+TV/Film: What famous former Star Trek actor directed Three Men and a Baby?
+Leonard Nimoy
+10
+
+TV/Film: what fictional doctor talks to the animals?
+Doctor dolittle
+10
+
+TV/Film: what film & sequel both won the best picture oscar?
+The godfather
+10
+
+TV/Film: what film did art carney win the 1974 best actor oscar for?
+Harry & tonto
+10
+
+TV/Film: What film did Frank Sinatra play a drug addict in?
+The man with the golden gun
+10
+
+TV/Film: What film did John Wayne win his only Oscar for?
+True grit
+10
+
+TV/Film: What film did John Wayne win his only Oscar for?
+True Grit
+10
+
+TV/Film: what film did paul newman play fast eddie felson in?
+Hustler
+10
+
+TV/Film: What film featured a cat named Mr. Bigglesworth?
+Austin powers
+10
+
+TV/Film: What film featured a character named Kid Shelleen?
+Cat ballou
+10
+
+TV/Film: what film featured jack nicholson as a Los Angeles private eye?
+Chinatown
+10
+
+TV/Film: what film featured the search for the perfect wave?
+The endless summer
+10
+
+TV/Film: What film found Bruce Willis at 'Flotsam Paradise'?
+Fifth element
+10
+
+TV/Film: what film has zero mostel and gene wilder trying to mastermind a broadway flop?
+The producers
+10
+
+TV/Film: What film holds the record for the most academy awards won, with 11?
+Ben hur
+10
+
+TV/Film: what film introduced the song the first time ever i saw your face?
+Play misty for me
+10
+
+TV/Film: What film is generally considered the worst film ever made?
+Attack of the killer tomatoes
+10
+
+TV/Film: what film launched marlene dietrich?
+The blue angel
+10
+
+TV/Film: What film marked James Cagney's return to the screen after 20 years?
+Ragtime
+10
+
+TV/Film: what film marked robert redford's directorial debut?
+Ordinary people
+10
+
+TV/Film: What film saw Burt reynolds ride in a canoe with a broken leg?
+Deliverance
+10
+
+TV/Film: What film star began life in England as Archibald Leach?
+Cary grant
+10
+
+TV/Film: What film starred Drew Barrymore, Mary Louise Parker, & Matthew McConaughney?
+Boys on the side
+10
+
+TV/Film: What film starred Helen Hunt, Cary Elwes and Bill Paxton?
+Twister
+10
+
+TV/Film: what film starred james brolin & margot kidder?
+Amityville horror
+10
+
+TV/Film: What film starred Rosie O'Donnell, Rita Wilson and Meg Ryan?
+Sleepless in Seattle
+10
+
+TV/Film: What film starring Jane Fonda has Duran Duran as the villian?
+Barbarella
+10
+
+TV/Film: What film used 250,000 extras for a funeral scene?
+Gandhi
+10
+
+TV/Film: What film was Clint Eastwood's first as a director?
+Play misty for me 
+10
+
+TV/Film: what film was inspired by daniel keyes's novel flowers for algernon?
+Charly
+10
+
+TV/Film: what film were the hills alive in?
+Sound of music
+10
+
+TV/Film: what film won the best motion picture oscar in 1950?
+All about eve
+10
+
+TV/Film: what film won the best motion picture oscar in 1956?
+Around the world in 80 days
+10
+
+TV/Film: What film won the Oscar for best Picture in 1927/1928 1st Academy Awards?
+Wings
+10
+
+TV/Film: What film won the Oscar for best Picture in 1928/1929 2nd Academy Awards?
+The broadway melody
+10
+
+TV/Film: What film won the Oscar for best Picture in 1929/1930 3rd Academy Awards?
+All quiet on the western front
+10
+
+TV/Film: What film won the Oscar for best Picture in 1934 7th Academy Awards?
+It happened one night
+10
+
+TV/Film: What film won the Oscar for best Picture in 1935 8th Academy Awards?
+Mutiny on the bounty (1935)
+10
+
+TV/Film: What film won the Oscar for best Picture in 1936 9th Academy Awards?
+The great ziegfeld
+10
+
+TV/Film: What film won the Oscar for best Picture in 1937 10th Academy Awards?
+The life of emile zola
+10
+
+TV/Film: What film won the Oscar for best Picture in 1938 11th Academy Awards?
+You can't take it with you
+10
+
+TV/Film: What film won the Oscar for best Picture in 1939 12th Academy Awards?
+Gone with the wind
+10
+
+TV/Film: What film won the Oscar for best Picture in 1940 13th Academy Awards?
+Rebecca
+10
+
+TV/Film: What film won the Oscar for best Picture in 1941 14th Academy Awards?
+How green was my valley
+10
+
+TV/Film: What film won the Oscar for best Picture in 1942 15th Academy Awards?
+Mrs. miniver
+10
+
+TV/Film: What film won the Oscar for best Picture in 1943 16th Academy Awards?
+Casablanca
+10
+
+TV/Film: What film won the Oscar for best Picture in 1944 17th Academy Awards?
+Going my way
+10
+
+TV/Film: What film won the Oscar for best Picture in 1945 18th Academy Awards?
+The lost weekend
+10
+
+TV/Film: What film won the Oscar for best Picture in 1946 19th Academy Awards?
+The best years of our lives
+10
+
+TV/Film: What film won the Oscar for best Picture in 1947 20th Academy Awards?
+Gentleman's agreement
+10
+
+TV/Film: What film won the Oscar for best Picture in 1948 21st Academy Awards?
+Hamlet (1948)
+10
+
+TV/Film: What film won the Oscar for best Picture in 1949 22nd Academy Awards?
+All the king's men
+10
+
+TV/Film: What film won the Oscar for best Picture in 1950 23rd Academy Awards?
+All about eve
+10
+
+TV/Film: What film won the Oscar for best Picture in 1951 24th Academy Awards?
+An American in paris
+10
+
+TV/Film: What film won the Oscar for best Picture in 1952 25th Academy Awards?
+The greatest show on earth
+10
+
+TV/Film: What film won the Oscar for best Picture in 1953 26th Academy Awards?
+From here to eternity
+10
+
+TV/Film: What film won the Oscar for best Picture in 1954 27th Academy Awards?
+On the waterfront
+10
+
+TV/Film: What film won the Oscar for best Picture in 1955 28th Academy Awards?
+Marty
+10
+
+TV/Film: What film won the Oscar for best Picture in 1956 29th Academy Awards?
+Around the world in 80 days
+10
+
+TV/Film: What film won the Oscar for best Picture in 1957 30th Academy Awards?
+The bridge on the river kwai
+10
+
+TV/Film: What film won the Oscar for best Picture in 1958 31st Academy Awards?
+Gigi
+10
+
+TV/Film: What film won the Oscar for best Picture in 1959 32nd Academy Awards?
+Ben-hur
+10
+
+TV/Film: What film won the Oscar for best Picture in 1960 33rd Academy Awards?
+The apartment
+10
+
+TV/Film: What film won the Oscar for best Picture in 1961 34th Academy Awards?
+West side story
+10
+
+TV/Film: What film won the Oscar for best Picture in 1962 35th Academy Awards?
+Lawrence of arabia
+10
+
+TV/Film: What film won the Oscar for best Picture in 1963 36th Academy Awards?
+Tom jones
+10
+
+TV/Film: What film won the Oscar for best Picture in 1964 37th Academy Awards?
+My fair lady
+10
+
+TV/Film: What film won the Oscar for best Picture in 1965 38th Academy Awards?
+The sound of music
+10
+
+TV/Film: What film won the Oscar for best Picture in 1966 39th Academy Awards?
+A man for all seasons
+10
+
+TV/Film: What film won the Oscar for best Picture in 1967 40th Academy Awards?
+In the heat of the night
+10
+
+TV/Film: What film won the Oscar for best Picture in 1968 41st Academy Awards?
+Oliver!
+10
+
+TV/Film: What film won the Oscar for best Picture in 1969 42nd Academy Awards?
+Midnight cowboy
+10
+
+TV/Film: What film won the Oscar for best Picture in 1970 43rd Academy Awards?
+Patton
+10
+
+TV/Film: What film won the Oscar for best Picture in 1971 44th Academy Awards?
+The french connection
+10
+
+TV/Film: What film won the Oscar for best Picture in 1972 45th Academy Awards?
+The godfather
+10
+
+TV/Film: What film won the Oscar for best Picture in 1973 46th Academy Awards?
+The sting
+10
+
+TV/Film: What film won the Oscar for best Picture in 1974 47th Academy Awards?
+The godfather part ii
+10
+
+TV/Film: What film won the Oscar for best Picture in 1975 48th Academy Awards?
+One flew over the cuckoo's nest
+10
+
+TV/Film: What film won the Oscar for best Picture in 1976 49th Academy Awards?
+Rocky
+10
+
+TV/Film: What film won the Oscar for best Picture in 1977 50th Academy Awards?
+Annie hall
+10
+
+TV/Film: What film won the Oscar for best Picture in 1978 51st Academy Awards?
+The deer hunter
+10
+
+TV/Film: What film won the Oscar for best Picture in 1979 52nd Academy Awards?
+Kramer vs. kramer
+10
+
+TV/Film: What film won the Oscar for best Picture in 1980 53rd Academy Awards?
+Ordinary people
+10
+
+TV/Film: What film won the Oscar for best Picture in 1981 54th Academy Awards?
+Chariots of fire
+10
+
+TV/Film: What film won the Oscar for best Picture in 1982 55th Academy Awards?
+Gandhi
+10
+
+TV/Film: What film won the Oscar for best Picture in 1983 56th Academy Awards?
+Terms of endearment
+10
+
+TV/Film: What film won the Oscar for best Picture in 1984 57th Academy Awards?
+Amadeus
+10
+
+TV/Film: What film won the Oscar for best Picture in 1985 58th Academy Awards?
+Out of africa
+10
+
+TV/Film: What film won the Oscar for best Picture in 1986 59th Academy Awards?
+Platoon
+10
+
+TV/Film: What film won the Oscar for best Picture in 1987 60th Academy Awards?
+The last emperor
+10
+
+TV/Film: What film won the Oscar for best Picture in 1988 61st Academy Awards?
+Rain man
+10
+
+TV/Film: What film won the Oscar for best Picture in 1989 62nd Academy Awards?
+Driving miss daisy
+10
+
+TV/Film: What film won the Oscar for best Picture in 1990 63rd Academy Awards?
+Dances with wolves
+10
+
+TV/Film: What film won the Oscar for best Picture in 1991 64th Academy Awards?
+The silence of the lambs
+10
+
+TV/Film: What film won the Oscar for best Picture in 1992 65th Academy Awards?
+Unforgiven
+10
+
+TV/Film: What film won the Oscar for best Picture in 1993 66th Academy Awards?
+Schindler's list
+10
+
+TV/Film: What film won the Oscar for best Picture in 1994 67th Academy Awards?
+Forrest gump
+10
+
+TV/Film: What film won the Oscar for best Picture in 1995 68th Academy Awards?
+Braveheart
+10
+
+TV/Film: What film won the Oscar for best Picture in 1996 69th Academy Awards?
+The English patient
+10
+
+TV/Film: What film won the Oscar for best Picture in 1997 70th Academy Awards?
+Titanic
+10
+
+TV/Film: What film won the Oscar for best Picture in 1998 71st Academy Awards?
+Shakespeare in love
+10
+
+TV/Film: what film: harrison ford, sean young, rutger hauer?
+Bladerunner
+10
+
+TV/Film: what film: kurt russell, val kilmer, michael biehn?
+Tombstone
+10
+
+TV/Film: what film's climax takes place on the face of mount rushmore?
+North by northwest
+10
+
+TV/Film: What former US vice president was the title star of Meet the Veep?
+Alben w barkley
+10
+
+TV/Film: What George Lucas film, made for $750,000 is considered the most profitable movie in Hollywood history?
+American Graffiti
+10
+
+TV/Film: what georgia town did scarlett o'hara condemn as being full of pushy people?
+Atlanta
+10
+
+TV/Film: What German well known actress could only be lulled to sleep by a sardine and onion sandwich on rye?
+Marlene Dietrich
+10
+
+TV/Film: What good is sitting/alone in your room Come! Hear the music play!?
+Cabaret
+10
+
+TV/Film: What gossipy talk show host once had a late night program on Fox?
+Joan rivers
+10
+
+TV/Film: what happened on screen for the first time in india in 1977?
+Screen kiss
+10
+
+TV/Film: What have actors and actresses George Lucas, Marlon Brando, Hedy Lamarr, and Jamie Lee Curtis all done?
+Patented Inventions
+10
+
+TV/Film: What host won emmy's for being the quizmaster on the $100,000 Pyramid?
+Dick clark 
+10
+
+TV/Film: what housewife once portrayed a deep throated nurse?
+Linda lovelace
+10
+
+TV/Film: What illness disabled the flight crew in the movie Airplane?
+Food poisoning
+10
+
+TV/Film: What is Batman's aircraft called?
+Batplane
+10
+
+TV/Film: What is Batman's car called?
+Batmobile
+10
+
+TV/Film: what is cornelius mcgillicuddy's stage name?
+Connie mack
+10
+
+TV/Film: What is Donald Duck's middle name?
+Fauntleroy
+10
+
+TV/Film: What is Dot Cotton' ex husband called?
+Charlie
+10
+
+TV/Film: What is E.T. famous for saying?
+E.t. phone home
+10
+
+TV/Film: what is grampa simpsons first name?
+Abe
+10
+
+TV/Film: What is Hawkeye's full name in M.A.S.H?
+Benjamin franklin pierce
+10
+
+TV/Film: What is Hawkeye's full name in M.A.S.H?
+Benjamin Franklin Pierce
+10
+
+TV/Film: What is Hulk Hogan's real name?
+Terry Bollea
+10
+
+TV/Film: What is in Mr. Spock's blood that gives him green skin?
+Traces of nickel and copper
+10
+
+TV/Film: What is Kermit D Frog's girlfriend's name?
+Miss Piggy
+10
+
+TV/Film: What is kermit d frog's girlfriend's name?
+Miss piggy
+10
+
+TV/Film: What is Living Single star Dana Owens better known as?
+Queen latifah
+10
+
+TV/Film: What is Mickey Mouse's dog's name?
+Pluto
+10
+
+TV/Film: what is nelson eddys occupation in rose marie?
+Royal Canadian mounted policeman
+10
+
+TV/Film: What is Princess Aurora's better-known name?
+Sleeping Beauty
+10
+
+TV/Film: what is radar o'reilly's favorite drink?
+Grape nehi
+10
+
+TV/Film: what is richie's surname in happy days?
+Cunningham
+10
+
+TV/Film: What is the American network A.B.C's full name?
+American broadcasting corporation
+10
+
+TV/Film: What is the drummer's name in 'The Muppet Show'?
+Animal
+10
+
+TV/Film: What is the first name of Ms. Arquette, star of _Desperately Seeking Susan?
+Rosanna
+10
+
+TV/Film: What is the first word uttered in the movie Citizen Kane?
+Rosebud
+10
+
+TV/Film: What is the frog's name in 'The Muppet Show'?
+Kermit D Frog
+10
+
+TV/Film: What is the frog's name in 'the muppet show'?
+Kermit d frog
+10
+
+TV/Film: what is the highest number of best actors won by the same guy?
+2
+10
+
+TV/Film: What is the last name of everybody in the entire town of Rock Ridge in the movie Blazing Saddles?
+Johnson
+10
+
+TV/Film: What is the last name of the cartoon characters Marge, Bart, and Homer?
+Simpson
+10
+
+TV/Film: What is the name given to cheaply made westerns, filmed in Italy or Spain?
+Spaghetti
+10
+
+TV/Film: what is the name of batman & robin's secret hiedout?
+Batcave
+10
+
+TV/Film: what is the name of dr who's time machine?
+The tardis
+10
+
+TV/Film: What is the name of Frank Gilroy's wife in A Country Practice?
+Shirley
+10
+
+TV/Film: What is the name of Gary Cooper's character in Mr. Deeds Goes to Town?
+Longfellow
+10
+
+TV/Film: What is the name of Jaleel White's character in the tv series 'Family ties'?
+Steve Urkel
+10
+
+TV/Film: What is the name of Owen Wilson's brother the movie star?
+Luke Wilson
+10
+
+TV/Film: What is the name of Pearce Brosnan's first James Bond film?
+Goldeneye
+10
+
+TV/Film: What is the name of Pearce Brosnan's first James Bond film?
+Goldeneye
+10
+
+TV/Film: What is the name of South Park's animated aggressor?
+Cartman
+10
+
+TV/Film: what is the name of the actor TV/Film: Who played cliff clavin?
+John ratzenberger
+10
+
+TV/Film: what is the name of the bear from rainbow?
+Bungle
+10
+
+TV/Film: What is the name of the cartoon show that was a spin off from Happy Days?
+The Fonz and the Happy Days Gang
+10
+
+TV/Film: What is the name of the cartoon where Wile E. Coyote finally caught the road runner?
+Soup or sonic
+10
+
+TV/Film: What is the name of the dinosaur monster which has appeared in many Japanese films?
+Godzilla
+10
+
+TV/Film: What is the name of the dog on Married With Children?
+Buck
+10
+
+TV/Film: What is the name of the Ewings ranch?
+Southfork
+10
+
+TV/Film: What is the name of the film company owned by Speilberg,Katzenberg and Geffen?
+Dreamworks
+10
+
+TV/Film: What is the name of the film in which Steven Segal's character dies?
+Executive Decision
+10
+
+TV/Film: what is the name of the flintstones daily paper?
+Daily slate
+10
+
+TV/Film: what is the name of the little boy in toy story (first name only)?
+Andy
+10
+
+TV/Film: what is the name of the movie that horace pinker appeared in?
+Shocker
+10
+
+TV/Film: what is the name of the movie that leatherface appeared in?
+The texas chainsaw massacre
+10
+
+TV/Film: What is the name of the pub in Emmerdale?
+The Woolpack
+10
+
+TV/Film: what is the name of the theme song for the film 'the highlander'?
+Princes of the universe
+10
+
+TV/Film: What is the name of the town that the Flintstones live in?
+Bedrock
+10
+
+TV/Film: What is the name of the whale that swallowed Pinocchio?
+Monstro
+10
+
+TV/Film: What is the name of the whale that swallowed Pinocchio?
+Monstro
+10
+
+TV/Film: What is the name of Tom cruise' new film?
+Minority report
+10
+
+TV/Film: What is the name Ted Bulpitt's wife in Kingswood Country?
+Thelma
+10
+
+TV/Film: what is the newspaper serving frostbite falls, minnesota, the home of rocky & bullwinkle?
+The picayune intellegence
+10
+
+TV/Film: what is the real name of bo derek?
+Cathleen collins
+10
+
+TV/Film: what is the registry number of the enterprise in the original Star Trek?
+Ncc 1701
+10
+
+TV/Film: what is the room called where people wait before going on tv?
+Green room
+10
+
+TV/Film: what is the secret agent number of james bond?
+007
+10
+
+TV/Film: What is the sequel to the film 'Every Which Way But Loose'?
+Every Which Way You Can
+10
+
+TV/Film: what is the stage name of actress demetria guynes?
+Demi moore
+10
+
+TV/Film: what is the stage name of bernard schwartz?
+Tony curtis
+10
+
+TV/Film: What is the stage name of Greta Gustafson?
+Garbo
+10
+
+TV/Film: What is the stage name of Greta Gustafson?
+Greta Garbo
+10
+
+TV/Film: what is the surname of the father & son actors lloyd, jeff, & beau?
+Bridges
+10
+
+TV/Film: what is the third most filmed story of all time?
+Oliver twist
+10
+
+TV/Film: What is Travis Bickle's occupation as played by Robert De Niro?
+Taxi driver
+10
+
+TV/Film: what is wc fields' full name?
+William claude dunkenfield
+10
+
+TV/Film: What is Winnie The Pooh's real name?
+Edward bear
+10
+
+TV/Film: What is woody allen's real name?
+Allan konigsberg
+10
+
+TV/Film: what island was the jungle home of king kong in the 1933 film?
+Skull island
+10
+
+TV/Film: What James Bond flick had a Rolls Royce with the license number AU1?
+Goldfinger
+10
+
+TV/Film: what james dickey novel tells the story of an ill fated canoe trip?
+Deliverance
+10
+
+TV/Film: What James Hilton effort became the first Pocket Book, in 1939?
+Lost Horizon
+10
+
+TV/Film: What jazz musician got his aristocratic nickname in high school for his neat attire and fastidious manners?
+Duke Ellington
+10
+
+TV/Film: What jazz style did Charlie Parker and Dizzy Gillespie help invent?
+Bebop
+10
+
+TV/Film: What Jerry Lewis movie was a twisted take on the Jekyll and Hyde story?
+The Nutty Professor
+10
+
+TV/Film: What Julie Andrew's comedy was William Holden's last screen appearance?
+S.o.b.
+10
+
+TV/Film: What kills Alex Guinness at the end of The Ladykillers?
+A railway signal
+10
+
+TV/Film: What kind of animal is Hedwig who belongs to Harry Potter?
+An Owl
+10
+
+TV/Film: What kind of bird is the cartoon character Tweetie Pie?
+A Canary
+10
+
+TV/Film: What kind of hats did laurel and Hardy wear?
+Bowler hats
+10
+
+TV/Film: what kind of machines did those magnificent men have in a well known film?
+Flying machines
+10
+
+TV/Film: What ladies' man was the first person since Orson Welles to be up for four Oscars in a single year, in 1982?
+Warren Beatty
+10
+
+TV/Film: what language was doctor zhivago written in?
+Russian
+10
+
+TV/Film: what late filmmaker was notorious for timing employees' trips to the soft drink machine?
+Walt disney
+10
+
+TV/Film: What links Marilyn Monroe's roles in the following films. Right Cross (1950),O Henry's Full House (1952) and The Seven Year Itch (1955)?
+Your never told her name
+10
+
+TV/Film: what lodge did fred flintstone & barney rubble belong to?
+The royal order of water buffalo
+10
+
+TV/Film: what looney toons character used a univac to solve a mystery?
+Porky pig
+10
+
+TV/Film: What Marlon Brando film was widely banned?
+Last Tango In Paris
+10
+
+TV/Film: What martial artist warbles the theme song for Walker, Texas Ranger?
+Chuck Norris
+10
+
+TV/Film: What Marx Brother's name spelled backwards is the name of a daytime talk show host?
+Harpo's
+10
+
+TV/Film: What Mayberry resident once hijacked a bull when he'd had too much to drink?
+Otis Campbell
+10
+
+TV/Film: What member of the Monkees, a holdout for nearly three decades, rejoined the other geezers for a 1996 album?
+Mike Nesmith
+10
+
+TV/Film: What menacing character was best friends with Tommy anderson?
+Dennis the menace 
+10
+
+TV/Film: What Michelle Pfeiffer movie got a boost from the Coolio song Gangsta's Paradise?
+Dangerous Minds
+10
+
+TV/Film: What model appeared topless on the self-penned 1993 novel Pirate?
+Fabio
+10
+
+TV/Film: What Mork & Mindy vet was a regular on Hee Haw during the 1983 84 season?
+Jonathan winters
+10
+
+TV/Film: what movie about military cover ups did tom cruise, demi moore, jack nicholson & kevin bacon star in?
+A few good men
+10
+
+TV/Film: what movie actor is the son of actor henry fonda?
+Peter fonda
+10
+
+TV/Film: what movie actress is the daughter of actor henry fonda?
+Jane fonda
+10
+
+TV/Film: What movie are Frozone, Syndrome and Bomb Voyage from?
+The Incredibles
+10
+
+TV/Film: What Movie Did Anthony Minghella win the Oscar for best Director In 1996 69th Academy Awards?
+The English patient
+10
+
+TV/Film: What Movie Did Barry Levinson win the Oscar for best Director In 1988 61st Academy Awards?
+Rain man
+10
+
+TV/Film: What Movie Did Bernardo Bertolucci win the Oscar for best Director In 1987 60th Academy Awards?
+The last emperor
+10
+
+TV/Film: What Movie Did Billy Wilder win the Oscar for best Director In 1945 18th Academy Awards?
+The lost weekend
+10
+
+TV/Film: What Movie Did Billy Wilder win the Oscar for best Director In 1960 33rd Academy Awards?
+The apartment
+10
+
+TV/Film: What Movie Did Bob Fosse win the Oscar for best Director In 1972 45th Academy Awards?
+Cabaret
+10
+
+TV/Film: What Movie Did Carol Reed win the Oscar for best Director In 1968 41st Academy Awards?
+Oliver!
+10
+
+TV/Film: What Movie Did Clint Eastwood win the Oscar for best Director In 1992 65th Academy Awards?
+Unforgiven
+10
+
+TV/Film: what movie did critic andrew sarris refer to as lawrence of Russia?
+Dr zhivago
+10
+
+TV/Film: What Movie Did David Lean win the Oscar for best Director In 1957 30th Academy Awards?
+The bridge on the river Kwai
+10
+
+TV/Film: What Movie Did David Lean win the Oscar for best Director In 1962 35th Academy Awards?
+Lawrence of arabia
+10
+
+TV/Film: What Movie Did Delbert Mann win the Oscar for best Director In 1955 28th Academy Awards?
+Marty
+10
+
+TV/Film: What Movie Did Elia Kazan win the Oscar for best Director In 1947 20th Academy Awards?
+Gentleman's agreement
+10
+
+TV/Film: What Movie Did Elia Kazan win the Oscar for best Director In 1954 27th Academy Awards?
+On the waterfront
+10
+
+TV/Film: What Movie Did Francis Ford Coppola win the Oscar for best Director In 1974 47th Academy Awards?
+The godfather Part Ii
+10
+
+TV/Film: What Movie Did Frank Borzage win the Oscar for best Director In 1931/1932 5th Academy Awards?
+Bad girl
+10
+
+TV/Film: What Movie Did Frank Capra win the Oscar for best Director In 1934 7th Academy Awards?
+It happened one night
+10
+
+TV/Film: What Movie Did Frank Capra win the Oscar for best Director In 1936 9th Academy Awards?
+Mr. deeds goes to town
+10
+
+TV/Film: What Movie Did Frank Capra win the Oscar for best Director In 1938 11th Academy Awards?
+You can't take it with you
+10
+
+TV/Film: What Movie Did Frank Lloyd win the Oscar for best Director In 1932/1933 6th Academy Awards?
+Cavalcade
+10
+
+TV/Film: What Movie Did Franklin J. Schaffner win the Oscar for best Director In 1970 43rd Academy Awards?
+Patton
+10
+
+TV/Film: What Movie Did Fred Zinnemann win the Oscar for best Director In 1953 26th Academy Awards?
+From here to eternity
+10
+
+TV/Film: What Movie Did Fred Zinnemann win the Oscar for best Director In 1966 39th Academy Awards?
+A man for all seasons
+10
+
+TV/Film: What Movie Did George Cukor win the Oscar for best Director In 1964 37th Academy Awards?
+My fair lady
+10
+
+TV/Film: What Movie Did George Roy Hill win the Oscar for best Director In 1973 46th Academy Awards?
+The sting
+10
+
+TV/Film: What Movie Did George Stevens win the Oscar for best Director In 1951 24th Academy Awards?
+A place in the sun (1951)
+10
+
+TV/Film: What Movie Did George Stevens win the Oscar for best Director In 1956 29th Academy Awards?
+Giant
+10
+
+TV/Film: What Movie Did James Cameron win the Oscar for best Director In 1997 70th Academy Awards?
+Titanic (1997)
+10
+
+TV/Film: What Movie Did James L. Brooks win the Oscar for best Director In 1983 56th Academy Awards?
+Terms of endearment
+10
+
+TV/Film: What Movie Did John Ford win the Oscar for best Director In 1935 8th Academy Awards?
+The informer
+10
+
+TV/Film: What Movie Did John Ford win the Oscar for best Director In 1940 13th Academy Awards?
+The grapes of wrath
+10
+
+TV/Film: What Movie Did John Ford win the Oscar for best Director In 1941 14th Academy Awards?
+How green was my valley
+10
+
+TV/Film: What Movie Did John Ford win the Oscar for best Director In 1952 25th Academy Awards?
+The quiet man
+10
+
+TV/Film: What Movie Did John G. Avildsen win the Oscar for best Director In 1976 49th Academy Awards?
+Rocky
+10
+
+TV/Film: What Movie Did John Huston win the Oscar for best Director In 1948 21st Academy Awards?
+The treasure of the sierra Madre
+10
+
+TV/Film: What Movie Did John Schlesinger win the Oscar for best Director In 1969 42nd Academy Awards?
+Midnight cowboy
+10
+
+TV/Film: What Movie Did Jonathan Demme win the Oscar for best Director In 1991 64th Academy Awards?
+The silence of the Lambs
+10
+
+TV/Film: What Movie Did Joseph L. Mankiewicz win the Oscar for best Director In 1949 22nd Academy Awards?
+A letter to three Wives
+10
+
+TV/Film: What Movie Did Joseph L. Mankiewicz win the Oscar for best Director In 1950 23rd Academy Awards?
+All about eve
+10
+
+TV/Film: What Movie Did Kevin Costner win the Oscar for best Director In 1990 63rd Academy Awards?
+Dances with wolves
+10
+
+TV/Film: What Movie Did Leo Mccarey win the Oscar for best Director In 1937 10th Academy Awards?
+The awful truth
+10
+
+TV/Film: What Movie Did Leo Mccarey win the Oscar for best Director In 1944 17th Academy Awards?
+Going my way
+10
+
+TV/Film: What movie did Mel Brooks say he wishes he'd never made, as he then became overly concerned with filling theater seats?
+Blazing Saddles
+10
+
+TV/Film: What Movie Did Mel Gibson win the Oscar for best Director In 1995 68th Academy Awards?
+Braveheart
+10
+
+TV/Film: What Movie Did Michael Cimino win the Oscar for best Director In 1978 51st Academy Awards?
+The deer hunter
+10
+
+TV/Film: What Movie Did Michael Curtiz win the Oscar for best Director In 1943 16th Academy Awards?
+Casablanca
+10
+
+TV/Film: What Movie Did Mike Nichols win the Oscar for best Director In 1967 40th Academy Awards?
+The graduate
+10
+
+TV/Film: What Movie Did Milos Forman win the Oscar for best Director In 1975 48th Academy Awards?
+One flew over the Cuckoo's Nest
+10
+
+TV/Film: What Movie Did Milos Forman win the Oscar for best Director In 1984 57th Academy Awards?
+Amadeus
+10
+
+TV/Film: What Movie Did Norman Taurog win the Oscar for best Director In 1930/1931 4th Academy Awards?
+Skippy
+10
+
+TV/Film: What Movie Did Oliver Stone win the Oscar for best Director In 1986 59th Academy Awards?
+Platoon
+10
+
+TV/Film: What Movie Did Oliver Stone win the Oscar for best Director In 1989 62nd Academy Awards?
+Born on the fourth of July
+10
+
+TV/Film: What Movie Did Richard Attenborough win the Oscar for best Director In 1982 55th Academy Awards?
+Gandhi
+10
+
+TV/Film: What Movie Did Robert Benton win the Oscar for best Director In 1979 52nd Academy Awards?
+Kramer vs. kramer
+10
+
+TV/Film: What Movie Did Robert Redford win the Oscar for best Director In 1980 53rd Academy Awards?
+Ordinary people
+10
+
+TV/Film: What Movie Did Robert Wise win the Oscar for best Director In 1965 38th Academy Awards?
+The sound of music
+10
+
+TV/Film: What Movie Did Robert Zemeckis win the Oscar for best Director In 1994 67th Academy Awards?
+Forrest gump
+10
+
+TV/Film: what movie did sharon stone land the lead in after it was nixed by kim basinger, ellen barkin, michelle pfeiffer & geena davis?
+Basic instinct
+10
+
+TV/Film: What Movie Did Steven Spielberg win the Oscar for best Director In 1993 66th Academy Awards?
+Schindler's list
+10
+
+TV/Film: What Movie Did Steven Spielberg win the Oscar for best Director In 1998 71st Academy Awards?
+Saving private ryan
+10
+
+TV/Film: What Movie Did Sydney Pollack win the Oscar for best Director In 1985 58th Academy Awards?
+Out of africa
+10
+
+TV/Film: What Movie Did Tony Richardson win the Oscar for best Director In 1963 36th Academy Awards?
+Tom jones
+10
+
+TV/Film: What Movie Did Victor Fleming win the Oscar for best Director In 1939 12th Academy Awards?
+Gone with the wind
+10
+
+TV/Film: What Movie Did Vincente Minnelli win the Oscar for best Director In 1958 31st Academy Awards?
+Gigi
+10
+
+TV/Film: What Movie Did Warren Beatty win the Oscar for best Director In 1981 54th Academy Awards?
+Reds
+10
+
+TV/Film: What Movie Did William Friedkin win the Oscar for best Director In 1971 44th Academy Awards?
+The french connection
+10
+
+TV/Film: What Movie Did William Wyler win the Oscar for best Director In 1942 15th Academy Awards?
+Mrs. miniver
+10
+
+TV/Film: What Movie Did William Wyler win the Oscar for best Director In 1946 win the Oscar for best Director In 19th Academy Awards?
+The best years of our lives
+10
+
+TV/Film: What Movie Did William Wyler win the Oscar for best Director In 1959 32nd Academy Awards?
+Ben-hur
+10
+
+TV/Film: What Movie Did Woody Allen win the Oscar for best Director In 1977 50th Academy Awards?
+Annie hall
+10
+
+TV/Film: What movie earned Tom Hanks his third straight Oscar nomination, in 1996?
+Apollo 13
+10
+
+TV/Film: What movie gave Julie Andrews the chance to portray a man?
+Victor/Victoria
+10
+
+TV/Film: what movie has been nominated for 14 oscars?
+All about eve
+10
+
+TV/Film: What movie pairs Tom Hanks and Antonio Banderas as lovers?
+Philadelphia
+10
+
+TV/Film: What movie sees Elvis Presley sent to the slammer for manslaughter?
+Jailhouse Rock
+10
+
+TV/Film: what movie shows robin williams lining up to buy toilet paper?
+Moscow on the hudson
+10
+
+TV/Film: What movie theme was Barbra Streisand's first chart-topping single?
+They Way We Were
+10
+
+TV/Film: What movie told of Ann Anderson's claim to be a Russian czars daughter?
+Anastasia
+10
+
+TV/Film: What movie's first victim was played by a skinny-dipping actress named Susan Backlinie?
+Jaws
+10
+
+TV/Film: what movie's release coincided with protests over the three mile island incident?
+China syndrome
+10
+
+TV/Film: What Multi re-made 1940 film starred Cary Grant, Rosalind Russell and Ralph Bellamy?
+His Girl Friday
+10
+
+TV/Film: what multiple personality patient of the 1950s was so famous a book & a movie were made about her?
+Eve
+10
+
+TV/Film: What muppet co anchored a nightline show with Ted Koppel?
+Kermit the frog 
+10
+
+TV/Film: What musical was named after a U S city?
+Oklahoma
+10
+
+TV/Film: what mythical Scottish town appears for one day every 100 years?
+Brigadoon
+10
+
+TV/Film: What nationality is Sophia Loren?
+Italian
+10
+
+TV/Film: What NBC sitcom once saw two if its neurotics try to pitch NBC on a sitcom about nothing?
+Seinfeld
+10
+
+TV/Film: What network features programming just for children?
+Nickelodeon
+10
+
+TV/Film: What newspaper employs Clark Kent and Lois Lane?
+Daily planet
+10
+
+TV/Film: What Nickelodeon cartoon series was named after the cartoonist's apartment manager?
+Ren & Stimpy
+10
+
+TV/Film: What nickname did Spencer Tracy give to Humphrey Bogart?
+Bogie
+10
+
+TV/Film: What night club did Ricky work at on 'I Love Lucy'?
+The tropicana
+10
+
+TV/Film: What novel was the basis for the violent 1971 movie Straw Dogs?
+The Siege of Trencher's Farm
+10
+
+TV/Film: what one actor provided the original voices for bugs bunny, daffy duck, barney rubble & jetsons boss cosmo spacely?
+Mel blanc
+10
+
+TV/Film: what one city must a movie play in to be eligible for an oscar?
+Los angeles
+10
+
+TV/Film: What Oscar-winning actress made her final appearance in the movie Nobody's Fool?
+Jessica Tandy
+10
+
+TV/Film: What paper does Clark Kent work for?
+Daily planet 
+10
+
+TV/Film: What part have Jeremy Irons, Lindsay Lohan and Bette Davis all played?
+Twins
+10
+
+TV/Film: what pbs quiz show do 8 out of 10 teachers believe to be useful in teaching geography?
+Where in the world is carmen sandiego
+10
+
+TV/Film: what peculiar physical characteristic do zaldans share?
+Webbed fingers
+10
+
+TV/Film: what pint sized italian actor once played guitar for joey dee & the starliters?
+Joe pesci
+10
+
+TV/Film: what plane crash movie had night talk show hosts cracking cannibalism jokes?
+Alive
+10
+
+TV/Film: what popular youth oriented actor made a cameo appearance in Star Trek vi: the undiscovered country?
+Christian slater
+10
+
+TV/Film: What pre tv radio show turned film caused people to commit suicide when it was first aired?
+War of the worlds
+10
+
+TV/Film: what private eye hangs out at the kamehameha club?
+Magnum
+10
+
+TV/Film: what profession was charlie brown's father?
+Barber
+10
+
+TV/Film: What Pulp Fiction star once served as Bill Cosby's stand-in on The Cosby Show?
+Samuel L. Jackson
+10
+
+TV/Film: what quiz program was hosted by groucho marx?
+You bet your life
+10
+
+TV/Film: What quiz show did Merv Griffin emcee in 1960?
+Endoscope 
+10
+
+TV/Film: what race possesses the greatest strategic minds?
+Zakdorn
+10
+
+TV/Film: what record company released the twin peaks soundtrack?
+Warner bros
+10
+
+TV/Film: what repetitive movie starred bill murray & andie mcdowell?
+Groundhog day
+10
+
+TV/Film: What rock star played the preacher in the film Tommy?
+Eric Clapton
+10
+
+TV/Film: what rodent was banned from the soviet union by stalin?
+Mickey mouse
+10
+
+TV/Film: What role did Herve Villechaize portray in Fantasy Island?
+Tatoo
+10
+
+TV/Film: What role in The Godfather did Robert De Niro test for?
+Sonny Corleone
+10
+
+TV/Film: What sanitation engineer calls Baltimore his home?
+Roc
+10
+
+TV/Film: What Saturday Night Live cast member left in 1994 after being in a record 153 shows?
+Phil Hartman
+10
+
+TV/Film: What sci-fi thriller set attendance records during the Fourth of July weekend in 1996?
+Independence Day
+10
+
+TV/Film: What screen character did Peter Sellers begin playing after Peter Ustinov declined the job?
+Inspector Clouseau
+10
+
+TV/Film: What screen character has played opposite Maud Adams, Claudine Anger, Kim Basinger, Britt Eklund and Ursula Andress?
+James Bond
+10
+
+TV/Film: What screen character is the world's fastest ice sculptor and topiary artist?
+Edward Scissorhands
+10
+
+TV/Film: what seinfeld character takes off his shirt during visits to the toilet?
+George costanza
+10
+
+TV/Film: What series began as an adaptation of The Adventures of a black bag?
+Dr finlays casebook
+10
+
+TV/Film: what series did chris carter produce after his wildly successful x files?
+Millennium
+10
+
+TV/Film: what short lived series starred ice cube?
+The watcher
+10
+
+TV/Film: what show did abc air when the earthquake stopped the world series?
+Roseanne
+10
+
+TV/Film: What show do Ron Howard & Erin Moran play brother & sister in?
+Happy days
+10
+
+TV/Film: what show was sister bertrille in?
+Flying nun
+10
+
+TV/Film: What show's characters wrecked over 300 cars during its TV run?
+The dukes of hazzard
+10
+
+TV/Film: what show/game has characters such as bulbasaur & pikachu?
+Pokemon
+10
+
+TV/Film: What show/game has characters such as Bulbasaur and Pikachu?
+Pokemon
+10
+
+TV/Film: What Sinatra signature tune became Elvis Presley's best-selling posthumous hit?
+My Way
+10
+
+TV/Film: what sissy spacek film climaxed at the bates high school senior prom?
+Carrie
+10
+
+TV/Film: what sitcom character was once named toxic waste handler of the month?
+Homer simpson
+10
+
+TV/Film: what sitcom did the jeffersons spin off from?
+All in the family
+10
+
+TV/Film: what sitcom topped the nielsen ratings from 1971-76?
+All in the family
+10
+
+TV/Film: What size crew did Captain Kirk command aboard the starship Enterprise?
+430
+10
+
+TV/Film: what smash sitcom did lisa kudrow make her tv debut on, in 1982?
+Cheers
+10
+
+TV/Film: What soap star was originally cast as the lead in Cleopatra in 1963?
+Joan collins 
+10
+
+TV/Film: What song was heard 250 different ways in a 1994 Ken Burns documentary?
+Take Me Out to the Ballgame
+10
+
+TV/Film: what song was sung when hawkeye was leading the singing on a cold winter night?
+We're having a heatwave
+10
+
+TV/Film: What sort of creature was Chewbacca in Star Wars?
+Wookey
+10
+
+TV/Film: what soul great appears in the flick ski party?
+James brown
+10
+
+TV/Film: What speed did Marty have to reach in order to activate the flux capacitor?
+-- Answer metadata begin
+{
+    "answers": ["88 miles an hour", "88 mph", "88mph"]
+}
+-- Answer metadata end
+10
+
+TV/Film: what spielberg movie ended atop devils tower?
+Close encounters of the third kind
+10
+
+TV/Film: What Spike Lee movie was marketed with baseball caps bearing just one letter?
+Malcom X
+10
+
+TV/Film: What spooky 1970's tv show marked steven spielberg's directorial debut?
+Night gallery
+10
+
+TV/Film: What spooky star hosted the quiz show Esp?
+Vincent price 
+10
+
+TV/Film: what star of mask helped found a charity for kids with cranio facial problems?
+Cher
+10
+
+TV/Film: what star shoots pool by holding the cue in his mouth?
+Mr ed
+10
+
+TV/Film: What statuesque actress earned a living by standing still in department store windows prior to her film debut in Tootsie?
+Geena Davis
+10
+
+TV/Film: What studio created the cartoon versions of Laverne & Shirley?
+Hanna & Barbera
+10
+
+TV/Film: What subject teacher Chet Kincaid taught on the Bill Cosby show?
+Gym
+10
+
+TV/Film: what syndicated show sometimes goes by the title e t?
+Entertainment tonight
+10
+
+TV/Film: What talk show hostess gave her guests the fewest opportunities to speak, according to a 1996 MSU survey?
+Oprah Winfrey
+10
+
+TV/Film: what texan slammed back more bourbon & branch water than any character in tv history?
+J. r. ewing
+10
+
+TV/Film: What theme is central to the movies The Lost Weekend, The Morning After and My Name Is Bill W.?
+Alcoholism
+10
+
+TV/Film: What three Godfather cast members were all up for the Best Supporting Actor Oscar?
+James Caan, Robert Duvall, AL Pacino
+10
+
+TV/Film: What three-word line is indispensable to Cary Grant impersonators?
+Judy, Judy, Judy
+10
+
+TV/Film: what thrill flick master died at 80 in 1980?
+Alfred hitchcock
+10
+
+TV/Film: What title role in a 1995 Oscar-winning movie was played by more than 40 cast members?
+Babe
+10
+
+TV/Film: what transporter room aboard the enterprise is chief o'brien's favorite?
+Three
+10
+
+TV/Film: what trivia fact about mel blanc (voice of bugs bunny) is most ironic?
+He was allergic to carrots
+10
+
+TV/Film: what tv comedian with no id card was asked to give a tarzan yell to verify her identity, at bergdorf goodman?
+Carol burnett
+10
+
+TV/Film: What TV doctor battles the Daleks?
+Dr who
+10
+
+TV/Film: What TV network features programming just for children?
+Nickelodeon
+10
+
+TV/Film: what tv series did dirk benedict star in?
+Battlestar galactica
+10
+
+TV/Film: What TV series from 1970-1974 starred Susan Dey?
+Partridge Family
+10
+
+TV/Film: what tv series starred six female impersonators during its 17 year run?
+Lassie
+10
+
+TV/Film: what tv show centered around a car with a 300 mph cruising speed?
+Knight rider
+10
+
+TV/Film: what tv show made henry winkler a star?
+Happy days
+10
+
+TV/Film: what tv show saw robert culp wearing a nehru jacket & peace pendant?
+I spy
+10
+
+TV/Film: what tv show took place at the convent san tanco?
+Flying nun
+10
+
+TV/Film: what tv show when off the air when it was still #1 in the ratings?
+I love lucy
+10
+
+TV/Film: what tv talker penned tell it to the king?
+Larry king
+10
+
+TV/Film: what two julies won best actress oscars for 1964 and 1965?
+Andrews & christie
+10
+
+TV/Film: what two seinfeld characters reversed the peepholes in their apartment doors?
+Kramer & newman
+10
+
+TV/Film: What two words are normally at the end of most movies?
+The end
+10
+
+TV/Film: What two words are normally at the end of most movies?
+The End
+10
+
+TV/Film: What twosome starred in Raging Bull, Goodfellas and Casino?
+Robert De Niro and Joe Pesci
+10
+
+TV/Film: What type of car did Emma Peel drive in The Avengers?
+Lotus Elan
+10
+
+TV/Film: What type of dead parrot did John Cleese take back to the pet shop?
+A NORWEIGAN BLUE
+10
+
+TV/Film: What type of dog is Lady in the cartoon 'Lady and the Tramp'?
+Cocker spaniel
+10
+
+TV/Film: What type of dog was Beethoven in the film of that name?
+St. bernard
+10
+
+TV/Film: What type of fish was John Cleeses pet Eric?
+Halibut
+10
+
+TV/Film: what type of vehicle took bj away from the 4077th for the last time?
+Motorcycle
+10
+
+TV/Film: What U K comedy series was centred around Grace Bros department store?
+Are you being served
+10
+
+TV/Film: What U.S. state is the setting for I Dream of Jeannie?
+Florida
+10
+
+TV/Film: What video, the first to cost over $150,000, helped Michael Jackson's Thriller soar?
+Beat It
+10
+
+TV/Film: What wa s the name of the cook in Upstairs Downstairs?
+Mrs Bridges
+10
+
+TV/Film: what war was gone with the wind about?
+Civil war
+10
+
+TV/Film: What was antimatter used for on the starship Enterprise on the Star Trek TV series?
+Power the ships engines
+10
+
+TV/Film: What was Archie Bunkers wife's name?
+Edith
+10
+
+TV/Film: what was barbara streisand's first film?
+Funny girl
+10
+
+TV/Film: What was Barbra Streisands first film?
+Funny girl
+10
+
+TV/Film: What was Ben Stiller's character called in 'Mystery Men'?
+Mr. Furious
+10
+
+TV/Film: What was Bluto's grade point average in the film Animal House?
+0
+10
+
+TV/Film: what was bob dyer's wife's first name?
+Dolly
+10
+
+TV/Film: What was Bugs Bunny originally known as?
+Oswald the rabbit
+10
+
+TV/Film: What was Charlie Chaplins middle name?
+Spencer
+10
+
+TV/Film: What was Citizen Kane's dying word?
+Rosebud
+10
+
+TV/Film: What was Citizen Kane's dying word?
+Rosebud
+10
+
+TV/Film: What was Coronation Stret originally going tobe called until it was realised that it sounded like a loo cleaner?
+Florizel street
+10
+
+TV/Film: what was daffy ducks usual closing line?
+You're dispicable
+10
+
+TV/Film: what was dirty harry's badge number?
+2211
+10
+
+TV/Film: What was Eddie Murphy's character name in 'Beverley Hills Cop'?
+Axel foley
+10
+
+TV/Film: What was Garth's last name in 'Wayne's World'?
+Algar
+10
+
+TV/Film: What was Gary Coopers last film?
+The Naked Edge
+10
+
+TV/Film: what was george of the jungle always running in to?
+Trees
+10
+
+TV/Film: what was goldfinger's first name?
+Auric
+10
+
+TV/Film: what was james cagney's natural hair colour?
+Red
+10
+
+TV/Film: What was John Wayne's real name?
+Marion Morrison
+10
+
+TV/Film: what was keanu reeves' computer world alias in 'the matrix'?
+Neo
+10
+
+TV/Film: what was keanu reeves' first big film?
+Point break
+10
+
+TV/Film: what was kevin bacon's first big hit?
+Footloose
+10
+
+TV/Film: what was lestat's last name?
+De lioncourt
+10
+
+TV/Film: what was lestat's mother's name?
+Gabrielle
+10
+
+TV/Film: what was lucy's maiden name on 'i love lucy'?
+Mcgillicuddy
+10
+
+TV/Film: What was Mae West's last film?
+Sextet
+10
+
+TV/Film: What was Marilyn Monroes name in Some like it Hot?
+Sugar cane
+10
+
+TV/Film: what was mary ann's last name in gilligans island?
+Summers
+10
+
+TV/Film: What was mary ann's last name off of gilligans island?
+Summers
+10
+
+TV/Film: what was mickey mouse almost called?
+Mortimer
+10
+
+TV/Film: what was mickey mouse's first known as?
+Mortimer mouse
+10
+
+TV/Film: what was mr. spock's blood type?
+X positive
+10
+
+TV/Film: what was napoleon solos boss's name?
+Mr waverley
+10
+
+TV/Film: What was Npoleon Solos boss's name?
+Mr waverley
+10
+
+TV/Film: What was one of the 5 movies nominated for best motion picture in 1955?
+Mister roberts
+10
+
+TV/Film: what was one of the 5 movies nominated for best picture in 1989?
+Field of dreams
+10
+
+TV/Film: What was painted on Peter Fonda's helmet motorcycle helmet in 'Easy Rider'?
+Stars and stripes
+10
+
+TV/Film: what was pat brady's jeep named on the roy rogers show?
+Nellybelle
+10
+
+TV/Film: What was Raquel Welshs most famous movie?
+One million years BC
+10
+
+TV/Film: What was Rocky's nickname in the ring?
+Italian stallion
+10
+
+TV/Film: what was rocky's nickname in the ring?
+The italian stallion
+10
+
+TV/Film: what was samantha & darren stevens' girl called in bewitched?
+Tabitha
+10
+
+TV/Film: what was samantha's mother's name in bewitched?
+Endora
+10
+
+TV/Film: what was shirley maclains first film?
+Goodbye
+10
+
+TV/Film: What was Stanley Kubrick's first film after 2001: A Space Odyssey?
+A Clockwork Orange
+10
+
+TV/Film: what was stoney burke's occupation?
+Rodeo rider
+10
+
+TV/Film: what was superman vulnerable to?
+Kryptonite
+10
+
+TV/Film: what was supermans dog named?
+Krypto
+10
+
+TV/Film: What was the 1993 sequel to the 1979 thriller When a Stranger Calls?
+When a Stranger Calls Back
+10
+
+TV/Film: what was the andy griffith show a spin off of?
+The danny thomas show
+10
+
+TV/Film: What was the Beatles first film?
+A hard days night
+10
+
+TV/Film: What was the christian name of the title character in Our Miss Brooks?
+Constance 
+10
+
+TV/Film: What was the company name that Wile E. Coyote ordered products from?
+Acme 
+10
+
+TV/Film: what was the dog's name in the brady bunch?
+Tiger
+10
+
+TV/Film: what was the favourite dish at mel's diner in alice?
+Chili
+10
+
+TV/Film: what was the favourite dish at mels diner in alice?
+Chili
+10
+
+TV/Film: What was the first Arnold Schwarzenegger movie to win four Academy Awards?
+Terminator 2
+10
+
+TV/Film: what was the first city with more than one tv station?
+New york
+10
+
+TV/Film: What was the first film directed by Robert Redford?
+Ordinary people
+10
+
+TV/Film: What was the first film directed by Robert Redford?
+Ordinary People
+10
+
+TV/Film: What was the first film released by Liberty Pictures?
+It's a wonderful life 
+10
+
+TV/Film: what was the first film to offer viewers an intermission?
+Gone with the wind
+10
+
+TV/Film: what was the first film to team jack lemmon & walter matthau?
+Fortune cookie
+10
+
+TV/Film: What was the first Harry Palmer film?
+The Ipcress File
+10
+
+TV/Film: what was the first movie tom cruise & nicole kidman star together in?
+Days of thunder
+10
+
+TV/Film: What was the first name of Charlie Chaplin's last wife?
+Oona
+10
+
+TV/Film: What was the first network series devoted entirely to rock and roll?
+American bandstand
+10
+
+TV/Film: What was the first programme shown on Channel 4 on 2nd November 1982?
+Countdown
+10
+
+TV/Film: What was the first Speilberg movie to be shot completely on soundstages?
+Hook
+10
+
+TV/Film: what was the first spin off in tv history?
+The andy griffith show
+10
+
+TV/Film: what was the first talking picture filmed by mgm (1928)?
+Alias jimmy valentine
+10
+
+TV/Film: what was the first x-rated animated cartoon movie?
+Fritz the cat
+10
+
+TV/Film: What was the headline of Frank Drebin's newspaper at the beginning of the Third 'Naked Gun' series?
+Dyslexia For Cure Found
+10
+
+TV/Film: what was the highest rated u.s syndicated game show in 1982?
+Family feud
+10
+
+TV/Film: What was the hospital St. Eligius better known as in the title of the t.v. series?
+St elsewhere
+10
+
+TV/Film: what was the inspector's name in boston blackie?
+Francis faraday
+10
+
+TV/Film: What was the location of the filming for Brideshead revisited?
+Castle howard
+10
+
+TV/Film: what was the magic word in mary poppins?
+Supercalifragilisticexpialidocious
+10
+
+TV/Film: What was the name for Tom Hanks volleyball companion in the movie 'Cast Away'?
+Wilson
+10
+
+TV/Film: what was the name given to robin hood's men in sherwood forest?
+Merry men
+10
+
+TV/Film: what was the name of archie bunker's grandson?
+Joey stivic 
+10
+
+TV/Film: What was the name of Buffy's doll in the 1970's show 'Family Affair'?
+Mrs. Beasley
+10
+
+TV/Film: what was the name of captain jean luc Picard's fish?
+Livingston
+10
+
+TV/Film: what was the name of darren's boss?
+Larry tait
+10
+
+TV/Film: What was the name of Diana Dors' actor husband?
+Alan Lake
+10
+
+TV/Film: what was the name of dick & jane's dog?
+Spot
+10
+
+TV/Film: what was the name of flash gordon's girlfriend?
+Dale arden
+10
+
+TV/Film: What was the name of Inspector Clouseau's manservant?
+Cato
+10
+
+TV/Film: what was the name of lisa's pony in the simpsons?
+Princess
+10
+
+TV/Film: what was the name of luke mccoy's younger brother in the real mccoys?
+Little luke
+10
+
+TV/Film: What was the name of Mary Richard's boss?
+Lou Grant
+10
+
+TV/Film: what was the name of morticia addams man eating plant?
+Cleopatra
+10
+
+TV/Film: what was the name of mr. wilson's dog in dennis the menance?
+Fremont
+10
+
+TV/Film: what was the name of princess leia's home planet?
+Alderon
+10
+
+TV/Film: What was the name of Quints boat in Jaws?
+The orca
+10
+
+TV/Film: What was the name of Richard Beckinsales character in Porridge?
+Lennie Godber
+10
+
+TV/Film: What was the name of Ross' pet monkey on 'Friends'?
+Marcel
+10
+
+TV/Film: what was the name of ross's pet monkey on friends?
+Marcell
+10
+
+TV/Film: what was the name of scarlett and rhetts's daughter in gone with the wind?
+Bonnie blue butler
+10
+
+TV/Film: what was the name of sherlock holmes' smarter older brother?
+Mycroft
+10
+
+TV/Film: what was the name of sky king's 1953 twin cessna airplane?
+Songbird
+10
+
+TV/Film: what was the name of steptoe and sons horse?
+Hercules
+10
+
+TV/Film: What was the name of the aging rock band in the 1987 series Tutti Frutti?
+The Majestics
+10
+
+TV/Film: what was the name of the alligator on miami vice?
+Elvis
+10
+
+TV/Film: what was the name of the aunt in the western 'how the west was won'?
+Molly
+10
+
+TV/Film: what was the name of the bartender in the tv series 'cheers'?
+Sam malone
+10
+
+TV/Film: What was the name of the butler in To the manor born?
+Brabinger
+10
+
+TV/Film: what was the name of the car belonging to tom slick?
+Thunderbolt grease slapper
+10
+
+TV/Film: what was the name of the car in the Stephen King movie of the same name?
+Christine
+10
+
+TV/Film: what was the name of the character played by antino fargas in 'starsky and hutch'?
+Huggy bear
+10
+
+TV/Film: what was the name of the character played by kate jackson in the rookies?
+Jill danko
+10
+
+TV/Film: What was the name of the character resembling Babe Ruth in The Natural?
+The whammer
+10
+
+TV/Film: What was the name of the character that Michael Caine played in the movie Ipcress File?
+Harry Palmer
+10
+
+TV/Film: what was the name of the dance company on the carol burnett show?
+Ernest flatt dancers
+10
+
+TV/Film: what was the name of the dog in rca victor's trademark?
+Nipper
+10
+
+TV/Film: what was the name of the dog in the bionic woman?
+Max
+10
+
+TV/Film: what was the name of the evil oranization on get smart?
+K.a.o.s.
+10
+
+TV/Film: what was the name of the first film where george burns played god?
+Oh, god
+10
+
+TV/Film: What was the name of the first vampire to appear in buffy?
+Darla
+10
+
+TV/Film: what was the name of the flying nun?
+Sister bertrille
+10
+
+TV/Film: What was the name of the house destroyed by fire in Gone With the Wind?
+Tara
+10
+
+TV/Film: what was the name of the husband of the pretty witch in bewitched?
+Darrin 
+10
+
+TV/Film: what was the name of the last film where george burns played god?
+Oh god, you devil
+10
+
+TV/Film: what was the name of the oil company that bought jed clampett's oil strike?
+The ok oil company of tulsa
+10
+
+TV/Film: What was the name of the pinball machine in the film 'Tommy'?
+Wizard
+10
+
+TV/Film: What was the name of the Prison in Prisoner?
+Wentworth Detention Centre
+10
+
+TV/Film: what was the name of the ranch in bonanza?
+Ponderosa
+10
+
+TV/Film: what was the name of the ranch in the tv series 'bonanza'?
+Ponderosa
+10
+
+TV/Film: what was the name of the ranch on the roy rogers show?
+Double r bar ranch
+10
+
+TV/Film: what was the name of the six million dollar man?
+Steve austin
+10
+
+TV/Film: what was the name of the two space shuttles in 'armegeddon'?
+Freedom & independence
+10
+
+TV/Film: what was the number of gunther toody's patrol car?
+54
+10
+
+TV/Film: what was the real name of john wayne?
+Marion morrison
+10
+
+TV/Film: what was the real name of the dolphin that played flipper in the movie?
+Mitzi
+10
+
+TV/Film: What was the Saved by the bell series with Hayley Mills originally called?
+Good Morning, Mis Bliss
+10
+
+TV/Film: what was the screen name of the lead character in the untouchables?
+Elliot ness
+10
+
+TV/Film: What was the second movie that Olivia Newton John and John Travolta starred in together?
+Two of a Kind
+10
+
+TV/Film: what was the secret identity of captain America?
+Steve rogers
+10
+
+TV/Film: what was the sequel to 'going my way'?
+The bells of st mary's
+10
+
+TV/Film: What was the sequel to Gentlemen Prefer Blondes?
+Gentlemen marry brunettes
+10
+
+TV/Film: What was the sequel to The Pink Panther?
+A shot in the dark
+10
+
+TV/Film: What was the setting for the 1984 series Trippers day?
+Supermarket
+10
+
+TV/Film: what was the setting for the sound of music?
+Austria
+10
+
+TV/Film: what was the shape of lolita's sunglasses in the 1962 film?
+Hearts
+10
+
+TV/Film: What was the subtitle of the third movie in 'The Naked Gun' series?
+The Final Insult
+10
+
+TV/Film: What was the title of Speilbergs first feature movie?
+Duel
+10
+
+TV/Film: What was Tom Hank's profession in philadelphia?
+Lawyer
+10
+
+TV/Film: What was unusual about Derek Jarmans film Sebastiane?
+It was in latin
+10
+
+TV/Film: What was used for blood in the film 'psycho'?
+Chocolate syrup
+10
+
+TV/Film: What was used for riot control in the movie Soylent Green?
+The Scoups
+10
+
+TV/Film: what was Walt Disney's second full length feature cartoon?
+Pinocchio
+10
+
+TV/Film: What was Woody Woodpecker's hometown called?
+Puddleburg
+10
+
+TV/Film: What was Yossers catchword?
+Gizzajob
+10
+
+TV/Film: what watch company sponsored the first tv commercial on july 1, 1941?
+Bulova
+10
+
+TV/Film: What were the eight film sequels released in the summer of 1989, the summer of sequels?
+Star Trek V: The Final Frontier
+10
+
+TV/Film: what were the stakes between mr simmons & goldfinger in the rigged gin game?
+Five dollars a point
+10
+
+TV/Film: What word was intentionally omitted from the film The Godfather?
+Mafia
+10
+
+TV/Film: What zip code was mentioned 301 times in the first five years of Entertainment Weekly?
+90210
+10
+
+TV/Film: what's ace ventura's occupation?
+Pet detective
+10
+
+TV/Film: what's dr pulaski's first name?
+Catherine
+10
+
+TV/Film: What's My ____?
+Line
+10
+
+TV/Film: What's the favorite movie of rose bud?
+Citizen kane
+10
+
+TV/Film: what's the first video game to become a television show?
+Pacman
+10
+
+TV/Film: What's the first word of the most pop song titles?
+I
+10
+
+TV/Film: What's the first word uttered in Citizen Kane?
+Rosebud
+10
+
+TV/Film: what's the name of the voice over actor who played fred flintstone?
+Daws butler
+10
+
+TV/Film: Whats the collective name for westerns made in Italy?
+Spaghetti westerns
+10
+
+TV/Film: whats the first name of batmans butler?
+Alfred
+10
+
+TV/Film: Whats the name of the cartoon character who lives in Jellystone National Park?
+Yogi bear
+10
+
+TV/Film: Whats the name of the Wilkes plantation in Gone with the Wind?
+Twelve oaks
+10
+
+TV/Film: When Buffy died what did it say at the bottom of her gravestone?
+She saved the world a lot
+10
+
+TV/Film: When did the series 'Lost In Space' premier on CBS?
+1965
+10
+
+TV/Film: when going on stage, actors consider it bad luck to be wished what?
+Good luck
+10
+
+TV/Film: When Harry met Sally, who played Harry?
+Billy Crystal
+10
+
+TV/Film: when the students in 'dead poets' society' stood on their desks & said 'o captain! my captain', who were they quoting?
+Walt whitman
+10
+
+TV/Film: When was the show Leave It To Beaver first aired?
+October 4, 1957
+10
+
+TV/Film: where did dorothy's house land in 'the wizard of oz'?
+On the wicked witch of the west
+10
+
+TV/Film: Where did Maxwell Smart hide his telephone?
+His right shoe
+10
+
+TV/Film: where did the kids sit on tvs howdy doody time?
+The peanut gallery
+10
+
+TV/Film: where do the flintstones live?
+Bedrock
+10
+
+TV/Film: where do the simpsons live?
+Springfield
+10
+
+TV/Film: Where does George Jetson work?
+Spacely space sprockets 
+10
+
+TV/Film: where does lilith work?
+Boston general
+10
+
+TV/Film: Where does Miss Teschmacher's mother live in the movie Superman?
+Hackensack
+10
+
+TV/Film: Where is buffy set?
+Sunnydale 
+10
+
+TV/Film: Where is Coronation Street based?
+Weatherfield
+10
+
+TV/Film: Where is Heartbeat set?
+Aidensfield
+10
+
+TV/Film: Where is the TV Series A Country Practice set?
+Wandin Valley
+10
+
+TV/Film: Where is the TV Series Blue Heelers set?
+Mt. Thomas
+10
+
+TV/Film: Where type of dwelling did the Swiss Family Robinson live in?
+A Tree House
+10
+
+TV/Film: where was entertainer john candy born?
+Toronto, Canada
+10
+
+TV/Film: where was errol flynn born?
+Tasmania Australia
+10
+
+TV/Film: Where was Geoff Hamiltons BBc gardens?
+Barnsdale
+10
+
+TV/Film: Where was Gomer Pyle based?
+Camp pendleton
+10
+
+TV/Film: where was matt dillon the sheriff?
+Dodge
+10
+
+TV/Film: where was riker raised?
+Alaska
+10
+
+TV/Film: Where was the 1954 film Three coins in a fountain set?
+Rome
+10
+
+TV/Film: where were archie & edith bunkers chairs enshrined?
+The smithsonian institute
+10
+
+TV/Film: where were donald duck comics banned because he doesnt wear pants?
+Finland
+10
+
+TV/Film: where were sherlock holmes' rooms?
+Baker street
+10
+
+TV/Film: which 'tarzan' swimmer was the first man to swim a hundred yards in less than a minute?
+Johnny weismuller
+10
+
+TV/Film: which 1959 alfred hitchcock thriller saw cary grant being chased by a crop duster?
+North by northwest
+10
+
+TV/Film: which 1981 film starring dudley moore, liza minnelli & john gielgud had a theme sung by christopher cross?
+Arthur
+10
+
+TV/Film: Which 1993 film starred Richard Attenborough?
+Jurassic park
+10
+
+TV/Film: which 1999 action-comedy starred mark wahlberg and lou diamond phillips as hitmen?
+The big hit
+10
+
+TV/Film: which 1999 black comedy film featuring kirstie alley and ellen barkin satirised American beauty pageants?
+Drop dead gorgeous
+10
+
+TV/Film: which 1999 film starred brendan fraser as a 1920's adventurer and rachel weisz as a librarian?
+The mummy
+10
+
+TV/Film: which 1999 film starring will smith and kevin kline as two u.s. marshals?
+Wild wild west
+10
+
+TV/Film: which 1999 soundtrack featured melanie c solo track ga ga?
+Big daddy
+10
+
+TV/Film: which 1999 viking action film starred antonia banderas as an arab poet?
+The 13th warrior
+10
+
+TV/Film: Which 2011 movie tells the tale of a Hollywood stuntman played by Ryan Gosling?
+Drive
+10
+
+TV/Film: Which actor did Vivien Leigh marry?
+Laurence Olivier
+10
+
+TV/Film: Which actor has portrayed a villain in the films Patriot Games, Goldeneye, National Treasure, and Don't Say A Word?
+Sean Bean
+10
+
+TV/Film: which actor is one of the world's top professional bridge players?
+Omar shariff
+10
+
+TV/Film: which actor played a young obi-wan kenobi in the Star Wars prequel, episode 1: the phantom menace?
+Ewan mcgregor
+10
+
+TV/Film: which actor played nick leeson in the 1999 film about the collapse of barings bank, rogue trader?
+Ewan mcgregor
+10
+
+TV/Film: which actor played the title role in the mad max series of films?
+Mel gibson
+10
+
+TV/Film: Which actor provided the baby's voice in 'Look Who's Talking'?
+Bruce willis
+10
+
+TV/Film: Which actor Reeves starred in _Bram Stoker's Dracula?
+Keanu
+10
+
+TV/Film: Which actor was torn between Sigourney Weaver and Melanie Griffiths in working Girl?
+Harrison Ford
+10
+
+TV/Film: Which actress came 3rd in the 1988 Miss World Competition?
+Halle Berry
+10
+
+TV/Film: Which actress made a million by the age of 10?
+Shirley temple
+10
+
+TV/Film: which actress played a gangster's moll lumbered with a little boy in the 1999 film gloria?
+Sharon stone
+10
+
+TV/Film: Which actress was covered in gold paint in the 1964 Bond Movie Goldfinger?
+Shirley eaton
+10
+
+TV/Film: Which actress was stabbed in the shower in Psycho?
+Janet Leigh
+10
+
+TV/Film: Which actress was the first to travel with Dr Who?
+Carol ann ford
+10
+
+TV/Film: Which American actress starred in the 1980 film comedy Private Benjamin?
+Goldie Hawn
+10
+
+TV/Film: Which American film actor played himself in the 1955 war film biography To hell and back?
+Audie murphy
+10
+
+TV/Film: which animal tv series ran for the greatest number of seasons?
+Lassie
+10
+
+TV/Film: Which basketball star played a genie in 'Kazaam'?
+Shaquille O'Neal
+10
+
+TV/Film: Which BBC comedy series starring Meera Syal satirises Asian life in Britian?
+Goodness gracious me
+10
+
+TV/Film: which bbc1 police drama starred warren clarke and colin buchanan?
+Dalziel and pascoe
+10
+
+TV/Film: which board game did humphrey bogart excel at?
+Chess
+10
+
+TV/Film: Which Bond theme was sung by Nancy Sinatra?
+You only live twice
+10
+
+TV/Film: Which book did producer Kathleen Kennedy describe as - one of those projects that was so obviously a Spielberg film?
+Jurassic park
+10
+
+TV/Film: which brassy liver bird is paul o grady's alter ego?
+Lily savage
+10
+
+TV/Film: Which British singer recorded Elvis Presleys Suspicious Minds for the Disney film Lilo and Stitch?
+Gareth gates
+10
+
+TV/Film: Which cartoon character had 3 nephews called Huey,Dewey and Louie?
+Donald duck
+10
+
+TV/Film: which cartoon character lives in a dustbin?
+Top cat
+10
+
+TV/Film: Which cat constantly chases Tweety Pie?
+Sylvester
+10
+
+TV/Film: which character did diana rigg play in the 'the avengers'?
+Emma peel
+10
+
+TV/Film: Which character did Harrison Ford play in Star Wars?
+Han Solo
+10
+
+TV/Film: Which character did Paul Eddington play in Yes, Minister?
+Jim Hacker
+10
+
+TV/Film: Which character does Alwyn Kurts play in Homicide?
+Inspector Colin Fox
+10
+
+TV/Film: Which Character does Carol Burns play in Prisoner?
+Franky Doyle
+10
+
+TV/Film: Which character does Damian Walshe-Howling play in Blue Heelers?
+Constable Adam Cooper
+10
+
+TV/Film: Which character does Don Barker play in Homicide?
+DetEctive Sergeant Harry White
+10
+
+TV/Film: Which Character does Ed Devereaux play in Skippy?
+Matt Hammond
+10
+
+TV/Film: Which Character does Garry Pankhurst play in Skippy?
+Sonny Hammond
+10
+
+TV/Film: Which character does Gary Day play in Homicide?
+Senior Detective Phil Redford
+10
+
+TV/Film: Which character does George Mallaby play in Homicide?
+Senior Detective Peter Barnes
+10
+
+TV/Film: Which character does Gerard Kennedy play in Division 4?
+Detective Sergeant Frank Banner
+10
+
+TV/Film: Which character does Gill Tucker play in Cop Shop?
+Constable Roy Baker
+10
+
+TV/Film: Which character does Joyce Jacobs play in A Country Practice?
+Esme Watson
+10
+
+TV/Film: Which Character does Ken James play in Skippy?
+Mark Hammond
+10
+
+TV/Film: Which character does Leonard Teale play in Homicide?
+Detective Sergeant David Mackay
+10
+
+TV/Film: Which character does Martin Sacks play in Blue Heelers?
+Senior Detective P.J. Hasham
+10
+
+TV/Film: Which character does Michael Pate play in Matlock Police?
+Detective Sergeant Vic Maddern
+10
+
+TV/Film: Which character does Norman Yemm play in Homicide?
+Senior Detective Jim Patterson
+10
+
+TV/Film: Which character does Paul Cronin play in Matlock Police?
+Senior Constable Gary Hogan
+10
+
+TV/Film: Which Character does Paul Cronin play in Solo One?
+Gary Hogan
+10
+
+TV/Film: Which Character Does Paul Cronin play in The Sullivans?
+Dave Sullivan
+10
+
+TV/Film: Which Character does Paula Duncan play in Cop Shop?
+Detective Danni Francis
+10
+
+TV/Film: Which character does Penny Cook play in A Country Practice?
+Vicki Dean
+10
+
+TV/Film: Which Character does Rod Mulliner play in Ryan?
+Michael Ryan
+10
+
+TV/Film: Which character does Ross Higgins play in Kingswood Country?
+Ted Bulpitt
+10
+
+TV/Film: Which Character does Shiela Florence play in Prisoner?
+Lizzy Birdsworth
+10
+
+TV/Film: Which Character does Steve Bisley play in Water Rats?
+Detective Sergeant Jack Christey
+10
+
+TV/Film: Which character does Syd Heylen play in A Country Practice?
+Cookie
+10
+
+TV/Film: Which character does Terry Norris play in Cop Shop?
+Senior Sergeant Eric O'Rielly
+10
+
+TV/Film: Which Character does Val Lehman play in Prisoner?
+Bea Smith
+10
+
+TV/Film: Which character is is played by Richard Attenborough in the 1994 film Miracle on 34th Street?
+Santa claus
+10
+
+TV/Film: Which character left buffy and now has his own hit T.V show of the same name?
+Angel
+10
+
+TV/Film: Which character played the drums in the Muppets?
+Animal
+10
+
+TV/Film: Which child star featured in Michael Jacksons black or White video?
+Macaulay culkin
+10
+
+TV/Film: Which children's author wrote the screenplay of 'Chitty Chitty Bang Bang'?
+Roald dahl
+10
+
+TV/Film: Which childrens programme featured the soup dragon, the froglets and the iron chicken?
+The clangers
+10
+
+TV/Film: which city had the first movie theatre in the u.s?
+Los angeles
+10
+
+TV/Film: Which classic 1939 Hollywood film derives from Maupassants Boule de Suif?
+Stagecoach
+10
+
+TV/Film: Which colourful cat was sought by Inspector Clouseau?
+Pink panther
+10
+
+TV/Film: which comedian produced bill cosby's first album?
+Allan sherman
+10
+
+TV/Film: which comic book hero was the first to spawn a television series?
+Superman
+10
+
+TV/Film: Which comic character had the vital statistics 19 19 19?
+Olive oil
+10
+
+TV/Film: which company produced the syndicated mouse factory series?
+Walt disney studios
+10
+
+TV/Film: Which company produces the Teletubbies?
+Regdoll productions
+10
+
+TV/Film: Which composer did Carl Boehm play in the filmThe Magnificent Rebel?
+Beethoven
+10
+
+TV/Film: which crimewatch presenter fronted bbc1's series 'so you think you're a good driver'?
+Nick ross
+10
+
+TV/Film: which disaster movie was actually nominated for a best picture oscar?
+The towering inferno
+10
+
+TV/Film: Which Disney movie features Mufasa and his brother Scar?
+The lion king
+10
+
+TV/Film: Which English actress was married to Jean-Michel Jarre?
+Charlotte rampling
+10
+
+TV/Film: which essex town provided the setting for channel 4's documentary series soldier town?
+Colchester
+10
+
+TV/Film: Which ex Blue Peter presenter went on to present Songs of Praise?
+Diane Louise Jordan
+10
+
+TV/Film: Which ex F1 racing driver went on to present ITVs Grand Prix Live programme?
+Martin Brundle
+10
+
+TV/Film: which ex-player presented itv's football magazine series 'on the ball' with gabby yorath?
+Barry venison
+10
+
+TV/Film: which famous actor is emilio estevez's brother?
+Charlie sheen
+10
+
+TV/Film: which famous actor is emilio estevez's father?
+Martin sheen
+10
+
+TV/Film: which famous actor is keifer sutherland's father?
+Donald sutherland
+10
+
+TV/Film: which famous actor is michael douglas' father?
+Kirk douglas
+10
+
+TV/Film: which famous actor is the nephew of francis ford coppolo?
+Nicholas cage
+10
+
+TV/Film: Which famous actress contributed some of the vocal effects for ETs voice?
+Debra winger
+10
+
+TV/Film: Which famous little tramp was born in britain?
+Charlie chaplin
+10
+
+TV/Film: Which famous male actor made his name in 'I Dream Of Jeannie'?
+Larry Hagman
+10
+
+TV/Film: Which famous TV cartoon prehistoric family made their own movie?
+The flintstones
+10
+
+TV/Film: Which female character left buffy the vampire slayer and is now a main character in angel?
+Cordelia Chase
+10
+
+TV/Film: which female film personality was once imprisoned in the maximum security casa circondarialli prison in italy?
+Sophia loren
+10
+
+TV/Film: Which film actor began his climb to stardom in the TV cowboy series 'Rawhide'?
+Clint eastwood
+10
+
+TV/Film: Which film brought Spielberg his second Oscar for direction?
+Saving private ryan
+10
+
+TV/Film: Which film director, much admired by Spielberg,played the roles of a scientist in Close Encounters of the Third Kind?
+Francois truffant
+10
+
+TV/Film: which film featured harold lloyd dangling from a clock tower?
+Safety last
+10
+
+TV/Film: Which film features a group going down a really big hole to find Arne Saknussem?
+Journey to the Center of the Earth
+10
+
+TV/Film: Which film features Four of the Queen's guys taking on Four of the Cardinal's guys?
+The Three Musketeers
+10
+
+TV/Film: Which film has been made 58 times including cartoon,ballet, operatic, pornographic and parody versions?
+Cinderella
+10
+
+TV/Film: Which film industry brothers were Jack, Sam, Harry and Albert?
+Warner brothers
+10
+
+TV/Film: Which film maker has made his home in exile in Paris after fleeing rape charges in the US?
+Roman polanski
+10
+
+TV/Film: Which film preceded 'Magnum Force' and 'The Enforcer'?
+Dirty Harry
+10
+
+TV/Film: which film preceded magnum force & the enforcer?
+Dirty harry
+10
+
+TV/Film: Which film returned Love is All Around to the charts?
+Four weddings and a funeral
+10
+
+TV/Film: which film star and opera singer was killed in a plane crash in 1947?
+Grace Moore
+10
+
+TV/Film: which film star has his statue in leicester square?
+Charlie chaplin
+10
+
+TV/Film: Which film starring Julie Andrews and Christopher Plummer won the Oscar for best picture in 1965?
+The Sound Of Music
+10
+
+TV/Film: which film won rod steiger the best actor oscar in 1967?
+In the heat of the night
+10
+
+TV/Film: Which film won the best picture Oscar in 1990?
+Dances with wolves 
+10
+
+TV/Film: Which films are about the Corleone family?
+The Godfather films
+10
+
+TV/Film: Which great film stars last film was Cuban Rebel Girls in 1959?
+Errol Flynn
+10
+
+TV/Film: Which hitchcock film is based on a novel by Daphne du Maurier?
+The birds
+10
+
+TV/Film: Which holiday camp is featured in Hi de Hi?
+Maplins
+10
+
+TV/Film: which hollywood actor combined gibraltar & a river to create his name?
+Rock hudson
+10
+
+TV/Film: which hollywood actor was born stephen burton?
+Burt lancaster
+10
+
+TV/Film: Which horrific film creation was activated if his name was spoken 3 times into a mirror?
+Candyman
+10
+
+TV/Film: which is the purple teletubbie?
+Tinky winky
+10
+
+TV/Film: which junior made a tv docudrama about his dad?
+Michael landon jr
+10
+
+TV/Film: Which Lauren was married to Humphrey Bogart?
+Bacall
+10
+
+TV/Film: Which little Ken Dodd characters came from Knotty Ash?
+The diddy men
+10
+
+TV/Film: which liverpool and England footballer displayed his Football skills in a bbc2 series?
+Michael owen
+10
+
+TV/Film: which macho actor died in 1979, his real name was marion michael morrison?
+John wayne
+10
+
+TV/Film: which marx brother had real name julius henry?
+Groucho
+10
+
+TV/Film: which marx brother had real name milton?
+Gummo
+10
+
+TV/Film: which marx brothers real first name was arthur?
+Harpo
+10
+
+TV/Film: which motel chain paid connie frances $2.65 million as a settlement because she was raped in one of its motels?
+Howard johnson
+10
+
+TV/Film: which movie did cher, michelle pfeiffer & susan sarandon star together in?
+The witches of eastwick
+10
+
+TV/Film: which movie did michelle pfeifer & george clooney star together in?
+One fine day
+10
+
+TV/Film: Which Movie does Whoopi Goldberg give birth to a white child?
+Made in America
+10
+
+TV/Film: which movie musical features alan arkin as a has been superhero?
+The return of captain invincible
+10
+
+TV/Film: Which movie saw Sylvester Stallone sentenced to 70 years in a deep freeze?
+Demolition man
+10
+
+TV/Film: which movie starred both john travolta & olivia newton john?
+Grease
+10
+
+TV/Film: which movie starred glenn close, jeff bridges & robert loggia?
+Jagged edge
+10
+
+TV/Film: Which Ms. Turner was the speaking voice of the voluptuous Jessica Rabbit?
+Kathleen
+10
+
+TV/Film: Which National Trust Property was the location for Mr Darcys home in the BBC 1995 adaptation of Pride and Predjudice?
+Lyme park
+10
+
+TV/Film: Which of speilbergs films centres on aboy living in Shanghai at the outset of WWii?
+Empire of the sun
+10
+
+TV/Film: Which of The Color Purples co producers also wrote the music for the film?
+Quincy jones
+10
+
+TV/Film: which of the four monkees was marcia in love with (brady bunch)?
+Davey jones
+10
+
+TV/Film: which of the munsters is 350 years old?
+Grandpa
+10
+
+TV/Film: Which of the Teletubbies has a triangular antennae?
+Tinky Winky
+10
+
+TV/Film: which of tom & jerry is the cat?
+Tom
+10
+
+TV/Film: Which Oliver Stone war film won best picture Oscar in 1986?
+Platoon
+10
+
+TV/Film: Which Oscar winning film of the 1980s was directed by Hugh Hudson?
+Chariots of FirE
+10
+
+TV/Film: Which Oscar winning song came from the film The Thomas Crown Affair?
+Windmills of your mind
+10
+
+TV/Film: Which part of his body did Charlie Chaplin insure for 150,000 dollars?
+His feet
+10
+
+TV/Film: which peanuts character plays the piano?
+Schroeder
+10
+
+TV/Film: Which pop star had a cameo role in Moulin Rouge?
+Kylie Minogue
+10
+
+TV/Film: Which puppet was presented by Annette Mills?
+Muffin the mule
+10
+
+TV/Film: Which puppets worked for International Rescue?
+Thunderbirds
+10
+
+TV/Film: which radio 1 dance dj was behind the album essential selection ibiza 1999?
+Pete tong
+10
+
+TV/Film: which royale family actor starred as macca in the 1999 channel 4 drama 'dockers'?
+Ricky tomlinson
+10
+
+TV/Film: Which sci fi film featured three robots called Huey,Louie and Dewey?
+Silent Running
+10
+
+TV/Film: Which series starring Michelle Collins and Paul Kaye is set on a Scottish Island?
+Two thousand acres of Sky
+10
+
+TV/Film: Which show featured Ossie the Ostrich?
+Hey Hey It's Saturday
+10
+
+TV/Film: which sitcom starred jim belushi & michael keaton?
+Working stiffs
+10
+
+TV/Film: which soap did rhodas husband end up on after his first prime time divorce?
+General hospital
+10
+
+TV/Film: Which spaghetti western was based on the 1961 film Yojimbo by the Japanese director Akira Kurosawa?
+A fistful of dollars
+10
+
+TV/Film: Which Spielberg movie featured the characters Sargeant Tree,Sitarski and Wild Bull Kelso?
+1941
+10
+
+TV/Film: Which sport featured in the filmThe Stratton Story?
+Baseball
+10
+
+TV/Film: Which Star Trek movie had 2 animals named George and Gracie (subtitle only)?
+The voyage home
+10
+
+TV/Film: Which talk show host regularly had his knee felt by female guests?
+Terry wogan
+10
+
+TV/Film: Which Thats Life presenter was famous for his odd odes?
+Cyril fletcher
+10
+
+TV/Film: Which then-local talk show host played the role of Sophia in The Color Purple?
+Oprah winfrey
+10
+
+TV/Film: which tv detective catch phrase was 'who loves ya baby'?
+Kojak
+10
+
+TV/Film: Which tv game show was presented by Ted Rogers and gave Dusty Bin to losers?
+3-2-1
+10
+
+TV/Film: Which TV Series features Aldo Godolfus?
+Number 96
+10
+
+TV/Film: Which TV Series features Det.Sgt.Vic Maddern?
+Matlock Police
+10
+
+TV/Film: Which TV Series features Donald Fisher and Alf Stewart?
+Home and Away
+10
+
+TV/Film: Which TV Series features Dorrie Evans?
+Number 96
+10
+
+TV/Film: Which TV Series features Inspector Monica Draper?
+Blue Heelers
+10
+
+TV/Film: Which TV Series features Tess Silverman McLeod?
+McLeod's Daughters
+10
+
+TV/Film: Which TV Series stars Bridie Carter as Tess McLeod?
+McLeod's Daughters
+10
+
+TV/Film: Which TV Series stars Fiona Spence as 'Vinegar Tits'?
+Prisoner
+10
+
+TV/Film: Which TV Series stars Georgie Parker as the head nurse?
+All Saints
+10
+
+TV/Film: Which TV Series stars Gerard Kennedy and Chuck Faulkner?
+Division 4
+10
+
+TV/Film: Which TV Series stars Gordon Piper as Bob Hatfield?
+A Country Practice
+10
+
+TV/Film: Which TV Series stars Jack Thompson and Peter Sumner?
+Spyforce
+10
+
+TV/Film: Which TV Series stars John Wood as Michael Rafferty?
+Rafferty's Rules
+10
+
+TV/Film: Which TV Series stars Ken James and Garry Pankhurst?
+Skippy
+10
+
+TV/Film: Which TV Series stars Leonard Teale and Alwyn Kurts?
+Homicide
+10
+
+TV/Film: Which TV Series stars Lucky Grills?
+Bluey
+10
+
+TV/Film: Which TV Series stars Martin Sacks?
+Blue Heelers 
+10
+
+TV/Film: Which TV Series stars Paul cronin as Dave Sullivan?
+The Sullivans
+10
+
+TV/Film: Which TV Series stars Paul Cronin as Gary Hogan?
+Solo One
+10
+
+TV/Film: Which TV Series stars Peter Adams as Detective Jeff Johnson?
+Cop Shop
+10
+
+TV/Film: Which TV Series stars Peter Phelps as Peter Church?
+Stingers
+10
+
+TV/Film: Which TV Series stars Rod Mulliner as Michael Ryan?
+Ryan
+10
+
+TV/Film: Which TV Series stars Ross Higgins as Ted Bulpitt?
+Kingswood Country
+10
+
+TV/Film: Which TV Series stars Shane Porteous as Dr. Terence Elliott?
+A Country Practice
+10
+
+TV/Film: Which TV Series stars Steve Bisley as Det.Sgt.Jack Christey?
+Water Rats
+10
+
+TV/Film: Which TV Series stars Vic Gordon and Michael Pate?
+Matlock Police
+10
+
+TV/Film: which tv series was David cassidy in?
+Partridge family
+10
+
+TV/Film: Which TV Series was hosted by Johnny Young?
+Young Talent Time
+10
+
+TV/Film: Which TV show had Russian spies Boris Badenov and Natasha Fatale?
+The Bullwinkle Show
+10
+
+TV/Film: Which TV Show was hosted by Uncle Norman and Joffa Boy?
+The Tarax Show
+10
+
+TV/Film: which veteran actor starred as an art thief in the 1999 film entrapment?
+Sean connery
+10
+
+TV/Film: Which was the first 'Indiana Jones' film?
+Raiders Of The Lost Ark
+10
+
+TV/Film: which was the first animated peanuts tv special?
+A charlie brown christmas
+10
+
+TV/Film: Which was the first film to be made in cinemascope?
+The robe
+10
+
+TV/Film: Which watcher from buffy the vampire slayer now stars in Angel?
+Wesley Price
+10
+
+TV/Film: which western television series saw clint eastwood rise to fame?
+Rawhide
+10
+
+TV/Film: which x files episode had the highest tv rating in the second season?
+End game
+10
+
+TV/Film: Which young American actor has been diagnosed as seffering from Parkinsons disease?
+Michael J Fox
+10
+
+TV/Film: who appeared in 'st. elmo's fire', 'the scarlett letter' & 'striptease'?
+Demi moore
+10
+
+TV/Film: Who appeared in 'St. Elmo's Fire', 'The Scarlett Letter' and 'Striptease'?
+Demi Moore
+10
+
+TV/Film: who appeared in a funny thing happened on the way to the forum (1966)?
+Buster keaton
+10
+
+TV/Film: Who appears as Alan Partridge and Paul Calf?
+Steve coogan
+10
+
+TV/Film: Who are Blake Carringtons two children?
+Fallon and Stephen
+10
+
+TV/Film: Who are the 4 actresses who have played the March sisters in Little Women (1949)?
+Janet Leigh, Elizabeth Taylor, June Allyson, and Margaret O'Brien
+10
+
+TV/Film: Who are the neighbors the Jeffersons left behind when they moved uptown?
+Bunkers
+10
+
+TV/Film: Who became a Pet Detective after shooting to fame in In Living Colour?
+Jim carey
+10
+
+TV/Film: Who both directed and produced the film Citizen kane?
+Orson welles
+10
+
+TV/Film: Who came out of retirement to play the role of Richrad Dreyfuss' spiritual guide in Always?
+Audrey hepburn
+10
+
+TV/Film: Who co hosted the Big Breakfast with Denise Van Outen?
+Johnny Vaughan
+10
+
+TV/Film: Who co hosted the Big Breakfast with Johnny Vaughan?
+Denise van Outen
+10
+
+TV/Film: who co-starred as gale sayers in brian's song?
+Billy dee williams
+10
+
+TV/Film: who collaborated with u b lwerks in the creation of mickey mouse?
+Walt disney
+10
+
+TV/Film: Who conducted the exclusive tv interview with donna rice in june, 1987?
+Barbara walters
+10
+
+TV/Film: Who connects Time Team with Blackadder?
+Tony robinson
+10
+
+TV/Film: who cooked for the cartwrights on the ponderosa?
+Hop sing
+10
+
+TV/Film: Who coupled with the Devil and gave birth to Andrew John?
+Rosemary
+10
+
+TV/Film: who created maudie frickett?
+Jonathan winters
+10
+
+TV/Film: Who created Roland Rat?
+Anne wood
+10
+
+TV/Film: Who created Rosie and Jim?
+Anne wood
+10
+
+TV/Film: Who created Rumpole of the Bailey?
+Sir John Mortimer
+10
+
+TV/Film: who created Star Trek?
+Gene roddenberry
+10
+
+TV/Film: Who danced with a mouse in the film Anchors Aweigh?
+Gene kelly
+10
+
+TV/Film: Who did Burt Reynolds develop a hankerin' for on the set of Smokey and the Bandit?
+Sally Field
+10
+
+TV/Film: who did charlie becker play in 'the wizard of oz'?
+The mayor of the munchkins
+10
+
+TV/Film: who did frank sinatra marry in november of 1951?
+Ava gardner
+10
+
+TV/Film: who did joan collins play in 'dynasty'?
+Alexis carrington
+10
+
+TV/Film: Who did Larry Hagman portray in the TV series 'Dallas'?
+J.R. Ewing
+10
+
+TV/Film: Who did Mark Hamill play in Star Wars?
+Luke Skywalker
+10
+
+TV/Film: who did pat sajak play on the soapie 'days of our lives'?
+Kevin hathaway
+10
+
+TV/Film: Who did Patrick Duffy portray in the TV series 'Dallas'?
+Bobby Ewing
+10
+
+TV/Film: Who did Steve Martin marry in 1986 and divorce in 1994?
+Victoria Tennant
+10
+
+TV/Film: Who did Vivian Vance play on 'The Lucy Show'?
+Vivian Bagley
+10
+
+TV/Film: who died in a porsche spyder?
+James dean
+10
+
+TV/Film: Who died last - Desi Arnaz, Lucille Ball, William Frawley or Vivian Vance?
+Lucille Ball
+10
+
+TV/Film: who directed 'e.t'?
+Steven spielberg
+10
+
+TV/Film: who directed 'jurassic park'?
+Steven spielberg
+10
+
+TV/Film: who directed 'schindler's list'?
+Steven spielberg
+10
+
+TV/Film: who directed 'the shining'?
+Stanley kubrick
+10
+
+TV/Film: who directed & starred in films such as 'the little tramp'?
+Maurice chevalier
+10
+
+TV/Film: who directed gremlins?
+Joe dante
+10
+
+TV/Film: who directed psycho and the birds?
+Alfred hitchcock
+10
+
+TV/Film: who directed Star Trek: first contact?
+Jonathan frakes
+10
+
+TV/Film: who directed Star Wars?
+George lucas
+10
+
+TV/Film: Who directed the 2000 film 'Gladiator'?
+Ridley scott
+10
+
+TV/Film: Who directed the classic thriller 'The Birds'?
+Alfred Hitchcock
+10
+
+TV/Film: Who directed the film 'Ordinary People'?
+Robert Redford
+10
+
+TV/Film: Who directed the film 'The Birds' from Daphne du Maurier?
+Alfred Hitchcock
+10
+
+TV/Film: Who directed the film The Third Man?
+Carol reed
+10
+
+TV/Film: Who directed the film version of Jesus Christ Superstar?
+Norman Jewison
+10
+
+TV/Film: who directed the film, fame?
+Alan parker
+10
+
+TV/Film: Who directed the films Bugsy Malone & Midnight Express?
+Alan Parker
+10
+
+TV/Film: Who directed the Movie 'Psycho' from Robert Bloch?
+Alfred Hitchcock
+10
+
+TV/Film: who directed the movie broadway danny rose?
+Woody allen
+10
+
+TV/Film: who directed top gun?
+Tony scott
+10
+
+TV/Film: who does the voice for homer on the simpsons?
+Dan castellanata
+10
+
+TV/Film: who does the voice for yoda in the Star Wars films?
+Frank oz
+10
+
+TV/Film: Who first shaved his head to play Pontius Pilate in The Greatest Story ever Told?
+Telly savalas
+10
+
+TV/Film: Who fronted and devised the show Its a square world?
+Michael Bentine
+10
+
+TV/Film: Who got $10 million to provide the voice of a baby for a 1990 movie?
+Bruce willis
+10
+
+TV/Film: Who had a thick-gummed best friend named Bubba Blue?
+Forrest Gump
+10
+
+TV/Film: who had one of his nipples bitten off by an alligator while he was host of his wild kingdom show?
+Lorne greene
+10
+
+TV/Film: Who has compsoed the music for the majority of Spielbergs movies?
+John williams
+10
+
+TV/Film: Who has played Ken Barlow in coronation street since 1960?
+William roache
+10
+
+TV/Film: Who has starred in movies by Francis Ford Coppola, Brian De Palma, Sergio Leone and Martin Scorsese?
+Robert De Niro
+10
+
+TV/Film: Who hosted A Current Affair between 1988 and 1993?
+Jana Wendt
+10
+
+TV/Film: Who hosted A Current Affair between 1994 and 1998?
+Ray Martin
+10
+
+TV/Film: Who hosted Sale of the Century from 1980 to 1991?
+Tony Barber
+10
+
+TV/Film: Who hosted Sale of the Century from 1991 to 2001?
+Glenn Ridge
+10
+
+TV/Film: Who hosted the 1997 Grammy Awards?
+Ellen degeneres
+10
+
+TV/Film: Who hosted the 1997 Grammy Awards?
+Ellen Degeneres
+10
+
+TV/Film: Who hosted the Don Lane Show?
+Don Lane
+10
+
+TV/Film: Who hosted the early series of The Pink Panther cartoons?
+Lenny Schulz
+10
+
+TV/Film: Who hosted The Paul Hogan Show?
+Paul Hogan
+10
+
+TV/Film: Who hosted The Ray Martin Show?
+Ray Martin
+10
+
+TV/Film: Who hosted Young Talent Time?
+Johnny Young
+10
+
+TV/Film: Who hosts Countdown?
+Richard Whiteley
+10
+
+TV/Film: who introduced jack crusher to beverly?
+Walker keel
+10
+
+TV/Film: Who is always trying to catch the cartoon character The Road Runner?
+Wile E. Coyote
+10
+
+TV/Film: who is batman's gay offsider?
+Robin
+10
+
+TV/Film: Who is Cameron going to marry in Ferris Buellers Day Off?
+The first girl he lays
+10
+
+TV/Film: who is David soul's famous brother?
+Robert urich
+10
+
+TV/Film: who is edgar winter's famous brother?
+Johnny winter
+10
+
+TV/Film: who is famous for writing 'interview with the vampire', the first book in the vampire chronicles?
+Anne rice
+10
+
+TV/Film: who is featured on 1984s the best of annette?
+Annette funicello
+10
+
+TV/Film: who is fred & wilma's daughter?
+Pebbles
+10
+
+TV/Film: who is judy garland's famous daughter?
+Liza minnelli
+10
+
+TV/Film: Who is known as the King of chat?
+Michael Parkinson
+10
+
+TV/Film: who is m's secretary?
+Miss moneypenny
+10
+
+TV/Film: who is melanie griffiths married to?
+Antonio banderas
+10
+
+TV/Film: who is mr. Warmth?
+Don rickles
+10
+
+TV/Film: who is robert urich's famous brother?
+David soul
+10
+
+TV/Film: who is schroeder's favourite composer?
+Beethoven
+10
+
+TV/Film: who is seigfelds manic neighbour?
+Kramer
+10
+
+TV/Film: who is shirley mclean's brother?
+Warren beatty
+10
+
+TV/Film: who is superman's alter ego?
+Clark kent
+10
+
+TV/Film: Who is the actor brother of tom conway?
+George sanders 
+10
+
+TV/Film: who is the anchorperson for channel 17 news?
+Sally vacuum
+10
+
+TV/Film: Who is the fastest mouse in All of Mexico?
+Speedy gonzales
+10
+
+TV/Film: Who is the fastest mouse in all of Mexico?
+Speedy Gonzalez
+10
+
+TV/Film: Who is the granddaughter of playwright Eugene O'Neill?
+Geraldine Chaplin
+10
+
+TV/Film: who is the hollywood star who played the most leading roles in 153 feature films?
+John wayne
+10
+
+TV/Film: Who is the host of Burke's Backyard?
+Don Burke
+10
+
+TV/Film: who is the lone ranger's side kick?
+Tonto
+10
+
+TV/Film: who is the main character in 'touched by an angel'?
+Monica
+10
+
+TV/Film: Who is the most voluptuous female in Toontown?
+Jessica Rabbit
+10
+
+TV/Film: Who is the mother of Mia Farrow?
+Maureen o'sullivan
+10
+
+TV/Film: Who is the star of Crocodile Hunter?
+Steve Irwin
+10
+
+TV/Film: Who is the star of the 2000 film 'The Patriot'?
+Mel gibson
+10
+
+TV/Film: who is the super hero that runs around wearing a red cape & tights?
+Superman
+10
+
+TV/Film: Who is the voice of Darth Vadar?
+James Earl Jones
+10
+
+TV/Film: Who is the voice of Duckman?
+Jason alexander 
+10
+
+TV/Film: who is the voice of tony the tiger?
+Thurl ravenscroft
+10
+
+TV/Film: who is the world's busiest man made tourist attraction named after?
+Walt disney
+10
+
+TV/Film: Who is Warren Beatty's sister?
+Shirley maclaine
+10
+
+TV/Film: Who is Warren Beatty's sister?
+Shirley MacLaine
+10
+
+TV/Film: Who killed Kenny?
+They
+10
+
+TV/Film: who leads the muppets' jazz band?
+Dr. teeth
+10
+
+TV/Film: who led the mission on which lt aster died?
+Worf
+10
+
+TV/Film: who lives next door to the flintstones?
+The rubbles
+10
+
+TV/Film: Who made his debut as a film writer and director with the 1992 film Reservoir Dogs in which he also acted?
+Quentin tarantino
+10
+
+TV/Film: Who made history in 2001 when their film The wedding planner and their album were both at number one at the same time?
+Jennifer Lopez
+10
+
+TV/Film: Who made nine movies with Annette Funicello?
+Frankie Avalon
+10
+
+TV/Film: Who made stars of fanny brice & w.c. fields?
+Fred & ethel
+10
+
+TV/Film: who made superman's costume in the adventures of superman?
+His mother
+10
+
+TV/Film: Who married the actor Liam Neeson?
+Natasha richardson
+10
+
+TV/Film: Who not only sang the hit song the Power Of Love for the movie Back To The Future, but also appeared in it?
+Huey lewis
+10
+
+TV/Film: Who operates Orville?
+Keith harris
+10
+
+TV/Film: who ordered the crew to strip down to their undies while she filmed a revealing scene for sleeping with the enemy?
+Julia roberts
+10
+
+TV/Film: Who originally presented the Tv quiz Take your Pick?
+Michael miles
+10
+
+TV/Film: who owns the licensing rights to all Star Wars merchandise?
+George lucas
+10
+
+TV/Film: Who palyed M in the Bond movie Goldeneye?
+Judi Dench
+10
+
+TV/Film: Who played 'banacek' in the 1970's tv series of the same name?
+George peppard
+10
+
+TV/Film: Who played 'Cat' in Red Dwarf?
+Danny john-jules
+10
+
+TV/Film: Who played 'Cricket Blake' in the 1960s T.V. series Hawaiian Eye?
+Connie stevens
+10
+
+TV/Film: Who played 'elliot' in the film 'e.t'?
+Henry thomas
+10
+
+TV/Film: Who played 'fast' eddie felson in the film 'the hustler?
+Paul newman
+10
+
+TV/Film: Who played 'hawkeye' in robert altman's classic m.a.s.h?
+Donald sutherland
+10
+
+TV/Film: who played 'johnny mnemonic'?
+Keanu reeves
+10
+
+TV/Film: Who played 'Kookie' in the T.V. series Seventy Seven Sunset Strip?
+Ed byrnes
+10
+
+TV/Film: Who played 'less nesmond' on tv's wkrp in cincinnati?
+Richard sanders
+10
+
+TV/Film: Who played 'Luke Duke' on TV's 'Dukes of Hazzard'?
+Tom wopat
+10
+
+TV/Film: Who played 'margaret 'hotlips' houlihan' on tv's m-a-s-h?
+Loretta swit
+10
+
+TV/Film: Who played 'maxwell klinger' on tv's m-a-s-h?
+Jamie farr
+10
+
+TV/Film: Who played 'norman bates' in hitchcock's classic thriller psycho?
+Anthony perkins
+10
+
+TV/Film: Who played 'the holy goat and the holy spigot' vicar in he 1994 film Four Weddings and a funeral?
+Rowan Atkinson
+10
+
+TV/Film: Who played 'uncle tim' in 'my favourite martian'?
+Ray walston
+10
+
+TV/Film: Who played a high class prostitute in belle de Jour?
+Catherine Deneuve
+10
+
+TV/Film: Who played a nearsighted neighbour in the two Ghostbusters movies?
+Rick moranis
+10
+
+TV/Film: Who played Aldo Godolfus in Number 96?
+Johnny Lockwood
+10
+
+TV/Film: who played alexis carrington in the tv series 'dynasty'?
+Joan collins
+10
+
+TV/Film: Who played Alvy Singer in 1977 film Annie Hall?
+Woody Allen
+10
+
+TV/Film: who played an indian in 'tell them willie boy is here'?
+Katharine ross
+10
+
+TV/Film: Who played Andy Capp on television in 1988?
+James bolam
+10
+
+TV/Film: who played andy thompson in the headmaster?
+Andy griffith
+10
+
+TV/Film: Who played Angel from buffy the vampire slayer and angel?
+David Boreanaz
+10
+
+TV/Film: Who played Annie Walker in Coronation Street?
+Doris speed
+10
+
+TV/Film: Who played Anya from buffy the vampire slayer?
+Emma Caulfield
+10
+
+TV/Film: who played arthur fonzarelli in 'happy days'?
+Henry winkler
+10
+
+TV/Film: Who played ashley wilkes in gone with the wind?
+Leslie howard
+10
+
+TV/Film: Who played Auntie Wainwright in Last Of The Summer Wine?
+Jean alexander
+10
+
+TV/Film: Who played Axel Foley's best friend in Detroit?
+Paul Riser
+10
+
+TV/Film: who played babe ruth in the babe ruth story?
+William bendix
+10
+
+TV/Film: Who played beretta in the tv series?
+Robert blake
+10
+
+TV/Film: Who played billy the kid in the move 'young guns'?
+Emilio estevez
+10
+
+TV/Film: Who played Blott in the tv version of Blott on the Landscape?
+David suchet
+10
+
+TV/Film: Who played Bob Woodward in the 1976 film All the President's Men?
+Robert Redford
+10
+
+TV/Film: Who played Bobby Ewing in the series 'Dallas'?
+Patrick duffy 
+10
+
+TV/Film: Who played bobby ewing in the tv series 'dallas'?
+Patrick duffy
+10
+
+TV/Film: Who played Bonnie in the film 'Bonnie & Clyde'?
+Faye dunaway
+10
+
+TV/Film: who played bonnie to warren beatty's clyde?
+Faye dunaway
+10
+
+TV/Film: Who played buffy the vampire slayer?
+Sarah Michelle Gellar
+10
+
+TV/Film: Who played burt reynold's wife on evening shade?
+Marilu henner
+10
+
+TV/Film: Who played capt kirk in the original Star Trek tv series?
+William shatner
+10
+
+TV/Film: Who played captain james t kirk in Star Trek?
+William shatner
+10
+
+TV/Film: Who played Captain Picard in Star Trek: the next generation?
+Patrick stewart
+10
+
+TV/Film: who played Captain Scott in The Last Place on Earth?
+Martin shaw
+10
+
+TV/Film: who played carrie?
+Sissy spacek
+10
+
+TV/Film: Who played Chester in the Gunsmoke TV series?
+Dennis Weaver
+10
+
+TV/Film: Who played chico in 'chico & the man'?
+Freddie prinze
+10
+
+TV/Film: Who played cliff huxtable?
+Bill cosby
+10
+
+TV/Film: Who played clyde to faye dunaway's bonnie?
+Warren beatty
+10
+
+TV/Film: Who played colonel robert hogan on hogan's heroes?
+Bob crane
+10
+
+TV/Film: Who played commander Data on Starship Enterprise?
+Brent Spiner
+10
+
+TV/Film: Who played commander riker in 'Star Trek'?
+Jonathan frakes
+10
+
+TV/Film: who played commander riker in 'Star Trek'?
+Jonathon frakes
+10
+
+TV/Film: Who played commissioner dreyfus in the pink panther films?
+Herbert lom
+10
+
+TV/Film: Who played Cordelia Chase from buffy the vampire slayer and angel?
+Charisma Carpenter
+10
+
+TV/Film: Who played Cornelius in 1968 Planet of the Apes?
+Roddy McDowall
+10
+
+TV/Film: Who played daniel boone on tv?
+Fess parker
+10
+
+TV/Film: Who played darkness?
+Tim curry
+10
+
+TV/Film: Who played Darla from Buffy the vampire slayer and Angel?
+Julie Benz
+10
+
+TV/Film: Who played Dave Sullivan in The Sulivans?
+Paul Cronin
+10
+
+TV/Film: Who played dawn from buffy the vampire slayer?
+Michelle Trachtenberg
+10
+
+TV/Film: Who played dawson leary on 'dawson's creek'?
+James van der beek
+10
+
+TV/Film: who played deanna troi in 'Star Trek the next generation'?
+Marina sirtis
+10
+
+TV/Film: Who played Del boy in Only Fools and Horses?
+David Jason
+10
+
+TV/Film: Who played Det.Sgt.Bluey Hills in Bluey?
+Lucky Grills
+10
+
+TV/Film: Who played detective dana scully in the x files?
+Gillian anderson
+10
+
+TV/Film: Who played Detective Mike Georgio in Cop Shop?
+John Orcsik
+10
+
+TV/Film: Who played Detective Sergeant Glen Taylor in Cop Shop?
+George Mallaby
+10
+
+TV/Film: Who played Detective Sergeant Harry White in Homicide?
+Don Barker 
+10
+
+TV/Film: Who played Detective Sergeant Mick Peters in Division 4?
+Terence Donovan
+10
+
+TV/Film: Who played Detective Sergeant Vic Maddern in Matlock Police?
+Michael Pate
+10
+
+TV/Film: Who played detective, frank cannon, in the tv series 'cannon'?
+William conrad
+10
+
+TV/Film: Who played disney's pollyanna?
+Hayley mills
+10
+
+TV/Film: Who played Dorrie Evans in Number 96?
+Pat McDonald
+10
+
+TV/Film: Who played Doyle?
+Glen Quinn
+10
+
+TV/Film: Who played Dr Ellie Sattler in Jurassic Park?
+Laura dern
+10
+
+TV/Film: Who played dr evil in the second austin powers film?
+Mike myers
+10
+
+TV/Film: Who played dr frankenfurter in 'rocky horror picture show'?
+Tim curry
+10
+
+TV/Film: Who played dr kildare?
+Richard chamberlain
+10
+
+TV/Film: Who played Dr Leonard Gillespie in Dr Kildare?
+Raymond massey
+10
+
+TV/Film: Who played dr. frank n. furter in the rocky horror picture show?
+Tim curry
+10
+
+TV/Film: Who played dr. frankenfurter in the pop-culture film 'rocky horror picture show?
+Tim curry
+10
+
+TV/Film: Who played Dr. Frankenfurter in the pop-culture film 'The Rocky Horror Picture Show?
+Tim Curry
+10
+
+TV/Film: Who played Dr. Kildare?
+Richard Chamberlain
+10
+
+TV/Film: Who played Dr.Simon Bowen in A Country Practice?
+Grant Dodwell
+10
+
+TV/Film: Who played Dustin Hoffmans brother in the film Marathon Man?
+Roy scheider
+10
+
+TV/Film: Who played Dwight D. Eisenhower in the mini series IKE?
+Robert duvall
+10
+
+TV/Film: Who played eddie in 'rocky horror picture show'?
+Meatloaf
+10
+
+TV/Film: Who played eddie in the pop-culture film 'rocky horro picture show?
+Meatloaf
+10
+
+TV/Film: Who played Eddie in the pop-culture film 'The Rocky Horror Picture Show?
+Meat Loaf
+10
+
+TV/Film: Who played Eddie in the Rocky Horror Picture Show?
+Meatloaf
+10
+
+TV/Film: Who played Elizabeth in Lord of the Rings?
+Cate Blanchett
+10
+
+TV/Film: Who played Elliot Ness in the 1987 film The Untouchables?
+Kevin Costner
+10
+
+TV/Film: Who played English tutor reginald johnson in the last emperor?
+Peter o'toole
+10
+
+TV/Film: Who played Erskine in Spyforce?
+Jack Thompson
+10
+
+TV/Film: Who played Eth in the radio show The Glums?
+June whitfield
+10
+
+TV/Film: Who played faith from buffy the vampire slayer?
+Eliza Dushku
+10
+
+TV/Film: who played father in gone with the wind?
+Thomas mitchell
+10
+
+TV/Film: Who played ferdinand waldo demara in the great imposter?
+Tony curtis
+10
+
+TV/Film: Who played film couple 'ma and pa kettle'?
+Marjorie main and percy kilbride
+10
+
+TV/Film: Who played Flint in the spy movie Our Man Flint?
+James coburn
+10
+
+TV/Film: Who played folger coffee's mrs olson?
+Virginia christine
+10
+
+TV/Film: Who played for Stoke City in 1931 and for England in 1957?
+Stanley matthews
+10
+
+TV/Film: who played forrest gump?
+Tom hanks
+10
+
+TV/Film: Who played Fred from Angel?
+Amy Acker
+10
+
+TV/Film: Who played garp's mother in the world according to garp?
+Glenn close
+10
+
+TV/Film: who played garth in wayne's world?
+Dana carvey
+10
+
+TV/Film: who played george costanza on 'seinfeld'?
+Jason alexander
+10
+
+TV/Film: who played gidget in gidget grows up?
+Karen valentine
+10
+
+TV/Film: Who played Giles from buffy the vampire slayer?
+Anthony Stewart head
+10
+
+TV/Film: Who played Gloria in It aint half hot, Mum?
+Melvyn Hayes
+10
+
+TV/Film: who played god in 'oh god, book ii'?
+George burns
+10
+
+TV/Film: Who played grandpa walton on the waltons?
+Will geer
+10
+
+TV/Film: who played grandpa walton on the waltons?
+Will greer
+10
+
+TV/Film: Who played Gregory in the film Gregory's Girl?
+John gordon sinclair
+10
+
+TV/Film: Who played guitar on 'goodbye yellow brick road'?
+Davey johnstone
+10
+
+TV/Film: Who played Gunn from Angel?
+J august Richards
+10
+
+TV/Film: Who played Han Solo in 'Star Wars'?
+Harrison Ford
+10
+
+TV/Film: Who played Happy Birthday for Mr. Burns?
+The Ramones 
+10
+
+TV/Film: Who played harry lime in the film 'the third man'?
+Orson welles
+10
+
+TV/Film: Who played harvey weskit on mr peepers?
+Tony randall
+10
+
+TV/Film: Who played Henry Crun,Lance Brigadier Grytpype-Thynne and Bluebottle?
+Peter sellers
+10
+
+TV/Film: Who played hopalong cassidy in the 1950's tv series?
+William boyd
+10
+
+TV/Film: who played hopalong cassidy?
+William boyd
+10
+
+TV/Film: Who played hot lips houlihan in the m-a-s-h movie?
+Sally kellerman
+10
+
+TV/Film: Who played hot lips houlihan in the television programme mash?
+Loretta swit
+10
+
+TV/Film: who played hot lips in mash?
+Loretta swit
+10
+
+TV/Film: Who played igor in mel brooks' young frankenstein?
+Marty feldman
+10
+
+TV/Film: who played ilsa llund laszlo in casablanca?
+Ingrid bergman
+10
+
+TV/Film: Who played in the film 'ragtime' after 20 years offscreen?
+James cagney
+10
+
+TV/Film: Who played in the movie oscar?
+Stallone
+10
+
+TV/Film: Who played indiana jones father?
+Sean connery
+10
+
+TV/Film: Who played indiana jones's father?
+Sean connery
+10
+
+TV/Film: Who played Indys love interest in Indiana Jones and the Temple of Doom, leter to marry Spielberg?
+Kate capshaw
+10
+
+TV/Film: Who played Ingrid Bergmans husband in Casablanca?
+Paul Henreid
+10
+
+TV/Film: Who played inspector clouseau's deranged superior in the pink panther movie?
+Herbert lom
+10
+
+TV/Film: Who played inspector clouseau?
+Peter sellers
+10
+
+TV/Film: Who played Inspector Colin Fox in Homicide?
+Alwyn Kurts
+10
+
+TV/Film: Who played Inspector Reg Lawson in Homicide?
+Charles Tingwell
+10
+
+TV/Film: Who played Ironside?
+Raymond Burr
+10
+
+TV/Film: Who played Jack Crabbe, survivor of Custer's Last Stand, in Little Big Man?
+Dustin hoffman
+10
+
+TV/Film: Who played Jack Vincent in Casualty?
+Will Mellor
+10
+
+TV/Film: Who played james bond in never say never again?
+Sean connery
+10
+
+TV/Film: Who played jane fonda's cameraman in the china syndrome?
+Michael douglas
+10
+
+TV/Film: Who played Jean Luc Picard in Star Trek - the next Generation?
+Patrick Stewart
+10
+
+TV/Film: Who played jennifer lindley on 'dawson's creek'?
+Michelle williams
+10
+
+TV/Film: Who played Jim Garrison in the 1991 film JFK?
+Kevin Costner
+10
+
+TV/Film: Who played jim morrison in the doors?
+Val kilmer
+10
+
+TV/Film: Who played Jim Rockford in the Rockford Files?
+James garner
+10
+
+TV/Film: Who played Jo's sailor boyfiend on the Facts of Life?
+Robby Benson
+10
+
+TV/Film: Who played Joan 'The Freak' in Prisoner?
+Maggie Kirkpatrick
+10
+
+TV/Film: Who played Joan Crawford in the film: Mommie Dearest?
+Faye dunaway
+10
+
+TV/Film: Who played joe gerard in the series rhoda?
+David groh
+10
+
+TV/Film: Who played joey potter on 'dawson's creek'?
+Katie holmes
+10
+
+TV/Film: who played john bosley on charlies angels (first & last names)?
+David doyle
+10
+
+TV/Film: Who played johnny yuma in the series the rebel?
+Nick adams
+10
+
+TV/Film: Who played judge dredd on film in 1996?
+Sylvester stallone
+10
+
+TV/Film: Who played judge roy bean on film in 1972?
+Paul newman
+10
+
+TV/Film: Who played julie's best friend in i still know what you did last summer?
+Brandy
+10
+
+TV/Film: Who played juliet in zeffirelli's romeo and juliet?
+Olivia hussey
+10
+
+TV/Film: Who played Kavanagh QC?
+John Thaw
+10
+
+TV/Film: Who played kevin arnold on 'the wonder years'?
+Fred savage
+10
+
+TV/Film: Who played kevin hathaway on the soapie 'days of our lives'?
+Pat sajak
+10
+
+TV/Film: Who played King Feisal of Iraq in the film Lawrence of Arabia?
+Alec Guinness
+10
+
+TV/Film: Who played King Rat in the 1965 movie of the same name?
+George segal
+10
+
+TV/Film: Who played Lancy Howard in the film The Cincinnati Kid?
+Edward g. robinson
+10
+
+TV/Film: Who played lando calrissian in the empire strikes back?
+Billy dee williams
+10
+
+TV/Film: Who played Lara Croft?
+Angelina jolie
+10
+
+TV/Film: Who played laura petrie in 'the dick van dyke show'?
+Mary tyler-moore
+10
+
+TV/Film: Who played lauren bacall's adolescent son in the shootist?
+Ron howard
+10
+
+TV/Film: Who played lee Harvey Oswold in 1991's JFK?
+Gary Oldman
+10
+
+TV/Film: who played lestat in 'interview with the vampire'?
+Tom cruise
+10
+
+TV/Film: Who played Lex Luthor in the Superman films of the 1970s and 1980s?
+Gene hackman
+10
+
+TV/Film: Who played Lofty in Eastenders?
+Tom watt
+10
+
+TV/Film: Who played lois lane in the 1978 movie superman?
+Margot kidder 
+10
+
+TV/Film: who played lou gehrig in pride of the yankees?
+Gary cooper
+10
+
+TV/Film: who played louis in 'interview with the vampire'?
+Brad pitt
+10
+
+TV/Film: Who played luke on 'the real mccoys'?
+Richard crenna
+10
+
+TV/Film: who played luke skywalker in 'Star Wars'?
+Mark hamill
+10
+
+TV/Film: who played lulu hogg on dukes of hazzard?
+Pearl shear
+10
+
+TV/Film: Who played M in the Bond movie Tomorrow Never Dies?
+Judi dench
+10
+
+TV/Film: who played major pappy boyington in the war drama baa baa black sheep?
+Robert conrad
+10
+
+TV/Film: Who played many voices, such as dr nick, & moe on 'the simpsons'?
+Hank azaria
+10
+
+TV/Film: Who played many voices, such as Dr Nick, and Moe on 'The Simpsons'?
+Hank Azaria
+10
+
+TV/Film: Who played Marco Polo in the 1962 film?
+Gary Cooper
+10
+
+TV/Film: who played marcus welby?
+Robert young
+10
+
+TV/Film: Who played maria in the film west side story?
+Natalie wood
+10
+
+TV/Film: Who played Mark Hammond in Skippy?
+Ken James
+10
+
+TV/Film: who played mary richard's boss in the mary tyler moore show?
+Ed asner
+10
+
+TV/Film: Who played Matt Hammond in Skippy?
+Ed Devereaux
+10
+
+TV/Film: Who played Matt Helm in the movies?
+Dean Martin
+10
+
+TV/Film: Who played Meg Jackson-morris in Prisoner?
+Elspeth Ballantyne
+10
+
+TV/Film: Who played Mel Gibsons partner in the Lethan Weapon films?
+Danny glover
+10
+
+TV/Film: Who played Melanie in Gone with the Wind?
+Olivia de havilland
+10
+
+TV/Film: Who played Meryl Streep's boyfriend in the film 'Silkwood'?
+Kurt russell
+10
+
+TV/Film: Who played Michael Douglas' wife in Fatal attraction?
+Anne Archer
+10
+
+TV/Film: Who played michael in the movie version of 'sleepers'?
+Dustin hoffman
+10
+
+TV/Film: Who played Michael Rafferty in Rafferty's Rules?
+John Wood
+10
+
+TV/Film: Who played Mike Baldwin in Coronation Street?
+Johnny briggs
+10
+
+TV/Film: who played mike brady in the brady bunch?
+Robert reed
+10
+
+TV/Film: who played minnesota fats in the movie, 'the hustler'?
+Jackie gleason
+10
+
+TV/Film: Who played miss marple in six films?
+Margaret rutherford
+10
+
+TV/Film: Who played monica geller in the tv series 'friends'?
+Courtney cox
+10
+
+TV/Film: Who played Morse's assistant Sgt lewis?
+Kevin whately
+10
+
+TV/Film: Who played Moses in 'The Ten Commandments'?
+Charlton Heston
+10
+
+TV/Film: Who played Mr Bean?
+Rowan Atkinson
+10
+
+TV/Film: Who played Mr Peters in Worzel Gummidge?
+Mike berry
+10
+
+TV/Film: Who played mrs cleaver?
+Barbara billingsly
+10
+
+TV/Film: Who played Ms. Kensington in the original Austin Powers movie?
+Elizabeth hurley
+10
+
+TV/Film: Who played Nick Berrys wife in Heart beat?
+Niamh Cusack
+10
+
+TV/Film: Who played nick nack & came rolling home?
+This old man
+10
+
+TV/Film: Who played Nick Rowan in Heartbeat?
+Nick Berry
+10
+
+TV/Film: who played opposite dean martin in rio grande?
+John wayne
+10
+
+TV/Film: Who played oscar north in the sitcom he & she?
+Jack cassidy
+10
+
+TV/Film: who played oskar schindler in the film schindler?s list?
+Liam neeson
+10
+
+TV/Film: Who played Oz from buffy the vampire slayer?
+Seth Green
+10
+
+TV/Film: Who played pacey witter on 'dawson's creek'?
+Joshua jackson
+10
+
+TV/Film: Who played pam ewing in dallas?
+Victoria principal
+10
+
+TV/Film: Who played Peter Church in Stingers?
+Peter Phelps
+10
+
+TV/Film: Who played phileas fogg in around the world in 80 days?
+David niven
+10
+
+TV/Film: Who played popeye in the 1980 film of the same name?
+Robin williams
+10
+
+TV/Film: who played queen amidala in the latest 'Star Wars' film?
+Natalie portman
+10
+
+TV/Film: who played quint the shark hunter in jaws?
+Robert shaw
+10
+
+TV/Film: Who played ralph furley on three's company?
+Don knotts
+10
+
+TV/Film: Who played ralph furley on threes company?
+Don knotts
+10
+
+TV/Film: Who played rancher jim newton in fury?
+Peter graves
+10
+
+TV/Film: Who played Ratso Rizzo in the film Midnight Cowboy?
+Dustin Hoffman
+10
+
+TV/Film: who played regan macneil in the exorcist?
+Linda blair
+10
+
+TV/Film: who played rhoda penmark?
+Patty mccormack
+10
+
+TV/Film: who played richie cunningham in the tv show happy days?
+Ron howard
+10
+
+TV/Film: who played richie in 'happy days'?
+Ron howard
+10
+
+TV/Film: Who played Riley from buffy the vampire slayer?
+Marc Blucas
+10
+
+TV/Film: Who played robin hood in the movie made in 1991?
+Kevin costner
+10
+
+TV/Film: Who played Robin in the film Batman Forever?
+Chris o'donnell
+10
+
+TV/Film: who played romeo in the 1996 release of romeo & juliet?
+Leonardo di caprio
+10
+
+TV/Film: Who played rowdy yates in the tv western raw hide?
+Clint eastwood
+10
+
+TV/Film: Who played Roxie Hart?
+Ginger Rogers
+10
+
+TV/Film: Who played sabrina duncan on the tv series 'charlie's angels'?
+Kate jackson
+10
+
+TV/Film: Who played Samantha in Sex and the City?
+Kim Cattrall
+10
+
+TV/Film: Who played samantha's absent-minded aunt claira on the tv series bewitched?
+Marion lorne
+10
+
+TV/Film: Who played Sargeant Bilko?
+Phil silvers
+10
+
+TV/Film: Who played selena in the film 'selena'?
+Jennifer lopez
+10
+
+TV/Film: Who played Senior Constable Gary Hogan in Matlock Police?
+Paul Cronin
+10
+
+TV/Film: Who played Senior Constable Maggie Doyle in Blue Heelers?
+Lisa Mccune
+10
+
+TV/Film: Who played Senior Detective Peter Barnes in Homicide?
+George Mallaby
+10
+
+TV/Film: Who played Senior Detective Steve York in Matlock Police?
+Tom Richards
+10
+
+TV/Film: Who played Sergeant Steve 'mickey' McClintock in Police Rescue?
+Gary Sweet
+10
+
+TV/Film: who played sharkey in sharkey's machine?
+Burt reynolds
+10
+
+TV/Film: Who played sherlock holmes in 14 films between 1939 and 1946?
+Basil
+10
+
+TV/Film: Who played sherlock holmes in the hounds of baskerville in 1978?
+Peter cook
+10
+
+TV/Film: who played sherlock holmes on the pbs series?
+Basil rathbone
+10
+
+TV/Film: Who played shortstop for charlie brown's baseball team?
+Snoopy
+10
+
+TV/Film: Who played showgirl satine in the 2001 movie moulin rouge?
+Nicole kidman
+10
+
+TV/Film: Who played Sid Vicious, Lee Harvey Oswald, Count Dracula and Beethoven in movies?
+Gary Oldman
+10
+
+TV/Film: Who played sonny corleone in the movie 'the godfather'?
+James caan
+10
+
+TV/Film: Who played Sonny Hammond in Skippy?
+Garry Pankhurst
+10
+
+TV/Film: Who played spike from buffy the vampire slayer?
+James Masters
+10
+
+TV/Film: who played sportin' life in the film porgy & bess?
+Sammy davis jr
+10
+
+TV/Film: Who played Steve Austin, the 'Six Million Dollar Man'?
+Lee majors
+10
+
+TV/Film: who played steve erkel in 'family matters'?
+Jaleel white
+10
+
+TV/Film: Who played Strop on The Paul Hogan Shaw?
+John Cornell
+10
+
+TV/Film: who played sue snell in carrie?
+Amy irving
+10
+
+TV/Film: Who played synthesiser on David bowie's space oddity?
+Rick wakeman
+10
+
+TV/Film: Who played Tara from buffy the vampire slayer?
+Amber Benson
+10
+
+TV/Film: Who played tarazan in the tv series in the 70's?
+Ron ely
+10
+
+TV/Film: Who played Tchaikovsky in the 1971 film The Music Lovers?
+Richard chamberlain
+10
+
+TV/Film: Who played Terry in the Steve Martin film All of Me?
+Victoria Tennant
+10
+
+TV/Film: Who played the 'Man With No Name` in the film A Fistful of Dollars?
+Clint Eastwood
+10
+
+TV/Film: Who played the 'Men in Black' in the film of the same name ____ ____ ____ and ____ ____?
+Tommy Lee Jones and Will Smith
+10
+
+TV/Film: Who played the 'pinball wizard' in the movie 'tommy'?
+Elton john
+10
+
+TV/Film: Who played the 'Rifleman' in the series?
+Chuck connors
+10
+
+TV/Film: Who played the 'Universal Soldier'?
+Jean-Claude Van Damme
+10
+
+TV/Film: Who played the assistant D.A., Paul Robinette. in the TV drama, Law and Order when the series first began?
+Richard Brooks
+10
+
+TV/Film: Who played the blacksmith on gunsmoke from 1962-65?
+Burt reynolds
+10
+
+TV/Film: Who played the blonde in the t-bird in 'American graffiti'?
+Suzanne sommers
+10
+
+TV/Film: Who played the boxer Jake la Motta in the 1980 film Raging Bull?
+Robert de Niro
+10
+
+TV/Film: Who played the boy in the film 'Billy Elliot'?
+Jamie bell
+10
+
+TV/Film: Who played the character of Coco Hernandez in the movie version of Fame?
+Irene Cara
+10
+
+TV/Film: who played the character of jim rockford in the series the rockford files?
+James garner
+10
+
+TV/Film: Who played the charmer in the tv series of the same name?
+Nigel Havers
+10
+
+TV/Film: Who played the clergyman in 'The Bishop's Wife'?
+David Niven
+10
+
+TV/Film: Who played the corleone family lawyer in the godfather?
+Robert duvall
+10
+
+TV/Film: Who played the death-dealing fur trader in gorky park?
+Lee marvin
+10
+
+TV/Film: Who played the detective in the exorcist?
+Lee j cobb
+10
+
+TV/Film: Who played the effervescent 'Anne Shirley' in the T.V. movie, 'Anne of Green Gables'?
+Megan Follows
+10
+
+TV/Film: Who played the errant ice-hockey player in slap shot?
+Paul newman
+10
+
+TV/Film: Who played the father of charlie sheen's character in wall street?
+Martin sheen
+10
+
+TV/Film: Who played the Fay Wray role in the 1976 remake of King Kong?
+Jessica lange
+10
+
+TV/Film: Who played the female lead in the alien films?
+Sigourney weaver
+10
+
+TV/Film: Who played the female lead in the Ghostbusters films?
+Sigourney Weaver
+10
+
+TV/Film: Who played the female villain in the film, '101 Dalmatians'?
+Glenn close
+10
+
+TV/Film: Who played The Fonz?
+Henry winkler
+10
+
+TV/Film: Who played the forger in the film the great escape?
+Donald pleasance
+10
+
+TV/Film: who played the fussy albert basserman in the boys from Brazil?
+Laurence oliver
+10
+
+TV/Film: who played the heiress?
+Olivia de haviland
+10
+
+TV/Film: Who played the inca king in the royal hunt of the sun?
+Christopher plummer
+10
+
+TV/Film: who played the incredible hulk?
+Bill bixby
+10
+
+TV/Film: who played the inventor in 'honey, i shrunk the kids'?
+Rick moranis
+10
+
+TV/Film: Who played the Jackal in the film The day of the Jackal?
+Edward Fox
+10
+
+TV/Film: who played the joker on the original batman movie?
+Caesar romero
+10
+
+TV/Film: Who played the last person to die on the series gunsmoke?
+Gary busey
+10
+
+TV/Film: Who played the lead female in meet me in las vegas?
+Cyd charisse
+10
+
+TV/Film: Who played the lead role in charlie varrick?
+Walter matthau
+10
+
+TV/Film: Who played the lead role in the first tarzan movie?
+Elmo lincoln
+10
+
+TV/Film: Who played the lead role in the series Sorry?
+Ronnie Corbett
+10
+
+TV/Film: Who played the leading female role in the film, 'Romancing the Stone'?
+Kathleen turner
+10
+
+TV/Film: Who played the male lead in Blood Alley, The High and the mighty and In harms way?
+John Wayne
+10
+
+TV/Film: Who played the male lead in the 1965 film entitled 'the war lord'?
+Charlton heston
+10
+
+TV/Film: who played the male lead in the movie grease?
+John travolta
+10
+
+TV/Film: Who played the male starring role in 'The Graduate'?
+Dustin hoffman
+10
+
+TV/Film: Who played the manager in The Natural?
+Wilfred brimley
+10
+
+TV/Film: Who played the mayor of the munchkins in 'the wizard of oz'?
+Charlie becker
+10
+
+TV/Film: Who played the mother in lost in space?
+June lockhart
+10
+
+TV/Film: who played the mum in the brady bunch?
+Florence henderson
+10
+
+TV/Film: Who played the murder victim in the original version of 'psycho'?
+Janet leigh
+10
+
+TV/Film: who played the mutating fly in the film 'the fly'?
+Jeff goldblum
+10
+
+TV/Film: Who played the nurse on the rookies?
+Kate jackson
+10
+
+TV/Film: Who played the original buffy the vampire slayer in the film?
+Kirsty Swanson
+10
+
+TV/Film: Who played the part of Claude Greengrass in Heartbeat?
+Bill maynard
+10
+
+TV/Film: Who played the part of Cruella de Vil in the 1996 film '101 Dalmatians'?
+Glenn close
+10
+
+TV/Film: Who played the part of Elliotts sister Gertie in ET, The Extra-terrestrial?
+Drew barrymore
+10
+
+TV/Film: Who played the part of inspector gadget in the film 'gadget'?
+Matthew broderick
+10
+
+TV/Film: Who played the part of king arthur in camelot?
+Richard harris
+10
+
+TV/Film: Who played the part of malcolm x in the film of the same name in 1992?
+Denzel Washington
+10
+
+TV/Film: Who played the part of Manuel in the 1975-79 BBC series faulty Towers?
+Andrew sachs
+10
+
+TV/Film: Who played the part of Mildred Roper on TV?
+Yootha joyce
+10
+
+TV/Film: Who played the part of Rachel in TV's 'Friends'?
+Jennifer aniston
+10
+
+TV/Film: Who played the part of Sam Malone in TV 's 'Cheers'?
+Ted danson
+10
+
+TV/Film: Who played the part of satan in the film the devil's advocate, released in 1998?
+Al pacino
+10
+
+TV/Film: Who played the part of The Forger in The Great Escape?
+Donald Pleasence
+10
+
+TV/Film: Who played the part of the Headmistress in the film 'Blue Murder at St.Trinians?
+Alistair sim
+10
+
+TV/Film: Who played the part of the murderer John Christie in the 1971 film Ten Rillington Place?
+Richard attenborough
+10
+
+TV/Film: Who played the part of walter andrews in the tycoon?
+Walter brennan
+10
+
+TV/Film: who played the penguin on the original batman?
+Burgess meredith
+10
+
+TV/Film: Who played the pesky sportswriter in The Natural?
+Robert duvall
+10
+
+TV/Film: Who played the police chief in Jaws?
+Roy Scheider
+10
+
+TV/Film: who played the president of the u.s in 'air force one'?
+Harrison ford
+10
+
+TV/Film: Who played the Queen Mother in the 2006 movie The Queen?
+Sylvia Sims
+10
+
+TV/Film: Who played the radio talk show host in Midnight Caller?
+Gary Cole
+10
+
+TV/Film: who played the role of crassus in stanley kubrick's spartacus?
+Lawrence olivier
+10
+
+TV/Film: Who played the role of ethan edwards in the searchers?
+John wayne
+10
+
+TV/Film: who played the role of gilligan on tv?
+Bob denver
+10
+
+TV/Film: who played the role of jack benny's tv valet?
+Eddie rochester anderson
+10
+
+TV/Film: Who played the role of margaret schlegel in the film howard's end?
+Emma thompson
+10
+
+TV/Film: Who played the role of piano man in lady sings the blues?
+Richard pryor
+10
+
+TV/Film: Who played the role of Richard Blaine in Casablanca?
+Humphrey Bogart
+10
+
+TV/Film: Who played the role of the circus strongwoman in adam's rib?
+Hope emerson
+10
+
+TV/Film: who played the role of tillie with walter matthau in pete n tillie?
+Carol burnett
+10
+
+TV/Film: Who played the sorcerers apprentice in Fantasia?
+Mickey mouse
+10
+
+TV/Film: Who played the stepmother in 'my stepmother is an alien'?
+Kim basinger
+10
+
+TV/Film: Who played the suave thief,Sir Charles Lytton, in the film The Pink Panther?
+David niven
+10
+
+TV/Film: Who played the switchboard operator in cutter to houston?
+John nicholson
+10
+
+TV/Film: Who played the telephone operator on laugh-in?
+Lily tomlin
+10
+
+TV/Film: Who played the television detective frank cannon?
+William conrad
+10
+
+TV/Film: Who played the terrorist leader in 1992's Passenger 57?
+Bruce Payne
+10
+
+TV/Film: Who played the thinly disguised howard hughes in the movie, the carpetbaggers?
+George peppard
+10
+
+TV/Film: Who played the Timelord 1987 - 1989?
+Sylvester mccoy
+10
+
+TV/Film: Who played the title role in 'urban cowboy'?
+John travolta
+10
+
+TV/Film: Who played the title role in georgy girl?
+Lynn redgrave
+10
+
+TV/Film: Who played the title role in Ghandi in 1982?
+Ben Kingsley
+10
+
+TV/Film: Who played the title role in Maude?
+Bea Arthur
+10
+
+TV/Film: Who played the title role in Shirley Valentine?
+Pauline collins
+10
+
+TV/Film: Who played the title role in the 'mad max' series of films?
+Mel gibson
+10
+
+TV/Film: Who played the title role in the 1921 film 'The Sheik'?
+Rudolf valentino
+10
+
+TV/Film: who played the title role in the 1957 comedy the sad sack?
+Jerry lewis
+10
+
+TV/Film: Who played the title role in the 1969 film 'Ned Kelly'?
+Mick jagger
+10
+
+TV/Film: Who played the title role in the 1970's US cop series Shaft?
+Richard roundtree
+10
+
+TV/Film: Who played the title role in the 1978 version of 'Superman'?
+Christopher Reeve
+10
+
+TV/Film: Who played the title role in the 1982 film 'gandhi'?
+Ben kingsley
+10
+
+TV/Film: Who played the title role in the Elephant Man?
+John hurt
+10
+
+TV/Film: Who played the title role in the film 'jfk'?
+Kevin costner
+10
+
+TV/Film: Who played the title role in the film 'the outlaw josey wales'?
+Clint eastwood
+10
+
+TV/Film: Who played the title role in the film Hook?
+Dustin hoffman
+10
+
+TV/Film: Who played the title role in the film Shirley Valentine?
+Pauline collins
+10
+
+TV/Film: Who played the title role in the film The Pride of Miss Jean Brodie?
+Maggie Smith
+10
+
+TV/Film: Who played the title role in The Millionairess?
+Sophia loren
+10
+
+TV/Film: Who played the title role in the series My wife next door?
+Hannah Gordon
+10
+
+TV/Film: Who played the title role in the US sitcom 'Rhoda'?
+Valerie harper
+10
+
+TV/Film: Who played the title role in tom jones?
+Albert finney
+10
+
+TV/Film: Who played the title role of the tv sitcom 'jesse'?
+Christina applegate
+10
+
+TV/Film: Who played the title role on tv's 'the equalizer'?
+Edward woodward
+10
+
+TV/Film: Who played the title roll in the 1938 film 'The Adventures of Robin Hood'?
+Errol flynn
+10
+
+TV/Film: Who played the title roll in the film stevie (1978)?
+Glenda jackson
+10
+
+TV/Film: Who played the title roll in tv's lovejoy?
+Ian mcshane
+10
+
+TV/Film: Who played the Uncle on Family Ties?
+Tom Hanks
+10
+
+TV/Film: Who played the Wicked Uncle Ernie in the film Tommy?
+Keith Moon
+10
+
+TV/Film: Who played the witch wife in Bewitched?
+Elizabeth Montgomery
+10
+
+TV/Film: Who played the young Indy in Indiana Jones and the Last Crusade?
+River phoenix
+10
+
+TV/Film: Who played thurston howell iii on gilligan's island?
+Jim backus
+10
+
+TV/Film: Who played Toulouse Lautrec in the film Moulin Rouge?
+Jose Ferrer
+10
+
+TV/Film: Who played Trixie Delight in the film 'Paper Moon'?
+Madeline kahn
+10
+
+TV/Film: Who played tv's callan?
+Edward woodward
+10
+
+TV/Film: who played tv's superman in the original series?
+George reeves
+10
+
+TV/Film: Who played twin sisters in the parent trap?
+Hayley mills
+10
+
+TV/Film: Who played two or more roles in the dark mirror?
+Olivia de havilland
+10
+
+TV/Film: Who played two or more roles in the mouse that roared?
+Peter sellers
+10
+
+TV/Film: Who played villain Dr. Evil in the film?
+Mike myers
+10
+
+TV/Film: Who played webster?
+Emanuelle lewis
+10
+
+TV/Film: Who played Wesley from Angel?
+Alexis Denisof
+10
+
+TV/Film: Who played western villan 'One Eyed Bart' in the film 'Toy Story?
+Mr. Potato Head
+10
+
+TV/Film: Who played william wallace in 'braveheart'?
+Mel gibson
+10
+
+TV/Film: Who played willow from buffy the vampire slayer?
+Alyson Hannigan
+10
+
+TV/Film: Who played willy wonka in the film willy wonka and the chocolate factory?
+Gene Wilder
+10
+
+TV/Film: Who played Xander from buffy the vampire slayer?
+Nicholas Brendon
+10
+
+TV/Film: who portrayed cheyenne bodie in cheyenne?
+Clint walker
+10
+
+TV/Film: who portrayed hawkeyes's original sidekick, trapper john?
+Wayne rodgers
+10
+
+TV/Film: who portrayed prewett in from here to eternity?
+Montgomery clift
+10
+
+TV/Film: who portrayed sherlock holmes in 14 films between 1939 & 1946?
+Basil rathbone
+10
+
+TV/Film: Who portrayed the birdman, in the movie birdman of alcatraz?
+Burt lancaster
+10
+
+TV/Film: who portrayed the demolitions expert in the guns of navarone?
+David niven
+10
+
+TV/Film: who portrayed the German spy die nagel in the eye of the needle?
+Donald sutherland
+10
+
+TV/Film: Who poses as Krusty the Clown in the Kamp Krusty episode?
+Barney 
+10
+
+TV/Film: Who presented Telly Addicts?
+Noel edmonds
+10
+
+TV/Film: who presented the bbc1 game show 'the other half'?
+Dale winton
+10
+
+TV/Film: Who presented This is your life in 1995?
+Michael Aspel
+10
+
+TV/Film: Who presents Channel 4s Time Team?
+Tony Robinson
+10
+
+TV/Film: Who produced All in the Family?
+Norman lear 
+10
+
+TV/Film: Who produced Ike and Tina Turner's River Deep Mountain High?
+Phil spector
+10
+
+TV/Film: Who produced the movie Remember the Titans?
+Bruckheimer
+10
+
+TV/Film: Who produced the original film of Scarface?
+Howard Hughes
+10
+
+TV/Film: Who produced the tv series the untouchables?
+Quinn martin
+10
+
+TV/Film: who provided the voice of the unseen charlie in the u.s. tv series charlie's angels?
+John forsythe
+10
+
+TV/Film: Who pulls wayne over in wayne's world?
+Robert patrick
+10
+
+TV/Film: who put the curse on billy halleck in richard bachman's 'thinner'?
+Gypsy
+10
+
+TV/Film: who replaced harvey korman on the carol burnett show?
+Dick van dyke
+10
+
+TV/Film: Who said I wanted to be Snow White but I drifted?
+Mae West
+10
+
+TV/Film: Who sang Falling in love again in The Blue Angel in 1930?
+Marlene Dietrich
+10
+
+TV/Film: who sang the title song to 'goldfinger'?
+Shirley bassey
+10
+
+TV/Film: Who shared a room and bed with Eli Wallach while filming The Good, the Bad and the Ugly?
+Clint Eastwood
+10
+
+TV/Film: who shared a touch of class with george segal?
+Glenda jackson
+10
+
+TV/Film: who shipped his academy award oscar back to his father's hardware store?
+James stewart
+10
+
+TV/Film: Who shot j.r ewing in the tv series 'dallas'?
+Kristin shepard
+10
+
+TV/Film: who shot j.r. ewing in the tv series 'dallas'?
+Kristin shepard
+10
+
+TV/Film: Who sings and plays the theme song for the TV show 'Frasier'?
+Kelsey Grammer
+10
+
+TV/Film: Who sings the title song for One Foot in the Grave?
+Eric Idle
+10
+
+TV/Film: Who spent most of the MASH series trying to get out of Korea but was the only one to remain there?
+Klinger
+10
+
+TV/Film: who spoke the only word in mel brook's silent movie?
+Marcel marceau
+10
+
+TV/Film: Who starred along side Peter Sellers in The Millionairess?
+Sophia Loren
+10
+
+TV/Film: Who starred as 'ouboet' in the first TV series of 'Orkney Snork Nie'?
+Frank Opperman
+10
+
+TV/Film: Who starred as an Olympic skier in Downhill Racer?
+Robert redford
+10
+
+TV/Film: Who starred as Bobby Ewings wife in Dallas?
+Victoria Principal
+10
+
+TV/Film: Who starred as Kotter in Welcome Back Kotter?
+Gabe kaplin 
+10
+
+TV/Film: who starred in 'conan the barbarian'?
+Arnold schwarzenegger
+10
+
+TV/Film: who starred in & directed the gauntlet?
+Clint eastwood
+10
+
+TV/Film: Who starred in 1930 film The Blue angel?
+Marlene Dietrich
+10
+
+TV/Film: Who starred in 9 films with Katherine Hepburn?
+Spencer tracy
+10
+
+TV/Film: Who starred in and directed the film Yentl?
+Barbra Streisand
+10
+
+TV/Film: Who starred in Easy Street?
+Charlie Chaplin
+10
+
+TV/Film: Who starred in the 1952 film 'Niagara'?
+Marilyn Monroe
+10
+
+TV/Film: Who starred in The Deep?
+Jacqueline Bisset
+10
+
+TV/Film: who starred in the film 'the man with two brains'?
+Steve martin
+10
+
+TV/Film: Who starred in the film Richie Rich?
+Macaulay culkin
+10
+
+TV/Film: Who starred in the film version of 'To Kill A Mockingbird'?
+Gregory Peck
+10
+
+TV/Film: Who starred in the films Monkey Business, Houseboat, Indiscreet and Walk, dont run?
+Cary grant
+10
+
+TV/Film: Who starred in The Hunter?
+Steve mcqueen
+10
+
+TV/Film: Who starred in The man with the golden arm?
+Frank Sinatra
+10
+
+TV/Film: Who starred in the movie Sleepy hollow?
+Johnny Depp
+10
+
+TV/Film: Who starred in the movie What Women Want?
+Mel Gibson
+10
+
+TV/Film: who starred in the movie with susan surandon White Palace?
+James Spader
+10
+
+TV/Film: Who starred in the silent movies Bllod and sand, The Eagle and The Sheik?
+Rudolph Valentino
+10
+
+TV/Film: who starred in the title role of hec ramsey?
+Richard boone
+10
+
+TV/Film: Who starred opposite Fred Astaire in Easter Parade?
+Judy Garland
+10
+
+TV/Film: Who starred opposite Richard Gere in the 1990 film Pretty Woman?
+Julia roberts
+10
+
+TV/Film: who starred with mel gibson in the 'lethal weapon' films?
+Danny glover
+10
+
+TV/Film: Who starred with Roger Moore in The Persuaders?
+Tony Curtis
+10
+
+TV/Film: Who takes a job at the Kwik-E-Mart to prepare for a movie role?
+James Woods 
+10
+
+TV/Film: Who takes the starring role in the 1970's tv medical drama quincy?
+Jack klugman
+10
+
+TV/Film: Who teamed up with Barbera to form a cartoon movie studio?
+Hanna
+10
+
+TV/Film: Who temporarily left his desert island to ask people about their favorite things on television?
+Roy plomley
+10
+
+TV/Film: Who thanked his parents for not practicing birth control upon picking up a 1979 Best Actor Oscar?
+Dustin hoffman
+10
+
+TV/Film: who tried to have data disassembled?
+Commander maddox
+10
+
+TV/Film: Who was alex p. Keaton's idol?
+Ronald reagan
+10
+
+TV/Film: who was asked to audition for cheers after playing a hairdresser on a taxi episode?
+Ted danson
+10
+
+TV/Film: Who was Barbarella?
+Jane fonda 
+10
+
+TV/Film: who was ben hur's rival in the great chariot race?
+Messala
+10
+
+TV/Film: who was born marion morrison?
+John wayne
+10
+
+TV/Film: who was born roy scherer?
+Rock hudson
+10
+
+TV/Film: who was brandon lee's father?
+Bruce lee
+10
+
+TV/Film: who was bruce lee's son?
+Brandon lee
+10
+
+TV/Film: who was bud abbott's partner?
+Lou costello
+10
+
+TV/Film: Who was Buffy the Vampire Slayer's vampire boyfriend?
+Angel
+10
+
+TV/Film: Who was Bugsy Malone's girlfriend (Full character name)?
+Blousey brown
+10
+
+TV/Film: Who was caine's blind teacher on kung fu?
+Master po
+10
+
+TV/Film: who was captain of the starship enterprise before james t. kirk?
+Christopher pike
+10
+
+TV/Film: Who was Carl in Five Easy Pieces before going to Walton's Mountain?
+Waite
+10
+
+TV/Film: Who was Chief Marshall of the Mickey Mouse Club?
+Walt disney
+10
+
+TV/Film: Who was citizen kane based on?
+William randolph hearst
+10
+
+TV/Film: who was clark kent?
+Superman
+10
+
+TV/Film: who was daisy the dog's owners?
+Blondie & dagwood bumstead
+10
+
+TV/Film: Who was Dangermouse's sidekick?
+Penfold
+10
+
+TV/Film: Who was Desmond Lynams co presenter on the first series of How do they do that?
+Jennie Hull
+10
+
+TV/Film: Who was Dick Dastardly's pet?
+Muttley
+10
+
+TV/Film: Who was Dr. Zhivago's great love?
+Lara
+10
+
+TV/Film: Who was E.T.'s best friend?
+Elliot
+10
+
+TV/Film: who was elvis presley's female co starin g. I. Blues?
+Juliet prowse
+10
+
+TV/Film: Who was Fred Astaire's partner?
+Ginger rogers
+10
+
+TV/Film: Who was Fred Astaires dancing partner in the 1957 film Silk Stockings?
+Cyd charisse
+10
+
+TV/Film: who was fred flinstone's best friend?
+Barney rubble
+10
+
+TV/Film: who was fred flintstone's neighbour and bowling partner?
+Barney rubble
+10
+
+TV/Film: who was george burns' wife, whom he had a popular tv show with?
+Gracie allen
+10
+
+TV/Film: who was goldfinger's bodyguard?
+Oddjob
+10
+
+TV/Film: Who was John Wayne's musical co-star in true grit?
+Glen Campbell
+10
+
+TV/Film: who was johnny carsons original announcer?
+Ed mcmahon
+10
+
+TV/Film: who was lauren bacall's first husband?
+Humphrey bogart
+10
+
+TV/Film: who was lou costello's partner?
+Bud abbott
+10
+
+TV/Film: Who was Luke Skywalkers father?
+Darth vader
+10
+
+TV/Film: who was married to tess truehart?
+Dick tracy
+10
+
+TV/Film: Who was Miss Hungary in 1936?
+Zsa-Zsa Gabor
+10
+
+TV/Film: who was miss hungary of 1936?
+Zsa zsa gabor
+10
+
+TV/Film: who was mr peabodys adopted boy?
+Sherman
+10
+
+TV/Film: who was nominated for actor in a supporting role in 1988?
+River phoenix
+10
+
+TV/Film: who was nominated for actress in a supporting role in 1975?
+Brenda vaccaro
+10
+
+TV/Film: Who was nominated for actress in a supporting role in 1980?
+Diana scarwid 
+10
+
+TV/Film: who was nominated for best actor in 1975?
+Al pacino
+10
+
+TV/Film: who was nominated for best actress in 1928 29?
+Bessie love
+10
+
+TV/Film: who was nominated for best actress in 1944?
+Greer garson
+10
+
+TV/Film: who was nominated for directing in 1984?
+Woody allen
+10
+
+TV/Film: Who was nominated for directing in 1988?
+Mike nichols 
+10
+
+TV/Film: Who was not offered the lead role in 'A Fistful Of Dollars' due to his high fee?
+Henry fonda 
+10
+
+TV/Film: who was on the first cover of people magazine?
+Mia farrow
+10
+
+TV/Film: Who was Pennys boyfriend in Just Good friends?
+Vince
+10
+
+TV/Film: who was pinocchio's father?
+Geppetto
+10
+
+TV/Film: Who was Pual Hogans side-kick on The Paul Hogan Show?
+Strop
+10
+
+TV/Film: who was robin hood's girlfriend?
+Maid marion
+10
+
+TV/Film: who was ronald reagan's first wife?
+Jane wyman
+10
+
+TV/Film: who was sherlock holmes' sidekick?
+Watson
+10
+
+TV/Film: Who was shown on the Ed Sullivan show form the waist up only?
+Elvis Presley
+10
+
+TV/Film: who was superman's girlfriend?
+Lois lane
+10
+
+TV/Film: who was the actor that played the starring role in escape from New York?
+Kurt russell
+10
+
+TV/Film: Who was the alter ego of 'The Incredible Hulk'?
+Dr. David Banner
+10
+
+TV/Film: who was the announcer on you bet your life?
+George fenneman
+10
+
+TV/Film: who was the baddie in spaghetti westerns?
+Lee van cleef
+10
+
+TV/Film: who was the body of darth vader?
+David prowse
+10
+
+TV/Film: Who was the Cisco Kid's faithful sidekick?
+Pancho
+10
+
+TV/Film: who was the director of 'terminator & titanic'?
+James cameron
+10
+
+TV/Film: Who was the director of 'Terminator' and 'Titanic'?
+James Cameron
+10
+
+TV/Film: Who was the director of Psycho?
+Hitchcock
+10
+
+TV/Film: who was the editor at metropolis newspaper?
+Perry white
+10
+
+TV/Film: who was the elven queen in the lord of the rings?
+Galadriel
+10
+
+TV/Film: who was the female star in wings?
+Clara bow
+10
+
+TV/Film: Who was the female star of bugsy malone?
+Jodie foster
+10
+
+TV/Film: who was the female star of sophie's choice?
+Meryl streep
+10
+
+TV/Film: Who was the female star of West Side Story?
+Natalie wood
+10
+
+TV/Film: who was the first actress to appear on the cover of life magazine?
+Jean harlow
+10
+
+TV/Film: who was the first American actress to appear on a postage stamp?
+Grace kelly
+10
+
+TV/Film: Who was the first black female Oscar winner to win best actress?
+Halle Berry
+10
+
+TV/Film: who was the first black performer to win an oscar?
+Hattie mcdaniel
+10
+
+TV/Film: Who was the first feline featured in Lifestyles of the Rich and Famous?
+Morris the Cat
+10
+
+TV/Film: Who was the first female to direct a movie that raked in over $100 million?
+Penny Marshall
+10
+
+TV/Film: Who was the first living person to become a member of the Country Music Hall of Fame?
+Roy Acuff
+10
+
+TV/Film: Who was the first presenter of the BBCs Come Dancing?
+Mcdonald hobley
+10
+
+TV/Film: Who was the first presenter of the Golden Shot?
+Jackie Rae
+10
+
+TV/Film: Who was the first presenter of tomorrows World?
+Raymond baxter
+10
+
+TV/Film: Who was the first solo female host of the Academy Awards Ceremony?
+Whoopi Goldberg
+10
+
+TV/Film: Who was the first supposedly computer generated TV talk show host?
+Max headroom
+10
+
+TV/Film: Who was the first to take home a Best Actor Oscar for a musical, in 1943?
+James Cagney
+10
+
+TV/Film: who was the first voice of mickey mouse?
+Walt disney
+10
+
+TV/Film: Who was the girl in Peter Sellers' 'Soup'?
+Goldie hawn
+10
+
+TV/Film: Who was the girl in peter sellers' soup?
+Goldie hawn
+10
+
+TV/Film: who was the head writer in the wjm-tv newsroom?
+Murray slaughter
+10
+
+TV/Film: who was the host for the gong show?
+Chuck barris
+10
+
+TV/Film: Who was the host of Great Temptation?
+Tony Barber
+10
+
+TV/Film: Who was the host of Hey Hey It's Saturday?
+Daryl Somers
+10
+
+TV/Film: who was the host of night gallery?
+Rod sterling
+10
+
+TV/Film: Who was the hostess on Great Temptation?
+Barbara Rogers
+10
+
+TV/Film: Who was the lead in the original pilot for the successful TV science fiction show Star Trek?
+Jeffrey Hunter
+10
+
+TV/Film: who was the little tramp of silent movies?
+Charlie chaplin
+10
+
+TV/Film: Who was the male star in the film The Beach?
+Leonardo dicaprio
+10
+
+TV/Film: Who was the narrator for the 1999 BBC1 series of Walking with Dinosaurs?
+Kenneth branagh
+10
+
+TV/Film: who was the only actor to become president of the u s?
+Ronald reagan
+10
+
+TV/Film: Who was the only person the new owners didn't fire, on The Mary Tyler Moore Show?
+Ted baxter
+10
+
+TV/Film: who was the only person to be awarded the oscar for best actor posthumously?
+Peter finch
+10
+
+TV/Film: who was the original gidget?
+Sandra dee
+10
+
+TV/Film: who was the president of the oil company that bought jed clampett's oil?
+John brewster
+10
+
+TV/Film: Who was the sponsor for the tv show wayne's world?
+Noah's arcade
+10
+
+TV/Film: who was the star of the doctor?
+William hurt
+10
+
+TV/Film: Who was the star of the post appocolyptic sci-fi film a boy and his dog?
+Don johnson
+10
+
+TV/Film: Who was the subject of the Panorama programme titled the Max Factor?
+Robert maxwell
+10
+
+TV/Film: Who was the substitute teacher Lisa fell in love with? (Dustin Hoffman)?
+Mr. Bergstrom
+10
+
+TV/Film: who was the supporting actor that appeared in captain kangaroo?
+Tom terrific
+10
+
+TV/Film: Who was the supporting actor that appeared in Rocky & his Friends?
+Mr peabody 
+10
+
+TV/Film: who was the supporting actor that appeared in the underdog show?
+Tennessee tuxedo
+10
+
+TV/Film: who was the supporting actor that appeared in the yogi bear show?
+Snagglepuss
+10
+
+TV/Film: Who was the Swedish star of Grand Hotel?
+Greta Garbo
+10
+
+TV/Film: Who was the title star of meet the veep?
+Alben w barkley
+10
+
+TV/Film: Who was the villain in 'Star Wars'?
+Darth Vader
+10
+
+TV/Film: who was the vixen in the mini series east of eden?
+Jane seymour
+10
+
+TV/Film: Who was the voice behind Woody, the cowboy doll in Toy Story?
+Tom Hanks
+10
+
+TV/Film: who was the voice of e.t?
+Debra winger
+10
+
+TV/Film: who was the voice of rocket j. squirrel & natasha fatale?
+June foray
+10
+
+TV/Film: who was the writer/director/producer of enter laughing?
+Carl reiner
+10
+
+TV/Film: who was to be honoured in the u s swimming hall of fame?
+Johnny weissmuller
+10
+
+TV/Film: who was tom cruise first married to?
+Mimi rogers
+10
+
+TV/Film: who were lucy & ricky's next door neighbours & best friends?
+Fred & ethel
+10
+
+TV/Film: Who were Lucy and Ricky's next door neighbours and best friends?
+Fred and Ethel
+10
+
+TV/Film: Who were the guests on Johnny Carson's final tonite show?
+Bette midler & robin williams 
+10
+
+TV/Film: Who won an Academy Award for best original screen play with his second film Pulp Fiction?
+Quentin tarantino
+10
+
+TV/Film: Who won an Oscar aged 10 for her role in Paper Moon?
+Tatum O'Neal
+10
+
+TV/Film: who won an oscar for his portrayal of nick in the deer hunter?
+Christopher walken
+10
+
+TV/Film: Who won best actor for his role in Gandhi?
+Ben kingsley 
+10
+
+TV/Film: Who won best actor Oscar for his role in 'Save the Tiger'?
+Jack lemmon
+10
+
+TV/Film: Who won best actor Oscar in 1989 for My left Foot?
+Daniel Day-Lewis
+10
+
+TV/Film: Who won best actress for her role in Anastasia?
+Ingrid bergman 
+10
+
+TV/Film: who won best actress for her role in network?
+Faye dunaway
+10
+
+TV/Film: who won best actress for her role in the country girl?
+Grace kelly
+10
+
+TV/Film: Who won best actress oscars for Dangerous and Jezebel?
+Bette davis
+10
+
+TV/Film: who won best director oscar for ordinary people?
+Robert redford
+10
+
+TV/Film: who won best supporting actor for his role in ryan's daughter?
+John mills
+10
+
+TV/Film: who won best supporting actor for his role in the westerner?
+Walter brennan
+10
+
+TV/Film: who won best supporting actor for his role in twelve o'clock high?
+Dean jagger
+10
+
+TV/Film: who won best supporting actress oscar for bonnie & clyde?
+Estelle parsons
+10
+
+TV/Film: who won for directing lawrence of arabia (best picture, 1962)?
+David lean
+10
+
+TV/Film: who won the 1983 oscar for best supporting actress?
+Linda hunt
+10
+
+TV/Film: Who won the oscar for best actor in 1931 32?
+Wallace beery
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1927/1928 1st Academy Awards for the Movie 7TH HEAVEN, STREET ANGEL and SUNRISE?
+Janet gaynor
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1928/1929 2nd Academy Awards for the Movie COQUETTE?
+Mary pickford
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1929/1930 3rd Academy Awards for the Movie THE DIVORCEE?
+Norma shearer
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1930/1931 4th Academy Awards for the Movie MIN AND BILL?
+Marie dressler
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1931/1932 5th Academy Awards for the Movie THE SIN OF MADELON CLAUDET?
+Helen hayes
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1932/1933 6th Academy Awards for the Movie MORNING GLORY?
+Katharine hepburn
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1934 7th Academy Awards for the Movie IT HAPPENED ONE NIGHT?
+Claudette colbert
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1935 8th Academy Awards for the Movie DANGEROUS?
+Bette Davis
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1936 9th Academy Awards for the Movie THE GREAT ZIEGFELD?
+Luise rainer
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1937 10th Academy Awards for the Movie THE GOOD EARTH?
+Luise rainer
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1938 11th Academy Awards for the Movie JEZEBEL?
+Bette Davis
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1939 12th Academy Awards for the Movie GONE WITH THE WIND?
+Vivien leigh
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1940 13th Academy Awards for the Movie KITTY FOYLE?
+Ginger rogers
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1941 14th Academy Awards for the Movie SUSPICION?
+Joan Fontaine
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1942 15th Academy Awards for the Movie MRS. MINIVER?
+Greer garson
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1943 16th Academy Awards for the Movie THE SONG OF BERNADETTE?
+Jennifer jones
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1944 17th Academy Awards for the Movie GASLIGHT?
+Ingrid Bergman
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1945 18th Academy Awards for the Movie MILDRED PIERCE?
+Joan crawford
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1946 19th Academy Awards for the Movie TO EACH HIS OWN?
+Olivia de havilland
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1947 20th Academy Awards for the Movie THE FARMER'S DAUGHTER?
+Loretta young
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1948 21st Academy Awards for the Movie JOHNNY BELINDA?
+Jane wyman
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1949 22nd Academy Awards for the Movie THE HEIRESS?
+Olivia de havilland
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1950 23rd Academy Awards for the Movie BORN YESTERDAY?
+Judy holliday
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1951 24th Academy Awards for the Movie A STREETCAR NAMED DESIRE?
+Vivien leigh
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1952 25th Academy Awards for the Movie COME BACK, LITTLE SHEBA?
+Shirley booth
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1953 26th Academy Awards for the Movie ROMAN HOLIDAY?
+Audrey hepburn
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1954 27th Academy Awards for the Movie THE COUNTRY GIRL?
+Grace kelly
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1955 28th Academy Awards for the Movie THE ROSE TATTOO?
+Anna magnani
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1956 29th Academy Awards for the Movie ANASTASIA (1956)?
+Ingrid bergman
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1957 30th Academy Awards for the Movie THE THREE FACES OF EVE?
+Joanne woodward
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1958 31st Academy Awards for the Movie I WANT TO LIVE!?
+Susan hayward
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1959 32nd Academy Awards for the Movie ROOM AT THE TOP?
+Simone signoret
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1960 33rd Academy Awards for the Movie BUTTERFIELD 8?
+Elizabeth taylor
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1961 34th Academy Awards for the Movie TWO WOMEN?
+Sophia loren
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1962 35th Academy Awards for the Movie THE MIRACLE WORKER?
+Anne bancroft
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1963 36th Academy Awards for the Movie HUD?
+Patricia neal
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1964 37th Academy Awards for the Movie MARY POPPINS?
+Julie andrews
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1965 38th Academy Awards for the Movie DARLING?
+Julie Christie
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1966 39th Academy Awards for the Movie WHO'S AFRAID OF VIRGINIA WOOLF?
+Elizabeth taylor
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1967 40th Academy Awards for the Movie GUESS WHO'S COMING TO DINNER?
+Katharine hepburn
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1968 41st Academy Awards for the Movie FUNNY GIRL?
+Barbra streisand
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1968 41st Academy Awards for the Movie THE LION IN WINTER?
+Katharine hepburn
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1969 42nd Academy Awards for the Movie THE PRIME OF MISS JEAN BRODIE?
+Maggie smith
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1970 43rd Academy Awards for the Movie WOMEN IN LOVE?
+Glenda jackson
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1971 44th Academy Awards for the Movie KLUTE?
+Jane Fonda
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1972 45th Academy Awards for the Movie CABARET?
+Liza Minnelli
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1973 46th Academy Awards for the Movie A TOUCH OF CLASS?
+Glenda jackson
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1974 47th Academy Awards for the Movie ALICE DOESN'T LIVE HERE ANYMORE?
+Ellen burstyn
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1975 48th Academy Awards for the Movie ONE FLEW OVER THE CUCKOO'S NEST?
+Louise fletcher
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1976 49th Academy Awards for the Movie NETWORK?
+Faye Dunaway
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1977 50th Academy Awards for the Movie ANNIE HALL?
+Diane keaton
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1978 51st Academy Awards for the Movie COMING HOME?
+Jane fonda
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1979 52nd Academy Awards for the Movie NORMA RAE?
+Sally field
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1980 53rd Academy Awards for the Movie COAL MINER'S DAUGHTER?
+Sissy spacek
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1981 54th Academy Awards for the Movie ON GOLDEN POND?
+Katharine hepburn
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1982 55th Academy Awards for the Movie SOPHIE'S CHOICE?
+Meryl streep
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1983 56th Academy Awards for the Movie TERMS OF ENDEARMENT?
+Shirley maclaine
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1984 57th Academy Awards for the Movie PLACES IN THE HEART?
+Sally field
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1985 58th Academy Awards for the Movie THE TRIP TO BOUNTIFUL?
+Geraldine page
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1986 59th Academy Awards for the Movie CHILDREN OF A LESSER GOD?
+Marlee matlin
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1987 60th Academy Awards for the Movie MOONSTRUCK?
+Cher
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1988 61st Academy Awards for the Movie THE ACCUSED?
+Jodie foster
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1989 62nd Academy Awards for the Movie DRIVING MISS DAISY?
+Jessica tandy
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1990 63rd Academy Awards for the Movie MISERY?
+Kathy Bates
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1991 64th Academy Awards for the Movie THE SILENCE OF THE LAMBS?
+Jodie foster
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1992 65th Academy Awards for the Movie HOWARDS END?
+Emma thompson
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Leading Role in 1993 66th Academy Awards for the Movie THE PIANO?
+Holly Hunter
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1936 9th Academy Awards for the Movie ANTHONY ADVERSE?
+Gale sondergaard
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1937 10th Academy Awards for the Movie IN OLD CHICAGO?
+Alice brady
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1938 11th Academy Awards for the Movie JEZEBEL?
+Fay Bainter
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1939 12th Academy Awards for the Movie GONE WITH THE WIND?
+Hattie mcdaniel
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1940 13th Academy Awards for the Movie THE GRAPES OF WRATH?
+Jane darwell
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1941 14th Academy Awards for the Movie THE GREAT LIE?
+Mary astor
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1942 15th Academy Awards for the Movie MRS. MINIVER?
+Teresa wright
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1943 16th Academy Awards for the Movie FOR WHOM THE BELL TOLLS?
+Katina paxinou
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1944 17th Academy Awards for the Movie NONE BUT THE LONELY HEART?
+Ethel barrymore
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1945 18th Academy Awards for the Movie NATIONAL VELVET?
+Anne revere
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1946 19th Academy Awards for the Movie THE RAZOR'S EDGE?
+Anne baxter
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1947 20th Academy Awards for the Movie GENTLEMAN'S AGREEMENT?
+Celeste holm
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1948 21st Academy Awards for the Movie KEY LARGO?
+Claire trevor
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1949 22nd Academy Awards for the Movie ALL THE KING'S MEN?
+Mercedes mccambridge
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1950 23rd Academy Awards for the Movie HARVEY?
+Josephine hull
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1951 24th Academy Awards for the Movie A STREETCAR NAMED DESIRE?
+Kim hunter
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1952 25th Academy Awards for the Movie THE BAD AND THE BEAUTIFUL?
+Gloria grahame
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1953 26th Academy Awards for the Movie FROM HERE TO ETERNITY?
+Donna reed
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1954 27th Academy Awards saint - on the WATERFRONT?
+Eva marie
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1955 28th Academy Awards fleet - east of eden?
+Jo Van
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1956 29th Academy Awards for the Movie WRITTEN ON THE WIND?
+Dorothy malone
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1957 30th Academy Awards for the Movie SAYONARA?
+Miyoshi umeki
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1958 31st Academy Awards for the Movie SEPARATE TABLES?
+Wendy hiller
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1959 32nd Academy Awards for the Movie THE DIARY OF ANNE FRANK?
+Shelley winters
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1960 33rd Academy Awards for the Movie ELMER GANTRY?
+Shirley jones
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1961 34th Academy Awards for the Movie WEST SIDE STORY?
+Rita moreno
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1962 35th Academy Awards for the Movie THE MIRACLE WORKER?
+Patty duke
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1963 36th Academy Awards for the Movie THE V.I.P.S?
+Margaret rutherford
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1964 37th Academy Awards for the Movie ZORBA THE GREEK?
+Lila kedrova
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1965 38th Academy Awards for the Movie A PATCH OF BLUE?
+Shelley winters
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1966 39th Academy Awards for the Movie WHO'S AFRAID OF VIRGINIA WOOLF?
+Sandy dennis
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1967 40th Academy Awards for the Movie BONNIE AND CLYDE?
+Estelle parsons
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1968 41st Academy Awards for the Movie ROSEMARY'S BABY?
+Ruth gordon
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1969 42nd Academy Awards for the Movie CACTUS FLOWER?
+Goldie hawn
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1970 43rd Academy Awards for the Movie AIRPORT?
+Helen Hayes
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1971 44th Academy Awards for the Movie THE LAST PICTURE SHOW?
+Cloris leachman
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1972 45th Academy Awards for the Movie BUTTERFLIES ARE FREE?
+Eileen heckart
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1973 46th Academy Awards for the Movie PAPER MOON?
+Tatum o'neal
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1974 47th Academy Awards for the Movie MURDER ON THE ORIENT EXPRESS?
+Ingrid bergman
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1975 48th Academy Awards for the Movie SHAMPOO?
+Lee Grant
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1976 49th Academy Awards for the Movie NETWORK?
+Beatrice straight
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1977 50th Academy Awards for the Movie JULIA?
+Vanessa Redgrave
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1978 51st Academy Awards for the Movie CALIFORNIA SUITE?
+Maggie smith
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1979 52nd Academy Awards for the Movie KRAMER VS. KRAMER?
+Meryl streep
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1980 53rd Academy Awards for the Movie MELVIN AND HOWARD?
+Mary steenburgen
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1981 54th Academy Awards for the Movie REDS?
+Maureen Stapleton
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1982 55th Academy Awards for the Movie TOOTSIE?
+Jessica lange
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1983 56th Academy Awards for the Movie THE YEAR OF LIVING DANGEROUSLY?
+Linda hunt
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1984 57th Academy Awards for the Movie A PASSAGE TO INDIA?
+Peggy ashcroft
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1985 58th Academy Awards for the Movie PRIZZI'S HONOR?
+Anjelica huston
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1986 59th Academy Awards for the Movie HANNAH AND HER SISTERS?
+Dianne wiest
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1987 60th Academy Awards for the Movie MOONSTRUCK?
+Olympia dukakis
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1988 61st Academy Awards for the Movie THE ACCIDENTAL TOURIST?
+Geena davis
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1989 62nd Academy Awards for the Movie MY LEFT FOOT?
+Brenda fricker
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1990 63rd Academy Awards for the Movie GHOST?
+Whoopi Goldberg
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1991 64th Academy Awards for the Movie THE FISHER KING?
+Mercedes ruehl
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1992 65th Academy Awards for the Movie MY COUSIN VINNY?
+Marisa tomei
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1993 66th Academy Awards for the Movie THE PIANO?
+Anna paquin
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1994 67th Academy Awards for the Movie BULLETS OVER BROADWAY?
+Dianne wiest
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1995 68th Academy Awards for the Movie MIGHTY APHRODITE?
+Mira sorvino
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1996 69th Academy Awards for the Movie THE ENGLISH PATIENT?
+Juliette binoche
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1997 70th Academy Awards for the Movie L.A. CONFIDENTIAL?
+Kim basinger
+10
+
+TV/Film: Who won the Oscar for best ACTRESS in a Supporting role in 1998 71st Academy Awards for the Movie SHAKESPEARE IN LOVE?
+Judi dench
+10
+
+TV/Film: who won the oscar for her role in a streetcar named desire?
+Vivien leigh
+10
+
+TV/Film: who wrote the classic thriller 'the birds'?
+Alfred hitchcock
+10
+
+TV/Film: who wrote the novel on which the film 'maybe baby' is based?
+Ben elton
+10
+
+TV/Film: who wrote the vampire series that featured lestat as the main character?
+Anne rice
+10
+
+TV/Film: Who wrote the wartime film 'In Which We Serve'?
+Noel coward
+10
+
+TV/Film: Who'd begun work on a 10th symphony when he died during a thunderstorm in 1827?
+Ludwig van Beethoven
+10
+
+TV/Film: Who's brother pulled strings to get her her first movie role?
+Julia roberts'
+10
+
+TV/Film: Who's known in Colorado Springs as Dr. Mike?
+Dr. Michaela Quinn
+10
+
+TV/Film: Who's real, ideal, awfully cute, and an ever-loving doll in a monkey suit?
+Magilla gorilla
+10
+
+TV/Film: Who's the adopted son of Vito Corleone?
+Tom Hagen
+10
+
+TV/Film: Who's the TV FBI agent with a penchant for the paranormal?
+Fox Mulder
+10
+
+TV/Film: whoopi goldberg played this bartender?
+Guinan
+10
+
+TV/Film: Whos Olive Oils brother?
+Castor oil
+10
+
+TV/Film: Whose autobiography is titled Groucho & Me?
+Groucho marx
+10
+
+TV/Film: Whose biography was titled The Other Side of the Rainbow?
+Judy garland
+10
+
+TV/Film: Whose earnings increased from $150,000 for Pulp Fiction to $3.5 million for Get Shorty to $7 million for Broken Arrow?
+John Travolta
+10
+
+TV/Film: Whose father ran the Gillis Grocery Store?
+Dobie gillis
+10
+
+TV/Film: Whose figure did Walt Disney use as a model for Tinkerbell?
+Marilyn monroe
+10
+
+TV/Film: Whose films include 'Giant', 'Written On The Wind' and 'A Farewell To Arms'?
+Rock Hudson
+10
+
+TV/Film: Whose four wives included Ann Howe and Miranda Quarry?
+Peter ellers
+10
+
+TV/Film: Whose guitar version of The Star-Spangled Banner was featured in a 1996 Aiwa TV ad?
+Jimi Hendrix
+10
+
+TV/Film: whose legs were shown in place of julia roberts' legs in 'pretty woman'?
+Goldie hawn
+10
+
+TV/Film: whose neighbors were frank & irene lorenzo?
+Archie bunker's
+10
+
+TV/Film: Whose sister, Pamela appeared in the 1988 movie Sleepaway Camp 2?
+Bruce springsteen
+10
+
+TV/Film: Whose stooges have included Rodney Bewes and Roy North?
+Basil Brush
+10
+
+TV/Film: Whose will left $10,000 for care and upkeep of the dummy Charlie McCarthy?
+Edgar Bergen
+10
+
+TV/Film: William Hurt and Holly Hunter team up in this comedy about the network news?
+Broadcast news
+10
+
+TV/Film: William Hurt plays Macon Leary in this movie?
+Accidental tourist
+10
+
+TV/Film: Willis O'Brien, special-effects wizard, did this follow-up to King Kong?
+Mighty joe young
+10
+
+TV/Film: Wings On TV/Film: Characters from this series pop up on the show occasionally?
+Cheers
+10
+
+TV/Film: Wings On TV/Film: Helen plays this instrument?
+Cello
+10
+
+TV/Film: wings on TV/Film: in the early shows, helen had a rule against dating these?
+Pilots
+10
+
+TV/Film: wings on TV/Film: joe goes to this island, where brian used to live?
+Mustique
+10
+
+TV/Film: Wings On TV/Film: Lowell's wife, whom he divorces in the course of the series?
+Bunny
+10
+
+TV/Film: wings on TV/Film: name of roy's ex-wife?
+Sylvia
+10
+
+TV/Film: Wings On TV/Film: Old geezer known for asking irritating questions and conning people?
+Carlton blanchard
+10
+
+TV/Film: Wings On TV/Film: Roy went to Boston to sing this song in public?
+Star spangled banner
+10
+
+TV/Film: wings on TV/Film: this character saw a man robbing a jewelry store?
+Antonio
+10
+
+TV/Film: Wings On TV/Film: Whenever Helen gets depressed, she does this (1 word)?
+Eat
+10
+
+TV/Film: wings on TV/Film: whenever helen gets depressed, she does this?
+Eat
+10
+
+TV/Film: Winona Ryder: In what comedy did Winona co-star with Ethan Hawke?
+Reality bites
+10
+
+TV/Film: Winona Ryder: In what film does Winona pet a wild wolf?
+Bram stokers dracula
+10
+
+TV/Film: Winona Ryder: In what film does Winona star with Johnny Depp?
+Edward scissorhands
+10
+
+TV/Film: Winona Ryder: In which movie did Winona commit suicide?
+Bram stokers dracula
+10
+
+TV/Film: Winona Ryder: What is the first movie Winona was in?
+Lucas
+10
+
+TV/Film: Winona Ryder: What relation is Winona to Pfeiffer in The Age of Innocence?
+Cousin
+10
+
+TV/Film: Winona Ryder: Where was Winona born (City State)?
+Winona minnesota
+10
+
+TV/Film: Winona Ryder: Which vintage Winona flick co-starred Shannon Doherty and Slater?
+Heathers
+10
+
+TV/Film: With which programme would you associate Zippy,George and Bungle?
+Rainbow
+10
+
+TV/Film: Wizard Of Oz: Chevy Chase movie which takes place in 30's Hollywood?
+Under the rainbow
+10
+
+TV/Film: Wizard Of Oz: Em's Husband?
+Henry
+10
+
+TV/Film: Wizard Of Oz: First kind of animal heard in the MGM film?
+Lion
+10
+
+TV/Film: Wizard Of Oz: Glinda's first words to Dorothy. (9 words)?
+Are you a good witch or a bad witch
+10
+
+TV/Film: Wizard Of Oz: In the book, the unusual meteorological event is called this?
+Cyclone
+10
+
+TV/Film: Wizard Of Oz: In the book, these items give the Emerald City its green appearance. (2 words)?
+Green spectacles
+10
+
+TV/Film: Wizard Of Oz: In the movie the Scarecrow incorrectly recites this after receiving his diploma?
+Pythagorean theorem
+10
+
+TV/Film: Wizard Of Oz: In the movie, the wizard gave the lion this medal?
+Triple cross
+10
+
+TV/Film: Wizard Of Oz: In the movie, the wizard gave this to the tin man?
+Testimonial
+10
+
+TV/Film: Wizard Of Oz: It makes the muskrat guard his musk?
+Courage
+10
+
+TV/Film: Wizard Of Oz: Second kind of animal heard in the MGM film?
+Chicken
+10
+
+TV/Film: Wizard Of Oz: The actor originally slated to play the tin man?
+Buddy ebsen
+10
+
+TV/Film: Wizard Of Oz: The actor who played the scarecrow?
+Ray bolger
+10
+
+TV/Film: Wizard Of Oz: The famous actress who played Dorothy?
+Judy garland
+10
+
+TV/Film: Wizard Of Oz: The words the wicked witch wrote in the sky above the Emerald City?
+Surrender dorothy
+10
+
+TV/Film: Wizard Of Oz: Toto's breed?
+Cairn terrier
+10
+
+TV/Film: Wynona Rider played the part of 'Jo' in the 3rd remake film of Little Women. Who played 'Jo' in the 1949 version?
+June Allyson
+10
+
+TV/Film: X-Files: In what episode was Scully kidnapped?
+Duane Barry
+10
+
+TV/Film: X-Files: name one of the two other recent sci-fi shows, that deep throat has appeared in?
+Quantum leap
+10
+
+TV/Film: X-Files: One of the episodes in which mulder has fired his gun is ____?
+Oubliette
+10
+
+TV/Film: X-Files: TV/Film: Who played Fox Mulder?
+David Duchovny
+10
+
+TV/Film: X-Files: What is mulder's nickname?
+Spooky
+10
+
+TV/Film: X-Files: What is Scully's nickname?
+Starbuck
+10
+
+TV/Film: X-Files: What is the main female character's name?
+Dana scully
+10
+
+TV/Film: X-Files: What is the name of Mulder and Scully's supervisor?
+Walter Skinner
+10
+
+TV/Film: X-Files: What was Mulder's sister's name?
+Samantha
+10
+
+TV/Film: X-Files: Who plays Mr. X?
+Steven williams
+10
+
+TV/Film: You'd find Julie, Doc, Gopher, and Isaac on this show?
+Love boat
+10
+
+TV/Film: Zorro was the secret identity of what wealthy landowner?
+Don diego de la vega
+10
+
+In what 'James Bond' film did sheena easton play?
+For Your Eyes Only
+10
+
+Which is peter sellers' most famous role?
+Inspector Clouseau
+10
+
+What object of Dwight's did Jim put in Jell-O on the TV show "The Office"?
+Stapler
+10
+
+In 1964, the Beatles had their third appearance on what TV show?
+Ed sullivan
+10
+
+In 1964, the Beatles had their first appearance in the ____ (I Want to Hold Your Hand-#35)
+Billboard chart
+10
+
+In 1967, the Beatles sign a petition in The Times to legalize what?
+Marijuana
+10
+
+In 1967, The Beatles sang about which Lane?
+Penny
+10
+
+In 1970 The Beatles have their last recording session at ____ studios
+EMI
+10
+
+In 1971, The Beatles' song ____ is played at the Charles Manson trial
+Helter Skelter
+10
+
+In 1975 ____ records closes down (Beatles first record company)
+Apple
+10
+
+In 1984 Liverpool's ____ Club, the home of the Beatles, reopens
+Cavern
+10
+
+In what film did Alec Guinness play eight parts?
+Kind Hearts and Coronets
+10
+
+In what film did dooley wilson sing 'a kiss is just a kiss'?
+Casablanca
+10
+
+In what film did john wayne get stranded in labrador?
+Islands in the sky
+10
+
+In what film did madeline kahn play 'Trixie Delight'?
+Paper moon
+10
+
+In what film did rick moranis make his big-screen debut?
+Strange brew
+10
+
+In what film did the beatles make their acting debut?
+A hard day's night
+10
+
+In what film did whoopi goldberg make her screen debut?
+Color purple
+10
+
+In what film do 'brick' and 'maggie' appear?
+Cat on a hot tin roof
+10
+
+In what film does Steve McQueen get to race a Mustang round the streets of San Francisco?
+Bullitt
+10
+
+In what film is the sorcerer yensid?
+Fantasia
+10
+
+In what year did Paul Anka have a hit with Diana?
+1957
+10
+
+In what year did Paul Mccartney leave the Beatles?
+1970
+10
+
+In what year was the album Abbey Road released by the Beatles?
+1969
+10
+
+In which film do the blue meanies attack pepperland and are defeated by the Beatles?
+Yellow submarine
 10
diff --git a/xtrn/gttrivia/qa/names_of_people.qa b/xtrn/gttrivia/qa/names_of_people.qa
new file mode 100644
index 0000000000..1df5ea8807
--- /dev/null
+++ b/xtrn/gttrivia/qa/names_of_people.qa
@@ -0,0 +1,19992 @@
+Names: Beginning with A: What name means "A Breath"?
+Abel
+10
+
+Names: Beginning with A: What name means "A Dream"?
+Aislinn
+10
+
+Names: Beginning with A: What name means "A follower of Thor"?
+Arthur
+10
+
+Names: Beginning with A: What name means "A Rock"?
+Art
+10
+
+Names: Beginning with A: What name means "Actor"?
+Anoki
+10
+
+Names: Beginning with A: What name means "alt form of Acacia"?
+Asasia
+10
+
+Names: Beginning with A: What name means "Amber Colored / Red"?
+Amber
+10
+
+Names: Beginning with A: What name means "Ambitious"?
+Almeda
+10
+
+Names: Beginning with A: What name means "Angel"?
+Arella
+10
+
+Names: Beginning with A: What name means "Angelic"?
+Angel
+10
+
+Names: Beginning with A: What name means "Angelic"?
+Angela
+10
+
+Names: Beginning with A: What name means "Angelic"?
+Angelica
+10
+
+Names: Beginning with A: What name means "Angelic"?
+Angelina
+10
+
+Names: Beginning with A: What name means "Angelic"?
+Angelo
+10
+
+Names: Beginning with A: What name means "April"?
+Abril
+10
+
+Names: Beginning with A: What name means "Ash Tree Farm"?
+Ashby
+10
+
+Names: Beginning with A: What name means "Ash Tree Settlement"?
+Ashton
+10
+
+Names: Beginning with A: What name means "Attractive, Peaceful"?
+Allene
+10
+
+Names: Beginning with A: What name means "Basket"?
+Adita
+10
+
+Names: Beginning with A: What name means "Bearded One"?
+Algeron
+10
+
+Names: Beginning with A: What name means "Beautiful Addition"?
+Adah
+10
+
+Names: Beginning with A: What name means "Beautiful Altar"?
+Arabela
+10
+
+Names: Beginning with A: What name means "Beautiful Altar"?
+Arabella
+10
+
+Names: Beginning with A: What name means "Beautiful Girl"?
+Adamma
+10
+
+Names: Beginning with A: What name means "Beautiful"?
+Ani
+10
+
+Names: Beginning with A: What name means "Beloved Friend"?
+Aimee
+10
+
+Names: Beginning with A: What name means "Beloved One"?
+Adora
+10
+
+Names: Beginning with A: What name means "Beloved One"?
+Aiko
+10
+
+Names: Beginning with A: What name means "Beloved"?
+Amy
+10
+
+Names: Beginning with A: What name means "Beloved"?
+Aziza
+10
+
+Names: Beginning with A: What name means "Best"?
+Arista
+10
+
+Names: Beginning with A: What name means "Bird"?
+Aya
+10
+
+Names: Beginning with A: What name means "Birds"?
+Avis
+10
+
+Names: Beginning with A: What name means "Blessed, Happy"?
+Asher
+10
+
+Names: Beginning with A: What name means "Bliss"?
+Anando
+10
+
+Names: Beginning with A: What name means "Blossom"?
+Adsila
+10
+
+Names: Beginning with A: What name means "Bold, Bowman"?
+Arch
+10
+
+Names: Beginning with A: What name means "Bold"?
+Arkadiy
+10
+
+Names: Beginning with A: What name means "Born at Dawn"?
+Asa
+10
+
+Names: Beginning with A: What name means "Bowman"?
+Archer
+10
+
+Names: Beginning with A: What name means "Breath"?
+Anemone
+10
+
+Names: Beginning with A: What name means "Breath"?
+Avel
+10
+
+Names: Beginning with A: What name means "Bright as a Star"?
+Asta
+10
+
+Names: Beginning with A: What name means "Bringer of Good Things"?
+Avedis
+10
+
+Names: Beginning with A: What name means "Chaste One"?
+Adara
+10
+
+Names: Beginning with A: What name means "Cheerful, Full of Energy"?
+Allegra
+10
+
+Names: Beginning with A: What name means "Cheerful/Merry"?
+Alair
+10
+
+Names: Beginning with A: What name means "Cherished One"?
+Ahava
+10
+
+Names: Beginning with A: What name means "Child Born After Grandmother Died"?
+Abiba
+10
+
+Names: Beginning with A: What name means "Children of the Wind"?
+Anila
+10
+
+Names: Beginning with A: What name means "Clothes Worn on Outside"?
+Aderes
+10
+
+Names: Beginning with A: What name means "Cloud from Heaven"?
+Aolani
+10
+
+Names: Beginning with A: What name means "Counselor"?
+Alfred
+10
+
+Names: Beginning with A: What name means "Courageous"?
+Andie
+10
+
+Names: Beginning with A: What name means "Courageous"?
+Andrea
+10
+
+Names: Beginning with A: What name means "Crown, Royal"?
+Ade
+10
+
+Names: Beginning with A: What name means "Dark, Rich"?
+Adriana
+10
+
+Names: Beginning with A: What name means "Dark, Rich"?
+Adrienne
+10
+
+Names: Beginning with A: What name means "Dawn"?
+Aurora
+10
+
+Names: Beginning with A: What name means "Dead and Awake"?
+Akuji
+10
+
+Names: Beginning with A: What name means "Decoration"?
+Adie
+10
+
+Names: Beginning with A: What name means "Defender of Mankind"?
+Alexandria
+10
+
+Names: Beginning with A: What name means "Defender of Mankind"?
+Alexia
+10
+
+Names: Beginning with A: What name means "Defender"?
+Aliya
+10
+
+Names: Beginning with A: What name means "Delicious"?
+Aulii
+10
+
+Names: Beginning with A: What name means "Divine Strength"?
+Astrid
+10
+
+Names: Beginning with A: What name means "Doors of Cedar"?
+Ariza
+10
+
+Names: Beginning with A: What name means "Dream, Vision"?
+Ashling
+10
+
+Names: Beginning with A: What name means "Dream"?
+Aislin
+10
+
+Names: Beginning with A: What name means "Eager, Noble"?
+Alfonso
+10
+
+Names: Beginning with A: What name means "Eager, Noble"?
+Alphonse
+10
+
+Names: Beginning with A: What name means "Eagle Tree"?
+Arvid
+10
+
+Names: Beginning with A: What name means "Eagle, Ruler, Peace"?
+Aren
+10
+
+Names: Beginning with A: What name means "Eagle"?
+Arne
+10
+
+Names: Beginning with A: What name means "East"?
+Anatole
+10
+
+Names: Beginning with A: What name means "Enchanted"?
+Arien
+10
+
+Names: Beginning with A: What name means "Enlightened"?
+Arin
+10
+
+Names: Beginning with A: What name means "Eternal"?
+Amara
+10
+
+Names: Beginning with A: What name means "Example, Lesson"?
+Abbra
+10
+
+Names: Beginning with A: What name means "Fair Complected"?
+Alva
+10
+
+Names: Beginning with A: What name means "Fair, Beautiful"?
+Alana
+10
+
+Names: Beginning with A: What name means "Faithful"?
+Amana
+10
+
+Names: Beginning with A: What name means "Fall Season"?
+Autumn
+10
+
+Names: Beginning with A: What name means "Father of a Multitude"?
+Abe
+10
+
+Names: Beginning with A: What name means "Father of a Multitude"?
+Abraham
+10
+
+Names: Beginning with A: What name means "Father of Dew"?
+Avital
+10
+
+Names: Beginning with A: What name means "Father of Joy"?
+Abbie
+10
+
+Names: Beginning with A: What name means "Father of Joy"?
+Abby
+10
+
+Names: Beginning with A: What name means "Father of Joy"?
+Abigail
+10
+
+Names: Beginning with A: What name means "Father of Light"?
+Abner
+10
+
+Names: Beginning with A: What name means "Father of Peace"?
+Axelle
+10
+
+Names: Beginning with A: What name means "Father of the Noble Prince"?
+Adelio
+10
+
+Names: Beginning with A: What name means "Father or Mother of Many"?
+Abie
+10
+
+Names: Beginning with A: What name means "Father"?
+Abbott
+10
+
+Names: Beginning with A: What name means "Father"?
+Abu
+10
+
+Names: Beginning with A: What name means "Fem. form of ALAN"?
+Alyn
+10
+
+Names: Beginning with A: What name means "Fem. form of ANTHONY"?
+Antonia
+10
+
+Names: Beginning with A: What name means "Fem. form of ANTHONY"?
+Antonie
+10
+
+Names: Beginning with A: What name means "Female Deer"?
+Afra
+10
+
+Names: Beginning with A: What name means "Fiery One"?
+Aden
+10
+
+Names: Beginning with A: What name means "Firey"?
+Aidan
+10
+
+Names: Beginning with A: What name means "First Son"?
+Antranig
+10
+
+Names: Beginning with A: What name means "Fisherman"?
+Andreas
+10
+
+Names: Beginning with A: What name means "Flourishing, Praiseworthy"?
+Antoinette
+10
+
+Names: Beginning with A: What name means "Flower that Never Fades"?
+Amaranta
+10
+
+Names: Beginning with A: What name means "Flower that Never Fades"?
+Amarante
+10
+
+Names: Beginning with A: What name means "Flower"?
+Aelan
+10
+
+Names: Beginning with A: What name means "Flowering Field"?
+Ardice
+10
+
+Names: Beginning with A: What name means "Flowering Field"?
+Ardith
+10
+
+Names: Beginning with A: What name means "Flowerlike"?
+Anthea
+10
+
+Names: Beginning with A: What name means "Forest Water"?
+Amadahy
+10
+
+Names: Beginning with A: What name means "Forest"?
+Aran
+10
+
+Names: Beginning with A: What name means "Form of ADELINE"?
+Alina
+10
+
+Names: Beginning with A: What name means "Form of ALANA"?
+Alanna
+10
+
+Names: Beginning with A: What name means "Form of ALBERT"?
+Alberto
+10
+
+Names: Beginning with A: What name means "Form of EILEEN"?
+Aileen
+10
+
+Names: Beginning with A: What name means "Form of ELIZABETH"?
+Ailish
+10
+
+Names: Beginning with A: What name means "Form of HELEN"?
+Alena
+10
+
+Names: Beginning with A: What name means "Form of Richard or Eric"?
+Aric
+10
+
+Names: Beginning with A: What name means "Friend to All"?
+Arvin
+10
+
+Names: Beginning with A: What name means "Friend"?
+Ami
+10
+
+Names: Beginning with A: What name means "Friendship"?
+Amity
+10
+
+Names: Beginning with A: What name means "From A.J.or Nat.Am name meaning Unconquerable"?
+Ajay
+10
+
+Names: Beginning with A: What name means "From AGNES"?
+Annice
+10
+
+Names: Beginning with A: What name means "From AGNES"?
+Annis
+10
+
+Names: Beginning with A: What name means "From Alsace-Loraine area of France"?
+Alsatia
+10
+
+Names: Beginning with A: What name means "From ANALIESE"?
+Analise
+10
+
+Names: Beginning with A: What name means "FROM ANDRA & LYN"?
+Andralyn
+10
+
+Names: Beginning with A: What name means "From ANGELA"?
+Angie
+10
+
+Names: Beginning with A: What name means "FROM ANNA & LISA"?
+Analiese
+10
+
+Names: Beginning with A: What name means "From AUDREY"?
+Audra
+10
+
+Names: Beginning with A: What name means "FROM AURORA"?
+Aurorette
+10
+
+Names: Beginning with A: What name means "FROM ELIJAH"?
+Alijah
+10
+
+Names: Beginning with A: What name means "From LAURA"?
+Alaura
+10
+
+Names: Beginning with A: What name means "From the Afton River"?
+Afton
+10
+
+Names: Beginning with A: What name means "From the Apricot"?
+Apria
+10
+
+Names: Beginning with A: What name means "From the Ash Tree Town"?
+Ashtyn
+10
+
+Names: Beginning with A: What name means "From the Ash Tree"?
+Ashley
+10
+
+Names: Beginning with A: What name means "From the East"?
+Anatola
+10
+
+Names: Beginning with A: What name means "From the name AFRICA"?
+Affrica
+10
+
+Names: Beginning with A: What name means "From the name ALAN"?
+Allen
+10
+
+Names: Beginning with A: What name means "From the name ALBERT"?
+Al
+10
+
+Names: Beginning with A: What name means "From the name ALBERT"?
+Alberta
+10
+
+Names: Beginning with A: What name means "From the name ALEXANDER"?
+Alastair
+10
+
+Names: Beginning with A: What name means "From the name ALFRED"?
+Avery
+10
+
+Names: Beginning with A: What name means "From the name AMENA"?
+Amina
+10
+
+Names: Beginning with A: What name means "From the name ANDREW"?
+Andres
+10
+
+Names: Beginning with A: What name means "From the name ANDREW"?
+Andy
+10
+
+Names: Beginning with A: What name means "From the name ANN"?
+Annissa
+10
+
+Names: Beginning with A: What name means "From the name ANNA"?
+Ann
+10
+
+Names: Beginning with A: What name means "From the name ANNA"?
+Anne
+10
+
+Names: Beginning with A: What name means "From the name ANNA"?
+Anya
+10
+
+Names: Beginning with A: What name means "From the name ANTONIA"?
+Antionette
+10
+
+Names: Beginning with A: What name means "From the name ARCHIBALD"?
+Archie
+10
+
+Names: Beginning with A: What name means "From the name ARIEL"?
+Ari
+10
+
+Names: Beginning with A: What name means "From the name ARMAND"?
+Armande
+10
+
+Names: Beginning with A: What name means "From the name ARMAND"?
+Armando
+10
+
+Names: Beginning with A: What name means "From the name ARNE OR ARNOLD"?
+Arnie
+10
+
+Names: Beginning with A: What name means "From the name ARTHUR"?
+Artie
+10
+
+Names: Beginning with A: What name means "From the name ARTHUR"?
+Arty
+10
+
+Names: Beginning with A: What name means "From the name ASHLEY"?
+Ash
+10
+
+Names: Beginning with A: What name means "From the name AUGUSTIN"?
+Austin
+10
+
+Names: Beginning with A: What name means "From the name AUGUSTUS"?
+August
+10
+
+Names: Beginning with A: What name means "From the Top of the Tree OR Prince"?
+Amir
+10
+
+Names: Beginning with A: What name means "Girl Prayed For"?
+Abeni
+10
+
+Names: Beginning with A: What name means "Goat"?
+Adiel
+10
+
+Names: Beginning with A: What name means "Goat"?
+Aja
+10
+
+Names: Beginning with A: What name means "God is Exalted"?
+Athalia
+10
+
+Names: Beginning with A: What name means "God is My Aid"?
+Azriel
+10
+
+Names: Beginning with A: What name means "God is my Refuge, Noble"?
+Adalia
+10
+
+Names: Beginning with A: What name means "God of my People"?
+Amiel
+10
+
+Names: Beginning with A: What name means "God of the Sun"?
+Apollo
+10
+
+Names: Beginning with A: What name means "Goddess of Love"?
+Aphrodite
+10
+
+Names: Beginning with A: What name means "Goddess of the Moon"?
+Artemis
+10
+
+Names: Beginning with A: What name means "Goddess of Wisdom & War"?
+Athena
+10
+
+Names: Beginning with A: What name means "Godlike"?
+Amma
+10
+
+Names: Beginning with A: What name means "Golden"?
+Aurelia
+10
+
+Names: Beginning with A: What name means "Good"?
+Agatha
+10
+
+Names: Beginning with A: What name means "Good"?
+Aggie
+10
+
+Names: Beginning with A: What name means "Grace of God"?
+Anja
+10
+
+Names: Beginning with A: What name means "Grace, New Moon"?
+Annamika
+10
+
+Names: Beginning with A: What name means "Graceful"?
+Anais
+10
+
+Names: Beginning with A: What name means "Gracious & Consecreted to God"?
+Annalise
+10
+
+Names: Beginning with A: What name means "Gracious"?
+Ana
+10
+
+Names: Beginning with A: What name means "Gracious"?
+Anita
+10
+
+Names: Beginning with A: What name means "Gracious"?
+Anitra
+10
+
+Names: Beginning with A: What name means "Gracious"?
+Anna
+10
+
+Names: Beginning with A: What name means "Gracious"?
+Annette
+10
+
+Names: Beginning with A: What name means "Gracious"?
+Annick
+10
+
+Names: Beginning with A: What name means "Great Champion"?
+Anlon
+10
+
+Names: Beginning with A: What name means "Great"?
+Abia
+10
+
+Names: Beginning with A: What name means "Greek God"?
+Adonia
+10
+
+Names: Beginning with A: What name means "Handsome"?
+Alan
+10
+
+Names: Beginning with A: What name means "Hard Worker"?
+Amalie
+10
+
+Names: Beginning with A: What name means "Hardworking"?
+Amalia
+10
+
+Names: Beginning with A: What name means "Hazel"?
+Aveline
+10
+
+Names: Beginning with A: What name means "He Laughs"?
+Ahanu
+10
+
+Names: Beginning with A: What name means "He Who Wins the Struggle"?
+Ajani
+10
+
+Names: Beginning with A: What name means "Healer"?
+Althea
+10
+
+Names: Beginning with A: What name means "Heart Sings & Dances"?
+Alima
+10
+
+Names: Beginning with A: What name means "Heavenly Altar"?
+Aracely
+10
+
+Names: Beginning with A: What name means "Helper"?
+Aida
+10
+
+Names: Beginning with A: What name means "High Father"?
+Abram
+10
+
+Names: Beginning with A: What name means "High, Exalted"?
+Aram
+10
+
+Names: Beginning with A: What name means "Highly Valued"?
+Azize
+10
+
+Names: Beginning with A: What name means "Hill"?
+Arlo
+10
+
+Names: Beginning with A: What name means "Holy"?
+Ariadne
+10
+
+Names: Beginning with A: What name means "Holy"?
+Ariana
+10
+
+Names: Beginning with A: What name means "Holy"?
+Ariane
+10
+
+Names: Beginning with A: What name means "Honest Woman"?
+Amena
+10
+
+Names: Beginning with A: What name means "Immortal"?
+Amaranth
+10
+
+Names: Beginning with A: What name means "Immortal"?
+Ambrose
+10
+
+Names: Beginning with A: What name means "Innocent"?
+Ayanna
+10
+
+Names: Beginning with A: What name means "Iris"?
+Ayame
+10
+
+Names: Beginning with A: What name means "Island"?
+Avalon
+10
+
+Names: Beginning with A: What name means "Joy, Ardent"?
+Aine
+10
+
+Names: Beginning with A: What name means "Joy, Pleasure"?
+Anisa
+10
+
+Names: Beginning with A: What name means "Joyful Spring"?
+Aviva
+10
+
+Names: Beginning with A: What name means "Joyful"?
+Aliza
+10
+
+Names: Beginning with A: What name means "Just, Fair"?
+Adila
+10
+
+Names: Beginning with A: What name means "Just, Wise"?
+Adli
+10
+
+Names: Beginning with A: What name means "Knowledgeable"?
+Arif
+10
+
+Names: Beginning with A: What name means "Last Daughter"?
+Audi
+10
+
+Names: Beginning with A: What name means "Life"?
+Aizza
+10
+
+Names: Beginning with A: What name means "Life"?
+Asha
+10
+
+Names: Beginning with A: What name means "Life"?
+Ashia
+10
+
+Names: Beginning with A: What name means "Life"?
+Aysha
+10
+
+Names: Beginning with A: What name means "Light"?
+Annot
+10
+
+Names: Beginning with A: What name means "Lightning"?
+Asnee
+10
+
+Names: Beginning with A: What name means "Like a Bird"?
+Ava
+10
+
+Names: Beginning with A: What name means "Lioness of God"?
+Ariel
+10
+
+Names: Beginning with A: What name means "Lioness of God"?
+Ariella
+10
+
+Names: Beginning with A: What name means "Lioness of God"?
+Arielle
+10
+
+Names: Beginning with A: What name means "Little Ann"?
+Anneke
+10
+
+Names: Beginning with A: What name means "Long Lived"?
+Alda
+10
+
+Names: Beginning with A: What name means "Lord of Mine"?
+Avi
+10
+
+Names: Beginning with A: What name means "Love of God"?
+Amadeus
+10
+
+Names: Beginning with A: What name means "Love"?
+Ai
+10
+
+Names: Beginning with A: What name means "Love"?
+Amorina
+10
+
+Names: Beginning with A: What name means "Loved One"?
+Asthore
+10
+
+Names: Beginning with A: What name means "Lovely"?
+Ah
+10
+
+Names: Beginning with A: What name means "Lover"?
+Amador
+10
+
+Names: Beginning with A: What name means "Loving, Kind-Hearted"?
+Aloha
+10
+
+Names: Beginning with A: What name means "Manly Beauty"?
+Appollo
+10
+
+Names: Beginning with A: What name means "Manly, Courageous"?
+Andre
+10
+
+Names: Beginning with A: What name means "Manly, Courageous"?
+Andrew
+10
+
+Names: Beginning with A: What name means "Manly"?
+Analu
+10
+
+Names: Beginning with A: What name means "Melody"?
+Aria
+10
+
+Names: Beginning with A: What name means "Mighty Huntress"?
+Atalanta
+10
+
+Names: Beginning with A: What name means "Mother of Many Nations"?
+Abrianna
+10
+
+Names: Beginning with A: What name means "My Father is Peace"?
+Absolom
+10
+
+Names: Beginning with A: What name means "My Lord"?
+Adonai
+10
+
+Names: Beginning with A: What name means "My Own Meadow"?
+Ainsley
+10
+
+Names: Beginning with A: What name means "My Witness"?
+Adlai
+10
+
+Names: Beginning with A: What name means "Native of Adria: Greek City"?
+Adriano
+10
+
+Names: Beginning with A: What name means "Night Rain"?
+Amaya
+10
+
+Names: Beginning with A: What name means "Noble and Serene"?
+Adela
+10
+
+Names: Beginning with A: What name means "Noble Friend"?
+Alvin
+10
+
+Names: Beginning with A: What name means "Noble Strength"?
+Audrey
+10
+
+Names: Beginning with A: What name means "Noble, Adorned"?
+Adina
+10
+
+Names: Beginning with A: What name means "Noble, Bright"?
+Albert
+10
+
+Names: Beginning with A: What name means "Noble, Bright"?
+Auberta
+10
+
+Names: Beginning with A: What name means "Noble, Bright"?
+Aubrey
+10
+
+Names: Beginning with A: What name means "Noble, Brilliant"?
+Alka
+10
+
+Names: Beginning with A: What name means "Noble, Descender"?
+Alia
+10
+
+Names: Beginning with A: What name means "Noble, Exalted"?
+Adair
+10
+
+Names: Beginning with A: What name means "Noble, Kind"?
+Ada
+10
+
+Names: Beginning with A: What name means "Noble, Kind"?
+Adelaide
+10
+
+Names: Beginning with A: What name means "Noble, Kind"?
+Adele
+10
+
+Names: Beginning with A: What name means "Noble, Kind"?
+Adeline
+10
+
+Names: Beginning with A: What name means "Noble, Kind"?
+Adelle
+10
+
+Names: Beginning with A: What name means "Noble, Kind"?
+Ady
+10
+
+Names: Beginning with A: What name means "Noble, Kind"?
+Ailis
+10
+
+Names: Beginning with A: What name means "Noble, Strong One"?
+Aubrianna
+10
+
+Names: Beginning with A: What name means "Noble, Sublime"?
+Ali
+10
+
+Names: Beginning with A: What name means "Noble"?
+Armina
+10
+
+Names: Beginning with A: What name means "Of Higher Birth Order"?
+Almira
+10
+
+Names: Beginning with A: What name means "Of Noble Birth"?
+Alison
+10
+
+Names: Beginning with A: What name means "Of Noble Birth"?
+Allie
+10
+
+Names: Beginning with A: What name means "Of Noble Birth"?
+Allison
+10
+
+Names: Beginning with A: What name means "Of Noble Birth"?
+Allyson
+10
+
+Names: Beginning with A: What name means "Of Noble Birth"?
+Alyson
+10
+
+Names: Beginning with A: What name means "Of Noble Birth"?
+Alyssa
+10
+
+Names: Beginning with A: What name means "Of Old Age"?
+Aldan
+10
+
+Names: Beginning with A: What name means "Of Old Age"?
+Alden
+10
+
+Names: Beginning with A: What name means "Of Old Age"?
+Aldon
+10
+
+Names: Beginning with A: What name means "Of the Army"?
+Armand
+10
+
+Names: Beginning with A: What name means "Of the Red Earth"?
+Akamu
+10
+
+Names: Beginning with A: What name means "Old"?
+Aldona
+10
+
+Names: Beginning with A: What name means "One of Select Birth"?
+Asabi
+10
+
+Names: Beginning with A: What name means "One to be Honored"?
+Alake
+10
+
+Names: Beginning with A: What name means "One who Causes Joy"?
+Ayoka
+10
+
+Names: Beginning with A: What name means "One who charms"?
+Alize
+10
+
+Names: Beginning with A: What name means "Opening"?
+Abrienda
+10
+
+Names: Beginning with A: What name means "Opening"?
+April
+10
+
+Names: Beginning with A: What name means "Original, Pure"?
+Asli
+10
+
+Names: Beginning with A: What name means "Outside"?
+Aoko
+10
+
+Names: Beginning with A: What name means "Past Glory"?
+Azuka
+10
+
+Names: Beginning with A: What name means "Peace"?
+An
+10
+
+Names: Beginning with A: What name means "Peace"?
+Anh
+10
+
+Names: Beginning with A: What name means "Pillar"?
+Ande
+10
+
+Names: Beginning with A: What name means "Pleasant"?
+Afric
+10
+
+Names: Beginning with A: What name means "Pleasant"?
+Africa
+10
+
+Names: Beginning with A: What name means "Pledge"?
+Arlen
+10
+
+Names: Beginning with A: What name means "Pledge"?
+Arlene
+10
+
+Names: Beginning with A: What name means "Pledge"?
+Arlynda
+10
+
+Names: Beginning with A: What name means "Power"?
+Amandla
+10
+
+Names: Beginning with A: What name means "Praiseworthy, Flourishing"?
+Antony
+10
+
+Names: Beginning with A: What name means "Prayer"?
+Atira
+10
+
+Names: Beginning with A: What name means "Prince"?
+Amiri
+10
+
+Names: Beginning with A: What name means "Princess"?
+Armelle
+10
+
+Names: Beginning with A: What name means "Promised by God"?
+Amaris
+10
+
+Names: Beginning with A: What name means "Protector of Mankind"?
+Alessa
+10
+
+Names: Beginning with A: What name means "Protector of Mankind"?
+Alex
+10
+
+Names: Beginning with A: What name means "Protector of Mankind"?
+Alexa
+10
+
+Names: Beginning with A: What name means "Protector of Mankind"?
+Alexander
+10
+
+Names: Beginning with A: What name means "Protector of Mankind"?
+Alexandra
+10
+
+Names: Beginning with A: What name means "Protector of Mankind"?
+Alexis
+10
+
+Names: Beginning with A: What name means "Protector of Men"?
+Alec
+10
+
+Names: Beginning with A: What name means "Protector of Men"?
+Alejandro
+10
+
+Names: Beginning with A: What name means "Pure"?
+Agnes
+10
+
+Names: Beginning with A: What name means "Pure"?
+Azra
+10
+
+Names: Beginning with A: What name means "Red Earth"?
+Adem
+10
+
+Names: Beginning with A: What name means "Resolute"?
+Agamemnon
+10
+
+Names: Beginning with A: What name means "Resurrection"?
+Anastasia
+10
+
+Names: Beginning with A: What name means "Resurrection"?
+Asia
+10
+
+Names: Beginning with A: What name means "Revered, Exalted"?
+Augustin
+10
+
+Names: Beginning with A: What name means "Revered, Exalted"?
+Augustus
+10
+
+Names: Beginning with A: What name means "ROOTS: ASHLEY&LYN"?
+Ashlyn
+10
+
+Names: Beginning with A: What name means "Ruler of Eagles"?
+Arnaud
+10
+
+Names: Beginning with A: What name means "Shining Star from Heaven"?
+Alohilani
+10
+
+Names: Beginning with A: What name means "Sky Blu"?
+Azura
+10
+
+Names: Beginning with A: What name means "Small and Winged"?
+Aleda
+10
+
+Names: Beginning with A: What name means "Small, winged"?
+Alida
+10
+
+Names: Beginning with A: What name means "Soft Air, Breeze"?
+Aure
+10
+
+Names: Beginning with A: What name means "Soft, Gentle"?
+Anana
+10
+
+Names: Beginning with A: What name means "Son of Adam"?
+Addison
+10
+
+Names: Beginning with A: What name means "Soul"?
+Alma
+10
+
+Names: Beginning with A: What name means "Source of all Life"?
+Axel
+10
+
+Names: Beginning with A: What name means "Sowing the Fields"?
+Arissa
+10
+
+Names: Beginning with A: What name means "Species of Flowers"?
+Amaryllis
+10
+
+Names: Beginning with A: What name means "Star"?
+Aster
+10
+
+Names: Beginning with A: What name means "Star"?
+Astra
+10
+
+Names: Beginning with A: What name means "Starlike"?
+Astin
+10
+
+Names: Beginning with A: What name means "Starting Life at Dawn"?
+Asalie
+10
+
+Names: Beginning with A: What name means "Strong & Courageous"?
+Andra
+10
+
+Names: Beginning with A: What name means "Strong as an Eagle"?
+Arnold
+10
+
+Names: Beginning with A: What name means "Sun"?
+Asis
+10
+
+Names: Beginning with A: What name means "Superior"?
+Anevay
+10
+
+Names: Beginning with A: What name means "Sweet Gum Tree"?
+Alaqua
+10
+
+Names: Beginning with A: What name means "The Brightest"?
+Anwar
+10
+
+Names: Beginning with A: What name means "The Earth"?
+Adam
+10
+
+Names: Beginning with A: What name means "The Earth"?
+Adamina
+10
+
+Names: Beginning with A: What name means "The First"?
+Avak
+10
+
+Names: Beginning with A: What name means "The Oak Tree"?
+Ayla
+10
+
+Names: Beginning with A: What name means "Thorny"?
+Acacia
+10
+
+Names: Beginning with A: What name means "To Be Troubled"?
+Amos
+10
+
+Names: Beginning with A: What name means "To Sing"?
+Aron
+10
+
+Names: Beginning with A: What name means "To Tie"?
+Avongara
+10
+
+Names: Beginning with A: What name means "Trustworthy"?
+Aman
+10
+
+Names: Beginning with A: What name means "Truth, Noble"?
+Alice
+10
+
+Names: Beginning with A: What name means "Truth, Noble"?
+Alisha
+10
+
+Names: Beginning with A: What name means "Truth, Noble"?
+Alissa
+10
+
+Names: Beginning with A: What name means "Truthful One"?
+Aleta
+10
+
+Names: Beginning with A: What name means "Truthful One"?
+Aletha
+10
+
+Names: Beginning with A: What name means "Truthful One"?
+Alethea
+10
+
+Names: Beginning with A: What name means "Truthful"?
+Alicia
+10
+
+Names: Beginning with A: What name means "Truthful"?
+Alika
+10
+
+Names: Beginning with A: What name means "Ultimate"?
+Azana
+10
+
+Names: Beginning with A: What name means "Unique Strength"?
+Angus
+10
+
+Names: Beginning with A: What name means "Unity, One"?
+Ace
+10
+
+Names: Beginning with A: What name means "Very Beautiful"?
+Anika
+10
+
+Names: Beginning with A: What name means "Very Bold"?
+Archibald
+10
+
+Names: Beginning with A: What name means "Vigilant, Watchful"?
+Argus
+10
+
+Names: Beginning with A: What name means "Virtuous"?
+Aretha
+10
+
+Names: Beginning with A: What name means "Vision, Dream"?
+Aisling
+10
+
+Names: Beginning with A: What name means "Warm"?
+Ardelle
+10
+
+Names: Beginning with A: What name means "White-Skinned"?
+Albina
+10
+
+Names: Beginning with A: What name means "White, Fair"?
+Albany
+10
+
+Names: Beginning with A: What name means "White"?
+Alban
+10
+
+Names: Beginning with A: What name means "White"?
+Albin
+10
+
+Names: Beginning with A: What name means "Winged One"?
+Aletta
+10
+
+Names: Beginning with A: What name means "Wisdom"?
+Akili
+10
+
+Names: Beginning with A: What name means "With Honor"?
+Annora
+10
+
+Names: Beginning with A: What name means "Wolf"?
+Adolfo
+10
+
+Names: Beginning with A: What name means "Wolf"?
+Adolph
+10
+
+Names: Beginning with A: What name means "Work of the Lord"?
+Amelia
+10
+
+Names: Beginning with A: What name means "Worl"?
+Alem
+10
+
+Names: Beginning with A: What name means "Worthy of Love"?
+Amanda
+10
+
+Names: Beginning with A: What name means "Worthy of Praise"?
+Anthony
+10
+
+Names: Beginning with A: What name means "Youth"?
+Aviv
+10
+
+Names: Beginning with A: What name means "Youthful"?
+Atalo
+10
+
+Names: Beginning with B: What name means "A Badger"?
+Brock
+10
+
+Names: Beginning with B: What name means "A Baker"?
+Baxter
+10
+
+Names: Beginning with B: What name means "A Bishop"?
+Bishop
+10
+
+Names: Beginning with B: What name means "A Blessing"?
+Bracha
+10
+
+Names: Beginning with B: What name means "A Brit"?
+Brighton
+10
+
+Names: Beginning with B: What name means "A Brit"?
+Bryton
+10
+
+Names: Beginning with B: What name means "A Broad Ford"?
+Bradford
+10
+
+Names: Beginning with B: What name means "A Broad Lea, Meadow"?
+Bradley
+10
+
+Names: Beginning with B: What name means "A Builder"?
+Bona
+10
+
+Names: Beginning with B: What name means "A Butterfly"?
+Butterfly
+10
+
+Names: Beginning with B: What name means "A Cap"?
+Barretta
+10
+
+Names: Beginning with B: What name means "A Dancing Song"?
+Ballard
+10
+
+Names: Beginning with B: What name means "A Flame"?
+Blaze
+10
+
+Names: Beginning with B: What name means "A Flower, Bloom"?
+Bluma
+10
+
+Names: Beginning with B: What name means "A Raven"?
+Brendan
+10
+
+Names: Beginning with B: What name means "A Steep Climb"?
+Brent
+10
+
+Names: Beginning with B: What name means "Above, Superior"?
+Belay
+10
+
+Names: Beginning with B: What name means "All Good"?
+Bono
+10
+
+Names: Beginning with B: What name means "Anteater"?
+Bikita
+10
+
+Names: Beginning with B: What name means "Baby"?
+Baby
+10
+
+Names: Beginning with B: What name means "Baby"?
+Bebe
+10
+
+Names: Beginning with B: What name means "Bailiff, Steward"?
+Bailey
+10
+
+Names: Beginning with B: What name means "Bailiff"?
+Baylee
+10
+
+Names: Beginning with B: What name means "Barley Farm"?
+Barton
+10
+
+Names: Beginning with B: What name means "Bear or Cottag"?
+Byron
+10
+
+Names: Beginning with B: What name means "Bear"?
+Bjorn
+10
+
+Names: Beginning with B: What name means "Beautiful Snake"?
+Belinda
+10
+
+Names: Beginning with B: What name means "Beautiful View"?
+Belva
+10
+
+Names: Beginning with B: What name means "Beautiful, Handsome"?
+Beau
+10
+
+Names: Beginning with B: What name means "Beautiful, Handsome"?
+Beauregard
+10
+
+Names: Beginning with B: What name means "Beautiful"?
+Belita
+10
+
+Names: Beginning with B: What name means "Beautiful"?
+Blinda
+10
+
+Names: Beginning with B: What name means "Beauty"?
+Belle
+10
+
+Names: Beginning with B: What name means "Birch Tree"?
+Birch
+10
+
+Names: Beginning with B: What name means "Blessed"?
+Baruch
+10
+
+Names: Beginning with B: What name means "Blessed"?
+Beatriz
+10
+
+Names: Beginning with B: What name means "Blessed"?
+Bendek
+10
+
+Names: Beginning with B: What name means "Blessed"?
+Benecia
+10
+
+Names: Beginning with B: What name means "Blessed"?
+Benedict
+10
+
+Names: Beginning with B: What name means "Blessings"?
+Barke
+10
+
+Names: Beginning with B: What name means "Blonde"?
+Blondelle
+10
+
+Names: Beginning with B: What name means "Bold As A Bear"?
+Bernard
+10
+
+Names: Beginning with B: What name means "Born after Long Wait"?
+Biton
+10
+
+Names: Beginning with B: What name means "Bowman"?
+Bevis
+10
+
+Names: Beginning with B: What name means "Brandy, After Dinner Drink"?
+Brandee
+10
+
+Names: Beginning with B: What name means "Brave as a Bear"?
+Bernadette
+10
+
+Names: Beginning with B: What name means "Brave"?
+Brayden
+10
+
+Names: Beginning with B: What name means "Bright Maiden"?
+Berdine
+10
+
+Names: Beginning with B: What name means "Bright, nobility"?
+Bert
+10
+
+Names: Beginning with B: What name means "Bringer of Joy"?
+Beatrice
+10
+
+Names: Beginning with B: What name means "Brings Victory"?
+Bernice
+10
+
+Names: Beginning with B: What name means "Briton, British"?
+Brett
+10
+
+Names: Beginning with B: What name means "Broad Meadow"?
+Brad
+10
+
+Names: Beginning with B: What name means "Broad"?
+Braden
+10
+
+Names: Beginning with B: What name means "Brook, Stream"?
+Brooke
+10
+
+Names: Beginning with B: What name means "Brook, Stream"?
+Brooklyn
+10
+
+Names: Beginning with B: What name means "Broth"?
+Bree
+10
+
+Names: Beginning with B: What name means "Brown Haired"?
+Bruno
+10
+
+Names: Beginning with B: What name means "Burnt Meadow"?
+Brinley
+10
+
+Names: Beginning with B: What name means "By God!"?
+Beyla
+10
+
+Names: Beginning with B: What name means "Child"?
+Bambi
+10
+
+Names: Beginning with B: What name means "Consecrated to God"?
+Bethan
+10
+
+Names: Beginning with B: What name means "Consecrated to God"?
+Betty
+10
+
+Names: Beginning with B: What name means "Courageous"?
+Burdette
+10
+
+Names: Beginning with B: What name means "Covered Bridge"?
+Brigham
+10
+
+Names: Beginning with B: What name means "Crane"?
+Baka
+10
+
+Names: Beginning with B: What name means "Crib"?
+Bingham
+10
+
+Names: Beginning with B: What name means "Crowned with Laurel"?
+Brencis
+10
+
+Names: Beginning with B: What name means "Dark and Pure"?
+Bronwen
+10
+
+Names: Beginning with B: What name means "Dedicated to God"?
+Belicia
+10
+
+Names: Beginning with B: What name means "Deer, Cowboy"?
+Buck
+10
+
+Names: Beginning with B: What name means "Doer of Good Deeds"?
+Bonifacy
+10
+
+Names: Beginning with B: What name means "Fairy Palace"?
+Brein
+10
+
+Names: Beginning with B: What name means "Father of Multitudes"?
+Braima
+10
+
+Names: Beginning with B: What name means "Fem. form of BENEDICT"?
+Benita
+10
+
+Names: Beginning with B: What name means "Feminine form of BRENDAN"?
+Brenda
+10
+
+Names: Beginning with B: What name means "Field or Plain"?
+Blair
+10
+
+Names: Beginning with B: What name means "Fighter"?
+Borka
+10
+
+Names: Beginning with B: What name means "Flower-like"?
+Blossom
+10
+
+Names: Beginning with B: What name means "Flower"?
+Bakula
+10
+
+Names: Beginning with B: What name means "Flower"?
+Blodwyn
+10
+
+Names: Beginning with B: What name means "Flower"?
+Blum
+10
+
+Names: Beginning with B: What name means "Forerunner"?
+Bash
+10
+
+Names: Beginning with B: What name means "Fortress"?
+Burton
+10
+
+Names: Beginning with B: What name means "Freckled"?
+Breckin
+10
+
+Names: Beginning with B: What name means "Freshness"?
+Bina
+10
+
+Names: Beginning with B: What name means "Friend"?
+Buddy
+10
+
+Names: Beginning with B: What name means "From a Nickname"?
+Buzz
+10
+
+Names: Beginning with B: What name means "From Ban"?
+Bayen
+10
+
+Names: Beginning with B: What name means "FROM BERNARD"?
+Benard
+10
+
+Names: Beginning with B: What name means "From BRANDY"?
+Brandie
+10
+
+Names: Beginning with B: What name means "From Brigham Lane"?
+Brilane
+10
+
+Names: Beginning with B: What name means "From Britain"?
+Brittnee
+10
+
+Names: Beginning with B: What name means "From Brittain, British"?
+Brittania
+10
+
+Names: Beginning with B: What name means "From SABRINA"?
+Brina
+10
+
+Names: Beginning with B: What name means "From the Dark Valley"?
+Braeden
+10
+
+Names: Beginning with B: What name means "From the Fair Valley"?
+Belden
+10
+
+Names: Beginning with B: What name means "From the fortress"?
+Burke
+10
+
+Names: Beginning with B: What name means "From the meadow of the Birch Tree"?
+Barclay
+10
+
+Names: Beginning with B: What name means "From the name BARBARA"?
+Barb
+10
+
+Names: Beginning with B: What name means "From the name BARBARA"?
+Barbie
+10
+
+Names: Beginning with B: What name means "From the name BARRETTA"?
+Barr
+10
+
+Names: Beginning with B: What name means "From the name BARRY"?
+Bary
+10
+
+Names: Beginning with B: What name means "From the name BARTHOLEMEW"?
+Bart
+10
+
+Names: Beginning with B: What name means "From the name BARTHOLEMEW"?
+Barth
+10
+
+Names: Beginning with B: What name means "From the name BEATRICE"?
+Bea
+10
+
+Names: Beginning with B: What name means "From the name BELINDA"?
+Blenda
+10
+
+Names: Beginning with B: What name means "From the name BELLE"?
+Bell
+10
+
+Names: Beginning with B: What name means "From the name BELLE"?
+Bella
+10
+
+Names: Beginning with B: What name means "From the name BELLE"?
+Bellini
+10
+
+Names: Beginning with B: What name means "From the name BENEDICT, BENJAMIN"?
+Ben
+10
+
+Names: Beginning with B: What name means "From the name BENJAMIN"?
+Benjy
+10
+
+Names: Beginning with B: What name means "From the name BENJAMIN"?
+Benny
+10
+
+Names: Beginning with B: What name means "From the name BERN"?
+Berne
+10
+
+Names: Beginning with B: What name means "From the name BERNARD"?
+Barnard
+10
+
+Names: Beginning with B: What name means "From the name BERNARD"?
+Barney
+10
+
+Names: Beginning with B: What name means "From the name BERNARD"?
+Barny
+10
+
+Names: Beginning with B: What name means "From the name BERNARD"?
+Bern
+10
+
+Names: Beginning with B: What name means "From the name BERNARD"?
+Bernadine
+10
+
+Names: Beginning with B: What name means "From the name BERNARD"?
+Bernie
+10
+
+Names: Beginning with B: What name means "From the name BERNARD"?
+Berny
+10
+
+Names: Beginning with B: What name means "From the name BINGHAM"?
+Bin
+10
+
+Names: Beginning with B: What name means "From the name BLANCHE"?
+Bianca
+10
+
+Names: Beginning with B: What name means "From the name BLYTHE"?
+Blithe
+10
+
+Names: Beginning with B: What name means "From the name BONITA"?
+Bonnie
+10
+
+Names: Beginning with B: What name means "From the name BOWEN"?
+Bowie
+10
+
+Names: Beginning with B: What name means "From the name BRAND"?
+Bran
+10
+
+Names: Beginning with B: What name means "From the name BRAND"?
+Brant
+10
+
+Names: Beginning with B: What name means "From the name BRENDAN"?
+Brandon
+10
+
+Names: Beginning with B: What name means "From the name BRENDAN"?
+Brend
+10
+
+Names: Beginning with B: What name means "From the name BRIAN"?
+Brand
+10
+
+Names: Beginning with B: What name means "From the name BRIAN"?
+Briar
+10
+
+Names: Beginning with B: What name means "From the name BRICE"?
+Brick
+10
+
+Names: Beginning with B: What name means "From the name BRICE"?
+Bryce
+10
+
+Names: Beginning with B: What name means "From the name BRIDGET"?
+Bridgit
+10
+
+Names: Beginning with B: What name means "From the name BRIDGET"?
+Brigitte
+10
+
+Names: Beginning with B: What name means "From the name BRITANNIA"?
+Brit
+10
+
+Names: Beginning with B: What name means "From the name BRITTANIA"?
+Brita
+10
+
+Names: Beginning with B: What name means "From the name BRITTANIA"?
+Britain
+10
+
+Names: Beginning with B: What name means "From the name BRITTANIA"?
+Britannia
+10
+
+Names: Beginning with B: What name means "From the name BRITTANIA"?
+Britany
+10
+
+Names: Beginning with B: What name means "From the name BRITTANIA"?
+Brittany
+10
+
+Names: Beginning with B: What name means "From the name BUNNY"?
+Buffy
+10
+
+Names: Beginning with B: What name means "From the name BURKE"?
+Berke
+10
+
+Names: Beginning with B: What name means "From the name BURTON"?
+Burt
+10
+
+Names: Beginning with B: What name means "From the name ELIZABETH"?
+Babette
+10
+
+Names: Beginning with B: What name means "From the name ELIZABETH"?
+Bess
+10
+
+Names: Beginning with B: What name means "From the name ELIZABETH"?
+Bessie
+10
+
+Names: Beginning with B: What name means "From the name ELIZABETH"?
+Beth
+10
+
+Names: Beginning with B: What name means "From the name ELIZABETH"?
+Betsy
+10
+
+Names: Beginning with B: What name means "From the name ELIZABETH"?
+Bette
+10
+
+Names: Beginning with B: What name means "From the name REBECCA"?
+Becca
+10
+
+Names: Beginning with B: What name means "From the name REBECCA"?
+Becka
+10
+
+Names: Beginning with B: What name means "From the name REBECCA"?
+Becky
+10
+
+Names: Beginning with B: What name means "From the name ROBERT"?
+Bob
+10
+
+Names: Beginning with B: What name means "From the name WILLIAM"?
+Bill
+10
+
+Names: Beginning with B: What name means "From the name WILLIAM"?
+Billy
+10
+
+Names: Beginning with B: What name means "Glorious"?
+Berit
+10
+
+Names: Beginning with B: What name means "Good Luck"?
+Bonaventure
+10
+
+Names: Beginning with B: What name means "Good"?
+Boone
+10
+
+Names: Beginning with B: What name means "Green Jewel"?
+Beryl
+10
+
+Names: Beginning with B: What name means "Happy"?
+Beata
+10
+
+Names: Beginning with B: What name means "Happy"?
+Blythe
+10
+
+Names: Beginning with B: What name means "Heather"?
+Brier
+10
+
+Names: Beginning with B: What name means "Hero"?
+Bijan
+10
+
+Names: Beginning with B: What name means "Heroine"?
+Bertille
+10
+
+Names: Beginning with B: What name means "High One"?
+Bidelia
+10
+
+Names: Beginning with B: What name means "Hill, Furrow"?
+Bartholemew
+10
+
+Names: Beginning with B: What name means "Hill, Furrow"?
+Barto
+10
+
+Names: Beginning with B: What name means "Hut"?
+Booth
+10
+
+Names: Beginning with B: What name means "Joy is Found"?
+Bayo
+10
+
+Names: Beginning with B: What name means "Kind"?
+Benen
+10
+
+Names: Beginning with B: What name means "Kingly"?
+Bazyli
+10
+
+Names: Beginning with B: What name means "Knife, Sword"?
+Blade
+10
+
+Names: Beginning with B: What name means "Life"?
+Bethany
+10
+
+Names: Beginning with B: What name means "Lightning"?
+Barak
+10
+
+Names: Beginning with B: What name means "Like a Bird"?
+Byrd
+10
+
+Names: Beginning with B: What name means "Like a King"?
+Basil
+10
+
+Names: Beginning with B: What name means "Little Blessed One"?
+Bennett
+10
+
+Names: Beginning with B: What name means "Little Rabbit"?
+Bunny
+10
+
+Names: Beginning with B: What name means "Little Raven"?
+Brenna
+10
+
+Names: Beginning with B: What name means "Little Top"?
+Barran
+10
+
+Names: Beginning with B: What name means "Lively"?
+Bibiana
+10
+
+Names: Beginning with B: What name means "Lively"?
+Bibiane
+10
+
+Names: Beginning with B: What name means "Location Name"?
+Bisbee
+10
+
+Names: Beginning with B: What name means "Married"?
+Beulah
+10
+
+Names: Beginning with B: What name means "Messenger, Friend"?
+Bud
+10
+
+Names: Beginning with B: What name means "Minstrel, Poet"?
+Baird
+10
+
+Names: Beginning with B: What name means "Most Treasured"?
+Bo
+10
+
+Names: Beginning with B: What name means "Mountain"?
+Berg
+10
+
+Names: Beginning with B: What name means "Near the Meadow of the Beavers"?
+Beverly
+10
+
+Names: Beginning with B: What name means "Near the Woods"?
+Burian
+10
+
+Names: Beginning with B: What name means "Noble Man"?
+Baron
+10
+
+Names: Beginning with B: What name means "Of the City of Bubastis"?
+Bast
+10
+
+Names: Beginning with B: What name means "One of the 3 Kings"?
+Balthasar
+10
+
+Names: Beginning with B: What name means "One Who Brews Beer"?
+Brewster
+10
+
+Names: Beginning with B: What name means "Perfect Joy"?
+Bliss
+10
+
+Names: Beginning with B: What name means "Pet form of BINGHAM"?
+Bing
+10
+
+Names: Beginning with B: What name means "Pheasant"?
+Bena
+10
+
+Names: Beginning with B: What name means "Pretty, Beautiful"?
+Bonita
+10
+
+Names: Beginning with B: What name means "Pupil of an Eye"?
+Bilen
+10
+
+Names: Beginning with B: What name means "Raven-like"?
+Brennan
+10
+
+Names: Beginning with B: What name means "Region in France"?
+Brielle
+10
+
+Names: Beginning with B: What name means "Root: BRODERICK"?
+Brody
+10
+
+Names: Beginning with B: What name means "Running Water"?
+Brooks
+10
+
+Names: Beginning with B: What name means "Sacred Wood"?
+Bel
+10
+
+Names: Beginning with B: What name means "Scottish name for a child"?
+Bairn
+10
+
+Names: Beginning with B: What name means "Sea Man"?
+Bahari
+10
+
+Names: Beginning with B: What name means "Second Born of Twins"?
+Banji
+10
+
+Names: Beginning with B: What name means "Secretive"?
+Bian
+10
+
+Names: Beginning with B: What name means "Secretive"?
+Biana
+10
+
+Names: Beginning with B: What name means "She of Fair Skin"?
+Bela
+10
+
+Names: Beginning with B: What name means "Shining"?
+Bertha
+10
+
+Names: Beginning with B: What name means "Small Hill"?
+Brynn
+10
+
+Names: Beginning with B: What name means "Son of a Prophecy"?
+Barnabas
+10
+
+Names: Beginning with B: What name means "Son of BENJAMIN"?
+Benson
+10
+
+Names: Beginning with B: What name means "Son of Evan"?
+Bevan
+10
+
+Names: Beginning with B: What name means "Son of HARRY"?
+Barry
+10
+
+Names: Beginning with B: What name means "Son of My Right Hand"?
+Benjamin
+10
+
+Names: Beginning with B: What name means "Son of OWEN"?
+Bowen
+10
+
+Names: Beginning with B: What name means "Sorrow"?
+Brone
+10
+
+Names: Beginning with B: What name means "Stone"?
+Bedros
+10
+
+Names: Beginning with B: What name means "Strange, Foreign"?
+Barbara
+10
+
+Names: Beginning with B: What name means "Strength"?
+Brygid
+10
+
+Names: Beginning with B: What name means "Strife"?
+Brazil
+10
+
+Names: Beginning with B: What name means "Strong One"?
+Brian
+10
+
+Names: Beginning with B: What name means "Strong One"?
+Brianna
+10
+
+Names: Beginning with B: What name means "Strong One"?
+Brianne
+10
+
+Names: Beginning with B: What name means "Strong One"?
+Bryan
+10
+
+Names: Beginning with B: What name means "Strong One"?
+Bryanne
+10
+
+Names: Beginning with B: What name means "Strong, Fierce One"?
+Bronson
+10
+
+Names: Beginning with B: What name means "Strong, Honorable"?
+Bryant
+10
+
+Names: Beginning with B: What name means "Strong, Virtuous, Honorable"?
+Breanna
+10
+
+Names: Beginning with B: What name means "Strong, Virtuous, Honorable"?
+Briana
+10
+
+Names: Beginning with B: What name means "Strong"?
+Bridget
+10
+
+Names: Beginning with B: What name means "Strong"?
+Brigit
+10
+
+Names: Beginning with B: What name means "Sweet, Melodious"?
+Bebhin
+10
+
+Names: Beginning with B: What name means "Swift, Strong"?
+Boaz
+10
+
+Names: Beginning with B: What name means "The Brook"?
+Beck
+10
+
+Names: Beginning with B: What name means "The Glaciar"?
+Brede
+10
+
+Names: Beginning with B: What name means "The One Who Brings Joy"?
+Beate
+10
+
+Names: Beginning with B: What name means "The Son of RICE"?
+Brice
+10
+
+Names: Beginning with B: What name means "The Source of a River"?
+Blaine
+10
+
+Names: Beginning with B: What name means "The Source"?
+Bron
+10
+
+Names: Beginning with B: What name means "To Bind"?
+Bond
+10
+
+Names: Beginning with B: What name means "To Sparkle"?
+Brilliant
+10
+
+Names: Beginning with B: What name means "Town of Barr"?
+Barrington
+10
+
+Names: Beginning with B: What name means "Venerable, Revered"?
+Bastien
+10
+
+Names: Beginning with B: What name means "Victorious"?
+Berenice
+10
+
+Names: Beginning with B: What name means "Vine with Small Blossoms"?
+Bryony
+10
+
+Names: Beginning with B: What name means "Virtuous, Princess"?
+Brinly
+10
+
+Names: Beginning with B: What name means "Warrior"?
+Boris
+10
+
+Names: Beginning with B: What name means "White"?
+Blake
+10
+
+Names: Beginning with B: What name means "White"?
+Blanche
+10
+
+Names: Beginning with B: What name means "With Red-Brown Hair"?
+Bayard
+10
+
+Names: Beginning with B: What name means "Woods"?
+Bruce
+10
+
+Names: Beginning with B: What name means "Yellow Haired"?
+Boyd
+10
+
+Names: Beginning with B: Meaning:Born on Thursday
+Baba
+10
+
+Names: Beginning with C: What name means "A Clear, Brilliant Glass"?
+Crystal
+10
+
+Names: Beginning with C: What name means "A Cushion"?
+Cody
+10
+
+Names: Beginning with C: What name means "A Dove"?
+Columbia
+10
+
+Names: Beginning with C: What name means "A Family is Born"?
+Caimile
+10
+
+Names: Beginning with C: What name means "A Fortress, Camp"?
+Chester
+10
+
+Names: Beginning with C: What name means "A Gift"?
+Chipo
+10
+
+Names: Beginning with C: What name means "A Maiden"?
+Corin
+10
+
+Names: Beginning with C: What name means "A Marsh or an herb"?
+Curry
+10
+
+Names: Beginning with C: What name means "A Nail"?
+Clove
+10
+
+Names: Beginning with C: What name means "A Pillar stone"?
+Carha
+10
+
+Names: Beginning with C: What name means "A Public Hill"?
+Cyd
+10
+
+Names: Beginning with C: What name means "A Raven"?
+Corbin
+10
+
+Names: Beginning with C: What name means "A Rock"?
+Carrick
+10
+
+Names: Beginning with C: What name means "A Steep Bank"?
+Cleavant
+10
+
+Names: Beginning with C: What name means "A Town By the River"?
+Chilton
+10
+
+Names: Beginning with C: What name means "A Vineyard"?
+Carmel
+10
+
+Names: Beginning with C: What name means "Ancient Egyptian Wind"?
+Cirocco
+10
+
+Names: Beginning with C: What name means "Ancient"?
+Cian
+10
+
+Names: Beginning with C: What name means "Artful One"?
+Carissa
+10
+
+Names: Beginning with C: What name means "Bald"?
+Calvin
+10
+
+Names: Beginning with C: What name means "Barrel Maker"?
+Cooper
+10
+
+Names: Beginning with C: What name means "Battle, Warrior"?
+Chad
+10
+
+Names: Beginning with C: What name means "Beautiful"?
+Callia
+10
+
+Names: Beginning with C: What name means "Beauty"?
+Calla
+10
+
+Names: Beginning with C: What name means "Beloved"?
+Cana
+10
+
+Names: Beginning with C: What name means "Beloved"?
+Caresse
+10
+
+Names: Beginning with C: What name means "Beloved"?
+Cherie
+10
+
+Names: Beginning with C: What name means "Beloved"?
+Cheryl
+10
+
+Names: Beginning with C: What name means "Bent Nose"?
+Cameron
+10
+
+Names: Beginning with C: What name means "Bent Nose"?
+Camryn
+10
+
+Names: Beginning with C: What name means "Bird of Peace"?
+Chenoa
+10
+
+Names: Beginning with C: What name means "Bird"?
+Cholena
+10
+
+Names: Beginning with C: What name means "Black"?
+Ciara
+10
+
+Names: Beginning with C: What name means "Blind"?
+Cecil
+10
+
+Names: Beginning with C: What name means "Blind"?
+Cecile
+10
+
+Names: Beginning with C: What name means "Blind"?
+Cecilia
+10
+
+Names: Beginning with C: What name means "Blind"?
+Celia
+10
+
+Names: Beginning with C: What name means "Blind"?
+Cili
+10
+
+Names: Beginning with C: What name means "Blooming"?
+Chloe
+10
+
+Names: Beginning with C: What name means "Bold or Short"?
+Cort
+10
+
+Names: Beginning with C: What name means "Bold, Wise Counselor"?
+Conrad
+10
+
+Names: Beginning with C: What name means "Bountiful Orchard"?
+Charmaine
+10
+
+Names: Beginning with C: What name means "Brave Warrior"?
+Caley
+10
+
+Names: Beginning with C: What name means "Brave"?
+Casey
+10
+
+Names: Beginning with C: What name means "Brilliant"?
+Clarissa
+10
+
+Names: Beginning with C: What name means "Brilliant"?
+Cuthbert
+10
+
+Names: Beginning with C: What name means "Bringing Peace, Calm"?
+Chesna
+10
+
+Names: Beginning with C: What name means "Candle Maker"?
+Chandler
+10
+
+Names: Beginning with C: What name means "Castle"?
+Cala
+10
+
+Names: Beginning with C: What name means "Champion"?
+Cassia
+10
+
+Names: Beginning with C: What name means "Chancellor"?
+Chance
+10
+
+Names: Beginning with C: What name means "Chancellor"?
+Chauncey
+10
+
+Names: Beginning with C: What name means "Charity, Kindness"?
+Charity
+10
+
+Names: Beginning with C: What name means "Cherry"?
+Cerise
+10
+
+Names: Beginning with C: What name means "Chief"?
+Cedric
+10
+
+Names: Beginning with C: What name means "Child, Also form of NICHOLAS"?
+Colin
+10
+
+Names: Beginning with C: What name means "Chipping Sparrow"?
+Chip
+10
+
+Names: Beginning with C: What name means "Christ-bearer"?
+Christopher
+10
+
+Names: Beginning with C: What name means "Christian, Annointed"?
+Christiana
+10
+
+Names: Beginning with C: What name means "Christian, Annointed"?
+Christina
+10
+
+Names: Beginning with C: What name means "City in France"?
+Calais
+10
+
+Names: Beginning with C: What name means "City in Georgia"?
+Conyers
+10
+
+Names: Beginning with C: What name means "City of Pharohs"?
+Cairo
+10
+
+Names: Beginning with C: What name means "Clear, Bright"?
+Clara
+10
+
+Names: Beginning with C: What name means "Clear, Bright"?
+Claral
+10
+
+Names: Beginning with C: What name means "Clear, Luminous"?
+Clarence
+10
+
+Names: Beginning with C: What name means "Clergyman"?
+Clark
+10
+
+Names: Beginning with C: What name means "Clever"?
+Cassidy
+10
+
+Names: Beginning with C: What name means "Cliff"?
+Clive
+10
+
+Names: Beginning with C: What name means "Coal Town"?
+Colton
+10
+
+Names: Beginning with C: What name means "Consolation"?
+Consuela
+10
+
+Names: Beginning with C: What name means "Consolation"?
+Consuelo
+10
+
+Names: Beginning with C: What name means "Constant"?
+Constance
+10
+
+Names: Beginning with C: What name means "Contraction of CHARLES"?
+Carl
+10
+
+Names: Beginning with C: What name means "Courteous"?
+Curtis
+10
+
+Names: Beginning with C: What name means "Crooked line"?
+Camlin
+10
+
+Names: Beginning with C: What name means "Curly Haired"?
+Crispin
+10
+
+Names: Beginning with C: What name means "Dark as a Raven"?
+Corby
+10
+
+Names: Beginning with C: What name means "Daughter of the Sea"?
+Cordelia
+10
+
+Names: Beginning with C: What name means "Dazzling White"?
+Candida
+10
+
+Names: Beginning with C: What name means "Dazzling White"?
+Candide
+10
+
+Names: Beginning with C: What name means "Dear Little One"?
+Carina
+10
+
+Names: Beginning with C: What name means "Dew Drop"?
+Chumani
+10
+
+Names: Beginning with C: What name means "Dim. of CLEOPATRA"?
+Cleta
+10
+
+Names: Beginning with C: What name means "Dim. of LUCRETIA"?
+Crete
+10
+
+Names: Beginning with C: What name means "Dove"?
+Callum
+10
+
+Names: Beginning with C: What name means "Dove"?
+Calum
+10
+
+Names: Beginning with C: What name means "Dove"?
+Colm
+10
+
+Names: Beginning with C: What name means "Driver of a Cart"?
+Carter
+10
+
+Names: Beginning with C: What name means "Enthroned"?
+Cyrah
+10
+
+Names: Beginning with C: What name means "Fair Sex"?
+Cai
+10
+
+Names: Beginning with C: What name means "Faith"?
+Creda
+10
+
+Names: Beginning with C: What name means "Faithful, Bold"?
+Caleb
+10
+
+Names: Beginning with C: What name means "Falcon"?
+Chayton
+10
+
+Names: Beginning with C: What name means "Fanciful"?
+Caprice
+10
+
+Names: Beginning with C: What name means "Fem. form of CARL"?
+Carla
+10
+
+Names: Beginning with C: What name means "Female Child"?
+Chavi
+10
+
+Names: Beginning with C: What name means "Feminine form of CHARLES"?
+Carlotta
+10
+
+Names: Beginning with C: What name means "Feminine form of CLAUDE"?
+Claudia
+10
+
+Names: Beginning with C: What name means "Fire White, Pure"?
+Candace
+10
+
+Names: Beginning with C: What name means "Firm, constant"?
+Constantine
+10
+
+Names: Beginning with C: What name means "Flourish"?
+Cyma
+10
+
+Names: Beginning with C: What name means "Flower Goddess"?
+Cloris
+10
+
+Names: Beginning with C: What name means "Form of Caleb"?
+Cale
+10
+
+Names: Beginning with C: What name means "Form of CLAUDIA"?
+Clodia
+10
+
+Names: Beginning with C: What name means "Form of COLLEEN"?
+Collice
+10
+
+Names: Beginning with C: What name means "Form of SHANE"?
+Cheyne
+10
+
+Names: Beginning with C: What name means "Fox"?
+Crevan
+10
+
+Names: Beginning with C: What name means "From a Steep Cliff"?
+Clifford
+10
+
+Names: Beginning with C: What name means "From a Town near a Cliff"?
+Clifton
+10
+
+Names: Beginning with C: What name means "From CARA and LEE"?
+Caralee
+10
+
+Names: Beginning with C: What name means "FROM CHARLES"?
+Charlee
+10
+
+Names: Beginning with C: What name means "From CHARLOTTE"?
+Charla
+10
+
+Names: Beginning with C: What name means "From CHELSEA"?
+Chelsia
+10
+
+Names: Beginning with C: What name means "From CHER and LIN"?
+Cherlin
+10
+
+Names: Beginning with C: What name means "From China"?
+China
+10
+
+Names: Beginning with C: What name means "From COLOGNE"?
+Coligny
+10
+
+Names: Beginning with C: What name means "From Heaven, Heavenly"?
+Ciel
+10
+
+Names: Beginning with C: What name means "From the Court"?
+Courtney
+10
+
+Names: Beginning with C: What name means "From the Crag"?
+Craig
+10
+
+Names: Beginning with C: What name means "From the name CAIN"?
+Caine
+10
+
+Names: Beginning with C: What name means "From the name CAITLYN"?
+Caitlin
+10
+
+Names: Beginning with C: What name means "From the name Calvin"?
+Calvine
+10
+
+Names: Beginning with C: What name means "From the name CAMERON"?
+Cam
+10
+
+Names: Beginning with C: What name means "From the name CANDACE"?
+Candice
+10
+
+Names: Beginning with C: What name means "From the name CANDACE"?
+Candie
+10
+
+Names: Beginning with C: What name means "From the name CANDACE"?
+Candy
+10
+
+Names: Beginning with C: What name means "From the name CARL or CARLISLE"?
+Corliss
+10
+
+Names: Beginning with C: What name means "From the name CARL"?
+Carlos
+10
+
+Names: Beginning with C: What name means "From the name CARLETON"?
+Carlton
+10
+
+Names: Beginning with C: What name means "From the name CARLOTTA"?
+Carly
+10
+
+Names: Beginning with C: What name means "From the name CARMEL"?
+Carmelita
+10
+
+Names: Beginning with C: What name means "From the name CAROL AND LINDA"?
+Caroline
+10
+
+Names: Beginning with C: What name means "From the name CAROL AND LINDA"?
+Carolyn
+10
+
+Names: Beginning with C: What name means "From the name CAROL"?
+Carrie
+10
+
+Names: Beginning with C: What name means "From the name CAROL"?
+Charo
+10
+
+Names: Beginning with C: What name means "From the name CARR"?
+Cary
+10
+
+Names: Beginning with C: What name means "From the name CASPER"?
+Caspar
+10
+
+Names: Beginning with C: What name means "From the name CATHERINE"?
+Caitlyn
+10
+
+Names: Beginning with C: What name means "From the name CATHERINE"?
+Cathy
+10
+
+Names: Beginning with C: What name means "From the name CATHERINE"?
+Cayla
+10
+
+Names: Beginning with C: What name means "From the name CECERO"?
+Ciro
+10
+
+Names: Beginning with C: What name means "From the name CECILIA"?
+Cece
+10
+
+Names: Beginning with C: What name means "From the name CECILIA"?
+Cecily
+10
+
+Names: Beginning with C: What name means "From the name CECILIA"?
+Cicely
+10
+
+Names: Beginning with C: What name means "From the name CECILIA"?
+Cicily
+10
+
+Names: Beginning with C: What name means "From the name CECILIA"?
+Cissy
+10
+
+Names: Beginning with C: What name means "From the name CESAR"?
+Caesar
+10
+
+Names: Beginning with C: What name means "From the name Cesar"?
+Chezarina
+10
+
+Names: Beginning with C: What name means "From the name CHARISSE"?
+Charis
+10
+
+Names: Beginning with C: What name means "From the name CHARLES"?
+Charlene
+10
+
+Names: Beginning with C: What name means "From the name CHARLES"?
+Chars
+10
+
+Names: Beginning with C: What name means "From the name CHARLES"?
+Chas
+10
+
+Names: Beginning with C: What name means "From the name CHARLES"?
+Chick
+10
+
+Names: Beginning with C: What name means "From the name CHARLES"?
+Chuck
+10
+
+Names: Beginning with C: What name means "From the name CHARLOTTE or CAROLINE"?
+Carlota
+10
+
+Names: Beginning with C: What name means "From the name CHARLOTTE"?
+Charlot
+10
+
+Names: Beginning with C: What name means "From the name CHERYL"?
+Cher
+10
+
+Names: Beginning with C: What name means "From the name CHERYL"?
+Cheri
+10
+
+Names: Beginning with C: What name means "From the name CHERYL"?
+Cherry
+10
+
+Names: Beginning with C: What name means "From the name CHESTER"?
+Chet
+10
+
+Names: Beginning with C: What name means "From the name CHILTON"?
+Chill
+10
+
+Names: Beginning with C: What name means "From the name CHINA"?
+Chyna
+10
+
+Names: Beginning with C: What name means "From the name CHINA"?
+Chynna
+10
+
+Names: Beginning with C: What name means "From the name CHRISTOPHER"?
+Chris
+10
+
+Names: Beginning with C: What name means "From the name CHRISTOPHER"?
+Chrissy
+10
+
+Names: Beginning with C: What name means "From the name CHRISTOPHER"?
+Christa
+10
+
+Names: Beginning with C: What name means "From the name CHRISTOPHER"?
+Christian
+10
+
+Names: Beginning with C: What name means "From the name CHRISTOPHER"?
+Christine
+10
+
+Names: Beginning with C: What name means "From the name CHRISTOPHER"?
+Christy
+10
+
+Names: Beginning with C: What name means "From the name CHRISTOPHER"?
+Cristy
+10
+
+Names: Beginning with C: What name means "From the name CLARA"?
+Claire
+10
+
+Names: Beginning with C: What name means "From the name CLARA"?
+Clare
+10
+
+Names: Beginning with C: What name means "From the name CLARK"?
+Clarke
+10
+
+Names: Beginning with C: What name means "From the name CLAYTON"?
+Clay
+10
+
+Names: Beginning with C: What name means "From the name CLAYTON"?
+Clayland
+10
+
+Names: Beginning with C: What name means "From the name CLEAVANT"?
+Cleavon
+10
+
+Names: Beginning with C: What name means "From the name CLEAVON"?
+Cleave
+10
+
+Names: Beginning with C: What name means "From the name CLEMENT"?
+Clem
+10
+
+Names: Beginning with C: What name means "From the name CLEMENT"?
+Clemens
+10
+
+Names: Beginning with C: What name means "From the name CLEO"?
+Clea
+10
+
+Names: Beginning with C: What name means "From the name CLEO"?
+Clio
+10
+
+Names: Beginning with C: What name means "From the name CLIFFORD"?
+Cliff
+10
+
+Names: Beginning with C: What name means "From the name CLINTON"?
+Clint
+10
+
+Names: Beginning with C: What name means "From the name COLIN"?
+Collin
+10
+
+Names: Beginning with C: What name means "From the name CONNOR"?
+Conan
+10
+
+Names: Beginning with C: What name means "From the name CONNOR"?
+Conor
+10
+
+Names: Beginning with C: What name means "From the name CONSTANCE"?
+Connie
+10
+
+Names: Beginning with C: What name means "From the name CORINNE"?
+Corine
+10
+
+Names: Beginning with C: What name means "From the name CORNELIUS"?
+Cornelia
+10
+
+Names: Beginning with C: What name means "From the name CORNELIUS"?
+Cornell
+10
+
+Names: Beginning with C: What name means "From the name COY"?
+Coye
+10
+
+Names: Beginning with C: What name means "From the name CURTIS"?
+Curt
+10
+
+Names: Beginning with C: What name means "From the name CYNTHIA"?
+Cindy
+10
+
+Names: Beginning with C: What name means "From the name CYNTHIA"?
+Cyndi
+10
+
+Names: Beginning with C: What name means "From the name CYRIL"?
+Cy
+10
+
+Names: Beginning with C: What name means "From the name FRANCIS"?
+Chico
+10
+
+Names: Beginning with C: What name means "From the name KERR"?
+Carr
+10
+
+Names: Beginning with C: What name means "From the name NICHOLAS"?
+Cole
+10
+
+Names: Beginning with C: What name means "From the name NICOLE"?
+Colette
+10
+
+Names: Beginning with C: What name means "From the name SHANNON"?
+Channon
+10
+
+Names: Beginning with C: What name means "From the Sky"?
+Celeste
+10
+
+Names: Beginning with C: What name means "From Wales"?
+Cambria
+10
+
+Names: Beginning with C: What name means "Garden"?
+Carmela
+10
+
+Names: Beginning with C: What name means "Gem Cutter"?
+Cutter
+10
+
+Names: Beginning with C: What name means "General"?
+Clitus
+10
+
+Names: Beginning with C: What name means "Gentle, Merciful"?
+Clement
+10
+
+Names: Beginning with C: What name means "Girl"?
+Colleen
+10
+
+Names: Beginning with C: What name means "God is Gracious"?
+Ceana
+10
+
+Names: Beginning with C: What name means "God is Gracious"?
+Cianna
+10
+
+Names: Beginning with C: What name means "Grace, Beauty, Kindness"?
+Charisse
+10
+
+Names: Beginning with C: What name means "Gracious and Womanly"?
+Carrieann
+10
+
+Names: Beginning with C: What name means "Gracious"?
+Chana
+10
+
+Names: Beginning with C: What name means "Great"?
+Chen
+10
+
+Names: Beginning with C: What name means "Gritty"?
+Chesmu
+10
+
+Names: Beginning with C: What name means "Handsome"?
+Cullen
+10
+
+Names: Beginning with C: What name means "Harbor"?
+Chelsa
+10
+
+Names: Beginning with C: What name means "Heart, Maiden"?
+Cora
+10
+
+Names: Beginning with C: What name means "Heaven"?
+Celestyn
+10
+
+Names: Beginning with C: What name means "Helmet"?
+Corey
+10
+
+Names: Beginning with C: What name means "Helmet"?
+Cory
+10
+
+Names: Beginning with C: What name means "Hero"?
+Conlan
+10
+
+Names: Beginning with C: What name means "Hero"?
+Conley
+10
+
+Names: Beginning with C: What name means "Hero"?
+Connley
+10
+
+Names: Beginning with C: What name means "Horn-Colored"?
+Cornelius
+10
+
+Names: Beginning with C: What name means "Hound of the plain"?
+Conway
+10
+
+Names: Beginning with C: What name means "Hunter"?
+Chase
+10
+
+Names: Beginning with C: What name means "Illustrious"?
+Cleatus
+10
+
+Names: Beginning with C: What name means "In Praise of Flowers"?
+Cleantha
+10
+
+Names: Beginning with C: What name means "Keeper of Records, Secretary"?
+Chancellor
+10
+
+Names: Beginning with C: What name means "Knife Maker"?
+Cutler
+10
+
+Names: Beginning with C: What name means "Knowledgeable"?
+Connor
+10
+
+Names: Beginning with C: What name means "Ladylike"?
+Cirila
+10
+
+Names: Beginning with C: What name means "Lame"?
+Claude
+10
+
+Names: Beginning with C: What name means "Land of High Cliffs"?
+Cleveland
+10
+
+Names: Beginning with C: What name means "Life, Waterfall"?
+Chailyn
+10
+
+Names: Beginning with C: What name means "Life"?
+Chava
+10
+
+Names: Beginning with C: What name means "Like a Lovely Blossom"?
+Calantha
+10
+
+Names: Beginning with C: What name means "Like Coral"?
+Coralia
+10
+
+Names: Beginning with C: What name means "Little and Womanly"?
+Carolena
+10
+
+Names: Beginning with C: What name means "Little and Womanly"?
+Charlotte
+10
+
+Names: Beginning with C: What name means "Little Castle"?
+Cashlin
+10
+
+Names: Beginning with C: What name means "Little Cora"?
+Corentine
+10
+
+Names: Beginning with C: What name means "Little Dove"?
+Colman
+10
+
+Names: Beginning with C: What name means "Little Great One"?
+Cheney
+10
+
+Names: Beginning with C: What name means "Little Maiden"?
+Coralie
+10
+
+Names: Beginning with C: What name means "Long Haired"?
+Cesar
+10
+
+Names: Beginning with C: What name means "Lord"?
+Cid
+10
+
+Names: Beginning with C: What name means "Lordly"?
+Cyril
+10
+
+Names: Beginning with C: What name means "Loving, Kind"?
+Caron
+10
+
+Names: Beginning with C: What name means "Made of God"?
+Chimelu
+10
+
+Names: Beginning with C: What name means "Maiden"?
+Corina
+10
+
+Names: Beginning with C: What name means "Maiden"?
+Corinna
+10
+
+Names: Beginning with C: What name means "Maiden"?
+Corinne
+10
+
+Names: Beginning with C: What name means "Man"?
+Charleigh
+10
+
+Names: Beginning with C: What name means "Manly, Full Grown"?
+Charles
+10
+
+Names: Beginning with C: What name means "Meadow Flower"?
+Clover
+10
+
+Names: Beginning with C: What name means "Melody, Song"?
+Carol
+10
+
+Names: Beginning with C: What name means "Merciful"?
+Clementine
+10
+
+Names: Beginning with C: What name means "Moon-Like, Great Goddess"?
+Chandra
+10
+
+Names: Beginning with C: What name means "Moon"?
+Celina
+10
+
+Names: Beginning with C: What name means "Moon"?
+Celine
+10
+
+Names: Beginning with C: What name means "Most Beautiful"?
+Callista
+10
+
+Names: Beginning with C: What name means "Most Beautiful"?
+Colista
+10
+
+Names: Beginning with C: What name means "Mother"?
+Cybele
+10
+
+Names: Beginning with C: What name means "Mysterious or Hidden"?
+Ceilt
+10
+
+Names: Beginning with C: What name means "Native to the Land, Creole"?
+Creola
+10
+
+Names: Beginning with C: What name means "Near the creek"?
+Creighton
+10
+
+Names: Beginning with C: What name means "Near"?
+Chika
+10
+
+Names: Beginning with C: What name means "Not to be believed"?
+Casondra
+10
+
+Names: Beginning with C: What name means "One With Beautiful Voice"?
+Calliope
+10
+
+Names: Beginning with C: What name means "Pale"?
+Chloris
+10
+
+Names: Beginning with C: What name means "Peacemaker"?
+Casimir
+10
+
+Names: Beginning with C: What name means "People of Alien Speech"?
+Cheyenne
+10
+
+Names: Beginning with C: What name means "Port of Ships"?
+Chelsea
+10
+
+Names: Beginning with C: What name means "Prophet"?
+Cassandra
+10
+
+Names: Beginning with C: What name means "Pure, Virginal"?
+Catherine
+10
+
+Names: Beginning with C: What name means "Pure"?
+Cade
+10
+
+Names: Beginning with C: What name means "Pure"?
+Cadee
+10
+
+Names: Beginning with C: What name means "Pure"?
+Catrin
+10
+
+Names: Beginning with C: What name means "Purity"?
+Chastity
+10
+
+Names: Beginning with C: What name means "Quiet, Still"?
+Coy
+10
+
+Names: Beginning with C: What name means "Rejoicer"?
+Cais
+10
+
+Names: Beginning with C: What name means "Rhythm"?
+Cadence
+10
+
+Names: Beginning with C: What name means "Rocky Land or Singer"?
+Chantal
+10
+
+Names: Beginning with C: What name means "Rocky Land or Singer"?
+Chantel
+10
+
+Names: Beginning with C: What name means "Satisfied"?
+Content
+10
+
+Names: Beginning with C: What name means "Seaport"?
+Chalsie
+10
+
+Names: Beginning with C: What name means "Seaport"?
+Chaylse
+10
+
+Names: Beginning with C: What name means "Seaport"?
+Chelsi
+10
+
+Names: Beginning with C: What name means "Shadow Portrait"?
+Cameo
+10
+
+Names: Beginning with C: What name means "She Who Is Ignored"?
+Cassie
+10
+
+Names: Beginning with C: What name means "Short for names beginning with CAL"?
+Cal
+10
+
+Names: Beginning with C: What name means "Simple Happiness"?
+Cady
+10
+
+Names: Beginning with C: What name means "Singing Bird"?
+Calandra
+10
+
+Names: Beginning with C: What name means "Small Lamb"?
+Carnig
+10
+
+Names: Beginning with C: What name means "Small Slope"?
+Coty
+10
+
+Names: Beginning with C: What name means "Small Stone"?
+Coral
+10
+
+Names: Beginning with C: What name means "Small Thing"?
+Cheche
+10
+
+Names: Beginning with C: What name means "Son of Carr"?
+Carson
+10
+
+Names: Beginning with C: What name means "Son of Carr"?
+Carsyn
+10
+
+Names: Beginning with C: What name means "Song"?
+Carmen
+10
+
+Names: Beginning with C: What name means "Song"?
+Carmine
+10
+
+Names: Beginning with C: What name means "Soothsayer"?
+Cybil
+10
+
+Names: Beginning with C: What name means "Soothsayer"?
+Cybill
+10
+
+Names: Beginning with C: What name means "Sorrow"?
+Cearo
+10
+
+Names: Beginning with C: What name means "Spear"?
+Cain
+10
+
+Names: Beginning with C: What name means "Spring"?
+Caroun
+10
+
+Names: Beginning with C: What name means "Stream"?
+Calder
+10
+
+Names: Beginning with C: What name means "Strong Man"?
+Cairbre
+10
+
+Names: Beginning with C: What name means "Strong, Manly"?
+Carolos
+10
+
+Names: Beginning with C: What name means "Su"?
+Cyrus
+10
+
+Names: Beginning with C: What name means "Sun"?
+Cira
+10
+
+Names: Beginning with C: What name means "Sweet Melody"?
+Cara
+10
+
+Names: Beginning with C: What name means "That You Cannot Imagine"?
+Cocheta
+10
+
+Names: Beginning with C: What name means "The Child"?
+Cailean
+10
+
+Names: Beginning with C: What name means "The Historian"?
+Cicero
+10
+
+Names: Beginning with C: What name means "The Moon Personified"?
+Cynthia
+10
+
+Names: Beginning with C: What name means "The Spice"?
+Cinnamon
+10
+
+Names: Beginning with C: What name means "The Universe"?
+Cosmo
+10
+
+Names: Beginning with C: What name means "To Grow"?
+Crescent
+10
+
+Names: Beginning with C: What name means "To Life"?
+Chaim
+10
+
+Names: Beginning with C: What name means "To Praise, Acclaim"?
+Cleo
+10
+
+Names: Beginning with C: What name means "To Strengthen Greatly"?
+Comfort
+10
+
+Names: Beginning with C: What name means "To the Castle"?
+Castel
+10
+
+Names: Beginning with C: What name means "Town on a Hill"?
+Clinton
+10
+
+Names: Beginning with C: What name means "Town on Clay Land"?
+Clayton
+10
+
+Names: Beginning with C: What name means "Treasurer"?
+Casper
+10
+
+Names: Beginning with C: What name means "Universe, Harmony"?
+Cosima
+10
+
+Names: Beginning with C: What name means "Vain"?
+Cassius
+10
+
+Names: Beginning with C: What name means "Very Beautiful"?
+Calixte
+10
+
+Names: Beginning with C: What name means "Very Handsome"?
+Calix
+10
+
+Names: Beginning with C: What name means "Victorious People"?
+Cael
+10
+
+Names: Beginning with C: What name means "Victorious People"?
+Caelan
+10
+
+Names: Beginning with C: What name means "Victorious People"?
+Cosette
+10
+
+Names: Beginning with C: What name means "Virginal, Unblemished Character"?
+Camille
+10
+
+Names: Beginning with C: What name means "War"?
+Cillian
+10
+
+Names: Beginning with C: What name means "Warm"?
+Calida
+10
+
+Names: Beginning with C: What name means "Warrior"?
+Calhoun
+10
+
+Names: Beginning with C: What name means "Waterfall"?
+Cascata
+10
+
+Names: Beginning with C: What name means "Who is Like God?"?
+Chaela
+10
+
+Names: Beginning with C: What name means "Who is Like God?"?
+Chaeli
+10
+
+Names: Beginning with C: What name means "Winding Valley"?
+Camdyn
+10
+
+Names: Beginning with C: What name means "Wise Man"?
+Conary
+10
+
+Names: Beginning with C: What name means "Wise Man"?
+Conroy
+10
+
+Names: Beginning with C: What name means "Wise"?
+Conner
+10
+
+Names: Beginning with C: What name means "Wizard"?
+Catalin
+10
+
+Names: Beginning with C: What name means "Wood Carver"?
+Carver
+10
+
+Names: Beginning with C: What name means "Young, Virginal"?
+Camilla
+10
+
+Names: Beginning with D: What name means "A Branch, bough"?
+Dalia
+10
+
+Names: Beginning with D: What name means "A Gazelle"?
+Dorcas
+10
+
+Names: Beginning with D: What name means "A Gift"?
+Donato
+10
+
+Names: Beginning with D: What name means "A Gift"?
+Dore
+10
+
+Names: Beginning with D: What name means "A God"?
+Devaki
+10
+
+Names: Beginning with D: What name means "A Hill"?
+Donnel
+10
+
+Names: Beginning with D: What name means "A Hindu God"?
+Darshan
+10
+
+Names: Beginning with D: What name means "A Shiny Knife"?
+Doris
+10
+
+Names: Beginning with D: What name means "A Tribe"?
+Dorset
+10
+
+Names: Beginning with D: What name means "Affluent"?
+Dario
+10
+
+Names: Beginning with D: What name means "All"?
+Duka
+10
+
+Names: Beginning with D: What name means "An Idol"?
+Dillian
+10
+
+Names: Beginning with D: What name means "Army of the People"?
+Deiter
+10
+
+Names: Beginning with D: What name means "Aunt"?
+Doda
+10
+
+Names: Beginning with D: What name means "Baby Princess"?
+Damita
+10
+
+Names: Beginning with D: What name means "Baker"?
+Duff
+10
+
+Names: Beginning with D: What name means "Before"?
+Dejah
+10
+
+Names: Beginning with D: What name means "Belonging to God"?
+Dominick
+10
+
+Names: Beginning with D: What name means "Belonging to the Lord"?
+Domani
+10
+
+Names: Beginning with D: What name means "Belongs to God"?
+Deron
+10
+
+Names: Beginning with D: What name means "Beloved Leader"?
+Derica
+10
+
+Names: Beginning with D: What name means "Beloved"?
+Dafydd
+10
+
+Names: Beginning with D: What name means "Beloved"?
+David
+10
+
+Names: Beginning with D: What name means "Beloved"?
+Davina
+10
+
+Names: Beginning with D: What name means "Big Soul"?
+Donahi
+10
+
+Names: Beginning with D: What name means "Black Hill"?
+Douglas
+10
+
+Names: Beginning with D: What name means "Blond"?
+Dewitt
+10
+
+Names: Beginning with D: What name means "Bold"?
+Diallo
+10
+
+Names: Beginning with D: What name means "Bright and Sunny Town"?
+Dayton
+10
+
+Names: Beginning with D: What name means "Bright Day"?
+Dagobert
+10
+
+Names: Beginning with D: What name means "Bright Like Daytime"?
+Delbert
+10
+
+Names: Beginning with D: What name means "Brilliant Gem"?
+Diamond
+10
+
+Names: Beginning with D: What name means "Brown Hero"?
+Dooley
+10
+
+Names: Beginning with D: What name means "Brown Stranger"?
+Donald
+10
+
+Names: Beginning with D: What name means "Brown Warrior"?
+Donagh
+10
+
+Names: Beginning with D: What name means "Brown"?
+Dunn
+10
+
+Names: Beginning with D: What name means "Celestial Spirit"?
+Deva
+10
+
+Names: Beginning with D: What name means "Compassion"?
+Dara
+10
+
+Names: Beginning with D: What name means "Constant,Loyal"?
+Damon
+10
+
+Names: Beginning with D: What name means "Daisy Flower"?
+Daisy
+10
+
+Names: Beginning with D: What name means "Dark Foreigner"?
+Doyle
+10
+
+Names: Beginning with D: What name means "Dark Haired"?
+Dolan
+10
+
+Names: Beginning with D: What name means "Dark Man"?
+Dorjan
+10
+
+Names: Beginning with D: What name means "Dark One"?
+Darcy
+10
+
+Names: Beginning with D: What name means "Dark Skinned Warrior"?
+Duncan
+10
+
+Names: Beginning with D: What name means "Dark Warrior"?
+Donovan
+10
+
+Names: Beginning with D: What name means "Dark-Colored"?
+Dugan
+10
+
+Names: Beginning with D: What name means "Dark"?
+Daray
+10
+
+Names: Beginning with D: What name means "Dawn"?
+Dawn
+10
+
+Names: Beginning with D: What name means "Dear Friend"?
+Darwin
+10
+
+Names: Beginning with D: What name means "Dear Heart"?
+Dyre
+10
+
+Names: Beginning with D: What name means "Dear, Beloved"?
+Daryl
+10
+
+Names: Beginning with D: What name means "Dear, Loved One"?
+Darla
+10
+
+Names: Beginning with D: What name means "Deer"?
+Dyani
+10
+
+Names: Beginning with D: What name means "Descendant of the Challenger"?
+Delaney
+10
+
+Names: Beginning with D: What name means "Descendent of the Challenger"?
+Delaine
+10
+
+Names: Beginning with D: What name means "Desire"?
+Desiderio
+10
+
+Names: Beginning with D: What name means "Desire"?
+Didier
+10
+
+Names: Beginning with D: What name means "Desired"?
+Desiree
+10
+
+Names: Beginning with D: What name means "Desired"?
+Dezso
+10
+
+Names: Beginning with D: What name means "Dexterous"?
+Dexter
+10
+
+Names: Beginning with D: What name means "Dim. of Constantine"?
+Dinos
+10
+
+Names: Beginning with D: What name means "Divine Display"?
+Dasha
+10
+
+Names: Beginning with D: What name means "Divine Flower"?
+Diantha
+10
+
+Names: Beginning with D: What name means "Divine Quieen"?
+Deon
+10
+
+Names: Beginning with D: What name means "Divine Spirit"?
+Duscha
+10
+
+Names: Beginning with D: What name means "Divine, Valley"?
+Deanna
+10
+
+Names: Beginning with D: What name means "Divine"?
+Deanne
+10
+
+Names: Beginning with D: What name means "Divine"?
+Diana
+10
+
+Names: Beginning with D: What name means "Dolphin"?
+Delfina
+10
+
+Names: Beginning with D: What name means "Down Below"?
+Dacey
+10
+
+Names: Beginning with D: What name means "Dragon"?
+Drake
+10
+
+Names: Beginning with D: What name means "Draw Water"?
+Dalit
+10
+
+Names: Beginning with D: What name means "Dune Dweller"?
+Doane
+10
+
+Names: Beginning with D: What name means "Envy Free"?
+Dermot
+10
+
+Names: Beginning with D: What name means "Faithful"?
+Dillon
+10
+
+Names: Beginning with D: What name means "Famous Ruler"?
+Derek
+10
+
+Names: Beginning with D: What name means "Fem. form of DAVID"?
+Davan
+10
+
+Names: Beginning with D: What name means "Feminine form of DENNIS"?
+Denise
+10
+
+Names: Beginning with D: What name means "Finnish"?
+Davin
+10
+
+Names: Beginning with D: What name means "Flower named for botanist A. Dahl"?
+Dahlia
+10
+
+Names: Beginning with D: What name means "Flower of the Gods"?
+Dianthe
+10
+
+Names: Beginning with D: What name means "Form of DANIEL"?
+Danil
+10
+
+Names: Beginning with D: What name means "Form of DEBORAH"?
+Devorit
+10
+
+Names: Beginning with D: What name means "Form of DEXTER"?
+Dextra
+10
+
+Names: Beginning with D: What name means "Form of DILLON"?
+Dillan
+10
+
+Names: Beginning with D: What name means "Form of DONAL"?
+Donelle
+10
+
+Names: Beginning with D: What name means "Form of DREW"?
+Dru
+10
+
+Names: Beginning with D: What name means "Free Man"?
+Darby
+10
+
+Names: Beginning with D: What name means "From DEAN and LIZ"?
+Deliz
+10
+
+Names: Beginning with D: What name means "From Demeter"?
+Demetria
+10
+
+Names: Beginning with D: What name means "From DIANA"?
+Dionne
+10
+
+Names: Beginning with D: What name means "From the Dale"?
+Dallin
+10
+
+Names: Beginning with D: What name means "From the Flower"?
+Delphine
+10
+
+Names: Beginning with D: What name means "From the Meadow"?
+Dudley
+10
+
+Names: Beginning with D: What name means "From the name CORDELIA"?
+Delia
+10
+
+Names: Beginning with D: What name means "From the name DALTON"?
+Dale
+10
+
+Names: Beginning with D: What name means "From the name DANIEL"?
+Dan
+10
+
+Names: Beginning with D: What name means "From the name DANIEL"?
+Danielle
+10
+
+Names: Beginning with D: What name means "From the name DANIEL"?
+Danny
+10
+
+Names: Beginning with D: What name means "From the name Daniel"?
+Danyl
+10
+
+Names: Beginning with D: What name means "From the name DANTE"?
+Danton
+10
+
+Names: Beginning with D: What name means "From the name DARIN"?
+Darian
+10
+
+Names: Beginning with D: What name means "From the name DARREN"?
+Darrin
+10
+
+Names: Beginning with D: What name means "From the name Darren"?
+Darrion
+10
+
+Names: Beginning with D: What name means "From the name DARRYL"?
+Darrell
+10
+
+Names: Beginning with D: What name means "From the name DARYL"?
+Darryl
+10
+
+Names: Beginning with D: What name means "From the name DAVID"?
+Dave
+10
+
+Names: Beginning with D: What name means "From the name DAVID"?
+Davida
+10
+
+Names: Beginning with D: What name means "From the name DAVID"?
+Dewey
+10
+
+Names: Beginning with D: What name means "From the name DEAN"?
+Dina
+10
+
+Names: Beginning with D: What name means "From the name DEAN"?
+Dinah
+10
+
+Names: Beginning with D: What name means "From the name DEBORAH"?
+Debbie
+10
+
+Names: Beginning with D: What name means "From the name DEBORAH"?
+Debby
+10
+
+Names: Beginning with D: What name means "From the name DEBORAH"?
+Debra
+10
+
+Names: Beginning with D: What name means "From the name DEBORAH"?
+Devorah
+10
+
+Names: Beginning with D: What name means "From the name DEMITRIUS"?
+Dmitri
+10
+
+Names: Beginning with D: What name means "From the name DENNIS"?
+Denis
+10
+
+Names: Beginning with D: What name means "From the name DENNIS"?
+Dionysus
+10
+
+Names: Beginning with D: What name means "From the name DEREK"?
+Derex
+10
+
+Names: Beginning with D: What name means "From the name DEREK"?
+Derrick
+10
+
+Names: Beginning with D: What name means "From the name DEREK"?
+Dirk
+10
+
+Names: Beginning with D: What name means "From the name DESIDERIO"?
+Desi
+10
+
+Names: Beginning with D: What name means "From the name DIANA"?
+Deandra
+10
+
+Names: Beginning with D: What name means "From the name DIANA"?
+Diane
+10
+
+Names: Beginning with D: What name means "From the name DIANA"?
+Dianne
+10
+
+Names: Beginning with D: What name means "From the name DIANE"?
+Dyan
+10
+
+Names: Beginning with D: What name means "From the name DIANE"?
+Dyanne
+10
+
+Names: Beginning with D: What name means "From the name DILLON"?
+Dylan
+10
+
+Names: Beginning with D: What name means "From the name DIONYSIUS"?
+Dion
+10
+
+Names: Beginning with D: What name means "From the name DOLORES"?
+Delores
+10
+
+Names: Beginning with D: What name means "From the name DOMINICK"?
+Dom
+10
+
+Names: Beginning with D: What name means "From the name DOMINICK"?
+Dominic
+10
+
+Names: Beginning with D: What name means "From the name DOMINICK"?
+Dominy
+10
+
+Names: Beginning with D: What name means "From the name DONALD OR DONNEL"?
+Donny
+10
+
+Names: Beginning with D: What name means "From the name DONALD"?
+Don
+10
+
+Names: Beginning with D: What name means "From the name DORE"?
+Dori
+10
+
+Names: Beginning with D: What name means "From the name DORIAN"?
+Doria
+10
+
+Names: Beginning with D: What name means "From the name DORIS"?
+Dorie
+10
+
+Names: Beginning with D: What name means "From the name DORIS"?
+Dorit
+10
+
+Names: Beginning with D: What name means "From the name DOROTHY or DOLORES"?
+Dolly
+10
+
+Names: Beginning with D: What name means "From the name DOROTHY"?
+Dorothea
+10
+
+Names: Beginning with D: What name means "From the name DOROTHY"?
+Dory
+10
+
+Names: Beginning with D: What name means "From the name DOROTHY"?
+Dot
+10
+
+Names: Beginning with D: What name means "From the name DOROTHY"?
+Dotty
+10
+
+Names: Beginning with D: What name means "From the name DORSET"?
+Dorsey
+10
+
+Names: Beginning with D: What name means "From the name DOUGLAS"?
+Doug
+10
+
+Names: Beginning with D: What name means "From the name DOUGLAS"?
+Dougal
+10
+
+Names: Beginning with D: What name means "From the name DOUGLAS"?
+Douglass
+10
+
+Names: Beginning with D: What name means "From the name DULCEA"?
+Dulce
+10
+
+Names: Beginning with D: What name means "From the name DUNN"?
+Dunne
+10
+
+Names: Beginning with D: What name means "From the name DUSTIN"?
+Dusty
+10
+
+Names: Beginning with D: What name means "From the name DWIGHT"?
+Doyt
+10
+
+Names: Beginning with D: What name means "From the name RANDOLPH"?
+Dolph
+10
+
+Names: Beginning with D: What name means "From the name WAYNE"?
+Duane
+10
+
+Names: Beginning with D: What name means "From the Netherlands"?
+Dutch
+10
+
+Names: Beginning with D: What name means "From the Sea"?
+Dorian
+10
+
+Names: Beginning with D: What name means "From the South in the U.S"?
+Dixie
+10
+
+Names: Beginning with D: What name means "From the Village of Danes"?
+Derby
+10
+
+Names: Beginning with D: What name means "Fruit Quince"?
+Dunja
+10
+
+Names: Beginning with D: What name means "Gift of God"?
+Dorothy
+10
+
+Names: Beginning with D: What name means "Gift"?
+Dora
+10
+
+Names: Beginning with D: What name means "Given"?
+Donat
+10
+
+Names: Beginning with D: What name means "Glen, Valley"?
+Denna
+10
+
+Names: Beginning with D: What name means "Glorious"?
+Dagmar
+10
+
+Names: Beginning with D: What name means "God is my Judge or From Denmark"?
+Dane
+10
+
+Names: Beginning with D: What name means "God is my Judge"?
+Danae
+10
+
+Names: Beginning with D: What name means "God is my Judge"?
+Daniel
+10
+
+Names: Beginning with D: What name means "God is My Judge"?
+Daniela
+10
+
+Names: Beginning with D: What name means "God is my Judge"?
+Danniell
+10
+
+Names: Beginning with D: What name means "God of Wine & Revelry"?
+Dionysius
+10
+
+Names: Beginning with D: What name means "God of Wine"?
+Dunixi
+10
+
+Names: Beginning with D: What name means "Goddess of Fertility"?
+Demetrius
+10
+
+Names: Beginning with D: What name means "Goddess of Forces of Nature"?
+Damia
+10
+
+Names: Beginning with D: What name means "Goddess of Power"?
+Devi
+10
+
+Names: Beginning with D: What name means "Goddess"?
+Dea
+10
+
+Names: Beginning with D: What name means "Godlike"?
+Deo
+10
+
+Names: Beginning with D: What name means "Golden"?
+Dior
+10
+
+Names: Beginning with D: What name means "Good"?
+Dobry
+10
+
+Names: Beginning with D: What name means "Great One"?
+Denali
+10
+
+Names: Beginning with D: What name means "Great"?
+Darren
+10
+
+Names: Beginning with D: What name means "Great"?
+Derron
+10
+
+Names: Beginning with D: What name means "Green Valley"?
+Denver
+10
+
+Names: Beginning with D: What name means "Hair or Poor"?
+Delila
+10
+
+Names: Beginning with D: What name means "Hair or Poor"?
+Delilah
+10
+
+Names: Beginning with D: What name means "Half, Small"?
+Demi
+10
+
+Names: Beginning with D: What name means "He who Upholds the Good"?
+Darrius
+10
+
+Names: Beginning with D: What name means "Head, Leader"?
+Dean
+10
+
+Names: Beginning with D: What name means "Hidden Nook"?
+Darnell
+10
+
+Names: Beginning with D: What name means "Joyous Music"?
+Dreama
+10
+
+Names: Beginning with D: What name means "Judge"?
+Dempster
+10
+
+Names: Beginning with D: What name means "Lady of Sorrows"?
+Dolores
+10
+
+Names: Beginning with D: What name means "Lady, Woman"?
+Donna
+10
+
+Names: Beginning with D: What name means "Lady"?
+Donnica
+10
+
+Names: Beginning with D: What name means "Lasting"?
+Dante
+10
+
+Names: Beginning with D: What name means "Laurel Tree"?
+Daphne
+10
+
+Names: Beginning with D: What name means "Leader of the People"?
+Didrika
+10
+
+Names: Beginning with D: What name means "Leader"?
+Duke
+10
+
+Names: Beginning with D: What name means "Like a God"?
+Deven
+10
+
+Names: Beginning with D: What name means "Lion"?
+Diata
+10
+
+Names: Beginning with D: What name means "Little Darling"?
+Darlene
+10
+
+Names: Beginning with D: What name means "Little Sword"?
+Dino
+10
+
+Names: Beginning with D: What name means "Long Summer"?
+Da xia
+10
+
+Names: Beginning with D: What name means "Longed For"?
+Desana
+10
+
+Names: Beginning with D: What name means "Lover of the Earth"?
+Demitrius
+10
+
+Names: Beginning with D: What name means "Moral, Good"?
+Duc
+10
+
+Names: Beginning with D: What name means "Morning Star"?
+Danica
+10
+
+Names: Beginning with D: What name means "Morning Star"?
+Danika
+10
+
+Names: Beginning with D: What name means "Mother of Gods"?
+Dana
+10
+
+Names: Beginning with D: What name means "Mountain"?
+Doi
+10
+
+Names: Beginning with D: What name means "Mouth of a River"?
+Delta
+10
+
+Names: Beginning with D: What name means "My Judge"?
+Dani
+10
+
+Names: Beginning with D: What name means "Native American Tribal Name"?
+Dakota
+10
+
+Names: Beginning with D: What name means "Of God"?
+Dominique
+10
+
+Names: Beginning with D: What name means "Of the Dark"?
+Darcie
+10
+
+Names: Beginning with D: What name means "Of the Devil"?
+Desdemona
+10
+
+Names: Beginning with D: What name means "Of the Nobility"?
+Della
+10
+
+Names: Beginning with D: What name means "Peace, Calm"?
+Dinh
+10
+
+Names: Beginning with D: What name means "Peace"?
+Dembe
+10
+
+Names: Beginning with D: What name means "Pleasing"?
+Deka
+10
+
+Names: Beginning with D: What name means "Poet"?
+Devin
+10
+
+Names: Beginning with D: What name means "Poet"?
+Devon
+10
+
+Names: Beginning with D: What name means "Powerful Warrior"?
+Dima
+10
+
+Names: Beginning with D: What name means "Powerful, Rich Ruler"?
+Dick
+10
+
+Names: Beginning with D: What name means "Precious Present"?
+Darin
+10
+
+Names: Beginning with D: What name means "Protect the Companion"?
+Duena
+10
+
+Names: Beginning with D: What name means "Queenly"?
+Daria
+10
+
+Names: Beginning with D: What name means "Red-Head"?
+Derry
+10
+
+Names: Beginning with D: What name means "Roaming"?
+Dessa
+10
+
+Names: Beginning with D: What name means "Rose"?
+Dulcina
+10
+
+Names: Beginning with D: What name means "Ruler"?
+Dasan
+10
+
+Names: Beginning with D: What name means "Running Streams"?
+Derora
+10
+
+Names: Beginning with D: What name means "Scintillating"?
+Delling
+10
+
+Names: Beginning with D: What name means "Short for names beginning with DEL"?
+Del
+10
+
+Names: Beginning with D: What name means "Short for names beginning with DES"?
+Des
+10
+
+Names: Beginning with D: What name means "Sincere"?
+Dyllis
+10
+
+Names: Beginning with D: What name means "Son of DAVID"?
+Davis
+10
+
+Names: Beginning with D: What name means "Son of Richard"?
+Dixon
+10
+
+Names: Beginning with D: What name means "Son of ZEUS"?
+Dard
+10
+
+Names: Beginning with D: What name means "Sorrowful, Wanderer"?
+Deidra
+10
+
+Names: Beginning with D: What name means "Sorrowful, Wanderer"?
+Deirdra
+10
+
+Names: Beginning with D: What name means "St. James"?
+Diego
+10
+
+Names: Beginning with D: What name means "Stars"?
+Daw
+10
+
+Names: Beginning with D: What name means "Sunset"?
+Dysis
+10
+
+Names: Beginning with D: What name means "Sweet"?
+Dulcea
+10
+
+Names: Beginning with D: What name means "Sweet"?
+Dulcinea
+10
+
+Names: Beginning with D: What name means "Talented"?
+Dorinda
+10
+
+Names: Beginning with D: What name means "Taming"?
+Damian
+10
+
+Names: Beginning with D: What name means "The 7th son of the 7th son"?
+Doctor
+10
+
+Names: Beginning with D: What name means "The Beginning"?
+Davu
+10
+
+Names: Beginning with D: What name means "The Earth"?
+Dagan
+10
+
+Names: Beginning with D: What name means "The Inspirer"?
+Dumi
+10
+
+Names: Beginning with D: What name means "The Only Girl"?
+Delu
+10
+
+Names: Beginning with D: What name means "The Town Near the Valley"?
+Dalton
+10
+
+Names: Beginning with D: What name means "The Way"?
+Dwayne
+10
+
+Names: Beginning with D: What name means "The World"?
+Desmond
+10
+
+Names: Beginning with D: What name means "To Speak Kind Words"?
+Deborah
+10
+
+Names: Beginning with D: What name means "Trustworthy"?
+Drew
+10
+
+Names: Beginning with D: What name means "Valley or Vindicated"?
+Dena
+10
+
+Names: Beginning with D: What name means "Valley"?
+Dalva
+10
+
+Names: Beginning with D: What name means "Valley"?
+Deiondre
+10
+
+Names: Beginning with D: What name means "Virtuous"?
+Dewei
+10
+
+Names: Beginning with D: What name means "Warrior"?
+Dustin
+10
+
+Names: Beginning with D: What name means "Water Bearer"?
+Dalila
+10
+
+Names: Beginning with D: What name means "Wealthy One"?
+Dareh
+10
+
+Names: Beginning with D: What name means "White, fair one"?
+Dwight
+10
+
+Names: Beginning with D: What name means "Wild, Frenzied"?
+Dennis
+10
+
+Names: Beginning with D: What name means "Wise"?
+Dallas
+10
+
+Names: Beginning with D: What name means "World Mighty"?
+Donal
+10
+
+Names: Beginning with D: What name means "Young Girl"?
+Darlita
+10
+
+Names: Beginning with E: What name means "A Bright Green Gem"?
+Emerald
+10
+
+Names: Beginning with E: What name means "A Tree"?
+Elana
+10
+
+Names: Beginning with E: What name means "All Wise"?
+Elvis
+10
+
+Names: Beginning with E: What name means "Ambitious, Industrious"?
+Emilie
+10
+
+Names: Beginning with E: What name means "Awe-Inspiring"?
+Egil
+10
+
+Names: Beginning with E: What name means "Belonging to God"?
+Elkan
+10
+
+Names: Beginning with E: What name means "Blessed with Many Friends"?
+Eadoin
+10
+
+Names: Beginning with E: What name means "Born Lucky"?
+Eugene
+10
+
+Names: Beginning with E: What name means "Bringer of Good News"?
+Evangelia
+10
+
+Names: Beginning with E: What name means "Collector of Thoughts, Determined Protector"?
+Erimentha
+10
+
+Names: Beginning with E: What name means "Concecrated to God"?
+Elisabeth
+10
+
+Names: Beginning with E: What name means "Consecrated to God"?
+Elizabeth
+10
+
+Names: Beginning with E: What name means "Crown of Victory"?
+Esteban
+10
+
+Names: Beginning with E: What name means "Dark Strength"?
+Ebony
+10
+
+Names: Beginning with E: What name means "Desired"?
+Edna
+10
+
+Names: Beginning with E: What name means "Determination"?
+Etana
+10
+
+Names: Beginning with E: What name means "Dim. of Names ending in ETTA"?
+Etta
+10
+
+Names: Beginning with E: What name means "Earnest"?
+Erna
+10
+
+Names: Beginning with E: What name means "Earnest"?
+Ernest
+10
+
+Names: Beginning with E: What name means "Elavated"?
+Elata
+10
+
+Names: Beginning with E: What name means "Elder Tree Island"?
+Ellery
+10
+
+Names: Beginning with E: What name means "Emerald, Jewel"?
+Esmerelda
+10
+
+Names: Beginning with E: What name means "Ever Powerful"?
+Eryk
+10
+
+Names: Beginning with E: What name means "Everlasting"?
+Eternity
+10
+
+Names: Beginning with E: What name means "Fair One"?
+Eavan
+10
+
+Names: Beginning with E: What name means "Fem. form of ELVIN"?
+Elvina
+10
+
+Names: Beginning with E: What name means "Fire"?
+Edan
+10
+
+Names: Beginning with E: What name means "Firm, Strong"?
+Ethan
+10
+
+Names: Beginning with E: What name means "Flatterer"?
+Emlyn
+10
+
+Names: Beginning with E: What name means "Flatterer"?
+Emmly
+10
+
+Names: Beginning with E: What name means "Flower"?
+Evanthe
+10
+
+Names: Beginning with E: What name means "Flying Falcon"?
+Elsu
+10
+
+Names: Beginning with E: What name means "Form of Adelaide"?
+Elke
+10
+
+Names: Beginning with E: What name means "Form of EDMUND"?
+Eamon
+10
+
+Names: Beginning with E: What name means "Form of EDNA"?
+Edena
+10
+
+Names: Beginning with E: What name means "Form of ELI"?
+Ely
+10
+
+Names: Beginning with E: What name means "Form of ELIJAH"?
+Elia
+10
+
+Names: Beginning with E: What name means "Form of ELIJAH"?
+Eliot
+10
+
+Names: Beginning with E: What name means "Form of ELIJAH"?
+Eljah
+10
+
+Names: Beginning with E: What name means "Form of EMIL"?
+Emilio
+10
+
+Names: Beginning with E: What name means "Form of ERMIN"?
+Erme
+10
+
+Names: Beginning with E: What name means "Form of ERNEST"?
+Earnest
+10
+
+Names: Beginning with E: What name means "Form of ERNEST"?
+Erno
+10
+
+Names: Beginning with E: What name means "Form of ESMERALDA"?
+Esma
+10
+
+Names: Beginning with E: What name means "Form of ETHAN"?
+Eitan
+10
+
+Names: Beginning with E: What name means "Form of ETHAN"?
+Etan
+10
+
+Names: Beginning with E: What name means "Form of HELEN"?
+Elan
+10
+
+Names: Beginning with E: What name means "Form of HENRY"?
+Enrico
+10
+
+Names: Beginning with E: What name means "Freedom"?
+Elephteria
+10
+
+Names: Beginning with E: What name means "Friend of Elves"?
+Elvin
+10
+
+Names: Beginning with E: What name means "Friend of the Sea"?
+Ervin
+10
+
+Names: Beginning with E: What name means "From ELLA"?
+Ela
+10
+
+Names: Beginning with E: What name means "From the Holiday"?
+Easter
+10
+
+Names: Beginning with E: What name means "From the name AMELIA"?
+Emele
+10
+
+Names: Beginning with E: What name means "From the name EDITH"?
+Edie
+10
+
+Names: Beginning with E: What name means "From the name EDITH"?
+Edita
+10
+
+Names: Beginning with E: What name means "From the name EDITH"?
+Edythe
+10
+
+Names: Beginning with E: What name means "From the name EDWARD"?
+Ed
+10
+
+Names: Beginning with E: What name means "From the name EDWARD"?
+Eddie
+10
+
+Names: Beginning with E: What name means "From the name EDWARD"?
+Eddy
+10
+
+Names: Beginning with E: What name means "From the name EDWARD"?
+Edwardo
+10
+
+Names: Beginning with E: What name means "From the name ELEANOR"?
+Elena
+10
+
+Names: Beginning with E: What name means "From the name ELEANOR"?
+Elie
+10
+
+Names: Beginning with E: What name means "From the name ELEANOR"?
+Ella
+10
+
+Names: Beginning with E: What name means "From the name ELEANOR"?
+Ellen
+10
+
+Names: Beginning with E: What name means "From the name ELEANOR"?
+Ellie
+10
+
+Names: Beginning with E: What name means "From the name ELIJAH"?
+Eli
+10
+
+Names: Beginning with E: What name means "From the name ELIJAH"?
+Elias
+10
+
+Names: Beginning with E: What name means "From the name ELIJAH"?
+Elliot
+10
+
+Names: Beginning with E: What name means "From the name ELIJAH"?
+Ellis
+10
+
+Names: Beginning with E: What name means "From the name ELIZABETH"?
+Elise
+10
+
+Names: Beginning with E: What name means "From the name ELIZABETH"?
+Eliza
+10
+
+Names: Beginning with E: What name means "From the name ELIZABETH"?
+Elsa
+10
+
+Names: Beginning with E: What name means "From the name ELIZABETH"?
+Elsie
+10
+
+Names: Beginning with E: What name means "From the name ELIZABETH"?
+Elspeth
+10
+
+Names: Beginning with E: What name means "From the name ELLIOT"?
+Elliott
+10
+
+Names: Beginning with E: What name means "From the name EMANUEL"?
+Emmanuel
+10
+
+Names: Beginning with E: What name means "From the name EMILIA"?
+Emma
+10
+
+Names: Beginning with E: What name means "From the name EMILIE"?
+Emilia
+10
+
+Names: Beginning with E: What name means "From the name EPHRAIM"?
+Efrem
+10
+
+Names: Beginning with E: What name means "From the name ERIC"?
+Erik
+10
+
+Names: Beginning with E: What name means "From the name ERICA"?
+Erika
+10
+
+Names: Beginning with E: What name means "From the name ERIN"?
+Errin
+10
+
+Names: Beginning with E: What name means "From the name ERNEST"?
+Ernie
+10
+
+Names: Beginning with E: What name means "From the name ESTHER"?
+Ester
+10
+
+Names: Beginning with E: What name means "From the name EVE AND ANNA"?
+Evonne
+10
+
+Names: Beginning with E: What name means "From the name EVE AND LINDA"?
+Evelyn
+10
+
+Names: Beginning with E: What name means "From the name EVE"?
+Eva
+10
+
+Names: Beginning with E: What name means "From the name EVE"?
+Evette
+10
+
+Names: Beginning with E: What name means "From the name EVE"?
+Evita
+10
+
+Names: Beginning with E: What name means "From the name EVELYN"?
+Eileen
+10
+
+Names: Beginning with E: What name means "From the name IRMA"?
+Erma
+10
+
+Names: Beginning with E: What name means "From the name IRVING"?
+Erv
+10
+
+Names: Beginning with E: What name means "From the name IRVING"?
+Erwin
+10
+
+Names: Beginning with E: What name means "From the name LOIS"?
+Eloise
+10
+
+Names: Beginning with E: What name means "From the name STAR"?
+Estralita
+10
+
+Names: Beginning with E: What name means "Full of Grace"?
+Elu
+10
+
+Names: Beginning with E: What name means "God has helped"?
+Eleazar
+10
+
+Names: Beginning with E: What name means "God in Humankind"?
+Emanuele
+10
+
+Names: Beginning with E: What name means "God Is My Light"?
+Eliora
+10
+
+Names: Beginning with E: What name means "God is Salvation"?
+Elisha
+10
+
+Names: Beginning with E: What name means "God is With Us"?
+Emanuel
+10
+
+Names: Beginning with E: What name means "God"?
+Esben
+10
+
+Names: Beginning with E: What name means "Goddess of Strife"?
+Eris
+10
+
+Names: Beginning with E: What name means "Golden"?
+Eldora
+10
+
+Names: Beginning with E: What name means "Gracious Protector"?
+Esme
+10
+
+Names: Beginning with E: What name means "Gracious, Bearer of Good News"?
+Evane
+10
+
+Names: Beginning with E: What name means "Great Spearman"?
+Edgar
+10
+
+Names: Beginning with E: What name means "Greek Mythological Figure"?
+Eurydice
+10
+
+Names: Beginning with E: What name means "Greek Mythological Figure"?
+Evadne
+10
+
+Names: Beginning with E: What name means "Guardian"?
+Er
+10
+
+Names: Beginning with E: What name means "Happy Guardian"?
+Edward
+10
+
+Names: Beginning with E: What name means "Happy"?
+Edith
+10
+
+Names: Beginning with E: What name means "Hazelnut"?
+Evelia
+10
+
+Names: Beginning with E: What name means "Helpe"?
+Ezra
+10
+
+Names: Beginning with E: What name means "High Born"?
+Edeline
+10
+
+Names: Beginning with E: What name means "Honorable Ruler"?
+Eric
+10
+
+Names: Beginning with E: What name means "Honorable Ruler"?
+Erica
+10
+
+Names: Beginning with E: What name means "Honorable"?
+Erland
+10
+
+Names: Beginning with E: What name means "Honored Gift"?
+Eudora
+10
+
+Names: Beginning with E: What name means "Honored, Distinguished"?
+Efrat
+10
+
+Names: Beginning with E: What name means "Hope"?
+Elpida
+10
+
+Names: Beginning with E: What name means "Impartial Judgement"?
+Elvira
+10
+
+Names: Beginning with E: What name means "Industrious, Flatterer"?
+Emily
+10
+
+Names: Beginning with E: What name means "Industrious"?
+Emera
+10
+
+Names: Beginning with E: What name means "Industrious"?
+Emmet
+10
+
+Names: Beginning with E: What name means "Ireland"?
+Erin
+10
+
+Names: Beginning with E: What name means "Island"?
+Ennis
+10
+
+Names: Beginning with E: What name means "Justice"?
+Euridice
+10
+
+Names: Beginning with E: What name means "Land Where Dawn Appears"?
+Eolande
+10
+
+Names: Beginning with E: What name means "Leader"?
+Emory
+10
+
+Names: Beginning with E: What name means "Life"?
+Eshe
+10
+
+Names: Beginning with E: What name means "Life"?
+Eve
+10
+
+Names: Beginning with E: What name means "Life"?
+Evelien
+10
+
+Names: Beginning with E: What name means "Life"?
+Evie
+10
+
+Names: Beginning with E: What name means "Life"?
+Ewa
+10
+
+Names: Beginning with E: What name means "Light"?
+Elaine
+10
+
+Names: Beginning with E: What name means "Light"?
+Elani
+10
+
+Names: Beginning with E: What name means "Light"?
+Eleanor
+10
+
+Names: Beginning with E: What name means "Light"?
+Elin
+10
+
+Names: Beginning with E: What name means "Light"?
+Evelina
+10
+
+Names: Beginning with E: What name means "Like an Angel"?
+Evangeline
+10
+
+Names: Beginning with E: What name means "Little Fire"?
+Egan
+10
+
+Names: Beginning with E: What name means "Love"?
+Eros
+10
+
+Names: Beginning with E: What name means "MAE Beans"?
+Edama
+10
+
+Names: Beginning with E: What name means "Man"?
+Enos
+10
+
+Names: Beginning with E: What name means "Melodious Tlak"?
+Effie
+10
+
+Names: Beginning with E: What name means "Milking a Cow"?
+Ellema
+10
+
+Names: Beginning with E: What name means "My Guardian"?
+Eri
+10
+
+Names: Beginning with E: What name means "Noble in Counsel"?
+Ethelda
+10
+
+Names: Beginning with E: What name means "Noble, Kind"?
+Eilis
+10
+
+Names: Beginning with E: What name means "Noble, King"?
+Edalene
+10
+
+Names: Beginning with E: What name means "Noble, King"?
+Edaline
+10
+
+Names: Beginning with E: What name means "Noble"?
+Elgin
+10
+
+Names: Beginning with E: What name means "Noble"?
+Ethel
+10
+
+Names: Beginning with E: What name means "Nobly Brave"?
+Ellard
+10
+
+Names: Beginning with E: What name means "Of Old Age"?
+Eldon
+10
+
+Names: Beginning with E: What name means "Old"?
+Elda
+10
+
+Names: Beginning with E: What name means "Older"?
+Elden
+10
+
+Names: Beginning with E: What name means "One Who Gives Light"?
+Epifanio
+10
+
+Names: Beginning with E: What name means "Paradise"?
+Eden
+10
+
+Names: Beginning with E: What name means "Peace, Enlightened"?
+Eron
+10
+
+Names: Beginning with E: What name means "Pledge, Nobleman"?
+Earl
+10
+
+Names: Beginning with E: What name means "Pledge"?
+Earlene
+10
+
+Names: Beginning with E: What name means "Prosperous Friend"?
+Edwin
+10
+
+Names: Beginning with E: What name means "Prosperous Ruler"?
+Edric
+10
+
+Names: Beginning with E: What name means "Protector"?
+Edmund
+10
+
+Names: Beginning with E: What name means "Protector"?
+Elmo
+10
+
+Names: Beginning with E: What name means "Quiet Woman"?
+Enid
+10
+
+Names: Beginning with E: What name means "Rich Gift"?
+Eydie
+10
+
+Names: Beginning with E: What name means "Ruler of the Home (var. of Henry)"?
+Enrique
+10
+
+Names: Beginning with E: What name means "Ruler of Work"?
+Emery
+10
+
+Names: Beginning with E: What name means "Son of Ed"?
+Edison
+10
+
+Names: Beginning with E: What name means "Son of Elias"?
+Ellison
+10
+
+Names: Beginning with E: What name means "Sound Returned"?
+Echo
+10
+
+Names: Beginning with E: What name means "Spoken Well Of"?
+Eupemia
+10
+
+Names: Beginning with E: What name means "Spoken Well Of"?
+Euphemia
+10
+
+Names: Beginning with E: What name means "Star"?
+Estelle
+10
+
+Names: Beginning with E: What name means "Star"?
+Esther
+10
+
+Names: Beginning with E: What name means "Strength of God"?
+Ezekiel
+10
+
+Names: Beginning with E: What name means "Strength"?
+Eyal
+10
+
+Names: Beginning with E: What name means "Sweet Talk"?
+Eulalie
+10
+
+Names: Beginning with E: What name means "The Blessed Home"?
+Elysia
+10
+
+Names: Beginning with E: What name means "The Chosen One"?
+Elita
+10
+
+Names: Beginning with E: What name means "The King"?
+Elroy
+10
+
+Names: Beginning with E: What name means "The Lord is My God"?
+Elijah
+10
+
+Names: Beginning with E: What name means "The Old Town"?
+Elton
+10
+
+Names: Beginning with E: What name means "The Shining One"?
+Electra
+10
+
+Names: Beginning with E: What name means "Tiny Flame"?
+Edana
+10
+
+Names: Beginning with E: What name means "To Emulate, Copy"?
+Emil
+10
+
+Names: Beginning with E: What name means "To Love"?
+Erasmus
+10
+
+Names: Beginning with E: What name means "To Wander"?
+Errol
+10
+
+Names: Beginning with E: What name means "Tranquil"?
+Evania
+10
+
+Names: Beginning with E: What name means "Truth"?
+Emmett
+10
+
+Names: Beginning with E: What name means "Universal, Whole"?
+Ermin
+10
+
+Names: Beginning with E: What name means "Valuable Friend"?
+Edwina
+10
+
+Names: Beginning with E: What name means "Very Fruitful"?
+Ephraim
+10
+
+Names: Beginning with E: What name means "Well Spoken"?
+Eulalia
+10
+
+Names: Beginning with E: What name means "Wild Boar, Strong"?
+Everett
+10
+
+Names: Beginning with E: What name means "With Clear Goals"?
+Edda
+10
+
+Names: Beginning with E: What name means "Woman, Girl"?
+Elle
+10
+
+Names: Beginning with E: What name means "Young Warrior, Also see JOHN"?
+Evan
+10
+
+Names: Beginning with F: What name means "A Crow"?
+Fala
+10
+
+Names: Beginning with F: What name means "A Fern Plant or See FERDINAND"?
+Fern
+10
+
+Names: Beginning with F: What name means "A Field"?
+Fell
+10
+
+Names: Beginning with F: What name means "A Field"?
+Field
+10
+
+Names: Beginning with F: What name means "A Fig"?
+Fico
+10
+
+Names: Beginning with F: What name means "A Fish"?
+Fisk
+10
+
+Names: Beginning with F: What name means "A Fox"?
+Fox
+10
+
+Names: Beginning with F: What name means "A Journey"?
+Foy
+10
+
+Names: Beginning with F: What name means "A Spring"?
+Fountain
+10
+
+Names: Beginning with F: What name means "A Wild Donkey"?
+Farrah
+10
+
+Names: Beginning with F: What name means "Arrow Maker"?
+Fletcher
+10
+
+Names: Beginning with F: What name means "Arrow"?
+Flan
+10
+
+Names: Beginning with F: What name means "Ash Tree"?
+Frayne
+10
+
+Names: Beginning with F: What name means "Bean Grower"?
+Fabian
+10
+
+Names: Beginning with F: What name means "Bean Grower"?
+Fabienne
+10
+
+Names: Beginning with F: What name means "Bean Grower"?
+Fabiola
+10
+
+Names: Beginning with F: What name means "Betrothed, Whimsical"?
+Fanchon
+10
+
+Names: Beginning with F: What name means "Brave Man"?
+Favian
+10
+
+Names: Beginning with F: What name means "Brilliant"?
+Filbert
+10
+
+Names: Beginning with F: What name means "Chief of Peace"?
+Farica
+10
+
+Names: Beginning with F: What name means "Contraction of FREDERICK"?
+Fritz
+10
+
+Names: Beginning with F: What name means "Courageous"?
+Fadey
+10
+
+Names: Beginning with F: What name means "Daring, Adventurous"?
+Fernando
+10
+
+Names: Beginning with F: What name means "Daughter of the Prophet"?
+Fatima
+10
+
+Names: Beginning with F: What name means "Divine Gift"?
+Fedora
+10
+
+Names: Beginning with F: What name means "Ever Good"?
+Felimy
+10
+
+Names: Beginning with F: What name means "Fair Haired One"?
+Finley
+10
+
+Names: Beginning with F: What name means "Fair Haired"?
+Fairfax
+10
+
+Names: Beginning with F: What name means "Fair Offspring"?
+Fineen
+10
+
+Names: Beginning with F: What name means "Fair"?
+Fenella
+10
+
+Names: Beginning with F: What name means "Fair"?
+Finn
+10
+
+Names: Beginning with F: What name means "Fair"?
+Finna
+10
+
+Names: Beginning with F: What name means "Fair"?
+Fionan
+10
+
+Names: Beginning with F: What name means "Fairy Kingdom"?
+Faylinn
+10
+
+Names: Beginning with F: What name means "Fairy or Elf"?
+Fay
+10
+
+Names: Beginning with F: What name means "Fairy or Elf"?
+Faye
+10
+
+Names: Beginning with F: What name means "Faithful"?
+Fidel
+10
+
+Names: Beginning with F: What name means "Faithful"?
+Fidelia
+10
+
+Names: Beginning with F: What name means "Faithful"?
+Fidelio
+10
+
+Names: Beginning with F: What name means "Faithful"?
+Fidella
+10
+
+Names: Beginning with F: What name means "Flat Land"?
+Flannery
+10
+
+Names: Beginning with F: What name means "Flourishing"?
+Florida
+10
+
+Names: Beginning with F: What name means "Flower of Mary"?
+Floramaria
+10
+
+Names: Beginning with F: What name means "Flower"?
+Fiorenza
+10
+
+Names: Beginning with F: What name means "Flowering"?
+Floria
+10
+
+Names: Beginning with F: What name means "Flowering"?
+Floriane
+10
+
+Names: Beginning with F: What name means "Form of FREDERICK"?
+Freed
+10
+
+Names: Beginning with F: What name means "Fortunate, Happy"?
+Felice
+10
+
+Names: Beginning with F: What name means "Fortunate"?
+Fausta
+10
+
+Names: Beginning with F: What name means "Free (F)"?
+Frances
+10
+
+Names: Beginning with F: What name means "Free (M)"?
+Francis
+10
+
+Names: Beginning with F: What name means "Free Man"?
+Franklin
+10
+
+Names: Beginning with F: What name means "Free Man"?
+Freeman
+10
+
+Names: Beginning with F: What name means "Free"?
+Fran
+10
+
+Names: Beginning with F: What name means "Free"?
+Francesca
+10
+
+Names: Beginning with F: What name means "Free"?
+Frank
+10
+
+Names: Beginning with F: What name means "Free"?
+Franz
+10
+
+Names: Beginning with F: What name means "Freedom Mountain"?
+Fremont
+10
+
+Names: Beginning with F: What name means "Friar"?
+Fraley
+10
+
+Names: Beginning with F: What name means "Friendship"?
+Filia
+10
+
+Names: Beginning with F: What name means "From FIONA"?
+Fionn
+10
+
+Names: Beginning with F: What name means "From the name FELICIA"?
+Felicity
+10
+
+Names: Beginning with F: What name means "From the name FENELLA"?
+Finola
+10
+
+Names: Beginning with F: What name means "From the name FIONA"?
+Fionnula
+10
+
+Names: Beginning with F: What name means "From the name FLORENCE"?
+Fleur
+10
+
+Names: Beginning with F: What name means "From the name FLORENCE"?
+Flo
+10
+
+Names: Beginning with F: What name means "From the name FLORENCE"?
+Flora
+10
+
+Names: Beginning with F: What name means "From the name FLORENCE"?
+Florrie
+10
+
+Names: Beginning with F: What name means "From the name FLORENCE"?
+Flower
+10
+
+Names: Beginning with F: What name means "From the name FORREST"?
+Foster
+10
+
+Names: Beginning with F: What name means "From the name FORRESTER"?
+Forster
+10
+
+Names: Beginning with F: What name means "From the name FREDERICK"?
+Fred
+10
+
+Names: Beginning with F: What name means "From the name FREDERICK"?
+Freddy
+10
+
+Names: Beginning with F: What name means "From the name FREDRICA"?
+Frederica
+10
+
+Names: Beginning with F: What name means "From the name FREIDA"?
+Fritzi
+10
+
+Names: Beginning with F: What name means "Given to Luck"?
+Fortune
+10
+
+Names: Beginning with F: What name means "God Assists"?
+Feivel
+10
+
+Names: Beginning with F: What name means "God has Given Me This"?
+Fabunni
+10
+
+Names: Beginning with F: What name means "Goddess of Love, Fertility and Beauty"?
+Freya
+10
+
+Names: Beginning with F: What name means "Happiness, Joy"?
+Fisseha
+10
+
+Names: Beginning with F: What name means "Happiness"?
+Felicia
+10
+
+Names: Beginning with F: What name means "Happy and Prosperous"?
+Felix
+10
+
+Names: Beginning with F: What name means "Hard Quartz Rock"?
+Flint
+10
+
+Names: Beginning with F: What name means "Heir to the Redheaded"?
+Flynn
+10
+
+Names: Beginning with F: What name means "Honor"?
+Fola
+10
+
+Names: Beginning with F: What name means "Horseman/Knight"?
+Faris
+10
+
+Names: Beginning with F: What name means "House"?
+Fale
+10
+
+Names: Beginning with F: What name means "Irish Saint"?
+Fiachra
+10
+
+Names: Beginning with F: What name means "Iron Ring"?
+Ferrol
+10
+
+Names: Beginning with F: What name means "Iron Worker"?
+Ferris
+10
+
+Names: Beginning with F: What name means "Leafy Branch"?
+Fronde
+10
+
+Names: Beginning with F: What name means "Lover of Horses"?
+Filipina
+10
+
+Names: Beginning with F: What name means "Lucky"?
+Faustine
+10
+
+Names: Beginning with F: What name means "Man of Strength"?
+Fergal
+10
+
+Names: Beginning with F: What name means "Manly"?
+Fergus
+10
+
+Names: Beginning with F: What name means "Norse Goddess of Love"?
+Freja
+10
+
+Names: Beginning with F: What name means "Occupational Surname"?
+Fuller
+10
+
+Names: Beginning with F: What name means "Of a Ruling Family"?
+Fallon
+10
+
+Names: Beginning with F: What name means "Of Proven Courage"?
+Farrell
+10
+
+Names: Beginning with F: What name means "Of the Forest"?
+Forrester
+10
+
+Names: Beginning with F: What name means "Of the Woods, Forest"?
+Forrest
+10
+
+Names: Beginning with F: What name means "One Who Is Religious"?
+Fruma
+10
+
+Names: Beginning with F: What name means "One with Skillful Hands"?
+Fabrizio
+10
+
+Names: Beginning with F: What name means "Peace, Joy"?
+Frieda
+10
+
+Names: Beginning with F: What name means "Peace"?
+Feleti
+10
+
+Names: Beginning with F: What name means "Peace"?
+Frederick
+10
+
+Names: Beginning with F: What name means "Peace"?
+Fredrica
+10
+
+Names: Beginning with F: What name means "Prosperous, Flowering"?
+Florence
+10
+
+Names: Beginning with F: What name means "Prosperous"?
+Forbes
+10
+
+Names: Beginning with F: What name means "Road"?
+Ford
+10
+
+Names: Beginning with F: What name means "Seed, Offspring"?
+Frye
+10
+
+Names: Beginning with F: What name means "Smooth Rock"?
+Feoras
+10
+
+Names: Beginning with F: What name means "Son of FERGUS"?
+Ferguson
+10
+
+Names: Beginning with F: What name means "Stawberry"?
+Frasier
+10
+
+Names: Beginning with F: What name means "Strong Man"?
+Fearghus
+10
+
+Names: Beginning with F: What name means "Swift"?
+Fleta
+10
+
+Names: Beginning with F: What name means "The Far Meadow"?
+Fairly
+10
+
+Names: Beginning with F: What name means "The Hollow"?
+Floyd
+10
+
+Names: Beginning with F: What name means "To be Courageous"?
+Ferdinand
+10
+
+Names: Beginning with F: What name means "To Destroy"?
+Fordon
+10
+
+Names: Beginning with F: What name means "To Melt"?
+Fonda
+10
+
+Names: Beginning with F: What name means "To Melt"?
+Fondea
+10
+
+Names: Beginning with F: What name means "To Trust"?
+Faith
+10
+
+Names: Beginning with F: What name means "Town in a Field"?
+Felton
+10
+
+Names: Beginning with F: What name means "Very Light"?
+Fulbright
+10
+
+Names: Beginning with F: What name means "White Shoulder"?
+Fennella
+10
+
+Names: Beginning with F: What name means "White, Fair"?
+Fiona
+10
+
+Names: Beginning with F: What name means "Yellow, Blonde"?
+Flavian
+10
+
+Names: Beginning with F: What name means "Young Deer"?
+Fawn
+10
+
+Names: Beginning with G: What name means "A Bohemian Traveler"?
+Gypsy
+10
+
+Names: Beginning with G: What name means "A Clearing"?
+Glynn
+10
+
+Names: Beginning with G: What name means "A Dove"?
+Giona
+10
+
+Names: Beginning with G: What name means "A Field, Garden"?
+Garth
+10
+
+Names: Beginning with G: What name means "A Gardener"?
+Gardner
+10
+
+Names: Beginning with G: What name means "A German"?
+Germain
+10
+
+Names: Beginning with G: What name means "A Grain"?
+Gram
+10
+
+Names: Beginning with G: What name means "A Narrow Valley"?
+Glynis
+10
+
+Names: Beginning with G: What name means "A Pledge, A Pawn"?
+Gage
+10
+
+Names: Beginning with G: What name means "A Promise"?
+Giselle
+10
+
+Names: Beginning with G: What name means "A Secluded, Woody Valley"?
+Glen
+10
+
+Names: Beginning with G: What name means "A Srpout"?
+Germaine
+10
+
+Names: Beginning with G: What name means "A Stranger There"?
+Gershom
+10
+
+Names: Beginning with G: What name means "A Stranger"?
+Gale
+10
+
+Names: Beginning with G: What name means "Adored Warrior"?
+Gertrude
+10
+
+Names: Beginning with G: What name means "Armenian City"?
+Garin
+10
+
+Names: Beginning with G: What name means "Baby Lion"?
+Gur
+10
+
+Names: Beginning with G: What name means "Barriers"?
+Gates
+10
+
+Names: Beginning with G: What name means "Battlefield"?
+Garfield
+10
+
+Names: Beginning with G: What name means "Battler"?
+Gudrun
+10
+
+Names: Beginning with G: What name means "Beautiful & Holy"?
+Glenys
+10
+
+Names: Beginning with G: What name means "Believer in God"?
+Gavril
+10
+
+Names: Beginning with G: What name means "Born to Nobility"?
+Gene
+10
+
+Names: Beginning with G: What name means "Brave Soldiear"?
+Gunnar
+10
+
+Names: Beginning with G: What name means "Brave"?
+Gaylord
+10
+
+Names: Beginning with G: What name means "Brave"?
+Gerard
+10
+
+Names: Beginning with G: What name means "Brilliant, Trustworthy"?
+Gigi
+10
+
+Names: Beginning with G: What name means "Burnt"?
+Guban
+10
+
+Names: Beginning with G: What name means "Calm, tranquil"?
+Galen
+10
+
+Names: Beginning with G: What name means "Camel"?
+Gamal
+10
+
+Names: Beginning with G: What name means "Circle"?
+Gilon
+10
+
+Names: Beginning with G: What name means "Deer"?
+Gazelle
+10
+
+Names: Beginning with G: What name means "Defender"?
+Ganit
+10
+
+Names: Beginning with G: What name means "Divine Goodness"?
+Glenda
+10
+
+Names: Beginning with G: What name means "Eager Helper"?
+Gallagher
+10
+
+Names: Beginning with G: What name means "Eden"?
+Genet
+10
+
+Names: Beginning with G: What name means "Endless Patience"?
+Grizelda
+10
+
+Names: Beginning with G: What name means "Fair Complected"?
+Gannon
+10
+
+Names: Beginning with G: What name means "Fair One"?
+Guenevere
+10
+
+Names: Beginning with G: What name means "Fair One"?
+Guinevere
+10
+
+Names: Beginning with G: What name means "Farmer"?
+George
+10
+
+Names: Beginning with G: What name means "Farmer"?
+Georgette
+10
+
+Names: Beginning with G: What name means "Farmer"?
+Georgia
+10
+
+Names: Beginning with G: What name means "Fem. form of GEORGE"?
+Georgina
+10
+
+Names: Beginning with G: What name means "Fem. form of GLEN"?
+Glenna
+10
+
+Names: Beginning with G: What name means "Female Warrior"?
+Gunda
+10
+
+Names: Beginning with G: What name means "Fifth"?
+Goro
+10
+
+Names: Beginning with G: What name means "Flower"?
+Ginata
+10
+
+Names: Beginning with G: What name means "Form of GUINIVERE"?
+Genevieve
+10
+
+Names: Beginning with G: What name means "Form of GWENDOLYN"?
+Gwen
+10
+
+Names: Beginning with G: What name means "Form of JOSEPH"?
+Giuseppe
+10
+
+Names: Beginning with G: What name means "Fortunate, Blessed"?
+Gwyneth
+10
+
+Names: Beginning with G: What name means "Fountain"?
+Gali
+10
+
+Names: Beginning with G: What name means "From Gaeta, Italy"?
+Gaetane
+10
+
+Names: Beginning with G: What name means "From Gaeta"?
+Gaetan
+10
+
+Names: Beginning with G: What name means "From JOHN & CHARLES"?
+Ginacarlo
+10
+
+Names: Beginning with G: What name means "From the Grove"?
+Grover
+10
+
+Names: Beginning with G: What name means "From the name ABIGAIL"?
+Gail
+10
+
+Names: Beginning with G: What name means "From the name GABRIEL"?
+Gabe
+10
+
+Names: Beginning with G: What name means "From the name GABRIEL"?
+Gabriela
+10
+
+Names: Beginning with G: What name means "From the name GABRIELA"?
+Gabi
+10
+
+Names: Beginning with G: What name means "From the name GABRIELLE"?
+Gabby
+10
+
+Names: Beginning with G: What name means "From the name GABRIELLE"?
+Gabriella
+10
+
+Names: Beginning with G: What name means "From the name GABRIELLE"?
+Gaby
+10
+
+Names: Beginning with G: What name means "From the name GAIL"?
+Gayle
+10
+
+Names: Beginning with G: What name means "From the name GAINELL"?
+Gaynell
+10
+
+Names: Beginning with G: What name means "From the name GARRET"?
+Garry
+10
+
+Names: Beginning with G: What name means "From the name GARRISON"?
+Garson
+10
+
+Names: Beginning with G: What name means "From the name GENEVA"?
+Genna
+10
+
+Names: Beginning with G: What name means "From the name GEORGE"?
+Giorgio
+10
+
+Names: Beginning with G: What name means "From the name GERALD"?
+Geraldo
+10
+
+Names: Beginning with G: What name means "From the name GERALD"?
+Gerry
+10
+
+Names: Beginning with G: What name means "From the name GERALDINE"?
+Geraldene
+10
+
+Names: Beginning with G: What name means "From the name GERALDINE"?
+Geri
+10
+
+Names: Beginning with G: What name means "From the name GISELLE"?
+Gisela
+10
+
+Names: Beginning with G: What name means "From the name GITA"?
+Gitel
+10
+
+Names: Beginning with G: What name means "From the name GITA"?
+Gittel
+10
+
+Names: Beginning with G: What name means "From the name GLEN"?
+Glenn
+10
+
+Names: Beginning with G: What name means "From the name GLORIA"?
+Glora
+10
+
+Names: Beginning with G: What name means "From the name GLORIA"?
+Glory
+10
+
+Names: Beginning with G: What name means "From the name GLYNIS"?
+Glynnis
+10
+
+Names: Beginning with G: What name means "From the name GOLDA"?
+Goldie
+10
+
+Names: Beginning with G: What name means "From the name GOLDA"?
+Goldy
+10
+
+Names: Beginning with G: What name means "From the name GORDON"?
+Gordy
+10
+
+Names: Beginning with G: What name means "From the name GRACE"?
+Gracie
+10
+
+Names: Beginning with G: What name means "From the name GRACE"?
+Grazia
+10
+
+Names: Beginning with G: What name means "From the name GREGORY"?
+Greg
+10
+
+Names: Beginning with G: What name means "From the name GREGORY"?
+Gregg
+10
+
+Names: Beginning with G: What name means "From the name JEFFREY"?
+Geoff
+10
+
+Names: Beginning with G: What name means "From the name MARGARET"?
+Greta
+10
+
+Names: Beginning with G: What name means "From the name MARGARET"?
+Gretchen
+10
+
+Names: Beginning with G: What name means "From the name MARGARET"?
+Gretel
+10
+
+Names: Beginning with G: What name means "From the name REGINA or VIRGINIA"?
+Gina
+10
+
+Names: Beginning with G: What name means "From the name VIRGINIA"?
+Gin
+10
+
+Names: Beginning with G: What name means "From the name VIRGINIA"?
+Ginny
+10
+
+Names: Beginning with G: What name means "From the name WALTER"?
+Gualtier
+10
+
+Names: Beginning with G: What name means "From the Valley or Glen"?
+Glennis
+10
+
+Names: Beginning with G: What name means "From VIRGINIA or the Ginger Root"?
+Ginger
+10
+
+Names: Beginning with G: What name means "Garden of the Lord"?
+Ganya
+10
+
+Names: Beginning with G: What name means "Gentle"?
+Gareth
+10
+
+Names: Beginning with G: What name means "Gentleman"?
+Gent
+10
+
+Names: Beginning with G: What name means "Gift of Peace"?
+Geoffrey
+10
+
+Names: Beginning with G: What name means "Glad, Pleased"?
+Gamada
+10
+
+Names: Beginning with G: What name means "Glory"?
+Gloria
+10
+
+Names: Beginning with G: What name means "God is Gracious"?
+Giovanni
+10
+
+Names: Beginning with G: What name means "God is my Strength"?
+Gabriel
+10
+
+Names: Beginning with G: What name means "God is my Strength"?
+Gabrielle
+10
+
+Names: Beginning with G: What name means "Goddess of the Moon"?
+Gwendolyn
+10
+
+Names: Beginning with G: What name means "Good"?
+Gita
+10
+
+Names: Beginning with G: What name means "Grace of God"?
+Grace
+10
+
+Names: Beginning with G: What name means "Grace"?
+Gratia
+10
+
+Names: Beginning with G: What name means "Grace"?
+Gratiana
+10
+
+Names: Beginning with G: What name means "Grain Goddess"?
+Grania
+10
+
+Names: Beginning with G: What name means "Gray"?
+Griselda
+10
+
+Names: Beginning with G: What name means "Great Warrior"?
+Gideon
+10
+
+Names: Beginning with G: What name means "Great"?
+Grant
+10
+
+Names: Beginning with G: What name means "Guarded, Protected"?
+Gerda
+10
+
+Names: Beginning with G: What name means "Guardian"?
+Garren
+10
+
+Names: Beginning with G: What name means "Guardian"?
+Garron
+10
+
+Names: Beginning with G: What name means "Guide"?
+Guy
+10
+
+Names: Beginning with G: What name means "Gypsy"?
+Gitano
+10
+
+Names: Beginning with G: What name means "Hard Spear"?
+Geraldine
+10
+
+Names: Beginning with G: What name means "Hero or Hill"?
+Gerodi
+10
+
+Names: Beginning with G: What name means "Hewn Stone"?
+Gazit
+10
+
+Names: Beginning with G: What name means "Hewn Stone"?
+Giza
+10
+
+Names: Beginning with G: What name means "Hill Near Meadows"?
+Geordi
+10
+
+Names: Beginning with G: What name means "Hill, High Place"?
+Giva
+10
+
+Names: Beginning with G: What name means "Hindu Goddess of Plenty"?
+Guri
+10
+
+Names: Beginning with G: What name means "Illuminated Child"?
+Galeno
+10
+
+Names: Beginning with G: What name means "Innocent Baby"?
+Gurit
+10
+
+Names: Beginning with G: What name means "Jasmine"?
+Gelsey
+10
+
+Names: Beginning with G: What name means "Joy"?
+Gella
+10
+
+Names: Beginning with G: What name means "Juniper Berry"?
+Geneva
+10
+
+Names: Beginning with G: What name means "Lame"?
+Gladys
+10
+
+Names: Beginning with G: What name means "Large Village"?
+Granville
+10
+
+Names: Beginning with G: What name means "Leads by the Spear"?
+Garrick
+10
+
+Names: Beginning with G: What name means "Left Handed"?
+Gure
+10
+
+Names: Beginning with G: What name means "Life"?
+Guido
+10
+
+Names: Beginning with G: What name means "Little Hawk"?
+Gavin
+10
+
+Names: Beginning with G: What name means "Loving"?
+Guillermina
+10
+
+Names: Beginning with G: What name means "Made of Gold"?
+Golda
+10
+
+Names: Beginning with G: What name means "Male Child"?
+Godana
+10
+
+Names: Beginning with G: What name means "Merry, Happy"?
+Gay
+10
+
+Names: Beginning with G: What name means "Merry, Happy"?
+Gaye
+10
+
+Names: Beginning with G: What name means "Merry"?
+Gaille
+10
+
+Names: Beginning with G: What name means "Mighty Leader"?
+Gautier
+10
+
+Names: Beginning with G: What name means "Money is Sweet"?
+Gavivi
+10
+
+Names: Beginning with G: What name means "My Joy, Rejoice"?
+Gili
+10
+
+Names: Beginning with G: What name means "Mystic"?
+Gazali
+10
+
+Names: Beginning with G: What name means "Mythological Beast"?
+Griffin
+10
+
+Names: Beginning with G: What name means "Of High Rank"?
+Grady
+10
+
+Names: Beginning with G: What name means "Peace"?
+Garvey
+10
+
+Names: Beginning with G: What name means "Pearl"?
+Ghita
+10
+
+Names: Beginning with G: What name means "Pledge"?
+Gizi
+10
+
+Names: Beginning with G: What name means "Powerful Soldier"?
+Gellert
+10
+
+Names: Beginning with G: What name means "Precious Stone"?
+Gemma
+10
+
+Names: Beginning with G: What name means "Pride"?
+Gaurav
+10
+
+Names: Beginning with G: What name means "Rejoicer"?
+Gaius
+10
+
+Names: Beginning with G: What name means "River of Black Stones"?
+Guadalupe
+10
+
+Names: Beginning with G: What name means "Servant of God"?
+Gilda
+10
+
+Names: Beginning with G: What name means "Servant of the Bishop"?
+Gillespie
+10
+
+Names: Beginning with G: What name means "Servant"?
+Giolla
+10
+
+Names: Beginning with G: What name means "Shield"?
+Giles
+10
+
+Names: Beginning with G: What name means "Short for names beginning with GIL"?
+Gil
+10
+
+Names: Beginning with G: What name means "Short for names ending with GINO"?
+Gino
+10
+
+Names: Beginning with G: What name means "Son of Gilbert"?
+Gibson
+10
+
+Names: Beginning with G: What name means "Son of the Grey-Haired One"?
+Grayson
+10
+
+Names: Beginning with G: What name means "Sparrow"?
+Galvin
+10
+
+Names: Beginning with G: What name means "Spear Carrier"?
+Gary
+10
+
+Names: Beginning with G: What name means "Spear Warrior"?
+Gerald
+10
+
+Names: Beginning with G: What name means "Staff of the Gods"?
+Gustavo
+10
+
+Names: Beginning with G: What name means "Staff of the Goths"?
+Gustave
+10
+
+Names: Beginning with G: What name means "Swords and Riches"?
+Gerik
+10
+
+Names: Beginning with G: What name means "The Gray Home"?
+Graham
+10
+
+Names: Beginning with G: What name means "The Supplanter"?
+Giacomo
+10
+
+Names: Beginning with G: What name means "To Complete"?
+Gomer
+10
+
+Names: Beginning with G: What name means "To Profit"?
+Gainell
+10
+
+Names: Beginning with G: What name means "To Watch"?
+Garret
+10
+
+Names: Beginning with G: What name means "To Watch"?
+Garrett
+10
+
+Names: Beginning with G: What name means "Triangular Hill"?
+Gordon
+10
+
+Names: Beginning with G: What name means "Triangular-shaped Land"?
+Gore
+10
+
+Names: Beginning with G: What name means "Troops in Battle"?
+Garrison
+10
+
+Names: Beginning with G: What name means "Trusted"?
+Gilbert
+10
+
+Names: Beginning with G: What name means "Valley"?
+Glyn
+10
+
+Names: Beginning with G: What name means "Vigilante, Watchman"?
+Gregory
+10
+
+Names: Beginning with G: What name means "Vine"?
+Gafna
+10
+
+Names: Beginning with G: What name means "Warrior"?
+Gunther
+10
+
+Names: Beginning with G: What name means "Watchful, Guardian"?
+Greer
+10
+
+Names: Beginning with G: What name means "Wherewithall, Gall"?
+Gallia
+10
+
+Names: Beginning with G: What name means "White Hawk"?
+Gavan
+10
+
+Names: Beginning with G: What name means "White, fair"?
+Gwyn
+10
+
+Names: Beginning with G: What name means "Youth"?
+Gyala
+10
+
+Names: Beginning with G: What name means "Youthful"?
+Gillian
+10
+
+Names: Beginning with G: What name means "Youthful"?
+Giulio
+10
+
+Names: Beginning with H: What name means "A Beautiful Blending"?
+Harmony
+10
+
+Names: Beginning with H: What name means "A Shrub, Plant"?
+Heather
+10
+
+Names: Beginning with H: What name means "Alert One"?
+Howell
+10
+
+Names: Beginning with H: What name means "Amulet"?
+Hirsi
+10
+
+Names: Beginning with H: What name means "Anchor, steadfast"?
+Hector
+10
+
+Names: Beginning with H: What name means "Army Ruler"?
+Harold
+10
+
+Names: Beginning with H: What name means "Army Warrior"?
+Harvey
+10
+
+Names: Beginning with H: What name means "Autumn"?
+Herbst
+10
+
+Names: Beginning with H: What name means "Battling"?
+Hedwig
+10
+
+Names: Beginning with H: What name means "Beloved One"?
+Habib
+10
+
+Names: Beginning with H: What name means "Born in the Spring"?
+Haru
+10
+
+Names: Beginning with H: What name means "Bright in Mind and Spirit"?
+Hugh
+10
+
+Names: Beginning with H: What name means "Bright, excellent army or ruler"?
+Herbert
+10
+
+Names: Beginning with H: What name means "Cheerful"?
+Hilary
+10
+
+Names: Beginning with H: What name means "Daughter"?
+Hija
+10
+
+Names: Beginning with H: What name means "Deer or Stag"?
+Hart
+10
+
+Names: Beginning with H: What name means "Deer"?
+Herschel
+10
+
+Names: Beginning with H: What name means "Elephant"?
+Hastin
+10
+
+Names: Beginning with H: What name means "Estate Ruler"?
+Hal
+10
+
+Names: Beginning with H: What name means "Evening Star"?
+Hesper
+10
+
+Names: Beginning with H: What name means "Fem. form of HARVEY"?
+Harva
+10
+
+Names: Beginning with H: What name means "Fem. form of HUGH"?
+Huela
+10
+
+Names: Beginning with H: What name means "Female Deer"?
+Hinda
+10
+
+Names: Beginning with H: What name means "Feminine form of HENRY"?
+Henrietta
+10
+
+Names: Beginning with H: What name means "Festive Day"?
+Holiday
+10
+
+Names: Beginning with H: What name means "Firey"?
+Hakan
+10
+
+Names: Beginning with H: What name means "First Born"?
+Haruko
+10
+
+Names: Beginning with H: What name means "Flight"?
+Hajari
+10
+
+Names: Beginning with H: What name means "Flower"?
+Hue
+10
+
+Names: Beginning with H: What name means "Footprint in the Sand"?
+Hateya
+10
+
+Names: Beginning with H: What name means "Form of HILARY"?
+Hilaire
+10
+
+Names: Beginning with H: What name means "Form of Irving"?
+Heremon
+10
+
+Names: Beginning with H: What name means "Fortunate"?
+Halona
+10
+
+Names: Beginning with H: What name means "Frog"?
+Haracha
+10
+
+Names: Beginning with H: What name means "From a Vined Cottage"?
+Haines
+10
+
+Names: Beginning with H: What name means "From the Army"?
+Harlan
+10
+
+Names: Beginning with H: What name means "From the Beautiful Mountain"?
+Hamilton
+10
+
+Names: Beginning with H: What name means "From the name HALEY"?
+Hayley
+10
+
+Names: Beginning with H: What name means "From the name HALEY"?
+Hollace
+10
+
+Names: Beginning with H: What name means "From the name HANNAH"?
+Hana
+10
+
+Names: Beginning with H: What name means "From the name HAROLD"?
+Harry
+10
+
+Names: Beginning with H: What name means "From the name HAYLEY"?
+Haile
+10
+
+Names: Beginning with H: What name means "From the name HAZEL"?
+Hazelle
+10
+
+Names: Beginning with H: What name means "From the name HEDDA"?
+Hedy
+10
+
+Names: Beginning with H: What name means "From the name HEDIA"?
+Hedya
+10
+
+Names: Beginning with H: What name means "From the name HELEN"?
+Helaine
+10
+
+Names: Beginning with H: What name means "From the name HELEN"?
+Helena
+10
+
+Names: Beginning with H: What name means "From the name HELEN"?
+Helene
+10
+
+Names: Beginning with H: What name means "From the name HENRY"?
+Hank
+10
+
+Names: Beginning with H: What name means "From the name HENRY"?
+Henri
+10
+
+Names: Beginning with H: What name means "From the name HENRY"?
+Henrik
+10
+
+Names: Beginning with H: What name means "From the name HERBERT"?
+Herb
+10
+
+Names: Beginning with H: What name means "From the name HERMAN"?
+Harmon
+10
+
+Names: Beginning with H: What name means "From the name HILARY"?
+Hillary
+10
+
+Names: Beginning with H: What name means "From the name HILDA"?
+Hilde
+10
+
+Names: Beginning with H: What name means "From the name HOLLY"?
+Holli
+10
+
+Names: Beginning with H: What name means "From the name HOLLY"?
+Hollye
+10
+
+Names: Beginning with H: What name means "From the name HOWARD"?
+Howe
+10
+
+Names: Beginning with H: What name means "From the name HOWARD"?
+Howie
+10
+
+Names: Beginning with H: What name means "From the name HUGH"?
+Huey
+10
+
+Names: Beginning with H: What name means "From the name HUGH"?
+Hugo
+10
+
+Names: Beginning with H: What name means "From the name HYMAN"?
+Hy
+10
+
+Names: Beginning with H: What name means "From the name JOHN"?
+Hans
+10
+
+Names: Beginning with H: What name means "From the name LOIS"?
+Heloise
+10
+
+Names: Beginning with H: What name means "From the Well"?
+Hartwell
+10
+
+Names: Beginning with H: What name means "Gifted"?
+Heba
+10
+
+Names: Beginning with H: What name means "Glorious Gift"?
+Hercules
+10
+
+Names: Beginning with H: What name means "Glorious"?
+Hadar
+10
+
+Names: Beginning with H: What name means "Goddess of Life"?
+Hanna
+10
+
+Names: Beginning with H: What name means "Goddess of the Hearth"?
+Hestia
+10
+
+Names: Beginning with H: What name means "Goddess of the Moon"?
+Hina
+10
+
+Names: Beginning with H: What name means "Good Luck"?
+Hachi
+10
+
+Names: Beginning with H: What name means "Good, Perfect"?
+Hao
+10
+
+Names: Beginning with H: What name means "Grace of God"?
+Hannah
+10
+
+Names: Beginning with H: What name means "Gracious"?
+Hannelore
+10
+
+Names: Beginning with H: What name means "Guardian of the Hedged Area"?
+Hayward
+10
+
+Names: Beginning with H: What name means "Guardian of the Home"?
+Howard
+10
+
+Names: Beginning with H: What name means "Hairy Bear"?
+Huslu
+10
+
+Names: Beginning with H: What name means "Hall"?
+Halen
+10
+
+Names: Beginning with H: What name means "Handsome One"?
+Hussein
+10
+
+Names: Beginning with H: What name means "Harp Player"?
+Harper
+10
+
+Names: Beginning with H: What name means "Harvest"?
+Hasad
+10
+
+Names: Beginning with H: What name means "Hawk"?
+Horus
+10
+
+Names: Beginning with H: What name means "He who Lives in High Place"?
+Hyman
+10
+
+Names: Beginning with H: What name means "Heath Near the Wasteland"?
+Hadley
+10
+
+Names: Beginning with H: What name means "Heaven"?
+Heavynne
+10
+
+Names: Beginning with H: What name means "Hero"?
+Haley
+10
+
+Names: Beginning with H: What name means "Hero"?
+Hollis
+10
+
+Names: Beginning with H: What name means "Heroine"?
+Halle
+10
+
+Names: Beginning with H: What name means "High Ground"?
+Heaton
+10
+
+Names: Beginning with H: What name means "Hollow in the Valley"?
+Holden
+10
+
+Names: Beginning with H: What name means "Holy, faithful"?
+Helga
+10
+
+Names: Beginning with H: What name means "Holy"?
+Hiero
+10
+
+Names: Beginning with H: What name means "Home Ruler"?
+Harriet
+10
+
+Names: Beginning with H: What name means "Home"?
+Hamlet
+10
+
+Names: Beginning with H: What name means "Honor"?
+Honora
+10
+
+Names: Beginning with H: What name means "Honor"?
+Honoria
+10
+
+Names: Beginning with H: What name means "Hot"?
+Ham
+10
+
+Names: Beginning with H: What name means "Hour in Time"?
+Horace
+10
+
+Names: Beginning with H: What name means "Household Ruler"?
+Heinz
+10
+
+Names: Beginning with H: What name means "Joy"?
+Hedva
+10
+
+Names: Beginning with H: What name means "Lamb"?
+Hamal
+10
+
+Names: Beginning with H: What name means "Lazy"?
+Hawa
+10
+
+Names: Beginning with H: What name means "Legend"?
+Haig
+10
+
+Names: Beginning with H: What name means "Little Smart One"?
+Hewitt
+10
+
+Names: Beginning with H: What name means "Little Town"?
+Hampton
+10
+
+Names: Beginning with H: What name means "Lofty"?
+Haroun
+10
+
+Names: Beginning with H: What name means "Lover of Home"?
+Hamlin
+10
+
+Names: Beginning with H: What name means "Magnanimous"?
+Hiroko
+10
+
+Names: Beginning with H: What name means "Meadow on the Cliff"?
+Hanley
+10
+
+Names: Beginning with H: What name means "Moon and Stars"?
+Hilzarie
+10
+
+Names: Beginning with H: What name means "Mountaineer"?
+Haruni
+10
+
+Names: Beginning with H: What name means "My Strife"?
+Hertz
+10
+
+Names: Beginning with H: What name means "Myrtle Tree"?
+Hadassah
+10
+
+Names: Beginning with H: What name means "Noble One"?
+Hidalgo
+10
+
+Names: Beginning with H: What name means "One Who Hunts"?
+Hunter
+10
+
+Names: Beginning with H: What name means "Peace"?
+Humphrey
+10
+
+Names: Beginning with H: What name means "Person of High Rank"?
+Herman
+10
+
+Names: Beginning with H: What name means "Plant With Red Berries"?
+Holly
+10
+
+Names: Beginning with H: What name means "Praise"?
+Hila
+10
+
+Names: Beginning with H: What name means "Pride"?
+Haben
+10
+
+Names: Beginning with H: What name means "Promise"?
+Homer
+10
+
+Names: Beginning with H: What name means "Protector"?
+Hilda
+10
+
+Names: Beginning with H: What name means "Queen of Heaven"?
+Hera
+10
+
+Names: Beginning with H: What name means "Rabbit"?
+Hazeka
+10
+
+Names: Beginning with H: What name means "Road, Path"?
+Hanzila
+10
+
+Names: Beginning with H: What name means "Root"?
+Hidi
+10
+
+Names: Beginning with H: What name means "Ruler of the Home"?
+Henry
+10
+
+Names: Beginning with H: What name means "Sadness of the Bride"?
+Huso
+10
+
+Names: Beginning with H: What name means "Safe Place"?
+Haven
+10
+
+Names: Beginning with H: What name means "Salty Place"?
+Hada
+10
+
+Names: Beginning with H: What name means "Salvation"?
+Hosea
+10
+
+Names: Beginning with H: What name means "Sea"?
+Hali
+10
+
+Names: Beginning with H: What name means "She Who Arrives First"?
+Hasana
+10
+
+Names: Beginning with H: What name means "Shining Brightly"?
+Haruki
+10
+
+Names: Beginning with H: What name means "Shining of Mind"?
+Hubert
+10
+
+Names: Beginning with H: What name means "Short form of Adelaide"?
+Heidi
+10
+
+Names: Beginning with H: What name means "Son of HARRY"?
+Harrison
+10
+
+Names: Beginning with H: What name means "Spacious Meadow"?
+Harley
+10
+
+Names: Beginning with H: What name means "Star"?
+Hester
+10
+
+Names: Beginning with H: What name means "Star"?
+Hoshi
+10
+
+Names: Beginning with H: What name means "Star"?
+Hoshiko
+10
+
+Names: Beginning with H: What name means "Sun"?
+Helia
+10
+
+Names: Beginning with H: What name means "Sweet as Honey"?
+Honey
+10
+
+Names: Beginning with H: What name means "The Flower"?
+Hyacinth
+10
+
+Names: Beginning with H: What name means "The Hazel Tree"?
+Hazel
+10
+
+Names: Beginning with H: What name means "The Rosy Meadow"?
+Hayden
+10
+
+Names: Beginning with H: What name means "The Sun"?
+Heller
+10
+
+Names: Beginning with H: What name means "Torchlight"?
+Helen
+10
+
+Names: Beginning with H: What name means "Town of Houses"?
+Houston
+10
+
+Names: Beginning with H: What name means "Treasure"?
+Hazina
+10
+
+Names: Beginning with H: What name means "Troops on the Hill"?
+Harlow
+10
+
+Names: Beginning with H: What name means "Trust, Faith"?
+Hope
+10
+
+Names: Beginning with H: What name means "Voice of the Lord"?
+Hedia
+10
+
+Names: Beginning with H: What name means "War"?
+Hedda
+10
+
+Names: Beginning with H: What name means "Warm Feelings"?
+Hannan
+10
+
+Names: Beginning with H: What name means "Wasteland"?
+Heath
+10
+
+Names: Beginning with H: What name means "Wood"?
+Holt
+10
+
+Names: Beginning with I: What name means "A Flag"?
+Idra
+10
+
+Names: Beginning with I: What name means "A Meadow"?
+Ingrid
+10
+
+Names: Beginning with I: What name means "A Vine"?
+Ivy
+10
+
+Names: Beginning with I: What name means "Born by Breech"?
+Ige
+10
+
+Names: Beginning with I: What name means "Bright"?
+Iliana
+10
+
+Names: Beginning with I: What name means "Cheerful"?
+Ilario
+10
+
+Names: Beginning with I: What name means "Colorful, Rainbow"?
+Iris
+10
+
+Names: Beginning with I: What name means "Consecrated to God"?
+Ilse
+10
+
+Names: Beginning with I: What name means "Consecrated to God"?
+Isabel
+10
+
+Names: Beginning with I: What name means "Consecrated to God"?
+Isabella
+10
+
+Names: Beginning with I: What name means "Consecrated to God"?
+Isabelle
+10
+
+Names: Beginning with I: What name means "Darling"?
+Ipo
+10
+
+Names: Beginning with I: What name means "Devoted"?
+Inoke
+10
+
+Names: Beginning with I: What name means "Dim. of Isabel"?
+Isi
+10
+
+Names: Beginning with I: What name means "Disciplinarian"?
+Imala
+10
+
+Names: Beginning with I: What name means "Endless"?
+Infinity
+10
+
+Names: Beginning with I: What name means "Fair One"?
+Isolde
+10
+
+Names: Beginning with I: What name means "Fem. form of IAN"?
+Ianna
+10
+
+Names: Beginning with I: What name means "Firey One"?
+Ignatius
+10
+
+Names: Beginning with I: What name means "Form of EILEEN"?
+Isleen
+10
+
+Names: Beginning with I: What name means "Form of Yves"?
+Ivo
+10
+
+Names: Beginning with I: What name means "Freedom"?
+Independence
+10
+
+Names: Beginning with I: What name means "Freedom"?
+Isra
+10
+
+Names: Beginning with I: What name means "From IDA & ANNA"?
+Idana
+10
+
+Names: Beginning with I: What name means "From IDA and LEE"?
+Idalee
+10
+
+Names: Beginning with I: What name means "From IDALEE"?
+Idalia
+10
+
+Names: Beginning with I: What name means "From India"?
+India
+10
+
+Names: Beginning with I: What name means "From ISABEL and ANNE"?
+Isanne
+10
+
+Names: Beginning with I: What name means "From Italy"?
+Italia
+10
+
+Names: Beginning with I: What name means "From the name AGNES"?
+Inez
+10
+
+Names: Beginning with I: What name means "From the name DWIGHT or ISAAC"?
+Ike
+10
+
+Names: Beginning with I: What name means "From the name IGGI"?
+Iggy
+10
+
+Names: Beginning with I: What name means "From the name INGRID"?
+Inga
+10
+
+Names: Beginning with I: What name means "From the name IRIS"?
+Iria
+10
+
+Names: Beginning with I: What name means "From the name IVY"?
+Ivi
+10
+
+Names: Beginning with I: What name means "From the name IVY"?
+Ivie
+10
+
+Names: Beginning with I: What name means "From the name JOHN"?
+Ian
+10
+
+Names: Beginning with I: What name means "From the name JOHN"?
+Ivan
+10
+
+Names: Beginning with I: What name means "From the other side of the River"?
+Ivria
+10
+
+Names: Beginning with I: What name means "Gift of Isis"?
+Isadora
+10
+
+Names: Beginning with I: What name means "God is Gracious"?
+Ivana
+10
+
+Names: Beginning with I: What name means "God is my Salvation"?
+Ikia
+10
+
+Names: Beginning with I: What name means "God Listens"?
+Ismaela
+10
+
+Names: Beginning with I: What name means "God of Heaven & Thunderstorms"?
+Indira
+10
+
+Names: Beginning with I: What name means "God of Rain & Thunder"?
+Indra
+10
+
+Names: Beginning with I: What name means "God of War"?
+Irma
+10
+
+Names: Beginning with I: What name means "God will Develop"?
+Iokina
+10
+
+Names: Beginning with I: What name means "God will Hear"?
+Ismail
+10
+
+Names: Beginning with I: What name means "Goddess of Women In Labor"?
+Ilithya
+10
+
+Names: Beginning with I: What name means "Great Tree"?
+Ilana
+10
+
+Names: Beginning with I: What name means "Hairy"?
+Issay
+10
+
+Names: Beginning with I: What name means "Handsome and Fair"?
+Irving
+10
+
+Names: Beginning with I: What name means "Hardworking, Prosperous"?
+Idania
+10
+
+Names: Beginning with I: What name means "Hardworking"?
+Ida
+10
+
+Names: Beginning with I: What name means "He will laugh"?
+Isaac
+10
+
+Names: Beginning with I: What name means "Honor"?
+Ismet
+10
+
+Names: Beginning with I: What name means "I have no child"?
+Izefia
+10
+
+Names: Beginning with I: What name means "Image, Likeness"?
+Imogene
+10
+
+Names: Beginning with I: What name means "Innocent"?
+Ince
+10
+
+Names: Beginning with I: What name means "Iris"?
+Irisa
+10
+
+Names: Beginning with I: What name means "Island"?
+Inge
+10
+
+Names: Beginning with I: What name means "Island"?
+Isla
+10
+
+Names: Beginning with I: What name means "Jehovah is my God"?
+Illias
+10
+
+Names: Beginning with I: What name means "Light, Joyous, Sunshine"?
+Ilo
+10
+
+Names: Beginning with I: What name means "Little Princes"?
+Izellah
+10
+
+Names: Beginning with I: What name means "Moon Man"?
+Ion
+10
+
+Names: Beginning with I: What name means "Most Powerful of Egyptian Goddesses"?
+Isis
+10
+
+Names: Beginning with I: What name means "Mother"?
+Ina
+10
+
+Names: Beginning with I: What name means "My Enemies Are Many"?
+Ilom
+10
+
+Names: Beginning with I: What name means "Mythological Creature"?
+Iphigenia
+10
+
+Names: Beginning with I: What name means "Only Son"?
+Iggi
+10
+
+Names: Beginning with I: What name means "Peaceful"?
+Irene
+10
+
+Names: Beginning with I: What name means "Peaceful"?
+Irina
+10
+
+Names: Beginning with I: What name means "Play of Colors"?
+Iryl
+10
+
+Names: Beginning with I: What name means "Prince of God"?
+Israel
+10
+
+Names: Beginning with I: What name means "Protection"?
+Idande
+10
+
+Names: Beginning with I: What name means "Purple Jewel"?
+Iona
+10
+
+Names: Beginning with I: What name means "Rational"?
+Ilyssa
+10
+
+Names: Beginning with I: What name means "Royal Hawk"?
+Iolani
+10
+
+Names: Beginning with I: What name means "Salvation of God"?
+Isaiah
+10
+
+Names: Beginning with I: What name means "Shining"?
+Iram
+10
+
+Names: Beginning with I: What name means "Shrimp"?
+Inari
+10
+
+Names: Beginning with I: What name means "Snow"?
+Istas
+10
+
+Names: Beginning with I: What name means "Soft Air"?
+Isaura
+10
+
+Names: Beginning with I: What name means "Something Beautiful"?
+Isabis
+10
+
+Names: Beginning with I: What name means "Special Treasure"?
+Ilori
+10
+
+Names: Beginning with I: What name means "The Best"?
+Ilit
+10
+
+Names: Beginning with I: What name means "The Hebrew Language"?
+Ivrit
+10
+
+Names: Beginning with I: What name means "Thirst"?
+Ide
+10
+
+Names: Beginning with I: What name means "Thirsty"?
+Ita
+10
+
+Names: Beginning with I: What name means "Violet-Colored Dawn"?
+Iola
+10
+
+Names: Beginning with I: What name means "Violet, Colored Flower"?
+Ianthe
+10
+
+Names: Beginning with I: What name means "Watchful, Descendant"?
+Ira
+10
+
+Names: Beginning with I: What name means "Wide, Love"?
+Ife
+10
+
+Names: Beginning with I: What name means "Woman"?
+Isha
+10
+
+Names: Beginning with J: What name means "A Bird in the Crow Family"?
+Jay
+10
+
+Names: Beginning with J: What name means "A Conqueror"?
+Jarvis
+10
+
+Names: Beginning with J: What name means "A Dove"?
+Jemima
+10
+
+Names: Beginning with J: What name means "A Dove"?
+Jemma
+10
+
+Names: Beginning with J: What name means "A Dove"?
+Jonah
+10
+
+Names: Beginning with J: What name means "A Flower in the Olive Family"?
+Jasmine
+10
+
+Names: Beginning with J: What name means "Afflicted One"?
+Job
+10
+
+Names: Beginning with J: What name means "Beautiful, Attractive"?
+Jace
+10
+
+Names: Beginning with J: What name means "Beautiful,"?
+Jacinda
+10
+
+Names: Beginning with J: What name means "Beautiful"?
+Jamila
+10
+
+Names: Beginning with J: What name means "Black Gem"?
+Jetta
+10
+
+Names: Beginning with J: What name means "Born in June"?
+June
+10
+
+Names: Beginning with J: What name means "Brook, Creek"?
+Jafaru
+10
+
+Names: Beginning with J: What name means "Cheerful"?
+Jocasta
+10
+
+Names: Beginning with J: What name means "Comforter"?
+Jabir
+10
+
+Names: Beginning with J: What name means "Descendant"?
+Jerod
+10
+
+Names: Beginning with J: What name means "Descending"?
+Jordana
+10
+
+Names: Beginning with J: What name means "Descending"?
+Jory
+10
+
+Names: Beginning with J: What name means "Everyone Loves Him"?
+Jumoke
+10
+
+Names: Beginning with J: What name means "Farmer"?
+Joren
+10
+
+Names: Beginning with J: What name means "Fearless"?
+Jabari
+10
+
+Names: Beginning with J: What name means "Fire of the Lord"?
+Josiah
+10
+
+Names: Beginning with J: What name means "Flower"?
+Jessenia
+10
+
+Names: Beginning with J: What name means "Form of JAMES"?
+Jamese
+10
+
+Names: Beginning with J: What name means "Form of JANE"?
+Janina
+10
+
+Names: Beginning with J: What name means "Form of JANET"?
+Janae
+10
+
+Names: Beginning with J: What name means "Form of JOSHUA"?
+Josue
+10
+
+Names: Beginning with J: What name means "Form of JULIAN"?
+Julio
+10
+
+Names: Beginning with J: What name means "Friend"?
+Jalil
+10
+
+Names: Beginning with J: What name means "From GERALD & DARRELL"?
+Jerrell
+10
+
+Names: Beginning with J: What name means "FROM GWENDOLYN"?
+Juandalynn
+10
+
+Names: Beginning with J: What name means "From JACQUELINE or JACLYN"?
+Jackie
+10
+
+Names: Beginning with J: What name means "From JACQUELINE or JACLYN"?
+Jacqui
+10
+
+Names: Beginning with J: What name means "From JAMES and LENORE"?
+Jalen
+10
+
+Names: Beginning with J: What name means "From JAMES and LENORE"?
+Jalene
+10
+
+Names: Beginning with J: What name means "From JARED"?
+Jered
+10
+
+Names: Beginning with J: What name means "From Jasmine & Lynn"?
+Jazlynn
+10
+
+Names: Beginning with J: What name means "From JENNIFER and VANESSA"?
+Jennessa
+10
+
+Names: Beginning with J: What name means "From JENNY and NELL"?
+Jennelle
+10
+
+Names: Beginning with J: What name means "FROM JERICHO"?
+Jerrick
+10
+
+Names: Beginning with J: What name means "From JOHANNA"?
+Jodi
+10
+
+Names: Beginning with J: What name means "From the name GEORGE"?
+Jorge
+10
+
+Names: Beginning with J: What name means "From the name GERALD"?
+Jerold
+10
+
+Names: Beginning with J: What name means "From the name GERALDINE"?
+Jeri
+10
+
+Names: Beginning with J: What name means "From the name JACOB"?
+Jacques
+10
+
+Names: Beginning with J: What name means "From the name JACOB"?
+Jake
+10
+
+Names: Beginning with J: What name means "From the name JACOB"?
+Jeb
+10
+
+Names: Beginning with J: What name means "From the name JAMES"?
+Jaime
+10
+
+Names: Beginning with J: What name means "From the name JAMES"?
+Jamie
+10
+
+Names: Beginning with J: What name means "From the name JAMES"?
+Jim
+10
+
+Names: Beginning with J: What name means "From the name JAMES"?
+Jimmy
+10
+
+Names: Beginning with J: What name means "From the name JANE"?
+Jana
+10
+
+Names: Beginning with J: What name means "From the name JANE"?
+Janine
+10
+
+Names: Beginning with J: What name means "From the name JANE"?
+Jean
+10
+
+Names: Beginning with J: What name means "From the name JANE"?
+Jeanne
+10
+
+Names: Beginning with J: What name means "From the name JANET"?
+Jan
+10
+
+Names: Beginning with J: What name means "From the name JARED"?
+Jarrett
+10
+
+Names: Beginning with J: What name means "From the name JEFFREY"?
+Jeff
+10
+
+Names: Beginning with J: What name means "From the name JENNIFER"?
+Jenny
+10
+
+Names: Beginning with J: What name means "From the name JEREMY"?
+Jeremiah
+10
+
+Names: Beginning with J: What name means "From the name JESSICA"?
+Jess
+10
+
+Names: Beginning with J: What name means "From the name JESSICA"?
+Jessie
+10
+
+Names: Beginning with J: What name means "From the name JEWEL"?
+Jewell
+10
+
+Names: Beginning with J: What name means "From the name JOANNE"?
+Joan
+10
+
+Names: Beginning with J: What name means "From the name JOANNE"?
+Joann
+10
+
+Names: Beginning with J: What name means "From the name JOANNE"?
+Joanna
+10
+
+Names: Beginning with J: What name means "From the name JOANNE"?
+Juanita
+10
+
+Names: Beginning with J: What name means "From the name JOHN"?
+Jack
+10
+
+Names: Beginning with J: What name means "From the name JOHN"?
+Johnny
+10
+
+Names: Beginning with J: What name means "From the name JOHN"?
+Jon
+10
+
+Names: Beginning with J: What name means "From the name JOHN"?
+Jonathan
+10
+
+Names: Beginning with J: What name means "From the name JOHN"?
+Jonny
+10
+
+Names: Beginning with J: What name means "From the name JOHN"?
+Juan
+10
+
+Names: Beginning with J: What name means "From the name JOSEPH"?
+Joe
+10
+
+Names: Beginning with J: What name means "From the name JOSEPH"?
+Joey
+10
+
+Names: Beginning with J: What name means "From the name JOSEPH"?
+Jose
+10
+
+Names: Beginning with J: What name means "From the name JOSHUA"?
+Josh
+10
+
+Names: Beginning with J: What name means "From the name JUDITH"?
+Jude
+10
+
+Names: Beginning with J: What name means "From the name JUDITH"?
+Judy
+10
+
+Names: Beginning with J: What name means "From the name JULIA & ANNE"?
+Julianna
+10
+
+Names: Beginning with J: What name means "From the name JULIA & ANNE"?
+Julianne
+10
+
+Names: Beginning with J: What name means "From the name JULIA"?
+Julie
+10
+
+Names: Beginning with J: What name means "From the name JULIA"?
+July
+10
+
+Names: Beginning with J: What name means "From the name JUSTIN"?
+Justine
+10
+
+Names: Beginning with J: What name means "Genesis"?
+Jenis
+10
+
+Names: Beginning with J: What name means "Gift of Peace"?
+Jeffrey
+10
+
+Names: Beginning with J: What name means "Girl/Sweetheart"?
+Jill
+10
+
+Names: Beginning with J: What name means "God exists"?
+Jesse
+10
+
+Names: Beginning with J: What name means "God Has Heard"?
+Jaden
+10
+
+Names: Beginning with J: What name means "God Has Heard"?
+Jadon
+10
+
+Names: Beginning with J: What name means "God has Heard"?
+Jadyn
+10
+
+Names: Beginning with J: What name means "God has Heard"?
+Jayden
+10
+
+Names: Beginning with J: What name means "God is beneficent"?
+Juana
+10
+
+Names: Beginning with J: What name means "God is Gracious, Little Jane"?
+Janelle
+10
+
+Names: Beginning with J: What name means "God is Gracious, Merciful"?
+John
+10
+
+Names: Beginning with J: What name means "God is Gracious"?
+Janette
+10
+
+Names: Beginning with J: What name means "God is Gracious"?
+Jania
+10
+
+Names: Beginning with J: What name means "God is Gracious"?
+Janice
+10
+
+Names: Beginning with J: What name means "God is Gracious"?
+Jeanine
+10
+
+Names: Beginning with J: What name means "God is Gracious"?
+Jens
+10
+
+Names: Beginning with J: What name means "God is Gracious"?
+Jensen
+10
+
+Names: Beginning with J: What name means "God is Gracious"?
+Joanne
+10
+
+Names: Beginning with J: What name means "God is Gracious"?
+Johanna
+10
+
+Names: Beginning with J: What name means "God is Gracious"?
+Jonco
+10
+
+Names: Beginning with J: What name means "God is Willing"?
+Joel
+10
+
+Names: Beginning with J: What name means "God is Willing"?
+Joelle
+10
+
+Names: Beginning with J: What name means "God Saves"?
+Joshwa
+10
+
+Names: Beginning with J: What name means "God Will Add"?
+Josie
+10
+
+Names: Beginning with J: What name means "God Will Help"?
+Jesus
+10
+
+Names: Beginning with J: What name means "God will Increase"?
+Josef
+10
+
+Names: Beginning with J: What name means "God will Increase"?
+Joseph
+10
+
+Names: Beginning with J: What name means "God will increase"?
+Josephine
+10
+
+Names: Beginning with J: What name means "God Will Uplift"?
+Jeremy
+10
+
+Names: Beginning with J: What name means "Gracious, merciful"?
+Jane
+10
+
+Names: Beginning with J: What name means "Great"?
+Jalila
+10
+
+Names: Beginning with J: What name means "Green Gemstone"?
+Jade
+10
+
+Names: Beginning with J: What name means "Handsome"?
+Jamal
+10
+
+Names: Beginning with J: What name means "Handsome"?
+Jamar
+10
+
+Names: Beginning with J: What name means "Handsome"?
+Jamil
+10
+
+Names: Beginning with J: What name means "Happy"?
+Jabulani
+10
+
+Names: Beginning with J: What name means "Happy"?
+Jovita
+10
+
+Names: Beginning with J: What name means "He Expands"?
+Japheth
+10
+
+Names: Beginning with J: What name means "Healer"?
+Jason
+10
+
+Names: Beginning with J: What name means "Heap of Love"?
+Juji
+10
+
+Names: Beginning with J: What name means "Held By the Heel"?
+Jacob
+10
+
+Names: Beginning with J: What name means "Holy Man"?
+Jeroen
+10
+
+Names: Beginning with J: What name means "Holy Man"?
+Jerom
+10
+
+Names: Beginning with J: What name means "Holy Man"?
+Jerommeke
+10
+
+Names: Beginning with J: What name means "Holy"?
+Jerry
+10
+
+Names: Beginning with J: What name means "I Love"?
+Jaimie
+10
+
+Names: Beginning with J: What name means "Impure"?
+Jezebel
+10
+
+Names: Beginning with J: What name means "Inheritance"?
+Jerusha
+10
+
+Names: Beginning with J: What name means "Jade"?
+Jadzia
+10
+
+Names: Beginning with J: What name means "James"?
+Jayme
+10
+
+Names: Beginning with J: What name means "Jehovah Saves"?
+Joshua
+10
+
+Names: Beginning with J: What name means "Jet Black Gem"?
+Jett
+10
+
+Names: Beginning with J: What name means "Joy"?
+Jewel
+10
+
+Names: Beginning with J: What name means "Joy"?
+Joie
+10
+
+Names: Beginning with J: What name means "Joy"?
+Joy
+10
+
+Names: Beginning with J: What name means "Joyful One"?
+Joylyn
+10
+
+Names: Beginning with J: What name means "Just or True"?
+Justin
+10
+
+Names: Beginning with J: What name means "Just"?
+Justise
+10
+
+Names: Beginning with J: What name means "Light Hearted"?
+Jocelyn
+10
+
+Names: Beginning with J: What name means "Magnetic"?
+Ja
+10
+
+Names: Beginning with J: What name means "Majestic"?
+Jovan
+10
+
+Names: Beginning with J: What name means "Majestic"?
+Jovanna
+10
+
+Names: Beginning with J: What name means "Majestic"?
+Jovianne
+10
+
+Names: Beginning with J: What name means "Medicine Man"?
+Jabilo
+10
+
+Names: Beginning with J: What name means "Merry"?
+Joyce
+10
+
+Names: Beginning with J: What name means "Moon City"?
+Jericho
+10
+
+Names: Beginning with J: What name means "Of Holy Name"?
+Jerome
+10
+
+Names: Beginning with J: What name means "Of the World"?
+Jihan
+10
+
+Names: Beginning with J: What name means "One with Reddish Complexion"?
+Jengo
+10
+
+Names: Beginning with J: What name means "Outstanding, Excellent"?
+Jethro
+10
+
+Names: Beginning with J: What name means "Peaceful"?
+Jereni
+10
+
+Names: Beginning with J: What name means "Pet form of JANE"?
+Janet
+10
+
+Names: Beginning with J: What name means "Powerful"?
+Jaali
+10
+
+Names: Beginning with J: What name means "Praise or Jewish Woman"?
+Judith
+10
+
+Names: Beginning with J: What name means "Praised"?
+Jodie
+10
+
+Names: Beginning with J: What name means "Praised"?
+Jud
+10
+
+Names: Beginning with J: What name means "Praised"?
+Judah
+10
+
+Names: Beginning with J: What name means "Praised"?
+Judd
+10
+
+Names: Beginning with J: What name means "Pretty"?
+Jola
+10
+
+Names: Beginning with J: What name means "Pretty"?
+Jolie
+10
+
+Names: Beginning with J: What name means "Prominent"?
+Jael
+10
+
+Names: Beginning with J: What name means "Purple"?
+Jacinta
+10
+
+Names: Beginning with J: What name means "Ram"?
+Jubal
+10
+
+Names: Beginning with J: What name means "Related by Blood"?
+Jira
+10
+
+Names: Beginning with J: What name means "Ruler, Spear Thrower"?
+Jerica
+10
+
+Names: Beginning with J: What name means "Ruler"?
+Jared
+10
+
+Names: Beginning with J: What name means "Semi-precious stone"?
+Jasper
+10
+
+Names: Beginning with J: What name means "She will increase"?
+Jolene
+10
+
+Names: Beginning with J: What name means "Short for JOSEPH"?
+Jody
+10
+
+Names: Beginning with J: What name means "Short form of JACOB or JOHN"?
+Jock
+10
+
+Names: Beginning with J: What name means "Slavic form of GERTRUDE"?
+Jara
+10
+
+Names: Beginning with J: What name means "Small Bird"?
+Jenna
+10
+
+Names: Beginning with J: What name means "Soft-haired, youthful"?
+Julia
+10
+
+Names: Beginning with J: What name means "Soft-haired"?
+Juliana
+10
+
+Names: Beginning with J: What name means "Soft-haired"?
+Juliet
+10
+
+Names: Beginning with J: What name means "Son of JACK"?
+Jackson
+10
+
+Names: Beginning with J: What name means "Son of Japheth"?
+Javen
+10
+
+Names: Beginning with J: What name means "Son of Jeffrey"?
+Jefferson
+10
+
+Names: Beginning with J: What name means "Son of Jud"?
+Judson
+10
+
+Names: Beginning with J: What name means "Supplant"?
+Jacoba
+10
+
+Names: Beginning with J: What name means "Supplanter"?
+James
+10
+
+Names: Beginning with J: What name means "Supplanter"?
+Jocelin
+10
+
+Names: Beginning with J: What name means "Tenderness"?
+Jin
+10
+
+Names: Beginning with J: What name means "The one God loves"?
+Jorryn
+10
+
+Names: Beginning with J: What name means "The Second Male"?
+Jiro
+10
+
+Names: Beginning with J: What name means "The Young, Child"?
+Junior
+10
+
+Names: Beginning with J: What name means "To Flow, Descend"?
+Jordan
+10
+
+Names: Beginning with J: What name means "To Make Known"?
+Julisha
+10
+
+Names: Beginning with J: What name means "To Protect"?
+Jaclyn
+10
+
+Names: Beginning with J: What name means "To Protect"?
+Jacqueline
+10
+
+Names: Beginning with J: What name means "Tributary Lord"?
+Jariath
+10
+
+Names: Beginning with J: What name means "Truth"?
+Jun
+10
+
+Names: Beginning with J: What name means "Vigilant Watchman"?
+Jorn
+10
+
+Names: Beginning with J: What name means "Wealthy"?
+Jessica
+10
+
+Names: Beginning with J: What name means "White Wave"?
+Jennie
+10
+
+Names: Beginning with J: What name means "White Wave"?
+Jennifer
+10
+
+Names: Beginning with J: What name means "Wise"?
+Jada
+10
+
+Names: Beginning with J: What name means "Youthful"?
+Jillian
+10
+
+Names: Beginning with J: What name means "Youthful"?
+Jules
+10
+
+Names: Beginning with J: What name means "Youthful"?
+Julian
+10
+
+Names: Beginning with J: What name means "Youthful"?
+Julinka
+10
+
+Names: Beginning with J: What name means "Youthful"?
+Julius
+10
+
+Names: Beginning with K: What name means "A Church"?
+Kirby
+10
+
+Names: Beginning with K: What name means "A Crown"?
+Ketara
+10
+
+Names: Beginning with K: What name means "A Fountain"?
+Kelda
+10
+
+Names: Beginning with K: What name means "A Marshland"?
+Kerr
+10
+
+Names: Beginning with K: What name means "A Raven"?
+Kanga
+10
+
+Names: Beginning with K: What name means "A Town of Celts"?
+Kelton
+10
+
+Names: Beginning with K: What name means "A Young Lioness"?
+Kefira
+10
+
+Names: Beginning with K: What name means "Amaranth Blossoms"?
+Kirsi
+10
+
+Names: Beginning with K: What name means "Animal Horn"?
+Kenya
+10
+
+Names: Beginning with K: What name means "Annointed"?
+Kiersten
+10
+
+Names: Beginning with K: What name means "Anointed"?
+Karston
+10
+
+Names: Beginning with K: What name means "Arrived in Autumn"?
+Karif
+10
+
+Names: Beginning with K: What name means "Ash"?
+Kayonga
+10
+
+Names: Beginning with K: What name means "Bear"?
+Kuma
+10
+
+Names: Beginning with K: What name means "Beautiful"?
+Kennice
+10
+
+Names: Beginning with K: What name means "Beautiful"?
+Kitoko
+10
+
+Names: Beginning with K: What name means "Beauty"?
+Keely
+10
+
+Names: Beginning with K: What name means "Beggar"?
+Kesin
+10
+
+Names: Beginning with K: What name means "Beloved"?
+Kalila
+10
+
+Names: Beginning with K: What name means "benevolent"?
+Khiry
+10
+
+Names: Beginning with K: What name means "Black Haired"?
+Keira
+10
+
+Names: Beginning with K: What name means "Black"?
+Keir
+10
+
+Names: Beginning with K: What name means "Blackbird"?
+Kass
+10
+
+Names: Beginning with K: What name means "Blessed Event"?
+Kaloosh
+10
+
+Names: Beginning with K: What name means "Blessed"?
+Keitaro
+10
+
+Names: Beginning with K: What name means "Blessing"?
+Keiko
+10
+
+Names: Beginning with K: What name means "Blond, White-haired"?
+Kenyon
+10
+
+Names: Beginning with K: What name means "Braid"?
+Kumi
+10
+
+Names: Beginning with K: What name means "Braid"?
+Kumiko
+10
+
+Names: Beginning with K: What name means "Brave"?
+Keena
+10
+
+Names: Beginning with K: What name means "Bright White"?
+Kent
+10
+
+Names: Beginning with K: What name means "Bright, Clear"?
+Kalea
+10
+
+Names: Beginning with K: What name means "Bright"?
+Kenaz
+10
+
+Names: Beginning with K: What name means "Brown Hills"?
+Kiona
+10
+
+Names: Beginning with K: What name means "Buying"?
+Kaula
+10
+
+Names: Beginning with K: What name means "Ceremonial Attendant"?
+Kamilia
+10
+
+Names: Beginning with K: What name means "Chestnut"?
+Kuri
+10
+
+Names: Beginning with K: What name means "Chief"?
+Kelii
+10
+
+Names: Beginning with K: What name means "Chief"?
+Kenadia
+10
+
+Names: Beginning with K: What name means "Chief"?
+Kynan
+10
+
+Names: Beginning with K: What name means "Child from the Country"?
+Kuniko
+10
+
+Names: Beginning with K: What name means "Child, Kin"?
+Kenna
+10
+
+Names: Beginning with K: What name means "Child"?
+Keiki
+10
+
+Names: Beginning with K: What name means "China"?
+Kina
+10
+
+Names: Beginning with K: What name means "Christ-bearer"?
+Kristen
+10
+
+Names: Beginning with K: What name means "Christ-bearer"?
+Kristine
+10
+
+Names: Beginning with K: What name means "Christbearer"?
+Kristopher
+10
+
+Names: Beginning with K: What name means "Christian, Annointed"?
+Khursten
+10
+
+Names: Beginning with K: What name means "Christian, Annointed"?
+Kristian
+10
+
+Names: Beginning with K: What name means "Christian, Annointed"?
+Krystyn
+10
+
+Names: Beginning with K: What name means "Cinnamon"?
+Kizzy
+10
+
+Names: Beginning with K: What name means "Clever"?
+Kassidy
+10
+
+Names: Beginning with K: What name means "Coal Town"?
+Kolton
+10
+
+Names: Beginning with K: What name means "Conflict"?
+Killian
+10
+
+Names: Beginning with K: What name means "Controller of Anger"?
+Kasim
+10
+
+Names: Beginning with K: What name means "Copper"?
+Kuper
+10
+
+Names: Beginning with K: What name means "Crooked Nose"?
+Kameryn
+10
+
+Names: Beginning with K: What name means "Crowned"?
+Kitra
+10
+
+Names: Beginning with K: What name means "Cured Salmon"?
+Kipling
+10
+
+Names: Beginning with K: What name means "Dark and Mysterious"?
+Kerri
+10
+
+Names: Beginning with K: What name means "Dark Goddess"?
+Kali
+10
+
+Names: Beginning with K: What name means "Dark Haired Child"?
+Kern
+10
+
+Names: Beginning with K: What name means "Dark Princess"?
+Kerry
+10
+
+Names: Beginning with K: What name means "Dear Little One"?
+Karina
+10
+
+Names: Beginning with K: What name means "Derivitive of Leon"?
+Keon
+10
+
+Names: Beginning with K: What name means "Desolate, Arid"?
+Kame
+10
+
+Names: Beginning with K: What name means "Dim. of CASSIUS"?
+Kaz
+10
+
+Names: Beginning with K: What name means "Dog"?
+Kalb
+10
+
+Names: Beginning with K: What name means "Drinking Cup"?
+Kelila
+10
+
+Names: Beginning with K: What name means "Earth"?
+Keb
+10
+
+Names: Beginning with K: What name means "Energy, Black Goddess"?
+Kalli
+10
+
+Names: Beginning with K: What name means "Enormous"?
+Kare
+10
+
+Names: Beginning with K: What name means "Expert"?
+Kovit
+10
+
+Names: Beginning with K: What name means "Faithful"?
+Kostya
+10
+
+Names: Beginning with K: What name means "Family, Kin"?
+Kyna
+10
+
+Names: Beginning with K: What name means "Fate"?
+Karma
+10
+
+Names: Beginning with K: What name means "Fem. form of KYLE"?
+Kyleigh
+10
+
+Names: Beginning with K: What name means "Fem. form of KYLE"?
+Kylie
+10
+
+Names: Beginning with K: What name means "Female Born after 3+ Boys"?
+Kiden
+10
+
+Names: Beginning with K: What name means "Fighter"?
+Kemp
+10
+
+Names: Beginning with K: What name means "First"?
+Kazu
+10
+
+Names: Beginning with K: What name means "Firstborn Daughter"?
+Kande
+10
+
+Names: Beginning with K: What name means "Flames, Fire"?
+Keahi
+10
+
+Names: Beginning with K: What name means "Fog"?
+Kiho
+10
+
+Names: Beginning with K: What name means "Forest"?
+Keita
+10
+
+Names: Beginning with K: What name means "Forgiveness"?
+Kaiya
+10
+
+Names: Beginning with K: What name means "Form of CALEB"?
+Kalin
+10
+
+Names: Beginning with K: What name means "Form of CARRICK"?
+Karik
+10
+
+Names: Beginning with K: What name means "Form of KEENE"?
+Kennan
+10
+
+Names: Beginning with K: What name means "Form of KELLY"?
+Kaley
+10
+
+Names: Beginning with K: What name means "Form of KYLA"?
+Kylia
+10
+
+Names: Beginning with K: What name means "Form of TYLER"?
+Kyler
+10
+
+Names: Beginning with K: What name means "Fragrant Blossom"?
+Kiele
+10
+
+Names: Beginning with K: What name means "Free Man"?
+Kermit
+10
+
+Names: Beginning with K: What name means "Free"?
+Kanoa
+10
+
+Names: Beginning with K: What name means "Friend of Ships"?
+Kelvin
+10
+
+Names: Beginning with K: What name means "Friend"?
+Kalil
+10
+
+Names: Beginning with K: What name means "Friend"?
+Khalil
+10
+
+Names: Beginning with K: What name means "From CORDELL"?
+Kordell
+10
+
+Names: Beginning with K: What name means "From initials K.C"?
+Kacy
+10
+
+Names: Beginning with K: What name means "From Initials K.O"?
+Kayo
+10
+
+Names: Beginning with K: What name means "From KAY and LANA"?
+Kaylana
+10
+
+Names: Beginning with K: What name means "From KAY and LEE also see CHAELI"?
+Kaylee
+10
+
+Names: Beginning with K: What name means "From KEEFER"?
+Keefe
+10
+
+Names: Beginning with K: What name means "From KENDRA"?
+Kiandra
+10
+
+Names: Beginning with K: What name means "From KENT"?
+Kynton
+10
+
+Names: Beginning with K: What name means "From KEVIN"?
+Kevina
+10
+
+Names: Beginning with K: What name means "FROM KHALIL"?
+Kahlilia
+10
+
+Names: Beginning with K: What name means "From QUIANA"?
+Kiana
+10
+
+Names: Beginning with K: What name means "From the Church"?
+Kirk
+10
+
+Names: Beginning with K: What name means "From the Court"?
+Kourtney
+10
+
+Names: Beginning with K: What name means "From the Holy City"?
+Kasi
+10
+
+Names: Beginning with K: What name means "From the name CASPER"?
+Kaspar
+10
+
+Names: Beginning with K: What name means "From the name CATHERINE"?
+Kat
+10
+
+Names: Beginning with K: What name means "From the name CHARLES"?
+Karl
+10
+
+Names: Beginning with K: What name means "From the name CURTIS OR CONRAD"?
+Kurt
+10
+
+Names: Beginning with K: What name means "From the name KAREEM"?
+Karim
+10
+
+Names: Beginning with K: What name means "From the name KATHARINE"?
+Kaethe
+10
+
+Names: Beginning with K: What name means "From the name KEELY"?
+Keelia
+10
+
+Names: Beginning with K: What name means "From the name KELLY"?
+Kellee
+10
+
+Names: Beginning with K: What name means "From the name KELLY"?
+Kelli
+10
+
+Names: Beginning with K: What name means "From the name KENNA"?
+Kendis
+10
+
+Names: Beginning with K: What name means "From the name KENNETH"?
+Ken
+10
+
+Names: Beginning with K: What name means "From the name KENNETH"?
+Kenny
+10
+
+Names: Beginning with K: What name means "From the name KIMBERLY"?
+Kim
+10
+
+Names: Beginning with K: What name means "From the name KIMBERLY"?
+Kimmy
+10
+
+Names: Beginning with K: What name means "From the name KIPLING"?
+Kipp
+10
+
+Names: Beginning with K: What name means "From the name KIRA"?
+Kiri
+10
+
+Names: Beginning with K: What name means "From the name KRISTEN"?
+Kris
+10
+
+Names: Beginning with K: What name means "From the name KRISTEN"?
+Krista
+10
+
+Names: Beginning with K: What name means "From the name KRISTEN"?
+Kristin
+10
+
+Names: Beginning with K: What name means "From the name KRISTEN"?
+Kristina
+10
+
+Names: Beginning with K: What name means "From the name Kyle"?
+Kylene
+10
+
+Names: Beginning with K: What name means "From the town of Kent"?
+Kenton
+10
+
+Names: Beginning with K: What name means "Full of Energy"?
+Kineta
+10
+
+Names: Beginning with K: What name means "Garden Flower"?
+Keeya
+10
+
+Names: Beginning with K: What name means "General"?
+Klitos
+10
+
+Names: Beginning with K: What name means "Generous One"?
+Karimah
+10
+
+Names: Beginning with K: What name means "Gift from God"?
+Kirabo
+10
+
+Names: Beginning with K: What name means "Girl"?
+Kori
+10
+
+Names: Beginning with K: What name means "God is Gracious"?
+Kwanita
+10
+
+Names: Beginning with K: What name means "God is my crown"?
+Katriel
+10
+
+Names: Beginning with K: What name means "God is Strength"?
+Kiah
+10
+
+Names: Beginning with K: What name means "Golden"?
+Kin
+10
+
+Names: Beginning with K: What name means "Good Looking"?
+Kiley
+10
+
+Names: Beginning with K: What name means "Gorgeous WOman"?
+Kenisha
+10
+
+Names: Beginning with K: What name means "Graceful"?
+Karis
+10
+
+Names: Beginning with K: What name means "Gracious"?
+Keyanna
+10
+
+Names: Beginning with K: What name means "Ground Squirrel"?
+Kaikura
+10
+
+Names: Beginning with K: What name means "Handsome, Beautiful"?
+Kevin
+10
+
+Names: Beginning with K: What name means "Handsome"?
+Kenneth
+10
+
+Names: Beginning with K: What name means "Harp"?
+Koto
+10
+
+Names: Beginning with K: What name means "Hawaiian God"?
+Kaili
+10
+
+Names: Beginning with K: What name means "Helmeted Chief"?
+Kenadie
+10
+
+Names: Beginning with K: What name means "Helmeted Chief"?
+Kennedi
+10
+
+Names: Beginning with K: What name means "Her Life"?
+Keisha
+10
+
+Names: Beginning with K: What name means "Hill"?
+Kia
+10
+
+Names: Beginning with K: What name means "Hill"?
+Knox
+10
+
+Names: Beginning with K: What name means "Hollow"?
+Kory
+10
+
+Names: Beginning with K: What name means "Honest Counselor"?
+Koen
+10
+
+Names: Beginning with K: What name means "Honor, Tribute"?
+Kane
+10
+
+Names: Beginning with K: What name means "Honor"?
+Kiet
+10
+
+Names: Beginning with K: What name means "Horn of an Animal"?
+Karna
+10
+
+Names: Beginning with K: What name means "Hunter"?
+Kacela
+10
+
+Names: Beginning with K: What name means "Immortal, Everlasting"?
+Khalida
+10
+
+Names: Beginning with K: What name means "Initals K and C"?
+Kaycee
+10
+
+Names: Beginning with K: What name means "Island of the Ships"?
+Kellsie
+10
+
+Names: Beginning with K: What name means "Island of the Ships"?
+Kelsey
+10
+
+Names: Beginning with K: What name means "Knot"?
+Knut
+10
+
+Names: Beginning with K: What name means "Ladylike"?
+Kyra
+10
+
+Names: Beginning with K: What name means "Ladylike"?
+Kyria
+10
+
+Names: Beginning with K: What name means "Last Born Goddess"?
+Kairos
+10
+
+Names: Beginning with K: What name means "Laurel, Crown"?
+Kailey
+10
+
+Names: Beginning with K: What name means "Laurel, Crown"?
+Kaleigh
+10
+
+Names: Beginning with K: What name means "Lead Cautiously"?
+Keiji
+10
+
+Names: Beginning with K: What name means "Leader in Victory"?
+Klaus
+10
+
+Names: Beginning with K: What name means "Leader of the Warriors"?
+Kimball
+10
+
+Names: Beginning with K: What name means "Leader, Master"?
+Kyros
+10
+
+Names: Beginning with K: What name means "Leaf"?
+Kirra
+10
+
+Names: Beginning with K: What name means "Lean"?
+Keelan
+10
+
+Names: Beginning with K: What name means "Light Skinned"?
+Kenzie
+10
+
+Names: Beginning with K: What name means "Little and Ancient"?
+Keenan
+10
+
+Names: Beginning with K: What name means "Little and Dark"?
+Keiran
+10
+
+Names: Beginning with K: What name means "Little and Womanly"?
+Karli
+10
+
+Names: Beginning with K: What name means "Little Cat, or See CATHERINE"?
+Kitty
+10
+
+Names: Beginning with K: What name means "Little Dark One"?
+Keaira
+10
+
+Names: Beginning with K: What name means "Little Dark One"?
+Kieran
+10
+
+Names: Beginning with K: What name means "Little Lady"?
+Kabibe
+10
+
+Names: Beginning with K: What name means "Little Lady"?
+Kibibe
+10
+
+Names: Beginning with K: What name means "Lord, God"?
+Kyrene
+10
+
+Names: Beginning with K: What name means "Lordly One"?
+Kiril
+10
+
+Names: Beginning with K: What name means "Love"?
+Kiora
+10
+
+Names: Beginning with K: What name means "Lovely"?
+Kyla
+10
+
+Names: Beginning with K: What name means "Loving"?
+Kami
+10
+
+Names: Beginning with K: What name means "Loyal"?
+Kerda
+10
+
+Names: Beginning with K: What name means "Lunar Glow"?
+Konane
+10
+
+Names: Beginning with K: What name means "Maiden"?
+Koren
+10
+
+Names: Beginning with K: What name means "Maiden"?
+Korene
+10
+
+Names: Beginning with K: What name means "Male Born after 3+ Girls"?
+Kenyi
+10
+
+Names: Beginning with K: What name means "Meets World with Happiness"?
+Kioko
+10
+
+Names: Beginning with K: What name means "Mighty Warrior"?
+Kael
+10
+
+Names: Beginning with K: What name means "Mirror"?
+Kagami
+10
+
+Names: Beginning with K: What name means "Mock, Ridicule"?
+Kaseko
+10
+
+Names: Beginning with K: What name means "Moon"?
+Kynthia
+10
+
+Names: Beginning with K: What name means "Most Beautiful One"?
+Kalista
+10
+
+Names: Beginning with K: What name means "Name"?
+Keren
+10
+
+Names: Beginning with K: What name means "Night"?
+Kishi
+10
+
+Names: Beginning with K: What name means "Nine or December"?
+Kenda
+10
+
+Names: Beginning with K: What name means "Noble, Exalted"?
+Kareem
+10
+
+Names: Beginning with K: What name means "Noble, Gentle"?
+Keefer
+10
+
+Names: Beginning with K: What name means "Ocean"?
+Kai
+10
+
+Names: Beginning with K: What name means "Of the Kelts/Celts"?
+Kelly
+10
+
+Names: Beginning with K: What name means "Offspring"?
+Kinsey
+10
+
+Names: Beginning with K: What name means "Old, Ancient"?
+Kedem
+10
+
+Names: Beginning with K: What name means "One who Works for the King"?
+Kalei
+10
+
+Names: Beginning with K: What name means "Path"?
+Keala
+10
+
+Names: Beginning with K: What name means "Perfect"?
+Kamil
+10
+
+Names: Beginning with K: What name means "Place by the Flowing Water"?
+Kelby
+10
+
+Names: Beginning with K: What name means "Poet"?
+Kavi
+10
+
+Names: Beginning with K: What name means "Poet"?
+Kavindra
+10
+
+Names: Beginning with K: What name means "Possession"?
+Kabili
+10
+
+Names: Beginning with K: What name means "Powerful"?
+Kabira
+10
+
+Names: Beginning with K: What name means "Powerful"?
+Kana
+10
+
+Names: Beginning with K: What name means "Powerful"?
+Kellan
+10
+
+Names: Beginning with K: What name means "Powerful"?
+Kellen
+10
+
+Names: Beginning with K: What name means "Praise to God"?
+Ksena
+10
+
+Names: Beginning with K: What name means "Prophet"?
+Kapila
+10
+
+Names: Beginning with K: What name means "Pure of Heart"?
+Kari
+10
+
+Names: Beginning with K: What name means "Pure One"?
+Karena
+10
+
+Names: Beginning with K: What name means "Pure, Unsullied"?
+Katina
+10
+
+Names: Beginning with K: What name means "Pure, Unsullied"?
+Kato
+10
+
+Names: Beginning with K: What name means "Pure, Virginal"?
+Kate
+10
+
+Names: Beginning with K: What name means "Pure, Virginal"?
+Katelin
+10
+
+Names: Beginning with K: What name means "Pure, Virginal"?
+Katharine
+10
+
+Names: Beginning with K: What name means "Pure, Virginal"?
+Katherine
+10
+
+Names: Beginning with K: What name means "Pure, Virginal"?
+Kathie
+10
+
+Names: Beginning with K: What name means "Pure, Virginal"?
+Kathleen
+10
+
+Names: Beginning with K: What name means "Pure, Virginal"?
+Kathryn
+10
+
+Names: Beginning with K: What name means "Pure, Virginal"?
+Kathy
+10
+
+Names: Beginning with K: What name means "Pure, Virginal"?
+Katie
+10
+
+Names: Beginning with K: What name means "Pure, Virginal"?
+Katy
+10
+
+Names: Beginning with K: What name means "Pure"?
+Kaitlyn
+10
+
+Names: Beginning with K: What name means "Pure"?
+Karen
+10
+
+Names: Beginning with K: What name means "Pure"?
+Kassia
+10
+
+Names: Beginning with K: What name means "Pure"?
+Katalin
+10
+
+Names: Beginning with K: What name means "Pure"?
+Katia
+10
+
+Names: Beginning with K: What name means "Pure"?
+Katrina
+10
+
+Names: Beginning with K: What name means "Pure"?
+Kolina
+10
+
+Names: Beginning with K: What name means "Quiet Child"?
+Kiyoshi
+10
+
+Names: Beginning with K: What name means "Rainfall"?
+Kisha
+10
+
+Names: Beginning with K: What name means "Ray"?
+Kiran
+10
+
+Names: Beginning with K: What name means "Rejoice"?
+Kay
+10
+
+Names: Beginning with K: What name means "Rejoicer, Waterfall Pool"?
+Kaelin
+10
+
+Names: Beginning with K: What name means "Rich"?
+Katungi
+10
+
+Names: Beginning with K: What name means "Rosebud"?
+Kalyca
+10
+
+Names: Beginning with K: What name means "Rosebud"?
+Kineks
+10
+
+Names: Beginning with K: What name means "Rosy Reflection in the Sky"?
+Kawena
+10
+
+Names: Beginning with K: What name means "Royal Meadow"?
+Kenley
+10
+
+Names: Beginning with K: What name means "Royal One"?
+Kyne
+10
+
+Names: Beginning with K: What name means "Royal"?
+Kennedy
+10
+
+Names: Beginning with K: What name means "Ruler"?
+Kimberly
+10
+
+Names: Beginning with K: What name means "Ruler"?
+King
+10
+
+Names: Beginning with K: What name means "Sacred Dancer"?
+Kachina
+10
+
+Names: Beginning with K: What name means "Sandy, White"?
+Kei
+10
+
+Names: Beginning with K: What name means "Servant"?
+Kadeem
+10
+
+Names: Beginning with K: What name means "She Who is Without Equal"?
+Kimi
+10
+
+Names: Beginning with K: What name means "Short for names beginning with K"?
+Kiki
+10
+
+Names: Beginning with K: What name means "Small, Dark"?
+Kiara
+10
+
+Names: Beginning with K: What name means "Someone Who Comes from Nowhere"?
+Kione
+10
+
+Names: Beginning with K: What name means "Son of Eagan, Fiery"?
+Keagan
+10
+
+Names: Beginning with K: What name means "Son of Eagan, Fiery"?
+Keegan
+10
+
+Names: Beginning with K: What name means "Song, Songstress"?
+Karmina
+10
+
+Names: Beginning with K: What name means "Sparrow Hawk"?
+Kele
+10
+
+Names: Beginning with K: What name means "Spirit Guide, Protector"?
+Kamali
+10
+
+Names: Beginning with K: What name means "Stork"?
+Koko
+10
+
+Names: Beginning with K: What name means "Strong and Womanly"?
+Karla
+10
+
+Names: Beginning with K: What name means "Strong"?
+Kaori
+10
+
+Names: Beginning with K: What name means "Successor"?
+Khalipha
+10
+
+Names: Beginning with K: What name means "Sun"?
+Kira
+10
+
+Names: Beginning with K: What name means "Supreme Chief"?
+Kiral
+10
+
+Names: Beginning with K: What name means "Sweet Melody"?
+Kara
+10
+
+Names: Beginning with K: What name means "Tenth"?
+Kalkin
+10
+
+Names: Beginning with K: What name means "Thanks"?
+Kuron
+10
+
+Names: Beginning with K: What name means "The Annointed"?
+Kirsten
+10
+
+Names: Beginning with K: What name means "The Heavens"?
+Kalani
+10
+
+Names: Beginning with K: What name means "The King"?
+Kiros
+10
+
+Names: Beginning with K: What name means "the Life"?
+Keola
+10
+
+Names: Beginning with K: What name means "The Loved One"?
+Kendi
+10
+
+Names: Beginning with K: What name means "The Perfect One"?
+Kamal
+10
+
+Names: Beginning with K: What name means "The Sun"?
+Kalinda
+10
+
+Names: Beginning with K: What name means "The Supplanter"?
+Kimo
+10
+
+Names: Beginning with K: What name means "The Wind"?
+Keith
+10
+
+Names: Beginning with K: What name means "Towars the East"?
+Kedma
+10
+
+Names: Beginning with K: What name means "Translation of Kitty"?
+Kita
+10
+
+Names: Beginning with K: What name means "Treasure House"?
+Kura
+10
+
+Names: Beginning with K: What name means "Tree Branches"?
+Kozue
+10
+
+Names: Beginning with K: What name means "Trees"?
+Karmiti
+10
+
+Names: Beginning with K: What name means "Tyrant"?
+Karan
+10
+
+Names: Beginning with K: What name means "Valley of the River Kent"?
+Kendall
+10
+
+Names: Beginning with K: What name means "Victorious Warrior"?
+Kolya
+10
+
+Names: Beginning with K: What name means "Vigilant Watchman"?
+Krikor
+10
+
+Names: Beginning with K: What name means "Warrior or Warriorwoman"?
+Kelley
+10
+
+Names: Beginning with K: What name means "Water Baby, Magical"?
+Kendra
+10
+
+Names: Beginning with K: What name means "Wave"?
+Kinipela
+10
+
+Names: Beginning with K: What name means "Wing"?
+Kinfe
+10
+
+Names: Beginning with K: What name means "Wise Child"?
+Kaya
+10
+
+Names: Beginning with K: What name means "Wise Child"?
+Kayla
+10
+
+Names: Beginning with K: What name means "Wise, Learned"?
+Keene
+10
+
+Names: Beginning with K: What name means "Wood"?
+Kyle
+10
+
+Names: Beginning with K: What name means "Wooden Post"?
+Keran
+10
+
+Names: Beginning with K: What name means "Work"?
+Kazi
+10
+
+Names: Beginning with K: What name means "World Ruler"?
+Konala
+10
+
+Names: Beginning with K: What name means "Worthy"?
+Kata
+10
+
+Names: Beginning with K: What name means "Writer"?
+Kateb
+10
+
+Names: Beginning with K: What name means "Young Ceremonial Attendant"?
+Kamella
+10
+
+Names: Beginning with L: What name means "A distant Place"?
+Lana
+10
+
+Names: Beginning with L: What name means "A Distant Place"?
+Lonna
+10
+
+Names: Beginning with L: What name means "A Division"?
+Latham
+10
+
+Names: Beginning with L: What name means "A fork from river or glen"?
+Lyre
+10
+
+Names: Beginning with L: What name means "A Harp or Lyre"?
+Lyris
+10
+
+Names: Beginning with L: What name means "A Lion"?
+Leo
+10
+
+Names: Beginning with L: What name means "A Long, Narrow Town"?
+Langston
+10
+
+Names: Beginning with L: What name means "A Maiden from Lydia, Greece"?
+Lydia
+10
+
+Names: Beginning with L: What name means "A Maiden from Lydia, Greece"?
+Lydie
+10
+
+Names: Beginning with L: What name means "A Word"?
+Lex
+10
+
+Names: Beginning with L: What name means "Alone, Solitude"?
+Lorna
+10
+
+Names: Beginning with L: What name means "Angry Disregard"?
+Liliha
+10
+
+Names: Beginning with L: What name means "Army or Soldier"?
+Lasca
+10
+
+Names: Beginning with L: What name means "Attendant"?
+Laddie
+10
+
+Names: Beginning with L: What name means "Attendant"?
+Lanza
+10
+
+Names: Beginning with L: What name means "Baker"?
+Leavitt
+10
+
+Names: Beginning with L: What name means "Barn"?
+Lathrop
+10
+
+Names: Beginning with L: What name means "Beautiful Light"?
+Lucinda
+10
+
+Names: Beginning with L: What name means "Beautiful Snow"?
+Lixue
+10
+
+Names: Beginning with L: What name means "Beautiful"?
+Lewa
+10
+
+Names: Beginning with L: What name means "Beloved by All"?
+Lida
+10
+
+Names: Beginning with L: What name means "Beloved"?
+Leif
+10
+
+Names: Beginning with L: What name means "Beloved"?
+Lowell
+10
+
+Names: Beginning with L: What name means "Bluish Purple"?
+Lilac
+10
+
+Names: Beginning with L: What name means "Brave Man / Lion Man"?
+Leander
+10
+
+Names: Beginning with L: What name means "Bright Land"?
+Lamia
+10
+
+Names: Beginning with L: What name means "Bright, Light"?
+Lucien
+10
+
+Names: Beginning with L: What name means "Bright, Light"?
+Lukas
+10
+
+Names: Beginning with L: What name means "Bringer of light"?
+Luca
+10
+
+Names: Beginning with L: What name means "Bringer of Light"?
+Lucas
+10
+
+Names: Beginning with L: What name means "Bringer of Light"?
+Lucio
+10
+
+Names: Beginning with L: What name means "Bud"?
+Liko
+10
+
+Names: Beginning with L: What name means "By the Island"?
+Lundy
+10
+
+Names: Beginning with L: What name means "Camp Near Stream"?
+Lyndsey
+10
+
+Names: Beginning with L: What name means "Canoe Maker"?
+Leanne
+10
+
+Names: Beginning with L: What name means "Cheerful"?
+Larissa
+10
+
+Names: Beginning with L: What name means "City in Belgium"?
+Louvain
+10
+
+Names: Beginning with L: What name means "Combine Forces"?
+Levia
+10
+
+Names: Beginning with L: What name means "Consecrated to God"?
+Lisa
+10
+
+Names: Beginning with L: What name means "Consecrated to God"?
+Lise
+10
+
+Names: Beginning with L: What name means "Consecrated to God"?
+Lisette
+10
+
+Names: Beginning with L: What name means "Consecreted to God"?
+Lesa
+10
+
+Names: Beginning with L: What name means "Crowned with Laurel"?
+Larya
+10
+
+Names: Beginning with L: What name means "Crowned with Laurel"?
+Laurel
+10
+
+Names: Beginning with L: What name means "Crowned with Laurel"?
+Lauren
+10
+
+Names: Beginning with L: What name means "Crowned with Laurel"?
+Laurent
+10
+
+Names: Beginning with L: What name means "Crowned with Laurel"?
+Lorand
+10
+
+Names: Beginning with L: What name means "Crowned with Laurel"?
+Lorant
+10
+
+Names: Beginning with L: What name means "Crowned with Laurel"?
+Lorena
+10
+
+Names: Beginning with L: What name means "Crowned with Laurel"?
+Lori
+10
+
+Names: Beginning with L: What name means "Crowned with Laurel"?
+Lorie
+10
+
+Names: Beginning with L: What name means "Crowned with Laurel"?
+Lorin
+10
+
+Names: Beginning with L: What name means "Daring Ones"?
+Leopold
+10
+
+Names: Beginning with L: What name means "Dark Beauty"?
+Layla
+10
+
+Names: Beginning with L: What name means "Dark Beauty"?
+Leila
+10
+
+Names: Beginning with L: What name means "Dark"?
+Lamya
+10
+
+Names: Beginning with L: What name means "Daughter of TANYA"?
+Latanya
+10
+
+Names: Beginning with L: What name means "Defender of Mankind"?
+Lexine
+10
+
+Names: Beginning with L: What name means "Delicate"?
+Loman
+10
+
+Names: Beginning with L: What name means "Determined Guardian"?
+Liam
+10
+
+Names: Beginning with L: What name means "Devoted to God"?
+Lemuel
+10
+
+Names: Beginning with L: What name means "Dim. of LORETTA"?
+Lorretta
+10
+
+Names: Beginning with L: What name means "Dove"?
+Lalasa
+10
+
+Names: Beginning with L: What name means "Dragon"?
+Long
+10
+
+Names: Beginning with L: What name means "Fair Speech"?
+Lelia
+10
+
+Names: Beginning with L: What name means "Faithful"?
+Leal
+10
+
+Names: Beginning with L: What name means "Faithful"?
+Loyal
+10
+
+Names: Beginning with L: What name means "Famous Holy Man"?
+Lajos
+10
+
+Names: Beginning with L: What name means "Famous in Battle"?
+Louis
+10
+
+Names: Beginning with L: What name means "Famous in War"?
+Loring
+10
+
+Names: Beginning with L: What name means "Famous Victories"?
+Ludwig
+10
+
+Names: Beginning with L: What name means "Fatigued"?
+Lea
+10
+
+Names: Beginning with L: What name means "Female Ruler"?
+Leah
+10
+
+Names: Beginning with L: What name means "Female Version of Lane, an English Place Name"?
+Lanelle
+10
+
+Names: Beginning with L: What name means "Female Warrior"?
+Luana
+10
+
+Names: Beginning with L: What name means "Feminine form of LOUIS"?
+Lois
+10
+
+Names: Beginning with L: What name means "Feminine form of LOUIS"?
+Louisa
+10
+
+Names: Beginning with L: What name means "Field Meadow"?
+Lee
+10
+
+Names: Beginning with L: What name means "Flaxen Colored"?
+Linus
+10
+
+Names: Beginning with L: What name means "Flexible"?
+Lyndon
+10
+
+Names: Beginning with L: What name means "Flint Stone"?
+Lonato
+10
+
+Names: Beginning with L: What name means "Flower Name"?
+Lan
+10
+
+Names: Beginning with L: What name means "Forest"?
+Locke
+10
+
+Names: Beginning with L: What name means "Form of CARLOTA"?
+Lola
+10
+
+Names: Beginning with L: What name means "Form of Eulalie"?
+Lali
+10
+
+Names: Beginning with L: What name means "Form of JOAN"?
+Lawanda
+10
+
+Names: Beginning with L: What name means "Form of LAZARUS"?
+Laszlo
+10
+
+Names: Beginning with L: What name means "Form of LORRAINE"?
+Laraine
+10
+
+Names: Beginning with L: What name means "Form of LUNA"?
+Lunette
+10
+
+Names: Beginning with L: What name means "Form of RACHEL"?
+Lahela
+10
+
+Names: Beginning with L: What name means "Fortress of the Moon"?
+London
+10
+
+Names: Beginning with L: What name means "Freedom"?
+Liberty
+10
+
+Names: Beginning with L: What name means "From ALICIA"?
+Lecea
+10
+
+Names: Beginning with L: What name means "From LANGSTON"?
+Lankston
+10
+
+Names: Beginning with L: What name means "From LAURA"?
+Loura
+10
+
+Names: Beginning with L: What name means "From Leicester"?
+Lester
+10
+
+Names: Beginning with L: What name means "From LEILA"?
+Laleh
+10
+
+Names: Beginning with L: What name means "From LETICIA"?
+Latisha
+10
+
+Names: Beginning with L: What name means "From LOURA and ANA"?
+Lourana
+10
+
+Names: Beginning with L: What name means "From the name ALEXANDER"?
+Lexi
+10
+
+Names: Beginning with L: What name means "From the name CHARLOTTE"?
+Lotta
+10
+
+Names: Beginning with L: What name means "From the name CHARLOTTE"?
+Lotte
+10
+
+Names: Beginning with L: What name means "From the name ELIZABETH"?
+Libba
+10
+
+Names: Beginning with L: What name means "From the name ELIZABETH"?
+Libby
+10
+
+Names: Beginning with L: What name means "From the name ELIZABETH"?
+Lisbet
+10
+
+Names: Beginning with L: What name means "From the name ELIZABETH"?
+Liz
+10
+
+Names: Beginning with L: What name means "From the name ELIZABETH"?
+Liza
+10
+
+Names: Beginning with L: What name means "From the name ELIZABETH"?
+Lizbeth
+10
+
+Names: Beginning with L: What name means "From the name GUADALUPE"?
+Lupe
+10
+
+Names: Beginning with L: What name means "From the name GUADALUPE"?
+Lupita
+10
+
+Names: Beginning with L: What name means "From the name JOHN"?
+Lajuan
+10
+
+Names: Beginning with L: What name means "From the name JOHN"?
+Lajuana
+10
+
+Names: Beginning with L: What name means "From the name LALE"?
+Lalo
+10
+
+Names: Beginning with L: What name means "From the name LALE"?
+Lulli
+10
+
+Names: Beginning with L: What name means "From the name LANDRY"?
+Landers
+10
+
+Names: Beginning with L: What name means "From the name LANDRY"?
+Landis
+10
+
+Names: Beginning with L: What name means "From the name LANG"?
+Langer
+10
+
+Names: Beginning with L: What name means "From the name LARISSA"?
+Lacey
+10
+
+Names: Beginning with L: What name means "From the name LARISSA"?
+Lacy
+10
+
+Names: Beginning with L: What name means "From the name LAURA"?
+Laurie
+10
+
+Names: Beginning with L: What name means "From the name LAURA"?
+Lora
+10
+
+Names: Beginning with L: What name means "From the name LAURA"?
+Lorraine
+10
+
+Names: Beginning with L: What name means "From the name LAWRENCE"?
+Larry
+10
+
+Names: Beginning with L: What name means "From the name LAWRENCE"?
+Lars
+10
+
+Names: Beginning with L: What name means "From the name LAWRENCE"?
+Laurence
+10
+
+Names: Beginning with L: What name means "From the name LAWRENCE"?
+Lawrencia
+10
+
+Names: Beginning with L: What name means "From the name LAWRENCE"?
+Lorenzo
+10
+
+Names: Beginning with L: What name means "From the name LAWRENCE"?
+Lorne
+10
+
+Names: Beginning with L: What name means "From the name LAYNE"?
+Layne
+10
+
+Names: Beginning with L: What name means "From the name LEAH"?
+Lia
+10
+
+Names: Beginning with L: What name means "From the name LEE"?
+Leigh
+10
+
+Names: Beginning with L: What name means "From the name LEON"?
+Lionel
+10
+
+Names: Beginning with L: What name means "From the name LEONA"?
+Lenora
+10
+
+Names: Beginning with L: What name means "From the name LEONA"?
+Leola
+10
+
+Names: Beginning with L: What name means "From the name LEONA"?
+Leoma
+10
+
+Names: Beginning with L: What name means "From the name LEONA"?
+Leonora
+10
+
+Names: Beginning with L: What name means "From the name LEONARD"?
+Leon
+10
+
+Names: Beginning with L: What name means "From the name LESTER"?
+Les
+10
+
+Names: Beginning with L: What name means "From the name LEVI"?
+Lavey
+10
+
+Names: Beginning with L: What name means "From the name LILAC"?
+Lilah
+10
+
+Names: Beginning with L: What name means "From the name LILLIAN"?
+Lilli
+10
+
+Names: Beginning with L: What name means "From the name LILLIAN"?
+Lily
+10
+
+Names: Beginning with L: What name means "From the name LINDA"?
+Lin
+10
+
+Names: Beginning with L: What name means "From the name LINDA"?
+Lyn
+10
+
+Names: Beginning with L: What name means "From the name LINDA"?
+Lynda
+10
+
+Names: Beginning with L: What name means "From the name LINDA"?
+Lynette
+10
+
+Names: Beginning with L: What name means "From the name LINDA"?
+Lynn
+10
+
+Names: Beginning with L: What name means "From the name LINDA"?
+Lynne
+10
+
+Names: Beginning with L: What name means "From the name LINDSEY OR LINDA"?
+Lindy
+10
+
+Names: Beginning with L: What name means "From the name LINDSEY"?
+Lindsay
+10
+
+Names: Beginning with L: What name means "From the name LISA"?
+Lysa
+10
+
+Names: Beginning with L: What name means "From the name LISLE"?
+Lyle
+10
+
+Names: Beginning with L: What name means "From the name LOUIS"?
+Lewis
+10
+
+Names: Beginning with L: What name means "From the name LOUIS"?
+Lou
+10
+
+Names: Beginning with L: What name means "From the name LOUIS"?
+Luis
+10
+
+Names: Beginning with L: What name means "From the name LOUISA"?
+Louise
+10
+
+Names: Beginning with L: What name means "From the name LOUISA"?
+Lulu
+10
+
+Names: Beginning with L: What name means "From the name LOUISE"?
+Lula
+10
+
+Names: Beginning with L: What name means "From the name LUCILLE OR LUCUS"?
+Lucy
+10
+
+Names: Beginning with L: What name means "From the name LUCILLE"?
+Lucie
+10
+
+Names: Beginning with L: What name means "From the name LUCUS"?
+Luce
+10
+
+Names: Beginning with L: What name means "From the name LUCUS"?
+Lucius
+10
+
+Names: Beginning with L: What name means "From the name LUCUS"?
+Luke
+10
+
+Names: Beginning with L: What name means "From the name LYNDON"?
+Lynde
+10
+
+Names: Beginning with L: What name means "From the name OLIVER"?
+Livvy
+10
+
+Names: Beginning with L: What name means "From the name OLIVIA"?
+Liv
+10
+
+Names: Beginning with L: What name means "From the name OLIVIA"?
+Livi
+10
+
+Names: Beginning with L: What name means "From the name OLIVIA"?
+Livia
+10
+
+Names: Beginning with L: What name means "Full of Light"?
+Lucretia
+10
+
+Names: Beginning with L: What name means "Generous One"?
+Lilo
+10
+
+Names: Beginning with L: What name means "God Has Helped"?
+Lazarus
+10
+
+Names: Beginning with L: What name means "God Will Help"?
+Lazar
+10
+
+Names: Beginning with L: What name means "God Will Help"?
+Lazzaro
+10
+
+Names: Beginning with L: What name means "Good, Fine"?
+Liang
+10
+
+Names: Beginning with L: What name means "Graceful as a Willow"?
+Lian
+10
+
+Names: Beginning with L: What name means "Graceful Willow"?
+Leane
+10
+
+Names: Beginning with L: What name means "Graceful Willow"?
+Leanna
+10
+
+Names: Beginning with L: What name means "Gracious Warrior"?
+Louanna
+10
+
+Names: Beginning with L: What name means "Gracious, Poetic"?
+Leighanna
+10
+
+Names: Beginning with L: What name means "Grassy Plain"?
+Landen
+10
+
+Names: Beginning with L: What name means "Grassy Plain"?
+Landon
+10
+
+Names: Beginning with L: What name means "Greek Goddess"?
+Latona
+10
+
+Names: Beginning with L: What name means "Grey Fortress"?
+Lesley
+10
+
+Names: Beginning with L: What name means "Grey"?
+Lloyd
+10
+
+Names: Beginning with L: What name means "Handsome One"?
+Lonnie
+10
+
+Names: Beginning with L: What name means "Happy"?
+Licia
+10
+
+Names: Beginning with L: What name means "Happy"?
+Lok
+10
+
+Names: Beginning with L: What name means "Harness Maker"?
+Lorimer
+10
+
+Names: Beginning with L: What name means "He who will Free Us"?
+Lysander
+10
+
+Names: Beginning with L: What name means "Head of Household"?
+Laird
+10
+
+Names: Beginning with L: What name means "Heart"?
+Lev
+10
+
+Names: Beginning with L: What name means "Heavenly Flower"?
+Leilani
+10
+
+Names: Beginning with L: What name means "Hidden"?
+Lot
+10
+
+Names: Beginning with L: What name means "Hill"?
+Lyde
+10
+
+Names: Beginning with L: What name means "Hindu God"?
+Latika
+10
+
+Names: Beginning with L: What name means "Idol, Bird"?
+Linette
+10
+
+Names: Beginning with L: What name means "Illumination"?
+Leena
+10
+
+Names: Beginning with L: What name means "Illumination"?
+Lenka
+10
+
+Names: Beginning with L: What name means "Imposter"?
+Lonnit
+10
+
+Names: Beginning with L: What name means "Joined To"?
+Levi
+10
+
+Names: Beginning with L: What name means "Journey"?
+Leeto
+10
+
+Names: Beginning with L: What name means "Joy, Gladness"?
+Letitia
+10
+
+Names: Beginning with L: What name means "King"?
+Loe
+10
+
+Names: Beginning with L: What name means "Lake or Fjord"?
+Lachlan
+10
+
+Names: Beginning with L: What name means "Land"?
+Lancelot
+10
+
+Names: Beginning with L: What name means "Laurel-Crowned"?
+Laura
+10
+
+Names: Beginning with L: What name means "Laurel-Crowned"?
+Lawrence
+10
+
+Names: Beginning with L: What name means "Left-handed"?
+Lefty
+10
+
+Names: Beginning with L: What name means "Light"?
+Lenci
+10
+
+Names: Beginning with L: What name means "Light"?
+Lenore
+10
+
+Names: Beginning with L: What name means "Light"?
+Leora
+10
+
+Names: Beginning with L: What name means "Light"?
+Lina
+10
+
+Names: Beginning with L: What name means "Light"?
+Liora
+10
+
+Names: Beginning with L: What name means "Light"?
+Lucia
+10
+
+Names: Beginning with L: What name means "Light"?
+Lucille
+10
+
+Names: Beginning with L: What name means "Light"?
+Lucus
+10
+
+Names: Beginning with L: What name means "Like A Lion"?
+Leona
+10
+
+Names: Beginning with L: What name means "Like A Lion"?
+Leonard
+10
+
+Names: Beginning with L: What name means "Like a Lion"?
+Llewellyn
+10
+
+Names: Beginning with L: What name means "Like the Spring"?
+Laverne
+10
+
+Names: Beginning with L: What name means "Lilac"?
+Lilia
+10
+
+Names: Beginning with L: What name means "Lily Flower"?
+Lilika
+10
+
+Names: Beginning with L: What name means "Lime Tree"?
+Lanaya
+10
+
+Names: Beginning with L: What name means "Lime Tree"?
+Linnea
+10
+
+Names: Beginning with L: What name means "Linden Trees Near the Water"?
+Lindsey
+10
+
+Names: Beginning with L: What name means "Lion"?
+Lavi
+10
+
+Names: Beginning with L: What name means "Lion"?
+Lencho
+10
+
+Names: Beginning with L: What name means "Lion"?
+Leone
+10
+
+Names: Beginning with L: What name means "Lion"?
+Lisimba
+10
+
+Names: Beginning with L: What name means "Lioness"?
+Leonie
+10
+
+Names: Beginning with L: What name means "Lioness"?
+Liona
+10
+
+Names: Beginning with L: What name means "Lioness"?
+Lona
+10
+
+Names: Beginning with L: What name means "Lithe"?
+Lincoln
+10
+
+Names: Beginning with L: What name means "Little Loved One"?
+Lovette
+10
+
+Names: Beginning with L: What name means "Lofty"?
+Lela
+10
+
+Names: Beginning with L: What name means "Lord"?
+Laval
+10
+
+Names: Beginning with L: What name means "Lord"?
+Lave
+10
+
+Names: Beginning with L: What name means "Lotus Flower"?
+Lien
+10
+
+Names: Beginning with L: What name means "Love is Beautiful"?
+Lolonyo
+10
+
+Names: Beginning with L: What name means "Love is Sweet"?
+Lolovivi
+10
+
+Names: Beginning with L: What name means "Love"?
+Lerato
+10
+
+Names: Beginning with L: What name means "Love"?
+Love
+10
+
+Names: Beginning with L: What name means "Love"?
+Luthando
+10
+
+Names: Beginning with L: What name means "Loved One"?
+Lovey
+10
+
+Names: Beginning with L: What name means "Loved One"?
+Lovie
+10
+
+Names: Beginning with L: What name means "Loyal"?
+Leala
+10
+
+Names: Beginning with L: What name means "Lunar"?
+Livana
+10
+
+Names: Beginning with L: What name means "Man of Light"?
+Lucian
+10
+
+Names: Beginning with L: What name means "Meadow near the Brook"?
+Lynley
+10
+
+Names: Beginning with L: What name means "Meadowland"?
+Leland
+10
+
+Names: Beginning with L: What name means "Meadowlands"?
+Leslie
+10
+
+Names: Beginning with L: What name means "Melody"?
+Lorelei
+10
+
+Names: Beginning with L: What name means "Moon"?
+Lucine
+10
+
+Names: Beginning with L: What name means "Mountain of the Chief"?
+Ludlow
+10
+
+Names: Beginning with L: What name means "Musical Grace"?
+Lirit
+10
+
+Names: Beginning with L: What name means "Near the Sea"?
+Latimer
+10
+
+Names: Beginning with L: What name means "Night"?
+Lila
+10
+
+Names: Beginning with L: What name means "of God"?
+Lael
+10
+
+Names: Beginning with L: What name means "Of the Island"?
+Lisle
+10
+
+Names: Beginning with L: What name means "Of the Night"?
+Lilith
+10
+
+Names: Beginning with L: What name means "Of The Sea"?
+Lamar
+10
+
+Names: Beginning with L: What name means "One Who Refuses"?
+Lehana
+10
+
+Names: Beginning with L: What name means "Pasture"?
+Lindley
+10
+
+Names: Beginning with L: What name means "Peaceful, Calm"?
+Luam
+10
+
+Names: Beginning with L: What name means "Pet form of LAURA"?
+Loretta
+10
+
+Names: Beginning with L: What name means "Pet Form of LOURA"?
+Lourine
+10
+
+Names: Beginning with L: What name means "Pretty One"?
+Linda
+10
+
+Names: Beginning with L: What name means "Pretty"?
+Lyndel
+10
+
+Names: Beginning with L: What name means "Pretty"?
+Lynelle
+10
+
+Names: Beginning with L: What name means "Pretty"?
+Lynnea
+10
+
+Names: Beginning with L: What name means "Protector of Mankind"?
+Lexiss
+10
+
+Names: Beginning with L: What name means "Province in Asia"?
+Lidia
+10
+
+Names: Beginning with L: What name means "Risen"?
+Levana
+10
+
+Names: Beginning with L: What name means "Rough Land"?
+Landry
+10
+
+Names: Beginning with L: What name means "Route or Path"?
+Laina
+10
+
+Names: Beginning with L: What name means "Sailor"?
+Lynch
+10
+
+Names: Beginning with L: What name means "Scandinavian"?
+Loughlin
+10
+
+Names: Beginning with L: What name means "Section of France where Virgin Mary was seen"?
+Lourdes
+10
+
+Names: Beginning with L: What name means "She Who Plays"?
+Lalita
+10
+
+Names: Beginning with L: What name means "Shining"?
+Lara
+10
+
+Names: Beginning with L: What name means "Sim. Lakia, Found Treasure"?
+Lakin
+10
+
+Names: Beginning with L: What name means "Singing Hawk while Soaring"?
+Liluye
+10
+
+Names: Beginning with L: What name means "Sky"?
+Lani
+10
+
+Names: Beginning with L: What name means "Small Cove"?
+Logan
+10
+
+Names: Beginning with L: What name means "Soft"?
+Lamis
+10
+
+Names: Beginning with L: What name means "Songbird"?
+Lark
+10
+
+Names: Beginning with L: What name means "Spartan Queen"?
+Leda
+10
+
+Names: Beginning with L: What name means "Spartan Queen"?
+Ledell
+10
+
+Names: Beginning with L: What name means "Spear"?
+Lance
+10
+
+Names: Beginning with L: What name means "Spice"?
+Levon
+10
+
+Names: Beginning with L: What name means "Spring"?
+Lente
+10
+
+Names: Beginning with L: What name means "Suave"?
+Lizina
+10
+
+Names: Beginning with L: What name means "Taker"?
+Lel
+10
+
+Names: Beginning with L: What name means "Tall One"?
+Lang
+10
+
+Names: Beginning with L: What name means "Temptress, Illustrious"?
+Lena
+10
+
+Names: Beginning with L: What name means "Terrace, Veranda"?
+Lanai
+10
+
+Names: Beginning with L: What name means "The Fifth"?
+Laquinta
+10
+
+Names: Beginning with L: What name means "The Flower"?
+Lotus
+10
+
+Names: Beginning with L: What name means "The King"?
+Leroy
+10
+
+Names: Beginning with L: What name means "The Moon"?
+Luna
+10
+
+Names: Beginning with L: What name means "The Mountain"?
+Lamont
+10
+
+Names: Beginning with L: What name means "The Queen"?
+Lareina
+10
+
+Names: Beginning with L: What name means "The Quiet One"?
+Laqueta
+10
+
+Names: Beginning with L: What name means "The Street"?
+Larue
+10
+
+Names: Beginning with L: What name means "The Well in the Lowlands"?
+Larvall
+10
+
+Names: Beginning with L: What name means "To Move On"?
+Lane
+10
+
+Names: Beginning with L: What name means "To Sing a Lullabye, Soothe"?
+Lale
+10
+
+Names: Beginning with L: What name means "To Talk"?
+Loba
+10
+
+Names: Beginning with L: What name means "To Wrap or Bind"?
+Liana
+10
+
+Names: Beginning with L: What name means "Town near the Brook"?
+Lynton
+10
+
+Names: Beginning with L: What name means "Treasure"?
+Lakia
+10
+
+Names: Beginning with L: What name means "Tulip"?
+Lala
+10
+
+Names: Beginning with L: What name means "Twilight"?
+Lycoris
+10
+
+Names: Beginning with L: What name means "Unknown"?
+Liseli
+10
+
+Names: Beginning with L: What name means "Warring Ones"?
+Luther
+10
+
+Names: Beginning with L: What name means "Warrior Maiden"?
+Lilka
+10
+
+Names: Beginning with L: What name means "Warrior"?
+Luigi
+10
+
+Names: Beginning with L: What name means "Waterfall"?
+Lynna
+10
+
+Names: Beginning with L: What name means "Weary"?
+Leia
+10
+
+Names: Beginning with L: What name means "Wild Dove"?
+Luyu
+10
+
+Names: Beginning with L: What name means "Wolf"?
+Lobo
+10
+
+Names: Beginning with L: What name means "Woman of Rome"?
+Lavina
+10
+
+Names: Beginning with L: What name means "Wood"?
+Lavonn
+10
+
+Names: Beginning with L: What name means "Wood"?
+Lavonne
+10
+
+Names: Beginning with L: What name means "Wreath of Pearls"?
+Leimomi
+10
+
+Names: Beginning with L: What name means "Young Girl, Maiden"?
+Lassie
+10
+
+Names: Beginning with L: What name means "Young Hare"?
+Leverett
+10
+
+Names: Beginning with M: What name means "A Bird"?
+Merle
+10
+
+Names: Beginning with M: What name means "A Case to Answer"?
+Milandu
+10
+
+Names: Beginning with M: What name means "A Dove"?
+Malcolm
+10
+
+Names: Beginning with M: What name means "A Field"?
+Mayes
+10
+
+Names: Beginning with M: What name means "A Honey Bee"?
+Melissa
+10
+
+Names: Beginning with M: What name means "A King"?
+Melchior
+10
+
+Names: Beginning with M: What name means "A Meadow"?
+Medard
+10
+
+Names: Beginning with M: What name means "A Pearl"?
+Maj
+10
+
+Names: Beginning with M: What name means "A Pearl"?
+Margaret
+10
+
+Names: Beginning with M: What name means "Admirable, Beautiful"?
+Miranda
+10
+
+Names: Beginning with M: What name means "Advisor"?
+Monica
+10
+
+Names: Beginning with M: What name means "Advisor"?
+Monique
+10
+
+Names: Beginning with M: What name means "Affection, Beloved"?
+Morna
+10
+
+Names: Beginning with M: What name means "Almond"?
+Mandel
+10
+
+Names: Beginning with M: What name means "Almond"?
+Mandell
+10
+
+Names: Beginning with M: What name means "Already Prosperous"?
+Mieko
+10
+
+Names: Beginning with M: What name means "Angel"?
+Malaika
+10
+
+Names: Beginning with M: What name means "Apricot"?
+Morela
+10
+
+Names: Beginning with M: What name means "Armored Chief"?
+Melvina
+10
+
+Names: Beginning with M: What name means "Attendant"?
+Magar
+10
+
+Names: Beginning with M: What name means "Attractive"?
+Myrladis
+10
+
+Names: Beginning with M: What name means "Bear"?
+Mahon
+10
+
+Names: Beginning with M: What name means "Beautiful Child"?
+Miyo
+10
+
+Names: Beginning with M: What name means "Beautiful Child"?
+Miyoko
+10
+
+Names: Beginning with M: What name means "Beautiful Eyes"?
+Maha
+10
+
+Names: Beginning with M: What name means "Beauty, Wisdom"?
+Michiko
+10
+
+Names: Beginning with M: What name means "Beloved"?
+Myrna
+10
+
+Names: Beginning with M: What name means "Better"?
+Major
+10
+
+Names: Beginning with M: What name means "Better"?
+Meliora
+10
+
+Names: Beginning with M: What name means "Bitter or Sorrowful"?
+Mara
+10
+
+Names: Beginning with M: What name means "Bitter Sea (from Mary)"?
+Malia
+10
+
+Names: Beginning with M: What name means "Bitter Sea, House of God"?
+Maribeth
+10
+
+Names: Beginning with M: What name means "Bitter, God is my Teacher"?
+Mariah
+10
+
+Names: Beginning with M: What name means "Bitter"?
+Maeron
+10
+
+Names: Beginning with M: What name means "Bitter"?
+Maeryn
+10
+
+Names: Beginning with M: What name means "Bitter"?
+Maili
+10
+
+Names: Beginning with M: What name means "Bitter"?
+Marijke
+10
+
+Names: Beginning with M: What name means "Bitter"?
+Marika
+10
+
+Names: Beginning with M: What name means "Bitter"?
+Meli
+10
+
+Names: Beginning with M: What name means "Bitter"?
+Mirit
+10
+
+Names: Beginning with M: What name means "Bitter"?
+Murron
+10
+
+Names: Beginning with M: What name means "Black"?
+Mauli
+10
+
+Names: Beginning with M: What name means "Blessing"?
+Matana
+10
+
+Names: Beginning with M: What name means "Born in the Lunar Month of Aries"?
+Meshal
+10
+
+Names: Beginning with M: What name means "Born under Capricorn"?
+Makara
+10
+
+Names: Beginning with M: What name means "Brave"?
+Marcello
+10
+
+Names: Beginning with M: What name means "Brave"?
+Marcia
+10
+
+Names: Beginning with M: What name means "Bright Yellow"?
+Melina
+10
+
+Names: Beginning with M: What name means "Brightness"?
+Mai
+10
+
+Names: Beginning with M: What name means "Brook, First Wife of King David"?
+Michal
+10
+
+Names: Beginning with M: What name means "By the Sea"?
+Merlin
+10
+
+Names: Beginning with M: What name means "Candelabra"?
+Menora
+10
+
+Names: Beginning with M: What name means "Chinese Tribe"?
+Marrim
+10
+
+Names: Beginning with M: What name means "Collector of Thoughts, Determined Protector"?
+Minty
+10
+
+Names: Beginning with M: What name means "Compassion"?
+Mercy
+10
+
+Names: Beginning with M: What name means "Competant"?
+Magan
+10
+
+Names: Beginning with M: What name means "Contraction of MARY"?
+May
+10
+
+Names: Beginning with M: What name means "Contraction of MARY"?
+Minnie
+10
+
+Names: Beginning with M: What name means "Coral, Gracious"?
+Marjean
+10
+
+Names: Beginning with M: What name means "Covered With Mist, Dew"?
+Misty
+10
+
+Names: Beginning with M: What name means "Coyote"?
+Mikasi
+10
+
+Names: Beginning with M: What name means "Curious Seeker of Knowledge"?
+Moriba
+10
+
+Names: Beginning with M: What name means "Dark One"?
+Morrisa
+10
+
+Names: Beginning with M: What name means "Dark Skinned"?
+Melania
+10
+
+Names: Beginning with M: What name means "Dark Skinned"?
+Morris
+10
+
+Names: Beginning with M: What name means "Dark-Skinned"?
+Melanie
+10
+
+Names: Beginning with M: What name means "Dark"?
+Maura
+10
+
+Names: Beginning with M: What name means "Dark"?
+Maureen
+10
+
+Names: Beginning with M: What name means "Delicate, Graceful"?
+Mignon
+10
+
+Names: Beginning with M: What name means "Descendants of MARY"?
+Marilyn
+10
+
+Names: Beginning with M: What name means "Devoted to God"?
+Mateo
+10
+
+Names: Beginning with M: What name means "Drawn Out of the Water"?
+Moses
+10
+
+Names: Beginning with M: What name means "Emerald"?
+Mya
+10
+
+Names: Beginning with M: What name means "Enduring"?
+Macy
+10
+
+Names: Beginning with M: What name means "Favored by God"?
+Mettabel
+10
+
+Names: Beginning with M: What name means "Feminine form of MICHAEL"?
+Michaela
+10
+
+Names: Beginning with M: What name means "Flatterer, Industrious"?
+Melia
+10
+
+Names: Beginning with M: What name means "Flower Stalk"?
+Miki
+10
+
+Names: Beginning with M: What name means "Forgiver"?
+Mahari
+10
+
+Names: Beginning with M: What name means "Form of MARCIA"?
+Marsha
+10
+
+Names: Beginning with M: What name means "Form of MELANIE"?
+Melantha
+10
+
+Names: Beginning with M: What name means "Form of MELISSA"?
+Melita
+10
+
+Names: Beginning with M: What name means "Form of Michael"?
+Michel
+10
+
+Names: Beginning with M: What name means "Form of MICHAEL"?
+Mitchell
+10
+
+Names: Beginning with M: What name means "Form of MICHAELA"?
+Macayle
+10
+
+Names: Beginning with M: What name means "Form of MIRANDA"?
+Marenda
+10
+
+Names: Beginning with M: What name means "Form of MOLLY"?
+Maille
+10
+
+Names: Beginning with M: What name means "Form of Moses"?
+Moke
+10
+
+Names: Beginning with M: What name means "Fortress in a Field"?
+Mostyn
+10
+
+Names: Beginning with M: What name means "Fortunate One"?
+Machiko
+10
+
+Names: Beginning with M: What name means "Foundation, Support"?
+Masada
+10
+
+Names: Beginning with M: What name means "Fragrant"?
+Myron
+10
+
+Names: Beginning with M: What name means "Free"?
+Malaya
+10
+
+Names: Beginning with M: What name means "Friend of the Sea"?
+Marvin
+10
+
+Names: Beginning with M: What name means "From MARY and BELLE"?
+Maribel
+10
+
+Names: Beginning with M: What name means "From MARY or MARIE"?
+Maree
+10
+
+Names: Beginning with M: What name means "From MATILDA"?
+Matia
+10
+
+Names: Beginning with M: What name means "From MATTHEW"?
+Matteo
+10
+
+Names: Beginning with M: What name means "From Milan Italy"?
+Milan
+10
+
+Names: Beginning with M: What name means "From the flower"?
+Magnolia
+10
+
+Names: Beginning with M: What name means "From the flower"?
+Marigold
+10
+
+Names: Beginning with M: What name means "From the Mill Town"?
+Milton
+10
+
+Names: Beginning with M: What name means "From the Moon"?
+Moon
+10
+
+Names: Beginning with M: What name means "From the name AMANDA"?
+Mandy
+10
+
+Names: Beginning with M: What name means "From the name AMELIA"?
+Mia
+10
+
+Names: Beginning with M: What name means "From the name MADELINE"?
+Madeleine
+10
+
+Names: Beginning with M: What name means "From the name MADELINE"?
+Madelia
+10
+
+Names: Beginning with M: What name means "From the name MADELINE"?
+Magdalene
+10
+
+Names: Beginning with M: What name means "From the name MADELINE"?
+Maude
+10
+
+Names: Beginning with M: What name means "From the name MADONNA"?
+Madra
+10
+
+Names: Beginning with M: What name means "From the name MAHALIA"?
+Mahala
+10
+
+Names: Beginning with M: What name means "From the name MAHALIA"?
+Mehalia
+10
+
+Names: Beginning with M: What name means "From the name MALLORY"?
+Malory
+10
+
+Names: Beginning with M: What name means "From the name MARC"?
+Marcel
+10
+
+Names: Beginning with M: What name means "From the name MARC"?
+Marco
+10
+
+Names: Beginning with M: What name means "From the name MARC"?
+Marcus
+10
+
+Names: Beginning with M: What name means "From the name MARC"?
+Mark
+10
+
+Names: Beginning with M: What name means "From the name MARCIA"?
+Marcella
+10
+
+Names: Beginning with M: What name means "From the name MARCIA"?
+Marcie
+10
+
+Names: Beginning with M: What name means "From the name MARCIA"?
+Marcy
+10
+
+Names: Beginning with M: What name means "From the name MARGARET"?
+Madge
+10
+
+Names: Beginning with M: What name means "From the name MARGARET"?
+Maggie
+10
+
+Names: Beginning with M: What name means "From the name MARGARET"?
+Margarita
+10
+
+Names: Beginning with M: What name means "From the name MARGARET"?
+Marge
+10
+
+Names: Beginning with M: What name means "From the name MARGARET"?
+Margot
+10
+
+Names: Beginning with M: What name means "From the name MARGARET"?
+Marguerite
+10
+
+Names: Beginning with M: What name means "From the name MARGARET"?
+Marjorie
+10
+
+Names: Beginning with M: What name means "From the name MARILYN"?
+Marlene
+10
+
+Names: Beginning with M: What name means "From the name MARILYN"?
+Marli
+10
+
+Names: Beginning with M: What name means "From the name MARILYN"?
+Marlie
+10
+
+Names: Beginning with M: What name means "From the name MARILYN"?
+Marlin
+10
+
+Names: Beginning with M: What name means "From the name MARILYN"?
+Marlo
+10
+
+Names: Beginning with M: What name means "From the name MARILYN"?
+Marly
+10
+
+Names: Beginning with M: What name means "From the name MARINA"?
+Marnie
+10
+
+Names: Beginning with M: What name means "From the name MARTHA"?
+Marta
+10
+
+Names: Beginning with M: What name means "From the name MARTIN"?
+Marty
+10
+
+Names: Beginning with M: What name means "From the name MARVIN"?
+Marv
+10
+
+Names: Beginning with M: What name means "From the name MARVIN"?
+Marvene
+10
+
+Names: Beginning with M: What name means "From the name MARVIN"?
+Merv
+10
+
+Names: Beginning with M: What name means "From the name MARVIN"?
+Mervin
+10
+
+Names: Beginning with M: What name means "From the name MARVIN"?
+Mervyn
+10
+
+Names: Beginning with M: What name means "From the name MARY AND ANNA"?
+Marianne
+10
+
+Names: Beginning with M: What name means "From the name MARY AND ANNA"?
+Marion
+10
+
+Names: Beginning with M: What name means "From the name MARY and LUCILLE"?
+Marilu
+10
+
+Names: Beginning with M: What name means "From the name MARY"?
+Mae
+10
+
+Names: Beginning with M: What name means "From the name MARY"?
+Maria
+10
+
+Names: Beginning with M: What name means "From the name MARY"?
+Marie
+10
+
+Names: Beginning with M: What name means "From the name MARY"?
+Marietta
+10
+
+Names: Beginning with M: What name means "From the name MARY"?
+Molly
+10
+
+Names: Beginning with M: What name means "From the name MATILDA"?
+Mathilde
+10
+
+Names: Beginning with M: What name means "From the name MATILDA"?
+Matty
+10
+
+Names: Beginning with M: What name means "From the name MATTHEW"?
+Matt
+10
+
+Names: Beginning with M: What name means "From the name MATTHEW"?
+Matthias
+10
+
+Names: Beginning with M: What name means "From the name MAXIMILIAN"?
+Max
+10
+
+Names: Beginning with M: What name means "From the name MAXIMILIAN"?
+Maxim
+10
+
+Names: Beginning with M: What name means "From the name MAXIMILIAN"?
+Maxime
+10
+
+Names: Beginning with M: What name means "From the name McHALE"?
+Makale
+10
+
+Names: Beginning with M: What name means "From the name MELANIE"?
+Melinda
+10
+
+Names: Beginning with M: What name means "From the name MELVIN"?
+Mel
+10
+
+Names: Beginning with M: What name means "From the name MELVIN"?
+Melva
+10
+
+Names: Beginning with M: What name means "From the name MELVIN"?
+Melvyn
+10
+
+Names: Beginning with M: What name means "From the name MEREDITH or Happy"?
+Merry
+10
+
+Names: Beginning with M: What name means "From the name MERLE"?
+Merrill
+10
+
+Names: Beginning with M: What name means "From the name MERLE"?
+Meryl
+10
+
+Names: Beginning with M: What name means "From the name MERLE"?
+Meryle
+10
+
+Names: Beginning with M: What name means "From the name MERLE"?
+Muriel
+10
+
+Names: Beginning with M: What name means "From the name MICHAEL"?
+Mckale
+10
+
+Names: Beginning with M: What name means "From the name MICHAEL"?
+Michele
+10
+
+Names: Beginning with M: What name means "From the name MICHAEL"?
+Michelle
+10
+
+Names: Beginning with M: What name means "From the name MICHAEL"?
+Mick
+10
+
+Names: Beginning with M: What name means "From the name MICHAEL"?
+Mickey
+10
+
+Names: Beginning with M: What name means "From the name MICHAEL"?
+Mike
+10
+
+Names: Beginning with M: What name means "From the name MICHAEL"?
+Mikhail
+10
+
+Names: Beginning with M: What name means "From the name MICHAEL"?
+Misha
+10
+
+Names: Beginning with M: What name means "From the name MICHAEL"?
+Mitch
+10
+
+Names: Beginning with M: What name means "From the name MICHAEL"?
+Mitchel
+10
+
+Names: Beginning with M: What name means "From the name MILDRED"?
+Millie
+10
+
+Names: Beginning with M: What name means "From the name MILDRED"?
+Milly
+10
+
+Names: Beginning with M: What name means "From the name MILES"?
+Milo
+10
+
+Names: Beginning with M: What name means "From the name MILTON"?
+Milt
+10
+
+Names: Beginning with M: What name means "From the name MIRANDA"?
+Mira
+10
+
+Names: Beginning with M: What name means "From the name MIRANDA"?
+Mirra
+10
+
+Names: Beginning with M: What name means "From the name MIRANDA"?
+Myra
+10
+
+Names: Beginning with M: What name means "From the name MIRIAM"?
+Mary
+10
+
+Names: Beginning with M: What name means "From the name MIRIAM"?
+Mimi
+10
+
+Names: Beginning with M: What name means "From the name MONTGOMERY"?
+Monte
+10
+
+Names: Beginning with M: What name means "From the name MONTGOMERY"?
+Monty
+10
+
+Names: Beginning with M: What name means "From the name MORRIS"?
+Morey
+10
+
+Names: Beginning with M: What name means "From the name MORRIS"?
+Morrie
+10
+
+Names: Beginning with M: What name means "From the name MORTIMER"?
+Morty
+10
+
+Names: Beginning with M: What name means "From the name MORTON"?
+Mort
+10
+
+Names: Beginning with M: What name means "From the name MOSES"?
+Moshe
+10
+
+Names: Beginning with M: What name means "From the name MOSES"?
+Moss
+10
+
+Names: Beginning with M: What name means "From the name MUHAMMAD"?
+Mohammed
+10
+
+Names: Beginning with M: What name means "From the Nica"?
+Manica
+10
+
+Names: Beginning with M: What name means "From the Pasture"?
+Mead
+10
+
+Names: Beginning with M: What name means "From the Sea"?
+Marina
+10
+
+Names: Beginning with M: What name means "From the Sea"?
+Marisela
+10
+
+Names: Beginning with M: What name means "From the Sea"?
+Morgan
+10
+
+Names: Beginning with M: What name means "From the Town Near the Moor"?
+Morton
+10
+
+Names: Beginning with M: What name means "Gaelic for Mary, Sea of Bitterness"?
+Mairi
+10
+
+Names: Beginning with M: What name means "Generous, Giving"?
+Maddock
+10
+
+Names: Beginning with M: What name means "Gentle Caress"?
+Miliani
+10
+
+Names: Beginning with M: What name means "Gentle, Soft"?
+Moina
+10
+
+Names: Beginning with M: What name means "Gentle, Soft"?
+Moyna
+10
+
+Names: Beginning with M: What name means "Gentle"?
+Metea
+10
+
+Names: Beginning with M: What name means "Gift of God"?
+Makaio
+10
+
+Names: Beginning with M: What name means "Gift of God"?
+Matthew
+10
+
+Names: Beginning with M: What name means "Gift"?
+Makana
+10
+
+Names: Beginning with M: What name means "Gift"?
+Migdana
+10
+
+Names: Beginning with M: What name means "God In Us"?
+Manuel
+10
+
+Names: Beginning with M: What name means "God is my Teacher"?
+Moriah
+10
+
+Names: Beginning with M: What name means "God is With Us"?
+Manuela
+10
+
+Names: Beginning with M: What name means "God Like"?
+Mikaili
+10
+
+Names: Beginning with M: What name means "God Spoke"?
+Mireille
+10
+
+Names: Beginning with M: What name means "Goddess of Song"?
+Maeve
+10
+
+Names: Beginning with M: What name means "Goddess of Wisdom"?
+Minerva
+10
+
+Names: Beginning with M: What name means "Goddess/Sorceress"?
+Medea
+10
+
+Names: Beginning with M: What name means "Goodness"?
+Meged
+10
+
+Names: Beginning with M: What name means "Great Spring"?
+Maxwell
+10
+
+Names: Beginning with M: What name means "Great Waterfall"?
+Maylin
+10
+
+Names: Beginning with M: What name means "Great"?
+Maximilian
+10
+
+Names: Beginning with M: What name means "Great"?
+Moira
+10
+
+Names: Beginning with M: What name means "Great"?
+More
+10
+
+Names: Beginning with M: What name means "Great"?
+Moya
+10
+
+Names: Beginning with M: What name means "Greatest"?
+Massimo
+10
+
+Names: Beginning with M: What name means "Greatest"?
+Maximos
+10
+
+Names: Beginning with M: What name means "Greatest"?
+Maxine
+10
+
+Names: Beginning with M: What name means "Happiness"?
+Makenna
+10
+
+Names: Beginning with M: What name means "Happiness"?
+Mave
+10
+
+Names: Beginning with M: What name means "Hawaiian form of MARY"?
+Mele
+10
+
+Names: Beginning with M: What name means "Heroine in French Novel"?
+Manon
+10
+
+Names: Beginning with M: What name means "High Tower"?
+Madeline
+10
+
+Names: Beginning with M: What name means "High Tower"?
+Magda
+10
+
+Names: Beginning with M: What name means "High Tower"?
+Marlas
+10
+
+Names: Beginning with M: What name means "Honest Child"?
+Maeko
+10
+
+Names: Beginning with M: What name means "Honest Child"?
+Maemi
+10
+
+Names: Beginning with M: What name means "Honey Bee"?
+Malissa
+10
+
+Names: Beginning with M: What name means "Honey Bee"?
+Melisande
+10
+
+Names: Beginning with M: What name means "Honey"?
+Mindy
+10
+
+Names: Beginning with M: What name means "Honored One"?
+Mutia
+10
+
+Names: Beginning with M: What name means "Horse Keeper"?
+Marshall
+10
+
+Names: Beginning with M: What name means "Ill-fated Luck"?
+Mallory
+10
+
+Names: Beginning with M: What name means "Improve"?
+Melora
+10
+
+Names: Beginning with M: What name means "Irish form of Mary"?
+Maire
+10
+
+Names: Beginning with M: What name means "Jehovah Spoke"?
+Mirella
+10
+
+Names: Beginning with M: What name means "Joy Giver"?
+Marnin
+10
+
+Names: Beginning with M: What name means "Junior, Younger"?
+Minor
+10
+
+Names: Beginning with M: What name means "King"?
+Mansa
+10
+
+Names: Beginning with M: What name means "Knowledge"?
+Minda
+10
+
+Names: Beginning with M: What name means "Lady"?
+Martha
+10
+
+Names: Beginning with M: What name means "Light"?
+Malana
+10
+
+Names: Beginning with M: What name means "Light"?
+Mitsu
+10
+
+Names: Beginning with M: What name means "Lives Near the Sea"?
+Mortimer
+10
+
+Names: Beginning with M: What name means "Lovable"?
+Mandelina
+10
+
+Names: Beginning with M: What name means "Lovely Thoughts"?
+Moral
+10
+
+Names: Beginning with M: What name means "Lucky"?
+Maimun
+10
+
+Names: Beginning with M: What name means "Magnolia Blossom"?
+Mulan
+10
+
+Names: Beginning with M: What name means "Maiden"?
+Mayda
+10
+
+Names: Beginning with M: What name means "Maker"?
+Macon
+10
+
+Names: Beginning with M: What name means "Marvelous, Wonderful"?
+Mircea
+10
+
+Names: Beginning with M: What name means "Marvelous"?
+Marva
+10
+
+Names: Beginning with M: What name means "Marvelous"?
+Marvela
+10
+
+Names: Beginning with M: What name means "May"?
+Mei
+10
+
+Names: Beginning with M: What name means "Meadow Near the Lake"?
+Mardell
+10
+
+Names: Beginning with M: What name means "Meadow"?
+Maitland
+10
+
+Names: Beginning with M: What name means "Melvin"?
+Melba
+10
+
+Names: Beginning with M: What name means "Merchant"?
+Mercer
+10
+
+Names: Beginning with M: What name means "Merciful"?
+Mercedes
+10
+
+Names: Beginning with M: What name means "Mercy"?
+Mercia
+10
+
+Names: Beginning with M: What name means "Merry"?
+Meara
+10
+
+Names: Beginning with M: What name means "Might, Power"?
+Mathilda
+10
+
+Names: Beginning with M: What name means "Might, Power"?
+Matilda
+10
+
+Names: Beginning with M: What name means "Mild Strength"?
+Mildred
+10
+
+Names: Beginning with M: What name means "Mill Worker"?
+Melvin
+10
+
+Names: Beginning with M: What name means "Mill Worker"?
+Miller
+10
+
+Names: Beginning with M: What name means "Mine"?
+Mea
+10
+
+Names: Beginning with M: What name means "Mine"?
+Mio
+10
+
+Names: Beginning with M: What name means "Miracle Worker"?
+Maxima
+10
+
+Names: Beginning with M: What name means "Miracle"?
+Miracle
+10
+
+Names: Beginning with M: What name means "Mistress of the Sea"?
+Miriam
+10
+
+Names: Beginning with M: What name means "Moor, Dark Haired"?
+Maurizio
+10
+
+Names: Beginning with M: What name means "Moor, Dark Skinned"?
+Maurice
+10
+
+Names: Beginning with M: What name means "Moor"?
+Maurilio
+10
+
+Names: Beginning with M: What name means "Mother"?
+Madrona
+10
+
+Names: Beginning with M: What name means "Mother"?
+Maia
+10
+
+Names: Beginning with M: What name means "Mother"?
+Matrika
+10
+
+Names: Beginning with M: What name means "Mother"?
+Maya
+10
+
+Names: Beginning with M: What name means "Mountain"?
+Montana
+10
+
+Names: Beginning with M: What name means "Mountainous"?
+Montego
+10
+
+Names: Beginning with M: What name means "Much Expected of Her"?
+Miniya
+10
+
+Names: Beginning with M: What name means "My Beautiful One"?
+Mabel
+10
+
+Names: Beginning with M: What name means "My Lady"?
+Madonna
+10
+
+Names: Beginning with M: What name means "My Messenger"?
+Malachi
+10
+
+Names: Beginning with M: What name means "Myself"?
+Maro
+10
+
+Names: Beginning with M: What name means "Mystic"?
+Mistico
+10
+
+Names: Beginning with M: What name means "Myth"?
+Mita
+10
+
+Names: Beginning with M: What name means "Near the Mills"?
+Mills
+10
+
+Names: Beginning with M: What name means "Near the river Roe"?
+Monroe
+10
+
+Names: Beginning with M: What name means "Noble"?
+Mona
+10
+
+Names: Beginning with M: What name means "Now"?
+Maik
+10
+
+Names: Beginning with M: What name means "Ocean"?
+Moana
+10
+
+Names: Beginning with M: What name means "Ocean"?
+Moanna
+10
+
+Names: Beginning with M: What name means "Of Brown Skin"?
+Mauro
+10
+
+Names: Beginning with M: What name means "Of the Earth"?
+Mayan
+10
+
+Names: Beginning with M: What name means "Of the Mountain"?
+Montgomery
+10
+
+Names: Beginning with M: What name means "Of the Sea"?
+Maren
+10
+
+Names: Beginning with M: What name means "Of the Sea"?
+Marin
+10
+
+Names: Beginning with M: What name means "Of the Sea"?
+Marinel
+10
+
+Names: Beginning with M: What name means "Of the Sea"?
+Maris
+10
+
+Names: Beginning with M: What name means "Of the Sea"?
+Marisa
+10
+
+Names: Beginning with M: What name means "Of the Sea"?
+Marissa
+10
+
+Names: Beginning with M: What name means "Of the Sea"?
+Meris
+10
+
+Names: Beginning with M: What name means "Of Uncommon Beauty"?
+Mirabel
+10
+
+Names: Beginning with M: What name means "Of wondrous Beauty"?
+Mirabelle
+10
+
+Names: Beginning with M: What name means "One who Hunts Eagles"?
+Makya
+10
+
+Names: Beginning with M: What name means "One Who Shines"?
+Meir
+10
+
+Names: Beginning with M: What name means "Pasture of the Moor"?
+Morley
+10
+
+Names: Beginning with M: What name means "Peace Celebration"?
+Miroslav
+10
+
+Names: Beginning with M: What name means "Peaceful"?
+Mykel
+10
+
+Names: Beginning with M: What name means "Pearl"?
+Maisie
+10
+
+Names: Beginning with M: What name means "Pearl"?
+Margaux
+10
+
+Names: Beginning with M: What name means "Pearl"?
+Margo
+10
+
+Names: Beginning with M: What name means "Pearl"?
+Meg
+10
+
+Names: Beginning with M: What name means "Pearl"?
+Megan
+10
+
+Names: Beginning with M: What name means "Pearl"?
+Megara
+10
+
+Names: Beginning with M: What name means "Pet form of MARY"?
+Mariel
+10
+
+Names: Beginning with M: What name means "Pine"?
+Matsu
+10
+
+Names: Beginning with M: What name means "Plain"?
+Macha
+10
+
+Names: Beginning with M: What name means "Powerful, brave"?
+Maynard
+10
+
+Names: Beginning with M: What name means "Praised"?
+Muhammad
+10
+
+Names: Beginning with M: What name means "Prophet"?
+Meda
+10
+
+Names: Beginning with M: What name means "Protector from the Sea"?
+Meredith
+10
+
+Names: Beginning with M: What name means "Psychic Gifts"?
+Mana
+10
+
+Names: Beginning with M: What name means "Pure"?
+Mariatu
+10
+
+Names: Beginning with M: What name means "Purplish Color"?
+Mauve
+10
+
+Names: Beginning with M: What name means "Queen"?
+Malka
+10
+
+Names: Beginning with M: What name means "Queen"?
+Micol
+10
+
+Names: Beginning with M: What name means "Rainbow"?
+Musoke
+10
+
+Names: Beginning with M: What name means "Rebellious One"?
+Meria
+10
+
+Names: Beginning with M: What name means "Rejoice"?
+Marnina
+10
+
+Names: Beginning with M: What name means "Religious Man"?
+Monahan
+10
+
+Names: Beginning with M: What name means "Remembrance"?
+Minna
+10
+
+Names: Beginning with M: What name means "Righteous Way"?
+Michi
+10
+
+Names: Beginning with M: What name means "Ripples in the Water"?
+Misu
+10
+
+Names: Beginning with M: What name means "Roots"?
+Miyanda
+10
+
+Names: Beginning with M: What name means "Sacred House"?
+Miya
+10
+
+Names: Beginning with M: What name means "Sailor, Roman Clan Name"?
+Marius
+10
+
+Names: Beginning with M: What name means "Sailor"?
+Mario
+10
+
+Names: Beginning with M: What name means "Sailor"?
+Murray
+10
+
+Names: Beginning with M: What name means "Scholarly Accomplishments"?
+Mendel
+10
+
+Names: Beginning with M: What name means "Sea Warrior"?
+Murphy
+10
+
+Names: Beginning with M: What name means "Sea Wave"?
+Morwenna
+10
+
+Names: Beginning with M: What name means "Seashore"?
+Morgana
+10
+
+Names: Beginning with M: What name means "Servant of St. John"?
+Malone
+10
+
+Names: Beginning with M: What name means "Sharp Cliff"?
+Montague
+10
+
+Names: Beginning with M: What name means "Shining Sea"?
+Meriel
+10
+
+Names: Beginning with M: What name means "Shy, Modest"?
+Modesta
+10
+
+Names: Beginning with M: What name means "Sincere, Honest"?
+Makoto
+10
+
+Names: Beginning with M: What name means "Single, Alone"?
+Monita
+10
+
+Names: Beginning with M: What name means "Slope by the Pond"?
+Marlow
+10
+
+Names: Beginning with M: What name means "Small but Famous"?
+Merritt
+10
+
+Names: Beginning with M: What name means "Small Sweet Thing"?
+Miette
+10
+
+Names: Beginning with M: What name means "Smart, Intelligent"?
+Mahalia
+10
+
+Names: Beginning with M: What name means "Soldier"?
+Miles
+10
+
+Names: Beginning with M: What name means "Soldier"?
+Myles
+10
+
+Names: Beginning with M: What name means "Solitary Life"?
+Moesha
+10
+
+Names: Beginning with M: What name means "Solitary Life"?
+Monisha
+10
+
+Names: Beginning with M: What name means "Solitary"?
+Monet
+10
+
+Names: Beginning with M: What name means "Son Of ____"?
+Mac
+10
+
+Names: Beginning with M: What name means "Son of Hugh"?
+Magee
+10
+
+Names: Beginning with M: What name means "Son of Ken or Kenna"?
+Mckenna
+10
+
+Names: Beginning with M: What name means "Son of Kenneth"?
+Mackenzie
+10
+
+Names: Beginning with M: What name means "Son of Kile"?
+Mckile
+10
+
+Names: Beginning with M: What name means "Son of Man"?
+Manning
+10
+
+Names: Beginning with M: What name means "Son of Matthew"?
+Madison
+10
+
+Names: Beginning with M: What name means "Son of Morris"?
+Morrison
+10
+
+Names: Beginning with M: What name means "Son of Morris"?
+Morse
+10
+
+Names: Beginning with M: What name means "Son of the Patron"?
+Maddox
+10
+
+Names: Beginning with M: What name means "Song-like"?
+Melody
+10
+
+Names: Beginning with M: What name means "Song, Melody"?
+Melodie
+10
+
+Names: Beginning with M: What name means "South"?
+Mina
+10
+
+Names: Beginning with M: What name means "Steady Rain"?
+Marka
+10
+
+Names: Beginning with M: What name means "Stone worker"?
+Mason
+10
+
+Names: Beginning with M: What name means "Strength Warrior"?
+Magnar
+10
+
+Names: Beginning with M: What name means "Strong in War"?
+Matilde
+10
+
+Names: Beginning with M: What name means "Strong Work"?
+Millicent
+10
+
+Names: Beginning with M: What name means "Sunny Sea"?
+Marisol
+10
+
+Names: Beginning with M: What name means "Sweet Berry"?
+Mora
+10
+
+Names: Beginning with M: What name means "sweet"?
+Mandisa
+10
+
+Names: Beginning with M: What name means "Sweet"?
+Mattox
+10
+
+Names: Beginning with M: What name means "Sweetlike"?
+Melosa
+10
+
+Names: Beginning with M: What name means "The Expected One"?
+Mahdi
+10
+
+Names: Beginning with M: What name means "The Lord is With You"?
+Muna
+10
+
+Names: Beginning with M: What name means "The Sea"?
+Mare
+10
+
+Names: Beginning with M: What name means "The Spoiler"?
+Messina
+10
+
+Names: Beginning with M: What name means "The Thrush"?
+Mavis
+10
+
+Names: Beginning with M: What name means "The Tree/Victory"?
+Myrtle
+10
+
+Names: Beginning with M: What name means "The Wind"?
+Makani
+10
+
+Names: Beginning with M: What name means "Tiny Gnat"?
+Mizell
+10
+
+Names: Beginning with M: What name means "To Hit"?
+Muliya
+10
+
+Names: Beginning with M: What name means "To Wonder, Admire"?
+Marvel
+10
+
+Names: Beginning with M: What name means "Tower, Soothing"?
+Malina
+10
+
+Names: Beginning with M: What name means "Town near the Pond"?
+Merton
+10
+
+Names: Beginning with M: What name means "Trouble"?
+Mashaka
+10
+
+Names: Beginning with M: What name means "Tuesday"?
+Mardi
+10
+
+Names: Beginning with M: What name means "Unique Little Girl/Beautiful Young Woman"?
+Maleah
+10
+
+Names: Beginning with M: What name means "UNIT One that Orbits the Moon"?
+Moon
+10
+
+Names: Beginning with M: What name means "Var. of Matthias"?
+Matias
+10
+
+Names: Beginning with M: What name means "Victorious People"?
+Milek
+10
+
+Names: Beginning with M: What name means "Village"?
+Mura
+10
+
+Names: Beginning with M: What name means "War Goddess"?
+Morrigan
+10
+
+Names: Beginning with M: What name means "Warlike"?
+Marc
+10
+
+Names: Beginning with M: What name means "Warlike"?
+Marcell
+10
+
+Names: Beginning with M: What name means "Warlike"?
+Marek
+10
+
+Names: Beginning with M: What name means "Warlike"?
+Martin
+10
+
+Names: Beginning with M: What name means "Warrior, Warlike"?
+Mordecai
+10
+
+Names: Beginning with M: What name means "White Eyes"?
+Mrena
+10
+
+Names: Beginning with M: What name means "White Hot Sun"?
+Misae
+10
+
+Names: Beginning with M: What name means "Who is for Me?"?
+Mili
+10
+
+Names: Beginning with M: What name means "Who is like God?"?
+Mckayla
+10
+
+Names: Beginning with M: What name means "Who is like God?"?
+Mekelle
+10
+
+Names: Beginning with M: What name means "Who is like God?"?
+Michael
+10
+
+Names: Beginning with M: What name means "Who is like God?"?
+Mihaly
+10
+
+Names: Beginning with M: What name means "Who is like God?"?
+Mikkel
+10
+
+Names: Beginning with M: What name means "Who is like God?"?
+Mikko
+10
+
+Names: Beginning with M: What name means "Who is Like God"?
+Makaila
+10
+
+Names: Beginning with M: What name means "Who is like God"?
+Micah
+10
+
+Names: Beginning with M: What name means "Who Is Like God"?
+Micheline
+10
+
+Names: Beginning with M: What name means "Who is like God"?
+Michon
+10
+
+Names: Beginning with M: What name means "Who Loves Everyone, Warlike"?
+Martina
+10
+
+Names: Beginning with M: What name means "Wild Falcon"?
+Marlon
+10
+
+Names: Beginning with M: What name means "Wildly Independent"?
+Maverick
+10
+
+Names: Beginning with M: What name means "Winner"?
+Malo
+10
+
+Names: Beginning with M: What name means "Wise Little Raccoon"?
+Mika
+10
+
+Names: Beginning with M: What name means "Wise Man"?
+Morathi
+10
+
+Names: Beginning with M: What name means "Wished-For Child"?
+Mari
+10
+
+Names: Beginning with M: What name means "Wished-For Child"?
+Mariam
+10
+
+Names: Beginning with M: What name means "Without Conceit"?
+Modesty
+10
+
+Names: Beginning with M: What name means "Woman from Magdala"?
+Magdalena
+10
+
+Names: Beginning with M: What name means "Wonderful"?
+Mohan
+10
+
+Names: Beginning with M: What name means "Wonderful"?
+Myrilla
+10
+
+Names: Beginning with M: What name means "Wondering"?
+Makalo
+10
+
+Names: Beginning with M: What name means "Young Fighter"?
+Marcellus
+10
+
+Names: Beginning with N: What name means "A Champion"?
+Neal
+10
+
+Names: Beginning with N: What name means "A Safe Place"?
+Nydia
+10
+
+Names: Beginning with N: What name means "Ancient Waters"?
+Nen
+10
+
+Names: Beginning with N: What name means "Arrows"?
+Nibal
+10
+
+Names: Beginning with N: What name means "Aztec God of the Sun - Dim. of Naolin"?
+Naoll
+10
+
+Names: Beginning with N: What name means "Aztec God of the Sun"?
+Naolin
+10
+
+Names: Beginning with N: What name means "Beautiful One from Heaven"?
+Noelani
+10
+
+Names: Beginning with N: What name means "Beautiful, Ornamented"?
+Noya
+10
+
+Names: Beginning with N: What name means "Beautiful, Pleasant"?
+Naveen
+10
+
+Names: Beginning with N: What name means "Belief"?
+Nori
+10
+
+Names: Beginning with N: What name means "Belongs to God"?
+Nika
+10
+
+Names: Beginning with N: What name means "Below the Earth"?
+Nedra
+10
+
+Names: Beginning with N: What name means "Bird"?
+Natori
+10
+
+Names: Beginning with N: What name means "Birth"?
+Naal
+10
+
+Names: Beginning with N: What name means "Bitter"?
+Nariah
+10
+
+Names: Beginning with N: What name means "Born During Rainy Season"?
+Nasha
+10
+
+Names: Beginning with N: What name means "Born in Summer"?
+Natsu
+10
+
+Names: Beginning with N: What name means "Born on Christmas Day"?
+Noel
+10
+
+Names: Beginning with N: What name means "Born on Christmas"?
+Nadalia
+10
+
+Names: Beginning with N: What name means "Born to Nobility"?
+Nabila
+10
+
+Names: Beginning with N: What name means "Bright"?
+Niamh
+10
+
+Names: Beginning with N: What name means "Bud from a Flower"?
+Nitza
+10
+
+Names: Beginning with N: What name means "Champion"?
+Neil
+10
+
+Names: Beginning with N: What name means "Champion"?
+Nia
+10
+
+Names: Beginning with N: What name means "Champion"?
+Niall
+10
+
+Names: Beginning with N: What name means "Charming"?
+Nani
+10
+
+Names: Beginning with N: What name means "Chief, Champion"?
+Nealon
+10
+
+Names: Beginning with N: What name means "Chief"?
+Nantai
+10
+
+Names: Beginning with N: What name means "Christmas, Birth Day"?
+Nawal
+10
+
+Names: Beginning with N: What name means "Complete, Victorious"?
+Nikhil
+10
+
+Names: Beginning with N: What name means "Conqueror of the People"?
+Nicodemus
+10
+
+Names: Beginning with N: What name means "Covered in Snow"?
+Nevada
+10
+
+Names: Beginning with N: What name means "Daffodil"?
+Narcisse
+10
+
+Names: Beginning with N: What name means "Dance Lord"?
+Natesa
+10
+
+Names: Beginning with N: What name means "Delivered Feet-First"?
+Nafuna
+10
+
+Names: Beginning with N: What name means "Dim. of JUANITA"?
+Nita
+10
+
+Names: Beginning with N: What name means "Diminuitive of NORA"?
+Noreen
+10
+
+Names: Beginning with N: What name means "Elf"?
+Nida
+10
+
+Names: Beginning with N: What name means "Eternal"?
+Niran
+10
+
+Names: Beginning with N: What name means "Evening"?
+Naeva
+10
+
+Names: Beginning with N: What name means "Famous"?
+Nolan
+10
+
+Names: Beginning with N: What name means "Farming"?
+Noma
+10
+
+Names: Beginning with N: What name means "Fawn"?
+Niabi
+10
+
+Names: Beginning with N: What name means "Fem. form of Nicholas"?
+Nicola
+10
+
+Names: Beginning with N: What name means "Female Child"?
+Natane
+10
+
+Names: Beginning with N: What name means "Fierce One from Naples"?
+Napoleon
+10
+
+Names: Beginning with N: What name means "Fiery, Intense"?
+Necia
+10
+
+Names: Beginning with N: What name means "Flaming LIghts"?
+Nuri
+10
+
+Names: Beginning with N: What name means "Flower Bud"?
+Nizana
+10
+
+Names: Beginning with N: What name means "Forest Cove"?
+Nowles
+10
+
+Names: Beginning with N: What name means "Form of ANNE"?
+Ninon
+10
+
+Names: Beginning with N: What name means "Form of NEAL"?
+Nelia
+10
+
+Names: Beginning with N: What name means "Form of NINA"?
+Neena
+10
+
+Names: Beginning with N: What name means "Form of NORA"?
+Norah
+10
+
+Names: Beginning with N: What name means "Founder of Clans"?
+Naiser
+10
+
+Names: Beginning with N: What name means "Friend"?
+Nitis
+10
+
+Names: Beginning with N: What name means "From HELEN"?
+Nellie
+10
+
+Names: Beginning with N: What name means "From NOEL"?
+Noe
+10
+
+Names: Beginning with N: What name means "From the name AGNES"?
+Nessa
+10
+
+Names: Beginning with N: What name means "From the name ANNA"?
+Nan
+10
+
+Names: Beginning with N: What name means "From the name BERNARD"?
+Nardo
+10
+
+Names: Beginning with N: What name means "From the name NADIA"?
+Nadie
+10
+
+Names: Beginning with N: What name means "From the name NATALIE"?
+Nasia
+10
+
+Names: Beginning with N: What name means "From the name NATALIE"?
+Natala
+10
+
+Names: Beginning with N: What name means "From the name NATALIE"?
+Natalia
+10
+
+Names: Beginning with N: What name means "From the name NATALIE"?
+Natalya
+10
+
+Names: Beginning with N: What name means "From the name NATALIE"?
+Natasha
+10
+
+Names: Beginning with N: What name means "From the name NATALIE"?
+Nathalie
+10
+
+Names: Beginning with N: What name means "From the name NATHAN"?
+Nat
+10
+
+Names: Beginning with N: What name means "From the name NATHAN"?
+Nate
+10
+
+Names: Beginning with N: What name means "From the name NATHANIEL"?
+Niel
+10
+
+Names: Beginning with N: What name means "From the name NATHANIEL"?
+Nigel
+10
+
+Names: Beginning with N: What name means "From the name NICHOLAS"?
+Nick
+10
+
+Names: Beginning with N: What name means "From the name NICOLE"?
+Nicki
+10
+
+Names: Beginning with N: What name means "From the name NICOLE"?
+Nicolette
+10
+
+Names: Beginning with N: What name means "From the name NICOLE"?
+Nikki
+10
+
+Names: Beginning with N: What name means "From the name NOLAND"?
+Noland
+10
+
+Names: Beginning with N: What name means "From the name NORMAN"?
+Norm
+10
+
+Names: Beginning with N: What name means "From the North"?
+Norris
+10
+
+Names: Beginning with N: What name means "From the North"?
+Norton
+10
+
+Names: Beginning with N: What name means "Generous"?
+Nadda
+10
+
+Names: Beginning with N: What name means "Gift of God"?
+Natania
+10
+
+Names: Beginning with N: What name means "Gift of God"?
+Nathaniel
+10
+
+Names: Beginning with N: What name means "Girl"?
+Nu
+10
+
+Names: Beginning with N: What name means "Girl"?
+Nyako
+10
+
+Names: Beginning with N: What name means "Goddess of Night"?
+Nyx
+10
+
+Names: Beginning with N: What name means "Goddess of the Deep"?
+Nenet
+10
+
+Names: Beginning with N: What name means "Good News"?
+Navid
+10
+
+Names: Beginning with N: What name means "Grace"?
+Nusa
+10
+
+Names: Beginning with N: What name means "Gracious"?
+Nancy
+10
+
+Names: Beginning with N: What name means "Gracious"?
+Nanette
+10
+
+Names: Beginning with N: What name means "Guard at the North Gate"?
+Norwood
+10
+
+Names: Beginning with N: What name means "Happy"?
+Nara
+10
+
+Names: Beginning with N: What name means "Having Deep Roots"?
+Nitara
+10
+
+Names: Beginning with N: What name means "He Gave"?
+Nathan
+10
+
+Names: Beginning with N: What name means "Heartbeat of the Earth"?
+Nitesh
+10
+
+Names: Beginning with N: What name means "Her Life"?
+Nakeisha
+10
+
+Names: Beginning with N: What name means "Hopeful"?
+Nadia
+10
+
+Names: Beginning with N: What name means "Hopeful"?
+Nadine
+10
+
+Names: Beginning with N: What name means "I love you"?
+Nayeli
+10
+
+Names: Beginning with N: What name means "Land of Canyons"?
+Nairi
+10
+
+Names: Beginning with N: What name means "Light"?
+Nitsa
+10
+
+Names: Beginning with N: What name means "Light"?
+Nora
+10
+
+Names: Beginning with N: What name means "Light"?
+Norina
+10
+
+Names: Beginning with N: What name means "Light"?
+Nura
+10
+
+Names: Beginning with N: What name means "Light"?
+Nuru
+10
+
+Names: Beginning with N: What name means "Little Saint"?
+Nevan
+10
+
+Names: Beginning with N: What name means "Lovable"?
+Nalo
+10
+
+Names: Beginning with N: What name means "Messenger"?
+Nuncio
+10
+
+Names: Beginning with N: What name means "Miracle"?
+Nasya
+10
+
+Names: Beginning with N: What name means "Moon Daughter"?
+Nokomis
+10
+
+Names: Beginning with N: What name means "Moral"?
+Neetee
+10
+
+Names: Beginning with N: What name means "My Daughter"?
+Nituna
+10
+
+Names: Beginning with N: What name means "National Ind. Recovery Act"?
+Nira
+10
+
+Names: Beginning with N: What name means "Nature"?
+Nature
+10
+
+Names: Beginning with N: What name means "New Comer"?
+Newman
+10
+
+Names: Beginning with N: What name means "New Moon"?
+Neona
+10
+
+Names: Beginning with N: What name means "New Town"?
+Neville
+10
+
+Names: Beginning with N: What name means "New Town"?
+Newton
+10
+
+Names: Beginning with N: What name means "New"?
+Neola
+10
+
+Names: Beginning with N: What name means "New"?
+Nova
+10
+
+Names: Beginning with N: What name means "New"?
+Novia
+10
+
+Names: Beginning with N: What name means "Ninth"?
+Nina
+10
+
+Names: Beginning with N: What name means "Ninth"?
+Nonnie
+10
+
+Names: Beginning with N: What name means "Norseman or Rule"?
+Norman
+10
+
+Names: Beginning with N: What name means "Of Noble Birth"?
+Nola
+10
+
+Names: Beginning with N: What name means "of the Natine Tribe"?
+Natine
+10
+
+Names: Beginning with N: What name means "Of the Nativity"?
+Natividad
+10
+
+Names: Beginning with N: What name means "Owl"?
+Nascha
+10
+
+Names: Beginning with N: What name means "Pattern, Rule"?
+Norma
+10
+
+Names: Beginning with N: What name means "Pea Plant"?
+Nili
+10
+
+Names: Beginning with N: What name means "Peace"?
+Noxolo
+10
+
+Names: Beginning with N: What name means "Plains"?
+Navarro
+10
+
+Names: Beginning with N: What name means "Pleasant"?
+Naomi
+10
+
+Names: Beginning with N: What name means "Powerful"?
+Nero
+10
+
+Names: Beginning with N: What name means "Precious"?
+Nafis
+10
+
+Names: Beginning with N: What name means "Princess"?
+Nimeesha
+10
+
+Names: Beginning with N: What name means "Prosperous"?
+Neema
+10
+
+Names: Beginning with N: What name means "Protector"?
+Narain
+10
+
+Names: Beginning with N: What name means "Provence in France"?
+Normandy
+10
+
+Names: Beginning with N: What name means "Pure"?
+Nakia
+10
+
+Names: Beginning with N: What name means "Pure"?
+Niesha
+10
+
+Names: Beginning with N: What name means "Rest, Peace"?
+Noah
+10
+
+Names: Beginning with N: What name means "Sacrifice"?
+Natara
+10
+
+Names: Beginning with N: What name means "Saint Worshipper"?
+Nevina
+10
+
+Names: Beginning with N: What name means "Sea Nymph"?
+Nerina
+10
+
+Names: Beginning with N: What name means "Sea Nymph"?
+Nerine
+10
+
+Names: Beginning with N: What name means "Sea Nymph"?
+Nerissa
+10
+
+Names: Beginning with N: What name means "Sea Snail"?
+Nerita
+10
+
+Names: Beginning with N: What name means "Second Wife"?
+Nyeki
+10
+
+Names: Beginning with N: What name means "Sign, Emblem"?
+Nissa
+10
+
+Names: Beginning with N: What name means "Sign, Mark"?
+Nishan
+10
+
+Names: Beginning with N: What name means "Slavic form of NICOLE"?
+Nijole
+10
+
+Names: Beginning with N: What name means "Snake"?
+Nyoka
+10
+
+Names: Beginning with N: What name means "Snow"?
+Neva
+10
+
+Names: Beginning with N: What name means "Son of NEAL"?
+Nelson
+10
+
+Names: Beginning with N: What name means "Son of Neil"?
+Niles
+10
+
+Names: Beginning with N: What name means "Speech"?
+Niv
+10
+
+Names: Beginning with N: What name means "Standing Tall"?
+Nibaw
+10
+
+Names: Beginning with N: What name means "Stoat"?
+Nessan
+10
+
+Names: Beginning with N: What name means "Sun"?
+Nomlanga
+10
+
+Names: Beginning with N: What name means "Sunshine"?
+Nayer
+10
+
+Names: Beginning with N: What name means "Surrounded by Song"?
+Nasnan
+10
+
+Names: Beginning with N: What name means "Sweet, Friend"?
+Noam
+10
+
+Names: Beginning with N: What name means "Swift Cat"?
+Namir
+10
+
+Names: Beginning with N: What name means "The Flowers"?
+Napua
+10
+
+Names: Beginning with N: What name means "The Goal"?
+Nysa
+10
+
+Names: Beginning with N: What name means "The Ninth"?
+Nona
+10
+
+Names: Beginning with N: What name means "Thunder"?
+Nariko
+10
+
+Names: Beginning with N: What name means "To Be Born"?
+Natalie
+10
+
+Names: Beginning with N: What name means "Triumphant"?
+Nasser
+10
+
+Names: Beginning with N: What name means "Trustworthy"?
+Netis
+10
+
+Names: Beginning with N: What name means "Unwilling"?
+Noleta
+10
+
+Names: Beginning with N: What name means "Victor"?
+Neely
+10
+
+Names: Beginning with N: What name means "Victorious Maiden"?
+Nichelle
+10
+
+Names: Beginning with N: What name means "Victorious People"?
+Nicholai
+10
+
+Names: Beginning with N: What name means "Victorious People"?
+Nicholas
+10
+
+Names: Beginning with N: What name means "Victorious People"?
+Nikita
+10
+
+Names: Beginning with N: What name means "Victorious People"?
+Nikkos
+10
+
+Names: Beginning with N: What name means "Victory of the People"?
+Nicole
+10
+
+Names: Beginning with N: What name means "Water Nymph"?
+Naida
+10
+
+Names: Beginning with N: What name means "Water Nymph"?
+Naiya
+10
+
+Names: Beginning with N: What name means "Water Sprite"?
+Nixie
+10
+
+Names: Beginning with N: What name means "Wave"?
+Nami
+10
+
+Names: Beginning with N: What name means "West"?
+Nishi
+10
+
+Names: Beginning with N: What name means "White Haired"?
+Nuala
+10
+
+Names: Beginning with N: What name means "Wild Goose"?
+Neka
+10
+
+Names: Beginning with N: What name means "Windy Day"?
+Nodin
+10
+
+Names: Beginning with N: What name means "Wisdom"?
+Nestor
+10
+
+Names: Beginning with N: What name means "Wrestler"?
+Nayati
+10
+
+Names: Beginning with O: What name means "A Bear"?
+Orson
+10
+
+Names: Beginning with O: What name means "A Hunter in Greek Mythology"?
+Orion
+10
+
+Names: Beginning with O: What name means "A Tree"?
+Oren
+10
+
+Names: Beginning with O: What name means "A Young Deer"?
+Ofer
+10
+
+Names: Beginning with O: What name means "Ancestor"?
+Ola
+10
+
+Names: Beginning with O: What name means "Ancestor"?
+Olaf
+10
+
+Names: Beginning with O: What name means "Animal with Long Neck"?
+Okapi
+10
+
+Names: Beginning with O: What name means "Arctic Hare"?
+Okalik
+10
+
+Names: Beginning with O: What name means "Awake"?
+Onawa
+10
+
+Names: Beginning with O: What name means "Bear Heart"?
+Oberon
+10
+
+Names: Beginning with O: What name means "Bear of God"?
+Osborn
+10
+
+Names: Beginning with O: What name means "Beginning"?
+Ordell
+10
+
+Names: Beginning with O: What name means "Beside the Oak Trees"?
+Oakes
+10
+
+Names: Beginning with O: What name means "Born on Holy Ground"?
+Oni
+10
+
+Names: Beginning with O: What name means "Born when it was Raining"?
+Okoth
+10
+
+Names: Beginning with O: What name means "Cedar Tree"?
+Ornice
+10
+
+Names: Beginning with O: What name means "Chief"?
+Ogima
+10
+
+Names: Beginning with O: What name means "Commander"?
+Oma
+10
+
+Names: Beginning with O: What name means "Divine Ruler"?
+Osric
+10
+
+Names: Beginning with O: What name means "Divine Strength"?
+Oscar
+10
+
+Names: Beginning with O: What name means "Divine"?
+Ossie
+10
+
+Names: Beginning with O: What name means "Egg Shaped"?
+Ovid
+10
+
+Names: Beginning with O: What name means "Egg"?
+Ova
+10
+
+Names: Beginning with O: What name means "Eighth"?
+Octavious
+10
+
+Names: Beginning with O: What name means "Evergreen"?
+Oliana
+10
+
+Names: Beginning with O: What name means "Fawn"?
+Ossian
+10
+
+Names: Beginning with O: What name means "Field of Oak Trees"?
+Oakley
+10
+
+Names: Beginning with O: What name means "First born son"?
+Omar
+10
+
+Names: Beginning with O: What name means "Form of OSCAR"?
+Oke
+10
+
+Names: Beginning with O: What name means "Form of UNA"?
+Ownah
+10
+
+Names: Beginning with O: What name means "Form of YOLANDA"?
+Olinda
+10
+
+Names: Beginning with O: What name means "Free Men"?
+Orma
+10
+
+Names: Beginning with O: What name means "From the name EVAN"?
+Owen
+10
+
+Names: Beginning with O: What name means "From the name OLIVER"?
+Olive
+10
+
+Names: Beginning with O: What name means "From the name OLIVER"?
+Olivia
+10
+
+Names: Beginning with O: What name means "From the name OLIVER"?
+Ollie
+10
+
+Names: Beginning with O: What name means "From the name OPHIRA"?
+Oprah
+10
+
+Names: Beginning with O: What name means "From the name ORIEL"?
+Oriole
+10
+
+Names: Beginning with O: What name means "From the name ORLI"?
+Orlee
+10
+
+Names: Beginning with O: What name means "From the name ORLI"?
+Orly
+10
+
+Names: Beginning with O: What name means "From the name ORSON"?
+Orsen
+10
+
+Names: Beginning with O: What name means "From the name ORSON"?
+Orsin
+10
+
+Names: Beginning with O: What name means "From the name OSCAR"?
+Oskar
+10
+
+Names: Beginning with O: What name means "From the name OTHELLO"?
+Otto
+10
+
+Names: Beginning with O: What name means "From the name OZ"?
+Ozzie
+10
+
+Names: Beginning with O: What name means "From the Opal Gemstone"?
+Opal
+10
+
+Names: Beginning with O: What name means "From the Orient"?
+Oria
+10
+
+Names: Beginning with O: What name means "Full of Grace"?
+Ona
+10
+
+Names: Beginning with O: What name means "Full of Wrath"?
+Odysseus
+10
+
+Names: Beginning with O: What name means "God is With Us"?
+Oksana
+10
+
+Names: Beginning with O: What name means "God of the Forest"?
+Oswald
+10
+
+Names: Beginning with O: What name means "God"?
+Olisa
+10
+
+Names: Beginning with O: What name means "Godly Protector"?
+Osmond
+10
+
+Names: Beginning with O: What name means "Gold"?
+Ofira
+10
+
+Names: Beginning with O: What name means "Gold"?
+Ophira
+10
+
+Names: Beginning with O: What name means "Gold"?
+Oriel
+10
+
+Names: Beginning with O: What name means "Golden City"?
+Orville
+10
+
+Names: Beginning with O: What name means "Golden One"?
+Oriana
+10
+
+Names: Beginning with O: What name means "Golden Woman"?
+Orla
+10
+
+Names: Beginning with O: What name means "Golden"?
+Orleans
+10
+
+Names: Beginning with O: What name means "Goth of the Heavens"?
+Osgood
+10
+
+Names: Beginning with O: What name means "Green"?
+Oran
+10
+
+Names: Beginning with O: What name means "He Who Likes the Hunt"?
+Oringo
+10
+
+Names: Beginning with O: What name means "Heaven"?
+Okalani
+10
+
+Names: Beginning with O: What name means "Helper"?
+Ophelia
+10
+
+Names: Beginning with O: What name means "Hill of the Passionate One"?
+Onslow
+10
+
+Names: Beginning with O: What name means "Holly"?
+Olin
+10
+
+Names: Beginning with O: What name means "Holy"?
+Olga
+10
+
+Names: Beginning with O: What name means "I will praise God"?
+Odelia
+10
+
+Names: Beginning with O: What name means "Land of Gold"?
+Orlando
+10
+
+Names: Beginning with O: What name means "Large River"?
+Ohio
+10
+
+Names: Beginning with O: What name means "Last"?
+Omega
+10
+
+Names: Beginning with O: What name means "Light"?
+Ora
+10
+
+Names: Beginning with O: What name means "Lives beside the Oaks"?
+Ogden
+10
+
+Names: Beginning with O: What name means "Lord Is My Light"?
+Oralee
+10
+
+Names: Beginning with O: What name means "Lovely"?
+Olathe
+10
+
+Names: Beginning with O: What name means "Magic Power"?
+Orenda
+10
+
+Names: Beginning with O: What name means "Melody"?
+Odetta
+10
+
+Names: Beginning with O: What name means "Mountain Man"?
+Orestes
+10
+
+Names: Beginning with O: What name means "Mountain of the Gods"?
+Olympia
+10
+
+Names: Beginning with O: What name means "Mountain"?
+Odina
+10
+
+Names: Beginning with O: What name means "Mountains"?
+Orea
+10
+
+Names: Beginning with O: What name means "Ocean Centered"?
+Oki
+10
+
+Names: Beginning with O: What name means "Ocean"?
+Oceana
+10
+
+Names: Beginning with O: What name means "Ode, Melodic"?
+Odette
+10
+
+Names: Beginning with O: What name means "Of the Sea"?
+Ormanda
+10
+
+Names: Beginning with O: What name means "Olive Tree"?
+Oliver
+10
+
+Names: Beginning with O: What name means "One Who Hears Well"?
+Otis
+10
+
+Names: Beginning with O: What name means "One"?
+Oona
+10
+
+Names: Beginning with O: What name means "Order"?
+Orde
+10
+
+Names: Beginning with O: What name means "Otter"?
+Obert
+10
+
+Names: Beginning with O: What name means "Otter"?
+Odell
+10
+
+Names: Beginning with O: What name means "Owl"?
+Opa
+10
+
+Names: Beginning with O: What name means "Pine Trees"?
+Orinda
+10
+
+Names: Beginning with O: What name means "Praise"?
+Osanna
+10
+
+Names: Beginning with O: What name means "Prosperous"?
+Othello
+10
+
+Names: Beginning with O: What name means "Protective Hero"?
+Osma
+10
+
+Names: Beginning with O: What name means "Protector of Humanity"?
+Olesia
+10
+
+Names: Beginning with O: What name means "Rising"?
+Orane
+10
+
+Names: Beginning with O: What name means "River"?
+Orrin
+10
+
+Names: Beginning with O: What name means "Sacred"?
+Oleg
+10
+
+Names: Beginning with O: What name means "Salvation"?
+Osias
+10
+
+Names: Beginning with O: What name means "Serpent"?
+Ormand
+10
+
+Names: Beginning with O: What name means "Soldier of God"?
+Osborne
+10
+
+Names: Beginning with O: What name means "Spoken Word"?
+Oral
+10
+
+Names: Beginning with O: What name means "Standing Rock"?
+Oneida
+10
+
+Names: Beginning with O: What name means "Strength"?
+Oz
+10
+
+Names: Beginning with O: What name means "Strong, Courageous"?
+Ondrea
+10
+
+Names: Beginning with O: What name means "The Eighth"?
+Octavia
+10
+
+Names: Beginning with O: What name means "The Eighth"?
+Octavio
+10
+
+Names: Beginning with O: What name means "The Light is Mine"?
+Orli
+10
+
+Names: Beginning with O: What name means "The Odyssey"?
+Odessa
+10
+
+Names: Beginning with O: What name means "The Orient, East"?
+Orien
+10
+
+Names: Beginning with O: What name means "The Upper Town"?
+Overton
+10
+
+Names: Beginning with O: What name means "To Cross"?
+Okal
+10
+
+Names: Beginning with O: What name means "To Obey"?
+Obedience
+10
+
+Names: Beginning with O: What name means "Torch Light"?
+Onella
+10
+
+Names: Beginning with O: What name means "Venerable Oak"?
+Orrick
+10
+
+Names: Beginning with O: What name means "Venerable"?
+Oistin
+10
+
+Names: Beginning with O: What name means "Wealthy One"?
+Orton
+10
+
+Names: Beginning with O: What name means "Wealthy"?
+Odele
+10
+
+Names: Beginning with O: What name means "Wealthy"?
+Onan
+10
+
+Names: Beginning with O: What name means "Whom God Likes"?
+Osaze
+10
+
+Names: Beginning with O: What name means "Your Descent Matters"?
+Oafe
+10
+
+Names: Beginning with P: What name means "A Basin"?
+Pilar
+10
+
+Names: Beginning with P: What name means "A Broken Hill"?
+Pembroke
+10
+
+Names: Beginning with P: What name means "A Dove"?
+Paloma
+10
+
+Names: Beginning with P: What name means "A Form of Peter"?
+Perry
+10
+
+Names: Beginning with P: What name means "A Gem of the Sea"?
+Pearl
+10
+
+Names: Beginning with P: What name means "A Leaf"?
+Phyllis
+10
+
+Names: Beginning with P: What name means "A Rock"?
+Peers
+10
+
+Names: Beginning with P: What name means "A Rock"?
+Peter
+10
+
+Names: Beginning with P: What name means "A Rock"?
+Pierre
+10
+
+Names: Beginning with P: What name means "A Silent Worker"?
+Penelope
+10
+
+Names: Beginning with P: What name means "Agreeable"?
+Pleasance
+10
+
+Names: Beginning with P: What name means "Alligator"?
+Polo
+10
+
+Names: Beginning with P: What name means "Ancient"?
+Priscilla
+10
+
+Names: Beginning with P: What name means "Another One"?
+Phindiwe
+10
+
+Names: Beginning with P: What name means "Beginner, Learning"?
+Prentice
+10
+
+Names: Beginning with P: What name means "Bird"?
+Palila
+10
+
+Names: Beginning with P: What name means "Borrowed"?
+Pablo
+10
+
+Names: Beginning with P: What name means "Borrowed"?
+Paul
+10
+
+Names: Beginning with P: What name means "Brave One"?
+Prewitt
+10
+
+Names: Beginning with P: What name means "Bright, Shining One"?
+Phoebe
+10
+
+Names: Beginning with P: What name means "Burning Bright"?
+Phyre
+10
+
+Names: Beginning with P: What name means "Calm, Quiet"?
+Placido
+10
+
+Names: Beginning with P: What name means "Cautious, Intelligent"?
+Prudence
+10
+
+Names: Beginning with P: What name means "Corral"?
+Penn
+10
+
+Names: Beginning with P: What name means "Cute Person"?
+Pooky
+10
+
+Names: Beginning with P: What name means "Determined"?
+Pepin
+10
+
+Names: Beginning with P: What name means "Door Guard"?
+Porter
+10
+
+Names: Beginning with P: What name means "Enthroned"?
+Panya
+10
+
+Names: Beginning with P: What name means "Fashion TearDrop Print"?
+Paisley
+10
+
+Names: Beginning with P: What name means "Fem. form of PERRY"?
+Peri
+10
+
+Names: Beginning with P: What name means "Fifth"?
+Ponce
+10
+
+Names: Beginning with P: What name means "Fighter"?
+Pallaton
+10
+
+Names: Beginning with P: What name means "First Born"?
+Primo
+10
+
+Names: Beginning with P: What name means "First, Prince"?
+Prince
+10
+
+Names: Beginning with P: What name means "Flower"?
+Palesa
+10
+
+Names: Beginning with P: What name means "Flute Player"?
+Piper
+10
+
+Names: Beginning with P: What name means "Form of PAUL"?
+Paulos
+10
+
+Names: Beginning with P: What name means "Form of PETER"?
+Patch
+10
+
+Names: Beginning with P: What name means "Form of PETER"?
+Pierce
+10
+
+Names: Beginning with P: What name means "Form of PIERRE"?
+Pier
+10
+
+Names: Beginning with P: What name means "Form of PRUDENCE"?
+Prue
+10
+
+Names: Beginning with P: What name means "Free Man"?
+Palani
+10
+
+Names: Beginning with P: What name means "From PAYTON"?
+Peyton
+10
+
+Names: Beginning with P: What name means "From PERDITA"?
+Perdy
+10
+
+Names: Beginning with P: What name means "From the Flower"?
+Poppy
+10
+
+Names: Beginning with P: What name means "From the name BARTHOLOMEW"?
+Parlan
+10
+
+Names: Beginning with P: What name means "From the name FELICIA"?
+Phylicia
+10
+
+Names: Beginning with P: What name means "From the name MARGARET"?
+Peggy
+10
+
+Names: Beginning with P: What name means "From the name PACKARD"?
+Paco
+10
+
+Names: Beginning with P: What name means "From the name PAGE"?
+Paige
+10
+
+Names: Beginning with P: What name means "From the name PAMELA"?
+Palma
+10
+
+Names: Beginning with P: What name means "From the name PAMELA"?
+Palmer
+10
+
+Names: Beginning with P: What name means "From the name PAMELA"?
+Pamelia
+10
+
+Names: Beginning with P: What name means "From the name PATRICIA"?
+Patsy
+10
+
+Names: Beginning with P: What name means "From the name PATRICIA"?
+Patty
+10
+
+Names: Beginning with P: What name means "From the name PATRICK"?
+Paddy
+10
+
+Names: Beginning with P: What name means "From the name PAUL"?
+Paley
+10
+
+Names: Beginning with P: What name means "From the name PAUL"?
+Paolo
+10
+
+Names: Beginning with P: What name means "From the name PAUL"?
+Paula
+10
+
+Names: Beginning with P: What name means "From the name PAUL"?
+Pauline
+10
+
+Names: Beginning with P: What name means "From the name PAULINE"?
+Pabla
+10
+
+Names: Beginning with P: What name means "From the name PAULINE"?
+Paulina
+10
+
+Names: Beginning with P: What name means "From the name PEARL"?
+Pearlie
+10
+
+Names: Beginning with P: What name means "From the name PEARL"?
+Pearly
+10
+
+Names: Beginning with P: What name means "From the name PERCIVAL"?
+Percy
+10
+
+Names: Beginning with P: What name means "From the name PERRY"?
+Perrin
+10
+
+Names: Beginning with P: What name means "From the name PETER"?
+Pedro
+10
+
+Names: Beginning with P: What name means "From the name PETER"?
+Pete
+10
+
+Names: Beginning with P: What name means "From the name PHILLIP"?
+Phil
+10
+
+Names: Beginning with P: What name means "From the name PHILLIP"?
+Philip
+10
+
+Names: Beginning with P: What name means "From the name PHYLLIS"?
+Phyliss
+10
+
+Names: Beginning with P: What name means "From the name PIERRE"?
+Pierrette
+10
+
+Names: Beginning with P: What name means "From the Pepper Plant"?
+Pepper
+10
+
+Names: Beginning with P: What name means "From the Virtue"?
+Patience
+10
+
+Names: Beginning with P: What name means "Fruitful"?
+Poria
+10
+
+Names: Beginning with P: What name means "Full, Complete"?
+Plennie
+10
+
+Names: Beginning with P: What name means "Fur Skin"?
+Pelham
+10
+
+Names: Beginning with P: What name means "Gifted"?
+Pandora
+10
+
+Names: Beginning with P: What name means "Glowing"?
+Phaedra
+10
+
+Names: Beginning with P: What name means "God of Speech"?
+Phemia
+10
+
+Names: Beginning with P: What name means "God of Stormy Weather"?
+Pillan
+10
+
+Names: Beginning with P: What name means "Grandfather Emerald"?
+Po
+10
+
+Names: Beginning with P: What name means "Ground Without Slope"?
+Platt
+10
+
+Names: Beginning with P: What name means "Hair on Fire"?
+Pirro
+10
+
+Names: Beginning with P: What name means "History"?
+Pravat
+10
+
+Names: Beginning with P: What name means "Honey"?
+Pamela
+10
+
+Names: Beginning with P: What name means "Horse Lover"?
+Pilis
+10
+
+Names: Beginning with P: What name means "Impatient"?
+Petula
+10
+
+Names: Beginning with P: What name means "Irish Saint"?
+Phiala
+10
+
+Names: Beginning with P: What name means "Ivy"?
+Papina
+10
+
+Names: Beginning with P: What name means "Keeper of the Park"?
+Parker
+10
+
+Names: Beginning with P: What name means "King"?
+Pasi
+10
+
+Names: Beginning with P: What name means "Little Plum"?
+Prunella
+10
+
+Names: Beginning with P: What name means "Little"?
+Pavel
+10
+
+Names: Beginning with P: What name means "Love"?
+Phila
+10
+
+Names: Beginning with P: What name means "Loved by ALL"?
+Panfila
+10
+
+Names: Beginning with P: What name means "Loved"?
+Penda
+10
+
+Names: Beginning with P: What name means "Lover of Flowers"?
+Philantha
+10
+
+Names: Beginning with P: What name means "Lover of Mankind"?
+Philana
+10
+
+Names: Beginning with P: What name means "Lover of Mankind"?
+Philena
+10
+
+Names: Beginning with P: What name means "Lover"?
+Paris
+10
+
+Names: Beginning with P: What name means "Loving"?
+Phillip
+10
+
+Names: Beginning with P: What name means "Loving"?
+Philomena
+10
+
+Names: Beginning with P: What name means "Minister, Clergy"?
+Parson
+10
+
+Names: Beginning with P: What name means "My Daughter"?
+Paniga
+10
+
+Names: Beginning with P: What name means "My Escape, Deliverance"?
+Palti
+10
+
+Names: Beginning with P: What name means "Neighborhood"?
+Parrish
+10
+
+Names: Beginning with P: What name means "Nobleman"?
+Patrick
+10
+
+Names: Beginning with P: What name means "Of Fire"?
+Pyralis
+10
+
+Names: Beginning with P: What name means "Of Noble Descent"?
+Patricia
+10
+
+Names: Beginning with P: What name means "Of the Petunia Flower"?
+Petunia
+10
+
+Names: Beginning with P: What name means "Older Twin"?
+Panyin
+10
+
+Names: Beginning with P: What name means "One Who Packs"?
+Packard
+10
+
+Names: Beginning with P: What name means "Passover/Easter"?
+Pascale
+10
+
+Names: Beginning with P: What name means "Peace or Gold"?
+Paz
+10
+
+Names: Beginning with P: What name means "Peace"?
+Peale
+10
+
+Names: Beginning with P: What name means "Pearl"?
+Peigi
+10
+
+Names: Beginning with P: What name means "Pet form of Molly"?
+Polly
+10
+
+Names: Beginning with P: What name means "Physician of the Gods"?
+Peony
+10
+
+Names: Beginning with P: What name means "Piercing the Valley"?
+Percival
+10
+
+Names: Beginning with P: What name means "Pious"?
+Pia
+10
+
+Names: Beginning with P: What name means "Place of Rest"?
+Paulo
+10
+
+Names: Beginning with P: What name means "Poetry"?
+Piuta
+10
+
+Names: Beginning with P: What name means "Presence"?
+Presencia
+10
+
+Names: Beginning with P: What name means "Progressive"?
+Procopia
+10
+
+Names: Beginning with P: What name means "Sapphire"?
+Phailin
+10
+
+Names: Beginning with P: What name means "Sea"?
+Pelagia
+10
+
+Names: Beginning with P: What name means "She Who Is Lost"?
+Perdita
+10
+
+Names: Beginning with P: What name means "Silent Worker (from Penelope)"?
+Penney
+10
+
+Names: Beginning with P: What name means "Silent Worker (From Penelope)"?
+Pennie
+10
+
+Names: Beginning with P: What name means "Silent Worker (From Penelope)"?
+Penny
+10
+
+Names: Beginning with P: What name means "Small Flower"?
+Posy
+10
+
+Names: Beginning with P: What name means "Small Rock"?
+Piera
+10
+
+Names: Beginning with P: What name means "Small Rocks"?
+Pebbles
+10
+
+Names: Beginning with P: What name means "Small"?
+Paola
+10
+
+Names: Beginning with P: What name means "Small"?
+Paulette
+10
+
+Names: Beginning with P: What name means "Son of HARRY"?
+Parry
+10
+
+Names: Beginning with P: What name means "Stone"?
+Pekelo
+10
+
+Names: Beginning with P: What name means "Stone"?
+Pello
+10
+
+Names: Beginning with P: What name means "Stone"?
+Petra
+10
+
+Names: Beginning with P: What name means "Stone"?
+Petronella
+10
+
+Names: Beginning with P: What name means "Strong Shoulders"?
+Plato
+10
+
+Names: Beginning with P: What name means "The Soul"?
+Psyche
+10
+
+Names: Beginning with P: What name means "To Love Music"?
+Philyra
+10
+
+Names: Beginning with P: What name means "To Pass Over"?
+Pascha
+10
+
+Names: Beginning with P: What name means "To Speak"?
+Parley
+10
+
+Names: Beginning with P: What name means "Town of Peace"?
+Paxton
+10
+
+Names: Beginning with P: What name means "Tuft, Plume"?
+Pancho
+10
+
+Names: Beginning with P: What name means "Understanding"?
+Pallas
+10
+
+Names: Beginning with P: What name means "Village Warrior"?
+Payton
+10
+
+Names: Beginning with P: What name means "Wanderer"?
+Peregrine
+10
+
+Names: Beginning with P: What name means "Wealthy"?
+Powa
+10
+
+Names: Beginning with P: What name means "Young Peter"?
+Parkin
+10
+
+Names: Beginning with P: What name means "Youthful Assistant"?
+Page
+10
+
+Names: Beginning with Q: What name means "A Companion"?
+Quanda
+10
+
+Names: Beginning with Q: What name means "A Quill"?
+Quilla
+10
+
+Names: Beginning with Q: What name means "Able"?
+Qabil
+10
+
+Names: Beginning with Q: What name means "Aromatic"?
+Quana
+10
+
+Names: Beginning with Q: What name means "Beloved"?
+Querida
+10
+
+Names: Beginning with Q: What name means "Bright"?
+Quon
+10
+
+Names: Beginning with Q: What name means "Cub"?
+Quillan
+10
+
+Names: Beginning with Q: What name means "Fifth Child"?
+Quinto
+10
+
+Names: Beginning with Q: What name means "Fifth"?
+Quito
+10
+
+Names: Beginning with Q: What name means "Fourth"?
+Quade
+10
+
+Names: Beginning with Q: What name means "From the name QUENTIN"?
+Quincy
+10
+
+Names: Beginning with Q: What name means "From the name QUENTIN"?
+Quintin
+10
+
+Names: Beginning with Q: What name means "Gracious"?
+Qiana
+10
+
+Names: Beginning with Q: What name means "How much"?
+Quant
+10
+
+Names: Beginning with Q: What name means "JAO Gloriously Bright"?
+Qing
+10
+
+Names: Beginning with Q: What name means "Light"?
+Quang
+10
+
+Names: Beginning with Q: What name means "Mars, God of War"?
+Quirino
+10
+
+Names: Beginning with Q: What name means "Moon"?
+Qamar
+10
+
+Names: Beginning with Q: What name means "Oak Tree"?
+Quennell
+10
+
+Names: Beginning with Q: What name means "Queen or Female Companion"?
+Queenie
+10
+
+Names: Beginning with Q: What name means "Quintuplet"?
+Quin
+10
+
+Names: Beginning with Q: What name means "Quintuplet"?
+Qwin
+10
+
+Names: Beginning with Q: What name means "Soft, Synthetic Material"?
+Quiana
+10
+
+Names: Beginning with Q: What name means "The Fifth"?
+Quentin
+10
+
+Names: Beginning with Q: What name means "The Fifth"?
+Quinta
+10
+
+Names: Beginning with Q: What name means "to Kill"?
+Quella
+10
+
+Names: Beginning with Q: What name means "Valuable"?
+Qimat
+10
+
+Names: Beginning with Q: What name means "Very Strong"?
+Quinlan
+10
+
+Names: Beginning with R: What name means "A Companion, Friendship"?
+Ruth
+10
+
+Names: Beginning with R: What name means "A Female Sheep, Ewe"?
+Rachel
+10
+
+Names: Beginning with R: What name means "A Gypsy"?
+Rumer
+10
+
+Names: Beginning with R: What name means "A Reed or Red Haired"?
+Reed
+10
+
+Names: Beginning with R: What name means "A Ring"?
+Ringo
+10
+
+Names: Beginning with R: What name means "A Rock"?
+Rockne
+10
+
+Names: Beginning with R: What name means "A Ruby Jewel"?
+Ruby
+10
+
+Names: Beginning with R: What name means "A Rune"?
+Rune
+10
+
+Names: Beginning with R: What name means "A Small Stream"?
+Reilly
+10
+
+Names: Beginning with R: What name means "A Small Stream"?
+Riley
+10
+
+Names: Beginning with R: What name means "A Small Stream"?
+Rylie
+10
+
+Names: Beginning with R: What name means "A Small, Tame Bird"?
+Robin
+10
+
+Names: Beginning with R: What name means "A Stream"?
+Ray
+10
+
+Names: Beginning with R: What name means "A Stream"?
+Rhys
+10
+
+Names: Beginning with R: What name means "Advisor"?
+Rad
+10
+
+Names: Beginning with R: What name means "Advisor"?
+Rainer
+10
+
+Names: Beginning with R: What name means "Arranger"?
+Ren
+10
+
+Names: Beginning with R: What name means "Behold - A Son"?
+Reuben
+10
+
+Names: Beginning with R: What name means "Berry Plant"?
+Rudra
+10
+
+Names: Beginning with R: What name means "Bitter Rose"?
+Rosemary
+10
+
+Names: Beginning with R: What name means "Blackbrid"?
+Raven
+10
+
+Names: Beginning with R: What name means "Bright Fame"?
+Robert
+10
+
+Names: Beginning with R: What name means "Bright Fame"?
+Rupert
+10
+
+Names: Beginning with R: What name means "Brook"?
+Rea
+10
+
+Names: Beginning with R: What name means "Catherine"?
+Rina
+10
+
+Names: Beginning with R: What name means "Compact Strength"?
+Renny
+10
+
+Names: Beginning with R: What name means "Compassionate God"?
+Raheem
+10
+
+Names: Beginning with R: What name means "Compassionate"?
+Raimi
+10
+
+Names: Beginning with R: What name means "Cowboy"?
+Rangle
+10
+
+Names: Beginning with R: What name means "Crystal"?
+Ratana
+10
+
+Names: Beginning with R: What name means "Cure"?
+Remedy
+10
+
+Names: Beginning with R: What name means "Dawn"?
+Roxanne
+10
+
+Names: Beginning with R: What name means "Delight"?
+Radwan
+10
+
+Names: Beginning with R: What name means "Dewdrops"?
+Rocio
+10
+
+Names: Beginning with R: What name means "Dragon"?
+Ryo
+10
+
+Names: Beginning with R: What name means "Enthusiastic"?
+Reese
+10
+
+Names: Beginning with R: What name means "Ewe"?
+Rachelle
+10
+
+Names: Beginning with R: What name means "Fair Haired"?
+Rowena
+10
+
+Names: Beginning with R: What name means "Falsity"?
+Rumor
+10
+
+Names: Beginning with R: What name means "Fame Rule"?
+Roderick
+10
+
+Names: Beginning with R: What name means "Fame Spear"?
+Roger
+10
+
+Names: Beginning with R: What name means "Famed Throughout the Land"?
+Roland
+10
+
+Names: Beginning with R: What name means "Famed Throughout the Land"?
+Rolando
+10
+
+Names: Beginning with R: What name means "Famous in the Land"?
+Rollo
+10
+
+Names: Beginning with R: What name means "Famous Warrior"?
+Ruggiero
+10
+
+Names: Beginning with R: What name means "Famous Wolf"?
+Rudolph
+10
+
+Names: Beginning with R: What name means "Farmer"?
+Rider
+10
+
+Names: Beginning with R: What name means "Fem. form of RAPHAEL"?
+Raphaela
+10
+
+Names: Beginning with R: What name means "Fem. form of ROMAN"?
+Romaine
+10
+
+Names: Beginning with R: What name means "Fem. form of ROSS"?
+Rossa
+10
+
+Names: Beginning with R: What name means "Field of Birds"?
+Raleigh
+10
+
+Names: Beginning with R: What name means "Field of Roses"?
+Rhodes
+10
+
+Names: Beginning with R: What name means "Field of Roses"?
+Roosevelt
+10
+
+Names: Beginning with R: What name means "Flower"?
+Rehan
+10
+
+Names: Beginning with R: What name means "Forest Protector"?
+Ranger
+10
+
+Names: Beginning with R: What name means "Form of REBECCA"?
+Rimca
+10
+
+Names: Beginning with R: What name means "Form of RENEE"?
+Ranae
+10
+
+Names: Beginning with R: What name means "Form of ROLAND"?
+Revelin
+10
+
+Names: Beginning with R: What name means "Fox"?
+Reynard
+10
+
+Names: Beginning with R: What name means "Frog"?
+Rach
+10
+
+Names: Beginning with R: What name means "FROM JOHN"?
+Rianne
+10
+
+Names: Beginning with R: What name means "From MARGARITA"?
+Rita
+10
+
+Names: Beginning with R: What name means "From Reims"?
+Remi
+10
+
+Names: Beginning with R: What name means "From Rheims"?
+Remy
+10
+
+Names: Beginning with R: What name means "From RILEY"?
+Rylee
+10
+
+Names: Beginning with R: What name means "From RONA and LEE"?
+Ronalee
+10
+
+Names: Beginning with R: What name means "From the name RACHEL"?
+Rachael
+10
+
+Names: Beginning with R: What name means "From the name RACHEL"?
+Rae
+10
+
+Names: Beginning with R: What name means "From the name RACHEL"?
+Raquel
+10
+
+Names: Beginning with R: What name means "From the name RALPH or RUDOLF"?
+Rolf
+10
+
+Names: Beginning with R: What name means "From the name RALPH"?
+Randall
+10
+
+Names: Beginning with R: What name means "From the name RALPH"?
+Randolph
+10
+
+Names: Beginning with R: What name means "From the name RANDOLPH"?
+Randy
+10
+
+Names: Beginning with R: What name means "From the name RAPHAEL"?
+Rafael
+10
+
+Names: Beginning with R: What name means "From the name RAPHAEL"?
+Raffaello
+10
+
+Names: Beginning with R: What name means "From the name RAPHAEL"?
+Rafi
+10
+
+Names: Beginning with R: What name means "From the name RAYMOND"?
+Ramon
+10
+
+Names: Beginning with R: What name means "From the name REBECCA"?
+Reba
+10
+
+Names: Beginning with R: What name means "From the name REBECCA"?
+Rebekah
+10
+
+Names: Beginning with R: What name means "From the name REED"?
+Read
+10
+
+Names: Beginning with R: What name means "From the name REESE"?
+Rhett
+10
+
+Names: Beginning with R: What name means "From the name REGINALD"?
+Reynold
+10
+
+Names: Beginning with R: What name means "From the name REGINALD"?
+Ronald
+10
+
+Names: Beginning with R: What name means "From the name RENEE"?
+Rena
+10
+
+Names: Beginning with R: What name means "From the name RENEE"?
+Renata
+10
+
+Names: Beginning with R: What name means "From the name RICHARD"?
+Ricardo
+10
+
+Names: Beginning with R: What name means "From the name RICHARD"?
+Rich
+10
+
+Names: Beginning with R: What name means "From the name RICHARD"?
+Rick
+10
+
+Names: Beginning with R: What name means "From the name RICHARD"?
+Rico
+10
+
+Names: Beginning with R: What name means "From the name ROBERT"?
+Rob
+10
+
+Names: Beginning with R: What name means "From the name ROBIN"?
+Robbin
+10
+
+Names: Beginning with R: What name means "From the name ROBIN"?
+Robyn
+10
+
+Names: Beginning with R: What name means "From the name ROCKNE"?
+Rock
+10
+
+Names: Beginning with R: What name means "From the name RODNEY"?
+Rod
+10
+
+Names: Beginning with R: What name means "From the name RODNEY"?
+Rodd
+10
+
+Names: Beginning with R: What name means "From the name RODNEY"?
+Roddy
+10
+
+Names: Beginning with R: What name means "From the name RORY"?
+Rori
+10
+
+Names: Beginning with R: What name means "From the name ROSALIND"?
+Ros
+10
+
+Names: Beginning with R: What name means "From the name ROSALIND"?
+Rosalyn
+10
+
+Names: Beginning with R: What name means "From the name ROSALIND"?
+Roz
+10
+
+Names: Beginning with R: What name means "From the name ROSE and LINDA"?
+Rosalind
+10
+
+Names: Beginning with R: What name means "From the name ROSE"?
+Rosie
+10
+
+Names: Beginning with R: What name means "From the name RUDOLPH"?
+Rudy
+10
+
+Names: Beginning with R: What name means "From the name RUSSELL"?
+Russ
+10
+
+Names: Beginning with R: What name means "From the name VERONICA"?
+Ronna
+10
+
+Names: Beginning with R: What name means "From the name VERONICA"?
+Ronnie
+10
+
+Names: Beginning with R: What name means "From the name VERONICA"?
+Ronny
+10
+
+Names: Beginning with R: What name means "From the Raven"?
+Remington
+10
+
+Names: Beginning with R: What name means "From the Rocky Spring"?
+Rockwell
+10
+
+Names: Beginning with R: What name means "From the Rye Land"?
+Ryland
+10
+
+Names: Beginning with R: What name means "Glory"?
+Roch
+10
+
+Names: Beginning with R: What name means "God Has Healed"?
+Raphael
+10
+
+Names: Beginning with R: What name means "Godlike"?
+Ram
+10
+
+Names: Beginning with R: What name means "Grand"?
+Rhonda
+10
+
+Names: Beginning with R: What name means "Grand"?
+Ronda
+10
+
+Names: Beginning with R: What name means "Head, Boss"?
+Russom
+10
+
+Names: Beginning with R: What name means "Heavenly Rose"?
+Roselani
+10
+
+Names: Beginning with R: What name means "Hope"?
+Raja
+10
+
+Names: Beginning with R: What name means "Horseman"?
+Ryder
+10
+
+Names: Beginning with R: What name means "Intelligent and Dependable"?
+Ricjunette
+10
+
+Names: Beginning with R: What name means "Island"?
+Rylan
+10
+
+Names: Beginning with R: What name means "Joy is Mine"?
+Ronli
+10
+
+Names: Beginning with R: What name means "King"?
+Reginald
+10
+
+Names: Beginning with R: What name means "King"?
+Reth
+10
+
+Names: Beginning with R: What name means "King"?
+Rex
+10
+
+Names: Beginning with R: What name means "King"?
+Rey
+10
+
+Names: Beginning with R: What name means "King"?
+Roy
+10
+
+Names: Beginning with R: What name means "Land Near the Water"?
+Rodney
+10
+
+Names: Beginning with R: What name means "Laughter"?
+Risa
+10
+
+Names: Beginning with R: What name means "Link Together"?
+Rivka
+10
+
+Names: Beginning with R: What name means "Little King"?
+Ryan
+10
+
+Names: Beginning with R: What name means "Little Rock"?
+Rochelle
+10
+
+Names: Beginning with R: What name means "Little Rose"?
+Rosine
+10
+
+Names: Beginning with R: What name means "Little Seal"?
+Ronan
+10
+
+Names: Beginning with R: What name means "Lives near the Ridge"?
+Rigg
+10
+
+Names: Beginning with R: What name means "Musical Instrument"?
+Ruana
+10
+
+Names: Beginning with R: What name means "My Joy is the Lord"?
+Ronia
+10
+
+Names: Beginning with R: What name means "No Longer Thirsty"?
+Rayya
+10
+
+Names: Beginning with R: What name means "Of Rome"?
+Roman
+10
+
+Names: Beginning with R: What name means "Of the Romans"?
+Romeo
+10
+
+Names: Beginning with R: What name means "Of the Rose Blossom"?
+Rose
+10
+
+Names: Beginning with R: What name means "Over the Red River"?
+Redford
+10
+
+Names: Beginning with R: What name means "Park"?
+Rin
+10
+
+Names: Beginning with R: What name means "Peaceful, Queen"?
+Raina
+10
+
+Names: Beginning with R: What name means "Peaceful, Queen"?
+Reina
+10
+
+Names: Beginning with R: What name means "Peaceful, Queen"?
+Reyna
+10
+
+Names: Beginning with R: What name means "Pet form of ROCKNE"?
+Rocco
+10
+
+Names: Beginning with R: What name means "Pet form of ROCKNE"?
+Rocky
+10
+
+Names: Beginning with R: What name means "Police Officer"?
+Rendor
+10
+
+Names: Beginning with R: What name means "Pomegranate"?
+Rimona
+10
+
+Names: Beginning with R: What name means "Powerful, Rich Ruler"?
+Richard
+10
+
+Names: Beginning with R: What name means "Protected Waterfall"?
+Randilyn
+10
+
+Names: Beginning with R: What name means "Protector"?
+Ramona
+10
+
+Names: Beginning with R: What name means "Queen"?
+Raine
+10
+
+Names: Beginning with R: What name means "Queen"?
+Rane
+10
+
+Names: Beginning with R: What name means "Queen"?
+Ranee
+10
+
+Names: Beginning with R: What name means "Queen"?
+Rania
+10
+
+Names: Beginning with R: What name means "Queen"?
+Rasia
+10
+
+Names: Beginning with R: What name means "Queen"?
+Regina
+10
+
+Names: Beginning with R: What name means "Queenlike"?
+Riona
+10
+
+Names: Beginning with R: What name means "Rain"?
+Rain
+10
+
+Names: Beginning with R: What name means "Reaper"?
+Reza
+10
+
+Names: Beginning with R: What name means "Reborn"?
+Renate
+10
+
+Names: Beginning with R: What name means "Reborn"?
+Rene
+10
+
+Names: Beginning with R: What name means "Reborn"?
+Renee
+10
+
+Names: Beginning with R: What name means "Red Head"?
+Russell
+10
+
+Names: Beginning with R: What name means "Red Head"?
+Rusti
+10
+
+Names: Beginning with R: What name means "Red Head"?
+Rusty
+10
+
+Names: Beginning with R: What name means "Red Meadow"?
+Radley
+10
+
+Names: Beginning with R: What name means "Red Meadow"?
+Redell
+10
+
+Names: Beginning with R: What name means "Red Valley"?
+Roden
+10
+
+Names: Beginning with R: What name means "Red-Haired"?
+Rufina
+10
+
+Names: Beginning with R: What name means "Red"?
+Roja
+10
+
+Names: Beginning with R: What name means "Redhead"?
+Rufus
+10
+
+Names: Beginning with R: What name means "Redheaded One, or Dim. of REDMOND"?
+Red
+10
+
+Names: Beginning with R: What name means "Righteous"?
+Rashida
+10
+
+Names: Beginning with R: What name means "River"?
+Rio
+10
+
+Names: Beginning with R: What name means "River"?
+River
+10
+
+Names: Beginning with R: What name means "Riverbank"?
+Riva
+10
+
+Names: Beginning with R: What name means "Rivers"?
+Rhea
+10
+
+Names: Beginning with R: What name means "Rose and Anne"?
+Roseanne
+10
+
+Names: Beginning with R: What name means "Rose Garlands"?
+Rosalia
+10
+
+Names: Beginning with R: What name means "Rose"?
+Raisa
+10
+
+Names: Beginning with R: What name means "Rose"?
+Roza
+10
+
+Names: Beginning with R: What name means "Roses"?
+Rhoda
+10
+
+Names: Beginning with R: What name means "Rough Island"?
+Rhona
+10
+
+Names: Beginning with R: What name means "Royal Poet"?
+Riordan
+10
+
+Names: Beginning with R: What name means "Running Competition"?
+Race
+10
+
+Names: Beginning with R: What name means "Sandalwood"?
+Rohan
+10
+
+Names: Beginning with R: What name means "Satisfied"?
+Reda
+10
+
+Names: Beginning with R: What name means "Sea"?
+Rona
+10
+
+Names: Beginning with R: What name means "Seal"?
+Ronat
+10
+
+Names: Beginning with R: What name means "Secret"?
+Razi
+10
+
+Names: Beginning with R: What name means "Shining Light"?
+Roshaun
+10
+
+Names: Beginning with R: What name means "Short for Laurence"?
+Rance
+10
+
+Names: Beginning with R: What name means "Song"?
+Ranit
+10
+
+Names: Beginning with R: What name means "Spirited"?
+Rowdy
+10
+
+Names: Beginning with R: What name means "Spring"?
+Rabia
+10
+
+Names: Beginning with R: What name means "Steward"?
+Reeves
+10
+
+Names: Beginning with R: What name means "Stream"?
+Reece
+10
+
+Names: Beginning with R: What name means "Sun Born"?
+Ramses
+10
+
+Names: Beginning with R: What name means "Sun"?
+Ravi
+10
+
+Names: Beginning with R: What name means "Supreme Judge"?
+Ramiro
+10
+
+Names: Beginning with R: What name means "Sweet Basil, Virtuous"?
+Rianna
+10
+
+Names: Beginning with R: What name means "The Ruddy One"?
+Rory
+10
+
+Names: Beginning with R: What name means "To Flow"?
+Runa
+10
+
+Names: Beginning with R: What name means "To Tie, To Bind"?
+Rebecca
+10
+
+Names: Beginning with R: What name means "Tree with Red Berries, Mountain Ash"?
+Rowan
+10
+
+Names: Beginning with R: What name means "Weak One"?
+Rothrock
+10
+
+Names: Beginning with R: What name means "Wealthy"?
+Rafer
+10
+
+Names: Beginning with R: What name means "Wealthy"?
+Rafferty
+10
+
+Names: Beginning with R: What name means "White Rose"?
+Rhoswen
+10
+
+Names: Beginning with R: What name means "White Rose"?
+Rosalba
+10
+
+Names: Beginning with R: What name means "Wild Roses"?
+Rosamunde
+10
+
+Names: Beginning with R: What name means "Winding River"?
+Romney
+10
+
+Names: Beginning with R: What name means "Wise and Powerful"?
+Raghnall
+10
+
+Names: Beginning with R: What name means "Wise Protection"?
+Raymond
+10
+
+Names: Beginning with R: What name means "Wise"?
+Raegan
+10
+
+Names: Beginning with R: What name means "Wise"?
+Reagan
+10
+
+Names: Beginning with R: What name means "Wise"?
+Regan
+10
+
+Names: Beginning with R: What name means "Witch-Nymph-Goddess"?
+Rhiannon
+10
+
+Names: Beginning with R: What name means "Wolf Counselor"?
+Ralph
+10
+
+Names: Beginning with R: What name means "Wolf Counselor"?
+Raul
+10
+
+Names: Beginning with R: What name means "Woody Meadow"?
+Ross
+10
+
+Names: Beginning with R: What name means "Young Gazelle"?
+Rasha
+10
+
+Names: Beginning with S: What name means "7"?
+Seven
+10
+
+Names: Beginning with S: What name means "8th Month"?
+September
+10
+
+Names: Beginning with S: What name means "A Clear Sign"?
+Sinclair
+10
+
+Names: Beginning with S: What name means "A Clear Sign"?
+Synclair
+10
+
+Names: Beginning with S: What name means "A Crossing"?
+Sanford
+10
+
+Names: Beginning with S: What name means "A Crown"?
+Steven
+10
+
+Names: Beginning with S: What name means "A Flat clearing"?
+Sharon
+10
+
+Names: Beginning with S: What name means "A Gift"?
+Shay
+10
+
+Names: Beginning with S: What name means "A Grove"?
+Shaw
+10
+
+Names: Beginning with S: What name means "A House"?
+Studs
+10
+
+Names: Beginning with S: What name means "A mound or rampart"?
+Sonnagh
+10
+
+Names: Beginning with S: What name means "A Rose or Lily"?
+Susan
+10
+
+Names: Beginning with S: What name means "A Saint"?
+Santo
+10
+
+Names: Beginning with S: What name means "A Sheltered Town"?
+Shelby
+10
+
+Names: Beginning with S: What name means "A Sign, Symbol"?
+Senalda
+10
+
+Names: Beginning with S: What name means "A Sign"?
+Seema
+10
+
+Names: Beginning with S: What name means "A Song"?
+Sheera
+10
+
+Names: Beginning with S: What name means "A Song"?
+Shira
+10
+
+Names: Beginning with S: What name means "A Star"?
+Star
+10
+
+Names: Beginning with S: What name means "A Storm"?
+Storm
+10
+
+Names: Beginning with S: What name means "Administrator"?
+Spencer
+10
+
+Names: Beginning with S: What name means "Ancient God"?
+Shannon
+10
+
+Names: Beginning with S: What name means "Ancient Philosopher"?
+Socrates
+10
+
+Names: Beginning with S: What name means "Appointed"?
+Seth
+10
+
+Names: Beginning with S: What name means "Attendant"?
+Sergio
+10
+
+Names: Beginning with S: What name means "Auspicious"?
+Shubha
+10
+
+Names: Beginning with S: What name means "Bag"?
+Satchel
+10
+
+Names: Beginning with S: What name means "Beautiful Thought"?
+Suchin
+10
+
+Names: Beginning with S: What name means "Beautiful"?
+Shaina
+10
+
+Names: Beginning with S: What name means "Believe"?
+Sadiki
+10
+
+Names: Beginning with S: What name means "Beloved, Dearest"?
+Sheri
+10
+
+Names: Beginning with S: What name means "Beloved, Dearest"?
+Sherine
+10
+
+Names: Beginning with S: What name means "Beloved"?
+Sherri
+10
+
+Names: Beginning with S: What name means "Beloved"?
+Sherry
+10
+
+Names: Beginning with S: What name means "Beloved"?
+Sheryl
+10
+
+Names: Beginning with S: What name means "Beloved"?
+Suki
+10
+
+Names: Beginning with S: What name means "Black"?
+Sierra
+10
+
+Names: Beginning with S: What name means "Blind"?
+Selia
+10
+
+Names: Beginning with S: What name means "Blind"?
+Shelagh
+10
+
+Names: Beginning with S: What name means "Blind"?
+Shiela
+10
+
+Names: Beginning with S: What name means "Born on Sunday"?
+Sondo
+10
+
+Names: Beginning with S: What name means "Borrowed"?
+Saul
+10
+
+Names: Beginning with S: What name means "Bright as the Sun"?
+Samson
+10
+
+Names: Beginning with S: What name means "Bright Light"?
+Sveta
+10
+
+Names: Beginning with S: What name means "Bright Meadow"?
+Shirlyn
+10
+
+Names: Beginning with S: What name means "Brilliant, of the Sun"?
+Sunny
+10
+
+Names: Beginning with S: What name means "Brings Comfort, Peace"?
+Selima
+10
+
+Names: Beginning with S: What name means "Camp glory"?
+Stanislaus
+10
+
+Names: Beginning with S: What name means "Celtic"?
+Shalaidah
+10
+
+Names: Beginning with S: What name means "Chief"?
+Sarki
+10
+
+Names: Beginning with S: What name means "Child of the Valley"?
+Slade
+10
+
+Names: Beginning with S: What name means "Chirping Songbird"?
+Sora
+10
+
+Names: Beginning with S: What name means "Comfort"?
+Solace
+10
+
+Names: Beginning with S: What name means "Contraction of St. Denys"?
+Sidney
+10
+
+Names: Beginning with S: What name means "Contraction of St. Denys"?
+Sydnee
+10
+
+Names: Beginning with S: What name means "Contraction of St. Denys"?
+Sydney
+10
+
+Names: Beginning with S: What name means "Crowned One"?
+Stesha
+10
+
+Names: Beginning with S: What name means "Crowned with Wreath"?
+Stavros
+10
+
+Names: Beginning with S: What name means "Delight"?
+Sevinc
+10
+
+Names: Beginning with S: What name means "Desert Plain"?
+Sharne
+10
+
+Names: Beginning with S: What name means "Dim. of CECELIA or SHELDON"?
+Shelley
+10
+
+Names: Beginning with S: What name means "Dim. of CECELIA or SHELDON"?
+Shelly
+10
+
+Names: Beginning with S: What name means "Dim. of SNOW"?
+Snowy
+10
+
+Names: Beginning with S: What name means "Divine Omen"?
+Sema
+10
+
+Names: Beginning with S: What name means "Divine Woman"?
+Shakti
+10
+
+Names: Beginning with S: What name means "Early Morning, Dawn"?
+Shacher
+10
+
+Names: Beginning with S: What name means "Excellent"?
+Saraid
+10
+
+Names: Beginning with S: What name means "Fair Complected"?
+Snow
+10
+
+Names: Beginning with S: What name means "Fair"?
+Selma
+10
+
+Names: Beginning with S: What name means "Fairy Place"?
+Shea
+10
+
+Names: Beginning with S: What name means "Fairytale"?
+Satu
+10
+
+Names: Beginning with S: What name means "Farmer"?
+Seoras
+10
+
+Names: Beginning with S: What name means "Fem. form of John"?
+Shona
+10
+
+Names: Beginning with S: What name means "Fem. form of SHAUN"?
+Shauna
+10
+
+Names: Beginning with S: What name means "Fem. form of SHAUN"?
+Shaunna
+10
+
+Names: Beginning with S: What name means "Fem. form of SHAUN"?
+Shawna
+10
+
+Names: Beginning with S: What name means "First Explorer"?
+Scout
+10
+
+Names: Beginning with S: What name means "Flaming Red"?
+Scarlet
+10
+
+Names: Beginning with S: What name means "Flat Meadow"?
+Smedley
+10
+
+Names: Beginning with S: What name means "Flat Plain"?
+Sharis
+10
+
+Names: Beginning with S: What name means "Flower"?
+Sidonie
+10
+
+Names: Beginning with S: What name means "Force, Truth"?
+Seiko
+10
+
+Names: Beginning with S: What name means "Forest Voices"?
+Seda
+10
+
+Names: Beginning with S: What name means "Forest"?
+Silvain
+10
+
+Names: Beginning with S: What name means "Forest"?
+Silvana
+10
+
+Names: Beginning with S: What name means "Form of Isabel"?
+Sybil
+10
+
+Names: Beginning with S: What name means "Form of SARAH or Bright"?
+Sorcha
+10
+
+Names: Beginning with S: What name means "Form of SARAH"?
+Sally
+10
+
+Names: Beginning with S: What name means "Form of SEBASTIAN"?
+Sebastien
+10
+
+Names: Beginning with S: What name means "Form of: JOAN"?
+Siobhan
+10
+
+Names: Beginning with S: What name means "From ALEXANDER"?
+Sandro
+10
+
+Names: Beginning with S: What name means "From SALVATORE and IRENE"?
+Salene
+10
+
+Names: Beginning with S: What name means "From SELENA"?
+Selene
+10
+
+Names: Beginning with S: What name means "From SERAFINA"?
+Sera
+10
+
+Names: Beginning with S: What name means "FROM SHANNON"?
+Shannen
+10
+
+Names: Beginning with S: What name means "From SHEA and DON"?
+Sheadon
+10
+
+Names: Beginning with S: What name means "From STEPHANIE"?
+Stefanie
+10
+
+Names: Beginning with S: What name means "From the Forest, Woods"?
+Sylvester
+10
+
+Names: Beginning with S: What name means "From the Forest"?
+Sylvia
+10
+
+Names: Beginning with S: What name means "From the Gem"?
+Sapphire
+10
+
+Names: Beginning with S: What name means "From the name ALEXANDER"?
+Sandra
+10
+
+Names: Beginning with S: What name means "From the name ALEXANDER"?
+Sandy
+10
+
+Names: Beginning with S: What name means "From the name CECILIA"?
+Sheila
+10
+
+Names: Beginning with S: What name means "From the name CECILIA"?
+Sissy
+10
+
+Names: Beginning with S: What name means "From the name CHARISSE"?
+Sherise
+10
+
+Names: Beginning with S: What name means "From the name CHARLES"?
+Sharlene
+10
+
+Names: Beginning with S: What name means "From the name CYBILL"?
+Sibyl
+10
+
+Names: Beginning with S: What name means "From the name JAMES"?
+Seamus
+10
+
+Names: Beginning with S: What name means "From the name JAMES"?
+Shamus
+10
+
+Names: Beginning with S: What name means "From the name JOHN"?
+Sean
+10
+
+Names: Beginning with S: What name means "From the name JOHN"?
+Shaun
+10
+
+Names: Beginning with S: What name means "From the name JOHN"?
+Shawn
+10
+
+Names: Beginning with S: What name means "From the name SABINE"?
+Sabina
+10
+
+Names: Beginning with S: What name means "From the name SABRA"?
+Sabrina
+10
+
+Names: Beginning with S: What name means "From the name SALVADOR"?
+Sal
+10
+
+Names: Beginning with S: What name means "From the name SAMUEL"?
+Sam
+10
+
+Names: Beginning with S: What name means "From the name SANTO"?
+Santos
+10
+
+Names: Beginning with S: What name means "From the name SARAH"?
+Sadie
+10
+
+Names: Beginning with S: What name means "From the name SARAH"?
+Sara
+10
+
+Names: Beginning with S: What name means "From the name SCOTT"?
+Scot
+10
+
+Names: Beginning with S: What name means "From the name SHANNON"?
+Shanon
+10
+
+Names: Beginning with S: What name means "From the name SHELDON"?
+Shel
+10
+
+Names: Beginning with S: What name means "From the name SIDNEY"?
+Sid
+10
+
+Names: Beginning with S: What name means "From the name Silvia"?
+Sasilvia
+10
+
+Names: Beginning with S: What name means "From the name SKIPPER"?
+Skip
+10
+
+Names: Beginning with S: What name means "From the name SONIA"?
+Sonya
+10
+
+Names: Beginning with S: What name means "From the name SOPHIA"?
+Sofia
+10
+
+Names: Beginning with S: What name means "From the name SOPHIE"?
+Sophia
+10
+
+Names: Beginning with S: What name means "From the name SPENCER"?
+Spence
+10
+
+Names: Beginning with S: What name means "From the name STANISLAV"?
+Stanislaw
+10
+
+Names: Beginning with S: What name means "From the name STANLEY"?
+Stan
+10
+
+Names: Beginning with S: What name means "From the name STAR"?
+Starr
+10
+
+Names: Beginning with S: What name means "From the name STEVEN"?
+Stefan
+10
+
+Names: Beginning with S: What name means "From the name STEVEN"?
+Steffi
+10
+
+Names: Beginning with S: What name means "From the name STEVEN"?
+Steffie
+10
+
+Names: Beginning with S: What name means "From the name STEVEN"?
+Step
+10
+
+Names: Beginning with S: What name means "From the name STEVEN"?
+Stephan
+10
+
+Names: Beginning with S: What name means "From the name STEVEN"?
+Stephanie
+10
+
+Names: Beginning with S: What name means "From the name STEVEN"?
+Stephen
+10
+
+Names: Beginning with S: What name means "From the name STEVEN"?
+Stephenie
+10
+
+Names: Beginning with S: What name means "From the name STEVEN"?
+Steve
+10
+
+Names: Beginning with S: What name means "From the name STEVEN"?
+Stevie
+10
+
+Names: Beginning with S: What name means "From the name STUART"?
+Stew
+10
+
+Names: Beginning with S: What name means "From the name STUART"?
+Stewart
+10
+
+Names: Beginning with S: What name means "From the name STUART"?
+Stu
+10
+
+Names: Beginning with S: What name means "From the name SUSAN"?
+Sue
+10
+
+Names: Beginning with S: What name means "From the name SUSAN"?
+Sukey
+10
+
+Names: Beginning with S: What name means "From the name SUSAN"?
+Susanna
+10
+
+Names: Beginning with S: What name means "From the name SUSAN"?
+Susannah
+10
+
+Names: Beginning with S: What name means "From the name SUSAN"?
+Susie
+10
+
+Names: Beginning with S: What name means "From the name SUSAN"?
+Suzanne
+10
+
+Names: Beginning with S: What name means "From the name SUSAN"?
+Suzette
+10
+
+Names: Beginning with S: What name means "From the name SUSAN"?
+Suzy
+10
+
+Names: Beginning with S: What name means "From the name SYLVIA"?
+Sylvie
+10
+
+Names: Beginning with S: What name means "From the name ZACHERY"?
+Saku
+10
+
+Names: Beginning with S: What name means "From the spice OR Prophet"?
+Sage
+10
+
+Names: Beginning with S: What name means "Fulfilled"?
+Semira
+10
+
+Names: Beginning with S: What name means "Girl Child of Bliss"?
+Sachi
+10
+
+Names: Beginning with S: What name means "Glory of the Camp"?
+Stanislav
+10
+
+Names: Beginning with S: What name means "God Has Heard"?
+Samuel
+10
+
+Names: Beginning with S: What name means "God is Gracious"?
+Seanna
+10
+
+Names: Beginning with S: What name means "God is Gracious"?
+Shana
+10
+
+Names: Beginning with S: What name means "God is Gracious"?
+Shandi
+10
+
+Names: Beginning with S: What name means "God is gracious"?
+Shane
+10
+
+Names: Beginning with S: What name means "God of War"?
+Soren
+10
+
+Names: Beginning with S: What name means "Goddess who Watched OVer Bath"?
+Sulis
+10
+
+Names: Beginning with S: What name means "Good Fortune"?
+Serendipity
+10
+
+Names: Beginning with S: What name means "Good Thing"?
+Sunee
+10
+
+Names: Beginning with S: What name means "Grateful"?
+Shakir
+10
+
+Names: Beginning with S: What name means "Happiness"?
+Sanyu
+10
+
+Names: Beginning with S: What name means "Heavenly, Winged Angel"?
+Serafina
+10
+
+Names: Beginning with S: What name means "Helper"?
+Saidi
+10
+
+Names: Beginning with S: What name means "Helper/Defender of Mankind"?
+Sondra
+10
+
+Names: Beginning with S: What name means "Her Place"?
+Safara
+10
+
+Names: Beginning with S: What name means "Holy Man"?
+Shaman
+10
+
+Names: Beginning with S: What name means "Hope"?
+Speranza
+10
+
+Names: Beginning with S: What name means "Hurried"?
+Sarda
+10
+
+Names: Beginning with S: What name means "Impetuous Nature"?
+Stormy
+10
+
+Names: Beginning with S: What name means "Inca Gold"?
+Sahara
+10
+
+Names: Beginning with S: What name means "Invincible"?
+Sanjeet
+10
+
+Names: Beginning with S: What name means "Irish form of JANE"?
+Sinead
+10
+
+Names: Beginning with S: What name means "It is heard"?
+Simon
+10
+
+Names: Beginning with S: What name means "It is heard"?
+Simone
+10
+
+Names: Beginning with S: What name means "Jane, God is Gracious"?
+Sheena
+10
+
+Names: Beginning with S: What name means "Jane, God is Gracious"?
+Sine
+10
+
+Names: Beginning with S: What name means "Jewel"?
+Serwa
+10
+
+Names: Beginning with S: What name means "Keeper of the Estate"?
+Stuart
+10
+
+Names: Beginning with S: What name means "Kingdom in Arabia"?
+Sheba
+10
+
+Names: Beginning with S: What name means "Lily"?
+Sanne
+10
+
+Names: Beginning with S: What name means "Lily"?
+Shoshana
+10
+
+Names: Beginning with S: What name means "Lily"?
+Shoushan
+10
+
+Names: Beginning with S: What name means "Lily"?
+Sonel
+10
+
+Names: Beginning with S: What name means "Lily"?
+Susane
+10
+
+Names: Beginning with S: What name means "Lion"?
+Simba
+10
+
+Names: Beginning with S: What name means "Listener"?
+Solada
+10
+
+Names: Beginning with S: What name means "Long, Heavy Nail"?
+Spike
+10
+
+Names: Beginning with S: What name means "Lunar Glow"?
+Selina
+10
+
+Names: Beginning with S: What name means "Marshy Land Near the Sea"?
+Seymour
+10
+
+Names: Beginning with S: What name means "Marvelous"?
+Shani
+10
+
+Names: Beginning with S: What name means "Military Man"?
+Sargent
+10
+
+Names: Beginning with S: What name means "Money"?
+Sika
+10
+
+Names: Beginning with S: What name means "Nice"?
+Sarama
+10
+
+Names: Beginning with S: What name means "Of Ancient Italian Culture"?
+Sabine
+10
+
+Names: Beginning with S: What name means "Of Scottish Origin"?
+Scott
+10
+
+Names: Beginning with S: What name means "Of the Forest"?
+Sylvain
+10
+
+Names: Beginning with S: What name means "Old, Ancient"?
+Saba
+10
+
+Names: Beginning with S: What name means "Old"?
+Synan
+10
+
+Names: Beginning with S: What name means "On a Hill, Protected"?
+Sheldon
+10
+
+Names: Beginning with S: What name means "Ostrich from Water"?
+Sadira
+10
+
+Names: Beginning with S: What name means "Ostrich"?
+Seghen
+10
+
+Names: Beginning with S: What name means "Peaceful Disposition"?
+Serenity
+10
+
+Names: Beginning with S: What name means "Peaceful"?
+Serepta
+10
+
+Names: Beginning with S: What name means "Peaceful"?
+Shiloh
+10
+
+Names: Beginning with S: What name means "Peaceful"?
+Shlomo
+10
+
+Names: Beginning with S: What name means "Peaceful"?
+Solomon
+10
+
+Names: Beginning with S: What name means "Peacemaker"?
+Sheehan
+10
+
+Names: Beginning with S: What name means "Pet form of ALEXANDER"?
+Sasha
+10
+
+Names: Beginning with S: What name means "Pleasant Sounding"?
+Sonora
+10
+
+Names: Beginning with S: What name means "Precious Stone"?
+Shamira
+10
+
+Names: Beginning with S: What name means "Precious Water"?
+Shasa
+10
+
+Names: Beginning with S: What name means "Pretty"?
+Shakila
+10
+
+Names: Beginning with S: What name means "Pretty"?
+Shaquille
+10
+
+Names: Beginning with S: What name means "Princess"?
+Sarah
+10
+
+Names: Beginning with S: What name means "Protector of Mankind"?
+Saskia
+10
+
+Names: Beginning with S: What name means "Protector"?
+Sanjay
+10
+
+Names: Beginning with S: What name means "Quiet, Gentle"?
+Stillman
+10
+
+Names: Beginning with S: What name means "Ready for Battle"?
+Shamara
+10
+
+Names: Beginning with S: What name means "Red"?
+Scarlett
+10
+
+Names: Beginning with S: What name means "Reddish Brown"?
+Sienna
+10
+
+Names: Beginning with S: What name means "Resurrection"?
+Stacey
+10
+
+Names: Beginning with S: What name means "Resurrection"?
+Stacia
+10
+
+Names: Beginning with S: What name means "Resurrection"?
+Stacy
+10
+
+Names: Beginning with S: What name means "Rock"?
+Sela
+10
+
+Names: Beginning with S: What name means "Rocky Area"?
+Shantell
+10
+
+Names: Beginning with S: What name means "Rocky Meadow"?
+Stanley
+10
+
+Names: Beginning with S: What name means "Rose"?
+Shoshanah
+10
+
+Names: Beginning with S: What name means "Rose"?
+Sirvat
+10
+
+Names: Beginning with S: What name means "Round Basket"?
+Spyridon
+10
+
+Names: Beginning with S: What name means "Sacred Dancer"?
+Satinka
+10
+
+Names: Beginning with S: What name means "Sailor"?
+Sailor
+10
+
+Names: Beginning with S: What name means "Saint John"?
+Sinjin
+10
+
+Names: Beginning with S: What name means "Salt"?
+Salena
+10
+
+Names: Beginning with S: What name means "Savior"?
+Salvador
+10
+
+Names: Beginning with S: What name means "Savior"?
+Salvatore
+10
+
+Names: Beginning with S: What name means "Scholar"?
+Schuyler
+10
+
+Names: Beginning with S: What name means "Serene, Calm"?
+Serena
+10
+
+Names: Beginning with S: What name means "Servant"?
+Serge
+10
+
+Names: Beginning with S: What name means "Severe"?
+Severino
+10
+
+Names: Beginning with S: What name means "Shalom/Welcome, Peace"?
+Salome
+10
+
+Names: Beginning with S: What name means "Shearer or Servant"?
+Sherman
+10
+
+Names: Beginning with S: What name means "Sheltering"?
+Skylar
+10
+
+Names: Beginning with S: What name means "Sheltering"?
+Skyler
+10
+
+Names: Beginning with S: What name means "Shipmaster"?
+Skipper
+10
+
+Names: Beginning with S: What name means "Signal, Sign"?
+Signa
+10
+
+Names: Beginning with S: What name means "Small and Wise"?
+Shanna
+10
+
+Names: Beginning with S: What name means "Smooth Fabric"?
+Satin
+10
+
+Names: Beginning with S: What name means "Solitary"?
+Solange
+10
+
+Names: Beginning with S: What name means "Song is Mine"?
+Shirley
+10
+
+Names: Beginning with S: What name means "Song of my Soul"?
+Shiri
+10
+
+Names: Beginning with S: What name means "Sowing, Planting"?
+Season
+10
+
+Names: Beginning with S: What name means "Star Born"?
+Sidra
+10
+
+Names: Beginning with S: What name means "Star"?
+Stella
+10
+
+Names: Beginning with S: What name means "Stem of Bamboo"?
+Shino
+10
+
+Names: Beginning with S: What name means "Stone"?
+Stone
+10
+
+Names: Beginning with S: What name means "Street"?
+Syshe
+10
+
+Names: Beginning with S: What name means "Sugar"?
+Sugar
+10
+
+Names: Beginning with S: What name means "Sun or See SOLOMON"?
+Sol
+10
+
+Names: Beginning with S: What name means "Sun"?
+Soleil
+10
+
+Names: Beginning with S: What name means "Swordsman"?
+Saxen
+10
+
+Names: Beginning with S: What name means "Swordsman"?
+Saxon
+10
+
+Names: Beginning with S: What name means "Swordsman"?
+Saxton
+10
+
+Names: Beginning with S: What name means "Thankful"?
+Shakira
+10
+
+Names: Beginning with S: What name means "The Color Silver"?
+Silver
+10
+
+Names: Beginning with S: What name means "The Listener"?
+Samantha
+10
+
+Names: Beginning with S: What name means "The Moon"?
+Selena
+10
+
+Names: Beginning with S: What name means "The Season"?
+Summer
+10
+
+Names: Beginning with S: What name means "The Town to the South"?
+Sutton
+10
+
+Names: Beginning with S: What name means "Thorny Cactus"?
+Sabra
+10
+
+Names: Beginning with S: What name means "Three"?
+Shasta
+10
+
+Names: Beginning with S: What name means "To Entice"?
+Sidonia
+10
+
+Names: Beginning with S: What name means "To Sow"?
+Semele
+10
+
+Names: Beginning with S: What name means "To Stain"?
+Sully
+10
+
+Names: Beginning with S: What name means "Town Near Tree Trunk"?
+Stockton
+10
+
+Names: Beginning with S: What name means "Treasure, Prize"?
+Sima
+10
+
+Names: Beginning with S: What name means "Treeless Plain"?
+Savannah
+10
+
+Names: Beginning with S: What name means "Trinity"?
+Selas
+10
+
+Names: Beginning with S: What name means "Valuable"?
+Sterling
+10
+
+Names: Beginning with S: What name means "Venerable"?
+Sebastian
+10
+
+Names: Beginning with S: What name means "Victory"?
+Shing
+10
+
+Names: Beginning with S: What name means "viking"?
+Sorley
+10
+
+Names: Beginning with S: What name means "Warrior"?
+Sloan
+10
+
+Names: Beginning with S: What name means "Warrior"?
+Sloane
+10
+
+Names: Beginning with S: What name means "Warrior"?
+Slone
+10
+
+Names: Beginning with S: What name means "Wealthy"?
+Sumana
+10
+
+Names: Beginning with S: What name means "Well-going"?
+Sivney
+10
+
+Names: Beginning with S: What name means "Wild"?
+Sheridan
+10
+
+Names: Beginning with S: What name means "Wind from the East"?
+Solana
+10
+
+Names: Beginning with S: What name means "Wisdom"?
+Sonia
+10
+
+Names: Beginning with S: What name means "Wisdom"?
+Sophie
+10
+
+Names: Beginning with S: What name means "Woodcutter"?
+Sawyer
+10
+
+Names: Beginning with S: What name means "Yellow"?
+Saffron
+10
+
+Names: Beginning with S: What name means "youth"?
+Sileas
+10
+
+Names: Beginning with S: What name means "Youth"?
+Svein
+10
+
+Names: Beginning with T: What name means "A Fairy Queen"?
+Tania
+10
+
+Names: Beginning with T: What name means "A Gazelle"?
+Tabitha
+10
+
+Names: Beginning with T: What name means "A Holy Place"?
+Tybal
+10
+
+Names: Beginning with T: What name means "A Lamb"?
+Teli
+10
+
+Names: Beginning with T: What name means "A little hill"?
+Tulla
+10
+
+Names: Beginning with T: What name means "A measure of land"?
+Tate
+10
+
+Names: Beginning with T: What name means "A Poet"?
+Teague
+10
+
+Names: Beginning with T: What name means "A Poet"?
+Teige
+10
+
+Names: Beginning with T: What name means "A Sanctuary"?
+Temple
+10
+
+Names: Beginning with T: What name means "A Soft Hat"?
+Trilby
+10
+
+Names: Beginning with T: What name means "A Spice or Palm Tree"?
+Tamara
+10
+
+Names: Beginning with T: What name means "A Spice or Palm Tree"?
+Tamera
+10
+
+Names: Beginning with T: What name means "A Twin"?
+Thomas
+10
+
+Names: Beginning with T: What name means "A Twin"?
+Tomas
+10
+
+Names: Beginning with T: What name means "A Twin"?
+Tommy
+10
+
+Names: Beginning with T: What name means "A Window or Goddess of Dawn"?
+Thyra
+10
+
+Names: Beginning with T: What name means "An Estate"?
+Tanith
+10
+
+Names: Beginning with T: What name means "AN Smooth"?
+Traelic
+10
+
+Names: Beginning with T: What name means "Angel"?
+Tuyen
+10
+
+Names: Beginning with T: What name means "Attractive"?
+Teagan
+10
+
+Names: Beginning with T: What name means "Bear and Man"?
+Thanos
+10
+
+Names: Beginning with T: What name means "Beautiful View"?
+Tasanee
+10
+
+Names: Beginning with T: What name means "Beloved"?
+Tovi
+10
+
+Names: Beginning with T: What name means "Beloved"?
+Trudy
+10
+
+Names: Beginning with T: What name means "Bird"?
+Torrin
+10
+
+Names: Beginning with T: What name means "Bold"?
+Tristessa
+10
+
+Names: Beginning with T: What name means "Born on Monday"?
+Tanesia
+10
+
+Names: Beginning with T: What name means "Born on Monday"?
+Tenen
+10
+
+Names: Beginning with T: What name means "Brave"?
+Tracey
+10
+
+Names: Beginning with T: What name means "Brave"?
+Tracy
+10
+
+Names: Beginning with T: What name means "Bringer of Joy"?
+Trixie
+10
+
+Names: Beginning with T: What name means "Calm, Tranquil"?
+Tranquilla
+10
+
+Names: Beginning with T: What name means "Catholic Saint"?
+Tertullian
+10
+
+Names: Beginning with T: What name means "Cheerful, Full of Laughter"?
+Teshi
+10
+
+Names: Beginning with T: What name means "Cheerful"?
+Tait
+10
+
+Names: Beginning with T: What name means "Christian"?
+Thina
+10
+
+Names: Beginning with T: What name means "Church land"?
+Termon
+10
+
+Names: Beginning with T: What name means "Consecrated to God"?
+Talisa
+10
+
+Names: Beginning with T: What name means "Corn flower"?
+Talasi
+10
+
+Names: Beginning with T: What name means "Created"?
+Tawana
+10
+
+Names: Beginning with T: What name means "Crossroads"?
+Travis
+10
+
+Names: Beginning with T: What name means "Crowned"?
+Tiara
+10
+
+Names: Beginning with T: What name means "Damsel Arise"?
+Talisha
+10
+
+Names: Beginning with T: What name means "Daytime"?
+Tarana
+10
+
+Names: Beginning with T: What name means "Dear Tammy"?
+Tamatha
+10
+
+Names: Beginning with T: What name means "Death"?
+Than
+10
+
+Names: Beginning with T: What name means "Delicate"?
+Tryphena
+10
+
+Names: Beginning with T: What name means "Delight"?
+Tirzah
+10
+
+Names: Beginning with T: What name means "Dim. of PATRICIA"?
+Tisha
+10
+
+Names: Beginning with T: What name means "Dim. of THADDEUS"?
+Thady
+10
+
+Names: Beginning with T: What name means "Divine Fame"?
+Tecla
+10
+
+Names: Beginning with T: What name means "Divine Gift"?
+Ted
+10
+
+Names: Beginning with T: What name means "Divine Gift"?
+Teddy
+10
+
+Names: Beginning with T: What name means "Divine Gift"?
+Theodore
+10
+
+Names: Beginning with T: What name means "Divine Gift"?
+Tudor
+10
+
+Names: Beginning with T: What name means "Drummer"?
+Taber
+10
+
+Names: Beginning with T: What name means "Earth"?
+Terra
+10
+
+Names: Beginning with T: What name means "Earth"?
+Terran
+10
+
+Names: Beginning with T: What name means "Earth"?
+Tuwa
+10
+
+Names: Beginning with T: What name means "End of the Town"?
+Townsend
+10
+
+Names: Beginning with T: What name means "Fairy Queen"?
+Tatiana
+10
+
+Names: Beginning with T: What name means "Faithful Man"?
+Truman
+10
+
+Names: Beginning with T: What name means "Fame"?
+Tumo
+10
+
+Names: Beginning with T: What name means "Famous for God"?
+Tekli
+10
+
+Names: Beginning with T: What name means "Fem. form of Daniel"?
+Taniel
+10
+
+Names: Beginning with T: What name means "Fem. form of TYRONE"?
+Taryn
+10
+
+Names: Beginning with T: What name means "Feminine form of TERENCE"?
+Theresa
+10
+
+Names: Beginning with T: What name means "Fertile Valley"?
+Tilden
+10
+
+Names: Beginning with T: What name means "Finish, Complete"?
+Thanh
+10
+
+Names: Beginning with T: What name means "Flourishing"?
+Terah
+10
+
+Names: Beginning with T: What name means "Forest"?
+Tallis
+10
+
+Names: Beginning with T: What name means "Forest"?
+Tallys
+10
+
+Names: Beginning with T: What name means "Form of DANA"?
+Tana
+10
+
+Names: Beginning with T: What name means "Form of DAVID or Drummer"?
+Tab
+10
+
+Names: Beginning with T: What name means "Form of TERENCE"?
+Torrance
+10
+
+Names: Beginning with T: What name means "Form of TERRY"?
+Terryal
+10
+
+Names: Beginning with T: What name means "Form of THADDEUS"?
+Thadeus
+10
+
+Names: Beginning with T: What name means "Form of TORRENCE"?
+Torn
+10
+
+Names: Beginning with T: What name means "Fox"?
+Todd
+10
+
+Names: Beginning with T: What name means "Fox"?
+Tokala
+10
+
+Names: Beginning with T: What name means "Fresh Grasses"?
+Trava
+10
+
+Names: Beginning with T: What name means "From CAMERON"?
+Tameron
+10
+
+Names: Beginning with T: What name means "From ESTHER"?
+Trella
+10
+
+Names: Beginning with T: What name means "From GERTRUDE"?
+Trude
+10
+
+Names: Beginning with T: What name means "FROM GUSTAVE"?
+Tave
+10
+
+Names: Beginning with T: What name means "From OCTAVIA"?
+Tavia
+10
+
+Names: Beginning with T: What name means "From TAI and LYNN"?
+Tailynn
+10
+
+Names: Beginning with T: What name means "FROM TERENCE"?
+Terena
+10
+
+Names: Beginning with T: What name means "From THAILAND"?
+Tai
+10
+
+Names: Beginning with T: What name means "From the Gem"?
+Topaz
+10
+
+Names: Beginning with T: What name means "From the name CATHERINE"?
+Trina
+10
+
+Names: Beginning with T: What name means "From the name DAVID"?
+Tavita
+10
+
+Names: Beginning with T: What name means "From the name NATALIE"?
+Tasha
+10
+
+Names: Beginning with T: What name means "From the name PATRICIA"?
+Tricia
+10
+
+Names: Beginning with T: What name means "From the name TAMA"?
+Tamah
+10
+
+Names: Beginning with T: What name means "From the name TAMARA"?
+Tammy
+10
+
+Names: Beginning with T: What name means "From the name TANIA"?
+Tanya
+10
+
+Names: Beginning with T: What name means "From the name TERENCE"?
+Terrel
+10
+
+Names: Beginning with T: What name means "From the name TERENCE"?
+Terrence
+10
+
+Names: Beginning with T: What name means "From the name TERENCE"?
+Terry
+10
+
+Names: Beginning with T: What name means "From the name TERRY"?
+Terris
+10
+
+Names: Beginning with T: What name means "From the name TESS"?
+Tessa
+10
+
+Names: Beginning with T: What name means "From the name THAD"?
+Tad
+10
+
+Names: Beginning with T: What name means "From the name THADDEUS"?
+Thad
+10
+
+Names: Beginning with T: What name means "From the name THEODORE"?
+Theo
+10
+
+Names: Beginning with T: What name means "From the name THERESA"?
+Teresa
+10
+
+Names: Beginning with T: What name means "From the name THERESA"?
+Therese
+10
+
+Names: Beginning with T: What name means "From the name THOMAS"?
+Tom
+10
+
+Names: Beginning with T: What name means "From the name TIMOTHY"?
+Tim
+10
+
+Names: Beginning with T: What name means "From the name TODD"?
+Tod
+10
+
+Names: Beginning with T: What name means "From the name TOPAZ"?
+Topaza
+10
+
+Names: Beginning with T: What name means "From the name TRISTRAM"?
+Tristan
+10
+
+Names: Beginning with T: What name means "From the name TWYLA"?
+Twila
+10
+
+Names: Beginning with T: What name means "From the Thorny Town"?
+Thornton
+10
+
+Names: Beginning with T: What name means "From THEODORE"?
+Theodora
+10
+
+Names: Beginning with T: What name means "From Tilden or Matilda"?
+Tilly
+10
+
+Names: Beginning with T: What name means "From TOM"?
+Teo
+10
+
+Names: Beginning with T: What name means "From TORRANCE or VICTORIA"?
+Tori
+10
+
+Names: Beginning with T: What name means "From TORRANCE or VICTORIA"?
+Tory
+10
+
+Names: Beginning with T: What name means "From Tuesday"?
+Tuesday
+10
+
+Names: Beginning with T: What name means "From TYRUS & ANNE"?
+Tyanne
+10
+
+Names: Beginning with T: What name means "Gift of God"?
+Thaddeus
+10
+
+Names: Beginning with T: What name means "Gift of God"?
+Thea
+10
+
+Names: Beginning with T: What name means "Gift of God"?
+Totie
+10
+
+Names: Beginning with T: What name means "God of Battle"?
+Tyra
+10
+
+Names: Beginning with T: What name means "Goddess of Battle"?
+Tyronica
+10
+
+Names: Beginning with T: What name means "Good"?
+Tavi
+10
+
+Names: Beginning with T: What name means "Good"?
+Tobit
+10
+
+Names: Beginning with T: What name means "Good"?
+Tova
+10
+
+Names: Beginning with T: What name means "Good"?
+Tovah
+10
+
+Names: Beginning with T: What name means "Great Joy, Music"?
+Tambre
+10
+
+Names: Beginning with T: What name means "Greek Letter"?
+Theta
+10
+
+Names: Beginning with T: What name means "Greenish Blue Color"?
+Teal
+10
+
+Names: Beginning with T: What name means "Harvester"?
+Tassos
+10
+
+Names: Beginning with T: What name means "Heart"?
+Tam
+10
+
+Names: Beginning with T: What name means "Hero"?
+Talli
+10
+
+Names: Beginning with T: What name means "Hill"?
+Topper
+10
+
+Names: Beginning with T: What name means "Holy Place"?
+Tibor
+10
+
+Names: Beginning with T: What name means "Holy Three"?
+Trinity
+10
+
+Names: Beginning with T: What name means "Horse Rider"?
+Tasida
+10
+
+Names: Beginning with T: What name means "House Builder"?
+Tyler
+10
+
+Names: Beginning with T: What name means "House"?
+Ty
+10
+
+Names: Beginning with T: What name means "Intelligent"?
+Tomo
+10
+
+Names: Beginning with T: What name means "Island off of Scotland"?
+Tyree
+10
+
+Names: Beginning with T: What name means "It is Forgotten"?
+Tiassale
+10
+
+Names: Beginning with T: What name means "Joyful"?
+Thalia
+10
+
+Names: Beginning with T: What name means "Land of Owen, Young Soldier"?
+Tyrone
+10
+
+Names: Beginning with T: What name means "Leather Worker"?
+Tannar
+10
+
+Names: Beginning with T: What name means "Leather Worker"?
+Tanner
+10
+
+Names: Beginning with T: What name means "Lioness"?
+Tiaret
+10
+
+Names: Beginning with T: What name means "Little Hill"?
+Tully
+10
+
+Names: Beginning with T: What name means "Loud Thunder"?
+Taima
+10
+
+Names: Beginning with T: What name means "Loved One/Lovable"?
+Thandeka
+10
+
+Names: Beginning with T: What name means "Lover of Nature"?
+Tivona
+10
+
+Names: Beginning with T: What name means "Lucky"?
+Tadelesh
+10
+
+Names: Beginning with T: What name means "Maiden, Child"?
+Talitha
+10
+
+Names: Beginning with T: What name means "Might, Power"?
+Tillie
+10
+
+Names: Beginning with T: What name means "Mirror Image"?
+Toshi
+10
+
+Names: Beginning with T: What name means "Mole, Gopher"?
+Topo
+10
+
+Names: Beginning with T: What name means "Monestary"?
+Taline
+10
+
+Names: Beginning with T: What name means "Morning Dew"?
+Talia
+10
+
+Names: Beginning with T: What name means "Mound"?
+Talmai
+10
+
+Names: Beginning with T: What name means "My Dew"?
+Talen
+10
+
+Names: Beginning with T: What name means "Myth/Legend"?
+Taru
+10
+
+Names: Beginning with T: What name means "Mythological Name"?
+Tass
+10
+
+Names: Beginning with T: What name means "Nation, Tribe"?
+Taifa
+10
+
+Names: Beginning with T: What name means "Nickname for a Texan"?
+Tex
+10
+
+Names: Beginning with T: What name means "Nickname for THOMAS"?
+Tip
+10
+
+Names: Beginning with T: What name means "Noble, Lordly"?
+Tierney
+10
+
+Names: Beginning with T: What name means "Noblewoman"?
+Trisha
+10
+
+Names: Beginning with T: What name means "Nursling"?
+Telma
+10
+
+Names: Beginning with T: What name means "Nursling"?
+Thelma
+10
+
+Names: Beginning with T: What name means "Of Noble Descent"?
+Trish
+10
+
+Names: Beginning with T: What name means "Of the Widow"?
+Terweduwe
+10
+
+Names: Beginning with T: What name means "Of Welsh Origin"?
+Taffy
+10
+
+Names: Beginning with T: What name means "Pageant"?
+Tamasha
+10
+
+Names: Beginning with T: What name means "Payment"?
+Tefo
+10
+
+Names: Beginning with T: What name means "Peach, Long Life"?
+Tao
+10
+
+Names: Beginning with T: What name means "People"?
+Tamika
+10
+
+Names: Beginning with T: What name means "Perfect"?
+Tamma
+10
+
+Names: Beginning with T: What name means "Pet form of THEODORE"?
+Telly
+10
+
+Names: Beginning with T: What name means "Pleasantness"?
+Tirza
+10
+
+Names: Beginning with T: What name means "Poet, Philosopher"?
+Tadhg
+10
+
+Names: Beginning with T: What name means "Princess or Aunt"?
+Tia
+10
+
+Names: Beginning with T: What name means "Princess, Aunt"?
+Tea
+10
+
+Names: Beginning with T: What name means "Princess"?
+Tiana
+10
+
+Names: Beginning with T: What name means "Prudent"?
+Trevor
+10
+
+Names: Beginning with T: What name means "Queen"?
+Thema
+10
+
+Names: Beginning with T: What name means "Radiant Brow"?
+Taliesin
+10
+
+Names: Beginning with T: What name means "Railway Line"?
+Tazara
+10
+
+Names: Beginning with T: What name means "Respectful of Parents"?
+Thao
+10
+
+Names: Beginning with T: What name means "Resurrection"?
+Tasya
+10
+
+Names: Beginning with T: What name means "River"?
+Tyne
+10
+
+Names: Beginning with T: What name means "Rocky Hill"?
+Taran
+10
+
+Names: Beginning with T: What name means "Rocky Hill"?
+Tarin
+10
+
+Names: Beginning with T: What name means "Roof Fixer"?
+Thatcher
+10
+
+Names: Beginning with T: What name means "Running Water"?
+Tallulah
+10
+
+Names: Beginning with T: What name means "Sad"?
+Trista
+10
+
+Names: Beginning with T: What name means "Sad"?
+Tristana
+10
+
+Names: Beginning with T: What name means "Sad"?
+Tristram
+10
+
+Names: Beginning with T: What name means "Safe, Secure"?
+Toan
+10
+
+Names: Beginning with T: What name means "Servant of Thor"?
+Thurman
+10
+
+Names: Beginning with T: What name means "Short for names ending in TINE"?
+Tina
+10
+
+Names: Beginning with T: What name means "Silence"?
+Tacy
+10
+
+Names: Beginning with T: What name means "Silent"?
+Tacita
+10
+
+Names: Beginning with T: What name means "Slippery"?
+Teleza
+10
+
+Names: Beginning with T: What name means "Small One"?
+Teenie
+10
+
+Names: Beginning with T: What name means "Small"?
+Tino
+10
+
+Names: Beginning with T: What name means "Smooth"?
+Terrene
+10
+
+Names: Beginning with T: What name means "Snow"?
+Tuyet
+10
+
+Names: Beginning with T: What name means "Son of TY"?
+Tyson
+10
+
+Names: Beginning with T: What name means "Star"?
+Tarika
+10
+
+Names: Beginning with T: What name means "Strong as Iron"?
+Trahern
+10
+
+Names: Beginning with T: What name means "Strong, Forceful"?
+Taurean
+10
+
+Names: Beginning with T: What name means "Sunshine, Exhausted"?
+Taban
+10
+
+Names: Beginning with T: What name means "Tailor"?
+Taylor
+10
+
+Names: Beginning with T: What name means "Tall Ruler"?
+Timberly
+10
+
+Names: Beginning with T: What name means "Tall"?
+Temira
+10
+
+Names: Beginning with T: What name means "Team"?
+Tandice
+10
+
+Names: Beginning with T: What name means "Tender, Good Gracious"?
+Terence
+10
+
+Names: Beginning with T: What name means "Tender"?
+Terentia
+10
+
+Names: Beginning with T: What name means "The Angel"?
+Tangia
+10
+
+Names: Beginning with T: What name means "The Lord Is Good"?
+Toby
+10
+
+Names: Beginning with T: What name means "The Pure One"?
+Thrine
+10
+
+Names: Beginning with T: What name means "The Sea"?
+Thalassa
+10
+
+Names: Beginning with T: What name means "The Third"?
+Tertius
+10
+
+Names: Beginning with T: What name means "The Trinity"?
+Trini
+10
+
+Names: Beginning with T: What name means "Third"?
+Tryna
+10
+
+Names: Beginning with T: What name means "Thirty"?
+Trent
+10
+
+Names: Beginning with T: What name means "Thread"?
+Twyla
+10
+
+Names: Beginning with T: What name means "Three, the Trinity"?
+Tiffany
+10
+
+Names: Beginning with T: What name means "Three"?
+Trey
+10
+
+Names: Beginning with T: What name means "Throne, Seat of Royalty"?
+Thron
+10
+
+Names: Beginning with T: What name means "Thunder"?
+Thor
+10
+
+Names: Beginning with T: What name means "Thunder"?
+Thora
+10
+
+Names: Beginning with T: What name means "Thyme Herb"?
+Tyme
+10
+
+Names: Beginning with T: What name means "Tiger"?
+Teigra
+10
+
+Names: Beginning with T: What name means "Time of Opportunity"?
+Toki
+10
+
+Names: Beginning with T: What name means "To Beget"?
+Thane
+10
+
+Names: Beginning with T: What name means "To Honor God"?
+Timothy
+10
+
+Names: Beginning with T: What name means "To reap"?
+Tess
+10
+
+Names: Beginning with T: What name means "To Throw or Carry"?
+Tara
+10
+
+Names: Beginning with T: What name means "Town of Sanctuary"?
+Templeton
+10
+
+Names: Beginning with T: What name means "Toy"?
+Toyah
+10
+
+Names: Beginning with T: What name means "Trapper"?
+Trapper
+10
+
+Names: Beginning with T: What name means "True"?
+Trula
+10
+
+Names: Beginning with T: What name means "True"?
+Truly
+10
+
+Names: Beginning with T: What name means "Trusted"?
+Themba
+10
+
+Names: Beginning with T: What name means "Twin"?
+Tamas
+10
+
+Names: Beginning with T: What name means "Twin"?
+Tamasine
+10
+
+Names: Beginning with T: What name means "Twin"?
+Tameka
+10
+
+Names: Beginning with T: What name means "Twin"?
+Tasmine
+10
+
+Names: Beginning with T: What name means "Twin"?
+Thom
+10
+
+Names: Beginning with T: What name means "Upper Story"?
+Thel
+10
+
+Names: Beginning with T: What name means "Variation of Rory"?
+Trory
+10
+
+Names: Beginning with T: What name means "Victor"?
+Tolla
+10
+
+Names: Beginning with T: What name means "Victorious"?
+Torie
+10
+
+Names: Beginning with T: What name means "Warrior Woman"?
+Truda
+10
+
+Names: Beginning with T: What name means "Water or Footsoldier"?
+Troy
+10
+
+Names: Beginning with T: What name means "Whole, Honest"?
+Temima
+10
+
+Names: Beginning with T: What name means "Whole, Perfect"?
+Tama
+10
+
+Names: Beginning with T: What name means "Wolf"?
+Tala
+10
+
+Names: Beginning with T: What name means "Worthy of Praise"?
+Toni
+10
+
+Names: Beginning with T: What name means "Worthy of Praise"?
+Tony
+10
+
+Names: Beginning with T: What name means "Young Eagle"?
+Tuari
+10
+
+Names: Beginning with U: What name means "Angel of Light"?
+Uriel
+10
+
+Names: Beginning with U: What name means "Cheerful"?
+Ulani
+10
+
+Names: Beginning with U: What name means "Color of Earth"?
+Umberto
+10
+
+Names: Beginning with U: What name means "Father, Lord"?
+Uba
+10
+
+Names: Beginning with U: What name means "Female Bear"?
+Ursala
+10
+
+Names: Beginning with U: What name means "Female Bear"?
+Ursula
+10
+
+Names: Beginning with U: What name means "First Born of Twins"?
+Ulan
+10
+
+Names: Beginning with U: What name means "Form of ODYSSEUS"?
+Ulysses
+10
+
+Names: Beginning with U: What name means "Form of UNA"?
+Uma
+10
+
+Names: Beginning with U: What name means "Form of URBAN"?
+Urbain
+10
+
+Names: Beginning with U: What name means "Form of URSULA"?
+Ursa
+10
+
+Names: Beginning with U: What name means "From the City"?
+Urban
+10
+
+Names: Beginning with U: What name means "From the Mountains"?
+Uta
+10
+
+Names: Beginning with U: What name means "From the Mountains"?
+Ute
+10
+
+Names: Beginning with U: What name means "Glory"?
+Ull
+10
+
+Names: Beginning with U: What name means "God is my Light"?
+Uriah
+10
+
+Names: Beginning with U: What name means "God is my Light"?
+Urilla
+10
+
+Names: Beginning with U: What name means "Great"?
+Uang
+10
+
+Names: Beginning with U: What name means "Heavenly"?
+Urania
+10
+
+Names: Beginning with U: What name means "Hope"?
+Umay
+10
+
+Names: Beginning with U: What name means "Intelligence, Spirit"?
+Ugo
+10
+
+Names: Beginning with U: What name means "Intelligent One"?
+Ulema
+10
+
+Names: Beginning with U: What name means "Jewel of the Sea"?
+Ula
+10
+
+Names: Beginning with U: What name means "Light"?
+Urit
+10
+
+Names: Beginning with U: What name means "Love"?
+Upendo
+10
+
+Names: Beginning with U: What name means "My Light"?
+Uri
+10
+
+Names: Beginning with U: What name means "My Mother"?
+Ummi
+10
+
+Names: Beginning with U: What name means "Oneness"?
+Unity
+10
+
+Names: Beginning with U: What name means "Plum Blossom Child"?
+Umeko
+10
+
+Names: Beginning with U: What name means "Servant"?
+Umi
+10
+
+Names: Beginning with U: What name means "To Arrive"?
+Uday
+10
+
+Names: Beginning with U: What name means "To Fill Up"?
+Ulla
+10
+
+Names: Beginning with U: What name means "Unity"?
+Una
+10
+
+Names: Beginning with U: What name means "Wolf"?
+Ulf
+10
+
+Names: Beginning with U: What name means "Wolf"?
+Ulric
+10
+
+Names: Beginning with U: What name means "Youth"?
+Ujana
+10
+
+Names: Beginning with V: What name means "A White Wave"?
+Vevay
+10
+
+Names: Beginning with V: What name means "Alive"?
+Vivi
+10
+
+Names: Beginning with V: What name means "Beautiful as a Rose"?
+Vartouhi
+10
+
+Names: Beginning with V: What name means "Blessed"?
+Venedict
+10
+
+Names: Beginning with V: What name means "Brave"?
+Valiant
+10
+
+Names: Beginning with V: What name means "Bravery"?
+Valencia
+10
+
+Names: Beginning with V: What name means "Butterfly"?
+Vanessa
+10
+
+Names: Beginning with V: What name means "Cheerful"?
+Vui
+10
+
+Names: Beginning with V: What name means "Chief"?
+Vea
+10
+
+Names: Beginning with V: What name means "Conqueror, Victor"?
+Vincent
+10
+
+Names: Beginning with V: What name means "Conqueror"?
+Vittorio
+10
+
+Names: Beginning with V: What name means "Courage of a Bear"?
+Vernados
+10
+
+Names: Beginning with V: What name means "Desire to Protect"?
+Velma
+10
+
+Names: Beginning with V: What name means "Falling Star"?
+Vega
+10
+
+Names: Beginning with V: What name means "From (the family of)"?
+Von
+10
+
+Names: Beginning with V: What name means "From the family of..."?
+Van
+10
+
+Names: Beginning with V: What name means "From the name VANESSA"?
+Vanna
+10
+
+Names: Beginning with V: What name means "From the name VAUGHN"?
+Vaughan
+10
+
+Names: Beginning with V: What name means "From the name VICTORIA"?
+Vicki
+10
+
+Names: Beginning with V: What name means "From the name VICTORIA"?
+Vicky
+10
+
+Names: Beginning with V: What name means "From the name VINCENT"?
+Vince
+10
+
+Names: Beginning with V: What name means "From the name VINCENT"?
+Vinnie
+10
+
+Names: Beginning with V: What name means "From the name VINCENT"?
+Vinny
+10
+
+Names: Beginning with V: What name means "From the name VIOLET"?
+Vi
+10
+
+Names: Beginning with V: What name means "From the name VIOLET"?
+Viola
+10
+
+Names: Beginning with V: What name means "From WILLIAM"?
+Vila
+10
+
+Names: Beginning with V: What name means "From Wine Country"?
+Vienna
+10
+
+Names: Beginning with V: What name means "Girl"?
+Vanida
+10
+
+Names: Beginning with V: What name means "Goddess of the Hearth"?
+Vesta
+10
+
+Names: Beginning with V: What name means "Gracious in Life"?
+Vivian
+10
+
+Names: Beginning with V: What name means "Gracious"?
+Vanya
+10
+
+Names: Beginning with V: What name means "Great"?
+Velika
+10
+
+Names: Beginning with V: What name means "Green"?
+Verdi
+10
+
+Names: Beginning with V: What name means "Happy"?
+Vidor
+10
+
+Names: Beginning with V: What name means "Health or Love"?
+Valentina
+10
+
+Names: Beginning with V: What name means "Health or Love"?
+Valentine
+10
+
+Names: Beginning with V: What name means "Health or Love"?
+Valtina
+10
+
+Names: Beginning with V: What name means "High"?
+Vance
+10
+
+Names: Beginning with V: What name means "Kingly"?
+Vasilis
+10
+
+Names: Beginning with V: What name means "Life"?
+Vida
+10
+
+Names: Beginning with V: What name means "Life"?
+Vita
+10
+
+Names: Beginning with V: What name means "Life"?
+Vitalis
+10
+
+Names: Beginning with V: What name means "Life"?
+Vito
+10
+
+Names: Beginning with V: What name means "Life"?
+Vivienne
+10
+
+Names: Beginning with V: What name means "Like an Angel"?
+Vangie
+10
+
+Names: Beginning with V: What name means "Little Ash Tree"?
+Vaschel
+10
+
+Names: Beginning with V: What name means "Longings are Waterfalls"?
+Visola
+10
+
+Names: Beginning with V: What name means "Lost a Child"?
+Vondila
+10
+
+Names: Beginning with V: What name means "Lovely"?
+Viviana
+10
+
+Names: Beginning with V: What name means "Luckily"?
+Veasna
+10
+
+Names: Beginning with V: What name means "National Spirit"?
+Volleny
+10
+
+Names: Beginning with V: What name means "Power"?
+Val
+10
+
+Names: Beginning with V: What name means "Power"?
+Virote
+10
+
+Names: Beginning with V: What name means "Prince"?
+Vlad
+10
+
+Names: Beginning with V: What name means "Prince"?
+Vladimir
+10
+
+Names: Beginning with V: What name means "Ruler"?
+Valdemar
+10
+
+Names: Beginning with V: What name means "Singled Out"?
+Vala
+10
+
+Names: Beginning with V: What name means "Small Town"?
+Vanig
+10
+
+Names: Beginning with V: What name means "Small Village"?
+Villette
+10
+
+Names: Beginning with V: What name means "Small"?
+Vaughn
+10
+
+Names: Beginning with V: What name means "Son of Vincent"?
+Vinson
+10
+
+Names: Beginning with V: What name means "Strength, Valor"?
+Valarie
+10
+
+Names: Beginning with V: What name means "Strength, Valor"?
+Valeria
+10
+
+Names: Beginning with V: What name means "Strong"?
+Vahe
+10
+
+Names: Beginning with V: What name means "Strong"?
+Virgil
+10
+
+Names: Beginning with V: What name means "Superior"?
+Varen
+10
+
+Names: Beginning with V: What name means "Sweet Lady"?
+Vevina
+10
+
+Names: Beginning with V: What name means "The Love of a Woman"?
+Vondra
+10
+
+Names: Beginning with V: What name means "The Truth"?
+Veronica
+10
+
+Names: Beginning with V: What name means "They Leave Us Behind"?
+Vatusia
+10
+
+Names: Beginning with V: What name means "To be strong"?
+Valerie
+10
+
+Names: Beginning with V: What name means "To be strong"?
+Vallerie
+10
+
+Names: Beginning with V: What name means "True Image"?
+Vonda
+10
+
+Names: Beginning with V: What name means "Truth"?
+Vera
+10
+
+Names: Beginning with V: What name means "Truth"?
+Verda
+10
+
+Names: Beginning with V: What name means "Valley"?
+Vail
+10
+
+Names: Beginning with V: What name means "Victorious"?
+Vic
+10
+
+Names: Beginning with V: What name means "Victorious"?
+Victoria
+10
+
+Names: Beginning with V: What name means "Vineyard Worker"?
+Vine
+10
+
+Names: Beginning with V: What name means "Violet Flower"?
+Violet
+10
+
+Names: Beginning with V: What name means "Virginal, Pure"?
+Virginia
+10
+
+Names: Beginning with V: What name means "Vital"?
+Vidal
+10
+
+Names: Beginning with V: What name means "Wanderer"?
+Vandalin
+10
+
+Names: Beginning with V: What name means "Winner, Conqueror"?
+Victor
+10
+
+Names: Beginning with V: What name means "Wisdom"?
+Vivek
+10
+
+Names: Beginning with V: What name means "Woman of Venice"?
+Venetia
+10
+
+Names: Beginning with V: What name means "Youthful"?
+Vern
+10
+
+Names: Beginning with V: What name means "Youthful"?
+Verna
+10
+
+Names: Beginning with V: What name means "Youthful"?
+Verne
+10
+
+Names: Beginning with V: What name means "Youthful"?
+Vernon
+10
+
+Names: Beginning with W: What name means "A Driver"?
+Wheeler
+10
+
+Names: Beginning with W: What name means "A Ruler"?
+Waldo
+10
+
+Names: Beginning with W: What name means "A slender, young tree"?
+Wanda
+10
+
+Names: Beginning with W: What name means "A Small Field"?
+Whitley
+10
+
+Names: Beginning with W: What name means "A Stranger"?
+Wallace
+10
+
+Names: Beginning with W: What name means "Brave"?
+Willard
+10
+
+Names: Beginning with W: What name means "Chasing for Food"?
+Winda
+10
+
+Names: Beginning with W: What name means "Contraction of WILLIAM"?
+Willem
+10
+
+Names: Beginning with W: What name means "Desire to Protect"?
+Wilhelmina
+10
+
+Names: Beginning with W: What name means "Desire to Protect"?
+William
+10
+
+Names: Beginning with W: What name means "Desire"?
+Winta
+10
+
+Names: Beginning with W: What name means "Eagle"?
+Washi
+10
+
+Names: Beginning with W: What name means "Fair One"?
+Wendy
+10
+
+Names: Beginning with W: What name means "Faithful"?
+Wafa
+10
+
+Names: Beginning with W: What name means "Farm by the Spring"?
+Wilton
+10
+
+Names: Beginning with W: What name means "Farm with White Walls"?
+Whitby
+10
+
+Names: Beginning with W: What name means "Fem. form of WILLIAM"?
+Willa
+10
+
+Names: Beginning with W: What name means "First Born"?
+Winona
+10
+
+Names: Beginning with W: What name means "Forest Walker"?
+Walker
+10
+
+Names: Beginning with W: What name means "Friend of Peace (F)"?
+Winifred
+10
+
+Names: Beginning with W: What name means "Friend of Peace (M)"?
+Winfred
+10
+
+Names: Beginning with W: What name means "Friendly"?
+Winthrop
+10
+
+Names: Beginning with W: What name means "From the Homeland"?
+Wattan
+10
+
+Names: Beginning with W: What name means "From the name GILBERT"?
+Wilbur
+10
+
+Names: Beginning with W: What name means "From the name WALTER"?
+Walt
+10
+
+Names: Beginning with W: What name means "From the name WARREN"?
+Warner
+10
+
+Names: Beginning with W: What name means "From the name WARREN"?
+Werner
+10
+
+Names: Beginning with W: What name means "From the name WAYNE"?
+Waggoner
+10
+
+Names: Beginning with W: What name means "From the name WENDY"?
+Wenda
+10
+
+Names: Beginning with W: What name means "From the name WENDY"?
+Wendi
+10
+
+Names: Beginning with W: What name means "From the name WESLEY"?
+Wes
+10
+
+Names: Beginning with W: What name means "From the name WILFRED"?
+Wilford
+10
+
+Names: Beginning with W: What name means "From the name WILLIAM"?
+Will
+10
+
+Names: Beginning with W: What name means "From the name WINONA"?
+Wynona
+10
+
+Names: Beginning with W: What name means "From the name WOODS"?
+Woody
+10
+
+Names: Beginning with W: What name means "From the name WOODY"?
+Wood
+10
+
+Names: Beginning with W: What name means "From the name WYNN"?
+Wynne
+10
+
+Names: Beginning with W: What name means "From the Small Field"?
+Whitfield
+10
+
+Names: Beginning with W: What name means "From the West Town"?
+Weston
+10
+
+Names: Beginning with W: What name means "From the Willow Tree"?
+Willow
+10
+
+Names: Beginning with W: What name means "Guardian"?
+Ward
+10
+
+Names: Beginning with W: What name means "Hill of Victory"?
+Winslow
+10
+
+Names: Beginning with W: What name means "Hunt"?
+Wyanet
+10
+
+Names: Beginning with W: What name means "Light Complected"?
+Wynn
+10
+
+Names: Beginning with W: What name means "Of the Willows"?
+Wiley
+10
+
+Names: Beginning with W: What name means "Of the Woods"?
+Woods
+10
+
+Names: Beginning with W: What name means "Path of a Wolf"?
+Wolfgang
+10
+
+Names: Beginning with W: What name means "Peaceful or Willow Tree Near Ford"?
+Wilfred
+10
+
+Names: Beginning with W: What name means "Plain"?
+Wyome
+10
+
+Names: Beginning with W: What name means "Ruler"?
+Walda
+10
+
+Names: Beginning with W: What name means "Shape-shifter"?
+Waneta
+10
+
+Names: Beginning with W: What name means "Shield"?
+Walta
+10
+
+Names: Beginning with W: What name means "Short for WILHEMINA"?
+Wilma
+10
+
+Names: Beginning with W: What name means "Son of WILLIAM"?
+Willis
+10
+
+Names: Beginning with W: What name means "Son of WILLIAM"?
+Wilson
+10
+
+Names: Beginning with W: What name means "The Enemy"?
+Wasaki
+10
+
+Names: Beginning with W: What name means "The Path thru the Woods"?
+Woodrow
+10
+
+Names: Beginning with W: What name means "The West Meadow"?
+Wesley
+10
+
+Names: Beginning with W: What name means "To Preserve"?
+Warren
+10
+
+Names: Beginning with W: What name means "To Wade in Water"?
+Wade
+10
+
+Names: Beginning with W: What name means "To Wave"?
+Waverly
+10
+
+Names: Beginning with W: What name means "Town of the Smart"?
+Washington
+10
+
+Names: Beginning with W: What name means "Untamed"?
+Wilda
+10
+
+Names: Beginning with W: What name means "Valley or Wanderer"?
+Wendell
+10
+
+Names: Beginning with W: What name means "Victory Town"?
+Winston
+10
+
+Names: Beginning with W: What name means "Wagoner"?
+Wayne
+10
+
+Names: Beginning with W: What name means "Warden, Guardian"?
+Worden
+10
+
+Names: Beginning with W: What name means "Warrior"?
+Wyman
+10
+
+Names: Beginning with W: What name means "Water"?
+Wyatt
+10
+
+Names: Beginning with W: What name means "Weaver"?
+Webster
+10
+
+Names: Beginning with W: What name means "Welcome Guest"?
+Welcome
+10
+
+Names: Beginning with W: What name means "White Island"?
+Whitney
+10
+
+Names: Beginning with W: What name means "Woods or Army General"?
+Walter
+10
+
+Names: Beginning with X: What name means "Blond Haired"?
+Xanto
+10
+
+Names: Beginning with X: What name means "Bright"?
+Xavier
+10
+
+Names: Beginning with X: What name means "From the name ALEXANDER"?
+Xandy
+10
+
+Names: Beginning with X: What name means "From the name XANTHUS"?
+Xanthe
+10
+
+Names: Beginning with X: What name means "From the name XAVIER"?
+Xaviera
+10
+
+Names: Beginning with X: What name means "Guest"?
+Xenos
+10
+
+Names: Beginning with X: What name means "Hospitable"?
+Xenia
+10
+
+Names: Beginning with X: What name means "King"?
+Xerxes
+10
+
+Names: Beginning with X: What name means "Lives in the Forest"?
+Xylon
+10
+
+Names: Beginning with X: What name means "Please Forgive"?
+Xolani
+10
+
+Names: Beginning with X: What name means "Queen"?
+Xuxa
+10
+
+Names: Beginning with X: What name means "Spread, Propagate"?
+Xinavane
+10
+
+Names: Beginning with X: What name means "Strange Voice"?
+Xenophon
+10
+
+Names: Beginning with X: What name means "WANG Desire"?
+Xi
+10
+
+Names: Beginning with X: What name means "Welcome Guest"?
+Xena
+10
+
+Names: Beginning with X: What name means "Yellow"?
+Xanthus
+10
+
+Names: Beginning with Y: What name means "A Man from Judah, A Jew"?
+Yehudi
+10
+
+Names: Beginning with Y: What name means "Archer"?
+Yves
+10
+
+Names: Beginning with Y: What name means "Beloved"?
+Yadid
+10
+
+Names: Beginning with Y: What name means "Blue"?
+Yahto
+10
+
+Names: Beginning with Y: What name means "Bright"?
+Yo
+10
+
+Names: Beginning with Y: What name means "Brook"?
+Yuval
+10
+
+Names: Beginning with Y: What name means "Budding Flower"?
+Yamka
+10
+
+Names: Beginning with Y: What name means "Calm"?
+Yen
+10
+
+Names: Beginning with Y: What name means "Congratulations"?
+Yihana
+10
+
+Names: Beginning with Y: What name means "Easy Going"?
+Yaser
+10
+
+Names: Beginning with Y: What name means "Eight Thousand"?
+Yachi
+10
+
+Names: Beginning with Y: What name means "Englishman"?
+Yancy
+10
+
+Names: Beginning with Y: What name means "Field of Good Prospects"?
+Yoshino
+10
+
+Names: Beginning with Y: What name means "Form of GEORGE"?
+Yorick
+10
+
+Names: Beginning with Y: What name means "Form of GEORGE"?
+York
+10
+
+Names: Beginning with Y: What name means "Form of HELEN"?
+Yelena
+10
+
+Names: Beginning with Y: What name means "Form of JOSEPH"?
+Yosef
+10
+
+Names: Beginning with Y: What name means "Form of YVONNE"?
+Yvette
+10
+
+Names: Beginning with Y: What name means "Founded by God"?
+Yeriel
+10
+
+Names: Beginning with Y: What name means "From the corner of the land"?
+Yale
+10
+
+Names: Beginning with Y: What name means "From the name EVE AND ANNA"?
+Yvonne
+10
+
+Names: Beginning with Y: What name means "From the name JASMINE"?
+Yasmin
+10
+
+Names: Beginning with Y: What name means "From the name JONAH"?
+Yonah
+10
+
+Names: Beginning with Y: What name means "From the name JOSEPH"?
+Yosefu
+10
+
+Names: Beginning with Y: What name means "From the name URIAH"?
+Yuri
+10
+
+Names: Beginning with Y: What name means "From the name YANCY"?
+Yank
+10
+
+Names: Beginning with Y: What name means "From the name YANNIS"?
+Yanni
+10
+
+Names: Beginning with Y: What name means "Gates"?
+Yates
+10
+
+Names: Beginning with Y: What name means "Gets What He Wants"?
+Yukio
+10
+
+Names: Beginning with Y: What name means "Gift of God"?
+Yannis
+10
+
+Names: Beginning with Y: What name means "God is Good"?
+Yanka
+10
+
+Names: Beginning with Y: What name means "God Will Teach"?
+Yair
+10
+
+Names: Beginning with Y: What name means "He Answers"?
+Yana
+10
+
+Names: Beginning with Y: What name means "Just"?
+Yestin
+10
+
+Names: Beginning with Y: What name means "King"?
+Yardan
+10
+
+Names: Beginning with Y: What name means "Life-Enhancing"?
+Yeva
+10
+
+Names: Beginning with Y: What name means "Light"?
+Yitta
+10
+
+Names: Beginning with Y: What name means "Little Dove"?
+Yoninah
+10
+
+Names: Beginning with Y: What name means "Male form of YVONNE"?
+Yvon
+10
+
+Names: Beginning with Y: What name means "Moon"?
+Yuk
+10
+
+Names: Beginning with Y: What name means "Mythological character"?
+Ymir
+10
+
+Names: Beginning with Y: What name means "Of Christmastime"?
+Yule
+10
+
+Names: Beginning with Y: What name means "Of the Yard"?
+Yardley
+10
+
+Names: Beginning with Y: What name means "Of the Yard"?
+Yeardleigh
+10
+
+Names: Beginning with Y: What name means "Of the Yoga Practice"?
+Yogi
+10
+
+Names: Beginning with Y: What name means "One of a Twin"?
+Yamal
+10
+
+Names: Beginning with Y: What name means "One who Yells"?
+Yaholo
+10
+
+Names: Beginning with Y: What name means "Past the Horizon"?
+Yul
+10
+
+Names: Beginning with Y: What name means "Peaceful One"?
+Yasuo
+10
+
+Names: Beginning with Y: What name means "Plenty"?
+Yitro
+10
+
+Names: Beginning with Y: What name means "Positive"?
+Yoko
+10
+
+Names: Beginning with Y: What name means "Prophet, Happiness"?
+Yasin
+10
+
+Names: Beginning with Y: What name means "Quiet"?
+Yoshi
+10
+
+Names: Beginning with Y: What name means "Reliable"?
+Yori
+10
+
+Names: Beginning with Y: What name means "Right Hand"?
+Yamin
+10
+
+Names: Beginning with Y: What name means "Ruler of the Household"?
+Yetty
+10
+
+Names: Beginning with Y: What name means "Singing"?
+Yaron
+10
+
+Names: Beginning with Y: What name means "Snow or Lucky"?
+Yuki
+10
+
+Names: Beginning with Y: What name means "Son of the Chief"?
+Yuma
+10
+
+Names: Beginning with Y: What name means "Son"?
+Yaro
+10
+
+Names: Beginning with Y: What name means "Strength of God"?
+Yael
+10
+
+Names: Beginning with Y: What name means "Supplanter"?
+Yakov
+10
+
+Names: Beginning with Y: What name means "To come Down"?
+Yered
+10
+
+Names: Beginning with Y: What name means "Universe"?
+Ye
+10
+
+Names: Beginning with Y: What name means "Violet Flower"?
+Yoland
+10
+
+Names: Beginning with Y: What name means "Violet Flower"?
+Yolanda
+10
+
+Names: Beginning with Y: What name means "Winter Princess"?
+Yepa
+10
+
+Names: Beginning with Y: What name means "Work"?
+Yenge
+10
+
+Names: Beginning with Z: What name means "A Sign"?
+Zion
+10
+
+Names: Beginning with Z: What name means "Alive"?
+Zivan
+10
+
+Names: Beginning with Z: What name means "Beautiful"?
+Zene
+10
+
+Names: Beginning with Z: What name means "Beauty"?
+Zayn
+10
+
+Names: Beginning with Z: What name means "Brilliant and Lovely"?
+Zuleika
+10
+
+Names: Beginning with Z: What name means "Brilliant, Ahead"?
+Zula
+10
+
+Names: Beginning with Z: What name means "Consecrated to God"?
+Zizi
+10
+
+Names: Beginning with Z: What name means "Created"?
+Zinna
+10
+
+Names: Beginning with Z: What name means "Departure"?
+Zoan
+10
+
+Names: Beginning with Z: What name means "Earth"?
+Zola
+10
+
+Names: Beginning with Z: What name means "Elder"?
+Zaide
+10
+
+Names: Beginning with Z: What name means "Exalted/Honored"?
+Zebulon
+10
+
+Names: Beginning with Z: What name means "Female"?
+Zaila
+10
+
+Names: Beginning with Z: What name means "First born of twins"?
+Zesiro
+10
+
+Names: Beginning with Z: What name means "Flower"?
+Zahur
+10
+
+Names: Beginning with Z: What name means "FROM Teresa"?
+Zyta
+10
+
+Names: Beginning with Z: What name means "From the Flower"?
+Zinnia
+10
+
+Names: Beginning with Z: What name means "From the name John"?
+Zane
+10
+
+Names: Beginning with Z: What name means "From the name SARA"?
+Zara
+10
+
+Names: Beginning with Z: What name means "From the name SUSAN"?
+Zsa
+10
+
+Names: Beginning with Z: What name means "From the name ZAZA"?
+Zazu
+10
+
+Names: Beginning with Z: What name means "From Zaire"?
+Zaire
+10
+
+Names: Beginning with Z: What name means "From ZEDEKIAH"?
+Zed
+10
+
+Names: Beginning with Z: What name means "Gazelle"?
+Zwi
+10
+
+Names: Beginning with Z: What name means "Generous"?
+Zenas
+10
+
+Names: Beginning with Z: What name means "God is Fair"?
+Zedekiah
+10
+
+Names: Beginning with Z: What name means "God of Fatherhood"?
+Zaci
+10
+
+Names: Beginning with Z: What name means "Gold"?
+Zeheb
+10
+
+Names: Beginning with Z: What name means "Golden"?
+Zarina
+10
+
+Names: Beginning with Z: What name means "Good Fortune"?
+Zada
+10
+
+Names: Beginning with Z: What name means "Growing"?
+Zaida
+10
+
+Names: Beginning with Z: What name means "Guardian"?
+Zareb
+10
+
+Names: Beginning with Z: What name means "Healthy and Vigorous"?
+Zulema
+10
+
+Names: Beginning with Z: What name means "Help of God"?
+Ziraili
+10
+
+Names: Beginning with Z: What name means "Hospitable"?
+Zena
+10
+
+Names: Beginning with Z: What name means "Hospitable"?
+Zenia
+10
+
+Names: Beginning with Z: What name means "I Have no Child"?
+Zef
+10
+
+Names: Beginning with Z: What name means "Innocent"?
+Zaccheus
+10
+
+Names: Beginning with Z: What name means "Irish Saint"?
+Zephan
+10
+
+Names: Beginning with Z: What name means "Life"?
+Zoe
+10
+
+Names: Beginning with Z: What name means "Life"?
+Zoey
+10
+
+Names: Beginning with Z: What name means "Life"?
+Zoie
+10
+
+Names: Beginning with Z: What name means "Life"?
+Zoltan
+10
+
+Names: Beginning with Z: What name means "Life"?
+Zoltin
+10
+
+Names: Beginning with Z: What name means "Light, Brilliance"?
+Zohar
+10
+
+Names: Beginning with Z: What name means "Light"?
+Ziya
+10
+
+Names: Beginning with Z: What name means "Lily"?
+Zanna
+10
+
+Names: Beginning with Z: What name means "May God Protect the King"?
+Zarek
+10
+
+Names: Beginning with Z: What name means "Movement"?
+Zaza
+10
+
+Names: Beginning with Z: What name means "My Shadow"?
+Zili
+10
+
+Names: Beginning with Z: What name means "My Shadow"?
+Zilli
+10
+
+Names: Beginning with Z: What name means "Peaceful & Quiet"?
+Zalman
+10
+
+Names: Beginning with Z: What name means "Present"?
+Zavad
+10
+
+Names: Beginning with Z: What name means "Protected, Sacred"?
+Zimri
+10
+
+Names: Beginning with Z: What name means "Protector"?
+Zareh
+10
+
+Names: Beginning with Z: What name means "Rainbow"?
+Ziazan
+10
+
+Names: Beginning with Z: What name means "Remembered by the Lord"?
+Zachariah
+10
+
+Names: Beginning with Z: What name means "Remembrance of the Lord"?
+Zach
+10
+
+Names: Beginning with Z: What name means "Remembrance of the Lord"?
+Zachary
+10
+
+Names: Beginning with Z: What name means "Respected, Wise"?
+Zeroun
+10
+
+Names: Beginning with Z: What name means "Rose Flower"?
+Zytka
+10
+
+Names: Beginning with Z: What name means "Sash"?
+Zona
+10
+
+Names: Beginning with Z: What name means "Sign, Symbol"?
+Zenobia
+10
+
+Names: Beginning with Z: What name means "Smart"?
+Zeki
+10
+
+Names: Beginning with Z: What name means "Spiritual Leader"?
+Zo
+10
+
+Names: Beginning with Z: What name means "Splendor"?
+Ziva
+10
+
+Names: Beginning with Z: What name means "Stranger"?
+Zenon
+10
+
+Names: Beginning with Z: What name means "Strength of God"?
+Zeke
+10
+
+Names: Beginning with Z: What name means "Successful"?
+Zarifa
+10
+
+Names: Beginning with Z: What name means "Thank You"?
+Zikomo
+10
+
+Names: Beginning with Z: What name means "The Blessed One"?
+Zelig
+10
+
+Names: Beginning with Z: What name means "The Lord is my Rock"?
+Zuriel
+10
+
+Names: Beginning with Z: What name means "The Seeker"?
+Zita
+10
+
+Names: Beginning with Z: What name means "To get rid of Anger"?
+Zbigniew
+10
+
+Names: Beginning with Z: What name means "To Tremble"?
+Zia
+10
+
+Names: Beginning with Z: What name means "Trap"?
+Zared
+10
+
+Names: Beginning with Z: What name means "Very Bright"?
+Ziv
+10
+
+Names: Beginning with Z: What name means "Vigorous, Alive"?
+Ziven
+10
+
+Names: Beginning with Z: What name means "Well Fed"?
+Zan
+10
+
+Names: Beginning with Z: What name means "Wheat"?
+Zea
+10
+
+Names: Beginning with Z: What name means "White Wave"?
+Zenevieva
+10
+
+Names: Beginning with Z: What name means "Wisdom"?
+Zofia
+10
+
+Names: Beginning with Z: What name means "Wolf"?
+Zev
+10
+
+Names: Beginning with Z: What name means "Woman Warrior"?
+Zelda
+10
+
+Names: Beginning with Z: What name means "Zeal"?
+Zelia
+10
+
+Names: Beginning with Z: What name means "Zeus"?
+Zeno
+10
+
+Names: What name means "beloved"?
+Cerys
+10
+
diff --git a/xtrn/gttrivia/qa/star_trek_general.qa b/xtrn/gttrivia/qa/star_trek_general.qa
new file mode 100644
index 0000000000..217fec81c5
--- /dev/null
+++ b/xtrn/gttrivia/qa/star_trek_general.qa
@@ -0,0 +1,652 @@
+-- QA metadata begin
+{
+    "category_name": "Star Trek (general)"
+}
+-- QA metadata end
+
+In Gene Roddenberry's original treatment for Star Trek, what was the name of the Starship?
+-- Answer metadata begin
+{
+    "answers": ["Yorktown", "Starship Yorktown"]
+}
+-- Answer metadata end
+10
+
+Who was the first actor to play a member of all three of the major alien races in Star Trek?
+Mark Lenard
+10
+
+What two stars of Star Trek: Deep Space Nine were married in real life in 1997?
+-- Answer metadata begin
+{
+    "answers": ["Alexander Siddig and Nana Visitor", "Nana Visitor and Alexander Siddig", "Alexander Siddig Nana Visitor", "Nana Visitor Alexander Siddig", "Alexander Siddig, Nana Visitor", "Nana Visitor, Alexander Siddig"]
+}
+-- Answer metadata end
+10
+
+What is Sulu's primary position on the U.S.S. Enterprise?
+Helmsman
+10
+
+Which Star Trek captain has an artificial heart?
+-- Answer metadata begin
+{
+    "answers": ["Jean-Luc Picard", "Picard"]
+}
+-- Answer metadata end
+10
+
+Captain Picard has an artificial heart because a member of what species stabbed him?
+Nausicaan
+10
+
+Who was the first real astronaut to appear in any Star Trek episode?
+-- Answer metadata begin
+{
+    "answers": ["Mae C Jemison", "Mae C. Jemison"]
+}
+-- Answer metadata end
+10
+
+NBC rejected the pilot for "Star Trek." What famous comedian got them to take another look?
+Lucille Ball
+10
+
+What is Deanna Troi's favorite food?
+Chocolate
+10
+
+What weapon did Kirk and Spock use when they fought for possession of T'Pring during Spock's Pon farr ritual in "Amok Time"?
+A lirpa
+10
+
+Who was originally cast as Captain Janeway?
+Genevieve Bujold
+10
+
+Which character serves as the head of security for the space station Deep Space Nine?
+Odo
+10
+
+Who created the Bajoran wormhole?
+-- Answer metadata begin
+{
+    "answers": ["Prophets", "The Prophets"]
+}
+-- Answer metadata end
+10
+
+What type of weapons technology does a phaser use?
+Particle-beam weapons
+10
+
+In which Star Trek series did writer Larry Niven introduce the cat-like alien race, the Kzinti, into the Star Trek universe?
+-- Answer metadata begin
+{
+    "answers": ["Animated Series", "The Animated Series", "Star Trek: The Animated Series", "TAS"]
+}
+-- Answer metadata end
+10
+
+What species, known to the Borg as "species 329", were deemed unworthy of assimilation?
+-- Answer metadata begin
+{
+    "answers": ["Kazon", "The Kazon"]
+}
+-- Answer metadata end
+10
+
+In the Mirror universe, what has replaced the United Federation of Planets?
+Terran Empire
+10
+
+What was the name of Data's cat?
+Spot
+10
+
+Even though Klingon is a real language you can speak now, what Trek actor help create it?
+James Doohan
+10
+
+What is Lieutenant Uhura's first name?
+Nyota
+15
+
+What was Seven of Nine's name before she was assimilated by the Borg?
+Annika Hansen
+10
+
+Who was the first Vulcan science officer aboard the starship Enterprise?
+T'Pol
+10
+
+Who was the first Star Trek actor to write a Star Trek story?
+Walter Koenig
+10
+
+What future Starfleet captain survived the Battle of Wolf 359?
+-- Answer metadata begin
+{
+    "answers": ["Sisko", "Benjamin Sisko", "Ben Sisko"]
+}
+-- Answer metadata end
+10
+
+Who serves as the communications officer in the final episode of Star Trek: The Original Series?
+-- Answer metadata begin
+{
+    "answers": ["Lisa", "Lt. Lisa", "Lt Lisa", "Lieutenant Lisa"]
+}
+-- Answer metadata end
+10
+
+Which of the following was not a founding species of the United Federation of Planets? Andorians, Tellarites, Bajorans, or Vulcans?
+-- Answer metadata begin
+{
+    "answers": ["Bajorans", "The Bajorans"]
+}
+-- Answer metadata end
+10
+
+Which alien race did Ronald Reagan say reminded him of Congress?
+Klingons
+10
+
+Who played Captain Pike's first officer in "The Cage?"
+-- Answer metadata begin
+{
+    "answers": ["Majel Barrett"],
+	"answerFact": "Majel Barrett was Star Trek creator Gene Roddenberry's wife in real life"
+}
+-- Answer metadata end
+10
+
+Whose voice was the voice of the computer in most of the Original Series and in The Animated Series, The Next Gneration, Deep Space 9, Voyager, and Enterprise?
+-- Answer metadata begin
+{
+    "answers": ["Majel Barrett"],
+	"answerFact": "Majel Barrett, Gene Roddenberry's wife, made phonetic recordings of her voice in 2016 so that her voice could continue to be used. Rod Roddenberry (her and Gene's son) made the recordings with her."
+}
+-- Answer metadata end
+10
+
+Before Kirk, who was Captain of the Enterprise in the pilot episode of the original Star Trek series?
+-- Answer metadata begin
+{
+    "answers": ["Christopher Pike", "Captain Pike", "Captain Christopher Pike"]
+}
+-- Answer metadata end
+10
+
+Which comedian had a role written for them in "Star Trek IV" that they ultimately turned down?
+Eddie Murphy
+10
+
+Which Star Trek captain suffers from androgenic alopecia?
+Captain Picard
+10
+
+What character dies in the series finale of Star Trek: Enterprise?
+-- Answer metadata begin
+{
+    "answers": ["Trip Tucker", "Charles Trip Tucker III", "Charles Trip Tucker the third", "Trip"]
+}
+-- Answer metadata end
+10
+
+Who is the youngest captain in Starfleet history?
+-- Answer metadata begin
+{
+    "answers": ["James Kirk", "James T Kirk", "James T. Kirk", "James Tiberius Kirk", "Jim Kirk", "Captain Kirk", "Kirk"]
+}
+-- Answer metadata end
+10
+
+What actress turned down the role of Seven of Nine four times?
+Jeri Ryan
+10
+
+Who is captain Jonathan Archer (of the NX-01 in "Star Trek: Enterprise") played by?
+Scott Bakula
+10
+
+What famous character was named after a pilot Gene Roddenberry had met during WWII?
+-- Answer metadata begin
+{
+    "answers": ["Khan", "Khan Noonien Singh"]
+}
+-- Answer metadata end
+10
+
+Which Trek movie featured the first entirely CG sequence in film history?
+-- Answer metadata begin
+{
+    "answers": ["Wrath of Khan", "The Wrath of Khan"]
+}
+-- Answer metadata end
+10
+
+What was Majel Barrett's first role on Star Trek?
+-- Answer metadata begin
+{
+    "answers": ["First officer", "1st officer", "Number One, Captain Pike's first officer", "Number One", "Number 1", "Captain Pike's first officer", "Pike's first officer", "Pike's 1st officer"]
+}
+-- Answer metadata end
+10
+
+What is the Klingon homeworld?
+-- Answer metadata begin
+{
+    "answers": ["Kronos", "Q'onoS", "Qo'noS"]
+}
+-- Answer metadata end
+10
+
+What type of fish does Captain Picard keep in his ready room?
+Lionfish
+10
+
+Which Star Trek character was trapped in a transporter buffer for 75 years?
+-- Answer metadata begin
+{
+    "answers": ["Montgomery Scott", "Scotty"]
+}
+-- Answer metadata end
+10
+
+What is Mr. Chekhov's first name?
+Pavel
+10
+
+What is Mr. Chekov's full name?
+Pavel Andreievich Chekov
+10
+
+What is Captain Kirk's middle name?
+Tiberius
+5
+
+Which Star Trek captain loves baseball?
+-- Answer metadata begin
+{
+    "answers": ["Sisko", "Benjamin Sisko", "Ben Sisko", "Captain Sisko"]
+}
+-- Answer metadata end
+10
+
+What medical condition did William Shatner and Leonard Nimoy both suffer as a result of standing too close to a special effect explosion?
+Tinnitus
+10
+
+Who was Spock's mother?
+Amanda Grayson
+10
+
+Which Star Trek series has a female Chief Engineer?
+Voyager
+10
+
+Which Chief Medical Officer is a Denobulan?
+Phlox
+10
+
+Which Star Trek captain was forced to impersonate a historical figure to preserve the timeline?
+-- Answer metadata begin
+{
+    "answers": ["Sisko", "Benjamin Sisko", "Ben Sisko", "Captain Sisko"]
+}
+-- Answer metadata end
+10
+
+What character asks Data if he is "fully functional"?
+Tasha Yar
+10
+
+Who was the first Kelpien to enter Starfleet?
+Saru
+10
+
+What were the last words of the last episode of Star Trek: The Original Series?
+If only
+10
+
+Who was originally offered the role of Spock?
+Martin Landau
+10
+
+Which species was the first to discover warp drive?
+Vulcans
+10
+
+According to Klingon mythology, what is the place where all life began?
+QI'tu'
+10
+
+Thanks to Trek fans, NASA named a space shuttle "Enterprise." What was it going to be called before?
+Constitution
+10
+
+Which Trek actor was shot six times on D-Day?
+-- Answer metadata begin
+{
+    "answers": ["James Doohan"],
+	"answerFact": "James Doohan came up with the basic sounds of the Vulcan and Klingon languages for The Motion Picture"
+}
+-- Answer metadata end
+10
+
+Which Next Generation species was meant to be introduced as a replacement for Klingons as a major enemy?
+Ferengi
+10
+
+What Star Trek character was labeled "unknown sample" when discovered by Bajoran scientists?
+Odo
+10
+
+According to results from the 2013 Star Trek Convention, what was the 7th best "Star Trek " film ever?
+Galaxy Quest
+10
+
+What was the first ship James T. Kirk served on?
+-- Answer metadata begin
+{
+    "answers": ["Farragut", "U.S.S. Farragut", "USS Farragut"]
+}
+-- Answer metadata end
+10
+
+What ship is Sulu assigned when he's promoted to captain?
+-- Answer metadata begin
+{
+    "answers": ["Excelsior", "U.S.S. Excelsior", "USS Excelsior"]
+}
+-- Answer metadata end
+10
+
+Which infamous episode of "The Next Generation" is considered the series' worst?
+Shades of Grey
+10
+
+What type of pet does Captain Archer have on Enterprise?
+Beagle
+10
+
+Which character has appeared in more episodes than any other in all of Trek history?
+Worf
+10
+
+In what year was Star Trek: The Motion Picture released?
+1979
+10
+
+What actor from Star Trek: The Original Series lost his right middle finger during World War II?
+James Doohan
+10
+
+Which TNG actor was so convinced the show would fail they never bothered to unpack their bags for over a month?
+Patrick Stewart
+10
+
+Trek famously reuses actors in many alien roles. Who was the first to play a Vulcan, a Romulan, and a Klingon?
+Mark Lenard
+10
+
+Captain Picard played a flute in an episode of "The Next Generation" that went up for auction in 2006. How much money did it go for?
+-- Answer metadata begin
+{
+    "answers": ["48,000 dollars", "48000 dollars", "$48,000", "$48000", "48000"]
+}
+-- Answer metadata end
+10
+
+How many different characters has actor Jeffrey Combs played in the "Star Trek" universe?
+-- Answer metadata begin
+{
+    "answers": ["Eight", "8"]
+}
+-- Answer metadata end
+10
+
+What character was adopted by the Vulcan ambassador Sarek?
+Michael Burnham
+10
+
+What is the name of the Klingon Commander who ordered the death of Kirk's son David?
+Commander Kruge
+10
+
+What species' motto is 'Victory is life'?
+-- Answer metadata begin
+{
+    "answers": ["Jem'Hadar", "Jem Hadar"]
+}
+-- Answer metadata end
+10
+
+Chief O'Brien's wife, Keiko, is the station's schoolteacher, but what is her trained profession?
+Botanist
+10
+
+What mentor to Benjamin Sisko was the host of the Dax symbiote before Jadzia?
+Curzon
+10
+
+What ship was Picard on before the Enterprise?
+-- Answer metadata begin
+{
+    "answers": ["Stargazer", "The Stargazer"]
+}
+-- Answer metadata end
+10
+
+Ziyal is the daughter of which evil mastermind?
+Gul Dukat
+10
+
+What does Deanna love almost as much as life itself?
+-- Answer metadata begin
+{
+    "answers": ["Chocolate", "Chocolates"]
+}
+-- Answer metadata end
+10
+
+What is the name of the first "Star Trek" movie?
+-- Answer metadata begin
+{
+    "answers": ["The Motion Picture", "Star Trek: The Motion Picture"]
+}
+-- Answer metadata end
+10
+
+What is the name of the vessel that makes first contact with the Vulcans in "Star Trek: First Contact"?
+-- Answer metadata begin
+{
+    "answers": ["Phoenix", "The Phoenix"]
+}
+-- Answer metadata end
+10
+
+Under the Treaty of Armens established between the Federation and the Sheliak Corporate, what planet does the Federation cede?
+-- Answer metadata begin
+{
+    "answers": ["Tau Cygna V", "Tau Cygna 5"]
+}
+-- Answer metadata end
+10
+
+What influential member of the Duras family does Mogh suspect has conspired with the Romulans to overthrow the Klingon emperor?
+Ja'rod
+10
+
+Who was the first Starfleet captain to encounter the Borg after the events in "Star Trek: First Contact" slightly altered linear history?
+-- Answer metadata begin
+{
+    "answers": ["Archer", "Jonathan Archer", "Jon Archer"]
+}
+-- Answer metadata end
+10
+
+Which is the only crew member of the Enterprise-D ever to attempt suicide and succeed?
+Dan Kwan
+10
+
+Which of the following is related to Guinan, the El-Aurian Enterprisde-D bartender?
+Terkim
+10
+
+Which "Deep Space Nine" crew member goes MIA during the course of the series?
+-- Answer metadata begin
+{
+    "answers": ["Sisko", "Benjamin Sisko", "Ben Sisko", "Captain Sisko"]
+}
+-- Answer metadata end
+10
+
+What was the unusual property of the drink known as a Samarian sunset?
+-- Answer metadata begin
+{
+    "answers": ["Changed color", "It changed color", "Changes color", "It changes color"]
+}
+-- Answer metadata end
+10
+
+In "Star Trek: Voyager", Captain Janeway is well known for drinking coffee. She wasn't the only one though. Who had a two pot limit per day of a type of coffee called Landras blend?
+-- Answer metadata begin
+{
+    "answers": ["Torres", "Lt. Torres", "Lt Torres", "Lieutenant Torres", "B'Elanna Torres"]
+}
+-- Answer metadata end
+10
+
+Who is the engineer aboard the U.S.S Enterprise-E?
+Geordi La Forge
+10
+
+Naomi Wildman appears aboard which starship?
+Voyager
+10
+
+We all know Deanna's mother made several appearances and other mothers appeared from time to time. Whose mother did we never see played by an actress?
+-- Answer metadata begin
+{
+    "answers": ["Beverly's", "Beverly", "Beverly Crusher's", "Beverly Crusher"]
+}
+-- Answer metadata end
+10
+
+Worf hadn't always worn a gold uniform. What color did he wear in the first season?
+Red
+10
+
+In what season of The Next Generation did Riker first appear with his beard?
+-- Answer metadata begin
+{
+    "answers": ["Second", "2nd", "2"]
+}
+-- Answer metadata end
+10
+
+Which crewmember was it implied that Data became intimate with?
+-- Answer metadata begin
+{
+    "answers": ["Tasha Yar", "Yar"]
+}
+-- Answer metadata end
+10
+
+Who did Data serve as 'father of the bride' for?
+Keiko
+10
+
+In the episode where Data was having dreams, who did he dream was a cake?
+-- Answer metadata begin
+{
+    "answers": ["Troi", "Deanna Troi"]
+}
+-- Answer metadata end
+10
+
+Which famous mystery character does Data like to be in the holodeck?
+Sherlock Holmes
+10
+
+Which of the following body parts is the oldest on Data's body?
+-- Answer metadata begin
+{
+    "answers": ["Head", "His head"]
+}
+-- Answer metadata end
+10
+
+Q was responsible for introducing the crew of the Enterprise D to which race?
+-- Answer metadata begin
+{
+    "answers": ["Borg", "The Borg"]
+}
+-- Answer metadata end
+10
+
+Where is the Borg's native territory?
+-- Answer metadata begin
+{
+    "answers": ["Delta Quadrant", "The Delta Quadrant"]
+}
+-- Answer metadata end
+10
+
+What gift did Chakotay present to the Captain in 'Year of Hell' as a birthday present?
+Pocket watch
+10
+
+What is the given name of the Bajoran liaison officer of Deep Space Nine?
+Nerys
+10
+
+What is the military rank of Doctor Julian Bashir?
+Lieutenant
+10
+
+Who invented the duotronic computer system used on the USS Enterprise?
+Richard Daystrom
+10
+
+What is the Vulcan marriage ritual called?
+Koon-ut-kal-if-fee
+15
+
+What was the name of the wheat like grain in the episode 'The Trouble with Tribbles'?
+Quadrotriticale
+10
+
+What was Max's nickname for B'Elanna in 'Equinox'?
+BLT
+15
+
+What is the name of the race that the Kazon hate?
+Trabe
+10
+
+In the episode 'Author, Author,' what is the name of the ship the Doc uses in his holonovel?
+Vortex
+10
+
+What were the name for the people that inhabited the water world?
+Monean
+10
+
+What was the name of the device used to circumvent the memories of the Voyager crew in the episode 'The Killing Game'?
+Neural Interface
+10
+
+What name does the Q, who is granted asylum aboard 'Voyager', adopt once he becomes human in the episode 'Death Wish'?
+Quinn
+10
+
+Who is the quote on 'Voyager's' registration plaque by?
+Alfred Lord Tennyson
+15
+
+What was the name of Chakotay's father?
+Kolopak
+10
diff --git a/xtrn/gttrivia/qa/the_office_us.qa b/xtrn/gttrivia/qa/the_office_us.qa
new file mode 100644
index 0000000000..4d33a0bbf3
--- /dev/null
+++ b/xtrn/gttrivia/qa/the_office_us.qa
@@ -0,0 +1,1029 @@
+-- QA metadata begin
+{
+    "category_name": "The Office (2005 US TV show)"
+}
+-- QA metadata end
+
+Where does Michael Scott move to start his new life with Holly?
+Boulder, Colorado
+10
+
+What are the names of Jim and Pam Halpert's kids?
+-- Answer metadata begin
+{
+    "answers": ["Cecelia and Phillip", "Cecelia \"Cece\" and Phillip", "Phillip and Cecilia", "Cecilia, Phillip", "Phillip, Cecilia"]
+}
+-- Answer metadata end
+10
+
+Which of Angela's cats did Dwight kill?
+-- Answer metadata begin
+{
+    "answers": ["Sprinkles"],
+	"answerFact": "The casting team originally wanted John Krasinskito audition for the role of Dwight, and he ended up convincing them he would be better off as Jim Halpert."
+}
+-- Answer metadata end
+10
+
+Who was Pam engaged to before Jim?
+Roy
+5
+
+At Phyllis' wedding, Michael revealed that her nickname in high school was what?
+Easy Rider
+10
+
+Which Grammy nominee played Andy's brother Walter?
+Josh Groban
+10
+
+Who was hired as Michael Scott's replacement before he moved?
+Deangelo Vickers
+10
+
+What was the name of Jan Levinson's assistant at corporate?
+Hunter
+10
+
+How many minutes did Michael Scott work at the office?
+-- Answer metadata begin
+{
+    "answers": ["9,986,000", "9,986,000 minutes", "9,986,000", "9986000"],
+	"answerFact": "Steve Carell almost didn't get to play Michael Scott because he was committed to another NBC show called Come to Papa. When that didn't work out, he was able to commit to The Office."
+}
+-- Answer metadata end
+10
+
+Who won "Hottest in the Office" at Michael's last Dundies?
+Danny Cordray
+10
+
+Who came up with Suck It?
+David Wallace
+10
+
+Michael and Dwight tried to steal clients from which local competing business?
+Prince Family Paper
+10
+
+How many brothers does Jim Halpert have?
+-- Answer metadata begin
+{
+    "answers": ["Two", "2"],
+	"answerFact": "When John Krasinski auditioned for Jim, he accidentally told the executive producer that he was worried they were going to mess up the show since he liked the British version so much."
+}
+-- Answer metadata end
+10
+
+What was the name of Stanley Hudson's mistress?
+Cynthia
+10
+
+Kelly gave out what as party favors at her America's Got Talent finale party?
+Coffee mugs
+10
+
+How much does Bob Vance bid on a hug from his wife Phyllis?
+-- Answer metadata begin
+{
+    "answers": ["$1000", "$1,000", "1000", "One thousand dollars", "A thousand dollars"]
+}
+-- Answer metadata end
+10
+
+Schrute boys must learn how many rules before the age of 5?
+-- Answer metadata begin
+{
+    "answers": ["Forty", "40"]
+}
+-- Answer metadata end
+10
+
+What was Plop's actual name?
+Pete
+10
+
+Who did Michael end up taking to Jamaica?
+Jan
+10
+
+Ryan caused the fire at the office warming up what?
+-- Answer metadata begin
+{
+    "answers": ["Cheese pita", "A cheese pita"],
+	"answerFact": "B.J. Novak (Ryan Howard) went to the same high school as John Krasinski (Jim), Brian Baumgartner (Kevin), and Ed Helms (Andy Bernard)."
+}
+-- Answer metadata end
+10
+
+What was the name of Andy's a cappella group at Cornell?
+Here Comes Treble
+10
+
+Who came in first place in the Michael Scott's Dunder-Mifflin Scranton Meredith Palmer Memorial Celebrity Rabies Awareness Pro-Am Fun Run Race for the Cure?
+-- Answer metadata begin
+{
+    "answers": ["Toby Flenderson", "Toby"]
+}
+-- Answer metadata end
+10
+
+Finish Dwight's security code: "The tea in Nepal is very hot..."
+But the coffee in Peru is much hotter
+10
+
+What is the name of the building security guard?
+Hank
+10
+
+What does Dwight always keep an extra set of in his car for special occasions?
+-- Answer metadata begin
+{
+    "answers": ["Birkenstocks"],
+	"answerFact": "The casting team originally wanted John Krasinskito audition for the role of Dwight, and he ended up convincing them he would be better off as Jim Halpert."
+}
+-- Answer metadata end
+10
+
+Pam and Jim's first kiss took place where?
+-- Answer metadata begin
+{
+    "answers": ["Chili's"],
+	"answerFact": "Jenna Fischer (Pam Beesly) kept the engagement ring that Jim gave Pam. She admitted on Twitter that it's just a silver ring that isn't worth anything, but she has held onto it anyway."
+}
+-- Answer metadata end
+10
+
+What is the title of Michael Scott's spy movie?
+Threat Level Midnight
+10
+
+What is the name of Kevin, Kelly, Erin and Meredith's trivia team?
+The Einsteins
+10
+
+What is Erin Hannon's real name?
+Kelly
+10
+
+Who did Kevin get for Secret Santa?
+-- Answer metadata begin
+{
+    "answers": ["Himself", "Kevin"]
+}
+-- Answer metadata end
+10
+
+What is Pam's favorite yogurt flavor?
+Mixed berry
+10
+
+What is the name of Pam, Oscar and Toby's club?
+The Finer Things Club
+10
+
+Ryan's son Drake Howard is allergic to what fruit?
+Strawberries
+10
+
+What is the name of Dwight's porcupine?
+Henrietta
+10
+
+Who was on the jury for the Scranton Strangler case?
+Toby
+10
+
+What username does Michael pick for an online dating service?
+Little Kid Lover
+10
+
+Which Harry Potter book did Dwight say he'd take to a desert island?
+Harry Potter and the Prisoner of Azkaban
+10
+
+What season did Michael leave The Office?
+-- Answer metadata begin
+{
+    "answers": ["Seven", "7", "Season 7", "7th season", "Seventh season", "The seventh season", "The 7th season", "7th"]
+}
+-- Answer metadata end
+10
+
+Dwight brought who as his date to Michael and Jan's dinner party?
+-- Answer metadata begin
+{
+    "answers": ["His former babysitter", "Former babysitter", "Babysitter"],
+	"answerFact": "The casting team originally wanted John Krasinskito audition for the role of Dwight, and he ended up convincing them he would be better off as Jim Halpert."
+}
+-- Answer metadata end
+10
+
+What nickname does Andy give Jim?
+-- Answer metadata begin
+{
+    "answers": ["Big Tuna", "Tuna"],
+	"answerFact": "John Krasinski (Jim) did a lot of research on Scranton and paper companies after getting the role of Jim. He shot footage of Scranton that ended up appearing in the opening credits of the show."
+}
+-- Answer metadata end
+10
+
+While playing Who Would You Do in the office, Michael says he'd have sex with which coworker?
+Ryan
+10
+
+Michael likes waking up to the smell of what in the morning?
+Bacon
+10
+
+What is the name of Kevin Malone's band?
+Scrantonicity
+10
+
+Jim bought Pam's engagement ring how long after they started dating?
+-- Answer metadata begin
+{
+    "answers": ["One week", "1 week", "A week"],
+	"answerFact": "The episode when Jim proposed to Pam included the most expensive shot ever at $250,000. The crew had to build a replica of a gas station and rest stop for the proposal scene, since filming it at an actual gas station would have cost $100,000."
+}
+-- Answer metadata end
+10
+
+Since Michael can't pay for his tots' college education, what does he offer them instead?
+-- Answer metadata begin
+{
+    "answers": ["Laptop batteries", "Lithium batteries", "Lithium laptop batteries", "Laptop lithium batteries"]
+}
+-- Answer metadata end
+10
+
+What is the worst thing about prison, according to Prison Mike?
+-- Answer metadata begin
+{
+    "answers": ["Dementors", "The Dementors"]
+}
+-- Answer metadata end
+10
+
+Meredith has a Ph.D. in what?
+School Psychology
+10
+
+What is Dwight's all-time favorite movie?
+The Crow
+10
+
+What was the name of Michael's former boss who was decapitated?
+Ed Truck
+10
+
+Who was the regional manager of the Stamford branch?
+Josh Porter
+10
+
+Who would rather work for an "upturned broom"  than work for somebody else in the office besides themselves?
+Phyllis
+10
+
+Who refers to Michael, Dwight, and Andy as "that jackass, that other jackass, and that new jackass"?
+-- Answer metadata begin
+{
+    "answers": ["Bob Vance", "Bob Vance (of Vance Refrigeration)", "Bob Vance of Vance Refrigeration"]
+}
+-- Answer metadata end
+10
+
+Who sneezed in Pam's tea and then asid, "Don't worry, it's just allergies"?
+-- Answer metadata begin
+{
+    "answers": ["Michael", "Michael Scott"]
+}
+-- Answer metadata end
+10
+
+Who actually thought up the idea for WUPHF, Ryan's social media platform?
+Kelly
+10
+
+Who told Michael to "start over" after Michael called him an idiot?
+Darryl
+10
+
+Who referred to golf betting games as "Skins, Acee Deucee, Bingo Bango Bongo, Sandies, Barkies" and "Wolf"?
+Kevin
+10
+
+Who wanted people to be afraid of how much they love him?
+-- Answer metadata begin
+{
+    "answers": ["Michael", "Michael Scott"]
+}
+-- Answer metadata end
+5
+
+Who did Michael refer to as "booster seat" when he wanted her to stop talking?
+Angela
+10
+
+Who got lost in Dwight's corn maze?
+Kevin
+10
+
+Who thought the phrase was "not to be truffled with" instead of "not to be trifled with"?
+-- Answer metadata begin
+{
+    "answers": ["Michael", "Michael Scott"]
+}
+-- Answer metadata end
+5
+
+When trying to prove his foot dexterity, who dumped a mug of hot coffee into his lap?
+Dwight
+10
+
+Who did Michael think was the smartest person in the office?
+Oscar
+10
+
+Who kept a list of everyone who wronged him?
+Ryan
+10
+
+Who was finally able to don the Santa suit, thoroughly pissing Michael off?
+Phyllis
+10
+
+Who said to Andy, "Talk to me that way again, and I'll cut your face off"?
+Erin
+10
+
+Who hit Dwight in the face with a snowball during a "dusting"?
+Jim
+10
+
+Who has been trying to get on jury duty every year since he was 18 years old so he can sit in "an air-conditioned room, downtown, judging people, with paid lunch"?
+Stanley
+10
+
+Who thanked the Scranton Strangler for taking "one more person's breath away"?
+-- Answer metadata begin
+{
+    "answers": ["Michael", "Michael Scott"]
+}
+-- Answer metadata end
+10
+
+Who dressed up as a sexy nurse for the Halloween contest?
+Angela
+10
+
+Who was Dwight dressed like when he started attacking Jim in the office with snowballs?
+Pam
+10
+
+Who was obsessed with a capella and was a member of Here Comes Treble?
+-- Answer metadata begin
+{
+    "answers": ["Andy", "Andy Bernard", "The Nard-Dog", "The Nard Dog"]
+}
+-- Answer metadata end
+10
+
+Who couldn't deal with how "coddled the modern anus" was?
+Darryl
+10
+
+Who started the fire, prompting Dwight to rewrite the Billy Joel song?
+Ryan
+10
+
+Who was the secretary of Knights of the Night?
+Dwight
+10
+
+Who wanted Cheez Whis to put on his broccoli?
+Kevin
+10
+
+Who got strangled by the Scranton Strangler when he visited him in jail?
+Toby
+10
+
+Who stole Meredith's painkillers in the hospital?
+Creed
+10
+
+On the wall of Mr. Choo's Chinese Restaurant, who was in a photo holding up a sign that said "THIEF"?
+Creed
+10
+
+Who called the bedroom her gym?
+Phyllis
+10
+
+Who told Angela that the only premature baby in the room was the one her baby ate?
+Oscar
+10
+
+Who was only a little "stitious"?
+-- Answer metadata begin
+{
+    "answers": ["Michael", "Michael Scott"]
+}
+-- Answer metadata end
+5
+
+When interviewing for the manager position, who said she was "not easy to manager"?
+Kelly
+10
+
+Whom did Dwight want to give a post-apocalypse "knapsack filled with canned goods, chainsaw, gasoline, and emergency radio" in case they woke up?
+Deangelo
+10
+
+As Stonewall Alliance Trivia night, who wrote "The California Raisins" instead of "The Grapes of Wrath" as an answer?
+Kevin
+10
+
+Who did Dwight think takes 50 minutes to style his hair?
+Jim
+10
+
+Who became the receptionist, and loved it, while most of the office was in FLorida at Sabre for training?
+Andy
+10
+
+Aside from Michael, who else had a World's Best Boss mug on his desk?
+David
+10
+
+Who was planking on top of the cabinet in Andy's office?
+Kelly
+10
+
+Which character was fired in the second season during downsizing and rehired in the last episode?
+Devon
+10
+
+Who played Voodoo Mama Juju, the witch doctor, in the murder game played at the office?
+Angela
+10
+
+At the Scranton Humane Society Fundraiser, who ended up adopting 12 dogs in a fit to upstage Robert, the senator?
+-- Answer metadata begin
+{
+    "answers": ["Andy", "Andy Bernard", "The Nard-Dog", "The Nard Dog"]
+}
+-- Answer metadata end
+10
+
+Who pretended to be Lloyd Gross, a fictional salesman who was invented to get around the sales commission cap, when an angry Syracuse branch employee confronted Scranton?
+Toby
+10
+
+Who created a chore wheel that had no chores when the custodian went on vacation for a month?
+Pam
+10
+
+Who thought the phrase "euthenize this place" meant adding youthful energy into the office?
+-- Answer metadata begin
+{
+    "answers": ["Michael", "Michael Scott"]
+}
+-- Answer metadata end
+5
+
+Who wanted to own a decommissioned lighthouse that would launch into space?
+Stanley
+10
+
+Who was nicknamed "Plop" by Andy?
+Pete
+10
+
+Who wore a fake moustache and said, "Bye, Stanley. I love you" during a series of pranks that proved Stanley never noticed anything?
+Pam
+10
+
+Who kidnapped Angela during her bachelorette party?
+Mose
+10
+
+Who thought Dunder-Mifflin was a dog food company?
+Creed
+10
+
+When Dwight claimed that he embraced germs because they made him stronger, who sneezed on his toast, which he then ate reluctantly? - Phyllis, Jim or Andy?
+Andy
+5
+
+What job did Creed think he had at the office? - Perceptionist, Inequality Manager, or "Quabity Assurance"?
+Quabity Assurance
+5
+
+What dish did Kevin spend all weekend cooking only to spill it all over the carpet when he brought it in to share? - Kevin's Famous Chili, Kevin's Famous Frank 'n' Beans, or Kevin's Famous Buffalo Wings?
+-- Answer metadata begin
+{
+    "answers": ["Chili", "Kevin's Famous Chili"]
+}
+-- Answer metadata end
+5
+
+What was the title of Michael Scott's spy movie? - "I'm Scarn, Michael Scarn", "Threat Level Midnight", or "Nightfall Atomic"?
+Threat Level Midnight
+5
+
+What did Dwight do to catch people in the act of doing something wrong? - Whip open doors, yell "GOTCHA" every time he walked into a room, or hide under tables?
+Whip open doors
+5
+
+Whta nickname did Packer give Gabe? - Yo Game-a Gabe-a, Gabewad, or Gabey Baby?
+Gabewad
+5
+
+What present did Pam make Jim for Christmas? - Bounded book of his Dwight pranks, a comic book titled "The Adventures of Jimmy Halpert", or a portrait of CeCe?
+-- Answer metadata begin
+{
+    "answers": ["Comic book", "A comic book titled The Adventures of Jimmy Halpert"]
+}
+-- Answer metadata end
+5
+
+What did the yellow sticker at Dwight's desk say? - FROGGY 101, EAT BRATS, or GOJU RU KARATE?
+FROGGY 101
+5
+
+What was Kevin's '80s cover band called? - Paper Pirates, Dunder Shred, or Scrantonicity?
+Scrantonicity
+5
+
+Which of the following resolutions did Creed want to accomplish: A cartwheel, meet a loose woman, or floss?
+-- Answer metadata begin
+{
+    "answers": ["Cartwheel", "A cartwheel"]
+}
+-- Answer metadata end
+5
+
+Which type of bed did Michael sleep on, as revealed to Pam? - A bunk ped, a futon, or a California king?
+-- Answer metadata begin
+{
+    "answers": ["Futon", "A futon"]
+}
+-- Answer metadata end
+5
+
+Which holiday did Meredith beg Ryan and Kelly to stop fighting on because she wanted "one perfect day a yaer" with "no hassles, no problems, no kids"? - Halloween, St. Patrick's Day, or Pretzel Day?
+St. Patrick's Day
+5
+
+"Michael Scott's Dunder-Mifflin Scranton Meredith Palmer Memorial Celebrity (blank) Awareness Pro-Am Fun Run Race for the Cure" was for which disease? - Rabies, nymphomania, or pica?
+Rabies
+5
+
+Which Dundie did Angela NOT win? - Kind of a Bitch Award, Tight-Ass Award, or Most Cats Award?
+Most Cats Award
+5
+
+Other than Pam and Holly, who was the only female to have said, "That's what she said"? - Jan, Meredith, or Phyllis?
+Jan
+5
+
+What sound did Dwight play after Erin broke up with Gabe during her Dundie acceptance speech? - Car horn, applause, or crickets?
+Crickets
+5
+
+Which was NOT one of Angela's cats? - Tinkie, Cornstock, or Meowsus?
+Meowsus
+10
+
+Which fruit did PHyillis use to describe Angela's "little head"? - Grape, kiwi, or blueberry?
+Grape
+5
+
+When Kevin tried to convince his coworkers that he's also had sex in the office, which phrase did he use to convince them she was real? - She lives in Canada, she's from another school, or you don't know her?
+She's from another school
+5
+
+What was the brand name of the ladies' suit Michael found in a bin people were frantically going through and wore to the office? - MISSterious, Sassafras, or Modern Womyn?
+MISSterious
+5
+
+After Michael and Deangelo caught Meredith in a walk of shame home, what did she offer as incentive to get them to stay for breakfast? - Saucers, napkins, or chairs?
+Napkins
+5
+
+Where did Phyllis take Kevin before they went out as a team to go on sales calls? - Bar for liquid courage, grocery store for snacks, or beauty salon for a makeover?
+-- Answer metadata begin
+{
+    "answers": ["Beauty salon for a makeover", "Beauty salon"]
+}
+-- Answer metadata end
+5
+
+What did Dwight want to be done with his body after he dies? - Massive funeral pyre, freeze it, or be made into a skeleton?
+Freeze it
+5
+
+What last name did Jim use for his parody book "The Ultimate Guide to Throwing a Garden Party"? - Trickington, Fauxbert, or Ployman?
+Scranton Strangler
+10
+
+What did Michael's GPS "make" him do? - Drive into a lake, run into a phone pole, or drive the wrong way on a one-way street?
+Drive into a lake
+5
+
+What did Meredith do to Michael after accepting her Dundie for Best Mother? - Kiss him, punch him in the face, or flash him?
+-- Answer metadata begin
+{
+    "answers": ["Kiss him", "Kissed him"]
+}
+-- Answer metadata end
+5
+
+What phrase did Stanley start adding to the end of his sentences becaues he thought it was hilarious? - "Go straight to hell", "You can suck it", or "Shove it up your butt"?
+Shove it up your butt
+5
+
+What did Pam call the day that occurred once a year when Michael had to sign the paychecks, approve the purchase orders, and initial the expense reports? - Free-for-all Friday, Perfect Storm, or Mayhem Dayhem?
+Perfect Storm
+5
+
+What did Dwight name his coffee shop after he bought the building? - Dwight's Espresso Express, Dwight's Java Jolt, or Dwight's Caffeine Corner?
+-- Answer metadata begin
+{
+    "answers": ["Caffeine Corner", "Dwight's Caffeine Corner"]
+}
+-- Answer metadata end
+5
+
+What did Jim claim he gets when he drinks? - Pranky, handsy, or angry?
+Pranky
+5
+
+What did Andy define as the proper attire for the garden party? - Pennsylvania Preppy, Connecticuit Casual, or Newport Nautical?
+Connecticuit Casual
+5
+
+After Dwight went behind Michael's back to Jan and tried to take his job, what did Michael make him do as punishment? - Wash his car, do his laundry, or clean his house?
+-- Answer metadata begin
+{
+    "answers": ["Laundry", "Do his laundry"]
+}
+-- Answer metadata end
+5
+
+What number did the speed gun register as Dwight ran by it? - 13, 20, or 8?
+-- Answer metadata begin
+{
+    "answers": ["Thirteen", "13"]
+}
+-- Answer metadata end
+5
+
+What reminder did Kevin have tacked to his wall? - Don't eat the yellow snow, don't eat food you find on the floor, or don't eat pocket lint?
+-- Answer metadata begin
+{
+    "answers": ["Don't eat the yellow snow", "Don't eat yellow snow", "Yellow snow"]
+}
+-- Answer metadata end
+5
+
+What do Schrutes traditionally stand in when they get married? - Bucket of beets, corn maze, or their own graves?
+Their own graves
+5
+
+What did Ryan guess Todd Packer's middle initial F represented? - Fool, fudge, or fart?
+Fudge
+5
+
+What did Jim train Dwight to eat by restarting his computer? - Mints, sour balls, or gummy bears?
+Mints
+5
+
+Which season was Kevin's favorite? - Cookie season, chili season, or pool season?
+-- Answer metadata begin
+{
+    "answers": ["Cookie season", "Cookie"]
+}
+-- Answer metadata end
+5
+
+What profession did Meredith's son have? - Bouncer, stripper, or pimp?
+Stripper
+5
+
+Why didn't Danny Cordray call Pam back? - Pam was in love with Jim, he lost her number, or she was too dorky?
+-- Answer metadata begin
+{
+    "answers": ["Too dorky", "She was too dorky"]
+}
+-- Answer metadata end
+5
+
+What did Nellie think Kevin's name was? - Creed, Chumbo, or Gavin?
+Chumbo
+5
+
+Which accessory of Stanley's caused a hot debate of whether he had one or not? - Glasses, mustahce, or bow tie?
+Mustache
+5
+
+What did Dwight name his recycling alien character who lived on Polluticorn? - Recyclobot, Recyclops, or Reclyclone?
+Recyclops
+5
+
+Which of these was NOT a cliché about rain used by Phillis? - The plants are gonna love this, it's raining men, or nobody knows how to drive in the rain?
+It's raining men
+5
+
+What did Kevin do during Dwight's impromptu fire drill? - Try to climb into the ceiling, have a heart attack, or break into thevending machine to steal candy?
+-- Answer metadata begin
+{
+    "answers": ["Break into the vending machine to steal candy", "Vending machine", "Break into the vending machine"]
+}
+-- Answer metadata end
+5
+
+What was warehouse worker Hidetoshi Hasagawa's profession when he lived in Japan? - Yakuza boss, heart surgeon, or mercenary?
+Heart surgeon
+5
+
+What breed of dogs did Jo Bennett bring with her to the Scranton office?
+Great Dane
+10
+
+Who invented dunderball?
+Toby
+10
+
+Which person, who also acted in the show, wrote the most episodes?
+Mindy Kaling
+10
+
+How many seasons of The Office were made?
+-- Answer metadata begin
+{
+    "answers": ["Nine", "9"]
+}
+-- Answer metadata end
+10
+
+Steve Carrell's wife, Nancy, plays which minor character on the show?
+-- Answer metadata begin
+{
+    "answers": ["Carol Stills"],
+	"answerFact": "Carol Stills was his real estate agent"
+}
+-- Answer metadata end
+10
+
+What is Creed Bratton's real name?
+William Charles Schneider
+10
+
+How many Halloween episodes of The Office are there?
+-- Answer metadata begin
+{
+    "answers": ["Six", "6"]
+}
+-- Answer metadata end
+10
+
+In which season did Michael Scott leave to go live with Holly in Colorado?
+-- Answer metadata begin
+{
+    "answers": ["Seventh", "7th", "7", "Season 7"]
+}
+-- Answer metadata end
+10
+
+Which "The Office" actor wrote a published children's book that has no pictures in it?
+-- Answer metadata begin
+{
+    "answers": ["BJ Novak", "B.J. Novak"]
+}
+-- Answer metadata end
+10
+
+Which expression of Michael Scott's does Ricky Gervais as David Brent say to him, bonding them instantly?
+That's what she said
+10
+
+How many different regional managers were there, including acting managers?
+-- Answer metadata begin
+{
+    "answers": ["Nine", "9"],
+	"answerFact": "The managers were Michael Scott, Jim Halpert, Andy Bernard, Dwight Schrute, Deangelo Vickers, Robert California, Nellie Bertram, Charles Miner (acting), and Creed Bratton (acting)"
+}
+-- Answer metadata end
+10
+
+In which month did THe Office premier in 2005?
+March
+10
+
+Which small-town mockumentary did The Office co-creator Greg Daniels also create?
+-- Answer metadata begin
+{
+    "answers": ["Parks & Recreation", "Parks and Recreation"]
+}
+-- Answer metadata end
+10
+
+Who was the last character to speak in the series finale of The Office?
+Pam
+10
+
+What is the real-life name of Poor Richard's Pub in Scranton, PA?
+Pickwick's Pub
+10
+
+Which Pennsylvanian county in Scranton is located in, as seen on Dwight's Volunteer Shariff's Deputy mug?
+Lackawanna
+10
+
+What is the significance of having the Scranton office on "Slough" street?
+-- Answer metadata begin
+{
+    "answers": ["It's the town in the UK show", "Slough is the town in the UK show", "Slough is the town in the UK version of the show", "It's the town in the UK version of the show"]
+}
+-- Answer metadata end
+15
+
+What is Scranton's nickname, mentioned a few times in the series?
+-- Answer metadata begin
+{
+    "answers": ["Electric City", "The Electric City"]
+}
+-- Answer metadata end
+10
+
+In the 2018 online auction of The Office props, which item was the top seller at $29,000?
+-- Answer metadata begin
+{
+    "answers": ["Dunder-Mifflin sign", "Dunder Mifflin sign", "Dunder-Mifflin, Inc. sign", "Dunder Mifflin, Inc. sign", "Dunder-Mifflin Inc. Sign", "Dunder Miffling Inc. sign", "Dunder-Mifflin Inc Sign", "Dunder Mifflin Inc sign"]
+}
+-- Answer metadata end
+15
+
+How many accountants are there on The Office?
+-- Answer metadata begin
+{
+    "answers": ["Three", "3"]
+}
+-- Answer metadata end
+5
+
+How many sales people are there in the Scranton office in season 3?
+-- Answer metadata begin
+{
+    "answers": ["Seven", "7"],
+	"answerFact": "The sales people in season 3 are Dwight, Jim, Ryan, Stanley, Phyllis, Andy, and Karen"
+}
+-- Answer metadata end
+10
+
+Which actor sings the 'Threat Level Midnight' theme song?
+Ed Helms
+10
+
+Which cast member shot the original opening credit footage while researching Scranton, PA?
+John Krasinski
+10
+
+How many awards did Steve Carrell win for portraying Michael Scott?
+-- Answer metadata begin
+{
+    "answers": ["Twenty-nine", "Twenty nine", "29"]
+}
+-- Answer metadata end
+10
+
+Jenna Fischer is godmother of which cast member's daughter?
+Angela Kinsey
+10
+
+Which castmate was on John Krasinski's little league team?
+-- Answer metadata begin
+{
+    "answers": ["BJ Novak", "B.J. Novak"]
+}
+-- Answer metadata end
+10
+
+What type of king does Rainn Wilson claim he is, as seen in the title of his memoir?
+Bassoon
+10
+
+Which main cast member didn't watch the UK version in fear they'd base their character off the UK one?
+Steve Carell
+10
+
+In which city was the official "Office" wrap party held on May 4th, 2013?
+Scranton, PA
+5
+
+Which cast member left a $69.69 tip at Iowa City's Bo-James bar in April 2019?
+Brian Baumgartner
+10
+
+With 22.9 million viewers, which 5th season episode was most watched of the entire series?
+Stress Relief
+10
+
+Which recurring character does The Office writer and producer Michael Schur play on the show?
+Mose
+10
+
+In which year was Dunder-Mifflin founded?
+1949
+10
+
+Whose real niece is Jim and Pam's daughter Cecilia named after?
+Jenna Fischer
+10
+
+Which camera setup was used to film the show?
+Single
+10
+
+What is Jan's candle company named?
+Serenity by Jan
+10
+
+Which accountant directed the "After Hours" episode?
+Brian Baumgartner
+10
+
+How many episodes of The Office are there?
+-- Answer metadata begin
+{
+    "answers": ["Two Hundred One", "201"]
+}
+-- Answer metadata end
+10
+
+Which actor wore a wig during season 3 after shaving his head for a movie role?
+John Krasinski
+10
+
+In which year did The Office season finale premier?
+2013
+10
+
+What iconic sign was relocated to the Steamtown Mall in Scranton, PA after its original location caused congestion because too many people took photos with it?
+Scranton Welcomes You
+10
+
+In which California neighborhood were most of the interior shots of the office filmed?
+Van Nuys
+10
+
+Who wrote the scripts for the "Survivor Man" and "Casino Night" episodes?
+Steve Carell
+10
+
+Which HR rep wrote 16 episodes of the show?
+Toby
+10
+
+Which main cast member is the only one who was born in Pennsylvania?
+Kate Flannery
+10
+
+Which actress was a casting associate for the show when they created a character specifically for her?
+Phyllis Smith
+10
+
+How many times does Michael fake fire Pam?
+-- Answer metadata begin
+{
+    "answers": ["Two", "Twice", "2"]
+}
+-- Answer metadata end
+10
+
+Which cast member went to high school with Brian Baumgartner?
+Ed Helms
+10
+
+On which Scranton avenue is the brick building in the opening credits located?
+Mifflin
+10
+
+What is the name of the band who plays the theme song and appears in the "Booze Cruise" episode?
+The Scrantones
+10
+
+How many Christmas episodes of The Office are there?
+-- Answer metadata begin
+{
+    "answers": ["Seven", "7"]
+}
+-- Answer metadata end
+10
+
+Which mega-fan runs the website Office Tally and was a guest star on the series' finale?
+Jennie Tan
+10
diff --git a/xtrn/gttrivia/qa/word_unscramble_english.qa b/xtrn/gttrivia/qa/word_unscramble_english.qa
new file mode 100644
index 0000000000..2dc1d8150c
--- /dev/null
+++ b/xtrn/gttrivia/qa/word_unscramble_english.qa
@@ -0,0 +1,23606 @@
+-- QA metadata begin
+{
+    "category_name": "Word unscramble (English)"
+}
+-- QA metadata end
+
+Unscramble:  a a a b n a l c c s
+Casablanca
+10
+
+Unscramble:  a a a b n c l c a s
+Casablanca
+10
+
+Unscramble:  a a b t u o m r
+Marabout
+10
+
+Unscramble:  a a c b m o c t
+Catacomb
+10
+
+Unscramble:  a a c s e i p p
+Papacies
+10
+
+Unscramble:  a a c y p i r t
+Rapacity
+10
+
+Unscramble:  a a d a c n
+Canada
+10
+
+Unscramble:  a a e d d s h d e
+Deadheads
+10
+
+Unscramble:  a a e e c h t r
+Tracheae
+10
+
+Unscramble:  a a f s l e f l
+Falafels
+10
+
+Unscramble:  a a g d e m n
+Managed
+10
+
+Unscramble:  a a g e s v
+Savage
+10
+
+Unscramble:  a a g s e g r
+Garages
+10
+
+Unscramble:  a a g y a u p r
+Paraguay
+10
+
+Unscramble:  a a i d f r
+Afraid
+10
+
+Unscramble:  a a i i h w
+Hawaii
+10
+
+Unscramble:  a a j o n v
+Navajo
+10
+
+Unscramble:  a a l c i t b s
+Basaltic
+10
+
+Unscramble:  a a l e s y c t
+Catalyse
+10
+
+Unscramble:  a a l l e l p r
+Parallel
+10
+
+Unscramble:  a a l m b i c s
+Cabalism
+10
+
+Unscramble:  a a m c r a a n t
+Catamaran
+10
+
+Unscramble:  a a m i b m r
+Marimba
+10
+
+Unscramble:  a a m s c h d r
+Drachmas
+10
+
+Unscramble:  a a n a b e h r
+Habanera
+10
+
+Unscramble:  a a n d e c v l
+Valanced
+10
+
+Unscramble:  a a n o i v l
+Valonia
+10
+
+Unscramble:  a a n p j
+Japan
+10
+
+Unscramble:  a a n s l c b e
+Balances
+10
+
+Unscramble:  a a n t u t l a r
+Tarantula
+10
+
+Unscramble:  a a o t t b f l
+Flatboat
+10
+
+Unscramble:  a a p e a g s n
+Apanages
+10
+
+Unscramble:  a a p m z e d i
+Diazepam
+10
+
+Unscramble:  a a p n a m
+Panama
+10
+
+Unscramble:  a a p n i o t l
+Talapoin
+10
+
+Unscramble:  a a r a t j k
+Jakarta
+10
+
+Unscramble:  a a r g c a a m s d
+Madagascar
+10
+
+Unscramble:  a a r k s i t m
+Tamarisk
+10
+
+Unscramble:  a a r l s t p l
+Plastral
+10
+
+Unscramble:  a a r m u i s m
+Samarium
+10
+
+Unscramble:  a a r o t
+Aorta
+10
+
+Unscramble:  a a s d e k d m
+Damasked
+10
+
+Unscramble:  a a s h a r
+Sahara
+10
+
+Unscramble:  a a s i g a n k
+Nagasaki
+10
+
+Unscramble:  a a s k a l
+Alaska
+10
+
+Unscramble:  a a s m n t o c u t
+Catamounts
+10
+
+Unscramble:  a a t s e m l
+Malates
+10
+
+Unscramble:  a a t s n i a m
+Amanitas
+10
+
+Unscramble:  a a t y r o n t
+Natatory
+10
+
+Unscramble:  a a t y r o s n
+Sanatory
+10
+
+Unscramble:  a a u l n n b i
+Biannual
+10
+
+Unscramble:  a a y a l s m i
+Malaysia
+10
+
+Unscramble:  a b a c r r b i
+Barbaric
+10
+
+Unscramble:  a b a e c g b
+Cabbage
+10
+
+Unscramble:  a b e r b r
+Barber
+10
+
+Unscramble:  a b e x m a j u
+Jambeaux
+10
+
+Unscramble:  a b i e l t r
+Librate
+10
+
+Unscramble:  a b i g n g r
+Garbing
+10
+
+Unscramble:  a b i y l r r
+Library
+10
+
+Unscramble:  a b l g b i g n
+Gabbling
+10
+
+Unscramble:  a b l i y
+Libya
+10
+
+Unscramble:  a b l s m e r r
+Ramblers
+10
+
+Unscramble:  a b l s r e b b
+Babblers
+10
+
+Unscramble:  a b o a i d c m
+Cambodia
+10
+
+Unscramble:  a b o l r x c y
+Carboxyl
+10
+
+Unscramble:  a b o s r i p l
+Parboils
+10
+
+Unscramble:  a b r k y e d a
+Daybreak
+10
+
+Unscramble:  a b s r e i
+Serbia
+10
+
+Unscramble:  a c a a m s l n
+Almanacs
+10
+
+Unscramble:  a c a a r m s
+Mascara
+10
+
+Unscramble:  a c e r r n l e
+Larcener
+10
+
+Unscramble:  a c e s o e h l
+Shoelace
+10
+
+Unscramble:  a c e Y c n n s
+Nascency
+10
+
+Unscramble:  a c h e r e m s
+Marchese
+10
+
+Unscramble:  a c h n a b r
+Barchan
+10
+
+Unscramble:  a c h n t m w a
+Watchman
+10
+
+Unscramble:  a c h s r e p t
+Patchers
+10
+
+Unscramble:  a c h y t k l e
+Latchkey
+10
+
+Unscramble:  a c i d l y e c
+Delicacy
+10
+
+Unscramble:  a c i e s c f l
+Fascicle
+10
+
+Unscramble:  a c i g n s u
+Saucing
+10
+
+Unscramble:  a c i i d s a h
+Dichasia
+10
+
+Unscramble:  a c i s t e l
+Elastic
+10
+
+Unscramble:  a c l i i t
+Italic
+10
+
+Unscramble:  a c l o p u a c
+Acapulco
+10
+
+Unscramble:  a c o t e n f l
+Falconet
+10
+
+Unscramble:  a c o y l n f r
+Falconry
+10
+
+Unscramble:  a c p k e h r l
+Kreplach
+10
+
+Unscramble:  a c t y i b r
+Barytic
+10
+
+Unscramble:  a d a e c e s l
+Escalade
+10
+
+Unscramble:  a d a n d g r
+Grandad
+10
+
+Unscramble:  a d a r o t m n
+Mandator
+10
+
+Unscramble:  a d b d u h
+Buddha
+10
+
+Unscramble:  a d d i p k p e n
+Kidnapped
+10
+
+Unscramble:  a d e c k c r
+Cracked
+10
+
+Unscramble:  a d e e l i v v l u
+Vaudeville
+10
+
+Unscramble:  a d e h a s p
+Saphead
+10
+
+Unscramble:  a d e i l f l
+Flailed
+10
+
+Unscramble:  a d e p t a d
+Adapted
+10
+
+Unscramble:  a d e r g s p
+Sparged
+10
+
+Unscramble:  a d e s h g n
+Gnashed
+10
+
+Unscramble:  a d e s r s n
+Sanders
+10
+
+Unscramble:  a d e t m n s i
+Mediants
+10
+
+Unscramble:  a d f m n o l r
+Landform
+10
+
+Unscramble:  a d h c e m r
+Marched
+10
+
+Unscramble:  a d i l e s l
+Sallied
+10
+
+Unscramble:  a d i m y w
+Midway
+10
+
+Unscramble:  a d i s s m p l
+Plasmids
+10
+
+Unscramble:  a d i s t b n
+Bandits
+10
+
+Unscramble:  a d l b e w r
+Warbled
+10
+
+Unscramble:  a d l c i h i
+Chiliad
+10
+
+Unscramble:  a d l g n i w d
+Waddling
+10
+
+Unscramble:  a d l m s s i e
+Misleads
+10
+
+Unscramble:  a d l r e p d
+Paddler
+10
+
+Unscramble:  a d l s r e s d
+Saddlers
+10
+
+Unscramble:  a d m n e s n
+Sandmen
+10
+
+Unscramble:  a d n i n i
+Indian
+10
+
+Unscramble:  a d o a n r m l
+Mandorla
+10
+
+Unscramble:  a d o c l o o r
+Colorado
+10
+
+Unscramble:  a d o g e t n
+Tangoed
+10
+
+Unscramble:  a d p i e t l
+Taliped
+10
+
+Unscramble:  a d r m u e r
+Eardrum
+10
+
+Unscramble:  a d s p r e e u
+Persuade
+10
+
+Unscramble:  a d s s w a h n
+Handsaws
+10
+
+Unscramble:  a d t i s n e
+Instead
+10
+
+Unscramble:  a d t n e t i
+Tainted
+10
+
+Unscramble:  a d v k r a a r
+Aardvark
+10
+
+Unscramble:  a d w d r a l n
+Landward
+10
+
+Unscramble:  a d y e h t s r
+Hydrates
+10
+
+Unscramble:  a d y t h n h r
+Hydranth
+10
+
+Unscramble:  a e a e l b h t
+Hateable
+10
+
+Unscramble:  a e a e t b d l
+Dateable
+10
+
+Unscramble:  a e a g g b g
+Baggage
+10
+
+Unscramble:  a e a s m d n
+Maenads
+10
+
+Unscramble:  a e a y k w t a
+Takeaway
+10
+
+Unscramble:  a e b l l a b s
+Baseball
+10
+
+Unscramble:  a e b s r i r t
+Rarebits
+10
+
+Unscramble:  a e d d n i c y
+Cyanided
+10
+
+Unscramble:  a e d s g a r h
+Rhagades
+10
+
+Unscramble:  a e e e t g n
+Teenage
+10
+
+Unscramble:  a e g u a t m r
+Ageratum
+10
+
+Unscramble:  a e h r r c s e
+Searcher
+10
+
+Unscramble:  a e i a r p r
+Pareira
+10
+
+Unscramble:  a e i l v
+Alive
+10
+
+Unscramble:  a e i m n c r
+Carmine
+10
+
+Unscramble:  a e i r s s g l
+Glassier
+10
+
+Unscramble:  a e l c p
+Place
+10
+
+Unscramble:  a e l e v i w k
+Wavelike
+10
+
+Unscramble:  a e l s a l p t
+Patellas
+10
+
+Unscramble:  a e l s f f s n
+Snaffles
+10
+
+Unscramble:  a e l s z l g e
+Gazelles
+10
+
+Unscramble:  a e l t t s e
+Seattle
+10
+
+Unscramble:  a e l v s
+Slave
+10
+
+Unscramble:  a e m d e l r
+Emerald
+10
+
+Unscramble:  a e m t n e f k
+Fakement
+10
+
+Unscramble:  a e n c f r
+France
+10
+
+Unscramble:  a e n d m i e x
+Examined
+10
+
+Unscramble:  a e n d s c
+Ascend
+10
+
+Unscramble:  a e n e t i g l
+Galenite
+10
+
+Unscramble:  a e n g i i m
+Imagine
+10
+
+Unscramble:  a e n l i p r
+Praline
+10
+
+Unscramble:  a e n r t t p o
+Patentor
+10
+
+Unscramble:  a e n s a z c d
+Cadenzas
+10
+
+Unscramble:  a e n s d o s p
+Spadones
+10
+
+Unscramble:  a e n s e c c d
+Cadences
+10
+
+Unscramble:  a e n s e c v l
+Valences
+10
+
+Unscramble:  a e n s t e l s
+Lateness
+10
+
+Unscramble:  a e o b v
+Above
+10
+
+Unscramble:  a e o w k
+Awoke
+10
+
+Unscramble:  a e r c b
+Brace
+10
+
+Unscramble:  a e r e p t l
+Prelate
+10
+
+Unscramble:  a e r g n i w f
+Wafering
+10
+
+Unscramble:  a e r g t n s p
+Trepangs
+10
+
+Unscramble:  a e r n t m w a
+Waterman
+10
+
+Unscramble:  a e r s o
+Arose
+10
+
+Unscramble:  a e r s t i e e
+Eateries
+10
+
+Unscramble:  a e r y n p
+Napery
+10
+
+Unscramble:  a e r y r t
+Artery
+10
+
+Unscramble:  a e s n i t p e l
+Palestine
+10
+
+Unscramble:  a e s t a a n
+Anatase
+10
+
+Unscramble:  a e s x t
+Texas
+10
+
+Unscramble:  a e t g c i f n
+Faceting
+10
+
+Unscramble:  a e t r m s s e
+Seamster
+10
+
+Unscramble:  a e t r o n f w r t
+Waterfront
+10
+
+Unscramble:  a e t s e t p l
+Palettes
+10
+
+Unscramble:  a e t t u s t
+Statute
+10
+
+Unscramble:  a e u l r f i
+Failure
+10
+
+Unscramble:  a e u r e v m n
+Maneuver
+10
+
+Unscramble:  a e w e s i p l
+Palewise
+10
+
+Unscramble:  a f i t f c i
+Caitiff
+10
+
+Unscramble:  a f i t f m s
+Mastiff
+10
+
+Unscramble:  a f i u u l t b e
+Beautiful
+10
+
+Unscramble:  a f i y n t q u
+Quantify
+10
+
+Unscramble:  a f i y t n f
+Tiffany
+10
+
+Unscramble:  a f l s e i b r
+Barflies
+10
+
+Unscramble:  a f r l f a t i
+Taffrail
+10
+
+Unscramble:  a f r n o s f
+Saffron
+10
+
+Unscramble:  a g a o o r k n
+Kangaroo
+10
+
+Unscramble:  a g d o m
+Dogma
+10
+
+Unscramble:  a g d s g o h n
+Hangdogs
+10
+
+Unscramble:  a g h e r i n l
+Narghile
+10
+
+Unscramble:  a g h r e t d u
+Daughter
+10
+
+Unscramble:  a g i h n m s
+Mashing
+10
+
+Unscramble:  a g i l n d r
+Darling
+10
+
+Unscramble:  a g i l n g o
+Gaoling
+10
+
+Unscramble:  a g i l n w i
+Wailing
+10
+
+Unscramble:  a g i t n h s
+Hasting
+10
+
+Unscramble:  a g i u n v l
+Valuing
+10
+
+Unscramble:  a g k k o b n
+Bangkok
+10
+
+Unscramble:  a g l g n i d n
+Dangling
+10
+
+Unscramble:  a g l g r i g n
+Gargling
+10
+
+Unscramble:  a g l n o
+Along
+10
+
+Unscramble:  a g l s e b n
+Bangles
+10
+
+Unscramble:  a g n e e v r r
+Engraver
+10
+
+Unscramble:  a g n e u c d r
+Ungraced
+10
+
+Unscramble:  a g n n i m o
+Moaning
+10
+
+Unscramble:  a g n s d i l e
+Leadings
+10
+
+Unscramble:  a g n v i c r
+Craving
+10
+
+Unscramble:  a g o n i l p n
+Pangolin
+10
+
+Unscramble:  a g r m r e a i
+Marriage
+10
+
+Unscramble:  a h c e d a h e
+Headache
+10
+
+Unscramble:  a h e a n s p
+Saphena
+10
+
+Unscramble:  a h e c e h t
+Cheetah
+10
+
+Unscramble:  a h e s s e d n
+Dasheens
+10
+
+Unscramble:  a h e t n r
+Tehran
+10
+
+Unscramble:  a h i g n d s
+Dashing
+10
+
+Unscramble:  a h i n s t r
+Tarnish
+10
+
+Unscramble:  a h i s r e c s
+Cashiers
+10
+
+Unscramble:  a h l s f
+Flash
+10
+
+Unscramble:  a h m w
+Wham
+10
+
+Unscramble:  a h o e t u c s
+Cathouse
+10
+
+Unscramble:  a h t e w
+Wheat
+10
+
+Unscramble:  a h t g c i y n
+Yachting
+10
+
+Unscramble:  a i a f n r o c i l
+California
+10
+
+Unscramble:  a i a r f c
+Africa
+10
+
+Unscramble:  a i a s e t l b
+Labiates
+10
+
+Unscramble:  a i a s l f c
+Facials
+10
+
+Unscramble:  a i c h n
+China
+10
+
+Unscramble:  a i c n r o c v
+Cavicorn
+10
+
+Unscramble:  a i c s l o c e
+Calicoes
+10
+
+Unscramble:  a i c s x a t b
+Taxicabs
+10
+
+Unscramble:  a i d y l i v t
+Validity
+10
+
+Unscramble:  a i f d l i s e
+Salified
+10
+
+Unscramble:  a i g c g o a n
+Anagogic
+10
+
+Unscramble:  a i g s n m l
+Maligns
+10
+
+Unscramble:  a i h p n s d e
+Deanship
+10
+
+Unscramble:  a i l n n k f r
+Franklin
+10
+
+Unscramble:  a i n e d a m r
+Marinade
+10
+
+Unscramble:  a i n e t a m r
+Marinate
+10
+
+Unscramble:  a i n h o c t w n
+Chinatown
+10
+
+Unscramble:  a i n o l b
+Albino
+10
+
+Unscramble:  a i n s a c t z
+Stanzaic
+10
+
+Unscramble:  a i n s s e l z
+Laziness
+10
+
+Unscramble:  a i n s s e r c
+Raciness
+10
+
+Unscramble:  a i o s i l r v
+Raviolis
+10
+
+Unscramble:  a i o s n n t
+Nations
+10
+
+Unscramble:  a i o s r u p v
+Paviours
+10
+
+Unscramble:  a i p l a l y c
+Apically
+10
+
+Unscramble:  a i p l s c e r
+Spiracle
+10
+
+Unscramble:  a i p t o t l
+Talipot
+10
+
+Unscramble:  a i s d v h r e
+Ravished
+10
+
+Unscramble:  a i s o m a c d
+Camisado
+10
+
+Unscramble:  a i s r e h r v
+Ravisher
+10
+
+Unscramble:  a i s r e t g n
+Ganister
+10
+
+Unscramble:  a i s r g t m e
+Magister
+10
+
+Unscramble:  a i t d s t i r
+Distrait
+10
+
+Unscramble:  a i t e n i s z
+Sanitize
+10
+
+Unscramble:  a i t t b a h n
+Habitant
+10
+
+Unscramble:  a i v o t c a e r i d
+Radioactive
+10
+
+Unscramble:  a k a e l b w l
+Walkable
+10
+
+Unscramble:  a k c c o p e
+Peacock
+10
+
+Unscramble:  a k d g u o r b n c
+Background
+10
+
+Unscramble:  a k e d c y l e
+Lackeyed
+10
+
+Unscramble:  a k e d e r c n
+Cankered
+10
+
+Unscramble:  a k e d r n d e
+Darkened
+10
+
+Unscramble:  a k e n m e a s
+Namesake
+10
+
+Unscramble:  a k e o o r j c
+Jackeroo
+10
+
+Unscramble:  a k e r r t m e
+Marketer
+10
+
+Unscramble:  a k h l c
+Chalk
+10
+
+Unscramble:  a k i d n m n
+Mankind
+10
+
+Unscramble:  a k i e r l s t
+Starlike
+10
+
+Unscramble:  a k i g n b n
+Banking
+10
+
+Unscramble:  a k i g n m s
+Masking
+10
+
+Unscramble:  a k i t c e t s
+Tackiest
+10
+
+Unscramble:  a k i t r e n s
+Narkiest
+10
+
+Unscramble:  a k i t s e w c
+Wackiest
+10
+
+Unscramble:  a k l c b
+Black
+10
+
+Unscramble:  a k l r c i h e
+Hacklier
+10
+
+Unscramble:  a k o b o l w
+Lawbook
+10
+
+Unscramble:  a k o l c d g
+Daglock
+10
+
+Unscramble:  a k p k e e e s
+Keepsake
+10
+
+Unscramble:  a k w s y a w l
+Walkways
+10
+
+Unscramble:  a l a l t b e k
+Talkable
+10
+
+Unscramble:  a l e a w w y l
+Wellaway
+10
+
+Unscramble:  a l e e r s e
+Release
+10
+
+Unscramble:  a l e l t b e l
+Tellable
+10
+
+Unscramble:  a l e s e g
+Eagles
+10
+
+Unscramble:  a l e s s h t
+Hatless
+10
+
+Unscramble:  a l e y a w c b
+Cableway
+10
+
+Unscramble:  a l e y g l
+Galley
+10
+
+Unscramble:  a l h l s
+Shall
+10
+
+Unscramble:  a l i a m d r
+Admiral
+10
+
+Unscramble:  a l i d l a g r
+Galliard
+10
+
+Unscramble:  a l i g n s i
+Sailing
+10
+
+Unscramble:  a l i l t b b o
+Boatbill
+10
+
+Unscramble:  a l i m d s e c
+Medicals
+10
+
+Unscramble:  a l i s e n c r
+Carlines
+10
+
+Unscramble:  a l i s e n m r
+Marlines
+10
+
+Unscramble:  a l i s g n f i
+Failings
+10
+
+Unscramble:  a l i s t n f g
+Fatlings
+10
+
+Unscramble:  a l i t r e e s
+Earliest
+10
+
+Unscramble:  a l i t s g g h
+Gaslight
+10
+
+Unscramble:  a l i v g a n
+Vaginal
+10
+
+Unscramble:  a l i y b b f l
+Flabbily
+10
+
+Unscramble:  a l k f l e o t
+Folktale
+10
+
+Unscramble:  a l k g n i b u
+Baulking
+10
+
+Unscramble:  a l l s i e s s
+Sailless
+10
+
+Unscramble:  a l n e u s d e
+Unleased
+10
+
+Unscramble:  a l n i s
+Snail
+10
+
+Unscramble:  a l n r i l a f
+Rainfall
+10
+
+Unscramble:  a l o a v p v
+Pavlova
+10
+
+Unscramble:  a l o d f f s c
+Scaffold
+10
+
+Unscramble:  a l o e s t d i
+Diastole
+10
+
+Unscramble:  a l o e s t v
+Solvate
+10
+
+Unscramble:  a l s i i t s b c l
+Ballistics
+10
+
+Unscramble:  a l s n o t h e i
+Hailstone
+10
+
+Unscramble:  a l t f s l a b
+Fastball
+10
+
+Unscramble:  a l t i e m a p n r
+Parliament
+10
+
+Unscramble:  a l t i i s n i
+Initials
+10
+
+Unscramble:  a l t t c a u
+Tactual
+10
+
+Unscramble:  a l u a c c s
+Accusal
+10
+
+Unscramble:  a l u e b t l
+Bullate
+10
+
+Unscramble:  a l u n t a r
+Natural
+10
+
+Unscramble:  a m a g c i n p
+Campaign
+10
+
+Unscramble:  a m a g r d i
+Diagram
+10
+
+Unscramble:  a m a l r
+Alarm
+10
+
+Unscramble:  a m d l o e r
+Earldom
+10
+
+Unscramble:  a m e d m r Y e
+Yammered
+10
+
+Unscramble:  a m e e m t g
+Tagmeme
+10
+
+Unscramble:  a m g d a s i r
+Diagrams
+10
+
+Unscramble:  a m i t l e b s
+Balmiest
+10
+
+Unscramble:  a m i t s e b r
+Barmiest
+10
+
+Unscramble:  a m o c r n h i
+Harmonic
+10
+
+Unscramble:  a m o t r s m e
+Marmoset
+10
+
+Unscramble:  a m u d i s t
+Stadium
+10
+
+Unscramble:  a m y h s t y p
+Sympathy
+10
+
+Unscramble:  a m y s h l n
+Hymnals
+10
+
+Unscramble:  a n a e w b n
+Wannabe
+10
+
+Unscramble:  a n a i f s a t
+Fantasia
+10
+
+Unscramble:  a n a i m n n g
+Manganin
+10
+
+Unscramble:  a n a k s s
+Kansas
+10
+
+Unscramble:  a n a l i i t
+Italian
+10
+
+Unscramble:  a n a l t b e n
+Tannable
+10
+
+Unscramble:  a n a r i a c
+Acarian
+10
+
+Unscramble:  a n a s m l u
+Manuals
+10
+
+Unscramble:  a n b s i o r w
+Rainbows
+10
+
+Unscramble:  a n c b c t a h
+Bacchant
+10
+
+Unscramble:  a n c c u t o h
+Couchant
+10
+
+Unscramble:  a n d e c i j u
+Jaundice
+10
+
+Unscramble:  a n e d e r
+Earned
+10
+
+Unscramble:  a n e d l n o t
+Lentando
+10
+
+Unscramble:  a n e e h n b
+Henbane
+10
+
+Unscramble:  a n e e m d n h
+Menhaden
+10
+
+Unscramble:  a n e r c u s t
+Centaurs
+10
+
+Unscramble:  a n e r c u t
+Centaur
+10
+
+Unscramble:  a n e s r l n
+Lanners
+10
+
+Unscramble:  a n e v t e r
+Veteran
+10
+
+Unscramble:  a n g h n a m
+Hangman
+10
+
+Unscramble:  a n g y g e m
+Yeggman
+10
+
+Unscramble:  a n h h g d i l
+Highland
+10
+
+Unscramble:  a n i e v g r t
+Vintager
+10
+
+Unscramble:  a n i g c h p o
+Poaching
+10
+
+Unscramble:  a n i g c k q u
+Quacking
+10
+
+Unscramble:  a n i g i m c l
+Claiming
+10
+
+Unscramble:  a n i g l n s s
+Linsangs
+10
+
+Unscramble:  a n i g n c t r
+Trancing
+10
+
+Unscramble:  a n i g n d b r
+Branding
+10
+
+Unscramble:  a n i g n k s p
+Spanking
+10
+
+Unscramble:  a n i g n k t h
+Thanking
+10
+
+Unscramble:  a n i g p p f l
+Flapping
+10
+
+Unscramble:  a n i g p t a d
+Adapting
+10
+
+Unscramble:  a n i g r d s w
+Swarding
+10
+
+Unscramble:  a n i g r r s c
+Scarring
+10
+
+Unscramble:  a n i l e
+Alien
+10
+
+Unscramble:  a n k d c d o l
+Dockland
+10
+
+Unscramble:  a n m l e r i
+Railmen
+10
+
+Unscramble:  a n n a t m s t a h
+Manhattans
+10
+
+Unscramble:  a n n m u t o t
+Mountant
+10
+
+Unscramble:  a n o t c c s t
+Contacts
+10
+
+Unscramble:  a n p i s
+Spain
+10
+
+Unscramble:  a n r k o
+Akron
+10
+
+Unscramble:  a n s l c y n t o t
+Constantly
+10
+
+Unscramble:  a n s p r e u l
+Purslane
+10
+
+Unscramble:  a n t r e p i
+Painter
+10
+
+Unscramble:  a n t s o d c l
+Scotland
+10
+
+Unscramble:  a n t t i e f s
+Faintest
+10
+
+Unscramble:  a n t t u e g s
+Gauntest
+10
+
+Unscramble:  a n t y i i d l
+Daintily
+10
+
+Unscramble:  a n u e e d c n r
+Endurance
+10
+
+Unscramble:  a n u e s k d b
+Sunbaked
+10
+
+Unscramble:  a n u s r y w
+Runways
+10
+
+Unscramble:  a n z o a m
+Amazon
+10
+
+Unscramble:  a o c r o n
+Corona
+10
+
+Unscramble:  a o d v a b r
+Bravado
+10
+
+Unscramble:  a o e g n i c n
+Canoeing
+10
+
+Unscramble:  a o l r s i g e
+Gasolier
+10
+
+Unscramble:  a o l s e c j
+Cajoles
+10
+
+Unscramble:  a o l s j e c r
+Cajolers
+10
+
+Unscramble:  a o l t t
+Total
+10
+
+Unscramble:  a o m g r i c n
+Caroming
+10
+
+Unscramble:  a o n e n i c z
+Canonize
+10
+
+Unscramble:  a o n g g i w n
+Wagoning
+10
+
+Unscramble:  a o n m r
+Roman
+10
+
+Unscramble:  a o n m s i l c
+Laconism
+10
+
+Unscramble:  a o n s r e b t
+Baronets
+10
+
+Unscramble:  a o n y p i s f
+Saponify
+10
+
+Unscramble:  a o o d e n m r
+Marooned
+10
+
+Unscramble:  a o r e p s s t
+Protases
+10
+
+Unscramble:  a o r s b i t n
+Taborins
+10
+
+Unscramble:  a o s s i r b
+Isobars
+10
+
+Unscramble:  a o t e c p
+Capote
+10
+
+Unscramble:  a o t n n k p l
+Plankton
+10
+
+Unscramble:  a o u l q b y t
+Quotably
+10
+
+Unscramble:  a o u s f m
+Famous
+10
+
+Unscramble:  a o u Y m s f l
+Famously
+10
+
+Unscramble:  a o x e l o n n
+Naloxone
+10
+
+Unscramble:  a o y c m n y m
+Myomancy
+10
+
+Unscramble:  a p a l h
+Alpha
+10
+
+Unscramble:  a p a s l t p e
+Palpates
+10
+
+Unscramble:  a p a s w p w
+Pawpaws
+10
+
+Unscramble:  a p a t n r m
+Rampant
+10
+
+Unscramble:  a p e d e r t m
+Tampered
+10
+
+Unscramble:  a p e e r l d e
+Repealed
+10
+
+Unscramble:  a p e s r s p
+Sappers
+10
+
+Unscramble:  a p e t r n s l
+Replants
+10
+
+Unscramble:  a p e w r s i t
+Wiretaps
+10
+
+Unscramble:  a p i e r v m
+Vampire
+10
+
+Unscramble:  a p i g n n p
+Napping
+10
+
+Unscramble:  a p i s e h r
+Harpies
+10
+
+Unscramble:  a p i s m o t n
+Tampions
+10
+
+Unscramble:  a p i t p e n s
+Nappiest
+10
+
+Unscramble:  a p l s t o m r
+Marplots
+10
+
+Unscramble:  a p m i o l c h
+Omphalic
+10
+
+Unscramble:  a p n t u i l
+Unplait
+10
+
+Unscramble:  a p s e e r n c t r
+Carpenters
+10
+
+Unscramble:  a p s r n s w e e p
+Newspapers
+10
+
+Unscramble:  a p s s a e e c
+Seascape
+10
+
+Unscramble:  a p s s e l i
+Espials
+10
+
+Unscramble:  a q i e l t s u
+Liquates
+10
+
+Unscramble:  a r a d g n s l
+Garlands
+10
+
+Unscramble:  a r a n o g t r
+Tarragon
+10
+
+Unscramble:  a r a o m t c
+Marcato
+10
+
+Unscramble:  a r a y t u s t
+Statuary
+10
+
+Unscramble:  a r c c o d l h
+Clochard
+10
+
+Unscramble:  a r c e p l
+Placer
+10
+
+Unscramble:  a r c e s m r e
+Screamer
+10
+
+Unscramble:  a r c s i u h t
+Haircuts
+10
+
+Unscramble:  a r c s t u h i
+Haircuts
+10
+
+Unscramble:  a r d e b
+Bread
+10
+
+Unscramble:  a r d o c h
+Chador
+10
+
+Unscramble:  a r e d m i m
+Mermaid
+10
+
+Unscramble:  a r e e b v s e
+Bereaves
+10
+
+Unscramble:  a r e f f c h
+Chaffer
+10
+
+Unscramble:  a r e l t y i r
+Literary
+10
+
+Unscramble:  a r e m n t a h w e
+Weatherman
+10
+
+Unscramble:  a r e n p i s t
+Pertains
+10
+
+Unscramble:  a r e r l p e
+Pearler
+10
+
+Unscramble:  a r e s n n s c
+Scanners
+10
+
+Unscramble:  a r e s n t c h
+Chanters
+10
+
+Unscramble:  a r e s r n l e
+Learners
+10
+
+Unscramble:  a r e s t t b
+Tabrets
+10
+
+Unscramble:  a r e t h w e
+Weather
+10
+
+Unscramble:  a r e v n i g
+Vinegar
+10
+
+Unscramble:  a r f e t
+After
+10
+
+Unscramble:  a r g p i s d n e
+Spreading
+10
+
+Unscramble:  a r h k o m r
+Markhor
+10
+
+Unscramble:  a r i d a r s w
+Airwards
+10
+
+Unscramble:  a r i d i c p e t
+Patricide
+10
+
+Unscramble:  a r i g n b r
+Barring
+10
+
+Unscramble:  a r i k e t c
+Tackier
+10
+
+Unscramble:  a r i l d g m a
+Madrigal
+10
+
+Unscramble:  a r i n r g l a
+Larrigan
+10
+
+Unscramble:  a r i s e f e
+Faeries
+10
+
+Unscramble:  a r k o e
+Korea
+10
+
+Unscramble:  a r l b e b b
+Babbler
+10
+
+Unscramble:  a r l b e d b
+Dabbler
+10
+
+Unscramble:  a r l e v e
+Vealer
+10
+
+Unscramble:  a r l n c u e
+Nuclear
+10
+
+Unscramble:  a r l s a t t w
+Stalwart
+10
+
+Unscramble:  a r o c d n y m
+Dormancy
+10
+
+Unscramble:  a r o d u c n
+Candour
+10
+
+Unscramble:  a r o s m r t
+Mortars
+10
+
+Unscramble:  a r o s w y r
+Yarrows
+10
+
+Unscramble:  a r o t f n m
+Formant
+10
+
+Unscramble:  a r s y i
+Syria
+10
+
+Unscramble:  a r t e g
+Great
+10
+
+Unscramble:  a r t m r y o u
+Mortuary
+10
+
+Unscramble:  a r u j g s u l
+Jugulars
+10
+
+Unscramble:  a r u l b o l
+Lobular
+10
+
+Unscramble:  a r u r g e l
+Regular
+10
+
+Unscramble:  a s a b h a m
+Bahamas
+10
+
+Unscramble:  a s a d d r t
+Dastard
+10
+
+Unscramble:  a s a k c r n
+Ransack
+10
+
+Unscramble:  a s a y n b n
+Banyans
+10
+
+Unscramble:  a s d i e h l
+Halides
+10
+
+Unscramble:  a s d m a
+Adams
+10
+
+Unscramble:  a s e d r c r
+Carders
+10
+
+Unscramble:  a s e e s u d n
+Danseuse
+10
+
+Unscramble:  a s e h r g t
+Gathers
+10
+
+Unscramble:  a s e l r l d
+Ladlers
+10
+
+Unscramble:  a s e l y b r
+Barleys
+10
+
+Unscramble:  a s e n c f r
+Frances
+10
+
+Unscramble:  a s e n r t n
+Tanners
+10
+
+Unscramble:  a s e n t g n
+Gannets
+10
+
+Unscramble:  a s e p r r p
+Rappers
+10
+
+Unscramble:  a s e s r l e
+Reseals
+10
+
+Unscramble:  a s e s r p s
+Passers
+10
+
+Unscramble:  a s e t d i b e
+Beadiest
+10
+
+Unscramble:  a s e t g l t
+Gestalt
+10
+
+Unscramble:  a s e t r n t
+Natters
+10
+
+Unscramble:  a s e t r r t
+Restart
+10
+
+Unscramble:  a s e u y m g
+Magueys
+10
+
+Unscramble:  a s g a e d m
+Damages
+10
+
+Unscramble:  a s h a a t i
+Taiahas
+10
+
+Unscramble:  a s h t r e h s
+Harshest
+10
+
+Unscramble:  a s i d d n s b
+Disbands
+10
+
+Unscramble:  a s i e m m d n
+Misnamed
+10
+
+Unscramble:  a s i h k f w e
+Weakfish
+10
+
+Unscramble:  a s i h l m q u
+Qualmish
+10
+
+Unscramble:  a s i l e b i
+Bailies
+10
+
+Unscramble:  a s i l f l y c
+Fiscally
+10
+
+Unscramble:  a s i m r f d w
+Dwarfism
+10
+
+Unscramble:  a s l p e d p
+Dapples
+10
+
+Unscramble:  a s l s y e p i
+Paisleys
+10
+
+Unscramble:  a s n a t s v
+Savants
+10
+
+Unscramble:  a s n e t p r
+Parents
+10
+
+Unscramble:  a s n e u v d h
+Unshaved
+10
+
+Unscramble:  a s n i g m k
+Makings
+10
+
+Unscramble:  a s n k t h
+Thanks
+10
+
+Unscramble:  a s n s a t z
+Stanzas
+10
+
+Unscramble:  a s o d e m r n
+Ransomed
+10
+
+Unscramble:  a s o h m f t
+Fathoms
+10
+
+Unscramble:  a s o s n r m
+Ramsons
+10
+
+Unscramble:  a s o s s o b n
+Bassoons
+10
+
+Unscramble:  a s p t u r s t
+Upstarts
+10
+
+Unscramble:  a s r s e c h
+Chasers
+10
+
+Unscramble:  a s t d e w i
+Waisted
+10
+
+Unscramble:  a s t n u p e
+Peanuts
+10
+
+Unscramble:  a s u a i p m l r
+Marsupial
+10
+
+Unscramble:  a s u d b r t
+Bustard
+10
+
+Unscramble:  a s u m i p u m r
+Marsupium
+10
+
+Unscramble:  a s u t e b t
+Battues
+10
+
+Unscramble:  a t a a t c n
+Cantata
+10
+
+Unscramble:  a t a e g w s
+Wastage
+10
+
+Unscramble:  a t a l r b y e
+Rateably
+10
+
+Unscramble:  a t a o d r i g l
+Gladiator
+10
+
+Unscramble:  a t a s g i w l
+Wagtails
+10
+
+Unscramble:  a t a t e n c s s
+Castanets
+10
+
+Unscramble:  a t b k c a f s
+Fastback
+10
+
+Unscramble:  a t c e r r a c h
+Character
+10
+
+Unscramble:  a t c l e d i
+Dialect
+10
+
+Unscramble:  a t d b l e a p
+Baldpate
+10
+
+Unscramble:  a t d r g a o l i
+Gladiator
+10
+
+Unscramble:  a t d w l s i c
+Wildcats
+10
+
+Unscramble:  a t e c s e a m
+Casemate
+10
+
+Unscramble:  a t e g n d r
+Dragnet
+10
+
+Unscramble:  a t e i s g m
+Gamiest
+10
+
+Unscramble:  a t e l b e i r
+Liberate
+10
+
+Unscramble:  a t e l l l y h
+Lethally
+10
+
+Unscramble:  a t e r h
+Heart
+10
+
+Unscramble:  a t e r t n f e
+Fattener
+10
+
+Unscramble:  a t e s d s h e
+Headsets
+10
+
+Unscramble:  a t e s n h s
+Hastens
+10
+
+Unscramble:  a t e s t l f l
+Flatlets
+10
+
+Unscramble:  a t e s u o l c
+Lacteous
+10
+
+Unscramble:  a t e u s v g
+Vaguest
+10
+
+Unscramble:  a t h l c e i g
+Lichgate
+10
+
+Unscramble:  a t h r e f r
+Farther
+10
+
+Unscramble:  a t h s u c n
+Canthus
+10
+
+Unscramble:  a t i e s t s u
+Situates
+10
+
+Unscramble:  a t i l t b e h
+Tithable
+10
+
+Unscramble:  a t i m s b p
+Baptism
+10
+
+Unscramble:  a t i n v e a g
+Navigate
+10
+
+Unscramble:  a t i r o p t
+Patriot
+10
+
+Unscramble:  a t i s e m p s
+Pastimes
+10
+
+Unscramble:  a t i s l a p r
+Partials
+10
+
+Unscramble:  a t i s t n b g
+Battings
+10
+
+Unscramble:  a t i t t e b s
+Battiest
+10
+
+Unscramble:  a t i t t e t s
+Tattiest
+10
+
+Unscramble:  a t i y s t c h
+Chastity
+10
+
+Unscramble:  a t l g n i b t
+Battling
+10
+
+Unscramble:  a t l s t e t r
+Tartlets
+10
+
+Unscramble:  a t l s t e t r
+Tattlers
+10
+
+Unscramble:  a t l t l e o g
+Tollgate
+10
+
+Unscramble:  a t n e p l
+Planet
+10
+
+Unscramble:  a t n n m e t p e r
+Entrapment
+10
+
+Unscramble:  a t n s l a s e
+Sealants
+10
+
+Unscramble:  a t o b u
+About
+10
+
+Unscramble:  a t o d s e e l
+Desolate
+10
+
+Unscramble:  a t o s r a t m
+Stromata
+10
+
+Unscramble:  a t p o t n m i e s t
+Temptations
+10
+
+Unscramble:  a t p s d a r e
+Readapts
+10
+
+Unscramble:  a t r s e i p s
+Pastries
+10
+
+Unscramble:  a t s e o e c t
+Ecostate
+10
+
+Unscramble:  a t s h r o w e m r
+Earthworms
+10
+
+Unscramble:  a t t f a e l m
+Flatmate
+10
+
+Unscramble:  a t t o r e a m
+Amaretto
+10
+
+Unscramble:  a t u a n e n l
+Annulate
+10
+
+Unscramble:  a t u d o n l
+Outland
+10
+
+Unscramble:  a t u d o n s l
+Outlands
+10
+
+Unscramble:  a t u d o r w
+Outward
+10
+
+Unscramble:  a t u s e r w f
+Waftures
+10
+
+Unscramble:  a t w d s a e r
+Eastward
+10
+
+Unscramble:  a t y e c h t r
+Trachyte
+10
+
+Unscramble:  a t z r e w l
+Waltzer
+10
+
+Unscramble:  a u l e c a m t
+Maculate
+10
+
+Unscramble:  a u n t n o e
+Tonneau
+10
+
+Unscramble:  a u o e c g r
+Courage
+10
+
+Unscramble:  a u o m r t k h
+Khartoum
+10
+
+Unscramble:  a u r n s t
+Saturn
+10
+
+Unscramble:  a u r y t e m l
+Maturely
+10
+
+Unscramble:  a u s r l t b e
+Baluster
+10
+
+Unscramble:  a v a e l b s l
+Salvable
+10
+
+Unscramble:  a v a s l g s e
+Salvages
+10
+
+Unscramble:  a v e e r l d e
+Revealed
+10
+
+Unscramble:  a v o l m b e e
+Moveable
+10
+
+Unscramble:  a w i e r h y
+Haywire
+10
+
+Unscramble:  a w t e s
+Sweat
+10
+
+Unscramble:  a y a d r t c i
+Caryatid
+10
+
+Unscramble:  a y a k p c b
+Payback
+10
+
+Unscramble:  a y c u s l m b
+Scybalum
+10
+
+Unscramble:  a y d h a e w
+Headway
+10
+
+Unscramble:  a y e s k d p
+Keypads
+10
+
+Unscramble:  a y e t r m s
+Mastery
+10
+
+Unscramble:  a y e u l v g
+Vaguely
+10
+
+Unscramble:  a y f t i b e
+Beatify
+10
+
+Unscramble:  a y g g s h
+Shaggy
+10
+
+Unscramble:  a y i h l o d
+Holiday
+10
+
+Unscramble:  a y l e f p r p
+Flypaper
+10
+
+Unscramble:  a y l h l s a w
+Hallways
+10
+
+Unscramble:  a y l r i c h
+Charily
+10
+
+Unscramble:  a y r l n e
+Nearly
+10
+
+Unscramble:  a y r v e s l
+Slavery
+10
+
+Unscramble:  a y t i l t c
+Tacitly
+10
+
+Unscramble:  a y t l i r e
+Reality
+10
+
+Unscramble:  a y t l i
+Italy
+10
+
+Unscramble:  b a d d e a r
+Abraded
+10
+
+Unscramble:  b a i e r s i
+Siberia
+10
+
+Unscramble:  b a l r c e s b
+Clabbers
+10
+
+Unscramble:  b a o r c
+Cobra
+10
+
+Unscramble:  b a r u m
+Burma
+10
+
+Unscramble:  b c i c k a k k
+Kickback
+10
+
+Unscramble:  b d a r l i d y
+Ladybird
+10
+
+Unscramble:  b d e r a
+Bread
+10
+
+Unscramble:  b d r a e
+Bread
+10
+
+Unscramble:  b e a l d
+Blade
+10
+
+Unscramble:  b e c d r a e m
+Embraced
+10
+
+Unscramble:  b e i c s a s
+Abscise
+10
+
+Unscramble:  b e i r b l w o
+Wobblier
+10
+
+Unscramble:  b e i r d
+Bride
+10
+
+Unscramble:  b e i s o d n o
+Nobodies
+10
+
+Unscramble:  b e l s i c c u
+Cubicles
+10
+
+Unscramble:  b e l z a
+Blaze
+10
+
+Unscramble:  b e n d s t a e
+Absented
+10
+
+Unscramble:  b e o e t d n m
+Entombed
+10
+
+Unscramble:  b e r s e s o v
+Obverses
+10
+
+Unscramble:  b e r s f a e e
+Freebase
+10
+
+Unscramble:  b e s d e s o s
+Obsessed
+10
+
+Unscramble:  b e t d o l u n
+Unbolted
+10
+
+Unscramble:  b e t u t
+Butte
+10
+
+Unscramble:  b e u s r d c b
+Scrubbed
+10
+
+Unscramble:  b g n b i f o
+Fobbing
+10
+
+Unscramble:  b g n b i m o
+Mobbing
+10
+
+Unscramble:  b g r n i
+Bring
+10
+
+Unscramble:  b h e c e
+Beech
+10
+
+Unscramble:  b h r i t
+Birth
+10
+
+Unscramble:  b h r s u
+Brush
+10
+
+Unscramble:  b i a u m e z q o m
+Mozambique
+10
+
+Unscramble:  b i a w r o s n
+Rainbows
+10
+
+Unscramble:  b i c t d a a n
+Abdicant
+10
+
+Unscramble:  b i d e o r
+Boride
+10
+
+Unscramble:  b i e t a r e d o t l
+Obliterated
+10
+
+Unscramble:  b i n g u y
+Buying
+10
+
+Unscramble:  b i r e g l s b
+Gribbles
+10
+
+Unscramble:  b i s s r o f i
+Fibrosis
+10
+
+Unscramble:  b j u s j e u
+Jujubes
+10
+
+Unscramble:  b l b p o y r a
+Probably
+10
+
+Unscramble:  b l c p c e e a
+Peccable
+10
+
+Unscramble:  b l g e i e l i
+Eligible
+10
+
+Unscramble:  b l i i v e n a
+Inviable
+10
+
+Unscramble:  b l i s e s o k
+Obelisks
+10
+
+Unscramble:  b l i v r y a a
+Variably
+10
+
+Unscramble:  b l s e a e r a
+Erasable
+10
+
+Unscramble:  b l t s r e o a
+Sortable
+10
+
+Unscramble:  b l t t s e a a
+Tastable
+10
+
+Unscramble:  b n a a h r c i e l m
+Chamberlain
+10
+
+Unscramble:  b n a s d e s u
+Subdeans
+10
+
+Unscramble:  b n c a o
+Bacon
+10
+
+Unscramble:  b n d t n a a u
+Abundant
+10
+
+Unscramble:  b n e t c i e o
+Cenobite
+10
+
+Unscramble:  b n i o s
+Bison
+10
+
+Unscramble:  b n r w o
+Brown
+10
+
+Unscramble:  b o h a s o t w
+Showboat
+10
+
+Unscramble:  b o l e t u o v
+Obvolute
+10
+
+Unscramble:  b o l r e v a s
+Absolver
+10
+
+Unscramble:  b o l r s e s b
+Slobbers
+10
+
+Unscramble:  b o o n w i e d
+Woodbine
+10
+
+Unscramble:  b o o r t a s l
+Toolbars
+10
+
+Unscramble:  b o o t f a h t
+Footbath
+10
+
+Unscramble:  b o r e e f
+Before
+10
+
+Unscramble:  b o r r e b a s
+Absorber
+10
+
+Unscramble:  b o r r h r a e
+Abhorrer
+10
+
+Unscramble:  b o t c i a i
+Abiotic
+10
+
+Unscramble:  b r b e r u
+Rubber
+10
+
+Unscramble:  b r n s e e o
+Enrobes
+10
+
+Unscramble:  b r o m i f c u
+Cubiform
+10
+
+Unscramble:  b r o m i f t u
+Tubiform
+10
+
+Unscramble:  b r o u l a
+Labour
+10
+
+Unscramble:  b r r a i
+Briar
+10
+
+Unscramble:  b r t n o i a o
+Abortion
+10
+
+Unscramble:  b r u d t d o e
+Obtruded
+10
+
+Unscramble:  b s a e n
+Beans
+10
+
+Unscramble:  b s i d r
+Birds
+10
+
+Unscramble:  b s i e r a
+Rabies
+10
+
+Unscramble:  b s i m a n u r
+Urbanism
+10
+
+Unscramble:  b s i n w o e h
+Wishbone
+10
+
+Unscramble:  b s l u b
+Bulbs
+10
+
+Unscramble:  b s o e n
+Bones
+10
+
+Unscramble:  b s o e x
+Boxes
+10
+
+Unscramble:  b s r c e h u
+Cherubs
+10
+
+Unscramble:  b s u l e
+Blues
+10
+
+Unscramble:  b s u l l
+Bulls
+10
+
+Unscramble:  b t a e e t h e
+Hebetate
+10
+
+Unscramble:  b t a e u l t u
+Tubulate
+10
+
+Unscramble:  b t a s d a e a
+Database
+10
+
+Unscramble:  b t c s d u s u
+Subducts
+10
+
+Unscramble:  b t e r e t
+Better
+10
+
+Unscramble:  b t e r u t
+Butter
+10
+
+Unscramble:  b t i e a n u r
+Urbanite
+10
+
+Unscramble:  b t i n u l a o
+Abutilon
+10
+
+Unscramble:  b t o n o s
+Boston
+10
+
+Unscramble:  b t r t s a a c
+Abstract
+10
+
+Unscramble:  b t s e a l a
+Astable
+10
+
+Unscramble:  b u r y l d a s
+Absurdly
+10
+
+Unscramble:  b v o e m l a
+Movable
+10
+
+Unscramble:  b v o e m l s a
+Movables
+10
+
+Unscramble:  b y a e s l a
+Sayable
+10
+
+Unscramble:  b y a m l
+Balmy
+10
+
+Unscramble:  b y e t t
+Betty
+10
+
+Unscramble:  b z i l r a
+Brazil
+10
+
+Unscramble:  bipsleruh
+Publisher
+10
+
+Unscramble:  c a a d c i
+Cicada
+10
+
+Unscramble:  c a e n d
+Dance
+10
+
+Unscramble:  c a g n h i m i
+Michigan
+10
+
+Unscramble:  c a h a c o l r
+Charcoal
+10
+
+Unscramble:  c a h e t h s t
+Thatches
+10
+
+Unscramble:  c a h n c i g n
+Chancing
+10
+
+Unscramble:  c a i h l l e a
+Heliacal
+10
+
+Unscramble:  c a l m g o a u
+Glaucoma
+10
+
+Unscramble:  c a n f r l o i
+Fornical
+10
+
+Unscramble:  c a n l c i v a
+Vaccinal
+10
+
+Unscramble:  c a o g n
+Conga
+10
+
+Unscramble:  c a r a e m i
+America
+10
+
+Unscramble:  c a t e s h s r
+Starches
+10
+
+Unscramble:  c a t r s l u i
+Rustical
+10
+
+Unscramble:  c b b d e l s a
+Scabbled
+10
+
+Unscramble:  c c a m b o b k
+Backcomb
+10
+
+Unscramble:  c c e e r l d y
+Recycled
+10
+
+Unscramble:  c c e e r l y
+Recycle
+10
+
+Unscramble:  c c i i f p a
+Pacific
+10
+
+Unscramble:  c d a l r a i
+Radical
+10
+
+Unscramble:  c d b n a e t u
+Abducent
+10
+
+Unscramble:  c d d s a e u
+Adduces
+10
+
+Unscramble:  c d e i t u n
+Uncited
+10
+
+Unscramble:  c d e l p e s i
+Pedicels
+10
+
+Unscramble:  c d h t e s y
+Scythed
+10
+
+Unscramble:  c d i i d t c a
+Didactic
+10
+
+Unscramble:  c d n r e a p o
+Endocarp
+10
+
+Unscramble:  c d n s i t u
+Inducts
+10
+
+Unscramble:  c d o l u
+Could
+10
+
+Unscramble:  c d o r w
+Crowd
+10
+
+Unscramble:  c d r s h a o r
+Orchards
+10
+
+Unscramble:  c d u o l
+Could
+10
+
+Unscramble:  c d u t p i y i
+Pudicity
+10
+
+Unscramble:  c e a b l d a n
+Balanced
+10
+
+Unscramble:  c e a e h s n n
+Enhances
+10
+
+Unscramble:  c e a l v
+Clave
+10
+
+Unscramble:  c e a m s r
+Scream
+10
+
+Unscramble:  c e d d l u i n
+Included
+10
+
+Unscramble:  c e h l i
+Chile
+10
+
+Unscramble:  c e i d h s e s
+Dehisces
+10
+
+Unscramble:  c e i h l
+Chile
+10
+
+Unscramble:  c e l e b h s n
+Blenches
+10
+
+Unscramble:  c e l s e l m i
+Micelles
+10
+
+Unscramble:  c e m n a i g r
+Amercing
+10
+
+Unscramble:  c e n e c s i
+Science
+10
+
+Unscramble:  c e n o r s i r h o
+Rhinoceros
+10
+
+Unscramble:  c e n s l o c y
+Cyclones
+10
+
+Unscramble:  c e o e f n r
+Enforce
+10
+
+Unscramble:  c e o o c i n r
+Coercion
+10
+
+Unscramble:  c e o u v s n i
+Unvoices
+10
+
+Unscramble:  c e p d a r e s
+Escarped
+10
+
+Unscramble:  c e r a a s v i
+Avarices
+10
+
+Unscramble:  c e r e p h r a
+Preacher
+10
+
+Unscramble:  c e r e t l a
+Treacle
+10
+
+Unscramble:  c e r e w h s t
+Wretches
+10
+
+Unscramble:  c e r s h z s o
+Scherzos
+10
+
+Unscramble:  c e r s l o s u
+Sclerous
+10
+
+Unscramble:  c e r t o s h a
+Thoraces
+10
+
+Unscramble:  c e r u g l a r u t i
+Agriculture
+10
+
+Unscramble:  c e r u v
+Curve
+10
+
+Unscramble:  c e s d e n l i
+Licensed
+10
+
+Unscramble:  c e s d u r a c
+Accursed
+10
+
+Unscramble:  c e t p k s l o
+Lockstep
+10
+
+Unscramble:  c e t v r s e i
+Vertices
+10
+
+Unscramble:  c e u s a q m a
+Macaques
+10
+
+Unscramble:  c e v d e i d e
+Deceived
+10
+
+Unscramble:  c e v s l a e x
+Exclaves
+10
+
+Unscramble:  c g n k i t i
+Ticking
+10
+
+Unscramble:  c g n u a e l a r r t
+Rectangular
+10
+
+Unscramble:  c h a c n e y n
+Cynanche
+10
+
+Unscramble:  c h a o c
+Coach
+10
+
+Unscramble:  c h i s u q n
+Squinch
+10
+
+Unscramble:  c h o c u
+Couch
+10
+
+Unscramble:  c i a r r a d l
+Railcard
+10
+
+Unscramble:  c i e e p
+Piece
+10
+
+Unscramble:  c i i h l
+Chili
+10
+
+Unscramble:  c i r p e n
+Prince
+10
+
+Unscramble:  c i r t t d e a
+Tetracid
+10
+
+Unscramble:  c i s e e r
+Cerise
+10
+
+Unscramble:  c i y p l d o a
+Polyacid
+10
+
+Unscramble:  c k b p y a a
+Payback
+10
+
+Unscramble:  c k l p d a o
+Padlock
+10
+
+Unscramble:  c k n o h i p a
+Pachinko
+10
+
+Unscramble:  c k o n o s h
+Schnook
+10
+
+Unscramble:  c k s w e s a u
+Waesucks
+10
+
+Unscramble:  c k t b t u o
+Buttock
+10
+
+Unscramble:  c l a d n i e
+Iceland
+10
+
+Unscramble:  c l a e c l s y
+Calycles
+10
+
+Unscramble:  c l a r o l
+Collar
+10
+
+Unscramble:  c l d g n i s a
+Scalding
+10
+
+Unscramble:  c l d y u n j o
+Jocundly
+10
+
+Unscramble:  c l e a p
+Place
+10
+
+Unscramble:  c l e s t a t e
+Telecast
+10
+
+Unscramble:  c l i d s i e i
+Silicide
+10
+
+Unscramble:  c l i l k f b a
+Backfill
+10
+
+Unscramble:  c l o p e i
+Police
+10
+
+Unscramble:  c l p e o u d e
+Decouple
+10
+
+Unscramble:  c l p t u s s i
+Sculpsit
+10
+
+Unscramble:  c l r c r e u i
+Curricle
+10
+
+Unscramble:  c l r m a t p o e a a
+Paracetamol
+10
+
+Unscramble:  c m a x l i
+Climax
+10
+
+Unscramble:  c m e r a
+Cream
+10
+
+Unscramble:  c m o y o t o n
+Oncotomy
+10
+
+Unscramble:  c n a t i t i n
+Incitant
+10
+
+Unscramble:  c n e n m i g a
+Menacing
+10
+
+Unscramble:  c n e t e d d e
+Decedent
+10
+
+Unscramble:  c n e t i d i n
+Incident
+10
+
+Unscramble:  c n i c i t a o
+Aconitic
+10
+
+Unscramble:  c n i g a s e n
+Encasing
+10
+
+Unscramble:  c n i g i d e x
+Exciding
+10
+
+Unscramble:  c n i g k l c o
+Cockling
+10
+
+Unscramble:  c n o c i m e o
+Economic
+10
+
+Unscramble:  c n o s h o s k
+Schnooks
+10
+
+Unscramble:  c o h u p
+Pouch
+10
+
+Unscramble:  c o l e b h s t
+Blotches
+10
+
+Unscramble:  c o n o g
+Congo
+10
+
+Unscramble:  c o r o t d s a
+Ostracod
+10
+
+Unscramble:  c p e h a
+Cheap
+10
+
+Unscramble:  c p e r e
+Creep
+10
+
+Unscramble:  c p t d e r s e
+Sceptred
+10
+
+Unscramble:  c r a l e n u
+Nuclear
+10
+
+Unscramble:  c r a r c a a a
+Caracara
+10
+
+Unscramble:  c r d i e
+Cider
+10
+
+Unscramble:  c r e a d
+Cedar
+10
+
+Unscramble:  c r e s r s o
+Scorers
+10
+
+Unscramble:  c r i l d t y e
+Directly
+10
+
+Unscramble:  c r i t a e s s
+Scariest
+10
+
+Unscramble:  c r l a e
+Clear
+10
+
+Unscramble:  c r o e p h s
+Porsche
+10
+
+Unscramble:  c r o t a m a h
+Achromat
+10
+
+Unscramble:  c r p g a i s n
+Scarping
+10
+
+Unscramble:  c r p n o i s s o
+Scorpions
+10
+
+Unscramble:  c r t o d o
+Doctor
+10
+
+Unscramble:  c r t s h a
+Charts
+10
+
+Unscramble:  c s a h o
+Chaos
+10
+
+Unscramble:  c s e l r s a
+Scalers
+10
+
+Unscramble:  c s e r s a t
+Actress
+10
+
+Unscramble:  c s e t k r b a
+Backrest
+10
+
+Unscramble:  c s h s e
+Chess
+10
+
+Unscramble:  c s i e a l l o
+Localise
+10
+
+Unscramble:  c s i m a l v o
+Vocalism
+10
+
+Unscramble:  c s k i a w s r c e
+Wisecracks
+10
+
+Unscramble:  c s l b u
+Clubs
+10
+
+Unscramble:  c s l e l
+Cells
+10
+
+Unscramble:  c s l o l s r
+Scrolls
+10
+
+Unscramble:  c s m e u l y
+Lyceums
+10
+
+Unscramble:  c s m i p s r
+Scrimps
+10
+
+Unscramble:  c s n k e d i
+Dickens
+10
+
+Unscramble:  c s n r o m a
+Macrons
+10
+
+Unscramble:  c s n s i t e
+Insects
+10
+
+Unscramble:  c s r h e a r
+Archers
+10
+
+Unscramble:  c s r t o s e
+Sectors
+10
+
+Unscramble:  c s t e p i n
+Incepts
+10
+
+Unscramble:  c s t m s a i
+Mastics
+10
+
+Unscramble:  c t a e a v e x
+Excavate
+10
+
+Unscramble:  c t a s e t a e
+Acetates
+10
+
+Unscramble:  c t a s l a e
+Acetals
+10
+
+Unscramble:  c t h g a i s n
+Scathing
+10
+
+Unscramble:  c t i y i n v i
+Vicinity
+10
+
+Unscramble:  c t i y u r s e
+Security
+10
+
+Unscramble:  c t l n g s e e
+Neglects
+10
+
+Unscramble:  c t p e i r e
+Receipt
+10
+
+Unscramble:  c t r e t x a
+Extract
+10
+
+Unscramble:  c t t e a k d a
+Attacked
+10
+
+Unscramble:  c t t r p o o r e
+Protector
+10
+
+Unscramble:  c t u e h l a r
+Archlute
+10
+
+Unscramble:  c t u o n c o
+Coconut
+10
+
+Unscramble:  c t u o n
+Count
+10
+
+Unscramble:  c t y s e p e o
+Ecotypes
+10
+
+Unscramble:  c u b s c u s u
+Succubus
+10
+
+Unscramble:  c u b s r o m i
+Microbus
+10
+
+Unscramble:  c u l d e t o c
+Occulted
+10
+
+Unscramble:  c u o s r e n a
+Nacreous
+10
+
+Unscramble:  c u p d e i o c
+Occupied
+10
+
+Unscramble:  c u p d e l o t
+Octupled
+10
+
+Unscramble:  c u s d e a c
+Accused
+10
+
+Unscramble:  c v d t a a e o
+Advocate
+10
+
+Unscramble:  c v i e a t v o
+Vocative
+10
+
+Unscramble:  c x o n t a t i
+Toxicant
+10
+
+Unscramble:  c y a k w
+Wacky
+10
+
+Unscramble:  c y c e n r e
+Recency
+10
+
+Unscramble:  c y f u f s r
+Scruffy
+10
+
+Unscramble:  c y o k r
+Rocky
+10
+
+Unscramble:  d a a n p
+Panda
+10
+
+Unscramble:  d a c u s i m n
+Scandium
+10
+
+Unscramble:  d a e t l
+Delta
+10
+
+Unscramble:  d a g o m
+Dogma
+10
+
+Unscramble:  d a h e r
+Heard
+10
+
+Unscramble:  d a m t r e
+Dreamt
+10
+
+Unscramble:  d a m y d o r r e
+Dromedary
+10
+
+Unscramble:  d a n d e c a v
+Advanced
+10
+
+Unscramble:  d a n i i
+India
+10
+
+Unscramble:  d a r m g a s n
+Grandams
+10
+
+Unscramble:  d a s r y
+Yards
+10
+
+Unscramble:  d a u n g a t r
+Guardant
+10
+
+Unscramble:  d a y n s
+Sandy
+10
+
+Unscramble:  d c a e l b e u
+Educable
+10
+
+Unscramble:  d c e a d u l i
+Decidual
+10
+
+Unscramble:  d c e d d e i
+Decided
+10
+
+Unscramble:  d c n d e e o
+Encoded
+10
+
+Unscramble:  d d a y j l e
+Jadedly
+10
+
+Unscramble:  d d n e e
+Ended
+10
+
+Unscramble:  d d n s o u r e
+Redounds
+10
+
+Unscramble:  d d r u e a j
+Adjured
+10
+
+Unscramble:  d d s a n y e w e
+Wednesday
+10
+
+Unscramble:  d e a r k
+Drake
+10
+
+Unscramble:  d e e c l r a n
+Calender
+10
+
+Unscramble:  d e h c w s o i
+Cowhides
+10
+
+Unscramble:  d e i d i f c o
+Codified
+10
+
+Unscramble:  d e i n y i g l
+Yielding
+10
+
+Unscramble:  d e i r i f m o
+Modifier
+10
+
+Unscramble:  d e l t e r u n
+Underlet
+10
+
+Unscramble:  d e n d a i o r
+Ordained
+10
+
+Unscramble:  d e n u a s r i
+Uranides
+10
+
+Unscramble:  d e p d s e e
+Speeded
+10
+
+Unscramble:  d e p n s i g e
+Speeding
+10
+
+Unscramble:  d e r d v t a e
+Adverted
+10
+
+Unscramble:  d e r i t s n u
+Intrudes
+10
+
+Unscramble:  d e s a h
+Heads
+10
+
+Unscramble:  d e s c u r a
+Crusade
+10
+
+Unscramble:  d e s c u s r a
+Crusades
+10
+
+Unscramble:  d e s e d
+Deeds
+10
+
+Unscramble:  d e s p s s a a
+Passades
+10
+
+Unscramble:  d e s s a s e i
+Seasides
+10
+
+Unscramble:  d e t d e b i n
+Indebted
+10
+
+Unscramble:  d e t s i a m e
+Mediates
+10
+
+Unscramble:  d e v p r d e a
+Pervaded
+10
+
+Unscramble:  d e w n e t r u n
+Underwent
+10
+
+Unscramble:  d f y g i i e n
+Edifying
+10
+
+Unscramble:  d g e r a g
+Dagger
+10
+
+Unscramble:  d g i n j a
+Jading
+10
+
+Unscramble:  d g n s g i l o
+Lodgings
+10
+
+Unscramble:  d h a e t
+Death
+10
+
+Unscramble:  d i b l n
+Blind
+10
+
+Unscramble:  d i c e c s o l r o
+Crocodiles
+10
+
+Unscramble:  d i l e e r u n
+Underlie
+10
+
+Unscramble:  d i p n e r u n
+Underpin
+10
+
+Unscramble:  d i r e b l d n
+Brindled
+10
+
+Unscramble:  d i r g m i a n
+Admiring
+10
+
+Unscramble:  d i s n w
+Winds
+10
+
+Unscramble:  d k a s e
+Asked
+10
+
+Unscramble:  d k w l a e
+Walked
+10
+
+Unscramble:  d l c d u y e e
+Deucedly
+10
+
+Unscramble:  d l c l a e
+Called
+10
+
+Unscramble:  d l e r d e u
+Deluder
+10
+
+Unscramble:  d l e s h e k p
+Helpdesk
+10
+
+Unscramble:  d l e y c
+Clyde
+10
+
+Unscramble:  d l i e o c i n
+Indocile
+10
+
+Unscramble:  d l z a a y m e
+Amazedly
+10
+
+Unscramble:  d m m e s r u m i
+Midsummer
+10
+
+Unscramble:  d m r w o b u
+Budworm
+10
+
+Unscramble:  d n a c a a
+Canada
+10
+
+Unscramble:  d n a d e l t i
+Tideland
+10
+
+Unscramble:  d n d e h i
+Hidden
+10
+
+Unscramble:  d n e d d e u
+Denuded
+10
+
+Unscramble:  d n e o m a b
+Abdomen
+10
+
+Unscramble:  d n i g u c s e
+Seducing
+10
+
+Unscramble:  d n z o e
+Dozen
+10
+
+Unscramble:  d o l b e n
+Blonde
+10
+
+Unscramble:  d o l s b e t n
+Blondest
+10
+
+Unscramble:  d o m e c s m r o o
+Commodores
+10
+
+Unscramble:  d o o s c e n
+Secondo
+10
+
+Unscramble:  d o r w o m h e
+Whoredom
+10
+
+Unscramble:  d o s o h e
+Shooed
+10
+
+Unscramble:  d o t r u c i n
+Inductor
+10
+
+Unscramble:  d p x t e i e e
+Expedite
+10
+
+Unscramble:  d r a h r a g e f t n
+Grandfather
+10
+
+Unscramble:  d r a w z y i r
+Wizardry
+10
+
+Unscramble:  d r e i p
+Pride
+10
+
+Unscramble:  d r n i e
+Diner
+10
+
+Unscramble:  d r o s b e i
+Borides
+10
+
+Unscramble:  d r o y w a k
+Workday
+10
+
+Unscramble:  d s a t r
+Darts
+10
+
+Unscramble:  d s a u w p r
+Upwards
+10
+
+Unscramble:  d s e b e i
+Beside
+10
+
+Unscramble:  d s e c l a n
+Calends
+10
+
+Unscramble:  d s e d l g u
+Guddles
+10
+
+Unscramble:  d s e i s i o
+Iodises
+10
+
+Unscramble:  d s e r m e m o
+Mesoderm
+10
+
+Unscramble:  d s l o l
+Dolls
+10
+
+Unscramble:  d s o g d a i
+Gadoids
+10
+
+Unscramble:  d s o r o
+Doors
+10
+
+Unscramble:  d s o s c e n
+Seconds
+10
+
+Unscramble:  d s p c a m a
+Madcaps
+10
+
+Unscramble:  d s s r e a d
+Address
+10
+
+Unscramble:  d s t u c d e
+Deducts
+10
+
+Unscramble:  d s u k c
+Ducks
+10
+
+Unscramble:  d s y l e m e
+Medleys
+10
+
+Unscramble:  d t a e u r i n
+Indurate
+10
+
+Unscramble:  d t e s b e i
+Betides
+10
+
+Unscramble:  d t i r f
+Drift
+10
+
+Unscramble:  d t s a i d a
+Dadaist
+10
+
+Unscramble:  d u a r l e n
+Launder
+10
+
+Unscramble:  d u b o n
+Bound
+10
+
+Unscramble:  d u c r e o a
+Ecuador
+10
+
+Unscramble:  d u o s y m d i
+Didymous
+10
+
+Unscramble:  d u s o h l
+Should
+10
+
+Unscramble:  d u w o l
+Would
+10
+
+Unscramble:  d y a l i
+Daily
+10
+
+Unscramble:  d y a s i
+Daisy
+10
+
+Unscramble:  d y o l l
+Dolly
+10
+
+Unscramble:  e a b s l e r l
+Relabels
+10
+
+Unscramble:  e a c s e m n
+Menaces
+10
+
+Unscramble:  e a c t a r h
+Trachea
+10
+
+Unscramble:  e a c y n i t t
+Tenacity
+10
+
+Unscramble:  e a d k b
+Baked
+10
+
+Unscramble:  e a d t h
+Hated
+10
+
+Unscramble:  e a e b r v
+Beaver
+10
+
+Unscramble:  e a e s w r n
+Weaners
+10
+
+Unscramble:  e a e w r k
+Weaker
+10
+
+Unscramble:  e a f h o t o b
+Hoofbeat
+10
+
+Unscramble:  e a g e r s
+Grease
+10
+
+Unscramble:  e a h s c l p
+Chapels
+10
+
+Unscramble:  e a i l r t i n
+Inertial
+10
+
+Unscramble:  e a i r e n r t
+Retainer
+10
+
+Unscramble:  e a l d v u d e
+Devalued
+10
+
+Unscramble:  e a l e u r v
+Revalue
+10
+
+Unscramble:  e a l r m o p r
+Premolar
+10
+
+Unscramble:  e a l v r
+Ravel
+10
+
+Unscramble:  e a l y d o p t
+Petalody
+10
+
+Unscramble:  e a l y s r v
+Slavery
+10
+
+Unscramble:  e a m d s o s i
+Sesamoid
+10
+
+Unscramble:  e a m e b c
+Became
+10
+
+Unscramble:  e a m e n i m l
+Melamine
+10
+
+Unscramble:  e a m y i r g
+Imagery
+10
+
+Unscramble:  e a n d e t t n
+Tenanted
+10
+
+Unscramble:  e a n e c p n
+Penance
+10
+
+Unscramble:  e a n e t i m l
+Melanite
+10
+
+Unscramble:  e a n e z i t t
+Tetanize
+10
+
+Unscramble:  e a n h e c l o m
+Chameleon
+10
+
+Unscramble:  e a n r e d d m
+Demander
+10
+
+Unscramble:  e a n s p c
+Pecans
+10
+
+Unscramble:  e a p e s c
+Escape
+10
+
+Unscramble:  e a r m o g i d
+Ideogram
+10
+
+Unscramble:  e a r p t
+Taper
+10
+
+Unscramble:  e a r s i p a
+Spiraea
+10
+
+Unscramble:  e a r t b s w
+Brawest
+10
+
+Unscramble:  e a r t w
+Water
+10
+
+Unscramble:  e a s m s k i p
+Misspeak
+10
+
+Unscramble:  e a t c i s m
+Sematic
+10
+
+Unscramble:  e a t e a r
+Aerate
+10
+
+Unscramble:  e a t n o r n g
+Negatron
+10
+
+Unscramble:  e a t s e c r
+Cerates
+10
+
+Unscramble:  e a y g n i d c
+Decaying
+10
+
+Unscramble:  e a y n d e f e
+Fedayeen
+10
+
+Unscramble:  e b b e b m e u l
+Bumblebee
+10
+
+Unscramble:  e b i s g t l
+Giblets
+10
+
+Unscramble:  e b l g n i p b
+Pebbling
+10
+
+Unscramble:  e b l s s e v r
+Verbless
+10
+
+Unscramble:  e b m r a l
+Marble
+10
+
+Unscramble:  e b u s g n g e
+Geebungs
+10
+
+Unscramble:  e b u t s c j
+Subject
+10
+
+Unscramble:  e c a s h r k
+Hackers
+10
+
+Unscramble:  e c e e d n d d s
+Descended
+10
+
+Unscramble:  e c e r s
+Scree
+10
+
+Unscramble:  e c e s t n p r
+Percents
+10
+
+Unscramble:  e c h g n i l e
+Leeching
+10
+
+Unscramble:  e c h s e k t
+Ketches
+10
+
+Unscramble:  e c h s e v t
+Vetches
+10
+
+Unscramble:  e c i a r s t
+Stearic
+10
+
+Unscramble:  e c i c u t l i
+Leucitic
+10
+
+Unscramble:  e c i s l n h
+Lichens
+10
+
+Unscramble:  e c m n e i g e
+Emceeing
+10
+
+Unscramble:  e c r e k e m p a a
+Peacemaker
+10
+
+Unscramble:  e c u h r m o v
+Overmuch
+10
+
+Unscramble:  e d a e r c b h
+Berdache
+10
+
+Unscramble:  e d a g o r n
+Groaned
+10
+
+Unscramble:  e d a p e l d
+Pleaded
+10
+
+Unscramble:  e d a s b r g
+Badgers
+10
+
+Unscramble:  e d a s m s n
+Madness
+10
+
+Unscramble:  e d a u d p t
+Updated
+10
+
+Unscramble:  e d b b b a l
+Babbled
+10
+
+Unscramble:  e d b g r a l
+Garbled
+10
+
+Unscramble:  e d b m r a l
+Marbled
+10
+
+Unscramble:  e d c e e l t
+Elected
+10
+
+Unscramble:  e d c s o m k
+Smocked
+10
+
+Unscramble:  e d c v u o h
+Vouched
+10
+
+Unscramble:  e d d b n u l
+Bundled
+10
+
+Unscramble:  e d e a d p l
+Pleaded
+10
+
+Unscramble:  e d e c t a r
+Catered
+10
+
+Unscramble:  e d e d e r g n
+Gendered
+10
+
+Unscramble:  e d e e s u v n
+Vendeuse
+10
+
+Unscramble:  e d e o d n r d
+Reddendo
+10
+
+Unscramble:  e d e r v e r
+Revered
+10
+
+Unscramble:  e d e t h t e
+Teethed
+10
+
+Unscramble:  e d e v l a t
+Valeted
+10
+
+Unscramble:  e d e w v a r
+Wavered
+10
+
+Unscramble:  e d h t a u h n
+Headhunt
+10
+
+Unscramble:  e d h t e t e
+Teethed
+10
+
+Unscramble:  e d i a r r v
+Arrived
+10
+
+Unscramble:  e d i g n h a
+Heading
+10
+
+Unscramble:  e d k o e d c
+Decoked
+10
+
+Unscramble:  e d m c u l p
+Clumped
+10
+
+Unscramble:  e d n b e l d
+Blended
+10
+
+Unscramble:  e d n b i l k
+Blinked
+10
+
+Unscramble:  e d n c a h g
+Changed
+10
+
+Unscramble:  e d n e t o h a
+Headnote
+10
+
+Unscramble:  e d n l a i c
+Iceland
+10
+
+Unscramble:  e d n l a i r
+Ireland
+10
+
+Unscramble:  e d p a o d c
+Decapod
+10
+
+Unscramble:  e d r b u l r
+Blurred
+10
+
+Unscramble:  e d r e e l v
+Levered
+10
+
+Unscramble:  e d r s i w l
+Swirled
+10
+
+Unscramble:  e d r s n o d n
+Dendrons
+10
+
+Unscramble:  e d s p i h h a
+Headship
+10
+
+Unscramble:  e d t a e r l
+Related
+10
+
+Unscramble:  e d t k r i l
+Kirtled
+10
+
+Unscramble:  e d t m t o l
+Mottled
+10
+
+Unscramble:  e d t s o h t
+Shotted
+10
+
+Unscramble:  e d u d p e t
+Deputed
+10
+
+Unscramble:  e d u e d n r
+Endured
+10
+
+Unscramble:  e d u g o r t
+Grouted
+10
+
+Unscramble:  e d u s t u r
+Sutured
+10
+
+Unscramble:  e d u s x o
+Exodus
+10
+
+Unscramble:  e d w t a r l
+Trawled
+10
+
+Unscramble:  e d w t r o l a
+Leadwort
+10
+
+Unscramble:  e e a d r r
+Reread
+10
+
+Unscramble:  e e a h t b n
+Beneath
+10
+
+Unscramble:  e e a l g s e t
+Legatees
+10
+
+Unscramble:  e e a m n g r
+Germane
+10
+
+Unscramble:  e e a r m t h
+Thermae
+10
+
+Unscramble:  e e a r t s r
+Serrate
+10
+
+Unscramble:  e e a t g v n
+Ventage
+10
+
+Unscramble:  e e c e n i t l
+Telecine
+10
+
+Unscramble:  e e c g i r b
+Iceberg
+10
+
+Unscramble:  e e c s t r f
+Refects
+10
+
+Unscramble:  e e d g n i r c
+Receding
+10
+
+Unscramble:  e e e r s o v
+Oversee
+10
+
+Unscramble:  e e f e d i r n
+Redefine
+10
+
+Unscramble:  e e f s e i t p
+Tepefies
+10
+
+Unscramble:  e e g Y n o t l
+Telegony
+10
+
+Unscramble:  e e h a t s h
+Sheathe
+10
+
+Unscramble:  e e h r n c q u
+Quencher
+10
+
+Unscramble:  e e h s t
+These
+10
+
+Unscramble:  e e i n t k r
+Kernite
+10
+
+Unscramble:  e e i r a t s w
+Sweatier
+10
+
+Unscramble:  e e i r c v d e
+Deceiver
+10
+
+Unscramble:  e e i r m l s e
+Seemlier
+10
+
+Unscramble:  e e i t s p c
+Pectise
+10
+
+Unscramble:  e e l d e l r p
+Repelled
+10
+
+Unscramble:  e e l r m b t r
+Trembler
+10
+
+Unscramble:  e e l s a d t r
+Treadles
+10
+
+Unscramble:  e e l t c i e v
+Cleveite
+10
+
+Unscramble:  e e l v t w
+Twelve
+10
+
+Unscramble:  e e n e g r v
+Revenge
+10
+
+Unscramble:  e e n s e t e n v
+Seventeen
+10
+
+Unscramble:  e e n s m t m o
+Mementos
+10
+
+Unscramble:  e e n s r u g k
+Gerenuks
+10
+
+Unscramble:  e e n y t i s r
+Serenity
+10
+
+Unscramble:  e e n y t s v
+Seventy
+10
+
+Unscramble:  e e o e l p r p
+Repeople
+10
+
+Unscramble:  e e o s r m t
+Meteors
+10
+
+Unscramble:  e e o t n p p
+Peptone
+10
+
+Unscramble:  e e p Y l l t a
+Teleplay
+10
+
+Unscramble:  e e r d e m t
+Metered
+10
+
+Unscramble:  e e r e g a b s v
+Beverages
+10
+
+Unscramble:  e e r e i r v
+Reverie
+10
+
+Unscramble:  e e r f t c a b o n
+Benefactor
+10
+
+Unscramble:  e e r f u n o t
+Fourteen
+10
+
+Unscramble:  e e r r d p s n e t
+Pretenders
+10
+
+Unscramble:  e e r s a t t h
+Theatres
+10
+
+Unscramble:  e e r s p d m
+Premeds
+10
+
+Unscramble:  e e r t d s
+Desert
+10
+
+Unscramble:  e e r t i n h t
+Thirteen
+10
+
+Unscramble:  e e r t p
+Peter
+10
+
+Unscramble:  e e r v n
+Never
+10
+
+Unscramble:  e e r w r d o v
+Overdrew
+10
+
+Unscramble:  e e r y d a f c
+Federacy
+10
+
+Unscramble:  e e s d v i p r
+Prevised
+10
+
+Unscramble:  e e s t l b a v e g
+Vegetables
+10
+
+Unscramble:  e e t h r
+There
+10
+
+Unscramble:  e e t r a i t
+Iterate
+10
+
+Unscramble:  e e t s e t v d
+Vedettes
+10
+
+Unscramble:  e e t v b a l e g
+Vegetable
+10
+
+Unscramble:  e e u v r n r
+Nervure
+10
+
+Unscramble:  e e w h r
+Where
+10
+
+Unscramble:  e e y d r d o v
+Overdyed
+10
+
+Unscramble:  e f c e e a b k
+Beefcake
+10
+
+Unscramble:  e f f t o a b
+Offbeat
+10
+
+Unscramble:  e f o s l i j t
+Jetfoils
+10
+
+Unscramble:  e f r d b s e i
+Debriefs
+10
+
+Unscramble:  e f r t a o s n
+Seafront
+10
+
+Unscramble:  e f t s c h t i u l
+Cuttlefish
+10
+
+Unscramble:  e f u d e m p r
+Perfumed
+10
+
+Unscramble:  e g a o m t n n
+Magneton
+10
+
+Unscramble:  e g d g o i
+Doggie
+10
+
+Unscramble:  e g e a l
+Eagle
+10
+
+Unscramble:  e g e v n a c e n
+Vengeance
+10
+
+Unscramble:  e g i d n f n
+Fending
+10
+
+Unscramble:  e g i g n v r
+Verging
+10
+
+Unscramble:  e g i n n k e
+Keening
+10
+
+Unscramble:  e g i p n h l
+Helping
+10
+
+Unscramble:  e g i s n c n
+Censing
+10
+
+Unscramble:  e g i t a t e r
+Aigrette
+10
+
+Unscramble:  e g i t n b a
+Beating
+10
+
+Unscramble:  e g i t p n m
+Pigment
+10
+
+Unscramble:  e g i w n m o
+Meowing
+10
+
+Unscramble:  e g i y n
+Eying
+10
+
+Unscramble:  e g n y s o g o
+Geognosy
+10
+
+Unscramble:  e g t l a
+Aglet
+10
+
+Unscramble:  e g u s a e l r
+Leaguers
+10
+
+Unscramble:  e g u s b r l
+Buglers
+10
+
+Unscramble:  e g y c t n
+Cygnet
+10
+
+Unscramble:  e h a l o n m t
+Methanol
+10
+
+Unscramble:  e h a s w h e
+Heehaws
+10
+
+Unscramble:  e h a t r
+Earth
+10
+
+Unscramble:  e h l e h e b m t
+Bethlehem
+10
+
+Unscramble:  e h n c f r
+French
+10
+
+Unscramble:  e h r e p i t t
+Tephrite
+10
+
+Unscramble:  e h y n o g o t l c
+Technology
+10
+
+Unscramble:  e i a d r p o v
+Overpaid
+10
+
+Unscramble:  e i a e l b l v
+Leviable
+10
+
+Unscramble:  e i a n m d
+Median
+10
+
+Unscramble:  e i a n r l
+Nailer
+10
+
+Unscramble:  e i a s j r l
+Jailers
+10
+
+Unscramble:  e i a t n r l
+Reliant
+10
+
+Unscramble:  e i b e l a c t
+Celibate
+10
+
+Unscramble:  e i b s l e d c
+Decibels
+10
+
+Unscramble:  e i c e d a m t
+Medicate
+10
+
+Unscramble:  e i c e d i f t
+Feticide
+10
+
+Unscramble:  e i c n a m x
+Mexican
+10
+
+Unscramble:  e i c n i s r
+Sericin
+10
+
+Unscramble:  e i d d o u u s c
+Deciduous
+10
+
+Unscramble:  e i d m u i p r
+Peridium
+10
+
+Unscramble:  e i d r v
+Drive
+10
+
+Unscramble:  e i e d e g b s
+Besieged
+10
+
+Unscramble:  e i e o v r l
+Relievo
+10
+
+Unscramble:  e i e s e h p s h r m
+Hemispheres
+10
+
+Unscramble:  e i f m r o r t
+Retiform
+10
+
+Unscramble:  e i g s r e p e
+Perigees
+10
+
+Unscramble:  e i h e c s n
+Chinese
+10
+
+Unscramble:  e i l c s y c r
+Cresylic
+10
+
+Unscramble:  e i l d r l p e
+Perilled
+10
+
+Unscramble:  e i l g s i r n
+Resiling
+10
+
+Unscramble:  e i l s f e d r
+Defilers
+10
+
+Unscramble:  e i l s l r f
+Refills
+10
+
+Unscramble:  e i n a r g l d n
+Leningrad
+10
+
+Unscramble:  e i n d i o r t
+Retinoid
+10
+
+Unscramble:  e i n e l d r k
+Rekindle
+10
+
+Unscramble:  e i n h t r e s o n
+Rhinestone
+10
+
+Unscramble:  e i n n c s i g r i m
+Reminiscing
+10
+
+Unscramble:  e i n s e g m n
+Meninges
+10
+
+Unscramble:  e i n s f e d r
+Definers
+10
+
+Unscramble:  e i n s n g m e
+Meninges
+10
+
+Unscramble:  e i n v g
+Given
+10
+
+Unscramble:  e i o c i d c l
+Cleidoic
+10
+
+Unscramble:  e i o v s c
+Voices
+10
+
+Unscramble:  e i p r m
+Prime
+10
+
+Unscramble:  e i r n f
+Finer
+10
+
+Unscramble:  e i r s b t r h
+Rebirths
+10
+
+Unscramble:  e i r v l
+Liver
+10
+
+Unscramble:  e i s d r h p e
+Perished
+10
+
+Unscramble:  e i s h n
+Shine
+10
+
+Unscramble:  e i s n c i d o
+Decision
+10
+
+Unscramble:  e i s n v
+Vines
+10
+
+Unscramble:  e i t c n c e l
+Elenctic
+10
+
+Unscramble:  e i t e n o s m
+Semitone
+10
+
+Unscramble:  e i t n m a h a
+Haematin
+10
+
+Unscramble:  e i t s e r c
+Recites
+10
+
+Unscramble:  e i v n e c
+Venice
+10
+
+Unscramble:  e i w h l
+While
+10
+
+Unscramble:  e i w h t
+White
+10
+
+Unscramble:  e i y m l
+Limey
+10
+
+Unscramble:  e k a m r d n
+Denmark
+10
+
+Unscramble:  e k a m r s a
+Seamark
+10
+
+Unscramble:  e k a o e b p o
+Peekaboo
+10
+
+Unscramble:  e k e r e n w a
+Weakener
+10
+
+Unscramble:  e k l g n i k c
+Keckling
+10
+
+Unscramble:  e k o l c h m
+Hemlock
+10
+
+Unscramble:  e l a a f r l d
+Falderal
+10
+
+Unscramble:  e l a d c r d e
+Declared
+10
+
+Unscramble:  e l a d p n d e
+Deplaned
+10
+
+Unscramble:  e l a m i d c
+Declaim
+10
+
+Unscramble:  e l a r l e b
+Relabel
+10
+
+Unscramble:  e l a s c i r m
+Reclaims
+10
+
+Unscramble:  e l a s s t l
+Sallets
+10
+
+Unscramble:  e l a t e r c l
+Cellaret
+10
+
+Unscramble:  e l a t s n s i
+Salients
+10
+
+Unscramble:  e l b e w a v i
+Viewable
+10
+
+Unscramble:  e l e p l r s
+Respell
+10
+
+Unscramble:  e l e s t z p r
+Pretzels
+10
+
+Unscramble:  e l e t c d f
+Deflect
+10
+
+Unscramble:  e l g m n o r
+Mongrel
+10
+
+Unscramble:  e l i m r l
+Miller
+10
+
+Unscramble:  e l i m s r a
+Realism
+10
+
+Unscramble:  e l i r a r t
+Retrial
+10
+
+Unscramble:  e l i s e n r c
+Reclines
+10
+
+Unscramble:  e l i s m w d
+Mildews
+10
+
+Unscramble:  e l i y e r c h
+Cheerily
+10
+
+Unscramble:  e l i y m w d
+Mildewy
+10
+
+Unscramble:  e l l s b a e y
+Eyeballs
+10
+
+Unscramble:  e l l y r a
+Really
+10
+
+Unscramble:  e l m a a c r
+Ceramal
+10
+
+Unscramble:  e l n e a s v g
+Evangels
+10
+
+Unscramble:  e l n e k
+Kneel
+10
+
+Unscramble:  e l o n c y
+Ceylon
+10
+
+Unscramble:  e l p e s
+Sleep
+10
+
+Unscramble:  e l s e g l g h
+Eggshell
+10
+
+Unscramble:  e l u i c r n v
+Culverin
+10
+
+Unscramble:  e l u i n m m n i l
+Millennium
+10
+
+Unscramble:  e l u n m i s l
+Mulleins
+10
+
+Unscramble:  e l u s b r g
+Bulgers
+10
+
+Unscramble:  e l v a u
+Value
+10
+
+Unscramble:  e m a d i m r
+Mermaid
+10
+
+Unscramble:  e m a k r d n
+Denmark
+10
+
+Unscramble:  e m a s d i m r
+Mermaids
+10
+
+Unscramble:  e m a t n v i
+Vietnam
+10
+
+Unscramble:  e m a y o n y r
+Yeomanry
+10
+
+Unscramble:  e m i s e t t r
+Termites
+10
+
+Unscramble:  e m i u e r q
+Requiem
+10
+
+Unscramble:  e m o c c n e m
+Commence
+10
+
+Unscramble:  e m o c c r e m
+Commerce
+10
+
+Unscramble:  e m o e d f r
+Freedom
+10
+
+Unscramble:  e m o e e r t m t r h
+Thermometer
+10
+
+Unscramble:  e m o t n v r
+Vermont
+10
+
+Unscramble:  e m s d a a i t
+Diastema
+10
+
+Unscramble:  e m u h r m
+Hummer
+10
+
+Unscramble:  e m u s d r p
+Dumpers
+10
+
+Unscramble:  e m u y m r m
+Mummery
+10
+
+Unscramble:  e n a b o s r d
+Broadens
+10
+
+Unscramble:  e n a e t n o
+Neonate
+10
+
+Unscramble:  e n a s f r n
+Fanners
+10
+
+Unscramble:  e n a t a s p l
+Pleasant
+10
+
+Unscramble:  e n a t r r a b
+Aberrant
+10
+
+Unscramble:  e n b d r i f r
+Fernbird
+10
+
+Unscramble:  e n b u o c
+Bounce
+10
+
+Unscramble:  e n d e s w
+Sweden
+10
+
+Unscramble:  e n d s i w d
+Swidden
+10
+
+Unscramble:  e n e f r t o w
+Forewent
+10
+
+Unscramble:  e n e s e w t
+Sweeten
+10
+
+Unscramble:  e n e s k l n
+Kennels
+10
+
+Unscramble:  e n e s s r d
+Senders
+10
+
+Unscramble:  e n e y h g r
+Greyhen
+10
+
+Unscramble:  e n f e c
+Fence
+10
+
+Unscramble:  e n f t r u m
+Turfmen
+10
+
+Unscramble:  e n g e i
+Genie
+10
+
+Unscramble:  e n i g a t i d
+Ideating
+10
+
+Unscramble:  e n i g e s t g r
+Greetings
+10
+
+Unscramble:  e n i g s s g u
+Guessing
+10
+
+Unscramble:  e n i n o r u
+Reunion
+10
+
+Unscramble:  e n i s m l k r
+Kremlins
+10
+
+Unscramble:  e n i s t n
+Tennis
+10
+
+Unscramble:  e n i t s e t e
+Teeniest
+10
+
+Unscramble:  e n i w r t
+Winter
+10
+
+Unscramble:  e n l b i t a m
+Bailment
+10
+
+Unscramble:  e n l e k
+Kneel
+10
+
+Unscramble:  e n m s a n w
+Newsman
+10
+
+Unscramble:  e n n a o l b
+Lebanon
+10
+
+Unscramble:  e n n e u d d e
+Unneeded
+10
+
+Unscramble:  e n o e u r a l
+Aleurone
+10
+
+Unscramble:  e n o s c n e d
+Condense
+10
+
+Unscramble:  e n o s s t n
+Sonnets
+10
+
+Unscramble:  e n r e g
+Green
+10
+
+Unscramble:  e n r s h o c o
+Coehorns
+10
+
+Unscramble:  e n s e n t s r e d
+Tenderness
+10
+
+Unscramble:  e n s o p g
+Sponge
+10
+
+Unscramble:  e n t a i k r
+Keratin
+10
+
+Unscramble:  e n u v r t i l
+Virulent
+10
+
+Unscramble:  e n Y i s s s d
+Syndesis
+10
+
+Unscramble:  e o a l n
+Alone
+10
+
+Unscramble:  e o a s g r l
+Gaolers
+10
+
+Unscramble:  e o b d e b d m
+Demobbed
+10
+
+Unscramble:  e o b k e n s t
+Steenbok
+10
+
+Unscramble:  e o b s e a r
+Aerobes
+10
+
+Unscramble:  e o d s c i m l
+Melodics
+10
+
+Unscramble:  e o d s e r c
+Recodes
+10
+
+Unscramble:  e o e r u p
+Europe
+10
+
+Unscramble:  e o g y n o m r
+Merogony
+10
+
+Unscramble:  e o h e r s o v
+Overshoe
+10
+
+Unscramble:  e o h i r s a d
+Rhodesia
+10
+
+Unscramble:  e o i d j n r e
+Rejoined
+10
+
+Unscramble:  e o l o s
+Loose
+10
+
+Unscramble:  e o l s s n v
+Slovens
+10
+
+Unscramble:  e o l s s v r e
+Resolves
+10
+
+Unscramble:  e o l y g o a r
+Aerology
+10
+
+Unscramble:  e o n m w
+Women
+10
+
+Unscramble:  e o n v c
+Coven
+10
+
+Unscramble:  e o o c r l
+Cooler
+10
+
+Unscramble:  e o o d d m
+Doomed
+10
+
+Unscramble:  e o o s b r m
+Boomers
+10
+
+Unscramble:  e o p l a a g
+Apogeal
+10
+
+Unscramble:  e o r d e t r s
+Resorted
+10
+
+Unscramble:  e o r l m i m a
+Memorial
+10
+
+Unscramble:  e o r n s c r i
+Resorcin
+10
+
+Unscramble:  e o r r p t r e
+Reporter
+10
+
+Unscramble:  e o r s a s n
+Senoras
+10
+
+Unscramble:  e o r s g r w
+Growers
+10
+
+Unscramble:  e o r s t m a
+Maestro
+10
+
+Unscramble:  e o r t p s s t
+Protests
+10
+
+Unscramble:  e o r w p
+Power
+10
+
+Unscramble:  e o s h n
+Shone
+10
+
+Unscramble:  e o s m c
+Comes
+10
+
+Unscramble:  e o s n a e h l d m
+Lemonheads
+10
+
+Unscramble:  e o t c i m i
+Meiotic
+10
+
+Unscramble:  e o t h s
+Those
+10
+
+Unscramble:  e o u d v r d e
+Devoured
+10
+
+Unscramble:  e o u s d l r m
+Remoulds
+10
+
+Unscramble:  e o v s c e r r
+Recovers
+10
+
+Unscramble:  e o w h l
+Whole
+10
+
+Unscramble:  e p a p l
+Apple
+10
+
+Unscramble:  e p a s t r p
+Tappers
+10
+
+Unscramble:  e p d e s
+Speed
+10
+
+Unscramble:  e p e d a r d o s
+Desperado
+10
+
+Unscramble:  e p e n i l z p
+Zeppelin
+10
+
+Unscramble:  e p h e n o g o
+Geophone
+10
+
+Unscramble:  e p h r e t l
+Telpher
+10
+
+Unscramble:  e p i d m s e r
+Demireps
+10
+
+Unscramble:  e p i e k l
+Kelpie
+10
+
+Unscramble:  e p i s d r p
+Dippers
+10
+
+Unscramble:  e p i s l n h g
+Helpings
+10
+
+Unscramble:  e p i s r r p
+Rippers
+10
+
+Unscramble:  e p l e n a s a
+Seaplane
+10
+
+Unscramble:  e p m a l
+Maple
+10
+
+Unscramble:  e p m t e e h l
+Helpmeet
+10
+
+Unscramble:  e p n e u l d e
+Unpeeled
+10
+
+Unscramble:  e p o s r t o v
+Overtops
+10
+
+Unscramble:  e p o s s i d l
+Despoils
+10
+
+Unscramble:  e p o t n i d w
+Dewpoint
+10
+
+Unscramble:  e p p r u l
+Purple
+10
+
+Unscramble:  e p y s h n h
+Hyphens
+10
+
+Unscramble:  e r a d b s e t
+Debaters
+10
+
+Unscramble:  e r a d g d r e
+Regraded
+10
+
+Unscramble:  e r a d r t
+Darter
+10
+
+Unscramble:  e r a g n d
+Garden
+10
+
+Unscramble:  e r a n t g t o
+Tetragon
+10
+
+Unscramble:  e r a s m r k
+Markers
+10
+
+Unscramble:  e r b f m s u l
+Fumblers
+10
+
+Unscramble:  e r b w b e i
+Webbier
+10
+
+Unscramble:  e r c p u s l k
+Pluckers
+10
+
+Unscramble:  e r c s a l k
+Slacker
+10
+
+Unscramble:  e r c s i t k
+Sticker
+10
+
+Unscramble:  e r d p d s u l
+Puddlers
+10
+
+Unscramble:  e r d s e i b a
+Beardies
+10
+
+Unscramble:  e r e e n t r
+Terrene
+10
+
+Unscramble:  e r e g e s r t
+Greeters
+10
+
+Unscramble:  e r e h s p
+Herpes
+10
+
+Unscramble:  e r e i d n x
+Indexer
+10
+
+Unscramble:  e r e i h t c p
+Herpetic
+10
+
+Unscramble:  e r e s a k s n
+Sneakers
+10
+
+Unscramble:  e r e s e d b r
+Breeders
+10
+
+Unscramble:  e r e s l d w i
+Wielders
+10
+
+Unscramble:  e r e t s n s p
+Serpents
+10
+
+Unscramble:  e r e v t v
+Vervet
+10
+
+Unscramble:  e r e w k a n
+Wakener
+10
+
+Unscramble:  e r f d f a i
+Daffier
+10
+
+Unscramble:  e r f f o s e f
+Feoffers
+10
+
+Unscramble:  e r f o t
+Forte
+10
+
+Unscramble:  e r f p a s i f
+Piaffers
+10
+
+Unscramble:  e r g a i g o
+Georgia
+10
+
+Unscramble:  e r g h g s i l
+Higglers
+10
+
+Unscramble:  e r g j g a i
+Jaggier
+10
+
+Unscramble:  e r h i t
+Their
+10
+
+Unscramble:  e r i e r a f g
+Ferriage
+10
+
+Unscramble:  e r i g e h d
+Hedgier
+10
+
+Unscramble:  e r i l a c m t
+Metrical
+10
+
+Unscramble:  e r i p r m e d
+Periderm
+10
+
+Unscramble:  e r i s a n h g
+Hearings
+10
+
+Unscramble:  e r i s c a d l
+Decrials
+10
+
+Unscramble:  e r i s p v d e
+Deprives
+10
+
+Unscramble:  e r i s r t p
+Striper
+10
+
+Unscramble:  e r i t e m a
+Meatier
+10
+
+Unscramble:  e r i t m s i
+Miriest
+10
+
+Unscramble:  e r k p s e i
+Peskier
+10
+
+Unscramble:  e r k s n e h a
+Hearkens
+10
+
+Unscramble:  e r l e f
+Fleer
+10
+
+Unscramble:  e r l t e s t
+Settler
+10
+
+Unscramble:  e r m c a h b
+Chamber
+10
+
+Unscramble:  e r m p l a i
+Palmier
+10
+
+Unscramble:  e r m s i l i
+Slimier
+10
+
+Unscramble:  e r n c a h g
+Changer
+10
+
+Unscramble:  e r n f a s l k
+Flankers
+10
+
+Unscramble:  e r n g a s l d
+Glanders
+10
+
+Unscramble:  e r n p a l t
+Planter
+10
+
+Unscramble:  e r n s i t k
+Stinker
+10
+
+Unscramble:  e r n w i r g
+Wringer
+10
+
+Unscramble:  e r o a m s l n
+Almoners
+10
+
+Unscramble:  e r o a t c r
+Creator
+10
+
+Unscramble:  e r o e b r d d
+Bordered
+10
+
+Unscramble:  e r o e r w o v
+Overwore
+10
+
+Unscramble:  e r o f d c
+Forced
+10
+
+Unscramble:  e r o s d r m
+Dormers
+10
+
+Unscramble:  e r o s n t s t
+Stentors
+10
+
+Unscramble:  e r o s o s n k
+Snookers
+10
+
+Unscramble:  e r o t i d t
+Detroit
+10
+
+Unscramble:  e r o t l e e m
+Telomere
+10
+
+Unscramble:  e r p c i h p
+Chipper
+10
+
+Unscramble:  e r p h p i i
+Hippier
+10
+
+Unscramble:  e r p n p i i
+Nippier
+10
+
+Unscramble:  e r p u s
+Purse
+10
+
+Unscramble:  e r p w o s h p
+Whoppers
+10
+
+Unscramble:  e r r h i a i
+Hairier
+10
+
+Unscramble:  e r r q a s u t
+Quarters
+10
+
+Unscramble:  e r r s a s w m
+Swarmers
+10
+
+Unscramble:  e r r t r s e i
+Terriers
+10
+
+Unscramble:  e r s c u r h
+Crusher
+10
+
+Unscramble:  e r s f e r h
+Fresher
+10
+
+Unscramble:  e r s i l a
+Israel
+10
+
+Unscramble:  e r s n i o i
+Noisier
+10
+
+Unscramble:  e r s p r u u
+Pursuer
+10
+
+Unscramble:  e r t b o r h
+Brother
+10
+
+Unscramble:  e r t d s a e c t
+Scattered
+10
+
+Unscramble:  e r t f a e h
+Feather
+10
+
+Unscramble:  e r t f i s r t
+Fritters
+10
+
+Unscramble:  e r t h a y e h
+Heathery
+10
+
+Unscramble:  e r t h e
+Three
+10
+
+Unscramble:  e r t r s u i
+Rustier
+10
+
+Unscramble:  e r t r t s a l
+Rattlers
+10
+
+Unscramble:  e r t s h a
+Hearts
+10
+
+Unscramble:  e r t s l a i
+Saltier
+10
+
+Unscramble:  e r t w t i i
+Wittier
+10
+
+Unscramble:  e r u g o s r t
+Grouters
+10
+
+Unscramble:  e r u m n i t
+Minuter
+10
+
+Unscramble:  e r u r f s e s
+Refusers
+10
+
+Unscramble:  e r u s o c t
+Scouter
+10
+
+Unscramble:  e r u s o s c t
+Scouters
+10
+
+Unscramble:  e r u t b i
+Beirut
+10
+
+Unscramble:  e r v i e r v
+Reviver
+10
+
+Unscramble:  e r w t a s r l
+Trawlers
+10
+
+Unscramble:  e r y o m b
+Embryo
+10
+
+Unscramble:  e r z t e s l
+Seltzer
+10
+
+Unscramble:  e s a e h x l
+Exhales
+10
+
+Unscramble:  e s a h p p r
+Perhaps
+10
+
+Unscramble:  e s a l b e e n
+Lebanese
+10
+
+Unscramble:  e s a s u t q r
+Squarest
+10
+
+Unscramble:  e s a t r s h
+Rashest
+10
+
+Unscramble:  e s a t w h
+Wheats
+10
+
+Unscramble:  e s a v s i g
+Visages
+10
+
+Unscramble:  e s a v t s o r
+Votaress
+10
+
+Unscramble:  e s b b r u l
+Burbles
+10
+
+Unscramble:  e s b g b t a i
+Gabbiest
+10
+
+Unscramble:  e s b s m o g k
+Gemsboks
+10
+
+Unscramble:  e s c a e r f
+Refaces
+10
+
+Unscramble:  e s c g l u h
+Gulches
+10
+
+Unscramble:  e s c p r e h
+Perches
+10
+
+Unscramble:  e s c s i t p i
+Spiciest
+10
+
+Unscramble:  e s d b n u i
+Bundies
+10
+
+Unscramble:  e s d l r t a i
+Lardiest
+10
+
+Unscramble:  e s d s n t a i
+Sandiest
+10
+
+Unscramble:  e s d w r t o i
+Wordiest
+10
+
+Unscramble:  e s e a v r l p
+Vesperal
+10
+
+Unscramble:  e s e c h o r
+Coheres
+10
+
+Unscramble:  e s e d g s l
+Sledges
+10
+
+Unscramble:  e s e e z s n
+Sneezes
+10
+
+Unscramble:  e s e h p s o l
+Hopeless
+10
+
+Unscramble:  e s e l r h a
+Healers
+10
+
+Unscramble:  e s e s e n z
+Sneezes
+10
+
+Unscramble:  e s e s m l s t
+Stemless
+10
+
+Unscramble:  e s e t e p s t
+Steepest
+10
+
+Unscramble:  e s e z r s i
+Seizers
+10
+
+Unscramble:  e s f b u t l f
+Bluffest
+10
+
+Unscramble:  e s f c f o e
+Coffees
+10
+
+Unscramble:  e s f c m t o i
+Comfiest
+10
+
+Unscramble:  e s g d n t i i
+Dingiest
+10
+
+Unscramble:  e s g m n i l
+Mingles
+10
+
+Unscramble:  e s g r n t a i
+Rangiest
+10
+
+Unscramble:  e s h c e b e
+Beeches
+10
+
+Unscramble:  e s h c e r a
+Reaches
+10
+
+Unscramble:  e s h s e l a
+Leashes
+10
+
+Unscramble:  e s i d e n d
+Neddies
+10
+
+Unscramble:  e s i d m a s r
+Misreads
+10
+
+Unscramble:  e s i d w s e n
+Dewiness
+10
+
+Unscramble:  e s i e a b f l
+Feasible
+10
+
+Unscramble:  e s i e d b d
+Bedside
+10
+
+Unscramble:  e s i e g n n
+Engines
+10
+
+Unscramble:  e s i e o n t t
+Teosinte
+10
+
+Unscramble:  e s i f e r i
+Reifies
+10
+
+Unscramble:  e s i l m a s d
+Misdeals
+10
+
+Unscramble:  e s i m z s a n
+Maziness
+10
+
+Unscramble:  e s i s n s i
+Seisins
+10
+
+Unscramble:  e s i t d t e k
+Diskette
+10
+
+Unscramble:  e s i w r s i n
+Wiriness
+10
+
+Unscramble:  e s k d n t i i
+Dinkiest
+10
+
+Unscramble:  e s k f a t l i
+Flakiest
+10
+
+Unscramble:  e s k q a t u i
+Quakiest
+10
+
+Unscramble:  e s k r c t o i
+Rockiest
+10
+
+Unscramble:  e s k s i t p i
+Spikiest
+10
+
+Unscramble:  e s l d l o i
+Dollies
+10
+
+Unscramble:  e s l h l o i
+Hollies
+10
+
+Unscramble:  e s l i e d c
+Deciles
+10
+
+Unscramble:  e s l i e d f
+Defiles
+10
+
+Unscramble:  e s l s e m a
+Measles
+10
+
+Unscramble:  e s l t e b a
+Beatles
+10
+
+Unscramble:  e s l t i s a l
+Tailless
+10
+
+Unscramble:  e s m e t a m s
+Messmate
+10
+
+Unscramble:  e s m g i s r n
+Grimness
+10
+
+Unscramble:  e s m p i s r n
+Primness
+10
+
+Unscramble:  e s n a t r c
+Recants
+10
+
+Unscramble:  e s n m o t o i
+Mooniest
+10
+
+Unscramble:  e s n s i t p i
+Spiniest
+10
+
+Unscramble:  e s n t i c p
+Inspect
+10
+
+Unscramble:  e s n t n i i
+Tinnies
+10
+
+Unscramble:  e s o i t h r
+Heriots
+10
+
+Unscramble:  e s o m r t r
+Termors
+10
+
+Unscramble:  e s o o l r t
+Retools
+10
+
+Unscramble:  e s o r m t e t
+Remotest
+10
+
+Unscramble:  e s o r s r c
+Recross
+10
+
+Unscramble:  e s o s h s t
+Hostess
+10
+
+Unscramble:  e s o s n n l
+Nelsons
+10
+
+Unscramble:  e s o s o t g
+Stooges
+10
+
+Unscramble:  e s p d m s a n
+Dampness
+10
+
+Unscramble:  e s p n i r n t w
+Newsprint
+10
+
+Unscramble:  e s p s p t u l
+Supplest
+10
+
+Unscramble:  e s q c e h u
+Cheques
+10
+
+Unscramble:  e s q t r o u
+Torques
+10
+
+Unscramble:  e s r e e r v
+Reveres
+10
+
+Unscramble:  e s r m r t e i
+Merriest
+10
+
+Unscramble:  e s r n a t h
+Thenars
+10
+
+Unscramble:  e s r t e u r
+Ureters
+10
+
+Unscramble:  e s s e i g n
+Genesis
+10
+
+Unscramble:  e s s i e p n
+Penises
+10
+
+Unscramble:  e s s m u t o i
+Mousiest
+10
+
+Unscramble:  e s s n a m m d r i t
+Masterminds
+10
+
+Unscramble:  e s t a s b r
+Breasts
+10
+
+Unscramble:  e s t b t o l
+Bottles
+10
+
+Unscramble:  e s t d c s o r
+Doctress
+10
+
+Unscramble:  e s t j s s u n
+Justness
+10
+
+Unscramble:  e s t k t e l
+Kettles
+10
+
+Unscramble:  e s t n t t i i
+Nittiest
+10
+
+Unscramble:  e s t r a i y e
+Yeastier
+10
+
+Unscramble:  e s t r n t u i
+Runtiest
+10
+
+Unscramble:  e s t r s s e l
+Restless
+10
+
+Unscramble:  e s t s a e f r
+Feasters
+10
+
+Unscramble:  e s t s a w h
+Swathes
+10
+
+Unscramble:  e s t s o t o i
+Sootiest
+10
+
+Unscramble:  e s u m n i s s
+Sensuism
+10
+
+Unscramble:  e s u s s n e p
+Suspense
+10
+
+Unscramble:  e s v n r t e i
+Nerviest
+10
+
+Unscramble:  e s v s l a o
+Salvoes
+10
+
+Unscramble:  e s w b o l i
+Blowies
+10
+
+Unscramble:  e s y a k l n
+Alkynes
+10
+
+Unscramble:  e s z w o t o i
+Wooziest
+10
+
+Unscramble:  e t a d e t g s
+Gestated
+10
+
+Unscramble:  e t a e t g s
+Gestate
+10
+
+Unscramble:  e t a n n r g
+Regnant
+10
+
+Unscramble:  e t a s e n p n
+Pentanes
+10
+
+Unscramble:  e t a t p n s i
+Patients
+10
+
+Unscramble:  e t a y n l m l
+Mentally
+10
+
+Unscramble:  e t c c l e a r
+Calcrete
+10
+
+Unscramble:  e t c c r i l
+Circlet
+10
+
+Unscramble:  e t d h n s a s
+Handsets
+10
+
+Unscramble:  e t e a r b v r
+Vertebra
+10
+
+Unscramble:  e t e c p p r
+Percept
+10
+
+Unscramble:  e t e d m l
+Melted
+10
+
+Unscramble:  e t e e c n s n
+Sentence
+10
+
+Unscramble:  e t e f c p r
+Perfect
+10
+
+Unscramble:  e t e i s e r
+Eeriest
+10
+
+Unscramble:  e t e r e r l t
+Letterer
+10
+
+Unscramble:  e t e s r p s
+Pesters
+10
+
+Unscramble:  e t e s s a b d
+Besteads
+10
+
+Unscramble:  e t e y d r a y s
+Yesterday
+10
+
+Unscramble:  e t e y n n o
+Neoteny
+10
+
+Unscramble:  e t g i h
+Eight
+10
+
+Unscramble:  e t g r o
+Ergot
+10
+
+Unscramble:  e t h b v o e n e
+Beethoven
+10
+
+Unscramble:  e t h s a e h n
+Heathens
+10
+
+Unscramble:  e t h s a e h r
+Heathers
+10
+
+Unscramble:  e t h y a e f r
+Feathery
+10
+
+Unscramble:  e t i a z m s
+Mestiza
+10
+
+Unscramble:  e t i e l c t s
+Testicle
+10
+
+Unscramble:  e t i e l t x
+Textile
+10
+
+Unscramble:  e t i e m s p
+Septime
+10
+
+Unscramble:  e t i g n t n
+Tenting
+10
+
+Unscramble:  e t i g n v r
+Verting
+10
+
+Unscramble:  e t i l s v f a
+Festival
+10
+
+Unscramble:  e t i r s m t
+Metrist
+10
+
+Unscramble:  e t i s d i t h
+Ditheist
+10
+
+Unscramble:  e t i s g n f l
+Feltings
+10
+
+Unscramble:  e t i s n a t r
+Tertians
+10
+
+Unscramble:  e t i s p d p e
+Peptides
+10
+
+Unscramble:  e t i t f n s m
+Fitments
+10
+
+Unscramble:  e t i t o m n y s
+Testimony
+10
+
+Unscramble:  e t l p s
+Slept
+10
+
+Unscramble:  e t l s n e t s
+Tentless
+10
+
+Unscramble:  e t m l s
+Smelt
+10
+
+Unscramble:  e t m t s e v n
+Vestment
+10
+
+Unscramble:  e t n c i n h r
+Intrench
+10
+
+Unscramble:  e t o d i d n
+Dentoid
+10
+
+Unscramble:  e t o l e t t a
+Teetotal
+10
+
+Unscramble:  e t o m u t t e
+Teetotum
+10
+
+Unscramble:  e t o r m n e a m
+Manometer
+10
+
+Unscramble:  e t o s r s c
+Sectors
+10
+
+Unscramble:  e t p c a s l n
+Clapnets
+10
+
+Unscramble:  e t p s i n p
+Snippet
+10
+
+Unscramble:  e t q c o s r u
+Croquets
+10
+
+Unscramble:  e t r e c n
+Centre
+10
+
+Unscramble:  e t r o g
+Ergot
+10
+
+Unscramble:  e t s i e s a h
+Esthesia
+10
+
+Unscramble:  e t s o i r p
+Reposit
+10
+
+Unscramble:  e t s s m i c h
+Chemists
+10
+
+Unscramble:  e t s t e a r
+Estreat
+10
+
+Unscramble:  e t t e s l r a p
+Saltpetre
+10
+
+Unscramble:  e t t g n s a l
+Gantlets
+10
+
+Unscramble:  e t t n i a r a
+Reattain
+10
+
+Unscramble:  e t u d s r g e
+Gestured
+10
+
+Unscramble:  e t u e p p s l
+Septuple
+10
+
+Unscramble:  e t u r e r l c
+Lecturer
+10
+
+Unscramble:  e t u s e r l c
+Lectures
+10
+
+Unscramble:  e t u y b r l
+Butlery
+10
+
+Unscramble:  e t w e a a h v
+Heatwave
+10
+
+Unscramble:  e t w u s n e
+Unsweet
+10
+
+Unscramble:  e t x e e m s r
+Extremes
+10
+
+Unscramble:  e t y g p
+Egypt
+10
+
+Unscramble:  e t y u f b r l t
+Butterfly
+10
+
+Unscramble:  e u a e t n d t
+Tautened
+10
+
+Unscramble:  e u a i b k n d
+Baudekin
+10
+
+Unscramble:  e u c g n i d d
+Deducing
+10
+
+Unscramble:  e u c s r e s d
+Seducers
+10
+
+Unscramble:  e u e s n r t
+Neuters
+10
+
+Unscramble:  e u f t u r
+Future
+10
+
+Unscramble:  e u h o s
+House
+10
+
+Unscramble:  e u i e n g n
+Genuine
+10
+
+Unscramble:  e u i s d l r b
+Rebuilds
+10
+
+Unscramble:  e u l d s t r e
+Resulted
+10
+
+Unscramble:  e u l o s
+Louse
+10
+
+Unscramble:  e u m n a r
+Manure
+10
+
+Unscramble:  e u m s l b n o
+Nelumbos
+10
+
+Unscramble:  e u n b c i l r a p
+Republican
+10
+
+Unscramble:  e u n y t i j j
+Jejunity
+10
+
+Unscramble:  e u o u n a v
+Nouveau
+10
+
+Unscramble:  e u r e e n r t
+Returnee
+10
+
+Unscramble:  e u r y c l d
+Crudely
+10
+
+Unscramble:  e u s n d
+Dunes
+10
+
+Unscramble:  e u z s z a m h
+Mezuzahs
+10
+
+Unscramble:  e v a s l g s e
+Selvages
+10
+
+Unscramble:  e v e d e n l a
+Leavened
+10
+
+Unscramble:  e v e d e r b a
+Beavered
+10
+
+Unscramble:  e v e d s r
+Served
+10
+
+Unscramble:  e v e n l e
+Eleven
+10
+
+Unscramble:  e v e r d n
+Denver
+10
+
+Unscramble:  e v i e c t e r
+Erective
+10
+
+Unscramble:  e v i e n c r
+Cervine
+10
+
+Unscramble:  e v i s u o p r
+Pervious
+10
+
+Unscramble:  e v o m s i
+Movies
+10
+
+Unscramble:  e w b o i
+Bowie
+10
+
+Unscramble:  e w c a r i r
+Aircrew
+10
+
+Unscramble:  e w e s e p e
+Peewees
+10
+
+Unscramble:  e w e s t e b n
+Betweens
+10
+
+Unscramble:  e w o k r n t
+Network
+10
+
+Unscramble:  e w t b s s e r
+Bestrews
+10
+
+Unscramble:  e w t e s
+Sweet
+10
+
+Unscramble:  e x b r o g a
+Gearbox
+10
+
+Unscramble:  e y c m r i m s
+Merycism
+10
+
+Unscramble:  e y i d l r a
+Readily
+10
+
+Unscramble:  e y i t f c r
+Certify
+10
+
+Unscramble:  e y l a l v n
+Venally
+10
+
+Unscramble:  e y r j u o n
+Journey
+10
+
+Unscramble:  e y t r p o
+Poetry
+10
+
+Unscramble:  e y t v i b r
+Brevity
+10
+
+Unscramble:  e y u t r c n
+Century
+10
+
+Unscramble:  e y v r e
+Every
+10
+
+Unscramble:  e z i e r n e t
+Eternize
+10
+
+Unscramble:  e z o l y b n
+Benzoyl
+10
+
+Unscramble:  f a a a f l l
+Alfalfa
+10
+
+Unscramble:  f a e l f u r
+Fearful
+10
+
+Unscramble:  f a f s a l a l
+Alfalfas
+10
+
+Unscramble:  f a i l i c o f
+Official
+10
+
+Unscramble:  f a t r s e s f
+Staffers
+10
+
+Unscramble:  f c a c p i i
+Pacific
+10
+
+Unscramble:  f c o c l o o o
+Locofoco
+10
+
+Unscramble:  f d a e i l d e
+Defilade
+10
+
+Unscramble:  f d e a c d e
+Defaced
+10
+
+Unscramble:  f d e i n r e
+Refined
+10
+
+Unscramble:  f d u o n
+Found
+10
+
+Unscramble:  f e c d f t a e
+Affected
+10
+
+Unscramble:  f e e s e r r e
+Referees
+10
+
+Unscramble:  f e m s y l
+Myself
+10
+
+Unscramble:  f e r g n i o f
+Offering
+10
+
+Unscramble:  f e r t f e e n
+Efferent
+10
+
+Unscramble:  f e r t n e a f
+Afferent
+10
+
+Unscramble:  f e u e g d n l
+Engulfed
+10
+
+Unscramble:  f e v e o e d r
+Overfeed
+10
+
+Unscramble:  f e v l o u l r
+Overfull
+10
+
+Unscramble:  f h a t i
+Faith
+10
+
+Unscramble:  f h r s e
+Fresh
+10
+
+Unscramble:  f h t e t
+Theft
+10
+
+Unscramble:  f i n g u s
+Fusing
+10
+
+Unscramble:  f i r n g i f
+Griffin
+10
+
+Unscramble:  f l e t e b l i
+Lifebelt
+10
+
+Unscramble:  f l p e u t d i
+Uplifted
+10
+
+Unscramble:  f m e d o r
+Formed
+10
+
+Unscramble:  f m l i a r c u o n i
+Californium
+10
+
+Unscramble:  f n a r m o m i
+Maniform
+10
+
+Unscramble:  f n c h r e
+French
+10
+
+Unscramble:  f n g y r i
+Fringy
+10
+
+Unscramble:  f n i s k i h g
+Kingfish
+10
+
+Unscramble:  f n i s r a r e
+Refrains
+10
+
+Unscramble:  f o i r e r i n
+Inferior
+10
+
+Unscramble:  f p y e t i s i
+Typifies
+10
+
+Unscramble:  f r a e t f d i
+Tariffed
+10
+
+Unscramble:  f r a e t w s o
+Software
+10
+
+Unscramble:  f r a i p f n a
+Paraffin
+10
+
+Unscramble:  f r e o n f r i g e
+Forefinger
+10
+
+Unscramble:  f r e s f l p i
+Pifflers
+10
+
+Unscramble:  f r f e s u
+Suffer
+10
+
+Unscramble:  f r l o o
+Floor
+10
+
+Unscramble:  f r u e p i d i
+Purified
+10
+
+Unscramble:  f s i r t
+Frits
+10
+
+Unscramble:  f s r g o
+Frogs
+10
+
+Unscramble:  f s t e s i n
+Infests
+10
+
+Unscramble:  f t c e l d e r e
+Reflected
+10
+
+Unscramble:  f t i s r
+First
+10
+
+Unscramble:  f t r i s
+First
+10
+
+Unscramble:  f u l d b e f
+Bluffed
+10
+
+Unscramble:  f u l e e r
+Ferule
+10
+
+Unscramble:  f u m s a l h e
+Shameful
+10
+
+Unscramble:  f u r s o l c n
+Scornful
+10
+
+Unscramble:  f u s t i l r t
+Tristful
+10
+
+Unscramble:  f u t f i l a h
+Faithful
+10
+
+Unscramble:  f u t g a l r e
+Grateful
+10
+
+Unscramble:  f v i e u s i n
+Infusive
+10
+
+Unscramble:  f w e r l o
+Flower
+10
+
+Unscramble:  f y i t f
+Fifty
+10
+
+Unscramble:  f y l i l
+Filly
+10
+
+Unscramble:  f y o t l
+Lofty
+10
+
+Unscramble:  f y r o t
+Forty
+10
+
+Unscramble:  f z e e r e r e
+Refreeze
+10
+
+Unscramble:  g a e d b
+Badge
+10
+
+Unscramble:  g a h a s h i n
+Shanghai
+10
+
+Unscramble:  g a i r h e
+Hegira
+10
+
+Unscramble:  g a l w g o s
+Glasgow
+10
+
+Unscramble:  g a p c r h a i
+Agraphic
+10
+
+Unscramble:  g a r d c e g
+Cragged
+10
+
+Unscramble:  g a s e r e
+Grease
+10
+
+Unscramble:  g e a l e
+Eagle
+10
+
+Unscramble:  g e b a l
+Gable
+10
+
+Unscramble:  g e b h r s e a
+Herbages
+10
+
+Unscramble:  g e c e r e
+Greece
+10
+
+Unscramble:  g e d y r a a
+Yardage
+10
+
+Unscramble:  g e g d o r e n
+Engorged
+10
+
+Unscramble:  g e i i p s m n
+Impinges
+10
+
+Unscramble:  g e k l a s e a
+Leakages
+10
+
+Unscramble:  g e o o s
+Goose
+10
+
+Unscramble:  g e o s r r t n
+Stronger
+10
+
+Unscramble:  g e o t s r s t n
+Strongest
+10
+
+Unscramble:  g e s s e s o r
+Ogresses
+10
+
+Unscramble:  g e s s n i c o
+Cognises
+10
+
+Unscramble:  g e s s u a a
+Sausage
+10
+
+Unscramble:  g e t d o u r a
+Ragouted
+10
+
+Unscramble:  g e t p t s o a
+Pottages
+10
+
+Unscramble:  g e t s r a m i
+Migrates
+10
+
+Unscramble:  g e x e e u s r
+Exergues
+10
+
+Unscramble:  g g n g i m u
+Mugging
+10
+
+Unscramble:  g g n s g i n o
+Noggings
+10
+
+Unscramble:  g h a m r a
+Graham
+10
+
+Unscramble:  g h l d y t a i
+Daylight
+10
+
+Unscramble:  g h n m d t i i
+Midnight
+10
+
+Unscramble:  g i b e n
+Being
+10
+
+Unscramble:  g i b r o n
+Boring
+10
+
+Unscramble:  g i c r u n
+Curing
+10
+
+Unscramble:  g i g o n
+Going
+10
+
+Unscramble:  g i g v i n
+Giving
+10
+
+Unscramble:  g i h d w e n
+Whinged
+10
+
+Unscramble:  g i h s o n
+Hosing
+10
+
+Unscramble:  g i l a n o m a
+Magnolia
+10
+
+Unscramble:  g i n i e m
+Gemini
+10
+
+Unscramble:  g i n n h g t l i
+Lightning
+10
+
+Unscramble:  g i o e u n f v n r
+Unforgiven
+10
+
+Unscramble:  g i p r o n
+Poring
+10
+
+Unscramble:  g i r r t e g
+Trigger
+10
+
+Unscramble:  g i s n w
+Wings
+10
+
+Unscramble:  g i t c m a m a
+Magmatic
+10
+
+Unscramble:  g i t k a n
+Taking
+10
+
+Unscramble:  g i t n e a n a r
+Argentina
+10
+
+Unscramble:  g l a s r y c g
+Scraggly
+10
+
+Unscramble:  g l b e o e s i
+Obligees
+10
+
+Unscramble:  g l n n a e a
+Anlagen
+10
+
+Unscramble:  g m a n e r
+German
+10
+
+Unscramble:  g m r r a e s i
+Armigers
+10
+
+Unscramble:  g n e r e
+Green
+10
+
+Unscramble:  g n e r f r e o i
+Foreigner
+10
+
+Unscramble:  g n i r v a y e
+Vinegary
+10
+
+Unscramble:  g n i s r a i n
+Ingrains
+10
+
+Unscramble:  g n r o a
+Argon
+10
+
+Unscramble:  g n r s h o f o
+Foghorns
+10
+
+Unscramble:  g o h t t h u
+Thought
+10
+
+Unscramble:  g o h u e h s t l i
+Lighthouse
+10
+
+Unscramble:  g r a s u l r e
+Regulars
+10
+
+Unscramble:  g r e h t r i
+Righter
+10
+
+Unscramble:  g r e s h t l i
+Lighters
+10
+
+Unscramble:  g r e u u n d o n d r
+Underground
+10
+
+Unscramble:  g r g a e
+Gager
+10
+
+Unscramble:  g r i e t
+Tiger
+10
+
+Unscramble:  g r n d e e a
+Enraged
+10
+
+Unscramble:  g r n i o l m e o f t
+Montgolfier
+10
+
+Unscramble:  g r o e a m s a
+Sagamore
+10
+
+Unscramble:  g r o n f i g a
+Foraging
+10
+
+Unscramble:  g r u a s
+Sugar
+10
+
+Unscramble:  g s a u l l i
+Ligulas
+10
+
+Unscramble:  g s e e d n d i
+Designed
+10
+
+Unscramble:  g s e e r n d i
+Resigned
+10
+
+Unscramble:  g s e g i p i
+Piggies
+10
+
+Unscramble:  g s e r a s
+Gasser
+10
+
+Unscramble:  g s h h t e i
+Eighths
+10
+
+Unscramble:  g s i l r
+Girls
+10
+
+Unscramble:  g s i m s u n
+Musings
+10
+
+Unscramble:  g s i p o s
+Gossip
+10
+
+Unscramble:  g s i r c a a
+Agarics
+10
+
+Unscramble:  g s i t a m b i
+Bigamist
+10
+
+Unscramble:  g s l s a
+Glass
+10
+
+Unscramble:  g s r h e s i
+Sighers
+10
+
+Unscramble:  g s r t i
+Grits
+10
+
+Unscramble:  g s t g e n u
+Nuggets
+10
+
+Unscramble:  g s t s r e a i
+Agisters
+10
+
+Unscramble:  g s u s e
+Guess
+10
+
+Unscramble:  g s v i e
+Gives
+10
+
+Unscramble:  g t a e i t d i
+Digitate
+10
+
+Unscramble:  g t a i n
+Giant
+10
+
+Unscramble:  g t a r n
+Grant
+10
+
+Unscramble:  g t e h t e d o
+Dogteeth
+10
+
+Unscramble:  g t e s r h t n
+Strength
+10
+
+Unscramble:  g t i h n
+Night
+10
+
+Unscramble:  g t i n a
+Giant
+10
+
+Unscramble:  g t n a i r l e
+Integral
+10
+
+Unscramble:  g t r o e
+Ergot
+10
+
+Unscramble:  g u r c o s h a
+Choragus
+10
+
+Unscramble:  g u y o n
+Young
+10
+
+Unscramble:  g v a d r e a
+Ravaged
+10
+
+Unscramble:  g v e e r i a g
+Aggrieve
+10
+
+Unscramble:  g x e n h o s a
+Hexagons
+10
+
+Unscramble:  g y h t e i
+Eighty
+10
+
+Unscramble:  g y l a a n o
+Analogy
+10
+
+Unscramble:  g z e r e e
+Geezer
+10
+
+Unscramble:  h a c r w k t e
+Thwacker
+10
+
+Unscramble:  h a e l e r e t
+Ethereal
+10
+
+Unscramble:  h a e r h e t
+Heather
+10
+
+Unscramble:  h a e r l e n t
+Leathern
+10
+
+Unscramble:  h a i c a s a p
+Aphasiac
+10
+
+Unscramble:  h a i e n s t
+Sthenia
+10
+
+Unscramble:  h a n s u m
+Humans
+10
+
+Unscramble:  h a p o c e
+Cheapo
+10
+
+Unscramble:  h a r d e t t w
+Thwarted
+10
+
+Unscramble:  h a r y o r
+Horary
+10
+
+Unscramble:  h c a o g c i
+Chicago
+10
+
+Unscramble:  h c k g o i s n
+Shocking
+10
+
+Unscramble:  h c k s u e s r
+Shuckers
+10
+
+Unscramble:  h c k t e t i
+Thicket
+10
+
+Unscramble:  h c n a r s a i c
+Saccharin
+10
+
+Unscramble:  h d e r a
+Heard
+10
+
+Unscramble:  h e d r u g s o n y
+Greyhounds
+10
+
+Unscramble:  h e e t r s h s
+Threshes
+10
+
+Unscramble:  h e f r s
+Fresh
+10
+
+Unscramble:  h e h d a s r e
+Rehashed
+10
+
+Unscramble:  h e h k c a o c
+Chechako
+10
+
+Unscramble:  h e i b n s a s
+Banishes
+10
+
+Unscramble:  h e k d e c e
+Cheeked
+10
+
+Unscramble:  h e k d u s u n
+Unhusked
+10
+
+Unscramble:  h e k g n i c e
+Cheeking
+10
+
+Unscramble:  h e l d e d s i
+Shielded
+10
+
+Unscramble:  h e l n e a t p
+Elephant
+10
+
+Unscramble:  h e n c e d l c
+Clenched
+10
+
+Unscramble:  h e n l u s a c
+Launches
+10
+
+Unscramble:  h e n p a t l c
+Planchet
+10
+
+Unscramble:  h e n t e d r c
+Trenched
+10
+
+Unscramble:  h e o s r
+Horse
+10
+
+Unscramble:  h e r n u a e t
+Urethane
+10
+
+Unscramble:  h e r s a d t c
+Starched
+10
+
+Unscramble:  h e r s c e
+Cheers
+10
+
+Unscramble:  h e s d o u r e
+Rehoused
+10
+
+Unscramble:  h e s e c e
+Cheese
+10
+
+Unscramble:  h e t h a c e
+Cheetah
+10
+
+Unscramble:  h e t s a d n c
+Snatched
+10
+
+Unscramble:  h e u s o d l g
+Sloughed
+10
+
+Unscramble:  h e v Y r e t i
+Thievery
+10
+
+Unscramble:  h f f g a i c n
+Chaffing
+10
+
+Unscramble:  h f f s e l w i
+Whiffles
+10
+
+Unscramble:  h f f s i o c n
+Chiffons
+10
+
+Unscramble:  h g i m n c i
+Chiming
+10
+
+Unscramble:  h h e r i g
+Higher
+10
+
+Unscramble:  h h t e a c e
+Cheetah
+10
+
+Unscramble:  h h u o g t r
+Through
+10
+
+Unscramble:  h i d t r e o a p
+Aphrodite
+10
+
+Unscramble:  h i e o n b r g
+Neighbor
+10
+
+Unscramble:  h i f a t
+Faith
+10
+
+Unscramble:  h i l b l p u w
+Bullwhip
+10
+
+Unscramble:  h i n g a i c n
+Chaining
+10
+
+Unscramble:  h i n g r i s n
+Shrining
+10
+
+Unscramble:  h i o d e r s p
+Spheroid
+10
+
+Unscramble:  h i o s o e m t
+Smoothie
+10
+
+Unscramble:  h i s r n b s t e g
+Brightness
+10
+
+Unscramble:  h i t c l e a t
+Athletic
+10
+
+Unscramble:  h i t g e
+Eight
+10
+
+Unscramble:  h i v d e t r
+Thrived
+10
+
+Unscramble:  h i w h c
+Which
+10
+
+Unscramble:  h k e d c o
+Choked
+10
+
+Unscramble:  h l e s s s e e p c
+Speechless
+10
+
+Unscramble:  h l e t a m
+Hamlet
+10
+
+Unscramble:  h l g Y i n a c
+Achingly
+10
+
+Unscramble:  h l i a u y g s
+Aguishly
+10
+
+Unscramble:  h l i d e c c a
+Chaliced
+10
+
+Unscramble:  h l i o b o k l
+Billhook
+10
+
+Unscramble:  h l i s e c c a
+Chalices
+10
+
+Unscramble:  h l i t i a c s
+Chiliast
+10
+
+Unscramble:  h l k m o o a a
+Oklahoma
+10
+
+Unscramble:  h l k r e i c a
+Chalkier
+10
+
+Unscramble:  h l l g n i s i
+Shilling
+10
+
+Unscramble:  h l l s i i c e
+Chillies
+10
+
+Unscramble:  h l l s m u c i
+Chillums
+10
+
+Unscramble:  h l o d i p c o
+Chilopod
+10
+
+Unscramble:  h l r l g e e c n a
+Challenger
+10
+
+Unscramble:  h l u n m i g c
+Mulching
+10
+
+Unscramble:  h l u r s u p
+Sulphur
+10
+
+Unscramble:  h l u t s i e p
+Sulphite
+10
+
+Unscramble:  h m e s m i p
+Memphis
+10
+
+Unscramble:  h m p r e t u
+Thumper
+10
+
+Unscramble:  h n a l y m
+Hymnal
+10
+
+Unscramble:  h n d r a l c e
+Chandler
+10
+
+Unscramble:  h n d s r e t u
+Thunders
+10
+
+Unscramble:  h n e s e m p o
+Phonemes
+10
+
+Unscramble:  h n g i a h s a
+Shanghai
+10
+
+Unscramble:  h n g s t i
+Things
+10
+
+Unscramble:  h n i a e r
+Hernia
+10
+
+Unscramble:  h n i g e r i n
+Inhering
+10
+
+Unscramble:  h n i t s e w i
+Whiniest
+10
+
+Unscramble:  h n k c e c i
+Chicken
+10
+
+Unscramble:  h n m u a
+Human
+10
+
+Unscramble:  h n n h i i t s
+Thinnish
+10
+
+Unscramble:  h n o c i l p e
+Phenolic
+10
+
+Unscramble:  h n o e c i s c
+Conchies
+10
+
+Unscramble:  h n s n o c a
+Chanson
+10
+
+Unscramble:  h n y r l e c
+Lyncher
+10
+
+Unscramble:  h o a c g c i
+Chicago
+10
+
+Unscramble:  h o a d r t t e
+Throated
+10
+
+Unscramble:  h o d y e i t c
+Theodicy
+10
+
+Unscramble:  h o e e t l n e p
+Telephone
+10
+
+Unscramble:  h o e l l
+Hello
+10
+
+Unscramble:  h o o n b d o u l d
+Bloodhound
+10
+
+Unscramble:  h o p n i h t e
+Thiophen
+10
+
+Unscramble:  h o p s i d l s
+Slipshod
+10
+
+Unscramble:  h o r e e i t z
+Theorize
+10
+
+Unscramble:  h o r l b e s t
+Brothels
+10
+
+Unscramble:  h o r s u o c l
+Chlorous
+10
+
+Unscramble:  h o u s d s r
+Shrouds
+10
+
+Unscramble:  h p h d e e s r
+Shepherd
+10
+
+Unscramble:  h p l d a o s i
+Shipload
+10
+
+Unscramble:  h p l n a a c i
+Chaplain
+10
+
+Unscramble:  h p l s t e c a
+Chaplets
+10
+
+Unscramble:  h p m e t a s i
+Shipmate
+10
+
+Unscramble:  h p p r e i w i
+Whippier
+10
+
+Unscramble:  h r d w e c o
+Chowder
+10
+
+Unscramble:  h r e a t
+Earth
+10
+
+Unscramble:  h r e n b i g t
+Berthing
+10
+
+Unscramble:  h r e r o f w e
+Wherefor
+10
+
+Unscramble:  h r g d e c a
+Charged
+10
+
+Unscramble:  h r i w e s o
+Showier
+10
+
+Unscramble:  h r k c e c e
+Checker
+10
+
+Unscramble:  h r l s i e w r
+Whirlers
+10
+
+Unscramble:  h r n o t
+North
+10
+
+Unscramble:  h r o d i t e
+Theroid
+10
+
+Unscramble:  h r p p e c o
+Chopper
+10
+
+Unscramble:  h r p p e w i
+Whipper
+10
+
+Unscramble:  h r s e u
+Usher
+10
+
+Unscramble:  h r s i s c o i r
+Cirrhosis
+10
+
+Unscramble:  h r s r i t t e
+Thirster
+10
+
+Unscramble:  h r s y t t i
+Thirsty
+10
+
+Unscramble:  h r t e o
+Other
+10
+
+Unscramble:  h r t h s i s o
+Shortish
+10
+
+Unscramble:  h r t n e e t i
+Thirteen
+10
+
+Unscramble:  h r t s o i s e
+Shorties
+10
+
+Unscramble:  h s a d n
+Hands
+10
+
+Unscramble:  h s e d a
+Heads
+10
+
+Unscramble:  h s e r o t
+Others
+10
+
+Unscramble:  h s e s o r
+Horses
+10
+
+Unscramble:  h s m c a c a
+Chacmas
+10
+
+Unscramble:  h s o f o
+Hoofs
+10
+
+Unscramble:  h s u c o l g
+Cloughs
+10
+
+Unscramble:  h t a d h e c
+Hatched
+10
+
+Unscramble:  h t a e r
+Heart
+10
+
+Unscramble:  h t e c s c i
+Chicest
+10
+
+Unscramble:  h t e p a c w i
+Whitecap
+10
+
+Unscramble:  h t e r a
+Heart
+10
+
+Unscramble:  h t e t s w i
+Whitest
+10
+
+Unscramble:  h t h o a p g p r o
+Photograph
+10
+
+Unscramble:  h t i d b e c
+Bitched
+10
+
+Unscramble:  h t i t n o g
+Tonight
+10
+
+Unscramble:  h u e c t a c
+Catechu
+10
+
+Unscramble:  h u l a g
+Laugh
+10
+
+Unscramble:  h u l d s o
+Should
+10
+
+Unscramble:  h u l r o d s e
+Shoulder
+10
+
+Unscramble:  h u o n s i g t
+Southing
+10
+
+Unscramble:  h u s s e s c a
+Chausses
+10
+
+Unscramble:  h v a e e r s i
+Shivaree
+10
+
+Unscramble:  h v e r s i
+Shiver
+10
+
+Unscramble:  h x n e i p o
+Phoenix
+10
+
+Unscramble:  h y e v r s i
+Shivery
+10
+
+Unscramble:  h y r e a p c
+Eparchy
+10
+
+Unscramble:  h z o a i b r i
+Rhizobia
+10
+
+Unscramble:  i a c e m i l n
+Limacine
+10
+
+Unscramble:  i a e g h n r
+Hearing
+10
+
+Unscramble:  i a e g h n s d
+Headings
+10
+
+Unscramble:  i a e g p n k
+Peaking
+10
+
+Unscramble:  i a e g r n s d
+Readings
+10
+
+Unscramble:  i a e g t n m
+Teaming
+10
+
+Unscramble:  i a e g w n v
+Weaving
+10
+
+Unscramble:  i a e r s e m
+Seamier
+10
+
+Unscramble:  i a h t c o s r
+Chariots
+10
+
+Unscramble:  i a i a l u n o s
+Louisiana
+10
+
+Unscramble:  i a i a t e c n
+Actiniae
+10
+
+Unscramble:  i a i m g n a c
+Magician
+10
+
+Unscramble:  i a j w c k s t
+Stickjaw
+10
+
+Unscramble:  i a k g o n y
+Okaying
+10
+
+Unscramble:  i a l g f n m
+Flaming
+10
+
+Unscramble:  i a l g f n w
+Flawing
+10
+
+Unscramble:  i a l g s n t
+Slating
+10
+
+Unscramble:  i a l l g o i d
+Gladioli
+10
+
+Unscramble:  i a l n g i m s
+Misalign
+10
+
+Unscramble:  i a l r g e r
+Glarier
+10
+
+Unscramble:  i a l r g e s c
+Glaciers
+10
+
+Unscramble:  i a l w s l d o
+Disallow
+10
+
+Unscramble:  i a n i d
+India
+10
+
+Unscramble:  i a n r l d b e
+Bilander
+10
+
+Unscramble:  i a n t l
+Latin
+10
+
+Unscramble:  i a o a n g s
+Agnosia
+10
+
+Unscramble:  i a o g b n t
+Boating
+10
+
+Unscramble:  i a o g l n f
+Loafing
+10
+
+Unscramble:  i a r d l z
+Lizard
+10
+
+Unscramble:  i a r d w z
+Wizard
+10
+
+Unscramble:  i a r d z d v e
+Vizarded
+10
+
+Unscramble:  i a r s a k b d
+Bidarkas
+10
+
+Unscramble:  i a r u r u p c
+Pirarucu
+10
+
+Unscramble:  i a s t e n h p
+Thespian
+10
+
+Unscramble:  i a t e g u l r
+Ligature
+10
+
+Unscramble:  i a t n s o s t
+Stations
+10
+
+Unscramble:  i a u f d l i c
+Fiducial
+10
+
+Unscramble:  i a u y s t v
+Suavity
+10
+
+Unscramble:  i b a l c o e r
+Cabriole
+10
+
+Unscramble:  i b e s e t d a
+Diabetes
+10
+
+Unscramble:  i b i g n j b
+Jibbing
+10
+
+Unscramble:  i b l g n i k b
+Kibbling
+10
+
+Unscramble:  i b o d e n r b
+Ribboned
+10
+
+Unscramble:  i b o g j n b
+Jobbing
+10
+
+Unscramble:  i b u s e s n m
+Nimbuses
+10
+
+Unscramble:  i c a g h n s k
+Hackings
+10
+
+Unscramble:  i c a k l b t a
+Tailback
+10
+
+Unscramble:  i c a t t i n
+Titanic
+10
+
+Unscramble:  i c d w o e o l
+Woodlice
+10
+
+Unscramble:  i c e a c s s t
+Ascetics
+10
+
+Unscramble:  i c e s r n o
+Recoins
+10
+
+Unscramble:  i c h g n i w n
+Winching
+10
+
+Unscramble:  i c h r t i p e
+Pitchier
+10
+
+Unscramble:  i c i s s e k
+Sickies
+10
+
+Unscramble:  i c n i e t c l
+Enclitic
+10
+
+Unscramble:  i c o a r e b
+Aerobic
+10
+
+Unscramble:  i c o e c n a
+Cocaine
+10
+
+Unscramble:  i c o g h n k
+Hocking
+10
+
+Unscramble:  i c o l a n d a
+Diaconal
+10
+
+Unscramble:  i c o m t i t
+Mitotic
+10
+
+Unscramble:  i c o r s v d e
+Discover
+10
+
+Unscramble:  i c s e a b r
+Ascribe
+10
+
+Unscramble:  i c t g s a r
+Gastric
+10
+
+Unscramble:  i c u e d l t
+Ductile
+10
+
+Unscramble:  i c u r l e k
+Luckier
+10
+
+Unscramble:  i c u t i b s
+Biscuit
+10
+
+Unscramble:  i c y b t u r
+Butyric
+10
+
+Unscramble:  i d a m d r
+Madrid
+10
+
+Unscramble:  i d c e s l
+Sliced
+10
+
+Unscramble:  i d e d e n m l
+Mildened
+10
+
+Unscramble:  i d e d l w m e
+Mildewed
+10
+
+Unscramble:  i d e g r n s w
+Redwings
+10
+
+Unscramble:  i d e t t s h
+Shitted
+10
+
+Unscramble:  i d h c e f l
+Filched
+10
+
+Unscramble:  i d i r g e d
+Giddier
+10
+
+Unscramble:  i d i y l g d
+Giddily
+10
+
+Unscramble:  i d l d e g r
+Girdled
+10
+
+Unscramble:  i d l s y t o
+Styloid
+10
+
+Unscramble:  i d m l l i w n
+Windmill
+10
+
+Unscramble:  i d n a e s d o
+Adenoids
+10
+
+Unscramble:  i d o l g l a z
+Godzilla
+10
+
+Unscramble:  i d r e m o a r
+Airdrome
+10
+
+Unscramble:  i d r s e s t o
+Steroids
+10
+
+Unscramble:  i d t c s s e o
+Cestoids
+10
+
+Unscramble:  i d u p g a r
+Pagurid
+10
+
+Unscramble:  i d y e h d r
+Hydride
+10
+
+Unscramble:  i e a e s d s
+Disease
+10
+
+Unscramble:  i e a i t o d n
+Taenioid
+10
+
+Unscramble:  i e a r t c r
+Cirrate
+10
+
+Unscramble:  i e b d r i f s r
+Firebirds
+10
+
+Unscramble:  i e c q i s u k
+Quickies
+10
+
+Unscramble:  i e c t u r o h
+Touchier
+10
+
+Unscramble:  i e d y l f x
+Fixedly
+10
+
+Unscramble:  i e e b k s a r
+Bakeries
+10
+
+Unscramble:  i e e r r d a f
+Rarefied
+10
+
+Unscramble:  i e e r t e n
+Teenier
+10
+
+Unscramble:  i e e r w e d
+Weedier
+10
+
+Unscramble:  i e e s f s a t
+Safeties
+10
+
+Unscramble:  i e g s r a v n
+Vinegars
+10
+
+Unscramble:  i e g w g r i l
+Wigglier
+10
+
+Unscramble:  i e h c t a r
+Theriac
+10
+
+Unscramble:  i e h l c
+Chile
+10
+
+Unscramble:  i e h s o c b r
+Brioches
+10
+
+Unscramble:  i e i c v s a t
+Cavities
+10
+
+Unscramble:  i e i p c r a f
+Pacifier
+10
+
+Unscramble:  i e i p r s a t
+Parities
+10
+
+Unscramble:  i e i r f f c l
+Cliffier
+10
+
+Unscramble:  i e i r l l f r
+Frillier
+10
+
+Unscramble:  i e i s f e t r
+Fieriest
+10
+
+Unscramble:  i e i s n n w h
+Whinnies
+10
+
+Unscramble:  i e i t p d y f
+Typified
+10
+
+Unscramble:  i e i u p d n t
+Unpitied
+10
+
+Unscramble:  i e l d c k t r
+Trickled
+10
+
+Unscramble:  i e l d e l l b
+Libelled
+10
+
+Unscramble:  i e l e a v s w
+Alewives
+10
+
+Unscramble:  i e l e b l l e
+Libellee
+10
+
+Unscramble:  i e l e f i l n
+Lifeline
+10
+
+Unscramble:  i e l n g s w
+Swingle
+10
+
+Unscramble:  i e l r f f w h
+Whiffler
+10
+
+Unscramble:  i e l r k i l e
+Likelier
+10
+
+Unscramble:  i e l s c k p r
+Prickles
+10
+
+Unscramble:  i e l s s e f r
+Fireless
+10
+
+Unscramble:  i e l s s t g r
+Gristles
+10
+
+Unscramble:  i e l t i s r b
+Trilbies
+10
+
+Unscramble:  i e m c u r h m
+Chummier
+10
+
+Unscramble:  i e m c u r l p
+Clumpier
+10
+
+Unscramble:  i e m g u r r p
+Grumpier
+10
+
+Unscramble:  i e m l s
+Smile
+10
+
+Unscramble:  i e n e m a f l
+Filename
+10
+
+Unscramble:  i e n s c s l e
+Licenses
+10
+
+Unscramble:  i e n s f s t s w
+Swiftness
+10
+
+Unscramble:  i e n s m t p o
+Pimentos
+10
+
+Unscramble:  i e n s s e f n
+Fineness
+10
+
+Unscramble:  i e o g o r l m
+Gloomier
+10
+
+Unscramble:  i e o p i s r r
+Priories
+10
+
+Unscramble:  i e o u h r n l
+Unholier
+10
+
+Unscramble:  i e p i a t f r
+Aperitif
+10
+
+Unscramble:  i e r d i s t y v
+Diversity
+10
+
+Unscramble:  i e r s e i m s
+Miseries
+10
+
+Unscramble:  i e r s p m l
+Prelims
+10
+
+Unscramble:  i e r u p o s c
+Precious
+10
+
+Unscramble:  i e r z u s e
+Seizure
+10
+
+Unscramble:  i e s c e r h t
+Chestier
+10
+
+Unscramble:  i e s e r i f d
+Fireside
+10
+
+Unscramble:  i e s r e t d g
+Digester
+10
+
+Unscramble:  i e s s p o t r
+Triposes
+10
+
+Unscramble:  i e t d g h b l
+Blighted
+10
+
+Unscramble:  i e t d n a u r
+Urinated
+10
+
+Unscramble:  i e t g n s e r
+Gentries
+10
+
+Unscramble:  i e t l y h d m
+Dimethyl
+10
+
+Unscramble:  i e t n n e n e
+Nineteen
+10
+
+Unscramble:  i e t r g h p l
+Plighter
+10
+
+Unscramble:  i e t s n i k c
+Kinetics
+10
+
+Unscramble:  i e t v a p r
+Private
+10
+
+Unscramble:  i e u e p l r
+Puerile
+10
+
+Unscramble:  i e u i j s n r
+Injuries
+10
+
+Unscramble:  i e u s s r e
+Reissue
+10
+
+Unscramble:  i e v r p o s l
+Slipover
+10
+
+Unscramble:  i e w k r o f s r
+Fireworks
+10
+
+Unscramble:  i e w k r o w r
+Wirework
+10
+
+Unscramble:  i e w s k a b y
+Bikeways
+10
+
+Unscramble:  i e w s y a s d
+Sideways
+10
+
+Unscramble:  i f a s l l p t
+Pitfalls
+10
+
+Unscramble:  i f d m o f e
+Fiefdom
+10
+
+Unscramble:  i f e d e r d f
+Differed
+10
+
+Unscramble:  i f f a r a
+Affair
+10
+
+Unscramble:  i f u l b a u e t
+Beautiful
+10
+
+Unscramble:  i f u y l l w l
+Wilfully
+10
+
+Unscramble:  i g a r o p s e n
+Singapore
+10
+
+Unscramble:  i g a s m l n
+Lingams
+10
+
+Unscramble:  i g e d g r j e
+Jiggered
+10
+
+Unscramble:  i g e e b m d r
+Begrimed
+10
+
+Unscramble:  i g e g n i s n
+Singeing
+10
+
+Unscramble:  i g e n b
+Being
+10
+
+Unscramble:  i g e r n g
+Nigger
+10
+
+Unscramble:  i g e y n b o
+Biogeny
+10
+
+Unscramble:  i g i g n b l
+Bilging
+10
+
+Unscramble:  i g i g n s n
+Singing
+10
+
+Unscramble:  i g i l r n v a
+Virginal
+10
+
+Unscramble:  i g i p n p p
+Pipping
+10
+
+Unscramble:  i g i p n s p
+Sipping
+10
+
+Unscramble:  i g i s g n w g
+Wiggings
+10
+
+Unscramble:  i g i t n j l
+Jilting
+10
+
+Unscramble:  i g i t n l l
+Lilting
+10
+
+Unscramble:  i g i t n m l
+Milting
+10
+
+Unscramble:  i g n d i g l
+Gliding
+10
+
+Unscramble:  i g n d i v o
+Voiding
+10
+
+Unscramble:  i g n l i j a
+Jailing
+10
+
+Unscramble:  i g n m i p r
+Priming
+10
+
+Unscramble:  i g n s i r a
+Raising
+10
+
+Unscramble:  i g n s l i s a
+Sailings
+10
+
+Unscramble:  i g n t i s m
+Smiting
+10
+
+Unscramble:  i g o n g
+Going
+10
+
+Unscramble:  i g r e c a d s
+Disgrace
+10
+
+Unscramble:  i g s n o t k n
+Kingston
+10
+
+Unscramble:  i g t n s
+Sting
+10
+
+Unscramble:  i g u e s i d s
+Disguise
+10
+
+Unscramble:  i g u i n i l n
+Linguini
+10
+
+Unscramble:  i h e d a a r
+Airhead
+10
+
+Unscramble:  i h e l s v d e
+Dishevel
+10
+
+Unscramble:  i h e r e t
+Either
+10
+
+Unscramble:  i h e t u s h l o g
+Lighthouse
+10
+
+Unscramble:  i h h c w
+Which
+10
+
+Unscramble:  i h i m u l t
+Lithium
+10
+
+Unscramble:  i h i t s e f s
+Fishiest
+10
+
+Unscramble:  i h r s i
+Irish
+10
+
+Unscramble:  i h s n i s w
+Swinish
+10
+
+Unscramble:  i h t e e s s g
+Sightsee
+10
+
+Unscramble:  i h t g g i r n
+Righting
+10
+
+Unscramble:  i h t r e i m g
+Mightier
+10
+
+Unscramble:  i h t s g e l n
+Lightens
+10
+
+Unscramble:  i h u l n a i a t
+Lithuania
+10
+
+Unscramble:  i i a d n e r
+Denarii
+10
+
+Unscramble:  i i a e l b p t
+Pitiable
+10
+
+Unscramble:  i i a g r n l
+Railing
+10
+
+Unscramble:  i i a n n d
+Indian
+10
+
+Unscramble:  i i a r o t v t
+Vitiator
+10
+
+Unscramble:  i i a t h
+Haiti
+10
+
+Unscramble:  i i c e n o s l
+Silicone
+10
+
+Unscramble:  i i d e e c s f
+Edifices
+10
+
+Unscramble:  i i d k s i m n
+Minidisk
+10
+
+Unscramble:  i i d y r i v t
+Viridity
+10
+
+Unscramble:  i i e s s n z
+Seizins
+10
+
+Unscramble:  i i e t s t d
+Tidiest
+10
+
+Unscramble:  i i f s e i v l
+Vilifies
+10
+
+Unscramble:  i i k s n i m n
+Minikins
+10
+
+Unscramble:  i i l e e t d c
+Elicited
+10
+
+Unscramble:  i i l e v i c s
+Civilise
+10
+
+Unscramble:  i i l o g i v t
+Vitiligo
+10
+
+Unscramble:  i i l y s c
+Sicily
+10
+
+Unscramble:  i i m t n e l n
+Liniment
+10
+
+Unscramble:  i i m t r e d n
+Diriment
+10
+
+Unscramble:  i i n a u l r f
+Unifilar
+10
+
+Unscramble:  i i n g s n p
+Sniping
+10
+
+Unscramble:  i i n s u e t
+Unities
+10
+
+Unscramble:  i i n y l e d v
+Divinely
+10
+
+Unscramble:  i i r e i s d
+Iridise
+10
+
+Unscramble:  i i s r a o n l g
+Originals
+10
+
+Unscramble:  i i t e u s r l
+Utiliser
+10
+
+Unscramble:  i i t s n i r h
+Rhinitis
+10
+
+Unscramble:  i i t s v
+Visit
+10
+
+Unscramble:  i i u e s d s c
+Suicides
+10
+
+Unscramble:  i i v e t a t t
+Titivate
+10
+
+Unscramble:  i k a l r t t
+Titlark
+10
+
+Unscramble:  i k i g n s l
+Silking
+10
+
+Unscramble:  i k i t s e s l
+Silkiest
+10
+
+Unscramble:  i k l d e i s c
+Sicklied
+10
+
+Unscramble:  i k l d e t c
+Tickled
+10
+
+Unscramble:  i k l s e t c
+Tickles
+10
+
+Unscramble:  i k m n a m l
+Milkman
+10
+
+Unscramble:  i k t b a s e n
+Beatniks
+10
+
+Unscramble:  i k w d e e m l
+Milkweed
+10
+
+Unscramble:  i l a d d e l
+Dallied
+10
+
+Unscramble:  i l a d n f n
+Finland
+10
+
+Unscramble:  i l a e l b w l
+Willable
+10
+
+Unscramble:  i l a g g n l
+Galling
+10
+
+Unscramble:  i l a h t t s l
+Talliths
+10
+
+Unscramble:  i l a m l d v o
+Villadom
+10
+
+Unscramble:  i l a r b e m
+Balmier
+10
+
+Unscramble:  i l a s e y l z
+Sleazily
+10
+
+Unscramble:  i l a s s e l
+Sallies
+10
+
+Unscramble:  i l d a e c t
+Citadel
+10
+
+Unscramble:  i l d d e y e
+Yielded
+10
+
+Unscramble:  i l e d a m s
+Mislead
+10
+
+Unscramble:  i l e n h o s l
+Hellions
+10
+
+Unscramble:  i l f s i y h t
+Shiftily
+10
+
+Unscramble:  i l i g g n s d
+Gildings
+10
+
+Unscramble:  i l i n v o
+Violin
+10
+
+Unscramble:  i l i n z o s l
+Zillions
+10
+
+Unscramble:  i l i r s e t
+Siltier
+10
+
+Unscramble:  i l i s e n a r
+Airlines
+10
+
+Unscramble:  i l i s g n p g
+Piglings
+10
+
+Unscramble:  i l i s l o p n
+Pillions
+10
+
+Unscramble:  i l i t f a r
+Airlift
+10
+
+Unscramble:  i l i t s e s l
+Silliest
+10
+
+Unscramble:  i l m f i y l s
+Flimsily
+10
+
+Unscramble:  i l n f i y l t
+Flintily
+10
+
+Unscramble:  i l o d e w b l
+Billowed
+10
+
+Unscramble:  i l o e a g d u
+Dialogue
+10
+
+Unscramble:  i l o h w s f
+Wolfish
+10
+
+Unscramble:  i l o l f c e l
+Follicle
+10
+
+Unscramble:  i l o s o n v e
+Violones
+10
+
+Unscramble:  i l r e g n a
+Engrail
+10
+
+Unscramble:  i l s f i y r k
+Friskily
+10
+
+Unscramble:  i l s p i y r s
+Prissily
+10
+
+Unscramble:  i l t b b o a
+Bobtail
+10
+
+Unscramble:  i l t i a d g
+Digital
+10
+
+Unscramble:  i l t l s
+Still
+10
+
+Unscramble:  i l t p g s i a
+Pigtails
+10
+
+Unscramble:  i l u c o y l d
+Cloudily
+10
+
+Unscramble:  i l u l g b e l
+Gullible
+10
+
+Unscramble:  i l u s b l b
+Bulbils
+10
+
+Unscramble:  i l u y n t l
+Nullity
+10
+
+Unscramble:  i l y g l b d a
+Dillybag
+10
+
+Unscramble:  i m e d r m
+Rimmed
+10
+
+Unscramble:  i m e e r n d a
+Remained
+10
+
+Unscramble:  i m e s m r o
+Memoirs
+10
+
+Unscramble:  i m i s d t w
+Dimwits
+10
+
+Unscramble:  i m n t a v e
+Vietnam
+10
+
+Unscramble:  i m o s d n d a
+Diamonds
+10
+
+Unscramble:  i m r f o u n
+Uniform
+10
+
+Unscramble:  i m u s l e t p
+Lumpiest
+10
+
+Unscramble:  i m u t i t r
+Tritium
+10
+
+Unscramble:  i n a a z b r z
+Zanzibar
+10
+
+Unscramble:  i n a d b g e t
+Debating
+10
+
+Unscramble:  i n a d f g e m
+Defaming
+10
+
+Unscramble:  i n a d i
+India
+10
+
+Unscramble:  i n a g s a o t
+Santiago
+10
+
+Unscramble:  i n a l c c e t
+Canticle
+10
+
+Unscramble:  i n a s f e t c
+Fanciest
+10
+
+Unscramble:  i n a t e g r d
+Treading
+10
+
+Unscramble:  i n a t m d a r
+Tamarind
+10
+
+Unscramble:  i n a u f g n d
+Unfading
+10
+
+Unscramble:  i n b c u g l b
+Clubbing
+10
+
+Unscramble:  i n b d b g a l
+Dabbling
+10
+
+Unscramble:  i n b f u g l b
+Flubbing
+10
+
+Unscramble:  i n b m m g u l
+Mumbling
+10
+
+Unscramble:  i n b n b g i l
+Nibbling
+10
+
+Unscramble:  i n b s a g l b
+Slabbing
+10
+
+Unscramble:  i n b s a g w b
+Swabbing
+10
+
+Unscramble:  i n c b a g e h
+Beaching
+10
+
+Unscramble:  i n c b t g a h
+Batching
+10
+
+Unscramble:  i n c c c e o a
+Coccaine
+10
+
+Unscramble:  i n c h t g i h
+Hitching
+10
+
+Unscramble:  i n c p i g r k
+Pricking
+10
+
+Unscramble:  i n c p r g e h
+Perching
+10
+
+Unscramble:  i n c s i g t k
+Sticking
+10
+
+Unscramble:  i n d h n g a l
+Handling
+10
+
+Unscramble:  i n d s u g m g
+Smudging
+10
+
+Unscramble:  i n d t d g o l
+Toddling
+10
+
+Unscramble:  i n e a c n n t m e a
+Maintenance
+10
+
+Unscramble:  i n e c e g r p
+Creeping
+10
+
+Unscramble:  i n e c p s a l
+Capelins
+10
+
+Unscramble:  i n e d d s w
+Swidden
+10
+
+Unscramble:  i n e d l g e t
+Deleting
+10
+
+Unscramble:  i n e g v n t
+Venting
+10
+
+Unscramble:  i n e g w n d
+Wending
+10
+
+Unscramble:  i n e h n g o y
+Honeying
+10
+
+Unscramble:  i n e l s b y s
+Sensibly
+10
+
+Unscramble:  i n e l v b e d
+Vendible
+10
+
+Unscramble:  i n e q i g u t
+Quieting
+10
+
+Unscramble:  i n e r m s a k
+Ramekins
+10
+
+Unscramble:  i n e t e f f
+Fifteen
+10
+
+Unscramble:  i n e t s n
+Tennis
+10
+
+Unscramble:  i n g b r a a
+Bargain
+10
+
+Unscramble:  i n g j n g a l
+Jangling
+10
+
+Unscramble:  i n g l u g a h
+Laughing
+10
+
+Unscramble:  i n g p n e u
+Penguin
+10
+
+Unscramble:  i n g s o g l g
+Slogging
+10
+
+Unscramble:  i n i d n p p e
+Pinniped
+10
+
+Unscramble:  i n i g f n k
+Finking
+10
+
+Unscramble:  i n i g f t s h
+Shifting
+10
+
+Unscramble:  i n i g g g t w
+Twigging
+10
+
+Unscramble:  i n i g g h w e
+Weighing
+10
+
+Unscramble:  i n i g l l s p
+Spilling
+10
+
+Unscramble:  i n i g n g s t
+Stinging
+10
+
+Unscramble:  i n i g n k c l
+Clinking
+10
+
+Unscramble:  i n i g n t n
+Tinning
+10
+
+Unscramble:  i n i g n t p a
+Painting
+10
+
+Unscramble:  i n i g n t s a
+Sainting
+10
+
+Unscramble:  i n i g n t s t
+Stinting
+10
+
+Unscramble:  i n i g p l t r
+Tripling
+10
+
+Unscramble:  i n i g p n g
+Pinging
+10
+
+Unscramble:  i n i i d g n t
+Inditing
+10
+
+Unscramble:  i n i m t g o v
+Motiving
+10
+
+Unscramble:  i n i r s g e d
+Residing
+10
+
+Unscramble:  i n i s a g t n
+Staining
+10
+
+Unscramble:  i n i s u g l c
+Sluicing
+10
+
+Unscramble:  i n i t a b r
+Britain
+10
+
+Unscramble:  i n k r n g a l
+Rankling
+10
+
+Unscramble:  i n l c u g a k
+Caulking
+10
+
+Unscramble:  i n l o o e d
+Eidolon
+10
+
+Unscramble:  i n m c a g h p
+Champing
+10
+
+Unscramble:  i n m c i g l b
+Climbing
+10
+
+Unscramble:  i n m c u g r b
+Crumbing
+10
+
+Unscramble:  i n m p o e t a
+Ptomaine
+10
+
+Unscramble:  i n n a a e m d
+Amandine
+10
+
+Unscramble:  i n n c i g l k
+Clinking
+10
+
+Unscramble:  i n n h u g o d
+Hounding
+10
+
+Unscramble:  i n n r u g o d
+Rounding
+10
+
+Unscramble:  i n n s a g t d
+Standing
+10
+
+Unscramble:  i n n s e g c t
+Scenting
+10
+
+Unscramble:  i n n s i g w k
+Swinking
+10
+
+Unscramble:  i n n s u g h n
+Shunning
+10
+
+Unscramble:  i n n s u g o d
+Sounding
+10
+
+Unscramble:  i n o c l l n
+Lincoln
+10
+
+Unscramble:  i n o l l q u
+Quillon
+10
+
+Unscramble:  i n o r e w w n
+Winnower
+10
+
+Unscramble:  i n o s c r o m
+Omicrons
+10
+
+Unscramble:  i n o w d g i w
+Widowing
+10
+
+Unscramble:  i n p r p g i l
+Rippling
+10
+
+Unscramble:  i n p s p g u l
+Suppling
+10
+
+Unscramble:  i n p t g o s s
+Signpost
+10
+
+Unscramble:  i n r b a g o d
+Boarding
+10
+
+Unscramble:  i n r g e s h k
+Gherkins
+10
+
+Unscramble:  i n r i b g m u
+Imbruing
+10
+
+Unscramble:  i n r s a g t l
+Starling
+10
+
+Unscramble:  i n r s c o u n
+Unicorns
+10
+
+Unscramble:  i n r u u g s p
+Usurping
+10
+
+Unscramble:  i n s c o g r s
+Crossing
+10
+
+Unscramble:  i n s h s g a l
+Hassling
+10
+
+Unscramble:  i n s i e a d o n t t
+Destination
+10
+
+Unscramble:  i n s s a g m h
+Smashing
+10
+
+Unscramble:  i n t c r e a
+Certain
+10
+
+Unscramble:  i n t f r g a h
+Farthing
+10
+
+Unscramble:  i n t h e l g
+Lighten
+10
+
+Unscramble:  i n t n s g e l
+Nestling
+10
+
+Unscramble:  i n t s e g t t
+Stetting
+10
+
+Unscramble:  i n u e c g x s
+Excusing
+10
+
+Unscramble:  i n u g h n t
+Hunting
+10
+
+Unscramble:  i n u g o g r t
+Grouting
+10
+
+Unscramble:  i n u h r s t
+Runtish
+10
+
+Unscramble:  i n u k p m c h
+Chipmunk
+10
+
+Unscramble:  i n w s o g c l
+Scowling
+10
+
+Unscramble:  i n w t r e a h
+Tarwhine
+10
+
+Unscramble:  i o a g r l e n
+Geraniol
+10
+
+Unscramble:  i o a r c
+Cairo
+10
+
+Unscramble:  i o c e n h p l
+Pinochle
+10
+
+Unscramble:  i o c s t u l n
+Linocuts
+10
+
+Unscramble:  i o c t c h r e
+Ricochet
+10
+
+Unscramble:  i o c t u l n
+Linocut
+10
+
+Unscramble:  i o e h n t l
+Neolith
+10
+
+Unscramble:  i o e i t r n r
+Interior
+10
+
+Unscramble:  i o g c a c h
+Chicago
+10
+
+Unscramble:  i o g e a s s n
+Agonises
+10
+
+Unscramble:  i o g m l r k a
+Kilogram
+10
+
+Unscramble:  i o i o l n b v
+Oblivion
+10
+
+Unscramble:  i o n t g s s m
+Gnomists
+10
+
+Unscramble:  i o o g l n k
+Looking
+10
+
+Unscramble:  i o o g r n t
+Rooting
+10
+
+Unscramble:  i o r r v c d e
+Divorcer
+10
+
+Unscramble:  i o r t s i r g
+Rigorist
+10
+
+Unscramble:  i o s r n a d u
+Dinosaur
+10
+
+Unscramble:  i o s s i n c s
+Scission
+10
+
+Unscramble:  i o u s l n o t
+Solution
+10
+
+Unscramble:  i p a g z n p
+Zapping
+10
+
+Unscramble:  i p a s i t c o m
+Simpatico
+10
+
+Unscramble:  i p a u c o s t
+Captious
+10
+
+Unscramble:  i p e e r l s t
+Reptiles
+10
+
+Unscramble:  i p i g h n p
+Hipping
+10
+
+Unscramble:  i p l e s a d c
+Displace
+10
+
+Unscramble:  i p l r a
+April
+10
+
+Unscramble:  i p l r e s m
+Simpler
+10
+
+Unscramble:  i p l t s a d n
+Displant
+10
+
+Unscramble:  i p n a o c c r r
+Capricorn
+10
+
+Unscramble:  i p n a s
+Spain
+10
+
+Unscramble:  i p n e p s i l r c
+Principles
+10
+
+Unscramble:  i p s y b o
+Biopsy
+10
+
+Unscramble:  i p t c i r d o
+Dioptric
+10
+
+Unscramble:  i p u r r c h
+Chirrup
+10
+
+Unscramble:  i p u y r r c h
+Chirrupy
+10
+
+Unscramble:  i q e m r e u
+Requiem
+10
+
+Unscramble:  i r a a h d n r
+Harridan
+10
+
+Unscramble:  i r a a p z n t
+Partizan
+10
+
+Unscramble:  i r a d b t v e
+Vibrated
+10
+
+Unscramble:  i r a e t v b
+Vibrate
+10
+
+Unscramble:  i r a g c l
+Garlic
+10
+
+Unscramble:  i r a g p n s
+Parsing
+10
+
+Unscramble:  i r a i m n s t
+Martinis
+10
+
+Unscramble:  i r a r w o r
+Warrior
+10
+
+Unscramble:  i r a s a m d o
+Dioramas
+10
+
+Unscramble:  i r a s w e t t
+Wartiest
+10
+
+Unscramble:  i r e a v c l t
+Vertical
+10
+
+Unscramble:  i r e c i t d u
+Diuretic
+10
+
+Unscramble:  i r e g p n m
+Perming
+10
+
+Unscramble:  i r e i b t l t
+Libretti
+10
+
+Unscramble:  i r e l i r o
+Roilier
+10
+
+Unscramble:  i r e l v c e s
+Versicle
+10
+
+Unscramble:  i r e n s e t v
+Servient
+10
+
+Unscramble:  i r e s f e t n
+Ferniest
+10
+
+Unscramble:  i r e s i s d e
+Dieresis
+10
+
+Unscramble:  i r e s l d b u
+Builders
+10
+
+Unscramble:  i r e s s p c r
+Crispers
+10
+
+Unscramble:  i r e s t e r
+Terries
+10
+
+Unscramble:  i r e s t h b l
+Blithers
+10
+
+Unscramble:  i r e s t t w
+Twister
+10
+
+Unscramble:  i r e t t s k
+Skitter
+10
+
+Unscramble:  i r e y j l k
+Jerkily
+10
+
+Unscramble:  i r g s n d o b
+Songbird
+10
+
+Unscramble:  i r h c e d t
+Ditcher
+10
+
+Unscramble:  i r i e t f s p
+Spitfire
+10
+
+Unscramble:  i r i s e d a
+Diaries
+10
+
+Unscramble:  i r i s e d n t
+Nitrides
+10
+
+Unscramble:  i r i y l f e
+Fierily
+10
+
+Unscramble:  i r l d e k n
+Kindler
+10
+
+Unscramble:  i r l f e r f
+Riffler
+10
+
+Unscramble:  i r l g e h g
+Higgler
+10
+
+Unscramble:  i r n a b
+Brain
+10
+
+Unscramble:  i r o d w e r
+Worried
+10
+
+Unscramble:  i r o g p d e r
+Porridge
+10
+
+Unscramble:  i r o l h d y r
+Horridly
+10
+
+Unscramble:  i r s e h d s e v
+Dervishes
+10
+
+Unscramble:  i r t e w r
+Writer
+10
+
+Unscramble:  i r t i o v s
+Visitor
+10
+
+Unscramble:  i r u g c n l
+Curling
+10
+
+Unscramble:  i r u o s v r v
+Survivor
+10
+
+Unscramble:  i r u s m e t k
+Murkiest
+10
+
+Unscramble:  i s a b t t o n
+Botanist
+10
+
+Unscramble:  i s a g l n h
+Lashing
+10
+
+Unscramble:  i s a g t n t
+Tasting
+10
+
+Unscramble:  i s a p l e o r
+Polarise
+10
+
+Unscramble:  i s a s t e t t
+Tastiest
+10
+
+Unscramble:  i s a t t e o l
+Totalise
+10
+
+Unscramble:  i s a u l v s
+Visuals
+10
+
+Unscramble:  i s a w m e o n
+Womanise
+10
+
+Unscramble:  i s a w m w g
+Wigwams
+10
+
+Unscramble:  i s b e a l d e
+Abseiled
+10
+
+Unscramble:  i s c l t i h
+Litchis
+10
+
+Unscramble:  i s d e n f r
+Friends
+10
+
+Unscramble:  i s d t a h o f
+Toadfish
+10
+
+Unscramble:  i s e b r d b
+Dibbers
+10
+
+Unscramble:  i s e e v g s t
+Vestiges
+10
+
+Unscramble:  i s e e z f r
+Friezes
+10
+
+Unscramble:  i s e g n e s
+Genesis
+10
+
+Unscramble:  i s e g r s n
+Singers
+10
+
+Unscramble:  i s e g r w n
+Wingers
+10
+
+Unscramble:  i s e k n d c
+Dickens
+10
+
+Unscramble:  i s e n c o s
+Cession
+10
+
+Unscramble:  i s e n c p r
+Princes
+10
+
+Unscramble:  i s e o t n l i e v
+Television
+10
+
+Unscramble:  i s e p l t r
+Triples
+10
+
+Unscramble:  i s e r s t g
+Tigress
+10
+
+Unscramble:  i s e t c i j u
+Juiciest
+10
+
+Unscramble:  i s e z z c h
+Chizzes
+10
+
+Unscramble:  i s h c e d t
+Ditches
+10
+
+Unscramble:  i s h e p m u u
+Euphuism
+10
+
+Unscramble:  i s h s r i a p
+Airships
+10
+
+Unscramble:  i s i m o l s c
+Sciolism
+10
+
+Unscramble:  i s i m o t i d
+Idiotism
+10
+
+Unscramble:  i s k s n i p g
+Pigskins
+10
+
+Unscramble:  i s l m a a n
+Animals
+10
+
+Unscramble:  i s n a c
+Incas
+10
+
+Unscramble:  i s n g t h
+Things
+10
+
+Unscramble:  i s n s o u n
+Unisons
+10
+
+Unscramble:  i s o a g w n n t h
+Washington
+10
+
+Unscramble:  i s o e n p g
+Pigeons
+10
+
+Unscramble:  i s o r g m i r
+Rigorism
+10
+
+Unscramble:  i s o s i t c l
+Sciolist
+10
+
+Unscramble:  i s p s m t i l
+Simplist
+10
+
+Unscramble:  i s p s r e u r
+Surprise
+10
+
+Unscramble:  i s r a a m l m
+Alarmism
+10
+
+Unscramble:  i s r d e r a
+Raiders
+10
+
+Unscramble:  i s r t o b s
+Bistros
+10
+
+Unscramble:  i s s e l t c e t
+Testicles
+10
+
+Unscramble:  i s s i c r
+Crisis
+10
+
+Unscramble:  i s t g h h e
+Heights
+10
+
+Unscramble:  i s t p i r a r
+Airstrip
+10
+
+Unscramble:  i s t r e d a
+Diaster
+10
+
+Unscramble:  i s t s s e m p
+Missteps
+10
+
+Unscramble:  i s u g r n t
+Rusting
+10
+
+Unscramble:  i s u p t i r
+Pituris
+10
+
+Unscramble:  i s w b o h l f
+Blowfish
+10
+
+Unscramble:  i t a a i c l r
+Iatrical
+10
+
+Unscramble:  i t a c t e a m
+Catamite
+10
+
+Unscramble:  i t a e l l a r
+Arillate
+10
+
+Unscramble:  i t a i h s n b
+Inhabits
+10
+
+Unscramble:  i t a k r n s f
+Ratfinks
+10
+
+Unscramble:  i t a p r e a s
+Parasite
+10
+
+Unscramble:  i t a s b e y r
+Sybarite
+10
+
+Unscramble:  i t a s s k m e
+Mistakes
+10
+
+Unscramble:  i t a t c n s m
+Catmints
+10
+
+Unscramble:  i t a t p o r
+Patriot
+10
+
+Unscramble:  i t c s d u o v
+Oviducts
+10
+
+Unscramble:  i t e d e r s n
+Sintered
+10
+
+Unscramble:  i t e f d y i l
+Fidelity
+10
+
+Unscramble:  i t e s c k t h
+Thickets
+10
+
+Unscramble:  i t e s r s t
+Sitters
+10
+
+Unscramble:  i t e y l r s s
+Sisterly
+10
+
+Unscramble:  i t i e n l r
+Nitrile
+10
+
+Unscramble:  i t i e n t s r
+Nitrites
+10
+
+Unscramble:  i t i g n d e
+Dieting
+10
+
+Unscramble:  i t i i f y n n
+Infinity
+10
+
+Unscramble:  i t i n b y o l
+Nobility
+10
+
+Unscramble:  i t i t t e b s
+Bittiest
+10
+
+Unscramble:  i t l o t e m e s
+Mistletoe
+10
+
+Unscramble:  i t o e h n l
+Hotline
+10
+
+Unscramble:  i t o f v e a r
+Favorite
+10
+
+Unscramble:  i t o i e u n l g d l
+Guillotined
+10
+
+Unscramble:  i t o r p s e s
+Reposits
+10
+
+Unscramble:  i t o s r v c
+Victors
+10
+
+Unscramble:  i t s d e a r
+Aridest
+10
+
+Unscramble:  i t s s n s u u
+Sunsuits
+10
+
+Unscramble:  i t s t s e b u u t
+Substitute
+10
+
+Unscramble:  i t u m t y a r
+Maturity
+10
+
+Unscramble:  i t u n o s p
+Spinout
+10
+
+Unscramble:  i t u s e r m x
+Mixtures
+10
+
+Unscramble:  i t u s e r p c
+Pictures
+10
+
+Unscramble:  i t u s o t f
+Outfits
+10
+
+Unscramble:  i t w s t
+Twist
+10
+
+Unscramble:  i u f l t h f a
+Faithful
+10
+
+Unscramble:  i u h g c n a r
+Churinga
+10
+
+Unscramble:  i u i c n m o d
+Conidium
+10
+
+Unscramble:  i u l g f n x
+Fluxing
+10
+
+Unscramble:  i u p n u s a l
+Nauplius
+10
+
+Unscramble:  i u r e t a f g
+Figurate
+10
+
+Unscramble:  i u r g n i f g
+Figuring
+10
+
+Unscramble:  i u r l c b e c
+Crucible
+10
+
+Unscramble:  i u t t a n e l n e
+Lieutenant
+10
+
+Unscramble:  i u v l a i d l
+Diluvial
+10
+
+Unscramble:  i v a a l e b t
+Ablative
+10
+
+Unscramble:  i v p a a e d t
+Adaptive
+10
+
+Unscramble:  i w a g b n l
+Bawling
+10
+
+Unscramble:  i w a h i a
+Hawaii
+10
+
+Unscramble:  i w e s b l a
+Bewails
+10
+
+Unscramble:  i w o t l w h
+Whitlow
+10
+
+Unscramble:  i x i n m o s t
+Mixtions
+10
+
+Unscramble:  i y a e h d s r
+Hayrides
+10
+
+Unscramble:  i y a e w d s s
+Waysides
+10
+
+Unscramble:  i y a i r b l
+Biliary
+10
+
+Unscramble:  i y a r f
+Fairy
+10
+
+Unscramble:  i y a t l
+Italy
+10
+
+Unscramble:  i y c t t s s s i l
+Stylistics
+10
+
+Unscramble:  i y d a f r
+Friday
+10
+
+Unscramble:  i y i t l n f
+Niftily
+10
+
+Unscramble:  i y l e b a
+Bailey
+10
+
+Unscramble:  i y n i e i s t b l s
+Sensibility
+10
+
+Unscramble:  i y o s e k d s
+Disyokes
+10
+
+Unscramble:  i y r e l m s
+Miserly
+10
+
+Unscramble:  i y t d i a v
+Avidity
+10
+
+Unscramble:  i y t l a
+Italy
+10
+
+Unscramble:  i y v r o
+Ivory
+10
+
+Unscramble:  i z a a k e l l
+Alkalize
+10
+
+Unscramble:  i z a w m e o n
+Womanize
+10
+
+Unscramble:  i z i s f e t z
+Fizziest
+10
+
+Unscramble:  i z n q a e u t
+Quantize
+10
+
+Unscramble:  j a r u f o s b
+Frabjous
+10
+
+Unscramble:  j c t e e i e v
+Ejective
+10
+
+Unscramble:  j g i c h a k h
+Highjack
+10
+
+Unscramble:  j n a a p
+Japan
+10
+
+Unscramble:  j n p a a
+Japan
+10
+
+Unscramble:  j n r s o u s o
+Sojourns
+10
+
+Unscramble:  j r r u o
+Juror
+10
+
+Unscramble:  j s a w i g
+Jigsaw
+10
+
+Unscramble:  j x e d i n
+Jinxed
+10
+
+Unscramble:  k a b l c
+Black
+10
+
+Unscramble:  k a e y n
+Kenya
+10
+
+Unscramble:  k a h n w i g c
+Whacking
+10
+
+Unscramble:  k a l a a s
+Alaska
+10
+
+Unscramble:  k a l n p i g n
+Planking
+10
+
+Unscramble:  k a l r s e s c
+Slackers
+10
+
+Unscramble:  k a l s b e t n
+Blankest
+10
+
+Unscramble:  k a n r k e y c
+Knackery
+10
+
+Unscramble:  k a o l a
+Koala
+10
+
+Unscramble:  k a t b i s r z
+Britzkas
+10
+
+Unscramble:  k a t r c
+Track
+10
+
+Unscramble:  k a w s s e t n
+Swankest
+10
+
+Unscramble:  k c e n d i g o
+Decoking
+10
+
+Unscramble:  k e a e b d m r
+Embarked
+10
+
+Unscramble:  k e c c p s u a
+Cupcakes
+10
+
+Unscramble:  k e c p n s a a
+Pancakes
+10
+
+Unscramble:  k e h r c e c
+Checker
+10
+
+Unscramble:  k e h u s n n a
+Unshaken
+10
+
+Unscramble:  k e i s r d h e
+Shrieked
+10
+
+Unscramble:  k e l y b l a
+Bleakly
+10
+
+Unscramble:  k e m h y r a a
+Haymaker
+10
+
+Unscramble:  k e r r b e a
+Breaker
+10
+
+Unscramble:  k h o s k o s Y
+Skyhooks
+10
+
+Unscramble:  k i h n s i g r
+Shirking
+10
+
+Unscramble:  k i h r s e s r
+Shirkers
+10
+
+Unscramble:  k i l n f i g c
+Flicking
+10
+
+Unscramble:  k i r t b e s s
+Briskets
+10
+
+Unscramble:  k i s n k
+Kinks
+10
+
+Unscramble:  k i t r s e s n
+Stinkers
+10
+
+Unscramble:  k l a b s y
+Skylab
+10
+
+Unscramble:  k l i n o i s s
+Oilskins
+10
+
+Unscramble:  k l l s s u
+Skulls
+10
+
+Unscramble:  k l l t e s i
+Skillet
+10
+
+Unscramble:  k n a d s t i n
+Inkstand
+10
+
+Unscramble:  k n e a s
+Snake
+10
+
+Unscramble:  k o n d k e c
+Knocked
+10
+
+Unscramble:  k o n u k o t c
+Knockout
+10
+
+Unscramble:  k o r c s o
+Crooks
+10
+
+Unscramble:  k o r d c e a
+Croaked
+10
+
+Unscramble:  k o s t r
+Stork
+10
+
+Unscramble:  k r e s e n w a
+Wakeners
+10
+
+Unscramble:  k r m h s i s i
+Skirmish
+10
+
+Unscramble:  k r t n s i g i
+Striking
+10
+
+Unscramble:  k s a s y i s l
+Skysails
+10
+
+Unscramble:  k s a u m n s
+Unmasks
+10
+
+Unscramble:  k s i k n
+Kinks
+10
+
+Unscramble:  k s n i g
+Kings
+10
+
+Unscramble:  k u n e k l d c
+Knuckled
+10
+
+Unscramble:  k u r a t m n c
+Truckman
+10
+
+Unscramble:  k w b d l a s e
+Skewbald
+10
+
+Unscramble:  k y a s u q w
+Squawky
+10
+
+Unscramble:  l a b i y
+Libya
+10
+
+Unscramble:  l a c d a r u
+Dracula
+10
+
+Unscramble:  l a c s a a p
+Alpacas
+10
+
+Unscramble:  l a c s a c p o
+Polaccas
+10
+
+Unscramble:  l a c u c f e
+Felucca
+10
+
+Unscramble:  l a d e n d e
+Delenda
+10
+
+Unscramble:  l a d r e n c a
+Calendar
+10
+
+Unscramble:  l a d t a x o f
+Toadflax
+10
+
+Unscramble:  l a e a m o f t
+Meatloaf
+10
+
+Unscramble:  l a e b t
+Table
+10
+
+Unscramble:  l a e n v s o l
+Novellas
+10
+
+Unscramble:  l a i r d f o
+Florida
+10
+
+Unscramble:  l a l d e l d b g r a
+Gallbladder
+10
+
+Unscramble:  l a l s b a f a
+Falbalas
+10
+
+Unscramble:  l a n d w Y o p
+Downplay
+10
+
+Unscramble:  l a n e u i d l
+Unallied
+10
+
+Unscramble:  l a p n s i g r
+Sparling
+10
+
+Unscramble:  l a r e b i r w
+Brawlier
+10
+
+Unscramble:  l a r m o g k i
+Kilogram
+10
+
+Unscramble:  l a r s h u s o g
+Hourglass
+10
+
+Unscramble:  l a r y e w c a
+Clearway
+10
+
+Unscramble:  l a s h l
+Shall
+10
+
+Unscramble:  l a t a o r s s b
+Albatross
+10
+
+Unscramble:  l a t e v i i l
+Illative
+10
+
+Unscramble:  l a u g b e
+Beluga
+10
+
+Unscramble:  l a v g e i s n
+Sleaving
+10
+
+Unscramble:  l b a n b i g b
+Babbling
+10
+
+Unscramble:  l b l a e
+Label
+10
+
+Unscramble:  l b m n a a t u
+Ambulant
+10
+
+Unscramble:  l b m n a c u
+Clubman
+10
+
+Unscramble:  l b o d b e s
+Bobsled
+10
+
+Unscramble:  l b o n w i g b
+Wobbling
+10
+
+Unscramble:  l c c s o t u
+Occults
+10
+
+Unscramble:  l c e a p i r u
+Peculiar
+10
+
+Unscramble:  l c e l o r g y
+Glycerol
+10
+
+Unscramble:  l c e n a m p a
+Placeman
+10
+
+Unscramble:  l c k t s e s a
+Slackest
+10
+
+Unscramble:  l c l i a
+Lilac
+10
+
+Unscramble:  l c n a a a m
+Almanac
+10
+
+Unscramble:  l c s o e l p a
+Escallop
+10
+
+Unscramble:  l c s s l u m o
+Molluscs
+10
+
+Unscramble:  l c t m e r p u
+Plectrum
+10
+
+Unscramble:  l c t t i g o
+Glottic
+10
+
+Unscramble:  l d b p e s i a
+Piebalds
+10
+
+Unscramble:  l d e i n r e
+Relined
+10
+
+Unscramble:  l d e l i g u
+Gullied
+10
+
+Unscramble:  l d e s r e u
+Eluders
+10
+
+Unscramble:  l d e s r g i
+Gliders
+10
+
+Unscramble:  l d g w r s e i
+Wergilds
+10
+
+Unscramble:  l d i r d e s d
+Diddlers
+10
+
+Unscramble:  l d n a e g e
+Gleaned
+10
+
+Unscramble:  l d n s a e g s
+Gladness
+10
+
+Unscramble:  l d r r e b u
+Blurred
+10
+
+Unscramble:  l d u s h e d
+Huddles
+10
+
+Unscramble:  l e a b t g o
+Globate
+10
+
+Unscramble:  l e a c p a
+Palace
+10
+
+Unscramble:  l e a c t p i
+Plicate
+10
+
+Unscramble:  l e a e u d q l
+Equalled
+10
+
+Unscramble:  l e a e v
+Leave
+10
+
+Unscramble:  l e a m t d e l
+Metalled
+10
+
+Unscramble:  l e a t e d r d
+Treadled
+10
+
+Unscramble:  l e a t m y o l
+Tomalley
+10
+
+Unscramble:  l e a w g f o
+Flowage
+10
+
+Unscramble:  l e b d r i b u
+Bluebird
+10
+
+Unscramble:  l e b g a d r b
+Grabbled
+10
+
+Unscramble:  l e b l u e b l
+Bluebell
+10
+
+Unscramble:  l e c k u s n k
+Knuckles
+10
+
+Unscramble:  l e c r a n b a
+Balancer
+10
+
+Unscramble:  l e c s i s t k
+Stickles
+10
+
+Unscramble:  l e d c n d o o
+Condoled
+10
+
+Unscramble:  l e d r a n i n
+Inlander
+10
+
+Unscramble:  l e d r o a u n
+Unloader
+10
+
+Unscramble:  l e d u b i m l
+Bdellium
+10
+
+Unscramble:  l e e r p r e l
+Repeller
+10
+
+Unscramble:  l e e u r d n e
+Unreeled
+10
+
+Unscramble:  l e f h s i b u
+Bluefish
+10
+
+Unscramble:  l e g d i a f o
+Foliaged
+10
+
+Unscramble:  l e g d o n b e
+Belonged
+10
+
+Unscramble:  l e h g r o y o
+Rheology
+10
+
+Unscramble:  l e h p n s i o
+Pinholes
+10
+
+Unscramble:  l e i d i f u g
+Uglified
+10
+
+Unscramble:  l e i s a x g a
+Galaxies
+10
+
+Unscramble:  l e i s o n c o
+Colonies
+10
+
+Unscramble:  l e l c l e u
+Cellule
+10
+
+Unscramble:  l e m s c o w e
+Welcomes
+10
+
+Unscramble:  l e n a s c e
+Cleanse
+10
+
+Unscramble:  l e n s e a k
+Alkenes
+10
+
+Unscramble:  l e o b o t r k
+Brooklet
+10
+
+Unscramble:  l e o c g s a u
+Cagoules
+10
+
+Unscramble:  l e o d r a
+Ordeal
+10
+
+Unscramble:  l e p r e b e
+Bleeper
+10
+
+Unscramble:  l e p r l o g a
+Galloper
+10
+
+Unscramble:  l e p s e e s r
+Sleepers
+10
+
+Unscramble:  l e r n e m a d
+Aldermen
+10
+
+Unscramble:  l e s d i p e c
+Eclipsed
+10
+
+Unscramble:  l e s e f
+Feels
+10
+
+Unscramble:  l e s e m o g e
+Gleesome
+10
+
+Unscramble:  l e s m l
+Smell
+10
+
+Unscramble:  l e s s a s m o
+Molasses
+10
+
+Unscramble:  l e s t e
+Steel
+10
+
+Unscramble:  l e s w e r t
+Wrestle
+10
+
+Unscramble:  l e t e o t a l
+Allottee
+10
+
+Unscramble:  l e v i o a d r
+Overlaid
+10
+
+Unscramble:  l e v v l s a u
+Valvules
+10
+
+Unscramble:  l e w n s i g a
+Swealing
+10
+
+Unscramble:  l e w r l o m e
+Mellower
+10
+
+Unscramble:  l e w r l o s a
+Sallower
+10
+
+Unscramble:  l f e n d i g i
+Defiling
+10
+
+Unscramble:  l f e n r i g i
+Refiling
+10
+
+Unscramble:  l f u r m e f
+Muffler
+10
+
+Unscramble:  l g a n w i g g
+Waggling
+10
+
+Unscramble:  l g a r h e s g
+Hagglers
+10
+
+Unscramble:  l g h d e t f i
+Flighted
+10
+
+Unscramble:  l g h d i t a e
+Alighted
+10
+
+Unscramble:  l g h e l o p u
+Plughole
+10
+
+Unscramble:  l g i d n s i
+Sliding
+10
+
+Unscramble:  l g i s c a e e
+Elegiacs
+10
+
+Unscramble:  l g i s g o o
+Gigolos
+10
+
+Unscramble:  l g i t s e e
+Elegist
+10
+
+Unscramble:  l g n f i w o
+Wolfing
+10
+
+Unscramble:  l g n l i t e
+Telling
+10
+
+Unscramble:  l g n s i p u
+Pulsing
+10
+
+Unscramble:  l g n s l i f a
+Fallings
+10
+
+Unscramble:  l g n s l i f i
+Fillings
+10
+
+Unscramble:  l g n t i m e
+Melting
+10
+
+Unscramble:  l g u e e a
+League
+10
+
+Unscramble:  l g u s j e g
+Juggles
+10
+
+Unscramble:  l g y n i
+Lying
+10
+
+Unscramble:  l h a s t e a a
+Althaeas
+10
+
+Unscramble:  l h e a s
+Shale
+10
+
+Unscramble:  l h i t n i y i
+Nihility
+10
+
+Unscramble:  l h l e s
+Shell
+10
+
+Unscramble:  l h n u c
+Lunch
+10
+
+Unscramble:  l i a e c n a l
+Alliance
+10
+
+Unscramble:  l i b d a c i o
+Diabolic
+10
+
+Unscramble:  l i b s m c y o
+Symbolic
+10
+
+Unscramble:  l i c e g i a d
+Algicide
+10
+
+Unscramble:  l i d n d n o a e
+Dandelion
+10
+
+Unscramble:  l i d s e e b
+Edibles
+10
+
+Unscramble:  l i g g n i i
+Gingili
+10
+
+Unscramble:  l i k n s a e p
+Skiplane
+10
+
+Unscramble:  l i n t e y m s o
+Solemnity
+10
+
+Unscramble:  l i n y l p a
+Plainly
+10
+
+Unscramble:  l i p a s w y l
+Spillway
+10
+
+Unscramble:  l i p g s a e l
+Spillage
+10
+
+Unscramble:  l i q d l u i i
+Illiquid
+10
+
+Unscramble:  l i r a l e g a
+Galleria
+10
+
+Unscramble:  l i r n g i g l
+Grilling
+10
+
+Unscramble:  l i r n i g a
+Glairin
+10
+
+Unscramble:  l i r n t a e p
+Triplane
+10
+
+Unscramble:  l i s s a k h h
+Shashlik
+10
+
+Unscramble:  l i t c a c g a
+Galactic
+10
+
+Unscramble:  l i t c a n a t
+Atlantic
+10
+
+Unscramble:  l i t c e c e c
+Eclectic
+10
+
+Unscramble:  l i t r a
+Trial
+10
+
+Unscramble:  l i t s a n a t
+Atlantis
+10
+
+Unscramble:  l i t s v i v u
+Vulvitis
+10
+
+Unscramble:  l i u a e l a l
+Alleluia
+10
+
+Unscramble:  l j a n c i g o
+Cajoling
+10
+
+Unscramble:  l l e t a g u
+Gluteal
+10
+
+Unscramble:  l l i g n y e a
+Genially
+10
+
+Unscramble:  l l i m d y e a
+Medially
+10
+
+Unscramble:  l l i y t r s u
+Sultrily
+10
+
+Unscramble:  l l t m r y o a
+Mortally
+10
+
+Unscramble:  l m a d e g p u
+Plumaged
+10
+
+Unscramble:  l m a d i x c e
+Climaxed
+10
+
+Unscramble:  l m a e c e r e
+Cameleer
+10
+
+Unscramble:  l m a s f e s e
+Fameless
+10
+
+Unscramble:  l m e t n e e
+Element
+10
+
+Unscramble:  l m i n s a t u
+Simulant
+10
+
+Unscramble:  l m l a s
+Small
+10
+
+Unscramble:  l m l e s
+Smell
+10
+
+Unscramble:  l m m m a a
+Mammal
+10
+
+Unscramble:  l m n o y a l
+Allonym
+10
+
+Unscramble:  l m o g h o y o
+Homology
+10
+
+Unscramble:  l m u d m e b
+Mumbled
+10
+
+Unscramble:  l m u l i g a
+Gallium
+10
+
+Unscramble:  l m u s i d s o
+Solidums
+10
+
+Unscramble:  l m u s u l p e
+Plumules
+10
+
+Unscramble:  l m u t h i y i
+Humility
+10
+
+Unscramble:  l n a o t a
+Atonal
+10
+
+Unscramble:  l n a r d e d
+Dandler
+10
+
+Unscramble:  l n a s b e g
+Bangles
+10
+
+Unscramble:  l n a s c e t
+Cantles
+10
+
+Unscramble:  l n a t a t d i
+Dilatant
+10
+
+Unscramble:  l n a t a x r e
+Relaxant
+10
+
+Unscramble:  l n d b e n s s i
+Blindness
+10
+
+Unscramble:  l n d r e b o
+Blonder
+10
+
+Unscramble:  l n e t x i h o
+Xenolith
+10
+
+Unscramble:  l n g g u i p n
+Plunging
+10
+
+Unscramble:  l n g r e c i
+Clinger
+10
+
+Unscramble:  l n i e a t g e
+Gelatine
+10
+
+Unscramble:  l n i e k i r d
+Kindlier
+10
+
+Unscramble:  l n i e t a u
+Alunite
+10
+
+Unscramble:  l n i g a c s o
+Solacing
+10
+
+Unscramble:  l n i g t z w a
+Waltzing
+10
+
+Unscramble:  l n i s w e s d
+Windless
+10
+
+Unscramble:  l n k g n i b i
+Blinking
+10
+
+Unscramble:  l n k g o i p n
+Plonking
+10
+
+Unscramble:  l n m b e c u
+Clubmen
+10
+
+Unscramble:  l n o s l e g a
+Galleons
+10
+
+Unscramble:  l n o s l i m u
+Mullions
+10
+
+Unscramble:  l n o t o p a
+Platoon
+10
+
+Unscramble:  l n s d e f e
+Flensed
+10
+
+Unscramble:  l n t a s u
+Sultan
+10
+
+Unscramble:  l n t g a i s n
+Slanting
+10
+
+Unscramble:  l n t g u i b n
+Blunting
+10
+
+Unscramble:  l n u e a l p a
+Planulae
+10
+
+Unscramble:  l o d d o i b e
+Bloodied
+10
+
+Unscramble:  l o d r v a s a
+Salvador
+10
+
+Unscramble:  l o d u c
+Could
+10
+
+Unscramble:  l o e w t o a r
+Waterloo
+10
+
+Unscramble:  l o f b f u a
+Buffalo
+10
+
+Unscramble:  l o h b c r a e
+Bachelor
+10
+
+Unscramble:  l o i n i s g r e
+Religions
+10
+
+Unscramble:  l o i n u t v o
+Volution
+10
+
+Unscramble:  l o m r e b o
+Bloomer
+10
+
+Unscramble:  l o o i p
+Polio
+10
+
+Unscramble:  l o p h t a a l
+Allopath
+10
+
+Unscramble:  l o s r e a r e
+Releasor
+10
+
+Unscramble:  l o t c t s a a
+Cattalos
+10
+
+Unscramble:  l o y g n i a l
+Alloying
+10
+
+Unscramble:  l o y l m
+Molly
+10
+
+Unscramble:  l o y s m a t b
+Myoblast
+10
+
+Unscramble:  l p a n d i g p
+Dappling
+10
+
+Unscramble:  l p e d e a
+Leaped
+10
+
+Unscramble:  l p h t e a e n
+Elephant
+10
+
+Unscramble:  l p i g n e o
+Eloping
+10
+
+Unscramble:  l p o n p i g p
+Poppling
+10
+
+Unscramble:  l p p d e s i
+Slipped
+10
+
+Unscramble:  l p p g n i c i
+Clipping
+10
+
+Unscramble:  l p p s a e f r
+Flappers
+10
+
+Unscramble:  l p p u i
+Pupil
+10
+
+Unscramble:  l r a s d e k
+Darkles
+10
+
+Unscramble:  l r a Y i d s o
+Solidary
+10
+
+Unscramble:  l r c o a
+Coral
+10
+
+Unscramble:  l r e c h b e
+Belcher
+10
+
+Unscramble:  l r e s a v p a
+Palavers
+10
+
+Unscramble:  l r e s t e s m
+Termless
+10
+
+Unscramble:  l r h t e s i
+Slither
+10
+
+Unscramble:  l r i e v
+Liver
+10
+
+Unscramble:  l r i r c e s c
+Circlers
+10
+
+Unscramble:  l r i s n f o
+Florins
+10
+
+Unscramble:  l r i s o s f t
+Florists
+10
+
+Unscramble:  l r i y o d f l
+Floridly
+10
+
+Unscramble:  l r i y v a s e
+Virelays
+10
+
+Unscramble:  l r k n e f a
+Flanker
+10
+
+Unscramble:  l r l e k i
+Killer
+10
+
+Unscramble:  l r o a s
+Solar
+10
+
+Unscramble:  l r o m i f c o
+Coliform
+10
+
+Unscramble:  l r o u c o
+Colour
+10
+
+Unscramble:  l r t g n i f i
+Flirting
+10
+
+Unscramble:  l r u m s i a t
+Altruism
+10
+
+Unscramble:  l r u p h s u
+Sulphur
+10
+
+Unscramble:  l r v a e c e
+Cleaver
+10
+
+Unscramble:  l r v i e
+Liver
+10
+
+Unscramble:  l r y g o i g n
+Glorying
+10
+
+Unscramble:  l s a n c i g t
+Castling
+10
+
+Unscramble:  l s a n g i e o
+Gasoline
+10
+
+Unscramble:  l s d a n i s
+Islands
+10
+
+Unscramble:  l s e d e a l
+Allseed
+10
+
+Unscramble:  l s e i c c y
+Cylices
+10
+
+Unscramble:  l s e s i n w i
+Wiliness
+10
+
+Unscramble:  l s h s r e f e
+Fleshers
+10
+
+Unscramble:  l s i e a r s o
+Solarise
+10
+
+Unscramble:  l s i g m o y o
+Misology
+10
+
+Unscramble:  l s i n o p o
+Plosion
+10
+
+Unscramble:  l s i s e v p o
+Plosives
+10
+
+Unscramble:  l s n e u t d a
+Unsalted
+10
+
+Unscramble:  l s n m e d o
+Dolmens
+10
+
+Unscramble:  l s o d r
+Lords
+10
+
+Unscramble:  l s o u r n l
+Unrolls
+10
+
+Unscramble:  l s p k c e f y
+Flyspeck
+10
+
+Unscramble:  l s r l e k i
+Killers
+10
+
+Unscramble:  l s s g n i g a
+Glassing
+10
+
+Unscramble:  l s s l u f b i
+Blissful
+10
+
+Unscramble:  l s s w a e e
+Weasels
+10
+
+Unscramble:  l s t a a i e c
+Elastica
+10
+
+Unscramble:  l s t e a a e s
+Elastase
+10
+
+Unscramble:  l s t m r o a
+Mortals
+10
+
+Unscramble:  l s u h l p b e
+Bellpush
+10
+
+Unscramble:  l s u l b
+Bulls
+10
+
+Unscramble:  l s u o r p e
+Pelorus
+10
+
+Unscramble:  l t a e e g r e
+Relegate
+10
+
+Unscramble:  l t a r b e s t
+Battlers
+10
+
+Unscramble:  l t a s d c w i
+Wildcats
+10
+
+Unscramble:  l t a t m o s e
+Matelots
+10
+
+Unscramble:  l t e n p a t u
+Petulant
+10
+
+Unscramble:  l t e r e t
+Letter
+10
+
+Unscramble:  l t e r i t
+Litter
+10
+
+Unscramble:  l t g t i n e g r i
+Glittering
+10
+
+Unscramble:  l t h d a e f a
+Flathead
+10
+
+Unscramble:  l t h g o i c n
+Clothing
+10
+
+Unscramble:  l t i g n p a
+Plating
+10
+
+Unscramble:  l t i s p e s i
+Pitiless
+10
+
+Unscramble:  l t i y i d g e
+Gelidity
+10
+
+Unscramble:  l t i Y i n s a
+Salinity
+10
+
+Unscramble:  l t l i s
+Still
+10
+
+Unscramble:  l t l o f b e u t
+Bottleful
+10
+
+Unscramble:  l t n s s e f a
+Flatness
+10
+
+Unscramble:  l t s s e o t e
+Teleosts
+10
+
+Unscramble:  l t s s l a b a
+Ballasts
+10
+
+Unscramble:  l t t a c u c a
+Calcutta
+10
+
+Unscramble:  l t t e n i i n l g e
+Intelligent
+10
+
+Unscramble:  l t t r e g i
+Glitter
+10
+
+Unscramble:  l t t s n o g u
+Gluttons
+10
+
+Unscramble:  l t t t a e f s
+Flattest
+10
+
+Unscramble:  l t u n i
+Until
+10
+
+Unscramble:  l u c s a o g u
+Glaucous
+10
+
+Unscramble:  l u d d e a l
+Alluded
+10
+
+Unscramble:  l u e e t s n l
+Entellus
+10
+
+Unscramble:  l u g d o h p e
+Ploughed
+10
+
+Unscramble:  l u i b m a
+Malibu
+10
+
+Unscramble:  l u i p r s e p
+Periplus
+10
+
+Unscramble:  l u l s c e s e
+Clueless
+10
+
+Unscramble:  l u q e s l d a
+Squalled
+10
+
+Unscramble:  l u q n a i e i
+Aquiline
+10
+
+Unscramble:  l u q y s l a
+Squally
+10
+
+Unscramble:  l u r d e f o
+Floured
+10
+
+Unscramble:  l u s g o i b n
+Blousing
+10
+
+Unscramble:  l u s s o s c o
+Colossus
+10
+
+Unscramble:  l u t t s i f a
+Flautist
+10
+
+Unscramble:  l u v l a i i l
+Illuvial
+10
+
+Unscramble:  l v a c h o k e
+Havelock
+10
+
+Unscramble:  l v a n j i e
+Javelin
+10
+
+Unscramble:  l v e c a l n d e
+Cleveland
+10
+
+Unscramble:  l v e e d v s o
+Devolves
+10
+
+Unscramble:  l v e n e e
+Eleven
+10
+
+Unscramble:  l v o s l e s e
+Loveless
+10
+
+Unscramble:  l w a r d e s d
+Dawdlers
+10
+
+Unscramble:  l w e r f o
+Flower
+10
+
+Unscramble:  l w e s r f o
+Flowers
+10
+
+Unscramble:  l w f y l b o
+Blowfly
+10
+
+Unscramble:  l w l o m a
+Mallow
+10
+
+Unscramble:  l w l o p i
+Pillow
+10
+
+Unscramble:  l w l o y e
+Yellow
+10
+
+Unscramble:  l x i e l f e
+Flexile
+10
+
+Unscramble:  l x i r e f a
+Flaxier
+10
+
+Unscramble:  l x o v f o e g
+Foxglove
+10
+
+Unscramble:  l y a s i d h o
+Holidays
+10
+
+Unscramble:  l y b k a o p o
+Playbook
+10
+
+Unscramble:  l y d s e e i
+Seedily
+10
+
+Unscramble:  l y g r u o h
+Roughly
+10
+
+Unscramble:  l y n e e s p
+Spleeny
+10
+
+Unscramble:  l y o t f
+Lofty
+10
+
+Unscramble:  l y r u t n u
+Untruly
+10
+
+Unscramble:  l z i e a r p o
+Polarize
+10
+
+Unscramble:  l z i s a e g r
+Glaziers
+10
+
+Unscramble:  m a a n n
+Manna
+10
+
+Unscramble:  m a b e l a i
+Amiable
+10
+
+Unscramble:  m a b i g a
+Gambia
+10
+
+Unscramble:  m a c e c
+Mecca
+10
+
+Unscramble:  m a d h a n e s
+Headsman
+10
+
+Unscramble:  m a e s p n u r
+Superman
+10
+
+Unscramble:  m a g b r n a e
+Bargeman
+10
+
+Unscramble:  m a h c p a y r
+Pharmacy
+10
+
+Unscramble:  m a l r m u n u
+Nummular
+10
+
+Unscramble:  m a o m t n o r
+Motorman
+10
+
+Unscramble:  m a o r f t e r
+Reformat
+10
+
+Unscramble:  m a r n t o a g p e e
+Pomegranate
+10
+
+Unscramble:  m a s l e r d e
+Demersal
+10
+
+Unscramble:  m a t c i h e p
+Empathic
+10
+
+Unscramble:  m a y g n i e b
+Embaying
+10
+
+Unscramble:  m b c c x o o
+Coxcomb
+10
+
+Unscramble:  m b e r e m
+Member
+10
+
+Unscramble:  m c a s r o e e
+Racemose
+10
+
+Unscramble:  m c a y i b a l
+Amicably
+10
+
+Unscramble:  m c e t d a e i
+Decimate
+10
+
+Unscramble:  m c k s r e s a
+Smackers
+10
+
+Unscramble:  m c n n i i g o
+Incoming
+10
+
+Unscramble:  m c s u i
+Music
+10
+
+Unscramble:  m d e n p e t i
+Pediment
+10
+
+Unscramble:  m d e p l s a
+Sampled
+10
+
+Unscramble:  m d e u r i m
+Immured
+10
+
+Unscramble:  m d g n e s i
+Smidgen
+10
+
+Unscramble:  m d i u d i m y
+Didymium
+10
+
+Unscramble:  m d o Y e b s o
+Somebody
+10
+
+Unscramble:  m d t r e s a
+Smarted
+10
+
+Unscramble:  m e d d e d i b
+Imbedded
+10
+
+Unscramble:  m e d r a
+Dream
+10
+
+Unscramble:  m e g r m a r u
+Rummager
+10
+
+Unscramble:  m e i l l
+Mille
+10
+
+Unscramble:  m e i r e l t i
+Timelier
+10
+
+Unscramble:  m e i s i n d o
+Dominies
+10
+
+Unscramble:  m e i s u d q r
+Squirmed
+10
+
+Unscramble:  m e l n g e e
+Gleemen
+10
+
+Unscramble:  m e l p i c o
+Compile
+10
+
+Unscramble:  m e n o p n e n h o
+Phenomenon
+10
+
+Unscramble:  m e n s r d u a
+Surnamed
+10
+
+Unscramble:  m e r a a d d n o
+Andromeda
+10
+
+Unscramble:  m e r d i n a y
+Dairymen
+10
+
+Unscramble:  m e r d s a
+Dreams
+10
+
+Unscramble:  m e r n c a w
+Crewman
+10
+
+Unscramble:  m e s d i s u n
+Unmissed
+10
+
+Unscramble:  m e s t o s w o
+Twosomes
+10
+
+Unscramble:  m e t s p u c o
+Computes
+10
+
+Unscramble:  m e t t a e i
+Teatime
+10
+
+Unscramble:  m f l s e h i
+Himself
+10
+
+Unscramble:  m g a n s e a
+Sagamen
+10
+
+Unscramble:  m g i r a n i e
+Imaginer
+10
+
+Unscramble:  m g n b r m i i h d u
+Hummingbird
+10
+
+Unscramble:  m g n m i l e
+Lemming
+10
+
+Unscramble:  m g r e b r u h a
+Hamburger
+10
+
+Unscramble:  m g s i n l e t a
+Ligaments
+10
+
+Unscramble:  m h n n i i g u
+Inhuming
+10
+
+Unscramble:  m h o e p r a a
+Amphorae
+10
+
+Unscramble:  m h o t n
+Month
+10
+
+Unscramble:  m i a r c h a r
+Armchair
+10
+
+Unscramble:  m i l s g a o
+Gliomas
+10
+
+Unscramble:  m i n a y a d a
+Adynamia
+10
+
+Unscramble:  m i n c t o a u c e m
+Communicate
+10
+
+Unscramble:  m i r s p e t m
+Primmest
+10
+
+Unscramble:  m i t c a s n r o
+Romantics
+10
+
+Unscramble:  m i t s s c y e
+Systemic
+10
+
+Unscramble:  m k a n k o o e
+Kakemono
+10
+
+Unscramble:  m l a t c i e a
+Calamite
+10
+
+Unscramble:  m l i b r n o
+Nombril
+10
+
+Unscramble:  m l i s a
+Islam
+10
+
+Unscramble:  m l i s b o g u
+Gumboils
+10
+
+Unscramble:  m l o o f o t k
+Folkmoot
+10
+
+Unscramble:  m l o s f o t o
+Tomfools
+10
+
+Unscramble:  m l s c i i a
+Islamic
+10
+
+Unscramble:  m m u s b i c a
+Cambiums
+10
+
+Unscramble:  m n a t i n r u
+Ruminant
+10
+
+Unscramble:  m n d e e a e t
+Emendate
+10
+
+Unscramble:  m n e s g e o
+Genomes
+10
+
+Unscramble:  m n i u t o s a
+Tinamous
+10
+
+Unscramble:  m n l e o
+Melon
+10
+
+Unscramble:  m n o w i n
+Minnow
+10
+
+Unscramble:  m n u d p o c o
+Compound
+10
+
+Unscramble:  m o a g d
+Dogma
+10
+
+Unscramble:  m o c s o h s e
+Smooches
+10
+
+Unscramble:  m o i n o t d e
+Demotion
+10
+
+Unscramble:  m o l d g e o
+Gloomed
+10
+
+Unscramble:  m o l n g i g o
+Glooming
+10
+
+Unscramble:  m o l y c i i p
+Impolicy
+10
+
+Unscramble:  m o n a i a m
+Ammonia
+10
+
+Unscramble:  m o n c m i a a
+Ammoniac
+10
+
+Unscramble:  m o s g n i i p
+Imposing
+10
+
+Unscramble:  m o t n i l h a
+Hamilton
+10
+
+Unscramble:  m p j o t s u u
+Outjumps
+10
+
+Unscramble:  m r a s b g u e
+Umbrages
+10
+
+Unscramble:  m r e a b l u l
+Umbrella
+10
+
+Unscramble:  m r e o t r e
+Remoter
+10
+
+Unscramble:  m r e s b l g a
+Gamblers
+10
+
+Unscramble:  m r e y e t c e
+Cemetery
+10
+
+Unscramble:  m r h i t b n o
+Thrombin
+10
+
+Unscramble:  m r i a c a e
+America
+10
+
+Unscramble:  m r i s p n i t
+Imprints
+10
+
+Unscramble:  m r j a o
+Major
+10
+
+Unscramble:  m r k a e
+Maker
+10
+
+Unscramble:  m r p u t
+Trump
+10
+
+Unscramble:  m r t g a i s n
+Smarting
+10
+
+Unscramble:  m r w o e e p
+Empower
+10
+
+Unscramble:  m r y d i o e b
+Embryoid
+10
+
+Unscramble:  m s d d d i u
+Diddums
+10
+
+Unscramble:  m s e s e n g a
+Gameness
+10
+
+Unscramble:  m s e s e n t a
+Tameness
+10
+
+Unscramble:  m s e s p n l i
+Limpness
+10
+
+Unscramble:  m s e t b l h u
+Humblest
+10
+
+Unscramble:  m s e u r i m
+Immures
+10
+
+Unscramble:  m s i e s m i
+Mimesis
+10
+
+Unscramble:  m s k a r r e
+Remarks
+10
+
+Unscramble:  m s l b d e a
+Bedlams
+10
+
+Unscramble:  m s n i d
+Minds
+10
+
+Unscramble:  m s n p a t y
+Tympans
+10
+
+Unscramble:  m s n u t a o
+Amounts
+10
+
+Unscramble:  m s o o d
+Moods
+10
+
+Unscramble:  m t a i n e o t t s p
+Temptations
+10
+
+Unscramble:  m t e n m o
+Moment
+10
+
+Unscramble:  m t e r a t
+Matter
+10
+
+Unscramble:  m t g i h
+Might
+10
+
+Unscramble:  m t h t e y a s
+Amethyst
+10
+
+Unscramble:  m t i e a t h e
+Hematite
+10
+
+Unscramble:  m t l e h a
+Hamlet
+10
+
+Unscramble:  m t n s m e c o
+Comments
+10
+
+Unscramble:  m t s s p o c o
+Composts
+10
+
+Unscramble:  m t t g i i o n
+Omitting
+10
+
+Unscramble:  m t u a n k a d h
+Kathmandu
+10
+
+Unscramble:  m u l e t a a b
+Ambulate
+10
+
+Unscramble:  m u l r o d s e
+Smoulder
+10
+
+Unscramble:  m u l r s e m
+Slummer
+10
+
+Unscramble:  m u n m p a t y
+Tympanum
+10
+
+Unscramble:  m u t m e n l o
+Lomentum
+10
+
+Unscramble:  m y e c p m e i
+Empyemic
+10
+
+Unscramble:  m y e d c o
+Comedy
+10
+
+Unscramble:  m y l o l
+Molly
+10
+
+Unscramble:  m y o d o
+Moody
+10
+
+Unscramble:  n a b r i
+Brain
+10
+
+Unscramble:  n a e i t l n r
+Internal
+10
+
+Unscramble:  n a e s c r p a
+Pancreas
+10
+
+Unscramble:  n a g d e u p
+Unpaged
+10
+
+Unscramble:  n a h a c m n i
+Chainman
+10
+
+Unscramble:  n a i d e t u b
+Unbaited
+10
+
+Unscramble:  n a i m t l o o
+Motional
+10
+
+Unscramble:  n a i y l r u f
+Unfairly
+10
+
+Unscramble:  n a l d i i v
+Invalid
+10
+
+Unscramble:  n a l e r
+Learn
+10
+
+Unscramble:  n a l n u p i
+Pinnula
+10
+
+Unscramble:  n a l r g u s i
+Singular
+10
+
+Unscramble:  n a l s v i i d
+Invalids
+10
+
+Unscramble:  n a m d e p e c
+Encamped
+10
+
+Unscramble:  n a n e l g e d t
+Entangled
+10
+
+Unscramble:  n a n e l g u t
+Untangle
+10
+
+Unscramble:  n a o g t
+Tonga
+10
+
+Unscramble:  n a o t b i
+Obtain
+10
+
+Unscramble:  n a r d m r u e
+Unmarred
+10
+
+Unscramble:  n a r m o g m o
+Monogram
+10
+
+Unscramble:  n a r n t i g i
+Training
+10
+
+Unscramble:  n a r r d e s i
+Drainers
+10
+
+Unscramble:  n a r r e g e l
+Enlarger
+10
+
+Unscramble:  n a s e v i i v
+Invasive
+10
+
+Unscramble:  n a s g n i u c
+Uncasing
+10
+
+Unscramble:  n a s p r l e o
+Personal
+10
+
+Unscramble:  n a s t e s l s i
+Stainless
+10
+
+Unscramble:  n a t l n a a
+Lantana
+10
+
+Unscramble:  n a u l q t Y i
+Quaintly
+10
+
+Unscramble:  n a v l g e l o
+Longeval
+10
+
+Unscramble:  n b l s i o
+Lisbon
+10
+
+Unscramble:  n c d v i e o a
+Voidance
+10
+
+Unscramble:  n c e e r t r a
+Recanter
+10
+
+Unscramble:  n c e l d a a
+Decanal
+10
+
+Unscramble:  n c e l r t y e
+Recently
+10
+
+Unscramble:  n c h t i g a
+Gnathic
+10
+
+Unscramble:  n c i l n y e e
+Leniency
+10
+
+Unscramble:  n c i r s e e a
+Resiance
+10
+
+Unscramble:  n c i r v a y e
+Vicenary
+10
+
+Unscramble:  n c i s a m d y
+Dynamics
+10
+
+Unscramble:  n c k s a e k r
+Knackers
+10
+
+Unscramble:  n c k s r e k o
+Knockers
+10
+
+Unscramble:  n c n y d e t e
+Tendency
+10
+
+Unscramble:  n c r e b i i s
+Inscribe
+10
+
+Unscramble:  n c r n i i y d a e
+Incendiary
+10
+
+Unscramble:  n c t d e e a
+Enacted
+10
+
+Unscramble:  n c t i s t n i
+Instinct
+10
+
+Unscramble:  n c t p e e r e
+Pretence
+10
+
+Unscramble:  n c u i s e s a
+Issuance
+10
+
+Unscramble:  n d a e h g s l b a
+Bangladesh
+10
+
+Unscramble:  n d a e r u h
+Unheard
+10
+
+Unscramble:  n d a n s i e i o
+Indonesia
+10
+
+Unscramble:  n d a o e g r e
+Renegado
+10
+
+Unscramble:  n d c a a a n o
+Anaconda
+10
+
+Unscramble:  n d c e s x i
+Exscind
+10
+
+Unscramble:  n d e d r h u
+Hundred
+10
+
+Unscramble:  n d g e r i
+Ringed
+10
+
+Unscramble:  n d i d e s a o
+Anodised
+10
+
+Unscramble:  n d i r w e s e
+Wideners
+10
+
+Unscramble:  n d l e g n a
+England
+10
+
+Unscramble:  n d l h l o a
+Holland
+10
+
+Unscramble:  n d l i e c a
+Iceland
+10
+
+Unscramble:  n d l n o o
+London
+10
+
+Unscramble:  n d l s e e i
+Enisled
+10
+
+Unscramble:  n d n l a f i
+Finland
+10
+
+Unscramble:  n d n w e u o
+Unowned
+10
+
+Unscramble:  n d o r d e u
+Redound
+10
+
+Unscramble:  n d r r s r e u e
+Surrender
+10
+
+Unscramble:  n d s u a
+Sudan
+10
+
+Unscramble:  n d w o o e
+Wooden
+10
+
+Unscramble:  n e a d r u h
+Unheard
+10
+
+Unscramble:  n e a l v e s
+Enslave
+10
+
+Unscramble:  n e a s m u s
+Unseams
+10
+
+Unscramble:  n e a s r e d
+Endears
+10
+
+Unscramble:  n e a s t u s
+Unseats
+10
+
+Unscramble:  n e b e b e t
+Entebbe
+10
+
+Unscramble:  n e c c l s a i
+Calcines
+10
+
+Unscramble:  n e c e s u i r
+Insecure
+10
+
+Unscramble:  n e d d a r e e
+Deadener
+10
+
+Unscramble:  n e d r o t s u o d
+Understood
+10
+
+Unscramble:  n e d s r s a i
+Sardines
+10
+
+Unscramble:  n e g d e g u b
+Unbegged
+10
+
+Unscramble:  n e g r e
+Green
+10
+
+Unscramble:  n e i e c n e t
+Enceinte
+10
+
+Unscramble:  n e i o s
+Noise
+10
+
+Unscramble:  n e i v a n
+Vienna
+10
+
+Unscramble:  n e k d c a p a
+Pancaked
+10
+
+Unscramble:  n e k w a d e e
+Weakened
+10
+
+Unscramble:  n e l d o c m o
+Monocled
+10
+
+Unscramble:  n e l e p o a t
+Antelope
+10
+
+Unscramble:  n e l e p o e s v
+Envelopes
+10
+
+Unscramble:  n e l g n i k e
+Kneeling
+10
+
+Unscramble:  n e m d s u c o
+Consumed
+10
+
+Unscramble:  n e n a n o s g u i r
+Unreasoning
+10
+
+Unscramble:  n e n d p n u e
+Unpenned
+10
+
+Unscramble:  n e n t e p e
+Pentene
+10
+
+Unscramble:  n e o l s e c
+Enclose
+10
+
+Unscramble:  n e r d k e b u
+Bunkered
+10
+
+Unscramble:  n e r e c c i
+Eccrine
+10
+
+Unscramble:  n e r l a d l e c i
+Cinderella
+10
+
+Unscramble:  n e r o s e d
+Endorse
+10
+
+Unscramble:  n e r s e t
+Enters
+10
+
+Unscramble:  n e r s g i h e
+Greenish
+10
+
+Unscramble:  n e r s r e e t
+Enterers
+10
+
+Unscramble:  n e r t r s e i
+Terrines
+10
+
+Unscramble:  n e r t t a i c
+Interact
+10
+
+Unscramble:  n e r x e r i t
+Interrex
+10
+
+Unscramble:  n e s n o m a
+Mannose
+10
+
+Unscramble:  n e t l e a r
+Eternal
+10
+
+Unscramble:  n e u o q d m e
+Queendom
+10
+
+Unscramble:  n e x s t a s y
+Syntaxes
+10
+
+Unscramble:  n f f r e l s i
+Sniffler
+10
+
+Unscramble:  n f f s e l s i
+Sniffles
+10
+
+Unscramble:  n f o s m r u i
+Uniforms
+10
+
+Unscramble:  n f r i l t e e c d e
+Centerfield
+10
+
+Unscramble:  n g d g a r i
+Grading
+10
+
+Unscramble:  n g d w d s e i
+Weddings
+10
+
+Unscramble:  n g e r i a t n e
+Argentine
+10
+
+Unscramble:  n g e r o a
+Onager
+10
+
+Unscramble:  n g f b f u i
+Buffing
+10
+
+Unscramble:  n g g g u i s n
+Snugging
+10
+
+Unscramble:  n g g g u o i
+Gouging
+10
+
+Unscramble:  n g g r e s i
+Snigger
+10
+
+Unscramble:  n g h f s i i
+Fishing
+10
+
+Unscramble:  n g h j s o i
+Joshing
+10
+
+Unscramble:  n g h l t a i
+Lathing
+10
+
+Unscramble:  n g h n t o i
+Nothing
+10
+
+Unscramble:  n g i e n k e
+Kneeing
+10
+
+Unscramble:  n g i r n e u
+Enuring
+10
+
+Unscramble:  n g i t n u i
+Uniting
+10
+
+Unscramble:  n g k b o o i
+Booking
+10
+
+Unscramble:  n g k g w a i
+Gawking
+10
+
+Unscramble:  n g k h s u i
+Husking
+10
+
+Unscramble:  n g k j c a i
+Jacking
+10
+
+Unscramble:  n g l c b a i
+Cabling
+10
+
+Unscramble:  n g l f r u i
+Furling
+10
+
+Unscramble:  n g l p e e i
+Peeling
+10
+
+Unscramble:  n g l s b s i i
+Siblings
+10
+
+Unscramble:  n g l t i s a i
+Tailings
+10
+
+Unscramble:  n g m s a i a
+Siamang
+10
+
+Unscramble:  n g m s e e i
+Seeming
+10
+
+Unscramble:  n g n c r o i
+Corning
+10
+
+Unscramble:  n g n d o r i
+Droning
+10
+
+Unscramble:  n g n g i b i
+Binging
+10
+
+Unscramble:  n g n g n i i
+Ginning
+10
+
+Unscramble:  n g o e h c i
+Echoing
+10
+
+Unscramble:  n g o s b g o
+Bogongs
+10
+
+Unscramble:  n g o y x e
+Oxygen
+10
+
+Unscramble:  n g p k e s e i
+Keepings
+10
+
+Unscramble:  n g p p p o i
+Popping
+10
+
+Unscramble:  n g r h r e i
+Herring
+10
+
+Unscramble:  n g r r a s o i
+Roarings
+10
+
+Unscramble:  n g r s o t i
+Storing
+10
+
+Unscramble:  n g t b t u i
+Butting
+10
+
+Unscramble:  n g t e a
+Agent
+10
+
+Unscramble:  n g t f t i i
+Fitting
+10
+
+Unscramble:  n g t g a s r i
+Gratings
+10
+
+Unscramble:  n g t h s o i
+Hosting
+10
+
+Unscramble:  n g t r u s o i
+Routings
+10
+
+Unscramble:  n g v h l e i
+Helving
+10
+
+Unscramble:  n g v w a e i
+Weaving
+10
+
+Unscramble:  n h a i c
+China
+10
+
+Unscramble:  n h a s c i u n
+Unchains
+10
+
+Unscramble:  n h c s e u i
+Echinus
+10
+
+Unscramble:  n h i l s e g
+English
+10
+
+Unscramble:  n h i s d a
+Danish
+10
+
+Unscramble:  n h k a s
+Shank
+10
+
+Unscramble:  n h k i t
+Think
+10
+
+Unscramble:  n h n e u g d a
+Unhanged
+10
+
+Unscramble:  n h o e t a i c
+Inchoate
+10
+
+Unscramble:  n h o i r
+Rhino
+10
+
+Unscramble:  n h o n c s u e
+Unchosen
+10
+
+Unscramble:  n h p t y o
+Python
+10
+
+Unscramble:  n h s n i d o
+Donnish
+10
+
+Unscramble:  n h t e a b e
+Beneath
+10
+
+Unscramble:  n h w t i i
+Within
+10
+
+Unscramble:  n i a y l b e v
+Enviably
+10
+
+Unscramble:  n i d e r d u l
+Unriddle
+10
+
+Unscramble:  n i d g r a a e
+Gardenia
+10
+
+Unscramble:  n i d s r e i s
+Insiders
+10
+
+Unscramble:  n i e i p o r g
+Peignoir
+10
+
+Unscramble:  n i e s f l i d
+Infields
+10
+
+Unscramble:  n i f d e t u s
+Unsifted
+10
+
+Unscramble:  n i g d e r s y
+Synergid
+10
+
+Unscramble:  n i g y c n e s
+Ensigncy
+10
+
+Unscramble:  n i i a s
+Sinai
+10
+
+Unscramble:  n i l d e d u g
+Ungilded
+10
+
+Unscramble:  n i m s l d a o
+Salmonid
+10
+
+Unscramble:  n i p d e p u z
+Unzipped
+10
+
+Unscramble:  n i r a o t l e
+Oriental
+10
+
+Unscramble:  n i r s r d e a
+Serranid
+10
+
+Unscramble:  n i r t t i y u
+Triunity
+10
+
+Unscramble:  n i t p u c l o
+Plutonic
+10
+
+Unscramble:  n i t s e i e t
+Entities
+10
+
+Unscramble:  n i v s e e s l
+Evilness
+10
+
+Unscramble:  n i x d e u f
+Unfixed
+10
+
+Unscramble:  n i x Y t i u f
+Unfixity
+10
+
+Unscramble:  n l a d n e g
+England
+10
+
+Unscramble:  n l a n r e s
+Ensnarl
+10
+
+Unscramble:  n l a r s v e e
+Enslaver
+10
+
+Unscramble:  n l a s t r v e
+Ventrals
+10
+
+Unscramble:  n l b e e a t u
+Tuneable
+10
+
+Unscramble:  n l b r e i
+Berlin
+10
+
+Unscramble:  n l c e n a p i
+Pinnacle
+10
+
+Unscramble:  n l d s d y u e
+Suddenly
+10
+
+Unscramble:  n l e y i t f i
+Finitely
+10
+
+Unscramble:  n l l g n i k o
+Knolling
+10
+
+Unscramble:  n l o h g i
+Holing
+10
+
+Unscramble:  n l o k k s Y i
+Kolinsky
+10
+
+Unscramble:  n l o n w u b
+Unblown
+10
+
+Unscramble:  n l p c s i e
+Splenic
+10
+
+Unscramble:  n l p l o e
+Pollen
+10
+
+Unscramble:  n l r y n e m a
+Mannerly
+10
+
+Unscramble:  n l t i a t c a
+Atlantic
+10
+
+Unscramble:  n l u t n e i f
+Influent
+10
+
+Unscramble:  n l v a e u r
+Unravel
+10
+
+Unscramble:  n l x o y i d
+Indoxyl
+10
+
+Unscramble:  n m a s g r p a
+Pangrams
+10
+
+Unscramble:  n m a s l a i
+Animals
+10
+
+Unscramble:  n m a t r u s
+Unsmart
+10
+
+Unscramble:  n m m d a a
+Madman
+10
+
+Unscramble:  n m o a r i a
+Romania
+10
+
+Unscramble:  n m o e n e s i
+Nominees
+10
+
+Unscramble:  n m o e r c s a
+Romances
+10
+
+Unscramble:  n m r o t e m a e e
+Anemometer
+10
+
+Unscramble:  n m r s f o c o
+Conforms
+10
+
+Unscramble:  n m w o a
+Woman
+10
+
+Unscramble:  n m w o e
+Women
+10
+
+Unscramble:  n m y i g l g i
+Ginglymi
+10
+
+Unscramble:  n n a s r e s k
+Rankness
+10
+
+Unscramble:  n n a s s r u l
+Unsnarls
+10
+
+Unscramble:  n n c n a o
+Cannon
+10
+
+Unscramble:  n n d b n a a a
+Bandanna
+10
+
+Unscramble:  n n e y l i a
+Inanely
+10
+
+Unscramble:  n n i d b l s u
+Sunblind
+10
+
+Unscramble:  n n i e t l b u
+Buntline
+10
+
+Unscramble:  n n i g a g m a
+Managing
+10
+
+Unscramble:  n n i g d y b a
+Bandying
+10
+
+Unscramble:  n n i g g a c o
+Congaing
+10
+
+Unscramble:  n n o a b z s a
+Bonanzas
+10
+
+Unscramble:  n n o c r u i
+Unicorn
+10
+
+Unscramble:  n n o e s c s a
+Sonances
+10
+
+Unscramble:  n n o r m d y a
+Monandry
+10
+
+Unscramble:  n n y s m a o
+Anonyms
+10
+
+Unscramble:  n o b r w
+Brown
+10
+
+Unscramble:  n o d u b
+Bound
+10
+
+Unscramble:  n o g y d e e n
+Endogeny
+10
+
+Unscramble:  n o h x p i e
+Phoenix
+10
+
+Unscramble:  n o l y l i u h
+Unholily
+10
+
+Unscramble:  n o m g c i o n
+Oncoming
+10
+
+Unscramble:  n o n m i i u s
+Unionism
+10
+
+Unscramble:  n o n t b n u e
+Unbonnet
+10
+
+Unscramble:  n o n t i i u s
+Unionist
+10
+
+Unscramble:  n o o d w d u e
+Unwooded
+10
+
+Unscramble:  n o o i d a l r
+Doornail
+10
+
+Unscramble:  n o o r i d
+Indoor
+10
+
+Unscramble:  n o o z g
+Gonzo
+10
+
+Unscramble:  n o r a i o t
+Ontario
+10
+
+Unscramble:  n o r d e g u f
+Unforged
+10
+
+Unscramble:  n o r g d u
+Ground
+10
+
+Unscramble:  n o r g n i e c
+Encoring
+10
+
+Unscramble:  n o r n u t
+Untorn
+10
+
+Unscramble:  n o s c s a i
+Cassino
+10
+
+Unscramble:  n o u e c n a n
+Announce
+10
+
+Unscramble:  n o z c i o e t
+Entozoic
+10
+
+Unscramble:  n p m t i i y u
+Impunity
+10
+
+Unscramble:  n p u s g c k i
+Kingcups
+10
+
+Unscramble:  n p u t k r b a
+Bankrupt
+10
+
+Unscramble:  n r a d t c u e
+Untraced
+10
+
+Unscramble:  n r a g b a e o
+Baronage
+10
+
+Unscramble:  n r a r p e s t
+Partners
+10
+
+Unscramble:  n r a s t n e t
+Entrants
+10
+
+Unscramble:  n r a s w e s m
+Warmness
+10
+
+Unscramble:  n r b a o
+Baron
+10
+
+Unscramble:  n r d l a a s e
+Adrenals
+10
+
+Unscramble:  n r e a c
+Crane
+10
+
+Unscramble:  n r e g i r a
+Rangier
+10
+
+Unscramble:  n r e h c n e t
+Entrench
+10
+
+Unscramble:  n r e o q r u c o
+Conqueror
+10
+
+Unscramble:  n r e o r i g
+Ignorer
+10
+
+Unscramble:  n r e s g l w a
+Wanglers
+10
+
+Unscramble:  n r e s n e i
+Nerines
+10
+
+Unscramble:  n r e s s t p u
+Punsters
+10
+
+Unscramble:  n r e s u s e i
+Enuresis
+10
+
+Unscramble:  n r e t i r e
+Rentier
+10
+
+Unscramble:  n r h d t e o
+Throned
+10
+
+Unscramble:  n r h t e a o
+Another
+10
+
+Unscramble:  n r i a p h a
+Piranha
+10
+
+Unscramble:  n r k e s i
+Sinker
+10
+
+Unscramble:  n r m s u o e o
+Enormous
+10
+
+Unscramble:  n r o g g i
+Goring
+10
+
+Unscramble:  n r o i t m o
+Monitor
+10
+
+Unscramble:  n r s t t s g h e
+Strengths
+10
+
+Unscramble:  n r t c i h a o
+Anorthic
+10
+
+Unscramble:  n r t e w a
+Wanter
+10
+
+Unscramble:  n r t i e i v
+Inviter
+10
+
+Unscramble:  n r t o f
+Front
+10
+
+Unscramble:  n r u e a t d e
+Denature
+10
+
+Unscramble:  n r v e e
+Never
+10
+
+Unscramble:  n s a d h
+Hands
+10
+
+Unscramble:  n s a i b j e
+Basenji
+10
+
+Unscramble:  n s a s e e s i
+Easiness
+10
+
+Unscramble:  n s a t b e s i
+Basinets
+10
+
+Unscramble:  n s b e a c s e
+Absences
+10
+
+Unscramble:  n s d r d e e
+Reddens
+10
+
+Unscramble:  n s e s d r s u
+Sundress
+10
+
+Unscramble:  n s e s g l w i
+Wingless
+10
+
+Unscramble:  n s e t d i w i
+Windiest
+10
+
+Unscramble:  n s e t g i m i
+Mingiest
+10
+
+Unscramble:  n s e t r c e h m a
+Manchester
+10
+
+Unscramble:  n s e u l v e
+Venules
+10
+
+Unscramble:  n s e u v
+Venus
+10
+
+Unscramble:  n s g o t u u
+Outguns
+10
+
+Unscramble:  n s i g w
+Wings
+10
+
+Unscramble:  n s i i d n a
+Indians
+10
+
+Unscramble:  n s i k k
+Kinks
+10
+
+Unscramble:  n s i t o d m o
+Monodist
+10
+
+Unscramble:  n s l m r e o
+Merlons
+10
+
+Unscramble:  n s l s i t o
+Tonsils
+10
+
+Unscramble:  n s n i e e g
+Engines
+10
+
+Unscramble:  n s o e m
+Nomes
+10
+
+Unscramble:  n s o e s
+Noses
+10
+
+Unscramble:  n s o k m
+Monks
+10
+
+Unscramble:  n s r c e f e
+Fencers
+10
+
+Unscramble:  n s r d a i e e
+Arsenide
+10
+
+Unscramble:  n s r h i m e
+Menhirs
+10
+
+Unscramble:  n s r n u e o
+Neurons
+10
+
+Unscramble:  n s r t e w i
+Winters
+10
+
+Unscramble:  n s s a k a
+Kansas
+10
+
+Unscramble:  n s s e s e
+Senses
+10
+
+Unscramble:  n s s i t i s
+Insists
+10
+
+Unscramble:  n s s n a a t o
+Assonant
+10
+
+Unscramble:  n s s w r o e
+Worsens
+10
+
+Unscramble:  n s t b t u o
+Buttons
+10
+
+Unscramble:  n s t n w e o
+Newtons
+10
+
+Unscramble:  n s u e o i g
+Igneous
+10
+
+Unscramble:  n s z b a l o
+Blazons
+10
+
+Unscramble:  n s z m z i e
+Mizzens
+10
+
+Unscramble:  n t a b g i
+Bating
+10
+
+Unscramble:  n t a e g i
+Eating
+10
+
+Unscramble:  n t a e l u d
+Undealt
+10
+
+Unscramble:  n t a l l t y e
+Latently
+10
+
+Unscramble:  n t c o d r u c o
+Conductor
+10
+
+Unscramble:  n t c r e h s a
+Snatcher
+10
+
+Unscramble:  n t c r o a y o
+Octonary
+10
+
+Unscramble:  n t d e o r e
+Erodent
+10
+
+Unscramble:  n t e e c r c o
+Concrete
+10
+
+Unscramble:  n t e y s a u d
+Unsteady
+10
+
+Unscramble:  n t g i h
+Night
+10
+
+Unscramble:  n t i e s u i
+Unitise
+10
+
+Unscramble:  n t i s c e c o
+Conceits
+10
+
+Unscramble:  n t i t c n i s
+Instinct
+10
+
+Unscramble:  n t m a i s l e
+Aliments
+10
+
+Unscramble:  n t o c b i a
+Botanic
+10
+
+Unscramble:  n t o r c e u
+Recount
+10
+
+Unscramble:  n t o s h g u
+Gunshot
+10
+
+Unscramble:  n t o u d
+Donut
+10
+
+Unscramble:  n t p c e i
+Pectin
+10
+
+Unscramble:  n t p n t e r i u e
+Turpentine
+10
+
+Unscramble:  n t p r c s r e a e
+Carpenters
+10
+
+Unscramble:  n t r c e c o
+Concert
+10
+
+Unscramble:  n t r e t n a
+Entrant
+10
+
+Unscramble:  n t r m g i a
+Migrant
+10
+
+Unscramble:  n t t g i i k n
+Knitting
+10
+
+Unscramble:  n t t p r s o e
+Portents
+10
+
+Unscramble:  n t t r o i k e
+Knottier
+10
+
+Unscramble:  n t u e m i d i
+Mutinied
+10
+
+Unscramble:  n t u l b o a
+Butanol
+10
+
+Unscramble:  n t v i e u r
+Unrivet
+10
+
+Unscramble:  n u a Y n l a l
+Annually
+10
+
+Unscramble:  n u l d e l u d
+Undulled
+10
+
+Unscramble:  n u l m d u p e
+Pendulum
+10
+
+Unscramble:  n u n d f d u e
+Unfunded
+10
+
+Unscramble:  n u r g j i i n
+Injuring
+10
+
+Unscramble:  n u r m s i a e
+Aneurism
+10
+
+Unscramble:  n u s t a r
+Saturn
+10
+
+Unscramble:  n v a a s n h a
+Savannah
+10
+
+Unscramble:  n v a e i l u v
+Univalve
+10
+
+Unscramble:  n v e e l e
+Eleven
+10
+
+Unscramble:  n v e i o
+Ovine
+10
+
+Unscramble:  n v i h s k a
+Knavish
+10
+
+Unscramble:  n v o d a w u e
+Unavowed
+10
+
+Unscramble:  n v r e s e c o
+Conserve
+10
+
+Unscramble:  n w i d e n e t
+Entwined
+10
+
+Unscramble:  n w i s t n e e
+Entwines
+10
+
+Unscramble:  n w l e o i s n
+Snowline
+10
+
+Unscramble:  n w o t b o s k
+Bowknots
+10
+
+Unscramble:  n w s p i l s o
+Snowslip
+10
+
+Unscramble:  n x v i e
+Vixen
+10
+
+Unscramble:  n y a a w r u
+Runaway
+10
+
+Unscramble:  n y b n a a
+Banyan
+10
+
+Unscramble:  n y d a s u
+Sunday
+10
+
+Unscramble:  n y g e i p y
+Epigyny
+10
+
+Unscramble:  n y k e d o
+Donkey
+10
+
+Unscramble:  n y r d e b i
+Bindery
+10
+
+Unscramble:  n y r g a h u
+Hungary
+10
+
+Unscramble:  n y r t u c e
+Century
+10
+
+Unscramble:  n y w a r u
+Runway
+10
+
+Unscramble:  n z o o g i
+Oozing
+10
+
+Unscramble:  o a b e a n s l
+Abalones
+10
+
+Unscramble:  o a c m t i i s
+Iotacism
+10
+
+Unscramble:  o a d g m i p n
+Pomading
+10
+
+Unscramble:  o a d s n p a s
+Sandsoap
+10
+
+Unscramble:  o a e a i m t x
+Toxaemia
+10
+
+Unscramble:  o a e r d n y c
+Deaconry
+10
+
+Unscramble:  o a e t t p
+Teapot
+10
+
+Unscramble:  o a g r e v y
+Voyager
+10
+
+Unscramble:  o a h k w a t m
+Tomahawk
+10
+
+Unscramble:  o a h l n c r h
+Rhonchal
+10
+
+Unscramble:  o a h m u g b r
+Brougham
+10
+
+Unscramble:  o a i e l l r c
+Rocaille
+10
+
+Unscramble:  o a i i d g c l
+Dialogic
+10
+
+Unscramble:  o a l a i r s
+Rosalia
+10
+
+Unscramble:  o a l e t i t z
+Totalize
+10
+
+Unscramble:  o a l h a
+Aloha
+10
+
+Unscramble:  o a l k e t e b
+Keelboat
+10
+
+Unscramble:  o a l t c b
+Cobalt
+10
+
+Unscramble:  o a l t c e o c h
+Chocolate
+10
+
+Unscramble:  o a l y n i t t
+Tonality
+10
+
+Unscramble:  o a l y t i l c
+Locality
+10
+
+Unscramble:  o a m e n i d p
+Dopamine
+10
+
+Unscramble:  o a p d s i r
+Sparoid
+10
+
+Unscramble:  o a t n o i l c
+Location
+10
+
+Unscramble:  o a t s r o d n
+Donators
+10
+
+Unscramble:  o b e s r b m
+Bombers
+10
+
+Unscramble:  o b i e d d f n r
+Forbidden
+10
+
+Unscramble:  o b i s w r c d
+Cowbirds
+10
+
+Unscramble:  o b l g b i g n
+Gobbling
+10
+
+Unscramble:  o b l g b i h n
+Hobbling
+10
+
+Unscramble:  o b o l l l y l
+Loblolly
+10
+
+Unscramble:  o b r o m e s r
+Sombrero
+10
+
+Unscramble:  o b r s l i n m
+Nombrils
+10
+
+Unscramble:  o b s n o t t e m
+Tombstone
+10
+
+Unscramble:  o b t g n i d u
+Doubting
+10
+
+Unscramble:  o c a c l n v i
+Volcanic
+10
+
+Unscramble:  o c a n c s m i
+Moccasin
+10
+
+Unscramble:  o c e e n s d r
+Necrosed
+10
+
+Unscramble:  o c e h r t e l
+Reclothe
+10
+
+Unscramble:  o c e s n p Y r
+Necropsy
+10
+
+Unscramble:  o c h s o p n
+Ponchos
+10
+
+Unscramble:  o c i g n v i
+Voicing
+10
+
+Unscramble:  o c l b l k a c
+Ballcock
+10
+
+Unscramble:  o c m s u k l m
+Slummock
+10
+
+Unscramble:  o c n e e s d l
+Enclosed
+10
+
+Unscramble:  o c p y s h
+Psycho
+10
+
+Unscramble:  o d a k p c s l
+Padlocks
+10
+
+Unscramble:  o d b e u r s
+Rosebud
+10
+
+Unscramble:  o d b k c a h l
+Holdback
+10
+
+Unscramble:  o d e d r o s w
+Redwoods
+10
+
+Unscramble:  o d e n w o
+Wooden
+10
+
+Unscramble:  o d e o p s t
+Stooped
+10
+
+Unscramble:  o d e t r o r
+Redroot
+10
+
+Unscramble:  o d e t t b l
+Blotted
+10
+
+Unscramble:  o d e y l n w o
+Woodenly
+10
+
+Unscramble:  o d g a e v y
+Voyaged
+10
+
+Unscramble:  o d l o b
+Blood
+10
+
+Unscramble:  o d l t e t o
+Tootled
+10
+
+Unscramble:  o d n s u e l s
+Loudness
+10
+
+Unscramble:  o d o n l n
+London
+10
+
+Unscramble:  o d r e e p w
+Powered
+10
+
+Unscramble:  o d r w c
+Crowd
+10
+
+Unscramble:  o d s d e h w o
+Woodshed
+10
+
+Unscramble:  o d s p i h l r
+Lordship
+10
+
+Unscramble:  o d t n e m u
+Mounted
+10
+
+Unscramble:  o d t n e p i
+Pointed
+10
+
+Unscramble:  o d v i e
+Video
+10
+
+Unscramble:  o d w e o i g f
+Goodwife
+10
+
+Unscramble:  o d y a e f r
+Forayed
+10
+
+Unscramble:  o d y e h g n r
+Hydrogen
+10
+
+Unscramble:  o e a d g s n
+Sondage
+10
+
+Unscramble:  o e a s r r f m
+Forearms
+10
+
+Unscramble:  o e b a l p t
+Potable
+10
+
+Unscramble:  o e b v a
+Above
+10
+
+Unscramble:  o e c s i u e h
+Icehouse
+10
+
+Unscramble:  o e d c i e c
+Ecocide
+10
+
+Unscramble:  o e f h s i b n
+Bonefish
+10
+
+Unscramble:  o e h d o c s m
+Smooched
+10
+
+Unscramble:  o e h d o s w h
+Whooshed
+10
+
+Unscramble:  o e h d r c s c
+Scorched
+10
+
+Unscramble:  o e h e p s u r
+Euphroes
+10
+
+Unscramble:  o e h e p u r
+Euphroe
+10
+
+Unscramble:  o e i d d
+Diode
+10
+
+Unscramble:  o e i n t c o
+Coontie
+10
+
+Unscramble:  o e i r n g s p
+Spongier
+10
+
+Unscramble:  o e i r t t s n
+Snottier
+10
+
+Unscramble:  o e i s n t c o
+Coonties
+10
+
+Unscramble:  o e i s p s b i
+Biopsies
+10
+
+Unscramble:  o e l e k i h m
+Homelike
+10
+
+Unscramble:  o e l e z i v w
+Vowelize
+10
+
+Unscramble:  o e l r e l m d
+Modeller
+10
+
+Unscramble:  o e l t v i n s
+Novelist
+10
+
+Unscramble:  o e l v i
+Olive
+10
+
+Unscramble:  o e m r v b n e
+November
+10
+
+Unscramble:  o e m y r a r s
+Rosemary
+10
+
+Unscramble:  o e n d e c z
+Cozened
+10
+
+Unscramble:  o e n d p e u n
+Unopened
+10
+
+Unscramble:  o e n e c p t
+Potence
+10
+
+Unscramble:  o e n e r a f m
+Forename
+10
+
+Unscramble:  o e n p e p r
+Propene
+10
+
+Unscramble:  o e o a l f v
+Foveola
+10
+
+Unscramble:  o e o n c r h
+Coehorn
+10
+
+Unscramble:  o e o s g
+Goose
+10
+
+Unscramble:  o e o s m s h i
+Homeosis
+10
+
+Unscramble:  o e o s m
+Moose
+10
+
+Unscramble:  o e p l p e
+People
+10
+
+Unscramble:  o e p s r a f w
+Forepaws
+10
+
+Unscramble:  o e r d w e g l
+Glowered
+10
+
+Unscramble:  o e r t e l c v
+Coverlet
+10
+
+Unscramble:  o e s r a t l d
+Lodestar
+10
+
+Unscramble:  o e s s g r
+Ogress
+10
+
+Unscramble:  o e s s p o p r
+Proposes
+10
+
+Unscramble:  o e s w r h f o
+Foreshow
+10
+
+Unscramble:  o e t g o s r t
+Grottoes
+10
+
+Unscramble:  o e t r e h t g
+Together
+10
+
+Unscramble:  o e t r m e o d
+Odometer
+10
+
+Unscramble:  o e t s e t m f
+Mofettes
+10
+
+Unscramble:  o e t s m a b r
+Bromates
+10
+
+Unscramble:  o e t s u o c v
+Covetous
+10
+
+Unscramble:  o e v r m e w h
+Whomever
+10
+
+Unscramble:  o e w l b
+Below
+10
+
+Unscramble:  o e w s y a r p
+Ropeways
+10
+
+Unscramble:  o f d s a s h o
+Shadoofs
+10
+
+Unscramble:  o f e d f r g e
+Goffered
+10
+
+Unscramble:  o f e e c f
+Coffee
+10
+
+Unscramble:  o f e r h o
+Hoofer
+10
+
+Unscramble:  o f s u o u c c i n
+Confucious
+10
+
+Unscramble:  o f u e s c n
+Confuse
+10
+
+Unscramble:  o g a o o z n g l r
+Gorgonzola
+10
+
+Unscramble:  o g b s w o l n
+Longbows
+10
+
+Unscramble:  o g e a r n l i
+Regional
+10
+
+Unscramble:  o g e n x y
+Oxygen
+10
+
+Unscramble:  o g e r d d
+Dodger
+10
+
+Unscramble:  o g e s u o g r
+Gorgeous
+10
+
+Unscramble:  o g e y g d d l
+Doggedly
+10
+
+Unscramble:  o g h g u i s n
+Soughing
+10
+
+Unscramble:  o g i l n d l
+Dolling
+10
+
+Unscramble:  o g i p n m p
+Mopping
+10
+
+Unscramble:  o g i s n d w
+Dowsing
+10
+
+Unscramble:  o g l s n e s s
+Songless
+10
+
+Unscramble:  o g n o i s h
+Shooing
+10
+
+Unscramble:  o g n s n i i r
+Ironings
+10
+
+Unscramble:  o g o a i l m n
+Mongolia
+10
+
+Unscramble:  o g o e n o m s
+Mongoose
+10
+
+Unscramble:  o h c m a s t
+Stomach
+10
+
+Unscramble:  o h d e o h r m o t
+Motherhood
+10
+
+Unscramble:  o h e Y t r m l
+Motherly
+10
+
+Unscramble:  o h i c e n a l c
+Cochineal
+10
+
+Unscramble:  o h i p s f p
+Foppish
+10
+
+Unscramble:  o h l t s
+Sloth
+10
+
+Unscramble:  o h o e l f x
+Foxhole
+10
+
+Unscramble:  o h o e t u h s
+Hothouse
+10
+
+Unscramble:  o h o t t
+Tooth
+10
+
+Unscramble:  o i a l d c z a
+Zodiacal
+10
+
+Unscramble:  o i a p n d i c
+Pinacoid
+10
+
+Unscramble:  o i a s j r l
+Jailors
+10
+
+Unscramble:  o i c e p l
+Police
+10
+
+Unscramble:  o i c l i c d
+Codicil
+10
+
+Unscramble:  o i d m n i g u
+Gonidium
+10
+
+Unscramble:  o i e r b x
+Boxier
+10
+
+Unscramble:  o i e s m v
+Movies
+10
+
+Unscramble:  o i e t s r p
+Ropiest
+10
+
+Unscramble:  o i f c l i p r
+Prolific
+10
+
+Unscramble:  o i g c r a c h
+Choragic
+10
+
+Unscramble:  o i h d c c i r
+Dichroic
+10
+
+Unscramble:  o i i e h d c n
+Echinoid
+10
+
+Unscramble:  o i i i l s l n
+Illinois
+10
+
+Unscramble:  o i l a l g r
+Gorilla
+10
+
+Unscramble:  o i m x e c
+Mexico
+10
+
+Unscramble:  o i n e m a d t
+Dominate
+10
+
+Unscramble:  o i n g c v
+Coving
+10
+
+Unscramble:  o i n g j k
+Joking
+10
+
+Unscramble:  o i n s s e n s
+Nosiness
+10
+
+Unscramble:  o i n s s e r p
+Ropiness
+10
+
+Unscramble:  o i p e i c p l
+Epiploic
+10
+
+Unscramble:  o i s h p l
+Polish
+10
+
+Unscramble:  o i s p i d r m
+Prismoid
+10
+
+Unscramble:  o i s r e p n r s
+Prisoners
+10
+
+Unscramble:  o i t a a r b t
+Abattoir
+10
+
+Unscramble:  o i t e v i v l
+Volitive
+10
+
+Unscramble:  o i t t l a v n
+Volitant
+10
+
+Unscramble:  o i v y t i m t
+Motivity
+10
+
+Unscramble:  o i z l i s v t v
+Slivovitz
+10
+
+Unscramble:  o k a e l b w r
+Workable
+10
+
+Unscramble:  o k e d c y c e
+Cockeyed
+10
+
+Unscramble:  o k e s r c n
+Conkers
+10
+
+Unscramble:  o k e y m n
+Monkey
+10
+
+Unscramble:  o k i s a n s g
+Soakings
+10
+
+Unscramble:  o k i s g n d c
+Dockings
+10
+
+Unscramble:  o k i t l e y s
+Yolkiest
+10
+
+Unscramble:  o k l a c
+Cloak
+10
+
+Unscramble:  o k l t r i f f
+Forklift
+10
+
+Unscramble:  o k n n i r s h
+Inkhorns
+10
+
+Unscramble:  o k s c r c e w r
+Corkscrew
+10
+
+Unscramble:  o k s e d i d c
+Dockside
+10
+
+Unscramble:  o k s r l i f e
+Folksier
+10
+
+Unscramble:  o k t l c a c i
+Cocktail
+10
+
+Unscramble:  o k w y a f l
+Folkway
+10
+
+Unscramble:  o l a e g m u
+Moulage
+10
+
+Unscramble:  o l a e w p d l
+Walloped
+10
+
+Unscramble:  o l a g r s i s
+Girasols
+10
+
+Unscramble:  o l a n h i g l
+Halloing
+10
+
+Unscramble:  o l a s l r c d
+Collards
+10
+
+Unscramble:  o l b e t a q u
+Quotable
+10
+
+Unscramble:  o l d g u i m n
+Moulding
+10
+
+Unscramble:  o l d o b
+Blood
+10
+
+Unscramble:  o l d s u e m r
+Moulders
+10
+
+Unscramble:  o l e b r e o h
+Borehole
+10
+
+Unscramble:  o l e d l y v e
+Volleyed
+10
+
+Unscramble:  o l e d p o
+Pooled
+10
+
+Unscramble:  o l e e w m d c
+Welcomed
+10
+
+Unscramble:  o l e g a c n
+Congeal
+10
+
+Unscramble:  o l e m m t r
+Trommel
+10
+
+Unscramble:  o l e n e c l
+Colleen
+10
+
+Unscramble:  o l e s f w l
+Fellows
+10
+
+Unscramble:  o l e s m m t r
+Trommels
+10
+
+Unscramble:  o l i d e d l
+Dollied
+10
+
+Unscramble:  o l i d m t e v
+Demivolt
+10
+
+Unscramble:  o l i e k r d
+Rodlike
+10
+
+Unscramble:  o l i g n c o
+Cooling
+10
+
+Unscramble:  o l i g n t i
+Toiling
+10
+
+Unscramble:  o l i g r c w
+Cowgirl
+10
+
+Unscramble:  o l l r e i w o
+Woollier
+10
+
+Unscramble:  o l l y n a c l
+Clonally
+10
+
+Unscramble:  o l n k l e r c
+Rollneck
+10
+
+Unscramble:  o l o d e w f l
+Followed
+10
+
+Unscramble:  o l o d l w f e
+Followed
+10
+
+Unscramble:  o l r y p e p r
+Properly
+10
+
+Unscramble:  o l u s l t p e
+Pollutes
+10
+
+Unscramble:  o l y g l w g o
+Gollywog
+10
+
+Unscramble:  o m a s r d r
+Ramrods
+10
+
+Unscramble:  o m d s n e y r
+Syndrome
+10
+
+Unscramble:  o m e m c a y t
+Mycetoma
+10
+
+Unscramble:  o m e n o n n u
+Noumenon
+10
+
+Unscramble:  o m e o o c s d r m
+Commodores
+10
+
+Unscramble:  o m e y r t z o
+Zoometry
+10
+
+Unscramble:  o m i e t t c d m
+Committed
+10
+
+Unscramble:  o m k d r e a s
+Darksome
+10
+
+Unscramble:  o m l i b
+Limbo
+10
+
+Unscramble:  o m l p y e h l
+Phyllome
+10
+
+Unscramble:  o m n o t c g r i f
+Comforting
+10
+
+Unscramble:  o m o c l y o t
+Colotomy
+10
+
+Unscramble:  o m o r m n c e
+Commoner
+10
+
+Unscramble:  o m o s s s b l
+Blossoms
+10
+
+Unscramble:  o m p l m a y h
+Lymphoma
+10
+
+Unscramble:  o m p s m y t
+Symptom
+10
+
+Unscramble:  o m r b d e o
+Bedroom
+10
+
+Unscramble:  o m u s i n c t m
+Communist
+10
+
+Unscramble:  o n a d u s t h
+Thousand
+10
+
+Unscramble:  o n a s r d t o
+Tornados
+10
+
+Unscramble:  o n a t h u s d
+Handouts
+10
+
+Unscramble:  o n c o g
+Congo
+10
+
+Unscramble:  o n c r c a o
+Raccoon
+10
+
+Unscramble:  o n d s r e s u
+Sounders
+10
+
+Unscramble:  o n d s s u
+Sounds
+10
+
+Unscramble:  o n d Y r a b u
+Boundary
+10
+
+Unscramble:  o n e a i p m m t
+Pantomime
+10
+
+Unscramble:  o n e a l i r
+Aileron
+10
+
+Unscramble:  o n e t r s
+Tensor
+10
+
+Unscramble:  o n f m u o l
+Mouflon
+10
+
+Unscramble:  o n g e r a
+Orange
+10
+
+Unscramble:  o n i b n s e s
+Benisons
+10
+
+Unscramble:  o n i e c a p r
+Procaine
+10
+
+Unscramble:  o n i e c r e x
+Exocrine
+10
+
+Unscramble:  o n i g o m b l
+Blooming
+10
+
+Unscramble:  o n i g t t b l
+Blotting
+10
+
+Unscramble:  o n i g t t s p
+Spotting
+10
+
+Unscramble:  o n i m k o a m
+Makimono
+10
+
+Unscramble:  o n k s u c t m r o
+Moonstruck
+10
+
+Unscramble:  o n l n c s u e
+Nucleons
+10
+
+Unscramble:  o n l t e m o
+Moonlet
+10
+
+Unscramble:  o n o c r d
+Condor
+10
+
+Unscramble:  o n o t o p n
+Pontoon
+10
+
+Unscramble:  o n s e t s f o
+Eftsoons
+10
+
+Unscramble:  o n s t n e i
+Tension
+10
+
+Unscramble:  o n t c p s a i
+Captions
+10
+
+Unscramble:  o n t e i s d i
+Editions
+10
+
+Unscramble:  o n t g i i p n
+Pointing
+10
+
+Unscramble:  o n t g n i j i
+Jointing
+10
+
+Unscramble:  o n t p r s o i
+Portions
+10
+
+Unscramble:  o n u a p e i n m
+Pneumonia
+10
+
+Unscramble:  o n u m g o s r
+Gunrooms
+10
+
+Unscramble:  o n y b b a l
+Babylon
+10
+
+Unscramble:  o n y i s n c t
+Syntonic
+10
+
+Unscramble:  o o a d i c m n
+Monoacid
+10
+
+Unscramble:  o o b c u m l r
+Clubroom
+10
+
+Unscramble:  o o b d u n o l
+Doubloon
+10
+
+Unscramble:  o o c a c t b
+Tobacco
+10
+
+Unscramble:  o o h d c i r
+Choroid
+10
+
+Unscramble:  o o i y b g l
+Biology
+10
+
+Unscramble:  o o l u l u h n
+Honolulu
+10
+
+Unscramble:  o o l y g o m n
+Monology
+10
+
+Unscramble:  o o l y g o t c
+Tocology
+10
+
+Unscramble:  o o n o t t r
+Toronto
+10
+
+Unscramble:  o o n y c l
+Colony
+10
+
+Unscramble:  o o r o e k v t
+Overtook
+10
+
+Unscramble:  o o s a i d n p
+Isopodan
+10
+
+Unscramble:  o o t Y n o m n
+Monotony
+10
+
+Unscramble:  o p a e r d c m
+Compadre
+10
+
+Unscramble:  o p e e h r m t y a n
+Hymenoptera
+10
+
+Unscramble:  o p e r c o
+Cooper
+10
+
+Unscramble:  o p h s n i d l
+Dolphins
+10
+
+Unscramble:  o p i s p n t g
+Toppings
+10
+
+Unscramble:  o p l t m e c a
+Compleat
+10
+
+Unscramble:  o p o d e s c m
+Composed
+10
+
+Unscramble:  o p o e s c m
+Compose
+10
+
+Unscramble:  o p s b o e i c
+Bioscope
+10
+
+Unscramble:  o p s d a e i c
+Diascope
+10
+
+Unscramble:  o p s h r p e o t e r
+Troposphere
+10
+
+Unscramble:  o p u e s s r p
+Supposer
+10
+
+Unscramble:  o p u r e t c s m
+Computers
+10
+
+Unscramble:  o p u t s r s p
+Supports
+10
+
+Unscramble:  o p x t e i l
+Exploit
+10
+
+Unscramble:  o p y n t o s h
+Typhoons
+10
+
+Unscramble:  o q u s l i j n
+Jonquils
+10
+
+Unscramble:  o q u s r e c n
+Conquers
+10
+
+Unscramble:  o r a a i h n c m
+Harmonica
+10
+
+Unscramble:  o r a a l s b t
+Ablators
+10
+
+Unscramble:  o r a i n t c c
+Narcotic
+10
+
+Unscramble:  o r a m t s a d
+Matadors
+10
+
+Unscramble:  o r a s m d c e
+Comrades
+10
+
+Unscramble:  o r a s p n t
+Partons
+10
+
+Unscramble:  o r a s p t r
+Parrots
+10
+
+Unscramble:  o r a s t o h b
+Tarboosh
+10
+
+Unscramble:  o r c g u i s n
+Sourcing
+10
+
+Unscramble:  o r d s a e h r
+Hoarders
+10
+
+Unscramble:  o r e m l t a h g e
+Geothermal
+10
+
+Unscramble:  o r e s t n t r
+Torrents
+10
+
+Unscramble:  o r e s u t s h
+Shouters
+10
+
+Unscramble:  o r e y s p
+Osprey
+10
+
+Unscramble:  o r f o p
+Proof
+10
+
+Unscramble:  o r i a r m u f
+Auriform
+10
+
+Unscramble:  o r i e s m n f
+Ensiform
+10
+
+Unscramble:  o r i l a i f
+Airfoil
+10
+
+Unscramble:  o r i l w s g s h
+Showgirls
+10
+
+Unscramble:  o r i s e c w
+Cowries
+10
+
+Unscramble:  o r i s e h r
+Horsier
+10
+
+Unscramble:  o r i s m r r
+Mirrors
+10
+
+Unscramble:  o r i v s s i t
+Visitors
+10
+
+Unscramble:  o r i y l d t r
+Torridly
+10
+
+Unscramble:  o r k e s t
+Stoker
+10
+
+Unscramble:  o r l u a m d
+Modular
+10
+
+Unscramble:  o r n l u f m u
+Mournful
+10
+
+Unscramble:  o r o e c d r
+Corrode
+10
+
+Unscramble:  o r o i h n c m
+Hormonic
+10
+
+Unscramble:  o r o w s r
+Sorrow
+10
+
+Unscramble:  o r s d e c u
+Coursed
+10
+
+Unscramble:  o r s f u e y l
+Yourself
+10
+
+Unscramble:  o r s o t n u w
+Outsworn
+10
+
+Unscramble:  o r s s e b u
+Bourses
+10
+
+Unscramble:  o r t n u e f e
+Fourteen
+10
+
+Unscramble:  o r u i l y l s
+Illusory
+10
+
+Unscramble:  o r u q e c n
+Conquer
+10
+
+Unscramble:  o r u s c u i
+Curious
+10
+
+Unscramble:  o r y g n i w r
+Worrying
+10
+
+Unscramble:  o s a i s
+Oasis
+10
+
+Unscramble:  o s b d a n s c
+Absconds
+10
+
+Unscramble:  o s c s r h b e
+Borsches
+10
+
+Unscramble:  o s e c p f r
+Forceps
+10
+
+Unscramble:  o s e d r v i
+Voiders
+10
+
+Unscramble:  o s e d t p
+Despot
+10
+
+Unscramble:  o s e f r h o
+Hoofers
+10
+
+Unscramble:  o s e g r c n
+Congers
+10
+
+Unscramble:  o s e k t r c
+Rockets
+10
+
+Unscramble:  o s e n r m h e
+Horsemen
+10
+
+Unscramble:  o s e s d n g o
+Goodness
+10
+
+Unscramble:  o s e s t l r o
+Rootless
+10
+
+Unscramble:  o s e w o g h o
+Hoosegow
+10
+
+Unscramble:  o s i a b l n
+Albinos
+10
+
+Unscramble:  o s i a d Y l l
+Disloyal
+10
+
+Unscramble:  o s i e s b p l
+Possible
+10
+
+Unscramble:  o s i l n g b
+Goblins
+10
+
+Unscramble:  o s i r e d c n
+Consider
+10
+
+Unscramble:  o s i s g n h u
+Housings
+10
+
+Unscramble:  o s i t r c e x
+Exorcist
+10
+
+Unscramble:  o s l d e n d
+Noddles
+10
+
+Unscramble:  o s l s w i c p
+Cowslips
+10
+
+Unscramble:  o s l w a a v
+Avowals
+10
+
+Unscramble:  o s n e t m m
+Moments
+10
+
+Unscramble:  o s o d r c n
+Condors
+10
+
+Unscramble:  o s o g e f r
+Forgoes
+10
+
+Unscramble:  o s t d e j i
+Joisted
+10
+
+Unscramble:  o s t e t a c n
+Constate
+10
+
+Unscramble:  o s t g n i b a
+Boasting
+10
+
+Unscramble:  o s t i s e g
+Egoists
+10
+
+Unscramble:  o s t s i e r r
+Roisters
+10
+
+Unscramble:  o s t s l e h r
+Holsters
+10
+
+Unscramble:  o s t s r e m n
+Monsters
+10
+
+Unscramble:  o s u e r p s
+Poseurs
+10
+
+Unscramble:  o s u k t c y s
+Tussocky
+10
+
+Unscramble:  o s u s n i n t
+Nonsuits
+10
+
+Unscramble:  o t a t c c n
+Contact
+10
+
+Unscramble:  o t b l l a f o
+Football
+10
+
+Unscramble:  o t b s y s l o
+Slyboots
+10
+
+Unscramble:  o t c y a c p
+Copycat
+10
+
+Unscramble:  o t e e t d s r
+Tetrodes
+10
+
+Unscramble:  o t e h b t s r
+Betroths
+10
+
+Unscramble:  o t e l s n b
+Noblest
+10
+
+Unscramble:  o t e m r e
+Meteor
+10
+
+Unscramble:  o t e r l o
+Looter
+10
+
+Unscramble:  o t e r p u
+Pouter
+10
+
+Unscramble:  o t e s n x c t
+Contexts
+10
+
+Unscramble:  o t e s r l i
+Loiters
+10
+
+Unscramble:  o t e s r r o
+Rooters
+10
+
+Unscramble:  o t h d a e g r
+Goatherd
+10
+
+Unscramble:  o t h d e t o
+Toothed
+10
+
+Unscramble:  o t h s g
+Ghost
+10
+
+Unscramble:  o t h u g b r
+Brought
+10
+
+Unscramble:  o t i g n s r
+Sorting
+10
+
+Unscramble:  o t i l a c c r
+Cortical
+10
+
+Unscramble:  o t i m l s e l
+Melilots
+10
+
+Unscramble:  o t i o u n c n
+Continuo
+10
+
+Unscramble:  o t i r e g u
+Goutier
+10
+
+Unscramble:  o t i t s e g u
+Goutiest
+10
+
+Unscramble:  o t l e v i
+Violet
+10
+
+Unscramble:  o t l g n i f o
+Footling
+10
+
+Unscramble:  o t l n g e i i u l
+Guillotine
+10
+
+Unscramble:  o t m e r
+Metro
+10
+
+Unscramble:  o t o d e n c t
+Cottoned
+10
+
+Unscramble:  o t o d t m b e
+Bottomed
+10
+
+Unscramble:  o t o n b s
+Boston
+10
+
+Unscramble:  o t o p r c m
+Comport
+10
+
+Unscramble:  o t o s r d c
+Doctors
+10
+
+Unscramble:  o t o s r u c n
+Contours
+10
+
+Unscramble:  o t o y n c t
+Cottony
+10
+
+Unscramble:  o t p k i c c
+Cockpit
+10
+
+Unscramble:  o t r l n e m a
+Montreal
+10
+
+Unscramble:  o t r s f
+Frost
+10
+
+Unscramble:  o t r t r a p i
+Portrait
+10
+
+Unscramble:  o t s e a i l r t
+Aristotle
+10
+
+Unscramble:  o t s e r o f o
+Footsore
+10
+
+Unscramble:  o t s p e t f o
+Footstep
+10
+
+Unscramble:  o t s s e i t o
+Tootsies
+10
+
+Unscramble:  o t t s a a n u r
+Astronaut
+10
+
+Unscramble:  o t u e o x s b
+Outboxes
+10
+
+Unscramble:  o t u e r t r
+Torture
+10
+
+Unscramble:  o t u k f c t
+Futtock
+10
+
+Unscramble:  o t u r a d a s n m s
+Nostradamus
+10
+
+Unscramble:  o t u s d u e
+Duteous
+10
+
+Unscramble:  o t u s r o t u
+Tortuous
+10
+
+Unscramble:  o t z s n i h a
+Hoatzins
+10
+
+Unscramble:  o u a d g s i m
+Digamous
+10
+
+Unscramble:  o u a s u s q m
+Squamous
+10
+
+Unscramble:  o u c e a s d i
+Edacious
+10
+
+Unscramble:  o u c s k o t n k
+Knockouts
+10
+
+Unscramble:  o u g s b p u r
+Subgroup
+10
+
+Unscramble:  o u h u s d n r
+Unshroud
+10
+
+Unscramble:  o u l e p a p c
+Populace
+10
+
+Unscramble:  o u m a i b c l
+Columbia
+10
+
+Unscramble:  o u m s i n c t l
+Columnist
+10
+
+Unscramble:  o u m s u b c l
+Columbus
+10
+
+Unscramble:  o u p l t
+Pluto
+10
+
+Unscramble:  o u r s e s p m
+Spermous
+10
+
+Unscramble:  o u r s u s p i
+Spurious
+10
+
+Unscramble:  o u y d g s e n r h
+Greyhounds
+10
+
+Unscramble:  o v i e r t s p
+Sportive
+10
+
+Unscramble:  o v o d n y c e
+Convoyed
+10
+
+Unscramble:  o v t n b e e e h
+Beethoven
+10
+
+Unscramble:  o w l s a s h l
+Shallows
+10
+
+Unscramble:  o w w b o n l d
+Blowdown
+10
+
+Unscramble:  o y a s w n b g
+Bowyangs
+10
+
+Unscramble:  o Y b k p o c o
+Copybook
+10
+
+Unscramble:  o y e t r p t
+Pottery
+10
+
+Unscramble:  o y i d l d w
+Dowdily
+10
+
+Unscramble:  o y i f l g o
+Goofily
+10
+
+Unscramble:  o y i t f f r
+Fortify
+10
+
+Unscramble:  o y l t h s o
+Soothly
+10
+
+Unscramble:  o y n r e j u
+Journey
+10
+
+Unscramble:  o y o d w
+Woody
+10
+
+Unscramble:  o y p y l a p r
+Polypary
+10
+
+Unscramble:  o Y s n w s e b
+Newsboys
+10
+
+Unscramble:  o y t n r c u
+Country
+10
+
+Unscramble:  o Y u a l r p i
+Polyuria
+10
+
+Unscramble:  o z n i e t c o
+Enzootic
+10
+
+Unscramble:  p a c r s e r
+Scarper
+10
+
+Unscramble:  p a k s a e s y e
+Speakeasy
+10
+
+Unscramble:  p a m n e r s u
+Superman
+10
+
+Unscramble:  p a m s l o d i
+Diplomas
+10
+
+Unscramble:  p a r n c o s m
+Crampons
+10
+
+Unscramble:  p a r r t e s p
+Trappers
+10
+
+Unscramble:  p a s r l h s e
+Splasher
+10
+
+Unscramble:  p a u c l s i
+Spicula
+10
+
+Unscramble:  p a y g n i s r
+Spraying
+10
+
+Unscramble:  p b m e t r e s e
+September
+10
+
+Unscramble:  p c e s e n e i
+Epicenes
+10
+
+Unscramble:  p c h e a a
+Apache
+10
+
+Unscramble:  p c s d e e a
+Escaped
+10
+
+Unscramble:  p c s r e e s a
+Escapers
+10
+
+Unscramble:  p d o e p c o
+Copepod
+10
+
+Unscramble:  p d s o e a p
+Apposed
+10
+
+Unscramble:  p e a d e l a p
+Appealed
+10
+
+Unscramble:  p e a r e d s r
+Spreader
+10
+
+Unscramble:  p e a s d s r
+Spreads
+10
+
+Unscramble:  p e b r o s a
+Saprobe
+10
+
+Unscramble:  p e b s r o s a
+Saprobes
+10
+
+Unscramble:  p e c d l a e m
+Emplaced
+10
+
+Unscramble:  p e c s r i c a
+Caprices
+10
+
+Unscramble:  p e e g n e i
+Epigene
+10
+
+Unscramble:  p e h n c e a
+Cheapen
+10
+
+Unscramble:  p e h n o
+Phone
+10
+
+Unscramble:  p e h r s e a
+Reshape
+10
+
+Unscramble:  p e i r p l r i
+Ripplier
+10
+
+Unscramble:  p e i s p l s u
+Supplies
+10
+
+Unscramble:  p e i s r d t p
+Stripped
+10
+
+Unscramble:  p e k r l s a
+Sparkle
+10
+
+Unscramble:  p e l s o u a m
+Ampoules
+10
+
+Unscramble:  p e o r c d e u
+Recouped
+10
+
+Unscramble:  p e o s e x
+Expose
+10
+
+Unscramble:  p e o u l d n p
+Unlopped
+10
+
+Unscramble:  p e r c i s h
+Spheric
+10
+
+Unscramble:  p e r d i
+Pride
+10
+
+Unscramble:  p e r s t u r a
+Raptures
+10
+
+Unscramble:  p e r t w o o
+Towrope
+10
+
+Unscramble:  p e s d t i p e
+Peptised
+10
+
+Unscramble:  p e s s i a c a
+Capiases
+10
+
+Unscramble:  p e s s u l i m
+Impulses
+10
+
+Unscramble:  p e t m s d i y
+Mistyped
+10
+
+Unscramble:  p e y d l o d e
+Deployed
+10
+
+Unscramble:  p e z d s i c a
+Capsized
+10
+
+Unscramble:  p g h t t e s i a
+Spaghetti
+10
+
+Unscramble:  p g n p i t u
+Tupping
+10
+
+Unscramble:  p g n s i l a
+Lapsing
+10
+
+Unscramble:  p g n s w i l a
+Lapwings
+10
+
+Unscramble:  p g t y e
+Egypt
+10
+
+Unscramble:  p h a e c
+Peach
+10
+
+Unscramble:  p i c e u m
+Pumice
+10
+
+Unscramble:  p i m e t i o z
+Optimize
+10
+
+Unscramble:  p i n d r t s e
+Sprinted
+10
+
+Unscramble:  p i n r r t s e
+Sprinter
+10
+
+Unscramble:  p i n s h x s e
+Sphinxes
+10
+
+Unscramble:  p i p e s
+Pepsi
+10
+
+Unscramble:  p i r e c i r m
+Crimpier
+10
+
+Unscramble:  p i r n c i g m
+Crimping
+10
+
+Unscramble:  p i t s b a u o
+Subtopia
+10
+
+Unscramble:  p k a o p o s a
+Pakapoos
+10
+
+Unscramble:  p l b e i a e x
+Expiable
+10
+
+Unscramble:  p l g y i n h o
+Hopingly
+10
+
+Unscramble:  p l o d y h c o
+Copyhold
+10
+
+Unscramble:  p l u i p
+Pupil
+10
+
+Unscramble:  p m s s t i b a
+Baptisms
+10
+
+Unscramble:  p m s s u o o
+Opossum
+10
+
+Unscramble:  p m u s r i
+Primus
+10
+
+Unscramble:  p n d d e l s i
+Spindled
+10
+
+Unscramble:  p n i g u t i m
+Imputing
+10
+
+Unscramble:  p n i h s s a
+Spanish
+10
+
+Unscramble:  p n i l a e x
+Explain
+10
+
+Unscramble:  p n n g n i s a
+Spanning
+10
+
+Unscramble:  p n n s i e s r
+Spinners
+10
+
+Unscramble:  p n n s y e s i
+Spinneys
+10
+
+Unscramble:  p n o l m o y o
+Monopoly
+10
+
+Unscramble:  p n o r c i e s
+Conspire
+10
+
+Unscramble:  p n o t u s i
+Spinout
+10
+
+Unscramble:  p n s r o s o
+Sponsor
+10
+
+Unscramble:  p o a d u l
+Upload
+10
+
+Unscramble:  p o a i n
+Piano
+10
+
+Unscramble:  p o e o c w r e k d
+Woodpecker
+10
+
+Unscramble:  p o g n t a h e
+Heptagon
+10
+
+Unscramble:  p o l s a x m l
+Smallpox
+10
+
+Unscramble:  p o r l p t Y m
+Promptly
+10
+
+Unscramble:  p o r n t i g o
+Trooping
+10
+
+Unscramble:  p o r s u d a o
+Sauropod
+10
+
+Unscramble:  p o s n o i e m
+Empoison
+10
+
+Unscramble:  p p h e g Y a o
+Apophyge
+10
+
+Unscramble:  p p l e e o
+People
+10
+
+Unscramble:  p r a e p
+Paper
+10
+
+Unscramble:  p r a s g d u e
+Upgrades
+10
+
+Unscramble:  p r a s i x s a
+Sparaxis
+10
+
+Unscramble:  p r e d n u t
+Uptrend
+10
+
+Unscramble:  p r e e t
+Peter
+10
+
+Unscramble:  p r e p i s a
+Sappier
+10
+
+Unscramble:  p r e s o s a p
+Apposers
+10
+
+Unscramble:  p r e s s t t a
+Tapsters
+10
+
+Unscramble:  p r e s t n u d
+Uptrends
+10
+
+Unscramble:  p r i a u t s l i
+Spiritual
+10
+
+Unscramble:  p r i t e e a n
+Aperient
+10
+
+Unscramble:  p r n g n i s u
+Spurning
+10
+
+Unscramble:  p r o a l
+Polar
+10
+
+Unscramble:  p r p e u
+Upper
+10
+
+Unscramble:  p r r r a i s e
+Sparrier
+10
+
+Unscramble:  p r t d e s u
+Spurted
+10
+
+Unscramble:  p r t s s e i
+Stripes
+10
+
+Unscramble:  p r t y i s p a
+Papistry
+10
+
+Unscramble:  p s a e t u b
+Upbeats
+10
+
+Unscramble:  p s a r u l
+Pulsar
+10
+
+Unscramble:  p s c e p o e i
+Episcope
+10
+
+Unscramble:  p s e o c o l s
+Cesspool
+10
+
+Unscramble:  p s i c e s e
+Species
+10
+
+Unscramble:  p s i r t s i
+Spirits
+10
+
+Unscramble:  p s i u k s r
+Spruiks
+10
+
+Unscramble:  p s n e i
+Penis
+10
+
+Unscramble:  p s n h o s y
+Syphons
+10
+
+Unscramble:  p s o e d e i
+Episode
+10
+
+Unscramble:  p s o n o i
+Poison
+10
+
+Unscramble:  p s o n p o e t
+Postpone
+10
+
+Unscramble:  p s o s e d e i
+Episodes
+10
+
+Unscramble:  p s o s j h e
+Josephs
+10
+
+Unscramble:  p s r a i
+Paris
+10
+
+Unscramble:  p s r a t
+Parts
+10
+
+Unscramble:  p s t p e t a
+Tappets
+10
+
+Unscramble:  p s u i o i m
+Impious
+10
+
+Unscramble:  p t a d e g u s
+Upstaged
+10
+
+Unscramble:  p t a e i d l a
+Lapidate
+10
+
+Unscramble:  p t e t n y i s t g e
+Typesetting
+10
+
+Unscramble:  p t f y l o t o
+Toplofty
+10
+
+Unscramble:  p t i o n a p
+Appoint
+10
+
+Unscramble:  p t l s o e s s
+Spotless
+10
+
+Unscramble:  p t r n i
+Print
+10
+
+Unscramble:  p u o s r e c u
+Cupreous
+10
+
+Unscramble:  p u r d e n u t
+Upturned
+10
+
+Unscramble:  p y n n e s i
+Spinney
+10
+
+Unscramble:  q a r r e s u
+Squarer
+10
+
+Unscramble:  q a s r e h s u
+Squasher
+10
+
+Unscramble:  q a t t n i a u
+Aquatint
+10
+
+Unscramble:  q a v t i a u
+Aquavit
+10
+
+Unscramble:  q e e e z s u
+Squeeze
+10
+
+Unscramble:  q e t u o u n
+Unquote
+10
+
+Unscramble:  q i r s e s u
+Squires
+10
+
+Unscramble:  q n e e h u n e
+Henequen
+10
+
+Unscramble:  q n e u e
+Queen
+10
+
+Unscramble:  q n u e e
+Queen
+10
+
+Unscramble:  q s a e l s u
+Squeals
+10
+
+Unscramble:  q t e u s
+Quest
+10
+
+Unscramble:  q t n e a u i
+Antique
+10
+
+Unscramble:  q t t e u e c o
+Coquette
+10
+
+Unscramble:  q y r u i e n
+Enquiry
+10
+
+Unscramble:  r a c c s s a a
+Cascaras
+10
+
+Unscramble:  r a c e r u v e
+Verrucae
+10
+
+Unscramble:  r a c h i
+Chair
+10
+
+Unscramble:  r a c l v i c e
+Cervical
+10
+
+Unscramble:  r a c s e h b e
+Breaches
+10
+
+Unscramble:  r a d h o i b s
+Broadish
+10
+
+Unscramble:  r a e i z
+Zaire
+10
+
+Unscramble:  r a g l t u p o
+Portugal
+10
+
+Unscramble:  r a h c e t a
+Trachea
+10
+
+Unscramble:  r a h e s e n g
+Shagreen
+10
+
+Unscramble:  r a i r d n o e
+Ordainer
+10
+
+Unscramble:  r a k g n i b e
+Breaking
+10
+
+Unscramble:  r a k g n i w e
+Wreaking
+10
+
+Unscramble:  r a l s e l c o
+Corellas
+10
+
+Unscramble:  r a m s c e
+Creams
+10
+
+Unscramble:  r a n b a o e e
+Anaerobe
+10
+
+Unscramble:  r a n v a n i
+Nirvana
+10
+
+Unscramble:  r a n y l t e r
+Errantly
+10
+
+Unscramble:  r a o h a t p u g
+Autograph
+10
+
+Unscramble:  r a o t e b b a
+Bareboat
+10
+
+Unscramble:  r a o y d m c e c
+Democracy
+10
+
+Unscramble:  r a p c r o o
+Corpora
+10
+
+Unscramble:  r a s s t b e
+Breasts
+10
+
+Unscramble:  r a t a e r
+Errata
+10
+
+Unscramble:  r a t e h b e
+Breathe
+10
+
+Unscramble:  r a t e t b i
+Biretta
+10
+
+Unscramble:  r a t m u e r
+Erratum
+10
+
+Unscramble:  r a t n i h b g e
+Breathing
+10
+
+Unscramble:  r a t n l a t a
+Tarlatan
+10
+
+Unscramble:  r a t s e c e
+Creates
+10
+
+Unscramble:  r a y i s
+Syria
+10
+
+Unscramble:  r b a t c e a
+Cabaret
+10
+
+Unscramble:  r b b s u e g r
+Grubbers
+10
+
+Unscramble:  r b e e r i d u
+Reburied
+10
+
+Unscramble:  r b e r u b
+Rubber
+10
+
+Unscramble:  r b i t a b
+Rabbit
+10
+
+Unscramble:  r b l e u m
+Rumble
+10
+
+Unscramble:  r b l g n i t e
+Trebling
+10
+
+Unscramble:  r b l m u e
+Lumber
+10
+
+Unscramble:  r b o y s l e
+Soberly
+10
+
+Unscramble:  r b s o e
+Sober
+10
+
+Unscramble:  r b u s s i e e
+Suberise
+10
+
+Unscramble:  r b y c g o
+Cyborg
+10
+
+Unscramble:  r c a r s e
+Racers
+10
+
+Unscramble:  r c a t m a e e
+Macerate
+10
+
+Unscramble:  r c c i o o b l
+Broccoli
+10
+
+Unscramble:  r c c n a e
+Cancer
+10
+
+Unscramble:  r c e e s n d e
+Secerned
+10
+
+Unscramble:  r c h e r u b o
+Brochure
+10
+
+Unscramble:  r c i o b s t
+Strobic
+10
+
+Unscramble:  r c i y f c u
+Crucify
+10
+
+Unscramble:  r c k d a l c e
+Crackled
+10
+
+Unscramble:  r c k e g a w e
+Wreckage
+10
+
+Unscramble:  r c k h a i b s
+Brackish
+10
+
+Unscramble:  r c k s a e b n
+Brackens
+10
+
+Unscramble:  r c k s e i b i
+Brickies
+10
+
+Unscramble:  r c k s r e t i
+Trickers
+10
+
+Unscramble:  r c k t a b b i
+Brickbat
+10
+
+Unscramble:  r c o c a n d i
+Draconic
+10
+
+Unscramble:  r c o r i l t o
+Tricolor
+10
+
+Unscramble:  r c t e u o f s
+Fructose
+10
+
+Unscramble:  r c t l a f a
+Fractal
+10
+
+Unscramble:  r c t n a i f o
+Fraction
+10
+
+Unscramble:  r c u i a
+Auric
+10
+
+Unscramble:  r c u r a l o a
+Oracular
+10
+
+Unscramble:  r c y e l c t i
+Tricycle
+10
+
+Unscramble:  r d a d e t g a
+Gradated
+10
+
+Unscramble:  r d a p o t r s e
+Predators
+10
+
+Unscramble:  r d e e a g
+Agreed
+10
+
+Unscramble:  r d e p n p o
+Propend
+10
+
+Unscramble:  r d g e b i
+Bridge
+10
+
+Unscramble:  r d g g e d a
+Dragged
+10
+
+Unscramble:  r d g n e e
+Gender
+10
+
+Unscramble:  r d g n e w o
+Wronged
+10
+
+Unscramble:  r d g s u e t r
+Trudgers
+10
+
+Unscramble:  r d h l o e
+Holder
+10
+
+Unscramble:  r d h s e t a
+Trashed
+10
+
+Unscramble:  r d i e o x p e
+Peroxide
+10
+
+Unscramble:  r d i s e n u e
+Uredines
+10
+
+Unscramble:  r d k n e c a
+Cranked
+10
+
+Unscramble:  r d m r u e
+Murder
+10
+
+Unscramble:  r d n n t u d s a e
+Understand
+10
+
+Unscramble:  r d o n u
+Round
+10
+
+Unscramble:  r d r a a
+Radar
+10
+
+Unscramble:  r d r d o e e
+Ordered
+10
+
+Unscramble:  r d s w e b o
+Browsed
+10
+
+Unscramble:  r d u l a g a
+Gradual
+10
+
+Unscramble:  r d w f r o a
+Forward
+10
+
+Unscramble:  r d w k y s e o
+Keywords
+10
+
+Unscramble:  r d w m s i o
+Misword
+10
+
+Unscramble:  r e a d t g a
+Gradate
+10
+
+Unscramble:  r e a g t f i
+Frigate
+10
+
+Unscramble:  r e b t e o f o
+Freeboot
+10
+
+Unscramble:  r e c s r a t e
+Terraces
+10
+
+Unscramble:  r e e a p d p a
+Appeared
+10
+
+Unscramble:  r e e n e s f o
+Foreseen
+10
+
+Unscramble:  r e f b f d u e
+Buffered
+10
+
+Unscramble:  r e g a n s t
+Strange
+10
+
+Unscramble:  r e g n a c a
+Carnage
+10
+
+Unscramble:  r e g s y n l a
+Larynges
+10
+
+Unscramble:  r e h d r a h u
+Hurrahed
+10
+
+Unscramble:  r e h m t d o e
+Mothered
+10
+
+Unscramble:  r e h r c e e
+Cheerer
+10
+
+Unscramble:  r e h s s e t e
+Sheerest
+10
+
+Unscramble:  r e i c l s a b
+Calibres
+10
+
+Unscramble:  r e i s t h w o
+Worthies
+10
+
+Unscramble:  r e k r t a p a
+Partaker
+10
+
+Unscramble:  r e l a o i a
+Olearia
+10
+
+Unscramble:  r e l n e b c u t u
+Turbulence
+10
+
+Unscramble:  r e l r c e a
+Clearer
+10
+
+Unscramble:  r e n g a l n d e
+Greenland
+10
+
+Unscramble:  r e n g e i p n
+Preening
+10
+
+Unscramble:  r e n n a i u
+Aneurin
+10
+
+Unscramble:  r e o s h
+Horse
+10
+
+Unscramble:  r e p r a p s t
+Strapper
+10
+
+Unscramble:  r e p s s d u i
+Suspired
+10
+
+Unscramble:  r e r e d i r a
+Drearier
+10
+
+Unscramble:  r e r o e w v g
+Overgrew
+10
+
+Unscramble:  r e r s d e o r
+Orderers
+10
+
+Unscramble:  r e r t e v
+Revert
+10
+
+Unscramble:  r e s a y
+Years
+10
+
+Unscramble:  r e s c n d e u
+Censured
+10
+
+Unscramble:  r e s d o t a u p
+Outspread
+10
+
+Unscramble:  r e s e e y o
+Eyesore
+10
+
+Unscramble:  r e s s p o p u
+Purposes
+10
+
+Unscramble:  r e t a h b e
+Breathe
+10
+
+Unscramble:  r e t a h
+Heart
+10
+
+Unscramble:  r e t d o u s p
+Sprouted
+10
+
+Unscramble:  r e t d u p i r
+Irrupted
+10
+
+Unscramble:  r e t f a s e u
+Features
+10
+
+Unscramble:  r e t h i
+Their
+10
+
+Unscramble:  r e t s l g i
+Gristle
+10
+
+Unscramble:  r e t s m i m a
+Marmites
+10
+
+Unscramble:  r e u s r e a
+Erasure
+10
+
+Unscramble:  r e u u f d n r
+Unfurred
+10
+
+Unscramble:  r e v h o d o e
+Hoovered
+10
+
+Unscramble:  r e v t i f u
+Furtive
+10
+
+Unscramble:  r e w d r o f a
+Farrowed
+10
+
+Unscramble:  r e w e r a f e
+Freeware
+10
+
+Unscramble:  r f a s e c p e
+Prefaces
+10
+
+Unscramble:  r f a w s e
+Wafers
+10
+
+Unscramble:  r f e p s s o r o
+Professor
+10
+
+Unscramble:  r f f c i t a
+Traffic
+10
+
+Unscramble:  r f i r o l p e
+Profiler
+10
+
+Unscramble:  r f t s a e d e
+Draftees
+10
+
+Unscramble:  r f t s r e c o
+Crofters
+10
+
+Unscramble:  r f u y t l a l
+Artfully
+10
+
+Unscramble:  r g a e v i s a
+Vagaries
+10
+
+Unscramble:  r g a s i n b d
+Brigands
+10
+
+Unscramble:  r g g d e l d a
+Draggled
+10
+
+Unscramble:  r g g s i l w e
+Wriggles
+10
+
+Unscramble:  r g l a a i e
+Algeria
+10
+
+Unscramble:  r g n d i c a
+Carding
+10
+
+Unscramble:  r g n e e g o
+Engorge
+10
+
+Unscramble:  r g n e r r i d e
+Derringer
+10
+
+Unscramble:  r g n f i t u
+Turfing
+10
+
+Unscramble:  r g n m i t e
+Terming
+10
+
+Unscramble:  r g n r i b u
+Burring
+10
+
+Unscramble:  r g s u a
+Sugar
+10
+
+Unscramble:  r h a t e
+Earth
+10
+
+Unscramble:  r h e e t
+There
+10
+
+Unscramble:  r h e s e a p t
+Preheats
+10
+
+Unscramble:  r h f t a e
+Father
+10
+
+Unscramble:  r h o n c i g e
+Cohering
+10
+
+Unscramble:  r h p b h o i a s c
+Archbishop
+10
+
+Unscramble:  r h x e t o
+Exhort
+10
+
+Unscramble:  r i a a i x v t
+Aviatrix
+10
+
+Unscramble:  r i c i s o d u
+Sciuroid
+10
+
+Unscramble:  r i d m n n a a
+Mandarin
+10
+
+Unscramble:  r i e r u b
+Rubier
+10
+
+Unscramble:  r i g e r a i t
+Irrigate
+10
+
+Unscramble:  r i g e t n n a e
+Tangerine
+10
+
+Unscramble:  r i h a a p a g
+Agraphia
+10
+
+Unscramble:  r i h a p c s e
+Aspheric
+10
+
+Unscramble:  r i k s s e
+Skiers
+10
+
+Unscramble:  r i m e m d s z e e
+Mesmerized
+10
+
+Unscramble:  r i n c r b o c
+Corncrib
+10
+
+Unscramble:  r i n d e d a
+Drained
+10
+
+Unscramble:  r i n g n i b a
+Braining
+10
+
+Unscramble:  r i n y y g t l
+Tryingly
+10
+
+Unscramble:  r i r c t a h b
+Tribrach
+10
+
+Unscramble:  r i r h t c y a
+Triarchy
+10
+
+Unscramble:  r i s c u t t i
+Truistic
+10
+
+Unscramble:  r i s s e t a t
+Artistes
+10
+
+Unscramble:  r i u m a d
+Radium
+10
+
+Unscramble:  r i v d e a r
+Arrived
+10
+
+Unscramble:  r k a i i y t e
+Teriyaki
+10
+
+Unscramble:  r k d c i e
+Dicker
+10
+
+Unscramble:  r k e d o o
+Rooked
+10
+
+Unscramble:  r k e t o c
+Rocket
+10
+
+Unscramble:  r l a i v a r
+Arrival
+10
+
+Unscramble:  r l b e i b s c
+Scribble
+10
+
+Unscramble:  r l b y t i
+Trilby
+10
+
+Unscramble:  r l e d f i a i
+Airfield
+10
+
+Unscramble:  r l e l e w f a
+Farewell
+10
+
+Unscramble:  r l e s e a
+Reales
+10
+
+Unscramble:  r l g e u d g s t
+Struggled
+10
+
+Unscramble:  r l h r u e
+Hurler
+10
+
+Unscramble:  r l k e i n s p
+Sprinkle
+10
+
+Unscramble:  r l l s i e d r
+Drillers
+10
+
+Unscramble:  r l o b o e
+Bolero
+10
+
+Unscramble:  r l o u d o s o
+Dolorous
+10
+
+Unscramble:  r l o z c i e o
+Colorize
+10
+
+Unscramble:  r l r h f c m o o o
+Chloroform
+10
+
+Unscramble:  r l t w i y r e
+Writerly
+10
+
+Unscramble:  r l u m f u c
+Fulcrum
+10
+
+Unscramble:  r l v c e y l e
+Cleverly
+10
+
+Unscramble:  r m b e l t e
+Tremble
+10
+
+Unscramble:  r m e l i v p a
+Primeval
+10
+
+Unscramble:  r m e n m a e b
+Membrane
+10
+
+Unscramble:  r m i s e d b o
+Bromides
+10
+
+Unscramble:  r m i u d o s e
+Dimerous
+10
+
+Unscramble:  r m l h o e c c
+Cromlech
+10
+
+Unscramble:  r m m a i t l o
+Immortal
+10
+
+Unscramble:  r m m i a e
+Maimer
+10
+
+Unscramble:  r m m r e d u
+Drummer
+10
+
+Unscramble:  r m o y c e s f
+Comfreys
+10
+
+Unscramble:  r m p e l t a
+Trample
+10
+
+Unscramble:  r m p s e l t a
+Tramples
+10
+
+Unscramble:  r m p s r e t a
+Trampers
+10
+
+Unscramble:  r m p s t e t u
+Trumpets
+10
+
+Unscramble:  r m u b i t e
+Terbium
+10
+
+Unscramble:  r n a d e t c e
+Crenated
+10
+
+Unscramble:  r n a l m i l d
+Mandrill
+10
+
+Unscramble:  r n a t a o e m p u t
+Portmanteau
+10
+
+Unscramble:  r n c e f a
+France
+10
+
+Unscramble:  r n c s e h w e
+Wrenches
+10
+
+Unscramble:  r n c s s e p i
+Princess
+10
+
+Unscramble:  r n d a e b o
+Broaden
+10
+
+Unscramble:  r n d e g a
+Garden
+10
+
+Unscramble:  r n g e e r i f o
+Foreigner
+10
+
+Unscramble:  r n g e l c i
+Cringle
+10
+
+Unscramble:  r n i g a g g a
+Garaging
+10
+
+Unscramble:  r n i g i p s t
+Striping
+10
+
+Unscramble:  r n i l o c i a
+Ironical
+10
+
+Unscramble:  r n i l o p u
+Purloin
+10
+
+Unscramble:  r n i t s e b i
+Briniest
+10
+
+Unscramble:  r n k d i l w e
+Wrinkled
+10
+
+Unscramble:  r n k t s e d u
+Drunkest
+10
+
+Unscramble:  r n m w e c e
+Crewmen
+10
+
+Unscramble:  r n n s r e g i
+Grinners
+10
+
+Unscramble:  r n o a m
+Roman
+10
+
+Unscramble:  r n o g o d a
+Dragoon
+10
+
+Unscramble:  r n s m o t a
+Transom
+10
+
+Unscramble:  r n s t c e t a
+Transect
+10
+
+Unscramble:  r n t c s s i e
+Cisterns
+10
+
+Unscramble:  r n t t e w i
+Written
+10
+
+Unscramble:  r n u r f a y e
+Funerary
+10
+
+Unscramble:  r n w d o o i o
+Ironwood
+10
+
+Unscramble:  r n z e b o
+Bronze
+10
+
+Unscramble:  r o a b c
+Cobra
+10
+
+Unscramble:  r o c l o u
+Colour
+10
+
+Unscramble:  r o c o c s i
+Sirocco
+10
+
+Unscramble:  r o d a i
+Radio
+10
+
+Unscramble:  r o d c r y o u
+Corduroy
+10
+
+Unscramble:  r o h h g w i b
+Highbrow
+10
+
+Unscramble:  r o i h n
+Rhino
+10
+
+Unscramble:  r o i n a t d u
+Duration
+10
+
+Unscramble:  r o i s e r a m
+Armoires
+10
+
+Unscramble:  r o l g o i d n
+Drooling
+10
+
+Unscramble:  r o m g n i b o
+Brooming
+10
+
+Unscramble:  r o p g o i d n
+Drooping
+10
+
+Unscramble:  r o p n s a r
+Sporran
+10
+
+Unscramble:  r o r t b i a s
+Arborist
+10
+
+Unscramble:  r o s m i a s g
+Isograms
+10
+
+Unscramble:  r o t r e c d i
+Director
+10
+
+Unscramble:  r p a l o n p o
+Propanol
+10
+
+Unscramble:  r p a s e r p e
+Prepares
+10
+
+Unscramble:  r p c p o e
+Copper
+10
+
+Unscramble:  r p d e e e
+Deeper
+10
+
+Unscramble:  r p e n a m t i
+Tripeman
+10
+
+Unscramble:  r p h e a e g m
+Grapheme
+10
+
+Unscramble:  r p h s e i t o
+Trophies
+10
+
+Unscramble:  r p h y o e p s
+Prophesy
+10
+
+Unscramble:  r p i s v i h e
+Viperish
+10
+
+Unscramble:  r p k a s
+Spark
+10
+
+Unscramble:  r p o s k t w o
+Worktops
+10
+
+Unscramble:  r p p d e g i
+Gripped
+10
+
+Unscramble:  r p p n a e t a
+Apparent
+10
+
+Unscramble:  r p p s e l c i
+Cripples
+10
+
+Unscramble:  r p r o h p s e t e o
+Troposphere
+10
+
+Unscramble:  r p s e a s e
+Asperse
+10
+
+Unscramble:  r p s m i e
+Simper
+10
+
+Unscramble:  r p s n a i i
+Aspirin
+10
+
+Unscramble:  r p s t a i y e
+Asperity
+10
+
+Unscramble:  r p t c i t y
+Tryptic
+10
+
+Unscramble:  r p t m e e
+Temper
+10
+
+Unscramble:  r p t n o i e u
+Eruption
+10
+
+Unscramble:  r p u n s i g e
+Supering
+10
+
+Unscramble:  r r a s w e s d
+Wardress
+10
+
+Unscramble:  r r a y g l b u
+Burglary
+10
+
+Unscramble:  r r b a e e
+Bearer
+10
+
+Unscramble:  r r d a a
+Radar
+10
+
+Unscramble:  r r e e c a
+Career
+10
+
+Unscramble:  r r e i d d e
+Derider
+10
+
+Unscramble:  r r e k i b a
+Barkier
+10
+
+Unscramble:  r r e o n c o
+Coroner
+10
+
+Unscramble:  r r h t e w i
+Writher
+10
+
+Unscramble:  r r i e v
+River
+10
+
+Unscramble:  r r k a e w e
+Wreaker
+10
+
+Unscramble:  r r k n e d u
+Drunker
+10
+
+Unscramble:  r r k n e f a
+Franker
+10
+
+Unscramble:  r r l l e c u
+Cruller
+10
+
+Unscramble:  r r m a e c e
+Creamer
+10
+
+Unscramble:  r r n w e p a
+Prawner
+10
+
+Unscramble:  r r o n f u s e
+Foreruns
+10
+
+Unscramble:  r r o o w o m k
+Workroom
+10
+
+Unscramble:  r r o s k h m a
+Markhors
+10
+
+Unscramble:  r r p s e p o
+Prosper
+10
+
+Unscramble:  r r p u o e
+Pourer
+10
+
+Unscramble:  r r r a e
+Rarer
+10
+
+Unscramble:  r r s s e t u
+Trusser
+10
+
+Unscramble:  r r t e p o
+Porter
+10
+
+Unscramble:  r r v i e
+River
+10
+
+Unscramble:  r r z a o
+Razor
+10
+
+Unscramble:  r s a d e d c u
+Crusaded
+10
+
+Unscramble:  r s a e c e s u
+Surcease
+10
+
+Unscramble:  r s a i p
+Paris
+10
+
+Unscramble:  r s a l e
+Earls
+10
+
+Unscramble:  r s a n e c o
+Corneas
+10
+
+Unscramble:  r s a u l a a i t
+Australia
+10
+
+Unscramble:  r s b b r a e
+Barbers
+10
+
+Unscramble:  r s c a e
+Races
+10
+
+Unscramble:  r s c m r e e
+Mercers
+10
+
+Unscramble:  r s d c a h o
+Chadors
+10
+
+Unscramble:  r s d h l o e
+Holders
+10
+
+Unscramble:  r s e a g p a
+Parages
+10
+
+Unscramble:  r s e b h
+Herbs
+10
+
+Unscramble:  r s e d a i
+Raised
+10
+
+Unscramble:  r s e e d t r e
+Deserter
+10
+
+Unscramble:  r s e g l g u
+Gurgles
+10
+
+Unscramble:  r s e o s p o
+Poroses
+10
+
+Unscramble:  r s e p l d u
+Drupels
+10
+
+Unscramble:  r s e r b o
+Resorb
+10
+
+Unscramble:  r s e r i m a
+Marries
+10
+
+Unscramble:  r s e s n l h o
+Hornless
+10
+
+Unscramble:  r s e s Y n s p
+Spryness
+10
+
+Unscramble:  r s e t t h f u
+Furthest
+10
+
+Unscramble:  r s g h g u e
+Huggers
+10
+
+Unscramble:  r s h s t e f e
+Freshets
+10
+
+Unscramble:  r s i c d a t t
+Distract
+10
+
+Unscramble:  r s i e a d f a
+Faradise
+10
+
+Unscramble:  r s i e d d r o
+Disorder
+10
+
+Unscramble:  r s i e v e o
+Erosive
+10
+
+Unscramble:  r s i n a i
+Raisin
+10
+
+Unscramble:  r s i t m e
+Merits
+10
+
+Unscramble:  r s i v r a e
+Variers
+10
+
+Unscramble:  r s k h n o e
+Honkers
+10
+
+Unscramble:  r s k p r o e
+Porkers
+10
+
+Unscramble:  r s k t c i e
+Tickers
+10
+
+Unscramble:  r s l b e t e
+Trebles
+10
+
+Unscramble:  r s l f l i e
+Fillers
+10
+
+Unscramble:  r s l f u e a
+Earfuls
+10
+
+Unscramble:  r s l o e a e
+Areoles
+10
+
+Unscramble:  r s m p e e r o
+Premorse
+10
+
+Unscramble:  r s m s e e e
+Seemers
+10
+
+Unscramble:  r s n c r o e
+Corners
+10
+
+Unscramble:  r s n n e i g u
+Ensuring
+10
+
+Unscramble:  r s n n u u g t
+Unstrung
+10
+
+Unscramble:  r s n p a t a
+Tarpans
+10
+
+Unscramble:  r s o e c l p a
+Parclose
+10
+
+Unscramble:  r s o e s
+Roses
+10
+
+Unscramble:  r s o l n i s t
+Nostrils
+10
+
+Unscramble:  r s o n u u a
+Uranous
+10
+
+Unscramble:  r s p h p o e
+Hoppers
+10
+
+Unscramble:  r s p s p i e
+Sippers
+10
+
+Unscramble:  r s r g e f o
+Forgers
+10
+
+Unscramble:  r s s g n i g a
+Grassing
+10
+
+Unscramble:  r s s g n i t u
+Trussing
+10
+
+Unscramble:  r s s s u e b l
+Brussels
+10
+
+Unscramble:  r s t b a o e
+Boaters
+10
+
+Unscramble:  r s t d e t u
+Trusted
+10
+
+Unscramble:  r s t e i a c t
+Cristate
+10
+
+Unscramble:  r s t f s o e
+Fosters
+10
+
+Unscramble:  r s t m n e o
+Mentors
+10
+
+Unscramble:  r s t n c e a
+Nectars
+10
+
+Unscramble:  r s t p l e e
+Pelters
+10
+
+Unscramble:  r s t r o p a
+Parrots
+10
+
+Unscramble:  r s t s a k e
+Skaters
+10
+
+Unscramble:  r s t t t a e
+Tatters
+10
+
+Unscramble:  r s t u p i r
+Irrupts
+10
+
+Unscramble:  r s u e m o d o
+Dormouse
+10
+
+Unscramble:  r s u e o c e
+Cereous
+10
+
+Unscramble:  r s u i s s e
+Issuers
+10
+
+Unscramble:  r s u p b
+Burps
+10
+
+Unscramble:  r s u r o f e
+Ferrous
+10
+
+Unscramble:  r s w g o r e
+Growers
+10
+
+Unscramble:  r s y b w o e
+Bowyers
+10
+
+Unscramble:  r s y o e b e
+Obeyers
+10
+
+Unscramble:  r t a b b o e h
+Bathrobe
+10
+
+Unscramble:  r t a e o g a r
+Arrogate
+10
+
+Unscramble:  r t a e o n c o
+Coronate
+10
+
+Unscramble:  r t a l n a s u
+Naturals
+10
+
+Unscramble:  r t a w s e
+Waters
+10
+
+Unscramble:  r t c d e h w e
+Wretched
+10
+
+Unscramble:  r t d c o o
+Doctor
+10
+
+Unscramble:  r t e d p e e
+Petered
+10
+
+Unscramble:  r t e e b
+Beret
+10
+
+Unscramble:  r t e e r e s i
+Retirees
+10
+
+Unscramble:  r t e e s a p o
+Protease
+10
+
+Unscramble:  r t e s a e
+Easter
+10
+
+Unscramble:  r t g i h
+Right
+10
+
+Unscramble:  r t h h t o i e
+Hitherto
+10
+
+Unscramble:  r t h l a f w u
+Wrathful
+10
+
+Unscramble:  r t h s o e b r
+Brothers
+10
+
+Unscramble:  r t h s r e b o
+Brothers
+10
+
+Unscramble:  r t h t o e
+Hotter
+10
+
+Unscramble:  r t i h g
+Right
+10
+
+Unscramble:  r t i l a c c i
+Critical
+10
+
+Unscramble:  r t i s f e s u
+Surfeits
+10
+
+Unscramble:  r t i s o s p t
+Protists
+10
+
+Unscramble:  r t l o u i r e
+Ulterior
+10
+
+Unscramble:  r t m o s
+Storm
+10
+
+Unscramble:  r t o l o c p o
+Protocol
+10
+
+Unscramble:  r t p c r a o
+Carport
+10
+
+Unscramble:  r t p j t e o
+Jetport
+10
+
+Unscramble:  r t p r m a a
+Rampart
+10
+
+Unscramble:  r t t a e i
+Attire
+10
+
+Unscramble:  r t t d e g i
+Gritted
+10
+
+Unscramble:  r t t e c i b a
+Brattice
+10
+
+Unscramble:  r t t i r e
+Triter
+10
+
+Unscramble:  r t u e o i d c
+Outcried
+10
+
+Unscramble:  r t u w o o s g
+Outgrows
+10
+
+Unscramble:  r t w k e o f r
+Fretwork
+10
+
+Unscramble:  r t w n i e
+Winter
+10
+
+Unscramble:  r t x o e i r e
+Exterior
+10
+
+Unscramble:  r t y o s
+Story
+10
+
+Unscramble:  r u a e l b a g
+Arguable
+10
+
+Unscramble:  r u e n n o s t
+Neutrons
+10
+
+Unscramble:  r u f l c i m e
+Merciful
+10
+
+Unscramble:  r u g t h b o
+Brought
+10
+
+Unscramble:  r u g Y a h d t
+Draughty
+10
+
+Unscramble:  r u m a t a t a
+Traumata
+10
+
+Unscramble:  r u m r i v t i
+Triumvir
+10
+
+Unscramble:  r u n o h d g g o
+Groundhog
+10
+
+Unscramble:  r u o l e v
+Louvre
+10
+
+Unscramble:  r u o r a m p a
+Paramour
+10
+
+Unscramble:  r u p g o i t n
+Trouping
+10
+
+Unscramble:  r u q n s i g i
+Squiring
+10
+
+Unscramble:  r u s d e s i t
+Diestrus
+10
+
+Unscramble:  r u t m i a s t
+Striatum
+10
+
+Unscramble:  r v a e l b d i
+Drivable
+10
+
+Unscramble:  r v a s l i t a
+Travails
+10
+
+Unscramble:  r v e s r t e
+Reverts
+10
+
+Unscramble:  r v e t l e e
+Leveret
+10
+
+Unscramble:  r v e t l l e d a
+Travelled
+10
+
+Unscramble:  r v i d e d p o
+Provided
+10
+
+Unscramble:  r v i e d g e
+Diverge
+10
+
+Unscramble:  r v i s e d p o
+Provides
+10
+
+Unscramble:  r v i y l p i
+Privily
+10
+
+Unscramble:  r v n s i t e
+Inverts
+10
+
+Unscramble:  r v o i c l d e
+Coverlid
+10
+
+Unscramble:  r v s s b e u e
+Subserve
+10
+
+Unscramble:  r v y e e
+Every
+10
+
+Unscramble:  r w a s n e
+Answer
+10
+
+Unscramble:  r w d o s
+Sword
+10
+
+Unscramble:  r w e o i c d c a
+Cowardice
+10
+
+Unscramble:  r w e s l c e
+Crewels
+10
+
+Unscramble:  r w h e l i e e
+Erewhile
+10
+
+Unscramble:  r w l d e p o
+Prowled
+10
+
+Unscramble:  r w l g a i b n
+Brawling
+10
+
+Unscramble:  r w n g o i c n
+Crowning
+10
+
+Unscramble:  r w o b y e
+Bowery
+10
+
+Unscramble:  r w o v s e
+Vowers
+10
+
+Unscramble:  r w r o a
+Arrow
+10
+
+Unscramble:  r w s r e i f o
+Frowsier
+10
+
+Unscramble:  r x e l d a t
+Dextral
+10
+
+Unscramble:  r y c o k
+Rocky
+10
+
+Unscramble:  r y g u b
+Rugby
+10
+
+Unscramble:  r y h g u o n d e
+Greyhound
+10
+
+Unscramble:  r y i m m i c
+Mimicry
+10
+
+Unscramble:  r y m s m u a
+Summary
+10
+
+Unscramble:  r y o s v a u
+Savoury
+10
+
+Unscramble:  r y s e k e
+Kersey
+10
+
+Unscramble:  r z z s e l d i
+Drizzles
+10
+
+Unscramble:  s a b e r
+Bears
+10
+
+Unscramble:  s a c b u
+Scuba
+10
+
+Unscramble:  s a e m f o e r
+Fearsome
+10
+
+Unscramble:  s a e m t r u p
+Upstream
+10
+
+Unscramble:  s a e y h a s r
+Hearsays
+10
+
+Unscramble:  s a g l s
+Glass
+10
+
+Unscramble:  s a h d r o e p
+Rhapsode
+10
+
+Unscramble:  s a h d r o y p
+Rhapsody
+10
+
+Unscramble:  s a i n i d o b
+Obsidian
+10
+
+Unscramble:  s a l l g i y s
+Glassily
+10
+
+Unscramble:  s a n t i g a s
+Assignat
+10
+
+Unscramble:  s a o r s t r i t n
+Transistor
+10
+
+Unscramble:  s a r d p e i
+Praised
+10
+
+Unscramble:  s a r d p o e d e
+Desperado
+10
+
+Unscramble:  s a r l t u p o
+Postural
+10
+
+Unscramble:  s a r t c g e o
+Escargot
+10
+
+Unscramble:  s a t i s a l y
+Staysail
+10
+
+Unscramble:  s a t y w e
+Sweaty
+10
+
+Unscramble:  s a v n e b c r o s e
+Observances
+10
+
+Unscramble:  s b m e e s s o
+Embosses
+10
+
+Unscramble:  s b q a u
+Squab
+10
+
+Unscramble:  s c a a b e t k
+Backseat
+10
+
+Unscramble:  s c b u k
+Bucks
+10
+
+Unscramble:  s c d u k
+Ducks
+10
+
+Unscramble:  s c h c i p y
+Psychic
+10
+
+Unscramble:  s c n e t a d i
+Distance
+10
+
+Unscramble:  s c o k f r d i
+Disfrock
+10
+
+Unscramble:  s c p a l e
+Places
+10
+
+Unscramble:  s c p s u t a
+Upcasts
+10
+
+Unscramble:  s c u t t r o b
+Obstruct
+10
+
+Unscramble:  s d e i m o d u
+Medusoid
+10
+
+Unscramble:  s d e n o e c p o
+Endoscope
+10
+
+Unscramble:  s d n s c i r e
+Rescinds
+10
+
+Unscramble:  s d n t a i e e
+Andesite
+10
+
+Unscramble:  s d n u i i m u
+Indusium
+10
+
+Unscramble:  s d r a t y e y e
+Yesterday
+10
+
+Unscramble:  s e a h r r a s
+Harasser
+10
+
+Unscramble:  s e a m l s o s
+Molasses
+10
+
+Unscramble:  s e a m s e
+Sesame
+10
+
+Unscramble:  s e b a r s i u
+Airbuses
+10
+
+Unscramble:  s e b s r d u a
+Surbased
+10
+
+Unscramble:  s e c p o r
+Copers
+10
+
+Unscramble:  s e d d h a u n
+Unshaded
+10
+
+Unscramble:  s e e a p s p a
+Appeases
+10
+
+Unscramble:  s e e i m m n
+Immense
+10
+
+Unscramble:  s e e l c r i n
+Licenser
+10
+
+Unscramble:  s e e t t r
+Street
+10
+
+Unscramble:  s e e v r
+Serve
+10
+
+Unscramble:  s e f p r s e u
+Perfuses
+10
+
+Unscramble:  s e g b o s i a
+Biogases
+10
+
+Unscramble:  s e i g e
+Siege
+10
+
+Unscramble:  s e k l i d i
+Dislike
+10
+
+Unscramble:  s e l n p a t a
+Pleasant
+10
+
+Unscramble:  s e l o e b i
+Obelise
+10
+
+Unscramble:  s e l p e a
+Please
+10
+
+Unscramble:  s e l s r u m i
+Misrules
+10
+
+Unscramble:  s e l s y d t i
+Stylised
+10
+
+Unscramble:  s e m o e i n r
+Emersion
+10
+
+Unscramble:  s e m r t u c o
+Costumer
+10
+
+Unscramble:  s e n c i h e
+Chinese
+10
+
+Unscramble:  s e n r b b e t o a
+Breastbone
+10
+
+Unscramble:  s e o c r l a u
+Carousel
+10
+
+Unscramble:  s e o k c r
+Ockers
+10
+
+Unscramble:  s e o o a p t h t
+Osteopath
+10
+
+Unscramble:  s e o t n
+Stone
+10
+
+Unscramble:  s e p c m s o o
+Composes
+10
+
+Unscramble:  s e p d s d e i
+Despised
+10
+
+Unscramble:  s e p k o r
+Pokers
+10
+
+Unscramble:  s e p s c a i n
+Inscapes
+10
+
+Unscramble:  s e p s p d u o
+Supposed
+10
+
+Unscramble:  s e r d i o a t
+Asteroid
+10
+
+Unscramble:  s e r d n a e n
+Ensnared
+10
+
+Unscramble:  s e r d t e p e
+Pestered
+10
+
+Unscramble:  s e r e p i s
+Pressie
+10
+
+Unscramble:  s e r n t o a
+Treason
+10
+
+Unscramble:  s e r r t u p o
+Posturer
+10
+
+Unscramble:  s e r t e a u
+Austere
+10
+
+Unscramble:  s e t b p s a i
+Baptises
+10
+
+Unscramble:  s e t d e r i n
+Inserted
+10
+
+Unscramble:  s e t l c a a
+Lactase
+10
+
+Unscramble:  s e t l u i n
+Utensil
+10
+
+Unscramble:  s e t m a r
+Tamers
+10
+
+Unscramble:  s e t p e d o i
+Poetised
+10
+
+Unscramble:  s e t s t a g e
+Gestates
+10
+
+Unscramble:  s e t u i s n i
+Unitises
+10
+
+Unscramble:  s e t y a f
+Safety
+10
+
+Unscramble:  s e v d l a e n
+Enslaved
+10
+
+Unscramble:  s e v e o e r r
+Overseer
+10
+
+Unscramble:  s e v l o e l r
+Oversell
+10
+
+Unscramble:  s e v n h a u n
+Unshaven
+10
+
+Unscramble:  s f e h l
+Shelf
+10
+
+Unscramble:  s f n n i i g u
+Infusing
+10
+
+Unscramble:  s f n s i e u
+Infuses
+10
+
+Unscramble:  s g n e i t d e
+Ingested
+10
+
+Unscramble:  s g n s t i t e
+Testings
+10
+
+Unscramble:  s g n t n h o i w a
+Washington
+10
+
+Unscramble:  s g o n a i
+Saigon
+10
+
+Unscramble:  s g u w n
+Swung
+10
+
+Unscramble:  s h d v a i e e
+Adhesive
+10
+
+Unscramble:  s h e r c w e e
+Eschewer
+10
+
+Unscramble:  s h f c t a i
+Catfish
+10
+
+Unscramble:  s h j o n
+Johns
+10
+
+Unscramble:  s h l e g n i
+English
+10
+
+Unscramble:  s h r b a o i
+Boarish
+10
+
+Unscramble:  s h t b i r i
+British
+10
+
+Unscramble:  s h t t r a i
+Tartish
+10
+
+Unscramble:  s h u a i r i c
+Ischuria
+10
+
+Unscramble:  s i a i t k d l
+Tailskid
+10
+
+Unscramble:  s i a s a s n s s
+Assassins
+10
+
+Unscramble:  s i c o n
+Coins
+10
+
+Unscramble:  s i d l r s o o
+Lordosis
+10
+
+Unscramble:  s i d n c i a a
+Ascidian
+10
+
+Unscramble:  s i f l o o
+Folios
+10
+
+Unscramble:  s i g r o n a s
+Assignor
+10
+
+Unscramble:  s i s h p
+Ships
+10
+
+Unscramble:  s i t d m
+Midst
+10
+
+Unscramble:  s i t p y s h o
+Phytosis
+10
+
+Unscramble:  s i t t o i y o
+Otiosity
+10
+
+Unscramble:  s i u s c e s
+Cuisses
+10
+
+Unscramble:  s k a s p e b e
+Bespeaks
+10
+
+Unscramble:  s k c s t a u n
+Unstacks
+10
+
+Unscramble:  s k l a e
+Lakes
+10
+
+Unscramble:  s k u k n
+Skunk
+10
+
+Unscramble:  s l b e l
+Bells
+10
+
+Unscramble:  s l b u l
+Bulls
+10
+
+Unscramble:  s l e a c t s e
+Celestas
+10
+
+Unscramble:  s l e a h m n m
+Helmsman
+10
+
+Unscramble:  s l e m l
+Smell
+10
+
+Unscramble:  s l e n q d e a u n
+Queensland
+10
+
+Unscramble:  s l e o c
+Close
+10
+
+Unscramble:  s l e p l
+Spell
+10
+
+Unscramble:  s l e s m i
+Smiles
+10
+
+Unscramble:  s l e t s p m i
+Misspelt
+10
+
+Unscramble:  s l l v a i e u
+Allusive
+10
+
+Unscramble:  s l l y t a f e
+Festally
+10
+
+Unscramble:  s l m i l
+Mills
+10
+
+Unscramble:  s l n i a
+Snail
+10
+
+Unscramble:  s l o s m t e
+Molests
+10
+
+Unscramble:  s l o u c e m i
+Coliseum
+10
+
+Unscramble:  s l r g i b u
+Busgirl
+10
+
+Unscramble:  s l t l i
+Still
+10
+
+Unscramble:  s l w a l
+Walls
+10
+
+Unscramble:  s m a u d c s a
+Damascus
+10
+
+Unscramble:  s m c o b
+Combs
+10
+
+Unscramble:  s m e r u m
+Summer
+10
+
+Unscramble:  s m n e e h s e
+Enmeshes
+10
+
+Unscramble:  s m n e t i n g a s
+Assignment
+10
+
+Unscramble:  s m s n o i g o
+Osmosing
+10
+
+Unscramble:  s m t i e
+Times
+10
+
+Unscramble:  s m u e t t n r i s n
+Instruments
+10
+
+Unscramble:  s m u t r l u
+Lustrum
+10
+
+Unscramble:  s n a o l
+Salon
+10
+
+Unscramble:  s n a s i r u
+Russian
+10
+
+Unscramble:  s n e e v
+Seven
+10
+
+Unscramble:  s n e s g i e
+Genesis
+10
+
+Unscramble:  s n i d r i e g
+Ringside
+10
+
+Unscramble:  s n i e f s d e
+Finessed
+10
+
+Unscramble:  s n i g d o m i
+Misdoing
+10
+
+Unscramble:  s n i g t l r u
+Rustling
+10
+
+Unscramble:  s n i g t r r e
+Restring
+10
+
+Unscramble:  s n i s k e a
+Kinases
+10
+
+Unscramble:  s n p i a
+Spain
+10
+
+Unscramble:  s n s i u d a r o
+Dinosaurs
+10
+
+Unscramble:  s n u a d
+Sudan
+10
+
+Unscramble:  s n u g p r u p
+Upsprung
+10
+
+Unscramble:  s n u t c o v i
+Viscount
+10
+
+Unscramble:  s n v e e
+Seven
+10
+
+Unscramble:  s n w i g
+Wings
+10
+
+Unscramble:  s o b g m n a e
+Gambeson
+10
+
+Unscramble:  s o b o k
+Books
+10
+
+Unscramble:  s o c i a t c u
+Acoustic
+10
+
+Unscramble:  s o d o r
+Doors
+10
+
+Unscramble:  s o e b l w
+Elbows
+10
+
+Unscramble:  s o e o g
+Goose
+10
+
+Unscramble:  s o f r g
+Frogs
+10
+
+Unscramble:  s o h r c e s o
+Choosers
+10
+
+Unscramble:  s o i n u n d i
+Disunion
+10
+
+Unscramble:  s o l g m y o c o
+Cosmology
+10
+
+Unscramble:  s o m a b
+Sambo
+10
+
+Unscramble:  s o m r o n
+Morons
+10
+
+Unscramble:  s o n a m n t i e
+Minnesota
+10
+
+Unscramble:  s o o o m h t n
+Moonshot
+10
+
+Unscramble:  s o p m o u s s
+Opossums
+10
+
+Unscramble:  s o u l p s e a
+Espousal
+10
+
+Unscramble:  s p e h e
+Sheep
+10
+
+Unscramble:  s p e r d e o
+Deposer
+10
+
+Unscramble:  s p h e l r t h i e o
+Lithosphere
+10
+
+Unscramble:  s p h r a
+Sharp
+10
+
+Unscramble:  s p i t c r r e
+Rescript
+10
+
+Unscramble:  s p m l i h y i
+Impishly
+10
+
+Unscramble:  s p r o e
+Ropes
+10
+
+Unscramble:  s p r y u
+Syrup
+10
+
+Unscramble:  s r a c e
+Acres
+10
+
+Unscramble:  s r a s p e e
+Pareses
+10
+
+Unscramble:  s r e h y e
+Heresy
+10
+
+Unscramble:  s r e r e a i b r s p
+Raspberries
+10
+
+Unscramble:  s r e t s i Y o
+Serosity
+10
+
+Unscramble:  s r h a e t
+Hearts
+10
+
+Unscramble:  s r h e c t n i
+Christen
+10
+
+Unscramble:  s r i s e b e c
+Escribes
+10
+
+Unscramble:  s r k s h a
+Sharks
+10
+
+Unscramble:  s r o w o r
+Sorrow
+10
+
+Unscramble:  s r r a i e
+Sierra
+10
+
+Unscramble:  s r s h m c t a i
+Christmas
+10
+
+Unscramble:  s r u o c s w a
+Curassow
+10
+
+Unscramble:  s s c e l e i s o
+Isosceles
+10
+
+Unscramble:  s s c e p i
+Pisces
+10
+
+Unscramble:  s s e c l m a
+Mascles
+10
+
+Unscramble:  s s e h l i o
+Isohels
+10
+
+Unscramble:  s s e s h n l u
+Lushness
+10
+
+Unscramble:  s s e s t l r u
+Rustless
+10
+
+Unscramble:  s s e t t i b u
+Bustiest
+10
+
+Unscramble:  s s e t t i d u
+Dustiest
+10
+
+Unscramble:  s s e t t i l u
+Lustiest
+10
+
+Unscramble:  s s e t t i p a
+Pastiest
+10
+
+Unscramble:  s s h r o e
+Horses
+10
+
+Unscramble:  s s l o r a e
+Oarless
+10
+
+Unscramble:  s s l s i f o
+Fossils
+10
+
+Unscramble:  s s m i o e k
+Eskimos
+10
+
+Unscramble:  s s n e r c a
+Caserns
+10
+
+Unscramble:  s s o a i
+Oasis
+10
+
+Unscramble:  s s o g n
+Songs
+10
+
+Unscramble:  s s o h e
+Shoes
+10
+
+Unscramble:  s s r t e t a
+Tasters
+10
+
+Unscramble:  s s r u c n o
+Uncross
+10
+
+Unscramble:  s s s i p i p i m i s
+Mississippi
+10
+
+Unscramble:  s s s o i o m
+Osmosis
+10
+
+Unscramble:  s t b l m e a a
+Lambaste
+10
+
+Unscramble:  s t d l u o e
+Loudest
+10
+
+Unscramble:  s t d s w a u
+Sawdust
+10
+
+Unscramble:  s t e r s p a u r
+Superstar
+10
+
+Unscramble:  s t e w e
+Sweet
+10
+
+Unscramble:  s t e w p
+Swept
+10
+
+Unscramble:  s t f b d e a
+Bedfast
+10
+
+Unscramble:  s t i a n
+Saint
+10
+
+Unscramble:  s t i e r e e
+Eeriest
+10
+
+Unscramble:  s t i Y i c b a
+Basicity
+10
+
+Unscramble:  s t i z n a e
+Zaniest
+10
+
+Unscramble:  s t m c l a e
+Calmest
+10
+
+Unscramble:  s t n h m s y i
+Hymnists
+10
+
+Unscramble:  s t n i a k d i
+Antiskid
+10
+
+Unscramble:  s t p o t s u o
+Outposts
+10
+
+Unscramble:  s t r e c s n u
+Encrusts
+10
+
+Unscramble:  s t r m t s e i
+Metrists
+10
+
+Unscramble:  s t s t n e e
+Tensest
+10
+
+Unscramble:  s t v n i a e
+Naivest
+10
+
+Unscramble:  s t w e e
+Sweet
+10
+
+Unscramble:  s u o l c e n
+Counsel
+10
+
+Unscramble:  s u r g n i a s
+Assuring
+10
+
+Unscramble:  s v a e l h d i
+Lavished
+10
+
+Unscramble:  s v e o r i n i
+Revision
+10
+
+Unscramble:  s v e r r o i
+Revisor
+10
+
+Unscramble:  s v g a r e
+Graves
+10
+
+Unscramble:  s x f o e
+Foxes
+10
+
+Unscramble:  s x t e a
+Texas
+10
+
+Unscramble:  s y l t i t e
+Testily
+10
+
+Unscramble:  s y u t d
+Dusty
+10
+
+Unscramble:  s y x i t
+Sixty
+10
+
+Unscramble:  t a c h e o o
+Ootheca
+10
+
+Unscramble:  t a c s k a t
+Attacks
+10
+
+Unscramble:  t a d g n i s e
+Steading
+10
+
+Unscramble:  t a d l a r o s
+Loadstar
+10
+
+Unscramble:  t a e b y u
+Beauty
+10
+
+Unscramble:  t a e e h i s r
+Hearties
+10
+
+Unscramble:  t a e s t
+Taste
+10
+
+Unscramble:  t a h e r
+Heart
+10
+
+Unscramble:  t a h i f
+Faith
+10
+
+Unscramble:  t a i i h
+Haiti
+10
+
+Unscramble:  t a i p k n a s
+Pakistan
+10
+
+Unscramble:  t a i p m c
+Impact
+10
+
+Unscramble:  t a i u d h s n
+Dianthus
+10
+
+Unscramble:  t a l d s e n
+Slanted
+10
+
+Unscramble:  t a l p s n
+Plants
+10
+
+Unscramble:  t a l s f i t u
+Flautist
+10
+
+Unscramble:  t a o n c i g s
+Coasting
+10
+
+Unscramble:  t a o r c e s s
+Coasters
+10
+
+Unscramble:  t a o s i m l m r
+Immortals
+10
+
+Unscramble:  t a p c s i s s
+Spastics
+10
+
+Unscramble:  t a p d r p s e
+Strapped
+10
+
+Unscramble:  t a r l f a s c
+Fractals
+10
+
+Unscramble:  t a r r g o s n
+Grantors
+10
+
+Unscramble:  t a s m r
+Smart
+10
+
+Unscramble:  t a s r w
+Warts
+10
+
+Unscramble:  t a t p e a m n r
+Apartment
+10
+
+Unscramble:  t a t r u y i p i
+Pituitary
+10
+
+Unscramble:  t a u e q z s r
+Quartzes
+10
+
+Unscramble:  t a x r e
+Extra
+10
+
+Unscramble:  t b n e i i s t
+Stibnite
+10
+
+Unscramble:  t c a o v i n a
+Vacation
+10
+
+Unscramble:  t c a t e f a r
+Artefact
+10
+
+Unscramble:  t c c o o a s d
+Stoccado
+10
+
+Unscramble:  t c i a n t i
+Titanic
+10
+
+Unscramble:  t c k l o h s m o
+Stockholm
+10
+
+Unscramble:  t c n e r a o u
+Outrance
+10
+
+Unscramble:  t d a h e p i
+Pithead
+10
+
+Unscramble:  t d a s h e p i
+Pitheads
+10
+
+Unscramble:  t d e a m u n
+Untamed
+10
+
+Unscramble:  t d i e i n a c
+Actinide
+10
+
+Unscramble:  t d i e r
+Tired
+10
+
+Unscramble:  t d i s y d k a
+Katydids
+10
+
+Unscramble:  t d n s l a c o
+Cotlands
+10
+
+Unscramble:  t d o m i e h
+Ethmoid
+10
+
+Unscramble:  t d p p e s o
+Stopped
+10
+
+Unscramble:  t e a d h r
+Thread
+10
+
+Unscramble:  t e b a l
+Table
+10
+
+Unscramble:  t e b b l s u
+Stubble
+10
+
+Unscramble:  t e c e e s x u
+Executes
+10
+
+Unscramble:  t e c t u l e
+Lettuce
+10
+
+Unscramble:  t e c z n i i
+Zincite
+10
+
+Unscramble:  t e d r i n i
+Nitride
+10
+
+Unscramble:  t e d s i o u
+Outside
+10
+
+Unscramble:  t e d t e a e n
+Edentate
+10
+
+Unscramble:  t e d t i i y n
+Identity
+10
+
+Unscramble:  t e e d l s
+Eldest
+10
+
+Unscramble:  t e e h r
+There
+10
+
+Unscramble:  t e f c n s o u
+Confutes
+10
+
+Unscramble:  t e g g n r a s
+Gangster
+10
+
+Unscramble:  t e g l u r a h
+Laughter
+10
+
+Unscramble:  t e g p r d a e
+Pargeted
+10
+
+Unscramble:  t e g r a
+Great
+10
+
+Unscramble:  t e g t r d a e
+Targeted
+10
+
+Unscramble:  t e h e r
+Three
+10
+
+Unscramble:  t e h e t
+Teeth
+10
+
+Unscramble:  t e i d i d u n
+Untidied
+10
+
+Unscramble:  t e i m d s o s
+Modistes
+10
+
+Unscramble:  t e i s a r r o
+Rotaries
+10
+
+Unscramble:  t e i s u d q r
+Squirted
+10
+
+Unscramble:  t e k h c r u s
+Huckster
+10
+
+Unscramble:  t e k j c d a e
+Jacketed
+10
+
+Unscramble:  t e k j n d u e
+Junketed
+10
+
+Unscramble:  t e l d f s e a
+Deflates
+10
+
+Unscramble:  t e l d p s e e
+Depletes
+10
+
+Unscramble:  t e l g n i s e
+Steeling
+10
+
+Unscramble:  t e l s a b r e
+Retables
+10
+
+Unscramble:  t e l s h o p o
+Potholes
+10
+
+Unscramble:  t e l v o i a
+Violate
+10
+
+Unscramble:  t e m g o r e e
+Geometer
+10
+
+Unscramble:  t e n e a i d e
+Detainee
+10
+
+Unscramble:  t e o r v r e l
+Revolter
+10
+
+Unscramble:  t e p c m o e
+Compete
+10
+
+Unscramble:  t e p r s s e i
+Respites
+10
+
+Unscramble:  t e p s e l s e
+Steeples
+10
+
+Unscramble:  t e q u s
+Quest
+10
+
+Unscramble:  t e r d a o u
+Outdare
+10
+
+Unscramble:  t e r d h e w i
+Withered
+10
+
+Unscramble:  t e r d o p o s
+Doorstep
+10
+
+Unscramble:  t e r e c x e
+Excrete
+10
+
+Unscramble:  t e r e p i r t
+Prettier
+10
+
+Unscramble:  t e r f r s e a
+Ferrates
+10
+
+Unscramble:  t e r h e
+Three
+10
+
+Unscramble:  t e r o e p a
+Operate
+10
+
+Unscramble:  t e r r e e c
+Erecter
+10
+
+Unscramble:  t e r r e o s c
+Erectors
+10
+
+Unscramble:  t e r r t e p a
+Patterer
+10
+
+Unscramble:  t e s s r s s e
+Stresses
+10
+
+Unscramble:  t e t d e n p a
+Patented
+10
+
+Unscramble:  t e t e t s r
+Strette
+10
+
+Unscramble:  t e u d g d e s
+Degusted
+10
+
+Unscramble:  t e u i q a n
+Antique
+10
+
+Unscramble:  t e u l q d i a
+Liquated
+10
+
+Unscramble:  t e u r b d e t
+Rebutted
+10
+
+Unscramble:  t e u s i q a n
+Antiques
+10
+
+Unscramble:  t e v e e s l a
+Elevates
+10
+
+Unscramble:  t e w c i
+Twice
+10
+
+Unscramble:  t e w t y n
+Twenty
+10
+
+Unscramble:  t e x s r i m a
+Matrixes
+10
+
+Unscramble:  t g e i h
+Eight
+10
+
+Unscramble:  t g e r l a y a
+Legatary
+10
+
+Unscramble:  t g e t a r
+Target
+10
+
+Unscramble:  t g g s a e s r
+Staggers
+10
+
+Unscramble:  t g i e n i s h
+Nighties
+10
+
+Unscramble:  t g i n e a
+Eating
+10
+
+Unscramble:  t g i r f e h
+Fighter
+10
+
+Unscramble:  t g l i h
+Light
+10
+
+Unscramble:  t g n e r a e s
+Estrange
+10
+
+Unscramble:  t g n s t i s i
+Sittings
+10
+
+Unscramble:  t g n t i w i
+Witting
+10
+
+Unscramble:  t g r i h
+Right
+10
+
+Unscramble:  t g r y h a l e
+Lethargy
+10
+
+Unscramble:  t g u e o n
+Tongue
+10
+
+Unscramble:  t h a m c s o
+Stomach
+10
+
+Unscramble:  t h e t a i a e n c s
+Anaesthetic
+10
+
+Unscramble:  t h l n o s e i
+Neoliths
+10
+
+Unscramble:  t h r n e g e i v y
+Everything
+10
+
+Unscramble:  t i a a l c p s
+Aplastic
+10
+
+Unscramble:  t i a m n c o s
+Monastic
+10
+
+Unscramble:  t i c e s i e h
+Ethicise
+10
+
+Unscramble:  t i c r e t s r
+Stricter
+10
+
+Unscramble:  t i c y l t s r
+Strictly
+10
+
+Unscramble:  t i d s n c y e
+Syndetic
+10
+
+Unscramble:  t i e e a g n r n
+Argentine
+10
+
+Unscramble:  t i e e d t v e c
+Detective
+10
+
+Unscramble:  t i e n d r o i c
+Direction
+10
+
+Unscramble:  t i g l i s r
+Strigil
+10
+
+Unscramble:  t i h e p r l
+Philtre
+10
+
+Unscramble:  t i h n n
+Ninth
+10
+
+Unscramble:  t i i t e c h s
+Theistic
+10
+
+Unscramble:  t i k s r e s r
+Strikers
+10
+
+Unscramble:  t i l e f i r n
+Flintier
+10
+
+Unscramble:  t i l r b e y s
+Blistery
+10
+
+Unscramble:  t i l r s e s t
+Slitters
+10
+
+Unscramble:  t i l s p h n
+Plinths
+10
+
+Unscramble:  t i m c i c l a
+Climatic
+10
+
+Unscramble:  t i m d o e t
+Omitted
+10
+
+Unscramble:  t i m s o c t a
+Stomatic
+10
+
+Unscramble:  t i n y g s r
+Stringy
+10
+
+Unscramble:  t i o n h i g s
+Hoisting
+10
+
+Unscramble:  t i o y m l s
+Moistly
+10
+
+Unscramble:  t i p o s m c i a
+Simpatico
+10
+
+Unscramble:  t i r Y a w s a
+Stairway
+10
+
+Unscramble:  t i s m o s y i
+Myositis
+10
+
+Unscramble:  t i t c h e e n
+Enthetic
+10
+
+Unscramble:  t i u s q i m e
+Quietism
+10
+
+Unscramble:  t i v s r e s r
+Strivers
+10
+
+Unscramble:  t k e y u r
+Turkey
+10
+
+Unscramble:  t k h n a
+Thank
+10
+
+Unscramble:  t k i h n
+Think
+10
+
+Unscramble:  t k t c i e
+Ticket
+10
+
+Unscramble:  t l a a p i l a
+Palatial
+10
+
+Unscramble:  t l b e i a d u
+Dutiable
+10
+
+Unscramble:  t l b o a i n a
+Ablation
+10
+
+Unscramble:  t l e a d y r n
+Ardently
+10
+
+Unscramble:  t l e d b e a
+Belated
+10
+
+Unscramble:  t l e d r e a
+Related
+10
+
+Unscramble:  t l e r r o s a
+Relators
+10
+
+Unscramble:  t l e s c h s a
+Satchels
+10
+
+Unscramble:  t l i o d i n u
+Dilution
+10
+
+Unscramble:  t l i s o t o h
+Otoliths
+10
+
+Unscramble:  t l k g a i s n
+Stalking
+10
+
+Unscramble:  t l l s s e o u
+Outsells
+10
+
+Unscramble:  t l n a o e h
+Ethanol
+10
+
+Unscramble:  t l o p h y e o
+Holotype
+10
+
+Unscramble:  t l r o p e
+Petrol
+10
+
+Unscramble:  t l t a a s r
+Stratal
+10
+
+Unscramble:  t l t y e n p o
+Potently
+10
+
+Unscramble:  t l u h a o u
+Outhaul
+10
+
+Unscramble:  t l v e w e
+Twelve
+10
+
+Unscramble:  t m i s a u
+Autism
+10
+
+Unscramble:  t m m r i u e a
+Immature
+10
+
+Unscramble:  t m m s r e s a
+Stammers
+10
+
+Unscramble:  t m p g n i s a
+Stamping
+10
+
+Unscramble:  t m p r e i
+Permit
+10
+
+Unscramble:  t n a a s w b o
+Botswana
+10
+
+Unscramble:  t n a d s t o u
+Outstand
+10
+
+Unscramble:  t n a l p e a a
+Panatela
+10
+
+Unscramble:  t n a r i
+Train
+10
+
+Unscramble:  t n d g n i s a
+Standing
+10
+
+Unscramble:  t n e c h k i
+Kitchen
+10
+
+Unscramble:  t n e o l i n i
+Lenition
+10
+
+Unscramble:  t n e r u r
+Turner
+10
+
+Unscramble:  t n e s r a o
+Atoners
+10
+
+Unscramble:  t n i g c h c a
+Catching
+10
+
+Unscramble:  t n i g c h h a
+Hatching
+10
+
+Unscramble:  t n i g c h w a
+Watching
+10
+
+Unscramble:  t n i g e r p e
+Petering
+10
+
+Unscramble:  t n i g i r r e
+Retiring
+10
+
+Unscramble:  t n i g t y j u
+Juttying
+10
+
+Unscramble:  t n k a e
+Taken
+10
+
+Unscramble:  t n n g u i s n
+Stunning
+10
+
+Unscramble:  t n o n s i a a
+Sonatina
+10
+
+Unscramble:  t n o s d e a
+Donates
+10
+
+Unscramble:  t n t o b u
+Button
+10
+
+Unscramble:  t n t y w e
+Twenty
+10
+
+Unscramble:  t n u r s a
+Saturn
+10
+
+Unscramble:  t n w s e s e e y i
+Eyewitness
+10
+
+Unscramble:  t o b e l i s r
+Strobile
+10
+
+Unscramble:  t o c y t i a r
+Atrocity
+10
+
+Unscramble:  t o d p e r r a
+Predator
+10
+
+Unscramble:  t o e b s r i c
+Bisector
+10
+
+Unscramble:  t o e s e h p a r m
+Atmosphere
+10
+
+Unscramble:  t o h n s e s r
+Shortens
+10
+
+Unscramble:  t o i h m n a l
+Hamilton
+10
+
+Unscramble:  t o i n a t d o
+Dotation
+10
+
+Unscramble:  t o l o e r w a
+Waterloo
+10
+
+Unscramble:  t o m e s h n o
+Smoothen
+10
+
+Unscramble:  t o n m r r e o a s
+Astronomer
+10
+
+Unscramble:  t o o m h r b a
+Bathroom
+10
+
+Unscramble:  t o o t r o n
+Toronto
+10
+
+Unscramble:  t o s h u
+Shout
+10
+
+Unscramble:  t o y r f
+Forty
+10
+
+Unscramble:  t p e s a d s e
+Stapedes
+10
+
+Unscramble:  t p e y f s u
+Stupefy
+10
+
+Unscramble:  t p i r e d s u
+Stupider
+10
+
+Unscramble:  t p i r t e s s
+Tipsters
+10
+
+Unscramble:  t p o e e l a n
+Antelope
+10
+
+Unscramble:  t p p g o i s n
+Stopping
+10
+
+Unscramble:  t p p t a i e e
+Appetite
+10
+
+Unscramble:  t p u r j e i
+Jupiter
+10
+
+Unscramble:  t r a a a x a i
+Ataraxia
+10
+
+Unscramble:  t r a e w
+Water
+10
+
+Unscramble:  t r c y h s a
+Starchy
+10
+
+Unscramble:  t r d i e s a
+Staider
+10
+
+Unscramble:  t r e a c y n s
+Ancestry
+10
+
+Unscramble:  t r e c h d i
+Ditcher
+10
+
+Unscramble:  t r e d s h p o
+Potsherd
+10
+
+Unscramble:  t r e h i
+Their
+10
+
+Unscramble:  t r e i c e n
+Enticer
+10
+
+Unscramble:  t r e n a i g a
+Aerating
+10
+
+Unscramble:  t r f e t i
+Titfer
+10
+
+Unscramble:  t r h i e
+Their
+10
+
+Unscramble:  t r h u t
+Truth
+10
+
+Unscramble:  t r i a f r p e
+Firetrap
+10
+
+Unscramble:  t r i a m g s e
+Sterigma
+10
+
+Unscramble:  t r i e g
+Tiger
+10
+
+Unscramble:  t r i p e a
+Pirate
+10
+
+Unscramble:  t r k s a e s r
+Starkers
+10
+
+Unscramble:  t r l e h i
+Hitler
+10
+
+Unscramble:  t r l s t e s a
+Starlets
+10
+
+Unscramble:  t r m m e s a
+Stammer
+10
+
+Unscramble:  t r n y e i e t
+Eternity
+10
+
+Unscramble:  t r r s i e s r
+Stirrers
+10
+
+Unscramble:  t r r s i u s p
+Stirrups
+10
+
+Unscramble:  t r t e d o
+Dotter
+10
+
+Unscramble:  t r t e m a
+Matter
+10
+
+Unscramble:  t r t g a i s n
+Starting
+10
+
+Unscramble:  t r u s a u
+Taurus
+10
+
+Unscramble:  t r y g n i s o
+Storying
+10
+
+Unscramble:  t s e a p s c
+Aspects
+10
+
+Unscramble:  t s e a x
+Texas
+10
+
+Unscramble:  t s e c h h i
+Hitches
+10
+
+Unscramble:  t s e r l e n
+Relents
+10
+
+Unscramble:  t s e r o s
+Tosser
+10
+
+Unscramble:  t s e s i n a r
+Artiness
+10
+
+Unscramble:  t s e s i p a
+Patsies
+10
+
+Unscramble:  t s e s r t e
+Streets
+10
+
+Unscramble:  t s e t e n o f
+Oftenest
+10
+
+Unscramble:  t s e t t i c a
+Cattiest
+10
+
+Unscramble:  t s e t t i d o
+Dottiest
+10
+
+Unscramble:  t s g g d a e
+Gadgets
+10
+
+Unscramble:  t s g w i r h
+Wrights
+10
+
+Unscramble:  t s i n v i g i
+Visiting
+10
+
+Unscramble:  t s i o r t s o
+Risottos
+10
+
+Unscramble:  t s m o e t t n a i p
+Temptations
+10
+
+Unscramble:  t s n s n e e
+Sennets
+10
+
+Unscramble:  t s n t e p a
+Pattens
+10
+
+Unscramble:  t s n u e a t
+Attunes
+10
+
+Unscramble:  t s o e n
+Notes
+10
+
+Unscramble:  t s o r t u
+Tutors
+10
+
+Unscramble:  t s r e e
+Trees
+10
+
+Unscramble:  t s r h e b a
+Bathers
+10
+
+Unscramble:  t s r t e h i
+Hitters
+10
+
+Unscramble:  t s r t e l e
+Letters
+10
+
+Unscramble:  t s r t e m a
+Matters
+10
+
+Unscramble:  t s r u n
+Turns
+10
+
+Unscramble:  t s w g d o i
+Godwits
+10
+
+Unscramble:  t t c r a r e
+Retract
+10
+
+Unscramble:  t t c s r i a s
+Astricts
+10
+
+Unscramble:  t t e d n s u
+Student
+10
+
+Unscramble:  t t i r o d e
+Detroit
+10
+
+Unscramble:  t t r a a o m e
+Amaretto
+10
+
+Unscramble:  t t u s a r s e
+Statures
+10
+
+Unscramble:  t u a n d i g n
+Daunting
+10
+
+Unscramble:  t u i m e t l u
+Lutetium
+10
+
+Unscramble:  t u i s n l
+Insult
+10
+
+Unscramble:  t u l s s i h t
+Sluttish
+10
+
+Unscramble:  t u m d s e t
+Smutted
+10
+
+Unscramble:  t u o e b i s n
+Bounties
+10
+
+Unscramble:  t u p n s i g r
+Spurting
+10
+
+Unscramble:  t u r p u s r i
+Pruritus
+10
+
+Unscramble:  t u s e d
+Duets
+10
+
+Unscramble:  t u s h h r
+Thrush
+10
+
+Unscramble:  t u t a s m n n
+Stuntman
+10
+
+Unscramble:  t v e e r t d e
+Revetted
+10
+
+Unscramble:  t v e s d e o
+Devotes
+10
+
+Unscramble:  t x u n l i g a
+Luxating
+10
+
+Unscramble:  t x y e r a p
+Apteryx
+10
+
+Unscramble:  t y e t b
+Betty
+10
+
+Unscramble:  u a c p n l u t
+Punctual
+10
+
+Unscramble:  u a e e m s s t
+Meatuses
+10
+
+Unscramble:  u a e l v
+Value
+10
+
+Unscramble:  u a g e t a r n
+Runagate
+10
+
+Unscramble:  u a i a r a q
+Aquaria
+10
+
+Unscramble:  u a n t s i h m
+Humanist
+10
+
+Unscramble:  u a p a s l s t
+Spatulas
+10
+
+Unscramble:  u a r l g a s d
+Graduals
+10
+
+Unscramble:  u a t n p i p o
+Pupation
+10
+
+Unscramble:  u a v n e a t c
+Evacuant
+10
+
+Unscramble:  u b a d n h s
+Husband
+10
+
+Unscramble:  u b a k c c t
+Cutback
+10
+
+Unscramble:  u b e y l r m r
+Mulberry
+10
+
+Unscramble:  u b l d e b r
+Burbled
+10
+
+Unscramble:  u b l g m i r n
+Rumbling
+10
+
+Unscramble:  u b l k c o s n
+Sunblock
+10
+
+Unscramble:  u b o d t a o r
+Outboard
+10
+
+Unscramble:  u b t o a
+About
+10
+
+Unscramble:  u c a e v m d u
+Vacuumed
+10
+
+Unscramble:  u c a s t s o t
+Outcasts
+10
+
+Unscramble:  u c c n a i g r
+Accruing
+10
+
+Unscramble:  u c d r e k e b
+Reedbuck
+10
+
+Unscramble:  u c h g n i h n
+Hunching
+10
+
+Unscramble:  u c h r e i b n
+Bunchier
+10
+
+Unscramble:  u c h y t e b r
+Butchery
+10
+
+Unscramble:  u c i s i d f l
+Fluidics
+10
+
+Unscramble:  u c k n a s q d i
+Quicksand
+10
+
+Unscramble:  u c n h u g t a
+Uncaught
+10
+
+Unscramble:  u c n t r p u u a e c
+Acupuncture
+10
+
+Unscramble:  u c o e m o t
+Outcome
+10
+
+Unscramble:  u c o e n m s
+Muscone
+10
+
+Unscramble:  u c o s c o p n
+Puccoons
+10
+
+Unscramble:  u c u s a m c r
+Curcumas
+10
+
+Unscramble:  u d c i i c l
+Culicid
+10
+
+Unscramble:  u d e d d r j e
+Juddered
+10
+
+Unscramble:  u d e d e r s n
+Sundered
+10
+
+Unscramble:  u d e n k c l
+Clunked
+10
+
+Unscramble:  u d i g n b d
+Budding
+10
+
+Unscramble:  u d l a d e b i
+Buddleia
+10
+
+Unscramble:  u d l f e p r
+Purfled
+10
+
+Unscramble:  u d l g n i h d
+Huddling
+10
+
+Unscramble:  u d l g n i p d
+Puddling
+10
+
+Unscramble:  u d l l e q i
+Quilled
+10
+
+Unscramble:  u d l z e m z
+Muzzled
+10
+
+Unscramble:  u d o g i f n
+Fungoid
+10
+
+Unscramble:  u d o s k c b r
+Burdocks
+10
+
+Unscramble:  u d o s n w s n
+Sundowns
+10
+
+Unscramble:  u d r s l a p o
+Poulards
+10
+
+Unscramble:  u d r s p o g m
+Gumdrops
+10
+
+Unscramble:  u e a u v d n l
+Unvalued
+10
+
+Unscramble:  u e b b l q i
+Quibble
+10
+
+Unscramble:  u e e g n i p r
+Pureeing
+10
+
+Unscramble:  u e e r i p d c j
+Prejudice
+10
+
+Unscramble:  u e g m u o b l r x
+Luxembourg
+10
+
+Unscramble:  u e g r a c o
+Courage
+10
+
+Unscramble:  u e h d t c s m
+Smutched
+10
+
+Unscramble:  u e i r f f s t
+Stuffier
+10
+
+Unscramble:  u e i r m m c r
+Crummier
+10
+
+Unscramble:  u e i r n k c h
+Chunkier
+10
+
+Unscramble:  u e l d e l c p
+Cupelled
+10
+
+Unscramble:  u e l d f f s c
+Scuffled
+10
+
+Unscramble:  u e l f f s h
+Shuffle
+10
+
+Unscramble:  u e l s c k c h
+Chuckles
+10
+
+Unscramble:  u e l s f f s n
+Snuffles
+10
+
+Unscramble:  u e l s p m n
+Plenums
+10
+
+Unscramble:  u e o d c c s t
+Stuccoed
+10
+
+Unscramble:  u e o e l a r
+Aureole
+10
+
+Unscramble:  u e o s h
+House
+10
+
+Unscramble:  u e p u s l m c
+Speculum
+10
+
+Unscramble:  u e r n p m s a
+Superman
+10
+
+Unscramble:  u e r n p m s e
+Supermen
+10
+
+Unscramble:  u e t d e t c r
+Curetted
+10
+
+Unscramble:  u e t e t l n
+Lunette
+10
+
+Unscramble:  u e t s c a e d
+Educates
+10
+
+Unscramble:  u e x a e i l q
+Exequial
+10
+
+Unscramble:  u f d d n f a r
+Dandruff
+10
+
+Unscramble:  u f e r e r s f
+Sufferer
+10
+
+Unscramble:  u f i d e c s f
+Sufficed
+10
+
+Unscramble:  u f l n t o o w
+Outflown
+10
+
+Unscramble:  u f o s n o b f
+Buffoons
+10
+
+Unscramble:  u f u n r r f a
+Furfuran
+10
+
+Unscramble:  u g a e i t f r
+Fruitage
+10
+
+Unscramble:  u g e y r s r
+Surgery
+10
+
+Unscramble:  u g i g n b d
+Budging
+10
+
+Unscramble:  u g i k n t c
+Tucking
+10
+
+Unscramble:  u g i r e p d
+Pudgier
+10
+
+Unscramble:  u g i t s e p g
+Puggiest
+10
+
+Unscramble:  u g i y l d t r
+Turgidly
+10
+
+Unscramble:  u g l d e b r
+Burgled
+10
+
+Unscramble:  u g s n e t t n
+Tungsten
+10
+
+Unscramble:  u h c y m a n a
+Naumachy
+10
+
+Unscramble:  u h i g n g s
+Gushing
+10
+
+Unscramble:  u h l s f
+Flush
+10
+
+Unscramble:  u h o e s u n t
+Nuthouse
+10
+
+Unscramble:  u h o t m
+Mouth
+10
+
+Unscramble:  u h r t t
+Truth
+10
+
+Unscramble:  u h r y s a e p
+Euphrasy
+10
+
+Unscramble:  u h s r i s o
+Sourish
+10
+
+Unscramble:  u i a n n s t m o
+Mountains
+10
+
+Unscramble:  u i a n n t m o
+Mountain
+10
+
+Unscramble:  u i a s l b r
+Burials
+10
+
+Unscramble:  u i c e r a s t
+Suricate
+10
+
+Unscramble:  u i c s t l c e
+Cuticles
+10
+
+Unscramble:  u i d s m o h r
+Humidors
+10
+
+Unscramble:  u i m a k e l e
+Leukemia
+10
+
+Unscramble:  u i n u t m o p l
+Plutonium
+10
+
+Unscramble:  u i s c i t p r
+Puristic
+10
+
+Unscramble:  u i t s d i n e
+Nudities
+10
+
+Unscramble:  u k e r d c
+Ducker
+10
+
+Unscramble:  u k h d a e b l
+Bulkhead
+10
+
+Unscramble:  u k i t s e h s
+Huskiest
+10
+
+Unscramble:  u k i t s e l c
+Luckiest
+10
+
+Unscramble:  u k r s m a b c
+Buckrams
+10
+
+Unscramble:  u l a a v l v
+Valvula
+10
+
+Unscramble:  u l a i d f l
+Fluidal
+10
+
+Unscramble:  u l a s s c t
+Cutlass
+10
+
+Unscramble:  u l a s u u n
+Unusual
+10
+
+Unscramble:  u l a s w o t
+Outlaws
+10
+
+Unscramble:  u l d e z o b l
+Bulldoze
+10
+
+Unscramble:  u l e f r s y o
+Yourself
+10
+
+Unscramble:  u l e h m i
+Helium
+10
+
+Unscramble:  u l e i p c d l
+Pellucid
+10
+
+Unscramble:  u l e i t r c l
+Telluric
+10
+
+Unscramble:  u l e n i n c
+Nuclein
+10
+
+Unscramble:  u l e s r p r
+Purlers
+10
+
+Unscramble:  u l i h s d l
+Dullish
+10
+
+Unscramble:  u l i s n c c o
+Councils
+10
+
+Unscramble:  u l i s t e o r
+Outliers
+10
+
+Unscramble:  u l l a t e s c
+Scutella
+10
+
+Unscramble:  u l l e v e n o
+Nouvelle
+10
+
+Unscramble:  u l l s n o q i
+Quillons
+10
+
+Unscramble:  u l s t l h b i
+Bullshit
+10
+
+Unscramble:  u l t f s s i f
+Fistfuls
+10
+
+Unscramble:  u l u e c r d t
+Cultured
+10
+
+Unscramble:  u m a n i r s e b
+Submarine
+10
+
+Unscramble:  u m a s m t s e
+Summates
+10
+
+Unscramble:  u m c s n a t
+Sanctum
+10
+
+Unscramble:  u m d h m s u r
+Humdrums
+10
+
+Unscramble:  u m e r s m
+Summer
+10
+
+Unscramble:  u m e s t n h t
+Hutments
+10
+
+Unscramble:  u m e y r n f t
+Furmenty
+10
+
+Unscramble:  u m g a l c e f a o
+Camouflage
+10
+
+Unscramble:  u m i t s e g m
+Gummiest
+10
+
+Unscramble:  u m l c i h l
+Chillum
+10
+
+Unscramble:  u m o a c n l m
+Communal
+10
+
+Unscramble:  u m o k c h m
+Hummock
+10
+
+Unscramble:  u m r k a b c
+Buckram
+10
+
+Unscramble:  u m t c n s e r
+Centrums
+10
+
+Unscramble:  u m u d e r m r
+Murmured
+10
+
+Unscramble:  u n a d s o i m g e r
+Gourmandise
+10
+
+Unscramble:  u n a s e g t n
+Tunnages
+10
+
+Unscramble:  u n a t m n h
+Manhunt
+10
+
+Unscramble:  u n d q i c u n
+Quidnunc
+10
+
+Unscramble:  u n d y r a q a
+Quandary
+10
+
+Unscramble:  u n e i v r s t
+Venturis
+10
+
+Unscramble:  u n i e p h d a
+Dauphine
+10
+
+Unscramble:  u n i g l l s c
+Sculling
+10
+
+Unscramble:  u n i g n k c l
+Clunking
+10
+
+Unscramble:  u n i g r l k n
+Knurling
+10
+
+Unscramble:  u n i g r r s l
+Slurring
+10
+
+Unscramble:  u n i g s h c r
+Crushing
+10
+
+Unscramble:  u n i g s l t o
+Tousling
+10
+
+Unscramble:  u n i n o m n
+Munnion
+10
+
+Unscramble:  u n i s m l d r
+Drumlins
+10
+
+Unscramble:  u n m y a j r
+Juryman
+10
+
+Unscramble:  u n o a c g l j
+Conjugal
+10
+
+Unscramble:  u n o e t r s s
+Tonsures
+10
+
+Unscramble:  u n o f o b f
+Buffoon
+10
+
+Unscramble:  u n o s f l m o
+Mouflons
+10
+
+Unscramble:  u n o s t h o
+Houston
+10
+
+Unscramble:  u n o t c c s d
+Conducts
+10
+
+Unscramble:  u n r e s d r d u o
+Surrounded
+10
+
+Unscramble:  u n r o e g v h
+Overhung
+10
+
+Unscramble:  u n t s o s h g
+Shotguns
+10
+
+Unscramble:  u n u b r s n
+Sunburn
+10
+
+Unscramble:  u o c r a t o
+Touraco
+10
+
+Unscramble:  u o e n r g b o
+Bourgeon
+10
+
+Unscramble:  u o g e l i e z
+Eulogize
+10
+
+Unscramble:  u o g n c a g l
+Glucagon
+10
+
+Unscramble:  u o g Y m a a t
+Autogamy
+10
+
+Unscramble:  u o i n l s e m
+Emulsion
+10
+
+Unscramble:  u o s y t i r g
+Rugosity
+10
+
+Unscramble:  u o t p s e h o
+Housetop
+10
+
+Unscramble:  u o t y m o a t
+Autotomy
+10
+
+Unscramble:  u p c r o y e c
+Reoccupy
+10
+
+Unscramble:  u p e e p n t c
+Tuppence
+10
+
+Unscramble:  u p i g n p p
+Pupping
+10
+
+Unscramble:  u p i g n s p
+Supping
+10
+
+Unscramble:  u p i t s e j m
+Jumpiest
+10
+
+Unscramble:  u p y c s r
+Cyprus
+10
+
+Unscramble:  u r a e m e s q
+Marquees
+10
+
+Unscramble:  u r a s t n o k
+Outranks
+10
+
+Unscramble:  u r b h r s a o
+Harbours
+10
+
+Unscramble:  u r e a b d m
+Bermuda
+10
+
+Unscramble:  u r e d d s h
+Shudder
+10
+
+Unscramble:  u r e g h c o
+Cougher
+10
+
+Unscramble:  u r e l a n c
+Nuclear
+10
+
+Unscramble:  u r e n d t h
+Thunder
+10
+
+Unscramble:  u r e p l c o
+Coupler
+10
+
+Unscramble:  u r e r n m o
+Mourner
+10
+
+Unscramble:  u r e s n g b l
+Blungers
+10
+
+Unscramble:  u r e s n n s t
+Stunners
+10
+
+Unscramble:  u r e t i f l
+Flutier
+10
+
+Unscramble:  u r e y d g d r
+Drudgery
+10
+
+Unscramble:  u r h e r i m n
+Murrhine
+10
+
+Unscramble:  u r i h a c n e r
+Hurricane
+10
+
+Unscramble:  u r i l t v o a
+Outrival
+10
+
+Unscramble:  u r i t h g o t
+Outright
+10
+
+Unscramble:  u r o r a o t
+Outroar
+10
+
+Unscramble:  u r o s t o o t
+Outroots
+10
+
+Unscramble:  u r t a a m e
+Amateur
+10
+
+Unscramble:  u r t g i i q n
+Quirting
+10
+
+Unscramble:  u r t i e j p
+Jupiter
+10
+
+Unscramble:  u s e b r n m
+Numbers
+10
+
+Unscramble:  u s e h b g t o
+Besought
+10
+
+Unscramble:  u s e k r p c
+Puckers
+10
+
+Unscramble:  u s e m r b m
+Bummers
+10
+
+Unscramble:  u s e n r r n
+Runners
+10
+
+Unscramble:  u s e s e l c l
+Clueless
+10
+
+Unscramble:  u s e s e n b l
+Blueness
+10
+
+Unscramble:  u s e s g n s n
+Snugness
+10
+
+Unscramble:  u s e t g f s l
+Slugfest
+10
+
+Unscramble:  u s e t r p n
+Punters
+10
+
+Unscramble:  u s g h b o
+Boughs
+10
+
+Unscramble:  u s i b l i o
+Bilious
+10
+
+Unscramble:  u s i o v b o
+Obvious
+10
+
+Unscramble:  u s i s b e q
+Bisques
+10
+
+Unscramble:  u s i s t s s b
+Subsists
+10
+
+Unscramble:  u s l d e r n
+Rundles
+10
+
+Unscramble:  u s l z e m z
+Muzzles
+10
+
+Unscramble:  u s o e p r t
+Posture
+10
+
+Unscramble:  u s o i r j n
+Juniors
+10
+
+Unscramble:  u s p t n e o t
+Outspent
+10
+
+Unscramble:  u s w e t o o r
+Outswore
+10
+
+Unscramble:  u s w g t i o n
+Outswing
+10
+
+Unscramble:  u t a a n s l
+Sultana
+10
+
+Unscramble:  u t a d r m s
+Mustard
+10
+
+Unscramble:  u t a e a m s q
+Squamate
+10
+
+Unscramble:  u t a g i r s t i
+Guitarist
+10
+
+Unscramble:  u t a s a n s l
+Sultanas
+10
+
+Unscramble:  u t a s r i c l
+Curtails
+10
+
+Unscramble:  u t d w o o c
+Woodcut
+10
+
+Unscramble:  u t e s g g d r
+Druggets
+10
+
+Unscramble:  u t i y i n e q
+Equinity
+10
+
+Unscramble:  u t k l c s o n
+Locknuts
+10
+
+Unscramble:  u t n i l d a e p r
+Prudential
+10
+
+Unscramble:  u t n s s e c r
+Curtness
+10
+
+Unscramble:  u t o s e n d o
+Duotones
+10
+
+Unscramble:  u t r e t a c l
+Cultrate
+10
+
+Unscramble:  u t s n n m h a
+Huntsman
+10
+
+Unscramble:  u t u r a l p s
+Pustular
+10
+
+Unscramble:  u t u s e s c l
+Cultuses
+10
+
+Unscramble:  u t u s n r o t
+Outturns
+10
+
+Unscramble:  u u b s e j j
+Jujubes
+10
+
+Unscramble:  u u e e q
+Queue
+10
+
+Unscramble:  u u f l t h m o
+Mouthful
+10
+
+Unscramble:  u u l e n a l t
+Lunulate
+10
+
+Unscramble:  u u m r e b c s c
+Cucumbers
+10
+
+Unscramble:  u u o s s c c o
+Couscous
+10
+
+Unscramble:  u v e r o y s r
+Surveyor
+10
+
+Unscramble:  u v i e p t e r
+Eruptive
+10
+
+Unscramble:  u v i r r v s o
+Survivor
+10
+
+Unscramble:  u v i s l n p u
+Pulvinus
+10
+
+Unscramble:  u v o s t t o e
+Outvotes
+10
+
+Unscramble:  u w a s y s b
+Subways
+10
+
+Unscramble:  u w e s r a o t
+Outwears
+10
+
+Unscramble:  u w o t r m d
+Mudwort
+10
+
+Unscramble:  u y e n r t r
+Turnery
+10
+
+Unscramble:  u y e r n j o
+Journey
+10
+
+Unscramble:  u y i g n b s
+Busying
+10
+
+Unscramble:  u y i t l m s
+Mustily
+10
+
+Unscramble:  u y l m p p l
+Plumply
+10
+
+Unscramble:  u y o t n b t
+Buttony
+10
+
+Unscramble:  u y r e r e q
+Equerry
+10
+
+Unscramble:  u y u s e l g a
+Guayules
+10
+
+Unscramble:  u z i e a l e q
+Equalize
+10
+
+Unscramble:  v a n c r l a i
+Carnival
+10
+
+Unscramble:  v a r i d o p t e n i
+Deprivation
+10
+
+Unscramble:  v a t s r o a i
+Aviators
+10
+
+Unscramble:  v b e o a
+Above
+10
+
+Unscramble:  v c e s t a o
+Avocets
+10
+
+Unscramble:  v c i k e r m a
+Maverick
+10
+
+Unscramble:  v c t g n i e i
+Evicting
+10
+
+Unscramble:  v c t n i i e o
+Eviction
+10
+
+Unscramble:  v c u e t a e a
+Evacuate
+10
+
+Unscramble:  v d e e r c o
+Covered
+10
+
+Unscramble:  v d e l b i e
+Bedevil
+10
+
+Unscramble:  v d i i v
+Vivid
+10
+
+Unscramble:  v d u l a c o i
+Oviducal
+10
+
+Unscramble:  v e e i t i n
+Invitee
+10
+
+Unscramble:  v e e o s r b r
+Observer
+10
+
+Unscramble:  v e h b e s e i
+Beehives
+10
+
+Unscramble:  v e i b l e e
+Believe
+10
+
+Unscramble:  v e l a u
+Value
+10
+
+Unscramble:  v e l n c i g a
+Cleaving
+10
+
+Unscramble:  v e l u a n i
+Unalive
+10
+
+Unscramble:  v e o r v s e l
+Revolves
+10
+
+Unscramble:  v e r e g d n a
+Engraved
+10
+
+Unscramble:  v e t e t e n n s h e
+Seventeenth
+10
+
+Unscramble:  v e v o l i n
+Involve
+10
+
+Unscramble:  v h e n b i g o
+Behoving
+10
+
+Unscramble:  v l a e r s e
+Several
+10
+
+Unscramble:  v l b e i a u n
+Unviable
+10
+
+Unscramble:  v l c o a
+Vocal
+10
+
+Unscramble:  v l i n i o
+Violin
+10
+
+Unscramble:  v m e n r i g o
+Removing
+10
+
+Unscramble:  v n g g e i a n
+Avenging
+10
+
+Unscramble:  v n g l e e a
+Evangel
+10
+
+Unscramble:  v n i e x
+Vixen
+10
+
+Unscramble:  v n i g a g r a
+Ravaging
+10
+
+Unscramble:  v n i g n e e
+Evening
+10
+
+Unscramble:  v n t g i l e e s a
+Evangelist
+10
+
+Unscramble:  v n y a s i l o
+Synovial
+10
+
+Unscramble:  v o i n i l p a
+Pavilion
+10
+
+Unscramble:  v o n e c s r r a i
+Carnivores
+10
+
+Unscramble:  v r b w e l o e
+Overblew
+10
+
+Unscramble:  v r e d d e i
+Derived
+10
+
+Unscramble:  v r e s i s r e
+Revisers
+10
+
+Unscramble:  v r e s t a o e
+Overeats
+10
+
+Unscramble:  v r h d n a o e
+Overhand
+10
+
+Unscramble:  v r i e r
+River
+10
+
+Unscramble:  v r p y e l o a
+Overplay
+10
+
+Unscramble:  v r r e e a o t
+Overrate
+10
+
+Unscramble:  v r s n e i a o
+Aversion
+10
+
+Unscramble:  v r t e e i o m
+Overtime
+10
+
+Unscramble:  v r t s r o e e
+Evertors
+10
+
+Unscramble:  v r y y e d e a
+Everyday
+10
+
+Unscramble:  v s e i c d e
+Devices
+10
+
+Unscramble:  v s n e r t a
+Taverns
+10
+
+Unscramble:  v s o a b l a
+Lavabos
+10
+
+Unscramble:  v s u s e r
+Versus
+10
+
+Unscramble:  v t e d n e i
+Evident
+10
+
+Unscramble:  v t o e e c d o
+Dovecote
+10
+
+Unscramble:  v u o s e n r a
+Ravenous
+10
+
+Unscramble:  v u u r d i s m
+Duumvirs
+10
+
+Unscramble:  v v i e i s d i
+Divisive
+10
+
+Unscramble:  v w o r h e e
+However
+10
+
+Unscramble:  v y e l l o
+Lovely
+10
+
+Unscramble:  w a h g t e l
+Thalweg
+10
+
+Unscramble:  w a r g e i s n
+Swearing
+10
+
+Unscramble:  w d d s e l s a
+Swaddles
+10
+
+Unscramble:  w d e n s e
+Sweden
+10
+
+Unscramble:  w d i e r
+Weird
+10
+
+Unscramble:  w d o l u
+Would
+10
+
+Unscramble:  w d r o l
+World
+10
+
+Unscramble:  w d t t e t i
+Twitted
+10
+
+Unscramble:  w d u o l
+Would
+10
+
+Unscramble:  w e a h l
+Whale
+10
+
+Unscramble:  w e h t i
+White
+10
+
+Unscramble:  w e i h t
+White
+10
+
+Unscramble:  w e l b l r e o
+Bellower
+10
+
+Unscramble:  w e l r f d e o
+Reflowed
+10
+
+Unscramble:  w e o i b
+Bowie
+10
+
+Unscramble:  w e o r t
+Wrote
+10
+
+Unscramble:  w e r y f a s e
+Freeways
+10
+
+Unscramble:  w e t s r i r e
+Rewrites
+10
+
+Unscramble:  w g n n i f a
+Fawning
+10
+
+Unscramble:  w g o r n
+Wrong
+10
+
+Unscramble:  w h g e i r e
+Reweigh
+10
+
+Unscramble:  w h h c i
+Which
+10
+
+Unscramble:  w h i c t
+Witch
+10
+
+Unscramble:  w h n i c
+Winch
+10
+
+Unscramble:  w h t a c
+Watch
+10
+
+Unscramble:  w i n a k e r t
+Knitwear
+10
+
+Unscramble:  w k i e k l h a
+Hawklike
+10
+
+Unscramble:  w l a l n f d o
+Downfall
+10
+
+Unscramble:  w l b e o
+Below
+10
+
+Unscramble:  w l e e j
+Jewel
+10
+
+Unscramble:  w l y l e o
+Yellow
+10
+
+Unscramble:  w m p g n i s a
+Swamping
+10
+
+Unscramble:  w m p r e i s a
+Swampier
+10
+
+Unscramble:  w n a c s i h d
+Sandwich
+10
+
+Unscramble:  w n e o b o d t
+Bentwood
+10
+
+Unscramble:  w n g s i l s e
+Swingles
+10
+
+Unscramble:  w n g s r e s i
+Swingers
+10
+
+Unscramble:  w n h d r e s a
+Swanherd
+10
+
+Unscramble:  w n k r e s a
+Swanker
+10
+
+Unscramble:  w n o a m
+Woman
+10
+
+Unscramble:  w o l r s o m w
+Slowworm
+10
+
+Unscramble:  w r d r e a a
+Awarder
+10
+
+Unscramble:  w r o e p
+Power
+10
+
+Unscramble:  w r r e y
+Wryer
+10
+
+Unscramble:  w r s e w o
+Wowser
+10
+
+Unscramble:  w r t a e s e
+Sweater
+10
+
+Unscramble:  w s a y a l
+Always
+10
+
+Unscramble:  w s d w n i o
+Windows
+10
+
+Unscramble:  w s e r s e
+Sewers
+10
+
+Unscramble:  w s e t d i b a
+Bawdiest
+10
+
+Unscramble:  w s e t k i g a
+Gawkiest
+10
+
+Unscramble:  w s l o t u a
+Outlaws
+10
+
+Unscramble:  w s n i g
+Wings
+10
+
+Unscramble:  w s t p i s a
+Sawpits
+10
+
+Unscramble:  w t c h s i
+Switch
+10
+
+Unscramble:  w t e d a n
+Wanted
+10
+
+Unscramble:  w t e h a
+Wheat
+10
+
+Unscramble:  w t i s u l a
+Lawsuit
+10
+
+Unscramble:  w t o n b a a s
+Botswana
+10
+
+Unscramble:  w t r o s
+Worst
+10
+
+Unscramble:  w t t g a i s n
+Swatting
+10
+
+Unscramble:  w u q e s k d a
+Squawked
+10
+
+Unscramble:  w x a y t a s i
+Taxiways
+10
+
+Unscramble:  w y l d i r o
+Rowdily
+10
+
+Unscramble:  w y o s b n e
+Newsboy
+10
+
+Unscramble:  x c t s r e e a
+Exacters
+10
+
+Unscramble:  x c u r e t e e
+Executer
+10
+
+Unscramble:  x c u r o t e e
+Executor
+10
+
+Unscramble:  x d i s i s o e
+Oxidises
+10
+
+Unscramble:  x e l n e l e t c
+Excellent
+10
+
+Unscramble:  x e n e i s v e p
+Expensive
+10
+
+Unscramble:  x e n r e d e p
+Expender
+10
+
+Unscramble:  x g i n b o
+Boxing
+10
+
+Unscramble:  x i d s e e c
+Excides
+10
+
+Unscramble:  x i n t c e t
+Extinct
+10
+
+Unscramble:  x l a s a t o e
+Oxalates
+10
+
+Unscramble:  x l e d t e e
+Telexed
+10
+
+Unscramble:  x l n t i o a e t a
+Exaltation
+10
+
+Unscramble:  x l u e d e c
+Exclude
+10
+
+Unscramble:  x l u s e d e c
+Excludes
+10
+
+Unscramble:  x m e s n e a
+Examens
+10
+
+Unscramble:  x r c m s i e o
+Exorcism
+10
+
+Unscramble:  x r o a t l a
+Laxator
+10
+
+Unscramble:  x r o e b
+Boxer
+10
+
+Unscramble:  x r t n e i e o
+Exertion
+10
+
+Unscramble:  x s l f u b o
+Boxfuls
+10
+
+Unscramble:  x s t e n e c e i
+Existence
+10
+
+Unscramble:  x u r s c s e u
+Excursus
+10
+
+Unscramble:  x u s e e c
+Excuse
+10
+
+Unscramble:  x y l t h s i
+Sixthly
+10
+
+Unscramble:  x z i s e n o a
+Oxazines
+10
+
+Unscramble:  y a a p n t m
+Tympana
+10
+
+Unscramble:  y a m c i d n
+Dynamic
+10
+
+Unscramble:  y a n s t t r
+Tyrants
+10
+
+Unscramble:  Y a p s e s s n
+Synapses
+10
+
+Unscramble:  y c a r b a d k
+Backyard
+10
+
+Unscramble:  y c i s p t g l
+Glyptics
+10
+
+Unscramble:  y c x o i h p
+Hypoxic
+10
+
+Unscramble:  y e k j c d o e
+Jockeyed
+10
+
+Unscramble:  y e l v i l
+Lively
+10
+
+Unscramble:  y e m s i r
+Misery
+10
+
+Unscramble:  y e n l m e h a
+Hymeneal
+10
+
+Unscramble:  y e n n i t
+Ninety
+10
+
+Unscramble:  y e n s e n d o
+Doyennes
+10
+
+Unscramble:  y e r n w v
+Wyvern
+10
+
+Unscramble:  y e s s i s n
+Synesis
+10
+
+Unscramble:  y e s s t o p h
+Phytoses
+10
+
+Unscramble:  y f a l e f l
+Flyleaf
+10
+
+Unscramble:  y f f i t
+Fifty
+10
+
+Unscramble:  y f l o t
+Lofty
+10
+
+Unscramble:  y g e c o n p i
+Pyogenic
+10
+
+Unscramble:  y g u o n
+Young
+10
+
+Unscramble:  y i a b l
+Libya
+10
+
+Unscramble:  y i d a r
+Dairy
+10
+
+Unscramble:  y i e s a l
+Easily
+10
+
+Unscramble:  y i f m a l
+Family
+10
+
+Unscramble:  y i s c i l
+Sicily
+10
+
+Unscramble:  y k o h o s k
+Skyhook
+10
+
+Unscramble:  y k r f o h a
+Hayfork
+10
+
+Unscramble:  y l g c i m a
+Myalgic
+10
+
+Unscramble:  y l l s b i w r
+Wrybills
+10
+
+Unscramble:  y l o c c n c i
+Cyclonic
+10
+
+Unscramble:  y l o o p w g l
+Pollywog
+10
+
+Unscramble:  y l z b n s e o
+Benzoyls
+10
+
+Unscramble:  y m o a l s l n
+Allonyms
+10
+
+Unscramble:  y n a n f i g c
+Fancying
+10
+
+Unscramble:  y n e s o g c r
+Cryogens
+10
+
+Unscramble:  y n f a n
+Fanny
+10
+
+Unscramble:  y n m o e
+Money
+10
+
+Unscramble:  y n o a t e u d
+Autodyne
+10
+
+Unscramble:  y n o c a t c i
+Cyanotic
+10
+
+Unscramble:  y n o n a g c e
+Cyanogen
+10
+
+Unscramble:  y n p e n
+Penny
+10
+
+Unscramble:  y o g s r e p n
+Pyrogens
+10
+
+Unscramble:  y o i e b p s t
+Biotypes
+10
+
+Unscramble:  y o p c i t s n
+Synoptic
+10
+
+Unscramble:  y o r l c e g l
+Glycerol
+10
+
+Unscramble:  y o s d e h k b
+Kyboshed
+10
+
+Unscramble:  y o s s b h k e
+Kyboshes
+10
+
+Unscramble:  y p a l m n t a
+Tympanal
+10
+
+Unscramble:  y p e n r i g l
+Replying
+10
+
+Unscramble:  y p g a a h n l
+Anaglyph
+10
+
+Unscramble:  y p h d m o l i
+Lymphoid
+10
+
+Unscramble:  y p u s p i h p
+Puppyish
+10
+
+Unscramble:  y r a n p i g t
+Partying
+10
+
+Unscramble:  y r a o m
+Mayor
+10
+
+Unscramble:  y r e a g v o
+Voyager
+10
+
+Unscramble:  y r i n d i g t
+Dirtying
+10
+
+Unscramble:  y r j e r
+Jerry
+10
+
+Unscramble:  y r o n e g h d
+Hydrogen
+10
+
+Unscramble:  y r o r f e a
+Forayer
+10
+
+Unscramble:  y r r l a a a
+Arrayal
+10
+
+Unscramble:  y r t i h t
+Thirty
+10
+
+Unscramble:  y s c s i p h
+Physics
+10
+
+Unscramble:  y s d m y a a
+Maydays
+10
+
+Unscramble:  y s e t r x s
+Xysters
+10
+
+Unscramble:  y s m a a p j
+Pyjamas
+10
+
+Unscramble:  y s n a k
+Yanks
+10
+
+Unscramble:  y s s s e i t a
+Essayist
+10
+
+Unscramble:  y s u o r
+Yours
+10
+
+Unscramble:  y t a n s g m
+Gymnast
+10
+
+Unscramble:  y t e a s r h i
+Hysteria
+10
+
+Unscramble:  y t e e s i c n
+Cysteine
+10
+
+Unscramble:  y t e o n b a
+Bayonet
+10
+
+Unscramble:  y t e s r x s
+Xysters
+10
+
+Unscramble:  Y t o c s l s i
+Systolic
+10
+
+Unscramble:  y t o e l s s
+Systole
+10
+
+Unscramble:  y t o k l e i b
+Kilobyte
+10
+
+Unscramble:  y u o t a b l a
+Layabout
+10
+
+Unscramble:  y u r y g z m
+Zymurgy
+10
+
+Unscramble:  y w d n t k d i i s l
+Tiddlywinks
+10
+
+Unscramble:  y w l a s a
+Always
+10
+
+Unscramble:  y y r u g z m
+Zymurgy
+10
+
+Unscramble:  y y s a t d n
+Dynasty
+10
+
+Unscramble:  z a a b n o n
+Bonanza
+10
+
+Unscramble:  z a l c a e h a
+Chalazae
+10
+
+Unscramble:  z e w r t e s e
+Tweezers
+10
+
+Unscramble:  z i a z p
+Pizza
+10
+
+Unscramble:  z n i g z l p u
+Puzzling
+10
+
+Unscramble:  z o t p o a r o
+Protozoa
+10
+
+Unscramble:  z r e s e n c o
+Cozeners
+10
+
+Unscramble:  z s d a r l i
+Lizards
+10
+
+Unscramble:  z t a r m o
+Mozart
+10
+
+Unscramble:  z t n o e o n o
+Entozoon
+10
+
+Unscramble:  z t s i e d o
+Doziest
+10
+
+Unscramble:  z y n c i h t
+Chintzy
+10
+
diff --git a/xtrn/gttrivia/readme.txt b/xtrn/gttrivia/readme.txt
index 26451b122f..5629fe01d3 100644
--- a/xtrn/gttrivia/readme.txt
+++ b/xtrn/gttrivia/readme.txt
@@ -1,6 +1,6 @@
                                Good Time Trivia
-                                 Version 1.02
-                           Release date: 2022-12-08
+                                 Version 1.03
+                           Release date: 2023-01-05
 
                                      by
 
@@ -150,8 +150,33 @@ of the following files and directories:
 
 
 The trivia category files (in the qa directory, with filenames ending in .qa)
-are plain text files and contain questions, their answers, and their number of
-points.  For eqch question in a category file, there are 3 lines:
+are plain text files.
+Optionally, a QA file may have a section of metadata specified in JSON
+(JavaScript Object Notation) format that can contain some information about the
+question category. The information can have the following properties:
+category_name: The name of the category (if different from simple parsing of
+               the filename)
+ARS: Optional - An ARS security string to restrict access to the question set.
+     This overrides any setting for the question set in the [CATEGORY_ARS]
+	 section in gttrivia.ini.
+
+This JSON must be between two lines:
+-- QA metadata begin
+-- QA metadata end
+
+For example, for a test category you might want to restrict to only the sysop:
+-- QA metadata begin
+{
+    "category_name": "Test category (not meant for use)",
+	"ARS": "SYSOP"
+}
+-- QA metadata end
+
+
+
+The questions and answers inside the QA files contain questions, their answers,
+and their number of points.  For eqch question in a category file, the main
+format is 3 lines:
 Question
 Answer
 Number of points
@@ -162,6 +187,40 @@ What color is the sky?
 Blue
 5
 
+Alternately, the answer can be specified via JSON (JavaScript Object Notation)
+with multiple acceptable answers, and optionally a fact about the answer. When
+JSON is specified for the answer, there need to be two text lines to specify
+that the answer is JSON:
+-- Answer metadata begin
+-- Answer metadata end
+
+One example where this can be used is to specify an answer that is a number and
+you want to allow both spelling out the number and the number itself. Also, in
+some cases it can be good to specify the spelled-out version first (if it's
+short) since that will be used for the clue. For example:
+
+How many sides does a square have?
+-- Answer metadata begin
+{
+    "answers": ["Four", "4"]
+}
+-- Answer metadata end
+5
+
+
+An example of a question specifying an answer with a fact specified:
+Who's picture is on the US $50 bill?
+-- Answer metadata begin
+{
+    "answers": ["Ulysses Grant", "Ulysses S. Grant", "Ulysses S Grant"],
+	"answerFact": "The US capitol building is on the other side of the $50 bill"
+}
+-- Answer metadata end
+5
+
+NOTE: The questions and answers must be specified in exactly either of the two
+above formats, or else the questions and answers will not be read correctly.
+
 Also, there is a script in the qa directory called converter.js.  This is a
 rough script that can be modified to convert a list of trivia questions into
 the format that can be used by this door.  It is not a generic script; if you
@@ -304,6 +363,8 @@ scoreSoFarText                    "Your score so far" text
 clueHdr                           Header text for clues
 clue                              Clue text
 answerAfterIncorrect              The answer printed after incorrect response
+answerFact                        Fact displayed after an answer (not all
+                                  questions will have one)
 
 [CATEGORY_ARS] section
 ----------------------
diff --git a/xtrn/gttrivia/revision_history.txt b/xtrn/gttrivia/revision_history.txt
index 08927161ea..4392fecbf6 100644
--- a/xtrn/gttrivia/revision_history.txt
+++ b/xtrn/gttrivia/revision_history.txt
@@ -4,6 +4,17 @@ Revision History (change log)
 =============================
 Version  Date         Description
 -------  ----         -----------
+1.03     2023-01-05   Question sets (in the .qa files) may now have a section
+                      of JSON metadata to specify the name of the category (if
+					  different from simple filename parsing) and optionally
+					  an ARS security string (overrides gttrivia.ini). Also,
+					  answers can be specified as a JSON section to specify
+					  multiple acceptable answers, and optionally a fact about
+					  the answer/question. A new color setting, answerFact,
+					  specifies the color to use to output the answer fact.
+1.02     2022-12-08   The game can now post scores in (networked) message sub-
+                      boards as a backup to using a JSON DB server in case the
+					  server can't be contacted.
 1.01     2022-11-25   Added the ability to store & retrieve scores to/from a
                       server, so that scores from multiple BBSes can be
                       displayed.  By default, it's configured to use Digital
-- 
GitLab